
    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_cf5d8dfa9a326b46d46b5199.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_af4683062849cf8e4272eb8b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_04c56d41e77b5663c0af6a81.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;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_35c1e5c160e45ef06847bde0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;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_9057d5535988c53c33115543.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_befc9fe96699c79acbe18efe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239000;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_f20652ec487cb83896ae902f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.924000;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_a811dc4e86b64cfbfe3e0a05.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_eafe9266363b84ca2ffb8cf2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;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_c1106f4aed9bc1c66dd60d49.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.144000;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_a9785fbf0253a6e3bb2acdf3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.328000;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);}
.v2{vertical-align:-20.400009px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.v3{vertical-align:59.976000px;}
.ls41{letter-spacing:-1.632000px;}
.ls55{letter-spacing:-1.377000px;}
.ls4b{letter-spacing:-1.260000px;}
.ls4e{letter-spacing:-0.780000px;}
.ls79{letter-spacing:-0.510000px;}
.ls1b{letter-spacing:-0.480000px;}
.ls2a{letter-spacing:-0.420000px;}
.ls2c{letter-spacing:-0.360000px;}
.ls6b{letter-spacing:-0.357000px;}
.ls6f{letter-spacing:-0.306000px;}
.ls2d{letter-spacing:-0.300000px;}
.ls6d{letter-spacing:-0.255000px;}
.ls19{letter-spacing:-0.240000px;}
.ls6c{letter-spacing:-0.204000px;}
.ls1a{letter-spacing:-0.180000px;}
.ls6e{letter-spacing:-0.153000px;}
.ls2b{letter-spacing:-0.120000px;}
.ls70{letter-spacing:-0.102000px;}
.ls18{letter-spacing:-0.060000px;}
.ls71{letter-spacing:-0.051000px;}
.ls0{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.000037px;}
.ls2{letter-spacing:0.000039px;}
.ls23{letter-spacing:0.030000px;}
.ls5c{letter-spacing:0.051000px;}
.ls21{letter-spacing:0.060000px;}
.ls73{letter-spacing:0.076500px;}
.ls5e{letter-spacing:0.102000px;}
.ls6{letter-spacing:0.120000px;}
.ls72{letter-spacing:0.127500px;}
.ls51{letter-spacing:0.150000px;}
.ls59{letter-spacing:0.153000px;}
.ls57{letter-spacing:0.178500px;}
.ls17{letter-spacing:0.178791px;}
.ls4{letter-spacing:0.180000px;}
.ls5a{letter-spacing:0.204000px;}
.ls29{letter-spacing:0.210000px;}
.ls67{letter-spacing:0.229500px;}
.ls3{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.255000px;}
.ls58{letter-spacing:0.264000px;}
.ls28{letter-spacing:0.270000px;}
.ls5f{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.300000px;}
.ls66{letter-spacing:0.306000px;}
.ls31{letter-spacing:0.330000px;}
.ls5d{letter-spacing:0.357000px;}
.ls14{letter-spacing:0.360000px;}
.ls52{letter-spacing:0.390000px;}
.ls2e{letter-spacing:0.402000px;}
.ls75{letter-spacing:0.408000px;}
.ls9{letter-spacing:0.420000px;}
.ls15{letter-spacing:0.450000px;}
.ls5b{letter-spacing:0.459000px;}
.ls12{letter-spacing:0.480000px;}
.lse{letter-spacing:0.510000px;}
.ls5{letter-spacing:0.540000px;}
.ls62{letter-spacing:0.561000px;}
.ls32{letter-spacing:0.570000px;}
.ls7{letter-spacing:0.600000px;}
.ls63{letter-spacing:0.612000px;}
.ls4c{letter-spacing:0.630000px;}
.ls1f{letter-spacing:0.660000px;}
.ls69{letter-spacing:0.663000px;}
.ls53{letter-spacing:0.690000px;}
.ls60{letter-spacing:0.714000px;}
.lsc{letter-spacing:0.720000px;}
.ls47{letter-spacing:0.750000px;}
.ls65{letter-spacing:0.765000px;}
.lsb{letter-spacing:0.780000px;}
.ls42{letter-spacing:0.810000px;}
.ls61{letter-spacing:0.816000px;}
.ls11{letter-spacing:0.840000px;}
.ls68{letter-spacing:0.867000px;}
.ls27{letter-spacing:0.870000px;}
.ls13{letter-spacing:0.900000px;}
.ls74{letter-spacing:0.918000px;}
.ls33{letter-spacing:0.930000px;}
.ls25{letter-spacing:0.960000px;}
.ls56{letter-spacing:0.969000px;}
.ls40{letter-spacing:0.990000px;}
.ls24{letter-spacing:1.020000px;}
.lsa{letter-spacing:1.050000px;}
.ls10{letter-spacing:1.080000px;}
.ls3e{letter-spacing:1.110000px;}
.ls76{letter-spacing:1.122000px;}
.ls20{letter-spacing:1.140000px;}
.ls3a{letter-spacing:1.170000px;}
.ls1e{letter-spacing:1.200000px;}
.ls34{letter-spacing:1.230000px;}
.ls26{letter-spacing:1.260000px;}
.ls6a{letter-spacing:1.275000px;}
.ls2f{letter-spacing:1.320000px;}
.ls39{letter-spacing:1.350000px;}
.ls35{letter-spacing:1.380000px;}
.ls1c{letter-spacing:1.440000px;}
.ls44{letter-spacing:1.470000px;}
.ls30{letter-spacing:1.500000px;}
.lsd{letter-spacing:1.512000px;}
.ls3c{letter-spacing:1.530000px;}
.lsf{letter-spacing:1.560000px;}
.ls54{letter-spacing:1.590000px;}
.ls1d{letter-spacing:1.620000px;}
.ls22{letter-spacing:1.680000px;}
.ls43{letter-spacing:1.740000px;}
.ls38{letter-spacing:1.800000px;}
.ls4d{letter-spacing:1.830000px;}
.ls36{letter-spacing:1.860000px;}
.ls37{letter-spacing:1.890000px;}
.ls50{letter-spacing:1.920000px;}
.ls45{letter-spacing:1.980000px;}
.ls46{letter-spacing:2.010000px;}
.ls3d{letter-spacing:2.040000px;}
.ls49{letter-spacing:2.100000px;}
.ls4f{letter-spacing:2.280000px;}
.ls3b{letter-spacing:2.340000px;}
.ls64{letter-spacing:2.519392px;}
.ls48{letter-spacing:2.520000px;}
.ls4a{letter-spacing:2.760000px;}
.ls1{letter-spacing:3.990000px;}
.ls78{letter-spacing:4.319700px;}
.ls77{letter-spacing:4.707300px;}
.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;}
}
.ws89{word-spacing:-16.140000px;}
.ws7{word-spacing:-16.080000px;}
.wsa1{word-spacing:-15.960000px;}
.ws63{word-spacing:-15.930000px;}
.ws87{word-spacing:-15.750000px;}
.ws4b{word-spacing:-15.600000px;}
.ws4c{word-spacing:-15.330000px;}
.ws7a{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.240000px;}
.ws4a{word-spacing:-15.120000px;}
.ws88{word-spacing:-15.000000px;}
.wsab{word-spacing:-14.832000px;}
.ws20{word-spacing:-14.640000px;}
.ws64{word-spacing:-14.544000px;}
.ws8a{word-spacing:-13.740000px;}
.wsac{word-spacing:-13.005000px;}
.wsc4{word-spacing:-12.954000px;}
.wsaa{word-spacing:-12.852000px;}
.wsc3{word-spacing:-12.801000px;}
.ws74{word-spacing:-12.750000px;}
.wsc6{word-spacing:-12.495000px;}
.ws86{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.420000px;}
.wsc5{word-spacing:-12.393000px;}
.ws4{word-spacing:-12.360000px;}
.wsc7{word-spacing:-12.240000px;}
.ws5{word-spacing:-11.520000px;}
.wsa7{word-spacing:-11.373000px;}
.wsa9{word-spacing:-10.761000px;}
.ws6b{word-spacing:-10.500000px;}
.ws2{word-spacing:-9.996000px;}
.ws8{word-spacing:-8.925000px;}
.ws6a{word-spacing:-6.375000px;}
.ws8c{word-spacing:-1.980000px;}
.ws81{word-spacing:-1.800000px;}
.ws80{word-spacing:-1.680000px;}
.wsa5{word-spacing:-1.560000px;}
.wsa{word-spacing:-1.500000px;}
.ws32{word-spacing:-1.440000px;}
.ws25{word-spacing:-1.380000px;}
.ws55{word-spacing:-1.320000px;}
.wsae{word-spacing:-1.275000px;}
.ws51{word-spacing:-1.260000px;}
.wsd7{word-spacing:-1.224000px;}
.ws26{word-spacing:-1.200000px;}
.wsb8{word-spacing:-1.173000px;}
.ws19{word-spacing:-1.140000px;}
.wsbf{word-spacing:-1.122000px;}
.ws50{word-spacing:-1.080000px;}
.wsb6{word-spacing:-1.071000px;}
.ws37{word-spacing:-1.020000px;}
.wsb2{word-spacing:-0.969000px;}
.ws45{word-spacing:-0.960000px;}
.wse1{word-spacing:-0.918000px;}
.ws5b{word-spacing:-0.900000px;}
.wsc{word-spacing:-0.840000px;}
.ws10{word-spacing:-0.780000px;}
.wsb4{word-spacing:-0.765000px;}
.wsd{word-spacing:-0.720000px;}
.wsb7{word-spacing:-0.714000px;}
.ws43{word-spacing:-0.660000px;}
.ws1e{word-spacing:-0.612000px;}
.ws62{word-spacing:-0.600000px;}
.ws9{word-spacing:-0.570000px;}
.wsd8{word-spacing:-0.561000px;}
.ws11{word-spacing:-0.540000px;}
.wsd5{word-spacing:-0.510000px;}
.ws17{word-spacing:-0.480000px;}
.wsc9{word-spacing:-0.459000px;}
.ws12{word-spacing:-0.420000px;}
.wsa6{word-spacing:-0.408000px;}
.ws7e{word-spacing:-0.360000px;}
.wsca{word-spacing:-0.306000px;}
.ws13{word-spacing:-0.300000px;}
.wsaf{word-spacing:-0.264000px;}
.wsba{word-spacing:-0.255000px;}
.ws28{word-spacing:-0.240000px;}
.wsde{word-spacing:-0.204000px;}
.ws5e{word-spacing:-0.180000px;}
.wsa8{word-spacing:-0.153000px;}
.ws2b{word-spacing:-0.120000px;}
.ws9a{word-spacing:-0.102000px;}
.ws2d{word-spacing:-0.060000px;}
.wsd0{word-spacing:-0.051000px;}
.ws1{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.wsdf{word-spacing:0.051000px;}
.ws40{word-spacing:0.060000px;}
.ws27{word-spacing:0.120000px;}
.ws83{word-spacing:0.180000px;}
.ws36{word-spacing:0.240000px;}
.ws68{word-spacing:0.300000px;}
.ws2c{word-spacing:0.360000px;}
.wsd1{word-spacing:0.408000px;}
.wse{word-spacing:0.420000px;}
.wsbc{word-spacing:0.459000px;}
.ws1a{word-spacing:0.480000px;}
.ws42{word-spacing:0.540000px;}
.ws59{word-spacing:0.600000px;}
.ws3f{word-spacing:0.660000px;}
.ws54{word-spacing:0.720000px;}
.wscf{word-spacing:0.765000px;}
.ws1d{word-spacing:0.780000px;}
.wsdc{word-spacing:0.816000px;}
.ws44{word-spacing:0.840000px;}
.wsd3{word-spacing:0.867000px;}
.ws84{word-spacing:0.900000px;}
.wscb{word-spacing:0.969000px;}
.ws56{word-spacing:1.020000px;}
.ws52{word-spacing:1.080000px;}
.ws4f{word-spacing:1.140000px;}
.wsb5{word-spacing:1.173000px;}
.ws2e{word-spacing:1.200000px;}
.ws1c{word-spacing:1.260000px;}
.wsb3{word-spacing:1.275000px;}
.ws79{word-spacing:1.320000px;}
.wsc2{word-spacing:1.377000px;}
.ws60{word-spacing:1.380000px;}
.ws38{word-spacing:1.440000px;}
.wsd6{word-spacing:1.479000px;}
.wsb{word-spacing:1.500000px;}
.wsb9{word-spacing:1.530000px;}
.ws66{word-spacing:1.560000px;}
.wscd{word-spacing:1.581000px;}
.ws34{word-spacing:1.620000px;}
.wsbe{word-spacing:1.632000px;}
.ws18{word-spacing:1.680000px;}
.wsda{word-spacing:1.683000px;}
.wsc8{word-spacing:1.734000px;}
.ws30{word-spacing:1.740000px;}
.wscc{word-spacing:1.785000px;}
.ws16{word-spacing:1.800000px;}
.wsd4{word-spacing:1.836000px;}
.ws3a{word-spacing:1.860000px;}
.ws47{word-spacing:1.920000px;}
.ws69{word-spacing:1.980000px;}
.wsbd{word-spacing:1.989000px;}
.ws29{word-spacing:2.040000px;}
.wsd2{word-spacing:2.091000px;}
.ws6e{word-spacing:2.100000px;}
.ws4e{word-spacing:2.160000px;}
.ws5a{word-spacing:2.220000px;}
.ws33{word-spacing:2.280000px;}
.wsbb{word-spacing:2.295000px;}
.ws1b{word-spacing:2.340000px;}
.wsc1{word-spacing:2.346000px;}
.ws5f{word-spacing:2.400000px;}
.ws35{word-spacing:2.460000px;}
.ws46{word-spacing:2.520000px;}
.ws70{word-spacing:2.550000px;}
.ws48{word-spacing:2.580000px;}
.wse0{word-spacing:2.601000px;}
.ws3b{word-spacing:2.640000px;}
.ws41{word-spacing:2.700000px;}
.wsd9{word-spacing:2.754000px;}
.ws58{word-spacing:2.760000px;}
.wsdb{word-spacing:2.805000px;}
.ws7f{word-spacing:2.820000px;}
.ws31{word-spacing:2.880000px;}
.ws3d{word-spacing:2.940000px;}
.wsf{word-spacing:3.000000px;}
.wsc0{word-spacing:3.009000px;}
.ws15{word-spacing:3.060000px;}
.ws3c{word-spacing:3.120000px;}
.ws97{word-spacing:3.180000px;}
.ws77{word-spacing:3.240000px;}
.ws2a{word-spacing:3.300000px;}
.ws82{word-spacing:3.360000px;}
.ws78{word-spacing:3.420000px;}
.ws7d{word-spacing:3.480000px;}
.ws7c{word-spacing:3.540000px;}
.ws65{word-spacing:3.600000px;}
.ws53{word-spacing:3.660000px;}
.wsdd{word-spacing:3.672000px;}
.ws24{word-spacing:3.720000px;}
.ws4d{word-spacing:3.780000px;}
.ws72{word-spacing:3.825000px;}
.ws8d{word-spacing:3.840000px;}
.wsb0{word-spacing:3.876000px;}
.ws6d{word-spacing:3.900000px;}
.ws76{word-spacing:3.960000px;}
.ws49{word-spacing:4.020000px;}
.ws39{word-spacing:4.080000px;}
.ws90{word-spacing:4.140000px;}
.ws61{word-spacing:4.200000px;}
.ws5c{word-spacing:4.260000px;}
.wsad{word-spacing:4.284000px;}
.wsa2{word-spacing:4.320000px;}
.ws7b{word-spacing:4.440000px;}
.ws6c{word-spacing:4.500000px;}
.ws99{word-spacing:4.560000px;}
.ws71{word-spacing:4.590000px;}
.ws9b{word-spacing:4.620000px;}
.ws98{word-spacing:4.680000px;}
.ws8b{word-spacing:4.800000px;}
.ws22{word-spacing:4.860000px;}
.ws9f{word-spacing:4.980000px;}
.ws21{word-spacing:5.040000px;}
.wsb1{word-spacing:5.049000px;}
.ws67{word-spacing:5.100000px;}
.wsa0{word-spacing:5.160000px;}
.ws5d{word-spacing:5.220000px;}
.ws85{word-spacing:5.280000px;}
.wsa4{word-spacing:5.400000px;}
.ws57{word-spacing:5.460000px;}
.ws14{word-spacing:5.520000px;}
.ws9d{word-spacing:5.580000px;}
.ws3e{word-spacing:5.700000px;}
.ws23{word-spacing:5.760000px;}
.ws9e{word-spacing:5.820000px;}
.wsce{word-spacing:5.865000px;}
.ws2f{word-spacing:6.000000px;}
.ws8f{word-spacing:6.240000px;}
.ws9c{word-spacing:6.840000px;}
.ws8e{word-spacing:7.200000px;}
.ws6f{word-spacing:7.446000px;}
.wsa3{word-spacing:7.860000px;}
.wse2{word-spacing:13.515000px;}
.wse3{word-spacing:17.595000px;}
.ws1f{word-spacing:72.267000px;}
.ws92{word-spacing:106.538990px;}
.ws91{word-spacing:129.290090px;}
.ws96{word-spacing:157.947000px;}
.ws93{word-spacing:160.094090px;}
.ws95{word-spacing:233.324994px;}
.ws94{word-spacing:270.095994px;}
.ws73{word-spacing:487.967986px;}
.ws75{word-spacing:548.045976px;}
._d{margin-left:-2959.376905px;}
._2c{margin-left:-48.450000px;}
._b{margin-left:-24.225000px;}
._7{margin-left:-16.575000px;}
._e{margin-left:-10.352400px;}
._18{margin-left:-7.178712px;}
._2{margin-left:-6.129300px;}
._1{margin-left:-4.622700px;}
._5{margin-left:-3.213300px;}
._0{margin-left:-1.632000px;}
._4{width:1.578000px;}
._6{width:2.640000px;}
._1e{width:5.085300px;}
._2d{width:6.732000px;}
._43{width:8.721000px;}
._44{width:14.381990px;}
._f{width:15.907200px;}
._8{width:18.360000px;}
._22{width:37.034952px;}
._14{width:38.198976px;}
._3{width:40.743533px;}
._3f{width:42.588000px;}
._33{width:46.002000px;}
._a{width:54.621000px;}
._3e{width:60.588000px;}
._3a{width:69.615000px;}
._9{width:72.267000px;}
._42{width:74.004000px;}
._1d{width:83.537976px;}
._40{width:97.971000px;}
._3b{width:101.031000px;}
._39{width:102.714000px;}
._2e{width:123.879000px;}
._27{width:125.817276px;}
._35{width:150.912000px;}
._2a{width:152.243985px;}
._31{width:154.632000px;}
._30{width:160.293000px;}
._23{width:165.698962px;}
._3c{width:179.523000px;}
._25{width:190.782009px;}
._28{width:199.307976px;}
._32{width:206.142000px;}
._3d{width:211.038000px;}
._37{width:237.558000px;}
._2b{width:263.111991px;}
._16{width:280.500000px;}
._19{width:291.873000px;}
._13{width:297.432000px;}
._34{width:301.002000px;}
._1f{width:303.093000px;}
._38{width:307.122000px;}
._2f{width:310.743000px;}
._17{width:319.769976px;}
._11{width:355.622976px;}
._15{width:382.194000px;}
._41{width:387.042000px;}
._26{width:420.443976px;}
._10{width:422.028000px;}
._36{width:433.755000px;}
._29{width:449.318967px;}
._1c{width:453.543000px;}
._24{width:512.141991px;}
._1b{width:519.536976px;}
._20{width:548.250000px;}
._1a{width:616.233000px;}
._21{width:754.595976px;}
._12{width:821.814000px;}
._c{width:2608.956061px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.699999px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs7{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:68.829002px;}
.y4{bottom:97.125005px;}
.y17f{bottom:112.932217px;}
.y17a{bottom:112.932228px;}
.y176{bottom:112.932234px;}
.y172{bottom:112.932240px;}
.y16c{bottom:112.932266px;}
.y167{bottom:112.932288px;}
.y162{bottom:112.932294px;}
.y161{bottom:112.932300px;}
.y5d{bottom:112.938300px;}
.y192{bottom:112.956300px;}
.y93{bottom:113.415344px;}
.y160{bottom:113.544342px;}
.y319{bottom:114.252319px;}
.y200{bottom:114.729378px;}
.y351{bottom:114.735260px;}
.y20d{bottom:114.735294px;}
.y35a{bottom:114.735306px;}
.yfc{bottom:114.738316px;}
.y1a3{bottom:114.874786px;}
.y28c{bottom:115.002296px;}
.y301{bottom:124.110306px;}
.y263{bottom:124.249969px;}
.y191{bottom:127.950300px;}
.y4d{bottom:130.711395px;}
.yc7{bottom:131.283325px;}
.y54f{bottom:131.608823px;}
.y92{bottom:132.165344px;}
.y15f{bottom:132.294342px;}
.y318{bottom:133.002319px;}
.y5c{bottom:133.032303px;}
.y1ff{bottom:133.479378px;}
.y350{bottom:133.485260px;}
.y20c{bottom:133.485294px;}
.y359{bottom:133.485306px;}
.yfb{bottom:133.488316px;}
.y1a2{bottom:133.624786px;}
.y282{bottom:133.624969px;}
.y28b{bottom:133.752296px;}
.y20{bottom:139.264499px;}
.y2e4{bottom:142.860260px;}
.y300{bottom:142.860306px;}
.y190{bottom:142.944300px;}
.y262{bottom:142.999969px;}
.y50e{bottom:144.967799px;}
.y54e{bottom:146.602823px;}
.y58f{bottom:146.985307px;}
.y4c{bottom:149.461395px;}
.yc6{bottom:150.033325px;}
.y5b{bottom:150.485553px;}
.y91{bottom:150.915344px;}
.y15e{bottom:151.044342px;}
.y317{bottom:151.752319px;}
.y1fe{bottom:152.229378px;}
.y34f{bottom:152.235260px;}
.y23f{bottom:152.235294px;}
.y12c{bottom:152.235306px;}
.yfa{bottom:152.238316px;}
.y1a1{bottom:152.374786px;}
.y281{bottom:152.374969px;}
.y28a{bottom:152.502296px;}
.y4e8{bottom:156.812549px;}
.y18f{bottom:157.938300px;}
.y50d{bottom:159.961799px;}
.y54d{bottom:161.596823px;}
.y2e3{bottom:161.610260px;}
.y2ff{bottom:161.610306px;}
.y261{bottom:161.749969px;}
.y58e{bottom:161.979307px;}
.y4b{bottom:168.211395px;}
.yc5{bottom:168.783325px;}
.y90{bottom:169.665344px;}
.y15d{bottom:169.794342px;}
.y316{bottom:170.502319px;}
.y5a{bottom:170.579556px;}
.y1fd{bottom:170.979378px;}
.y34e{bottom:170.985260px;}
.y20b{bottom:170.985294px;}
.y12b{bottom:170.985306px;}
.yf9{bottom:170.988316px;}
.y1a0{bottom:171.124786px;}
.y280{bottom:171.124969px;}
.y4e7{bottom:171.806549px;}
.y50c{bottom:174.955799px;}
.y54c{bottom:176.590823px;}
.y58d{bottom:176.973307px;}
.y410{bottom:177.696324px;}
.y18e{bottom:178.032303px;}
.y2e2{bottom:180.360260px;}
.y2fe{bottom:180.360306px;}
.y260{bottom:180.499969px;}
.y4e6{bottom:186.800549px;}
.y4a{bottom:186.961395px;}
.yc4{bottom:187.533325px;}
.y8f{bottom:188.415344px;}
.y15c{bottom:188.544342px;}
.y315{bottom:189.252319px;}
.y1fc{bottom:189.729378px;}
.y34d{bottom:189.735260px;}
.y23e{bottom:189.735294px;}
.y12a{bottom:189.735306px;}
.yf8{bottom:189.738316px;}
.y19f{bottom:189.874786px;}
.y27f{bottom:189.874969px;}
.y50b{bottom:189.949799px;}
.y54b{bottom:191.584823px;}
.y58c{bottom:191.967307px;}
.y40f{bottom:192.690324px;}
.y59{bottom:195.633749px;}
.y17{bottom:196.933500px;}
.y2e1{bottom:199.110260px;}
.y2fd{bottom:199.110306px;}
.y25f{bottom:199.249969px;}
.y50a{bottom:204.943799px;}
.y49{bottom:205.711395px;}
.yc3{bottom:206.283325px;}
.y54a{bottom:206.578823px;}
.y58b{bottom:206.961307px;}
.y8e{bottom:207.165344px;}
.y15b{bottom:207.294342px;}
.y40e{bottom:207.684324px;}
.y419{bottom:207.748074px;}
.y314{bottom:208.002319px;}
.y2bc{bottom:208.462524px;}
.y1fb{bottom:208.479378px;}
.y34c{bottom:208.485260px;}
.y23d{bottom:208.485294px;}
.y129{bottom:208.485306px;}
.yf7{bottom:208.488316px;}
.y19e{bottom:208.624786px;}
.y27e{bottom:208.624969px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y58{bottom:210.627749px;}
.y2e0{bottom:217.860260px;}
.y2fc{bottom:217.860306px;}
.y25e{bottom:217.999969px;}
.y509{bottom:219.937799px;}
.y4e5{bottom:220.550560px;}
.y549{bottom:221.572823px;}
.y58a{bottom:221.955307px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y405{bottom:222.640078px;}
.y40d{bottom:222.678324px;}
.y418{bottom:222.742074px;}
.y2bb{bottom:223.456524px;}
.y48{bottom:224.461395px;}
.yc2{bottom:225.033325px;}
.y8d{bottom:225.915344px;}
.y15a{bottom:226.044342px;}
.y313{bottom:226.752319px;}
.y1fa{bottom:227.229378px;}
.y18d{bottom:227.235260px;}
.y23c{bottom:227.235294px;}
.y128{bottom:227.235306px;}
.yf6{bottom:227.238316px;}
.y19d{bottom:227.374786px;}
.y27d{bottom:227.374969px;}
.y57{bottom:233.169749px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y508{bottom:234.931799px;}
.y548{bottom:236.566823px;}
.y2df{bottom:236.610260px;}
.y2fb{bottom:236.610306px;}
.y25d{bottom:236.749969px;}
.y589{bottom:236.949307px;}
.y404{bottom:237.634078px;}
.y40c{bottom:237.672324px;}
.y417{bottom:237.736074px;}
.y2ba{bottom:238.450524px;}
.y47{bottom:243.211395px;}
.yc1{bottom:243.783325px;}
.y8c{bottom:244.665344px;}
.y159{bottom:244.794342px;}
.y491{bottom:244.957769px;}
.y312{bottom:245.502319px;}
.y1f9{bottom:245.979378px;}
.y18c{bottom:245.985260px;}
.y23b{bottom:245.985294px;}
.y127{bottom:245.985306px;}
.yf5{bottom:245.988316px;}
.y19c{bottom:246.124786px;}
.y27c{bottom:246.124969px;}
.y56{bottom:248.163749px;}
.y507{bottom:249.925799px;}
.y547{bottom:251.560823px;}
.y588{bottom:251.943307px;}
.y403{bottom:252.628078px;}
.y40b{bottom:252.666324px;}
.y416{bottom:252.730074px;}
.y2b9{bottom:253.444524px;}
.y2de{bottom:255.360260px;}
.y2fa{bottom:255.360306px;}
.y25c{bottom:255.499969px;}
.y1c{bottom:259.918497px;}
.y48a{bottom:259.926269px;}
.y13{bottom:259.933500px;}
.y48d{bottom:259.939019px;}
.y490{bottom:259.951769px;}
.y46{bottom:261.961395px;}
.yc0{bottom:262.533325px;}
.y8b{bottom:263.415344px;}
.y158{bottom:263.544342px;}
.y311{bottom:264.252319px;}
.y1f8{bottom:264.729378px;}
.y18b{bottom:264.735260px;}
.y23a{bottom:264.735294px;}
.y126{bottom:264.735306px;}
.yf4{bottom:264.738316px;}
.y19b{bottom:264.874786px;}
.y27b{bottom:264.874969px;}
.y506{bottom:264.919799px;}
.y546{bottom:266.554823px;}
.y587{bottom:266.937307px;}
.y402{bottom:267.622078px;}
.y40a{bottom:267.660324px;}
.y415{bottom:267.724074px;}
.y41e{bottom:267.775070px;}
.y2b8{bottom:272.238024px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y2dd{bottom:274.110260px;}
.y2f9{bottom:274.110306px;}
.y25b{bottom:274.249969px;}
.y489{bottom:274.920269px;}
.y48c{bottom:274.933019px;}
.y48f{bottom:274.945769px;}
.y55{bottom:278.980499px;}
.y505{bottom:279.913799px;}
.y45{bottom:280.711395px;}
.ybf{bottom:281.283325px;}
.y545{bottom:281.548823px;}
.y586{bottom:281.931307px;}
.y8a{bottom:282.165344px;}
.y157{bottom:282.294342px;}
.y3fd{bottom:282.603328px;}
.y401{bottom:282.616078px;}
.y409{bottom:282.654324px;}
.y414{bottom:282.718074px;}
.y41d{bottom:282.769070px;}
.y310{bottom:283.002319px;}
.y1f7{bottom:283.479378px;}
.y18a{bottom:283.485260px;}
.y239{bottom:283.485294px;}
.y125{bottom:283.485306px;}
.yf3{bottom:283.488316px;}
.y19a{bottom:283.624786px;}
.y27a{bottom:283.624969px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y4e4{bottom:286.343719px;}
.y2b7{bottom:287.232024px;}
.y488{bottom:289.914269px;}
.y48b{bottom:289.927019px;}
.y48e{bottom:289.939769px;}
.y2dc{bottom:292.860260px;}
.y2f8{bottom:292.860306px;}
.y25a{bottom:292.999969px;}
.y54{bottom:293.974499px;}
.y504{bottom:294.907799px;}
.y544{bottom:296.542823px;}
.y585{bottom:296.925307px;}
.y3fc{bottom:297.597328px;}
.y400{bottom:297.610078px;}
.y408{bottom:297.648324px;}
.y413{bottom:297.712074px;}
.y41c{bottom:297.763070px;}
.y44{bottom:299.461395px;}
.ybe{bottom:300.033325px;}
.y89{bottom:300.915344px;}
.y156{bottom:301.044342px;}
.y4e3{bottom:301.337719px;}
.y30f{bottom:301.752319px;}
.y1f6{bottom:302.229378px;}
.y189{bottom:302.235260px;}
.y238{bottom:302.235294px;}
.y124{bottom:302.235306px;}
.yf2{bottom:302.238316px;}
.y199{bottom:302.374786px;}
.y279{bottom:302.374969px;}
.y2b6{bottom:305.949024px;}
.y481{bottom:308.605769px;}
.y53{bottom:308.968499px;}
.y503{bottom:309.901799px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y543{bottom:311.536823px;}
.y2db{bottom:311.610260px;}
.y2f7{bottom:311.610306px;}
.y259{bottom:311.749969px;}
.y584{bottom:311.919307px;}
.y3fb{bottom:312.591328px;}
.y3ff{bottom:312.604078px;}
.y407{bottom:312.642324px;}
.y412{bottom:312.706074px;}
.y41b{bottom:312.757070px;}
.y4e2{bottom:316.331719px;}
.y43{bottom:318.211395px;}
.ybd{bottom:318.783325px;}
.y88{bottom:319.665344px;}
.y155{bottom:319.794342px;}
.y30e{bottom:320.502319px;}
.y2b5{bottom:320.943024px;}
.y1f5{bottom:320.979378px;}
.y188{bottom:320.985260px;}
.y237{bottom:320.985294px;}
.y20a{bottom:320.985306px;}
.yf1{bottom:320.988316px;}
.y198{bottom:321.124786px;}
.y278{bottom:321.124969px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y480{bottom:323.599769px;}
.y52{bottom:323.962499px;}
.y502{bottom:324.895799px;}
.y542{bottom:326.530823px;}
.y583{bottom:326.913307px;}
.y3fa{bottom:327.585328px;}
.y3fe{bottom:327.598078px;}
.y406{bottom:327.636324px;}
.y411{bottom:327.700074px;}
.y41a{bottom:327.751070px;}
.y2da{bottom:330.360260px;}
.y2f6{bottom:330.360306px;}
.y258{bottom:330.499969px;}
.y4e1{bottom:331.325719px;}
.y2b4{bottom:335.937024px;}
.y42{bottom:336.961395px;}
.ybc{bottom:337.533325px;}
.y87{bottom:338.415344px;}
.y154{bottom:338.544342px;}
.y47f{bottom:338.593769px;}
.y51{bottom:338.956499px;}
.y30d{bottom:339.252319px;}
.y1f4{bottom:339.729378px;}
.y187{bottom:339.735260px;}
.y236{bottom:339.735294px;}
.y123{bottom:339.735306px;}
.yf0{bottom:339.738316px;}
.y197{bottom:339.874786px;}
.y277{bottom:339.874969px;}
.y501{bottom:339.889799px;}
.y541{bottom:341.524823px;}
.y582{bottom:341.907307px;}
.y3dc{bottom:346.149333px;}
.y3e6{bottom:346.200333px;}
.y4e0{bottom:346.319719px;}
.ye{bottom:348.133500px;}
.y2d9{bottom:349.110260px;}
.y2f5{bottom:349.110306px;}
.y257{bottom:349.249969px;}
.y47e{bottom:353.587769px;}
.y485{bottom:353.626019px;}
.y50{bottom:353.950499px;}
.y2b3{bottom:354.654024px;}
.y500{bottom:354.883799px;}
.y41{bottom:355.711395px;}
.ybb{bottom:356.283325px;}
.y540{bottom:356.518823px;}
.y581{bottom:356.901307px;}
.y86{bottom:357.165344px;}
.y153{bottom:357.294342px;}
.y30c{bottom:358.002319px;}
.y1f3{bottom:358.479378px;}
.y186{bottom:358.485260px;}
.y235{bottom:358.485294px;}
.y209{bottom:358.485306px;}
.yef{bottom:358.488316px;}
.y196{bottom:358.624786px;}
.y276{bottom:358.624969px;}
.y3db{bottom:361.143333px;}
.y3e5{bottom:361.194333px;}
.y3ef{bottom:361.245333px;}
.y4df{bottom:361.313719px;}
.y2d8{bottom:367.860260px;}
.y2f4{bottom:367.860306px;}
.y256{bottom:367.999969px;}
.y47d{bottom:368.581769px;}
.y484{bottom:368.620019px;}
.y4f{bottom:368.944499px;}
.y2b2{bottom:369.648024px;}
.y4ff{bottom:369.877799px;}
.y53f{bottom:371.512823px;}
.y580{bottom:371.895307px;}
.y40{bottom:374.461395px;}
.yba{bottom:375.033325px;}
.y85{bottom:375.915344px;}
.y152{bottom:376.044342px;}
.y3da{bottom:376.137333px;}
.y3e4{bottom:376.188333px;}
.y3ee{bottom:376.239333px;}
.y3f7{bottom:376.290329px;}
.y4de{bottom:376.307719px;}
.y30b{bottom:376.752319px;}
.y1f2{bottom:377.229378px;}
.y185{bottom:377.235260px;}
.y234{bottom:377.235294px;}
.y208{bottom:377.235306px;}
.yee{bottom:377.238316px;}
.y195{bottom:377.374786px;}
.y275{bottom:377.374969px;}
.y47c{bottom:383.575769px;}
.y483{bottom:383.614019px;}
.y487{bottom:383.626769px;}
.y4e{bottom:383.938499px;}
.y2b1{bottom:384.642024px;}
.y4fe{bottom:384.871799px;}
.y53e{bottom:386.506823px;}
.y2d7{bottom:386.610260px;}
.y2f3{bottom:386.610306px;}
.y255{bottom:386.749969px;}
.yd{bottom:386.785499px;}
.y57f{bottom:386.889307px;}
.y3d9{bottom:391.131333px;}
.y3e3{bottom:391.182333px;}
.y3ed{bottom:391.233333px;}
.y3f6{bottom:391.284329px;}
.y4dd{bottom:391.301719px;}
.y3f{bottom:393.211395px;}
.yb9{bottom:393.783325px;}
.y84{bottom:394.665344px;}
.y151{bottom:394.794342px;}
.y30a{bottom:395.502319px;}
.y1f1{bottom:395.979378px;}
.y122{bottom:395.985260px;}
.y233{bottom:395.985294px;}
.y207{bottom:395.985306px;}
.yed{bottom:395.988316px;}
.y194{bottom:396.124786px;}
.y274{bottom:396.124969px;}
.y47b{bottom:398.569769px;}
.y482{bottom:398.608019px;}
.y486{bottom:398.620769px;}
.y4fd{bottom:399.865799px;}
.y53d{bottom:401.500823px;}
.y57e{bottom:401.883307px;}
.y2b0{bottom:403.359024px;}
.y2d6{bottom:405.360260px;}
.y2f2{bottom:405.360306px;}
.y254{bottom:405.499969px;}
.y3d8{bottom:406.125333px;}
.y3e2{bottom:406.176333px;}
.y3ec{bottom:406.227333px;}
.y3f5{bottom:406.278329px;}
.y4dc{bottom:406.295719px;}
.yc{bottom:408.044999px;}
.y3e{bottom:411.961395px;}
.yb8{bottom:412.533325px;}
.y83{bottom:413.415344px;}
.y150{bottom:413.544342px;}
.y309{bottom:414.252319px;}
.y1f0{bottom:414.729378px;}
.y121{bottom:414.735260px;}
.y232{bottom:414.735294px;}
.y206{bottom:414.735306px;}
.yec{bottom:414.738316px;}
.y4fc{bottom:414.859799px;}
.y193{bottom:414.874786px;}
.y273{bottom:414.874969px;}
.y53c{bottom:416.494823px;}
.y57d{bottom:416.877307px;}
.y473{bottom:417.248523px;}
.y478{bottom:417.274021px;}
.y2af{bottom:418.353024px;}
.y3d7{bottom:421.119333px;}
.y3e1{bottom:421.170333px;}
.y3eb{bottom:421.221333px;}
.y3f4{bottom:421.272329px;}
.y4db{bottom:421.289719px;}
.y2d5{bottom:424.110260px;}
.y2f1{bottom:424.110306px;}
.y253{bottom:424.249969px;}
.y4fb{bottom:429.853799px;}
.y3d{bottom:430.711395px;}
.yb7{bottom:431.283325px;}
.y53b{bottom:431.488823px;}
.y57c{bottom:431.871307px;}
.y82{bottom:432.165344px;}
.y472{bottom:432.242523px;}
.y477{bottom:432.268021px;}
.y14f{bottom:432.294342px;}
.y308{bottom:433.002319px;}
.y2ae{bottom:433.347024px;}
.y1ef{bottom:433.479378px;}
.y120{bottom:433.485260px;}
.y231{bottom:433.485294px;}
.y358{bottom:433.485306px;}
.yeb{bottom:433.488316px;}
.y203{bottom:433.624786px;}
.y272{bottom:433.624969px;}
.y3d6{bottom:436.113333px;}
.y3e0{bottom:436.164333px;}
.y3ea{bottom:436.215333px;}
.y3f3{bottom:436.266329px;}
.y4da{bottom:436.283719px;}
.y2d4{bottom:442.860260px;}
.y2f0{bottom:442.860306px;}
.y252{bottom:442.999969px;}
.y4fa{bottom:444.847799px;}
.y53a{bottom:446.482823px;}
.y57b{bottom:446.865307px;}
.y471{bottom:447.236523px;}
.y476{bottom:447.262021px;}
.y3c{bottom:449.461395px;}
.yb6{bottom:450.033325px;}
.y81{bottom:450.915344px;}
.y14e{bottom:451.044342px;}
.y3d5{bottom:451.107333px;}
.y3df{bottom:451.158333px;}
.y3e9{bottom:451.209333px;}
.y3f2{bottom:451.260329px;}
.y4d9{bottom:451.277719px;}
.y307{bottom:451.752319px;}
.y2ad{bottom:452.064024px;}
.y1ee{bottom:452.229378px;}
.y11f{bottom:452.235260px;}
.y230{bottom:452.235294px;}
.y205{bottom:452.235306px;}
.yea{bottom:452.238316px;}
.y202{bottom:452.374786px;}
.y271{bottom:452.374969px;}
.y4f9{bottom:459.841799px;}
.y539{bottom:461.476823px;}
.y2d3{bottom:461.610260px;}
.y2ef{bottom:461.610306px;}
.y251{bottom:461.749969px;}
.y57a{bottom:461.859307px;}
.y470{bottom:462.230523px;}
.y475{bottom:462.256021px;}
.y47a{bottom:462.281519px;}
.y3d4{bottom:466.101333px;}
.y3de{bottom:466.152333px;}
.y3e8{bottom:466.203333px;}
.y3f1{bottom:466.254329px;}
.y3f9{bottom:466.292575px;}
.y2ac{bottom:467.058024px;}
.y3b{bottom:468.211395px;}
.yb5{bottom:468.783325px;}
.y80{bottom:469.665344px;}
.y14d{bottom:469.794342px;}
.y306{bottom:470.502319px;}
.y1ed{bottom:470.979378px;}
.y11e{bottom:470.985260px;}
.y22f{bottom:470.985294px;}
.y357{bottom:470.985306px;}
.ye9{bottom:470.988316px;}
.y201{bottom:471.124786px;}
.y270{bottom:471.124969px;}
.y1cb{bottom:474.440274px;}
.y4f8{bottom:474.835799px;}
.y538{bottom:476.470823px;}
.y579{bottom:476.853307px;}
.y46f{bottom:477.224523px;}
.y474{bottom:477.250021px;}
.y479{bottom:477.275519px;}
.y2d2{bottom:480.360260px;}
.y2ee{bottom:480.360306px;}
.y181{bottom:480.425461px;}
.y17b{bottom:480.425472px;}
.y178{bottom:480.425478px;}
.y173{bottom:480.425484px;}
.y16d{bottom:480.425509px;}
.y169{bottom:480.425532px;}
.y163{bottom:480.425538px;}
.y250{bottom:480.499969px;}
.y3d3{bottom:481.095333px;}
.y3dd{bottom:481.146333px;}
.y3e7{bottom:481.197333px;}
.y3f0{bottom:481.248329px;}
.y3f8{bottom:481.286575px;}
.y2ab{bottom:485.775024px;}
.y3a{bottom:486.961395px;}
.yb4{bottom:487.533325px;}
.y7f{bottom:488.415344px;}
.y14c{bottom:488.544342px;}
.y4d8{bottom:488.762719px;}
.y305{bottom:489.252319px;}
.y180{bottom:489.426961px;}
.y17c{bottom:489.426972px;}
.y177{bottom:489.426978px;}
.y174{bottom:489.426984px;}
.y16e{bottom:489.427009px;}
.y168{bottom:489.427032px;}
.y164{bottom:489.427038px;}
.y1ec{bottom:489.729378px;}
.y11d{bottom:489.735260px;}
.y22e{bottom:489.735294px;}
.y356{bottom:489.735306px;}
.ye8{bottom:489.738316px;}
.y4f7{bottom:489.829799px;}
.y26f{bottom:489.874969px;}
.y537{bottom:491.464823px;}
.y578{bottom:491.847307px;}
.y182{bottom:492.423211px;}
.y1ca{bottom:493.233774px;}
.y463{bottom:495.903274px;}
.y468{bottom:495.928772px;}
.y2d1{bottom:499.110260px;}
.y2ed{bottom:499.110306px;}
.y24f{bottom:499.249969px;}
.y3c8{bottom:499.761334px;}
.y2aa{bottom:500.769024px;}
.yb{bottom:502.864502px;}
.y4d7{bottom:503.756719px;}
.y4f6{bottom:504.823799px;}
.y39{bottom:505.711395px;}
.yb3{bottom:506.283325px;}
.y536{bottom:506.458823px;}
.y577{bottom:506.841307px;}
.y7e{bottom:507.165344px;}
.y14b{bottom:507.294342px;}
.y304{bottom:508.002319px;}
.y1c9{bottom:508.227774px;}
.y1eb{bottom:508.479378px;}
.y11c{bottom:508.485260px;}
.y22d{bottom:508.485294px;}
.y355{bottom:508.485306px;}
.ye7{bottom:508.488316px;}
.y26e{bottom:508.624969px;}
.y462{bottom:510.897274px;}
.y467{bottom:510.922772px;}
.y46c{bottom:510.948270px;}
.y3c7{bottom:514.755334px;}
.y204{bottom:515.590805px;}
.y2a9{bottom:515.763024px;}
.y2d0{bottom:517.860260px;}
.y2ec{bottom:517.860306px;}
.y24e{bottom:517.999969px;}
.y4f5{bottom:519.817799px;}
.ya{bottom:520.864502px;}
.y535{bottom:521.452823px;}
.y576{bottom:521.835307px;}
.y1c8{bottom:523.221774px;}
.y38{bottom:524.461395px;}
.yb2{bottom:525.033325px;}
.y461{bottom:525.891274px;}
.y7d{bottom:525.915344px;}
.y466{bottom:525.916772px;}
.y46b{bottom:525.942270px;}
.y14a{bottom:526.044342px;}
.y303{bottom:526.752319px;}
.y1ea{bottom:527.229378px;}
.y11b{bottom:527.235260px;}
.y22c{bottom:527.235294px;}
.y354{bottom:527.235306px;}
.ye6{bottom:527.238316px;}
.y26d{bottom:527.374969px;}
.y3c6{bottom:529.749334px;}
.y4d6{bottom:533.757469px;}
.y2a8{bottom:534.480024px;}
.y4f4{bottom:534.811799px;}
.y534{bottom:536.446823px;}
.y2cf{bottom:536.610260px;}
.y2eb{bottom:536.610306px;}
.y24d{bottom:536.749969px;}
.y575{bottom:536.829307px;}
.y1c7{bottom:538.215774px;}
.y9{bottom:538.864499px;}
.y460{bottom:540.885274px;}
.y465{bottom:540.910772px;}
.y46a{bottom:540.936270px;}
.y46e{bottom:540.949020px;}
.y37{bottom:543.211395px;}
.yb1{bottom:543.783325px;}
.y7c{bottom:544.665344px;}
.y3c5{bottom:544.743334px;}
.y149{bottom:544.794342px;}
.y302{bottom:545.502319px;}
.y1e9{bottom:545.979378px;}
.y11a{bottom:545.985260px;}
.y22b{bottom:545.985294px;}
.y353{bottom:545.985306px;}
.ye5{bottom:545.988316px;}
.y26c{bottom:546.124969px;}
.y4d5{bottom:548.751469px;}
.y2a7{bottom:549.474024px;}
.y4f3{bottom:549.805799px;}
.y533{bottom:551.440823px;}
.y574{bottom:551.823307px;}
.y1c6{bottom:553.209774px;}
.y2ce{bottom:555.360260px;}
.y2ea{bottom:555.360306px;}
.y24c{bottom:555.499969px;}
.y45f{bottom:555.879274px;}
.y464{bottom:555.904772px;}
.y469{bottom:555.930270px;}
.y46d{bottom:555.943020px;}
.y8{bottom:556.864499px;}
.y3c4{bottom:559.737334px;}
.y3d2{bottom:559.813830px;}
.y36{bottom:561.961395px;}
.yb0{bottom:562.533325px;}
.y7b{bottom:563.415344px;}
.y148{bottom:563.544342px;}
.y4d4{bottom:563.745469px;}
.y2a6{bottom:564.468024px;}
.y1e8{bottom:564.729378px;}
.y119{bottom:564.735260px;}
.y22a{bottom:564.735294px;}
.y376{bottom:564.735306px;}
.ye4{bottom:564.738316px;}
.y4f2{bottom:564.799799px;}
.y26b{bottom:564.874969px;}
.y532{bottom:566.434823px;}
.y573{bottom:566.817307px;}
.y1c5{bottom:568.203774px;}
.y2e9{bottom:574.110306px;}
.y24b{bottom:574.249969px;}
.y459{bottom:574.583524px;}
.y3c3{bottom:574.731334px;}
.y3d1{bottom:574.807830px;}
.y4f1{bottom:579.793799px;}
.y35{bottom:580.711395px;}
.yaf{bottom:581.283325px;}
.y531{bottom:581.428823px;}
.y572{bottom:581.811307px;}
.y7a{bottom:582.165344px;}
.y147{bottom:582.294342px;}
.y2a5{bottom:583.185024px;}
.y1c4{bottom:583.197774px;}
.y1e7{bottom:583.479378px;}
.y118{bottom:583.485260px;}
.y229{bottom:583.485294px;}
.y352{bottom:583.485306px;}
.ye3{bottom:583.488316px;}
.y26a{bottom:583.624969px;}
.y458{bottom:589.577524px;}
.y3c2{bottom:589.725334px;}
.y3d0{bottom:589.801830px;}
.y2e8{bottom:592.860306px;}
.y24a{bottom:592.999969px;}
.y4d3{bottom:593.746219px;}
.y4f0{bottom:594.787799px;}
.y530{bottom:596.422823px;}
.y571{bottom:596.805307px;}
.y2a4{bottom:598.179024px;}
.y1c3{bottom:598.191774px;}
.yae{bottom:600.033325px;}
.y79{bottom:600.915344px;}
.y146{bottom:601.044342px;}
.y1e6{bottom:602.229378px;}
.y117{bottom:602.235260px;}
.y228{bottom:602.235294px;}
.y375{bottom:602.235306px;}
.ye2{bottom:602.238316px;}
.y269{bottom:602.374969px;}
.y457{bottom:604.571524px;}
.y3b5{bottom:604.655586px;}
.y3c1{bottom:604.719334px;}
.y3cf{bottom:604.795830px;}
.y34a{bottom:605.586768px;}
.y4d2{bottom:608.740219px;}
.y4ef{bottom:609.781799px;}
.y52f{bottom:611.416823px;}
.y2e7{bottom:611.610306px;}
.y249{bottom:611.749969px;}
.y570{bottom:611.799307px;}
.y1c2{bottom:613.185774px;}
.y2a3{bottom:616.896024px;}
.yad{bottom:618.783325px;}
.y456{bottom:619.565524px;}
.y3b4{bottom:619.649586px;}
.y78{bottom:619.665344px;}
.y3c0{bottom:619.713334px;}
.y3ce{bottom:619.789830px;}
.y145{bottom:619.794342px;}
.y342{bottom:620.542518px;}
.y349{bottom:620.580768px;}
.y1e5{bottom:620.979378px;}
.y116{bottom:620.985260px;}
.y227{bottom:620.985294px;}
.y374{bottom:620.985306px;}
.ye1{bottom:620.988316px;}
.y268{bottom:621.124969px;}
.y4ee{bottom:624.775799px;}
.y52e{bottom:626.410823px;}
.y56f{bottom:626.793307px;}
.y1c1{bottom:628.179774px;}
.y2e6{bottom:630.360306px;}
.y248{bottom:630.499969px;}
.y2a2{bottom:631.890024px;}
.y455{bottom:634.559524px;}
.y3b3{bottom:634.643586px;}
.y3ba{bottom:634.681836px;}
.y3bf{bottom:634.707334px;}
.y3cd{bottom:634.783830px;}
.y341{bottom:635.536518px;}
.y348{bottom:635.574768px;}
.y34{bottom:636.961395px;}
.yac{bottom:637.533325px;}
.y77{bottom:638.415344px;}
.y144{bottom:638.544342px;}
.y4d1{bottom:638.740219px;}
.y1e4{bottom:639.729378px;}
.y115{bottom:639.735260px;}
.y226{bottom:639.735294px;}
.y373{bottom:639.735306px;}
.ye0{bottom:639.738316px;}
.y4ed{bottom:639.769799px;}
.y267{bottom:639.874969px;}
.y52d{bottom:641.404823px;}
.y56e{bottom:641.787307px;}
.y1c0{bottom:643.173774px;}
.y7{bottom:645.510000px;}
.y2a1{bottom:646.884024px;}
.y247{bottom:649.249969px;}
.y454{bottom:649.553524px;}
.y3b2{bottom:649.637586px;}
.y3b9{bottom:649.675836px;}
.y3be{bottom:649.701334px;}
.y3cc{bottom:649.777830px;}
.y340{bottom:650.530518px;}
.y347{bottom:650.568768px;}
.y4ec{bottom:654.763799px;}
.yab{bottom:656.283325px;}
.y52c{bottom:656.398823px;}
.y56d{bottom:656.781307px;}
.y76{bottom:657.165344px;}
.y143{bottom:657.294342px;}
.y1bf{bottom:658.167774px;}
.y1e3{bottom:658.479378px;}
.y114{bottom:658.485260px;}
.y225{bottom:658.485294px;}
.y372{bottom:658.485306px;}
.ydf{bottom:658.488316px;}
.y266{bottom:658.624969px;}
.y453{bottom:664.547524px;}
.y3ae{bottom:664.618836px;}
.y3b1{bottom:664.631586px;}
.y3b8{bottom:664.669836px;}
.y3bd{bottom:664.695334px;}
.y3cb{bottom:664.771830px;}
.y33f{bottom:665.524518px;}
.y346{bottom:665.562768px;}
.y2a0{bottom:665.601024px;}
.y6{bottom:666.771000px;}
.y2e5{bottom:667.860306px;}
.y246{bottom:667.999969px;}
.y4eb{bottom:669.757799px;}
.y52b{bottom:671.392823px;}
.y56c{bottom:671.775307px;}
.y4d0{bottom:672.809526px;}
.y1be{bottom:673.161774px;}
.y33{bottom:674.461395px;}
.yaa{bottom:675.033325px;}
.y75{bottom:675.915344px;}
.y142{bottom:676.044342px;}
.y1e2{bottom:677.229378px;}
.y113{bottom:677.235260px;}
.y224{bottom:677.235294px;}
.y371{bottom:677.235306px;}
.yde{bottom:677.238316px;}
.y265{bottom:677.374969px;}
.y452{bottom:679.541524px;}
.y3ad{bottom:679.612836px;}
.y3b0{bottom:679.625586px;}
.y3b7{bottom:679.663836px;}
.y3bc{bottom:679.689334px;}
.y3ca{bottom:679.765830px;}
.y33e{bottom:680.518518px;}
.y345{bottom:680.556768px;}
.y29f{bottom:680.595024px;}
.y4ea{bottom:684.751799px;}
.y52a{bottom:686.386823px;}
.y245{bottom:686.749969px;}
.y56b{bottom:686.769307px;}
.y4cf{bottom:687.803526px;}
.y1bd{bottom:688.155774px;}
.y32{bottom:693.211395px;}
.ya9{bottom:693.783325px;}
.y451{bottom:694.535524px;}
.y3ac{bottom:694.606836px;}
.y3af{bottom:694.619586px;}
.y3b6{bottom:694.657836px;}
.y74{bottom:694.665344px;}
.y3bb{bottom:694.683334px;}
.y3c9{bottom:694.759830px;}
.y141{bottom:694.794342px;}
.y33d{bottom:695.512518px;}
.y344{bottom:695.550768px;}
.y29e{bottom:695.589024px;}
.y1e1{bottom:695.979378px;}
.y112{bottom:695.985260px;}
.y223{bottom:695.985294px;}
.y370{bottom:695.985306px;}
.ydd{bottom:695.988316px;}
.y264{bottom:696.124969px;}
.y4e9{bottom:699.745799px;}
.y529{bottom:701.380823px;}
.y56a{bottom:701.763307px;}
.y4ce{bottom:702.797526px;}
.y1bc{bottom:703.149774px;}
.y2cd{bottom:705.360260px;}
.y450{bottom:709.529524px;}
.y33c{bottom:710.506518px;}
.y343{bottom:710.544768px;}
.y31{bottom:711.961395px;}
.ya8{bottom:712.533325px;}
.y397{bottom:713.209086px;}
.y73{bottom:713.415344px;}
.y140{bottom:713.544342px;}
.y29d{bottom:714.306024px;}
.y1e0{bottom:714.729378px;}
.y111{bottom:714.735260px;}
.y222{bottom:714.735294px;}
.y36f{bottom:714.735306px;}
.ydc{bottom:714.738316px;}
.y244{bottom:714.874969px;}
.y528{bottom:716.374823px;}
.y569{bottom:716.757307px;}
.y1bb{bottom:718.143774px;}
.y2cc{bottom:724.110260px;}
.y44f{bottom:724.523524px;}
.y5{bottom:726.298500px;}
.y396{bottom:728.203086px;}
.y3a2{bottom:728.266836px;}
.y335{bottom:729.261772px;}
.y29c{bottom:729.300024px;}
.y30{bottom:730.711395px;}
.ya7{bottom:731.283325px;}
.y527{bottom:731.368823px;}
.y568{bottom:731.751307px;}
.y72{bottom:732.165344px;}
.y13f{bottom:732.294342px;}
.y1ba{bottom:733.137774px;}
.y1df{bottom:733.479378px;}
.y110{bottom:733.485260px;}
.y221{bottom:733.485294px;}
.y36e{bottom:733.485306px;}
.ydb{bottom:733.488316px;}
.y243{bottom:733.624969px;}
.y447{bottom:739.479274px;}
.y44e{bottom:739.517524px;}
.y2cb{bottom:742.860260px;}
.y395{bottom:743.197086px;}
.y3a1{bottom:743.260836px;}
.y334{bottom:744.255772px;}
.y29b{bottom:744.294024px;}
.y526{bottom:746.362823px;}
.y567{bottom:746.745307px;}
.y2f{bottom:749.461395px;}
.ya6{bottom:750.033325px;}
.y71{bottom:750.915344px;}
.y13e{bottom:751.044342px;}
.y1b7{bottom:751.842024px;}
.y1de{bottom:752.229378px;}
.y10f{bottom:752.235260px;}
.y220{bottom:752.235294px;}
.y36d{bottom:752.235306px;}
.yda{bottom:752.238316px;}
.y242{bottom:752.374969px;}
.y3{bottom:752.599495px;}
.y446{bottom:754.473274px;}
.y44d{bottom:754.511524px;}
.y394{bottom:758.191086px;}
.y3a0{bottom:758.254836px;}
.y3ab{bottom:758.318586px;}
.y333{bottom:759.249772px;}
.y33b{bottom:759.288018px;}
.y525{bottom:761.356823px;}
.y2ca{bottom:761.610260px;}
.y566{bottom:761.739307px;}
.y29a{bottom:763.011024px;}
.y1b6{bottom:766.836024px;}
.y1b9{bottom:766.848774px;}
.y2e{bottom:768.211395px;}
.ya5{bottom:768.783325px;}
.y445{bottom:769.467274px;}
.y4c6{bottom:769.480023px;}
.y44c{bottom:769.505524px;}
.y4cd{bottom:769.518273px;}
.y70{bottom:769.665344px;}
.y13d{bottom:769.794342px;}
.y1dd{bottom:770.979378px;}
.y10e{bottom:770.985260px;}
.y21f{bottom:770.985294px;}
.y36c{bottom:770.985306px;}
.yd9{bottom:770.988316px;}
.y241{bottom:771.124969px;}
.y38b{bottom:773.146841px;}
.y393{bottom:773.185086px;}
.y39f{bottom:773.248836px;}
.y3aa{bottom:773.312586px;}
.y332{bottom:774.243772px;}
.y33a{bottom:774.282018px;}
.y524{bottom:776.350823px;}
.y565{bottom:776.733307px;}
.y299{bottom:778.005024px;}
.y2c9{bottom:780.360260px;}
.y1b5{bottom:781.830024px;}
.y1b8{bottom:781.842774px;}
.y4c0{bottom:784.448525px;}
.y444{bottom:784.461274px;}
.y4c5{bottom:784.474023px;}
.y44b{bottom:784.499524px;}
.y4cc{bottom:784.512273px;}
.y45d{bottom:784.601524px;}
.y2d{bottom:786.961395px;}
.ya4{bottom:787.533325px;}
.y38a{bottom:788.140841px;}
.y392{bottom:788.179086px;}
.y39e{bottom:788.242836px;}
.y3a9{bottom:788.306586px;}
.y6f{bottom:788.415344px;}
.y13c{bottom:788.544342px;}
.y331{bottom:789.237772px;}
.y339{bottom:789.276018px;}
.y1dc{bottom:789.729378px;}
.y10d{bottom:789.735260px;}
.y21e{bottom:789.735294px;}
.y36b{bottom:789.735306px;}
.yd8{bottom:789.738316px;}
.y240{bottom:789.874969px;}
.y183{bottom:790.275961px;}
.y17e{bottom:790.275967px;}
.y17d{bottom:790.275972px;}
.y179{bottom:790.275978px;}
.y175{bottom:790.275984px;}
.y170{bottom:790.276007px;}
.y16f{bottom:790.276009px;}
.y16a{bottom:790.276032px;}
.y165{bottom:790.276038px;}
.y523{bottom:791.344823px;}
.y564{bottom:791.727307px;}
.y298{bottom:796.722024px;}
.y2c8{bottom:799.110260px;}
.y184{bottom:799.277461px;}
.y171{bottom:799.277507px;}
.y16b{bottom:799.277532px;}
.y166{bottom:799.277538px;}
.y4bb{bottom:799.429775px;}
.y4bf{bottom:799.442525px;}
.y443{bottom:799.455274px;}
.y4c4{bottom:799.468023px;}
.y44a{bottom:799.493524px;}
.y4cb{bottom:799.506273px;}
.y45c{bottom:799.595524px;}
.y1b4{bottom:800.547024px;}
.y383{bottom:803.109341px;}
.y389{bottom:803.134841px;}
.y391{bottom:803.173086px;}
.y39d{bottom:803.236836px;}
.y3a8{bottom:803.300586px;}
.y330{bottom:804.231772px;}
.y338{bottom:804.270018px;}
.y2c{bottom:805.711395px;}
.ya3{bottom:806.283325px;}
.y522{bottom:806.338823px;}
.y563{bottom:806.721307px;}
.y6e{bottom:807.165344px;}
.y13b{bottom:807.294342px;}
.y1db{bottom:808.479378px;}
.y10c{bottom:808.485260px;}
.y21d{bottom:808.485294px;}
.y36a{bottom:808.485306px;}
.yd7{bottom:808.488316px;}
.y297{bottom:811.716024px;}
.y4ba{bottom:814.423775px;}
.y4be{bottom:814.436525px;}
.y442{bottom:814.449274px;}
.y4c3{bottom:814.462023px;}
.y449{bottom:814.487524px;}
.y4ca{bottom:814.500273px;}
.y45b{bottom:814.589524px;}
.y2c7{bottom:817.860260px;}
.y382{bottom:818.103341px;}
.y388{bottom:818.128841px;}
.y390{bottom:818.167086px;}
.y39c{bottom:818.230836px;}
.y3a7{bottom:818.294586px;}
.y32f{bottom:819.225772px;}
.y337{bottom:819.264018px;}
.y1b3{bottom:819.264024px;}
.y521{bottom:821.332823px;}
.y562{bottom:821.715307px;}
.y2b{bottom:824.461395px;}
.ya2{bottom:825.033325px;}
.y6d{bottom:825.915344px;}
.y13a{bottom:826.044342px;}
.y296{bottom:826.710024px;}
.y1da{bottom:827.229378px;}
.y10b{bottom:827.235260px;}
.y21c{bottom:827.235294px;}
.y369{bottom:827.235306px;}
.yd6{bottom:827.238316px;}
.y4b9{bottom:829.417775px;}
.y4bd{bottom:829.430525px;}
.y441{bottom:829.443274px;}
.y4c2{bottom:829.456023px;}
.y448{bottom:829.481524px;}
.y4c9{bottom:829.494273px;}
.y45a{bottom:829.583524px;}
.y45e{bottom:829.596274px;}
.y381{bottom:833.097341px;}
.y387{bottom:833.122841px;}
.y38f{bottom:833.161086px;}
.y39b{bottom:833.224836px;}
.y3a6{bottom:833.288586px;}
.y32e{bottom:834.219772px;}
.y336{bottom:834.258018px;}
.y520{bottom:836.326823px;}
.y2c6{bottom:836.610260px;}
.y561{bottom:836.709307px;}
.y1b2{bottom:837.981024px;}
.y2a{bottom:843.211395px;}
.ya1{bottom:843.783325px;}
.y4b8{bottom:844.411775px;}
.y4bc{bottom:844.424525px;}
.y4c1{bottom:844.450023px;}
.y4c7{bottom:844.475523px;}
.y4c8{bottom:844.488273px;}
.y6c{bottom:844.665344px;}
.y139{bottom:844.794342px;}
.y295{bottom:845.427024px;}
.y1d9{bottom:845.979378px;}
.y10a{bottom:845.985260px;}
.y21b{bottom:845.985294px;}
.y368{bottom:845.985306px;}
.yd5{bottom:845.988316px;}
.y380{bottom:848.091341px;}
.y386{bottom:848.116841px;}
.y43c{bottom:848.134774px;}
.y38e{bottom:848.155086px;}
.y39a{bottom:848.218836px;}
.y3a5{bottom:848.282586px;}
.y51f{bottom:851.320823px;}
.y560{bottom:851.703307px;}
.y289{bottom:852.898524px;}
.y32d{bottom:852.936772px;}
.y2c5{bottom:855.360260px;}
.y1b1{bottom:856.698024px;}
.y294{bottom:860.421024px;}
.y29{bottom:861.961395px;}
.ya0{bottom:862.533325px;}
.y37f{bottom:863.085341px;}
.y385{bottom:863.110841px;}
.y43b{bottom:863.128774px;}
.y38d{bottom:863.149086px;}
.y4ad{bottom:863.154275px;}
.y4b3{bottom:863.179775px;}
.y399{bottom:863.212836px;}
.y3a4{bottom:863.276586px;}
.y6b{bottom:863.415344px;}
.y138{bottom:863.544342px;}
.y1d8{bottom:864.729378px;}
.y109{bottom:864.735260px;}
.y21a{bottom:864.735294px;}
.y367{bottom:864.735306px;}
.yd4{bottom:864.738316px;}
.y51e{bottom:866.314823px;}
.y55f{bottom:866.697307px;}
.y288{bottom:867.892524px;}
.y327{bottom:867.905274px;}
.y32c{bottom:867.930772px;}
.y2c4{bottom:874.110260px;}
.y1b0{bottom:875.415024px;}
.y37e{bottom:878.079341px;}
.y384{bottom:878.104841px;}
.y43a{bottom:878.122774px;}
.y38c{bottom:878.143086px;}
.y4ac{bottom:878.148275px;}
.y4b2{bottom:878.173775px;}
.y398{bottom:878.206836px;}
.y3a3{bottom:878.270586px;}
.y293{bottom:879.138024px;}
.y2{bottom:879.369000px;}
.y9f{bottom:881.283325px;}
.y51d{bottom:881.308823px;}
.y55e{bottom:881.691307px;}
.y6a{bottom:882.165344px;}
.y137{bottom:882.294342px;}
.y326{bottom:882.899274px;}
.y32b{bottom:882.924772px;}
.y1d7{bottom:883.479378px;}
.y108{bottom:883.485260px;}
.y219{bottom:883.485294px;}
.y366{bottom:883.485306px;}
.yd3{bottom:883.488316px;}
.y287{bottom:886.686024px;}
.y1af{bottom:890.409024px;}
.y2c3{bottom:892.860260px;}
.y439{bottom:893.116774px;}
.y4ab{bottom:893.142275px;}
.y4b1{bottom:893.167775px;}
.y4b7{bottom:893.193275px;}
.y292{bottom:894.132024px;}
.y51c{bottom:896.302823px;}
.y55d{bottom:896.685307px;}
.y325{bottom:897.893274px;}
.y32a{bottom:897.918772px;}
.y9e{bottom:900.033325px;}
.y69{bottom:900.915344px;}
.y136{bottom:901.044342px;}
.y286{bottom:901.680024px;}
.y1d6{bottom:902.229378px;}
.y107{bottom:902.235260px;}
.y218{bottom:902.235294px;}
.y365{bottom:902.235306px;}
.yd2{bottom:902.238316px;}
.y1ae{bottom:905.403024px;}
.y28{bottom:906.144153px;}
.y37d{bottom:906.167591px;}
.y433{bottom:908.085276px;}
.y438{bottom:908.110774px;}
.y4aa{bottom:908.136275px;}
.y4b0{bottom:908.161775px;}
.y4b6{bottom:908.187275px;}
.y291{bottom:909.126024px;}
.y51b{bottom:911.296823px;}
.y2c2{bottom:911.610260px;}
.y55c{bottom:911.679307px;}
.y324{bottom:912.887274px;}
.y329{bottom:912.912772px;}
.y9d{bottom:918.783325px;}
.y68{bottom:919.665344px;}
.y135{bottom:919.794342px;}
.y1ad{bottom:920.397024px;}
.y1d5{bottom:920.979378px;}
.y106{bottom:920.985260px;}
.y217{bottom:920.985294px;}
.y364{bottom:920.985306px;}
.yd1{bottom:920.988316px;}
.y27{bottom:921.138153px;}
.y37c{bottom:921.161591px;}
.y432{bottom:923.079276px;}
.y437{bottom:923.104774px;}
.y4a9{bottom:923.130275px;}
.y4af{bottom:923.155775px;}
.y4b5{bottom:923.181275px;}
.y51a{bottom:926.290823px;}
.y55b{bottom:926.673307px;}
.y290{bottom:927.843024px;}
.y323{bottom:927.881274px;}
.y328{bottom:927.906772px;}
.y2c1{bottom:930.360260px;}
.y1ac{bottom:935.391024px;}
.y9c{bottom:937.533325px;}
.y431{bottom:938.073276px;}
.y436{bottom:938.098774px;}
.y4a8{bottom:938.124275px;}
.y43f{bottom:938.149770px;}
.y4ae{bottom:938.149775px;}
.y4b4{bottom:938.175275px;}
.y67{bottom:938.415344px;}
.y134{bottom:938.544342px;}
.y285{bottom:939.114024px;}
.y1d4{bottom:939.729378px;}
.y105{bottom:939.735260px;}
.y216{bottom:939.735294px;}
.y363{bottom:939.735306px;}
.yd0{bottom:939.738316px;}
.y519{bottom:941.284823px;}
.y55a{bottom:941.667307px;}
.y28f{bottom:942.837024px;}
.y31b{bottom:946.560024px;}
.y322{bottom:946.598274px;}
.y2c0{bottom:949.110260px;}
.y430{bottom:953.067276px;}
.y435{bottom:953.092774px;}
.y43e{bottom:953.143770px;}
.y1ab{bottom:954.108024px;}
.y37b{bottom:955.299133px;}
.y518{bottom:956.278823px;}
.y9b{bottom:956.283325px;}
.y559{bottom:956.661307px;}
.y495{bottom:956.752027px;}
.y66{bottom:957.165344px;}
.y133{bottom:957.294342px;}
.y28e{bottom:957.831024px;}
.y1d3{bottom:958.479378px;}
.y104{bottom:958.485260px;}
.y215{bottom:958.485294px;}
.y362{bottom:958.485306px;}
.ycf{bottom:958.488316px;}
.y31a{bottom:961.554024px;}
.y321{bottom:961.592274px;}
.y26{bottom:963.738190px;}
.y1{bottom:966.726000px;}
.y2bf{bottom:967.860260px;}
.y42f{bottom:968.061276px;}
.y434{bottom:968.086774px;}
.y43d{bottom:968.137770px;}
.y440{bottom:968.150520px;}
.y517{bottom:971.272823px;}
.y558{bottom:971.655307px;}
.y494{bottom:971.746027px;}
.y49e{bottom:971.797027px;}
.y1aa{bottom:972.825024px;}
.y9a{bottom:975.033325px;}
.y65{bottom:975.915344px;}
.y132{bottom:976.044342px;}
.y28d{bottom:976.548024px;}
.y320{bottom:976.586274px;}
.y1d2{bottom:977.229378px;}
.y103{bottom:977.235260px;}
.y214{bottom:977.235294px;}
.y361{bottom:977.235306px;}
.yce{bottom:977.238316px;}
.y596{bottom:985.144844px;}
.y516{bottom:986.266823px;}
.y2be{bottom:986.610260px;}
.y557{bottom:986.649307px;}
.y493{bottom:986.740027px;}
.y428{bottom:986.752777px;}
.y42d{bottom:986.778275px;}
.y49d{bottom:986.791027px;}
.y4a3{bottom:986.816527px;}
.y284{bottom:987.819024px;}
.y1a9{bottom:991.542024px;}
.y31f{bottom:991.580274px;}
.y37a{bottom:992.799133px;}
.y99{bottom:993.783325px;}
.y64{bottom:994.665344px;}
.y131{bottom:994.794342px;}
.y1d1{bottom:995.979378px;}
.y102{bottom:995.985260px;}
.y213{bottom:995.985294px;}
.y360{bottom:995.985306px;}
.ycd{bottom:995.988316px;}
.y595{bottom:1000.138844px;}
.y515{bottom:1001.260823px;}
.y556{bottom:1001.643307px;}
.y492{bottom:1001.734027px;}
.y427{bottom:1001.746777px;}
.y42c{bottom:1001.772275px;}
.y49c{bottom:1001.785027px;}
.y4a2{bottom:1001.810527px;}
.y4a7{bottom:1001.836025px;}
.y2bd{bottom:1005.360260px;}
.y1a8{bottom:1006.536024px;}
.y31e{bottom:1006.574274px;}
.y25{bottom:1008.424622px;}
.y98{bottom:1012.533325px;}
.y63{bottom:1013.415344px;}
.y130{bottom:1013.544342px;}
.y1d0{bottom:1014.729378px;}
.y101{bottom:1014.735260px;}
.y212{bottom:1014.735294px;}
.y35f{bottom:1014.735306px;}
.ycc{bottom:1014.738316px;}
.y594{bottom:1015.132844px;}
.y514{bottom:1016.254823px;}
.y555{bottom:1016.637307px;}
.y423{bottom:1016.728027px;}
.y426{bottom:1016.740777px;}
.y42b{bottom:1016.766275px;}
.y498{bottom:1016.766277px;}
.y49b{bottom:1016.779027px;}
.y4a1{bottom:1016.804527px;}
.y4a6{bottom:1016.830025px;}
.y1a7{bottom:1021.530024px;}
.y31d{bottom:1021.568274px;}
.y34b{bottom:1024.110260px;}
.y593{bottom:1030.126844px;}
.y513{bottom:1031.248823px;}
.y97{bottom:1031.283325px;}
.y554{bottom:1031.631307px;}
.y422{bottom:1031.722027px;}
.y425{bottom:1031.734777px;}
.y42a{bottom:1031.760275px;}
.y497{bottom:1031.760277px;}
.y49a{bottom:1031.773027px;}
.y4a0{bottom:1031.798527px;}
.y4a5{bottom:1031.824025px;}
.y62{bottom:1032.165344px;}
.y12f{bottom:1032.294342px;}
.y1cf{bottom:1033.479378px;}
.y100{bottom:1033.485260px;}
.y211{bottom:1033.485294px;}
.y35e{bottom:1033.485306px;}
.ycb{bottom:1033.488316px;}
.y1a6{bottom:1036.524024px;}
.y31c{bottom:1036.562274px;}
.y592{bottom:1045.120844px;}
.y512{bottom:1046.242823px;}
.y553{bottom:1046.625307px;}
.y421{bottom:1046.716027px;}
.y424{bottom:1046.728777px;}
.y429{bottom:1046.754275px;}
.y496{bottom:1046.754277px;}
.y499{bottom:1046.767027px;}
.y42e{bottom:1046.779773px;}
.y49f{bottom:1046.792527px;}
.y4a4{bottom:1046.818025px;}
.y283{bottom:1049.618274px;}
.y96{bottom:1050.033325px;}
.y379{bottom:1050.915260px;}
.y61{bottom:1050.915344px;}
.y12e{bottom:1051.044342px;}
.y1ce{bottom:1052.229378px;}
.yff{bottom:1052.235260px;}
.y210{bottom:1052.235294px;}
.y35d{bottom:1052.235306px;}
.yca{bottom:1052.238316px;}
.y591{bottom:1060.114844px;}
.y511{bottom:1061.236823px;}
.y552{bottom:1061.619307px;}
.y1a5{bottom:1064.612274px;}
.y420{bottom:1069.283527px;}
.y378{bottom:1069.665260px;}
.y60{bottom:1069.665344px;}
.y1cd{bottom:1070.979378px;}
.yfe{bottom:1070.985260px;}
.y20f{bottom:1070.985294px;}
.y35c{bottom:1070.985306px;}
.yc9{bottom:1070.988316px;}
.y590{bottom:1075.108844px;}
.y598{bottom:1075.147090px;}
.y24{bottom:1076.132080px;}
.y510{bottom:1076.230823px;}
.y551{bottom:1076.613307px;}
.y41f{bottom:1084.277527px;}
.y95{bottom:1087.533325px;}
.y377{bottom:1088.415260px;}
.y5f{bottom:1088.415344px;}
.y12d{bottom:1088.544342px;}
.y1cc{bottom:1089.729378px;}
.yfd{bottom:1089.735260px;}
.y20e{bottom:1089.735294px;}
.y35b{bottom:1089.735306px;}
.yc8{bottom:1089.738316px;}
.y1a4{bottom:1090.102844px;}
.y597{bottom:1090.141090px;}
.y50f{bottom:1091.224823px;}
.y550{bottom:1091.607307px;}
.y23{bottom:1109.586556px;}
.y22{bottom:1126.582306px;}
.y5e{bottom:1127.482361px;}
.y94{bottom:1127.482544px;}
.h16{height:25.204199px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.hc{height:33.840000px;}
.h14{height:36.006000px;}
.h15{height:36.855469px;}
.h12{height:42.360000px;}
.hd{height:44.676000px;}
.h19{height:45.186000px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h1c{height:52.173000px;}
.h13{height:53.160000px;}
.h1a{height:53.652000px;}
.h2{height:55.152000px;}
.he{height:55.461000px;}
.h18{height:59.004000px;}
.h11{height:59.340000px;}
.h1b{height:61.380000px;}
.h10{height:64.866000px;}
.h17{height:71.208000px;}
.h5{height:78.132000px;}
.hf{height:85.056000px;}
.h1d{height:95.982000px;}
.h4{height:119.055004px;}
.ha{height:1186.299000px;}
.hb{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x7{left:85.181849px;}
.xb{left:93.543303px;}
.xa{left:97.796100px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x37{left:110.485645px;}
.xd{left:111.588455px;}
.x38{left:138.153145px;}
.xe{left:139.676705px;}
.x39{left:153.147145px;}
.xf{left:154.670705px;}
.x54{left:163.515923px;}
.x3a{left:168.141145px;}
.x10{left:169.664705px;}
.x4b{left:172.912652px;}
.x4c{left:181.914154px;}
.x3b{left:183.135145px;}
.x11{left:184.658705px;}
.x4e{left:191.004911px;}
.x3c{left:198.129145px;}
.x12{left:199.652705px;}
.x4{left:203.484001px;}
.x44{left:207.044402px;}
.x3d{left:213.123145px;}
.x13{left:214.646705px;}
.x3e{left:231.916645px;}
.x14{left:233.350955px;}
.x3f{left:246.910645px;}
.x15{left:248.344955px;}
.x41{left:251.452758px;}
.x16{left:263.338955px;}
.x51{left:267.007649px;}
.x4d{left:268.983918px;}
.x55{left:276.021923px;}
.x17{left:278.332955px;}
.x18{left:293.326955px;}
.x19{left:308.320955px;}
.x45{left:313.596128px;}
.x1a{left:323.314955px;}
.x1b{left:338.308955px;}
.x1c{left:357.013207px;}
.x1d{left:372.007207px;}
.x1e{left:387.001207px;}
.x42{left:395.081508px;}
.x1f{left:401.995207px;}
.x20{left:416.989207px;}
.x21{left:435.680709px;}
.x46{left:443.990378px;}
.x4f{left:447.407411px;}
.x22{left:450.674709px;}
.x3{left:454.959000px;}
.x50{left:456.408911px;}
.x8{left:459.215389px;}
.x23{left:465.668709px;}
.x56{left:469.936668px;}
.x9{left:476.225401px;}
.x57{left:478.938168px;}
.x24{left:480.662709px;}
.x5a{left:484.726640px;}
.x25{left:495.656709px;}
.x26{left:514.360961px;}
.x27{left:529.354961px;}
.x40{left:538.493526px;}
.x28{left:544.348961px;}
.x29{left:559.342961px;}
.x47{left:565.383128px;}
.x48{left:574.384628px;}
.x2a{left:578.059961px;}
.x52{left:585.273149px;}
.x2b{left:593.053961px;}
.x58{left:594.287413px;}
.x2c{left:608.047961px;}
.x2d{left:623.041961px;}
.x2e{left:641.758961px;}
.x2f{left:656.752961px;}
.x30{left:671.746961px;}
.x31{left:686.740961px;}
.x49{left:695.777378px;}
.x32{left:701.734961px;}
.x4a{left:704.778878px;}
.x53{left:709.929899px;}
.x33{left:716.728961px;}
.x59{left:718.944163px;}
.x5{left:728.220612px;}
.x34{left:731.722961px;}
.x35{left:746.716961px;}
.x36{left:761.710961px;}
.x43{left:804.265686px;}
.xc{left:810.321716px;}
@media print{
.v2{vertical-align:-18.133341pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.v3{vertical-align:53.312000pt;}
.ls41{letter-spacing:-1.450667pt;}
.ls55{letter-spacing:-1.224000pt;}
.ls4b{letter-spacing:-1.120000pt;}
.ls4e{letter-spacing:-0.693333pt;}
.ls79{letter-spacing:-0.453333pt;}
.ls1b{letter-spacing:-0.426667pt;}
.ls2a{letter-spacing:-0.373333pt;}
.ls2c{letter-spacing:-0.320000pt;}
.ls6b{letter-spacing:-0.317333pt;}
.ls6f{letter-spacing:-0.272000pt;}
.ls2d{letter-spacing:-0.266667pt;}
.ls6d{letter-spacing:-0.226667pt;}
.ls19{letter-spacing:-0.213333pt;}
.ls6c{letter-spacing:-0.181333pt;}
.ls1a{letter-spacing:-0.160000pt;}
.ls6e{letter-spacing:-0.136000pt;}
.ls2b{letter-spacing:-0.106667pt;}
.ls70{letter-spacing:-0.090667pt;}
.ls18{letter-spacing:-0.053333pt;}
.ls71{letter-spacing:-0.045333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.000033pt;}
.ls2{letter-spacing:0.000035pt;}
.ls23{letter-spacing:0.026667pt;}
.ls5c{letter-spacing:0.045333pt;}
.ls21{letter-spacing:0.053333pt;}
.ls73{letter-spacing:0.068000pt;}
.ls5e{letter-spacing:0.090667pt;}
.ls6{letter-spacing:0.106667pt;}
.ls72{letter-spacing:0.113333pt;}
.ls51{letter-spacing:0.133333pt;}
.ls59{letter-spacing:0.136000pt;}
.ls57{letter-spacing:0.158667pt;}
.ls17{letter-spacing:0.158926pt;}
.ls4{letter-spacing:0.160000pt;}
.ls5a{letter-spacing:0.181333pt;}
.ls29{letter-spacing:0.186667pt;}
.ls67{letter-spacing:0.204000pt;}
.ls3{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.226667pt;}
.ls58{letter-spacing:0.234667pt;}
.ls28{letter-spacing:0.240000pt;}
.ls5f{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.266667pt;}
.ls66{letter-spacing:0.272000pt;}
.ls31{letter-spacing:0.293333pt;}
.ls5d{letter-spacing:0.317333pt;}
.ls14{letter-spacing:0.320000pt;}
.ls52{letter-spacing:0.346667pt;}
.ls2e{letter-spacing:0.357333pt;}
.ls75{letter-spacing:0.362667pt;}
.ls9{letter-spacing:0.373333pt;}
.ls15{letter-spacing:0.400000pt;}
.ls5b{letter-spacing:0.408000pt;}
.ls12{letter-spacing:0.426667pt;}
.lse{letter-spacing:0.453333pt;}
.ls5{letter-spacing:0.480000pt;}
.ls62{letter-spacing:0.498667pt;}
.ls32{letter-spacing:0.506667pt;}
.ls7{letter-spacing:0.533333pt;}
.ls63{letter-spacing:0.544000pt;}
.ls4c{letter-spacing:0.560000pt;}
.ls1f{letter-spacing:0.586667pt;}
.ls69{letter-spacing:0.589333pt;}
.ls53{letter-spacing:0.613333pt;}
.ls60{letter-spacing:0.634667pt;}
.lsc{letter-spacing:0.640000pt;}
.ls47{letter-spacing:0.666667pt;}
.ls65{letter-spacing:0.680000pt;}
.lsb{letter-spacing:0.693333pt;}
.ls42{letter-spacing:0.720000pt;}
.ls61{letter-spacing:0.725333pt;}
.ls11{letter-spacing:0.746667pt;}
.ls68{letter-spacing:0.770667pt;}
.ls27{letter-spacing:0.773333pt;}
.ls13{letter-spacing:0.800000pt;}
.ls74{letter-spacing:0.816000pt;}
.ls33{letter-spacing:0.826667pt;}
.ls25{letter-spacing:0.853333pt;}
.ls56{letter-spacing:0.861333pt;}
.ls40{letter-spacing:0.880000pt;}
.ls24{letter-spacing:0.906667pt;}
.lsa{letter-spacing:0.933333pt;}
.ls10{letter-spacing:0.960000pt;}
.ls3e{letter-spacing:0.986667pt;}
.ls76{letter-spacing:0.997333pt;}
.ls20{letter-spacing:1.013333pt;}
.ls3a{letter-spacing:1.040000pt;}
.ls1e{letter-spacing:1.066667pt;}
.ls34{letter-spacing:1.093333pt;}
.ls26{letter-spacing:1.120000pt;}
.ls6a{letter-spacing:1.133333pt;}
.ls2f{letter-spacing:1.173333pt;}
.ls39{letter-spacing:1.200000pt;}
.ls35{letter-spacing:1.226667pt;}
.ls1c{letter-spacing:1.280000pt;}
.ls44{letter-spacing:1.306667pt;}
.ls30{letter-spacing:1.333333pt;}
.lsd{letter-spacing:1.344000pt;}
.ls3c{letter-spacing:1.360000pt;}
.lsf{letter-spacing:1.386667pt;}
.ls54{letter-spacing:1.413333pt;}
.ls1d{letter-spacing:1.440000pt;}
.ls22{letter-spacing:1.493333pt;}
.ls43{letter-spacing:1.546667pt;}
.ls38{letter-spacing:1.600000pt;}
.ls4d{letter-spacing:1.626667pt;}
.ls36{letter-spacing:1.653333pt;}
.ls37{letter-spacing:1.680000pt;}
.ls50{letter-spacing:1.706667pt;}
.ls45{letter-spacing:1.760000pt;}
.ls46{letter-spacing:1.786667pt;}
.ls3d{letter-spacing:1.813333pt;}
.ls49{letter-spacing:1.866667pt;}
.ls4f{letter-spacing:2.026667pt;}
.ls3b{letter-spacing:2.080000pt;}
.ls64{letter-spacing:2.239460pt;}
.ls48{letter-spacing:2.240000pt;}
.ls4a{letter-spacing:2.453333pt;}
.ls1{letter-spacing:3.546667pt;}
.ls78{letter-spacing:3.839733pt;}
.ls77{letter-spacing:4.184267pt;}
.ws89{word-spacing:-14.346667pt;}
.ws7{word-spacing:-14.293333pt;}
.wsa1{word-spacing:-14.186667pt;}
.ws63{word-spacing:-14.160000pt;}
.ws87{word-spacing:-14.000000pt;}
.ws4b{word-spacing:-13.866667pt;}
.ws4c{word-spacing:-13.626667pt;}
.ws7a{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.546667pt;}
.ws4a{word-spacing:-13.440000pt;}
.ws88{word-spacing:-13.333333pt;}
.wsab{word-spacing:-13.184000pt;}
.ws20{word-spacing:-13.013333pt;}
.ws64{word-spacing:-12.928000pt;}
.ws8a{word-spacing:-12.213333pt;}
.wsac{word-spacing:-11.560000pt;}
.wsc4{word-spacing:-11.514667pt;}
.wsaa{word-spacing:-11.424000pt;}
.wsc3{word-spacing:-11.378667pt;}
.ws74{word-spacing:-11.333333pt;}
.wsc6{word-spacing:-11.106667pt;}
.ws86{word-spacing:-11.088000pt;}
.ws3{word-spacing:-11.040000pt;}
.wsc5{word-spacing:-11.016000pt;}
.ws4{word-spacing:-10.986667pt;}
.wsc7{word-spacing:-10.880000pt;}
.ws5{word-spacing:-10.240000pt;}
.wsa7{word-spacing:-10.109333pt;}
.wsa9{word-spacing:-9.565333pt;}
.ws6b{word-spacing:-9.333333pt;}
.ws2{word-spacing:-8.885333pt;}
.ws8{word-spacing:-7.933333pt;}
.ws6a{word-spacing:-5.666667pt;}
.ws8c{word-spacing:-1.760000pt;}
.ws81{word-spacing:-1.600000pt;}
.ws80{word-spacing:-1.493333pt;}
.wsa5{word-spacing:-1.386667pt;}
.wsa{word-spacing:-1.333333pt;}
.ws32{word-spacing:-1.280000pt;}
.ws25{word-spacing:-1.226667pt;}
.ws55{word-spacing:-1.173333pt;}
.wsae{word-spacing:-1.133333pt;}
.ws51{word-spacing:-1.120000pt;}
.wsd7{word-spacing:-1.088000pt;}
.ws26{word-spacing:-1.066667pt;}
.wsb8{word-spacing:-1.042667pt;}
.ws19{word-spacing:-1.013333pt;}
.wsbf{word-spacing:-0.997333pt;}
.ws50{word-spacing:-0.960000pt;}
.wsb6{word-spacing:-0.952000pt;}
.ws37{word-spacing:-0.906667pt;}
.wsb2{word-spacing:-0.861333pt;}
.ws45{word-spacing:-0.853333pt;}
.wse1{word-spacing:-0.816000pt;}
.ws5b{word-spacing:-0.800000pt;}
.wsc{word-spacing:-0.746667pt;}
.ws10{word-spacing:-0.693333pt;}
.wsb4{word-spacing:-0.680000pt;}
.wsd{word-spacing:-0.640000pt;}
.wsb7{word-spacing:-0.634667pt;}
.ws43{word-spacing:-0.586667pt;}
.ws1e{word-spacing:-0.544000pt;}
.ws62{word-spacing:-0.533333pt;}
.ws9{word-spacing:-0.506667pt;}
.wsd8{word-spacing:-0.498667pt;}
.ws11{word-spacing:-0.480000pt;}
.wsd5{word-spacing:-0.453333pt;}
.ws17{word-spacing:-0.426667pt;}
.wsc9{word-spacing:-0.408000pt;}
.ws12{word-spacing:-0.373333pt;}
.wsa6{word-spacing:-0.362667pt;}
.ws7e{word-spacing:-0.320000pt;}
.wsca{word-spacing:-0.272000pt;}
.ws13{word-spacing:-0.266667pt;}
.wsaf{word-spacing:-0.234667pt;}
.wsba{word-spacing:-0.226667pt;}
.ws28{word-spacing:-0.213333pt;}
.wsde{word-spacing:-0.181333pt;}
.ws5e{word-spacing:-0.160000pt;}
.wsa8{word-spacing:-0.136000pt;}
.ws2b{word-spacing:-0.106667pt;}
.ws9a{word-spacing:-0.090667pt;}
.ws2d{word-spacing:-0.053333pt;}
.wsd0{word-spacing:-0.045333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.wsdf{word-spacing:0.045333pt;}
.ws40{word-spacing:0.053333pt;}
.ws27{word-spacing:0.106667pt;}
.ws83{word-spacing:0.160000pt;}
.ws36{word-spacing:0.213333pt;}
.ws68{word-spacing:0.266667pt;}
.ws2c{word-spacing:0.320000pt;}
.wsd1{word-spacing:0.362667pt;}
.wse{word-spacing:0.373333pt;}
.wsbc{word-spacing:0.408000pt;}
.ws1a{word-spacing:0.426667pt;}
.ws42{word-spacing:0.480000pt;}
.ws59{word-spacing:0.533333pt;}
.ws3f{word-spacing:0.586667pt;}
.ws54{word-spacing:0.640000pt;}
.wscf{word-spacing:0.680000pt;}
.ws1d{word-spacing:0.693333pt;}
.wsdc{word-spacing:0.725333pt;}
.ws44{word-spacing:0.746667pt;}
.wsd3{word-spacing:0.770667pt;}
.ws84{word-spacing:0.800000pt;}
.wscb{word-spacing:0.861333pt;}
.ws56{word-spacing:0.906667pt;}
.ws52{word-spacing:0.960000pt;}
.ws4f{word-spacing:1.013333pt;}
.wsb5{word-spacing:1.042667pt;}
.ws2e{word-spacing:1.066667pt;}
.ws1c{word-spacing:1.120000pt;}
.wsb3{word-spacing:1.133333pt;}
.ws79{word-spacing:1.173333pt;}
.wsc2{word-spacing:1.224000pt;}
.ws60{word-spacing:1.226667pt;}
.ws38{word-spacing:1.280000pt;}
.wsd6{word-spacing:1.314667pt;}
.wsb{word-spacing:1.333333pt;}
.wsb9{word-spacing:1.360000pt;}
.ws66{word-spacing:1.386667pt;}
.wscd{word-spacing:1.405333pt;}
.ws34{word-spacing:1.440000pt;}
.wsbe{word-spacing:1.450667pt;}
.ws18{word-spacing:1.493333pt;}
.wsda{word-spacing:1.496000pt;}
.wsc8{word-spacing:1.541333pt;}
.ws30{word-spacing:1.546667pt;}
.wscc{word-spacing:1.586667pt;}
.ws16{word-spacing:1.600000pt;}
.wsd4{word-spacing:1.632000pt;}
.ws3a{word-spacing:1.653333pt;}
.ws47{word-spacing:1.706667pt;}
.ws69{word-spacing:1.760000pt;}
.wsbd{word-spacing:1.768000pt;}
.ws29{word-spacing:1.813333pt;}
.wsd2{word-spacing:1.858667pt;}
.ws6e{word-spacing:1.866667pt;}
.ws4e{word-spacing:1.920000pt;}
.ws5a{word-spacing:1.973333pt;}
.ws33{word-spacing:2.026667pt;}
.wsbb{word-spacing:2.040000pt;}
.ws1b{word-spacing:2.080000pt;}
.wsc1{word-spacing:2.085333pt;}
.ws5f{word-spacing:2.133333pt;}
.ws35{word-spacing:2.186667pt;}
.ws46{word-spacing:2.240000pt;}
.ws70{word-spacing:2.266667pt;}
.ws48{word-spacing:2.293333pt;}
.wse0{word-spacing:2.312000pt;}
.ws3b{word-spacing:2.346667pt;}
.ws41{word-spacing:2.400000pt;}
.wsd9{word-spacing:2.448000pt;}
.ws58{word-spacing:2.453333pt;}
.wsdb{word-spacing:2.493333pt;}
.ws7f{word-spacing:2.506667pt;}
.ws31{word-spacing:2.560000pt;}
.ws3d{word-spacing:2.613333pt;}
.wsf{word-spacing:2.666667pt;}
.wsc0{word-spacing:2.674667pt;}
.ws15{word-spacing:2.720000pt;}
.ws3c{word-spacing:2.773333pt;}
.ws97{word-spacing:2.826667pt;}
.ws77{word-spacing:2.880000pt;}
.ws2a{word-spacing:2.933333pt;}
.ws82{word-spacing:2.986667pt;}
.ws78{word-spacing:3.040000pt;}
.ws7d{word-spacing:3.093333pt;}
.ws7c{word-spacing:3.146667pt;}
.ws65{word-spacing:3.200000pt;}
.ws53{word-spacing:3.253333pt;}
.wsdd{word-spacing:3.264000pt;}
.ws24{word-spacing:3.306667pt;}
.ws4d{word-spacing:3.360000pt;}
.ws72{word-spacing:3.400000pt;}
.ws8d{word-spacing:3.413333pt;}
.wsb0{word-spacing:3.445333pt;}
.ws6d{word-spacing:3.466667pt;}
.ws76{word-spacing:3.520000pt;}
.ws49{word-spacing:3.573333pt;}
.ws39{word-spacing:3.626667pt;}
.ws90{word-spacing:3.680000pt;}
.ws61{word-spacing:3.733333pt;}
.ws5c{word-spacing:3.786667pt;}
.wsad{word-spacing:3.808000pt;}
.wsa2{word-spacing:3.840000pt;}
.ws7b{word-spacing:3.946667pt;}
.ws6c{word-spacing:4.000000pt;}
.ws99{word-spacing:4.053333pt;}
.ws71{word-spacing:4.080000pt;}
.ws9b{word-spacing:4.106667pt;}
.ws98{word-spacing:4.160000pt;}
.ws8b{word-spacing:4.266667pt;}
.ws22{word-spacing:4.320000pt;}
.ws9f{word-spacing:4.426667pt;}
.ws21{word-spacing:4.480000pt;}
.wsb1{word-spacing:4.488000pt;}
.ws67{word-spacing:4.533333pt;}
.wsa0{word-spacing:4.586667pt;}
.ws5d{word-spacing:4.640000pt;}
.ws85{word-spacing:4.693333pt;}
.wsa4{word-spacing:4.800000pt;}
.ws57{word-spacing:4.853333pt;}
.ws14{word-spacing:4.906667pt;}
.ws9d{word-spacing:4.960000pt;}
.ws3e{word-spacing:5.066667pt;}
.ws23{word-spacing:5.120000pt;}
.ws9e{word-spacing:5.173333pt;}
.wsce{word-spacing:5.213333pt;}
.ws2f{word-spacing:5.333333pt;}
.ws8f{word-spacing:5.546667pt;}
.ws9c{word-spacing:6.080000pt;}
.ws8e{word-spacing:6.400000pt;}
.ws6f{word-spacing:6.618667pt;}
.wsa3{word-spacing:6.986667pt;}
.wse2{word-spacing:12.013333pt;}
.wse3{word-spacing:15.640000pt;}
.ws1f{word-spacing:64.237333pt;}
.ws92{word-spacing:94.701324pt;}
.ws91{word-spacing:114.924525pt;}
.ws96{word-spacing:140.397333pt;}
.ws93{word-spacing:142.305858pt;}
.ws95{word-spacing:207.399995pt;}
.ws94{word-spacing:240.085328pt;}
.ws73{word-spacing:433.749321pt;}
.ws75{word-spacing:487.151979pt;}
._d{margin-left:-2630.557249pt;}
._2c{margin-left:-43.066667pt;}
._b{margin-left:-21.533333pt;}
._7{margin-left:-14.733333pt;}
._e{margin-left:-9.202133pt;}
._18{margin-left:-6.381077pt;}
._2{margin-left:-5.448267pt;}
._1{margin-left:-4.109067pt;}
._5{margin-left:-2.856267pt;}
._0{margin-left:-1.450667pt;}
._4{width:1.402667pt;}
._6{width:2.346667pt;}
._1e{width:4.520267pt;}
._2d{width:5.984000pt;}
._43{width:7.752000pt;}
._44{width:12.783991pt;}
._f{width:14.139733pt;}
._8{width:16.320000pt;}
._22{width:32.919958pt;}
._14{width:33.954645pt;}
._3{width:36.216474pt;}
._3f{width:37.856000pt;}
._33{width:40.890667pt;}
._a{width:48.552000pt;}
._3e{width:53.856000pt;}
._3a{width:61.880000pt;}
._9{width:64.237333pt;}
._42{width:65.781333pt;}
._1d{width:74.255979pt;}
._40{width:87.085333pt;}
._3b{width:89.805333pt;}
._39{width:91.301333pt;}
._2e{width:110.114667pt;}
._27{width:111.837579pt;}
._35{width:134.144000pt;}
._2a{width:135.327987pt;}
._31{width:137.450667pt;}
._30{width:142.482667pt;}
._23{width:147.287966pt;}
._3c{width:159.576000pt;}
._25{width:169.584008pt;}
._28{width:177.162646pt;}
._32{width:183.237333pt;}
._3d{width:187.589333pt;}
._37{width:211.162667pt;}
._2b{width:233.877325pt;}
._16{width:249.333333pt;}
._19{width:259.442667pt;}
._13{width:264.384000pt;}
._34{width:267.557333pt;}
._1f{width:269.416000pt;}
._38{width:272.997333pt;}
._2f{width:276.216000pt;}
._17{width:284.239979pt;}
._11{width:316.109312pt;}
._15{width:339.728000pt;}
._41{width:344.037333pt;}
._26{width:373.727979pt;}
._10{width:375.136000pt;}
._36{width:385.560000pt;}
._29{width:399.394637pt;}
._1c{width:403.149333pt;}
._24{width:455.237325pt;}
._1b{width:461.810645pt;}
._20{width:487.333333pt;}
._1a{width:547.762667pt;}
._21{width:670.751979pt;}
._12{width:730.501333pt;}
._c{width:2319.072054pt;}
.fs9{font-size:31.733332pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs7{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:61.181335pt;}
.y4{bottom:86.333337pt;}
.y17f{bottom:100.384193pt;}
.y17a{bottom:100.384203pt;}
.y176{bottom:100.384208pt;}
.y172{bottom:100.384214pt;}
.y16c{bottom:100.384236pt;}
.y167{bottom:100.384256pt;}
.y162{bottom:100.384261pt;}
.y161{bottom:100.384267pt;}
.y5d{bottom:100.389600pt;}
.y192{bottom:100.405600pt;}
.y93{bottom:100.813639pt;}
.y160{bottom:100.928304pt;}
.y319{bottom:101.557617pt;}
.y200{bottom:101.981669pt;}
.y351{bottom:101.986898pt;}
.y20d{bottom:101.986928pt;}
.y35a{bottom:101.986938pt;}
.yfc{bottom:101.989614pt;}
.y1a3{bottom:102.110921pt;}
.y28c{bottom:102.224264pt;}
.y301{bottom:110.320272pt;}
.y263{bottom:110.444417pt;}
.y191{bottom:113.733600pt;}
.y4d{bottom:116.187907pt;}
.yc7{bottom:116.696289pt;}
.y54f{bottom:116.985620pt;}
.y92{bottom:117.480306pt;}
.y15f{bottom:117.594971pt;}
.y318{bottom:118.224284pt;}
.y5c{bottom:118.250936pt;}
.y1ff{bottom:118.648336pt;}
.y350{bottom:118.653564pt;}
.y20c{bottom:118.653595pt;}
.y359{bottom:118.653605pt;}
.yfb{bottom:118.656281pt;}
.y1a2{bottom:118.777588pt;}
.y282{bottom:118.777751pt;}
.y28b{bottom:118.890930pt;}
.y20{bottom:123.790666pt;}
.y2e4{bottom:126.986898pt;}
.y300{bottom:126.986938pt;}
.y190{bottom:127.061600pt;}
.y262{bottom:127.111084pt;}
.y50e{bottom:128.860265pt;}
.y54e{bottom:130.313620pt;}
.y58f{bottom:130.653606pt;}
.y4c{bottom:132.854574pt;}
.yc6{bottom:133.362956pt;}
.y5b{bottom:133.764936pt;}
.y91{bottom:134.146973pt;}
.y15e{bottom:134.261637pt;}
.y317{bottom:134.890951pt;}
.y1fe{bottom:135.315002pt;}
.y34f{bottom:135.320231pt;}
.y23f{bottom:135.320262pt;}
.y12c{bottom:135.320272pt;}
.yfa{bottom:135.322947pt;}
.y1a1{bottom:135.444255pt;}
.y281{bottom:135.444417pt;}
.y28a{bottom:135.557597pt;}
.y4e8{bottom:139.388932pt;}
.y18f{bottom:140.389600pt;}
.y50d{bottom:142.188265pt;}
.y54d{bottom:143.641620pt;}
.y2e3{bottom:143.653564pt;}
.y2ff{bottom:143.653605pt;}
.y261{bottom:143.777751pt;}
.y58e{bottom:143.981606pt;}
.y4b{bottom:149.521240pt;}
.yc5{bottom:150.029622pt;}
.y90{bottom:150.813639pt;}
.y15d{bottom:150.928304pt;}
.y316{bottom:151.557617pt;}
.y5a{bottom:151.626272pt;}
.y1fd{bottom:151.981669pt;}
.y34e{bottom:151.986898pt;}
.y20b{bottom:151.986928pt;}
.y12b{bottom:151.986938pt;}
.yf9{bottom:151.989614pt;}
.y1a0{bottom:152.110921pt;}
.y280{bottom:152.111084pt;}
.y4e7{bottom:152.716932pt;}
.y50c{bottom:155.516265pt;}
.y54c{bottom:156.969620pt;}
.y58d{bottom:157.309606pt;}
.y410{bottom:157.952288pt;}
.y18e{bottom:158.250936pt;}
.y2e2{bottom:160.320231pt;}
.y2fe{bottom:160.320272pt;}
.y260{bottom:160.444417pt;}
.y4e6{bottom:166.044932pt;}
.y4a{bottom:166.187907pt;}
.yc4{bottom:166.696289pt;}
.y8f{bottom:167.480306pt;}
.y15c{bottom:167.594971pt;}
.y315{bottom:168.224284pt;}
.y1fc{bottom:168.648336pt;}
.y34d{bottom:168.653564pt;}
.y23e{bottom:168.653595pt;}
.y12a{bottom:168.653605pt;}
.yf8{bottom:168.656281pt;}
.y19f{bottom:168.777588pt;}
.y27f{bottom:168.777751pt;}
.y50b{bottom:168.844265pt;}
.y54b{bottom:170.297620pt;}
.y58c{bottom:170.637606pt;}
.y40f{bottom:171.280288pt;}
.y59{bottom:173.896666pt;}
.y17{bottom:175.052000pt;}
.y2e1{bottom:176.986898pt;}
.y2fd{bottom:176.986938pt;}
.y25f{bottom:177.111084pt;}
.y50a{bottom:182.172265pt;}
.y49{bottom:182.854574pt;}
.yc3{bottom:183.362956pt;}
.y54a{bottom:183.625620pt;}
.y58b{bottom:183.965606pt;}
.y8e{bottom:184.146973pt;}
.y15b{bottom:184.261637pt;}
.y40e{bottom:184.608288pt;}
.y419{bottom:184.664955pt;}
.y314{bottom:184.890951pt;}
.y2bc{bottom:185.300021pt;}
.y1fb{bottom:185.315002pt;}
.y34c{bottom:185.320231pt;}
.y23d{bottom:185.320262pt;}
.y129{bottom:185.320272pt;}
.yf7{bottom:185.322947pt;}
.y19e{bottom:185.444255pt;}
.y27e{bottom:185.444417pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y58{bottom:187.224666pt;}
.y2e0{bottom:193.653564pt;}
.y2fc{bottom:193.653605pt;}
.y25e{bottom:193.777751pt;}
.y509{bottom:195.500265pt;}
.y4e5{bottom:196.044942pt;}
.y549{bottom:196.953620pt;}
.y58a{bottom:197.293606pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y405{bottom:197.902292pt;}
.y40d{bottom:197.936288pt;}
.y418{bottom:197.992955pt;}
.y2bb{bottom:198.628021pt;}
.y48{bottom:199.521240pt;}
.yc2{bottom:200.029622pt;}
.y8d{bottom:200.813639pt;}
.y15a{bottom:200.928304pt;}
.y313{bottom:201.557617pt;}
.y1fa{bottom:201.981669pt;}
.y18d{bottom:201.986898pt;}
.y23c{bottom:201.986928pt;}
.y128{bottom:201.986938pt;}
.yf6{bottom:201.989614pt;}
.y19d{bottom:202.110921pt;}
.y27d{bottom:202.111084pt;}
.y57{bottom:207.262000pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y508{bottom:208.828265pt;}
.y548{bottom:210.281620pt;}
.y2df{bottom:210.320231pt;}
.y2fb{bottom:210.320272pt;}
.y25d{bottom:210.444417pt;}
.y589{bottom:210.621606pt;}
.y404{bottom:211.230292pt;}
.y40c{bottom:211.264288pt;}
.y417{bottom:211.320955pt;}
.y2ba{bottom:211.956021pt;}
.y47{bottom:216.187907pt;}
.yc1{bottom:216.696289pt;}
.y8c{bottom:217.480306pt;}
.y159{bottom:217.594971pt;}
.y491{bottom:217.740239pt;}
.y312{bottom:218.224284pt;}
.y1f9{bottom:218.648336pt;}
.y18c{bottom:218.653564pt;}
.y23b{bottom:218.653595pt;}
.y127{bottom:218.653605pt;}
.yf5{bottom:218.656281pt;}
.y19c{bottom:218.777588pt;}
.y27c{bottom:218.777751pt;}
.y56{bottom:220.590000pt;}
.y507{bottom:222.156265pt;}
.y547{bottom:223.609620pt;}
.y588{bottom:223.949606pt;}
.y403{bottom:224.558292pt;}
.y40b{bottom:224.592288pt;}
.y416{bottom:224.648955pt;}
.y2b9{bottom:225.284021pt;}
.y2de{bottom:226.986898pt;}
.y2fa{bottom:226.986938pt;}
.y25c{bottom:227.111084pt;}
.y1c{bottom:231.038664pt;}
.y48a{bottom:231.045572pt;}
.y13{bottom:231.052000pt;}
.y48d{bottom:231.056906pt;}
.y490{bottom:231.068239pt;}
.y46{bottom:232.854574pt;}
.yc0{bottom:233.362956pt;}
.y8b{bottom:234.146973pt;}
.y158{bottom:234.261637pt;}
.y311{bottom:234.890951pt;}
.y1f8{bottom:235.315002pt;}
.y18b{bottom:235.320231pt;}
.y23a{bottom:235.320262pt;}
.y126{bottom:235.320272pt;}
.yf4{bottom:235.322947pt;}
.y19b{bottom:235.444255pt;}
.y27b{bottom:235.444417pt;}
.y506{bottom:235.484265pt;}
.y546{bottom:236.937620pt;}
.y587{bottom:237.277606pt;}
.y402{bottom:237.886292pt;}
.y40a{bottom:237.920288pt;}
.y415{bottom:237.976955pt;}
.y41e{bottom:238.022285pt;}
.y2b8{bottom:241.989355pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y2dd{bottom:243.653564pt;}
.y2f9{bottom:243.653605pt;}
.y25b{bottom:243.777751pt;}
.y489{bottom:244.373572pt;}
.y48c{bottom:244.384906pt;}
.y48f{bottom:244.396239pt;}
.y55{bottom:247.982666pt;}
.y505{bottom:248.812265pt;}
.y45{bottom:249.521240pt;}
.ybf{bottom:250.029622pt;}
.y545{bottom:250.265620pt;}
.y586{bottom:250.605606pt;}
.y8a{bottom:250.813639pt;}
.y157{bottom:250.928304pt;}
.y3fd{bottom:251.202959pt;}
.y401{bottom:251.214292pt;}
.y409{bottom:251.248288pt;}
.y414{bottom:251.304955pt;}
.y41d{bottom:251.350285pt;}
.y310{bottom:251.557617pt;}
.y1f7{bottom:251.981669pt;}
.y18a{bottom:251.986898pt;}
.y239{bottom:251.986928pt;}
.y125{bottom:251.986938pt;}
.yf3{bottom:251.989614pt;}
.y19a{bottom:252.110921pt;}
.y27a{bottom:252.111084pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y4e4{bottom:254.527750pt;}
.y2b7{bottom:255.317355pt;}
.y488{bottom:257.701572pt;}
.y48b{bottom:257.712906pt;}
.y48e{bottom:257.724239pt;}
.y2dc{bottom:260.320231pt;}
.y2f8{bottom:260.320272pt;}
.y25a{bottom:260.444417pt;}
.y54{bottom:261.310666pt;}
.y504{bottom:262.140265pt;}
.y544{bottom:263.593620pt;}
.y585{bottom:263.933606pt;}
.y3fc{bottom:264.530959pt;}
.y400{bottom:264.542292pt;}
.y408{bottom:264.576288pt;}
.y413{bottom:264.632955pt;}
.y41c{bottom:264.678285pt;}
.y44{bottom:266.187907pt;}
.ybe{bottom:266.696289pt;}
.y89{bottom:267.480306pt;}
.y156{bottom:267.594971pt;}
.y4e3{bottom:267.855750pt;}
.y30f{bottom:268.224284pt;}
.y1f6{bottom:268.648336pt;}
.y189{bottom:268.653564pt;}
.y238{bottom:268.653595pt;}
.y124{bottom:268.653605pt;}
.yf2{bottom:268.656281pt;}
.y199{bottom:268.777588pt;}
.y279{bottom:268.777751pt;}
.y2b6{bottom:271.954688pt;}
.y481{bottom:274.316239pt;}
.y53{bottom:274.638666pt;}
.y503{bottom:275.468265pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y543{bottom:276.921620pt;}
.y2db{bottom:276.986898pt;}
.y2f7{bottom:276.986938pt;}
.y259{bottom:277.111084pt;}
.y584{bottom:277.261606pt;}
.y3fb{bottom:277.858959pt;}
.y3ff{bottom:277.870292pt;}
.y407{bottom:277.904288pt;}
.y412{bottom:277.960955pt;}
.y41b{bottom:278.006285pt;}
.y4e2{bottom:281.183750pt;}
.y43{bottom:282.854574pt;}
.ybd{bottom:283.362956pt;}
.y88{bottom:284.146973pt;}
.y155{bottom:284.261637pt;}
.y30e{bottom:284.890951pt;}
.y2b5{bottom:285.282688pt;}
.y1f5{bottom:285.315002pt;}
.y188{bottom:285.320231pt;}
.y237{bottom:285.320262pt;}
.y20a{bottom:285.320272pt;}
.yf1{bottom:285.322947pt;}
.y198{bottom:285.444255pt;}
.y278{bottom:285.444417pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y480{bottom:287.644239pt;}
.y52{bottom:287.966666pt;}
.y502{bottom:288.796265pt;}
.y542{bottom:290.249620pt;}
.y583{bottom:290.589606pt;}
.y3fa{bottom:291.186959pt;}
.y3fe{bottom:291.198292pt;}
.y406{bottom:291.232288pt;}
.y411{bottom:291.288955pt;}
.y41a{bottom:291.334285pt;}
.y2da{bottom:293.653564pt;}
.y2f6{bottom:293.653605pt;}
.y258{bottom:293.777751pt;}
.y4e1{bottom:294.511750pt;}
.y2b4{bottom:298.610688pt;}
.y42{bottom:299.521240pt;}
.ybc{bottom:300.029622pt;}
.y87{bottom:300.813639pt;}
.y154{bottom:300.928304pt;}
.y47f{bottom:300.972239pt;}
.y51{bottom:301.294666pt;}
.y30d{bottom:301.557617pt;}
.y1f4{bottom:301.981669pt;}
.y187{bottom:301.986898pt;}
.y236{bottom:301.986928pt;}
.y123{bottom:301.986938pt;}
.yf0{bottom:301.989614pt;}
.y197{bottom:302.110921pt;}
.y277{bottom:302.111084pt;}
.y501{bottom:302.124265pt;}
.y541{bottom:303.577620pt;}
.y582{bottom:303.917606pt;}
.y3dc{bottom:307.688296pt;}
.y3e6{bottom:307.733629pt;}
.y4e0{bottom:307.839750pt;}
.ye{bottom:309.452000pt;}
.y2d9{bottom:310.320231pt;}
.y2f5{bottom:310.320272pt;}
.y257{bottom:310.444417pt;}
.y47e{bottom:314.300239pt;}
.y485{bottom:314.334239pt;}
.y50{bottom:314.622666pt;}
.y2b3{bottom:315.248021pt;}
.y500{bottom:315.452265pt;}
.y41{bottom:316.187907pt;}
.ybb{bottom:316.696289pt;}
.y540{bottom:316.905620pt;}
.y581{bottom:317.245606pt;}
.y86{bottom:317.480306pt;}
.y153{bottom:317.594971pt;}
.y30c{bottom:318.224284pt;}
.y1f3{bottom:318.648336pt;}
.y186{bottom:318.653564pt;}
.y235{bottom:318.653595pt;}
.y209{bottom:318.653605pt;}
.yef{bottom:318.656281pt;}
.y196{bottom:318.777588pt;}
.y276{bottom:318.777751pt;}
.y3db{bottom:321.016296pt;}
.y3e5{bottom:321.061629pt;}
.y3ef{bottom:321.106963pt;}
.y4df{bottom:321.167750pt;}
.y2d8{bottom:326.986898pt;}
.y2f4{bottom:326.986938pt;}
.y256{bottom:327.111084pt;}
.y47d{bottom:327.628239pt;}
.y484{bottom:327.662239pt;}
.y4f{bottom:327.950666pt;}
.y2b2{bottom:328.576021pt;}
.y4ff{bottom:328.780265pt;}
.y53f{bottom:330.233620pt;}
.y580{bottom:330.573606pt;}
.y40{bottom:332.854574pt;}
.yba{bottom:333.362956pt;}
.y85{bottom:334.146973pt;}
.y152{bottom:334.261637pt;}
.y3da{bottom:334.344296pt;}
.y3e4{bottom:334.389629pt;}
.y3ee{bottom:334.434963pt;}
.y3f7{bottom:334.480292pt;}
.y4de{bottom:334.495750pt;}
.y30b{bottom:334.890951pt;}
.y1f2{bottom:335.315002pt;}
.y185{bottom:335.320231pt;}
.y234{bottom:335.320262pt;}
.y208{bottom:335.320272pt;}
.yee{bottom:335.322947pt;}
.y195{bottom:335.444255pt;}
.y275{bottom:335.444417pt;}
.y47c{bottom:340.956239pt;}
.y483{bottom:340.990239pt;}
.y487{bottom:341.001572pt;}
.y4e{bottom:341.278666pt;}
.y2b1{bottom:341.904021pt;}
.y4fe{bottom:342.108265pt;}
.y53e{bottom:343.561620pt;}
.y2d7{bottom:343.653564pt;}
.y2f3{bottom:343.653605pt;}
.y255{bottom:343.777751pt;}
.yd{bottom:343.809333pt;}
.y57f{bottom:343.901606pt;}
.y3d9{bottom:347.672296pt;}
.y3e3{bottom:347.717629pt;}
.y3ed{bottom:347.762963pt;}
.y3f6{bottom:347.808292pt;}
.y4dd{bottom:347.823750pt;}
.y3f{bottom:349.521240pt;}
.yb9{bottom:350.029622pt;}
.y84{bottom:350.813639pt;}
.y151{bottom:350.928304pt;}
.y30a{bottom:351.557617pt;}
.y1f1{bottom:351.981669pt;}
.y122{bottom:351.986898pt;}
.y233{bottom:351.986928pt;}
.y207{bottom:351.986938pt;}
.yed{bottom:351.989614pt;}
.y194{bottom:352.110921pt;}
.y274{bottom:352.111084pt;}
.y47b{bottom:354.284239pt;}
.y482{bottom:354.318239pt;}
.y486{bottom:354.329572pt;}
.y4fd{bottom:355.436265pt;}
.y53d{bottom:356.889620pt;}
.y57e{bottom:357.229606pt;}
.y2b0{bottom:358.541355pt;}
.y2d6{bottom:360.320231pt;}
.y2f2{bottom:360.320272pt;}
.y254{bottom:360.444417pt;}
.y3d8{bottom:361.000296pt;}
.y3e2{bottom:361.045629pt;}
.y3ec{bottom:361.090963pt;}
.y3f5{bottom:361.136292pt;}
.y4dc{bottom:361.151750pt;}
.yc{bottom:362.706666pt;}
.y3e{bottom:366.187907pt;}
.yb8{bottom:366.696289pt;}
.y83{bottom:367.480306pt;}
.y150{bottom:367.594971pt;}
.y309{bottom:368.224284pt;}
.y1f0{bottom:368.648336pt;}
.y121{bottom:368.653564pt;}
.y232{bottom:368.653595pt;}
.y206{bottom:368.653605pt;}
.yec{bottom:368.656281pt;}
.y4fc{bottom:368.764265pt;}
.y193{bottom:368.777588pt;}
.y273{bottom:368.777751pt;}
.y53c{bottom:370.217620pt;}
.y57d{bottom:370.557606pt;}
.y473{bottom:370.887576pt;}
.y478{bottom:370.910241pt;}
.y2af{bottom:371.869355pt;}
.y3d7{bottom:374.328296pt;}
.y3e1{bottom:374.373629pt;}
.y3eb{bottom:374.418963pt;}
.y3f4{bottom:374.464292pt;}
.y4db{bottom:374.479750pt;}
.y2d5{bottom:376.986898pt;}
.y2f1{bottom:376.986938pt;}
.y253{bottom:377.111084pt;}
.y4fb{bottom:382.092265pt;}
.y3d{bottom:382.854574pt;}
.yb7{bottom:383.362956pt;}
.y53b{bottom:383.545620pt;}
.y57c{bottom:383.885606pt;}
.y82{bottom:384.146973pt;}
.y472{bottom:384.215576pt;}
.y477{bottom:384.238241pt;}
.y14f{bottom:384.261637pt;}
.y308{bottom:384.890951pt;}
.y2ae{bottom:385.197355pt;}
.y1ef{bottom:385.315002pt;}
.y120{bottom:385.320231pt;}
.y231{bottom:385.320262pt;}
.y358{bottom:385.320272pt;}
.yeb{bottom:385.322947pt;}
.y203{bottom:385.444255pt;}
.y272{bottom:385.444417pt;}
.y3d6{bottom:387.656296pt;}
.y3e0{bottom:387.701629pt;}
.y3ea{bottom:387.746963pt;}
.y3f3{bottom:387.792292pt;}
.y4da{bottom:387.807750pt;}
.y2d4{bottom:393.653564pt;}
.y2f0{bottom:393.653605pt;}
.y252{bottom:393.777751pt;}
.y4fa{bottom:395.420265pt;}
.y53a{bottom:396.873620pt;}
.y57b{bottom:397.213606pt;}
.y471{bottom:397.543576pt;}
.y476{bottom:397.566241pt;}
.y3c{bottom:399.521240pt;}
.yb6{bottom:400.029622pt;}
.y81{bottom:400.813639pt;}
.y14e{bottom:400.928304pt;}
.y3d5{bottom:400.984296pt;}
.y3df{bottom:401.029629pt;}
.y3e9{bottom:401.074963pt;}
.y3f2{bottom:401.120292pt;}
.y4d9{bottom:401.135750pt;}
.y307{bottom:401.557617pt;}
.y2ad{bottom:401.834688pt;}
.y1ee{bottom:401.981669pt;}
.y11f{bottom:401.986898pt;}
.y230{bottom:401.986928pt;}
.y205{bottom:401.986938pt;}
.yea{bottom:401.989614pt;}
.y202{bottom:402.110921pt;}
.y271{bottom:402.111084pt;}
.y4f9{bottom:408.748265pt;}
.y539{bottom:410.201620pt;}
.y2d3{bottom:410.320231pt;}
.y2ef{bottom:410.320272pt;}
.y251{bottom:410.444417pt;}
.y57a{bottom:410.541606pt;}
.y470{bottom:410.871576pt;}
.y475{bottom:410.894241pt;}
.y47a{bottom:410.916906pt;}
.y3d4{bottom:414.312296pt;}
.y3de{bottom:414.357629pt;}
.y3e8{bottom:414.402963pt;}
.y3f1{bottom:414.448292pt;}
.y3f9{bottom:414.482289pt;}
.y2ac{bottom:415.162688pt;}
.y3b{bottom:416.187907pt;}
.yb5{bottom:416.696289pt;}
.y80{bottom:417.480306pt;}
.y14d{bottom:417.594971pt;}
.y306{bottom:418.224284pt;}
.y1ed{bottom:418.648336pt;}
.y11e{bottom:418.653564pt;}
.y22f{bottom:418.653595pt;}
.y357{bottom:418.653605pt;}
.ye9{bottom:418.656281pt;}
.y201{bottom:418.777588pt;}
.y270{bottom:418.777751pt;}
.y1cb{bottom:421.724688pt;}
.y4f8{bottom:422.076265pt;}
.y538{bottom:423.529620pt;}
.y579{bottom:423.869606pt;}
.y46f{bottom:424.199576pt;}
.y474{bottom:424.222241pt;}
.y479{bottom:424.244906pt;}
.y2d2{bottom:426.986898pt;}
.y2ee{bottom:426.986938pt;}
.y181{bottom:427.044854pt;}
.y17b{bottom:427.044864pt;}
.y178{bottom:427.044869pt;}
.y173{bottom:427.044875pt;}
.y16d{bottom:427.044897pt;}
.y169{bottom:427.044917pt;}
.y163{bottom:427.044923pt;}
.y250{bottom:427.111084pt;}
.y3d3{bottom:427.640296pt;}
.y3dd{bottom:427.685629pt;}
.y3e7{bottom:427.730963pt;}
.y3f0{bottom:427.776292pt;}
.y3f8{bottom:427.810289pt;}
.y2ab{bottom:431.800021pt;}
.y3a{bottom:432.854574pt;}
.yb4{bottom:433.362956pt;}
.y7f{bottom:434.146973pt;}
.y14c{bottom:434.261637pt;}
.y4d8{bottom:434.455750pt;}
.y305{bottom:434.890951pt;}
.y180{bottom:435.046188pt;}
.y17c{bottom:435.046197pt;}
.y177{bottom:435.046203pt;}
.y174{bottom:435.046208pt;}
.y16e{bottom:435.046231pt;}
.y168{bottom:435.046251pt;}
.y164{bottom:435.046256pt;}
.y1ec{bottom:435.315002pt;}
.y11d{bottom:435.320231pt;}
.y22e{bottom:435.320262pt;}
.y356{bottom:435.320272pt;}
.ye8{bottom:435.322947pt;}
.y4f7{bottom:435.404265pt;}
.y26f{bottom:435.444417pt;}
.y537{bottom:436.857620pt;}
.y578{bottom:437.197606pt;}
.y182{bottom:437.709521pt;}
.y1ca{bottom:438.430021pt;}
.y463{bottom:440.802910pt;}
.y468{bottom:440.825575pt;}
.y2d1{bottom:443.653564pt;}
.y2ed{bottom:443.653605pt;}
.y24f{bottom:443.777751pt;}
.y3c8{bottom:444.232297pt;}
.y2aa{bottom:445.128021pt;}
.yb{bottom:446.990669pt;}
.y4d7{bottom:447.783750pt;}
.y4f6{bottom:448.732265pt;}
.y39{bottom:449.521240pt;}
.yb3{bottom:450.029622pt;}
.y536{bottom:450.185620pt;}
.y577{bottom:450.525606pt;}
.y7e{bottom:450.813639pt;}
.y14b{bottom:450.928304pt;}
.y304{bottom:451.557617pt;}
.y1c9{bottom:451.758021pt;}
.y1eb{bottom:451.981669pt;}
.y11c{bottom:451.986898pt;}
.y22d{bottom:451.986928pt;}
.y355{bottom:451.986938pt;}
.ye7{bottom:451.989614pt;}
.y26e{bottom:452.111084pt;}
.y462{bottom:454.130910pt;}
.y467{bottom:454.153575pt;}
.y46c{bottom:454.176240pt;}
.y3c7{bottom:457.560297pt;}
.y204{bottom:458.302938pt;}
.y2a9{bottom:458.456021pt;}
.y2d0{bottom:460.320231pt;}
.y2ec{bottom:460.320272pt;}
.y24e{bottom:460.444417pt;}
.y4f5{bottom:462.060265pt;}
.ya{bottom:462.990669pt;}
.y535{bottom:463.513620pt;}
.y576{bottom:463.853606pt;}
.y1c8{bottom:465.086021pt;}
.y38{bottom:466.187907pt;}
.yb2{bottom:466.696289pt;}
.y461{bottom:467.458910pt;}
.y7d{bottom:467.480306pt;}
.y466{bottom:467.481575pt;}
.y46b{bottom:467.504240pt;}
.y14a{bottom:467.594971pt;}
.y303{bottom:468.224284pt;}
.y1ea{bottom:468.648336pt;}
.y11b{bottom:468.653564pt;}
.y22c{bottom:468.653595pt;}
.y354{bottom:468.653605pt;}
.ye6{bottom:468.656281pt;}
.y26d{bottom:468.777751pt;}
.y3c6{bottom:470.888297pt;}
.y4d6{bottom:474.451084pt;}
.y2a8{bottom:475.093355pt;}
.y4f4{bottom:475.388265pt;}
.y534{bottom:476.841620pt;}
.y2cf{bottom:476.986898pt;}
.y2eb{bottom:476.986938pt;}
.y24d{bottom:477.111084pt;}
.y575{bottom:477.181606pt;}
.y1c7{bottom:478.414021pt;}
.y9{bottom:478.990666pt;}
.y460{bottom:480.786910pt;}
.y465{bottom:480.809575pt;}
.y46a{bottom:480.832240pt;}
.y46e{bottom:480.843573pt;}
.y37{bottom:482.854574pt;}
.yb1{bottom:483.362956pt;}
.y7c{bottom:484.146973pt;}
.y3c5{bottom:484.216297pt;}
.y149{bottom:484.261637pt;}
.y302{bottom:484.890951pt;}
.y1e9{bottom:485.315002pt;}
.y11a{bottom:485.320231pt;}
.y22b{bottom:485.320262pt;}
.y353{bottom:485.320272pt;}
.ye5{bottom:485.322947pt;}
.y26c{bottom:485.444417pt;}
.y4d5{bottom:487.779084pt;}
.y2a7{bottom:488.421355pt;}
.y4f3{bottom:488.716265pt;}
.y533{bottom:490.169620pt;}
.y574{bottom:490.509606pt;}
.y1c6{bottom:491.742021pt;}
.y2ce{bottom:493.653564pt;}
.y2ea{bottom:493.653605pt;}
.y24c{bottom:493.777751pt;}
.y45f{bottom:494.114910pt;}
.y464{bottom:494.137575pt;}
.y469{bottom:494.160240pt;}
.y46d{bottom:494.171573pt;}
.y8{bottom:494.990666pt;}
.y3c4{bottom:497.544297pt;}
.y3d2{bottom:497.612293pt;}
.y36{bottom:499.521240pt;}
.yb0{bottom:500.029622pt;}
.y7b{bottom:500.813639pt;}
.y148{bottom:500.928304pt;}
.y4d4{bottom:501.107084pt;}
.y2a6{bottom:501.749355pt;}
.y1e8{bottom:501.981669pt;}
.y119{bottom:501.986898pt;}
.y22a{bottom:501.986928pt;}
.y376{bottom:501.986938pt;}
.ye4{bottom:501.989614pt;}
.y4f2{bottom:502.044265pt;}
.y26b{bottom:502.111084pt;}
.y532{bottom:503.497620pt;}
.y573{bottom:503.837606pt;}
.y1c5{bottom:505.070021pt;}
.y2e9{bottom:510.320272pt;}
.y24b{bottom:510.444417pt;}
.y459{bottom:510.740910pt;}
.y3c3{bottom:510.872297pt;}
.y3d1{bottom:510.940293pt;}
.y4f1{bottom:515.372265pt;}
.y35{bottom:516.187907pt;}
.yaf{bottom:516.696289pt;}
.y531{bottom:516.825620pt;}
.y572{bottom:517.165606pt;}
.y7a{bottom:517.480306pt;}
.y147{bottom:517.594971pt;}
.y2a5{bottom:518.386688pt;}
.y1c4{bottom:518.398021pt;}
.y1e7{bottom:518.648336pt;}
.y118{bottom:518.653564pt;}
.y229{bottom:518.653595pt;}
.y352{bottom:518.653605pt;}
.ye3{bottom:518.656281pt;}
.y26a{bottom:518.777751pt;}
.y458{bottom:524.068910pt;}
.y3c2{bottom:524.200297pt;}
.y3d0{bottom:524.268293pt;}
.y2e8{bottom:526.986938pt;}
.y24a{bottom:527.111084pt;}
.y4d3{bottom:527.774417pt;}
.y4f0{bottom:528.700265pt;}
.y530{bottom:530.153620pt;}
.y571{bottom:530.493606pt;}
.y2a4{bottom:531.714688pt;}
.y1c3{bottom:531.726021pt;}
.yae{bottom:533.362956pt;}
.y79{bottom:534.146973pt;}
.y146{bottom:534.261637pt;}
.y1e6{bottom:535.315002pt;}
.y117{bottom:535.320231pt;}
.y228{bottom:535.320262pt;}
.y375{bottom:535.320272pt;}
.ye2{bottom:535.322947pt;}
.y269{bottom:535.444417pt;}
.y457{bottom:537.396910pt;}
.y3b5{bottom:537.471632pt;}
.y3c1{bottom:537.528297pt;}
.y3cf{bottom:537.596293pt;}
.y34a{bottom:538.299349pt;}
.y4d2{bottom:541.102417pt;}
.y4ef{bottom:542.028265pt;}
.y52f{bottom:543.481620pt;}
.y2e7{bottom:543.653605pt;}
.y249{bottom:543.777751pt;}
.y570{bottom:543.821606pt;}
.y1c2{bottom:545.054021pt;}
.y2a3{bottom:548.352021pt;}
.yad{bottom:550.029622pt;}
.y456{bottom:550.724910pt;}
.y3b4{bottom:550.799632pt;}
.y78{bottom:550.813639pt;}
.y3c0{bottom:550.856297pt;}
.y3ce{bottom:550.924293pt;}
.y145{bottom:550.928304pt;}
.y342{bottom:551.593349pt;}
.y349{bottom:551.627349pt;}
.y1e5{bottom:551.981669pt;}
.y116{bottom:551.986898pt;}
.y227{bottom:551.986928pt;}
.y374{bottom:551.986938pt;}
.ye1{bottom:551.989614pt;}
.y268{bottom:552.111084pt;}
.y4ee{bottom:555.356265pt;}
.y52e{bottom:556.809620pt;}
.y56f{bottom:557.149606pt;}
.y1c1{bottom:558.382021pt;}
.y2e6{bottom:560.320272pt;}
.y248{bottom:560.444417pt;}
.y2a2{bottom:561.680021pt;}
.y455{bottom:564.052910pt;}
.y3b3{bottom:564.127632pt;}
.y3ba{bottom:564.161632pt;}
.y3bf{bottom:564.184297pt;}
.y3cd{bottom:564.252293pt;}
.y341{bottom:564.921349pt;}
.y348{bottom:564.955349pt;}
.y34{bottom:566.187907pt;}
.yac{bottom:566.696289pt;}
.y77{bottom:567.480306pt;}
.y144{bottom:567.594971pt;}
.y4d1{bottom:567.769084pt;}
.y1e4{bottom:568.648336pt;}
.y115{bottom:568.653564pt;}
.y226{bottom:568.653595pt;}
.y373{bottom:568.653605pt;}
.ye0{bottom:568.656281pt;}
.y4ed{bottom:568.684265pt;}
.y267{bottom:568.777751pt;}
.y52d{bottom:570.137620pt;}
.y56e{bottom:570.477606pt;}
.y1c0{bottom:571.710021pt;}
.y7{bottom:573.786667pt;}
.y2a1{bottom:575.008021pt;}
.y247{bottom:577.111084pt;}
.y454{bottom:577.380910pt;}
.y3b2{bottom:577.455632pt;}
.y3b9{bottom:577.489632pt;}
.y3be{bottom:577.512297pt;}
.y3cc{bottom:577.580293pt;}
.y340{bottom:578.249349pt;}
.y347{bottom:578.283349pt;}
.y4ec{bottom:582.012265pt;}
.yab{bottom:583.362956pt;}
.y52c{bottom:583.465620pt;}
.y56d{bottom:583.805606pt;}
.y76{bottom:584.146973pt;}
.y143{bottom:584.261637pt;}
.y1bf{bottom:585.038021pt;}
.y1e3{bottom:585.315002pt;}
.y114{bottom:585.320231pt;}
.y225{bottom:585.320262pt;}
.y372{bottom:585.320272pt;}
.ydf{bottom:585.322947pt;}
.y266{bottom:585.444417pt;}
.y453{bottom:590.708910pt;}
.y3ae{bottom:590.772299pt;}
.y3b1{bottom:590.783632pt;}
.y3b8{bottom:590.817632pt;}
.y3bd{bottom:590.840297pt;}
.y3cb{bottom:590.908293pt;}
.y33f{bottom:591.577349pt;}
.y346{bottom:591.611349pt;}
.y2a0{bottom:591.645355pt;}
.y6{bottom:592.685334pt;}
.y2e5{bottom:593.653605pt;}
.y246{bottom:593.777751pt;}
.y4eb{bottom:595.340265pt;}
.y52b{bottom:596.793620pt;}
.y56c{bottom:597.133606pt;}
.y4d0{bottom:598.052912pt;}
.y1be{bottom:598.366021pt;}
.y33{bottom:599.521240pt;}
.yaa{bottom:600.029622pt;}
.y75{bottom:600.813639pt;}
.y142{bottom:600.928304pt;}
.y1e2{bottom:601.981669pt;}
.y113{bottom:601.986898pt;}
.y224{bottom:601.986928pt;}
.y371{bottom:601.986938pt;}
.yde{bottom:601.989614pt;}
.y265{bottom:602.111084pt;}
.y452{bottom:604.036910pt;}
.y3ad{bottom:604.100299pt;}
.y3b0{bottom:604.111632pt;}
.y3b7{bottom:604.145632pt;}
.y3bc{bottom:604.168297pt;}
.y3ca{bottom:604.236293pt;}
.y33e{bottom:604.905349pt;}
.y345{bottom:604.939349pt;}
.y29f{bottom:604.973355pt;}
.y4ea{bottom:608.668265pt;}
.y52a{bottom:610.121620pt;}
.y245{bottom:610.444417pt;}
.y56b{bottom:610.461606pt;}
.y4cf{bottom:611.380912pt;}
.y1bd{bottom:611.694021pt;}
.y32{bottom:616.187907pt;}
.ya9{bottom:616.696289pt;}
.y451{bottom:617.364910pt;}
.y3ac{bottom:617.428299pt;}
.y3af{bottom:617.439632pt;}
.y3b6{bottom:617.473632pt;}
.y74{bottom:617.480306pt;}
.y3bb{bottom:617.496297pt;}
.y3c9{bottom:617.564293pt;}
.y141{bottom:617.594971pt;}
.y33d{bottom:618.233349pt;}
.y344{bottom:618.267349pt;}
.y29e{bottom:618.301355pt;}
.y1e1{bottom:618.648336pt;}
.y112{bottom:618.653564pt;}
.y223{bottom:618.653595pt;}
.y370{bottom:618.653605pt;}
.ydd{bottom:618.656281pt;}
.y264{bottom:618.777751pt;}
.y4e9{bottom:621.996265pt;}
.y529{bottom:623.449620pt;}
.y56a{bottom:623.789606pt;}
.y4ce{bottom:624.708912pt;}
.y1bc{bottom:625.022021pt;}
.y2cd{bottom:626.986898pt;}
.y450{bottom:630.692910pt;}
.y33c{bottom:631.561349pt;}
.y343{bottom:631.595349pt;}
.y31{bottom:632.854574pt;}
.ya8{bottom:633.362956pt;}
.y397{bottom:633.963632pt;}
.y73{bottom:634.146973pt;}
.y140{bottom:634.261637pt;}
.y29d{bottom:634.938688pt;}
.y1e0{bottom:635.315002pt;}
.y111{bottom:635.320231pt;}
.y222{bottom:635.320262pt;}
.y36f{bottom:635.320272pt;}
.ydc{bottom:635.322947pt;}
.y244{bottom:635.444417pt;}
.y528{bottom:636.777620pt;}
.y569{bottom:637.117606pt;}
.y1bb{bottom:638.350021pt;}
.y2cc{bottom:643.653564pt;}
.y44f{bottom:644.020910pt;}
.y5{bottom:645.598667pt;}
.y396{bottom:647.291632pt;}
.y3a2{bottom:647.348299pt;}
.y335{bottom:648.232686pt;}
.y29c{bottom:648.266688pt;}
.y30{bottom:649.521240pt;}
.ya7{bottom:650.029622pt;}
.y527{bottom:650.105620pt;}
.y568{bottom:650.445606pt;}
.y72{bottom:650.813639pt;}
.y13f{bottom:650.928304pt;}
.y1ba{bottom:651.678021pt;}
.y1df{bottom:651.981669pt;}
.y110{bottom:651.986898pt;}
.y221{bottom:651.986928pt;}
.y36e{bottom:651.986938pt;}
.ydb{bottom:651.989614pt;}
.y243{bottom:652.111084pt;}
.y447{bottom:657.314910pt;}
.y44e{bottom:657.348910pt;}
.y2cb{bottom:660.320231pt;}
.y395{bottom:660.619632pt;}
.y3a1{bottom:660.676299pt;}
.y334{bottom:661.560686pt;}
.y29b{bottom:661.594688pt;}
.y526{bottom:663.433620pt;}
.y567{bottom:663.773606pt;}
.y2f{bottom:666.187907pt;}
.ya6{bottom:666.696289pt;}
.y71{bottom:667.480306pt;}
.y13e{bottom:667.594971pt;}
.y1b7{bottom:668.304021pt;}
.y1de{bottom:668.648336pt;}
.y10f{bottom:668.653564pt;}
.y220{bottom:668.653595pt;}
.y36d{bottom:668.653605pt;}
.yda{bottom:668.656281pt;}
.y242{bottom:668.777751pt;}
.y3{bottom:668.977329pt;}
.y446{bottom:670.642910pt;}
.y44d{bottom:670.676910pt;}
.y394{bottom:673.947632pt;}
.y3a0{bottom:674.004299pt;}
.y3ab{bottom:674.060966pt;}
.y333{bottom:674.888686pt;}
.y33b{bottom:674.922683pt;}
.y525{bottom:676.761620pt;}
.y2ca{bottom:676.986898pt;}
.y566{bottom:677.101606pt;}
.y29a{bottom:678.232021pt;}
.y1b6{bottom:681.632021pt;}
.y1b9{bottom:681.643355pt;}
.y2e{bottom:682.854574pt;}
.ya5{bottom:683.362956pt;}
.y445{bottom:683.970910pt;}
.y4c6{bottom:683.982243pt;}
.y44c{bottom:684.004910pt;}
.y4cd{bottom:684.016243pt;}
.y70{bottom:684.146973pt;}
.y13d{bottom:684.261637pt;}
.y1dd{bottom:685.315002pt;}
.y10e{bottom:685.320231pt;}
.y21f{bottom:685.320262pt;}
.y36c{bottom:685.320272pt;}
.yd9{bottom:685.322947pt;}
.y241{bottom:685.444417pt;}
.y38b{bottom:687.241636pt;}
.y393{bottom:687.275632pt;}
.y39f{bottom:687.332299pt;}
.y3aa{bottom:687.388966pt;}
.y332{bottom:688.216686pt;}
.y33a{bottom:688.250683pt;}
.y524{bottom:690.089620pt;}
.y565{bottom:690.429606pt;}
.y299{bottom:691.560021pt;}
.y2c9{bottom:693.653564pt;}
.y1b5{bottom:694.960021pt;}
.y1b8{bottom:694.971355pt;}
.y4c0{bottom:697.287578pt;}
.y444{bottom:697.298910pt;}
.y4c5{bottom:697.310243pt;}
.y44b{bottom:697.332910pt;}
.y4cc{bottom:697.344243pt;}
.y45d{bottom:697.423577pt;}
.y2d{bottom:699.521240pt;}
.ya4{bottom:700.029622pt;}
.y38a{bottom:700.569636pt;}
.y392{bottom:700.603632pt;}
.y39e{bottom:700.660299pt;}
.y3a9{bottom:700.716966pt;}
.y6f{bottom:700.813639pt;}
.y13c{bottom:700.928304pt;}
.y331{bottom:701.544686pt;}
.y339{bottom:701.578683pt;}
.y1dc{bottom:701.981669pt;}
.y10d{bottom:701.986898pt;}
.y21e{bottom:701.986928pt;}
.y36b{bottom:701.986938pt;}
.yd8{bottom:701.989614pt;}
.y240{bottom:702.111084pt;}
.y183{bottom:702.467521pt;}
.y17e{bottom:702.467526pt;}
.y17d{bottom:702.467531pt;}
.y179{bottom:702.467536pt;}
.y175{bottom:702.467542pt;}
.y170{bottom:702.467561pt;}
.y16f{bottom:702.467564pt;}
.y16a{bottom:702.467584pt;}
.y165{bottom:702.467589pt;}
.y523{bottom:703.417620pt;}
.y564{bottom:703.757606pt;}
.y298{bottom:708.197355pt;}
.y2c8{bottom:710.320231pt;}
.y184{bottom:710.468854pt;}
.y171{bottom:710.468895pt;}
.y16b{bottom:710.468917pt;}
.y166{bottom:710.468923pt;}
.y4bb{bottom:710.604244pt;}
.y4bf{bottom:710.615578pt;}
.y443{bottom:710.626910pt;}
.y4c4{bottom:710.638243pt;}
.y44a{bottom:710.660910pt;}
.y4cb{bottom:710.672243pt;}
.y45c{bottom:710.751577pt;}
.y1b4{bottom:711.597355pt;}
.y383{bottom:713.874969pt;}
.y389{bottom:713.897636pt;}
.y391{bottom:713.931632pt;}
.y39d{bottom:713.988299pt;}
.y3a8{bottom:714.044966pt;}
.y330{bottom:714.872686pt;}
.y338{bottom:714.906683pt;}
.y2c{bottom:716.187907pt;}
.ya3{bottom:716.696289pt;}
.y522{bottom:716.745620pt;}
.y563{bottom:717.085606pt;}
.y6e{bottom:717.480306pt;}
.y13b{bottom:717.594971pt;}
.y1db{bottom:718.648336pt;}
.y10c{bottom:718.653564pt;}
.y21d{bottom:718.653595pt;}
.y36a{bottom:718.653605pt;}
.yd7{bottom:718.656281pt;}
.y297{bottom:721.525355pt;}
.y4ba{bottom:723.932244pt;}
.y4be{bottom:723.943578pt;}
.y442{bottom:723.954910pt;}
.y4c3{bottom:723.966243pt;}
.y449{bottom:723.988910pt;}
.y4ca{bottom:724.000243pt;}
.y45b{bottom:724.079577pt;}
.y2c7{bottom:726.986898pt;}
.y382{bottom:727.202969pt;}
.y388{bottom:727.225636pt;}
.y390{bottom:727.259632pt;}
.y39c{bottom:727.316299pt;}
.y3a7{bottom:727.372966pt;}
.y32f{bottom:728.200686pt;}
.y337{bottom:728.234683pt;}
.y1b3{bottom:728.234688pt;}
.y521{bottom:730.073620pt;}
.y562{bottom:730.413606pt;}
.y2b{bottom:732.854574pt;}
.ya2{bottom:733.362956pt;}
.y6d{bottom:734.146973pt;}
.y13a{bottom:734.261637pt;}
.y296{bottom:734.853355pt;}
.y1da{bottom:735.315002pt;}
.y10b{bottom:735.320231pt;}
.y21c{bottom:735.320262pt;}
.y369{bottom:735.320272pt;}
.yd6{bottom:735.322947pt;}
.y4b9{bottom:737.260244pt;}
.y4bd{bottom:737.271578pt;}
.y441{bottom:737.282910pt;}
.y4c2{bottom:737.294243pt;}
.y448{bottom:737.316910pt;}
.y4c9{bottom:737.328243pt;}
.y45a{bottom:737.407577pt;}
.y45e{bottom:737.418910pt;}
.y381{bottom:740.530969pt;}
.y387{bottom:740.553636pt;}
.y38f{bottom:740.587632pt;}
.y39b{bottom:740.644299pt;}
.y3a6{bottom:740.700966pt;}
.y32e{bottom:741.528686pt;}
.y336{bottom:741.562683pt;}
.y520{bottom:743.401620pt;}
.y2c6{bottom:743.653564pt;}
.y561{bottom:743.741606pt;}
.y1b2{bottom:744.872021pt;}
.y2a{bottom:749.521240pt;}
.ya1{bottom:750.029622pt;}
.y4b8{bottom:750.588244pt;}
.y4bc{bottom:750.599578pt;}
.y4c1{bottom:750.622243pt;}
.y4c7{bottom:750.644909pt;}
.y4c8{bottom:750.656243pt;}
.y6c{bottom:750.813639pt;}
.y139{bottom:750.928304pt;}
.y295{bottom:751.490688pt;}
.y1d9{bottom:751.981669pt;}
.y10a{bottom:751.986898pt;}
.y21b{bottom:751.986928pt;}
.y368{bottom:751.986938pt;}
.yd5{bottom:751.989614pt;}
.y380{bottom:753.858969pt;}
.y386{bottom:753.881636pt;}
.y43c{bottom:753.897577pt;}
.y38e{bottom:753.915632pt;}
.y39a{bottom:753.972299pt;}
.y3a5{bottom:754.028966pt;}
.y51f{bottom:756.729620pt;}
.y560{bottom:757.069606pt;}
.y289{bottom:758.132021pt;}
.y32d{bottom:758.166020pt;}
.y2c5{bottom:760.320231pt;}
.y1b1{bottom:761.509355pt;}
.y294{bottom:764.818688pt;}
.y29{bottom:766.187907pt;}
.ya0{bottom:766.696289pt;}
.y37f{bottom:767.186969pt;}
.y385{bottom:767.209636pt;}
.y43b{bottom:767.225577pt;}
.y38d{bottom:767.243632pt;}
.y4ad{bottom:767.248244pt;}
.y4b3{bottom:767.270911pt;}
.y399{bottom:767.300299pt;}
.y3a4{bottom:767.356966pt;}
.y6b{bottom:767.480306pt;}
.y138{bottom:767.594971pt;}
.y1d8{bottom:768.648336pt;}
.y109{bottom:768.653564pt;}
.y21a{bottom:768.653595pt;}
.y367{bottom:768.653605pt;}
.yd4{bottom:768.656281pt;}
.y51e{bottom:770.057620pt;}
.y55f{bottom:770.397606pt;}
.y288{bottom:771.460021pt;}
.y327{bottom:771.471355pt;}
.y32c{bottom:771.494020pt;}
.y2c4{bottom:776.986898pt;}
.y1b0{bottom:778.146688pt;}
.y37e{bottom:780.514969pt;}
.y384{bottom:780.537636pt;}
.y43a{bottom:780.553577pt;}
.y38c{bottom:780.571632pt;}
.y4ac{bottom:780.576244pt;}
.y4b2{bottom:780.598911pt;}
.y398{bottom:780.628299pt;}
.y3a3{bottom:780.684966pt;}
.y293{bottom:781.456021pt;}
.y2{bottom:781.661334pt;}
.y9f{bottom:783.362956pt;}
.y51d{bottom:783.385620pt;}
.y55e{bottom:783.725606pt;}
.y6a{bottom:784.146973pt;}
.y137{bottom:784.261637pt;}
.y326{bottom:784.799355pt;}
.y32b{bottom:784.822020pt;}
.y1d7{bottom:785.315002pt;}
.y108{bottom:785.320231pt;}
.y219{bottom:785.320262pt;}
.y366{bottom:785.320272pt;}
.yd3{bottom:785.322947pt;}
.y287{bottom:788.165355pt;}
.y1af{bottom:791.474688pt;}
.y2c3{bottom:793.653564pt;}
.y439{bottom:793.881577pt;}
.y4ab{bottom:793.904244pt;}
.y4b1{bottom:793.926911pt;}
.y4b7{bottom:793.949578pt;}
.y292{bottom:794.784021pt;}
.y51c{bottom:796.713620pt;}
.y55d{bottom:797.053606pt;}
.y325{bottom:798.127355pt;}
.y32a{bottom:798.150020pt;}
.y9e{bottom:800.029622pt;}
.y69{bottom:800.813639pt;}
.y136{bottom:800.928304pt;}
.y286{bottom:801.493355pt;}
.y1d6{bottom:801.981669pt;}
.y107{bottom:801.986898pt;}
.y218{bottom:801.986928pt;}
.y365{bottom:801.986938pt;}
.yd2{bottom:801.989614pt;}
.y1ae{bottom:804.802688pt;}
.y28{bottom:805.461469pt;}
.y37d{bottom:805.482303pt;}
.y433{bottom:807.186912pt;}
.y438{bottom:807.209577pt;}
.y4aa{bottom:807.232244pt;}
.y4b0{bottom:807.254911pt;}
.y4b6{bottom:807.277578pt;}
.y291{bottom:808.112021pt;}
.y51b{bottom:810.041620pt;}
.y2c2{bottom:810.320231pt;}
.y55c{bottom:810.381606pt;}
.y324{bottom:811.455355pt;}
.y329{bottom:811.478020pt;}
.y9d{bottom:816.696289pt;}
.y68{bottom:817.480306pt;}
.y135{bottom:817.594971pt;}
.y1ad{bottom:818.130688pt;}
.y1d5{bottom:818.648336pt;}
.y106{bottom:818.653564pt;}
.y217{bottom:818.653595pt;}
.y364{bottom:818.653605pt;}
.yd1{bottom:818.656281pt;}
.y27{bottom:818.789469pt;}
.y37c{bottom:818.810303pt;}
.y432{bottom:820.514912pt;}
.y437{bottom:820.537577pt;}
.y4a9{bottom:820.560244pt;}
.y4af{bottom:820.582911pt;}
.y4b5{bottom:820.605578pt;}
.y51a{bottom:823.369620pt;}
.y55b{bottom:823.709606pt;}
.y290{bottom:824.749355pt;}
.y323{bottom:824.783355pt;}
.y328{bottom:824.806020pt;}
.y2c1{bottom:826.986898pt;}
.y1ac{bottom:831.458688pt;}
.y9c{bottom:833.362956pt;}
.y431{bottom:833.842912pt;}
.y436{bottom:833.865577pt;}
.y4a8{bottom:833.888244pt;}
.y43f{bottom:833.910907pt;}
.y4ae{bottom:833.910911pt;}
.y4b4{bottom:833.933578pt;}
.y67{bottom:834.146973pt;}
.y134{bottom:834.261637pt;}
.y285{bottom:834.768021pt;}
.y1d4{bottom:835.315002pt;}
.y105{bottom:835.320231pt;}
.y216{bottom:835.320262pt;}
.y363{bottom:835.320272pt;}
.yd0{bottom:835.322947pt;}
.y519{bottom:836.697620pt;}
.y55a{bottom:837.037606pt;}
.y28f{bottom:838.077355pt;}
.y31b{bottom:841.386688pt;}
.y322{bottom:841.420688pt;}
.y2c0{bottom:843.653564pt;}
.y430{bottom:847.170912pt;}
.y435{bottom:847.193577pt;}
.y43e{bottom:847.238907pt;}
.y1ab{bottom:848.096021pt;}
.y37b{bottom:849.154785pt;}
.y518{bottom:850.025620pt;}
.y9b{bottom:850.029622pt;}
.y559{bottom:850.365606pt;}
.y495{bottom:850.446246pt;}
.y66{bottom:850.813639pt;}
.y133{bottom:850.928304pt;}
.y28e{bottom:851.405355pt;}
.y1d3{bottom:851.981669pt;}
.y104{bottom:851.986898pt;}
.y215{bottom:851.986928pt;}
.y362{bottom:851.986938pt;}
.ycf{bottom:851.989614pt;}
.y31a{bottom:854.714688pt;}
.y321{bottom:854.748688pt;}
.y26{bottom:856.656169pt;}
.y1{bottom:859.312000pt;}
.y2bf{bottom:860.320231pt;}
.y42f{bottom:860.498912pt;}
.y434{bottom:860.521577pt;}
.y43d{bottom:860.566907pt;}
.y440{bottom:860.578240pt;}
.y517{bottom:863.353620pt;}
.y558{bottom:863.693606pt;}
.y494{bottom:863.774246pt;}
.y49e{bottom:863.819579pt;}
.y1aa{bottom:864.733355pt;}
.y9a{bottom:866.696289pt;}
.y65{bottom:867.480306pt;}
.y132{bottom:867.594971pt;}
.y28d{bottom:868.042688pt;}
.y320{bottom:868.076688pt;}
.y1d2{bottom:868.648336pt;}
.y103{bottom:868.653564pt;}
.y214{bottom:868.653595pt;}
.y361{bottom:868.653605pt;}
.yce{bottom:868.656281pt;}
.y596{bottom:875.684306pt;}
.y516{bottom:876.681620pt;}
.y2be{bottom:876.986898pt;}
.y557{bottom:877.021606pt;}
.y493{bottom:877.102246pt;}
.y428{bottom:877.113579pt;}
.y42d{bottom:877.136244pt;}
.y49d{bottom:877.147579pt;}
.y4a3{bottom:877.170246pt;}
.y284{bottom:878.061355pt;}
.y1a9{bottom:881.370688pt;}
.y31f{bottom:881.404688pt;}
.y37a{bottom:882.488118pt;}
.y99{bottom:883.362956pt;}
.y64{bottom:884.146973pt;}
.y131{bottom:884.261637pt;}
.y1d1{bottom:885.315002pt;}
.y102{bottom:885.320231pt;}
.y213{bottom:885.320262pt;}
.y360{bottom:885.320272pt;}
.ycd{bottom:885.322947pt;}
.y595{bottom:889.012306pt;}
.y515{bottom:890.009620pt;}
.y556{bottom:890.349606pt;}
.y492{bottom:890.430246pt;}
.y427{bottom:890.441579pt;}
.y42c{bottom:890.464244pt;}
.y49c{bottom:890.475579pt;}
.y4a2{bottom:890.498246pt;}
.y4a7{bottom:890.520911pt;}
.y2bd{bottom:893.653564pt;}
.y1a8{bottom:894.698688pt;}
.y31e{bottom:894.732688pt;}
.y25{bottom:896.377441pt;}
.y98{bottom:900.029622pt;}
.y63{bottom:900.813639pt;}
.y130{bottom:900.928304pt;}
.y1d0{bottom:901.981669pt;}
.y101{bottom:901.986898pt;}
.y212{bottom:901.986928pt;}
.y35f{bottom:901.986938pt;}
.ycc{bottom:901.989614pt;}
.y594{bottom:902.340306pt;}
.y514{bottom:903.337620pt;}
.y555{bottom:903.677606pt;}
.y423{bottom:903.758246pt;}
.y426{bottom:903.769579pt;}
.y42b{bottom:903.792244pt;}
.y498{bottom:903.792246pt;}
.y49b{bottom:903.803579pt;}
.y4a1{bottom:903.826246pt;}
.y4a6{bottom:903.848911pt;}
.y1a7{bottom:908.026688pt;}
.y31d{bottom:908.060688pt;}
.y34b{bottom:910.320231pt;}
.y593{bottom:915.668306pt;}
.y513{bottom:916.665620pt;}
.y97{bottom:916.696289pt;}
.y554{bottom:917.005606pt;}
.y422{bottom:917.086246pt;}
.y425{bottom:917.097579pt;}
.y42a{bottom:917.120244pt;}
.y497{bottom:917.120246pt;}
.y49a{bottom:917.131579pt;}
.y4a0{bottom:917.154246pt;}
.y4a5{bottom:917.176911pt;}
.y62{bottom:917.480306pt;}
.y12f{bottom:917.594971pt;}
.y1cf{bottom:918.648336pt;}
.y100{bottom:918.653564pt;}
.y211{bottom:918.653595pt;}
.y35e{bottom:918.653605pt;}
.ycb{bottom:918.656281pt;}
.y1a6{bottom:921.354688pt;}
.y31c{bottom:921.388688pt;}
.y592{bottom:928.996306pt;}
.y512{bottom:929.993620pt;}
.y553{bottom:930.333606pt;}
.y421{bottom:930.414246pt;}
.y424{bottom:930.425579pt;}
.y429{bottom:930.448244pt;}
.y496{bottom:930.448246pt;}
.y499{bottom:930.459579pt;}
.y42e{bottom:930.470909pt;}
.y49f{bottom:930.482246pt;}
.y4a4{bottom:930.504911pt;}
.y283{bottom:932.994021pt;}
.y96{bottom:933.362956pt;}
.y379{bottom:934.146898pt;}
.y61{bottom:934.146973pt;}
.y12e{bottom:934.261637pt;}
.y1ce{bottom:935.315002pt;}
.yff{bottom:935.320231pt;}
.y210{bottom:935.320262pt;}
.y35d{bottom:935.320272pt;}
.yca{bottom:935.322947pt;}
.y591{bottom:942.324306pt;}
.y511{bottom:943.321620pt;}
.y552{bottom:943.661606pt;}
.y1a5{bottom:946.322021pt;}
.y420{bottom:950.474246pt;}
.y378{bottom:950.813564pt;}
.y60{bottom:950.813639pt;}
.y1cd{bottom:951.981669pt;}
.yfe{bottom:951.986898pt;}
.y20f{bottom:951.986928pt;}
.y35c{bottom:951.986938pt;}
.yc9{bottom:951.989614pt;}
.y590{bottom:955.652306pt;}
.y598{bottom:955.686302pt;}
.y24{bottom:956.561849pt;}
.y510{bottom:956.649620pt;}
.y551{bottom:956.989606pt;}
.y41f{bottom:963.802246pt;}
.y95{bottom:966.696289pt;}
.y377{bottom:967.480231pt;}
.y5f{bottom:967.480306pt;}
.y12d{bottom:967.594971pt;}
.y1cc{bottom:968.648336pt;}
.yfd{bottom:968.653564pt;}
.y20e{bottom:968.653595pt;}
.y35b{bottom:968.653605pt;}
.yc8{bottom:968.656281pt;}
.y1a4{bottom:968.980306pt;}
.y597{bottom:969.014302pt;}
.y50f{bottom:969.977620pt;}
.y550{bottom:970.317606pt;}
.y23{bottom:986.299161pt;}
.y22{bottom:1001.406494pt;}
.y5e{bottom:1002.206543pt;}
.y94{bottom:1002.206706pt;}
.h16{height:22.403733pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.hc{height:30.080000pt;}
.h14{height:32.005333pt;}
.h15{height:32.760417pt;}
.h12{height:37.653333pt;}
.hd{height:39.712000pt;}
.h19{height:40.165333pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h1c{height:46.376000pt;}
.h13{height:47.253333pt;}
.h1a{height:47.690667pt;}
.h2{height:49.024000pt;}
.he{height:49.298667pt;}
.h18{height:52.448000pt;}
.h11{height:52.746667pt;}
.h1b{height:54.560000pt;}
.h10{height:57.658667pt;}
.h17{height:63.296000pt;}
.h5{height:69.450667pt;}
.hf{height:75.605333pt;}
.h1d{height:85.317333pt;}
.h4{height:105.826671pt;}
.ha{height:1054.488000pt;}
.hb{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x7{left:75.717199pt;}
.xb{left:83.149602pt;}
.xa{left:86.929867pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x37{left:98.209462pt;}
.xd{left:99.189738pt;}
.x38{left:122.802796pt;}
.xe{left:124.157071pt;}
.x39{left:136.130796pt;}
.xf{left:137.485071pt;}
.x54{left:145.347487pt;}
.x3a{left:149.458796pt;}
.x10{left:150.813071pt;}
.x4b{left:153.700135pt;}
.x4c{left:161.701470pt;}
.x3b{left:162.786796pt;}
.x11{left:164.141071pt;}
.x4e{left:169.782143pt;}
.x3c{left:176.114796pt;}
.x12{left:177.469071pt;}
.x4{left:180.874667pt;}
.x44{left:184.039469pt;}
.x3d{left:189.442796pt;}
.x13{left:190.797071pt;}
.x3e{left:206.148129pt;}
.x14{left:207.423071pt;}
.x3f{left:219.476129pt;}
.x15{left:220.751071pt;}
.x41{left:223.513563pt;}
.x16{left:234.079071pt;}
.x51{left:237.340133pt;}
.x4d{left:239.096816pt;}
.x55{left:245.352821pt;}
.x17{left:247.407071pt;}
.x18{left:260.735071pt;}
.x19{left:274.063071pt;}
.x45{left:278.752114pt;}
.x1a{left:287.391071pt;}
.x1b{left:300.719071pt;}
.x1c{left:317.345073pt;}
.x1d{left:330.673073pt;}
.x1e{left:344.001073pt;}
.x42{left:351.183563pt;}
.x1f{left:357.329073pt;}
.x20{left:370.657073pt;}
.x21{left:387.271741pt;}
.x46{left:394.658114pt;}
.x4f{left:397.695476pt;}
.x22{left:400.599741pt;}
.x3{left:404.408000pt;}
.x50{left:405.696809pt;}
.x8{left:408.191457pt;}
.x23{left:413.927741pt;}
.x56{left:417.721483pt;}
.x9{left:423.311468pt;}
.x57{left:425.722816pt;}
.x24{left:427.255741pt;}
.x5a{left:430.868125pt;}
.x25{left:440.583741pt;}
.x26{left:457.209743pt;}
.x27{left:470.537743pt;}
.x40{left:478.660912pt;}
.x28{left:483.865743pt;}
.x29{left:497.193743pt;}
.x47{left:502.562781pt;}
.x48{left:510.564114pt;}
.x2a{left:513.831076pt;}
.x52{left:520.242799pt;}
.x2b{left:527.159076pt;}
.x58{left:528.255479pt;}
.x2c{left:540.487076pt;}
.x2d{left:553.815076pt;}
.x2e{left:570.452409pt;}
.x2f{left:583.780409pt;}
.x30{left:597.108409pt;}
.x31{left:610.436409pt;}
.x49{left:618.468781pt;}
.x32{left:623.764409pt;}
.x4a{left:626.470114pt;}
.x53{left:631.048799pt;}
.x33{left:637.092409pt;}
.x59{left:639.061479pt;}
.x5{left:647.307210pt;}
.x34{left:650.420409pt;}
.x35{left:663.748409pt;}
.x36{left:677.076409pt;}
.x43{left:714.902832pt;}
.xc{left:720.285970pt;}
}




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