
    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_33f790643cf4f78aadcdf8c1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.720000;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_bd170a53ac327d150353a926.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_132fb5b3ca8ea3f4ec77c485.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e048525301c512c0079f4bbc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_4c5c5a8a848c5c4821b54913.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_0da93e8835a4b5c6977dd6ca.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.171387;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_a42c863cb9f21dcc78d3ad24.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.171387;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_dbe3319be7a0eec34b09c028.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.171387;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_59b3d40bdc2f43c83a982e3a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.171387;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_99aa6bfafb50839de40f6aa3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.171387;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_1bee22d1cad79bd30e3c1ac1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b629779c67a7652a028304b1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_002b324ef73ba823afa08378.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_16c930edbac98d1ca12410bf.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a844cc156b03fde2d95afcf8.woff2')format("woff");}.fff{font-family:fff;line-height:1.006348;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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:50.495400px;}
.v2{vertical-align:53.994600px;}
.v1{vertical-align:168.000000px;}
.ls15{letter-spacing:-6.300000px;}
.ls22{letter-spacing:-5.100000px;}
.ls2a{letter-spacing:-4.950000px;}
.ls1d{letter-spacing:-4.500000px;}
.ls20{letter-spacing:-3.960000px;}
.ls13{letter-spacing:-3.600000px;}
.ls1a{letter-spacing:-3.000000px;}
.ls24{letter-spacing:-2.160000px;}
.ls1b{letter-spacing:-2.040000px;}
.ls2b{letter-spacing:-1.728000px;}
.ls26{letter-spacing:-1.620000px;}
.ls19{letter-spacing:-1.500000px;}
.ls1f{letter-spacing:-1.458000px;}
.ls28{letter-spacing:-1.320000px;}
.ls27{letter-spacing:-1.296000px;}
.ls29{letter-spacing:-1.200000px;}
.ls23{letter-spacing:-0.960000px;}
.ls1c{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.702000px;}
.ls1{letter-spacing:-0.600000px;}
.ls1e{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.337680px;}
.lsc{letter-spacing:-0.324000px;}
.ls12{letter-spacing:-0.300000px;}
.lse{letter-spacing:-0.270000px;}
.ls11{letter-spacing:-0.180000px;}
.ls9{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.054000px;}
.ls3{letter-spacing:0.179280px;}
.ls7{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.241200px;}
.ls2{letter-spacing:0.289440px;}
.ls10{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.378000px;}
.ls17{letter-spacing:0.720000px;}
.ls0{letter-spacing:2.280000px;}
.ls16{letter-spacing:3.060000px;}
.ls21{letter-spacing:3.600000px;}
.ls8{letter-spacing:6.600000px;}
.ls18{letter-spacing:32.400000px;}
.ls25{letter-spacing:1669.173000px;}
.ls14{letter-spacing:1694.616000px;}
.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;}
}
.ws3d{word-spacing:-76.787880px;}
.ws41{word-spacing:-63.060000px;}
.ws42{word-spacing:-60.720000px;}
.wsd4{word-spacing:-60.000000px;}
.ws1f{word-spacing:-59.700000px;}
.wsab{word-spacing:-58.500000px;}
.ws40{word-spacing:-57.000000px;}
.wsd5{word-spacing:-49.260000px;}
.ws20{word-spacing:-48.720000px;}
.ws103{word-spacing:-46.920000px;}
.ws7c{word-spacing:-46.740000px;}
.ws128{word-spacing:-46.500000px;}
.ws3f{word-spacing:-45.540000px;}
.ws100{word-spacing:-44.520000px;}
.wsac{word-spacing:-44.460000px;}
.wsa8{word-spacing:-44.040000px;}
.ws101{word-spacing:-43.740000px;}
.wsd6{word-spacing:-41.820000px;}
.wsfe{word-spacing:-41.580000px;}
.wsaa{word-spacing:-39.120000px;}
.wsf8{word-spacing:-38.580000px;}
.wsa9{word-spacing:-38.340000px;}
.ws102{word-spacing:-35.880000px;}
.wsd9{word-spacing:-30.960000px;}
.ws16c{word-spacing:-30.600000px;}
.ws149{word-spacing:-29.484000px;}
.wsff{word-spacing:-26.400000px;}
.ws7a{word-spacing:-24.480000px;}
.ws180{word-spacing:-24.249600px;}
.ws12a{word-spacing:-21.420000px;}
.ws129{word-spacing:-21.180000px;}
.ws9{word-spacing:-17.118000px;}
.ws8{word-spacing:-16.956000px;}
.ws6{word-spacing:-16.902000px;}
.ws7{word-spacing:-16.578000px;}
.wsa{word-spacing:-16.200000px;}
.ws1{word-spacing:-15.960000px;}
.ws17b{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.340320px;}
.ws43{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.ws4{word-spacing:-15.099120px;}
.ws17f{word-spacing:-15.000000px;}
.wsc{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.761440px;}
.ws3e{word-spacing:-14.100000px;}
.ws7b{word-spacing:-12.600000px;}
.ws57{word-spacing:-9.120000px;}
.wsea{word-spacing:-8.220000px;}
.ws13f{word-spacing:-7.620000px;}
.ws7d{word-spacing:-6.840000px;}
.ws142{word-spacing:-6.720000px;}
.ws15d{word-spacing:-5.820000px;}
.ws107{word-spacing:-5.640000px;}
.ws73{word-spacing:-5.520000px;}
.ws140{word-spacing:-5.460000px;}
.wsb6{word-spacing:-5.280000px;}
.wsa1{word-spacing:-4.860000px;}
.wsb8{word-spacing:-4.800000px;}
.ws85{word-spacing:-4.740000px;}
.ws165{word-spacing:-4.680000px;}
.ws4e{word-spacing:-4.560000px;}
.wse9{word-spacing:-4.500000px;}
.ws141{word-spacing:-4.440000px;}
.ws9f{word-spacing:-4.200000px;}
.ws118{word-spacing:-4.080000px;}
.ws155{word-spacing:-4.020000px;}
.ws15c{word-spacing:-3.900000px;}
.ws160{word-spacing:-3.780000px;}
.wsfa{word-spacing:-3.720000px;}
.ws8e{word-spacing:-3.660000px;}
.wsf6{word-spacing:-3.600000px;}
.ws61{word-spacing:-3.540000px;}
.ws8a{word-spacing:-3.180000px;}
.ws143{word-spacing:-3.060000px;}
.ws16b{word-spacing:-3.000000px;}
.ws5f{word-spacing:-2.940000px;}
.ws84{word-spacing:-2.880000px;}
.ws151{word-spacing:-2.820000px;}
.wse8{word-spacing:-2.640000px;}
.wse7{word-spacing:-2.580000px;}
.ws139{word-spacing:-2.520000px;}
.ws119{word-spacing:-2.400000px;}
.ws0{word-spacing:-2.280000px;}
.ws130{word-spacing:-2.220000px;}
.ws12b{word-spacing:-2.160000px;}
.wsc6{word-spacing:-2.100000px;}
.ws11a{word-spacing:-1.980000px;}
.ws14f{word-spacing:-1.920000px;}
.ws86{word-spacing:-1.860000px;}
.ws4b{word-spacing:-1.800000px;}
.ws154{word-spacing:-1.740000px;}
.ws134{word-spacing:-1.680000px;}
.ws46{word-spacing:-1.620000px;}
.ws123{word-spacing:-1.440000px;}
.ws113{word-spacing:-1.380000px;}
.wscd{word-spacing:-1.320000px;}
.ws12e{word-spacing:-1.260000px;}
.wsc8{word-spacing:-1.200000px;}
.ws150{word-spacing:-1.080000px;}
.wse2{word-spacing:-0.960000px;}
.ws9a{word-spacing:-0.900000px;}
.ws82{word-spacing:-0.840000px;}
.ws88{word-spacing:-0.660000px;}
.wsf0{word-spacing:-0.600000px;}
.ws22{word-spacing:-0.540000px;}
.ws1a{word-spacing:-0.511920px;}
.ws90{word-spacing:-0.480000px;}
.ws4a{word-spacing:-0.420000px;}
.wse4{word-spacing:-0.360000px;}
.ws16{word-spacing:-0.324000px;}
.ws52{word-spacing:-0.300000px;}
.ws10{word-spacing:-0.270000px;}
.ws76{word-spacing:-0.240000px;}
.ws11{word-spacing:-0.216000px;}
.ws12{word-spacing:-0.162000px;}
.ws1c{word-spacing:-0.120000px;}
.ws2c{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.wse{word-spacing:0.048240px;}
.wsf{word-spacing:0.054000px;}
.ws18{word-spacing:0.113760px;}
.ws6a{word-spacing:0.120000px;}
.ws19{word-spacing:0.170640px;}
.ws17{word-spacing:0.179280px;}
.ws12d{word-spacing:0.240000px;}
.ws25{word-spacing:0.300000px;}
.ws15{word-spacing:0.324000px;}
.ws169{word-spacing:0.360000px;}
.ws13{word-spacing:0.378000px;}
.wsc5{word-spacing:0.420000px;}
.ws14{word-spacing:0.432000px;}
.ws87{word-spacing:0.540000px;}
.ws2b{word-spacing:0.600000px;}
.ws152{word-spacing:0.660000px;}
.ws53{word-spacing:0.720000px;}
.wsb1{word-spacing:0.780000px;}
.ws56{word-spacing:0.900000px;}
.wsed{word-spacing:0.960000px;}
.ws16a{word-spacing:1.020000px;}
.wseb{word-spacing:1.080000px;}
.ws9d{word-spacing:1.200000px;}
.ws4f{word-spacing:1.260000px;}
.ws14c{word-spacing:1.296000px;}
.ws2a{word-spacing:1.320000px;}
.ws10c{word-spacing:1.440000px;}
.wsef{word-spacing:1.458000px;}
.ws44{word-spacing:1.500000px;}
.ws98{word-spacing:1.560000px;}
.ws182{word-spacing:1.566000px;}
.ws14b{word-spacing:1.620000px;}
.ws2f{word-spacing:1.860000px;}
.ws59{word-spacing:1.920000px;}
.ws6e{word-spacing:1.980000px;}
.ws65{word-spacing:2.040000px;}
.wsa0{word-spacing:2.160000px;}
.ws126{word-spacing:2.220000px;}
.wsd2{word-spacing:2.280000px;}
.ws75{word-spacing:2.400000px;}
.ws131{word-spacing:2.460000px;}
.ws124{word-spacing:2.520000px;}
.ws89{word-spacing:2.580000px;}
.wsae{word-spacing:2.640000px;}
.ws11c{word-spacing:2.700000px;}
.wscf{word-spacing:2.820000px;}
.ws6f{word-spacing:2.880000px;}
.ws135{word-spacing:2.940000px;}
.ws3c{word-spacing:3.000000px;}
.ws78{word-spacing:3.060000px;}
.ws161{word-spacing:3.120000px;}
.ws114{word-spacing:3.240000px;}
.ws34{word-spacing:3.300000px;}
.ws11d{word-spacing:3.480000px;}
.ws63{word-spacing:3.540000px;}
.ws1e{word-spacing:3.600000px;}
.ws77{word-spacing:3.660000px;}
.wse1{word-spacing:3.720000px;}
.ws49{word-spacing:3.840000px;}
.wsf5{word-spacing:3.960000px;}
.ws4c{word-spacing:4.020000px;}
.ws9b{word-spacing:4.080000px;}
.ws11b{word-spacing:4.140000px;}
.ws26{word-spacing:4.260000px;}
.ws117{word-spacing:4.320000px;}
.ws10b{word-spacing:4.380000px;}
.ws37{word-spacing:4.440000px;}
.ws120{word-spacing:4.500000px;}
.ws27{word-spacing:4.680000px;}
.ws158{word-spacing:4.740000px;}
.ws45{word-spacing:4.860000px;}
.ws17e{word-spacing:4.950000px;}
.ws28{word-spacing:5.040000px;}
.wsfc{word-spacing:5.100000px;}
.ws121{word-spacing:5.220000px;}
.ws62{word-spacing:5.280000px;}
.wsa3{word-spacing:5.580000px;}
.ws2d{word-spacing:5.880000px;}
.ws64{word-spacing:6.000000px;}
.ws5b{word-spacing:6.120000px;}
.ws54{word-spacing:6.180000px;}
.ws11f{word-spacing:6.240000px;}
.ws21{word-spacing:6.300000px;}
.ws99{word-spacing:6.360000px;}
.ws91{word-spacing:6.480000px;}
.wsba{word-spacing:6.720000px;}
.ws32{word-spacing:6.780000px;}
.ws15e{word-spacing:6.840000px;}
.ws5c{word-spacing:6.900000px;}
.ws3b{word-spacing:6.960000px;}
.wsc4{word-spacing:7.140000px;}
.ws167{word-spacing:7.260000px;}
.ws36{word-spacing:7.320000px;}
.ws10a{word-spacing:7.380000px;}
.wsf4{word-spacing:7.560000px;}
.ws164{word-spacing:7.620000px;}
.ws108{word-spacing:7.680000px;}
.wsa7{word-spacing:7.800000px;}
.ws33{word-spacing:7.860000px;}
.wsc9{word-spacing:7.920000px;}
.ws147{word-spacing:8.100000px;}
.ws137{word-spacing:8.340000px;}
.ws29{word-spacing:8.400000px;}
.wsec{word-spacing:8.460000px;}
.ws2e{word-spacing:8.580000px;}
.ws179{word-spacing:8.640000px;}
.wsb7{word-spacing:8.700000px;}
.wsca{word-spacing:8.760000px;}
.wsf3{word-spacing:8.820000px;}
.ws6b{word-spacing:8.880000px;}
.ws177{word-spacing:9.000000px;}
.ws144{word-spacing:9.180000px;}
.ws55{word-spacing:9.240000px;}
.wsce{word-spacing:9.600000px;}
.wsee{word-spacing:9.666000px;}
.wsb2{word-spacing:9.720000px;}
.wsa2{word-spacing:9.960000px;}
.ws109{word-spacing:10.020000px;}
.ws178{word-spacing:10.200000px;}
.ws156{word-spacing:10.320000px;}
.ws9e{word-spacing:10.500000px;}
.ws51{word-spacing:10.860000px;}
.ws93{word-spacing:10.920000px;}
.ws14d{word-spacing:10.980000px;}
.wsb4{word-spacing:11.280000px;}
.ws83{word-spacing:11.580000px;}
.wsdf{word-spacing:11.640000px;}
.wsa4{word-spacing:11.760000px;}
.wsfd{word-spacing:11.946000px;}
.ws92{word-spacing:12.000000px;}
.wscc{word-spacing:12.180000px;}
.ws132{word-spacing:12.240000px;}
.ws8b{word-spacing:12.300000px;}
.ws13d{word-spacing:12.540000px;}
.wscb{word-spacing:12.720000px;}
.ws97{word-spacing:13.080000px;}
.ws116{word-spacing:13.260000px;}
.ws30{word-spacing:13.440000px;}
.ws13e{word-spacing:13.500000px;}
.ws146{word-spacing:13.680000px;}
.ws35{word-spacing:13.740000px;}
.ws50{word-spacing:13.800000px;}
.ws13c{word-spacing:14.160000px;}
.ws3a{word-spacing:14.280000px;}
.ws5a{word-spacing:14.400000px;}
.ws122{word-spacing:14.520000px;}
.ws15f{word-spacing:14.580000px;}
.ws31{word-spacing:14.640000px;}
.ws68{word-spacing:14.700000px;}
.ws9c{word-spacing:14.880000px;}
.wsd1{word-spacing:15.000000px;}
.wsc2{word-spacing:15.060000px;}
.ws11e{word-spacing:15.420000px;}
.wsc7{word-spacing:15.480000px;}
.ws157{word-spacing:15.600000px;}
.ws112{word-spacing:15.660000px;}
.ws7f{word-spacing:15.780000px;}
.wsd3{word-spacing:15.840000px;}
.ws148{word-spacing:15.900000px;}
.ws125{word-spacing:16.140000px;}
.ws145{word-spacing:16.200000px;}
.wsb0{word-spacing:16.260000px;}
.ws166{word-spacing:16.320000px;}
.wse5{word-spacing:16.620000px;}
.wsf1{word-spacing:16.920000px;}
.ws5d{word-spacing:16.980000px;}
.ws58{word-spacing:17.160000px;}
.ws175{word-spacing:17.340000px;}
.ws171{word-spacing:17.520000px;}
.ws96{word-spacing:18.240000px;}
.ws95{word-spacing:18.480000px;}
.ws23{word-spacing:18.720000px;}
.wsf9{word-spacing:19.140000px;}
.ws39{word-spacing:19.200000px;}
.wsc3{word-spacing:19.560000px;}
.ws14e{word-spacing:19.620000px;}
.ws163{word-spacing:19.860000px;}
.ws60{word-spacing:20.040000px;}
.wsf2{word-spacing:20.100000px;}
.wsbe{word-spacing:20.220000px;}
.ws79{word-spacing:20.280000px;}
.ws176{word-spacing:20.460000px;}
.wsd0{word-spacing:20.580000px;}
.ws74{word-spacing:20.760000px;}
.wsd{word-spacing:21.000000px;}
.ws69{word-spacing:21.300000px;}
.wse3{word-spacing:21.540000px;}
.ws127{word-spacing:21.660000px;}
.ws174{word-spacing:21.780000px;}
.wsf7{word-spacing:22.380000px;}
.wsbd{word-spacing:22.500000px;}
.wsdc{word-spacing:22.680000px;}
.ws115{word-spacing:22.800000px;}
.ws4d{word-spacing:22.920000px;}
.ws16e{word-spacing:23.820000px;}
.ws13b{word-spacing:24.000000px;}
.ws133{word-spacing:24.180000px;}
.ws8f{word-spacing:24.240000px;}
.ws72{word-spacing:24.480000px;}
.ws5e{word-spacing:24.600000px;}
.ws6d{word-spacing:24.840000px;}
.ws159{word-spacing:25.500000px;}
.wsb3{word-spacing:25.680000px;}
.ws10f{word-spacing:25.740000px;}
.wsa5{word-spacing:25.920000px;}
.wsdb{word-spacing:26.340000px;}
.ws24{word-spacing:26.580000px;}
.ws16f{word-spacing:27.060000px;}
.ws38{word-spacing:27.240000px;}
.wse6{word-spacing:28.080000px;}
.ws136{word-spacing:28.140000px;}
.ws6c{word-spacing:28.440000px;}
.ws111{word-spacing:28.560000px;}
.ws153{word-spacing:28.800000px;}
.ws162{word-spacing:29.100000px;}
.ws17d{word-spacing:30.360000px;}
.ws168{word-spacing:31.380000px;}
.wsb9{word-spacing:31.500000px;}
.ws181{word-spacing:31.622400px;}
.wsb5{word-spacing:31.680000px;}
.ws8d{word-spacing:31.800000px;}
.ws12f{word-spacing:31.920000px;}
.ws67{word-spacing:32.100000px;}
.ws66{word-spacing:32.700000px;}
.ws138{word-spacing:33.300000px;}
.wsaf{word-spacing:33.600000px;}
.ws81{word-spacing:34.620000px;}
.ws17a{word-spacing:34.680000px;}
.ws170{word-spacing:35.100000px;}
.ws173{word-spacing:35.220000px;}
.ws12c{word-spacing:35.700000px;}
.ws94{word-spacing:35.820000px;}
.wsc0{word-spacing:36.060000px;}
.ws110{word-spacing:37.800000px;}
.ws14a{word-spacing:38.040000px;}
.ws7e{word-spacing:39.300000px;}
.wsbc{word-spacing:40.080000px;}
.ws13a{word-spacing:40.200000px;}
.wsbf{word-spacing:40.320000px;}
.ws172{word-spacing:40.920000px;}
.wsa6{word-spacing:41.280000px;}
.wsdd{word-spacing:41.580000px;}
.wsbb{word-spacing:43.140000px;}
.ws16d{word-spacing:45.228000px;}
.ws105{word-spacing:48.060000px;}
.ws104{word-spacing:48.120000px;}
.ws71{word-spacing:50.040000px;}
.ws47{word-spacing:51.300000px;}
.wsfb{word-spacing:56.340000px;}
.ws8c{word-spacing:58.860000px;}
.ws10e{word-spacing:59.160000px;}
.wse0{word-spacing:61.320000px;}
.ws70{word-spacing:63.780000px;}
.ws80{word-spacing:68.340000px;}
.ws48{word-spacing:68.640000px;}
.wsc1{word-spacing:73.620000px;}
.ws15b{word-spacing:78.420000px;}
.ws1d{word-spacing:80.700000px;}
.ws106{word-spacing:101.640000px;}
.wsde{word-spacing:102.840000px;}
.ws15a{word-spacing:108.720000px;}
.wsad{word-spacing:116.820000px;}
.ws10d{word-spacing:147.540000px;}
.wsd8{word-spacing:344.719800px;}
.ws17c{word-spacing:843.540000px;}
.wsd7{word-spacing:1109.149200px;}
.ws1b{word-spacing:1586.700000px;}
.wsda{word-spacing:1929.079800px;}
._2f{margin-left:-35.340000px;}
._2e{margin-left:-31.080000px;}
._4a{margin-left:-27.600000px;}
._34{margin-left:-14.834292px;}
._40{margin-left:-11.959200px;}
._29{margin-left:-7.346418px;}
._1{margin-left:-5.700000px;}
._f{margin-left:-4.200000px;}
._0{margin-left:-2.280000px;}
._3{margin-left:-1.254240px;}
._4{width:1.406160px;}
._5{width:2.440800px;}
._6{width:4.002240px;}
._37{width:5.760000px;}
._2d{width:7.254240px;}
._28{width:8.880000px;}
._33{width:9.882000px;}
._3e{width:11.016000px;}
._2c{width:12.594000px;}
._49{width:13.776480px;}
._2{width:16.416000px;}
._3a{width:18.257280px;}
._36{width:19.452240px;}
._2b{width:20.892000px;}
._4b{width:22.152000px;}
._32{width:23.298000px;}
._35{width:24.420000px;}
._17{width:27.499200px;}
._20{width:28.533840px;}
._b{width:30.954240px;}
._31{width:32.400000px;}
._44{width:33.510000px;}
._3c{width:35.040000px;}
._8{width:37.389000px;}
._42{width:40.434000px;}
._39{width:41.682000px;}
._4c{width:46.464000px;}
._45{width:49.320000px;}
._4e{width:50.538720px;}
._4d{width:52.470000px;}
._30{width:55.620000px;}
._14{width:57.120000px;}
._46{width:61.512240px;}
._2a{width:64.812000px;}
._3d{width:71.489874px;}
._4f{width:77.040000px;}
._48{width:78.852240px;}
._d{width:80.700000px;}
._3b{width:81.900000px;}
._7{width:116.820000px;}
._43{width:130.410000px;}
._47{width:136.308000px;}
._1f{width:166.140000px;}
._26{width:196.440000px;}
._3f{width:242.076600px;}
._1c{width:261.240000px;}
._22{width:263.460000px;}
._24{width:294.300000px;}
._25{width:308.160000px;}
._1b{width:318.840000px;}
._15{width:351.480000px;}
._13{width:379.260000px;}
._1d{width:393.660000px;}
._10{width:417.060000px;}
._12{width:429.240000px;}
._11{width:536.280000px;}
._23{width:568.260000px;}
._e{width:576.000000px;}
._27{width:588.956880px;}
._1e{width:749.100000px;}
._1a{width:788.520000px;}
._19{width:914.520000px;}
._21{width:941.355360px;}
._c{width:1171.807680px;}
._18{width:1177.106880px;}
._16{width:1481.220000px;}
._38{width:1661.929800px;}
._41{width:1663.507800px;}
._a{width:1688.016000px;}
._9{width:2529.663000px;}
.fc5{color:transparent;}
.fc4{color:rgb(235,145,33);}
.fca{color:rgb(252,244,232);}
.fc3{color:rgb(27,124,154);}
.fc9{color:rgb(253,253,253);}
.fc8{color:rgb(61,61,61);}
.fc7{color:rgb(235,235,235);}
.fc6{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(62,62,62);}
.fc0{color:rgb(71,10,104);}
.fsa{font-size:33.000000px;}
.fs3{font-size:48.240000px;}
.fse{font-size:48.600000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs12{font-size:57.600000px;}
.fs4{font-size:59.760000px;}
.fs8{font-size:60.000000px;}
.fs11{font-size:64.800000px;}
.fs9{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:81.360000px;}
.fs10{font-size:96.000000px;}
.fsd{font-size:102.000000px;}
.fs1{font-size:120.000000px;}
.fsf{font-size:198.000000px;}
.fsb{font-size:210.000000px;}
.fs0{font-size:228.000000px;}
.fsc{font-size:295.338000px;}
.y25{bottom:-167.790150px;}
.y24{bottom:-150.510150px;}
.y23{bottom:-133.410150px;}
.y22{bottom:-116.670150px;}
.y21{bottom:-99.390150px;}
.y20{bottom:-82.110150px;}
.y1f{bottom:-64.800150px;}
.y1e{bottom:-47.340150px;}
.y1d{bottom:-30.060150px;}
.y1c{bottom:-12.780150px;}
.y0{bottom:0.000000px;}
.y1b{bottom:3.959850px;}
.y174{bottom:34.748250px;}
.y48{bottom:34.931700px;}
.ye0{bottom:69.445500px;}
.y1c9{bottom:70.353150px;}
.y154{bottom:70.462500px;}
.yc{bottom:73.392000px;}
.y145{bottom:74.695500px;}
.y22a{bottom:76.348500px;}
.y2c0{bottom:76.957500px;}
.y34e{bottom:80.788500px;}
.y267{bottom:87.180000px;}
.ydf{bottom:90.445500px;}
.y3c7{bottom:90.813000px;}
.y1c8{bottom:91.353150px;}
.y153{bottom:91.462500px;}
.y1a{bottom:93.759000px;}
.y144{bottom:95.695500px;}
.y441{bottom:95.746500px;}
.y229{bottom:97.348500px;}
.y102{bottom:97.378500px;}
.y2bf{bottom:97.957500px;}
.y292{bottom:98.695500px;}
.y34d{bottom:101.788500px;}
.y266{bottom:108.180000px;}
.y19{bottom:110.134500px;}
.yde{bottom:111.445500px;}
.y1c7{bottom:112.353150px;}
.y152{bottom:112.462500px;}
.y192{bottom:113.487000px;}
.y440{bottom:115.249500px;}
.y143{bottom:116.695500px;}
.y101{bottom:118.378500px;}
.y2be{bottom:118.957500px;}
.y291{bottom:119.695500px;}
.y34c{bottom:122.788500px;}
.y45f{bottom:125.481000px;}
.y18{bottom:126.510000px;}
.y265{bottom:129.180000px;}
.y228{bottom:131.098500px;}
.y2f5{bottom:131.794500px;}
.ydd{bottom:132.445500px;}
.y151{bottom:133.462500px;}
.y43f{bottom:134.752500px;}
.y3e2{bottom:136.234500px;}
.y2cb{bottom:137.128500px;}
.y100{bottom:139.378500px;}
.y2bd{bottom:139.957500px;}
.y17{bottom:142.885500px;}
.y45e{bottom:143.481000px;}
.y34b{bottom:143.788500px;}
.y191{bottom:147.237000px;}
.y26b{bottom:148.978500px;}
.y279{bottom:149.461500px;}
.y264{bottom:150.180000px;}
.y423{bottom:150.367500px;}
.y142{bottom:150.445500px;}
.y227{bottom:152.098500px;}
.y3e1{bottom:152.731500px;}
.y2f4{bottom:152.794500px;}
.y290{bottom:153.445500px;}
.y43e{bottom:154.255500px;}
.y150{bottom:154.462500px;}
.y1ca{bottom:157.282500px;}
.y16{bottom:159.261000px;}
.y32f{bottom:160.135500px;}
.y2bc{bottom:160.957500px;}
.y45d{bottom:161.481000px;}
.y13{bottom:162.045000px;}
.y34a{bottom:164.788500px;}
.y2ca{bottom:165.637500px;}
.ydc{bottom:166.195500px;}
.y278{bottom:168.955500px;}
.y472{bottom:170.202000px;}
.y263{bottom:171.180000px;}
.y141{bottom:171.445500px;}
.y226{bottom:173.098500px;}
.yff{bottom:173.128500px;}
.y43d{bottom:173.758500px;}
.y2f3{bottom:173.794500px;}
.y28f{bottom:174.445500px;}
.y14f{bottom:175.462500px;}
.y15{bottom:175.636500px;}
.y26a{bottom:177.487500px;}
.y45c{bottom:179.481000px;}
.y190{bottom:180.987000px;}
.y2bb{bottom:181.957500px;}
.y349{bottom:185.788500px;}
.ydb{bottom:187.195500px;}
.y277{bottom:188.449500px;}
.y94{bottom:189.403500px;}
.y3c6{bottom:190.794000px;}
.y262{bottom:192.180000px;}
.y140{bottom:192.445500px;}
.y43c{bottom:193.261500px;}
.y225{bottom:194.098500px;}
.yfe{bottom:194.128500px;}
.y2c9{bottom:194.146500px;}
.y471{bottom:194.202000px;}
.y2f2{bottom:194.794500px;}
.y28e{bottom:195.445500px;}
.y14e{bottom:196.462500px;}
.y45b{bottom:197.481000px;}
.y330{bottom:199.174500px;}
.y18f{bottom:201.987000px;}
.y269{bottom:205.996500px;}
.y1bb{bottom:206.317500px;}
.y348{bottom:206.788500px;}
.y3c5{bottom:207.291000px;}
.y408{bottom:207.303000px;}
.y276{bottom:207.943500px;}
.yda{bottom:208.195500px;}
.y14{bottom:210.372000px;}
.y93{bottom:210.403500px;}
.y43b{bottom:212.764500px;}
.y260{bottom:213.180000px;}
.y224{bottom:215.098500px;}
.yfd{bottom:215.128500px;}
.y45a{bottom:215.481000px;}
.y2ba{bottom:215.707500px;}
.y421{bottom:216.069000px;}
.y24b{bottom:216.240000px;}
.y28d{bottom:216.445500px;}
.y130{bottom:217.078500px;}
.y14d{bottom:217.462500px;}
.y470{bottom:218.202000px;}
.yc7{bottom:222.157500px;}
.y2c8{bottom:222.655500px;}
.y18e{bottom:222.987000px;}
.y359{bottom:224.305500px;}
.y13f{bottom:226.195500px;}
.y407{bottom:226.806000px;}
.y1ba{bottom:227.317500px;}
.y275{bottom:227.437500px;}
.y347{bottom:227.788500px;}
.yd9{bottom:229.195500px;}
.y92{bottom:231.403500px;}
.y43a{bottom:232.267500px;}
.y459{bottom:233.481000px;}
.y420{bottom:234.069000px;}
.y261{bottom:234.180000px;}
.y268{bottom:234.505500px;}
.y12{bottom:235.455000px;}
.y12f{bottom:236.572500px;}
.y2b9{bottom:236.707500px;}
.y28c{bottom:237.445500px;}
.y14c{bottom:238.462500px;}
.y29b{bottom:240.933000px;}
.yc6{bottom:241.651500px;}
.y46f{bottom:242.202000px;}
.y358{bottom:243.799500px;}
.yd{bottom:245.205000px;}
.y406{bottom:246.309000px;}
.y274{bottom:246.931500px;}
.y13e{bottom:247.195500px;}
.y1b9{bottom:248.317500px;}
.y346{bottom:248.788500px;}
.yd8{bottom:250.195500px;}
.y3c4{bottom:250.659000px;}
.y301{bottom:250.837500px;}
.y2c7{bottom:251.164500px;}
.y11{bottom:251.830500px;}
.y41f{bottom:252.069000px;}
.y91{bottom:252.403500px;}
.y32d{bottom:252.555000px;}
.yfc{bottom:252.988500px;}
.y3a4{bottom:253.485000px;}
.y22d{bottom:254.145000px;}
.y12e{bottom:256.066500px;}
.y234{bottom:256.359000px;}
.y18d{bottom:256.737000px;}
.y2b6{bottom:257.707500px;}
.y28b{bottom:258.445500px;}
.y29a{bottom:260.427000px;}
.yc5{bottom:261.145500px;}
.y357{bottom:263.293500px;}
.y405{bottom:265.812000px;}
.y3c3{bottom:267.156000px;}
.y10{bottom:268.206000px;}
.y1b8{bottom:269.317500px;}
.y41e{bottom:270.069000px;}
.yd7{bottom:271.195500px;}
.y300{bottom:271.837500px;}
.y439{bottom:271.933500px;}
.y14b{bottom:272.212500px;}
.y6a{bottom:273.283500px;}
.y90{bottom:273.403500px;}
.yfb{bottom:273.988500px;}
.y3a3{bottom:274.485000px;}
.y46e{bottom:274.707000px;}
.y12d{bottom:275.560500px;}
.y32c{bottom:276.058500px;}
.y233{bottom:277.359000px;}
.y18c{bottom:277.737000px;}
.y2b8{bottom:278.707500px;}
.y2c6{bottom:279.673500px;}
.y299{bottom:279.921000px;}
.y47d{bottom:280.467000px;}
.yc4{bottom:280.639500px;}
.y13d{bottom:280.945500px;}
.y345{bottom:282.538500px;}
.y356{bottom:282.787500px;}
.yf{bottom:284.581500px;}
.y404{bottom:285.315000px;}
.y488{bottom:285.864900px;}
.y41d{bottom:288.069000px;}
.y438{bottom:291.436500px;}
.yd6{bottom:292.195500px;}
.y14a{bottom:293.212500px;}
.y8f{bottom:294.403500px;}
.yfa{bottom:294.988500px;}
.y12c{bottom:295.054500px;}
.y3a2{bottom:295.485000px;}
.y231{bottom:297.190200px;}
.y18b{bottom:298.737000px;}
.y298{bottom:299.415000px;}
.y32b{bottom:299.562000px;}
.y2b7{bottom:299.707500px;}
.yc3{bottom:300.133500px;}
.y69{bottom:300.538500px;}
.ye{bottom:300.957000px;}
.y13c{bottom:301.945500px;}
.y355{bottom:302.281500px;}
.y1b7{bottom:303.067500px;}
.y2a8{bottom:303.508500px;}
.y344{bottom:303.538500px;}
.y47c{bottom:304.467000px;}
.y403{bottom:304.818000px;}
.y2ff{bottom:305.587500px;}
.y41c{bottom:306.069000px;}
.y3bf{bottom:310.524000px;}
.y230{bottom:310.688850px;}
.y437{bottom:310.939500px;}
.yd5{bottom:313.195500px;}
.y149{bottom:314.212500px;}
.y12b{bottom:314.548500px;}
.y3a1{bottom:316.485000px;}
.y297{bottom:318.909000px;}
.y22c{bottom:319.188000px;}
.yc2{bottom:319.627500px;}
.y18a{bottom:319.737000px;}
.y354{bottom:321.775500px;}
.y458{bottom:322.641000px;}
.y13b{bottom:322.945500px;}
.y223{bottom:323.608500px;}
.y1b6{bottom:324.067500px;}
.y22f{bottom:324.187500px;}
.y2a7{bottom:324.508500px;}
.y343{bottom:324.538500px;}
.y2fe{bottom:326.587500px;}
.y3be{bottom:327.021000px;}
.y68{bottom:327.793500px;}
.y47b{bottom:328.467000px;}
.yf9{bottom:328.738500px;}
.y48e{bottom:330.095400px;}
.y436{bottom:330.442500px;}
.yb{bottom:332.097000px;}
.y30f{bottom:333.936000px;}
.y12a{bottom:334.042500px;}
.yd4{bottom:334.195500px;}
.y148{bottom:335.212500px;}
.y46d{bottom:335.457000px;}
.y3a0{bottom:337.485000px;}
.yc1{bottom:339.121500px;}
.y32e{bottom:339.556500px;}
.y457{bottom:340.641000px;}
.y189{bottom:340.737000px;}
.y353{bottom:341.269500px;}
.y13a{bottom:343.945500px;}
.y222{bottom:344.608500px;}
.y8e{bottom:344.908500px;}
.y1b5{bottom:345.067500px;}
.y2a6{bottom:345.508500px;}
.y342{bottom:345.538500px;}
.y248{bottom:346.038000px;}
.y2fd{bottom:347.587500px;}
.ya{bottom:348.655560px;}
.yf8{bottom:349.738500px;}
.y435{bottom:349.945500px;}
.y402{bottom:350.721000px;}
.y129{bottom:353.536500px;}
.y30e{bottom:354.936000px;}
.y67{bottom:355.048500px;}
.y28a{bottom:355.195500px;}
.y147{bottom:356.212500px;}
.y246{bottom:357.414000px;}
.yc0{bottom:358.615500px;}
.y456{bottom:358.641000px;}
.y47a{bottom:360.972000px;}
.y9{bottom:363.417000px;}
.y46c{bottom:363.702000px;}
.y247{bottom:365.532000px;}
.y8d{bottom:365.908500px;}
.y1b4{bottom:366.067500px;}
.y2a5{bottom:366.508500px;}
.y341{bottom:366.538500px;}
.yd3{bottom:367.945500px;}
.y3c2{bottom:367.963500px;}
.y434{bottom:369.448500px;}
.y401{bottom:370.224000px;}
.yf7{bottom:370.738500px;}
.y128{bottom:373.030500px;}
.y66{bottom:373.798500px;}
.y188{bottom:374.487000px;}
.y30d{bottom:375.936000px;}
.y289{bottom:376.195500px;}
.y212{bottom:376.492500px;}
.y455{bottom:376.641000px;}
.y146{bottom:377.212500px;}
.y41b{bottom:377.469000px;}
.y139{bottom:377.695500px;}
.y22b{bottom:380.073000px;}
.y8{bottom:380.165820px;}
.y2fc{bottom:381.337500px;}
.y324{bottom:384.391500px;}
.y8c{bottom:386.908500px;}
.y1b3{bottom:387.067500px;}
.y2a4{bottom:387.508500px;}
.y340{bottom:387.538500px;}
.yd2{bottom:388.945500px;}
.y433{bottom:388.951500px;}
.y400{bottom:389.727000px;}
.yf6{bottom:391.738500px;}
.y46b{bottom:391.947000px;}
.y232{bottom:392.034000px;}
.y127{bottom:392.524500px;}
.y211{bottom:392.989500px;}
.y479{bottom:393.477000px;}
.y483{bottom:393.951300px;}
.y454{bottom:394.641000px;}
.y41a{bottom:395.469000px;}
.y187{bottom:395.487000px;}
.y30c{bottom:396.936000px;}
.y3a8{bottom:396.975000px;}
.y138{bottom:398.695500px;}
.y65{bottom:401.053500px;}
.y7{bottom:403.922940px;}
.y323{bottom:407.895000px;}
.y8b{bottom:407.908500px;}
.y1b2{bottom:408.067500px;}
.y432{bottom:408.454500px;}
.y33f{bottom:408.538500px;}
.y3ff{bottom:409.230000px;}
.yd1{bottom:409.945500px;}
.y3bd{bottom:410.569500px;}
.y453{bottom:412.641000px;}
.y419{bottom:413.469000px;}
.y2fb{bottom:415.087500px;}
.y186{bottom:416.487000px;}
.y478{bottom:417.477000px;}
.y3a7{bottom:417.975000px;}
.y482{bottom:419.338500px;}
.y137{bottom:419.695500px;}
.y46a{bottom:420.192000px;}
.y156{bottom:420.922500px;}
.y2a3{bottom:421.258500px;}
.y47{bottom:423.903000px;}
.y22e{bottom:424.887000px;}
.yf5{bottom:425.488500px;}
.y3bc{bottom:427.066500px;}
.y6{bottom:427.497000px;}
.y431{bottom:427.957500px;}
.y64{bottom:428.308500px;}
.y3fe{bottom:428.733000px;}
.y33e{bottom:429.538500px;}
.y1f1{bottom:430.467000px;}
.y452{bottom:430.641000px;}
.y30b{bottom:430.686000px;}
.y288{bottom:430.945500px;}
.y322{bottom:431.398500px;}
.y418{bottom:431.469000px;}
.y2fa{bottom:436.087500px;}
.y185{bottom:437.487000px;}
.y155{bottom:438.922500px;}
.y3a6{bottom:438.975000px;}
.y136{bottom:440.695500px;}
.y1b1{bottom:441.817500px;}
.y46{bottom:441.903000px;}
.y2a2{bottom:442.258500px;}
.y3f{bottom:442.998000px;}
.yd0{bottom:443.695500px;}
.y321{bottom:446.397000px;}
.yf4{bottom:446.488500px;}
.y352{bottom:447.195000px;}
.y430{bottom:447.460500px;}
.y3fd{bottom:448.236000px;}
.y469{bottom:448.437000px;}
.y451{bottom:448.641000px;}
.y417{bottom:449.469000px;}
.y19d{bottom:450.049500px;}
.y33d{bottom:450.538500px;}
.y1f0{bottom:451.467000px;}
.y30a{bottom:451.686000px;}
.y287{bottom:451.945500px;}
.y63{bottom:455.563500px;}
.y2f9{bottom:457.087500px;}
.y8a{bottom:458.413500px;}
.y184{bottom:458.487000px;}
.y45{bottom:459.903000px;}
.y3a5{bottom:459.975000px;}
.y3e{bottom:460.998000px;}
.y135{bottom:461.695500px;}
.y1b0{bottom:462.817500px;}
.y2a1{bottom:463.258500px;}
.y48b{bottom:463.567200px;}
.y3e0{bottom:463.714500px;}
.ycf{bottom:464.695500px;}
.yf3{bottom:467.488500px;}
.y19c{bottom:469.543500px;}
.y3c1{bottom:469.672500px;}
.y320{bottom:469.900500px;}
.y309{bottom:472.686000px;}
.y286{bottom:472.945500px;}
.y477{bottom:473.982000px;}
.y351{bottom:474.199500px;}
.y468{bottom:476.682000px;}
.y44{bottom:477.903000px;}
.y3d{bottom:478.998000px;}
.y89{bottom:479.413500px;}
.y183{bottom:479.487000px;}
.y11b{bottom:481.576500px;}
.y134{bottom:482.695500px;}
.y62{bottom:482.818500px;}
.y1af{bottom:483.817500px;}
.y2a0{bottom:484.258500px;}
.y33c{bottom:484.288500px;}
.y3df{bottom:484.714500px;}
.y31f{bottom:484.899000px;}
.y1ef{bottom:485.217000px;}
.yce{bottom:485.695500px;}
.y3c0{bottom:486.169500px;}
.y210{bottom:486.310500px;}
.yf2{bottom:488.488500px;}
.y42f{bottom:488.562000px;}
.y19b{bottom:489.037500px;}
.y2f8{bottom:490.837500px;}
.y308{bottom:493.686000px;}
.y285{bottom:493.945500px;}
.y43{bottom:495.903000px;}
.y3c{bottom:496.998000px;}
.y3fc{bottom:497.026500px;}
.y476{bottom:497.982000px;}
.y88{bottom:500.413500px;}
.y182{bottom:500.487000px;}
.y350{bottom:501.204000px;}
.y11a{bottom:502.576500px;}
.y133{bottom:503.695500px;}
.y1ae{bottom:504.817500px;}
.y296{bottom:504.901500px;}
.y467{bottom:504.927000px;}
.y33a{bottom:505.288500px;}
.y1ee{bottom:506.217000px;}
.ycd{bottom:506.695500px;}
.y20f{bottom:507.310500px;}
.y42e{bottom:508.065000px;}
.y19a{bottom:508.531500px;}
.yf1{bottom:509.488500px;}
.y61{bottom:510.073500px;}
.y2f7{bottom:511.837500px;}
.y39f{bottom:513.150000px;}
.y42{bottom:513.903000px;}
.y307{bottom:514.686000px;}
.y3b{bottom:514.998000px;}
.y3fb{bottom:516.529500px;}
.y244{bottom:518.427000px;}
.y487{bottom:519.029700px;}
.y87{bottom:521.413500px;}
.y325{bottom:521.796000px;}
.y475{bottom:521.982000px;}
.y416{bottom:522.249000px;}
.y119{bottom:523.576500px;}
.y3bb{bottom:523.732500px;}
.y3de{bottom:524.059500px;}
.y1ad{bottom:525.817500px;}
.y33b{bottom:526.288500px;}
.y1ed{bottom:527.217000px;}
.y42d{bottom:527.568000px;}
.ycc{bottom:527.695500px;}
.y199{bottom:528.025500px;}
.y34f{bottom:528.208500px;}
.y20e{bottom:528.310500px;}
.ye4{bottom:531.648000px;}
.y41{bottom:531.903000px;}
.y2f6{bottom:532.837500px;}
.y3a{bottom:532.998000px;}
.y295{bottom:533.410500px;}
.y39e{bottom:534.150000px;}
.y181{bottom:534.237000px;}
.y29f{bottom:535.078500px;}
.y306{bottom:535.686000px;}
.y3fa{bottom:536.032500px;}
.y60{bottom:537.328500px;}
.y466{bottom:537.432000px;}
.y132{bottom:537.445500px;}
.y1fe{bottom:538.476000px;}
.y3ba{bottom:540.229500px;}
.y415{bottom:540.249000px;}
.y86{bottom:542.413500px;}
.y243{bottom:542.427000px;}
.yf0{bottom:543.238500px;}
.y118{bottom:544.576500px;}
.y3dd{bottom:545.059500px;}
.y1ac{bottom:546.817500px;}
.y42c{bottom:547.071000px;}
.y198{bottom:547.519500px;}
.y1ec{bottom:548.217000px;}
.ycb{bottom:548.695500px;}
.y20d{bottom:549.310500px;}
.y40{bottom:549.903000px;}
.y39{bottom:550.998000px;}
.y474{bottom:554.487000px;}
.y39d{bottom:555.150000px;}
.y180{bottom:555.237000px;}
.y3f9{bottom:555.535500px;}
.y5f{bottom:556.078500px;}
.y1fd{bottom:557.970000px;}
.y414{bottom:558.249000px;}
.y131{bottom:558.445500px;}
.ye3{bottom:558.652500px;}
.y294{bottom:561.919500px;}
.y48d{bottom:563.262000px;}
.y85{bottom:563.413500px;}
.yef{bottom:564.238500px;}
.y117{bottom:565.576500px;}
.y42b{bottom:566.574000px;}
.y197{bottom:567.013500px;}
.y1ab{bottom:567.817500px;}
.y1eb{bottom:569.217000px;}
.y305{bottom:569.436000px;}
.yca{bottom:569.695500px;}
.y20c{bottom:570.310500px;}
.y1c3{bottom:571.546500px;}
.y329{bottom:572.896500px;}
.y3f8{bottom:575.038500px;}
.y39c{bottom:576.150000px;}
.y17f{bottom:576.237000px;}
.y413{bottom:576.249000px;}
.y29e{bottom:577.078500px;}
.y1fc{bottom:577.464000px;}
.y1be{bottom:577.765500px;}
.y302{bottom:580.132500px;}
.y121{bottom:582.483000px;}
.y5e{bottom:583.333500px;}
.y84{bottom:584.413500px;}
.y3dc{bottom:585.184500px;}
.yee{bottom:585.238500px;}
.ye2{bottom:585.657000px;}
.y42a{bottom:586.077000px;}
.y116{bottom:586.576500px;}
.y38{bottom:587.748000px;}
.y1aa{bottom:588.817500px;}
.y1ea{bottom:590.217000px;}
.y450{bottom:590.256000px;}
.y293{bottom:590.428500px;}
.y304{bottom:590.436000px;}
.yc8{bottom:590.695500px;}
.y1c2{bottom:591.040500px;}
.y20b{bottom:591.310500px;}
.y328{bottom:596.400000px;}
.y1fb{bottom:596.958000px;}
.y39b{bottom:597.150000px;}
.y17e{bottom:597.237000px;}
.y10c{bottom:597.508500px;}
.y29d{bottom:598.078500px;}
.y245{bottom:600.774000px;}
.y5d{bottom:602.083500px;}
.y465{bottom:602.442000px;}
.y429{bottom:605.580000px;}
.y3db{bottom:606.184500px;}
.yed{bottom:606.238500px;}
.y1bd{bottom:606.274500px;}
.y115{bottom:607.576500px;}
.y44f{bottom:608.256000px;}
.y1a8{bottom:609.817500px;}
.y1c1{bottom:610.534500px;}
.y120{bottom:610.992000px;}
.y1e9{bottom:611.217000px;}
.y303{bottom:611.436000px;}
.yc9{bottom:611.695500px;}
.ye1{bottom:612.661500px;}
.y384{bottom:613.051500px;}
.y485{bottom:615.279300px;}
.y1fa{bottom:616.452000px;}
.y17d{bottom:618.237000px;}
.y10b{bottom:618.508500px;}
.y29c{bottom:619.078500px;}
.y327{bottom:619.903500px;}
.y3ad{bottom:620.560500px;}
.y3f7{bottom:621.816000px;}
.y20a{bottom:625.060500px;}
.y428{bottom:625.083000px;}
.y44e{bottom:626.256000px;}
.y3da{bottom:627.184500px;}
.y5c{bottom:629.338500px;}
.y1c0{bottom:630.028500px;}
.y1a9{bottom:630.817500px;}
.y484{bottom:631.479300px;}
.y1e8{bottom:632.217000px;}
.y383{bottom:634.051500px;}
.y1bc{bottom:634.783500px;}
.y83{bottom:634.918500px;}
.y464{bottom:634.947000px;}
.y473{bottom:634.992000px;}
.y1f9{bottom:635.946000px;}
.y1f4{bottom:639.165000px;}
.y11f{bottom:639.501000px;}
.y10a{bottom:639.508500px;}
.yec{bottom:639.988500px;}
.y3f6{bottom:641.319000px;}
.y114{bottom:641.326500px;}
.y3ac{bottom:641.560500px;}
.y6d{bottom:642.267000px;}
.y236{bottom:642.270000px;}
.y31b{bottom:642.292500px;}
.y326{bottom:643.407000px;}
.y209{bottom:646.060500px;}
.y481{bottom:647.679300px;}
.y5b{bottom:648.088500px;}
.y3d9{bottom:648.184500px;}
.y2dc{bottom:648.540000px;}
.y1bf{bottom:649.522500px;}
.y2f1{bottom:651.868500px;}
.y17c{bottom:651.987000px;}
.y1e7{bottom:653.217000px;}
.y284{bottom:654.310500px;}
.y382{bottom:655.051500px;}
.y1f8{bottom:655.440000px;}
.y82{bottom:655.918500px;}
.y36e{bottom:657.540000px;}
.y109{bottom:660.508500px;}
.y3f5{bottom:660.822000px;}
.yeb{bottom:660.988500px;}
.y44d{bottom:662.061000px;}
.y113{bottom:662.326500px;}
.y3ab{bottom:662.560500px;}
.y37{bottom:662.748000px;}
.y412{bottom:665.034000px;}
.y25f{bottom:666.795000px;}
.y208{bottom:667.060500px;}
.y1f3{bottom:667.674000px;}
.y11e{bottom:668.010000px;}
.y3d8{bottom:669.184500px;}
.y2db{bottom:669.540000px;}
.y315{bottom:670.149000px;}
.y2f0{bottom:671.362500px;}
.y17b{bottom:672.987000px;}
.y480{bottom:673.066500px;}
.y1e5{bottom:674.217000px;}
.y1f7{bottom:674.934000px;}
.y283{bottom:675.310500px;}
.y5a{bottom:675.343500px;}
.y381{bottom:676.051500px;}
.y81{bottom:676.918500px;}
.y36d{bottom:678.540000px;}
.y44c{bottom:680.061000px;}
.y3f4{bottom:680.325000px;}
.y36{bottom:681.498000px;}
.y108{bottom:681.508500px;}
.y32a{bottom:681.903000px;}
.yea{bottom:681.988500px;}
.y411{bottom:683.034000px;}
.y112{bottom:683.326500px;}
.y25e{bottom:687.795000px;}
.y207{bottom:688.060500px;}
.y2da{bottom:690.540000px;}
.y196{bottom:690.693000px;}
.y2ef{bottom:690.856500px;}
.y314{bottom:691.149000px;}
.y17a{bottom:693.987000px;}
.y1f6{bottom:694.428000px;}
.y1e6{bottom:695.217000px;}
.y1f2{bottom:696.183000px;}
.y282{bottom:696.310500px;}
.y11d{bottom:696.519000px;}
.y380{bottom:697.051500px;}
.y80{bottom:697.918500px;}
.y44b{bottom:698.061000px;}
.y36c{bottom:699.540000px;}
.y3f3{bottom:699.828000px;}
.y410{bottom:701.034000px;}
.y107{bottom:702.508500px;}
.y59{bottom:702.598500px;}
.y110{bottom:704.326500px;}
.y1c6{bottom:705.018000px;}
.y3d7{bottom:705.844500px;}
.y463{bottom:706.816500px;}
.y25d{bottom:708.795000px;}
.y206{bottom:709.060500px;}
.yb3{bottom:709.972500px;}
.y2ee{bottom:710.350500px;}
.y313{bottom:712.149000px;}
.y1f5{bottom:713.922000px;}
.y179{bottom:714.987000px;}
.ye9{bottom:715.738500px;}
.y48a{bottom:717.291600px;}
.y281{bottom:717.310500px;}
.y37f{bottom:718.051500px;}
.y31e{bottom:718.357500px;}
.y7f{bottom:718.918500px;}
.y35{bottom:718.998000px;}
.y195{bottom:719.202000px;}
.y36b{bottom:720.540000px;}
.y3b9{bottom:723.150000px;}
.y106{bottom:723.508500px;}
.y2d9{bottom:724.290000px;}
.y11c{bottom:725.028000px;}
.y126{bottom:725.038500px;}
.y111{bottom:725.326500px;}
.y1c5{bottom:726.018000px;}
.y3d6{bottom:726.844500px;}
.y44a{bottom:728.811000px;}
.y25c{bottom:729.795000px;}
.y2ed{bottom:729.844500px;}
.y58{bottom:729.853500px;}
.y205{bottom:730.060500px;}
.y10f{bottom:730.722000px;}
.yb2{bottom:730.972500px;}
.y312{bottom:733.149000px;}
.y31d{bottom:734.854500px;}
.y178{bottom:735.987000px;}
.ye8{bottom:736.738500px;}
.y34{bottom:737.748000px;}
.y280{bottom:738.310500px;}
.y37e{bottom:739.051500px;}
.y7e{bottom:739.918500px;}
.y36a{bottom:741.540000px;}
.y3b8{bottom:742.644000px;}
.y105{bottom:744.508500px;}
.y125{bottom:744.532500px;}
.y2d8{bottom:745.290000px;}
.y3f2{bottom:745.582500px;}
.y24a{bottom:745.980000px;}
.y449{bottom:746.811000px;}
.y1c4{bottom:747.018000px;}
.y194{bottom:747.711000px;}
.y3d5{bottom:747.844500px;}
.y2ec{bottom:749.338500px;}
.y25b{bottom:750.795000px;}
.y204{bottom:751.060500px;}
.yb1{bottom:751.972500px;}
.y311{bottom:754.149000px;}
.y39a{bottom:756.627000px;}
.y242{bottom:756.789000px;}
.y177{bottom:756.987000px;}
.y175{bottom:756.988500px;}
.y57{bottom:757.108500px;}
.ye7{bottom:757.738500px;}
.y10e{bottom:759.231000px;}
.y3aa{bottom:759.310500px;}
.y37d{bottom:760.051500px;}
.y7d{bottom:760.918500px;}
.y3b7{bottom:762.138000px;}
.y369{bottom:762.540000px;}
.y124{bottom:764.026500px;}
.y448{bottom:764.811000px;}
.y3f1{bottom:765.085500px;}
.y249{bottom:765.474000px;}
.y103{bottom:765.508500px;}
.y339{bottom:765.988500px;}
.y2d7{bottom:766.290000px;}
.y2eb{bottom:768.832500px;}
.y3d4{bottom:768.844500px;}
.y203{bottom:772.060500px;}
.y486{bottom:772.383300px;}
.yb0{bottom:772.972500px;}
.y235{bottom:774.517500px;}
.y310{bottom:775.149000px;}
.y33{bottom:775.248000px;}
.y6c{bottom:775.354500px;}
.y56{bottom:775.858500px;}
.y399{bottom:776.121000px;}
.y193{bottom:776.220000px;}
.y241{bottom:776.283000px;}
.y1e4{bottom:777.475500px;}
.y176{bottom:777.987000px;}
.ye6{bottom:778.738500px;}
.y3a9{bottom:780.310500px;}
.y3b6{bottom:781.632000px;}
.y7c{bottom:781.918500px;}
.y447{bottom:782.811000px;}
.y31a{bottom:783.045000px;}
.y123{bottom:783.520500px;}
.y368{bottom:783.540000px;}
.y25a{bottom:784.545000px;}
.y3f0{bottom:784.588500px;}
.y104{bottom:786.508500px;}
.y2d6{bottom:787.290000px;}
.y10d{bottom:787.740000px;}
.y2ea{bottom:788.326500px;}
.y27f{bottom:793.060500px;}
.y37c{bottom:793.801500px;}
.y32{bottom:793.998000px;}
.y398{bottom:795.615000px;}
.y240{bottom:795.777000px;}
.y1a7{bottom:796.060500px;}
.y1e3{bottom:798.475500px;}
.y15e{bottom:798.622500px;}
.ye5{bottom:799.738500px;}
.y3b5{bottom:801.126000px;}
.y122{bottom:803.014500px;}
.y55{bottom:803.113500px;}
.y3c9{bottom:803.205000px;}
.y3ef{bottom:804.091500px;}
.y367{bottom:804.540000px;}
.y259{bottom:805.545000px;}
.y202{bottom:805.810500px;}
.yaf{bottom:806.722500px;}
.y2d5{bottom:808.290000px;}
.y446{bottom:813.561000px;}
.y27e{bottom:814.060500px;}
.y37b{bottom:814.801500px;}
.y397{bottom:815.109000px;}
.y23f{bottom:815.271000px;}
.y48c{bottom:816.613800px;}
.y1a6{bottom:817.060500px;}
.y1e2{bottom:819.475500px;}
.y15d{bottom:819.622500px;}
.y3b4{bottom:820.620000px;}
.y3ee{bottom:823.594500px;}
.y3c8{bottom:824.205000px;}
.y366{bottom:825.540000px;}
.y427{bottom:825.904500px;}
.y258{bottom:826.545000px;}
.y201{bottom:826.810500px;}
.y2b5{bottom:827.307000px;}
.yae{bottom:827.722500px;}
.y2d4{bottom:829.290000px;}
.y54{bottom:830.368500px;}
.y31{bottom:831.498000px;}
.y445{bottom:831.561000px;}
.y7b{bottom:832.423500px;}
.y396{bottom:834.603000px;}
.y23e{bottom:834.765000px;}
.y27d{bottom:835.060500px;}
.y462{bottom:835.179000px;}
.y37a{bottom:835.801500px;}
.y1a5{bottom:838.060500px;}
.y3b3{bottom:840.114000px;}
.y1e1{bottom:840.475500px;}
.y15c{bottom:840.622500px;}
.y3ed{bottom:843.097500px;}
.y426{bottom:845.407500px;}
.y40f{bottom:845.784000px;}
.y1dd{bottom:847.456500px;}
.y257{bottom:847.545000px;}
.ya0{bottom:847.810500px;}
.y16c{bottom:848.077500px;}
.y2b4{bottom:848.307000px;}
.yad{bottom:848.722500px;}
.y444{bottom:849.561000px;}
.y30{bottom:850.248000px;}
.y2d3{bottom:850.290000px;}
.y7a{bottom:853.423500px;}
.y395{bottom:854.097000px;}
.y23d{bottom:854.259000px;}
.y27c{bottom:856.060500px;}
.y53{bottom:857.623500px;}
.y2e9{bottom:858.283500px;}
.y3d0{bottom:858.724500px;}
.y1a4{bottom:859.060500px;}
.y365{bottom:859.290000px;}
.y3b2{bottom:859.608000px;}
.y1e0{bottom:861.475500px;}
.y15b{bottom:861.622500px;}
.y3ec{bottom:862.600500px;}
.y2e1{bottom:863.487000px;}
.y40e{bottom:863.784000px;}
.y425{bottom:864.910500px;}
.y443{bottom:867.561000px;}
.y1dc{bottom:868.456500px;}
.y256{bottom:868.545000px;}
.y9f{bottom:868.810500px;}
.y2f{bottom:868.998000px;}
.y16b{bottom:869.077500px;}
.y2b3{bottom:869.307000px;}
.y379{bottom:869.551500px;}
.yac{bottom:869.722500px;}
.y2d2{bottom:871.290000px;}
.y394{bottom:873.591000px;}
.y79{bottom:874.423500px;}
.y27b{bottom:877.060500px;}
.y2e8{bottom:877.777500px;}
.y3cf{bottom:879.724500px;}
.y47f{bottom:880.023300px;}
.y1a3{bottom:880.060500px;}
.y364{bottom:880.290000px;}
.y1df{bottom:882.475500px;}
.y15a{bottom:882.622500px;}
.y424{bottom:884.413500px;}
.y52{bottom:884.878500px;}
.y442{bottom:885.561000px;}
.y461{bottom:886.156500px;}
.y1db{bottom:889.456500px;}
.y255{bottom:889.545000px;}
.y9e{bottom:889.810500px;}
.y16a{bottom:890.077500px;}
.y2b2{bottom:890.307000px;}
.y378{bottom:890.551500px;}
.yab{bottom:890.722500px;}
.y2e0{bottom:891.996000px;}
.y2d1{bottom:892.290000px;}
.y393{bottom:893.085000px;}
.y5{bottom:894.361500px;}
.y78{bottom:895.423500px;}
.y2e7{bottom:897.271500px;}
.y3ce{bottom:900.724500px;}
.y1a2{bottom:901.060500px;}
.y363{bottom:901.290000px;}
.y1de{bottom:903.475500px;}
.y159{bottom:903.622500px;}
.y47e{bottom:905.410500px;}
.y2e{bottom:906.498000px;}
.y1da{bottom:910.456500px;}
.y254{bottom:910.545000px;}
.y9d{bottom:910.810500px;}
.y169{bottom:911.077500px;}
.y2b1{bottom:911.307000px;}
.y377{bottom:911.551500px;}
.yaa{bottom:911.722500px;}
.y51{bottom:912.133500px;}
.y392{bottom:912.579000px;}
.y2d0{bottom:913.290000px;}
.y3eb{bottom:914.047500px;}
.y77{bottom:916.423500px;}
.y2e6{bottom:916.765500px;}
.y2df{bottom:920.505000px;}
.y460{bottom:920.962500px;}
.y3cd{bottom:921.724500px;}
.y1a1{bottom:922.060500px;}
.y362{bottom:922.290000px;}
.y158{bottom:924.622500px;}
.y2d{bottom:925.248000px;}
.y4{bottom:928.861500px;}
.y1d9{bottom:931.456500px;}
.y200{bottom:931.810500px;}
.y2b0{bottom:932.307000px;}
.y376{bottom:932.551500px;}
.ya9{bottom:932.722500px;}
.y3ea{bottom:933.550500px;}
.y2cf{bottom:934.290000px;}
.y2e5{bottom:936.259500px;}
.y76{bottom:937.423500px;}
.y50{bottom:939.388500px;}
.y3cc{bottom:942.724500px;}
.y1a0{bottom:943.060500px;}
.y361{bottom:943.290000px;}
.y253{bottom:944.295000px;}
.y9c{bottom:944.560500px;}
.y168{bottom:944.827500px;}
.y157{bottom:945.622500px;}
.y213{bottom:948.285000px;}
.y2de{bottom:949.014000px;}
.y489{bottom:949.632000px;}
.y1d8{bottom:952.456500px;}
.y238{bottom:952.810500px;}
.y3e9{bottom:953.053500px;}
.y375{bottom:953.551500px;}
.ya8{bottom:953.722500px;}
.y2ce{bottom:955.290000px;}
.y2e4{bottom:955.753500px;}
.y4f{bottom:958.138500px;}
.y75{bottom:958.423500px;}
.y2c{bottom:962.748000px;}
.y3cb{bottom:963.724500px;}
.y19f{bottom:964.060500px;}
.y360{bottom:964.290000px;}
.y252{bottom:965.295000px;}
.y9b{bottom:965.560500px;}
.y167{bottom:965.827500px;}
.y2af{bottom:966.057000px;}
.y338{bottom:970.807500px;}
.y3e8{bottom:972.556500px;}
.y273{bottom:973.807500px;}
.y237{bottom:973.810500px;}
.y374{bottom:974.551500px;}
.ya7{bottom:974.722500px;}
.y2e3{bottom:975.247500px;}
.y2cd{bottom:976.290000px;}
.y2dd{bottom:977.523000px;}
.y219{bottom:977.547750px;}
.yb8{bottom:978.490500px;}
.y2c5{bottom:978.987000px;}
.y74{bottom:979.423500px;}
.y2b{bottom:981.498000px;}
.y23c{bottom:984.508500px;}
.y19e{bottom:985.060500px;}
.y35f{bottom:985.290000px;}
.y4e{bottom:985.393500px;}
.y1d7{bottom:986.206500px;}
.y251{bottom:986.295000px;}
.y9a{bottom:986.560500px;}
.y166{bottom:986.827500px;}
.y2ae{bottom:987.057000px;}
.y173{bottom:988.530000px;}
.y337{bottom:990.301500px;}
.y218{bottom:991.046400px;}
.y391{bottom:992.031000px;}
.y3e7{bottom:992.059500px;}
.y272{bottom:993.301500px;}
.ybf{bottom:994.213500px;}
.y2e2{bottom:994.741500px;}
.y27a{bottom:994.810500px;}
.y373{bottom:995.551500px;}
.ya6{bottom:995.722500px;}
.y3ca{bottom:997.162500px;}
.y2cc{bottom:997.290000px;}
.y40d{bottom:999.219000px;}
.y217{bottom:1004.545050px;}
.y221{bottom:1004.581500px;}
.y35e{bottom:1006.290000px;}
.yb7{bottom:1006.999500px;}
.y1d6{bottom:1007.206500px;}
.y250{bottom:1007.295000px;}
.y2c4{bottom:1007.496000px;}
.y99{bottom:1007.560500px;}
.y165{bottom:1007.827500px;}
.y2ad{bottom:1008.057000px;}
.y3b1{bottom:1008.766500px;}
.y73{bottom:1008.928500px;}
.y172{bottom:1009.530000px;}
.y336{bottom:1009.795500px;}
.y23b{bottom:1011.513000px;}
.y390{bottom:1011.525000px;}
.y3e6{bottom:1011.562500px;}
.y4d{bottom:1012.648500px;}
.y271{bottom:1012.795500px;}
.ybe{bottom:1013.707500px;}
.y31c{bottom:1015.810500px;}
.ya5{bottom:1016.722500px;}
.y21d{bottom:1017.181050px;}
.y40c{bottom:1017.219000px;}
.y216{bottom:1018.043700px;}
.y220{bottom:1018.080150px;}
.y2a{bottom:1018.998000px;}
.y1d0{bottom:1021.633500px;}
.y35d{bottom:1027.290000px;}
.y1d5{bottom:1028.206500px;}
.y24f{bottom:1028.295000px;}
.y98{bottom:1028.560500px;}
.y164{bottom:1028.827500px;}
.y2ac{bottom:1029.057000px;}
.y335{bottom:1029.289500px;}
.y372{bottom:1029.301500px;}
.y72{bottom:1029.928500px;}
.y171{bottom:1030.530000px;}
.y21c{bottom:1030.679700px;}
.y38f{bottom:1031.019000px;}
.y3e5{bottom:1031.065500px;}
.y215{bottom:1031.542350px;}
.y21b{bottom:1031.554500px;}
.y21f{bottom:1031.578800px;}
.y270{bottom:1032.289500px;}
.ybd{bottom:1033.201500px;}
.y387{bottom:1034.505000px;}
.y38a{bottom:1035.016500px;}
.y40b{bottom:1035.219000px;}
.yb6{bottom:1035.508500px;}
.y2c3{bottom:1036.005000px;}
.y3b0{bottom:1037.275500px;}
.ya4{bottom:1037.722500px;}
.y29{bottom:1037.748000px;}
.y23a{bottom:1038.517500px;}
.y4c{bottom:1039.903500px;}
.y1cf{bottom:1042.633500px;}
.y490{bottom:1043.208000px;}
.y214{bottom:1045.041000px;}
.y21a{bottom:1045.053150px;}
.y21e{bottom:1045.077450px;}
.y3{bottom:1046.656500px;}
.y35c{bottom:1048.290000px;}
.y334{bottom:1048.783500px;}
.y1d4{bottom:1049.206500px;}
.y24e{bottom:1049.295000px;}
.y97{bottom:1049.560500px;}
.y163{bottom:1049.827500px;}
.y319{bottom:1050.054000px;}
.y2ab{bottom:1050.057000px;}
.y371{bottom:1050.301500px;}
.y38e{bottom:1050.513000px;}
.y3e4{bottom:1050.568500px;}
.y71{bottom:1050.928500px;}
.y170{bottom:1051.530000px;}
.y26f{bottom:1051.783500px;}
.ybc{bottom:1052.695500px;}
.y40a{bottom:1053.219000px;}
.y4b{bottom:1058.653500px;}
.ya3{bottom:1058.722500px;}
.y48f{bottom:1059.705000px;}
.y386{bottom:1063.014000px;}
.y389{bottom:1063.525500px;}
.y1ce{bottom:1063.633500px;}
.yb5{bottom:1064.017500px;}
.y2c2{bottom:1064.514000px;}
.y239{bottom:1065.522000px;}
.y3af{bottom:1065.784500px;}
.y333{bottom:1068.277500px;}
.y35a{bottom:1069.290000px;}
.y38d{bottom:1070.007000px;}
.y3e3{bottom:1070.071500px;}
.y1d3{bottom:1070.206500px;}
.y24c{bottom:1070.295000px;}
.y3d3{bottom:1070.554500px;}
.y95{bottom:1070.560500px;}
.y162{bottom:1070.827500px;}
.y318{bottom:1071.054000px;}
.y2a9{bottom:1071.057000px;}
.y409{bottom:1071.219000px;}
.y26e{bottom:1071.277500px;}
.y36f{bottom:1071.301500px;}
.y6e{bottom:1071.928500px;}
.ybb{bottom:1072.189500px;}
.y28{bottom:1075.248000px;}
.ya2{bottom:1079.722500px;}
.y1cd{bottom:1084.633500px;}
.y16f{bottom:1085.280000px;}
.y4a{bottom:1085.908500px;}
.y332{bottom:1087.771500px;}
.y38c{bottom:1089.501000px;}
.y35b{bottom:1090.290000px;}
.y26d{bottom:1090.771500px;}
.y1d2{bottom:1091.206500px;}
.y24d{bottom:1091.295000px;}
.y385{bottom:1091.523000px;}
.y3d2{bottom:1091.554500px;}
.y96{bottom:1091.560500px;}
.y491{bottom:1091.602500px;}
.yba{bottom:1091.683500px;}
.y161{bottom:1091.827500px;}
.y388{bottom:1092.034500px;}
.y317{bottom:1092.054000px;}
.y2aa{bottom:1092.057000px;}
.y370{bottom:1092.301500px;}
.yb4{bottom:1092.526500px;}
.y70{bottom:1092.928500px;}
.y2c1{bottom:1093.023000px;}
.y27{bottom:1093.998000px;}
.y3ae{bottom:1094.293500px;}
.y422{bottom:1104.526500px;}
.y1cc{bottom:1105.633500px;}
.y16e{bottom:1106.280000px;}
.y2{bottom:1106.677500px;}
.y331{bottom:1107.265500px;}
.y38b{bottom:1108.995000px;}
.y26c{bottom:1110.265500px;}
.yb9{bottom:1111.177500px;}
.y3d1{bottom:1112.554500px;}
.y1ff{bottom:1112.560500px;}
.y160{bottom:1112.827500px;}
.y316{bottom:1113.054000px;}
.y49{bottom:1113.163500px;}
.ya1{bottom:1113.472500px;}
.y6f{bottom:1113.928500px;}
.y1d1{bottom:1124.956500px;}
.y1cb{bottom:1126.633500px;}
.y16d{bottom:1127.280000px;}
.y26{bottom:1131.498000px;}
.y15f{bottom:1133.827500px;}
.y1{bottom:1166.698500px;}
.y6b{bottom:1184.605500px;}
.he{height:30.728027px;}
.h18{height:37.233105px;}
.h5{height:39.477656px;}
.h16{height:41.370117px;}
.h9{height:44.191406px;}
.h17{height:45.254004px;}
.h12{height:45.966797px;}
.h1e{height:49.644141px;}
.h15{height:50.282227px;}
.h20{height:50.563477px;}
.h21{height:53.634375px;}
.h14{height:55.160156px;}
.ha{height:55.824609px;}
.hc{height:55.869141px;}
.h6{height:58.651172px;}
.h1f{height:60.338672px;}
.hd{height:61.456055px;}
.hb{height:67.042969px;}
.h8{height:70.664062px;}
.h1d{height:73.546875px;}
.h1c{height:78.143555px;}
.h4{height:79.850391px;}
.h3{height:85.200000px;}
.h13{height:94.977539px;}
.h1a{height:95.749404px;}
.h19{height:99.248604px;}
.hf{height:111.738281px;}
.h2{height:161.880000px;}
.h1b{height:184.368164px;}
.h10{height:195.541992px;}
.h7{height:262.110000px;}
.h11{height:275.004671px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:524.805000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x0{left:0.000000px;}
.xb{left:2.340000px;}
.x12{left:51.023550px;}
.x14{left:52.086600px;}
.x3e{left:60.238500px;}
.x5c{left:61.641750px;}
.x17{left:63.779550px;}
.x86{left:82.520550px;}
.x87{left:84.022050px;}
.x4{left:85.039350px;}
.x5{left:98.012550px;}
.x13{left:99.468750px;}
.xc{left:116.456700px;}
.x62{left:124.358250px;}
.x21{left:128.409450px;}
.x2f{left:131.480250px;}
.x39{left:137.480250px;}
.x7d{left:143.078700px;}
.x7e{left:144.708600px;}
.x65{left:146.347500px;}
.x63{left:151.343250px;}
.x8{left:161.007000px;}
.x9{left:163.347000px;}
.x3f{left:174.241950px;}
.x6{left:176.307000px;}
.x49{left:192.349500px;}
.x66{left:201.177000px;}
.x7{left:225.089700px;}
.x8c{left:276.093000px;}
.x40{left:289.144500px;}
.x2{left:300.622500px;}
.x83{left:302.184000px;}
.x22{left:303.435000px;}
.x58{left:306.031500px;}
.x85{left:309.142500px;}
.x15{left:310.393500px;}
.x88{left:331.653000px;}
.x84{left:342.652500px;}
.x23{left:344.274000px;}
.x59{left:350.980500px;}
.x3a{left:355.965000px;}
.x16{left:357.361500px;}
.x3c{left:371.205000px;}
.x42{left:403.281600px;}
.x4a{left:417.259500px;}
.x1{left:418.384500px;}
.xd{left:429.446700px;}
.x8d{left:475.072200px;}
.xa{left:486.480000px;}
.x43{left:515.341050px;}
.x3{left:545.722500px;}
.x41{left:630.608100px;}
.x18{left:634.960500px;}
.x48{left:932.031000px;}
.x30{left:934.807500px;}
.xf{left:977.952000px;}
.x29{left:979.480500px;}
.x2b{left:985.042500px;}
.x20{left:990.708000px;}
.x2d{left:997.048500px;}
.x37{left:999.598500px;}
.x2c{left:1001.116500px;}
.x36{left:1003.342500px;}
.x38{left:1004.944500px;}
.x35{left:1009.444500px;}
.x26{left:1010.458500px;}
.x25{left:1011.916500px;}
.x6b{left:1019.269500px;}
.x1a{left:1020.682500px;}
.x4c{left:1024.291500px;}
.x33{left:1027.552500px;}
.x81{left:1029.331500px;}
.x6a{left:1030.789500px;}
.x1d{left:1032.472500px;}
.x69{left:1035.451500px;}
.x19{left:1036.882500px;}
.x34{left:1038.190500px;}
.x1c{left:1040.014500px;}
.x60{left:1041.676500px;}
.x27{left:1046.170500px;}
.x2a{left:1049.050500px;}
.x1b{left:1054.252500px;}
.x82{left:1059.328500px;}
.x5f{left:1061.566500px;}
.x6f{left:1063.072500px;}
.x28{left:1065.736500px;}
.x10{left:1067.959500px;}
.x3d{left:1071.528000px;}
.x44{left:1073.277000px;}
.x6e{left:1077.184500px;}
.x6d{left:1079.776500px;}
.x89{left:1082.860500px;}
.x4d{left:1090.009500px;}
.x6c{left:1096.327500px;}
.x5e{left:1100.356500px;}
.x61{left:1120.048500px;}
.x8a{left:1127.958000px;}
.x2e{left:1135.396500px;}
.x70{left:1163.712000px;}
.x7a{left:1165.111500px;}
.x74{left:1166.556000px;}
.x7f{left:1167.996000px;}
.x76{left:1170.214500px;}
.x72{left:1183.588500px;}
.x75{left:1186.860000px;}
.x78{left:1190.991000px;}
.x77{left:1193.934000px;}
.x71{left:1201.296000px;}
.x50{left:1206.511500px;}
.x5a{left:1230.364500px;}
.x1e{left:1233.717000px;}
.x67{left:1236.277500px;}
.xe{left:1237.323000px;}
.x46{left:1248.679950px;}
.x32{left:1250.136000px;}
.x5b{left:1269.726000px;}
.x5d{left:1270.833000px;}
.x1f{left:1273.942500px;}
.x24{left:1276.063500px;}
.x68{left:1277.692500px;}
.x7c{left:1281.616500px;}
.x31{left:1284.291000px;}
.x4b{left:1285.399500px;}
.x7b{left:1299.558000px;}
.x11{left:1310.194500px;}
.x51{left:1315.825500px;}
.x80{left:1318.048500px;}
.x64{left:1319.280000px;}
.x3b{left:1323.780000px;}
.x57{left:1355.136000px;}
.x8b{left:1361.695500px;}
.x73{left:1368.498000px;}
.x4e{left:1380.513000px;}
.x4f{left:1388.937000px;}
.x79{left:1399.309500px;}
.x47{left:1424.891400px;}
.x56{left:1433.653500px;}
.x55{left:1439.863500px;}
.x53{left:1537.639500px;}
.x54{left:1550.599500px;}
.x52{left:1592.161500px;}
.x45{left:1600.872000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:44.884800pt;}
.v2{vertical-align:47.995200pt;}
.v1{vertical-align:149.333333pt;}
.ls15{letter-spacing:-5.600000pt;}
.ls22{letter-spacing:-4.533333pt;}
.ls2a{letter-spacing:-4.400000pt;}
.ls1d{letter-spacing:-4.000000pt;}
.ls20{letter-spacing:-3.520000pt;}
.ls13{letter-spacing:-3.200000pt;}
.ls1a{letter-spacing:-2.666667pt;}
.ls24{letter-spacing:-1.920000pt;}
.ls1b{letter-spacing:-1.813333pt;}
.ls2b{letter-spacing:-1.536000pt;}
.ls26{letter-spacing:-1.440000pt;}
.ls19{letter-spacing:-1.333333pt;}
.ls1f{letter-spacing:-1.296000pt;}
.ls28{letter-spacing:-1.173333pt;}
.ls27{letter-spacing:-1.152000pt;}
.ls29{letter-spacing:-1.066667pt;}
.ls23{letter-spacing:-0.853333pt;}
.ls1c{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.624000pt;}
.ls1{letter-spacing:-0.533333pt;}
.ls1e{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.300160pt;}
.lsc{letter-spacing:-0.288000pt;}
.ls12{letter-spacing:-0.266667pt;}
.lse{letter-spacing:-0.240000pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.048000pt;}
.ls3{letter-spacing:0.159360pt;}
.ls7{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.214400pt;}
.ls2{letter-spacing:0.257280pt;}
.ls10{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.336000pt;}
.ls17{letter-spacing:0.640000pt;}
.ls0{letter-spacing:2.026667pt;}
.ls16{letter-spacing:2.720000pt;}
.ls21{letter-spacing:3.200000pt;}
.ls8{letter-spacing:5.866667pt;}
.ls18{letter-spacing:28.800000pt;}
.ls25{letter-spacing:1483.709333pt;}
.ls14{letter-spacing:1506.325333pt;}
.ws3d{word-spacing:-68.255893pt;}
.ws41{word-spacing:-56.053333pt;}
.ws42{word-spacing:-53.973333pt;}
.wsd4{word-spacing:-53.333333pt;}
.ws1f{word-spacing:-53.066667pt;}
.wsab{word-spacing:-52.000000pt;}
.ws40{word-spacing:-50.666667pt;}
.wsd5{word-spacing:-43.786667pt;}
.ws20{word-spacing:-43.306667pt;}
.ws103{word-spacing:-41.706667pt;}
.ws7c{word-spacing:-41.546667pt;}
.ws128{word-spacing:-41.333333pt;}
.ws3f{word-spacing:-40.480000pt;}
.ws100{word-spacing:-39.573333pt;}
.wsac{word-spacing:-39.520000pt;}
.wsa8{word-spacing:-39.146667pt;}
.ws101{word-spacing:-38.880000pt;}
.wsd6{word-spacing:-37.173333pt;}
.wsfe{word-spacing:-36.960000pt;}
.wsaa{word-spacing:-34.773333pt;}
.wsf8{word-spacing:-34.293333pt;}
.wsa9{word-spacing:-34.080000pt;}
.ws102{word-spacing:-31.893333pt;}
.wsd9{word-spacing:-27.520000pt;}
.ws16c{word-spacing:-27.200000pt;}
.ws149{word-spacing:-26.208000pt;}
.wsff{word-spacing:-23.466667pt;}
.ws7a{word-spacing:-21.760000pt;}
.ws180{word-spacing:-21.555200pt;}
.ws12a{word-spacing:-19.040000pt;}
.ws129{word-spacing:-18.826667pt;}
.ws9{word-spacing:-15.216000pt;}
.ws8{word-spacing:-15.072000pt;}
.ws6{word-spacing:-15.024000pt;}
.ws7{word-spacing:-14.736000pt;}
.wsa{word-spacing:-14.400000pt;}
.ws1{word-spacing:-14.186667pt;}
.ws17b{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.635840pt;}
.ws43{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.421440pt;}
.ws17f{word-spacing:-13.333333pt;}
.wsc{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.121280pt;}
.ws3e{word-spacing:-12.533333pt;}
.ws7b{word-spacing:-11.200000pt;}
.ws57{word-spacing:-8.106667pt;}
.wsea{word-spacing:-7.306667pt;}
.ws13f{word-spacing:-6.773333pt;}
.ws7d{word-spacing:-6.080000pt;}
.ws142{word-spacing:-5.973333pt;}
.ws15d{word-spacing:-5.173333pt;}
.ws107{word-spacing:-5.013333pt;}
.ws73{word-spacing:-4.906667pt;}
.ws140{word-spacing:-4.853333pt;}
.wsb6{word-spacing:-4.693333pt;}
.wsa1{word-spacing:-4.320000pt;}
.wsb8{word-spacing:-4.266667pt;}
.ws85{word-spacing:-4.213333pt;}
.ws165{word-spacing:-4.160000pt;}
.ws4e{word-spacing:-4.053333pt;}
.wse9{word-spacing:-4.000000pt;}
.ws141{word-spacing:-3.946667pt;}
.ws9f{word-spacing:-3.733333pt;}
.ws118{word-spacing:-3.626667pt;}
.ws155{word-spacing:-3.573333pt;}
.ws15c{word-spacing:-3.466667pt;}
.ws160{word-spacing:-3.360000pt;}
.wsfa{word-spacing:-3.306667pt;}
.ws8e{word-spacing:-3.253333pt;}
.wsf6{word-spacing:-3.200000pt;}
.ws61{word-spacing:-3.146667pt;}
.ws8a{word-spacing:-2.826667pt;}
.ws143{word-spacing:-2.720000pt;}
.ws16b{word-spacing:-2.666667pt;}
.ws5f{word-spacing:-2.613333pt;}
.ws84{word-spacing:-2.560000pt;}
.ws151{word-spacing:-2.506667pt;}
.wse8{word-spacing:-2.346667pt;}
.wse7{word-spacing:-2.293333pt;}
.ws139{word-spacing:-2.240000pt;}
.ws119{word-spacing:-2.133333pt;}
.ws0{word-spacing:-2.026667pt;}
.ws130{word-spacing:-1.973333pt;}
.ws12b{word-spacing:-1.920000pt;}
.wsc6{word-spacing:-1.866667pt;}
.ws11a{word-spacing:-1.760000pt;}
.ws14f{word-spacing:-1.706667pt;}
.ws86{word-spacing:-1.653333pt;}
.ws4b{word-spacing:-1.600000pt;}
.ws154{word-spacing:-1.546667pt;}
.ws134{word-spacing:-1.493333pt;}
.ws46{word-spacing:-1.440000pt;}
.ws123{word-spacing:-1.280000pt;}
.ws113{word-spacing:-1.226667pt;}
.wscd{word-spacing:-1.173333pt;}
.ws12e{word-spacing:-1.120000pt;}
.wsc8{word-spacing:-1.066667pt;}
.ws150{word-spacing:-0.960000pt;}
.wse2{word-spacing:-0.853333pt;}
.ws9a{word-spacing:-0.800000pt;}
.ws82{word-spacing:-0.746667pt;}
.ws88{word-spacing:-0.586667pt;}
.wsf0{word-spacing:-0.533333pt;}
.ws22{word-spacing:-0.480000pt;}
.ws1a{word-spacing:-0.455040pt;}
.ws90{word-spacing:-0.426667pt;}
.ws4a{word-spacing:-0.373333pt;}
.wse4{word-spacing:-0.320000pt;}
.ws16{word-spacing:-0.288000pt;}
.ws52{word-spacing:-0.266667pt;}
.ws10{word-spacing:-0.240000pt;}
.ws76{word-spacing:-0.213333pt;}
.ws11{word-spacing:-0.192000pt;}
.ws12{word-spacing:-0.144000pt;}
.ws1c{word-spacing:-0.106667pt;}
.ws2c{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.wse{word-spacing:0.042880pt;}
.wsf{word-spacing:0.048000pt;}
.ws18{word-spacing:0.101120pt;}
.ws6a{word-spacing:0.106667pt;}
.ws19{word-spacing:0.151680pt;}
.ws17{word-spacing:0.159360pt;}
.ws12d{word-spacing:0.213333pt;}
.ws25{word-spacing:0.266667pt;}
.ws15{word-spacing:0.288000pt;}
.ws169{word-spacing:0.320000pt;}
.ws13{word-spacing:0.336000pt;}
.wsc5{word-spacing:0.373333pt;}
.ws14{word-spacing:0.384000pt;}
.ws87{word-spacing:0.480000pt;}
.ws2b{word-spacing:0.533333pt;}
.ws152{word-spacing:0.586667pt;}
.ws53{word-spacing:0.640000pt;}
.wsb1{word-spacing:0.693333pt;}
.ws56{word-spacing:0.800000pt;}
.wsed{word-spacing:0.853333pt;}
.ws16a{word-spacing:0.906667pt;}
.wseb{word-spacing:0.960000pt;}
.ws9d{word-spacing:1.066667pt;}
.ws4f{word-spacing:1.120000pt;}
.ws14c{word-spacing:1.152000pt;}
.ws2a{word-spacing:1.173333pt;}
.ws10c{word-spacing:1.280000pt;}
.wsef{word-spacing:1.296000pt;}
.ws44{word-spacing:1.333333pt;}
.ws98{word-spacing:1.386667pt;}
.ws182{word-spacing:1.392000pt;}
.ws14b{word-spacing:1.440000pt;}
.ws2f{word-spacing:1.653333pt;}
.ws59{word-spacing:1.706667pt;}
.ws6e{word-spacing:1.760000pt;}
.ws65{word-spacing:1.813333pt;}
.wsa0{word-spacing:1.920000pt;}
.ws126{word-spacing:1.973333pt;}
.wsd2{word-spacing:2.026667pt;}
.ws75{word-spacing:2.133333pt;}
.ws131{word-spacing:2.186667pt;}
.ws124{word-spacing:2.240000pt;}
.ws89{word-spacing:2.293333pt;}
.wsae{word-spacing:2.346667pt;}
.ws11c{word-spacing:2.400000pt;}
.wscf{word-spacing:2.506667pt;}
.ws6f{word-spacing:2.560000pt;}
.ws135{word-spacing:2.613333pt;}
.ws3c{word-spacing:2.666667pt;}
.ws78{word-spacing:2.720000pt;}
.ws161{word-spacing:2.773333pt;}
.ws114{word-spacing:2.880000pt;}
.ws34{word-spacing:2.933333pt;}
.ws11d{word-spacing:3.093333pt;}
.ws63{word-spacing:3.146667pt;}
.ws1e{word-spacing:3.200000pt;}
.ws77{word-spacing:3.253333pt;}
.wse1{word-spacing:3.306667pt;}
.ws49{word-spacing:3.413333pt;}
.wsf5{word-spacing:3.520000pt;}
.ws4c{word-spacing:3.573333pt;}
.ws9b{word-spacing:3.626667pt;}
.ws11b{word-spacing:3.680000pt;}
.ws26{word-spacing:3.786667pt;}
.ws117{word-spacing:3.840000pt;}
.ws10b{word-spacing:3.893333pt;}
.ws37{word-spacing:3.946667pt;}
.ws120{word-spacing:4.000000pt;}
.ws27{word-spacing:4.160000pt;}
.ws158{word-spacing:4.213333pt;}
.ws45{word-spacing:4.320000pt;}
.ws17e{word-spacing:4.400000pt;}
.ws28{word-spacing:4.480000pt;}
.wsfc{word-spacing:4.533333pt;}
.ws121{word-spacing:4.640000pt;}
.ws62{word-spacing:4.693333pt;}
.wsa3{word-spacing:4.960000pt;}
.ws2d{word-spacing:5.226667pt;}
.ws64{word-spacing:5.333333pt;}
.ws5b{word-spacing:5.440000pt;}
.ws54{word-spacing:5.493333pt;}
.ws11f{word-spacing:5.546667pt;}
.ws21{word-spacing:5.600000pt;}
.ws99{word-spacing:5.653333pt;}
.ws91{word-spacing:5.760000pt;}
.wsba{word-spacing:5.973333pt;}
.ws32{word-spacing:6.026667pt;}
.ws15e{word-spacing:6.080000pt;}
.ws5c{word-spacing:6.133333pt;}
.ws3b{word-spacing:6.186667pt;}
.wsc4{word-spacing:6.346667pt;}
.ws167{word-spacing:6.453333pt;}
.ws36{word-spacing:6.506667pt;}
.ws10a{word-spacing:6.560000pt;}
.wsf4{word-spacing:6.720000pt;}
.ws164{word-spacing:6.773333pt;}
.ws108{word-spacing:6.826667pt;}
.wsa7{word-spacing:6.933333pt;}
.ws33{word-spacing:6.986667pt;}
.wsc9{word-spacing:7.040000pt;}
.ws147{word-spacing:7.200000pt;}
.ws137{word-spacing:7.413333pt;}
.ws29{word-spacing:7.466667pt;}
.wsec{word-spacing:7.520000pt;}
.ws2e{word-spacing:7.626667pt;}
.ws179{word-spacing:7.680000pt;}
.wsb7{word-spacing:7.733333pt;}
.wsca{word-spacing:7.786667pt;}
.wsf3{word-spacing:7.840000pt;}
.ws6b{word-spacing:7.893333pt;}
.ws177{word-spacing:8.000000pt;}
.ws144{word-spacing:8.160000pt;}
.ws55{word-spacing:8.213333pt;}
.wsce{word-spacing:8.533333pt;}
.wsee{word-spacing:8.592000pt;}
.wsb2{word-spacing:8.640000pt;}
.wsa2{word-spacing:8.853333pt;}
.ws109{word-spacing:8.906667pt;}
.ws178{word-spacing:9.066667pt;}
.ws156{word-spacing:9.173333pt;}
.ws9e{word-spacing:9.333333pt;}
.ws51{word-spacing:9.653333pt;}
.ws93{word-spacing:9.706667pt;}
.ws14d{word-spacing:9.760000pt;}
.wsb4{word-spacing:10.026667pt;}
.ws83{word-spacing:10.293333pt;}
.wsdf{word-spacing:10.346667pt;}
.wsa4{word-spacing:10.453333pt;}
.wsfd{word-spacing:10.618667pt;}
.ws92{word-spacing:10.666667pt;}
.wscc{word-spacing:10.826667pt;}
.ws132{word-spacing:10.880000pt;}
.ws8b{word-spacing:10.933333pt;}
.ws13d{word-spacing:11.146667pt;}
.wscb{word-spacing:11.306667pt;}
.ws97{word-spacing:11.626667pt;}
.ws116{word-spacing:11.786667pt;}
.ws30{word-spacing:11.946667pt;}
.ws13e{word-spacing:12.000000pt;}
.ws146{word-spacing:12.160000pt;}
.ws35{word-spacing:12.213333pt;}
.ws50{word-spacing:12.266667pt;}
.ws13c{word-spacing:12.586667pt;}
.ws3a{word-spacing:12.693333pt;}
.ws5a{word-spacing:12.800000pt;}
.ws122{word-spacing:12.906667pt;}
.ws15f{word-spacing:12.960000pt;}
.ws31{word-spacing:13.013333pt;}
.ws68{word-spacing:13.066667pt;}
.ws9c{word-spacing:13.226667pt;}
.wsd1{word-spacing:13.333333pt;}
.wsc2{word-spacing:13.386667pt;}
.ws11e{word-spacing:13.706667pt;}
.wsc7{word-spacing:13.760000pt;}
.ws157{word-spacing:13.866667pt;}
.ws112{word-spacing:13.920000pt;}
.ws7f{word-spacing:14.026667pt;}
.wsd3{word-spacing:14.080000pt;}
.ws148{word-spacing:14.133333pt;}
.ws125{word-spacing:14.346667pt;}
.ws145{word-spacing:14.400000pt;}
.wsb0{word-spacing:14.453333pt;}
.ws166{word-spacing:14.506667pt;}
.wse5{word-spacing:14.773333pt;}
.wsf1{word-spacing:15.040000pt;}
.ws5d{word-spacing:15.093333pt;}
.ws58{word-spacing:15.253333pt;}
.ws175{word-spacing:15.413333pt;}
.ws171{word-spacing:15.573333pt;}
.ws96{word-spacing:16.213333pt;}
.ws95{word-spacing:16.426667pt;}
.ws23{word-spacing:16.640000pt;}
.wsf9{word-spacing:17.013333pt;}
.ws39{word-spacing:17.066667pt;}
.wsc3{word-spacing:17.386667pt;}
.ws14e{word-spacing:17.440000pt;}
.ws163{word-spacing:17.653333pt;}
.ws60{word-spacing:17.813333pt;}
.wsf2{word-spacing:17.866667pt;}
.wsbe{word-spacing:17.973333pt;}
.ws79{word-spacing:18.026667pt;}
.ws176{word-spacing:18.186667pt;}
.wsd0{word-spacing:18.293333pt;}
.ws74{word-spacing:18.453333pt;}
.wsd{word-spacing:18.666667pt;}
.ws69{word-spacing:18.933333pt;}
.wse3{word-spacing:19.146667pt;}
.ws127{word-spacing:19.253333pt;}
.ws174{word-spacing:19.360000pt;}
.wsf7{word-spacing:19.893333pt;}
.wsbd{word-spacing:20.000000pt;}
.wsdc{word-spacing:20.160000pt;}
.ws115{word-spacing:20.266667pt;}
.ws4d{word-spacing:20.373333pt;}
.ws16e{word-spacing:21.173333pt;}
.ws13b{word-spacing:21.333333pt;}
.ws133{word-spacing:21.493333pt;}
.ws8f{word-spacing:21.546667pt;}
.ws72{word-spacing:21.760000pt;}
.ws5e{word-spacing:21.866667pt;}
.ws6d{word-spacing:22.080000pt;}
.ws159{word-spacing:22.666667pt;}
.wsb3{word-spacing:22.826667pt;}
.ws10f{word-spacing:22.880000pt;}
.wsa5{word-spacing:23.040000pt;}
.wsdb{word-spacing:23.413333pt;}
.ws24{word-spacing:23.626667pt;}
.ws16f{word-spacing:24.053333pt;}
.ws38{word-spacing:24.213333pt;}
.wse6{word-spacing:24.960000pt;}
.ws136{word-spacing:25.013333pt;}
.ws6c{word-spacing:25.280000pt;}
.ws111{word-spacing:25.386667pt;}
.ws153{word-spacing:25.600000pt;}
.ws162{word-spacing:25.866667pt;}
.ws17d{word-spacing:26.986667pt;}
.ws168{word-spacing:27.893333pt;}
.wsb9{word-spacing:28.000000pt;}
.ws181{word-spacing:28.108800pt;}
.wsb5{word-spacing:28.160000pt;}
.ws8d{word-spacing:28.266667pt;}
.ws12f{word-spacing:28.373333pt;}
.ws67{word-spacing:28.533333pt;}
.ws66{word-spacing:29.066667pt;}
.ws138{word-spacing:29.600000pt;}
.wsaf{word-spacing:29.866667pt;}
.ws81{word-spacing:30.773333pt;}
.ws17a{word-spacing:30.826667pt;}
.ws170{word-spacing:31.200000pt;}
.ws173{word-spacing:31.306667pt;}
.ws12c{word-spacing:31.733333pt;}
.ws94{word-spacing:31.840000pt;}
.wsc0{word-spacing:32.053333pt;}
.ws110{word-spacing:33.600000pt;}
.ws14a{word-spacing:33.813333pt;}
.ws7e{word-spacing:34.933333pt;}
.wsbc{word-spacing:35.626667pt;}
.ws13a{word-spacing:35.733333pt;}
.wsbf{word-spacing:35.840000pt;}
.ws172{word-spacing:36.373333pt;}
.wsa6{word-spacing:36.693333pt;}
.wsdd{word-spacing:36.960000pt;}
.wsbb{word-spacing:38.346667pt;}
.ws16d{word-spacing:40.202667pt;}
.ws105{word-spacing:42.720000pt;}
.ws104{word-spacing:42.773333pt;}
.ws71{word-spacing:44.480000pt;}
.ws47{word-spacing:45.600000pt;}
.wsfb{word-spacing:50.080000pt;}
.ws8c{word-spacing:52.320000pt;}
.ws10e{word-spacing:52.586667pt;}
.wse0{word-spacing:54.506667pt;}
.ws70{word-spacing:56.693333pt;}
.ws80{word-spacing:60.746667pt;}
.ws48{word-spacing:61.013333pt;}
.wsc1{word-spacing:65.440000pt;}
.ws15b{word-spacing:69.706667pt;}
.ws1d{word-spacing:71.733333pt;}
.ws106{word-spacing:90.346667pt;}
.wsde{word-spacing:91.413333pt;}
.ws15a{word-spacing:96.640000pt;}
.wsad{word-spacing:103.840000pt;}
.ws10d{word-spacing:131.146667pt;}
.wsd8{word-spacing:306.417600pt;}
.ws17c{word-spacing:749.813333pt;}
.wsd7{word-spacing:985.910400pt;}
.ws1b{word-spacing:1410.400000pt;}
.wsda{word-spacing:1714.737600pt;}
._2f{margin-left:-31.413333pt;}
._2e{margin-left:-27.626667pt;}
._4a{margin-left:-24.533333pt;}
._34{margin-left:-13.186037pt;}
._40{margin-left:-10.630400pt;}
._29{margin-left:-6.530149pt;}
._1{margin-left:-5.066667pt;}
._f{margin-left:-3.733333pt;}
._0{margin-left:-2.026667pt;}
._3{margin-left:-1.114880pt;}
._4{width:1.249920pt;}
._5{width:2.169600pt;}
._6{width:3.557547pt;}
._37{width:5.120000pt;}
._2d{width:6.448213pt;}
._28{width:7.893333pt;}
._33{width:8.784000pt;}
._3e{width:9.792000pt;}
._2c{width:11.194667pt;}
._49{width:12.245760pt;}
._2{width:14.592000pt;}
._3a{width:16.228693pt;}
._36{width:17.290880pt;}
._2b{width:18.570667pt;}
._4b{width:19.690667pt;}
._32{width:20.709333pt;}
._35{width:21.706667pt;}
._17{width:24.443733pt;}
._20{width:25.363413pt;}
._b{width:27.514880pt;}
._31{width:28.800000pt;}
._44{width:29.786667pt;}
._3c{width:31.146667pt;}
._8{width:33.234667pt;}
._42{width:35.941333pt;}
._39{width:37.050667pt;}
._4c{width:41.301333pt;}
._45{width:43.840000pt;}
._4e{width:44.923307pt;}
._4d{width:46.640000pt;}
._30{width:49.440000pt;}
._14{width:50.773333pt;}
._46{width:54.677547pt;}
._2a{width:57.610667pt;}
._3d{width:63.546555pt;}
._4f{width:68.480000pt;}
._48{width:70.090880pt;}
._d{width:71.733333pt;}
._3b{width:72.800000pt;}
._7{width:103.840000pt;}
._43{width:115.920000pt;}
._47{width:121.162667pt;}
._1f{width:147.680000pt;}
._26{width:174.613333pt;}
._3f{width:215.179200pt;}
._1c{width:232.213333pt;}
._22{width:234.186667pt;}
._24{width:261.600000pt;}
._25{width:273.920000pt;}
._1b{width:283.413333pt;}
._15{width:312.426667pt;}
._13{width:337.120000pt;}
._1d{width:349.920000pt;}
._10{width:370.720000pt;}
._12{width:381.546667pt;}
._11{width:476.693333pt;}
._23{width:505.120000pt;}
._e{width:512.000000pt;}
._27{width:523.517227pt;}
._1e{width:665.866667pt;}
._1a{width:700.906667pt;}
._19{width:812.906667pt;}
._21{width:836.760320pt;}
._c{width:1041.606827pt;}
._18{width:1046.317227pt;}
._16{width:1316.640000pt;}
._38{width:1477.270933pt;}
._41{width:1478.673600pt;}
._a{width:1500.458667pt;}
._9{width:2248.589333pt;}
.fsa{font-size:29.333333pt;}
.fs3{font-size:42.880000pt;}
.fse{font-size:43.200000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs12{font-size:51.200000pt;}
.fs4{font-size:53.120000pt;}
.fs8{font-size:53.333333pt;}
.fs11{font-size:57.600000pt;}
.fs9{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:72.320000pt;}
.fs10{font-size:85.333333pt;}
.fsd{font-size:90.666667pt;}
.fs1{font-size:106.666667pt;}
.fsf{font-size:176.000000pt;}
.fsb{font-size:186.666667pt;}
.fs0{font-size:202.666667pt;}
.fsc{font-size:262.522667pt;}
.y25{bottom:-149.146800pt;}
.y24{bottom:-133.786800pt;}
.y23{bottom:-118.586800pt;}
.y22{bottom:-103.706800pt;}
.y21{bottom:-88.346800pt;}
.y20{bottom:-72.986800pt;}
.y1f{bottom:-57.600133pt;}
.y1e{bottom:-42.080133pt;}
.y1d{bottom:-26.720133pt;}
.y1c{bottom:-11.360133pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:3.519867pt;}
.y174{bottom:30.887333pt;}
.y48{bottom:31.050400pt;}
.ye0{bottom:61.729333pt;}
.y1c9{bottom:62.536133pt;}
.y154{bottom:62.633333pt;}
.yc{bottom:65.237333pt;}
.y145{bottom:66.396000pt;}
.y22a{bottom:67.865333pt;}
.y2c0{bottom:68.406667pt;}
.y34e{bottom:71.812000pt;}
.y267{bottom:77.493333pt;}
.ydf{bottom:80.396000pt;}
.y3c7{bottom:80.722667pt;}
.y1c8{bottom:81.202800pt;}
.y153{bottom:81.300000pt;}
.y1a{bottom:83.341333pt;}
.y144{bottom:85.062667pt;}
.y441{bottom:85.108000pt;}
.y229{bottom:86.532000pt;}
.y102{bottom:86.558667pt;}
.y2bf{bottom:87.073333pt;}
.y292{bottom:87.729333pt;}
.y34d{bottom:90.478667pt;}
.y266{bottom:96.160000pt;}
.y19{bottom:97.897333pt;}
.yde{bottom:99.062667pt;}
.y1c7{bottom:99.869467pt;}
.y152{bottom:99.966667pt;}
.y192{bottom:100.877333pt;}
.y440{bottom:102.444000pt;}
.y143{bottom:103.729333pt;}
.y101{bottom:105.225333pt;}
.y2be{bottom:105.740000pt;}
.y291{bottom:106.396000pt;}
.y34c{bottom:109.145333pt;}
.y45f{bottom:111.538667pt;}
.y18{bottom:112.453333pt;}
.y265{bottom:114.826667pt;}
.y228{bottom:116.532000pt;}
.y2f5{bottom:117.150667pt;}
.ydd{bottom:117.729333pt;}
.y151{bottom:118.633333pt;}
.y43f{bottom:119.780000pt;}
.y3e2{bottom:121.097333pt;}
.y2cb{bottom:121.892000pt;}
.y100{bottom:123.892000pt;}
.y2bd{bottom:124.406667pt;}
.y17{bottom:127.009333pt;}
.y45e{bottom:127.538667pt;}
.y34b{bottom:127.812000pt;}
.y191{bottom:130.877333pt;}
.y26b{bottom:132.425333pt;}
.y279{bottom:132.854667pt;}
.y264{bottom:133.493333pt;}
.y423{bottom:133.660000pt;}
.y142{bottom:133.729333pt;}
.y227{bottom:135.198667pt;}
.y3e1{bottom:135.761333pt;}
.y2f4{bottom:135.817333pt;}
.y290{bottom:136.396000pt;}
.y43e{bottom:137.116000pt;}
.y150{bottom:137.300000pt;}
.y1ca{bottom:139.806667pt;}
.y16{bottom:141.565333pt;}
.y32f{bottom:142.342667pt;}
.y2bc{bottom:143.073333pt;}
.y45d{bottom:143.538667pt;}
.y13{bottom:144.040000pt;}
.y34a{bottom:146.478667pt;}
.y2ca{bottom:147.233333pt;}
.ydc{bottom:147.729333pt;}
.y278{bottom:150.182667pt;}
.y472{bottom:151.290667pt;}
.y263{bottom:152.160000pt;}
.y141{bottom:152.396000pt;}
.y226{bottom:153.865333pt;}
.yff{bottom:153.892000pt;}
.y43d{bottom:154.452000pt;}
.y2f3{bottom:154.484000pt;}
.y28f{bottom:155.062667pt;}
.y14f{bottom:155.966667pt;}
.y15{bottom:156.121333pt;}
.y26a{bottom:157.766667pt;}
.y45c{bottom:159.538667pt;}
.y190{bottom:160.877333pt;}
.y2bb{bottom:161.740000pt;}
.y349{bottom:165.145333pt;}
.ydb{bottom:166.396000pt;}
.y277{bottom:167.510667pt;}
.y94{bottom:168.358667pt;}
.y3c6{bottom:169.594667pt;}
.y262{bottom:170.826667pt;}
.y140{bottom:171.062667pt;}
.y43c{bottom:171.788000pt;}
.y225{bottom:172.532000pt;}
.yfe{bottom:172.558667pt;}
.y2c9{bottom:172.574667pt;}
.y471{bottom:172.624000pt;}
.y2f2{bottom:173.150667pt;}
.y28e{bottom:173.729333pt;}
.y14e{bottom:174.633333pt;}
.y45b{bottom:175.538667pt;}
.y330{bottom:177.044000pt;}
.y18f{bottom:179.544000pt;}
.y269{bottom:183.108000pt;}
.y1bb{bottom:183.393333pt;}
.y348{bottom:183.812000pt;}
.y3c5{bottom:184.258667pt;}
.y408{bottom:184.269333pt;}
.y276{bottom:184.838667pt;}
.yda{bottom:185.062667pt;}
.y14{bottom:186.997333pt;}
.y93{bottom:187.025333pt;}
.y43b{bottom:189.124000pt;}
.y260{bottom:189.493333pt;}
.y224{bottom:191.198667pt;}
.yfd{bottom:191.225333pt;}
.y45a{bottom:191.538667pt;}
.y2ba{bottom:191.740000pt;}
.y421{bottom:192.061333pt;}
.y24b{bottom:192.213333pt;}
.y28d{bottom:192.396000pt;}
.y130{bottom:192.958667pt;}
.y14d{bottom:193.300000pt;}
.y470{bottom:193.957333pt;}
.yc7{bottom:197.473333pt;}
.y2c8{bottom:197.916000pt;}
.y18e{bottom:198.210667pt;}
.y359{bottom:199.382667pt;}
.y13f{bottom:201.062667pt;}
.y407{bottom:201.605333pt;}
.y1ba{bottom:202.060000pt;}
.y275{bottom:202.166667pt;}
.y347{bottom:202.478667pt;}
.yd9{bottom:203.729333pt;}
.y92{bottom:205.692000pt;}
.y43a{bottom:206.460000pt;}
.y459{bottom:207.538667pt;}
.y420{bottom:208.061333pt;}
.y261{bottom:208.160000pt;}
.y268{bottom:208.449333pt;}
.y12{bottom:209.293333pt;}
.y12f{bottom:210.286667pt;}
.y2b9{bottom:210.406667pt;}
.y28c{bottom:211.062667pt;}
.y14c{bottom:211.966667pt;}
.y29b{bottom:214.162667pt;}
.yc6{bottom:214.801333pt;}
.y46f{bottom:215.290667pt;}
.y358{bottom:216.710667pt;}
.yd{bottom:217.960000pt;}
.y406{bottom:218.941333pt;}
.y274{bottom:219.494667pt;}
.y13e{bottom:219.729333pt;}
.y1b9{bottom:220.726667pt;}
.y346{bottom:221.145333pt;}
.yd8{bottom:222.396000pt;}
.y3c4{bottom:222.808000pt;}
.y301{bottom:222.966667pt;}
.y2c7{bottom:223.257333pt;}
.y11{bottom:223.849333pt;}
.y41f{bottom:224.061333pt;}
.y91{bottom:224.358667pt;}
.y32d{bottom:224.493333pt;}
.yfc{bottom:224.878667pt;}
.y3a4{bottom:225.320000pt;}
.y22d{bottom:225.906667pt;}
.y12e{bottom:227.614667pt;}
.y234{bottom:227.874667pt;}
.y18d{bottom:228.210667pt;}
.y2b6{bottom:229.073333pt;}
.y28b{bottom:229.729333pt;}
.y29a{bottom:231.490667pt;}
.yc5{bottom:232.129333pt;}
.y357{bottom:234.038667pt;}
.y405{bottom:236.277333pt;}
.y3c3{bottom:237.472000pt;}
.y10{bottom:238.405333pt;}
.y1b8{bottom:239.393333pt;}
.y41e{bottom:240.061333pt;}
.yd7{bottom:241.062667pt;}
.y300{bottom:241.633333pt;}
.y439{bottom:241.718667pt;}
.y14b{bottom:241.966667pt;}
.y6a{bottom:242.918667pt;}
.y90{bottom:243.025333pt;}
.yfb{bottom:243.545333pt;}
.y3a3{bottom:243.986667pt;}
.y46e{bottom:244.184000pt;}
.y12d{bottom:244.942667pt;}
.y32c{bottom:245.385333pt;}
.y233{bottom:246.541333pt;}
.y18c{bottom:246.877333pt;}
.y2b8{bottom:247.740000pt;}
.y2c6{bottom:248.598667pt;}
.y299{bottom:248.818667pt;}
.y47d{bottom:249.304000pt;}
.yc4{bottom:249.457333pt;}
.y13d{bottom:249.729333pt;}
.y345{bottom:251.145333pt;}
.y356{bottom:251.366667pt;}
.yf{bottom:252.961333pt;}
.y404{bottom:253.613333pt;}
.y488{bottom:254.102133pt;}
.y41d{bottom:256.061333pt;}
.y438{bottom:259.054667pt;}
.yd6{bottom:259.729333pt;}
.y14a{bottom:260.633333pt;}
.y8f{bottom:261.692000pt;}
.yfa{bottom:262.212000pt;}
.y12c{bottom:262.270667pt;}
.y3a2{bottom:262.653333pt;}
.y231{bottom:264.169067pt;}
.y18b{bottom:265.544000pt;}
.y298{bottom:266.146667pt;}
.y32b{bottom:266.277333pt;}
.y2b7{bottom:266.406667pt;}
.yc3{bottom:266.785333pt;}
.y69{bottom:267.145333pt;}
.ye{bottom:267.517333pt;}
.y13c{bottom:268.396000pt;}
.y355{bottom:268.694667pt;}
.y1b7{bottom:269.393333pt;}
.y2a8{bottom:269.785333pt;}
.y344{bottom:269.812000pt;}
.y47c{bottom:270.637333pt;}
.y403{bottom:270.949333pt;}
.y2ff{bottom:271.633333pt;}
.y41c{bottom:272.061333pt;}
.y3bf{bottom:276.021333pt;}
.y230{bottom:276.167867pt;}
.y437{bottom:276.390667pt;}
.yd5{bottom:278.396000pt;}
.y149{bottom:279.300000pt;}
.y12b{bottom:279.598667pt;}
.y3a1{bottom:281.320000pt;}
.y297{bottom:283.474667pt;}
.y22c{bottom:283.722667pt;}
.yc2{bottom:284.113333pt;}
.y18a{bottom:284.210667pt;}
.y354{bottom:286.022667pt;}
.y458{bottom:286.792000pt;}
.y13b{bottom:287.062667pt;}
.y223{bottom:287.652000pt;}
.y1b6{bottom:288.060000pt;}
.y22f{bottom:288.166667pt;}
.y2a7{bottom:288.452000pt;}
.y343{bottom:288.478667pt;}
.y2fe{bottom:290.300000pt;}
.y3be{bottom:290.685333pt;}
.y68{bottom:291.372000pt;}
.y47b{bottom:291.970667pt;}
.yf9{bottom:292.212000pt;}
.y48e{bottom:293.418133pt;}
.y436{bottom:293.726667pt;}
.yb{bottom:295.197333pt;}
.y30f{bottom:296.832000pt;}
.y12a{bottom:296.926667pt;}
.yd4{bottom:297.062667pt;}
.y148{bottom:297.966667pt;}
.y46d{bottom:298.184000pt;}
.y3a0{bottom:299.986667pt;}
.yc1{bottom:301.441333pt;}
.y32e{bottom:301.828000pt;}
.y457{bottom:302.792000pt;}
.y189{bottom:302.877333pt;}
.y353{bottom:303.350667pt;}
.y13a{bottom:305.729333pt;}
.y222{bottom:306.318667pt;}
.y8e{bottom:306.585333pt;}
.y1b5{bottom:306.726667pt;}
.y2a6{bottom:307.118667pt;}
.y342{bottom:307.145333pt;}
.y248{bottom:307.589333pt;}
.y2fd{bottom:308.966667pt;}
.ya{bottom:309.916053pt;}
.yf8{bottom:310.878667pt;}
.y435{bottom:311.062667pt;}
.y402{bottom:311.752000pt;}
.y129{bottom:314.254667pt;}
.y30e{bottom:315.498667pt;}
.y67{bottom:315.598667pt;}
.y28a{bottom:315.729333pt;}
.y147{bottom:316.633333pt;}
.y246{bottom:317.701333pt;}
.yc0{bottom:318.769333pt;}
.y456{bottom:318.792000pt;}
.y47a{bottom:320.864000pt;}
.y9{bottom:323.037333pt;}
.y46c{bottom:323.290667pt;}
.y247{bottom:324.917333pt;}
.y8d{bottom:325.252000pt;}
.y1b4{bottom:325.393333pt;}
.y2a5{bottom:325.785333pt;}
.y341{bottom:325.812000pt;}
.yd3{bottom:327.062667pt;}
.y3c2{bottom:327.078667pt;}
.y434{bottom:328.398667pt;}
.y401{bottom:329.088000pt;}
.yf7{bottom:329.545333pt;}
.y128{bottom:331.582667pt;}
.y66{bottom:332.265333pt;}
.y188{bottom:332.877333pt;}
.y30d{bottom:334.165333pt;}
.y289{bottom:334.396000pt;}
.y212{bottom:334.660000pt;}
.y455{bottom:334.792000pt;}
.y146{bottom:335.300000pt;}
.y41b{bottom:335.528000pt;}
.y139{bottom:335.729333pt;}
.y22b{bottom:337.842667pt;}
.y8{bottom:337.925173pt;}
.y2fc{bottom:338.966667pt;}
.y324{bottom:341.681333pt;}
.y8c{bottom:343.918667pt;}
.y1b3{bottom:344.060000pt;}
.y2a4{bottom:344.452000pt;}
.y340{bottom:344.478667pt;}
.yd2{bottom:345.729333pt;}
.y433{bottom:345.734667pt;}
.y400{bottom:346.424000pt;}
.yf6{bottom:348.212000pt;}
.y46b{bottom:348.397333pt;}
.y232{bottom:348.474667pt;}
.y127{bottom:348.910667pt;}
.y211{bottom:349.324000pt;}
.y479{bottom:349.757333pt;}
.y483{bottom:350.178933pt;}
.y454{bottom:350.792000pt;}
.y41a{bottom:351.528000pt;}
.y187{bottom:351.544000pt;}
.y30c{bottom:352.832000pt;}
.y3a8{bottom:352.866667pt;}
.y138{bottom:354.396000pt;}
.y65{bottom:356.492000pt;}
.y7{bottom:359.042613pt;}
.y323{bottom:362.573333pt;}
.y8b{bottom:362.585333pt;}
.y1b2{bottom:362.726667pt;}
.y432{bottom:363.070667pt;}
.y33f{bottom:363.145333pt;}
.y3ff{bottom:363.760000pt;}
.yd1{bottom:364.396000pt;}
.y3bd{bottom:364.950667pt;}
.y453{bottom:366.792000pt;}
.y419{bottom:367.528000pt;}
.y2fb{bottom:368.966667pt;}
.y186{bottom:370.210667pt;}
.y478{bottom:371.090667pt;}
.y3a7{bottom:371.533333pt;}
.y482{bottom:372.745333pt;}
.y137{bottom:373.062667pt;}
.y46a{bottom:373.504000pt;}
.y156{bottom:374.153333pt;}
.y2a3{bottom:374.452000pt;}
.y47{bottom:376.802667pt;}
.y22e{bottom:377.677333pt;}
.yf5{bottom:378.212000pt;}
.y3bc{bottom:379.614667pt;}
.y6{bottom:379.997333pt;}
.y431{bottom:380.406667pt;}
.y64{bottom:380.718667pt;}
.y3fe{bottom:381.096000pt;}
.y33e{bottom:381.812000pt;}
.y1f1{bottom:382.637333pt;}
.y452{bottom:382.792000pt;}
.y30b{bottom:382.832000pt;}
.y288{bottom:383.062667pt;}
.y322{bottom:383.465333pt;}
.y418{bottom:383.528000pt;}
.y2fa{bottom:387.633333pt;}
.y185{bottom:388.877333pt;}
.y155{bottom:390.153333pt;}
.y3a6{bottom:390.200000pt;}
.y136{bottom:391.729333pt;}
.y1b1{bottom:392.726667pt;}
.y46{bottom:392.802667pt;}
.y2a2{bottom:393.118667pt;}
.y3f{bottom:393.776000pt;}
.yd0{bottom:394.396000pt;}
.y321{bottom:396.797333pt;}
.yf4{bottom:396.878667pt;}
.y352{bottom:397.506667pt;}
.y430{bottom:397.742667pt;}
.y3fd{bottom:398.432000pt;}
.y469{bottom:398.610667pt;}
.y451{bottom:398.792000pt;}
.y417{bottom:399.528000pt;}
.y19d{bottom:400.044000pt;}
.y33d{bottom:400.478667pt;}
.y1f0{bottom:401.304000pt;}
.y30a{bottom:401.498667pt;}
.y287{bottom:401.729333pt;}
.y63{bottom:404.945333pt;}
.y2f9{bottom:406.300000pt;}
.y8a{bottom:407.478667pt;}
.y184{bottom:407.544000pt;}
.y45{bottom:408.802667pt;}
.y3a5{bottom:408.866667pt;}
.y3e{bottom:409.776000pt;}
.y135{bottom:410.396000pt;}
.y1b0{bottom:411.393333pt;}
.y2a1{bottom:411.785333pt;}
.y48b{bottom:412.059733pt;}
.y3e0{bottom:412.190667pt;}
.ycf{bottom:413.062667pt;}
.yf3{bottom:415.545333pt;}
.y19c{bottom:417.372000pt;}
.y3c1{bottom:417.486667pt;}
.y320{bottom:417.689333pt;}
.y309{bottom:420.165333pt;}
.y286{bottom:420.396000pt;}
.y477{bottom:421.317333pt;}
.y351{bottom:421.510667pt;}
.y468{bottom:423.717333pt;}
.y44{bottom:424.802667pt;}
.y3d{bottom:425.776000pt;}
.y89{bottom:426.145333pt;}
.y183{bottom:426.210667pt;}
.y11b{bottom:428.068000pt;}
.y134{bottom:429.062667pt;}
.y62{bottom:429.172000pt;}
.y1af{bottom:430.060000pt;}
.y2a0{bottom:430.452000pt;}
.y33c{bottom:430.478667pt;}
.y3df{bottom:430.857333pt;}
.y31f{bottom:431.021333pt;}
.y1ef{bottom:431.304000pt;}
.yce{bottom:431.729333pt;}
.y3c0{bottom:432.150667pt;}
.y210{bottom:432.276000pt;}
.yf2{bottom:434.212000pt;}
.y42f{bottom:434.277333pt;}
.y19b{bottom:434.700000pt;}
.y2f8{bottom:436.300000pt;}
.y308{bottom:438.832000pt;}
.y285{bottom:439.062667pt;}
.y43{bottom:440.802667pt;}
.y3c{bottom:441.776000pt;}
.y3fc{bottom:441.801333pt;}
.y476{bottom:442.650667pt;}
.y88{bottom:444.812000pt;}
.y182{bottom:444.877333pt;}
.y350{bottom:445.514667pt;}
.y11a{bottom:446.734667pt;}
.y133{bottom:447.729333pt;}
.y1ae{bottom:448.726667pt;}
.y296{bottom:448.801333pt;}
.y467{bottom:448.824000pt;}
.y33a{bottom:449.145333pt;}
.y1ee{bottom:449.970667pt;}
.ycd{bottom:450.396000pt;}
.y20f{bottom:450.942667pt;}
.y42e{bottom:451.613333pt;}
.y19a{bottom:452.028000pt;}
.yf1{bottom:452.878667pt;}
.y61{bottom:453.398667pt;}
.y2f7{bottom:454.966667pt;}
.y39f{bottom:456.133333pt;}
.y42{bottom:456.802667pt;}
.y307{bottom:457.498667pt;}
.y3b{bottom:457.776000pt;}
.y3fb{bottom:459.137333pt;}
.y244{bottom:460.824000pt;}
.y487{bottom:461.359733pt;}
.y87{bottom:463.478667pt;}
.y325{bottom:463.818667pt;}
.y475{bottom:463.984000pt;}
.y416{bottom:464.221333pt;}
.y119{bottom:465.401333pt;}
.y3bb{bottom:465.540000pt;}
.y3de{bottom:465.830667pt;}
.y1ad{bottom:467.393333pt;}
.y33b{bottom:467.812000pt;}
.y1ed{bottom:468.637333pt;}
.y42d{bottom:468.949333pt;}
.ycc{bottom:469.062667pt;}
.y199{bottom:469.356000pt;}
.y34f{bottom:469.518667pt;}
.y20e{bottom:469.609333pt;}
.ye4{bottom:472.576000pt;}
.y41{bottom:472.802667pt;}
.y2f6{bottom:473.633333pt;}
.y3a{bottom:473.776000pt;}
.y295{bottom:474.142667pt;}
.y39e{bottom:474.800000pt;}
.y181{bottom:474.877333pt;}
.y29f{bottom:475.625333pt;}
.y306{bottom:476.165333pt;}
.y3fa{bottom:476.473333pt;}
.y60{bottom:477.625333pt;}
.y466{bottom:477.717333pt;}
.y132{bottom:477.729333pt;}
.y1fe{bottom:478.645333pt;}
.y3ba{bottom:480.204000pt;}
.y415{bottom:480.221333pt;}
.y86{bottom:482.145333pt;}
.y243{bottom:482.157333pt;}
.yf0{bottom:482.878667pt;}
.y118{bottom:484.068000pt;}
.y3dd{bottom:484.497333pt;}
.y1ac{bottom:486.060000pt;}
.y42c{bottom:486.285333pt;}
.y198{bottom:486.684000pt;}
.y1ec{bottom:487.304000pt;}
.ycb{bottom:487.729333pt;}
.y20d{bottom:488.276000pt;}
.y40{bottom:488.802667pt;}
.y39{bottom:489.776000pt;}
.y474{bottom:492.877333pt;}
.y39d{bottom:493.466667pt;}
.y180{bottom:493.544000pt;}
.y3f9{bottom:493.809333pt;}
.y5f{bottom:494.292000pt;}
.y1fd{bottom:495.973333pt;}
.y414{bottom:496.221333pt;}
.y131{bottom:496.396000pt;}
.ye3{bottom:496.580000pt;}
.y294{bottom:499.484000pt;}
.y48d{bottom:500.677333pt;}
.y85{bottom:500.812000pt;}
.yef{bottom:501.545333pt;}
.y117{bottom:502.734667pt;}
.y42b{bottom:503.621333pt;}
.y197{bottom:504.012000pt;}
.y1ab{bottom:504.726667pt;}
.y1eb{bottom:505.970667pt;}
.y305{bottom:506.165333pt;}
.yca{bottom:506.396000pt;}
.y20c{bottom:506.942667pt;}
.y1c3{bottom:508.041333pt;}
.y329{bottom:509.241333pt;}
.y3f8{bottom:511.145333pt;}
.y39c{bottom:512.133333pt;}
.y17f{bottom:512.210667pt;}
.y413{bottom:512.221333pt;}
.y29e{bottom:512.958667pt;}
.y1fc{bottom:513.301333pt;}
.y1be{bottom:513.569333pt;}
.y302{bottom:515.673333pt;}
.y121{bottom:517.762667pt;}
.y5e{bottom:518.518667pt;}
.y84{bottom:519.478667pt;}
.y3dc{bottom:520.164000pt;}
.yee{bottom:520.212000pt;}
.ye2{bottom:520.584000pt;}
.y42a{bottom:520.957333pt;}
.y116{bottom:521.401333pt;}
.y38{bottom:522.442667pt;}
.y1aa{bottom:523.393333pt;}
.y1ea{bottom:524.637333pt;}
.y450{bottom:524.672000pt;}
.y293{bottom:524.825333pt;}
.y304{bottom:524.832000pt;}
.yc8{bottom:525.062667pt;}
.y1c2{bottom:525.369333pt;}
.y20b{bottom:525.609333pt;}
.y328{bottom:530.133333pt;}
.y1fb{bottom:530.629333pt;}
.y39b{bottom:530.800000pt;}
.y17e{bottom:530.877333pt;}
.y10c{bottom:531.118667pt;}
.y29d{bottom:531.625333pt;}
.y245{bottom:534.021333pt;}
.y5d{bottom:535.185333pt;}
.y465{bottom:535.504000pt;}
.y429{bottom:538.293333pt;}
.y3db{bottom:538.830667pt;}
.yed{bottom:538.878667pt;}
.y1bd{bottom:538.910667pt;}
.y115{bottom:540.068000pt;}
.y44f{bottom:540.672000pt;}
.y1a8{bottom:542.060000pt;}
.y1c1{bottom:542.697333pt;}
.y120{bottom:543.104000pt;}
.y1e9{bottom:543.304000pt;}
.y303{bottom:543.498667pt;}
.yc9{bottom:543.729333pt;}
.ye1{bottom:544.588000pt;}
.y384{bottom:544.934667pt;}
.y485{bottom:546.914933pt;}
.y1fa{bottom:547.957333pt;}
.y17d{bottom:549.544000pt;}
.y10b{bottom:549.785333pt;}
.y29c{bottom:550.292000pt;}
.y327{bottom:551.025333pt;}
.y3ad{bottom:551.609333pt;}
.y3f7{bottom:552.725333pt;}
.y20a{bottom:555.609333pt;}
.y428{bottom:555.629333pt;}
.y44e{bottom:556.672000pt;}
.y3da{bottom:557.497333pt;}
.y5c{bottom:559.412000pt;}
.y1c0{bottom:560.025333pt;}
.y1a9{bottom:560.726667pt;}
.y484{bottom:561.314933pt;}
.y1e8{bottom:561.970667pt;}
.y383{bottom:563.601333pt;}
.y1bc{bottom:564.252000pt;}
.y83{bottom:564.372000pt;}
.y464{bottom:564.397333pt;}
.y473{bottom:564.437333pt;}
.y1f9{bottom:565.285333pt;}
.y1f4{bottom:568.146667pt;}
.y11f{bottom:568.445333pt;}
.y10a{bottom:568.452000pt;}
.yec{bottom:568.878667pt;}
.y3f6{bottom:570.061333pt;}
.y114{bottom:570.068000pt;}
.y3ac{bottom:570.276000pt;}
.y6d{bottom:570.904000pt;}
.y236{bottom:570.906667pt;}
.y31b{bottom:570.926667pt;}
.y326{bottom:571.917333pt;}
.y209{bottom:574.276000pt;}
.y481{bottom:575.714933pt;}
.y5b{bottom:576.078667pt;}
.y3d9{bottom:576.164000pt;}
.y2dc{bottom:576.480000pt;}
.y1bf{bottom:577.353333pt;}
.y2f1{bottom:579.438667pt;}
.y17c{bottom:579.544000pt;}
.y1e7{bottom:580.637333pt;}
.y284{bottom:581.609333pt;}
.y382{bottom:582.268000pt;}
.y1f8{bottom:582.613333pt;}
.y82{bottom:583.038667pt;}
.y36e{bottom:584.480000pt;}
.y109{bottom:587.118667pt;}
.y3f5{bottom:587.397333pt;}
.yeb{bottom:587.545333pt;}
.y44d{bottom:588.498667pt;}
.y113{bottom:588.734667pt;}
.y3ab{bottom:588.942667pt;}
.y37{bottom:589.109333pt;}
.y412{bottom:591.141333pt;}
.y25f{bottom:592.706667pt;}
.y208{bottom:592.942667pt;}
.y1f3{bottom:593.488000pt;}
.y11e{bottom:593.786667pt;}
.y3d8{bottom:594.830667pt;}
.y2db{bottom:595.146667pt;}
.y315{bottom:595.688000pt;}
.y2f0{bottom:596.766667pt;}
.y17b{bottom:598.210667pt;}
.y480{bottom:598.281333pt;}
.y1e5{bottom:599.304000pt;}
.y1f7{bottom:599.941333pt;}
.y283{bottom:600.276000pt;}
.y5a{bottom:600.305333pt;}
.y381{bottom:600.934667pt;}
.y81{bottom:601.705333pt;}
.y36d{bottom:603.146667pt;}
.y44c{bottom:604.498667pt;}
.y3f4{bottom:604.733333pt;}
.y36{bottom:605.776000pt;}
.y108{bottom:605.785333pt;}
.y32a{bottom:606.136000pt;}
.yea{bottom:606.212000pt;}
.y411{bottom:607.141333pt;}
.y112{bottom:607.401333pt;}
.y25e{bottom:611.373333pt;}
.y207{bottom:611.609333pt;}
.y2da{bottom:613.813333pt;}
.y196{bottom:613.949333pt;}
.y2ef{bottom:614.094667pt;}
.y314{bottom:614.354667pt;}
.y17a{bottom:616.877333pt;}
.y1f6{bottom:617.269333pt;}
.y1e6{bottom:617.970667pt;}
.y1f2{bottom:618.829333pt;}
.y282{bottom:618.942667pt;}
.y11d{bottom:619.128000pt;}
.y380{bottom:619.601333pt;}
.y80{bottom:620.372000pt;}
.y44b{bottom:620.498667pt;}
.y36c{bottom:621.813333pt;}
.y3f3{bottom:622.069333pt;}
.y410{bottom:623.141333pt;}
.y107{bottom:624.452000pt;}
.y59{bottom:624.532000pt;}
.y110{bottom:626.068000pt;}
.y1c6{bottom:626.682667pt;}
.y3d7{bottom:627.417333pt;}
.y463{bottom:628.281333pt;}
.y25d{bottom:630.040000pt;}
.y206{bottom:630.276000pt;}
.yb3{bottom:631.086667pt;}
.y2ee{bottom:631.422667pt;}
.y313{bottom:633.021333pt;}
.y1f5{bottom:634.597333pt;}
.y179{bottom:635.544000pt;}
.ye9{bottom:636.212000pt;}
.y48a{bottom:637.592533pt;}
.y281{bottom:637.609333pt;}
.y37f{bottom:638.268000pt;}
.y31e{bottom:638.540000pt;}
.y7f{bottom:639.038667pt;}
.y35{bottom:639.109333pt;}
.y195{bottom:639.290667pt;}
.y36b{bottom:640.480000pt;}
.y3b9{bottom:642.800000pt;}
.y106{bottom:643.118667pt;}
.y2d9{bottom:643.813333pt;}
.y11c{bottom:644.469333pt;}
.y126{bottom:644.478667pt;}
.y111{bottom:644.734667pt;}
.y1c5{bottom:645.349333pt;}
.y3d6{bottom:646.084000pt;}
.y44a{bottom:647.832000pt;}
.y25c{bottom:648.706667pt;}
.y2ed{bottom:648.750667pt;}
.y58{bottom:648.758667pt;}
.y205{bottom:648.942667pt;}
.y10f{bottom:649.530667pt;}
.yb2{bottom:649.753333pt;}
.y312{bottom:651.688000pt;}
.y31d{bottom:653.204000pt;}
.y178{bottom:654.210667pt;}
.ye8{bottom:654.878667pt;}
.y34{bottom:655.776000pt;}
.y280{bottom:656.276000pt;}
.y37e{bottom:656.934667pt;}
.y7e{bottom:657.705333pt;}
.y36a{bottom:659.146667pt;}
.y3b8{bottom:660.128000pt;}
.y105{bottom:661.785333pt;}
.y125{bottom:661.806667pt;}
.y2d8{bottom:662.480000pt;}
.y3f2{bottom:662.740000pt;}
.y24a{bottom:663.093333pt;}
.y449{bottom:663.832000pt;}
.y1c4{bottom:664.016000pt;}
.y194{bottom:664.632000pt;}
.y3d5{bottom:664.750667pt;}
.y2ec{bottom:666.078667pt;}
.y25b{bottom:667.373333pt;}
.y204{bottom:667.609333pt;}
.yb1{bottom:668.420000pt;}
.y311{bottom:670.354667pt;}
.y39a{bottom:672.557333pt;}
.y242{bottom:672.701333pt;}
.y177{bottom:672.877333pt;}
.y175{bottom:672.878667pt;}
.y57{bottom:672.985333pt;}
.ye7{bottom:673.545333pt;}
.y10e{bottom:674.872000pt;}
.y3aa{bottom:674.942667pt;}
.y37d{bottom:675.601333pt;}
.y7d{bottom:676.372000pt;}
.y3b7{bottom:677.456000pt;}
.y369{bottom:677.813333pt;}
.y124{bottom:679.134667pt;}
.y448{bottom:679.832000pt;}
.y3f1{bottom:680.076000pt;}
.y249{bottom:680.421333pt;}
.y103{bottom:680.452000pt;}
.y339{bottom:680.878667pt;}
.y2d7{bottom:681.146667pt;}
.y2eb{bottom:683.406667pt;}
.y3d4{bottom:683.417333pt;}
.y203{bottom:686.276000pt;}
.y486{bottom:686.562933pt;}
.yb0{bottom:687.086667pt;}
.y235{bottom:688.460000pt;}
.y310{bottom:689.021333pt;}
.y33{bottom:689.109333pt;}
.y6c{bottom:689.204000pt;}
.y56{bottom:689.652000pt;}
.y399{bottom:689.885333pt;}
.y193{bottom:689.973333pt;}
.y241{bottom:690.029333pt;}
.y1e4{bottom:691.089333pt;}
.y176{bottom:691.544000pt;}
.ye6{bottom:692.212000pt;}
.y3a9{bottom:693.609333pt;}
.y3b6{bottom:694.784000pt;}
.y7c{bottom:695.038667pt;}
.y447{bottom:695.832000pt;}
.y31a{bottom:696.040000pt;}
.y123{bottom:696.462667pt;}
.y368{bottom:696.480000pt;}
.y25a{bottom:697.373333pt;}
.y3f0{bottom:697.412000pt;}
.y104{bottom:699.118667pt;}
.y2d6{bottom:699.813333pt;}
.y10d{bottom:700.213333pt;}
.y2ea{bottom:700.734667pt;}
.y27f{bottom:704.942667pt;}
.y37c{bottom:705.601333pt;}
.y32{bottom:705.776000pt;}
.y398{bottom:707.213333pt;}
.y240{bottom:707.357333pt;}
.y1a7{bottom:707.609333pt;}
.y1e3{bottom:709.756000pt;}
.y15e{bottom:709.886667pt;}
.ye5{bottom:710.878667pt;}
.y3b5{bottom:712.112000pt;}
.y122{bottom:713.790667pt;}
.y55{bottom:713.878667pt;}
.y3c9{bottom:713.960000pt;}
.y3ef{bottom:714.748000pt;}
.y367{bottom:715.146667pt;}
.y259{bottom:716.040000pt;}
.y202{bottom:716.276000pt;}
.yaf{bottom:717.086667pt;}
.y2d5{bottom:718.480000pt;}
.y446{bottom:723.165333pt;}
.y27e{bottom:723.609333pt;}
.y37b{bottom:724.268000pt;}
.y397{bottom:724.541333pt;}
.y23f{bottom:724.685333pt;}
.y48c{bottom:725.878933pt;}
.y1a6{bottom:726.276000pt;}
.y1e2{bottom:728.422667pt;}
.y15d{bottom:728.553333pt;}
.y3b4{bottom:729.440000pt;}
.y3ee{bottom:732.084000pt;}
.y3c8{bottom:732.626667pt;}
.y366{bottom:733.813333pt;}
.y427{bottom:734.137333pt;}
.y258{bottom:734.706667pt;}
.y201{bottom:734.942667pt;}
.y2b5{bottom:735.384000pt;}
.yae{bottom:735.753333pt;}
.y2d4{bottom:737.146667pt;}
.y54{bottom:738.105333pt;}
.y31{bottom:739.109333pt;}
.y445{bottom:739.165333pt;}
.y7b{bottom:739.932000pt;}
.y396{bottom:741.869333pt;}
.y23e{bottom:742.013333pt;}
.y27d{bottom:742.276000pt;}
.y462{bottom:742.381333pt;}
.y37a{bottom:742.934667pt;}
.y1a5{bottom:744.942667pt;}
.y3b3{bottom:746.768000pt;}
.y1e1{bottom:747.089333pt;}
.y15c{bottom:747.220000pt;}
.y3ed{bottom:749.420000pt;}
.y426{bottom:751.473333pt;}
.y40f{bottom:751.808000pt;}
.y1dd{bottom:753.294667pt;}
.y257{bottom:753.373333pt;}
.ya0{bottom:753.609333pt;}
.y16c{bottom:753.846667pt;}
.y2b4{bottom:754.050667pt;}
.yad{bottom:754.420000pt;}
.y444{bottom:755.165333pt;}
.y30{bottom:755.776000pt;}
.y2d3{bottom:755.813333pt;}
.y7a{bottom:758.598667pt;}
.y395{bottom:759.197333pt;}
.y23d{bottom:759.341333pt;}
.y27c{bottom:760.942667pt;}
.y53{bottom:762.332000pt;}
.y2e9{bottom:762.918667pt;}
.y3d0{bottom:763.310667pt;}
.y1a4{bottom:763.609333pt;}
.y365{bottom:763.813333pt;}
.y3b2{bottom:764.096000pt;}
.y1e0{bottom:765.756000pt;}
.y15b{bottom:765.886667pt;}
.y3ec{bottom:766.756000pt;}
.y2e1{bottom:767.544000pt;}
.y40e{bottom:767.808000pt;}
.y425{bottom:768.809333pt;}
.y443{bottom:771.165333pt;}
.y1dc{bottom:771.961333pt;}
.y256{bottom:772.040000pt;}
.y9f{bottom:772.276000pt;}
.y2f{bottom:772.442667pt;}
.y16b{bottom:772.513333pt;}
.y2b3{bottom:772.717333pt;}
.y379{bottom:772.934667pt;}
.yac{bottom:773.086667pt;}
.y2d2{bottom:774.480000pt;}
.y394{bottom:776.525333pt;}
.y79{bottom:777.265333pt;}
.y27b{bottom:779.609333pt;}
.y2e8{bottom:780.246667pt;}
.y3cf{bottom:781.977333pt;}
.y47f{bottom:782.242933pt;}
.y1a3{bottom:782.276000pt;}
.y364{bottom:782.480000pt;}
.y1df{bottom:784.422667pt;}
.y15a{bottom:784.553333pt;}
.y424{bottom:786.145333pt;}
.y52{bottom:786.558667pt;}
.y442{bottom:787.165333pt;}
.y461{bottom:787.694667pt;}
.y1db{bottom:790.628000pt;}
.y255{bottom:790.706667pt;}
.y9e{bottom:790.942667pt;}
.y16a{bottom:791.180000pt;}
.y2b2{bottom:791.384000pt;}
.y378{bottom:791.601333pt;}
.yab{bottom:791.753333pt;}
.y2e0{bottom:792.885333pt;}
.y2d1{bottom:793.146667pt;}
.y393{bottom:793.853333pt;}
.y5{bottom:794.988000pt;}
.y78{bottom:795.932000pt;}
.y2e7{bottom:797.574667pt;}
.y3ce{bottom:800.644000pt;}
.y1a2{bottom:800.942667pt;}
.y363{bottom:801.146667pt;}
.y1de{bottom:803.089333pt;}
.y159{bottom:803.220000pt;}
.y47e{bottom:804.809333pt;}
.y2e{bottom:805.776000pt;}
.y1da{bottom:809.294667pt;}
.y254{bottom:809.373333pt;}
.y9d{bottom:809.609333pt;}
.y169{bottom:809.846667pt;}
.y2b1{bottom:810.050667pt;}
.y377{bottom:810.268000pt;}
.yaa{bottom:810.420000pt;}
.y51{bottom:810.785333pt;}
.y392{bottom:811.181333pt;}
.y2d0{bottom:811.813333pt;}
.y3eb{bottom:812.486667pt;}
.y77{bottom:814.598667pt;}
.y2e6{bottom:814.902667pt;}
.y2df{bottom:818.226667pt;}
.y460{bottom:818.633333pt;}
.y3cd{bottom:819.310667pt;}
.y1a1{bottom:819.609333pt;}
.y362{bottom:819.813333pt;}
.y158{bottom:821.886667pt;}
.y2d{bottom:822.442667pt;}
.y4{bottom:825.654667pt;}
.y1d9{bottom:827.961333pt;}
.y200{bottom:828.276000pt;}
.y2b0{bottom:828.717333pt;}
.y376{bottom:828.934667pt;}
.ya9{bottom:829.086667pt;}
.y3ea{bottom:829.822667pt;}
.y2cf{bottom:830.480000pt;}
.y2e5{bottom:832.230667pt;}
.y76{bottom:833.265333pt;}
.y50{bottom:835.012000pt;}
.y3cc{bottom:837.977333pt;}
.y1a0{bottom:838.276000pt;}
.y361{bottom:838.480000pt;}
.y253{bottom:839.373333pt;}
.y9c{bottom:839.609333pt;}
.y168{bottom:839.846667pt;}
.y157{bottom:840.553333pt;}
.y213{bottom:842.920000pt;}
.y2de{bottom:843.568000pt;}
.y489{bottom:844.117333pt;}
.y1d8{bottom:846.628000pt;}
.y238{bottom:846.942667pt;}
.y3e9{bottom:847.158667pt;}
.y375{bottom:847.601333pt;}
.ya8{bottom:847.753333pt;}
.y2ce{bottom:849.146667pt;}
.y2e4{bottom:849.558667pt;}
.y4f{bottom:851.678667pt;}
.y75{bottom:851.932000pt;}
.y2c{bottom:855.776000pt;}
.y3cb{bottom:856.644000pt;}
.y19f{bottom:856.942667pt;}
.y360{bottom:857.146667pt;}
.y252{bottom:858.040000pt;}
.y9b{bottom:858.276000pt;}
.y167{bottom:858.513333pt;}
.y2af{bottom:858.717333pt;}
.y338{bottom:862.940000pt;}
.y3e8{bottom:864.494667pt;}
.y273{bottom:865.606667pt;}
.y237{bottom:865.609333pt;}
.y374{bottom:866.268000pt;}
.ya7{bottom:866.420000pt;}
.y2e3{bottom:866.886667pt;}
.y2cd{bottom:867.813333pt;}
.y2dd{bottom:868.909333pt;}
.y219{bottom:868.931333pt;}
.yb8{bottom:869.769333pt;}
.y2c5{bottom:870.210667pt;}
.y74{bottom:870.598667pt;}
.y2b{bottom:872.442667pt;}
.y23c{bottom:875.118667pt;}
.y19e{bottom:875.609333pt;}
.y35f{bottom:875.813333pt;}
.y4e{bottom:875.905333pt;}
.y1d7{bottom:876.628000pt;}
.y251{bottom:876.706667pt;}
.y9a{bottom:876.942667pt;}
.y166{bottom:877.180000pt;}
.y2ae{bottom:877.384000pt;}
.y173{bottom:878.693333pt;}
.y337{bottom:880.268000pt;}
.y218{bottom:880.930133pt;}
.y391{bottom:881.805333pt;}
.y3e7{bottom:881.830667pt;}
.y272{bottom:882.934667pt;}
.ybf{bottom:883.745333pt;}
.y2e2{bottom:884.214667pt;}
.y27a{bottom:884.276000pt;}
.y373{bottom:884.934667pt;}
.ya6{bottom:885.086667pt;}
.y3ca{bottom:886.366667pt;}
.y2cc{bottom:886.480000pt;}
.y40d{bottom:888.194667pt;}
.y217{bottom:892.928933pt;}
.y221{bottom:892.961333pt;}
.y35e{bottom:894.480000pt;}
.yb7{bottom:895.110667pt;}
.y1d6{bottom:895.294667pt;}
.y250{bottom:895.373333pt;}
.y2c4{bottom:895.552000pt;}
.y99{bottom:895.609333pt;}
.y165{bottom:895.846667pt;}
.y2ad{bottom:896.050667pt;}
.y3b1{bottom:896.681333pt;}
.y73{bottom:896.825333pt;}
.y172{bottom:897.360000pt;}
.y336{bottom:897.596000pt;}
.y23b{bottom:899.122667pt;}
.y390{bottom:899.133333pt;}
.y3e6{bottom:899.166667pt;}
.y4d{bottom:900.132000pt;}
.y271{bottom:900.262667pt;}
.ybe{bottom:901.073333pt;}
.y31c{bottom:902.942667pt;}
.ya5{bottom:903.753333pt;}
.y21d{bottom:904.160933pt;}
.y40c{bottom:904.194667pt;}
.y216{bottom:904.927733pt;}
.y220{bottom:904.960133pt;}
.y2a{bottom:905.776000pt;}
.y1d0{bottom:908.118667pt;}
.y35d{bottom:913.146667pt;}
.y1d5{bottom:913.961333pt;}
.y24f{bottom:914.040000pt;}
.y98{bottom:914.276000pt;}
.y164{bottom:914.513333pt;}
.y2ac{bottom:914.717333pt;}
.y335{bottom:914.924000pt;}
.y372{bottom:914.934667pt;}
.y72{bottom:915.492000pt;}
.y171{bottom:916.026667pt;}
.y21c{bottom:916.159733pt;}
.y38f{bottom:916.461333pt;}
.y3e5{bottom:916.502667pt;}
.y215{bottom:916.926533pt;}
.y21b{bottom:916.937333pt;}
.y21f{bottom:916.958933pt;}
.y270{bottom:917.590667pt;}
.ybd{bottom:918.401333pt;}
.y387{bottom:919.560000pt;}
.y38a{bottom:920.014667pt;}
.y40b{bottom:920.194667pt;}
.yb6{bottom:920.452000pt;}
.y2c3{bottom:920.893333pt;}
.y3b0{bottom:922.022667pt;}
.ya4{bottom:922.420000pt;}
.y29{bottom:922.442667pt;}
.y23a{bottom:923.126667pt;}
.y4c{bottom:924.358667pt;}
.y1cf{bottom:926.785333pt;}
.y490{bottom:927.296000pt;}
.y214{bottom:928.925333pt;}
.y21a{bottom:928.936133pt;}
.y21e{bottom:928.957733pt;}
.y3{bottom:930.361333pt;}
.y35c{bottom:931.813333pt;}
.y334{bottom:932.252000pt;}
.y1d4{bottom:932.628000pt;}
.y24e{bottom:932.706667pt;}
.y97{bottom:932.942667pt;}
.y163{bottom:933.180000pt;}
.y319{bottom:933.381333pt;}
.y2ab{bottom:933.384000pt;}
.y371{bottom:933.601333pt;}
.y38e{bottom:933.789333pt;}
.y3e4{bottom:933.838667pt;}
.y71{bottom:934.158667pt;}
.y170{bottom:934.693333pt;}
.y26f{bottom:934.918667pt;}
.ybc{bottom:935.729333pt;}
.y40a{bottom:936.194667pt;}
.y4b{bottom:941.025333pt;}
.ya3{bottom:941.086667pt;}
.y48f{bottom:941.960000pt;}
.y386{bottom:944.901333pt;}
.y389{bottom:945.356000pt;}
.y1ce{bottom:945.452000pt;}
.yb5{bottom:945.793333pt;}
.y2c2{bottom:946.234667pt;}
.y239{bottom:947.130667pt;}
.y3af{bottom:947.364000pt;}
.y333{bottom:949.580000pt;}
.y35a{bottom:950.480000pt;}
.y38d{bottom:951.117333pt;}
.y3e3{bottom:951.174667pt;}
.y1d3{bottom:951.294667pt;}
.y24c{bottom:951.373333pt;}
.y3d3{bottom:951.604000pt;}
.y95{bottom:951.609333pt;}
.y162{bottom:951.846667pt;}
.y318{bottom:952.048000pt;}
.y2a9{bottom:952.050667pt;}
.y409{bottom:952.194667pt;}
.y26e{bottom:952.246667pt;}
.y36f{bottom:952.268000pt;}
.y6e{bottom:952.825333pt;}
.ybb{bottom:953.057333pt;}
.y28{bottom:955.776000pt;}
.ya2{bottom:959.753333pt;}
.y1cd{bottom:964.118667pt;}
.y16f{bottom:964.693333pt;}
.y4a{bottom:965.252000pt;}
.y332{bottom:966.908000pt;}
.y38c{bottom:968.445333pt;}
.y35b{bottom:969.146667pt;}
.y26d{bottom:969.574667pt;}
.y1d2{bottom:969.961333pt;}
.y24d{bottom:970.040000pt;}
.y385{bottom:970.242667pt;}
.y3d2{bottom:970.270667pt;}
.y96{bottom:970.276000pt;}
.y491{bottom:970.313333pt;}
.yba{bottom:970.385333pt;}
.y161{bottom:970.513333pt;}
.y388{bottom:970.697333pt;}
.y317{bottom:970.714667pt;}
.y2aa{bottom:970.717333pt;}
.y370{bottom:970.934667pt;}
.yb4{bottom:971.134667pt;}
.y70{bottom:971.492000pt;}
.y2c1{bottom:971.576000pt;}
.y27{bottom:972.442667pt;}
.y3ae{bottom:972.705333pt;}
.y422{bottom:981.801333pt;}
.y1cc{bottom:982.785333pt;}
.y16e{bottom:983.360000pt;}
.y2{bottom:983.713333pt;}
.y331{bottom:984.236000pt;}
.y38b{bottom:985.773333pt;}
.y26c{bottom:986.902667pt;}
.yb9{bottom:987.713333pt;}
.y3d1{bottom:988.937333pt;}
.y1ff{bottom:988.942667pt;}
.y160{bottom:989.180000pt;}
.y316{bottom:989.381333pt;}
.y49{bottom:989.478667pt;}
.ya1{bottom:989.753333pt;}
.y6f{bottom:990.158667pt;}
.y1d1{bottom:999.961333pt;}
.y1cb{bottom:1001.452000pt;}
.y16d{bottom:1002.026667pt;}
.y26{bottom:1005.776000pt;}
.y15f{bottom:1007.846667pt;}
.y1{bottom:1037.065333pt;}
.y6b{bottom:1052.982667pt;}
.he{height:27.313802pt;}
.h18{height:33.096094pt;}
.h5{height:35.091250pt;}
.h16{height:36.773438pt;}
.h9{height:39.281250pt;}
.h17{height:40.225781pt;}
.h12{height:40.859375pt;}
.h1e{height:44.128125pt;}
.h15{height:44.695312pt;}
.h20{height:44.945312pt;}
.h21{height:47.675000pt;}
.h14{height:49.031250pt;}
.ha{height:49.621875pt;}
.hc{height:49.661458pt;}
.h6{height:52.134375pt;}
.h1f{height:53.634375pt;}
.hd{height:54.627604pt;}
.hb{height:59.593750pt;}
.h8{height:62.812500pt;}
.h1d{height:65.375000pt;}
.h1c{height:69.460938pt;}
.h4{height:70.978125pt;}
.h3{height:75.733333pt;}
.h13{height:84.424479pt;}
.h1a{height:85.110581pt;}
.h19{height:88.220981pt;}
.hf{height:99.322917pt;}
.h2{height:143.893333pt;}
.h1b{height:163.882812pt;}
.h10{height:173.815104pt;}
.h7{height:232.986667pt;}
.h11{height:244.448596pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:466.493333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x0{left:0.000000pt;}
.xb{left:2.080000pt;}
.x12{left:45.354267pt;}
.x14{left:46.299200pt;}
.x3e{left:53.545333pt;}
.x5c{left:54.792667pt;}
.x17{left:56.692933pt;}
.x86{left:73.351600pt;}
.x87{left:74.686267pt;}
.x4{left:75.590533pt;}
.x5{left:87.122267pt;}
.x13{left:88.416667pt;}
.xc{left:103.517067pt;}
.x62{left:110.540667pt;}
.x21{left:114.141733pt;}
.x2f{left:116.871333pt;}
.x39{left:122.204667pt;}
.x7d{left:127.181067pt;}
.x7e{left:128.629867pt;}
.x65{left:130.086667pt;}
.x63{left:134.527333pt;}
.x8{left:143.117333pt;}
.x9{left:145.197333pt;}
.x3f{left:154.881733pt;}
.x6{left:156.717333pt;}
.x49{left:170.977333pt;}
.x66{left:178.824000pt;}
.x7{left:200.079733pt;}
.x8c{left:245.416000pt;}
.x40{left:257.017333pt;}
.x2{left:267.220000pt;}
.x83{left:268.608000pt;}
.x22{left:269.720000pt;}
.x58{left:272.028000pt;}
.x85{left:274.793333pt;}
.x15{left:275.905333pt;}
.x88{left:294.802667pt;}
.x84{left:304.580000pt;}
.x23{left:306.021333pt;}
.x59{left:311.982667pt;}
.x3a{left:316.413333pt;}
.x16{left:317.654667pt;}
.x3c{left:329.960000pt;}
.x42{left:358.472533pt;}
.x4a{left:370.897333pt;}
.x1{left:371.897333pt;}
.xd{left:381.730400pt;}
.x8d{left:422.286400pt;}
.xa{left:432.426667pt;}
.x43{left:458.080933pt;}
.x3{left:485.086667pt;}
.x41{left:560.540533pt;}
.x18{left:564.409333pt;}
.x48{left:828.472000pt;}
.x30{left:830.940000pt;}
.xf{left:869.290667pt;}
.x29{left:870.649333pt;}
.x2b{left:875.593333pt;}
.x20{left:880.629333pt;}
.x2d{left:886.265333pt;}
.x37{left:888.532000pt;}
.x2c{left:889.881333pt;}
.x36{left:891.860000pt;}
.x38{left:893.284000pt;}
.x35{left:897.284000pt;}
.x26{left:898.185333pt;}
.x25{left:899.481333pt;}
.x6b{left:906.017333pt;}
.x1a{left:907.273333pt;}
.x4c{left:910.481333pt;}
.x33{left:913.380000pt;}
.x81{left:914.961333pt;}
.x6a{left:916.257333pt;}
.x1d{left:917.753333pt;}
.x69{left:920.401333pt;}
.x19{left:921.673333pt;}
.x34{left:922.836000pt;}
.x1c{left:924.457333pt;}
.x60{left:925.934667pt;}
.x27{left:929.929333pt;}
.x2a{left:932.489333pt;}
.x1b{left:937.113333pt;}
.x82{left:941.625333pt;}
.x5f{left:943.614667pt;}
.x6f{left:944.953333pt;}
.x28{left:947.321333pt;}
.x10{left:949.297333pt;}
.x3d{left:952.469333pt;}
.x44{left:954.024000pt;}
.x6e{left:957.497333pt;}
.x6d{left:959.801333pt;}
.x89{left:962.542667pt;}
.x4d{left:968.897333pt;}
.x6c{left:974.513333pt;}
.x5e{left:978.094667pt;}
.x61{left:995.598667pt;}
.x8a{left:1002.629333pt;}
.x2e{left:1009.241333pt;}
.x70{left:1034.410667pt;}
.x7a{left:1035.654667pt;}
.x74{left:1036.938667pt;}
.x7f{left:1038.218667pt;}
.x76{left:1040.190667pt;}
.x72{left:1052.078667pt;}
.x75{left:1054.986667pt;}
.x78{left:1058.658667pt;}
.x77{left:1061.274667pt;}
.x71{left:1067.818667pt;}
.x50{left:1072.454667pt;}
.x5a{left:1093.657333pt;}
.x1e{left:1096.637333pt;}
.x67{left:1098.913333pt;}
.xe{left:1099.842667pt;}
.x46{left:1109.937733pt;}
.x32{left:1111.232000pt;}
.x5b{left:1128.645333pt;}
.x5d{left:1129.629333pt;}
.x1f{left:1132.393333pt;}
.x24{left:1134.278667pt;}
.x68{left:1135.726667pt;}
.x7c{left:1139.214667pt;}
.x31{left:1141.592000pt;}
.x4b{left:1142.577333pt;}
.x7b{left:1155.162667pt;}
.x11{left:1164.617333pt;}
.x51{left:1169.622667pt;}
.x80{left:1171.598667pt;}
.x64{left:1172.693333pt;}
.x3b{left:1176.693333pt;}
.x57{left:1204.565333pt;}
.x8b{left:1210.396000pt;}
.x73{left:1216.442667pt;}
.x4e{left:1227.122667pt;}
.x4f{left:1234.610667pt;}
.x79{left:1243.830667pt;}
.x47{left:1266.570133pt;}
.x56{left:1274.358667pt;}
.x55{left:1279.878667pt;}
.x53{left:1366.790667pt;}
.x54{left:1378.310667pt;}
.x52{left:1415.254667pt;}
.x45{left:1422.997333pt;}
}




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