
    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_4ad107f985c842282fd75f0a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.923000;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_c62ee0fddc5414db53711c72.woff')format("woff");}.ff2{font-family:ff2;line-height:0.950000;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_6f080a6d8ad6b803ad1b539a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.926000;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_318e22e6fc252f1e3c67fc03.woff')format("woff");}.ff4{font-family:ff4;line-height:1.021000;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_3148f7b7b0fdd00871739ead.woff')format("woff");}.ff5{font-family:ff5;line-height:0.926000;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_f719ddd65947df41fdc02b81.woff')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_c3b95f3ada63409d262586b1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.918000;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_641269e4bd87fe7f83d5e81d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.388000;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_6fa7a5407d18dd294646ea1f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.932000;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_bce5198db54614cbe3e733fb.woff')format("woff");}.ffa{font-family:ffa;line-height:0.900000;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_335ca5dbbe24174530ac110d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.030000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,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);}
.v1{vertical-align:-19.632000px;}
.v8{vertical-align:-11.628000px;}
.v4{vertical-align:-10.458000px;}
.v5{vertical-align:-6.480000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:10.464000px;}
.v7{vertical-align:11.628000px;}
.v6{vertical-align:19.632000px;}
.v3{vertical-align:23.892000px;}
.ls0{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.000008px;}
.ls3{letter-spacing:0.001460px;}
.ls25{letter-spacing:0.640330px;}
.ls33{letter-spacing:0.787615px;}
.lsf{letter-spacing:5.379825px;}
.ls1{letter-spacing:11.953386px;}
.ls2f{letter-spacing:13.826803px;}
.ls26{letter-spacing:14.224330px;}
.ls1d{letter-spacing:14.434860px;}
.ls6{letter-spacing:14.618803px;}
.ls1f{letter-spacing:14.764860px;}
.ls3c{letter-spacing:16.490168px;}
.ls3d{letter-spacing:16.496168px;}
.ls9{letter-spacing:16.734597px;}
.ls3a{letter-spacing:17.618803px;}
.ls1e{letter-spacing:18.004860px;}
.ls3e{letter-spacing:18.050549px;}
.ls20{letter-spacing:18.292860px;}
.ls15{letter-spacing:18.434803px;}
.lse{letter-spacing:19.329784px;}
.ls2{letter-spacing:19.352803px;}
.ls11{letter-spacing:19.364803px;}
.ls10{letter-spacing:19.406803px;}
.ls5{letter-spacing:19.482597px;}
.ls32{letter-spacing:19.754803px;}
.ls34{letter-spacing:19.879615px;}
.ls12{letter-spacing:19.922803px;}
.ls38{letter-spacing:20.084803px;}
.ls14{letter-spacing:21.386803px;}
.ls1c{letter-spacing:22.694803px;}
.ls36{letter-spacing:22.802168px;}
.ls29{letter-spacing:24.259002px;}
.ls16{letter-spacing:24.265002px;}
.ls22{letter-spacing:24.722803px;}
.ls1b{letter-spacing:24.818803px;}
.ls2d{letter-spacing:26.174803px;}
.ls23{letter-spacing:27.470803px;}
.ls2a{letter-spacing:27.896803px;}
.ls27{letter-spacing:28.880803px;}
.ls37{letter-spacing:29.048803px;}
.ls2e{letter-spacing:29.618803px;}
.ls39{letter-spacing:29.684803px;}
.ls35{letter-spacing:31.046803px;}
.ls19{letter-spacing:31.640803px;}
.ls7{letter-spacing:31.836597px;}
.ls1a{letter-spacing:31.868803px;}
.lsd{letter-spacing:32.726700px;}
.ls30{letter-spacing:32.732700px;}
.ls21{letter-spacing:32.992860px;}
.ls13{letter-spacing:33.212803px;}
.ls18{letter-spacing:33.764803px;}
.ls8{letter-spacing:33.816597px;}
.ls24{letter-spacing:37.400803px;}
.ls4{letter-spacing:39.438597px;}
.ls17{letter-spacing:40.772803px;}
.ls2c{letter-spacing:42.524803px;}
.ls2b{letter-spacing:45.776803px;}
.lsc{letter-spacing:672.185729px;}
.lsa{letter-spacing:672.197607px;}
.ls3b{letter-spacing:672.209679px;}
.lsb{letter-spacing:672.209705px;}
.ls31{letter-spacing:672.209714px;}
.ls28{letter-spacing:672.209723px;}
.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;}
}
.ws66{word-spacing:-16.494559px;}
.wsbe{word-spacing:-16.225552px;}
.ws1f0{word-spacing:-15.063451px;}
.ws11{word-spacing:-13.557197px;}
.ws17f{word-spacing:-12.050791px;}
.wsc4{word-spacing:-10.845727px;}
.ws1d9{word-spacing:-6.610915px;}
.ws86{word-spacing:-5.433638px;}
.ws1bf{word-spacing:-3.927276px;}
.ws18e{word-spacing:-3.272730px;}
.wsf5{word-spacing:-3.207275px;}
.ws70{word-spacing:-2.749093px;}
.wsaf{word-spacing:-2.683639px;}
.ws1dc{word-spacing:-2.552729px;}
.wsa1{word-spacing:-2.487275px;}
.ws13{word-spacing:-2.420928px;}
.ws120{word-spacing:-2.356366px;}
.wsf3{word-spacing:-2.160002px;}
.ws115{word-spacing:-2.094547px;}
.ws114{word-spacing:-2.054423px;}
.ws5c{word-spacing:-2.029093px;}
.ws17a{word-spacing:-1.963638px;}
.ws118{word-spacing:-1.767517px;}
.ws119{word-spacing:-1.767274px;}
.ws117{word-spacing:-1.730828px;}
.wsd2{word-spacing:-1.701820px;}
.ws19d{word-spacing:-1.636365px;}
.wsd3{word-spacing:-1.570910px;}
.wseb{word-spacing:-1.560154px;}
.ws1c2{word-spacing:-1.440001px;}
.ws103{word-spacing:-1.398758px;}
.wsdf{word-spacing:-1.374547px;}
.ws12b{word-spacing:-1.344960px;}
.ws14a{word-spacing:-1.309092px;}
.ws6e{word-spacing:-1.243637px;}
.wse9{word-spacing:-1.178183px;}
.ws1d8{word-spacing:-1.112728px;}
.ws15b{word-spacing:-1.075968px;}
.ws163{word-spacing:-1.047274px;}
.ws2a{word-spacing:-0.981819px;}
.ws14e{word-spacing:-0.916364px;}
.ws68{word-spacing:-0.850910px;}
.wsa2{word-spacing:-0.785455px;}
.ws129{word-spacing:-0.753178px;}
.ws127{word-spacing:-0.699379px;}
.wsb2{word-spacing:-0.654546px;}
.ws13f{word-spacing:-0.645581px;}
.ws13e{word-spacing:-0.591782px;}
.ws17b{word-spacing:-0.589091px;}
.ws21{word-spacing:-0.537984px;}
.ws113{word-spacing:-0.484186px;}
.ws37{word-spacing:-0.458182px;}
.ws7d{word-spacing:-0.392728px;}
.ws26{word-spacing:-0.327273px;}
.ws111{word-spacing:-0.289498px;}
.ws112{word-spacing:-0.268992px;}
.wsf0{word-spacing:-0.261818px;}
.ws106{word-spacing:-0.215194px;}
.ws1dd{word-spacing:-0.130909px;}
.wsff{word-spacing:-0.065455px;}
.ws1a5{word-spacing:-0.053935px;}
.ws1e7{word-spacing:-0.049256px;}
.wsc{word-spacing:-0.044330px;}
.wsd1{word-spacing:-0.004003px;}
.ws101{word-spacing:-0.002928px;}
.ws2{word-spacing:-0.000600px;}
.ws4{word-spacing:0.000000px;}
.ws1ca{word-spacing:0.000460px;}
.ws15c{word-spacing:0.023462px;}
.wsed{word-spacing:0.053798px;}
.ws69{word-spacing:0.065455px;}
.wsfa{word-spacing:0.130909px;}
.wsd{word-spacing:0.161395px;}
.ws1f2{word-spacing:0.179327px;}
.wsd5{word-spacing:0.196364px;}
.ws84{word-spacing:0.215194px;}
.ws1f3{word-spacing:0.239102px;}
.ws31{word-spacing:0.261818px;}
.ws45{word-spacing:0.268992px;}
.ws185{word-spacing:0.322790px;}
.ws28{word-spacing:0.327273px;}
.ws16a{word-spacing:0.333552px;}
.ws175{word-spacing:0.376589px;}
.wsa0{word-spacing:0.392728px;}
.ws186{word-spacing:0.430387px;}
.wsce{word-spacing:0.458182px;}
.ws1b6{word-spacing:0.484186px;}
.wscd{word-spacing:0.523637px;}
.ws1fd{word-spacing:0.537980px;}
.ws89{word-spacing:0.537984px;}
.ws122{word-spacing:0.589091px;}
.wse6{word-spacing:0.591782px;}
.ws1ec{word-spacing:0.597756px;}
.wse{word-spacing:0.645581px;}
.ws1f1{word-spacing:0.647633px;}
.ws61{word-spacing:0.654546px;}
.ws90{word-spacing:0.699379px;}
.ws1fa{word-spacing:0.717307px;}
.ws38{word-spacing:0.720001px;}
.ws71{word-spacing:0.785455px;}
.ws91{word-spacing:0.806976px;}
.ws6f{word-spacing:0.850910px;}
.ws4a{word-spacing:0.860774px;}
.ws5f{word-spacing:0.916364px;}
.ws105{word-spacing:0.968371px;}
.wsaa{word-spacing:0.981819px;}
.ws14d{word-spacing:1.047274px;}
.ws1b5{word-spacing:1.075968px;}
.wsb0{word-spacing:1.112728px;}
.ws1eb{word-spacing:1.131570px;}
.wsdb{word-spacing:1.178183px;}
.ws1ff{word-spacing:1.195512px;}
.ws16d{word-spacing:1.237363px;}
.ws179{word-spacing:1.243637px;}
.ws16{word-spacing:1.291162px;}
.ws162{word-spacing:1.309092px;}
.ws46{word-spacing:1.344960px;}
.ws6d{word-spacing:1.374547px;}
.ws1ea{word-spacing:1.374839px;}
.ws47{word-spacing:1.398758px;}
.ws51{word-spacing:1.410386px;}
.ws7b{word-spacing:1.440001px;}
.ws18{word-spacing:1.452557px;}
.ws207{word-spacing:1.494390px;}
.ws29{word-spacing:1.505456px;}
.ws41{word-spacing:1.506355px;}
.ws116{word-spacing:1.513810px;}
.ws1f5{word-spacing:1.559194px;}
.wsc3{word-spacing:1.560154px;}
.wsb3{word-spacing:1.570910px;}
.ws96{word-spacing:1.613952px;}
.wsb5{word-spacing:1.636365px;}
.ws104{word-spacing:1.667750px;}
.ws5b{word-spacing:1.701820px;}
.ws4c{word-spacing:1.721549px;}
.ws1ee{word-spacing:1.733492px;}
.ws36{word-spacing:1.767274px;}
.ws1d5{word-spacing:1.775347px;}
.ws11c{word-spacing:1.788091px;}
.ws85{word-spacing:1.829146px;}
.wse2{word-spacing:1.832729px;}
.ws5e{word-spacing:1.898183px;}
.ws79{word-spacing:1.917725px;}
.ws78{word-spacing:1.918186px;}
.ws108{word-spacing:1.936742px;}
.wsd0{word-spacing:1.963638px;}
.ws8d{word-spacing:1.990541px;}
.ws2c{word-spacing:2.029093px;}
.ws1fb{word-spacing:2.032370px;}
.ws16c{word-spacing:2.044339px;}
.wsde{word-spacing:2.094547px;}
.wsc2{word-spacing:2.151936px;}
.ws3a{word-spacing:2.160002px;}
.ws1a{word-spacing:2.205734px;}
.ws35{word-spacing:2.225456px;}
.ws126{word-spacing:2.259533px;}
.ws1f9{word-spacing:2.271473px;}
.ws72{word-spacing:2.290911px;}
.ws56{word-spacing:2.309030px;}
.ws3f{word-spacing:2.313331px;}
.ws58{word-spacing:2.356366px;}
.ws4d{word-spacing:2.367130px;}
.ws1fc{word-spacing:2.391024px;}
.wsfb{word-spacing:2.421820px;}
.wscb{word-spacing:2.474726px;}
.wse1{word-spacing:2.487275px;}
.ws42{word-spacing:2.528525px;}
.ws64{word-spacing:2.552729px;}
.ws10e{word-spacing:2.582323px;}
.ws17c{word-spacing:2.618184px;}
.ws198{word-spacing:2.636122px;}
.ws32{word-spacing:2.683639px;}
.ws43{word-spacing:2.689920px;}
.ws1d{word-spacing:2.742278px;}
.ws82{word-spacing:2.743718px;}
.wsad{word-spacing:2.749093px;}
.ws44{word-spacing:2.763293px;}
.ws169{word-spacing:2.797517px;}
.ws18a{word-spacing:2.804499px;}
.ws1f6{word-spacing:2.809453px;}
.ws63{word-spacing:2.814548px;}
.wsa7{word-spacing:2.841096px;}
.ws87{word-spacing:2.851315px;}
.ws178{word-spacing:2.880002px;}
.ws10{word-spacing:2.905114px;}
.wsb1{word-spacing:2.945457px;}
.ws10d{word-spacing:2.958912px;}
.ws1ef{word-spacing:2.988780px;}
.ws7a{word-spacing:3.010912px;}
.ws19c{word-spacing:3.012710px;}
.ws40{word-spacing:3.066509px;}
.ws6b{word-spacing:3.076366px;}
.ws5{word-spacing:3.120307px;}
.ws65{word-spacing:3.141821px;}
.ws8e{word-spacing:3.174106px;}
.ws18d{word-spacing:3.207275px;}
.ws208{word-spacing:3.227882px;}
.ws5a{word-spacing:3.227904px;}
.ws60{word-spacing:3.272730px;}
.ws183{word-spacing:3.281702px;}
.ws1f4{word-spacing:3.287658px;}
.ws8c{word-spacing:3.335501px;}
.ws2e{word-spacing:3.338185px;}
.ws155{word-spacing:3.389299px;}
.wsd8{word-spacing:3.403639px;}
.ws67{word-spacing:3.469094px;}
.ws107{word-spacing:3.496896px;}
.ws59{word-spacing:3.534548px;}
.wse5{word-spacing:3.550694px;}
.ws20d{word-spacing:3.586536px;}
.wsfc{word-spacing:3.600003px;}
.ws147{word-spacing:3.604493px;}
.wsf{word-spacing:3.658291px;}
.wsb7{word-spacing:3.665458px;}
.ws17{word-spacing:3.712090px;}
.ws62{word-spacing:3.730912px;}
.ws4e{word-spacing:3.765888px;}
.wsd4{word-spacing:3.796367px;}
.ws83{word-spacing:3.819686px;}
.wsb{word-spacing:3.843552px;}
.ws11a{word-spacing:3.861821px;}
.ws154{word-spacing:3.873485px;}
.ws7e{word-spacing:3.922822px;}
.ws27{word-spacing:3.927276px;}
.ws80{word-spacing:3.927283px;}
.ws200{word-spacing:3.945190px;}
.ws140{word-spacing:3.981082px;}
.wsf2{word-spacing:3.992731px;}
.wsbd{word-spacing:4.034880px;}
.ws180{word-spacing:4.058185px;}
.ws8f{word-spacing:4.088678px;}
.ws165{word-spacing:4.123640px;}
.ws1e9{word-spacing:4.124516px;}
.ws19b{word-spacing:4.142477px;}
.wse8{word-spacing:4.188720px;}
.wsd7{word-spacing:4.189094px;}
.ws52{word-spacing:4.196275px;}
.wsbf{word-spacing:4.205914px;}
.wsc0{word-spacing:4.209610px;}
.ws20c{word-spacing:4.244068px;}
.ws15d{word-spacing:4.250074px;}
.ws1b8{word-spacing:4.254230px;}
.ws2d{word-spacing:4.254549px;}
.wsec{word-spacing:4.303872px;}
.ws1f7{word-spacing:4.363619px;}
.ws124{word-spacing:4.385458px;}
.ws16f{word-spacing:4.411469px;}
.ws11d{word-spacing:4.450913px;}
.ws92{word-spacing:4.465267px;}
.ws7c{word-spacing:4.516367px;}
.wsa{word-spacing:4.519066px;}
.ws1f{word-spacing:4.566307px;}
.ws6a{word-spacing:4.581822px;}
.ws8{word-spacing:4.589366px;}
.ws1e0{word-spacing:4.602721px;}
.ws12{word-spacing:4.626662px;}
.ws5d{word-spacing:4.647277px;}
.ws95{word-spacing:4.680461px;}
.ws76{word-spacing:4.712731px;}
.wsdd{word-spacing:4.778186px;}
.wsc8{word-spacing:4.788058px;}
.ws1c{word-spacing:4.841856px;}
.wse3{word-spacing:4.843640px;}
.ws97{word-spacing:4.895654px;}
.ws33{word-spacing:4.909095px;}
.ws19{word-spacing:4.947552px;}
.ws199{word-spacing:4.949453px;}
.wsb6{word-spacing:4.974550px;}
.ws201{word-spacing:5.021150px;}
.ws3c{word-spacing:5.040004px;}
.ws1f8{word-spacing:5.044238px;}
.ws9d{word-spacing:5.057050px;}
.wsbb{word-spacing:5.105459px;}
.ws1fe{word-spacing:5.140702px;}
.ws1b{word-spacing:5.164646px;}
.ws3d{word-spacing:5.170913px;}
.ws1ed{word-spacing:5.200477px;}
.wsca{word-spacing:5.218445px;}
.ws73{word-spacing:5.236368px;}
.ws48{word-spacing:5.272243px;}
.ws2f{word-spacing:5.301823px;}
.ws30{word-spacing:5.367277px;}
.ws88{word-spacing:5.379840px;}
.ws77{word-spacing:5.432732px;}
.ws9e{word-spacing:5.433638px;}
.ws4f{word-spacing:5.487437px;}
.ws137{word-spacing:5.498186px;}
.ws1e{word-spacing:5.541235px;}
.ws6c{word-spacing:5.563641px;}
.ws81{word-spacing:5.595034px;}
.ws3e{word-spacing:5.629096px;}
.ws54{word-spacing:5.648832px;}
.wsf8{word-spacing:5.694550px;}
.ws20{word-spacing:5.702630px;}
.ws7{word-spacing:5.756429px;}
.wsf9{word-spacing:5.760005px;}
.ws8a{word-spacing:5.810227px;}
.wsa5{word-spacing:5.825459px;}
.wsa3{word-spacing:5.831380px;}
.wsa4{word-spacing:5.835581px;}
.ws14{word-spacing:5.864026px;}
.wscc{word-spacing:5.890914px;}
.ws156{word-spacing:5.917824px;}
.wsb4{word-spacing:5.956369px;}
.ws1de{word-spacing:5.977560px;}
.wsab{word-spacing:6.021823px;}
.ws1b7{word-spacing:6.025421px;}
.ws1e8{word-spacing:6.037336px;}
.ws16b{word-spacing:6.079219px;}
.ws153{word-spacing:6.129139px;}
.ws1b4{word-spacing:6.133018px;}
.wsba{word-spacing:6.152732px;}
.ws188{word-spacing:6.186816px;}
.ws2b{word-spacing:6.218187px;}
.wsc9{word-spacing:6.240614px;}
.ws1aa{word-spacing:6.283642px;}
.ws9f{word-spacing:6.294413px;}
.ws98{word-spacing:6.348211px;}
.ws1ac{word-spacing:6.349096px;}
.wsa8{word-spacing:6.383650px;}
.ws20b{word-spacing:6.395989px;}
.ws12e{word-spacing:6.402010px;}
.ws57{word-spacing:6.414551px;}
.ws9c{word-spacing:6.455808px;}
.ws1d1{word-spacing:6.480005px;}
.ws10f{word-spacing:6.509606px;}
.ws17e{word-spacing:6.545460px;}
.wsda{word-spacing:6.610915px;}
.ws16e{word-spacing:6.642931px;}
.wsc6{word-spacing:6.671002px;}
.wscf{word-spacing:6.676369px;}
.ws14c{word-spacing:6.741824px;}
.ws141{word-spacing:6.778598px;}
.ws138{word-spacing:6.807278px;}
.ws189{word-spacing:6.832397px;}
.ws12f{word-spacing:6.886195px;}
.ws182{word-spacing:6.915449px;}
.ws1cc{word-spacing:6.938188px;}
.ws53{word-spacing:6.939994px;}
.ws171{word-spacing:6.959779px;}
.ws12c{word-spacing:6.993792px;}
.ws187{word-spacing:7.004108px;}
.wsa6{word-spacing:7.069097px;}
.ws110{word-spacing:7.101389px;}
.ws209{word-spacing:7.109072px;}
.ws3b{word-spacing:7.134551px;}
.ws170{word-spacing:7.155187px;}
.ws133{word-spacing:7.200006px;}
.ws1c4{word-spacing:7.308341px;}
.ws4b{word-spacing:7.314417px;}
.ws15{word-spacing:7.316582px;}
.ws1c6{word-spacing:7.317755px;}
.ws135{word-spacing:7.330915px;}
.ws194{word-spacing:7.396370px;}
.ws10c{word-spacing:7.424179px;}
.ws160{word-spacing:7.432403px;}
.wse7{word-spacing:7.447406px;}
.ws1a7{word-spacing:7.461824px;}
.wsea{word-spacing:7.527279px;}
.ws49{word-spacing:7.531776px;}
.ws159{word-spacing:7.585574px;}
.ws164{word-spacing:7.592734px;}
.ws17d{word-spacing:7.658188px;}
.ws10a{word-spacing:7.669055px;}
.wsc1{word-spacing:7.693171px;}
.ws1e4{word-spacing:7.711052px;}
.ws74{word-spacing:7.723643px;}
.ws148{word-spacing:7.757715px;}
.ws1e5{word-spacing:7.770828px;}
.ws25{word-spacing:7.854552px;}
.ws152{word-spacing:7.854566px;}
.ws13b{word-spacing:7.920007px;}
.ws131{word-spacing:8.069760px;}
.wsac{word-spacing:8.116370px;}
.ws100{word-spacing:8.181825px;}
.ws158{word-spacing:8.245343px;}
.ws121{word-spacing:8.247280px;}
.ws1d6{word-spacing:8.284954px;}
.ws1da{word-spacing:8.378189px;}
.ws145{word-spacing:8.422662px;}
.ws10b{word-spacing:8.500147px;}
.ws1a3{word-spacing:8.509098px;}
.wsc5{word-spacing:8.553946px;}
.wsdc{word-spacing:8.574553px;}
.ws1db{word-spacing:8.640007px;}
.wsb9{word-spacing:8.705462px;}
.ws128{word-spacing:8.709446px;}
.ws1c1{word-spacing:8.763725px;}
.ws1b1{word-spacing:8.770916px;}
.ws130{word-spacing:8.822938px;}
.wsbc{word-spacing:8.836371px;}
.ws1d7{word-spacing:8.876736px;}
.wsa9{word-spacing:8.901826px;}
.ws50{word-spacing:8.920646px;}
.ws144{word-spacing:8.922691px;}
.ws1ce{word-spacing:8.967280px;}
.wsef{word-spacing:8.984333px;}
.ws20a{word-spacing:9.112323px;}
.ws7f{word-spacing:9.145728px;}
.wsf7{word-spacing:9.226403px;}
.wsfe{word-spacing:9.298403px;}
.ws150{word-spacing:9.309258px;}
.ws18f{word-spacing:9.360008px;}
.ws12d{word-spacing:9.411523px;}
.ws99{word-spacing:9.414720px;}
.ws1bd{word-spacing:9.425462px;}
.ws184{word-spacing:9.442247px;}
.ws206{word-spacing:9.457114px;}
.ws151{word-spacing:9.486577px;}
.ws39{word-spacing:9.490917px;}
.ws13a{word-spacing:9.621826px;}
.ws15a{word-spacing:9.784493px;}
.ws193{word-spacing:9.818190px;}
.ws191{word-spacing:9.874403px;}
.ws125{word-spacing:9.883645px;}
.ws143{word-spacing:9.898906px;}
.ws1ad{word-spacing:9.998588px;}
.ws1af{word-spacing:10.014554px;}
.wsc7{word-spacing:10.114099px;}
.ws202{word-spacing:10.281403px;}
.wsf6{word-spacing:10.288403px;}
.ws203{word-spacing:10.341179px;}
.ws181{word-spacing:10.436890px;}
.ws1a9{word-spacing:10.538191px;}
.ws1e3{word-spacing:10.640057px;}
.ws1e2{word-spacing:10.699832px;}
.ws167{word-spacing:10.708646px;}
.ws75{word-spacing:10.942403px;}
.ws14b{word-spacing:10.948403px;}
.ws204{word-spacing:11.058486px;}
.ws93{word-spacing:11.152646px;}
.ws1d0{word-spacing:11.192737px;}
.wsf1{word-spacing:11.440403px;}
.wse4{word-spacing:11.580326px;}
.ws168{word-spacing:11.729654px;}
.wsd6{word-spacing:11.974403px;}
.ws109{word-spacing:11.997043px;}
.wsd9{word-spacing:12.028403px;}
.ws34{word-spacing:12.336037px;}
.ws1be{word-spacing:12.515998px;}
.ws177{word-spacing:12.796403px;}
.ws146{word-spacing:12.855642px;}
.ws1e6{word-spacing:13.397578px;}
.ws19a{word-spacing:13.516180px;}
.ws12a{word-spacing:13.671658px;}
.wse0{word-spacing:13.678403px;}
.ws205{word-spacing:14.136415px;}
.wsee{word-spacing:14.633165px;}
.ws123{word-spacing:14.704403px;}
.ws197{word-spacing:14.866814px;}
.ws1c3{word-spacing:15.005257px;}
.ws174{word-spacing:15.063552px;}
.ws142{word-spacing:15.386342px;}
.ws18c{word-spacing:16.232741px;}
.ws157{word-spacing:16.235453px;}
.ws1e1{word-spacing:16.258963px;}
.ws1cb{word-spacing:16.439257px;}
.ws1bc{word-spacing:16.442627px;}
.ws1b3{word-spacing:16.443369px;}
.ws1d4{word-spacing:16.443773px;}
.ws1bb{word-spacing:16.444515px;}
.ws1c8{word-spacing:16.600111px;}
.ws1a6{word-spacing:16.605773px;}
.ws190{word-spacing:16.810403px;}
.wsf4{word-spacing:16.876403px;}
.ws132{word-spacing:16.900403px;}
.ws9{word-spacing:17.054093px;}
.ws13c{word-spacing:17.062403px;}
.ws192{word-spacing:17.218403px;}
.ws18b{word-spacing:17.644403px;}
.ws14f{word-spacing:17.865235px;}
.ws13d{word-spacing:18.022464px;}
.ws149{word-spacing:18.291456px;}
.ws196{word-spacing:18.990835px;}
.ws3{word-spacing:19.510886px;}
.wsae{word-spacing:19.636403px;}
.ws1c7{word-spacing:19.674403px;}
.ws1b9{word-spacing:20.126223px;}
.ws1c9{word-spacing:20.200111px;}
.ws1b2{word-spacing:20.264223px;}
.ws55{word-spacing:20.281997px;}
.ws19f{word-spacing:20.458403px;}
.ws6{word-spacing:20.466230px;}
.ws1a0{word-spacing:20.738965px;}
.ws176{word-spacing:20.794403px;}
.ws1df{word-spacing:21.280114px;}
.ws23{word-spacing:21.605377px;}
.ws1a1{word-spacing:21.727414px;}
.ws20e{word-spacing:22.176748px;}
.ws9b{word-spacing:22.517318px;}
.ws1ab{word-spacing:22.755032px;}
.ws1d2{word-spacing:22.909144px;}
.ws11b{word-spacing:22.912403px;}
.ws134{word-spacing:23.266403px;}
.ws161{word-spacing:23.338403px;}
.ws1cd{word-spacing:23.384290px;}
.ws1c5{word-spacing:23.754740px;}
.ws166{word-spacing:23.824403px;}
.ws1a8{word-spacing:23.907773px;}
.ws0{word-spacing:24.005941px;}
.ws1a2{word-spacing:24.710290px;}
.ws1a4{word-spacing:24.964178px;}
.ws1c0{word-spacing:25.202223px;}
.ws1b0{word-spacing:25.235257px;}
.ws1cf{word-spacing:25.411886px;}
.ws1d3{word-spacing:26.313773px;}
.ws1ae{word-spacing:26.450965px;}
.ws136{word-spacing:26.866403px;}
.ws94{word-spacing:27.071641px;}
.ws9a{word-spacing:27.071957px;}
.ws8b{word-spacing:27.073418px;}
.ws15f{word-spacing:27.274403px;}
.ws24{word-spacing:28.095533px;}
.wsfd{word-spacing:28.624403px;}
.ws1ba{word-spacing:29.524403px;}
.ws15e{word-spacing:30.100403px;}
.ws195{word-spacing:32.414695px;}
.wsb8{word-spacing:32.596403px;}
.ws11f{word-spacing:32.925125px;}
.ws11e{word-spacing:32.926265px;}
.ws139{word-spacing:33.292403px;}
.ws22{word-spacing:48.777053px;}
.ws19e{word-spacing:53.803681px;}
.ws1{word-spacing:58.532496px;}
.ws173{word-spacing:58.941917px;}
.ws172{word-spacing:255.643363px;}
.ws102{word-spacing:658.628607px;}
._28{margin-left:-14.860210px;}
._20{margin-left:-13.156375px;}
._1f{margin-left:-11.096800px;}
._5{margin-left:-8.930534px;}
._12{margin-left:-6.610915px;}
._1a{margin-left:-5.563641px;}
._1{margin-left:-4.088667px;}
._17{margin-left:-2.905114px;}
._0{margin-left:-1.817183px;}
._7{width:1.022170px;}
._3{width:2.482469px;}
._e{width:3.901022px;}
._4{width:4.920608px;}
._f{width:6.383491px;}
._21{width:7.631002px;}
._19{width:13.174319px;}
._1c{width:14.794560px;}
._b{width:16.031923px;}
._6{width:17.323085px;}
._9{width:19.189276px;}
._d{width:20.712384px;}
._13{width:21.796382px;}
._14{width:22.843655px;}
._16{width:23.960953px;}
._11{width:25.068806px;}
._2{width:26.199821px;}
._8{width:27.847757px;}
._1b{width:29.520025px;}
._a{width:30.665088px;}
._23{width:31.923197px;}
._10{width:33.213390px;}
._c{width:34.444848px;}
._15{width:36.115393px;}
._18{width:37.844953px;}
._1e{width:39.399100px;}
._24{width:40.460218px;}
._27{width:41.639962px;}
._22{width:43.031510px;}
._26{width:45.229129px;}
._25{width:46.437793px;}
._1d{width:47.978222px;}
.fc47{color:rgb(0,128,0);}
.fc46{color:rgb(101,120,183);}
.fc45{color:rgb(118,134,191);}
.fc43{color:rgb(103,121,184);}
.fc42{color:rgb(87,107,176);}
.fc41{color:rgb(163,174,212);}
.fc40{color:rgb(89,109,177);}
.fc3f{color:rgb(97,116,181);}
.fc3e{color:rgb(109,127,187);}
.fc3c{color:rgb(136,151,200);}
.fc3b{color:rgb(153,165,207);}
.fc1c{color:rgb(147,160,205);}
.fc1{color:rgb(157,22,27);}
.fc1a{color:rgb(114,131,189);}
.fc18{color:rgb(126,142,195);}
.fc5{color:rgb(116,132,190);}
.fc3d{color:rgb(70,92,169);}
.fc15{color:rgb(172,182,216);}
.fca{color:rgb(111,129,188);}
.fc10{color:rgb(99,118,182);}
.fc1b{color:rgb(151,163,206);}
.fc21{color:rgb(74,96,171);}
.fcd{color:rgb(107,125,186);}
.fc2b{color:rgb(62,85,165);}
.fc0{color:rgb(255,255,255);}
.fcc{color:rgb(149,162,206);}
.fc14{color:rgb(53,77,161);}
.fc17{color:rgb(155,167,208);}
.fc37{color:rgb(49,74,159);}
.fc13{color:rgb(184,193,222);}
.fc2e{color:rgb(139,153,201);}
.fc11{color:rgb(95,114,180);}
.fc4{color:rgb(124,140,194);}
.fce{color:rgb(76,98,172);}
.fc2{color:rgb(47,72,158);}
.fc7{color:rgb(182,191,221);}
.fc6{color:rgb(80,101,174);}
.fc8{color:rgb(105,123,185);}
.fc19{color:rgb(82,103,174);}
.fcb{color:rgb(120,136,192);}
.fcf{color:rgb(180,189,220);}
.fc1d{color:rgb(78,99,173);}
.fc44{color:rgb(141,154,202);}
.fc33{color:rgb(59,83,164);}
.fc1e{color:rgb(161,173,211);}
.fc1f{color:rgb(51,76,160);}
.fc16{color:rgb(55,79,162);}
.fc31{color:rgb(157,169,209);}
.fc38{color:rgb(168,178,214);}
.fc20{color:rgb(66,88,167);}
.fc9{color:rgb(159,171,210);}
.fc23{color:rgb(57,81,163);}
.fc24{color:rgb(122,138,193);}
.fc25{color:rgb(134,149,199);}
.fc26{color:rgb(186,195,223);}
.fc12{color:rgb(68,90,168);}
.fc27{color:rgb(170,180,215);}
.fc28{color:rgb(64,87,166);}
.fc2a{color:rgb(93,112,179);}
.fc2c{color:rgb(128,143,196);}
.fc22{color:rgb(166,176,213);}
.fc2d{color:rgb(84,105,175);}
.fc2f{color:rgb(178,187,219);}
.fc29{color:rgb(174,184,217);}
.fc36{color:rgb(72,94,170);}
.fc30{color:rgb(143,156,203);}
.fc32{color:rgb(130,145,197);}
.fc3{color:rgb(0,0,0);}
.fc34{color:rgb(91,110,178);}
.fc35{color:rgb(145,158,204);}
.fc39{color:rgb(176,185,218);}
.fc3a{color:rgb(132,147,198);}
.fs5{font-size:41.842800px;}
.fs10{font-size:43.038600px;}
.fs7{font-size:44.329800px;}
.fsd{font-size:47.820600px;}
.fs13{font-size:49.255800px;}
.fsf{font-size:53.798103px;}
.fs6{font-size:53.798400px;}
.fse{font-size:53.801727px;}
.fs11{font-size:53.934600px;}
.fs4{font-size:59.106600px;}
.fs12{font-size:59.775600px;}
.fsc{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fsa{font-size:86.077200px;}
.fs0{font-size:95.641200px;}
.fsb{font-size:103.292400px;}
.fs2{font-size:123.975000px;}
.fs9{font-size:148.722600px;}
.fs8{font-size:179.327400px;}
.fs1{font-size:215.193000px;}
.y0{bottom:0.000000px;}
.y2d4{bottom:22.389000px;}
.y4c8{bottom:22.390500px;}
.y58{bottom:22.392000px;}
.y2d3{bottom:93.916500px;}
.y57{bottom:93.918000px;}
.y510{bottom:94.297500px;}
.y2d{bottom:94.959000px;}
.yfc{bottom:96.261000px;}
.y441{bottom:96.769500px;}
.y469{bottom:101.117741px;}
.y46c{bottom:101.117926px;}
.y40e{bottom:101.393741px;}
.y411{bottom:101.393926px;}
.y1a2{bottom:101.884500px;}
.y2a4{bottom:104.883000px;}
.y351{bottom:107.187000px;}
.y2c{bottom:111.397500px;}
.yfb{bottom:112.699500px;}
.y2d2{bottom:114.240000px;}
.y56{bottom:114.241500px;}
.y46d{bottom:114.566912px;}
.y489{bottom:114.567000px;}
.y50f{bottom:114.621000px;}
.y412{bottom:114.842912px;}
.y417{bottom:114.844500px;}
.y8{bottom:116.011500px;}
.y536{bottom:116.274000px;}
.y440{bottom:117.093000px;}
.y1a1{bottom:118.323000px;}
.y207{bottom:121.258500px;}
.y2a3{bottom:121.321500px;}
.y350{bottom:123.624000px;}
.y2b{bottom:127.836000px;}
.y46e{bottom:128.015891px;}
.y48a{bottom:128.016000px;}
.y413{bottom:128.293391px;}
.y418{bottom:128.293500px;}
.yfa{bottom:129.138000px;}
.y144{bottom:131.275500px;}
.y535{bottom:134.206500px;}
.y2d1{bottom:134.563500px;}
.y55{bottom:134.565000px;}
.y1a0{bottom:134.761500px;}
.y50e{bottom:134.944500px;}
.y43f{bottom:137.416500px;}
.y7{bottom:137.680500px;}
.y206{bottom:137.697000px;}
.y2a2{bottom:137.760000px;}
.y34f{bottom:140.062500px;}
.y46f{bottom:141.466377px;}
.y48b{bottom:141.466500px;}
.y414{bottom:141.742377px;}
.y419{bottom:141.742500px;}
.y2a{bottom:144.274500px;}
.yf9{bottom:145.576500px;}
.y143{bottom:147.714000px;}
.y19f{bottom:151.200000px;}
.y302{bottom:151.515000px;}
.y534{bottom:152.139000px;}
.y205{bottom:154.135500px;}
.y2a1{bottom:154.198500px;}
.y2d0{bottom:154.887000px;}
.y1cc{bottom:154.888500px;}
.y54{bottom:154.890000px;}
.y470{bottom:154.915359px;}
.y48c{bottom:154.915500px;}
.y415{bottom:155.192859px;}
.y41a{bottom:155.193000px;}
.y32b{bottom:155.359500px;}
.y555{bottom:155.845500px;}
.y34e{bottom:156.501000px;}
.y43e{bottom:157.741500px;}
.y82{bottom:159.240000px;}
.y6{bottom:159.349500px;}
.y29{bottom:160.713000px;}
.yf8{bottom:162.015000px;}
.y142{bottom:164.152500px;}
.y262{bottom:165.958500px;}
.y3a4{bottom:166.924500px;}
.y19e{bottom:167.637000px;}
.y301{bottom:167.953500px;}
.y471{bottom:168.364345px;}
.y48d{bottom:168.364500px;}
.y416{bottom:168.641845px;}
.y41b{bottom:168.642000px;}
.y533{bottom:170.071500px;}
.y204{bottom:170.574000px;}
.y2a0{bottom:170.637000px;}
.y50d{bottom:172.242000px;}
.y554{bottom:173.778000px;}
.y2cf{bottom:175.210500px;}
.y53{bottom:175.213500px;}
.y81{bottom:175.678500px;}
.y32a{bottom:175.684500px;}
.y28{bottom:177.151500px;}
.y43d{bottom:178.065000px;}
.yf7{bottom:178.453500px;}
.y141{bottom:180.591000px;}
.y472{bottom:181.814843px;}
.y48e{bottom:181.815000px;}
.y410{bottom:182.090843px;}
.y40f{bottom:182.092375px;}
.y19d{bottom:184.075500px;}
.y300{bottom:184.392000px;}
.y203{bottom:187.012500px;}
.y29f{bottom:187.075500px;}
.y34d{bottom:190.690500px;}
.y80{bottom:192.117000px;}
.y27{bottom:193.590000px;}
.yf6{bottom:194.892000px;}
.y473{bottom:195.263822px;}
.y48f{bottom:195.264000px;}
.y2ce{bottom:195.535500px;}
.y52{bottom:195.537000px;}
.y532{bottom:195.750000px;}
.y1cb{bottom:195.811500px;}
.y329{bottom:196.008000px;}
.y37a{bottom:196.123500px;}
.y3a3{bottom:196.710000px;}
.y140{bottom:197.029500px;}
.y16f{bottom:197.902500px;}
.y43c{bottom:198.388500px;}
.y19c{bottom:200.514000px;}
.y2ff{bottom:200.830500px;}
.y29e{bottom:203.512500px;}
.y202{bottom:208.360500px;}
.y7f{bottom:208.555500px;}
.y474{bottom:208.714308px;}
.y490{bottom:208.714500px;}
.y26{bottom:210.028500px;}
.y256{bottom:211.330500px;}
.y3a2{bottom:213.148500px;}
.y13f{bottom:213.468000px;}
.y531{bottom:213.684000px;}
.y553{bottom:214.843500px;}
.yae{bottom:215.860500px;}
.y3cf{bottom:216.103500px;}
.y1ca{bottom:216.135000px;}
.yf5{bottom:216.240000px;}
.y51{bottom:216.264000px;}
.y328{bottom:216.331500px;}
.y379{bottom:216.448500px;}
.y19b{bottom:216.952500px;}
.y2fe{bottom:217.267500px;}
.y16e{bottom:218.226000px;}
.y43b{bottom:218.712000px;}
.y40d{bottom:219.888000px;}
.y29d{bottom:219.951000px;}
.y475{bottom:222.163290px;}
.y491{bottom:222.163500px;}
.y7e{bottom:224.994000px;}
.y2cd{bottom:227.733000px;}
.y255{bottom:227.769000px;}
.y346{bottom:229.282500px;}
.y3a1{bottom:229.587000px;}
.y13e{bottom:229.906500px;}
.y50c{bottom:230.949000px;}
.y25{bottom:231.375000px;}
.y530{bottom:231.616500px;}
.y552{bottom:232.776000px;}
.y19a{bottom:233.391000px;}
.y2fd{bottom:233.706000px;}
.y476{bottom:235.612276px;}
.y492{bottom:235.612500px;}
.yad{bottom:236.184000px;}
.y40c{bottom:236.326500px;}
.y29c{bottom:236.389500px;}
.y3ce{bottom:236.427000px;}
.y1c9{bottom:236.458500px;}
.y50{bottom:236.587500px;}
.y378{bottom:236.772000px;}
.y201{bottom:238.146000px;}
.y16d{bottom:238.549500px;}
.y43a{bottom:239.035500px;}
.y7d{bottom:245.071500px;}
.y3a0{bottom:246.025500px;}
.y13d{bottom:246.345000px;}
.yf4{bottom:246.789000px;}
.y477{bottom:249.062770px;}
.y493{bottom:249.063000px;}
.y254{bottom:249.115500px;}
.y52f{bottom:249.549000px;}
.y199{bottom:249.829500px;}
.y2fc{bottom:250.144500px;}
.y551{bottom:250.710000px;}
.y50b{bottom:251.272500px;}
.y29b{bottom:252.828000px;}
.y327{bottom:254.094000px;}
.y200{bottom:254.584500px;}
.yac{bottom:256.507500px;}
.y34a{bottom:256.702500px;}
.y3cd{bottom:256.750500px;}
.y1c8{bottom:256.783500px;}
.y4f{bottom:256.911000px;}
.y377{bottom:257.095500px;}
.y121{bottom:257.269500px;}
.y40b{bottom:257.674500px;}
.y16c{bottom:258.873000px;}
.y24{bottom:261.162000px;}
.y478{bottom:262.511760px;}
.y494{bottom:262.512000px;}
.yf3{bottom:263.227500px;}
.y7c{bottom:265.395000px;}
.y198{bottom:266.268000px;}
.y2fb{bottom:266.583000px;}
.y39f{bottom:267.372000px;}
.y52e{bottom:267.481500px;}
.y13c{bottom:267.691500px;}
.y550{bottom:268.642500px;}
.y29a{bottom:269.266500px;}
.y50a{bottom:271.596000px;}
.y1ff{bottom:275.932500px;}
.y479{bottom:275.960739px;}
.y495{bottom:275.961000px;}
.yab{bottom:276.832500px;}
.y3cc{bottom:277.075500px;}
.y1c7{bottom:277.107000px;}
.y4e{bottom:277.236000px;}
.y4c7{bottom:277.330500px;}
.y376{bottom:277.419000px;}
.y120{bottom:277.593000px;}
.y23{bottom:277.600500px;}
.y16b{bottom:279.198000px;}
.yf2{bottom:279.664500px;}
.y439{bottom:281.245500px;}
.y197{bottom:282.706500px;}
.y2fa{bottom:283.021500px;}
.y2cc{bottom:283.453500px;}
.y7b{bottom:285.718500px;}
.y345{bottom:286.591500px;}
.y34c{bottom:286.857000px;}
.y47a{bottom:289.411221px;}
.y496{bottom:289.411500px;}
.y509{bottom:291.921000px;}
.y52d{bottom:293.160000px;}
.y253{bottom:294.037500px;}
.y22{bottom:294.039000px;}
.yf1{bottom:296.103000px;}
.yaa{bottom:297.156000px;}
.y39e{bottom:297.159000px;}
.y3cb{bottom:297.399000px;}
.y1c6{bottom:297.430500px;}
.y4d{bottom:297.559500px;}
.y4c6{bottom:297.654000px;}
.y375{bottom:297.742500px;}
.y11f{bottom:297.916500px;}
.y196{bottom:299.145000px;}
.y2f9{bottom:299.460000px;}
.y16a{bottom:299.521500px;}
.y438{bottom:301.569000px;}
.y47b{bottom:302.860208px;}
.y497{bottom:302.860500px;}
.y2cb{bottom:303.777000px;}
.y1fe{bottom:305.718000px;}
.y7a{bottom:306.042000px;}
.y299{bottom:306.738000px;}
.y21{bottom:310.476000px;}
.y52c{bottom:311.092500px;}
.y34b{bottom:311.584500px;}
.y508{bottom:312.244500px;}
.yf0{bottom:312.541500px;}
.y4e8{bottom:313.398000px;}
.y39d{bottom:313.597500px;}
.y252{bottom:315.385500px;}
.y326{bottom:315.597000px;}
.y47c{bottom:316.310701px;}
.y498{bottom:316.311000px;}
.y40a{bottom:317.050500px;}
.ya9{bottom:317.479500px;}
.y3ca{bottom:317.722500px;}
.y1c5{bottom:317.754000px;}
.y4c{bottom:317.883000px;}
.y4c5{bottom:317.977500px;}
.y374{bottom:318.067500px;}
.y11e{bottom:318.240000px;}
.y169{bottom:319.845000px;}
.y54f{bottom:320.707500px;}
.y2f8{bottom:320.808000px;}
.y437{bottom:321.892500px;}
.y1fd{bottom:322.156500px;}
.y298{bottom:323.176500px;}
.y2ca{bottom:324.102000px;}
.y79{bottom:326.367000px;}
.y20{bottom:326.914500px;}
.yef{bottom:328.980000px;}
.y52b{bottom:329.026500px;}
.y47d{bottom:329.759676px;}
.y499{bottom:329.760000px;}
.y4e7{bottom:329.836500px;}
.y39c{bottom:330.036000px;}
.y507{bottom:332.568000px;}
.y325{bottom:335.920500px;}
.y228{bottom:337.803000px;}
.y3c9{bottom:338.046000px;}
.y1c4{bottom:338.077500px;}
.y4b{bottom:338.206500px;}
.y4c4{bottom:338.301000px;}
.y409{bottom:338.397000px;}
.y11d{bottom:338.563500px;}
.y54e{bottom:338.640000px;}
.y373{bottom:338.977500px;}
.y297{bottom:339.615000px;}
.y195{bottom:339.909000px;}
.y168{bottom:340.168500px;}
.y47e{bottom:343.208670px;}
.y49a{bottom:343.209000px;}
.y1f{bottom:343.353000px;}
.y1fc{bottom:343.504500px;}
.y342{bottom:343.902000px;}
.yee{bottom:345.418500px;}
.y4e6{bottom:346.275000px;}
.y39b{bottom:346.474500px;}
.y52a{bottom:346.959000px;}
.y2c9{bottom:349.549500px;}
.y251{bottom:350.794500px;}
.y506{bottom:352.891500px;}
.ya8{bottom:355.336500px;}
.y296{bottom:356.053500px;}
.y324{bottom:356.244000px;}
.y194{bottom:356.347500px;}
.y54d{bottom:356.572500px;}
.y47f{bottom:356.659160px;}
.y49b{bottom:356.659500px;}
.y227{bottom:358.126500px;}
.y3c8{bottom:358.369500px;}
.y1c3{bottom:358.402500px;}
.y4a{bottom:358.530000px;}
.y4c3{bottom:358.624500px;}
.y11c{bottom:358.888500px;}
.y372{bottom:359.301000px;}
.y1e{bottom:359.791500px;}
.y167{bottom:360.492000px;}
.yed{bottom:361.857000px;}
.y4e5{bottom:362.713500px;}
.y436{bottom:362.871000px;}
.y39a{bottom:362.913000px;}
.y250{bottom:367.233000px;}
.y2f7{bottom:369.696000px;}
.y2c8{bottom:369.874500px;}
.y480{bottom:370.108139px;}
.y49c{bottom:370.108500px;}
.y3ea{bottom:370.453241px;}
.y3ed{bottom:370.453426px;}
.y295{bottom:372.492000px;}
.y529{bottom:372.637500px;}
.y505{bottom:373.215000px;}
.y1fb{bottom:373.290000px;}
.y1d{bottom:376.230000px;}
.y349{bottom:376.534500px;}
.y323{bottom:376.567500px;}
.y348{bottom:377.434500px;}
.y193{bottom:377.695500px;}
.y347{bottom:377.839500px;}
.yec{bottom:378.295500px;}
.y226{bottom:378.451500px;}
.y3c7{bottom:378.694500px;}
.y1c2{bottom:378.726000px;}
.y49{bottom:378.855000px;}
.y4c2{bottom:378.949500px;}
.y4e4{bottom:379.152000px;}
.y11b{bottom:379.212000px;}
.y399{bottom:379.350000px;}
.y166{bottom:380.817000px;}
.y435{bottom:383.194500px;}
.y481{bottom:383.557125px;}
.y49d{bottom:383.557500px;}
.y24f{bottom:383.671500px;}
.y3ee{bottom:383.902412px;}
.y3fb{bottom:383.902500px;}
.y371{bottom:384.265500px;}
.y54c{bottom:384.667500px;}
.y2f6{bottom:386.134500px;}
.y294{bottom:388.930500px;}
.y1fa{bottom:389.728500px;}
.y2c7{bottom:390.198000px;}
.y528{bottom:390.570000px;}
.y504{bottom:393.540000px;}
.yeb{bottom:394.734000px;}
.y4e3{bottom:395.590500px;}
.y398{bottom:395.788500px;}
.y322{bottom:396.892500px;}
.y482{bottom:397.007622px;}
.y49e{bottom:397.008000px;}
.y3ef{bottom:397.351391px;}
.y3fc{bottom:397.351500px;}
.y1c{bottom:397.578000px;}
.y225{bottom:398.775000px;}
.y3c6{bottom:399.018000px;}
.y48{bottom:399.178500px;}
.y13b{bottom:399.187500px;}
.y4c1{bottom:399.273000px;}
.y24e{bottom:400.110000px;}
.y11a{bottom:400.296000px;}
.y2f5{bottom:402.573000px;}
.y54b{bottom:402.600000px;}
.y434{bottom:403.519500px;}
.y370{bottom:404.589000px;}
.y293{bottom:405.367500px;}
.y192{bottom:407.481000px;}
.y527{bottom:408.502500px;}
.y1c1{bottom:410.391000px;}
.y483{bottom:410.456601px;}
.y49f{bottom:410.457000px;}
.y3f0{bottom:410.801877px;}
.y3fd{bottom:410.802000px;}
.y1f9{bottom:411.076500px;}
.yea{bottom:411.172500px;}
.y344{bottom:411.447000px;}
.y4e2{bottom:412.027500px;}
.y503{bottom:413.863500px;}
.y13a{bottom:415.626000px;}
.y24d{bottom:416.548500px;}
.y397{bottom:417.136500px;}
.y321{bottom:417.216000px;}
.ya7{bottom:417.402000px;}
.y78{bottom:418.159500px;}
.y2f4{bottom:419.011500px;}
.y224{bottom:419.098500px;}
.y2c6{bottom:419.143500px;}
.y3c5{bottom:419.341500px;}
.y47{bottom:419.502000px;}
.y4c0{bottom:420.094500px;}
.y165{bottom:420.450000px;}
.y54a{bottom:420.532500px;}
.y119{bottom:420.619500px;}
.y292{bottom:421.806000px;}
.y433{bottom:423.843000px;}
.y484{bottom:423.907087px;}
.y4a0{bottom:423.907500px;}
.y3f1{bottom:424.250859px;}
.y3fe{bottom:424.251000px;}
.y36f{bottom:424.914000px;}
.y526{bottom:426.435000px;}
.y1b{bottom:427.363500px;}
.ye9{bottom:427.611000px;}
.y343{bottom:427.885500px;}
.y191{bottom:428.829000px;}
.y139{bottom:432.064500px;}
.y4e1{bottom:432.106500px;}
.y24c{bottom:432.987000px;}
.y502{bottom:434.187000px;}
.y77{bottom:434.596500px;}
.y2f3{bottom:435.450000px;}
.y485{bottom:437.356070px;}
.y4a1{bottom:437.356500px;}
.y320{bottom:437.539500px;}
.y3f2{bottom:437.699845px;}
.y3ff{bottom:437.700000px;}
.ya6{bottom:437.725500px;}
.y291{bottom:438.244500px;}
.y549{bottom:438.465000px;}
.y261{bottom:439.422000px;}
.y3c4{bottom:439.665000px;}
.y46{bottom:439.825500px;}
.y4bf{bottom:440.418000px;}
.y1f8{bottom:440.862000px;}
.y118{bottom:440.943000px;}
.y223{bottom:442.809000px;}
.y1a{bottom:443.802000px;}
.ye8{bottom:444.048000px;}
.y432{bottom:444.166500px;}
.y2c5{bottom:444.591000px;}
.y36e{bottom:445.237500px;}
.y396{bottom:446.923500px;}
.y138{bottom:448.503000px;}
.y24b{bottom:449.424000px;}
.y486{bottom:450.805056px;}
.y4a2{bottom:450.805500px;}
.y76{bottom:451.035000px;}
.y3f3{bottom:451.150343px;}
.y400{bottom:451.150500px;}
.y2f2{bottom:451.888500px;}
.y525{bottom:452.113500px;}
.y4e0{bottom:452.430000px;}
.y501{bottom:454.510500px;}
.y290{bottom:454.683000px;}
.y1f7{bottom:457.300500px;}
.y31f{bottom:457.863000px;}
.ya5{bottom:458.049000px;}
.y341{bottom:459.181500px;}
.y260{bottom:459.745500px;}
.y3c3{bottom:459.988500px;}
.y19{bottom:460.240500px;}
.ye7{bottom:460.486500px;}
.y45{bottom:460.552500px;}
.y4be{bottom:460.741500px;}
.y117{bottom:461.266500px;}
.y1c0{bottom:462.907500px;}
.y222{bottom:463.134000px;}
.y395{bottom:463.360500px;}
.y487{bottom:464.255539px;}
.y4a3{bottom:464.256000px;}
.y431{bottom:464.490000px;}
.y3f4{bottom:464.599322px;}
.y401{bottom:464.599500px;}
.y2c4{bottom:464.916000px;}
.y137{bottom:464.941500px;}
.y190{bottom:465.444000px;}
.y36d{bottom:465.561000px;}
.y24a{bottom:465.862500px;}
.y548{bottom:466.560000px;}
.y75{bottom:467.473500px;}
.y524{bottom:470.047500px;}
.y28f{bottom:471.121500px;}
.y4df{bottom:472.753500px;}
.y2f1{bottom:473.236500px;}
.y500{bottom:474.834000px;}
.y340{bottom:475.620000px;}
.y18{bottom:476.679000px;}
.ye6{bottom:476.925000px;}
.y488{bottom:477.704540px;}
.y4a4{bottom:477.705000px;}
.y408{bottom:478.048500px;}
.y3f5{bottom:478.049808px;}
.y402{bottom:478.050000px;}
.y31e{bottom:478.186500px;}
.y1f6{bottom:478.648500px;}
.ya4{bottom:478.938000px;}
.y25f{bottom:480.070500px;}
.y44{bottom:480.877500px;}
.y4bd{bottom:481.066500px;}
.y116{bottom:481.591500px;}
.y18f{bottom:481.882500px;}
.y249{bottom:482.301000px;}
.y1bf{bottom:483.231000px;}
.y74{bottom:483.912000px;}
.y3c2{bottom:484.219500px;}
.y547{bottom:484.492500px;}
.y394{bottom:484.708500px;}
.y430{bottom:484.813500px;}
.y2c3{bottom:485.239500px;}
.y136{bottom:486.288000px;}
.y28e{bottom:487.560000px;}
.y523{bottom:487.980000px;}
.y221{bottom:490.231500px;}
.y46b{bottom:491.153504px;}
.y46a{bottom:491.155648px;}
.y3f6{bottom:491.498790px;}
.y403{bottom:491.499000px;}
.y33f{bottom:492.058500px;}
.y4de{bottom:493.077000px;}
.y17{bottom:493.117500px;}
.y164{bottom:493.203000px;}
.ye5{bottom:493.363500px;}
.y36c{bottom:493.992000px;}
.y4ff{bottom:495.159000px;}
.y248{bottom:498.739500px;}
.y31d{bottom:498.981000px;}
.ya3{bottom:499.263000px;}
.y25e{bottom:500.394000px;}
.y43{bottom:501.201000px;}
.y115{bottom:501.915000px;}
.y18e{bottom:501.960000px;}
.y546{bottom:502.426500px;}
.y1be{bottom:503.554500px;}
.y3c1{bottom:504.543000px;}
.y3f7{bottom:504.947776px;}
.y404{bottom:504.948000px;}
.y42f{bottom:505.138500px;}
.y73{bottom:505.260000px;}
.y2c2{bottom:505.563000px;}
.y1f5{bottom:508.434000px;}
.y33e{bottom:508.497000px;}
.y28d{bottom:508.908000px;}
.y16{bottom:509.556000px;}
.ye4{bottom:509.802000px;}
.y220{bottom:510.555000px;}
.y393{bottom:513.192000px;}
.y4dd{bottom:513.400500px;}
.y163{bottom:513.526500px;}
.y522{bottom:513.658500px;}
.y135{bottom:513.880500px;}
.y36b{bottom:514.315500px;}
.y247{bottom:515.178000px;}
.y4fe{bottom:515.482500px;}
.y3f8{bottom:518.398270px;}
.y405{bottom:518.398500px;}
.y31c{bottom:519.306000px;}
.ya2{bottom:519.586500px;}
.y545{bottom:520.359000px;}
.y25d{bottom:520.717500px;}
.y42{bottom:521.524500px;}
.y114{bottom:522.238500px;}
.y18d{bottom:522.283500px;}
.y1bd{bottom:523.878000px;}
.y4bc{bottom:524.712000px;}
.y3c0{bottom:524.868000px;}
.y1f4{bottom:524.872500px;}
.y33d{bottom:524.934000px;}
.y42e{bottom:525.462000px;}
.y2c1{bottom:525.886500px;}
.ye3{bottom:526.240500px;}
.y392{bottom:529.630500px;}
.y134{bottom:530.319000px;}
.y15{bottom:530.902500px;}
.y521{bottom:531.591000px;}
.y246{bottom:531.616500px;}
.y3f9{bottom:531.847260px;}
.y406{bottom:531.847500px;}
.y4dc{bottom:533.725500px;}
.y162{bottom:533.850000px;}
.y36a{bottom:534.639000px;}
.y4fd{bottom:535.806000px;}
.y21f{bottom:537.654000px;}
.y31b{bottom:539.629500px;}
.ya1{bottom:539.910000px;}
.y25c{bottom:541.041000px;}
.y41{bottom:541.848000px;}
.y113{bottom:542.562000px;}
.y18c{bottom:542.607000px;}
.y1bc{bottom:544.203000px;}
.y4bb{bottom:545.037000px;}
.y3bf{bottom:545.191500px;}
.y3fa{bottom:545.296239px;}
.y407{bottom:545.296500px;}
.y1f3{bottom:546.220500px;}
.y33c{bottom:546.282000px;}
.y133{bottom:546.757500px;}
.y2c0{bottom:547.024500px;}
.y28c{bottom:547.315500px;}
.ye2{bottom:547.588500px;}
.y544{bottom:548.452500px;}
.y468{bottom:549.519000px;}
.y520{bottom:549.523500px;}
.y391{bottom:550.978500px;}
.y4db{bottom:554.049000px;}
.y161{bottom:554.175000px;}
.y4fc{bottom:556.129500px;}
.y3ec{bottom:558.746721px;}
.y3eb{bottom:558.748474px;}
.y369{bottom:559.603500px;}
.y31a{bottom:559.953000px;}
.ya0{bottom:560.233500px;}
.y14{bottom:560.853000px;}
.y25b{bottom:561.364500px;}
.y2f0{bottom:561.750000px;}
.y40{bottom:562.171500px;}
.y112{bottom:562.885500px;}
.y18b{bottom:562.932000px;}
.y28b{bottom:563.754000px;}
.y1bb{bottom:564.526500px;}
.y21e{bottom:564.751500px;}
.y4ba{bottom:565.360500px;}
.y72{bottom:565.387500px;}
.y467{bottom:565.957500px;}
.y543{bottom:566.386500px;}
.y42d{bottom:566.440500px;}
.y2bf{bottom:567.349500px;}
.y51f{bottom:567.456000px;}
.y132{bottom:568.104000px;}
.y245{bottom:569.382000px;}
.y3be{bottom:572.842500px;}
.y4da{bottom:574.372500px;}
.y1f2{bottom:576.006000px;}
.y33b{bottom:576.069000px;}
.y4fb{bottom:576.453000px;}
.y160{bottom:576.864000px;}
.y13{bottom:577.291500px;}
.ye1{bottom:578.137500px;}
.y2ef{bottom:578.188500px;}
.y71{bottom:579.211500px;}
.y368{bottom:579.927000px;}
.y28a{bottom:580.192500px;}
.y319{bottom:580.276500px;}
.y9f{bottom:580.557000px;}
.y390{bottom:581.527500px;}
.y25a{bottom:581.689500px;}
.y3f{bottom:582.496500px;}
.y111{bottom:583.210500px;}
.y18a{bottom:583.255500px;}
.y542{bottom:584.319000px;}
.y1ba{bottom:584.850000px;}
.y51e{bottom:585.390000px;}
.y244{bottom:585.820500px;}
.y42c{bottom:586.764000px;}
.y466{bottom:587.305500px;}
.y2be{bottom:587.673000px;}
.y21d{bottom:591.850500px;}
.y1f1{bottom:592.444500px;}
.y33a{bottom:592.506000px;}
.y3bd{bottom:593.166000px;}
.y12{bottom:593.730000px;}
.ye0{bottom:594.576000px;}
.y4d9{bottom:594.696000px;}
.y70{bottom:595.650000px;}
.y3e9{bottom:596.544000px;}
.y289{bottom:596.631000px;}
.y4fa{bottom:596.778000px;}
.y15f{bottom:597.187500px;}
.y131{bottom:597.891000px;}
.y38f{bottom:597.966000px;}
.y2ee{bottom:599.535000px;}
.y367{bottom:600.250500px;}
.y318{bottom:600.600000px;}
.y9e{bottom:600.882000px;}
.y259{bottom:602.013000px;}
.y541{bottom:602.251500px;}
.y243{bottom:602.259000px;}
.y3e{bottom:602.820000px;}
.y110{bottom:603.534000px;}
.y189{bottom:603.579000px;}
.y42b{bottom:607.087500px;}
.y2bd{bottom:607.996500px;}
.y339{bottom:608.944500px;}
.y4b9{bottom:610.090500px;}
.y11{bottom:610.168500px;}
.ydf{bottom:611.013000px;}
.y51d{bottom:611.068500px;}
.y6f{bottom:612.088500px;}
.y3e8{bottom:612.982500px;}
.y288{bottom:613.069500px;}
.y3bc{bottom:613.489500px;}
.y1f0{bottom:613.792500px;}
.y130{bottom:614.329500px;}
.y38e{bottom:614.404500px;}
.y4d8{bottom:615.019500px;}
.y4f9{bottom:617.101500px;}
.y15e{bottom:617.511000px;}
.y21c{bottom:618.949500px;}
.y366{bottom:620.574000px;}
.y317{bottom:620.923500px;}
.y9d{bottom:621.205500px;}
.y258{bottom:622.336500px;}
.y1b9{bottom:622.419000px;}
.y3d{bottom:623.143500px;}
.y242{bottom:623.607000px;}
.y188{bottom:623.902500px;}
.y10f{bottom:624.618000px;}
.y338{bottom:625.383000px;}
.y42a{bottom:627.411000px;}
.yde{bottom:627.451500px;}
.y2bc{bottom:628.320000px;}
.y6e{bottom:628.525500px;}
.y51c{bottom:629.001000px;}
.y2ed{bottom:629.322000px;}
.y3e7{bottom:629.421000px;}
.y287{bottom:629.508000px;}
.y540{bottom:630.346500px;}
.y4b8{bottom:630.414000px;}
.y12f{bottom:630.768000px;}
.y38d{bottom:630.843000px;}
.y10{bottom:631.516500px;}
.y3bb{bottom:633.813000px;}
.y4d7{bottom:635.344500px;}
.y15d{bottom:637.834500px;}
.y365{bottom:640.899000px;}
.y316{bottom:641.248500px;}
.y9c{bottom:641.529000px;}
.y21b{bottom:642.660000px;}
.y4f8{bottom:642.846000px;}
.y3c{bottom:643.467000px;}
.ydd{bottom:643.890000px;}
.y187{bottom:644.226000px;}
.y1ef{bottom:644.341500px;}
.y10e{bottom:644.941500px;}
.y6d{bottom:644.964000px;}
.y2ec{bottom:645.760500px;}
.y3e6{bottom:645.859500px;}
.y286{bottom:645.945000px;}
.y337{bottom:646.731000px;}
.y51b{bottom:646.933500px;}
.y12e{bottom:647.206500px;}
.y429{bottom:647.736000px;}
.y53f{bottom:648.279000px;}
.y2bb{bottom:648.643500px;}
.y4b7{bottom:650.737500px;}
.y465{bottom:651.208500px;}
.y38c{bottom:652.189500px;}
.y241{bottom:653.392500px;}
.y4d6{bottom:655.668000px;}
.y15c{bottom:658.158000px;}
.ydc{bottom:660.328500px;}
.y1ee{bottom:660.780000px;}
.y364{bottom:661.222500px;}
.yf{bottom:661.302000px;}
.y3ba{bottom:661.464000px;}
.y315{bottom:661.572000px;}
.y9b{bottom:661.852500px;}
.y2eb{bottom:662.197500px;}
.y3e5{bottom:662.298000px;}
.y285{bottom:662.383500px;}
.y21a{bottom:662.983500px;}
.y4f7{bottom:663.169500px;}
.y3b{bottom:664.194000px;}
.y186{bottom:664.551000px;}
.y51a{bottom:664.866000px;}
.y53e{bottom:666.211500px;}
.y6c{bottom:666.312000px;}
.y464{bottom:667.645500px;}
.y428{bottom:668.059500px;}
.y12d{bottom:668.553000px;}
.y2ba{bottom:668.968500px;}
.y240{bottom:669.831000px;}
.y4b6{bottom:671.061000px;}
.y10d{bottom:672.825000px;}
.y4d5{bottom:675.991500px;}
.ydb{bottom:676.767000px;}
.y1ed{bottom:677.218500px;}
.ye{bottom:677.740500px;}
.y15b{bottom:678.483000px;}
.y284{bottom:678.822000px;}
.y363{bottom:681.546000px;}
.y3b9{bottom:681.787500px;}
.y9a{bottom:682.176000px;}
.y314{bottom:682.366500px;}
.y1b8{bottom:682.758000px;}
.y519{bottom:682.798500px;}
.y219{bottom:683.307000px;}
.y2ea{bottom:683.545500px;}
.y3e4{bottom:683.644500px;}
.y463{bottom:684.084000px;}
.y53d{bottom:684.144000px;}
.y3a{bottom:684.517500px;}
.y185{bottom:684.874500px;}
.y4f6{bottom:690.268500px;}
.y23f{bottom:691.179000px;}
.y4b5{bottom:691.384500px;}
.y10c{bottom:693.148500px;}
.yda{bottom:693.205500px;}
.y1ec{bottom:693.657000px;}
.yd{bottom:694.179000px;}
.y2b9{bottom:694.416000px;}
.y336{bottom:695.236500px;}
.y283{bottom:695.260500px;}
.y4d4{bottom:696.315000px;}
.y15a{bottom:698.806500px;}
.y6b{bottom:698.844000px;}
.y462{bottom:700.522500px;}
.y518{bottom:700.732500px;}
.y362{bottom:701.869500px;}
.y99{bottom:702.501000px;}
.y313{bottom:702.690000px;}
.y1b7{bottom:703.081500px;}
.y218{bottom:703.632000px;}
.y39{bottom:704.842500px;}
.y184{bottom:705.198000px;}
.y3b8{bottom:706.018500px;}
.yd9{bottom:709.644000px;}
.y1eb{bottom:710.095500px;}
.y427{bottom:710.268000px;}
.y4f5{bottom:710.593500px;}
.yc{bottom:710.617500px;}
.y335{bottom:711.673500px;}
.y282{bottom:711.699000px;}
.y4b4{bottom:711.709500px;}
.y53c{bottom:712.239000px;}
.y2e9{bottom:713.332500px;}
.y10b{bottom:713.472000px;}
.y2b8{bottom:714.741000px;}
.y6a{bottom:715.282500px;}
.y4d3{bottom:716.638500px;}
.y461{bottom:716.961000px;}
.y159{bottom:719.130000px;}
.y361{bottom:722.781000px;}
.y312{bottom:723.013500px;}
.y98{bottom:723.390000px;}
.y1b6{bottom:723.405000px;}
.y217{bottom:723.955500px;}
.y38{bottom:725.166000px;}
.yd8{bottom:726.082500px;}
.y3b7{bottom:726.342000px;}
.y1ea{bottom:726.532500px;}
.yb{bottom:727.056000px;}
.y334{bottom:728.112000px;}
.y281{bottom:728.137500px;}
.y23e{bottom:729.586500px;}
.y2e8{bottom:729.771000px;}
.y53b{bottom:730.171500px;}
.y426{bottom:730.591500px;}
.y69{bottom:731.721000px;}
.y4b3{bottom:732.033000px;}
.y460{bottom:733.399500px;}
.y10a{bottom:733.797000px;}
.y517{bottom:735.028500px;}
.y183{bottom:736.848000px;}
.y4d2{bottom:736.963500px;}
.y4f4{bottom:737.692500px;}
.y158{bottom:739.453500px;}
.y12c{bottom:740.157000px;}
.yd7{bottom:742.521000px;}
.y1e9{bottom:742.971000px;}
.y360{bottom:743.104500px;}
.y311{bottom:743.337000px;}
.ya{bottom:743.494500px;}
.y2b7{bottom:743.685000px;}
.y97{bottom:743.713500px;}
.y1b5{bottom:743.730000px;}
.y216{bottom:744.279000px;}
.y333{bottom:744.550500px;}
.y280{bottom:744.576000px;}
.y23d{bottom:746.025000px;}
.y3b6{bottom:746.665500px;}
.y53a{bottom:748.104000px;}
.y68{bottom:748.159500px;}
.y45f{bottom:749.838000px;}
.y2e7{bottom:751.117500px;}
.y4b2{bottom:752.356500px;}
.y182{bottom:753.286500px;}
.y109{bottom:754.120500px;}
.y12b{bottom:756.595500px;}
.y4f3{bottom:758.016000px;}
.y1e8{bottom:759.409500px;}
.y157{bottom:759.777000px;}
.y516{bottom:760.707000px;}
.y23c{bottom:762.463500px;}
.y37{bottom:762.862500px;}
.y35f{bottom:763.428000px;}
.y310{bottom:763.662000px;}
.yd6{bottom:763.867500px;}
.y96{bottom:764.037000px;}
.y1b4{bottom:764.053500px;}
.y67{bottom:764.598000px;}
.y215{bottom:764.602500px;}
.y9{bottom:764.841000px;}
.y332{bottom:765.898500px;}
.y539{bottom:766.038000px;}
.y3b5{bottom:766.990500px;}
.y181{bottom:769.725000px;}
.y45e{bottom:771.186000px;}
.y2b6{bottom:772.630500px;}
.y425{bottom:772.801500px;}
.y12a{bottom:773.034000px;}
.y1e7{bottom:775.848000px;}
.y38b{bottom:776.065500px;}
.y23b{bottom:778.902000px;}
.y156{bottom:780.102000px;}
.y2e6{bottom:780.904500px;}
.y66{bottom:781.036500px;}
.y27f{bottom:782.341500px;}
.y108{bottom:782.943000px;}
.y35e{bottom:783.751500px;}
.y30f{bottom:783.985500px;}
.y95{bottom:784.360500px;}
.y1b3{bottom:784.377000px;}
.y214{bottom:784.926000px;}
.y4f2{bottom:785.116500px;}
.y180{bottom:786.162000px;}
.y515{bottom:786.387000px;}
.y3b4{bottom:787.314000px;}
.y129{bottom:789.472500px;}
.y3e3{bottom:791.991000px;}
.y38a{bottom:792.504000px;}
.y424{bottom:793.125000px;}
.yd5{bottom:793.654500px;}
.y538{bottom:794.131500px;}
.y23a{bottom:795.340500px;}
.y4b1{bottom:797.086500px;}
.y1e6{bottom:797.196000px;}
.y2e5{bottom:797.343000px;}
.y65{bottom:797.475000px;}
.y27e{bottom:798.780000px;}
.y4d1{bottom:799.719000px;}
.y155{bottom:800.425500px;}
.y2b5{bottom:801.576000px;}
.y17f{bottom:802.600500px;}
.y107{bottom:803.266500px;}
.y35d{bottom:804.076500px;}
.y30e{bottom:804.309000px;}
.y514{bottom:804.319500px;}
.y94{bottom:804.685500px;}
.y1b2{bottom:804.700500px;}
.y213{bottom:805.251000px;}
.y446{bottom:807.409241px;}
.y449{bottom:807.409426px;}
.y3b3{bottom:807.637500px;}
.y3e2{bottom:808.429500px;}
.yd4{bottom:810.093000px;}
.y128{bottom:810.820500px;}
.y239{bottom:811.779000px;}
.y537{bottom:812.064000px;}
.y4f1{bottom:812.215500px;}
.y2e4{bottom:813.780000px;}
.y389{bottom:813.850500px;}
.y64{bottom:813.912000px;}
.y4d0{bottom:816.157500px;}
.y4b0{bottom:817.410000px;}
.y27d{bottom:820.126500px;}
.y154{bottom:820.749000px;}
.y44a{bottom:820.858412px;}
.y454{bottom:820.858500px;}
.y2b4{bottom:821.899500px;}
.y106{bottom:823.590000px;}
.y17e{bottom:823.948500px;}
.y35c{bottom:824.400000px;}
.y30d{bottom:824.632500px;}
.y3e1{bottom:824.868000px;}
.y93{bottom:825.009000px;}
.y1b1{bottom:825.300000px;}
.y212{bottom:825.574500px;}
.yd3{bottom:826.531500px;}
.y1e5{bottom:826.981500px;}
.y3b2{bottom:827.961000px;}
.y238{bottom:828.216000px;}
.y513{bottom:829.998000px;}
.y2e3{bottom:830.218500px;}
.y4cf{bottom:832.596000px;}
.y36{bottom:834.168000px;}
.y44b{bottom:834.307391px;}
.y455{bottom:834.307500px;}
.y63{bottom:835.260000px;}
.y423{bottom:835.333500px;}
.y4af{bottom:837.733500px;}
.y4f0{bottom:839.316000px;}
.y153{bottom:841.072500px;}
.y3e0{bottom:841.306500px;}
.yd2{bottom:842.970000px;}
.y1e4{bottom:843.420000px;}
.y237{bottom:844.654500px;}
.y35b{bottom:844.723500px;}
.y30c{bottom:844.956000px;}
.y92{bottom:845.332500px;}
.y1b0{bottom:845.623500px;}
.y211{bottom:845.898000px;}
.y2e2{bottom:846.657000px;}
.y44c{bottom:847.757877px;}
.y456{bottom:847.758000px;}
.y512{bottom:847.930500px;}
.y3b1{bottom:848.284500px;}
.y127{bottom:849.030000px;}
.y4ce{bottom:849.034500px;}
.y5{bottom:849.558000px;}
.y2b3{bottom:850.845000px;}
.y26e{bottom:852.160241px;}
.y271{bottom:852.160426px;}
.y105{bottom:852.412500px;}
.y17d{bottom:853.734000px;}
.y422{bottom:855.658500px;}
.y3df{bottom:857.745000px;}
.y4ae{bottom:858.057000px;}
.yd1{bottom:859.407000px;}
.y4ef{bottom:859.639500px;}
.y1e3{bottom:859.858500px;}
.y35{bottom:861.067500px;}
.y44d{bottom:861.206859px;}
.y457{bottom:861.207000px;}
.y152{bottom:861.396000px;}
.y2e1{bottom:863.095500px;}
.y62{bottom:863.743500px;}
.y30b{bottom:865.281000px;}
.y126{bottom:865.468500px;}
.y4cd{bottom:865.473000px;}
.y272{bottom:865.609412px;}
.y277{bottom:865.609500px;}
.y35a{bottom:865.635000px;}
.y91{bottom:865.656000px;}
.y1af{bottom:865.947000px;}
.y210{bottom:866.221500px;}
.y3b0{bottom:868.609500px;}
.y17c{bottom:870.172500px;}
.y2b2{bottom:871.168500px;}
.y104{bottom:872.737500px;}
.y3de{bottom:874.183500px;}
.y458{bottom:874.656000px;}
.y44e{bottom:874.657345px;}
.yd0{bottom:875.845500px;}
.y421{bottom:875.982000px;}
.y1e2{bottom:876.297000px;}
.y4ad{bottom:878.382000px;}
.y273{bottom:879.058391px;}
.y278{bottom:879.058500px;}
.y61{bottom:880.182000px;}
.y151{bottom:881.721000px;}
.y4cc{bottom:881.911500px;}
.y511{bottom:883.173000px;}
.y2e0{bottom:884.443500px;}
.y236{bottom:884.656500px;}
.y30a{bottom:885.604500px;}
.y359{bottom:885.958500px;}
.y90{bottom:885.979500px;}
.y1ae{bottom:886.270500px;}
.y20f{bottom:886.545000px;}
.y4ee{bottom:886.740000px;}
.y125{bottom:886.816500px;}
.y34{bottom:887.965500px;}
.y44f{bottom:888.106343px;}
.y459{bottom:888.106500px;}
.y3af{bottom:888.933000px;}
.y3dd{bottom:890.620500px;}
.y17b{bottom:891.520500px;}
.y274{bottom:892.508877px;}
.y279{bottom:892.509000px;}
.y1e1{bottom:892.735500px;}
.y103{bottom:893.061000px;}
.y60{bottom:896.620500px;}
.ycf{bottom:897.193500px;}
.y4cb{bottom:898.350000px;}
.y4ac{bottom:898.705500px;}
.y2b1{bottom:900.114000px;}
.y450{bottom:901.555322px;}
.y45a{bottom:901.555500px;}
.y150{bottom:904.410000px;}
.y309{bottom:905.928000px;}
.y275{bottom:905.957859px;}
.y27a{bottom:905.958000px;}
.y235{bottom:906.004500px;}
.y358{bottom:906.282000px;}
.y8f{bottom:906.304500px;}
.y1ad{bottom:906.594000px;}
.y20e{bottom:906.870000px;}
.y3dc{bottom:907.059000px;}
.y4ed{bottom:907.063500px;}
.y1e0{bottom:909.174000px;}
.y5f{bottom:913.059000px;}
.y2df{bottom:914.229000px;}
.y4ca{bottom:914.788500px;}
.y33{bottom:914.865000px;}
.y451{bottom:915.005808px;}
.y45b{bottom:915.006000px;}
.y124{bottom:915.300000px;}
.y420{bottom:916.960500px;}
.y257{bottom:917.940000px;}
.y4{bottom:918.082500px;}
.y4ab{bottom:919.029000px;}
.y27c{bottom:919.407000px;}
.y276{bottom:919.408345px;}
.y27b{bottom:919.408500px;}
.y3ae{bottom:920.932500px;}
.y102{bottom:920.944500px;}
.y17a{bottom:921.307500px;}
.y3db{bottom:923.497500px;}
.y14f{bottom:924.733500px;}
.y2b0{bottom:925.563000px;}
.y308{bottom:926.251500px;}
.y357{bottom:926.605500px;}
.y8e{bottom:926.628000px;}
.y1ac{bottom:926.919000px;}
.y20d{bottom:927.193500px;}
.y452{bottom:928.454790px;}
.y45c{bottom:928.455000px;}
.y5e{bottom:929.497500px;}
.y1df{bottom:930.520500px;}
.y331{bottom:930.522000px;}
.y2de{bottom:930.667500px;}
.y123{bottom:931.738500px;}
.y4ec{bottom:932.808000px;}
.y270{bottom:932.857343px;}
.y26f{bottom:932.858875px;}
.y234{bottom:935.790000px;}
.y4c9{bottom:936.135000px;}
.y41f{bottom:937.284000px;}
.y179{bottom:937.744500px;}
.y4aa{bottom:939.352500px;}
.y3da{bottom:939.936000px;}
.y3ad{bottom:941.256000px;}
.y101{bottom:941.268000px;}
.y32{bottom:941.764500px;}
.y453{bottom:941.903776px;}
.y45d{bottom:941.904000px;}
.y14e{bottom:945.057000px;}
.y2af{bottom:945.886500px;}
.y356{bottom:946.930500px;}
.y8d{bottom:946.951500px;}
.y307{bottom:947.046000px;}
.y1ab{bottom:947.242500px;}
.y20c{bottom:947.517000px;}
.y5d{bottom:950.845500px;}
.yaf{bottom:951.814241px;}
.yb2{bottom:951.814426px;}
.y2dd{bottom:952.015500px;}
.y233{bottom:952.228500px;}
.y122{bottom:953.086500px;}
.y4eb{bottom:953.131500px;}
.y178{bottom:954.183000px;}
.y448{bottom:955.354270px;}
.y447{bottom:955.355936px;}
.y3d9{bottom:956.374500px;}
.y41e{bottom:957.607500px;}
.y4a9{bottom:959.676000px;}
.y3ac{bottom:961.579500px;}
.y100{bottom:961.591500px;}
.y1cd{bottom:965.264741px;}
.yb3{bottom:965.264912px;}
.y1d0{bottom:965.264926px;}
.yc1{bottom:965.265000px;}
.y14d{bottom:965.380500px;}
.y2ae{bottom:967.024500px;}
.y355{bottom:967.254000px;}
.y8c{bottom:967.275000px;}
.y306{bottom:967.369500px;}
.y1aa{bottom:967.566000px;}
.y20b{bottom:967.840500px;}
.y31{bottom:968.664000px;}
.y177{bottom:970.621500px;}
.y3d8{bottom:972.813000px;}
.y4ea{bottom:973.455000px;}
.y232{bottom:973.576500px;}
.y26d{bottom:977.782500px;}
.y3{bottom:977.857500px;}
.y41d{bottom:977.931000px;}
.yb4{bottom:978.713891px;}
.y1d1{bottom:978.713912px;}
.yc2{bottom:978.714000px;}
.y4a8{bottom:980.001000px;}
.y2dc{bottom:981.801000px;}
.y14c{bottom:985.704000px;}
.y176{bottom:987.060000px;}
.y2ad{bottom:987.348000px;}
.y354{bottom:987.577500px;}
.y8b{bottom:987.598500px;}
.y305{bottom:987.694500px;}
.y1a9{bottom:987.889500px;}
.y20a{bottom:988.164000px;}
.y3d7{bottom:989.251500px;}
.y3ab{bottom:990.165000px;}
.yb5{bottom:992.162877px;}
.y1d2{bottom:992.162891px;}
.yc3{bottom:992.163000px;}
.y445{bottom:993.151500px;}
.yff{bottom:993.736500px;}
.y26c{bottom:994.221000px;}
.y30{bottom:995.562000px;}
.y2db{bottom:998.239500px;}
.y41c{bottom:998.256000px;}
.y4a7{bottom:1000.324500px;}
.y175{bottom:1003.498500px;}
.y37b{bottom:1005.613241px;}
.yb6{bottom:1005.613359px;}
.y1d3{bottom:1005.613377px;}
.y37e{bottom:1005.613426px;}
.yc4{bottom:1005.613500px;}
.y3d6{bottom:1005.690000px;}
.y14b{bottom:1006.029000px;}
.y2ac{bottom:1007.671500px;}
.y353{bottom:1007.901000px;}
.y8a{bottom:1007.923500px;}
.y304{bottom:1008.018000px;}
.y1a8{bottom:1008.213000px;}
.y209{bottom:1008.489000px;}
.y231{bottom:1008.985500px;}
.y3aa{bottom:1010.490000px;}
.y26b{bottom:1010.659500px;}
.y4e9{bottom:1010.752500px;}
.y444{bottom:1014.499500px;}
.y2da{bottom:1014.678000px;}
.yb7{bottom:1019.062345px;}
.y1d4{bottom:1019.062359px;}
.y37f{bottom:1019.062412px;}
.yc5{bottom:1019.062500px;}
.y3d5{bottom:1022.128500px;}
.y174{bottom:1024.846500px;}
.y230{bottom:1025.424000px;}
.y14a{bottom:1026.352500px;}
.y26a{bottom:1027.098000px;}
.y2ab{bottom:1027.996500px;}
.y352{bottom:1028.224500px;}
.y89{bottom:1028.247000px;}
.y303{bottom:1028.341500px;}
.y1a7{bottom:1028.538000px;}
.y208{bottom:1028.812500px;}
.y3a9{bottom:1030.813500px;}
.y2d9{bottom:1031.116500px;}
.yb8{bottom:1032.511343px;}
.y1d5{bottom:1032.511345px;}
.y380{bottom:1032.511391px;}
.yc6{bottom:1032.511500px;}
.y2f{bottom:1033.251000px;}
.y5c{bottom:1038.888000px;}
.y22f{bottom:1041.862500px;}
.y269{bottom:1043.535000px;}
.y4a6{bottom:1045.054500px;}
.yb9{bottom:1045.961822px;}
.y1d6{bottom:1045.961843px;}
.y381{bottom:1045.961877px;}
.yc7{bottom:1045.962000px;}
.y2aa{bottom:1048.320000px;}
.y88{bottom:1048.570500px;}
.y1a6{bottom:1048.861500px;}
.y149{bottom:1049.041500px;}
.yfe{bottom:1049.136000px;}
.y3a8{bottom:1051.137000px;}
.y443{bottom:1052.013000px;}
.y2d8{bottom:1052.464500px;}
.y173{bottom:1054.632000px;}
.y5b{bottom:1055.326500px;}
.y22e{bottom:1058.301000px;}
.yba{bottom:1059.410808px;}
.y1d7{bottom:1059.410822px;}
.y382{bottom:1059.410859px;}
.yc8{bottom:1059.411000px;}
.y268{bottom:1059.973500px;}
.y3d4{bottom:1061.065500px;}
.y4a5{bottom:1065.378000px;}
.y2a9{bottom:1068.643500px;}
.y87{bottom:1068.894000px;}
.y1a5{bottom:1069.185000px;}
.y148{bottom:1069.365000px;}
.yfd{bottom:1069.459500px;}
.y172{bottom:1071.070500px;}
.y3a7{bottom:1071.460500px;}
.y5a{bottom:1071.763500px;}
.y1d8{bottom:1072.859808px;}
.y383{bottom:1072.859845px;}
.y1de{bottom:1072.860000px;}
.ybb{bottom:1072.861290px;}
.yc9{bottom:1072.861500px;}
.y442{bottom:1073.359500px;}
.y22d{bottom:1074.738000px;}
.y267{bottom:1076.412000px;}
.y3d3{bottom:1081.389000px;}
.y330{bottom:1083.420000px;}
.ybc{bottom:1086.310276px;}
.y1d9{bottom:1086.310290px;}
.y384{bottom:1086.310343px;}
.yca{bottom:1086.310500px;}
.y171{bottom:1087.509000px;}
.y1a4{bottom:1089.508500px;}
.y147{bottom:1089.688500px;}
.y2a8{bottom:1089.781500px;}
.y86{bottom:1089.783000px;}
.y22c{bottom:1091.176500px;}
.y3a6{bottom:1091.784000px;}
.y266{bottom:1092.850500px;}
.y59{bottom:1093.111500px;}
.ybd{bottom:1099.759270px;}
.y1da{bottom:1099.759276px;}
.y385{bottom:1099.759322px;}
.ycb{bottom:1099.759500px;}
.y32f{bottom:1099.858500px;}
.y3d2{bottom:1101.714000px;}
.y22b{bottom:1107.615000px;}
.y170{bottom:1108.857000px;}
.y265{bottom:1109.289000px;}
.y1a3{bottom:1109.832000px;}
.y146{bottom:1110.012000px;}
.y2a7{bottom:1110.105000px;}
.y85{bottom:1110.108000px;}
.y3a5{bottom:1112.109000px;}
.ybe{bottom:1113.209760px;}
.y1db{bottom:1113.209770px;}
.y386{bottom:1113.209808px;}
.ycc{bottom:1113.210000px;}
.y32e{bottom:1116.297000px;}
.y2d7{bottom:1117.878000px;}
.y2{bottom:1121.464500px;}
.y3d1{bottom:1122.037500px;}
.y22a{bottom:1124.053500px;}
.y264{bottom:1125.727500px;}
.ybf{bottom:1126.658739px;}
.y1dc{bottom:1126.658760px;}
.y387{bottom:1126.658790px;}
.ycd{bottom:1126.659000px;}
.y2a6{bottom:1130.430000px;}
.y84{bottom:1130.431500px;}
.y32d{bottom:1132.735500px;}
.y2d6{bottom:1134.316500px;}
.y2e{bottom:1136.655000px;}
.yc0{bottom:1140.107721px;}
.y1dd{bottom:1140.107739px;}
.y388{bottom:1140.107776px;}
.yce{bottom:1140.108000px;}
.y229{bottom:1140.492000px;}
.y263{bottom:1142.166000px;}
.y3d0{bottom:1142.361000px;}
.y145{bottom:1149.646500px;}
.y2a5{bottom:1150.753500px;}
.y83{bottom:1150.755000px;}
.y1{bottom:1151.352000px;}
.yb1{bottom:1153.558208px;}
.y1cf{bottom:1153.558221px;}
.y37d{bottom:1153.558270px;}
.y37c{bottom:1153.559936px;}
.y1ce{bottom:1153.559974px;}
.yb0{bottom:1153.559984px;}
.y32c{bottom:1154.083500px;}
.y2d5{bottom:1155.664500px;}
.h7{height:29.122589px;}
.h9{height:33.912297px;}
.ha{height:37.389888px;}
.h18{height:37.443480px;}
.h8{height:37.443686px;}
.h17{height:37.446002px;}
.h16{height:37.452319px;}
.h24{height:37.680687px;}
.h1b{height:38.519654px;}
.h1a{height:38.896243px;}
.h20{height:41.259969px;}
.h23{height:41.544042px;}
.h21{height:41.603818px;}
.h1d{height:43.200115px;}
.h22{height:43.217759px;}
.hc{height:44.370297px;}
.hb{height:44.376297px;}
.h14{height:45.490947px;}
.h11{height:45.556402px;}
.h1c{height:45.818220px;}
.h13{height:47.323676px;}
.h6{height:48.053666px;}
.h1e{height:48.754589px;}
.h25{height:49.308687px;}
.h5{height:51.861658px;}
.h1f{height:52.560044px;}
.h15{height:57.169138px;}
.h12{height:57.175138px;}
.hf{height:59.393268px;}
.h19{height:59.909731px;}
.h2{height:66.470634px;}
.h10{height:74.680405px;}
.h4{height:86.286600px;}
.he{height:103.510930px;}
.hd{height:129.653710px;}
.h3{height:155.584539px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:105.835500px;}
.x21{left:107.112000px;}
.x1f{left:114.753000px;}
.x30{left:122.002500px;}
.x2f{left:126.846000px;}
.x1e{left:129.480000px;}
.x3{left:131.910000px;}
.x31{left:138.237000px;}
.x1d{left:144.207000px;}
.x19{left:146.253000px;}
.x18{left:147.415500px;}
.x32{left:154.471500px;}
.x34{left:155.697000px;}
.x33{left:157.315500px;}
.x2e{left:164.695500px;}
.x20{left:167.182500px;}
.x3a{left:453.933000px;}
.x29{left:571.347000px;}
.x23{left:579.367500px;}
.x16{left:584.505000px;}
.x4{left:586.302000px;}
.x2{left:587.841000px;}
.x5{left:588.868500px;}
.x7{left:592.270500px;}
.x1a{left:594.732000px;}
.x1c{left:599.976000px;}
.x17{left:604.204500px;}
.xa{left:605.773838px;}
.x36{left:608.263500px;}
.x39{left:609.562500px;}
.x38{left:612.952500px;}
.x37{left:614.208000px;}
.x2b{left:616.810500px;}
.xb{left:619.222832px;}
.x6{left:621.873000px;}
.xc{left:632.671823px;}
.x35{left:635.484000px;}
.xd{left:646.122325px;}
.x22{left:649.015500px;}
.x2c{left:655.128000px;}
.x28{left:656.761500px;}
.x1b{left:658.510500px;}
.xe{left:659.571319px;}
.x27{left:660.714000px;}
.x3b{left:671.434500px;}
.xf{left:673.020312px;}
.x26{left:678.565500px;}
.x8{left:680.782500px;}
.x10{left:686.470803px;}
.x11{left:699.919797px;}
.x12{left:713.370287px;}
.x2a{left:717.363000px;}
.x24{left:719.038500px;}
.x13{left:726.819278px;}
.x25{left:733.524000px;}
.x14{left:740.268286px;}
.x15{left:753.718777px;}
.x2d{left:768.579000px;}
.x9{left:777.496500px;}
@media print{
.v1{vertical-align:-17.450667pt;}
.v8{vertical-align:-10.336000pt;}
.v4{vertical-align:-9.296000pt;}
.v5{vertical-align:-5.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:9.301333pt;}
.v7{vertical-align:10.336000pt;}
.v6{vertical-align:17.450667pt;}
.v3{vertical-align:21.237333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.000007pt;}
.ls3{letter-spacing:0.001298pt;}
.ls25{letter-spacing:0.569182pt;}
.ls33{letter-spacing:0.700102pt;}
.lsf{letter-spacing:4.782067pt;}
.ls1{letter-spacing:10.625232pt;}
.ls2f{letter-spacing:12.290492pt;}
.ls26{letter-spacing:12.643849pt;}
.ls1d{letter-spacing:12.830987pt;}
.ls6{letter-spacing:12.994492pt;}
.ls1f{letter-spacing:13.124320pt;}
.ls3c{letter-spacing:14.657927pt;}
.ls3d{letter-spacing:14.663260pt;}
.ls9{letter-spacing:14.875197pt;}
.ls3a{letter-spacing:15.661158pt;}
.ls1e{letter-spacing:16.004320pt;}
.ls3e{letter-spacing:16.044932pt;}
.ls20{letter-spacing:16.260320pt;}
.ls15{letter-spacing:16.386492pt;}
.lse{letter-spacing:17.182030pt;}
.ls2{letter-spacing:17.202492pt;}
.ls11{letter-spacing:17.213158pt;}
.ls10{letter-spacing:17.250492pt;}
.ls5{letter-spacing:17.317864pt;}
.ls32{letter-spacing:17.559825pt;}
.ls34{letter-spacing:17.670769pt;}
.ls12{letter-spacing:17.709158pt;}
.ls38{letter-spacing:17.853158pt;}
.ls14{letter-spacing:19.010492pt;}
.ls1c{letter-spacing:20.173158pt;}
.ls36{letter-spacing:20.268594pt;}
.ls29{letter-spacing:21.563558pt;}
.ls16{letter-spacing:21.568891pt;}
.ls22{letter-spacing:21.975825pt;}
.ls1b{letter-spacing:22.061158pt;}
.ls2d{letter-spacing:23.266492pt;}
.ls23{letter-spacing:24.418492pt;}
.ls2a{letter-spacing:24.797158pt;}
.ls27{letter-spacing:25.671825pt;}
.ls37{letter-spacing:25.821158pt;}
.ls2e{letter-spacing:26.327825pt;}
.ls39{letter-spacing:26.386492pt;}
.ls35{letter-spacing:27.597158pt;}
.ls19{letter-spacing:28.125158pt;}
.ls7{letter-spacing:28.299197pt;}
.ls1a{letter-spacing:28.327825pt;}
.lsd{letter-spacing:29.090400pt;}
.ls30{letter-spacing:29.095733pt;}
.ls21{letter-spacing:29.326987pt;}
.ls13{letter-spacing:29.522492pt;}
.ls18{letter-spacing:30.013158pt;}
.ls8{letter-spacing:30.059197pt;}
.ls24{letter-spacing:33.245158pt;}
.ls4{letter-spacing:35.056531pt;}
.ls17{letter-spacing:36.242492pt;}
.ls2c{letter-spacing:37.799825pt;}
.ls2b{letter-spacing:40.690492pt;}
.lsc{letter-spacing:597.498425pt;}
.lsa{letter-spacing:597.508984pt;}
.ls3b{letter-spacing:597.519714pt;}
.lsb{letter-spacing:597.519738pt;}
.ls31{letter-spacing:597.519746pt;}
.ls28{letter-spacing:597.519754pt;}
.ws66{word-spacing:-14.661830pt;}
.wsbe{word-spacing:-14.422713pt;}
.ws1f0{word-spacing:-13.389734pt;}
.ws11{word-spacing:-12.050842pt;}
.ws17f{word-spacing:-10.711814pt;}
.wsc4{word-spacing:-9.640646pt;}
.ws1d9{word-spacing:-5.876369pt;}
.ws86{word-spacing:-4.829901pt;}
.ws1bf{word-spacing:-3.490912pt;}
.ws18e{word-spacing:-2.909093pt;}
.wsf5{word-spacing:-2.850911pt;}
.ws70{word-spacing:-2.443638pt;}
.wsaf{word-spacing:-2.385457pt;}
.ws1dc{word-spacing:-2.269093pt;}
.wsa1{word-spacing:-2.210911pt;}
.ws13{word-spacing:-2.151936pt;}
.ws120{word-spacing:-2.094547pt;}
.wsf3{word-spacing:-1.920002pt;}
.ws115{word-spacing:-1.861820pt;}
.ws114{word-spacing:-1.826154pt;}
.ws5c{word-spacing:-1.803638pt;}
.ws17a{word-spacing:-1.745456pt;}
.ws118{word-spacing:-1.571126pt;}
.ws119{word-spacing:-1.570910pt;}
.ws117{word-spacing:-1.538514pt;}
.wsd2{word-spacing:-1.512729pt;}
.ws19d{word-spacing:-1.454547pt;}
.wsd3{word-spacing:-1.396365pt;}
.wseb{word-spacing:-1.386803pt;}
.ws1c2{word-spacing:-1.280001pt;}
.ws103{word-spacing:-1.243341pt;}
.wsdf{word-spacing:-1.221819pt;}
.ws12b{word-spacing:-1.195520pt;}
.ws14a{word-spacing:-1.163637pt;}
.ws6e{word-spacing:-1.105455pt;}
.wse9{word-spacing:-1.047274pt;}
.ws1d8{word-spacing:-0.989092pt;}
.ws15b{word-spacing:-0.956416pt;}
.ws163{word-spacing:-0.930910pt;}
.ws2a{word-spacing:-0.872728pt;}
.ws14e{word-spacing:-0.814546pt;}
.ws68{word-spacing:-0.756364pt;}
.wsa2{word-spacing:-0.698182pt;}
.ws129{word-spacing:-0.669491pt;}
.ws127{word-spacing:-0.621670pt;}
.wsb2{word-spacing:-0.581819pt;}
.ws13f{word-spacing:-0.573850pt;}
.ws13e{word-spacing:-0.526029pt;}
.ws17b{word-spacing:-0.523637pt;}
.ws21{word-spacing:-0.478208pt;}
.ws113{word-spacing:-0.430387pt;}
.ws37{word-spacing:-0.407273pt;}
.ws7d{word-spacing:-0.349091pt;}
.ws26{word-spacing:-0.290909pt;}
.ws111{word-spacing:-0.257331pt;}
.ws112{word-spacing:-0.239104pt;}
.wsf0{word-spacing:-0.232727pt;}
.ws106{word-spacing:-0.191283pt;}
.ws1dd{word-spacing:-0.116364pt;}
.wsff{word-spacing:-0.058182pt;}
.ws1a5{word-spacing:-0.047942pt;}
.ws1e7{word-spacing:-0.043783pt;}
.wsc{word-spacing:-0.039404pt;}
.wsd1{word-spacing:-0.003558pt;}
.ws101{word-spacing:-0.002603pt;}
.ws2{word-spacing:-0.000533pt;}
.ws4{word-spacing:0.000000pt;}
.ws1ca{word-spacing:0.000409pt;}
.ws15c{word-spacing:0.020855pt;}
.wsed{word-spacing:0.047821pt;}
.ws69{word-spacing:0.058182pt;}
.wsfa{word-spacing:0.116364pt;}
.wsd{word-spacing:0.143462pt;}
.ws1f2{word-spacing:0.159402pt;}
.wsd5{word-spacing:0.174546pt;}
.ws84{word-spacing:0.191283pt;}
.ws1f3{word-spacing:0.212535pt;}
.ws31{word-spacing:0.232727pt;}
.ws45{word-spacing:0.239104pt;}
.ws185{word-spacing:0.286925pt;}
.ws28{word-spacing:0.290909pt;}
.ws16a{word-spacing:0.296491pt;}
.ws175{word-spacing:0.334746pt;}
.wsa0{word-spacing:0.349091pt;}
.ws186{word-spacing:0.382566pt;}
.wsce{word-spacing:0.407273pt;}
.ws1b6{word-spacing:0.430387pt;}
.wscd{word-spacing:0.465455pt;}
.ws1fd{word-spacing:0.478205pt;}
.ws89{word-spacing:0.478208pt;}
.ws122{word-spacing:0.523637pt;}
.wse6{word-spacing:0.526029pt;}
.ws1ec{word-spacing:0.531339pt;}
.wse{word-spacing:0.573850pt;}
.ws1f1{word-spacing:0.575674pt;}
.ws61{word-spacing:0.581819pt;}
.ws90{word-spacing:0.621670pt;}
.ws1fa{word-spacing:0.637606pt;}
.ws38{word-spacing:0.640001pt;}
.ws71{word-spacing:0.698182pt;}
.ws91{word-spacing:0.717312pt;}
.ws6f{word-spacing:0.756364pt;}
.ws4a{word-spacing:0.765133pt;}
.ws5f{word-spacing:0.814546pt;}
.ws105{word-spacing:0.860774pt;}
.wsaa{word-spacing:0.872728pt;}
.ws14d{word-spacing:0.930910pt;}
.ws1b5{word-spacing:0.956416pt;}
.wsb0{word-spacing:0.989092pt;}
.ws1eb{word-spacing:1.005840pt;}
.wsdb{word-spacing:1.047274pt;}
.ws1ff{word-spacing:1.062677pt;}
.ws16d{word-spacing:1.099878pt;}
.ws179{word-spacing:1.105455pt;}
.ws16{word-spacing:1.147699pt;}
.ws162{word-spacing:1.163637pt;}
.ws46{word-spacing:1.195520pt;}
.ws6d{word-spacing:1.221819pt;}
.ws1ea{word-spacing:1.222079pt;}
.ws47{word-spacing:1.243341pt;}
.ws51{word-spacing:1.253677pt;}
.ws7b{word-spacing:1.280001pt;}
.ws18{word-spacing:1.291162pt;}
.ws207{word-spacing:1.328347pt;}
.ws29{word-spacing:1.338183pt;}
.ws41{word-spacing:1.338982pt;}
.ws116{word-spacing:1.345609pt;}
.ws1f5{word-spacing:1.385950pt;}
.wsc3{word-spacing:1.386803pt;}
.wsb3{word-spacing:1.396365pt;}
.ws96{word-spacing:1.434624pt;}
.wsb5{word-spacing:1.454547pt;}
.ws104{word-spacing:1.482445pt;}
.ws5b{word-spacing:1.512729pt;}
.ws4c{word-spacing:1.530266pt;}
.ws1ee{word-spacing:1.540882pt;}
.ws36{word-spacing:1.570910pt;}
.ws1d5{word-spacing:1.578086pt;}
.ws11c{word-spacing:1.589414pt;}
.ws85{word-spacing:1.625907pt;}
.wse2{word-spacing:1.629092pt;}
.ws5e{word-spacing:1.687274pt;}
.ws79{word-spacing:1.704645pt;}
.ws78{word-spacing:1.705054pt;}
.ws108{word-spacing:1.721549pt;}
.wsd0{word-spacing:1.745456pt;}
.ws8d{word-spacing:1.769370pt;}
.ws2c{word-spacing:1.803638pt;}
.ws1fb{word-spacing:1.806551pt;}
.ws16c{word-spacing:1.817190pt;}
.wsde{word-spacing:1.861820pt;}
.wsc2{word-spacing:1.912832pt;}
.ws3a{word-spacing:1.920002pt;}
.ws1a{word-spacing:1.960653pt;}
.ws35{word-spacing:1.978183pt;}
.ws126{word-spacing:2.008474pt;}
.ws1f9{word-spacing:2.019087pt;}
.ws72{word-spacing:2.036365pt;}
.ws56{word-spacing:2.052471pt;}
.ws3f{word-spacing:2.056294pt;}
.ws58{word-spacing:2.094547pt;}
.ws4d{word-spacing:2.104115pt;}
.ws1fc{word-spacing:2.125355pt;}
.wsfb{word-spacing:2.152729pt;}
.wscb{word-spacing:2.199757pt;}
.wse1{word-spacing:2.210911pt;}
.ws42{word-spacing:2.247578pt;}
.ws64{word-spacing:2.269093pt;}
.ws10e{word-spacing:2.295398pt;}
.ws17c{word-spacing:2.327275pt;}
.ws198{word-spacing:2.343219pt;}
.ws32{word-spacing:2.385457pt;}
.ws43{word-spacing:2.391040pt;}
.ws1d{word-spacing:2.437581pt;}
.ws82{word-spacing:2.438861pt;}
.wsad{word-spacing:2.443638pt;}
.ws44{word-spacing:2.456260pt;}
.ws169{word-spacing:2.486682pt;}
.ws18a{word-spacing:2.492888pt;}
.ws1f6{word-spacing:2.497292pt;}
.ws63{word-spacing:2.501820pt;}
.wsa7{word-spacing:2.525419pt;}
.ws87{word-spacing:2.534502pt;}
.ws178{word-spacing:2.560002pt;}
.ws10{word-spacing:2.582323pt;}
.wsb1{word-spacing:2.618184pt;}
.ws10d{word-spacing:2.630144pt;}
.ws1ef{word-spacing:2.656693pt;}
.ws7a{word-spacing:2.676366pt;}
.ws19c{word-spacing:2.677965pt;}
.ws40{word-spacing:2.725786pt;}
.ws6b{word-spacing:2.734548pt;}
.ws5{word-spacing:2.773606pt;}
.ws65{word-spacing:2.792730pt;}
.ws8e{word-spacing:2.821427pt;}
.ws18d{word-spacing:2.850911pt;}
.ws208{word-spacing:2.869229pt;}
.ws5a{word-spacing:2.869248pt;}
.ws60{word-spacing:2.909093pt;}
.ws183{word-spacing:2.917069pt;}
.ws1f4{word-spacing:2.922363pt;}
.ws8c{word-spacing:2.964890pt;}
.ws2e{word-spacing:2.967275pt;}
.ws155{word-spacing:3.012710pt;}
.wsd8{word-spacing:3.025457pt;}
.ws67{word-spacing:3.083639pt;}
.ws107{word-spacing:3.108352pt;}
.ws59{word-spacing:3.141821pt;}
.wse5{word-spacing:3.156173pt;}
.ws20d{word-spacing:3.188032pt;}
.wsfc{word-spacing:3.200003pt;}
.ws147{word-spacing:3.203994pt;}
.wsf{word-spacing:3.251814pt;}
.wsb7{word-spacing:3.258185pt;}
.ws17{word-spacing:3.299635pt;}
.ws62{word-spacing:3.316366pt;}
.ws4e{word-spacing:3.347456pt;}
.wsd4{word-spacing:3.374548pt;}
.ws83{word-spacing:3.395277pt;}
.wsb{word-spacing:3.416491pt;}
.ws11a{word-spacing:3.432730pt;}
.ws154{word-spacing:3.443098pt;}
.ws7e{word-spacing:3.486953pt;}
.ws27{word-spacing:3.490912pt;}
.ws80{word-spacing:3.490918pt;}
.ws200{word-spacing:3.506835pt;}
.ws140{word-spacing:3.538739pt;}
.wsf2{word-spacing:3.549094pt;}
.wsbd{word-spacing:3.586560pt;}
.ws180{word-spacing:3.607276pt;}
.ws8f{word-spacing:3.634381pt;}
.ws165{word-spacing:3.665458pt;}
.ws1e9{word-spacing:3.666237pt;}
.ws19b{word-spacing:3.682202pt;}
.wse8{word-spacing:3.723307pt;}
.wsd7{word-spacing:3.723639pt;}
.ws52{word-spacing:3.730022pt;}
.wsbf{word-spacing:3.738590pt;}
.wsc0{word-spacing:3.741875pt;}
.ws20c{word-spacing:3.772505pt;}
.ws15d{word-spacing:3.777843pt;}
.ws1b8{word-spacing:3.781538pt;}
.ws2d{word-spacing:3.781821pt;}
.wsec{word-spacing:3.825664pt;}
.ws1f7{word-spacing:3.878772pt;}
.ws124{word-spacing:3.898185pt;}
.ws16f{word-spacing:3.921306pt;}
.ws11d{word-spacing:3.956367pt;}
.ws92{word-spacing:3.969126pt;}
.ws7c{word-spacing:4.014549pt;}
.wsa{word-spacing:4.016947pt;}
.ws1f{word-spacing:4.058940pt;}
.ws6a{word-spacing:4.072731pt;}
.ws8{word-spacing:4.079437pt;}
.ws1e0{word-spacing:4.091308pt;}
.ws12{word-spacing:4.112589pt;}
.ws5d{word-spacing:4.130913pt;}
.ws95{word-spacing:4.160410pt;}
.ws76{word-spacing:4.189094pt;}
.wsdd{word-spacing:4.247276pt;}
.wsc8{word-spacing:4.256051pt;}
.ws1c{word-spacing:4.303872pt;}
.wse3{word-spacing:4.305458pt;}
.ws97{word-spacing:4.351693pt;}
.ws33{word-spacing:4.363640pt;}
.ws19{word-spacing:4.397824pt;}
.ws199{word-spacing:4.399514pt;}
.wsb6{word-spacing:4.421822pt;}
.ws201{word-spacing:4.463245pt;}
.ws3c{word-spacing:4.480004pt;}
.ws1f8{word-spacing:4.483767pt;}
.ws9d{word-spacing:4.495155pt;}
.wsbb{word-spacing:4.538186pt;}
.ws1fe{word-spacing:4.569513pt;}
.ws1b{word-spacing:4.590797pt;}
.ws3d{word-spacing:4.596367pt;}
.ws1ed{word-spacing:4.622646pt;}
.wsca{word-spacing:4.638618pt;}
.ws73{word-spacing:4.654549pt;}
.ws48{word-spacing:4.686438pt;}
.ws2f{word-spacing:4.712731pt;}
.ws30{word-spacing:4.770913pt;}
.ws88{word-spacing:4.782080pt;}
.ws77{word-spacing:4.829095pt;}
.ws9e{word-spacing:4.829901pt;}
.ws4f{word-spacing:4.877722pt;}
.ws137{word-spacing:4.887277pt;}
.ws1e{word-spacing:4.925542pt;}
.ws6c{word-spacing:4.945459pt;}
.ws81{word-spacing:4.973363pt;}
.ws3e{word-spacing:5.003641pt;}
.ws54{word-spacing:5.021184pt;}
.wsf8{word-spacing:5.061822pt;}
.ws20{word-spacing:5.069005pt;}
.ws7{word-spacing:5.116826pt;}
.wsf9{word-spacing:5.120004pt;}
.ws8a{word-spacing:5.164646pt;}
.wsa5{word-spacing:5.178186pt;}
.wsa3{word-spacing:5.183449pt;}
.wsa4{word-spacing:5.187183pt;}
.ws14{word-spacing:5.212467pt;}
.wscc{word-spacing:5.236368pt;}
.ws156{word-spacing:5.260288pt;}
.wsb4{word-spacing:5.294550pt;}
.ws1de{word-spacing:5.313387pt;}
.wsab{word-spacing:5.352732pt;}
.ws1b7{word-spacing:5.355930pt;}
.ws1e8{word-spacing:5.366521pt;}
.ws16b{word-spacing:5.403750pt;}
.ws153{word-spacing:5.448124pt;}
.ws1b4{word-spacing:5.451571pt;}
.wsba{word-spacing:5.469095pt;}
.ws188{word-spacing:5.499392pt;}
.ws2b{word-spacing:5.527277pt;}
.wsc9{word-spacing:5.547213pt;}
.ws1aa{word-spacing:5.585459pt;}
.ws9f{word-spacing:5.595034pt;}
.ws98{word-spacing:5.642854pt;}
.ws1ac{word-spacing:5.643641pt;}
.wsa8{word-spacing:5.674356pt;}
.ws20b{word-spacing:5.685324pt;}
.ws12e{word-spacing:5.690675pt;}
.ws57{word-spacing:5.701823pt;}
.ws9c{word-spacing:5.738496pt;}
.ws1d1{word-spacing:5.760005pt;}
.ws10f{word-spacing:5.786317pt;}
.ws17e{word-spacing:5.818187pt;}
.wsda{word-spacing:5.876369pt;}
.ws16e{word-spacing:5.904828pt;}
.wsc6{word-spacing:5.929779pt;}
.wscf{word-spacing:5.934550pt;}
.ws14c{word-spacing:5.992732pt;}
.ws141{word-spacing:6.025421pt;}
.ws138{word-spacing:6.050914pt;}
.ws189{word-spacing:6.073242pt;}
.ws12f{word-spacing:6.121062pt;}
.ws182{word-spacing:6.147066pt;}
.ws1cc{word-spacing:6.167278pt;}
.ws53{word-spacing:6.168883pt;}
.ws171{word-spacing:6.186470pt;}
.ws12c{word-spacing:6.216704pt;}
.ws187{word-spacing:6.225874pt;}
.wsa6{word-spacing:6.283642pt;}
.ws110{word-spacing:6.312346pt;}
.ws209{word-spacing:6.319175pt;}
.ws3b{word-spacing:6.341823pt;}
.ws170{word-spacing:6.360166pt;}
.ws133{word-spacing:6.400005pt;}
.ws1c4{word-spacing:6.496303pt;}
.ws4b{word-spacing:6.501704pt;}
.ws15{word-spacing:6.503629pt;}
.ws1c6{word-spacing:6.504671pt;}
.ws135{word-spacing:6.516369pt;}
.ws194{word-spacing:6.574551pt;}
.ws10c{word-spacing:6.599270pt;}
.ws160{word-spacing:6.606580pt;}
.wse7{word-spacing:6.619917pt;}
.ws1a7{word-spacing:6.632733pt;}
.wsea{word-spacing:6.690915pt;}
.ws49{word-spacing:6.694912pt;}
.ws159{word-spacing:6.742733pt;}
.ws164{word-spacing:6.749097pt;}
.ws17d{word-spacing:6.807278pt;}
.ws10a{word-spacing:6.816938pt;}
.wsc1{word-spacing:6.838374pt;}
.ws1e4{word-spacing:6.854269pt;}
.ws74{word-spacing:6.865460pt;}
.ws148{word-spacing:6.895747pt;}
.ws1e5{word-spacing:6.907403pt;}
.ws25{word-spacing:6.981824pt;}
.ws152{word-spacing:6.981837pt;}
.ws13b{word-spacing:7.040006pt;}
.ws131{word-spacing:7.173120pt;}
.wsac{word-spacing:7.214551pt;}
.ws100{word-spacing:7.272733pt;}
.ws158{word-spacing:7.329194pt;}
.ws121{word-spacing:7.330915pt;}
.ws1d6{word-spacing:7.364403pt;}
.ws1da{word-spacing:7.447279pt;}
.ws145{word-spacing:7.486811pt;}
.ws10b{word-spacing:7.555686pt;}
.ws1a3{word-spacing:7.563643pt;}
.wsc5{word-spacing:7.603507pt;}
.wsdc{word-spacing:7.621825pt;}
.ws1db{word-spacing:7.680006pt;}
.wsb9{word-spacing:7.738188pt;}
.ws128{word-spacing:7.741730pt;}
.ws1c1{word-spacing:7.789978pt;}
.ws1b1{word-spacing:7.796370pt;}
.ws130{word-spacing:7.842611pt;}
.wsbc{word-spacing:7.854552pt;}
.ws1d7{word-spacing:7.890432pt;}
.wsa9{word-spacing:7.912734pt;}
.ws50{word-spacing:7.929463pt;}
.ws144{word-spacing:7.931281pt;}
.ws1ce{word-spacing:7.970916pt;}
.wsef{word-spacing:7.986074pt;}
.ws20a{word-spacing:8.099843pt;}
.ws7f{word-spacing:8.129536pt;}
.wsf7{word-spacing:8.201247pt;}
.wsfe{word-spacing:8.265247pt;}
.ws150{word-spacing:8.274896pt;}
.ws18f{word-spacing:8.320007pt;}
.ws12d{word-spacing:8.365798pt;}
.ws99{word-spacing:8.368640pt;}
.ws1bd{word-spacing:8.378189pt;}
.ws184{word-spacing:8.393109pt;}
.ws206{word-spacing:8.406323pt;}
.ws151{word-spacing:8.432513pt;}
.ws39{word-spacing:8.436371pt;}
.ws13a{word-spacing:8.552734pt;}
.ws15a{word-spacing:8.697327pt;}
.ws193{word-spacing:8.727280pt;}
.ws191{word-spacing:8.777247pt;}
.ws125{word-spacing:8.785462pt;}
.ws143{word-spacing:8.799027pt;}
.ws1ad{word-spacing:8.887634pt;}
.ws1af{word-spacing:8.901826pt;}
.wsc7{word-spacing:8.990310pt;}
.ws202{word-spacing:9.139025pt;}
.wsf6{word-spacing:9.145247pt;}
.ws203{word-spacing:9.192159pt;}
.ws181{word-spacing:9.277235pt;}
.ws1a9{word-spacing:9.367281pt;}
.ws1e3{word-spacing:9.457828pt;}
.ws1e2{word-spacing:9.510962pt;}
.ws167{word-spacing:9.518797pt;}
.ws75{word-spacing:9.726580pt;}
.ws14b{word-spacing:9.731914pt;}
.ws204{word-spacing:9.829765pt;}
.ws93{word-spacing:9.913463pt;}
.ws1d0{word-spacing:9.949099pt;}
.wsf1{word-spacing:10.169247pt;}
.wse4{word-spacing:10.293623pt;}
.ws168{word-spacing:10.426359pt;}
.wsd6{word-spacing:10.643914pt;}
.ws109{word-spacing:10.664038pt;}
.wsd9{word-spacing:10.691914pt;}
.ws34{word-spacing:10.965366pt;}
.ws1be{word-spacing:11.125332pt;}
.ws177{word-spacing:11.374580pt;}
.ws146{word-spacing:11.427237pt;}
.ws1e6{word-spacing:11.908958pt;}
.ws19a{word-spacing:12.014382pt;}
.ws12a{word-spacing:12.152585pt;}
.wse0{word-spacing:12.158580pt;}
.ws205{word-spacing:12.565702pt;}
.wsee{word-spacing:13.007258pt;}
.ws123{word-spacing:13.070580pt;}
.ws197{word-spacing:13.214946pt;}
.ws1c3{word-spacing:13.338006pt;}
.ws174{word-spacing:13.389824pt;}
.ws142{word-spacing:13.676749pt;}
.ws18c{word-spacing:14.429103pt;}
.ws157{word-spacing:14.431514pt;}
.ws1e1{word-spacing:14.452412pt;}
.ws1cb{word-spacing:14.612673pt;}
.ws1bc{word-spacing:14.615669pt;}
.ws1b3{word-spacing:14.616328pt;}
.ws1d4{word-spacing:14.616687pt;}
.ws1bb{word-spacing:14.617347pt;}
.ws1c8{word-spacing:14.755654pt;}
.ws1a6{word-spacing:14.760687pt;}
.ws190{word-spacing:14.942580pt;}
.wsf4{word-spacing:15.001247pt;}
.ws132{word-spacing:15.022580pt;}
.ws9{word-spacing:15.159194pt;}
.ws13c{word-spacing:15.166580pt;}
.ws192{word-spacing:15.305247pt;}
.ws18b{word-spacing:15.683914pt;}
.ws14f{word-spacing:15.880209pt;}
.ws13d{word-spacing:16.019968pt;}
.ws149{word-spacing:16.259072pt;}
.ws196{word-spacing:16.880742pt;}
.ws3{word-spacing:17.343010pt;}
.wsae{word-spacing:17.454580pt;}
.ws1c7{word-spacing:17.488358pt;}
.ws1b9{word-spacing:17.889976pt;}
.ws1c9{word-spacing:17.955654pt;}
.ws1b2{word-spacing:18.012643pt;}
.ws55{word-spacing:18.028442pt;}
.ws19f{word-spacing:18.185247pt;}
.ws6{word-spacing:18.192205pt;}
.ws1a0{word-spacing:18.434635pt;}
.ws176{word-spacing:18.483914pt;}
.ws1df{word-spacing:18.915657pt;}
.ws23{word-spacing:19.204780pt;}
.ws1a1{word-spacing:19.313257pt;}
.ws20e{word-spacing:19.712665pt;}
.ws9b{word-spacing:20.015394pt;}
.ws1ab{word-spacing:20.226695pt;}
.ws1d2{word-spacing:20.363684pt;}
.ws11b{word-spacing:20.366580pt;}
.ws134{word-spacing:20.681247pt;}
.ws161{word-spacing:20.745247pt;}
.ws1cd{word-spacing:20.786036pt;}
.ws1c5{word-spacing:21.115324pt;}
.ws166{word-spacing:21.177247pt;}
.ws1a8{word-spacing:21.251354pt;}
.ws0{word-spacing:21.338614pt;}
.ws1a2{word-spacing:21.964702pt;}
.ws1a4{word-spacing:22.190380pt;}
.ws1c0{word-spacing:22.401976pt;}
.ws1b0{word-spacing:22.431339pt;}
.ws1cf{word-spacing:22.588343pt;}
.ws1d3{word-spacing:23.390021pt;}
.ws1ae{word-spacing:23.511969pt;}
.ws136{word-spacing:23.881247pt;}
.ws94{word-spacing:24.063681pt;}
.ws9a{word-spacing:24.063962pt;}
.ws8b{word-spacing:24.065260pt;}
.ws15f{word-spacing:24.243914pt;}
.ws24{word-spacing:24.973807pt;}
.wsfd{word-spacing:25.443914pt;}
.ws1ba{word-spacing:26.243914pt;}
.ws15e{word-spacing:26.755914pt;}
.ws195{word-spacing:28.813062pt;}
.wsb8{word-spacing:28.974580pt;}
.ws11f{word-spacing:29.266778pt;}
.ws11e{word-spacing:29.267791pt;}
.ws139{word-spacing:29.593247pt;}
.ws22{word-spacing:43.357380pt;}
.ws19e{word-spacing:47.825494pt;}
.ws1{word-spacing:52.028885pt;}
.ws173{word-spacing:52.392815pt;}
.ws172{word-spacing:227.238545pt;}
.ws102{word-spacing:585.447650pt;}
._28{margin-left:-13.209075pt;}
._20{margin-left:-11.694555pt;}
._1f{margin-left:-9.863822pt;}
._5{margin-left:-7.938253pt;}
._12{margin-left:-5.876369pt;}
._1a{margin-left:-4.945459pt;}
._1{margin-left:-3.634371pt;}
._17{margin-left:-2.582323pt;}
._0{margin-left:-1.615274pt;}
._7{width:0.908595pt;}
._3{width:2.206639pt;}
._e{width:3.467575pt;}
._4{width:4.373874pt;}
._f{width:5.674214pt;}
._21{width:6.783113pt;}
._19{width:11.710506pt;}
._1c{width:13.150720pt;}
._b{width:14.250598pt;}
._6{width:15.398298pt;}
._9{width:17.057134pt;}
._d{width:18.411008pt;}
._13{width:19.374562pt;}
._14{width:20.305471pt;}
._16{width:21.298625pt;}
._11{width:22.283383pt;}
._2{width:23.288730pt;}
._8{width:24.753562pt;}
._1b{width:26.240022pt;}
._a{width:27.257856pt;}
._23{width:28.376175pt;}
._10{width:29.523013pt;}
._c{width:30.617643pt;}
._15{width:32.102572pt;}
._18{width:33.639958pt;}
._1e{width:35.021422pt;}
._24{width:35.964638pt;}
._27{width:37.013299pt;}
._22{width:38.250231pt;}
._26{width:40.203670pt;}
._25{width:41.278038pt;}
._1d{width:42.647308pt;}
.fs5{font-size:37.193600pt;}
.fs10{font-size:38.256533pt;}
.fs7{font-size:39.404267pt;}
.fsd{font-size:42.507200pt;}
.fs13{font-size:43.782933pt;}
.fsf{font-size:47.820536pt;}
.fs6{font-size:47.820800pt;}
.fse{font-size:47.823758pt;}
.fs11{font-size:47.941867pt;}
.fs4{font-size:52.539200pt;}
.fs12{font-size:53.133867pt;}
.fsc{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fsa{font-size:76.513067pt;}
.fs0{font-size:85.014400pt;}
.fsb{font-size:91.815467pt;}
.fs2{font-size:110.200000pt;}
.fs9{font-size:132.197867pt;}
.fs8{font-size:159.402133pt;}
.fs1{font-size:191.282667pt;}
.y0{bottom:0.000000pt;}
.y2d4{bottom:19.901333pt;}
.y4c8{bottom:19.902667pt;}
.y58{bottom:19.904000pt;}
.y2d3{bottom:83.481333pt;}
.y57{bottom:83.482667pt;}
.y510{bottom:83.820000pt;}
.y2d{bottom:84.408000pt;}
.yfc{bottom:85.565333pt;}
.y441{bottom:86.017333pt;}
.y469{bottom:89.882436pt;}
.y46c{bottom:89.882601pt;}
.y40e{bottom:90.127770pt;}
.y411{bottom:90.127934pt;}
.y1a2{bottom:90.564000pt;}
.y2a4{bottom:93.229333pt;}
.y351{bottom:95.277333pt;}
.y2c{bottom:99.020000pt;}
.yfb{bottom:100.177333pt;}
.y2d2{bottom:101.546667pt;}
.y56{bottom:101.548000pt;}
.y46d{bottom:101.837255pt;}
.y489{bottom:101.837333pt;}
.y50f{bottom:101.885333pt;}
.y412{bottom:102.082588pt;}
.y417{bottom:102.084000pt;}
.y8{bottom:103.121333pt;}
.y536{bottom:103.354667pt;}
.y440{bottom:104.082667pt;}
.y1a1{bottom:105.176000pt;}
.y207{bottom:107.785333pt;}
.y2a3{bottom:107.841333pt;}
.y350{bottom:109.888000pt;}
.y2b{bottom:113.632000pt;}
.y46e{bottom:113.791903pt;}
.y48a{bottom:113.792000pt;}
.y413{bottom:114.038569pt;}
.y418{bottom:114.038667pt;}
.yfa{bottom:114.789333pt;}
.y144{bottom:116.689333pt;}
.y535{bottom:119.294667pt;}
.y2d1{bottom:119.612000pt;}
.y55{bottom:119.613333pt;}
.y1a0{bottom:119.788000pt;}
.y50e{bottom:119.950667pt;}
.y43f{bottom:122.148000pt;}
.y7{bottom:122.382667pt;}
.y206{bottom:122.397333pt;}
.y2a2{bottom:122.453333pt;}
.y34f{bottom:124.500000pt;}
.y46f{bottom:125.747890pt;}
.y48b{bottom:125.748000pt;}
.y414{bottom:125.993224pt;}
.y419{bottom:125.993333pt;}
.y2a{bottom:128.244000pt;}
.yf9{bottom:129.401333pt;}
.y143{bottom:131.301333pt;}
.y19f{bottom:134.400000pt;}
.y302{bottom:134.680000pt;}
.y534{bottom:135.234667pt;}
.y205{bottom:137.009333pt;}
.y2a1{bottom:137.065333pt;}
.y2d0{bottom:137.677333pt;}
.y1cc{bottom:137.678667pt;}
.y54{bottom:137.680000pt;}
.y470{bottom:137.702541pt;}
.y48c{bottom:137.702667pt;}
.y415{bottom:137.949208pt;}
.y41a{bottom:137.949333pt;}
.y32b{bottom:138.097333pt;}
.y555{bottom:138.529333pt;}
.y34e{bottom:139.112000pt;}
.y43e{bottom:140.214667pt;}
.y82{bottom:141.546667pt;}
.y6{bottom:141.644000pt;}
.y29{bottom:142.856000pt;}
.yf8{bottom:144.013333pt;}
.y142{bottom:145.913333pt;}
.y262{bottom:147.518667pt;}
.y3a4{bottom:148.377333pt;}
.y19e{bottom:149.010667pt;}
.y301{bottom:149.292000pt;}
.y471{bottom:149.657196pt;}
.y48d{bottom:149.657333pt;}
.y416{bottom:149.903863pt;}
.y41b{bottom:149.904000pt;}
.y533{bottom:151.174667pt;}
.y204{bottom:151.621333pt;}
.y2a0{bottom:151.677333pt;}
.y50d{bottom:153.104000pt;}
.y554{bottom:154.469333pt;}
.y2cf{bottom:155.742667pt;}
.y53{bottom:155.745333pt;}
.y81{bottom:156.158667pt;}
.y32a{bottom:156.164000pt;}
.y28{bottom:157.468000pt;}
.y43d{bottom:158.280000pt;}
.yf7{bottom:158.625333pt;}
.y141{bottom:160.525333pt;}
.y472{bottom:161.613194pt;}
.y48e{bottom:161.613333pt;}
.y410{bottom:161.858527pt;}
.y40f{bottom:161.859889pt;}
.y19d{bottom:163.622667pt;}
.y300{bottom:163.904000pt;}
.y203{bottom:166.233333pt;}
.y29f{bottom:166.289333pt;}
.y34d{bottom:169.502667pt;}
.y80{bottom:170.770667pt;}
.y27{bottom:172.080000pt;}
.yf6{bottom:173.237333pt;}
.y473{bottom:173.567841pt;}
.y48f{bottom:173.568000pt;}
.y2ce{bottom:173.809333pt;}
.y52{bottom:173.810667pt;}
.y532{bottom:174.000000pt;}
.y1cb{bottom:174.054667pt;}
.y329{bottom:174.229333pt;}
.y37a{bottom:174.332000pt;}
.y3a3{bottom:174.853333pt;}
.y140{bottom:175.137333pt;}
.y16f{bottom:175.913333pt;}
.y43c{bottom:176.345333pt;}
.y19c{bottom:178.234667pt;}
.y2ff{bottom:178.516000pt;}
.y29e{bottom:180.900000pt;}
.y202{bottom:185.209333pt;}
.y7f{bottom:185.382667pt;}
.y474{bottom:185.523829pt;}
.y490{bottom:185.524000pt;}
.y26{bottom:186.692000pt;}
.y256{bottom:187.849333pt;}
.y3a2{bottom:189.465333pt;}
.y13f{bottom:189.749333pt;}
.y531{bottom:189.941333pt;}
.y553{bottom:190.972000pt;}
.yae{bottom:191.876000pt;}
.y3cf{bottom:192.092000pt;}
.y1ca{bottom:192.120000pt;}
.yf5{bottom:192.213333pt;}
.y51{bottom:192.234667pt;}
.y328{bottom:192.294667pt;}
.y379{bottom:192.398667pt;}
.y19b{bottom:192.846667pt;}
.y2fe{bottom:193.126667pt;}
.y16e{bottom:193.978667pt;}
.y43b{bottom:194.410667pt;}
.y40d{bottom:195.456000pt;}
.y29d{bottom:195.512000pt;}
.y475{bottom:197.478480pt;}
.y491{bottom:197.478667pt;}
.y7e{bottom:199.994667pt;}
.y2cd{bottom:202.429333pt;}
.y255{bottom:202.461333pt;}
.y346{bottom:203.806667pt;}
.y3a1{bottom:204.077333pt;}
.y13e{bottom:204.361333pt;}
.y50c{bottom:205.288000pt;}
.y25{bottom:205.666667pt;}
.y530{bottom:205.881333pt;}
.y552{bottom:206.912000pt;}
.y19a{bottom:207.458667pt;}
.y2fd{bottom:207.738667pt;}
.y476{bottom:209.433135pt;}
.y492{bottom:209.433333pt;}
.yad{bottom:209.941333pt;}
.y40c{bottom:210.068000pt;}
.y29c{bottom:210.124000pt;}
.y3ce{bottom:210.157333pt;}
.y1c9{bottom:210.185333pt;}
.y50{bottom:210.300000pt;}
.y378{bottom:210.464000pt;}
.y201{bottom:211.685333pt;}
.y16d{bottom:212.044000pt;}
.y43a{bottom:212.476000pt;}
.y7d{bottom:217.841333pt;}
.y3a0{bottom:218.689333pt;}
.y13d{bottom:218.973333pt;}
.yf4{bottom:219.368000pt;}
.y477{bottom:221.389129pt;}
.y493{bottom:221.389333pt;}
.y254{bottom:221.436000pt;}
.y52f{bottom:221.821333pt;}
.y199{bottom:222.070667pt;}
.y2fc{bottom:222.350667pt;}
.y551{bottom:222.853333pt;}
.y50b{bottom:223.353333pt;}
.y29b{bottom:224.736000pt;}
.y327{bottom:225.861333pt;}
.y200{bottom:226.297333pt;}
.yac{bottom:228.006667pt;}
.y34a{bottom:228.180000pt;}
.y3cd{bottom:228.222667pt;}
.y1c8{bottom:228.252000pt;}
.y4f{bottom:228.365333pt;}
.y377{bottom:228.529333pt;}
.y121{bottom:228.684000pt;}
.y40b{bottom:229.044000pt;}
.y16c{bottom:230.109333pt;}
.y24{bottom:232.144000pt;}
.y478{bottom:233.343787pt;}
.y494{bottom:233.344000pt;}
.yf3{bottom:233.980000pt;}
.y7c{bottom:235.906667pt;}
.y198{bottom:236.682667pt;}
.y2fb{bottom:236.962667pt;}
.y39f{bottom:237.664000pt;}
.y52e{bottom:237.761333pt;}
.y13c{bottom:237.948000pt;}
.y550{bottom:238.793333pt;}
.y29a{bottom:239.348000pt;}
.y50a{bottom:241.418667pt;}
.y1ff{bottom:245.273333pt;}
.y479{bottom:245.298435pt;}
.y495{bottom:245.298667pt;}
.yab{bottom:246.073333pt;}
.y3cc{bottom:246.289333pt;}
.y1c7{bottom:246.317333pt;}
.y4e{bottom:246.432000pt;}
.y4c7{bottom:246.516000pt;}
.y376{bottom:246.594667pt;}
.y120{bottom:246.749333pt;}
.y23{bottom:246.756000pt;}
.y16b{bottom:248.176000pt;}
.yf2{bottom:248.590667pt;}
.y439{bottom:249.996000pt;}
.y197{bottom:251.294667pt;}
.y2fa{bottom:251.574667pt;}
.y2cc{bottom:251.958667pt;}
.y7b{bottom:253.972000pt;}
.y345{bottom:254.748000pt;}
.y34c{bottom:254.984000pt;}
.y47a{bottom:257.254419pt;}
.y496{bottom:257.254667pt;}
.y509{bottom:259.485333pt;}
.y52d{bottom:260.586667pt;}
.y253{bottom:261.366667pt;}
.y22{bottom:261.368000pt;}
.yf1{bottom:263.202667pt;}
.yaa{bottom:264.138667pt;}
.y39e{bottom:264.141333pt;}
.y3cb{bottom:264.354667pt;}
.y1c6{bottom:264.382667pt;}
.y4d{bottom:264.497333pt;}
.y4c6{bottom:264.581333pt;}
.y375{bottom:264.660000pt;}
.y11f{bottom:264.814667pt;}
.y196{bottom:265.906667pt;}
.y2f9{bottom:266.186667pt;}
.y16a{bottom:266.241333pt;}
.y438{bottom:268.061333pt;}
.y47b{bottom:269.209073pt;}
.y497{bottom:269.209333pt;}
.y2cb{bottom:270.024000pt;}
.y1fe{bottom:271.749333pt;}
.y7a{bottom:272.037333pt;}
.y299{bottom:272.656000pt;}
.y21{bottom:275.978667pt;}
.y52c{bottom:276.526667pt;}
.y34b{bottom:276.964000pt;}
.y508{bottom:277.550667pt;}
.yf0{bottom:277.814667pt;}
.y4e8{bottom:278.576000pt;}
.y39d{bottom:278.753333pt;}
.y252{bottom:280.342667pt;}
.y326{bottom:280.530667pt;}
.y47c{bottom:281.165068pt;}
.y498{bottom:281.165333pt;}
.y40a{bottom:281.822667pt;}
.ya9{bottom:282.204000pt;}
.y3ca{bottom:282.420000pt;}
.y1c5{bottom:282.448000pt;}
.y4c{bottom:282.562667pt;}
.y4c5{bottom:282.646667pt;}
.y374{bottom:282.726667pt;}
.y11e{bottom:282.880000pt;}
.y169{bottom:284.306667pt;}
.y54f{bottom:285.073333pt;}
.y2f8{bottom:285.162667pt;}
.y437{bottom:286.126667pt;}
.y1fd{bottom:286.361333pt;}
.y298{bottom:287.268000pt;}
.y2ca{bottom:288.090667pt;}
.y79{bottom:290.104000pt;}
.y20{bottom:290.590667pt;}
.yef{bottom:292.426667pt;}
.y52b{bottom:292.468000pt;}
.y47d{bottom:293.119712pt;}
.y499{bottom:293.120000pt;}
.y4e7{bottom:293.188000pt;}
.y39c{bottom:293.365333pt;}
.y507{bottom:295.616000pt;}
.y325{bottom:298.596000pt;}
.y228{bottom:300.269333pt;}
.y3c9{bottom:300.485333pt;}
.y1c4{bottom:300.513333pt;}
.y4b{bottom:300.628000pt;}
.y4c4{bottom:300.712000pt;}
.y409{bottom:300.797333pt;}
.y11d{bottom:300.945333pt;}
.y54e{bottom:301.013333pt;}
.y373{bottom:301.313333pt;}
.y297{bottom:301.880000pt;}
.y195{bottom:302.141333pt;}
.y168{bottom:302.372000pt;}
.y47e{bottom:305.074373pt;}
.y49a{bottom:305.074667pt;}
.y1f{bottom:305.202667pt;}
.y1fc{bottom:305.337333pt;}
.y342{bottom:305.690667pt;}
.yee{bottom:307.038667pt;}
.y4e6{bottom:307.800000pt;}
.y39b{bottom:307.977333pt;}
.y52a{bottom:308.408000pt;}
.y2c9{bottom:310.710667pt;}
.y251{bottom:311.817333pt;}
.y506{bottom:313.681333pt;}
.ya8{bottom:315.854667pt;}
.y296{bottom:316.492000pt;}
.y324{bottom:316.661333pt;}
.y194{bottom:316.753333pt;}
.y54d{bottom:316.953333pt;}
.y47f{bottom:317.030364pt;}
.y49b{bottom:317.030667pt;}
.y227{bottom:318.334667pt;}
.y3c8{bottom:318.550667pt;}
.y1c3{bottom:318.580000pt;}
.y4a{bottom:318.693333pt;}
.y4c3{bottom:318.777333pt;}
.y11c{bottom:319.012000pt;}
.y372{bottom:319.378667pt;}
.y1e{bottom:319.814667pt;}
.y167{bottom:320.437333pt;}
.yed{bottom:321.650667pt;}
.y4e5{bottom:322.412000pt;}
.y436{bottom:322.552000pt;}
.y39a{bottom:322.589333pt;}
.y250{bottom:326.429333pt;}
.y2f7{bottom:328.618667pt;}
.y2c8{bottom:328.777333pt;}
.y480{bottom:328.985012pt;}
.y49c{bottom:328.985333pt;}
.y3ea{bottom:329.291770pt;}
.y3ed{bottom:329.291934pt;}
.y295{bottom:331.104000pt;}
.y529{bottom:331.233333pt;}
.y505{bottom:331.746667pt;}
.y1fb{bottom:331.813333pt;}
.y1d{bottom:334.426667pt;}
.y349{bottom:334.697333pt;}
.y323{bottom:334.726667pt;}
.y348{bottom:335.497333pt;}
.y193{bottom:335.729333pt;}
.y347{bottom:335.857333pt;}
.yec{bottom:336.262667pt;}
.y226{bottom:336.401333pt;}
.y3c7{bottom:336.617333pt;}
.y1c2{bottom:336.645333pt;}
.y49{bottom:336.760000pt;}
.y4c2{bottom:336.844000pt;}
.y4e4{bottom:337.024000pt;}
.y11b{bottom:337.077333pt;}
.y399{bottom:337.200000pt;}
.y166{bottom:338.504000pt;}
.y435{bottom:340.617333pt;}
.y481{bottom:340.939667pt;}
.y49d{bottom:340.940000pt;}
.y24f{bottom:341.041333pt;}
.y3ee{bottom:341.246588pt;}
.y3fb{bottom:341.246667pt;}
.y371{bottom:341.569333pt;}
.y54c{bottom:341.926667pt;}
.y2f6{bottom:343.230667pt;}
.y294{bottom:345.716000pt;}
.y1fa{bottom:346.425333pt;}
.y2c7{bottom:346.842667pt;}
.y528{bottom:347.173333pt;}
.y504{bottom:349.813333pt;}
.yeb{bottom:350.874667pt;}
.y4e3{bottom:351.636000pt;}
.y398{bottom:351.812000pt;}
.y322{bottom:352.793333pt;}
.y482{bottom:352.895664pt;}
.y49e{bottom:352.896000pt;}
.y3ef{bottom:353.201236pt;}
.y3fc{bottom:353.201333pt;}
.y1c{bottom:353.402667pt;}
.y225{bottom:354.466667pt;}
.y3c6{bottom:354.682667pt;}
.y48{bottom:354.825333pt;}
.y13b{bottom:354.833333pt;}
.y4c1{bottom:354.909333pt;}
.y24e{bottom:355.653333pt;}
.y11a{bottom:355.818667pt;}
.y2f5{bottom:357.842667pt;}
.y54b{bottom:357.866667pt;}
.y434{bottom:358.684000pt;}
.y370{bottom:359.634667pt;}
.y293{bottom:360.326667pt;}
.y192{bottom:362.205333pt;}
.y527{bottom:363.113333pt;}
.y1c1{bottom:364.792000pt;}
.y483{bottom:364.850312pt;}
.y49f{bottom:364.850667pt;}
.y3f0{bottom:365.157224pt;}
.y3fd{bottom:365.157333pt;}
.y1f9{bottom:365.401333pt;}
.yea{bottom:365.486667pt;}
.y344{bottom:365.730667pt;}
.y4e2{bottom:366.246667pt;}
.y503{bottom:367.878667pt;}
.y13a{bottom:369.445333pt;}
.y24d{bottom:370.265333pt;}
.y397{bottom:370.788000pt;}
.y321{bottom:370.858667pt;}
.ya7{bottom:371.024000pt;}
.y78{bottom:371.697333pt;}
.y2f4{bottom:372.454667pt;}
.y224{bottom:372.532000pt;}
.y2c6{bottom:372.572000pt;}
.y3c5{bottom:372.748000pt;}
.y47{bottom:372.890667pt;}
.y4c0{bottom:373.417333pt;}
.y165{bottom:373.733333pt;}
.y54a{bottom:373.806667pt;}
.y119{bottom:373.884000pt;}
.y292{bottom:374.938667pt;}
.y433{bottom:376.749333pt;}
.y484{bottom:376.806300pt;}
.y4a0{bottom:376.806667pt;}
.y3f1{bottom:377.111875pt;}
.y3fe{bottom:377.112000pt;}
.y36f{bottom:377.701333pt;}
.y526{bottom:379.053333pt;}
.y1b{bottom:379.878667pt;}
.ye9{bottom:380.098667pt;}
.y343{bottom:380.342667pt;}
.y191{bottom:381.181333pt;}
.y139{bottom:384.057333pt;}
.y4e1{bottom:384.094667pt;}
.y24c{bottom:384.877333pt;}
.y502{bottom:385.944000pt;}
.y77{bottom:386.308000pt;}
.y2f3{bottom:387.066667pt;}
.y485{bottom:388.760951pt;}
.y4a1{bottom:388.761333pt;}
.y320{bottom:388.924000pt;}
.y3f2{bottom:389.066529pt;}
.y3ff{bottom:389.066667pt;}
.ya6{bottom:389.089333pt;}
.y291{bottom:389.550667pt;}
.y549{bottom:389.746667pt;}
.y261{bottom:390.597333pt;}
.y3c4{bottom:390.813333pt;}
.y46{bottom:390.956000pt;}
.y4bf{bottom:391.482667pt;}
.y1f8{bottom:391.877333pt;}
.y118{bottom:391.949333pt;}
.y223{bottom:393.608000pt;}
.y1a{bottom:394.490667pt;}
.ye8{bottom:394.709333pt;}
.y432{bottom:394.814667pt;}
.y2c5{bottom:395.192000pt;}
.y36e{bottom:395.766667pt;}
.y396{bottom:397.265333pt;}
.y138{bottom:398.669333pt;}
.y24b{bottom:399.488000pt;}
.y486{bottom:400.715605pt;}
.y4a2{bottom:400.716000pt;}
.y76{bottom:400.920000pt;}
.y3f3{bottom:401.022527pt;}
.y400{bottom:401.022667pt;}
.y2f2{bottom:401.678667pt;}
.y525{bottom:401.878667pt;}
.y4e0{bottom:402.160000pt;}
.y501{bottom:404.009333pt;}
.y290{bottom:404.162667pt;}
.y1f7{bottom:406.489333pt;}
.y31f{bottom:406.989333pt;}
.ya5{bottom:407.154667pt;}
.y341{bottom:408.161333pt;}
.y260{bottom:408.662667pt;}
.y3c3{bottom:408.878667pt;}
.y19{bottom:409.102667pt;}
.ye7{bottom:409.321333pt;}
.y45{bottom:409.380000pt;}
.y4be{bottom:409.548000pt;}
.y117{bottom:410.014667pt;}
.y1c0{bottom:411.473333pt;}
.y222{bottom:411.674667pt;}
.y395{bottom:411.876000pt;}
.y487{bottom:412.671590pt;}
.y4a3{bottom:412.672000pt;}
.y431{bottom:412.880000pt;}
.y3f4{bottom:412.977175pt;}
.y401{bottom:412.977333pt;}
.y2c4{bottom:413.258667pt;}
.y137{bottom:413.281333pt;}
.y190{bottom:413.728000pt;}
.y36d{bottom:413.832000pt;}
.y24a{bottom:414.100000pt;}
.y548{bottom:414.720000pt;}
.y75{bottom:415.532000pt;}
.y524{bottom:417.820000pt;}
.y28f{bottom:418.774667pt;}
.y4df{bottom:420.225333pt;}
.y2f1{bottom:420.654667pt;}
.y500{bottom:422.074667pt;}
.y340{bottom:422.773333pt;}
.y18{bottom:423.714667pt;}
.ye6{bottom:423.933333pt;}
.y488{bottom:424.626258pt;}
.y4a4{bottom:424.626667pt;}
.y408{bottom:424.932000pt;}
.y3f5{bottom:424.933163pt;}
.y402{bottom:424.933333pt;}
.y31e{bottom:425.054667pt;}
.y1f6{bottom:425.465333pt;}
.ya4{bottom:425.722667pt;}
.y25f{bottom:426.729333pt;}
.y44{bottom:427.446667pt;}
.y4bd{bottom:427.614667pt;}
.y116{bottom:428.081333pt;}
.y18f{bottom:428.340000pt;}
.y249{bottom:428.712000pt;}
.y1bf{bottom:429.538667pt;}
.y74{bottom:430.144000pt;}
.y3c2{bottom:430.417333pt;}
.y547{bottom:430.660000pt;}
.y394{bottom:430.852000pt;}
.y430{bottom:430.945333pt;}
.y2c3{bottom:431.324000pt;}
.y136{bottom:432.256000pt;}
.y28e{bottom:433.386667pt;}
.y523{bottom:433.760000pt;}
.y221{bottom:435.761333pt;}
.y46b{bottom:436.580892pt;}
.y46a{bottom:436.582798pt;}
.y3f6{bottom:436.887814pt;}
.y403{bottom:436.888000pt;}
.y33f{bottom:437.385333pt;}
.y4de{bottom:438.290667pt;}
.y17{bottom:438.326667pt;}
.y164{bottom:438.402667pt;}
.ye5{bottom:438.545333pt;}
.y36c{bottom:439.104000pt;}
.y4ff{bottom:440.141333pt;}
.y248{bottom:443.324000pt;}
.y31d{bottom:443.538667pt;}
.ya3{bottom:443.789333pt;}
.y25e{bottom:444.794667pt;}
.y43{bottom:445.512000pt;}
.y115{bottom:446.146667pt;}
.y18e{bottom:446.186667pt;}
.y546{bottom:446.601333pt;}
.y1be{bottom:447.604000pt;}
.y3c1{bottom:448.482667pt;}
.y3f7{bottom:448.842468pt;}
.y404{bottom:448.842667pt;}
.y42f{bottom:449.012000pt;}
.y73{bottom:449.120000pt;}
.y2c2{bottom:449.389333pt;}
.y1f5{bottom:451.941333pt;}
.y33e{bottom:451.997333pt;}
.y28d{bottom:452.362667pt;}
.y16{bottom:452.938667pt;}
.ye4{bottom:453.157333pt;}
.y220{bottom:453.826667pt;}
.y393{bottom:456.170667pt;}
.y4dd{bottom:456.356000pt;}
.y163{bottom:456.468000pt;}
.y522{bottom:456.585333pt;}
.y135{bottom:456.782667pt;}
.y36b{bottom:457.169333pt;}
.y247{bottom:457.936000pt;}
.y4fe{bottom:458.206667pt;}
.y3f8{bottom:460.798463pt;}
.y405{bottom:460.798667pt;}
.y31c{bottom:461.605333pt;}
.ya2{bottom:461.854667pt;}
.y545{bottom:462.541333pt;}
.y25d{bottom:462.860000pt;}
.y42{bottom:463.577333pt;}
.y114{bottom:464.212000pt;}
.y18d{bottom:464.252000pt;}
.y1bd{bottom:465.669333pt;}
.y4bc{bottom:466.410667pt;}
.y3c0{bottom:466.549333pt;}
.y1f4{bottom:466.553333pt;}
.y33d{bottom:466.608000pt;}
.y42e{bottom:467.077333pt;}
.y2c1{bottom:467.454667pt;}
.ye3{bottom:467.769333pt;}
.y392{bottom:470.782667pt;}
.y134{bottom:471.394667pt;}
.y15{bottom:471.913333pt;}
.y521{bottom:472.525333pt;}
.y246{bottom:472.548000pt;}
.y3f9{bottom:472.753120pt;}
.y406{bottom:472.753333pt;}
.y4dc{bottom:474.422667pt;}
.y162{bottom:474.533333pt;}
.y36a{bottom:475.234667pt;}
.y4fd{bottom:476.272000pt;}
.y21f{bottom:477.914667pt;}
.y31b{bottom:479.670667pt;}
.ya1{bottom:479.920000pt;}
.y25c{bottom:480.925333pt;}
.y41{bottom:481.642667pt;}
.y113{bottom:482.277333pt;}
.y18c{bottom:482.317333pt;}
.y1bc{bottom:483.736000pt;}
.y4bb{bottom:484.477333pt;}
.y3bf{bottom:484.614667pt;}
.y3fa{bottom:484.707768pt;}
.y407{bottom:484.708000pt;}
.y1f3{bottom:485.529333pt;}
.y33c{bottom:485.584000pt;}
.y133{bottom:486.006667pt;}
.y2c0{bottom:486.244000pt;}
.y28c{bottom:486.502667pt;}
.ye2{bottom:486.745333pt;}
.y544{bottom:487.513333pt;}
.y468{bottom:488.461333pt;}
.y520{bottom:488.465333pt;}
.y391{bottom:489.758667pt;}
.y4db{bottom:492.488000pt;}
.y161{bottom:492.600000pt;}
.y4fc{bottom:494.337333pt;}
.y3ec{bottom:496.663752pt;}
.y3eb{bottom:496.665311pt;}
.y369{bottom:497.425333pt;}
.y31a{bottom:497.736000pt;}
.ya0{bottom:497.985333pt;}
.y14{bottom:498.536000pt;}
.y25b{bottom:498.990667pt;}
.y2f0{bottom:499.333333pt;}
.y40{bottom:499.708000pt;}
.y112{bottom:500.342667pt;}
.y18b{bottom:500.384000pt;}
.y28b{bottom:501.114667pt;}
.y1bb{bottom:501.801333pt;}
.y21e{bottom:502.001333pt;}
.y4ba{bottom:502.542667pt;}
.y72{bottom:502.566667pt;}
.y467{bottom:503.073333pt;}
.y543{bottom:503.454667pt;}
.y42d{bottom:503.502667pt;}
.y2bf{bottom:504.310667pt;}
.y51f{bottom:504.405333pt;}
.y132{bottom:504.981333pt;}
.y245{bottom:506.117333pt;}
.y3be{bottom:509.193333pt;}
.y4da{bottom:510.553333pt;}
.y1f2{bottom:512.005333pt;}
.y33b{bottom:512.061333pt;}
.y4fb{bottom:512.402667pt;}
.y160{bottom:512.768000pt;}
.y13{bottom:513.148000pt;}
.ye1{bottom:513.900000pt;}
.y2ef{bottom:513.945333pt;}
.y71{bottom:514.854667pt;}
.y368{bottom:515.490667pt;}
.y28a{bottom:515.726667pt;}
.y319{bottom:515.801333pt;}
.y9f{bottom:516.050667pt;}
.y390{bottom:516.913333pt;}
.y25a{bottom:517.057333pt;}
.y3f{bottom:517.774667pt;}
.y111{bottom:518.409333pt;}
.y18a{bottom:518.449333pt;}
.y542{bottom:519.394667pt;}
.y1ba{bottom:519.866667pt;}
.y51e{bottom:520.346667pt;}
.y244{bottom:520.729333pt;}
.y42c{bottom:521.568000pt;}
.y466{bottom:522.049333pt;}
.y2be{bottom:522.376000pt;}
.y21d{bottom:526.089333pt;}
.y1f1{bottom:526.617333pt;}
.y33a{bottom:526.672000pt;}
.y3bd{bottom:527.258667pt;}
.y12{bottom:527.760000pt;}
.ye0{bottom:528.512000pt;}
.y4d9{bottom:528.618667pt;}
.y70{bottom:529.466667pt;}
.y3e9{bottom:530.261333pt;}
.y289{bottom:530.338667pt;}
.y4fa{bottom:530.469333pt;}
.y15f{bottom:530.833333pt;}
.y131{bottom:531.458667pt;}
.y38f{bottom:531.525333pt;}
.y2ee{bottom:532.920000pt;}
.y367{bottom:533.556000pt;}
.y318{bottom:533.866667pt;}
.y9e{bottom:534.117333pt;}
.y259{bottom:535.122667pt;}
.y541{bottom:535.334667pt;}
.y243{bottom:535.341333pt;}
.y3e{bottom:535.840000pt;}
.y110{bottom:536.474667pt;}
.y189{bottom:536.514667pt;}
.y42b{bottom:539.633333pt;}
.y2bd{bottom:540.441333pt;}
.y339{bottom:541.284000pt;}
.y4b9{bottom:542.302667pt;}
.y11{bottom:542.372000pt;}
.ydf{bottom:543.122667pt;}
.y51d{bottom:543.172000pt;}
.y6f{bottom:544.078667pt;}
.y3e8{bottom:544.873333pt;}
.y288{bottom:544.950667pt;}
.y3bc{bottom:545.324000pt;}
.y1f0{bottom:545.593333pt;}
.y130{bottom:546.070667pt;}
.y38e{bottom:546.137333pt;}
.y4d8{bottom:546.684000pt;}
.y4f9{bottom:548.534667pt;}
.y15e{bottom:548.898667pt;}
.y21c{bottom:550.177333pt;}
.y366{bottom:551.621333pt;}
.y317{bottom:551.932000pt;}
.y9d{bottom:552.182667pt;}
.y258{bottom:553.188000pt;}
.y1b9{bottom:553.261333pt;}
.y3d{bottom:553.905333pt;}
.y242{bottom:554.317333pt;}
.y188{bottom:554.580000pt;}
.y10f{bottom:555.216000pt;}
.y338{bottom:555.896000pt;}
.y42a{bottom:557.698667pt;}
.yde{bottom:557.734667pt;}
.y2bc{bottom:558.506667pt;}
.y6e{bottom:558.689333pt;}
.y51c{bottom:559.112000pt;}
.y2ed{bottom:559.397333pt;}
.y3e7{bottom:559.485333pt;}
.y287{bottom:559.562667pt;}
.y540{bottom:560.308000pt;}
.y4b8{bottom:560.368000pt;}
.y12f{bottom:560.682667pt;}
.y38d{bottom:560.749333pt;}
.y10{bottom:561.348000pt;}
.y3bb{bottom:563.389333pt;}
.y4d7{bottom:564.750667pt;}
.y15d{bottom:566.964000pt;}
.y365{bottom:569.688000pt;}
.y316{bottom:569.998667pt;}
.y9c{bottom:570.248000pt;}
.y21b{bottom:571.253333pt;}
.y4f8{bottom:571.418667pt;}
.y3c{bottom:571.970667pt;}
.ydd{bottom:572.346667pt;}
.y187{bottom:572.645333pt;}
.y1ef{bottom:572.748000pt;}
.y10e{bottom:573.281333pt;}
.y6d{bottom:573.301333pt;}
.y2ec{bottom:574.009333pt;}
.y3e6{bottom:574.097333pt;}
.y286{bottom:574.173333pt;}
.y337{bottom:574.872000pt;}
.y51b{bottom:575.052000pt;}
.y12e{bottom:575.294667pt;}
.y429{bottom:575.765333pt;}
.y53f{bottom:576.248000pt;}
.y2bb{bottom:576.572000pt;}
.y4b7{bottom:578.433333pt;}
.y465{bottom:578.852000pt;}
.y38c{bottom:579.724000pt;}
.y241{bottom:580.793333pt;}
.y4d6{bottom:582.816000pt;}
.y15c{bottom:585.029333pt;}
.ydc{bottom:586.958667pt;}
.y1ee{bottom:587.360000pt;}
.y364{bottom:587.753333pt;}
.yf{bottom:587.824000pt;}
.y3ba{bottom:587.968000pt;}
.y315{bottom:588.064000pt;}
.y9b{bottom:588.313333pt;}
.y2eb{bottom:588.620000pt;}
.y3e5{bottom:588.709333pt;}
.y285{bottom:588.785333pt;}
.y21a{bottom:589.318667pt;}
.y4f7{bottom:589.484000pt;}
.y3b{bottom:590.394667pt;}
.y186{bottom:590.712000pt;}
.y51a{bottom:590.992000pt;}
.y53e{bottom:592.188000pt;}
.y6c{bottom:592.277333pt;}
.y464{bottom:593.462667pt;}
.y428{bottom:593.830667pt;}
.y12d{bottom:594.269333pt;}
.y2ba{bottom:594.638667pt;}
.y240{bottom:595.405333pt;}
.y4b6{bottom:596.498667pt;}
.y10d{bottom:598.066667pt;}
.y4d5{bottom:600.881333pt;}
.ydb{bottom:601.570667pt;}
.y1ed{bottom:601.972000pt;}
.ye{bottom:602.436000pt;}
.y15b{bottom:603.096000pt;}
.y284{bottom:603.397333pt;}
.y363{bottom:605.818667pt;}
.y3b9{bottom:606.033333pt;}
.y9a{bottom:606.378667pt;}
.y314{bottom:606.548000pt;}
.y1b8{bottom:606.896000pt;}
.y519{bottom:606.932000pt;}
.y219{bottom:607.384000pt;}
.y2ea{bottom:607.596000pt;}
.y3e4{bottom:607.684000pt;}
.y463{bottom:608.074667pt;}
.y53d{bottom:608.128000pt;}
.y3a{bottom:608.460000pt;}
.y185{bottom:608.777333pt;}
.y4f6{bottom:613.572000pt;}
.y23f{bottom:614.381333pt;}
.y4b5{bottom:614.564000pt;}
.y10c{bottom:616.132000pt;}
.yda{bottom:616.182667pt;}
.y1ec{bottom:616.584000pt;}
.yd{bottom:617.048000pt;}
.y2b9{bottom:617.258667pt;}
.y336{bottom:617.988000pt;}
.y283{bottom:618.009333pt;}
.y4d4{bottom:618.946667pt;}
.y15a{bottom:621.161333pt;}
.y6b{bottom:621.194667pt;}
.y462{bottom:622.686667pt;}
.y518{bottom:622.873333pt;}
.y362{bottom:623.884000pt;}
.y99{bottom:624.445333pt;}
.y313{bottom:624.613333pt;}
.y1b7{bottom:624.961333pt;}
.y218{bottom:625.450667pt;}
.y39{bottom:626.526667pt;}
.y184{bottom:626.842667pt;}
.y3b8{bottom:627.572000pt;}
.yd9{bottom:630.794667pt;}
.y1eb{bottom:631.196000pt;}
.y427{bottom:631.349333pt;}
.y4f5{bottom:631.638667pt;}
.yc{bottom:631.660000pt;}
.y335{bottom:632.598667pt;}
.y282{bottom:632.621333pt;}
.y4b4{bottom:632.630667pt;}
.y53c{bottom:633.101333pt;}
.y2e9{bottom:634.073333pt;}
.y10b{bottom:634.197333pt;}
.y2b8{bottom:635.325333pt;}
.y6a{bottom:635.806667pt;}
.y4d3{bottom:637.012000pt;}
.y461{bottom:637.298667pt;}
.y159{bottom:639.226667pt;}
.y361{bottom:642.472000pt;}
.y312{bottom:642.678667pt;}
.y98{bottom:643.013333pt;}
.y1b6{bottom:643.026667pt;}
.y217{bottom:643.516000pt;}
.y38{bottom:644.592000pt;}
.yd8{bottom:645.406667pt;}
.y3b7{bottom:645.637333pt;}
.y1ea{bottom:645.806667pt;}
.yb{bottom:646.272000pt;}
.y334{bottom:647.210667pt;}
.y281{bottom:647.233333pt;}
.y23e{bottom:648.521333pt;}
.y2e8{bottom:648.685333pt;}
.y53b{bottom:649.041333pt;}
.y426{bottom:649.414667pt;}
.y69{bottom:650.418667pt;}
.y4b3{bottom:650.696000pt;}
.y460{bottom:651.910667pt;}
.y10a{bottom:652.264000pt;}
.y517{bottom:653.358667pt;}
.y183{bottom:654.976000pt;}
.y4d2{bottom:655.078667pt;}
.y4f4{bottom:655.726667pt;}
.y158{bottom:657.292000pt;}
.y12c{bottom:657.917333pt;}
.yd7{bottom:660.018667pt;}
.y1e9{bottom:660.418667pt;}
.y360{bottom:660.537333pt;}
.y311{bottom:660.744000pt;}
.ya{bottom:660.884000pt;}
.y2b7{bottom:661.053333pt;}
.y97{bottom:661.078667pt;}
.y1b5{bottom:661.093333pt;}
.y216{bottom:661.581333pt;}
.y333{bottom:661.822667pt;}
.y280{bottom:661.845333pt;}
.y23d{bottom:663.133333pt;}
.y3b6{bottom:663.702667pt;}
.y53a{bottom:664.981333pt;}
.y68{bottom:665.030667pt;}
.y45f{bottom:666.522667pt;}
.y2e7{bottom:667.660000pt;}
.y4b2{bottom:668.761333pt;}
.y182{bottom:669.588000pt;}
.y109{bottom:670.329333pt;}
.y12b{bottom:672.529333pt;}
.y4f3{bottom:673.792000pt;}
.y1e8{bottom:675.030667pt;}
.y157{bottom:675.357333pt;}
.y516{bottom:676.184000pt;}
.y23c{bottom:677.745333pt;}
.y37{bottom:678.100000pt;}
.y35f{bottom:678.602667pt;}
.y310{bottom:678.810667pt;}
.yd6{bottom:678.993333pt;}
.y96{bottom:679.144000pt;}
.y1b4{bottom:679.158667pt;}
.y67{bottom:679.642667pt;}
.y215{bottom:679.646667pt;}
.y9{bottom:679.858667pt;}
.y332{bottom:680.798667pt;}
.y539{bottom:680.922667pt;}
.y3b5{bottom:681.769333pt;}
.y181{bottom:684.200000pt;}
.y45e{bottom:685.498667pt;}
.y2b6{bottom:686.782667pt;}
.y425{bottom:686.934667pt;}
.y12a{bottom:687.141333pt;}
.y1e7{bottom:689.642667pt;}
.y38b{bottom:689.836000pt;}
.y23b{bottom:692.357333pt;}
.y156{bottom:693.424000pt;}
.y2e6{bottom:694.137333pt;}
.y66{bottom:694.254667pt;}
.y27f{bottom:695.414667pt;}
.y108{bottom:695.949333pt;}
.y35e{bottom:696.668000pt;}
.y30f{bottom:696.876000pt;}
.y95{bottom:697.209333pt;}
.y1b3{bottom:697.224000pt;}
.y214{bottom:697.712000pt;}
.y4f2{bottom:697.881333pt;}
.y180{bottom:698.810667pt;}
.y515{bottom:699.010667pt;}
.y3b4{bottom:699.834667pt;}
.y129{bottom:701.753333pt;}
.y3e3{bottom:703.992000pt;}
.y38a{bottom:704.448000pt;}
.y424{bottom:705.000000pt;}
.yd5{bottom:705.470667pt;}
.y538{bottom:705.894667pt;}
.y23a{bottom:706.969333pt;}
.y4b1{bottom:708.521333pt;}
.y1e6{bottom:708.618667pt;}
.y2e5{bottom:708.749333pt;}
.y65{bottom:708.866667pt;}
.y27e{bottom:710.026667pt;}
.y4d1{bottom:710.861333pt;}
.y155{bottom:711.489333pt;}
.y2b5{bottom:712.512000pt;}
.y17f{bottom:713.422667pt;}
.y107{bottom:714.014667pt;}
.y35d{bottom:714.734667pt;}
.y30e{bottom:714.941333pt;}
.y514{bottom:714.950667pt;}
.y94{bottom:715.276000pt;}
.y1b2{bottom:715.289333pt;}
.y213{bottom:715.778667pt;}
.y446{bottom:717.697103pt;}
.y449{bottom:717.697267pt;}
.y3b3{bottom:717.900000pt;}
.y3e2{bottom:718.604000pt;}
.yd4{bottom:720.082667pt;}
.y128{bottom:720.729333pt;}
.y239{bottom:721.581333pt;}
.y537{bottom:721.834667pt;}
.y4f1{bottom:721.969333pt;}
.y2e4{bottom:723.360000pt;}
.y389{bottom:723.422667pt;}
.y64{bottom:723.477333pt;}
.y4d0{bottom:725.473333pt;}
.y4b0{bottom:726.586667pt;}
.y27d{bottom:729.001333pt;}
.y154{bottom:729.554667pt;}
.y44a{bottom:729.651921pt;}
.y454{bottom:729.652000pt;}
.y2b4{bottom:730.577333pt;}
.y106{bottom:732.080000pt;}
.y17e{bottom:732.398667pt;}
.y35c{bottom:732.800000pt;}
.y30d{bottom:733.006667pt;}
.y3e1{bottom:733.216000pt;}
.y93{bottom:733.341333pt;}
.y1b1{bottom:733.600000pt;}
.y212{bottom:733.844000pt;}
.yd3{bottom:734.694667pt;}
.y1e5{bottom:735.094667pt;}
.y3b2{bottom:735.965333pt;}
.y238{bottom:736.192000pt;}
.y513{bottom:737.776000pt;}
.y2e3{bottom:737.972000pt;}
.y4cf{bottom:740.085333pt;}
.y36{bottom:741.482667pt;}
.y44b{bottom:741.606569pt;}
.y455{bottom:741.606667pt;}
.y63{bottom:742.453333pt;}
.y423{bottom:742.518667pt;}
.y4af{bottom:744.652000pt;}
.y4f0{bottom:746.058667pt;}
.y153{bottom:747.620000pt;}
.y3e0{bottom:747.828000pt;}
.yd2{bottom:749.306667pt;}
.y1e4{bottom:749.706667pt;}
.y237{bottom:750.804000pt;}
.y35b{bottom:750.865333pt;}
.y30c{bottom:751.072000pt;}
.y92{bottom:751.406667pt;}
.y1b0{bottom:751.665333pt;}
.y211{bottom:751.909333pt;}
.y2e2{bottom:752.584000pt;}
.y44c{bottom:753.562557pt;}
.y456{bottom:753.562667pt;}
.y512{bottom:753.716000pt;}
.y3b1{bottom:754.030667pt;}
.y127{bottom:754.693333pt;}
.y4ce{bottom:754.697333pt;}
.y5{bottom:755.162667pt;}
.y2b3{bottom:756.306667pt;}
.y26e{bottom:757.475770pt;}
.y271{bottom:757.475934pt;}
.y105{bottom:757.700000pt;}
.y17d{bottom:758.874667pt;}
.y422{bottom:760.585333pt;}
.y3df{bottom:762.440000pt;}
.y4ae{bottom:762.717333pt;}
.yd1{bottom:763.917333pt;}
.y4ef{bottom:764.124000pt;}
.y1e3{bottom:764.318667pt;}
.y35{bottom:765.393333pt;}
.y44d{bottom:765.517208pt;}
.y457{bottom:765.517333pt;}
.y152{bottom:765.685333pt;}
.y2e1{bottom:767.196000pt;}
.y62{bottom:767.772000pt;}
.y30b{bottom:769.138667pt;}
.y126{bottom:769.305333pt;}
.y4cd{bottom:769.309333pt;}
.y272{bottom:769.430588pt;}
.y277{bottom:769.430667pt;}
.y35a{bottom:769.453333pt;}
.y91{bottom:769.472000pt;}
.y1af{bottom:769.730667pt;}
.y210{bottom:769.974667pt;}
.y3b0{bottom:772.097333pt;}
.y17c{bottom:773.486667pt;}
.y2b2{bottom:774.372000pt;}
.y104{bottom:775.766667pt;}
.y3de{bottom:777.052000pt;}
.y458{bottom:777.472000pt;}
.y44e{bottom:777.473196pt;}
.yd0{bottom:778.529333pt;}
.y421{bottom:778.650667pt;}
.y1e2{bottom:778.930667pt;}
.y4ad{bottom:780.784000pt;}
.y273{bottom:781.385236pt;}
.y278{bottom:781.385333pt;}
.y61{bottom:782.384000pt;}
.y151{bottom:783.752000pt;}
.y4cc{bottom:783.921333pt;}
.y511{bottom:785.042667pt;}
.y2e0{bottom:786.172000pt;}
.y236{bottom:786.361333pt;}
.y30a{bottom:787.204000pt;}
.y359{bottom:787.518667pt;}
.y90{bottom:787.537333pt;}
.y1ae{bottom:787.796000pt;}
.y20f{bottom:788.040000pt;}
.y4ee{bottom:788.213333pt;}
.y125{bottom:788.281333pt;}
.y34{bottom:789.302667pt;}
.y44f{bottom:789.427860pt;}
.y459{bottom:789.428000pt;}
.y3af{bottom:790.162667pt;}
.y3dd{bottom:791.662667pt;}
.y17b{bottom:792.462667pt;}
.y274{bottom:793.341224pt;}
.y279{bottom:793.341333pt;}
.y1e1{bottom:793.542667pt;}
.y103{bottom:793.832000pt;}
.y60{bottom:796.996000pt;}
.ycf{bottom:797.505333pt;}
.y4cb{bottom:798.533333pt;}
.y4ac{bottom:798.849333pt;}
.y2b1{bottom:800.101333pt;}
.y450{bottom:801.382508pt;}
.y45a{bottom:801.382667pt;}
.y150{bottom:803.920000pt;}
.y309{bottom:805.269333pt;}
.y275{bottom:805.295875pt;}
.y27a{bottom:805.296000pt;}
.y235{bottom:805.337333pt;}
.y358{bottom:805.584000pt;}
.y8f{bottom:805.604000pt;}
.y1ad{bottom:805.861333pt;}
.y20e{bottom:806.106667pt;}
.y3dc{bottom:806.274667pt;}
.y4ed{bottom:806.278667pt;}
.y1e0{bottom:808.154667pt;}
.y5f{bottom:811.608000pt;}
.y2df{bottom:812.648000pt;}
.y4ca{bottom:813.145333pt;}
.y33{bottom:813.213333pt;}
.y451{bottom:813.338496pt;}
.y45b{bottom:813.338667pt;}
.y124{bottom:813.600000pt;}
.y420{bottom:815.076000pt;}
.y257{bottom:815.946667pt;}
.y4{bottom:816.073333pt;}
.y4ab{bottom:816.914667pt;}
.y27c{bottom:817.250667pt;}
.y276{bottom:817.251863pt;}
.y27b{bottom:817.252000pt;}
.y3ae{bottom:818.606667pt;}
.y102{bottom:818.617333pt;}
.y17a{bottom:818.940000pt;}
.y3db{bottom:820.886667pt;}
.y14f{bottom:821.985333pt;}
.y2b0{bottom:822.722667pt;}
.y308{bottom:823.334667pt;}
.y357{bottom:823.649333pt;}
.y8e{bottom:823.669333pt;}
.y1ac{bottom:823.928000pt;}
.y20d{bottom:824.172000pt;}
.y452{bottom:825.293147pt;}
.y45c{bottom:825.293333pt;}
.y5e{bottom:826.220000pt;}
.y1df{bottom:827.129333pt;}
.y331{bottom:827.130667pt;}
.y2de{bottom:827.260000pt;}
.y123{bottom:828.212000pt;}
.y4ec{bottom:829.162667pt;}
.y270{bottom:829.206527pt;}
.y26f{bottom:829.207889pt;}
.y234{bottom:831.813333pt;}
.y4c9{bottom:832.120000pt;}
.y41f{bottom:833.141333pt;}
.y179{bottom:833.550667pt;}
.y4aa{bottom:834.980000pt;}
.y3da{bottom:835.498667pt;}
.y3ad{bottom:836.672000pt;}
.y101{bottom:836.682667pt;}
.y32{bottom:837.124000pt;}
.y453{bottom:837.247801pt;}
.y45d{bottom:837.248000pt;}
.y14e{bottom:840.050667pt;}
.y2af{bottom:840.788000pt;}
.y356{bottom:841.716000pt;}
.y8d{bottom:841.734667pt;}
.y307{bottom:841.818667pt;}
.y1ab{bottom:841.993333pt;}
.y20c{bottom:842.237333pt;}
.y5d{bottom:845.196000pt;}
.yaf{bottom:846.057103pt;}
.yb2{bottom:846.057267pt;}
.y2dd{bottom:846.236000pt;}
.y233{bottom:846.425333pt;}
.y122{bottom:847.188000pt;}
.y4eb{bottom:847.228000pt;}
.y178{bottom:848.162667pt;}
.y448{bottom:849.203796pt;}
.y447{bottom:849.205276pt;}
.y3d9{bottom:850.110667pt;}
.y41e{bottom:851.206667pt;}
.y4a9{bottom:853.045333pt;}
.y3ac{bottom:854.737333pt;}
.y100{bottom:854.748000pt;}
.y1cd{bottom:858.013103pt;}
.yb3{bottom:858.013255pt;}
.y1d0{bottom:858.013267pt;}
.yc1{bottom:858.013333pt;}
.y14d{bottom:858.116000pt;}
.y2ae{bottom:859.577333pt;}
.y355{bottom:859.781333pt;}
.y8c{bottom:859.800000pt;}
.y306{bottom:859.884000pt;}
.y1aa{bottom:860.058667pt;}
.y20b{bottom:860.302667pt;}
.y31{bottom:861.034667pt;}
.y177{bottom:862.774667pt;}
.y3d8{bottom:864.722667pt;}
.y4ea{bottom:865.293333pt;}
.y232{bottom:865.401333pt;}
.y26d{bottom:869.140000pt;}
.y3{bottom:869.206667pt;}
.y41d{bottom:869.272000pt;}
.yb4{bottom:869.967903pt;}
.y1d1{bottom:869.967921pt;}
.yc2{bottom:869.968000pt;}
.y4a8{bottom:871.112000pt;}
.y2dc{bottom:872.712000pt;}
.y14c{bottom:876.181333pt;}
.y176{bottom:877.386667pt;}
.y2ad{bottom:877.642667pt;}
.y354{bottom:877.846667pt;}
.y8b{bottom:877.865333pt;}
.y305{bottom:877.950667pt;}
.y1a9{bottom:878.124000pt;}
.y20a{bottom:878.368000pt;}
.y3d7{bottom:879.334667pt;}
.y3ab{bottom:880.146667pt;}
.yb5{bottom:881.922557pt;}
.y1d2{bottom:881.922569pt;}
.yc3{bottom:881.922667pt;}
.y445{bottom:882.801333pt;}
.yff{bottom:883.321333pt;}
.y26c{bottom:883.752000pt;}
.y30{bottom:884.944000pt;}
.y2db{bottom:887.324000pt;}
.y41c{bottom:887.338667pt;}
.y4a7{bottom:889.177333pt;}
.y175{bottom:891.998667pt;}
.y37b{bottom:893.878436pt;}
.yb6{bottom:893.878541pt;}
.y1d3{bottom:893.878557pt;}
.y37e{bottom:893.878601pt;}
.yc4{bottom:893.878667pt;}
.y3d6{bottom:893.946667pt;}
.y14b{bottom:894.248000pt;}
.y2ac{bottom:895.708000pt;}
.y353{bottom:895.912000pt;}
.y8a{bottom:895.932000pt;}
.y304{bottom:896.016000pt;}
.y1a8{bottom:896.189333pt;}
.y209{bottom:896.434667pt;}
.y231{bottom:896.876000pt;}
.y3aa{bottom:898.213333pt;}
.y26b{bottom:898.364000pt;}
.y4e9{bottom:898.446667pt;}
.y444{bottom:901.777333pt;}
.y2da{bottom:901.936000pt;}
.yb7{bottom:905.833196pt;}
.y1d4{bottom:905.833208pt;}
.y37f{bottom:905.833255pt;}
.yc5{bottom:905.833333pt;}
.y3d5{bottom:908.558667pt;}
.y174{bottom:910.974667pt;}
.y230{bottom:911.488000pt;}
.y14a{bottom:912.313333pt;}
.y26a{bottom:912.976000pt;}
.y2ab{bottom:913.774667pt;}
.y352{bottom:913.977333pt;}
.y89{bottom:913.997333pt;}
.y303{bottom:914.081333pt;}
.y1a7{bottom:914.256000pt;}
.y208{bottom:914.500000pt;}
.y3a9{bottom:916.278667pt;}
.y2d9{bottom:916.548000pt;}
.yb8{bottom:917.787860pt;}
.y1d5{bottom:917.787863pt;}
.y380{bottom:917.787903pt;}
.yc6{bottom:917.788000pt;}
.y2f{bottom:918.445333pt;}
.y5c{bottom:923.456000pt;}
.y22f{bottom:926.100000pt;}
.y269{bottom:927.586667pt;}
.y4a6{bottom:928.937333pt;}
.yb9{bottom:929.743841pt;}
.y1d6{bottom:929.743860pt;}
.y381{bottom:929.743890pt;}
.yc7{bottom:929.744000pt;}
.y2aa{bottom:931.840000pt;}
.y88{bottom:932.062667pt;}
.y1a6{bottom:932.321333pt;}
.y149{bottom:932.481333pt;}
.yfe{bottom:932.565333pt;}
.y3a8{bottom:934.344000pt;}
.y443{bottom:935.122667pt;}
.y2d8{bottom:935.524000pt;}
.y173{bottom:937.450667pt;}
.y5b{bottom:938.068000pt;}
.y22e{bottom:940.712000pt;}
.yba{bottom:941.698496pt;}
.y1d7{bottom:941.698508pt;}
.y382{bottom:941.698541pt;}
.yc8{bottom:941.698667pt;}
.y268{bottom:942.198667pt;}
.y3d4{bottom:943.169333pt;}
.y4a5{bottom:947.002667pt;}
.y2a9{bottom:949.905333pt;}
.y87{bottom:950.128000pt;}
.y1a5{bottom:950.386667pt;}
.y148{bottom:950.546667pt;}
.yfd{bottom:950.630667pt;}
.y172{bottom:952.062667pt;}
.y3a7{bottom:952.409333pt;}
.y5a{bottom:952.678667pt;}
.y1d8{bottom:953.653163pt;}
.y383{bottom:953.653196pt;}
.y1de{bottom:953.653333pt;}
.ybb{bottom:953.654480pt;}
.yc9{bottom:953.654667pt;}
.y442{bottom:954.097333pt;}
.y22d{bottom:955.322667pt;}
.y267{bottom:956.810667pt;}
.y3d3{bottom:961.234667pt;}
.y330{bottom:963.040000pt;}
.ybc{bottom:965.609135pt;}
.y1d9{bottom:965.609147pt;}
.y384{bottom:965.609194pt;}
.yca{bottom:965.609333pt;}
.y171{bottom:966.674667pt;}
.y1a4{bottom:968.452000pt;}
.y147{bottom:968.612000pt;}
.y2a8{bottom:968.694667pt;}
.y86{bottom:968.696000pt;}
.y22c{bottom:969.934667pt;}
.y3a6{bottom:970.474667pt;}
.y266{bottom:971.422667pt;}
.y59{bottom:971.654667pt;}
.ybd{bottom:977.563796pt;}
.y1da{bottom:977.563801pt;}
.y385{bottom:977.563841pt;}
.ycb{bottom:977.564000pt;}
.y32f{bottom:977.652000pt;}
.y3d2{bottom:979.301333pt;}
.y22b{bottom:984.546667pt;}
.y170{bottom:985.650667pt;}
.y265{bottom:986.034667pt;}
.y1a3{bottom:986.517333pt;}
.y146{bottom:986.677333pt;}
.y2a7{bottom:986.760000pt;}
.y85{bottom:986.762667pt;}
.y3a5{bottom:988.541333pt;}
.ybe{bottom:989.519787pt;}
.y1db{bottom:989.519796pt;}
.y386{bottom:989.519829pt;}
.ycc{bottom:989.520000pt;}
.y32e{bottom:992.264000pt;}
.y2d7{bottom:993.669333pt;}
.y2{bottom:996.857333pt;}
.y3d1{bottom:997.366667pt;}
.y22a{bottom:999.158667pt;}
.y264{bottom:1000.646667pt;}
.ybf{bottom:1001.474435pt;}
.y1dc{bottom:1001.474453pt;}
.y387{bottom:1001.474480pt;}
.ycd{bottom:1001.474667pt;}
.y2a6{bottom:1004.826667pt;}
.y84{bottom:1004.828000pt;}
.y32d{bottom:1006.876000pt;}
.y2d6{bottom:1008.281333pt;}
.y2e{bottom:1010.360000pt;}
.yc0{bottom:1013.429086pt;}
.y1dd{bottom:1013.429101pt;}
.y388{bottom:1013.429135pt;}
.yce{bottom:1013.429333pt;}
.y229{bottom:1013.770667pt;}
.y263{bottom:1015.258667pt;}
.y3d0{bottom:1015.432000pt;}
.y145{bottom:1021.908000pt;}
.y2a5{bottom:1022.892000pt;}
.y83{bottom:1022.893333pt;}
.y1{bottom:1023.424000pt;}
.yb1{bottom:1025.385073pt;}
.y1cf{bottom:1025.385086pt;}
.y37d{bottom:1025.385129pt;}
.y37c{bottom:1025.386610pt;}
.y1ce{bottom:1025.386644pt;}
.yb0{bottom:1025.386652pt;}
.y32c{bottom:1025.852000pt;}
.y2d5{bottom:1027.257333pt;}
.h7{height:25.886746pt;}
.h9{height:30.144264pt;}
.ha{height:33.235456pt;}
.h18{height:33.283093pt;}
.h8{height:33.283277pt;}
.h17{height:33.285335pt;}
.h16{height:33.290950pt;}
.h24{height:33.493944pt;}
.h1b{height:34.239693pt;}
.h1a{height:34.574438pt;}
.h20{height:36.675528pt;}
.h23{height:36.928037pt;}
.h21{height:36.981171pt;}
.h1d{height:38.400102pt;}
.h22{height:38.415786pt;}
.hc{height:39.440264pt;}
.hb{height:39.445597pt;}
.h14{height:40.436397pt;}
.h11{height:40.494579pt;}
.h1c{height:40.727307pt;}
.h13{height:42.065490pt;}
.h6{height:42.714370pt;}
.h1e{height:43.337412pt;}
.h25{height:43.829944pt;}
.h5{height:46.099251pt;}
.h1f{height:46.720039pt;}
.h15{height:50.817011pt;}
.h12{height:50.822345pt;}
.hf{height:52.794016pt;}
.h19{height:53.253094pt;}
.h2{height:59.085008pt;}
.h10{height:66.382582pt;}
.h4{height:76.699200pt;}
.he{height:92.009715pt;}
.hd{height:115.247742pt;}
.h3{height:138.297368pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.076000pt;}
.x21{left:95.210667pt;}
.x1f{left:102.002667pt;}
.x30{left:108.446667pt;}
.x2f{left:112.752000pt;}
.x1e{left:115.093333pt;}
.x3{left:117.253333pt;}
.x31{left:122.877333pt;}
.x1d{left:128.184000pt;}
.x19{left:130.002667pt;}
.x18{left:131.036000pt;}
.x32{left:137.308000pt;}
.x34{left:138.397333pt;}
.x33{left:139.836000pt;}
.x2e{left:146.396000pt;}
.x20{left:148.606667pt;}
.x3a{left:403.496000pt;}
.x29{left:507.864000pt;}
.x23{left:514.993333pt;}
.x16{left:519.560000pt;}
.x4{left:521.157333pt;}
.x2{left:522.525333pt;}
.x5{left:523.438667pt;}
.x7{left:526.462667pt;}
.x1a{left:528.650667pt;}
.x1c{left:533.312000pt;}
.x17{left:537.070667pt;}
.xa{left:538.465634pt;}
.x36{left:540.678667pt;}
.x39{left:541.833333pt;}
.x38{left:544.846667pt;}
.x37{left:545.962667pt;}
.x2b{left:548.276000pt;}
.xb{left:550.420295pt;}
.x6{left:552.776000pt;}
.xc{left:562.374953pt;}
.x35{left:564.874667pt;}
.xd{left:574.330956pt;}
.x22{left:576.902667pt;}
.x2c{left:582.336000pt;}
.x28{left:583.788000pt;}
.x1b{left:585.342667pt;}
.xe{left:586.285617pt;}
.x27{left:587.301333pt;}
.x3b{left:596.830667pt;}
.xf{left:598.240278pt;}
.x26{left:603.169333pt;}
.x8{left:605.140000pt;}
.x10{left:610.196269pt;}
.x11{left:622.150930pt;}
.x12{left:634.106922pt;}
.x2a{left:637.656000pt;}
.x24{left:639.145333pt;}
.x13{left:646.061580pt;}
.x25{left:652.021333pt;}
.x14{left:658.016254pt;}
.x15{left:669.972246pt;}
.x2d{left:683.181333pt;}
.x9{left:691.108000pt;}
}




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