
    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_2640101e9c97f76f93624445.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_7bfed25404d6bd35863ad21f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.862305;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_a4cdbccd6822a6358b6af37a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cf780cdca4bc9b35fc0f7323.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e9184b3c33dba5231ef24e34.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091309;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_de67052eabb03754904aff43.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666000;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_0d48511825aaa2841561cf61.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_23a0ef8019cf0b5aa29e3173.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.896973;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_54e6b950efbd4b50a270fc39.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.857910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f3f24fc8fcbf181840c5e00e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.862305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7bb06fc268cfb077565fdf61.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a5a4eddb5692d73988166324.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a0f0e12c09dd73d2ae8763ae.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3b73ad13185a60039b58cb9f.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c17a391a3bbfb7cc80a4aeee.woff2')format("woff");}.fff{font-family:fff;line-height:1.079102;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:32.400000px;}
.ls39{letter-spacing:-0.724680px;}
.ls87{letter-spacing:-0.661320px;}
.ls97{letter-spacing:-0.480960px;}
.ls20{letter-spacing:-0.461160px;}
.ls73{letter-spacing:-0.420840px;}
.ls78{letter-spacing:-0.395280px;}
.ls6c{letter-spacing:-0.360720px;}
.ls21{letter-spacing:-0.329400px;}
.ls1c{letter-spacing:-0.300600px;}
.ls16{letter-spacing:-0.240480px;}
.ls14{letter-spacing:-0.240000px;}
.ls6a{letter-spacing:-0.216000px;}
.ls37{letter-spacing:-0.197640px;}
.ls1e{letter-spacing:-0.180360px;}
.ls6d{letter-spacing:-0.162000px;}
.ls1f{letter-spacing:-0.131760px;}
.ls15{letter-spacing:-0.120240px;}
.ls61{letter-spacing:-0.108000px;}
.ls18{letter-spacing:-0.083880px;}
.ls1a{letter-spacing:-0.065880px;}
.ls1b{letter-spacing:-0.060120px;}
.ls13{letter-spacing:0.000000px;}
.ls69{letter-spacing:0.018000px;}
.ls31{letter-spacing:0.019764px;}
.ls1d{letter-spacing:0.060120px;}
.ls9{letter-spacing:0.065880px;}
.ls17{letter-spacing:0.083880px;}
.ls66{letter-spacing:0.090180px;}
.ls6e{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.120240px;}
.ls1{letter-spacing:0.144000px;}
.ls80{letter-spacing:0.144288px;}
.ls4d{letter-spacing:0.144936px;}
.ls83{letter-spacing:0.150300px;}
.ls7c{letter-spacing:0.156312px;}
.ls60{letter-spacing:0.162000px;}
.ls2{letter-spacing:0.167760px;}
.ls6{letter-spacing:0.180360px;}
.ls7d{letter-spacing:0.186372px;}
.ls3{letter-spacing:0.197640px;}
.ls7b{letter-spacing:0.198396px;}
.ls86{letter-spacing:0.216432px;}
.ls3a{letter-spacing:0.263520px;}
.lsb{letter-spacing:0.395280px;}
.ls45{letter-spacing:0.441396px;}
.ls6f{letter-spacing:0.454572px;}
.ls25{letter-spacing:0.461160px;}
.ls63{letter-spacing:0.474336px;}
.ls96{letter-spacing:0.480960px;}
.ls19{letter-spacing:0.503280px;}
.ls38{letter-spacing:0.527040px;}
.ls95{letter-spacing:0.721440px;}
.ls91{letter-spacing:0.781560px;}
.lsa{letter-spacing:0.790560px;}
.ls71{letter-spacing:1.185840px;}
.ls33{letter-spacing:1.262520px;}
.ls23{letter-spacing:1.561356px;}
.ls6b{letter-spacing:1.910520px;}
.ls8d{letter-spacing:2.585160px;}
.ls44{letter-spacing:2.635200px;}
.ls8f{letter-spacing:2.945880px;}
.ls2f{letter-spacing:2.964600px;}
.lsd{letter-spacing:3.333528px;}
.ls7f{letter-spacing:3.426840px;}
.ls5c{letter-spacing:4.018680px;}
.ls82{letter-spacing:4.749480px;}
.ls11{letter-spacing:5.468040px;}
.ls28{letter-spacing:5.474628px;}
.ls8c{letter-spacing:5.927760px;}
.ls74{letter-spacing:6.021432px;}
.ls4c{letter-spacing:6.172956px;}
.ls75{letter-spacing:6.192720px;}
.ls79{letter-spacing:6.294564px;}
.ls7a{letter-spacing:6.312600px;}
.ls8{letter-spacing:6.917400px;}
.ls7{letter-spacing:7.121628px;}
.ls98{letter-spacing:7.995960px;}
.ls3f{letter-spacing:8.037360px;}
.ls3e{letter-spacing:8.366760px;}
.ls70{letter-spacing:9.420840px;}
.ls8a{letter-spacing:9.799560px;}
.ls12{letter-spacing:10.132344px;}
.ls92{letter-spacing:10.521000px;}
.ls8e{letter-spacing:10.858680px;}
.ls4f{letter-spacing:10.870200px;}
.ls4e{letter-spacing:10.916316px;}
.ls30{letter-spacing:11.225952px;}
.ls34{letter-spacing:11.265480px;}
.ls64{letter-spacing:11.924280px;}
.ls2b{letter-spacing:11.930868px;}
.ls59{letter-spacing:11.983572px;}
.ls2a{letter-spacing:11.990160px;}
.ls5a{letter-spacing:12.003336px;}
.ls29{letter-spacing:12.319560px;}
.ls5{letter-spacing:12.799548px;}
.ls43{letter-spacing:12.846600px;}
.ls4b{letter-spacing:13.380228px;}
.ls41{letter-spacing:13.768920px;}
.ls2e{letter-spacing:14.177376px;}
.ls47{letter-spacing:14.823000px;}
.ls67{letter-spacing:16.667640px;}
.ls46{letter-spacing:16.997040px;}
.ls27{letter-spacing:17.728308px;}
.ls40{letter-spacing:17.978652px;}
.ls26{letter-spacing:18.097236px;}
.ls24{letter-spacing:18.841680px;}
.ls42{letter-spacing:19.171080px;}
.ls10{letter-spacing:19.500480px;}
.ls49{letter-spacing:19.895760px;}
.ls65{letter-spacing:21.279240px;}
.ls35{letter-spacing:22.399200px;}
.ls94{letter-spacing:22.424760px;}
.ls5f{letter-spacing:23.848560px;}
.ls5d{letter-spacing:24.177960px;}
.ls5e{letter-spacing:25.297920px;}
.ls93{letter-spacing:25.310520px;}
.ls4a{letter-spacing:25.627320px;}
.ls51{letter-spacing:25.871076px;}
.ls88{letter-spacing:27.835560px;}
.ls3b{letter-spacing:29.250720px;}
.lse{letter-spacing:31.016304px;}
.lsf{letter-spacing:31.029480px;}
.ls2d{letter-spacing:31.754160px;}
.lsc{letter-spacing:34.224660px;}
.ls36{letter-spacing:35.245800px;}
.ls76{letter-spacing:35.377560px;}
.ls3c{letter-spacing:35.706960px;}
.ls81{letter-spacing:35.711280px;}
.ls68{letter-spacing:37.097028px;}
.ls5b{letter-spacing:37.156320px;}
.ls62{letter-spacing:39.989160px;}
.ls84{letter-spacing:43.647120px;}
.ls90{letter-spacing:44.007840px;}
.ls48{letter-spacing:44.337240px;}
.ls72{letter-spacing:47.571948px;}
.ls2c{letter-spacing:52.638120px;}
.ls85{letter-spacing:53.747280px;}
.ls89{letter-spacing:55.550880px;}
.ls3d{letter-spacing:57.315600px;}
.ls77{letter-spacing:66.341160px;}
.ls50{letter-spacing:82.152360px;}
.ls22{letter-spacing:83.266200px;}
.ls7e{letter-spacing:84.468600px;}
.ls8b{letter-spacing:85.430520px;}
.ls32{letter-spacing:148.032360px;}
.ls53{letter-spacing:152.442000px;}
.ls58{letter-spacing:165.780000px;}
.ls54{letter-spacing:170.802000px;}
.ls55{letter-spacing:178.038000px;}
.ls52{letter-spacing:208.278000px;}
.ls56{letter-spacing:229.122000px;}
.ls57{letter-spacing:236.358000px;}
.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;}
}
.ws4{word-spacing:-36.144000px;}
.ws8{word-spacing:-21.473280px;}
.ws6{word-spacing:-21.137760px;}
.ws5{word-spacing:-21.053880px;}
.ws60{word-spacing:-16.997040px;}
.ws13{word-spacing:-16.667640px;}
.ws11{word-spacing:-16.535880px;}
.ws5d{word-spacing:-16.470000px;}
.ws5f{word-spacing:-16.404120px;}
.ws12{word-spacing:-16.338240px;}
.ws5e{word-spacing:-16.272360px;}
.ws14{word-spacing:-16.140600px;}
.ws82{word-spacing:-16.008840px;}
.ws61{word-spacing:-15.210360px;}
.ws88{word-spacing:-15.150240px;}
.wsa{word-spacing:-15.030000px;}
.ws9{word-spacing:-14.969880px;}
.wsf{word-spacing:-14.909760px;}
.ws87{word-spacing:-14.849640px;}
.ws86{word-spacing:-14.789520px;}
.ws89{word-spacing:-14.669280px;}
.ws81{word-spacing:-14.609160px;}
.wsa5{word-spacing:-14.549040px;}
.wsa4{word-spacing:-14.368680px;}
.wse{word-spacing:-13.707360px;}
.ws0{word-spacing:-13.707120px;}
.ws70{word-spacing:-13.662000px;}
.ws1{word-spacing:-13.587120px;}
.wsd{word-spacing:-13.527000px;}
.ws72{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.466880px;}
.wsb{word-spacing:-13.406760px;}
.ws71{word-spacing:-13.392000px;}
.ws2{word-spacing:-13.347120px;}
.ws3{word-spacing:-13.346640px;}
.ws79{word-spacing:-13.338000px;}
.ws78{word-spacing:-13.284000px;}
.ws7b{word-spacing:-1.910520px;}
.ws17{word-spacing:-0.540000px;}
.ws1b{word-spacing:-0.528000px;}
.ws76{word-spacing:-0.527040px;}
.wsbb{word-spacing:-0.480960px;}
.ws2d{word-spacing:-0.461160px;}
.ws9b{word-spacing:-0.420840px;}
.ws1a{word-spacing:-0.420000px;}
.ws24{word-spacing:-0.384000px;}
.ws62{word-spacing:-0.360720px;}
.ws67{word-spacing:-0.263520px;}
.ws54{word-spacing:-0.246000px;}
.ws18{word-spacing:-0.210000px;}
.ws2e{word-spacing:-0.197640px;}
.ws37{word-spacing:-0.180360px;}
.ws2a{word-spacing:-0.167760px;}
.ws7f{word-spacing:-0.162000px;}
.ws28{word-spacing:-0.144000px;}
.ws7c{word-spacing:-0.131760px;}
.ws26{word-spacing:-0.120240px;}
.ws22{word-spacing:-0.120000px;}
.ws55{word-spacing:-0.090000px;}
.ws2b{word-spacing:-0.083880px;}
.ws2c{word-spacing:-0.065880px;}
.ws3e{word-spacing:-0.060120px;}
.ws23{word-spacing:-0.060000px;}
.ws16{word-spacing:-0.042000px;}
.ws19{word-spacing:-0.030000px;}
.ws7{word-spacing:-0.006120px;}
.ws15{word-spacing:0.000000px;}
.ws7e{word-spacing:0.054000px;}
.ws8a{word-spacing:0.060120px;}
.ws58{word-spacing:0.065880px;}
.ws20{word-spacing:0.066000px;}
.ws29{word-spacing:0.083880px;}
.ws27{word-spacing:0.120240px;}
.ws6c{word-spacing:0.131760px;}
.ws7a{word-spacing:0.162000px;}
.ws42{word-spacing:0.180360px;}
.ws69{word-spacing:0.197640px;}
.ws1c{word-spacing:0.240000px;}
.ws25{word-spacing:0.240480px;}
.ws30{word-spacing:0.300600px;}
.ws7d{word-spacing:0.324000px;}
.ws6b{word-spacing:0.329400px;}
.ws21{word-spacing:0.330000px;}
.ws1e{word-spacing:0.360000px;}
.ws51{word-spacing:0.360720px;}
.ws83{word-spacing:0.395280px;}
.ws57{word-spacing:0.420840px;}
.ws59{word-spacing:0.461160px;}
.ws47{word-spacing:0.541080px;}
.ws1f{word-spacing:0.642000px;}
.ws1d{word-spacing:0.660000px;}
.wsa2{word-spacing:0.661320px;}
.ws66{word-spacing:0.724680px;}
.ws6a{word-spacing:0.856440px;}
.ws98{word-spacing:1.022040px;}
.ws77{word-spacing:1.119960px;}
.ws84{word-spacing:1.251720px;}
.ws38{word-spacing:1.262520px;}
.ws3b{word-spacing:1.382760px;}
.ws63{word-spacing:1.449360px;}
.ws40{word-spacing:1.563120px;}
.ws3a{word-spacing:1.683360px;}
.ws3f{word-spacing:1.923840px;}
.ws9e{word-spacing:2.044080px;}
.wsa8{word-spacing:2.585160px;}
.ws85{word-spacing:2.701080px;}
.ws9a{word-spacing:2.765520px;}
.wsa7{word-spacing:2.945880px;}
.wsbe{word-spacing:3.066120px;}
.wsaa{word-spacing:3.126240px;}
.ws5a{word-spacing:3.294000px;}
.ws94{word-spacing:4.208400px;}
.ws35{word-spacing:4.328640px;}
.ws99{word-spacing:4.749480px;}
.ws48{word-spacing:4.809600px;}
.ws41{word-spacing:5.771520px;}
.ws96{word-spacing:7.094160px;}
.wsb8{word-spacing:7.394760px;}
.ws95{word-spacing:7.454880px;}
.ws9f{word-spacing:7.815600px;}
.wsae{word-spacing:7.995960px;}
.wsad{word-spacing:8.176320px;}
.ws2f{word-spacing:8.777520px;}
.ws52{word-spacing:8.837640px;}
.ws93{word-spacing:8.897760px;}
.ws92{word-spacing:9.258480px;}
.wsa9{word-spacing:9.619200px;}
.ws8b{word-spacing:9.919800px;}
.ws6f{word-spacing:10.804320px;}
.wsaf{word-spacing:11.001960px;}
.wsb0{word-spacing:11.062080px;}
.ws65{word-spacing:11.924280px;}
.ws36{word-spacing:12.745440px;}
.wsb1{word-spacing:13.226400px;}
.ws6d{word-spacing:13.373640px;}
.wsb7{word-spacing:13.466880px;}
.ws44{word-spacing:13.827600px;}
.ws9d{word-spacing:13.887720px;}
.ws9c{word-spacing:13.947840px;}
.ws53{word-spacing:14.248440px;}
.ws33{word-spacing:14.428800px;}
.ws39{word-spacing:14.549040px;}
.wsa0{word-spacing:14.669280px;}
.ws43{word-spacing:15.270480px;}
.wsab{word-spacing:15.390720px;}
.ws8f{word-spacing:15.751440px;}
.ws4b{word-spacing:15.991920px;}
.ws75{word-spacing:16.112160px;}
.ws74{word-spacing:16.472880px;}
.ws64{word-spacing:17.655840px;}
.ws32{word-spacing:17.915760px;}
.ws31{word-spacing:18.036000px;}
.ws6e{word-spacing:18.841680px;}
.ws73{word-spacing:19.236960px;}
.ws5c{word-spacing:19.895760px;}
.ws34{word-spacing:20.320560px;}
.wsac{word-spacing:20.440800px;}
.ws50{word-spacing:20.500920px;}
.ws3d{word-spacing:21.222360px;}
.ws3c{word-spacing:21.342600px;}
.ws4f{word-spacing:21.823560px;}
.ws91{word-spacing:21.883680px;}
.ws56{word-spacing:22.484880px;}
.ws8e{word-spacing:23.326560px;}
.wsbd{word-spacing:23.987880px;}
.ws8d{word-spacing:24.709320px;}
.wsbc{word-spacing:25.671240px;}
.wsbf{word-spacing:26.392680px;}
.wsc2{word-spacing:27.294480px;}
.ws80{word-spacing:27.537840px;}
.wsa3{word-spacing:27.655200px;}
.ws97{word-spacing:28.015920px;}
.ws4a{word-spacing:29.338560px;}
.wsb5{word-spacing:29.458800px;}
.ws49{word-spacing:29.518920px;}
.wsb3{word-spacing:30.420720px;}
.ws5b{word-spacing:31.095360px;}
.wsb9{word-spacing:32.645160px;}
.ws45{word-spacing:33.426720px;}
.ws46{word-spacing:33.486840px;}
.wsb2{word-spacing:34.448760px;}
.ws68{word-spacing:35.706960px;}
.wsc3{word-spacing:36.132120px;}
.ws8c{word-spacing:37.334520px;}
.ws4c{word-spacing:37.575000px;}
.wsc0{word-spacing:38.055960px;}
.wsb6{word-spacing:39.138120px;}
.wsba{word-spacing:43.827480px;}
.ws4d{word-spacing:44.308440px;}
.ws4e{word-spacing:44.669160px;}
.wsb4{word-spacing:48.697200px;}
.ws90{word-spacing:53.025840px;}
.wsa1{word-spacing:54.228240px;}
.wsa6{word-spacing:55.731240px;}
.wsc1{word-spacing:81.282240px;}
.ws10{word-spacing:149.547600px;}
._37{margin-left:-2.534220px;}
._1{margin-left:-1.136268px;}
._0{width:1.082160px;}
._9{width:2.470500px;}
._a{width:3.475008px;}
._1a{width:5.329692px;}
._b{width:7.054020px;}
._4{width:8.416800px;}
._3{width:9.559080px;}
._1b{width:10.798164px;}
._24{width:12.098268px;}
._c{width:13.116708px;}
._25{width:14.210316px;}
._19{width:15.270984px;}
._3e{width:16.672932px;}
._1e{width:17.721720px;}
._18{width:19.174212px;}
._12{width:20.798316px;}
._8{width:22.244400px;}
._7{width:23.386800px;}
._1c{width:24.432636px;}
._16{width:25.712964px;}
._15{width:26.839512px;}
._1d{width:28.703916px;}
._29{width:29.708424px;}
._17{width:30.798576px;}
._1f{width:32.108508px;}
._30{width:33.247908px;}
._14{width:34.356420px;}
._13{width:36.194472px;}
._5{width:37.496844px;}
._d{width:38.977740px;}
._38{width:40.114980px;}
._2b{width:41.201028px;}
._28{width:42.695100px;}
._27{width:43.823376px;}
._e{width:44.996040px;}
._f{width:46.384380px;}
._11{width:47.543868px;}
._10{width:48.817080px;}
._6{width:50.455759px;}
._21{width:52.539310px;}
._2f{width:53.758070px;}
._3c{width:54.792426px;}
._22{width:56.312496px;}
._2a{width:57.664764px;}
._3b{width:58.791312px;}
._20{width:60.543720px;}
._3d{width:61.775676px;}
._2c{width:63.432396px;}
._31{width:65.333196px;}
._32{width:66.462876px;}
._2d{width:68.182344px;}
._39{width:69.478776px;}
._26{width:71.733276px;}
._23{width:80.439480px;}
._3a{width:83.387448px;}
._43{width:84.889440px;}
._40{width:86.596848px;}
._41{width:87.709068px;}
._36{width:91.457748px;}
._42{width:113.850000px;}
._2e{width:124.748640px;}
._3f{width:144.227880px;}
._33{width:183.762000px;}
._44{width:189.209664px;}
._34{width:229.122000px;}
._35{width:236.358000px;}
._2{width:1627.490484px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:6.120000px;}
.fsa{font-size:24.120000px;}
.fsb{font-size:29.880000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:42.120000px;}
.fs9{font-size:47.880000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs6{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:83.880000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1f6{bottom:2.880000px;}
.y1e8{bottom:2.970000px;}
.y1eb{bottom:3.240000px;}
.y177{bottom:3.330000px;}
.y235{bottom:18.810000px;}
.y233{bottom:34.290000px;}
.y2{bottom:36.450000px;}
.y5f{bottom:36.450090px;}
.y232{bottom:48.420000px;}
.y248{bottom:89.708580px;}
.y41e{bottom:93.987360px;}
.y3df{bottom:94.257900px;}
.y36b{bottom:97.513740px;}
.y1ca{bottom:99.632250px;}
.yf5{bottom:99.672660px;}
.y2b9{bottom:99.681030px;}
.y166{bottom:101.498400px;}
.y32d{bottom:103.384890px;}
.y2f3{bottom:103.483710px;}
.y247{bottom:108.698490px;}
.y41d{bottom:111.271860px;}
.y454{bottom:111.329550px;}
.y3de{bottom:111.542400px;}
.y3a9{bottom:111.568860px;}
.y36a{bottom:114.708060px;}
.y1c9{bottom:118.622160px;}
.yf4{bottom:118.662570px;}
.y2b8{bottom:118.670940px;}
.y97{bottom:118.728450px;}
.ycf{bottom:118.764180px;}
.y191{bottom:118.951560px;}
.y12d{bottom:120.438360px;}
.y165{bottom:120.488310px;}
.y280{bottom:120.729690px;}
.y32c{bottom:122.012460px;}
.y2f2{bottom:122.111280px;}
.y20b{bottom:126.975330px;}
.y5e{bottom:127.391220px;}
.y246{bottom:127.688400px;}
.y34{bottom:128.244000px;}
.y41c{bottom:128.556360px;}
.y453{bottom:128.614050px;}
.y3dd{bottom:128.826900px;}
.y3a8{bottom:128.853360px;}
.y369{bottom:131.992560px;}
.y1c8{bottom:137.612070px;}
.yf3{bottom:137.652480px;}
.y2b7{bottom:137.660850px;}
.y96{bottom:137.718360px;}
.yce{bottom:137.754090px;}
.y190{bottom:137.941470px;}
.y12c{bottom:139.428270px;}
.y164{bottom:139.478220px;}
.y27f{bottom:139.719600px;}
.y32b{bottom:140.557680px;}
.y2f1{bottom:140.656500px;}
.y41b{bottom:145.750680px;}
.y452{bottom:145.808370px;}
.y20a{bottom:145.882890px;}
.y3dc{bottom:146.021220px;}
.y3a7{bottom:146.047680px;}
.y5d{bottom:146.298780px;}
.y33{bottom:146.610000px;}
.y245{bottom:146.678310px;}
.y368{bottom:149.277060px;}
.y1c7{bottom:156.519630px;}
.yf2{bottom:156.560040px;}
.y2b6{bottom:156.568410px;}
.y95{bottom:156.625920px;}
.ycd{bottom:156.661650px;}
.y18f{bottom:156.931380px;}
.y12b{bottom:158.418180px;}
.y163{bottom:158.468130px;}
.y27e{bottom:158.709510px;}
.y32a{bottom:159.185250px;}
.y2f0{bottom:159.284070px;}
.y41a{bottom:163.035180px;}
.y451{bottom:163.092870px;}
.y3db{bottom:163.305720px;}
.y3a6{bottom:163.332180px;}
.y209{bottom:164.872800px;}
.y5c{bottom:165.288690px;}
.y244{bottom:165.668220px;}
.y367{bottom:166.471380px;}
.y32{bottom:174.040830px;}
.yf1{bottom:175.549950px;}
.y2b5{bottom:175.558320px;}
.y1c6{bottom:175.591890px;}
.y94{bottom:175.615830px;}
.ycc{bottom:175.651560px;}
.y18e{bottom:175.921290px;}
.y12a{bottom:177.325740px;}
.y162{bottom:177.375690px;}
.y27d{bottom:177.699420px;}
.y329{bottom:177.730470px;}
.y2ef{bottom:177.829290px;}
.y419{bottom:180.319680px;}
.y450{bottom:180.377370px;}
.y3da{bottom:180.590220px;}
.y3a5{bottom:180.616680px;}
.y366{bottom:183.755880px;}
.y208{bottom:183.862710px;}
.y5b{bottom:184.278600px;}
.y243{bottom:184.575780px;}
.y31{bottom:192.317310px;}
.yf0{bottom:194.539860px;}
.y2b4{bottom:194.548230px;}
.y1c5{bottom:194.581800px;}
.y93{bottom:194.605740px;}
.ycb{bottom:194.641470px;}
.y18d{bottom:194.828850px;}
.y129{bottom:196.315650px;}
.y328{bottom:196.358040px;}
.y161{bottom:196.365600px;}
.y2ee{bottom:196.456860px;}
.y27c{bottom:196.689330px;}
.y418{bottom:197.514000px;}
.y44f{bottom:197.571690px;}
.y3d9{bottom:197.784540px;}
.y3a4{bottom:197.811000px;}
.y365{bottom:201.040380px;}
.y207{bottom:202.852620px;}
.y5a{bottom:203.268510px;}
.y242{bottom:203.565690px;}
.y30{bottom:210.683970px;}
.yef{bottom:213.529770px;}
.y2b3{bottom:213.538140px;}
.y1c4{bottom:213.571710px;}
.y92{bottom:213.595650px;}
.yca{bottom:213.631380px;}
.y18c{bottom:213.818760px;}
.y417{bottom:214.798500px;}
.y44e{bottom:214.856190px;}
.y327{bottom:214.903260px;}
.y2ed{bottom:215.002080px;}
.y3d8{bottom:215.069040px;}
.y3a3{bottom:215.095500px;}
.y128{bottom:215.305560px;}
.y160{bottom:215.355510px;}
.y27b{bottom:215.596890px;}
.y364{bottom:218.234700px;}
.y206{bottom:221.842530px;}
.y59{bottom:222.258420px;}
.y241{bottom:222.555600px;}
.y2f{bottom:228.960450px;}
.y416{bottom:232.083000px;}
.y44d{bottom:232.140690px;}
.y3d7{bottom:232.353540px;}
.y3a2{bottom:232.380000px;}
.yee{bottom:232.519680px;}
.y2b2{bottom:232.528050px;}
.y1c3{bottom:232.561620px;}
.y91{bottom:232.585560px;}
.yc9{bottom:232.621290px;}
.y18b{bottom:232.808670px;}
.y326{bottom:233.448480px;}
.y2ec{bottom:233.547300px;}
.y127{bottom:234.295470px;}
.y15f{bottom:234.345420px;}
.y27a{bottom:234.586800px;}
.y363{bottom:235.519200px;}
.y205{bottom:240.750090px;}
.y58{bottom:241.248330px;}
.y240{bottom:241.545510px;}
.y415{bottom:249.277320px;}
.y44c{bottom:249.335010px;}
.y3d6{bottom:249.547860px;}
.y3a1{bottom:249.570000px;}
.yed{bottom:251.509590px;}
.y2b1{bottom:251.517960px;}
.y1c2{bottom:251.551530px;}
.y90{bottom:251.575470px;}
.yc8{bottom:251.611200px;}
.y18a{bottom:251.798580px;}
.y325{bottom:252.076050px;}
.y2eb{bottom:252.174870px;}
.y362{bottom:252.803700px;}
.y126{bottom:253.285380px;}
.y15e{bottom:253.335330px;}
.y279{bottom:253.576710px;}
.y2e{bottom:256.390200px;}
.y204{bottom:259.740000px;}
.y57{bottom:260.155890px;}
.y23f{bottom:260.535420px;}
.y414{bottom:266.561820px;}
.y44b{bottom:266.619510px;}
.y3d5{bottom:266.832360px;}
.y3a0{bottom:266.841180px;}
.y361{bottom:269.998020px;}
.yec{bottom:270.417150px;}
.y2b0{bottom:270.425520px;}
.y1c1{bottom:270.459090px;}
.y8f{bottom:270.483030px;}
.yc7{bottom:270.518760px;}
.y324{bottom:270.621270px;}
.y2ea{bottom:270.720090px;}
.y189{bottom:270.788490px;}
.y125{bottom:272.275290px;}
.y15d{bottom:272.325240px;}
.y278{bottom:272.566620px;}
.y2d{bottom:274.756860px;}
.y203{bottom:278.280000px;}
.y56{bottom:279.145800px;}
.y23e{bottom:279.442980px;}
.y413{bottom:283.756140px;}
.y44a{bottom:283.813830px;}
.y3d4{bottom:284.026680px;}
.y39f{bottom:284.035500px;}
.y360{bottom:287.282520px;}
.y323{bottom:289.248840px;}
.y2e9{bottom:289.347660px;}
.yeb{bottom:289.407060px;}
.y2af{bottom:289.415430px;}
.y1c0{bottom:289.449000px;}
.y8e{bottom:289.472940px;}
.yc6{bottom:289.508670px;}
.y188{bottom:289.696050px;}
.y124{bottom:291.182850px;}
.y15c{bottom:291.232800px;}
.y277{bottom:291.556530px;}
.y2c{bottom:293.033340px;}
.y202{bottom:297.270000px;}
.y55{bottom:298.135710px;}
.y23d{bottom:298.432890px;}
.y412{bottom:301.040640px;}
.y449{bottom:301.098330px;}
.y3d3{bottom:301.311180px;}
.y39e{bottom:301.320000px;}
.y35f{bottom:304.567020px;}
.y322{bottom:307.794060px;}
.y2e8{bottom:307.892880px;}
.yea{bottom:308.396970px;}
.y2ae{bottom:308.405340px;}
.y1bf{bottom:308.438910px;}
.y8d{bottom:308.462850px;}
.yc5{bottom:308.498580px;}
.y187{bottom:308.685960px;}
.y123{bottom:310.172760px;}
.y15b{bottom:310.222710px;}
.y276{bottom:310.464090px;}
.y1ff{bottom:310.770000px;}
.y2b{bottom:311.400000px;}
.y54{bottom:317.125620px;}
.y201{bottom:317.250000px;}
.y23c{bottom:317.422800px;}
.y411{bottom:318.325140px;}
.y448{bottom:318.382830px;}
.y3d2{bottom:318.595680px;}
.y39d{bottom:318.600000px;}
.y35e{bottom:321.761340px;}
.y321{bottom:326.421630px;}
.y2e7{bottom:326.520450px;}
.ye9{bottom:327.386880px;}
.y2ad{bottom:327.395250px;}
.y1be{bottom:327.428820px;}
.y8c{bottom:327.452760px;}
.yc4{bottom:327.488490px;}
.y186{bottom:327.675870px;}
.y122{bottom:329.162670px;}
.y15a{bottom:329.212620px;}
.y275{bottom:329.454000px;}
.y410{bottom:335.519460px;}
.y447{bottom:335.577150px;}
.y39c{bottom:335.790000px;}
.y53{bottom:336.115530px;}
.y23b{bottom:336.412710px;}
.y200{bottom:337.320000px;}
.y2a{bottom:338.823720px;}
.y35d{bottom:339.045840px;}
.y320{bottom:344.966850px;}
.y2e6{bottom:345.065670px;}
.ye8{bottom:346.376790px;}
.y2ac{bottom:346.385160px;}
.y1bd{bottom:346.418730px;}
.y8b{bottom:346.442670px;}
.yc3{bottom:346.478400px;}
.y185{bottom:346.665780px;}
.y121{bottom:348.152580px;}
.y159{bottom:348.202530px;}
.y274{bottom:348.443910px;}
.y40f{bottom:352.803960px;}
.y446{bottom:352.861650px;}
.y39b{bottom:353.061180px;}
.y3d1{bottom:353.070000px;}
.y1fe{bottom:354.330000px;}
.y52{bottom:355.023090px;}
.y23a{bottom:355.402620px;}
.y35c{bottom:356.330340px;}
.y29{bottom:357.100200px;}
.y31f{bottom:363.512070px;}
.y2e5{bottom:363.610890px;}
.ye7{bottom:365.284350px;}
.y2ab{bottom:365.292720px;}
.y1bc{bottom:365.326290px;}
.y8a{bottom:365.350230px;}
.yc2{bottom:365.385960px;}
.y1fb{bottom:365.580000px;}
.y184{bottom:365.655690px;}
.y120{bottom:367.142490px;}
.y158{bottom:367.192440px;}
.y273{bottom:367.433820px;}
.y40e{bottom:370.088460px;}
.y445{bottom:370.146150px;}
.y39a{bottom:370.345680px;}
.y3d0{bottom:370.350000px;}
.y1fd{bottom:371.340000px;}
.y35b{bottom:373.524660px;}
.y51{bottom:374.013000px;}
.y239{bottom:374.392530px;}
.y28{bottom:375.466860px;}
.y31e{bottom:382.139640px;}
.y2e4{bottom:382.238460px;}
.ye6{bottom:384.274260px;}
.y2aa{bottom:384.282630px;}
.y1bb{bottom:384.316200px;}
.y89{bottom:384.340140px;}
.yc1{bottom:384.375870px;}
.y183{bottom:384.645600px;}
.y11f{bottom:386.050050px;}
.y157{bottom:386.100000px;}
.y272{bottom:386.423730px;}
.y40d{bottom:387.282780px;}
.y444{bottom:387.340470px;}
.y3cf{bottom:387.477720px;}
.y399{bottom:387.540000px;}
.y1fc{bottom:388.350000px;}
.y35a{bottom:390.809160px;}
.y50{bottom:393.002910px;}
.y238{bottom:393.300090px;}
.y27{bottom:393.743340px;}
.y31d{bottom:400.684860px;}
.y2e3{bottom:400.783680px;}
.ye5{bottom:403.264170px;}
.y2a9{bottom:403.272540px;}
.y1ba{bottom:403.306110px;}
.y88{bottom:403.330050px;}
.yc0{bottom:403.365780px;}
.y182{bottom:403.553160px;}
.y156{bottom:404.370000px;}
.y40c{bottom:404.567280px;}
.y443{bottom:404.624970px;}
.y3ce{bottom:404.762220px;}
.y398{bottom:404.820000px;}
.y11e{bottom:405.039960px;}
.y1fa{bottom:405.360000px;}
.y271{bottom:405.413640px;}
.y359{bottom:408.003480px;}
.y4f{bottom:411.992820px;}
.y26{bottom:412.110000px;}
.y237{bottom:412.290000px;}
.y1f7{bottom:418.140000px;}
.y31c{bottom:419.312430px;}
.y2e2{bottom:419.328900px;}
.y155{bottom:420.570000px;}
.y40b{bottom:421.851780px;}
.y442{bottom:421.909470px;}
.y3cd{bottom:422.046720px;}
.y397{bottom:422.100000px;}
.ye4{bottom:422.254080px;}
.y2a8{bottom:422.262450px;}
.y1b9{bottom:422.296020px;}
.y87{bottom:422.319960px;}
.ybf{bottom:422.355690px;}
.y181{bottom:422.543070px;}
.y1f9{bottom:423.900000px;}
.y11d{bottom:424.029870px;}
.y270{bottom:424.321200px;}
.y358{bottom:425.287980px;}
.y236{bottom:430.830000px;}
.y4e{bottom:430.982730px;}
.y31b{bottom:437.857650px;}
.y2e1{bottom:437.874120px;}
.y40a{bottom:439.046100px;}
.y441{bottom:439.103790px;}
.y396{bottom:439.196760px;}
.y3cc{bottom:439.241040px;}
.y25{bottom:439.560000px;}
.y154{bottom:440.010000px;}
.ye3{bottom:441.243990px;}
.y2a7{bottom:441.252360px;}
.y1b8{bottom:441.285930px;}
.y86{bottom:441.309870px;}
.ybe{bottom:441.345600px;}
.y180{bottom:441.532980px;}
.y1f8{bottom:442.440000px;}
.y357{bottom:442.572480px;}
.y11c{bottom:443.019780px;}
.y231{bottom:443.070000px;}
.y26f{bottom:443.311110px;}
.y4d{bottom:449.972640px;}
.y409{bottom:456.330600px;}
.y440{bottom:456.388290px;}
.y395{bottom:456.481260px;}
.y31a{bottom:456.485220px;}
.y2e0{bottom:456.501690px;}
.y3cb{bottom:456.525540px;}
.y24{bottom:457.830000px;}
.y356{bottom:459.766800px;}
.y153{bottom:460.148580px;}
.ye2{bottom:460.151550px;}
.y2a6{bottom:460.159920px;}
.y1b7{bottom:460.193490px;}
.y85{bottom:460.217430px;}
.ybd{bottom:460.253160px;}
.y17f{bottom:460.522890px;}
.y1f5{bottom:460.980000px;}
.y11b{bottom:462.009690px;}
.y26e{bottom:462.301020px;}
.y4c{bottom:468.880200px;}
.y408{bottom:473.615100px;}
.y43f{bottom:473.672790px;}
.y394{bottom:473.765760px;}
.y3ca{bottom:473.810040px;}
.y319{bottom:475.030440px;}
.y2df{bottom:475.129260px;}
.y355{bottom:477.051300px;}
.y234{bottom:477.360000px;}
.y152{bottom:479.138490px;}
.ye1{bottom:479.141460px;}
.y2a5{bottom:479.149830px;}
.y1b6{bottom:479.183400px;}
.y84{bottom:479.207340px;}
.ybc{bottom:479.243070px;}
.y17e{bottom:479.512800px;}
.y11a{bottom:480.917250px;}
.y26d{bottom:481.290930px;}
.y1f4{bottom:483.210000px;}
.y4b{bottom:487.870110px;}
.y407{bottom:490.809420px;}
.y43e{bottom:490.867110px;}
.y393{bottom:490.960080px;}
.y3c9{bottom:491.004360px;}
.y318{bottom:493.575660px;}
.y2de{bottom:493.674480px;}
.y354{bottom:494.335800px;}
.y1f1{bottom:496.710000px;}
.y151{bottom:498.128400px;}
.ye0{bottom:498.131370px;}
.y2a4{bottom:498.139740px;}
.y1b5{bottom:498.173310px;}
.y83{bottom:498.197250px;}
.ybb{bottom:498.232980px;}
.y17d{bottom:498.420360px;}
.y119{bottom:499.907160px;}
.y26c{bottom:500.280840px;}
.y230{bottom:502.740000px;}
.y1f3{bottom:503.280000px;}
.y4a{bottom:506.860020px;}
.y23{bottom:508.029120px;}
.y406{bottom:508.093920px;}
.y43d{bottom:508.151610px;}
.y392{bottom:508.244580px;}
.y3c8{bottom:508.288860px;}
.y353{bottom:511.530120px;}
.y317{bottom:512.203230px;}
.y2dd{bottom:512.302050px;}
.y150{bottom:517.118310px;}
.ydf{bottom:517.121280px;}
.y2a3{bottom:517.129650px;}
.y1b4{bottom:517.163220px;}
.y82{bottom:517.187160px;}
.yba{bottom:517.222890px;}
.y17c{bottom:517.410270px;}
.y118{bottom:518.897070px;}
.y26b{bottom:519.188400px;}
.y22f{bottom:522.720000px;}
.y1f2{bottom:523.260000px;}
.y22{bottom:525.313620px;}
.y405{bottom:525.378420px;}
.y43c{bottom:525.436110px;}
.y391{bottom:525.529080px;}
.y3c7{bottom:525.573360px;}
.y49{bottom:525.849930px;}
.y352{bottom:528.814620px;}
.y316{bottom:530.748450px;}
.y2dc{bottom:530.847270px;}
.y14f{bottom:536.108220px;}
.yde{bottom:536.111190px;}
.y2a2{bottom:536.119560px;}
.y1b3{bottom:536.153130px;}
.y81{bottom:536.177070px;}
.yb9{bottom:536.212800px;}
.y17b{bottom:536.400180px;}
.y117{bottom:537.886980px;}
.y26a{bottom:538.178310px;}
.y1f0{bottom:540.270000px;}
.y21{bottom:542.507940px;}
.y404{bottom:542.572740px;}
.y43b{bottom:542.630430px;}
.y390{bottom:542.723400px;}
.y3c6{bottom:542.767680px;}
.y22e{bottom:542.790000px;}
.y48{bottom:544.839840px;}
.y351{bottom:546.099120px;}
.y315{bottom:549.376020px;}
.y2db{bottom:549.474840px;}
.y1ee{bottom:551.520000px;}
.y14e{bottom:555.098130px;}
.ydd{bottom:555.101100px;}
.y2a1{bottom:555.109470px;}
.y1b2{bottom:555.143040px;}
.y80{bottom:555.166980px;}
.yb8{bottom:555.202710px;}
.y17a{bottom:555.390090px;}
.y116{bottom:556.876890px;}
.y269{bottom:557.168220px;}
.y1ef{bottom:557.370000px;}
.y20{bottom:559.792440px;}
.y22d{bottom:559.800000px;}
.y403{bottom:559.857240px;}
.y43a{bottom:559.914930px;}
.y38f{bottom:560.007900px;}
.y3c5{bottom:560.052180px;}
.y350{bottom:563.293440px;}
.y47{bottom:563.747400px;}
.y314{bottom:567.921240px;}
.y2da{bottom:568.020060px;}
.y14d{bottom:574.005690px;}
.ydc{bottom:574.008660px;}
.y2a0{bottom:574.017030px;}
.y1b1{bottom:574.050600px;}
.y7f{bottom:574.074540px;}
.yb7{bottom:574.110270px;}
.y179{bottom:574.380000px;}
.y115{bottom:575.866800px;}
.y268{bottom:576.158130px;}
.y22c{bottom:576.810000px;}
.y1f{bottom:577.076940px;}
.y402{bottom:577.141740px;}
.y439{bottom:577.199430px;}
.y38e{bottom:577.292400px;}
.y3c4{bottom:577.336680px;}
.y34f{bottom:580.577940px;}
.y46{bottom:582.737310px;}
.y313{bottom:586.466460px;}
.y2d9{bottom:586.565280px;}
.y1ed{bottom:591.390000px;}
.y178{bottom:592.830000px;}
.y14c{bottom:592.995600px;}
.ydb{bottom:592.998570px;}
.y29f{bottom:593.006940px;}
.y1b0{bottom:593.040510px;}
.y7e{bottom:593.064450px;}
.yb6{bottom:593.100180px;}
.y22b{bottom:593.820000px;}
.y1e{bottom:594.271260px;}
.y401{bottom:594.336060px;}
.y438{bottom:594.393750px;}
.y38d{bottom:594.486720px;}
.y3c3{bottom:594.531000px;}
.y114{bottom:594.774360px;}
.y267{bottom:595.148040px;}
.y34e{bottom:597.862440px;}
.y45{bottom:601.727220px;}
.y1e9{bottom:604.170000px;}
.y312{bottom:605.094030px;}
.y2d8{bottom:605.192850px;}
.y176{bottom:607.320000px;}
.y1ec{bottom:609.930000px;}
.y22a{bottom:610.920000px;}
.y1d{bottom:611.555760px;}
.y400{bottom:611.620560px;}
.y437{bottom:611.678250px;}
.y38c{bottom:611.771220px;}
.y3c2{bottom:611.815500px;}
.y14b{bottom:611.985510px;}
.yda{bottom:611.988480px;}
.y29e{bottom:611.996850px;}
.y1af{bottom:612.030420px;}
.y7d{bottom:612.054360px;}
.yb5{bottom:612.090090px;}
.y113{bottom:613.764270px;}
.y266{bottom:614.055600px;}
.y34d{bottom:615.056760px;}
.y44{bottom:620.717130px;}
.y175{bottom:622.260000px;}
.y311{bottom:623.639250px;}
.y2d7{bottom:623.738070px;}
.y229{bottom:627.930000px;}
.y1ea{bottom:628.470000px;}
.y1c{bottom:628.840260px;}
.y3ff{bottom:628.905060px;}
.y436{bottom:628.962750px;}
.y38b{bottom:629.055720px;}
.y3c1{bottom:629.100000px;}
.y14a{bottom:630.975420px;}
.yd9{bottom:630.978390px;}
.y29d{bottom:630.986760px;}
.y1ae{bottom:631.020330px;}
.y7c{bottom:631.044270px;}
.yb4{bottom:631.080000px;}
.y34c{bottom:632.341260px;}
.y112{bottom:632.754180px;}
.y265{bottom:633.045510px;}
.y43{bottom:639.707040px;}
.y310{bottom:642.266820px;}
.y2d6{bottom:642.365640px;}
.y228{bottom:644.940000px;}
.y1b{bottom:646.034580px;}
.y3fe{bottom:646.099380px;}
.y435{bottom:646.157070px;}
.y38a{bottom:646.250040px;}
.y3c0{bottom:646.290000px;}
.y1e7{bottom:646.920000px;}
.yb3{bottom:649.530000px;}
.y34b{bottom:649.625760px;}
.y149{bottom:649.965330px;}
.yd8{bottom:649.968300px;}
.y29c{bottom:649.976670px;}
.y1ad{bottom:650.010240px;}
.y7b{bottom:650.034180px;}
.y172{bottom:651.150000px;}
.y111{bottom:651.744090px;}
.y264{bottom:652.035420px;}
.y174{bottom:652.770000px;}
.y42{bottom:658.614600px;}
.y30f{bottom:660.812040px;}
.y2d5{bottom:660.910860px;}
.y227{bottom:661.950000px;}
.y1a{bottom:663.319080px;}
.y3fd{bottom:663.383880px;}
.y434{bottom:663.441570px;}
.y389{bottom:663.534540px;}
.y3bf{bottom:663.570000px;}
.y34a{bottom:666.820080px;}
.yb2{bottom:667.245240px;}
.y1e6{bottom:668.430000px;}
.y148{bottom:668.872890px;}
.yd7{bottom:668.875860px;}
.y29b{bottom:668.884230px;}
.y1ac{bottom:668.917800px;}
.y7a{bottom:668.941740px;}
.y110{bottom:670.734000px;}
.y263{bottom:671.025330px;}
.y173{bottom:675.270000px;}
.y1e5{bottom:677.335500px;}
.y41{bottom:677.604510px;}
.y226{bottom:678.960000px;}
.y30e{bottom:679.439610px;}
.y2d4{bottom:679.538430px;}
.y19{bottom:680.513400px;}
.y3fc{bottom:680.578200px;}
.y433{bottom:680.635890px;}
.y388{bottom:680.728860px;}
.y3be{bottom:680.737680px;}
.y16e{bottom:683.550000px;}
.y349{bottom:684.104580px;}
.yb1{bottom:686.235150px;}
.y147{bottom:687.862800px;}
.yd6{bottom:687.865770px;}
.y29a{bottom:687.874140px;}
.y1ab{bottom:687.907710px;}
.y79{bottom:687.931650px;}
.y10f{bottom:689.641560px;}
.y262{bottom:690.015240px;}
.y1e4{bottom:694.620000px;}
.y225{bottom:695.970000px;}
.y40{bottom:696.594420px;}
.y18{bottom:697.797900px;}
.y3fb{bottom:697.862700px;}
.y432{bottom:697.920390px;}
.y30d{bottom:697.984830px;}
.y387{bottom:698.013360px;}
.y3bd{bottom:698.022180px;}
.y2d3{bottom:698.083650px;}
.y16f{bottom:698.224500px;}
.y171{bottom:699.840000px;}
.y348{bottom:701.389080px;}
.yb0{bottom:705.225060px;}
.y146{bottom:706.852710px;}
.yd5{bottom:706.855680px;}
.y299{bottom:706.864050px;}
.y1aa{bottom:706.897620px;}
.y78{bottom:706.921560px;}
.y10e{bottom:708.631470px;}
.y261{bottom:709.005150px;}
.y1e3{bottom:712.141380px;}
.y223{bottom:714.870000px;}
.y17{bottom:715.082400px;}
.y3fa{bottom:715.147200px;}
.y431{bottom:715.204890px;}
.y386{bottom:715.297860px;}
.y3bc{bottom:715.306680px;}
.y3f{bottom:715.584330px;}
.y30c{bottom:716.530050px;}
.y2d2{bottom:716.628870px;}
.y347{bottom:718.583400px;}
.yaf{bottom:724.214970px;}
.y170{bottom:724.410000px;}
.y145{bottom:725.842620px;}
.yd4{bottom:725.845590px;}
.y298{bottom:725.853960px;}
.y1a9{bottom:725.887530px;}
.y77{bottom:725.911470px;}
.y10d{bottom:727.621380px;}
.y260{bottom:727.912710px;}
.y1e2{bottom:731.048940px;}
.y16{bottom:732.276720px;}
.y3f9{bottom:732.341520px;}
.y430{bottom:732.399210px;}
.y385{bottom:732.492180px;}
.y3bb{bottom:732.501000px;}
.y3e{bottom:734.574240px;}
.y224{bottom:734.940000px;}
.y30b{bottom:735.157620px;}
.y2d1{bottom:735.256440px;}
.y346{bottom:735.867900px;}
.yae{bottom:743.204880px;}
.y144{bottom:744.832530px;}
.yd3{bottom:744.835500px;}
.y297{bottom:744.843870px;}
.y1a8{bottom:744.877440px;}
.y76{bottom:744.901380px;}
.y10c{bottom:746.611290px;}
.y25f{bottom:746.902620px;}
.y16d{bottom:747.900000px;}
.y15{bottom:749.561220px;}
.y3f8{bottom:749.626020px;}
.y42f{bottom:749.683710px;}
.y384{bottom:749.776680px;}
.y3ba{bottom:749.785500px;}
.y1e1{bottom:750.038850px;}
.y16a{bottom:752.310000px;}
.y345{bottom:753.062220px;}
.y3d{bottom:753.564150px;}
.y30a{bottom:753.702840px;}
.y2d0{bottom:753.801660px;}
.y222{bottom:756.450000px;}
.y16c{bottom:760.045500px;}
.yad{bottom:762.112440px;}
.y143{bottom:763.822440px;}
.yd2{bottom:763.825410px;}
.y296{bottom:763.833780px;}
.y1a7{bottom:763.867350px;}
.y75{bottom:763.891290px;}
.y221{bottom:765.360000px;}
.y10b{bottom:765.601200px;}
.y25e{bottom:765.892530px;}
.y14{bottom:766.845720px;}
.y3f7{bottom:766.910520px;}
.y42e{bottom:766.968210px;}
.y383{bottom:767.061180px;}
.y3b9{bottom:767.070000px;}
.y1e0{bottom:769.028760px;}
.y344{bottom:770.346720px;}
.y16b{bottom:772.290000px;}
.y309{bottom:772.330410px;}
.y2cf{bottom:772.429230px;}
.y3c{bottom:772.471710px;}
.yac{bottom:781.020000px;}
.y142{bottom:782.730000px;}
.yd1{bottom:782.732970px;}
.y295{bottom:782.741340px;}
.y1a6{bottom:782.774910px;}
.y220{bottom:782.777790px;}
.y74{bottom:782.798850px;}
.y13{bottom:784.040040px;}
.y3f6{bottom:784.104840px;}
.y42d{bottom:784.162530px;}
.y382{bottom:784.255500px;}
.y3b8{bottom:784.260000px;}
.y10a{bottom:784.591110px;}
.y25d{bottom:784.882440px;}
.y343{bottom:787.631220px;}
.y1df{bottom:788.018670px;}
.y308{bottom:790.875630px;}
.y2ce{bottom:790.974450px;}
.y3b{bottom:791.461620px;}
.y169{bottom:793.440000px;}
.yab{bottom:800.460000px;}
.y12{bottom:801.324540px;}
.y3f5{bottom:801.389340px;}
.y42c{bottom:801.447030px;}
.y381{bottom:801.540000px;}
.y141{bottom:801.719910px;}
.yd0{bottom:801.722880px;}
.y294{bottom:801.731250px;}
.y1a5{bottom:801.764820px;}
.y21f{bottom:801.767700px;}
.y73{bottom:801.788760px;}
.y109{bottom:803.498670px;}
.y25c{bottom:803.790000px;}
.y342{bottom:804.825540px;}
.y168{bottom:804.955500px;}
.y1de{bottom:807.008580px;}
.y307{bottom:809.503200px;}
.y2cd{bottom:809.602020px;}
.y3a{bottom:810.451530px;}
.y380{bottom:818.502840px;}
.y11{bottom:818.609040px;}
.y3f4{bottom:818.673840px;}
.y42b{bottom:818.731530px;}
.y3b7{bottom:818.820000px;}
.y140{bottom:820.709820px;}
.yaa{bottom:820.712790px;}
.y293{bottom:820.721160px;}
.y1a4{bottom:820.754730px;}
.y21e{bottom:820.757610px;}
.y72{bottom:820.778670px;}
.y341{bottom:822.110040px;}
.y167{bottom:822.240000px;}
.y25b{bottom:822.334500px;}
.y108{bottom:822.488580px;}
.y1dd{bottom:825.916140px;}
.y306{bottom:828.048420px;}
.y2cc{bottom:828.147240px;}
.y39{bottom:829.441440px;}
.y37f{bottom:835.697160px;}
.y10{bottom:835.803360px;}
.y3f3{bottom:835.868160px;}
.y42a{bottom:835.925850px;}
.y3b6{bottom:835.970040px;}
.y25a{bottom:837.900000px;}
.y340{bottom:839.394540px;}
.y13f{bottom:839.699730px;}
.ya9{bottom:839.702700px;}
.y292{bottom:839.711070px;}
.y1a3{bottom:839.744640px;}
.y21d{bottom:839.747520px;}
.y71{bottom:839.768580px;}
.y107{bottom:841.478490px;}
.y1dc{bottom:844.906050px;}
.y305{bottom:846.593640px;}
.y2cb{bottom:846.692460px;}
.y38{bottom:848.431350px;}
.y259{bottom:850.140000px;}
.y37e{bottom:852.981660px;}
.yf{bottom:853.087860px;}
.y3f2{bottom:853.152660px;}
.y429{bottom:853.210350px;}
.y3b5{bottom:853.254540px;}
.y33f{bottom:856.588860px;}
.y13e{bottom:858.689640px;}
.ya8{bottom:858.692610px;}
.y291{bottom:858.700980px;}
.y1a2{bottom:858.734550px;}
.y21c{bottom:858.737430px;}
.y70{bottom:858.758490px;}
.y106{bottom:860.468400px;}
.y1db{bottom:863.895960px;}
.y304{bottom:865.221210px;}
.y2ca{bottom:865.320030px;}
.y37d{bottom:870.266160px;}
.ye{bottom:870.372360px;}
.y3f1{bottom:870.437160px;}
.y428{bottom:870.494850px;}
.y3b4{bottom:870.539040px;}
.y33e{bottom:873.873360px;}
.y13d{bottom:877.597200px;}
.ya7{bottom:877.600170px;}
.y290{bottom:877.608540px;}
.y1a1{bottom:877.642110px;}
.y21b{bottom:877.644990px;}
.y6f{bottom:877.666050px;}
.y105{bottom:879.458310px;}
.y1da{bottom:882.885870px;}
.y303{bottom:883.766430px;}
.y2c9{bottom:883.865250px;}
.y37{bottom:886.230000px;}
.y37c{bottom:887.460480px;}
.yd{bottom:887.566680px;}
.y3f0{bottom:887.631480px;}
.y427{bottom:887.689170px;}
.y3b3{bottom:887.733360px;}
.y33d{bottom:891.157860px;}
.y13c{bottom:896.587110px;}
.ya6{bottom:896.590080px;}
.y28f{bottom:896.598450px;}
.y1a0{bottom:896.632020px;}
.y21a{bottom:896.634900px;}
.y6e{bottom:896.655960px;}
.y104{bottom:898.365870px;}
.y258{bottom:901.170000px;}
.y1d9{bottom:901.875780px;}
.y302{bottom:902.394000px;}
.y2c8{bottom:902.492820px;}
.y37b{bottom:904.744980px;}
.yc{bottom:904.851180px;}
.y3ef{bottom:904.915980px;}
.y426{bottom:904.973670px;}
.y3b2{bottom:905.017860px;}
.y33c{bottom:908.352180px;}
.y13b{bottom:915.577020px;}
.ya5{bottom:915.579990px;}
.y28e{bottom:915.588360px;}
.y19f{bottom:915.621930px;}
.y219{bottom:915.624810px;}
.y6d{bottom:915.645870px;}
.y103{bottom:917.355780px;}
.y1d8{bottom:920.865690px;}
.y301{bottom:920.939220px;}
.y2c7{bottom:921.038040px;}
.y257{bottom:921.240000px;}
.y37a{bottom:922.029480px;}
.yb{bottom:922.135680px;}
.y36{bottom:922.141080px;}
.y3ee{bottom:922.200480px;}
.y425{bottom:922.258170px;}
.y3b1{bottom:922.302360px;}
.y33b{bottom:925.636680px;}
.y13a{bottom:934.566930px;}
.ya4{bottom:934.569900px;}
.y28d{bottom:934.578270px;}
.y19e{bottom:934.611840px;}
.y218{bottom:934.614720px;}
.y6c{bottom:934.635780px;}
.y102{bottom:936.345690px;}
.y379{bottom:939.223800px;}
.ya{bottom:939.330000px;}
.y35{bottom:939.335400px;}
.y3ed{bottom:939.394800px;}
.y424{bottom:939.452490px;}
.y3b0{bottom:939.496680px;}
.y300{bottom:939.566790px;}
.y2c6{bottom:939.665610px;}
.y1d7{bottom:939.773250px;}
.y256{bottom:941.220000px;}
.y33a{bottom:942.921180px;}
.y139{bottom:953.556840px;}
.ya3{bottom:953.559810px;}
.y28c{bottom:953.568180px;}
.y19d{bottom:953.601750px;}
.y217{bottom:953.604630px;}
.y6b{bottom:953.625690px;}
.y101{bottom:955.335600px;}
.y461{bottom:956.466450px;}
.y378{bottom:956.508300px;}
.y3ec{bottom:956.679300px;}
.y423{bottom:956.736990px;}
.y3af{bottom:956.781180px;}
.y2ff{bottom:958.112010px;}
.y2c5{bottom:958.210830px;}
.y255{bottom:958.230000px;}
.y1d6{bottom:958.763160px;}
.y339{bottom:960.115500px;}
.y138{bottom:972.546750px;}
.ya2{bottom:972.549720px;}
.y28b{bottom:972.558090px;}
.y19c{bottom:972.591660px;}
.y216{bottom:972.594540px;}
.y6a{bottom:972.615600px;}
.y460{bottom:973.750950px;}
.y377{bottom:973.792800px;}
.y3eb{bottom:973.963800px;}
.y422{bottom:974.021490px;}
.y3ae{bottom:974.065680px;}
.y100{bottom:974.325510px;}
.y254{bottom:975.240000px;}
.y2fe{bottom:976.657230px;}
.y2c4{bottom:976.756050px;}
.y338{bottom:977.400000px;}
.y1d5{bottom:977.753070px;}
.y9{bottom:984.592440px;}
.y45f{bottom:990.945270px;}
.y376{bottom:990.987120px;}
.y3ea{bottom:991.158120px;}
.y421{bottom:991.215810px;}
.y3ad{bottom:991.260000px;}
.y137{bottom:991.454310px;}
.ya1{bottom:991.457280px;}
.y28a{bottom:991.465650px;}
.y19b{bottom:991.499220px;}
.y215{bottom:991.502100px;}
.y69{bottom:991.523160px;}
.y253{bottom:992.250000px;}
.yff{bottom:993.233070px;}
.y337{bottom:993.600000px;}
.y2fd{bottom:995.284800px;}
.y2c3{bottom:995.383620px;}
.y1d4{bottom:996.742980px;}
.y7{bottom:1003.500000px;}
.y336{bottom:1005.480000px;}
.y45e{bottom:1008.229770px;}
.y375{bottom:1008.271620px;}
.y3e9{bottom:1008.442620px;}
.y420{bottom:1008.500310px;}
.y3ac{bottom:1008.540000px;}
.y252{bottom:1009.350000px;}
.y136{bottom:1010.444220px;}
.ya0{bottom:1010.447190px;}
.y289{bottom:1010.455560px;}
.y19a{bottom:1010.489130px;}
.y214{bottom:1010.492010px;}
.y68{bottom:1010.513070px;}
.y8{bottom:1010.970000px;}
.yfe{bottom:1012.222980px;}
.y2fc{bottom:1013.830020px;}
.y2c2{bottom:1013.928840px;}
.y1d3{bottom:1015.732890px;}
.y335{bottom:1023.840000px;}
.y45d{bottom:1025.424090px;}
.y374{bottom:1025.465940px;}
.y3e8{bottom:1025.636940px;}
.y41f{bottom:1025.694630px;}
.y3ab{bottom:1025.730000px;}
.y251{bottom:1026.360000px;}
.y135{bottom:1029.434130px;}
.y9f{bottom:1029.437100px;}
.y288{bottom:1029.445470px;}
.y199{bottom:1029.479040px;}
.y213{bottom:1029.481920px;}
.y67{bottom:1029.502980px;}
.yfd{bottom:1031.212890px;}
.y2fb{bottom:1032.457590px;}
.y2c1{bottom:1032.556410px;}
.y1d2{bottom:1034.640450px;}
.y45c{bottom:1042.708590px;}
.y373{bottom:1042.750440px;}
.y3e7{bottom:1042.921440px;}
.y334{bottom:1042.979130px;}
.y250{bottom:1043.370000px;}
.y5{bottom:1047.780000px;}
.y134{bottom:1048.424040px;}
.y9e{bottom:1048.427010px;}
.y287{bottom:1048.435380px;}
.y198{bottom:1048.468950px;}
.y212{bottom:1048.471830px;}
.y66{bottom:1048.492890px;}
.yfc{bottom:1050.202800px;}
.y2fa{bottom:1051.002810px;}
.y2c0{bottom:1051.101630px;}
.y1d1{bottom:1053.630360px;}
.y6{bottom:1057.500000px;}
.y45b{bottom:1059.993090px;}
.y372{bottom:1060.034940px;}
.y3e6{bottom:1060.205940px;}
.y333{bottom:1060.263630px;}
.y24f{bottom:1060.380000px;}
.y133{bottom:1067.413950px;}
.y9d{bottom:1067.416920px;}
.y286{bottom:1067.425290px;}
.y197{bottom:1067.458860px;}
.y211{bottom:1067.461740px;}
.y65{bottom:1067.482800px;}
.yfb{bottom:1069.192710px;}
.y2f9{bottom:1069.630380px;}
.y2bf{bottom:1069.729200px;}
.y1d0{bottom:1072.620270px;}
.y45a{bottom:1077.187410px;}
.y371{bottom:1077.229260px;}
.y24e{bottom:1077.390000px;}
.y3e5{bottom:1077.400260px;}
.y332{bottom:1077.457950px;}
.y132{bottom:1086.321510px;}
.y9c{bottom:1086.324480px;}
.y285{bottom:1086.332850px;}
.y196{bottom:1086.366420px;}
.y210{bottom:1086.369300px;}
.y64{bottom:1086.390360px;}
.y2f8{bottom:1088.175600px;}
.yfa{bottom:1088.182620px;}
.y2be{bottom:1088.274420px;}
.y1cf{bottom:1091.610180px;}
.y24d{bottom:1094.400000px;}
.y459{bottom:1094.471910px;}
.y370{bottom:1094.513760px;}
.y3e4{bottom:1094.684760px;}
.y331{bottom:1094.742450px;}
.y4{bottom:1102.680000px;}
.y131{bottom:1105.311420px;}
.y9b{bottom:1105.314390px;}
.y284{bottom:1105.322760px;}
.y195{bottom:1105.356330px;}
.y20f{bottom:1105.359210px;}
.y63{bottom:1105.380270px;}
.y2f7{bottom:1106.720820px;}
.y2bd{bottom:1106.819640px;}
.yf9{bottom:1107.090180px;}
.y1ce{bottom:1110.600090px;}
.y458{bottom:1111.756410px;}
.y36f{bottom:1111.798260px;}
.y3e3{bottom:1111.969260px;}
.y330{bottom:1112.026950px;}
.y24b{bottom:1113.300000px;}
.y130{bottom:1124.301330px;}
.y9a{bottom:1124.304300px;}
.y283{bottom:1124.312670px;}
.y194{bottom:1124.346240px;}
.y20e{bottom:1124.349120px;}
.y62{bottom:1124.370180px;}
.y2f6{bottom:1125.348390px;}
.y2bc{bottom:1125.447210px;}
.yf8{bottom:1126.080090px;}
.y457{bottom:1128.950730px;}
.y36e{bottom:1128.992580px;}
.y3e2{bottom:1129.163580px;}
.y32f{bottom:1129.221270px;}
.y1cd{bottom:1129.590000px;}
.y24c{bottom:1133.370000px;}
.y12f{bottom:1143.291240px;}
.y99{bottom:1143.294210px;}
.y282{bottom:1143.302580px;}
.y193{bottom:1143.336150px;}
.y20d{bottom:1143.339030px;}
.y61{bottom:1143.360090px;}
.y2f5{bottom:1143.893610px;}
.y2bb{bottom:1143.992430px;}
.y3{bottom:1144.080000px;}
.yf7{bottom:1145.070000px;}
.y456{bottom:1146.235230px;}
.y36d{bottom:1146.277080px;}
.y32e{bottom:1146.325410px;}
.y3e1{bottom:1146.448080px;}
.y3aa{bottom:1146.505770px;}
.y1cc{bottom:1147.410000px;}
.y24a{bottom:1154.880000px;}
.y1cb{bottom:1162.260000px;}
.y12e{bottom:1162.281150px;}
.y98{bottom:1162.284120px;}
.y281{bottom:1162.292490px;}
.y192{bottom:1162.326060px;}
.y20c{bottom:1162.328940px;}
.y60{bottom:1162.350000px;}
.y2f4{bottom:1162.521180px;}
.y2ba{bottom:1162.620000px;}
.y455{bottom:1163.519730px;}
.y36c{bottom:1163.561580px;}
.yf6{bottom:1163.609910px;}
.y3e0{bottom:1163.732580px;}
.y249{bottom:1163.790270px;}
.y1{bottom:1216.260000px;}
.h6{height:4.075920px;}
.h1b{height:15.478500px;}
.h1a{height:15.480000px;}
.h17{height:15.570000px;}
.h1c{height:15.571500px;}
.h19{height:16.747383px;}
.h1f{height:20.746758px;}
.h13{height:24.996094px;}
.h24{height:25.839844px;}
.h7{height:29.245430px;}
.h18{height:32.449922px;}
.h20{height:35.550000px;}
.h1d{height:35.551500px;}
.h11{height:36.597656px;}
.h14{height:36.782227px;}
.h5{height:37.494141px;}
.ha{height:40.745391px;}
.h9{height:40.950879px;}
.hc{height:41.156367px;}
.h12{height:41.743477px;}
.h2{height:43.152539px;}
.hd{height:43.257659px;}
.he{height:44.649141px;}
.hb{height:45.092661px;}
.h8{height:45.742852px;}
.h21{height:46.530000px;}
.h15{height:47.276367px;}
.h23{height:47.286914px;}
.h10{height:49.992188px;}
.h22{height:51.900469px;}
.h25{height:52.634355px;}
.h26{height:52.669635px;}
.h28{height:52.723635px;}
.h27{height:52.757835px;}
.h29{height:52.883475px;}
.h1e{height:55.170000px;}
.hf{height:57.677168px;}
.h4{height:73.435957px;}
.h16{height:79.676367px;}
.h3{height:97.593750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w20{width:1.438500px;}
.w18{width:1.530000px;}
.w1a{width:5.670000px;}
.w15{width:29.160000px;}
.w6{width:31.860000px;}
.wa{width:32.041500px;}
.wb{width:34.290000px;}
.wc{width:35.640000px;}
.w9{width:37.980000px;}
.w8{width:42.570000px;}
.w14{width:42.660000px;}
.w16{width:43.470000px;}
.wf{width:44.550000px;}
.w10{width:45.990000px;}
.w7{width:53.010000px;}
.w19{width:53.100000px;}
.wd{width:53.190000px;}
.w2{width:55.350000px;}
.we{width:56.520000px;}
.w1c{width:61.108500px;}
.w13{width:63.720000px;}
.w21{width:63.810000px;}
.w22{width:66.510000px;}
.w1b{width:66.600000px;}
.w1f{width:74.340000px;}
.w17{width:74.431500px;}
.w5{width:78.751500px;}
.w3{width:80.190000px;}
.w4{width:81.900000px;}
.w11{width:116.910000px;}
.w1e{width:189.630000px;}
.w12{width:189.721500px;}
.w23{width:348.660000px;}
.w1d{width:348.750000px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3c{left:2.790000px;}
.x35{left:4.590000px;}
.x3e{left:6.120000px;}
.x37{left:8.010000px;}
.x33{left:10.980000px;}
.x39{left:12.870000px;}
.x31{left:14.580000px;}
.x2d{left:16.020000px;}
.x2f{left:17.190000px;}
.x2b{left:20.430000px;}
.x1a{left:22.590000px;}
.x2{left:85.320000px;}
.x3{left:89.370000px;}
.x49{left:95.944500px;}
.x19{left:99.090000px;}
.xe{left:100.170000px;}
.x4c{left:103.130550px;}
.x4b{left:105.550380px;}
.x13{left:106.650000px;}
.x1{left:109.533000px;}
.x4a{left:112.315680px;}
.x20{left:117.180000px;}
.x4{left:126.342000px;}
.x3f{left:127.890000px;}
.x17{left:136.174500px;}
.x42{left:141.840000px;}
.x43{left:143.280000px;}
.xb{left:149.220000px;}
.xc{left:157.050000px;}
.x21{left:170.190000px;}
.x18{left:172.440000px;}
.xf{left:178.926840px;}
.x40{left:181.080000px;}
.x44{left:196.470000px;}
.x1b{left:205.920000px;}
.x5{left:210.420000px;}
.x22{left:212.760000px;}
.x28{left:223.380000px;}
.x15{left:228.514500px;}
.x23{left:244.620000px;}
.x45{left:260.280000px;}
.x29{left:265.950000px;}
.x24{left:282.600000px;}
.x1c{left:286.920000px;}
.x46{left:302.940000px;}
.x47{left:308.610000px;}
.x25{left:314.640000px;}
.x41{left:316.620000px;}
.x2a{left:322.830000px;}
.x26{left:348.930000px;}
.xd{left:357.144030px;}
.x6{left:359.640000px;}
.x7{left:366.390000px;}
.x1d{left:369.540000px;}
.x48{left:375.120000px;}
.x27{left:384.570000px;}
.x16{left:392.134500px;}
.x11{left:461.430720px;}
.x14{left:476.295390px;}
.x10{left:481.676100px;}
.x12{left:482.775120px;}
.x1e{left:487.649160px;}
.x1f{left:504.036810px;}
.x8{left:513.360000px;}
.x36{left:517.950000px;}
.x9{left:520.110000px;}
.x2e{left:557.190000px;}
.x38{left:572.670000px;}
.x2c{left:620.910000px;}
.x3a{left:636.390000px;}
.x30{left:663.570000px;}
.x3b{left:679.050000px;}
.xa{left:684.540000px;}
.x32{left:692.730000px;}
.x34{left:736.200000px;}
.x3d{left:751.230000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.800000pt;}
.ls39{letter-spacing:-0.644160pt;}
.ls87{letter-spacing:-0.587840pt;}
.ls97{letter-spacing:-0.427520pt;}
.ls20{letter-spacing:-0.409920pt;}
.ls73{letter-spacing:-0.374080pt;}
.ls78{letter-spacing:-0.351360pt;}
.ls6c{letter-spacing:-0.320640pt;}
.ls21{letter-spacing:-0.292800pt;}
.ls1c{letter-spacing:-0.267200pt;}
.ls16{letter-spacing:-0.213760pt;}
.ls14{letter-spacing:-0.213333pt;}
.ls6a{letter-spacing:-0.192000pt;}
.ls37{letter-spacing:-0.175680pt;}
.ls1e{letter-spacing:-0.160320pt;}
.ls6d{letter-spacing:-0.144000pt;}
.ls1f{letter-spacing:-0.117120pt;}
.ls15{letter-spacing:-0.106880pt;}
.ls61{letter-spacing:-0.096000pt;}
.ls18{letter-spacing:-0.074560pt;}
.ls1a{letter-spacing:-0.058560pt;}
.ls1b{letter-spacing:-0.053440pt;}
.ls13{letter-spacing:0.000000pt;}
.ls69{letter-spacing:0.016000pt;}
.ls31{letter-spacing:0.017568pt;}
.ls1d{letter-spacing:0.053440pt;}
.ls9{letter-spacing:0.058560pt;}
.ls17{letter-spacing:0.074560pt;}
.ls66{letter-spacing:0.080160pt;}
.ls6e{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.106880pt;}
.ls1{letter-spacing:0.128000pt;}
.ls80{letter-spacing:0.128256pt;}
.ls4d{letter-spacing:0.128832pt;}
.ls83{letter-spacing:0.133600pt;}
.ls7c{letter-spacing:0.138944pt;}
.ls60{letter-spacing:0.144000pt;}
.ls2{letter-spacing:0.149120pt;}
.ls6{letter-spacing:0.160320pt;}
.ls7d{letter-spacing:0.165664pt;}
.ls3{letter-spacing:0.175680pt;}
.ls7b{letter-spacing:0.176352pt;}
.ls86{letter-spacing:0.192384pt;}
.ls3a{letter-spacing:0.234240pt;}
.lsb{letter-spacing:0.351360pt;}
.ls45{letter-spacing:0.392352pt;}
.ls6f{letter-spacing:0.404064pt;}
.ls25{letter-spacing:0.409920pt;}
.ls63{letter-spacing:0.421632pt;}
.ls96{letter-spacing:0.427520pt;}
.ls19{letter-spacing:0.447360pt;}
.ls38{letter-spacing:0.468480pt;}
.ls95{letter-spacing:0.641280pt;}
.ls91{letter-spacing:0.694720pt;}
.lsa{letter-spacing:0.702720pt;}
.ls71{letter-spacing:1.054080pt;}
.ls33{letter-spacing:1.122240pt;}
.ls23{letter-spacing:1.387872pt;}
.ls6b{letter-spacing:1.698240pt;}
.ls8d{letter-spacing:2.297920pt;}
.ls44{letter-spacing:2.342400pt;}
.ls8f{letter-spacing:2.618560pt;}
.ls2f{letter-spacing:2.635200pt;}
.lsd{letter-spacing:2.963136pt;}
.ls7f{letter-spacing:3.046080pt;}
.ls5c{letter-spacing:3.572160pt;}
.ls82{letter-spacing:4.221760pt;}
.ls11{letter-spacing:4.860480pt;}
.ls28{letter-spacing:4.866336pt;}
.ls8c{letter-spacing:5.269120pt;}
.ls74{letter-spacing:5.352384pt;}
.ls4c{letter-spacing:5.487072pt;}
.ls75{letter-spacing:5.504640pt;}
.ls79{letter-spacing:5.595168pt;}
.ls7a{letter-spacing:5.611200pt;}
.ls8{letter-spacing:6.148800pt;}
.ls7{letter-spacing:6.330336pt;}
.ls98{letter-spacing:7.107520pt;}
.ls3f{letter-spacing:7.144320pt;}
.ls3e{letter-spacing:7.437120pt;}
.ls70{letter-spacing:8.374080pt;}
.ls8a{letter-spacing:8.710720pt;}
.ls12{letter-spacing:9.006528pt;}
.ls92{letter-spacing:9.352000pt;}
.ls8e{letter-spacing:9.652160pt;}
.ls4f{letter-spacing:9.662400pt;}
.ls4e{letter-spacing:9.703392pt;}
.ls30{letter-spacing:9.978624pt;}
.ls34{letter-spacing:10.013760pt;}
.ls64{letter-spacing:10.599360pt;}
.ls2b{letter-spacing:10.605216pt;}
.ls59{letter-spacing:10.652064pt;}
.ls2a{letter-spacing:10.657920pt;}
.ls5a{letter-spacing:10.669632pt;}
.ls29{letter-spacing:10.950720pt;}
.ls5{letter-spacing:11.377376pt;}
.ls43{letter-spacing:11.419200pt;}
.ls4b{letter-spacing:11.893536pt;}
.ls41{letter-spacing:12.239040pt;}
.ls2e{letter-spacing:12.602112pt;}
.ls47{letter-spacing:13.176000pt;}
.ls67{letter-spacing:14.815680pt;}
.ls46{letter-spacing:15.108480pt;}
.ls27{letter-spacing:15.758496pt;}
.ls40{letter-spacing:15.981024pt;}
.ls26{letter-spacing:16.086432pt;}
.ls24{letter-spacing:16.748160pt;}
.ls42{letter-spacing:17.040960pt;}
.ls10{letter-spacing:17.333760pt;}
.ls49{letter-spacing:17.685120pt;}
.ls65{letter-spacing:18.914880pt;}
.ls35{letter-spacing:19.910400pt;}
.ls94{letter-spacing:19.933120pt;}
.ls5f{letter-spacing:21.198720pt;}
.ls5d{letter-spacing:21.491520pt;}
.ls5e{letter-spacing:22.487040pt;}
.ls93{letter-spacing:22.498240pt;}
.ls4a{letter-spacing:22.779840pt;}
.ls51{letter-spacing:22.996512pt;}
.ls88{letter-spacing:24.742720pt;}
.ls3b{letter-spacing:26.000640pt;}
.lse{letter-spacing:27.570048pt;}
.lsf{letter-spacing:27.581760pt;}
.ls2d{letter-spacing:28.225920pt;}
.lsc{letter-spacing:30.421920pt;}
.ls36{letter-spacing:31.329600pt;}
.ls76{letter-spacing:31.446720pt;}
.ls3c{letter-spacing:31.739520pt;}
.ls81{letter-spacing:31.743360pt;}
.ls68{letter-spacing:32.975136pt;}
.ls5b{letter-spacing:33.027840pt;}
.ls62{letter-spacing:35.545920pt;}
.ls84{letter-spacing:38.797440pt;}
.ls90{letter-spacing:39.118080pt;}
.ls48{letter-spacing:39.410880pt;}
.ls72{letter-spacing:42.286176pt;}
.ls2c{letter-spacing:46.789440pt;}
.ls85{letter-spacing:47.775360pt;}
.ls89{letter-spacing:49.378560pt;}
.ls3d{letter-spacing:50.947200pt;}
.ls77{letter-spacing:58.969920pt;}
.ls50{letter-spacing:73.024320pt;}
.ls22{letter-spacing:74.014400pt;}
.ls7e{letter-spacing:75.083200pt;}
.ls8b{letter-spacing:75.938240pt;}
.ls32{letter-spacing:131.584320pt;}
.ls53{letter-spacing:135.504000pt;}
.ls58{letter-spacing:147.360000pt;}
.ls54{letter-spacing:151.824000pt;}
.ls55{letter-spacing:158.256000pt;}
.ls52{letter-spacing:185.136000pt;}
.ls56{letter-spacing:203.664000pt;}
.ls57{letter-spacing:210.096000pt;}
.ws4{word-spacing:-32.128000pt;}
.ws8{word-spacing:-19.087360pt;}
.ws6{word-spacing:-18.789120pt;}
.ws5{word-spacing:-18.714560pt;}
.ws60{word-spacing:-15.108480pt;}
.ws13{word-spacing:-14.815680pt;}
.ws11{word-spacing:-14.698560pt;}
.ws5d{word-spacing:-14.640000pt;}
.ws5f{word-spacing:-14.581440pt;}
.ws12{word-spacing:-14.522880pt;}
.ws5e{word-spacing:-14.464320pt;}
.ws14{word-spacing:-14.347200pt;}
.ws82{word-spacing:-14.230080pt;}
.ws61{word-spacing:-13.520320pt;}
.ws88{word-spacing:-13.466880pt;}
.wsa{word-spacing:-13.360000pt;}
.ws9{word-spacing:-13.306560pt;}
.wsf{word-spacing:-13.253120pt;}
.ws87{word-spacing:-13.199680pt;}
.ws86{word-spacing:-13.146240pt;}
.ws89{word-spacing:-13.039360pt;}
.ws81{word-spacing:-12.985920pt;}
.wsa5{word-spacing:-12.932480pt;}
.wsa4{word-spacing:-12.772160pt;}
.wse{word-spacing:-12.184320pt;}
.ws0{word-spacing:-12.184107pt;}
.ws70{word-spacing:-12.144000pt;}
.ws1{word-spacing:-12.077440pt;}
.wsd{word-spacing:-12.024000pt;}
.ws72{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.970560pt;}
.wsb{word-spacing:-11.917120pt;}
.ws71{word-spacing:-11.904000pt;}
.ws2{word-spacing:-11.864107pt;}
.ws3{word-spacing:-11.863680pt;}
.ws79{word-spacing:-11.856000pt;}
.ws78{word-spacing:-11.808000pt;}
.ws7b{word-spacing:-1.698240pt;}
.ws17{word-spacing:-0.480000pt;}
.ws1b{word-spacing:-0.469333pt;}
.ws76{word-spacing:-0.468480pt;}
.wsbb{word-spacing:-0.427520pt;}
.ws2d{word-spacing:-0.409920pt;}
.ws9b{word-spacing:-0.374080pt;}
.ws1a{word-spacing:-0.373333pt;}
.ws24{word-spacing:-0.341333pt;}
.ws62{word-spacing:-0.320640pt;}
.ws67{word-spacing:-0.234240pt;}
.ws54{word-spacing:-0.218667pt;}
.ws18{word-spacing:-0.186667pt;}
.ws2e{word-spacing:-0.175680pt;}
.ws37{word-spacing:-0.160320pt;}
.ws2a{word-spacing:-0.149120pt;}
.ws7f{word-spacing:-0.144000pt;}
.ws28{word-spacing:-0.128000pt;}
.ws7c{word-spacing:-0.117120pt;}
.ws26{word-spacing:-0.106880pt;}
.ws22{word-spacing:-0.106667pt;}
.ws55{word-spacing:-0.080000pt;}
.ws2b{word-spacing:-0.074560pt;}
.ws2c{word-spacing:-0.058560pt;}
.ws3e{word-spacing:-0.053440pt;}
.ws23{word-spacing:-0.053333pt;}
.ws16{word-spacing:-0.037333pt;}
.ws19{word-spacing:-0.026667pt;}
.ws7{word-spacing:-0.005440pt;}
.ws15{word-spacing:0.000000pt;}
.ws7e{word-spacing:0.048000pt;}
.ws8a{word-spacing:0.053440pt;}
.ws58{word-spacing:0.058560pt;}
.ws20{word-spacing:0.058667pt;}
.ws29{word-spacing:0.074560pt;}
.ws27{word-spacing:0.106880pt;}
.ws6c{word-spacing:0.117120pt;}
.ws7a{word-spacing:0.144000pt;}
.ws42{word-spacing:0.160320pt;}
.ws69{word-spacing:0.175680pt;}
.ws1c{word-spacing:0.213333pt;}
.ws25{word-spacing:0.213760pt;}
.ws30{word-spacing:0.267200pt;}
.ws7d{word-spacing:0.288000pt;}
.ws6b{word-spacing:0.292800pt;}
.ws21{word-spacing:0.293333pt;}
.ws1e{word-spacing:0.320000pt;}
.ws51{word-spacing:0.320640pt;}
.ws83{word-spacing:0.351360pt;}
.ws57{word-spacing:0.374080pt;}
.ws59{word-spacing:0.409920pt;}
.ws47{word-spacing:0.480960pt;}
.ws1f{word-spacing:0.570667pt;}
.ws1d{word-spacing:0.586667pt;}
.wsa2{word-spacing:0.587840pt;}
.ws66{word-spacing:0.644160pt;}
.ws6a{word-spacing:0.761280pt;}
.ws98{word-spacing:0.908480pt;}
.ws77{word-spacing:0.995520pt;}
.ws84{word-spacing:1.112640pt;}
.ws38{word-spacing:1.122240pt;}
.ws3b{word-spacing:1.229120pt;}
.ws63{word-spacing:1.288320pt;}
.ws40{word-spacing:1.389440pt;}
.ws3a{word-spacing:1.496320pt;}
.ws3f{word-spacing:1.710080pt;}
.ws9e{word-spacing:1.816960pt;}
.wsa8{word-spacing:2.297920pt;}
.ws85{word-spacing:2.400960pt;}
.ws9a{word-spacing:2.458240pt;}
.wsa7{word-spacing:2.618560pt;}
.wsbe{word-spacing:2.725440pt;}
.wsaa{word-spacing:2.778880pt;}
.ws5a{word-spacing:2.928000pt;}
.ws94{word-spacing:3.740800pt;}
.ws35{word-spacing:3.847680pt;}
.ws99{word-spacing:4.221760pt;}
.ws48{word-spacing:4.275200pt;}
.ws41{word-spacing:5.130240pt;}
.ws96{word-spacing:6.305920pt;}
.wsb8{word-spacing:6.573120pt;}
.ws95{word-spacing:6.626560pt;}
.ws9f{word-spacing:6.947200pt;}
.wsae{word-spacing:7.107520pt;}
.wsad{word-spacing:7.267840pt;}
.ws2f{word-spacing:7.802240pt;}
.ws52{word-spacing:7.855680pt;}
.ws93{word-spacing:7.909120pt;}
.ws92{word-spacing:8.229760pt;}
.wsa9{word-spacing:8.550400pt;}
.ws8b{word-spacing:8.817600pt;}
.ws6f{word-spacing:9.603840pt;}
.wsaf{word-spacing:9.779520pt;}
.wsb0{word-spacing:9.832960pt;}
.ws65{word-spacing:10.599360pt;}
.ws36{word-spacing:11.329280pt;}
.wsb1{word-spacing:11.756800pt;}
.ws6d{word-spacing:11.887680pt;}
.wsb7{word-spacing:11.970560pt;}
.ws44{word-spacing:12.291200pt;}
.ws9d{word-spacing:12.344640pt;}
.ws9c{word-spacing:12.398080pt;}
.ws53{word-spacing:12.665280pt;}
.ws33{word-spacing:12.825600pt;}
.ws39{word-spacing:12.932480pt;}
.wsa0{word-spacing:13.039360pt;}
.ws43{word-spacing:13.573760pt;}
.wsab{word-spacing:13.680640pt;}
.ws8f{word-spacing:14.001280pt;}
.ws4b{word-spacing:14.215040pt;}
.ws75{word-spacing:14.321920pt;}
.ws74{word-spacing:14.642560pt;}
.ws64{word-spacing:15.694080pt;}
.ws32{word-spacing:15.925120pt;}
.ws31{word-spacing:16.032000pt;}
.ws6e{word-spacing:16.748160pt;}
.ws73{word-spacing:17.099520pt;}
.ws5c{word-spacing:17.685120pt;}
.ws34{word-spacing:18.062720pt;}
.wsac{word-spacing:18.169600pt;}
.ws50{word-spacing:18.223040pt;}
.ws3d{word-spacing:18.864320pt;}
.ws3c{word-spacing:18.971200pt;}
.ws4f{word-spacing:19.398720pt;}
.ws91{word-spacing:19.452160pt;}
.ws56{word-spacing:19.986560pt;}
.ws8e{word-spacing:20.734720pt;}
.wsbd{word-spacing:21.322560pt;}
.ws8d{word-spacing:21.963840pt;}
.wsbc{word-spacing:22.818880pt;}
.wsbf{word-spacing:23.460160pt;}
.wsc2{word-spacing:24.261760pt;}
.ws80{word-spacing:24.478080pt;}
.wsa3{word-spacing:24.582400pt;}
.ws97{word-spacing:24.903040pt;}
.ws4a{word-spacing:26.078720pt;}
.wsb5{word-spacing:26.185600pt;}
.ws49{word-spacing:26.239040pt;}
.wsb3{word-spacing:27.040640pt;}
.ws5b{word-spacing:27.640320pt;}
.wsb9{word-spacing:29.017920pt;}
.ws45{word-spacing:29.712640pt;}
.ws46{word-spacing:29.766080pt;}
.wsb2{word-spacing:30.621120pt;}
.ws68{word-spacing:31.739520pt;}
.wsc3{word-spacing:32.117440pt;}
.ws8c{word-spacing:33.186240pt;}
.ws4c{word-spacing:33.400000pt;}
.wsc0{word-spacing:33.827520pt;}
.wsb6{word-spacing:34.789440pt;}
.wsba{word-spacing:38.957760pt;}
.ws4d{word-spacing:39.385280pt;}
.ws4e{word-spacing:39.705920pt;}
.wsb4{word-spacing:43.286400pt;}
.ws90{word-spacing:47.134080pt;}
.wsa1{word-spacing:48.202880pt;}
.wsa6{word-spacing:49.538880pt;}
.wsc1{word-spacing:72.250880pt;}
.ws10{word-spacing:132.931200pt;}
._37{margin-left:-2.252640pt;}
._1{margin-left:-1.010016pt;}
._0{width:0.961920pt;}
._9{width:2.196000pt;}
._a{width:3.088896pt;}
._1a{width:4.737504pt;}
._b{width:6.270240pt;}
._4{width:7.481600pt;}
._3{width:8.496960pt;}
._1b{width:9.598368pt;}
._24{width:10.754016pt;}
._c{width:11.659296pt;}
._25{width:12.631392pt;}
._19{width:13.574208pt;}
._3e{width:14.820384pt;}
._1e{width:15.752640pt;}
._18{width:17.043744pt;}
._12{width:18.487392pt;}
._8{width:19.772800pt;}
._7{width:20.788267pt;}
._1c{width:21.717899pt;}
._16{width:22.855968pt;}
._15{width:23.857344pt;}
._1d{width:25.514592pt;}
._29{width:26.407488pt;}
._17{width:27.376512pt;}
._1f{width:28.540896pt;}
._30{width:29.553696pt;}
._14{width:30.539040pt;}
._13{width:32.172864pt;}
._5{width:33.330528pt;}
._d{width:34.646880pt;}
._38{width:35.657760pt;}
._2b{width:36.623136pt;}
._28{width:37.951200pt;}
._27{width:38.954112pt;}
._e{width:39.996480pt;}
._f{width:41.230560pt;}
._11{width:42.261216pt;}
._10{width:43.392960pt;}
._6{width:44.849564pt;}
._21{width:46.701609pt;}
._2f{width:47.784951pt;}
._3c{width:48.704378pt;}
._22{width:50.055552pt;}
._2a{width:51.257568pt;}
._3b{width:52.258944pt;}
._20{width:53.816640pt;}
._3d{width:54.911712pt;}
._2c{width:56.384352pt;}
._31{width:58.073952pt;}
._32{width:59.078112pt;}
._2d{width:60.606528pt;}
._39{width:61.758912pt;}
._26{width:63.762912pt;}
._23{width:71.501760pt;}
._3a{width:74.122176pt;}
._43{width:75.457280pt;}
._40{width:76.974976pt;}
._41{width:77.963616pt;}
._36{width:81.295776pt;}
._42{width:101.200000pt;}
._2e{width:110.887680pt;}
._3f{width:128.202560pt;}
._33{width:163.344000pt;}
._44{width:168.186368pt;}
._34{width:203.664000pt;}
._35{width:210.096000pt;}
._2{width:1446.658208pt;}
.fs3{font-size:5.440000pt;}
.fsa{font-size:21.440000pt;}
.fsb{font-size:26.560000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:37.440000pt;}
.fs9{font-size:42.560000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs6{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:74.560000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1f6{bottom:2.560000pt;}
.y1e8{bottom:2.640000pt;}
.y1eb{bottom:2.880000pt;}
.y177{bottom:2.960000pt;}
.y235{bottom:16.720000pt;}
.y233{bottom:30.480000pt;}
.y2{bottom:32.400000pt;}
.y5f{bottom:32.400080pt;}
.y232{bottom:43.040000pt;}
.y248{bottom:79.740960pt;}
.y41e{bottom:83.544320pt;}
.y3df{bottom:83.784800pt;}
.y36b{bottom:86.678880pt;}
.y1ca{bottom:88.562000pt;}
.yf5{bottom:88.597920pt;}
.y2b9{bottom:88.605360pt;}
.y166{bottom:90.220800pt;}
.y32d{bottom:91.897680pt;}
.y2f3{bottom:91.985520pt;}
.y247{bottom:96.620880pt;}
.y41d{bottom:98.908320pt;}
.y454{bottom:98.959600pt;}
.y3de{bottom:99.148800pt;}
.y3a9{bottom:99.172320pt;}
.y36a{bottom:101.962720pt;}
.y1c9{bottom:105.441920pt;}
.yf4{bottom:105.477840pt;}
.y2b8{bottom:105.485280pt;}
.y97{bottom:105.536400pt;}
.ycf{bottom:105.568160pt;}
.y191{bottom:105.734720pt;}
.y12d{bottom:107.056320pt;}
.y165{bottom:107.100720pt;}
.y280{bottom:107.315280pt;}
.y32c{bottom:108.455520pt;}
.y2f2{bottom:108.543360pt;}
.y20b{bottom:112.866960pt;}
.y5e{bottom:113.236640pt;}
.y246{bottom:113.500800pt;}
.y34{bottom:113.994667pt;}
.y41c{bottom:114.272320pt;}
.y453{bottom:114.323600pt;}
.y3dd{bottom:114.512800pt;}
.y3a8{bottom:114.536320pt;}
.y369{bottom:117.326720pt;}
.y1c8{bottom:122.321840pt;}
.yf3{bottom:122.357760pt;}
.y2b7{bottom:122.365200pt;}
.y96{bottom:122.416320pt;}
.yce{bottom:122.448080pt;}
.y190{bottom:122.614640pt;}
.y12c{bottom:123.936240pt;}
.y164{bottom:123.980640pt;}
.y27f{bottom:124.195200pt;}
.y32b{bottom:124.940160pt;}
.y2f1{bottom:125.028000pt;}
.y41b{bottom:129.556160pt;}
.y452{bottom:129.607440pt;}
.y20a{bottom:129.673680pt;}
.y3dc{bottom:129.796640pt;}
.y3a7{bottom:129.820160pt;}
.y5d{bottom:130.043360pt;}
.y33{bottom:130.320000pt;}
.y245{bottom:130.380720pt;}
.y368{bottom:132.690720pt;}
.y1c7{bottom:139.128560pt;}
.yf2{bottom:139.164480pt;}
.y2b6{bottom:139.171920pt;}
.y95{bottom:139.223040pt;}
.ycd{bottom:139.254800pt;}
.y18f{bottom:139.494560pt;}
.y12b{bottom:140.816160pt;}
.y163{bottom:140.860560pt;}
.y27e{bottom:141.075120pt;}
.y32a{bottom:141.498000pt;}
.y2f0{bottom:141.585840pt;}
.y41a{bottom:144.920160pt;}
.y451{bottom:144.971440pt;}
.y3db{bottom:145.160640pt;}
.y3a6{bottom:145.184160pt;}
.y209{bottom:146.553600pt;}
.y5c{bottom:146.923280pt;}
.y244{bottom:147.260640pt;}
.y367{bottom:147.974560pt;}
.y32{bottom:154.702960pt;}
.yf1{bottom:156.044400pt;}
.y2b5{bottom:156.051840pt;}
.y1c6{bottom:156.081680pt;}
.y94{bottom:156.102960pt;}
.ycc{bottom:156.134720pt;}
.y18e{bottom:156.374480pt;}
.y12a{bottom:157.622880pt;}
.y162{bottom:157.667280pt;}
.y27d{bottom:157.955040pt;}
.y329{bottom:157.982640pt;}
.y2ef{bottom:158.070480pt;}
.y419{bottom:160.284160pt;}
.y450{bottom:160.335440pt;}
.y3da{bottom:160.524640pt;}
.y3a5{bottom:160.548160pt;}
.y366{bottom:163.338560pt;}
.y208{bottom:163.433520pt;}
.y5b{bottom:163.803200pt;}
.y243{bottom:164.067360pt;}
.y31{bottom:170.948720pt;}
.yf0{bottom:172.924320pt;}
.y2b4{bottom:172.931760pt;}
.y1c5{bottom:172.961600pt;}
.y93{bottom:172.982880pt;}
.ycb{bottom:173.014640pt;}
.y18d{bottom:173.181200pt;}
.y129{bottom:174.502800pt;}
.y328{bottom:174.540480pt;}
.y161{bottom:174.547200pt;}
.y2ee{bottom:174.628320pt;}
.y27c{bottom:174.834960pt;}
.y418{bottom:175.568000pt;}
.y44f{bottom:175.619280pt;}
.y3d9{bottom:175.808480pt;}
.y3a4{bottom:175.832000pt;}
.y365{bottom:178.702560pt;}
.y207{bottom:180.313440pt;}
.y5a{bottom:180.683120pt;}
.y242{bottom:180.947280pt;}
.y30{bottom:187.274640pt;}
.yef{bottom:189.804240pt;}
.y2b3{bottom:189.811680pt;}
.y1c4{bottom:189.841520pt;}
.y92{bottom:189.862800pt;}
.yca{bottom:189.894560pt;}
.y18c{bottom:190.061120pt;}
.y417{bottom:190.932000pt;}
.y44e{bottom:190.983280pt;}
.y327{bottom:191.025120pt;}
.y2ed{bottom:191.112960pt;}
.y3d8{bottom:191.172480pt;}
.y3a3{bottom:191.196000pt;}
.y128{bottom:191.382720pt;}
.y160{bottom:191.427120pt;}
.y27b{bottom:191.641680pt;}
.y364{bottom:193.986400pt;}
.y206{bottom:197.193360pt;}
.y59{bottom:197.563040pt;}
.y241{bottom:197.827200pt;}
.y2f{bottom:203.520400pt;}
.y416{bottom:206.296000pt;}
.y44d{bottom:206.347280pt;}
.y3d7{bottom:206.536480pt;}
.y3a2{bottom:206.560000pt;}
.yee{bottom:206.684160pt;}
.y2b2{bottom:206.691600pt;}
.y1c3{bottom:206.721440pt;}
.y91{bottom:206.742720pt;}
.yc9{bottom:206.774480pt;}
.y18b{bottom:206.941040pt;}
.y326{bottom:207.509760pt;}
.y2ec{bottom:207.597600pt;}
.y127{bottom:208.262640pt;}
.y15f{bottom:208.307040pt;}
.y27a{bottom:208.521600pt;}
.y363{bottom:209.350400pt;}
.y205{bottom:214.000080pt;}
.y58{bottom:214.442960pt;}
.y240{bottom:214.707120pt;}
.y415{bottom:221.579840pt;}
.y44c{bottom:221.631120pt;}
.y3d6{bottom:221.820320pt;}
.y3a1{bottom:221.840000pt;}
.yed{bottom:223.564080pt;}
.y2b1{bottom:223.571520pt;}
.y1c2{bottom:223.601360pt;}
.y90{bottom:223.622640pt;}
.yc8{bottom:223.654400pt;}
.y18a{bottom:223.820960pt;}
.y325{bottom:224.067600pt;}
.y2eb{bottom:224.155440pt;}
.y362{bottom:224.714400pt;}
.y126{bottom:225.142560pt;}
.y15e{bottom:225.186960pt;}
.y279{bottom:225.401520pt;}
.y2e{bottom:227.902400pt;}
.y204{bottom:230.880000pt;}
.y57{bottom:231.249680pt;}
.y23f{bottom:231.587040pt;}
.y414{bottom:236.943840pt;}
.y44b{bottom:236.995120pt;}
.y3d5{bottom:237.184320pt;}
.y3a0{bottom:237.192160pt;}
.y361{bottom:239.998240pt;}
.yec{bottom:240.370800pt;}
.y2b0{bottom:240.378240pt;}
.y1c1{bottom:240.408080pt;}
.y8f{bottom:240.429360pt;}
.yc7{bottom:240.461120pt;}
.y324{bottom:240.552240pt;}
.y2ea{bottom:240.640080pt;}
.y189{bottom:240.700880pt;}
.y125{bottom:242.022480pt;}
.y15d{bottom:242.066880pt;}
.y278{bottom:242.281440pt;}
.y2d{bottom:244.228320pt;}
.y203{bottom:247.360000pt;}
.y56{bottom:248.129600pt;}
.y23e{bottom:248.393760pt;}
.y413{bottom:252.227680pt;}
.y44a{bottom:252.278960pt;}
.y3d4{bottom:252.468160pt;}
.y39f{bottom:252.476000pt;}
.y360{bottom:255.362240pt;}
.y323{bottom:257.110080pt;}
.y2e9{bottom:257.197920pt;}
.yeb{bottom:257.250720pt;}
.y2af{bottom:257.258160pt;}
.y1c0{bottom:257.288000pt;}
.y8e{bottom:257.309280pt;}
.yc6{bottom:257.341040pt;}
.y188{bottom:257.507600pt;}
.y124{bottom:258.829200pt;}
.y15c{bottom:258.873600pt;}
.y277{bottom:259.161360pt;}
.y2c{bottom:260.474080pt;}
.y202{bottom:264.240000pt;}
.y55{bottom:265.009520pt;}
.y23d{bottom:265.273680pt;}
.y412{bottom:267.591680pt;}
.y449{bottom:267.642960pt;}
.y3d3{bottom:267.832160pt;}
.y39e{bottom:267.840000pt;}
.y35f{bottom:270.726240pt;}
.y322{bottom:273.594720pt;}
.y2e8{bottom:273.682560pt;}
.yea{bottom:274.130640pt;}
.y2ae{bottom:274.138080pt;}
.y1bf{bottom:274.167920pt;}
.y8d{bottom:274.189200pt;}
.yc5{bottom:274.220960pt;}
.y187{bottom:274.387520pt;}
.y123{bottom:275.709120pt;}
.y15b{bottom:275.753520pt;}
.y276{bottom:275.968080pt;}
.y1ff{bottom:276.240000pt;}
.y2b{bottom:276.800000pt;}
.y54{bottom:281.889440pt;}
.y201{bottom:282.000000pt;}
.y23c{bottom:282.153600pt;}
.y411{bottom:282.955680pt;}
.y448{bottom:283.006960pt;}
.y3d2{bottom:283.196160pt;}
.y39d{bottom:283.200000pt;}
.y35e{bottom:286.010080pt;}
.y321{bottom:290.152560pt;}
.y2e7{bottom:290.240400pt;}
.ye9{bottom:291.010560pt;}
.y2ad{bottom:291.018000pt;}
.y1be{bottom:291.047840pt;}
.y8c{bottom:291.069120pt;}
.yc4{bottom:291.100880pt;}
.y186{bottom:291.267440pt;}
.y122{bottom:292.589040pt;}
.y15a{bottom:292.633440pt;}
.y275{bottom:292.848000pt;}
.y410{bottom:298.239520pt;}
.y447{bottom:298.290800pt;}
.y39c{bottom:298.480000pt;}
.y53{bottom:298.769360pt;}
.y23b{bottom:299.033520pt;}
.y200{bottom:299.840000pt;}
.y2a{bottom:301.176640pt;}
.y35d{bottom:301.374080pt;}
.y320{bottom:306.637200pt;}
.y2e6{bottom:306.725040pt;}
.ye8{bottom:307.890480pt;}
.y2ac{bottom:307.897920pt;}
.y1bd{bottom:307.927760pt;}
.y8b{bottom:307.949040pt;}
.yc3{bottom:307.980800pt;}
.y185{bottom:308.147360pt;}
.y121{bottom:309.468960pt;}
.y159{bottom:309.513360pt;}
.y274{bottom:309.727920pt;}
.y40f{bottom:313.603520pt;}
.y446{bottom:313.654800pt;}
.y39b{bottom:313.832160pt;}
.y3d1{bottom:313.840000pt;}
.y1fe{bottom:314.960000pt;}
.y52{bottom:315.576080pt;}
.y23a{bottom:315.913440pt;}
.y35c{bottom:316.738080pt;}
.y29{bottom:317.422400pt;}
.y31f{bottom:323.121840pt;}
.y2e5{bottom:323.209680pt;}
.ye7{bottom:324.697200pt;}
.y2ab{bottom:324.704640pt;}
.y1bc{bottom:324.734480pt;}
.y8a{bottom:324.755760pt;}
.yc2{bottom:324.787520pt;}
.y1fb{bottom:324.960000pt;}
.y184{bottom:325.027280pt;}
.y120{bottom:326.348880pt;}
.y158{bottom:326.393280pt;}
.y273{bottom:326.607840pt;}
.y40e{bottom:328.967520pt;}
.y445{bottom:329.018800pt;}
.y39a{bottom:329.196160pt;}
.y3d0{bottom:329.200000pt;}
.y1fd{bottom:330.080000pt;}
.y35b{bottom:332.021920pt;}
.y51{bottom:332.456000pt;}
.y239{bottom:332.793360pt;}
.y28{bottom:333.748320pt;}
.y31e{bottom:339.679680pt;}
.y2e4{bottom:339.767520pt;}
.ye6{bottom:341.577120pt;}
.y2aa{bottom:341.584560pt;}
.y1bb{bottom:341.614400pt;}
.y89{bottom:341.635680pt;}
.yc1{bottom:341.667440pt;}
.y183{bottom:341.907200pt;}
.y11f{bottom:343.155600pt;}
.y157{bottom:343.200000pt;}
.y272{bottom:343.487760pt;}
.y40d{bottom:344.251360pt;}
.y444{bottom:344.302640pt;}
.y3cf{bottom:344.424640pt;}
.y399{bottom:344.480000pt;}
.y1fc{bottom:345.200000pt;}
.y35a{bottom:347.385920pt;}
.y50{bottom:349.335920pt;}
.y238{bottom:349.600080pt;}
.y27{bottom:349.994080pt;}
.y31d{bottom:356.164320pt;}
.y2e3{bottom:356.252160pt;}
.ye5{bottom:358.457040pt;}
.y2a9{bottom:358.464480pt;}
.y1ba{bottom:358.494320pt;}
.y88{bottom:358.515600pt;}
.yc0{bottom:358.547360pt;}
.y182{bottom:358.713920pt;}
.y156{bottom:359.440000pt;}
.y40c{bottom:359.615360pt;}
.y443{bottom:359.666640pt;}
.y3ce{bottom:359.788640pt;}
.y398{bottom:359.840000pt;}
.y11e{bottom:360.035520pt;}
.y1fa{bottom:360.320000pt;}
.y271{bottom:360.367680pt;}
.y359{bottom:362.669760pt;}
.y4f{bottom:366.215840pt;}
.y26{bottom:366.320000pt;}
.y237{bottom:366.480000pt;}
.y1f7{bottom:371.680000pt;}
.y31c{bottom:372.722160pt;}
.y2e2{bottom:372.736800pt;}
.y155{bottom:373.840000pt;}
.y40b{bottom:374.979360pt;}
.y442{bottom:375.030640pt;}
.y3cd{bottom:375.152640pt;}
.y397{bottom:375.200000pt;}
.ye4{bottom:375.336960pt;}
.y2a8{bottom:375.344400pt;}
.y1b9{bottom:375.374240pt;}
.y87{bottom:375.395520pt;}
.ybf{bottom:375.427280pt;}
.y181{bottom:375.593840pt;}
.y1f9{bottom:376.800000pt;}
.y11d{bottom:376.915440pt;}
.y270{bottom:377.174400pt;}
.y358{bottom:378.033760pt;}
.y236{bottom:382.960000pt;}
.y4e{bottom:383.095760pt;}
.y31b{bottom:389.206800pt;}
.y2e1{bottom:389.221440pt;}
.y40a{bottom:390.263200pt;}
.y441{bottom:390.314480pt;}
.y396{bottom:390.397120pt;}
.y3cc{bottom:390.436480pt;}
.y25{bottom:390.720000pt;}
.y154{bottom:391.120000pt;}
.ye3{bottom:392.216880pt;}
.y2a7{bottom:392.224320pt;}
.y1b8{bottom:392.254160pt;}
.y86{bottom:392.275440pt;}
.ybe{bottom:392.307200pt;}
.y180{bottom:392.473760pt;}
.y1f8{bottom:393.280000pt;}
.y357{bottom:393.397760pt;}
.y11c{bottom:393.795360pt;}
.y231{bottom:393.840000pt;}
.y26f{bottom:394.054320pt;}
.y4d{bottom:399.975680pt;}
.y409{bottom:405.627200pt;}
.y440{bottom:405.678480pt;}
.y395{bottom:405.761120pt;}
.y31a{bottom:405.764640pt;}
.y2e0{bottom:405.779280pt;}
.y3cb{bottom:405.800480pt;}
.y24{bottom:406.960000pt;}
.y356{bottom:408.681600pt;}
.y153{bottom:409.020960pt;}
.ye2{bottom:409.023600pt;}
.y2a6{bottom:409.031040pt;}
.y1b7{bottom:409.060880pt;}
.y85{bottom:409.082160pt;}
.ybd{bottom:409.113920pt;}
.y17f{bottom:409.353680pt;}
.y1f5{bottom:409.760000pt;}
.y11b{bottom:410.675280pt;}
.y26e{bottom:410.934240pt;}
.y4c{bottom:416.782400pt;}
.y408{bottom:420.991200pt;}
.y43f{bottom:421.042480pt;}
.y394{bottom:421.125120pt;}
.y3ca{bottom:421.164480pt;}
.y319{bottom:422.249280pt;}
.y2df{bottom:422.337120pt;}
.y355{bottom:424.045600pt;}
.y234{bottom:424.320000pt;}
.y152{bottom:425.900880pt;}
.ye1{bottom:425.903520pt;}
.y2a5{bottom:425.910960pt;}
.y1b6{bottom:425.940800pt;}
.y84{bottom:425.962080pt;}
.ybc{bottom:425.993840pt;}
.y17e{bottom:426.233600pt;}
.y11a{bottom:427.482000pt;}
.y26d{bottom:427.814160pt;}
.y1f4{bottom:429.520000pt;}
.y4b{bottom:433.662320pt;}
.y407{bottom:436.275040pt;}
.y43e{bottom:436.326320pt;}
.y393{bottom:436.408960pt;}
.y3c9{bottom:436.448320pt;}
.y318{bottom:438.733920pt;}
.y2de{bottom:438.821760pt;}
.y354{bottom:439.409600pt;}
.y1f1{bottom:441.520000pt;}
.y151{bottom:442.780800pt;}
.ye0{bottom:442.783440pt;}
.y2a4{bottom:442.790880pt;}
.y1b5{bottom:442.820720pt;}
.y83{bottom:442.842000pt;}
.ybb{bottom:442.873760pt;}
.y17d{bottom:443.040320pt;}
.y119{bottom:444.361920pt;}
.y26c{bottom:444.694080pt;}
.y230{bottom:446.880000pt;}
.y1f3{bottom:447.360000pt;}
.y4a{bottom:450.542240pt;}
.y23{bottom:451.581440pt;}
.y406{bottom:451.639040pt;}
.y43d{bottom:451.690320pt;}
.y392{bottom:451.772960pt;}
.y3c8{bottom:451.812320pt;}
.y353{bottom:454.693440pt;}
.y317{bottom:455.291760pt;}
.y2dd{bottom:455.379600pt;}
.y150{bottom:459.660720pt;}
.ydf{bottom:459.663360pt;}
.y2a3{bottom:459.670800pt;}
.y1b4{bottom:459.700640pt;}
.y82{bottom:459.721920pt;}
.yba{bottom:459.753680pt;}
.y17c{bottom:459.920240pt;}
.y118{bottom:461.241840pt;}
.y26b{bottom:461.500800pt;}
.y22f{bottom:464.640000pt;}
.y1f2{bottom:465.120000pt;}
.y22{bottom:466.945440pt;}
.y405{bottom:467.003040pt;}
.y43c{bottom:467.054320pt;}
.y391{bottom:467.136960pt;}
.y3c7{bottom:467.176320pt;}
.y49{bottom:467.422160pt;}
.y352{bottom:470.057440pt;}
.y316{bottom:471.776400pt;}
.y2dc{bottom:471.864240pt;}
.y14f{bottom:476.540640pt;}
.yde{bottom:476.543280pt;}
.y2a2{bottom:476.550720pt;}
.y1b3{bottom:476.580560pt;}
.y81{bottom:476.601840pt;}
.yb9{bottom:476.633600pt;}
.y17b{bottom:476.800160pt;}
.y117{bottom:478.121760pt;}
.y26a{bottom:478.380720pt;}
.y1f0{bottom:480.240000pt;}
.y21{bottom:482.229280pt;}
.y404{bottom:482.286880pt;}
.y43b{bottom:482.338160pt;}
.y390{bottom:482.420800pt;}
.y3c6{bottom:482.460160pt;}
.y22e{bottom:482.480000pt;}
.y48{bottom:484.302080pt;}
.y351{bottom:485.421440pt;}
.y315{bottom:488.334240pt;}
.y2db{bottom:488.422080pt;}
.y1ee{bottom:490.240000pt;}
.y14e{bottom:493.420560pt;}
.ydd{bottom:493.423200pt;}
.y2a1{bottom:493.430640pt;}
.y1b2{bottom:493.460480pt;}
.y80{bottom:493.481760pt;}
.yb8{bottom:493.513520pt;}
.y17a{bottom:493.680080pt;}
.y116{bottom:495.001680pt;}
.y269{bottom:495.260640pt;}
.y1ef{bottom:495.440000pt;}
.y20{bottom:497.593280pt;}
.y22d{bottom:497.600000pt;}
.y403{bottom:497.650880pt;}
.y43a{bottom:497.702160pt;}
.y38f{bottom:497.784800pt;}
.y3c5{bottom:497.824160pt;}
.y350{bottom:500.705280pt;}
.y47{bottom:501.108800pt;}
.y314{bottom:504.818880pt;}
.y2da{bottom:504.906720pt;}
.y14d{bottom:510.227280pt;}
.ydc{bottom:510.229920pt;}
.y2a0{bottom:510.237360pt;}
.y1b1{bottom:510.267200pt;}
.y7f{bottom:510.288480pt;}
.yb7{bottom:510.320240pt;}
.y179{bottom:510.560000pt;}
.y115{bottom:511.881600pt;}
.y268{bottom:512.140560pt;}
.y22c{bottom:512.720000pt;}
.y1f{bottom:512.957280pt;}
.y402{bottom:513.014880pt;}
.y439{bottom:513.066160pt;}
.y38e{bottom:513.148800pt;}
.y3c4{bottom:513.188160pt;}
.y34f{bottom:516.069280pt;}
.y46{bottom:517.988720pt;}
.y313{bottom:521.303520pt;}
.y2d9{bottom:521.391360pt;}
.y1ed{bottom:525.680000pt;}
.y178{bottom:526.960000pt;}
.y14c{bottom:527.107200pt;}
.ydb{bottom:527.109840pt;}
.y29f{bottom:527.117280pt;}
.y1b0{bottom:527.147120pt;}
.y7e{bottom:527.168400pt;}
.yb6{bottom:527.200160pt;}
.y22b{bottom:527.840000pt;}
.y1e{bottom:528.241120pt;}
.y401{bottom:528.298720pt;}
.y438{bottom:528.350000pt;}
.y38d{bottom:528.432640pt;}
.y3c3{bottom:528.472000pt;}
.y114{bottom:528.688320pt;}
.y267{bottom:529.020480pt;}
.y34e{bottom:531.433280pt;}
.y45{bottom:534.868640pt;}
.y1e9{bottom:537.040000pt;}
.y312{bottom:537.861360pt;}
.y2d8{bottom:537.949200pt;}
.y176{bottom:539.840000pt;}
.y1ec{bottom:542.160000pt;}
.y22a{bottom:543.040000pt;}
.y1d{bottom:543.605120pt;}
.y400{bottom:543.662720pt;}
.y437{bottom:543.714000pt;}
.y38c{bottom:543.796640pt;}
.y3c2{bottom:543.836000pt;}
.y14b{bottom:543.987120pt;}
.yda{bottom:543.989760pt;}
.y29e{bottom:543.997200pt;}
.y1af{bottom:544.027040pt;}
.y7d{bottom:544.048320pt;}
.yb5{bottom:544.080080pt;}
.y113{bottom:545.568240pt;}
.y266{bottom:545.827200pt;}
.y34d{bottom:546.717120pt;}
.y44{bottom:551.748560pt;}
.y175{bottom:553.120000pt;}
.y311{bottom:554.346000pt;}
.y2d7{bottom:554.433840pt;}
.y229{bottom:558.160000pt;}
.y1ea{bottom:558.640000pt;}
.y1c{bottom:558.969120pt;}
.y3ff{bottom:559.026720pt;}
.y436{bottom:559.078000pt;}
.y38b{bottom:559.160640pt;}
.y3c1{bottom:559.200000pt;}
.y14a{bottom:560.867040pt;}
.yd9{bottom:560.869680pt;}
.y29d{bottom:560.877120pt;}
.y1ae{bottom:560.906960pt;}
.y7c{bottom:560.928240pt;}
.yb4{bottom:560.960000pt;}
.y34c{bottom:562.081120pt;}
.y112{bottom:562.448160pt;}
.y265{bottom:562.707120pt;}
.y43{bottom:568.628480pt;}
.y310{bottom:570.903840pt;}
.y2d6{bottom:570.991680pt;}
.y228{bottom:573.280000pt;}
.y1b{bottom:574.252960pt;}
.y3fe{bottom:574.310560pt;}
.y435{bottom:574.361840pt;}
.y38a{bottom:574.444480pt;}
.y3c0{bottom:574.480000pt;}
.y1e7{bottom:575.040000pt;}
.yb3{bottom:577.360000pt;}
.y34b{bottom:577.445120pt;}
.y149{bottom:577.746960pt;}
.yd8{bottom:577.749600pt;}
.y29c{bottom:577.757040pt;}
.y1ad{bottom:577.786880pt;}
.y7b{bottom:577.808160pt;}
.y172{bottom:578.800000pt;}
.y111{bottom:579.328080pt;}
.y264{bottom:579.587040pt;}
.y174{bottom:580.240000pt;}
.y42{bottom:585.435200pt;}
.y30f{bottom:587.388480pt;}
.y2d5{bottom:587.476320pt;}
.y227{bottom:588.400000pt;}
.y1a{bottom:589.616960pt;}
.y3fd{bottom:589.674560pt;}
.y434{bottom:589.725840pt;}
.y389{bottom:589.808480pt;}
.y3bf{bottom:589.840000pt;}
.y34a{bottom:592.728960pt;}
.yb2{bottom:593.106880pt;}
.y1e6{bottom:594.160000pt;}
.y148{bottom:594.553680pt;}
.yd7{bottom:594.556320pt;}
.y29b{bottom:594.563760pt;}
.y1ac{bottom:594.593600pt;}
.y7a{bottom:594.614880pt;}
.y110{bottom:596.208000pt;}
.y263{bottom:596.466960pt;}
.y173{bottom:600.240000pt;}
.y1e5{bottom:602.076000pt;}
.y41{bottom:602.315120pt;}
.y226{bottom:603.520000pt;}
.y30e{bottom:603.946320pt;}
.y2d4{bottom:604.034160pt;}
.y19{bottom:604.900800pt;}
.y3fc{bottom:604.958400pt;}
.y433{bottom:605.009680pt;}
.y388{bottom:605.092320pt;}
.y3be{bottom:605.100160pt;}
.y16e{bottom:607.600000pt;}
.y349{bottom:608.092960pt;}
.yb1{bottom:609.986800pt;}
.y147{bottom:611.433600pt;}
.yd6{bottom:611.436240pt;}
.y29a{bottom:611.443680pt;}
.y1ab{bottom:611.473520pt;}
.y79{bottom:611.494800pt;}
.y10f{bottom:613.014720pt;}
.y262{bottom:613.346880pt;}
.y1e4{bottom:617.440000pt;}
.y225{bottom:618.640000pt;}
.y40{bottom:619.195040pt;}
.y18{bottom:620.264800pt;}
.y3fb{bottom:620.322400pt;}
.y432{bottom:620.373680pt;}
.y30d{bottom:620.430960pt;}
.y387{bottom:620.456320pt;}
.y3bd{bottom:620.464160pt;}
.y2d3{bottom:620.518800pt;}
.y16f{bottom:620.644000pt;}
.y171{bottom:622.080000pt;}
.y348{bottom:623.456960pt;}
.yb0{bottom:626.866720pt;}
.y146{bottom:628.313520pt;}
.yd5{bottom:628.316160pt;}
.y299{bottom:628.323600pt;}
.y1aa{bottom:628.353440pt;}
.y78{bottom:628.374720pt;}
.y10e{bottom:629.894640pt;}
.y261{bottom:630.226800pt;}
.y1e3{bottom:633.014560pt;}
.y223{bottom:635.440000pt;}
.y17{bottom:635.628800pt;}
.y3fa{bottom:635.686400pt;}
.y431{bottom:635.737680pt;}
.y386{bottom:635.820320pt;}
.y3bc{bottom:635.828160pt;}
.y3f{bottom:636.074960pt;}
.y30c{bottom:636.915600pt;}
.y2d2{bottom:637.003440pt;}
.y347{bottom:638.740800pt;}
.yaf{bottom:643.746640pt;}
.y170{bottom:643.920000pt;}
.y145{bottom:645.193440pt;}
.yd4{bottom:645.196080pt;}
.y298{bottom:645.203520pt;}
.y1a9{bottom:645.233360pt;}
.y77{bottom:645.254640pt;}
.y10d{bottom:646.774560pt;}
.y260{bottom:647.033520pt;}
.y1e2{bottom:649.821280pt;}
.y16{bottom:650.912640pt;}
.y3f9{bottom:650.970240pt;}
.y430{bottom:651.021520pt;}
.y385{bottom:651.104160pt;}
.y3bb{bottom:651.112000pt;}
.y3e{bottom:652.954880pt;}
.y224{bottom:653.280000pt;}
.y30b{bottom:653.473440pt;}
.y2d1{bottom:653.561280pt;}
.y346{bottom:654.104800pt;}
.yae{bottom:660.626560pt;}
.y144{bottom:662.073360pt;}
.yd3{bottom:662.076000pt;}
.y297{bottom:662.083440pt;}
.y1a8{bottom:662.113280pt;}
.y76{bottom:662.134560pt;}
.y10c{bottom:663.654480pt;}
.y25f{bottom:663.913440pt;}
.y16d{bottom:664.800000pt;}
.y15{bottom:666.276640pt;}
.y3f8{bottom:666.334240pt;}
.y42f{bottom:666.385520pt;}
.y384{bottom:666.468160pt;}
.y3ba{bottom:666.476000pt;}
.y1e1{bottom:666.701200pt;}
.y16a{bottom:668.720000pt;}
.y345{bottom:669.388640pt;}
.y3d{bottom:669.834800pt;}
.y30a{bottom:669.958080pt;}
.y2d0{bottom:670.045920pt;}
.y222{bottom:672.400000pt;}
.y16c{bottom:675.596000pt;}
.yad{bottom:677.433280pt;}
.y143{bottom:678.953280pt;}
.yd2{bottom:678.955920pt;}
.y296{bottom:678.963360pt;}
.y1a7{bottom:678.993200pt;}
.y75{bottom:679.014480pt;}
.y221{bottom:680.320000pt;}
.y10b{bottom:680.534400pt;}
.y25e{bottom:680.793360pt;}
.y14{bottom:681.640640pt;}
.y3f7{bottom:681.698240pt;}
.y42e{bottom:681.749520pt;}
.y383{bottom:681.832160pt;}
.y3b9{bottom:681.840000pt;}
.y1e0{bottom:683.581120pt;}
.y344{bottom:684.752640pt;}
.y16b{bottom:686.480000pt;}
.y309{bottom:686.515920pt;}
.y2cf{bottom:686.603760pt;}
.y3c{bottom:686.641520pt;}
.yac{bottom:694.240000pt;}
.y142{bottom:695.760000pt;}
.yd1{bottom:695.762640pt;}
.y295{bottom:695.770080pt;}
.y1a6{bottom:695.799920pt;}
.y220{bottom:695.802480pt;}
.y74{bottom:695.821200pt;}
.y13{bottom:696.924480pt;}
.y3f6{bottom:696.982080pt;}
.y42d{bottom:697.033360pt;}
.y382{bottom:697.116000pt;}
.y3b8{bottom:697.120000pt;}
.y10a{bottom:697.414320pt;}
.y25d{bottom:697.673280pt;}
.y343{bottom:700.116640pt;}
.y1df{bottom:700.461040pt;}
.y308{bottom:703.000560pt;}
.y2ce{bottom:703.088400pt;}
.y3b{bottom:703.521440pt;}
.y169{bottom:705.280000pt;}
.yab{bottom:711.520000pt;}
.y12{bottom:712.288480pt;}
.y3f5{bottom:712.346080pt;}
.y42c{bottom:712.397360pt;}
.y381{bottom:712.480000pt;}
.y141{bottom:712.639920pt;}
.yd0{bottom:712.642560pt;}
.y294{bottom:712.650000pt;}
.y1a5{bottom:712.679840pt;}
.y21f{bottom:712.682400pt;}
.y73{bottom:712.701120pt;}
.y109{bottom:714.221040pt;}
.y25c{bottom:714.480000pt;}
.y342{bottom:715.400480pt;}
.y168{bottom:715.516000pt;}
.y1de{bottom:717.340960pt;}
.y307{bottom:719.558400pt;}
.y2cd{bottom:719.646240pt;}
.y3a{bottom:720.401360pt;}
.y380{bottom:727.558080pt;}
.y11{bottom:727.652480pt;}
.y3f4{bottom:727.710080pt;}
.y42b{bottom:727.761360pt;}
.y3b7{bottom:727.840000pt;}
.y140{bottom:729.519840pt;}
.yaa{bottom:729.522480pt;}
.y293{bottom:729.529920pt;}
.y1a4{bottom:729.559760pt;}
.y21e{bottom:729.562320pt;}
.y72{bottom:729.581040pt;}
.y341{bottom:730.764480pt;}
.y167{bottom:730.880000pt;}
.y25b{bottom:730.964000pt;}
.y108{bottom:731.100960pt;}
.y1dd{bottom:734.147680pt;}
.y306{bottom:736.043040pt;}
.y2cc{bottom:736.130880pt;}
.y39{bottom:737.281280pt;}
.y37f{bottom:742.841920pt;}
.y10{bottom:742.936320pt;}
.y3f3{bottom:742.993920pt;}
.y42a{bottom:743.045200pt;}
.y3b6{bottom:743.084480pt;}
.y25a{bottom:744.800000pt;}
.y340{bottom:746.128480pt;}
.y13f{bottom:746.399760pt;}
.ya9{bottom:746.402400pt;}
.y292{bottom:746.409840pt;}
.y1a3{bottom:746.439680pt;}
.y21d{bottom:746.442240pt;}
.y71{bottom:746.460960pt;}
.y107{bottom:747.980880pt;}
.y1dc{bottom:751.027600pt;}
.y305{bottom:752.527680pt;}
.y2cb{bottom:752.615520pt;}
.y38{bottom:754.161200pt;}
.y259{bottom:755.680000pt;}
.y37e{bottom:758.205920pt;}
.yf{bottom:758.300320pt;}
.y3f2{bottom:758.357920pt;}
.y429{bottom:758.409200pt;}
.y3b5{bottom:758.448480pt;}
.y33f{bottom:761.412320pt;}
.y13e{bottom:763.279680pt;}
.ya8{bottom:763.282320pt;}
.y291{bottom:763.289760pt;}
.y1a2{bottom:763.319600pt;}
.y21c{bottom:763.322160pt;}
.y70{bottom:763.340880pt;}
.y106{bottom:764.860800pt;}
.y1db{bottom:767.907520pt;}
.y304{bottom:769.085520pt;}
.y2ca{bottom:769.173360pt;}
.y37d{bottom:773.569920pt;}
.ye{bottom:773.664320pt;}
.y3f1{bottom:773.721920pt;}
.y428{bottom:773.773200pt;}
.y3b4{bottom:773.812480pt;}
.y33e{bottom:776.776320pt;}
.y13d{bottom:780.086400pt;}
.ya7{bottom:780.089040pt;}
.y290{bottom:780.096480pt;}
.y1a1{bottom:780.126320pt;}
.y21b{bottom:780.128880pt;}
.y6f{bottom:780.147600pt;}
.y105{bottom:781.740720pt;}
.y1da{bottom:784.787440pt;}
.y303{bottom:785.570160pt;}
.y2c9{bottom:785.658000pt;}
.y37{bottom:787.760000pt;}
.y37c{bottom:788.853760pt;}
.yd{bottom:788.948160pt;}
.y3f0{bottom:789.005760pt;}
.y427{bottom:789.057040pt;}
.y3b3{bottom:789.096320pt;}
.y33d{bottom:792.140320pt;}
.y13c{bottom:796.966320pt;}
.ya6{bottom:796.968960pt;}
.y28f{bottom:796.976400pt;}
.y1a0{bottom:797.006240pt;}
.y21a{bottom:797.008800pt;}
.y6e{bottom:797.027520pt;}
.y104{bottom:798.547440pt;}
.y258{bottom:801.040000pt;}
.y1d9{bottom:801.667360pt;}
.y302{bottom:802.128000pt;}
.y2c8{bottom:802.215840pt;}
.y37b{bottom:804.217760pt;}
.yc{bottom:804.312160pt;}
.y3ef{bottom:804.369760pt;}
.y426{bottom:804.421040pt;}
.y3b2{bottom:804.460320pt;}
.y33c{bottom:807.424160pt;}
.y13b{bottom:813.846240pt;}
.ya5{bottom:813.848880pt;}
.y28e{bottom:813.856320pt;}
.y19f{bottom:813.886160pt;}
.y219{bottom:813.888720pt;}
.y6d{bottom:813.907440pt;}
.y103{bottom:815.427360pt;}
.y1d8{bottom:818.547280pt;}
.y301{bottom:818.612640pt;}
.y2c7{bottom:818.700480pt;}
.y257{bottom:818.880000pt;}
.y37a{bottom:819.581760pt;}
.yb{bottom:819.676160pt;}
.y36{bottom:819.680960pt;}
.y3ee{bottom:819.733760pt;}
.y425{bottom:819.785040pt;}
.y3b1{bottom:819.824320pt;}
.y33b{bottom:822.788160pt;}
.y13a{bottom:830.726160pt;}
.ya4{bottom:830.728800pt;}
.y28d{bottom:830.736240pt;}
.y19e{bottom:830.766080pt;}
.y218{bottom:830.768640pt;}
.y6c{bottom:830.787360pt;}
.y102{bottom:832.307280pt;}
.y379{bottom:834.865600pt;}
.ya{bottom:834.960000pt;}
.y35{bottom:834.964800pt;}
.y3ed{bottom:835.017600pt;}
.y424{bottom:835.068880pt;}
.y3b0{bottom:835.108160pt;}
.y300{bottom:835.170480pt;}
.y2c6{bottom:835.258320pt;}
.y1d7{bottom:835.354000pt;}
.y256{bottom:836.640000pt;}
.y33a{bottom:838.152160pt;}
.y139{bottom:847.606080pt;}
.ya3{bottom:847.608720pt;}
.y28c{bottom:847.616160pt;}
.y19d{bottom:847.646000pt;}
.y217{bottom:847.648560pt;}
.y6b{bottom:847.667280pt;}
.y101{bottom:849.187200pt;}
.y461{bottom:850.192400pt;}
.y378{bottom:850.229600pt;}
.y3ec{bottom:850.381600pt;}
.y423{bottom:850.432880pt;}
.y3af{bottom:850.472160pt;}
.y2ff{bottom:851.655120pt;}
.y2c5{bottom:851.742960pt;}
.y255{bottom:851.760000pt;}
.y1d6{bottom:852.233920pt;}
.y339{bottom:853.436000pt;}
.y138{bottom:864.486000pt;}
.ya2{bottom:864.488640pt;}
.y28b{bottom:864.496080pt;}
.y19c{bottom:864.525920pt;}
.y216{bottom:864.528480pt;}
.y6a{bottom:864.547200pt;}
.y460{bottom:865.556400pt;}
.y377{bottom:865.593600pt;}
.y3eb{bottom:865.745600pt;}
.y422{bottom:865.796880pt;}
.y3ae{bottom:865.836160pt;}
.y100{bottom:866.067120pt;}
.y254{bottom:866.880000pt;}
.y2fe{bottom:868.139760pt;}
.y2c4{bottom:868.227600pt;}
.y338{bottom:868.800000pt;}
.y1d5{bottom:869.113840pt;}
.y9{bottom:875.193280pt;}
.y45f{bottom:880.840240pt;}
.y376{bottom:880.877440pt;}
.y3ea{bottom:881.029440pt;}
.y421{bottom:881.080720pt;}
.y3ad{bottom:881.120000pt;}
.y137{bottom:881.292720pt;}
.ya1{bottom:881.295360pt;}
.y28a{bottom:881.302800pt;}
.y19b{bottom:881.332640pt;}
.y215{bottom:881.335200pt;}
.y69{bottom:881.353920pt;}
.y253{bottom:882.000000pt;}
.yff{bottom:882.873840pt;}
.y337{bottom:883.200000pt;}
.y2fd{bottom:884.697600pt;}
.y2c3{bottom:884.785440pt;}
.y1d4{bottom:885.993760pt;}
.y7{bottom:892.000000pt;}
.y336{bottom:893.760000pt;}
.y45e{bottom:896.204240pt;}
.y375{bottom:896.241440pt;}
.y3e9{bottom:896.393440pt;}
.y420{bottom:896.444720pt;}
.y3ac{bottom:896.480000pt;}
.y252{bottom:897.200000pt;}
.y136{bottom:898.172640pt;}
.ya0{bottom:898.175280pt;}
.y289{bottom:898.182720pt;}
.y19a{bottom:898.212560pt;}
.y214{bottom:898.215120pt;}
.y68{bottom:898.233840pt;}
.y8{bottom:898.640000pt;}
.yfe{bottom:899.753760pt;}
.y2fc{bottom:901.182240pt;}
.y2c2{bottom:901.270080pt;}
.y1d3{bottom:902.873680pt;}
.y335{bottom:910.080000pt;}
.y45d{bottom:911.488080pt;}
.y374{bottom:911.525280pt;}
.y3e8{bottom:911.677280pt;}
.y41f{bottom:911.728560pt;}
.y3ab{bottom:911.760000pt;}
.y251{bottom:912.320000pt;}
.y135{bottom:915.052560pt;}
.y9f{bottom:915.055200pt;}
.y288{bottom:915.062640pt;}
.y199{bottom:915.092480pt;}
.y213{bottom:915.095040pt;}
.y67{bottom:915.113760pt;}
.yfd{bottom:916.633680pt;}
.y2fb{bottom:917.740080pt;}
.y2c1{bottom:917.827920pt;}
.y1d2{bottom:919.680400pt;}
.y45c{bottom:926.852080pt;}
.y373{bottom:926.889280pt;}
.y3e7{bottom:927.041280pt;}
.y334{bottom:927.092560pt;}
.y250{bottom:927.440000pt;}
.y5{bottom:931.360000pt;}
.y134{bottom:931.932480pt;}
.y9e{bottom:931.935120pt;}
.y287{bottom:931.942560pt;}
.y198{bottom:931.972400pt;}
.y212{bottom:931.974960pt;}
.y66{bottom:931.993680pt;}
.yfc{bottom:933.513600pt;}
.y2fa{bottom:934.224720pt;}
.y2c0{bottom:934.312560pt;}
.y1d1{bottom:936.560320pt;}
.y6{bottom:940.000000pt;}
.y45b{bottom:942.216080pt;}
.y372{bottom:942.253280pt;}
.y3e6{bottom:942.405280pt;}
.y333{bottom:942.456560pt;}
.y24f{bottom:942.560000pt;}
.y133{bottom:948.812400pt;}
.y9d{bottom:948.815040pt;}
.y286{bottom:948.822480pt;}
.y197{bottom:948.852320pt;}
.y211{bottom:948.854880pt;}
.y65{bottom:948.873600pt;}
.yfb{bottom:950.393520pt;}
.y2f9{bottom:950.782560pt;}
.y2bf{bottom:950.870400pt;}
.y1d0{bottom:953.440240pt;}
.y45a{bottom:957.499920pt;}
.y371{bottom:957.537120pt;}
.y24e{bottom:957.680000pt;}
.y3e5{bottom:957.689120pt;}
.y332{bottom:957.740400pt;}
.y132{bottom:965.619120pt;}
.y9c{bottom:965.621760pt;}
.y285{bottom:965.629200pt;}
.y196{bottom:965.659040pt;}
.y210{bottom:965.661600pt;}
.y64{bottom:965.680320pt;}
.y2f8{bottom:967.267200pt;}
.yfa{bottom:967.273440pt;}
.y2be{bottom:967.355040pt;}
.y1cf{bottom:970.320160pt;}
.y24d{bottom:972.800000pt;}
.y459{bottom:972.863920pt;}
.y370{bottom:972.901120pt;}
.y3e4{bottom:973.053120pt;}
.y331{bottom:973.104400pt;}
.y4{bottom:980.160000pt;}
.y131{bottom:982.499040pt;}
.y9b{bottom:982.501680pt;}
.y284{bottom:982.509120pt;}
.y195{bottom:982.538960pt;}
.y20f{bottom:982.541520pt;}
.y63{bottom:982.560240pt;}
.y2f7{bottom:983.751840pt;}
.y2bd{bottom:983.839680pt;}
.yf9{bottom:984.080160pt;}
.y1ce{bottom:987.200080pt;}
.y458{bottom:988.227920pt;}
.y36f{bottom:988.265120pt;}
.y3e3{bottom:988.417120pt;}
.y330{bottom:988.468400pt;}
.y24b{bottom:989.600000pt;}
.y130{bottom:999.378960pt;}
.y9a{bottom:999.381600pt;}
.y283{bottom:999.389040pt;}
.y194{bottom:999.418880pt;}
.y20e{bottom:999.421440pt;}
.y62{bottom:999.440160pt;}
.y2f6{bottom:1000.309680pt;}
.y2bc{bottom:1000.397520pt;}
.yf8{bottom:1000.960080pt;}
.y457{bottom:1003.511760pt;}
.y36e{bottom:1003.548960pt;}
.y3e2{bottom:1003.700960pt;}
.y32f{bottom:1003.752240pt;}
.y1cd{bottom:1004.080000pt;}
.y24c{bottom:1007.440000pt;}
.y12f{bottom:1016.258880pt;}
.y99{bottom:1016.261520pt;}
.y282{bottom:1016.268960pt;}
.y193{bottom:1016.298800pt;}
.y20d{bottom:1016.301360pt;}
.y61{bottom:1016.320080pt;}
.y2f5{bottom:1016.794320pt;}
.y2bb{bottom:1016.882160pt;}
.y3{bottom:1016.960000pt;}
.yf7{bottom:1017.840000pt;}
.y456{bottom:1018.875760pt;}
.y36d{bottom:1018.912960pt;}
.y32e{bottom:1018.955920pt;}
.y3e1{bottom:1019.064960pt;}
.y3aa{bottom:1019.116240pt;}
.y1cc{bottom:1019.920000pt;}
.y24a{bottom:1026.560000pt;}
.y1cb{bottom:1033.120000pt;}
.y12e{bottom:1033.138800pt;}
.y98{bottom:1033.141440pt;}
.y281{bottom:1033.148880pt;}
.y192{bottom:1033.178720pt;}
.y20c{bottom:1033.181280pt;}
.y60{bottom:1033.200000pt;}
.y2f4{bottom:1033.352160pt;}
.y2ba{bottom:1033.440000pt;}
.y455{bottom:1034.239760pt;}
.y36c{bottom:1034.276960pt;}
.yf6{bottom:1034.319920pt;}
.y3e0{bottom:1034.428960pt;}
.y249{bottom:1034.480240pt;}
.y1{bottom:1081.120000pt;}
.h6{height:3.623040pt;}
.h1b{height:13.758667pt;}
.h1a{height:13.760000pt;}
.h17{height:13.840000pt;}
.h1c{height:13.841333pt;}
.h19{height:14.886562pt;}
.h1f{height:18.441562pt;}
.h13{height:22.218750pt;}
.h24{height:22.968750pt;}
.h7{height:25.995937pt;}
.h18{height:28.844375pt;}
.h20{height:31.600000pt;}
.h1d{height:31.601333pt;}
.h11{height:32.531250pt;}
.h14{height:32.695312pt;}
.h5{height:33.328125pt;}
.ha{height:36.218125pt;}
.h9{height:36.400781pt;}
.hc{height:36.583437pt;}
.h12{height:37.105312pt;}
.h2{height:38.357812pt;}
.hd{height:38.451252pt;}
.he{height:39.688125pt;}
.hb{height:40.082365pt;}
.h8{height:40.660312pt;}
.h21{height:41.360000pt;}
.h15{height:42.023438pt;}
.h23{height:42.032812pt;}
.h10{height:44.437500pt;}
.h22{height:46.133750pt;}
.h25{height:46.786094pt;}
.h26{height:46.817454pt;}
.h28{height:46.865454pt;}
.h27{height:46.895854pt;}
.h29{height:47.007534pt;}
.h1e{height:49.040000pt;}
.hf{height:51.268594pt;}
.h4{height:65.276406pt;}
.h16{height:70.823438pt;}
.h3{height:86.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w20{width:1.278667pt;}
.w18{width:1.360000pt;}
.w1a{width:5.040000pt;}
.w15{width:25.920000pt;}
.w6{width:28.320000pt;}
.wa{width:28.481333pt;}
.wb{width:30.480000pt;}
.wc{width:31.680000pt;}
.w9{width:33.760000pt;}
.w8{width:37.840000pt;}
.w14{width:37.920000pt;}
.w16{width:38.640000pt;}
.wf{width:39.600000pt;}
.w10{width:40.880000pt;}
.w7{width:47.120000pt;}
.w19{width:47.200000pt;}
.wd{width:47.280000pt;}
.w2{width:49.200000pt;}
.we{width:50.240000pt;}
.w1c{width:54.318667pt;}
.w13{width:56.640000pt;}
.w21{width:56.720000pt;}
.w22{width:59.120000pt;}
.w1b{width:59.200000pt;}
.w1f{width:66.080000pt;}
.w17{width:66.161333pt;}
.w5{width:70.001333pt;}
.w3{width:71.280000pt;}
.w4{width:72.800000pt;}
.w11{width:103.920000pt;}
.w1e{width:168.560000pt;}
.w12{width:168.641333pt;}
.w23{width:309.920000pt;}
.w1d{width:310.000000pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:2.480000pt;}
.x35{left:4.080000pt;}
.x3e{left:5.440000pt;}
.x37{left:7.120000pt;}
.x33{left:9.760000pt;}
.x39{left:11.440000pt;}
.x31{left:12.960000pt;}
.x2d{left:14.240000pt;}
.x2f{left:15.280000pt;}
.x2b{left:18.160000pt;}
.x1a{left:20.080000pt;}
.x2{left:75.840000pt;}
.x3{left:79.440000pt;}
.x49{left:85.284000pt;}
.x19{left:88.080000pt;}
.xe{left:89.040000pt;}
.x4c{left:91.671600pt;}
.x4b{left:93.822560pt;}
.x13{left:94.800000pt;}
.x1{left:97.362667pt;}
.x4a{left:99.836160pt;}
.x20{left:104.160000pt;}
.x4{left:112.304000pt;}
.x3f{left:113.680000pt;}
.x17{left:121.044000pt;}
.x42{left:126.080000pt;}
.x43{left:127.360000pt;}
.xb{left:132.640000pt;}
.xc{left:139.600000pt;}
.x21{left:151.280000pt;}
.x18{left:153.280000pt;}
.xf{left:159.046080pt;}
.x40{left:160.960000pt;}
.x44{left:174.640000pt;}
.x1b{left:183.040000pt;}
.x5{left:187.040000pt;}
.x22{left:189.120000pt;}
.x28{left:198.560000pt;}
.x15{left:203.124000pt;}
.x23{left:217.440000pt;}
.x45{left:231.360000pt;}
.x29{left:236.400000pt;}
.x24{left:251.200000pt;}
.x1c{left:255.040000pt;}
.x46{left:269.280000pt;}
.x47{left:274.320000pt;}
.x25{left:279.680000pt;}
.x41{left:281.440000pt;}
.x2a{left:286.960000pt;}
.x26{left:310.160000pt;}
.xd{left:317.461360pt;}
.x6{left:319.680000pt;}
.x7{left:325.680000pt;}
.x1d{left:328.480000pt;}
.x48{left:333.440000pt;}
.x27{left:341.840000pt;}
.x16{left:348.564000pt;}
.x11{left:410.160640pt;}
.x14{left:423.373680pt;}
.x10{left:428.156533pt;}
.x12{left:429.133440pt;}
.x1e{left:433.465920pt;}
.x1f{left:448.032720pt;}
.x8{left:456.320000pt;}
.x36{left:460.400000pt;}
.x9{left:462.320000pt;}
.x2e{left:495.280000pt;}
.x38{left:509.040000pt;}
.x2c{left:551.920000pt;}
.x3a{left:565.680000pt;}
.x30{left:589.840000pt;}
.x3b{left:603.600000pt;}
.xa{left:608.480000pt;}
.x32{left:615.760000pt;}
.x34{left:654.400000pt;}
.x3d{left:667.760000pt;}
}




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