
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_9fb36015a5fd29b4e005244d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_693c13251233b044f9b69916.woff')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_90d39c5b216238093882f7b2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_98b0c9895c3af4827f82255f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_575561aaf14da1c5e10cc96a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b6e9ba8fb2d7ab87c429a286.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-27.360000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v4{vertical-align:27.360000px;}
.ls10{letter-spacing:-1.662000px;}
.ls26{letter-spacing:-1.080000px;}
.ls24{letter-spacing:-0.990000px;}
.ls16{letter-spacing:-0.942000px;}
.ls25{letter-spacing:-0.900000px;}
.ls23{letter-spacing:-0.768000px;}
.ls21{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.538800px;}
.ls20{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.450600px;}
.ls9{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.269400px;}
.ls11{letter-spacing:-0.223800px;}
.ls28{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.181200px;}
.lsf{letter-spacing:-0.178800px;}
.ls13{letter-spacing:-0.126000px;}
.ls1b{letter-spacing:-0.108000px;}
.ls17{letter-spacing:-0.090600px;}
.ls4{letter-spacing:-0.045360px;}
.ls0{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.108000px;}
.ls1a{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.149760px;}
.ls15{letter-spacing:0.152400px;}
.ls7{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.181200px;}
.ls12{letter-spacing:0.181440px;}
.ls27{letter-spacing:0.216000px;}
.lse{letter-spacing:0.223800px;}
.lsa{letter-spacing:0.223920px;}
.ls1c{letter-spacing:0.253440px;}
.lsb{letter-spacing:0.269400px;}
.ls1f{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.293040px;}
.ls6{letter-spacing:0.314400px;}
.ls2{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.630000px;}
.ls19{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.901440px;}
.ls1d{letter-spacing:1.080000px;}
.ls22{letter-spacing:55.008000px;}
.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;}
}
.ws19{word-spacing:-72.000000px;}
.ws7{word-spacing:-48.240000px;}
.ws16{word-spacing:-18.288000px;}
.ws1e{word-spacing:-18.216000px;}
.ws0{word-spacing:-18.000000px;}
.ws18{word-spacing:-17.712000px;}
.ws1f{word-spacing:-13.608000px;}
.ws15{word-spacing:-13.392000px;}
.ws20{word-spacing:-12.690000px;}
.ws8{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.374400px;}
.ws10{word-spacing:-12.329400px;}
.wsc{word-spacing:-12.283800px;}
.ws9{word-spacing:-12.241200px;}
.ws1d{word-spacing:-12.240000px;}
.ws5{word-spacing:-12.060000px;}
.ws3{word-spacing:-12.014640px;}
.ws13{word-spacing:-11.969400px;}
.wsd{word-spacing:-11.881200px;}
.ws2{word-spacing:-11.878800px;}
.ws12{word-spacing:-11.836200px;}
.ws4{word-spacing:-11.790600px;}
.wsa{word-spacing:-11.700000px;}
.wsb{word-spacing:-11.609400px;}
.wsf{word-spacing:-11.521200px;}
.ws1a{word-spacing:-11.292000px;}
.ws1c{word-spacing:-11.160000px;}
.ws14{word-spacing:-11.118000px;}
.ws1b{word-spacing:-11.070000px;}
.wse{word-spacing:-10.398000px;}
.ws11{word-spacing:-7.920000px;}
.ws17{word-spacing:-7.560000px;}
.ws1{word-spacing:0.000000px;}
._a{margin-left:-3.801600px;}
._9{margin-left:-2.473200px;}
._1{margin-left:-1.440000px;}
._0{width:1.332000px;}
._5{width:2.534160px;}
._b{width:4.824000px;}
._c{width:5.904000px;}
._8{width:148.944000px;}
._3{width:784.380000px;}
._2{width:846.156000px;}
._7{width:852.060000px;}
._6{width:1278.264000px;}
._4{width:1311.420000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.240000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y32{bottom:2.865000px;}
.y96{bottom:2.871000px;}
.y2a{bottom:2.880000px;}
.y1e8{bottom:2.910000px;}
.y3c{bottom:3.045000px;}
.y80{bottom:3.051000px;}
.y44{bottom:3.060000px;}
.yfa{bottom:3.090000px;}
.y344{bottom:3.420000px;}
.y4c5{bottom:3.945000px;}
.y396{bottom:4.125000px;}
.y385{bottom:4.131000px;}
.y34a{bottom:4.140000px;}
.y3bd{bottom:4.305000px;}
.y361{bottom:4.320000px;}
.y336{bottom:4.485000px;}
.y33a{bottom:4.500000px;}
.y26e{bottom:4.665000px;}
.y2a1{bottom:4.671000px;}
.y25{bottom:4.680000px;}
.y264{bottom:4.710000px;}
.y27e{bottom:4.845000px;}
.y284{bottom:4.851000px;}
.y27a{bottom:4.860000px;}
.y313{bottom:5.025000px;}
.yc2{bottom:5.040000px;}
.y3c1{bottom:5.205000px;}
.y33d{bottom:5.220000px;}
.y257{bottom:5.400000px;}
.y4aa{bottom:5.565000px;}
.y525{bottom:5.580000px;}
.y40f{bottom:5.745000px;}
.y58{bottom:5.760000px;}
.y46d{bottom:5.925000px;}
.y57a{bottom:6.105000px;}
.y13f{bottom:6.150000px;}
.y416{bottom:6.285000px;}
.y4f6{bottom:6.300000px;}
.y37f{bottom:6.465000px;}
.y39d{bottom:6.480000px;}
.y2d9{bottom:6.840000px;}
.y390{bottom:7.020000px;}
.y4b6{bottom:7.191000px;}
.y433{bottom:7.200000px;}
.y319{bottom:7.365000px;}
.y31f{bottom:7.545000px;}
.y41f{bottom:7.560000px;}
.y66{bottom:7.740000px;}
.y2ca{bottom:7.905000px;}
.y324{bottom:7.920000px;}
.y494{bottom:8.085000px;}
.y39b{bottom:8.100000px;}
.y54b{bottom:8.265000px;}
.y554{bottom:8.271000px;}
.y2df{bottom:8.280000px;}
.ybc{bottom:8.460000px;}
.y3b7{bottom:8.625000px;}
.y134{bottom:8.640000px;}
.y2d0{bottom:8.805000px;}
.y306{bottom:8.820000px;}
.y1c2{bottom:9.000000px;}
.y4e8{bottom:9.171000px;}
.y1e5{bottom:9.180000px;}
.y22f{bottom:9.345000px;}
.y39f{bottom:9.540000px;}
.y15a{bottom:9.705000px;}
.y38{bottom:9.720000px;}
.y34{bottom:9.885000px;}
.y7d{bottom:9.891000px;}
.y27{bottom:9.900000px;}
.yd4{bottom:9.930000px;}
.y1c4{bottom:9.945000px;}
.y472{bottom:10.065000px;}
.y401{bottom:10.110000px;}
.y3f2{bottom:10.245000px;}
.y45d{bottom:10.251000px;}
.y346{bottom:10.260000px;}
.y505{bottom:10.425000px;}
.y202{bottom:10.605000px;}
.y1db{bottom:10.620000px;}
.y16e{bottom:10.785000px;}
.y52{bottom:10.800000px;}
.y394{bottom:10.965000px;}
.y383{bottom:10.971000px;}
.y3bb{bottom:11.145000px;}
.y348{bottom:11.160000px;}
.y22d{bottom:11.325000px;}
.y339{bottom:11.340000px;}
.y33f{bottom:11.370000px;}
.y26d{bottom:11.505000px;}
.y2a0{bottom:11.511000px;}
.y268{bottom:11.520000px;}
.y262{bottom:11.550000px;}
.y22b{bottom:11.565000px;}
.y270{bottom:11.685000px;}
.y282{bottom:11.691000px;}
.y266{bottom:11.700000px;}
.y296{bottom:11.730000px;}
.y32d{bottom:11.745000px;}
.y333{bottom:11.865000px;}
.y375{bottom:11.880000px;}
.y314{bottom:11.910000px;}
.y3bf{bottom:12.045000px;}
.yc0{bottom:12.060000px;}
.y3c6{bottom:12.240000px;}
.y136{bottom:12.270000px;}
.y3ff{bottom:12.405000px;}
.y11e{bottom:12.420000px;}
.y2e9{bottom:12.450000px;}
.y42a{bottom:12.585000px;}
.y450{bottom:12.600000px;}
.y40b{bottom:12.765000px;}
.y418{bottom:13.125000px;}
.y575{bottom:13.140000px;}
.y37d{bottom:13.305000px;}
.y28{bottom:13.320000px;}
.y2db{bottom:13.680000px;}
.y475{bottom:13.860000px;}
.y49c{bottom:14.040000px;}
.y2c4{bottom:14.205000px;}
.y421{bottom:14.400000px;}
.y31c{bottom:14.565000px;}
.y2c8{bottom:14.745000px;}
.y30d{bottom:14.760000px;}
.y2f0{bottom:14.925000px;}
.y354{bottom:14.940000px;}
.y35a{bottom:15.105000px;}
.y378{bottom:15.120000px;}
.y549{bottom:15.150000px;}
.y551{bottom:15.285000px;}
.ybe{bottom:15.300000px;}
.y366{bottom:15.465000px;}
.y2d3{bottom:15.480000px;}
.y2ce{bottom:15.645000px;}
.y30a{bottom:15.660000px;}
.y35e{bottom:15.825000px;}
.y2fb{bottom:16.230000px;}
.ycd{bottom:16.380000px;}
.y41{bottom:16.545000px;}
.yc4{bottom:16.560000px;}
.y31{bottom:16.725000px;}
.yca{bottom:16.731000px;}
.y29{bottom:16.740000px;}
.ycf{bottom:16.770000px;}
.y1c5{bottom:16.785000px;}
.y3b{bottom:16.905000px;}
.y7f{bottom:16.911000px;}
.y43{bottom:16.920000px;}
.ya0{bottom:16.950000px;}
.y3e9{bottom:17.100000px;}
.y3f0{bottom:17.130000px;}
.y507{bottom:17.265000px;}
.y342{bottom:17.280000px;}
.y3b2{bottom:17.460000px;}
.y395{bottom:17.805000px;}
.y4e9{bottom:17.985000px;}
.y384{bottom:17.991000px;}
.y349{bottom:18.000000px;}
.y3bc{bottom:18.165000px;}
.y178{bottom:18.180000px;}
.y340{bottom:18.210000px;}
.y201{bottom:18.345000px;}
.y217{bottom:18.360000px;}
.y28b{bottom:18.390000px;}
.y16d{bottom:18.525000px;}
.y283{bottom:18.531000px;}
.y51{bottom:18.540000px;}
.y263{bottom:18.570000px;}
.y334{bottom:18.705000px;}
.y44a{bottom:18.720000px;}
.y312{bottom:18.750000px;}
.y32b{bottom:18.765000px;}
.y473{bottom:18.885000px;}
.yc1{bottom:18.900000px;}
.y3c0{bottom:19.065000px;}
.y33c{bottom:19.080000px;}
.y4dd{bottom:19.110000px;}
.y316{bottom:19.245000px;}
.y3c7{bottom:19.260000px;}
.y31a{bottom:19.425000px;}
.y524{bottom:19.440000px;}
.y40e{bottom:19.605000px;}
.y57{bottom:19.620000px;}
.y428{bottom:19.650000px;}
.y469{bottom:19.785000px;}
.y4e6{bottom:19.965000px;}
.y576{bottom:19.980000px;}
.y37e{bottom:20.145000px;}
.y4f5{bottom:20.160000px;}
.y4d0{bottom:20.325000px;}
.y326{bottom:20.340000px;}
.y4a6{bottom:20.520000px;}
.y2d7{bottom:20.700000px;}
.y499{bottom:20.880000px;}
.y4b2{bottom:21.051000px;}
.y431{bottom:21.060000px;}
.y318{bottom:21.225000px;}
.y31e{bottom:21.405000px;}
.y65{bottom:21.420000px;}
.y323{bottom:21.600000px;}
.y2c6{bottom:21.765000px;}
.y352{bottom:21.780000px;}
.y358{bottom:21.945000px;}
.y379{bottom:21.960000px;}
.y54a{bottom:21.990000px;}
.y54e{bottom:22.125000px;}
.y2dd{bottom:22.140000px;}
.y364{bottom:22.305000px;}
.yba{bottom:22.320000px;}
.y373{bottom:22.350000px;}
.y2cc{bottom:22.485000px;}
.y2d2{bottom:22.500000px;}
.y3b6{bottom:22.530000px;}
.y35d{bottom:22.665000px;}
.y1c0{bottom:22.680000px;}
.y1e4{bottom:23.040000px;}
.y579{bottom:23.205000px;}
.y572{bottom:23.220000px;}
.y2f9{bottom:23.250000px;}
.y159{bottom:23.430000px;}
.y33{bottom:23.565000px;}
.yfe{bottom:23.571000px;}
.y2c{bottom:23.580000px;}
.y17b{bottom:23.610000px;}
.y328{bottom:23.625000px;}
.y3d{bottom:23.745000px;}
.y7b{bottom:23.751000px;}
.y8e{bottom:23.760000px;}
.yd3{bottom:23.790000px;}
.yb5{bottom:23.805000px;}
.y45c{bottom:23.925000px;}
.y3ec{bottom:23.940000px;}
.y3ea{bottom:23.970000px;}
.y345{bottom:24.120000px;}
.y3f1{bottom:24.150000px;}
.y50a{bottom:24.285000px;}
.y3ae{bottom:24.300000px;}
.y504{bottom:24.330000px;}
.y448{bottom:24.480000px;}
.y480{bottom:24.825000px;}
.y4bd{bottom:24.840000px;}
.y48d{bottom:25.200000px;}
.y37{bottom:25.560000px;}
.y329{bottom:25.605000px;}
.yf2{bottom:25.740000px;}
.y11d{bottom:26.100000px;}
.y3fe{bottom:26.265000px;}
.y521{bottom:26.280000px;}
.y2e7{bottom:26.310000px;}
.y409{bottom:26.445000px;}
.y54{bottom:26.460000px;}
.y429{bottom:26.490000px;}
.y413{bottom:26.985000px;}
.y54f{bottom:27.345000px;}
.y545{bottom:27.360000px;}
.y54c{bottom:27.390000px;}
.y552{bottom:27.525000px;}
.y2d5{bottom:27.540000px;}
.y497{bottom:27.900000px;}
.y2c2{bottom:28.065000px;}
.y31b{bottom:28.245000px;}
.y41c{bottom:28.290000px;}
.y321{bottom:28.440000px;}
.y2c7{bottom:28.605000px;}
.y359{bottom:28.785000px;}
.y353{bottom:28.800000px;}
.y2de{bottom:28.980000px;}
.ybd{bottom:29.160000px;}
.y365{bottom:29.325000px;}
.y131{bottom:29.340000px;}
.y3b8{bottom:29.370000px;}
.y2cd{bottom:29.505000px;}
.y309{bottom:29.520000px;}
.y1be{bottom:29.700000px;}
.ycc{bottom:30.060000px;}
.y2fa{bottom:30.090000px;}
.y241{bottom:30.405000px;}
.y36{bottom:30.420000px;}
.y1f8{bottom:30.450000px;}
.y3a{bottom:30.585000px;}
.y7e{bottom:30.591000px;}
.y2e{bottom:30.600000px;}
.y30{bottom:30.630000px;}
.yb4{bottom:30.645000px;}
.y343{bottom:30.960000px;}
.y501{bottom:31.170000px;}
.y3b1{bottom:31.320000px;}
.y516{bottom:31.350000px;}
.y4b9{bottom:31.680000px;}
.y177{bottom:32.040000px;}
.y40{bottom:32.385000px;}
.y32a{bottom:32.445000px;}
.y4d2{bottom:32.580000px;}
.y45f{bottom:32.940000px;}
.y4db{bottom:32.970000px;}
.y3fb{bottom:33.105000px;}
.y42d{bottom:33.285000px;}
.y44c{bottom:33.300000px;}
.y42b{bottom:33.330000px;}
.y407{bottom:33.465000px;}
.y56{bottom:33.480000px;}
.y467{bottom:33.510000px;}
.y411{bottom:33.825000px;}
.y3a8{bottom:33.840000px;}
.y4cf{bottom:34.005000px;}
.y4f4{bottom:34.020000px;}
.y2d6{bottom:34.380000px;}
.y4c0{bottom:34.425000px;}
.y508{bottom:34.560000px;}
.y495{bottom:34.740000px;}
.y317{bottom:34.905000px;}
.y4b0{bottom:34.911000px;}
.y432{bottom:34.920000px;}
.y41a{bottom:35.130000px;}
.y31d{bottom:35.265000px;}
.y64{bottom:35.280000px;}
.y2c9{bottom:35.445000px;}
.y322{bottom:35.460000px;}
.y3c4{bottom:35.820000px;}
.ybb{bottom:36.000000px;}
.y372{bottom:36.030000px;}
.y133{bottom:36.180000px;}
.y2d4{bottom:36.210000px;}
.y2cf{bottom:36.345000px;}
.y305{bottom:36.360000px;}
.y482{bottom:36.525000px;}
.y1bf{bottom:36.540000px;}
.y1e3{bottom:36.720000px;}
.y158{bottom:37.290000px;}
.y5c{bottom:37.425000px;}
.y98{bottom:37.440000px;}
.yd2{bottom:37.470000px;}
.y52b{bottom:37.605000px;}
.y7c{bottom:37.611000px;}
.ya2{bottom:37.620000px;}
.y8d{bottom:37.650000px;}
.y45b{bottom:37.785000px;}
.y503{bottom:38.010000px;}
.y3ad{bottom:38.160000px;}
.y518{bottom:38.190000px;}
.y47f{bottom:38.550000px;}
.y4b7{bottom:38.700000px;}
.y48b{bottom:38.880000px;}
.y32c{bottom:39.465000px;}
.yf1{bottom:39.600000px;}
.y460{bottom:39.780000px;}
.y4e0{bottom:39.810000px;}
.y3f8{bottom:39.945000px;}
.y11c{bottom:39.960000px;}
.y2e8{bottom:39.990000px;}
.y51f{bottom:40.140000px;}
.y408{bottom:40.305000px;}
.y44d{bottom:40.320000px;}
.y46b{bottom:40.530000px;}
.y4e3{bottom:40.665000px;}
.y412{bottom:40.845000px;}
.y4ee{bottom:40.860000px;}
.y4c9{bottom:41.025000px;}
.y4a1{bottom:41.220000px;}
.y2da{bottom:41.400000px;}
.y4c1{bottom:41.445000px;}
.y496{bottom:41.580000px;}
.y2c3{bottom:41.745000px;}
.y4fa{bottom:42.120000px;}
.y41b{bottom:42.150000px;}
.y3e5{bottom:42.465000px;}
.y422{bottom:42.660000px;}
.y406{bottom:43.020000px;}
.y301{bottom:43.200000px;}
.y483{bottom:43.365000px;}
.y46f{bottom:43.380000px;}
.y3f{bottom:44.265000px;}
.y2d{bottom:44.280000px;}
.y13c{bottom:44.310000px;}
.y5b{bottom:44.445000px;}
.ya4{bottom:44.460000px;}
.y8b{bottom:44.490000px;}
.y455{bottom:44.625000px;}
.y3aa{bottom:45.000000px;}
.y506{bottom:45.030000px;}
.y445{bottom:45.180000px;}
.y4b8{bottom:45.540000px;}
.y479{bottom:45.570000px;}
.y176{bottom:45.900000px;}
.y4d4{bottom:46.440000px;}
.y4da{bottom:46.650000px;}
.y462{bottom:46.800000px;}
.y3fa{bottom:46.965000px;}
.y523{bottom:46.980000px;}
.y4a9{bottom:47.010000px;}
.y40d{bottom:47.145000px;}
.y55{bottom:47.160000px;}
.y466{bottom:47.370000px;}
.y415{bottom:47.685000px;}
.y4f3{bottom:47.700000px;}
.y4ce{bottom:47.865000px;}
.y2d8{bottom:48.240000px;}
.y4c2{bottom:48.285000px;}
.y4af{bottom:48.585000px;}
.y498{bottom:48.600000px;}
.y41d{bottom:48.990000px;}
.y60{bottom:49.140000px;}
.y3e7{bottom:49.305000px;}
.y423{bottom:49.500000px;}
.y36d{bottom:49.890000px;}
.y132{bottom:50.040000px;}
.y485{bottom:50.205000px;}
.y304{bottom:50.220000px;}
.y1c1{bottom:50.400000px;}
.y1e2{bottom:50.580000px;}
.ye1{bottom:51.120000px;}
.y155{bottom:51.150000px;}
.y88{bottom:51.285000px;}
.y99{bottom:51.300000px;}
.y8c{bottom:51.330000px;}
.y45a{bottom:51.645000px;}
.y4d7{bottom:51.690000px;}
.y502{bottom:51.870000px;}
.y3ac{bottom:52.020000px;}
.y517{bottom:52.050000px;}
.y464{bottom:52.230000px;}
.y4bc{bottom:52.380000px;}
.y47e{bottom:52.410000px;}
.y48a{bottom:52.740000px;}
.y4d5{bottom:53.280000px;}
.yeb{bottom:53.460000px;}
.y4ac{bottom:53.625000px;}
.y463{bottom:53.640000px;}
.y4df{bottom:53.670000px;}
.y3fd{bottom:53.805000px;}
.y11b{bottom:53.850000px;}
.y51c{bottom:53.985000px;}
.y44f{bottom:54.000000px;}
.y40a{bottom:54.210000px;}
.y417{bottom:54.525000px;}
.y4c7{bottom:54.705000px;}
.y4ec{bottom:54.720000px;}
.y49f{bottom:55.080000px;}
.y4c4{bottom:55.125000px;}
.y49b{bottom:55.440000px;}
.y4b4{bottom:55.605000px;}
.y420{bottom:55.830000px;}
.y5e{bottom:55.980000px;}
.y425{bottom:56.520000px;}
.y36e{bottom:56.730000px;}
.y308{bottom:57.060000px;}
.y486{bottom:57.225000px;}
.y492{bottom:57.240000px;}
.y1dd{bottom:57.420000px;}
.y488{bottom:57.600000px;}
.y75{bottom:58.125000px;}
.y9b{bottom:58.140000px;}
.y5a{bottom:58.170000px;}
.y144{bottom:58.305000px;}
.ya3{bottom:58.320000px;}
.y8f{bottom:58.350000px;}
.y453{bottom:58.485000px;}
.y3b0{bottom:58.890000px;}
.y477{bottom:59.250000px;}
.y4bb{bottom:59.400000px;}
.y175{bottom:59.580000px;}
.y4d3{bottom:60.120000px;}
.yed{bottom:60.300000px;}
.y461{bottom:60.480000px;}
.y4d9{bottom:60.510000px;}
.y3f9{bottom:60.645000px;}
.y4a8{bottom:60.690000px;}
.y522{bottom:60.840000px;}
.y44e{bottom:61.020000px;}
.y40c{bottom:61.050000px;}
.y4e5{bottom:61.365000px;}
.y414{bottom:61.545000px;}
.y4f2{bottom:61.560000px;}
.y4cd{bottom:61.725000px;}
.y4a5{bottom:61.920000px;}
.y4c3{bottom:61.965000px;}
.y49a{bottom:62.280000px;}
.y4ae{bottom:62.445000px;}
.y5f{bottom:62.820000px;}
.y41e{bottom:62.850000px;}
.y3e6{bottom:63.165000px;}
.y424{bottom:63.360000px;}
.y36c{bottom:63.750000px;}
.y303{bottom:63.900000px;}
.y484{bottom:64.065000px;}
.y470{bottom:64.080000px;}
.y491{bottom:64.125000px;}
.y1e1{bottom:64.440000px;}
.y157{bottom:64.830000px;}
.ya8{bottom:64.965000px;}
.ye2{bottom:64.980000px;}
.y53c{bottom:65.010000px;}
.y109{bottom:65.145000px;}
.yd6{bottom:65.160000px;}
.yc6{bottom:65.190000px;}
.y459{bottom:65.325000px;}
.y3ab{bottom:65.730000px;}
.y447{bottom:65.910000px;}
.y47d{bottom:66.270000px;}
.y170{bottom:66.600000px;}
.yea{bottom:67.140000px;}
.y4de{bottom:67.350000px;}
.y11a{bottom:67.530000px;}
.y3fc{bottom:67.665000px;}
.y46a{bottom:68.070000px;}
.y4ed{bottom:68.400000px;}
.y4c8{bottom:68.565000px;}
.y4a0{bottom:68.940000px;}
.y4b3{bottom:69.285000px;}
.y4f9{bottom:69.840000px;}
.y307{bottom:70.920000px;}
.y9a{bottom:71.820000px;}
.y13b{bottom:71.850000px;}
.y89{bottom:71.985000px;}
.ya5{bottom:72.000000px;}
.y74{bottom:72.030000px;}
.y454{bottom:72.345000px;}
.y3af{bottom:72.750000px;}
.y4ba{bottom:73.080000px;}
.y478{bottom:73.110000px;}
.y174{bottom:73.440000px;}
.ye7{bottom:74.160000px;}
.y4d8{bottom:74.370000px;}
.y122{bottom:74.550000px;}
.y465{bottom:74.910000px;}
.y4e4{bottom:75.225000px;}
.y4cc{bottom:75.405000px;}
.y4f1{bottom:75.465000px;}
.y4a4{bottom:75.780000px;}
.y4ad{bottom:76.305000px;}
.y63{bottom:76.680000px;}
.y371{bottom:77.430000px;}
.y302{bottom:77.760000px;}
.y490{bottom:77.985000px;}
.y1e0{bottom:78.120000px;}
.y156{bottom:78.690000px;}
.ya9{bottom:78.825000px;}
.yd7{bottom:78.840000px;}
.yd1{bottom:78.870000px;}
.y147{bottom:78.885000px;}
.y141{bottom:79.005000px;}
.y526{bottom:79.050000px;}
.y458{bottom:79.185000px;}
.y446{bottom:79.590000px;}
.y47c{bottom:79.950000px;}
.y489{bottom:80.280000px;}
.ye9{bottom:81.000000px;}
.y114{bottom:81.390000px;}
.yab{bottom:85.665000px;}
.ye3{bottom:85.680000px;}
.y73{bottom:85.710000px;}
.y108{bottom:85.845000px;}
.ydb{bottom:85.860000px;}
.y86{bottom:85.890000px;}
.y14c{bottom:85.905000px;}
.y173{bottom:87.300000px;}
.yec{bottom:87.840000px;}
.y4dc{bottom:88.050000px;}
.y121{bottom:88.230000px;}
.y468{bottom:88.770000px;}
.y4f0{bottom:89.145000px;}
.y4cb{bottom:89.265000px;}
.y4a3{bottom:89.640000px;}
.y4b1{bottom:89.985000px;}
.y62{bottom:90.540000px;}
.y370{bottom:91.290000px;}
.y1df{bottom:91.980000px;}
.ye4{bottom:92.520000px;}
.y138{bottom:92.550000px;}
.yad{bottom:92.685000px;}
.yde{bottom:92.700000px;}
.yd0{bottom:92.730000px;}
.y457{bottom:93.045000px;}
.y47b{bottom:93.810000px;}
.y48c{bottom:94.140000px;}
.ye8{bottom:94.860000px;}
.y112{bottom:95.250000px;}
.yaa{bottom:99.525000px;}
.yda{bottom:99.540000px;}
.y72{bottom:99.570000px;}
.y14b{bottom:99.585000px;}
.y143{bottom:99.705000px;}
.yc7{bottom:99.750000px;}
.y172{bottom:100.980000px;}
.y4e1{bottom:101.910000px;}
.y110{bottom:102.090000px;}
.y46c{bottom:102.450000px;}
.y4ef{bottom:103.005000px;}
.y4ca{bottom:103.125000px;}
.y4a2{bottom:103.320000px;}
.y4b5{bottom:103.845000px;}
.y61{bottom:104.220000px;}
.y4fb{bottom:104.250000px;}
.y36f{bottom:105.150000px;}
.y1de{bottom:105.870000px;}
.yac{bottom:106.365000px;}
.y105{bottom:106.380000px;}
.y53b{bottom:106.410000px;}
.y562{bottom:106.545000px;}
.ydd{bottom:106.560000px;}
.y83{bottom:106.590000px;}
.y456{bottom:106.725000px;}
.y51d{bottom:106.965000px;}
.y47a{bottom:107.670000px;}
.y48e{bottom:108.000000px;}
.yf0{bottom:108.540000px;}
.y111{bottom:108.930000px;}
.y531{bottom:110.376000px;}
.y42f{bottom:110.556000px;}
.y140{bottom:110.565000px;}
.y1d8{bottom:111.096000px;}
.y382{bottom:111.465000px;}
.y7a{bottom:111.645000px;}
.yc9{bottom:113.085000px;}
.y13a{bottom:113.250000px;}
.y4ab{bottom:113.265000px;}
.y10c{bottom:113.385000px;}
.yd9{bottom:113.400000px;}
.y6a{bottom:113.430000px;}
.y14a{bottom:113.445000px;}
.y3e1{bottom:113.625000px;}
.y1a0{bottom:114.516000px;}
.y1ab{bottom:114.705000px;}
.y171{bottom:114.840000px;}
.y1b2{bottom:114.885000px;}
.y21d{bottom:115.245000px;}
.y228{bottom:115.605000px;}
.y191{bottom:115.785000px;}
.y120{bottom:115.950000px;}
.y570{bottom:116.325000px;}
.y126{bottom:116.496000px;}
.y1cd{bottom:116.505000px;}
.y281{bottom:117.045000px;}
.yae{bottom:117.765000px;}
.y17f{bottom:117.945000px;}
.y561{bottom:120.225000px;}
.ydc{bottom:120.240000px;}
.y6c{bottom:120.270000px;}
.y528{bottom:120.450000px;}
.y107{bottom:120.825000px;}
.y20f{bottom:121.005000px;}
.y52c{bottom:122.265000px;}
.yef{bottom:122.400000px;}
.y2b5{bottom:122.625000px;}
.y113{bottom:122.790000px;}
.y29f{bottom:123.705000px;}
.y1ed{bottom:124.425000px;}
.y3c2{bottom:124.785000px;}
.yfd{bottom:126.045000px;}
.y103{bottom:127.080000px;}
.y68{bottom:127.110000px;}
.y10b{bottom:127.245000px;}
.yd8{bottom:127.260000px;}
.y85{bottom:127.290000px;}
.y149{bottom:127.305000px;}
.y452{bottom:128.925000px;}
.y11f{bottom:129.630000px;}
.y190{bottom:130.185000px;}
.y240{bottom:132.345000px;}
.y3d4{bottom:132.885000px;}
.y2bf{bottom:133.776000px;}
.y560{bottom:134.085000px;}
.y104{bottom:134.100000px;}
.y6b{bottom:134.130000px;}
.y273{bottom:134.316000px;}
.yee{bottom:136.260000px;}
.y119{bottom:136.650000px;}
.y4e7{bottom:136.845000px;}
.y19f{bottom:138.276000px;}
.y553{bottom:139.005000px;}
.y10a{bottom:140.925000px;}
.y106{bottom:140.940000px;}
.y69{bottom:140.970000px;}
.y148{bottom:140.985000px;}
.y142{bottom:141.105000px;}
.y529{bottom:141.150000px;}
.y530{bottom:141.156000px;}
.y381{bottom:142.065000px;}
.y34f{bottom:142.416000px;}
.y35c{bottom:144.405000px;}
.y568{bottom:145.305000px;}
.y95{bottom:145.485000px;}
.y17e{bottom:146.385000px;}
.y3a4{bottom:147.636000px;}
.y532{bottom:147.810000px;}
.y10e{bottom:147.990000px;}
.y280{bottom:148.905000px;}
.y42e{bottom:149.436000px;}
.y20e{bottom:149.445000px;}
.y1d7{bottom:149.976000px;}
.y118{bottom:150.330000px;}
.y2be{bottom:150.885000px;}
.y481{bottom:152.685000px;}
.y1ec{bottom:152.865000px;}
.y2b4{bottom:154.485000px;}
.y139{bottom:154.650000px;}
.y56a{bottom:154.800000px;}
.y71{bottom:154.830000px;}
.y125{bottom:155.370000px;}
.y29e{bottom:155.385000px;}
.y19e{bottom:155.565000px;}
.y1fe{bottom:155.910000px;}
.y3be{bottom:156.645000px;}
.y1aa{bottom:156.825000px;}
.y1b1{bottom:157.005000px;}
.y24c{bottom:158.430000px;}
.y56f{bottom:158.445000px;}
.y3f5{bottom:158.790000px;}
.ya7{bottom:160.065000px;}
.y53a{bottom:161.670000px;}
.y117{bottom:164.190000px;}
.y3d3{bottom:164.745000px;}
.y4e2{bottom:167.445000px;}
.y79{bottom:167.625000px;}
.yfc{bottom:168.165000px;}
.y70{bottom:168.510000px;}
.y84{bottom:168.690000px;}
.y21c{bottom:171.225000px;}
.y227{bottom:171.585000px;}
.y123{bottom:172.485000px;}
.y272{bottom:173.010000px;}
.y23f{bottom:174.465000px;}
.y17d{bottom:174.645000px;}
.y539{bottom:175.530000px;}
.y3e0{bottom:177.165000px;}
.y20d{bottom:177.705000px;}
.y550{bottom:177.885000px;}
.y116{bottom:178.050000px;}
.y52a{bottom:178.245000px;}
.y52f{bottom:179.850000px;}
.y27f{bottom:180.765000px;}
.y1eb{bottom:181.125000px;}
.y6f{bottom:182.370000px;}
.y2bd{bottom:182.745000px;}
.y19d{bottom:183.825000px;}
.y380{bottom:184.185000px;}
.y18f{bottom:186.165000px;}
.y3a3{bottom:186.510000px;}
.y29d{bottom:187.245000px;}
.y94{bottom:187.605000px;}
.y34e{bottom:188.130000px;}
.y1d6{bottom:188.670000px;}
.y538{bottom:189.210000px;}
.y55f{bottom:189.390000px;}
.y3ba{bottom:189.405000px;}
.ye5{bottom:189.585000px;}
.y271{bottom:190.305000px;}
.y51b{bottom:190.485000px;}
.y115{bottom:191.730000px;}
.y1fd{bottom:194.610000px;}
.y67{bottom:196.065000px;}
.y6e{bottom:196.230000px;}
.yc8{bottom:196.605000px;}
.y24b{bottom:197.310000px;}
.y3f4{bottom:197.490000px;}
.y35b{bottom:198.225000px;}
.y1cc{bottom:200.745000px;}
.y500{bottom:201.090000px;}
.y567{bottom:201.285000px;}
.y537{bottom:203.070000px;}
.y17c{bottom:203.085000px;}
.y2e2{bottom:203.430000px;}
.y42c{bottom:205.245000px;}
.y315{bottom:205.965000px;}
.y3df{bottom:209.025000px;}
.y1ea{bottom:209.565000px;}
.y6d{bottom:209.910000px;}
.y124{bottom:210.090000px;}
.y52e{bottom:211.890000px;}
.y19c{bottom:212.265000px;}
.y27d{bottom:212.445000px;}
.y37c{bottom:212.625000px;}
.y1a9{bottom:212.805000px;}
.y1b0{bottom:212.985000px;}
.y56e{bottom:214.425000px;}
.y2bc{bottom:214.605000px;}
.y2e5{bottom:215.130000px;}
.y23e{bottom:216.585000px;}
.y54d{bottom:216.945000px;}
.y536{bottom:216.975000px;}
.y3a2{bottom:217.110000px;}
.y2b3{bottom:218.025000px;}
.y292{bottom:219.090000px;}
.y29c{bottom:219.105000px;}
.y20c{bottom:219.825000px;}
.y34d{bottom:219.990000px;}
.y3b9{bottom:220.365000px;}
.y162{bottom:220.890000px;}
.y26f{bottom:221.985000px;}
.y78{bottom:223.770000px;}
.y541{bottom:223.815000px;}
.yfb{bottom:224.145000px;}
.y21b{bottom:227.205000px;}
.y1d5{bottom:227.550000px;}
.y226{bottom:227.565000px;}
.y50f{bottom:228.090000px;}
.y3d2{bottom:228.285000px;}
.y52d{bottom:229.005000px;}
.y93{bottom:229.725000px;}
.y357{bottom:230.265000px;}
.y535{bottom:230.655000px;}
.y4ff{bottom:232.950000px;}
.y4a7{bottom:232.965000px;}
.y1fc{bottom:233.490000px;}
.y476{bottom:234.225000px;}
.y24a{bottom:236.010000px;}
.y3f3{bottom:236.370000px;}
.y34c{bottom:237.105000px;}
.y405{bottom:237.270000px;}
.y77{bottom:237.450000px;}
.y540{bottom:237.675000px;}
.y1e9{bottom:237.825000px;}
.yc5{bottom:238.725000px;}
.y19b{bottom:240.525000px;}
.y3de{bottom:240.885000px;}
.y18e{bottom:242.145000px;}
.y2e1{bottom:242.310000px;}
.y566{bottom:243.405000px;}
.y27c{bottom:244.305000px;}
.y534{bottom:244.515000px;}
.y17a{bottom:245.205000px;}
.y2bb{bottom:246.285000px;}
.y3d7{bottom:246.990000px;}
.y37b{bottom:247.905000px;}
.y2b2{bottom:249.885000px;}
.y1fb{bottom:250.605000px;}
.y29b{bottom:250.785000px;}
.y76{bottom:251.340000px;}
.y53f{bottom:251.355000px;}
.y3b5{bottom:252.045000px;}
.y427{bottom:252.765000px;}
.y3ef{bottom:253.485000px;}
.y26c{bottom:253.845000px;}
.y2e4{bottom:254.010000px;}
.y451{bottom:254.385000px;}
.y3a1{bottom:255.990000px;}
.y548{bottom:256.005000px;}
.y56d{bottom:256.545000px;}
.y1cb{bottom:256.725000px;}
.y311{bottom:256.905000px;}
.y4d6{bottom:257.445000px;}
.y291{bottom:257.970000px;}
.y1bc{bottom:258.150000px;}
.y533{bottom:258.375000px;}
.y23d{bottom:258.705000px;}
.y161{bottom:259.590000px;}
.y3d1{bottom:260.145000px;}
.y527{bottom:261.765000px;}
.y20b{bottom:261.945000px;}
.y13e{bottom:263.205000px;}
.y4fe{bottom:263.730000px;}
.y53e{bottom:265.215000px;}
.y51a{bottom:265.725000px;}
.yf9{bottom:266.265000px;}
.y50e{bottom:266.970000px;}
.y1a8{bottom:268.815000px;}
.y19a{bottom:268.995000px;}
.y3dd{bottom:272.595000px;}
.y102{bottom:273.495000px;}
.y249{bottom:274.935000px;}
.y290{bottom:275.115000px;}
.y27b{bottom:276.195000px;}
.y25a{bottom:277.455000px;}
.y2ba{bottom:278.175000px;}
.y53d{bottom:279.075000px;}
.y34b{bottom:279.435000px;}
.y2e0{bottom:281.055000px;}
.y2b1{bottom:281.595000px;}
.y29a{bottom:282.675000px;}
.y356{bottom:282.855000px;}
.y21a{bottom:283.035000px;}
.y225{bottom:283.395000px;}
.y13d{bottom:283.935000px;}
.y565{bottom:285.555000px;}
.y26b{bottom:285.735000px;}
.y3d6{bottom:285.915000px;}
.y44b{bottom:286.635000px;}
.y23c{bottom:286.995000px;}
.y179{bottom:287.355000px;}
.y3a0{bottom:287.895000px;}
.y310{bottom:289.335000px;}
.y1d4{bottom:290.235000px;}
.y20a{bottom:290.415000px;}
.y248{bottom:292.035000px;}
.y1fa{bottom:292.755000px;}
.y2e3{bottom:292.935000px;}
.y404{bottom:293.295000px;}
.y1e7{bottom:294.555000px;}
.y547{bottom:294.915000px;}
.y4fd{bottom:295.635000px;}
.y3ee{bottom:296.355000px;}
.y199{bottom:297.255000px;}
.y18d{bottom:298.155000px;}
.y2dc{bottom:298.335000px;}
.y160{bottom:298.515000px;}
.ya6{bottom:298.695000px;}
.y1ca{bottom:298.875000px;}
.y426{bottom:300.495000px;}
.y47{bottom:302.115000px;}
.y55d{bottom:303.735000px;}
.y3dc{bottom:304.455000px;}
.y39e{bottom:305.175000px;}
.y3b4{bottom:305.355000px;}
.y50d{bottom:305.895000px;}
.y28f{bottom:306.975000px;}
.y49e{bottom:307.695000px;}
.y279{bottom:307.875000px;}
.yf8{bottom:308.415000px;}
.y2b9{bottom:310.035000px;}
.y2b0{bottom:313.455000px;}
.y1d3{bottom:313.995000px;}
.y299{bottom:314.535000px;}
.y37a{bottom:314.895000px;}
.y23b{bottom:315.435000px;}
.y16f{bottom:315.615000px;}
.y259{bottom:316.335000px;}
.y26a{bottom:317.415000px;}
.y209{bottom:318.675000px;}
.y247{bottom:320.295000px;}
.y30f{bottom:321.375000px;}
.y347{bottom:321.555000px;}
.y1e6{bottom:322.995000px;}
.y3d0{bottom:323.715000px;}
.y3d5{bottom:324.615000px;}
.y1a7{bottom:324.795000px;}
.y92{bottom:327.135000px;}
.ye0{bottom:328.395000px;}
.y546{bottom:333.975000px;}
.y4fc{bottom:334.515000px;}
.y1f9{bottom:334.875000px;}
.y1bb{bottom:336.135000px;}
.y3db{bottom:336.315000px;}
.y355{bottom:336.675000px;}
.y39c{bottom:336.855000px;}
.y15f{bottom:337.395000px;}
.y1d2{bottom:337.755000px;}
.y28e{bottom:338.835000px;}
.y219{bottom:339.015000px;}
.y3ed{bottom:339.195000px;}
.y224{bottom:339.375000px;}
.y153{bottom:339.555000px;}
.y278{bottom:339.735000px;}
.y56c{bottom:340.095000px;}
.y377{bottom:340.275000px;}
.y46{bottom:340.815000px;}
.y564{bottom:341.535000px;}
.y2b8{bottom:341.715000px;}
.y55c{bottom:342.435000px;}
.y23a{bottom:343.695000px;}
.y50c{bottom:344.595000px;}
.y2af{bottom:345.315000px;}
.y298{bottom:346.215000px;}
.y403{bottom:346.755000px;}
.y246{bottom:348.735000px;}
.y269{bottom:349.275000px;}
.yf7{bottom:350.535000px;}
.y1dc{bottom:351.255000px;}
.y4f8{bottom:351.615000px;}
.y341{bottom:352.335000px;}
.y55b{bottom:352.695000px;}
.y198{bottom:353.235000px;}
.y18c{bottom:354.135000px;}
.y15e{bottom:354.495000px;}
.ya1{bottom:354.675000px;}
.y258{bottom:355.035000px;}
.y91{bottom:355.395000px;}
.y3cf{bottom:355.575000px;}
.y542{bottom:356.115000px;}
.y45{bottom:358.095000px;}
.y39a{bottom:358.275000px;}
.y3b3{bottom:358.995000px;}
.y1ba{bottom:359.895000px;}
.y57f{bottom:360.795000px;}
.y208{bottom:360.975000px;}
.y1d1{bottom:361.515000px;}
.y50b{bottom:361.695000px;}
.y449{bottom:361.875000px;}
.y519{bottom:363.135000px;}
.y30e{bottom:363.495000px;}
.y3da{bottom:367.995000px;}
.y28d{bottom:370.515000px;}
.y277{bottom:371.595000px;}
.y256{bottom:372.135000px;}
.y544{bottom:373.035000px;}
.y4d1{bottom:373.215000px;}
.y2b7{bottom:373.575000px;}
.y1b9{bottom:376.995000px;}
.yc3{bottom:377.535000px;}
.y297{bottom:378.075000px;}
.y376{bottom:379.155000px;}
.y152{bottom:379.515000px;}
.y1a6{bottom:380.775000px;}
.y267{bottom:381.135000px;}
.y3eb{bottom:382.035000px;}
.y56b{bottom:382.395000px;}
.y90{bottom:383.835000px;}
.y1d0{bottom:385.455000px;}
.y239{bottom:385.995000px;}
.y399{bottom:386.715000px;}
.y3ce{bottom:387.435000px;}
.y402{bottom:389.055000px;}
.y351{bottom:389.955000px;}
.y3a9{bottom:390.675000px;}
.y255{bottom:391.575000px;}
.y444{bottom:393.915000px;}
.y10f{bottom:394.095000px;}
.y55a{bottom:394.815000px;}
.y218{bottom:394.995000px;}
.y223{bottom:395.355000px;}
.y1c9{bottom:396.255000px;}
.y474{bottom:397.695000px;}
.y57e{bottom:399.495000px;}
.y3d9{bottom:399.855000px;}
.y28c{bottom:402.375000px;}
.y207{bottom:403.095000px;}
.y276{bottom:403.275000px;}
.y374{bottom:403.815000px;}
.y398{bottom:404.535000px;}
.y1b8{bottom:405.435000px;}
.y30c{bottom:405.615000px;}
.yf6{bottom:406.515000px;}
.y2ae{bottom:408.855000px;}
.y197{bottom:409.215000px;}
.y18b{bottom:409.935000px;}
.y151{bottom:410.115000px;}
.y543{bottom:411.915000px;}
.y8a{bottom:412.095000px;}
.y265{bottom:412.815000px;}
.y2a9{bottom:412.995000px;}
.y42{bottom:413.895000px;}
.y2d1{bottom:414.975000px;}
.y57d{bottom:416.595000px;}
.y419{bottom:418.935000px;}
.y3cd{bottom:419.115000px;}
.ybf{bottom:419.295000px;}
.y254{bottom:420.015000px;}
.y233{bottom:421.275000px;}
.y15d{bottom:424.155000px;}
.y1c8{bottom:424.515000px;}
.y3e8{bottom:424.875000px;}
.y101{bottom:425.955000px;}
.y49d{bottom:426.315000px;}
.y238{bottom:428.115000px;}
.y2f5{bottom:428.295000px;}
.y206{bottom:431.355000px;}
.y3d8{bottom:431.715000px;}
.y1b7{bottom:433.695000px;}
.y28a{bottom:434.235000px;}
.y397{bottom:436.215000px;}
.y36b{bottom:436.395000px;}
.y137{bottom:436.575000px;}
.y1af{bottom:436.755000px;}
.y2b6{bottom:437.115000px;}
.y33e{bottom:437.475000px;}
.y9f{bottom:438.195000px;}
.y563{bottom:438.915000px;}
.ydf{bottom:439.455000px;}
.y2ad{bottom:440.715000px;}
.y295{bottom:441.615000px;}
.y150{bottom:441.975000px;}
.y350{bottom:442.335000px;}
.y261{bottom:444.675000px;}
.y400{bottom:445.035000px;}
.y4c6{bottom:447.060000px;}
.y30b{bottom:447.765000px;}
.y1cf{bottom:447.945000px;}
.y253{bottom:448.320000px;}
.yf5{bottom:448.665000px;}
.y332{bottom:449.925000px;}
.y216{bottom:451.005000px;}
.y222{bottom:451.380000px;}
.yb9{bottom:451.905000px;}
.y393{bottom:454.080000px;}
.y3e{bottom:456.240000px;}
.y509{bottom:456.960000px;}
.y16c{bottom:457.140000px;}
.y275{bottom:457.665000px;}
.y5d{bottom:458.925000px;}
.y2ed{bottom:459.285000px;}
.y205{bottom:459.825000px;}
.y232{bottom:460.185000px;}
.y1f7{bottom:461.460000px;}
.y1b6{bottom:462.165000px;}
.y196{bottom:465.060000px;}
.y14f{bottom:465.945000px;}
.y18a{bottom:465.960000px;}
.y569{bottom:466.665000px;}
.y2f4{bottom:467.025000px;}
.y471{bottom:467.580000px;}
.y3e4{bottom:467.760000px;}
.y2cb{bottom:468.480000px;}
.y33b{bottom:468.825000px;}
.y2a8{bottom:469.005000px;}
.y438{bottom:469.725000px;}
.y237{bottom:470.265000px;}
.y4f7{bottom:472.065000px;}
.y2ac{bottom:472.425000px;}
.y57c{bottom:472.605000px;}
.y294{bottom:473.505000px;}
.y1da{bottom:474.765000px;}
.y260{bottom:476.580000px;}
.y252{bottom:476.745000px;}
.y15c{bottom:480.165000px;}
.y1c7{bottom:480.540000px;}
.y55e{bottom:481.080000px;}
.y274{bottom:481.425000px;}
.yd5{bottom:481.605000px;}
.y87{bottom:481.980000px;}
.y392{bottom:484.665000px;}
.y3f7{bottom:487.560000px;}
.y3a7{bottom:489.345000px;}
.y1b5{bottom:490.425000px;}
.y1a5{bottom:492.585000px;}
.y1ae{bottom:492.765000px;}
.y331{bottom:495.645000px;}
.y2f3{bottom:497.805000px;}
.y410{bottom:497.820000px;}
.y2ec{bottom:497.985000px;}
.y236{bottom:498.540000px;}
.y231{bottom:498.885000px;}
.y46e{bottom:500.325000px;}
.y369{bottom:500.865000px;}
.y2a7{bottom:500.880000px;}
.y300{bottom:501.585000px;}
.y338{bottom:501.765000px;}
.y204{bottom:501.960000px;}
.y391{bottom:502.320000px;}
.y1f6{bottom:503.580000px;}
.y2ab{bottom:504.300000px;}
.y14e{bottom:504.645000px;}
.yf4{bottom:504.660000px;}
.yb8{bottom:505.005000px;}
.y215{bottom:505.185000px;}
.y293{bottom:505.365000px;}
.y1ce{bottom:507.345000px;}
.y9e{bottom:508.065000px;}
.y437{bottom:508.605000px;}
.y16b{bottom:511.485000px;}
.y39{bottom:512.040000px;}
.y230{bottom:516.000000px;}
.y515{bottom:517.800000px;}
.y1b4{bottom:518.865000px;}
.y245{bottom:518.880000px;}
.y189{bottom:520.125000px;}
.y195{bottom:521.040000px;}
.y14d{bottom:521.745000px;}
.y2c5{bottom:522.120000px;}
.y2fe{bottom:522.465000px;}
.y1c6{bottom:522.660000px;}
.y183{bottom:527.505000px;}
.y57b{bottom:528.585000px;}
.y1d9{bottom:528.945000px;}
.y2f2{bottom:529.665000px;}
.y203{bottom:530.205000px;}
.y25f{bottom:530.745000px;}
.y1f5{bottom:531.825000px;}
.y436{bottom:532.365000px;}
.y2a6{bottom:532.545000px;}
.y337{bottom:533.100000px;}
.y251{bottom:533.460000px;}
.y38f{bottom:534.165000px;}
.y330{bottom:534.345000px;}
.y16a{bottom:535.245000px;}
.y493{bottom:535.620000px;}
.y2aa{bottom:536.160000px;}
.y368{bottom:539.565000px;}
.y3cc{bottom:543.525000px;}
.y188{bottom:544.065000px;}
.y443{bottom:546.945000px;}
.yb7{bottom:547.140000px;}
.y1a4{bottom:548.580000px;}
.y1ad{bottom:548.745000px;}
.y15b{bottom:549.825000px;}
.y146{bottom:550.185000px;}
.y235{bottom:552.885000px;}
.y4eb{bottom:553.065000px;}
.y520{bottom:553.245000px;}
.y35{bottom:554.325000px;}
.y25e{bottom:554.505000px;}
.y38e{bottom:556.665000px;}
.y22e{bottom:558.120000px;}
.y36a{bottom:558.660000px;}
.y3a6{bottom:559.005000px;}
.y1f4{bottom:560.280000px;}
.y2eb{bottom:560.625000px;}
.yf3{bottom:560.640000px;}
.y244{bottom:561.000000px;}
.y3e3{bottom:561.165000px;}
.y2fd{bottom:561.345000px;}
.y559{bottom:561.360000px;}
.y250{bottom:561.720000px;}
.y221{bottom:563.160000px;}
.y48f{bottom:564.045000px;}
.y2a5{bottom:564.405000px;}
.y335{bottom:565.140000px;}
.y82{bottom:565.500000px;}
.y182{bottom:566.205000px;}
.y32f{bottom:566.385000px;}
.y12d{bottom:567.825000px;}
.y2f1{bottom:568.545000px;}
.y435{bottom:571.245000px;}
.y514{bottom:572.145000px;}
.y169{bottom:573.945000px;}
.y2c1{bottom:574.140000px;}
.yb6{bottom:575.580000px;}
.y3f6{bottom:576.120000px;}
.y194{bottom:577.005000px;}
.y9d{bottom:577.740000px;}
.y367{bottom:578.445000px;}
.y59{bottom:579.360000px;}
.y3cb{bottom:582.405000px;}
.y187{bottom:582.765000px;}
.y578{bottom:584.580000px;}
.y22c{bottom:585.300000px;}
.y2ef{bottom:585.660000px;}
.y442{bottom:585.825000px;}
.y38d{bottom:588.525000px;}
.y1f3{bottom:588.540000px;}
.y243{bottom:589.260000px;}
.y181{bottom:590.145000px;}
.y24f{bottom:590.160000px;}
.y234{bottom:591.585000px;}
.y100{bottom:592.320000px;}
.y25d{bottom:593.385000px;}
.y4bf{bottom:595.545000px;}
.y363{bottom:595.560000px;}
.y2a4{bottom:596.265000px;}
.y2f{bottom:596.460000px;}
.y2ff{bottom:596.640000px;}
.y2ea{bottom:599.505000px;}
.y2fc{bottom:600.045000px;}
.y200{bottom:600.060000px;}
.yb3{bottom:603.825000px;}
.y1a3{bottom:604.560000px;}
.y32e{bottom:605.085000px;}
.y154{bottom:605.820000px;}
.y38c{bottom:606.360000px;}
.y12c{bottom:606.525000px;}
.y10d{bottom:606.900000px;}
.y214{bottom:607.065000px;}
.y434{bottom:609.945000px;}
.y441{bottom:610.845000px;}
.y168{bottom:612.825000px;}
.y3e2{bottom:615.345000px;}
.y22a{bottom:616.425000px;}
.y135{bottom:616.620000px;}
.y1f2{bottom:616.980000px;}
.y25c{bottom:617.145000px;}
.y2f8{bottom:617.160000px;}
.y242{bottom:617.685000px;}
.y24e{bottom:618.405000px;}
.y220{bottom:619.140000px;}
.y577{bottom:619.320000px;}
.y1c3{bottom:620.025000px;}
.yce{bottom:620.400000px;}
.y3ca{bottom:621.465000px;}
.y3a5{bottom:621.645000px;}
.y327{bottom:622.365000px;}
.y430{bottom:627.090000px;}
.y2a3{bottom:627.990000px;}
.y51e{bottom:628.350000px;}
.y180{bottom:628.890000px;}
.ye6{bottom:630.330000px;}
.y186{bottom:630.510000px;}
.y558{bottom:631.050000px;}
.y1b3{bottom:632.310000px;}
.y193{bottom:633.030000px;}
.y289{bottom:635.370000px;}
.y440{bottom:636.090000px;}
.y167{bottom:636.630000px;}
.y2ee{bottom:637.890000px;}
.y38b{bottom:638.250000px;}
.y2b{bottom:638.610000px;}
.y2c0{bottom:638.790000px;}
.y25b{bottom:640.950000px;}
.y1f1{bottom:645.270000px;}
.y12b{bottom:645.450000px;}
.y213{bottom:645.810000px;}
.yb2{bottom:645.990000px;}
.y24d{bottom:646.890000px;}
.y9c{bottom:647.610000px;}
.y229{bottom:648.150000px;}
.y1bd{bottom:648.510000px;}
.y362{bottom:648.870000px;}
.y53{bottom:649.230000px;}
.y130{bottom:649.410000px;}
.y3c9{bottom:652.290000px;}
.y1ff{bottom:654.270000px;}
.y38a{bottom:655.890000px;}
.y487{bottom:659.310000px;}
.y2a2{bottom:659.850000px;}
.y166{bottom:660.390000px;}
.y1a2{bottom:660.570000px;}
.y43f{bottom:661.110000px;}
.y574{bottom:661.470000px;}
.y185{bottom:669.210000px;}
.y557{bottom:670.110000px;}
.y4ea{bottom:670.830000px;}
.y2f7{bottom:672.090000px;}
.y4be{bottom:672.990000px;}
.y1f0{bottom:673.710000px;}
.yb1{bottom:674.430000px;}
.y288{bottom:674.610000px;}
.y21f{bottom:675.150000px;}
.y12a{bottom:676.050000px;}
.y2e6{bottom:677.670000px;}
.ye{bottom:679.245000px;}
.y325{bottom:682.170000px;}
.y3c8{bottom:684.150000px;}
.y165{bottom:684.330000px;}
.y212{bottom:684.690000px;}
.y43e{bottom:686.310000px;}
.y389{bottom:687.750000px;}
.y192{bottom:689.010000px;}
.y287{bottom:691.710000px;}
.y184{bottom:693.150000px;}
.y26{bottom:694.590000px;}
.y573{bottom:696.390000px;}
.y3c5{bottom:701.250000px;}
.y211{bottom:701.790000px;}
.y1ef{bottom:701.970000px;}
.y360{bottom:702.510000px;}
.y145{bottom:702.690000px;}
.y97{bottom:703.590000px;}
.y388{bottom:705.570000px;}
.y164{bottom:708.090000px;}
.y556{bottom:708.990000px;}
.y50{bottom:710.790000px;}
.y45e{bottom:712.590000px;}
.y129{bottom:714.930000px;}
.y12f{bottom:716.370000px;}
.yb0{bottom:716.550000px;}
.yd{bottom:721.185000px;}
.y24{bottom:722.850000px;}
.y286{bottom:723.390000px;}
.y2f6{bottom:726.270000px;}
.y210{bottom:730.230000px;}
.y1ee{bottom:730.410000px;}
.y21e{bottom:731.130000px;}
.y163{bottom:731.850000px;}
.y35f{bottom:733.470000px;}
.y3c3{bottom:734.370000px;}
.y1a{bottom:734.505000px;}
.y320{bottom:735.270000px;}
.y387{bottom:737.250000px;}
.yff{bottom:744.990000px;}
.ycb{bottom:745.350000px;}
.y128{bottom:746.790000px;}
.y555{bottom:748.050000px;}
.y571{bottom:752.190000px;}
.y386{bottom:755.070000px;}
.y285{bottom:755.250000px;}
.yaf{bottom:758.670000px;}
.y43d{bottom:761.865000px;}
.yc{bottom:762.585000px;}
.y23{bottom:764.790000px;}
.y12e{bottom:770.370000px;}
.y1a1{bottom:770.730000px;}
.y1ac{bottom:772.530000px;}
.y19{bottom:773.745000px;}
.y127{bottom:777.570000px;}
.y43c{bottom:800.745000px;}
.yb{bottom:803.625000px;}
.y22{bottom:804.060000px;}
.y18{bottom:812.445000px;}
.y81{bottom:823.680000px;}
.y21{bottom:824.400000px;}
.y43b{bottom:824.505000px;}
.ya{bottom:845.385000px;}
.y17{bottom:851.325000px;}
.y43a{bottom:863.025000px;}
.y4f{bottom:863.385000px;}
.y513{bottom:878.325000px;}
.y9{bottom:886.470000px;}
.y16{bottom:890.070000px;}
.y4e{bottom:901.770000px;}
.y20{bottom:907.350000px;}
.y512{bottom:917.250000px;}
.y8{bottom:928.230000px;}
.y15{bottom:928.950000px;}
.y4d{bottom:940.650000px;}
.y1f{bottom:946.230000px;}
.y511{bottom:955.950000px;}
.y14{bottom:967.830000px;}
.y7{bottom:969.630000px;}
.y4c{bottom:979.350000px;}
.y510{bottom:979.710000px;}
.y1e{bottom:984.930000px;}
.y13{bottom:1006.530000px;}
.y6{bottom:1011.030000px;}
.y4b{bottom:1018.230000px;}
.y1d{bottom:1023.810000px;}
.y12{bottom:1045.410000px;}
.y5{bottom:1052.430000px;}
.y4a{bottom:1057.110000px;}
.y1c{bottom:1062.690000px;}
.y11{bottom:1084.110000px;}
.y4{bottom:1093.830000px;}
.y49{bottom:1095.810000px;}
.y1b{bottom:1101.390000px;}
.y48{bottom:1134.690000px;}
.y439{bottom:1135.050000px;}
.y3{bottom:1135.230000px;}
.y10{bottom:1140.300000px;}
.y2{bottom:1173.960000px;}
.yf{bottom:1193.580000px;}
.y1{bottom:1194.300000px;}
.h53{height:13.665000px;}
.h4e{height:13.671000px;}
.h8e{height:14.076000px;}
.h6f{height:15.480000px;}
.h73{height:15.660000px;}
.h9e{height:16.905000px;}
.ha1{height:16.920000px;}
.h9d{height:17.085000px;}
.h9f{height:17.100000px;}
.ha3{height:17.130000px;}
.h69{height:18.705000px;}
.h7{height:19.065000px;}
.h40{height:20.001000px;}
.ha4{height:20.700000px;}
.ha0{height:21.780000px;}
.h98{height:23.925000px;}
.h9a{height:24.645000px;}
.hab{height:24.690000px;}
.h64{height:26.265000px;}
.h67{height:26.445000px;}
.h9{height:27.525000px;}
.h4a{height:27.531000px;}
.h49{height:27.540000px;}
.h51{height:27.561000px;}
.h57{height:27.562500px;}
.h62{height:27.576000px;}
.h1c{height:27.705000px;}
.h4b{height:27.711000px;}
.h43{height:27.720000px;}
.h5b{height:27.741000px;}
.h54{height:27.742500px;}
.h55{height:27.756000px;}
.ha2{height:29.685000px;}
.h9c{height:29.871000px;}
.h8d{height:30.045000px;}
.h94{height:30.225000px;}
.h66{height:30.405000px;}
.h8b{height:30.450000px;}
.h89{height:30.600000px;}
.hcc{height:30.630000px;}
.h87{height:30.765000px;}
.h65{height:30.802500px;}
.h6a{height:30.945000px;}
.h71{height:30.951000px;}
.h63{height:30.960000px;}
.h60{height:30.981000px;}
.h72{height:30.982500px;}
.h6e{height:30.990000px;}
.h6b{height:30.996000px;}
.h12{height:31.125000px;}
.h6d{height:31.131000px;}
.h5d{height:31.140000px;}
.h6c{height:31.161000px;}
.h70{height:31.176000px;}
.h91{height:31.305000px;}
.hbf{height:31.320000px;}
.h88{height:31.521000px;}
.h97{height:31.665000px;}
.h80{height:31.701000px;}
.h28{height:31.890000px;}
.ha8{height:32.025000px;}
.h8a{height:32.040000px;}
.h3d{height:32.061000px;}
.haa{height:32.385000px;}
.hf0{height:34.005000px;}
.h9b{height:34.545000px;}
.hc6{height:35.460000px;}
.hb9{height:37.785000px;}
.h99{height:37.980000px;}
.he9{height:38.145000px;}
.hec{height:38.151000px;}
.he8{height:38.160000px;}
.heb{height:38.181000px;}
.hea{height:38.325000px;}
.he7{height:38.370000px;}
.h7b{height:39.045000px;}
.he{height:40.231406px;}
.h2c{height:40.845000px;}
.hd7{height:41.025000px;}
.h29{height:41.040000px;}
.hde{height:41.070000px;}
.h33{height:41.205000px;}
.h68{height:41.211000px;}
.hd{height:41.220000px;}
.h5f{height:41.250000px;}
.hf{height:41.385000px;}
.h1e{height:41.391000px;}
.h26{height:41.400000px;}
.hc{height:41.421000px;}
.h25{height:41.422500px;}
.h10{height:41.430000px;}
.h2f{height:41.436000px;}
.hb3{height:41.565000px;}
.hb2{height:41.616000px;}
.hae{height:41.940000px;}
.had{height:41.976000px;}
.haf{height:42.120000px;}
.hb0{height:42.141000px;}
.h8c{height:42.285000px;}
.hdd{height:42.645000px;}
.ha5{height:46.440000px;}
.hbb{height:46.785000px;}
.hba{height:46.821000px;}
.ha{height:47.344922px;}
.h17{height:47.678906px;}
.he5{height:47.858906px;}
.h44{height:48.616875px;}
.hbc{height:49.845000px;}
.h82{height:50.205000px;}
.h83{height:50.745000px;}
.h84{height:50.925000px;}
.h75{height:51.285000px;}
.h7c{height:51.321000px;}
.h8f{height:51.660000px;}
.h90{height:51.681000px;}
.ha9{height:51.825000px;}
.h79{height:52.185000px;}
.h85{height:52.365000px;}
.h27{height:52.380000px;}
.hb4{height:52.545000px;}
.hdf{height:52.560000px;}
.h95{height:52.581000px;}
.h93{height:52.725000px;}
.h77{height:52.770000px;}
.h76{height:52.905000px;}
.ha7{height:52.920000px;}
.h92{height:53.091000px;}
.h7f{height:53.100000px;}
.h7d{height:54.201000px;}
.h8{height:54.421875px;}
.hb{height:55.065000px;}
.h5a{height:55.071000px;}
.h11{height:55.080000px;}
.h52{height:55.101000px;}
.h50{height:55.110000px;}
.h32{height:55.245000px;}
.h18{height:55.251000px;}
.h23{height:55.260000px;}
.h4d{height:55.281000px;}
.h4f{height:55.282500px;}
.h46{height:55.290000px;}
.h4c{height:55.296000px;}
.h86{height:59.062500px;}
.h7a{height:60.321000px;}
.h13{height:60.825000px;}
.h78{height:62.985000px;}
.hdc{height:63.000000px;}
.h74{height:63.921000px;}
.h2{height:65.884219px;}
.h3c{height:66.225000px;}
.h56{height:67.125000px;}
.h47{height:68.925000px;}
.h21{height:68.940000px;}
.h14{height:68.961000px;}
.hc5{height:68.976000px;}
.h61{height:69.120000px;}
.h20{height:69.141000px;}
.h1b{height:69.156000px;}
.hdb{height:70.041000px;}
.h3{height:70.664062px;}
.h4{height:72.562500px;}
.hd3{height:73.065000px;}
.hc2{height:73.605000px;}
.hce{height:74.001000px;}
.hbd{height:74.004654px;}
.he1{height:74.325000px;}
.he2{height:74.362500px;}
.hc0{height:74.505000px;}
.hb5{height:74.541000px;}
.hd6{height:74.680922px;}
.h3b{height:74.704922px;}
.h81{height:74.884922px;}
.hb6{height:75.585000px;}
.hd1{height:76.522500px;}
.hcb{height:77.220000px;}
.hb7{height:78.156000px;}
.hb8{height:79.200000px;}
.hd9{height:80.280000px;}
.hc8{height:80.805000px;}
.h1f{height:82.605000px;}
.h1a{height:82.785000px;}
.h2b{height:82.791000px;}
.h22{height:82.800000px;}
.hef{height:82.821000px;}
.hd0{height:84.945000px;}
.hb1{height:87.825000px;}
.hd5{height:89.265000px;}
.hed{height:90.648984px;}
.hac{height:92.685000px;}
.h7e{height:94.320000px;}
.hc4{height:94.500000px;}
.hca{height:94.522500px;}
.h5c{height:96.480000px;}
.h58{height:96.645000px;}
.h59{height:96.660000px;}
.h1d{height:96.681000px;}
.ha6{height:97.776000px;}
.he0{height:97.956000px;}
.hbe{height:98.130000px;}
.h45{height:109.821000px;}
.h30{height:110.325000px;}
.hd4{height:114.861000px;}
.hc3{height:116.301000px;}
.hd8{height:117.022500px;}
.hd2{height:117.345000px;}
.hcd{height:117.900000px;}
.hcf{height:118.971000px;}
.h15{height:119.700000px;}
.hda{height:119.736000px;}
.h96{height:121.530000px;}
.h5e{height:122.790000px;}
.h2d{height:124.221000px;}
.he3{height:124.230000px;}
.hc1{height:124.731000px;}
.hc7{height:126.381000px;}
.hc9{height:126.885000px;}
.h24{height:137.901000px;}
.h2e{height:138.060000px;}
.h2a{height:138.081000px;}
.h48{height:140.796000px;}
.h36{height:151.725000px;}
.h3f{height:151.740000px;}
.h34{height:151.755000px;}
.h37{height:151.761000px;}
.h42{height:151.770000px;}
.h41{height:151.911000px;}
.h31{height:155.865000px;}
.he4{height:165.615000px;}
.h35{height:165.630000px;}
.h38{height:179.295000px;}
.h3e{height:179.310000px;}
.h39{height:212.070000px;}
.h19{height:220.695000px;}
.h3a{height:220.875000px;}
.hee{height:234.555000px;}
.h16{height:262.140000px;}
.he6{height:303.540000px;}
.h5{height:892.980000px;}
.h6{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w22{width:65.685000px;}
.w27{width:65.865000px;}
.w15{width:65.910000px;}
.w7d{width:68.970000px;}
.wf{width:71.316000px;}
.we{width:73.470000px;}
.w88{width:73.650000px;}
.w90{width:73.785000px;}
.w89{width:73.836000px;}
.w83{width:74.550000px;}
.w64{width:74.910000px;}
.w4b{width:75.225000px;}
.w3e{width:75.405000px;}
.w34{width:75.585000px;}
.w2d{width:75.810000px;}
.w7e{width:81.576000px;}
.w8{width:81.936000px;}
.w57{width:82.116000px;}
.w23{width:82.836000px;}
.w8c{width:83.916000px;}
.w9{width:84.225000px;}
.w65{width:84.276000px;}
.w3a{width:95.076000px;}
.w35{width:95.616000px;}
.w3f{width:96.336000px;}
.w43{width:97.236000px;}
.w47{width:102.636000px;}
.w4e{width:102.816000px;}
.w8d{width:103.305000px;}
.w78{width:105.465000px;}
.w7f{width:110.865000px;}
.w58{width:111.945000px;}
.w7{width:113.430000px;}
.w24{width:114.825000px;}
.w10{width:116.085000px;}
.w6c{width:116.316000px;}
.w6d{width:123.285000px;}
.w8a{width:126.885000px;}
.w75{width:127.476000px;}
.w4{width:133.416000px;}
.w39{width:134.445000px;}
.w37{width:134.496000px;}
.w16{width:137.325000px;}
.wc{width:137.505000px;}
.w1c{width:137.556000px;}
.w66{width:144.885000px;}
.w5b{width:145.065000px;}
.w28{width:147.045000px;}
.w1e{width:148.125000px;}
.w76{width:152.265000px;}
.w62{width:152.295000px;}
.w86{width:155.505000px;}
.w36{width:155.685000px;}
.w30{width:156.405000px;}
.w7c{width:157.305000px;}
.w13{width:158.385000px;}
.w8b{width:158.745000px;}
.w6f{width:158.760000px;}
.w17{width:158.790000px;}
.w81{width:159.330000px;}
.w63{width:160.905000px;}
.w2e{width:160.950000px;}
.w6a{width:165.765000px;}
.w4d{width:166.305000px;}
.w82{width:168.285000px;}
.w4c{width:168.465000px;}
.w5f{width:169.185000px;}
.w74{width:169.380000px;}
.w5d{width:169.950000px;}
.w68{width:172.830000px;}
.w55{width:173.190000px;}
.w72{width:176.925000px;}
.w2c{width:177.645000px;}
.w71{width:180.015000px;}
.w70{width:180.030000px;}
.w52{width:181.245000px;}
.w2a{width:182.190000px;}
.w69{width:187.215000px;}
.w19{width:187.545000px;}
.w2b{width:188.475000px;}
.w1a{width:190.605000px;}
.w25{width:191.355000px;}
.w21{width:197.490000px;}
.w4f{width:198.735000px;}
.w48{width:198.915000px;}
.w44{width:200.175000px;}
.w40{width:200.355000px;}
.w3b{width:200.535000px;}
.w7b{width:200.715000px;}
.w29{width:201.075000px;}
.w1f{width:201.225000px;}
.w1d{width:201.255000px;}
.w5a{width:201.270000px;}
.w11{width:201.615000px;}
.w31{width:203.385000px;}
.w77{width:205.755000px;}
.w7a{width:206.310000px;}
.w61{width:206.490000px;}
.w2f{width:209.715000px;}
.w8e{width:210.075000px;}
.w85{width:210.270000px;}
.w6e{width:210.975000px;}
.w5e{width:211.335000px;}
.w18{width:211.875000px;}
.w8f{width:213.870000px;}
.w87{width:214.035000px;}
.w84{width:214.755000px;}
.w12{width:215.310000px;}
.w26{width:216.735000px;}
.w56{width:218.715000px;}
.w60{width:221.595000px;}
.wa{width:222.495000px;}
.wb{width:222.690000px;}
.w14{width:226.635000px;}
.wd{width:233.115000px;}
.w54{width:233.475000px;}
.w67{width:233.835000px;}
.w38{width:236.175000px;}
.w20{width:236.895000px;}
.w73{width:243.375000px;}
.w1b{width:243.735000px;}
.w59{width:247.695000px;}
.w5c{width:258.315000px;}
.w80{width:260.115000px;}
.w79{width:266.595000px;}
.w50{width:267.690000px;}
.w49{width:267.870000px;}
.w51{width:268.215000px;}
.w4a{width:268.395000px;}
.w45{width:270.030000px;}
.w46{width:270.375000px;}
.w41{width:270.390000px;}
.w42{width:270.735000px;}
.w3c{width:270.930000px;}
.w3d{width:271.275000px;}
.w33{width:275.595000px;}
.w32{width:275.640000px;}
.w6b{width:276.315000px;}
.w5{width:326.355000px;}
.w6{width:494.535000px;}
.w53{width:594.630000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w2{width:1262.880000px;}
.w3{width:1263.000000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.x9{left:85.500000px;}
.x58{left:94.320000px;}
.x1{left:105.876000px;}
.x54{left:112.500000px;}
.x7{left:158.970000px;}
.xf{left:168.885000px;}
.x42{left:171.405000px;}
.x2e{left:182.565000px;}
.x36{left:184.185000px;}
.x37{left:189.585000px;}
.xb{left:220.545000px;}
.x3{left:242.130000px;}
.x10{left:253.845000px;}
.x4c{left:264.465000px;}
.x15{left:275.085000px;}
.x51{left:280.125000px;}
.x3b{left:281.925000px;}
.x25{left:285.345000px;}
.x19{left:296.505000px;}
.x27{left:317.745000px;}
.x5b{left:319.575000px;}
.x8{left:322.635000px;}
.xe{left:330.195000px;}
.x2f{left:338.985000px;}
.x53{left:342.255000px;}
.x1d{left:349.605000px;}
.x3a{left:351.765000px;}
.x6{left:355.935000px;}
.x22{left:370.845000px;}
.x2b{left:373.905000px;}
.x46{left:381.495000px;}
.x33{left:383.295000px;}
.x35{left:384.375000px;}
.x38{left:389.235000px;}
.x5{left:407.415000px;}
.x49{left:413.355000px;}
.x4{left:446.505000px;}
.x2{left:472.965000px;}
.x11{left:477.075000px;}
.x5c{left:486.075000px;}
.x55{left:490.575000px;}
.x59{left:509.115000px;}
.x1a{left:519.735000px;}
.x3c{left:530.355000px;}
.x4d{left:531.795000px;}
.x29{left:540.975000px;}
.xc{left:547.635000px;}
.x43{left:551.595000px;}
.x3f{left:561.675000px;}
.x30{left:572.835000px;}
.x4a{left:583.455000px;}
.x1e{left:594.075000px;}
.x23{left:608.475000px;}
.x2c{left:650.460000px;}
.x34{left:654.960000px;}
.x39{left:657.840000px;}
.x1b{left:679.260000px;}
.x5a{left:689.880000px;}
.x16{left:693.660000px;}
.x12{left:700.500000px;}
.x56{left:701.580000px;}
.x28{left:702.660000px;}
.x31{left:708.060000px;}
.x3d{left:711.660000px;}
.x47{left:721.740000px;}
.x44{left:725.160000px;}
.x1f{left:732.360000px;}
.x4e{left:739.020000px;}
.x40{left:768.900000px;}
.x24{left:806.880000px;}
.x13{left:838.740000px;}
.x17{left:852.780000px;}
.x57{left:857.820000px;}
.x4b{left:864.660000px;}
.x1c{left:891.870000px;}
.x48{left:902.490000px;}
.x2a{left:913.110000px;}
.x41{left:921.930000px;}
.x3e{left:923.730000px;}
.x2d{left:926.790000px;}
.x20{left:934.350000px;}
.x4f{left:940.470000px;}
.x32{left:944.970000px;}
.x45{left:955.590000px;}
.xd{left:1042.890000px;}
.x26{left:1070.250000px;}
.x52{left:1071.510000px;}
.x14{left:1072.590000px;}
.x18{left:1080.150000px;}
.x21{left:1083.210000px;}
.x50{left:1098.510000px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v4{vertical-align:24.320000pt;}
.ls10{letter-spacing:-1.477333pt;}
.ls26{letter-spacing:-0.960000pt;}
.ls24{letter-spacing:-0.880000pt;}
.ls16{letter-spacing:-0.837333pt;}
.ls25{letter-spacing:-0.800000pt;}
.ls23{letter-spacing:-0.682667pt;}
.ls21{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.478933pt;}
.ls20{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.400533pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.239467pt;}
.ls11{letter-spacing:-0.198933pt;}
.ls28{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.161067pt;}
.lsf{letter-spacing:-0.158933pt;}
.ls13{letter-spacing:-0.112000pt;}
.ls1b{letter-spacing:-0.096000pt;}
.ls17{letter-spacing:-0.080533pt;}
.ls4{letter-spacing:-0.040320pt;}
.ls0{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.096000pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.133120pt;}
.ls15{letter-spacing:0.135467pt;}
.ls7{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.161067pt;}
.ls12{letter-spacing:0.161280pt;}
.ls27{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.198933pt;}
.lsa{letter-spacing:0.199040pt;}
.ls1c{letter-spacing:0.225280pt;}
.lsb{letter-spacing:0.239467pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.260480pt;}
.ls6{letter-spacing:0.279467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.560000pt;}
.ls19{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.801280pt;}
.ls1d{letter-spacing:0.960000pt;}
.ls22{letter-spacing:48.896000pt;}
.ws19{word-spacing:-64.000000pt;}
.ws7{word-spacing:-42.880000pt;}
.ws16{word-spacing:-16.256000pt;}
.ws1e{word-spacing:-16.192000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws18{word-spacing:-15.744000pt;}
.ws1f{word-spacing:-12.096000pt;}
.ws15{word-spacing:-11.904000pt;}
.ws20{word-spacing:-11.280000pt;}
.ws8{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.999467pt;}
.ws10{word-spacing:-10.959467pt;}
.wsc{word-spacing:-10.918933pt;}
.ws9{word-spacing:-10.881067pt;}
.ws1d{word-spacing:-10.880000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.679680pt;}
.ws13{word-spacing:-10.639467pt;}
.wsd{word-spacing:-10.561067pt;}
.ws2{word-spacing:-10.558933pt;}
.ws12{word-spacing:-10.521067pt;}
.ws4{word-spacing:-10.480533pt;}
.wsa{word-spacing:-10.400000pt;}
.wsb{word-spacing:-10.319467pt;}
.wsf{word-spacing:-10.241067pt;}
.ws1a{word-spacing:-10.037333pt;}
.ws1c{word-spacing:-9.920000pt;}
.ws14{word-spacing:-9.882667pt;}
.ws1b{word-spacing:-9.840000pt;}
.wse{word-spacing:-9.242667pt;}
.ws11{word-spacing:-7.040000pt;}
.ws17{word-spacing:-6.720000pt;}
.ws1{word-spacing:0.000000pt;}
._a{margin-left:-3.379200pt;}
._9{margin-left:-2.198400pt;}
._1{margin-left:-1.280000pt;}
._0{width:1.184000pt;}
._5{width:2.252587pt;}
._b{width:4.288000pt;}
._c{width:5.248000pt;}
._8{width:132.394667pt;}
._3{width:697.226667pt;}
._2{width:752.138667pt;}
._7{width:757.386667pt;}
._6{width:1136.234667pt;}
._4{width:1165.706667pt;}
.fs4{font-size:26.880000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:2.546667pt;}
.y96{bottom:2.552000pt;}
.y2a{bottom:2.560000pt;}
.y1e8{bottom:2.586667pt;}
.y3c{bottom:2.706667pt;}
.y80{bottom:2.712000pt;}
.y44{bottom:2.720000pt;}
.yfa{bottom:2.746667pt;}
.y344{bottom:3.040000pt;}
.y4c5{bottom:3.506667pt;}
.y396{bottom:3.666667pt;}
.y385{bottom:3.672000pt;}
.y34a{bottom:3.680000pt;}
.y3bd{bottom:3.826667pt;}
.y361{bottom:3.840000pt;}
.y336{bottom:3.986667pt;}
.y33a{bottom:4.000000pt;}
.y26e{bottom:4.146667pt;}
.y2a1{bottom:4.152000pt;}
.y25{bottom:4.160000pt;}
.y264{bottom:4.186667pt;}
.y27e{bottom:4.306667pt;}
.y284{bottom:4.312000pt;}
.y27a{bottom:4.320000pt;}
.y313{bottom:4.466667pt;}
.yc2{bottom:4.480000pt;}
.y3c1{bottom:4.626667pt;}
.y33d{bottom:4.640000pt;}
.y257{bottom:4.800000pt;}
.y4aa{bottom:4.946667pt;}
.y525{bottom:4.960000pt;}
.y40f{bottom:5.106667pt;}
.y58{bottom:5.120000pt;}
.y46d{bottom:5.266667pt;}
.y57a{bottom:5.426667pt;}
.y13f{bottom:5.466667pt;}
.y416{bottom:5.586667pt;}
.y4f6{bottom:5.600000pt;}
.y37f{bottom:5.746667pt;}
.y39d{bottom:5.760000pt;}
.y2d9{bottom:6.080000pt;}
.y390{bottom:6.240000pt;}
.y4b6{bottom:6.392000pt;}
.y433{bottom:6.400000pt;}
.y319{bottom:6.546667pt;}
.y31f{bottom:6.706667pt;}
.y41f{bottom:6.720000pt;}
.y66{bottom:6.880000pt;}
.y2ca{bottom:7.026667pt;}
.y324{bottom:7.040000pt;}
.y494{bottom:7.186667pt;}
.y39b{bottom:7.200000pt;}
.y54b{bottom:7.346667pt;}
.y554{bottom:7.352000pt;}
.y2df{bottom:7.360000pt;}
.ybc{bottom:7.520000pt;}
.y3b7{bottom:7.666667pt;}
.y134{bottom:7.680000pt;}
.y2d0{bottom:7.826667pt;}
.y306{bottom:7.840000pt;}
.y1c2{bottom:8.000000pt;}
.y4e8{bottom:8.152000pt;}
.y1e5{bottom:8.160000pt;}
.y22f{bottom:8.306667pt;}
.y39f{bottom:8.480000pt;}
.y15a{bottom:8.626667pt;}
.y38{bottom:8.640000pt;}
.y34{bottom:8.786667pt;}
.y7d{bottom:8.792000pt;}
.y27{bottom:8.800000pt;}
.yd4{bottom:8.826667pt;}
.y1c4{bottom:8.840000pt;}
.y472{bottom:8.946667pt;}
.y401{bottom:8.986667pt;}
.y3f2{bottom:9.106667pt;}
.y45d{bottom:9.112000pt;}
.y346{bottom:9.120000pt;}
.y505{bottom:9.266667pt;}
.y202{bottom:9.426667pt;}
.y1db{bottom:9.440000pt;}
.y16e{bottom:9.586667pt;}
.y52{bottom:9.600000pt;}
.y394{bottom:9.746667pt;}
.y383{bottom:9.752000pt;}
.y3bb{bottom:9.906667pt;}
.y348{bottom:9.920000pt;}
.y22d{bottom:10.066667pt;}
.y339{bottom:10.080000pt;}
.y33f{bottom:10.106667pt;}
.y26d{bottom:10.226667pt;}
.y2a0{bottom:10.232000pt;}
.y268{bottom:10.240000pt;}
.y262{bottom:10.266667pt;}
.y22b{bottom:10.280000pt;}
.y270{bottom:10.386667pt;}
.y282{bottom:10.392000pt;}
.y266{bottom:10.400000pt;}
.y296{bottom:10.426667pt;}
.y32d{bottom:10.440000pt;}
.y333{bottom:10.546667pt;}
.y375{bottom:10.560000pt;}
.y314{bottom:10.586667pt;}
.y3bf{bottom:10.706667pt;}
.yc0{bottom:10.720000pt;}
.y3c6{bottom:10.880000pt;}
.y136{bottom:10.906667pt;}
.y3ff{bottom:11.026667pt;}
.y11e{bottom:11.040000pt;}
.y2e9{bottom:11.066667pt;}
.y42a{bottom:11.186667pt;}
.y450{bottom:11.200000pt;}
.y40b{bottom:11.346667pt;}
.y418{bottom:11.666667pt;}
.y575{bottom:11.680000pt;}
.y37d{bottom:11.826667pt;}
.y28{bottom:11.840000pt;}
.y2db{bottom:12.160000pt;}
.y475{bottom:12.320000pt;}
.y49c{bottom:12.480000pt;}
.y2c4{bottom:12.626667pt;}
.y421{bottom:12.800000pt;}
.y31c{bottom:12.946667pt;}
.y2c8{bottom:13.106667pt;}
.y30d{bottom:13.120000pt;}
.y2f0{bottom:13.266667pt;}
.y354{bottom:13.280000pt;}
.y35a{bottom:13.426667pt;}
.y378{bottom:13.440000pt;}
.y549{bottom:13.466667pt;}
.y551{bottom:13.586667pt;}
.ybe{bottom:13.600000pt;}
.y366{bottom:13.746667pt;}
.y2d3{bottom:13.760000pt;}
.y2ce{bottom:13.906667pt;}
.y30a{bottom:13.920000pt;}
.y35e{bottom:14.066667pt;}
.y2fb{bottom:14.426667pt;}
.ycd{bottom:14.560000pt;}
.y41{bottom:14.706667pt;}
.yc4{bottom:14.720000pt;}
.y31{bottom:14.866667pt;}
.yca{bottom:14.872000pt;}
.y29{bottom:14.880000pt;}
.ycf{bottom:14.906667pt;}
.y1c5{bottom:14.920000pt;}
.y3b{bottom:15.026667pt;}
.y7f{bottom:15.032000pt;}
.y43{bottom:15.040000pt;}
.ya0{bottom:15.066667pt;}
.y3e9{bottom:15.200000pt;}
.y3f0{bottom:15.226667pt;}
.y507{bottom:15.346667pt;}
.y342{bottom:15.360000pt;}
.y3b2{bottom:15.520000pt;}
.y395{bottom:15.826667pt;}
.y4e9{bottom:15.986667pt;}
.y384{bottom:15.992000pt;}
.y349{bottom:16.000000pt;}
.y3bc{bottom:16.146667pt;}
.y178{bottom:16.160000pt;}
.y340{bottom:16.186667pt;}
.y201{bottom:16.306667pt;}
.y217{bottom:16.320000pt;}
.y28b{bottom:16.346667pt;}
.y16d{bottom:16.466667pt;}
.y283{bottom:16.472000pt;}
.y51{bottom:16.480000pt;}
.y263{bottom:16.506667pt;}
.y334{bottom:16.626667pt;}
.y44a{bottom:16.640000pt;}
.y312{bottom:16.666667pt;}
.y32b{bottom:16.680000pt;}
.y473{bottom:16.786667pt;}
.yc1{bottom:16.800000pt;}
.y3c0{bottom:16.946667pt;}
.y33c{bottom:16.960000pt;}
.y4dd{bottom:16.986667pt;}
.y316{bottom:17.106667pt;}
.y3c7{bottom:17.120000pt;}
.y31a{bottom:17.266667pt;}
.y524{bottom:17.280000pt;}
.y40e{bottom:17.426667pt;}
.y57{bottom:17.440000pt;}
.y428{bottom:17.466667pt;}
.y469{bottom:17.586667pt;}
.y4e6{bottom:17.746667pt;}
.y576{bottom:17.760000pt;}
.y37e{bottom:17.906667pt;}
.y4f5{bottom:17.920000pt;}
.y4d0{bottom:18.066667pt;}
.y326{bottom:18.080000pt;}
.y4a6{bottom:18.240000pt;}
.y2d7{bottom:18.400000pt;}
.y499{bottom:18.560000pt;}
.y4b2{bottom:18.712000pt;}
.y431{bottom:18.720000pt;}
.y318{bottom:18.866667pt;}
.y31e{bottom:19.026667pt;}
.y65{bottom:19.040000pt;}
.y323{bottom:19.200000pt;}
.y2c6{bottom:19.346667pt;}
.y352{bottom:19.360000pt;}
.y358{bottom:19.506667pt;}
.y379{bottom:19.520000pt;}
.y54a{bottom:19.546667pt;}
.y54e{bottom:19.666667pt;}
.y2dd{bottom:19.680000pt;}
.y364{bottom:19.826667pt;}
.yba{bottom:19.840000pt;}
.y373{bottom:19.866667pt;}
.y2cc{bottom:19.986667pt;}
.y2d2{bottom:20.000000pt;}
.y3b6{bottom:20.026667pt;}
.y35d{bottom:20.146667pt;}
.y1c0{bottom:20.160000pt;}
.y1e4{bottom:20.480000pt;}
.y579{bottom:20.626667pt;}
.y572{bottom:20.640000pt;}
.y2f9{bottom:20.666667pt;}
.y159{bottom:20.826667pt;}
.y33{bottom:20.946667pt;}
.yfe{bottom:20.952000pt;}
.y2c{bottom:20.960000pt;}
.y17b{bottom:20.986667pt;}
.y328{bottom:21.000000pt;}
.y3d{bottom:21.106667pt;}
.y7b{bottom:21.112000pt;}
.y8e{bottom:21.120000pt;}
.yd3{bottom:21.146667pt;}
.yb5{bottom:21.160000pt;}
.y45c{bottom:21.266667pt;}
.y3ec{bottom:21.280000pt;}
.y3ea{bottom:21.306667pt;}
.y345{bottom:21.440000pt;}
.y3f1{bottom:21.466667pt;}
.y50a{bottom:21.586667pt;}
.y3ae{bottom:21.600000pt;}
.y504{bottom:21.626667pt;}
.y448{bottom:21.760000pt;}
.y480{bottom:22.066667pt;}
.y4bd{bottom:22.080000pt;}
.y48d{bottom:22.400000pt;}
.y37{bottom:22.720000pt;}
.y329{bottom:22.760000pt;}
.yf2{bottom:22.880000pt;}
.y11d{bottom:23.200000pt;}
.y3fe{bottom:23.346667pt;}
.y521{bottom:23.360000pt;}
.y2e7{bottom:23.386667pt;}
.y409{bottom:23.506667pt;}
.y54{bottom:23.520000pt;}
.y429{bottom:23.546667pt;}
.y413{bottom:23.986667pt;}
.y54f{bottom:24.306667pt;}
.y545{bottom:24.320000pt;}
.y54c{bottom:24.346667pt;}
.y552{bottom:24.466667pt;}
.y2d5{bottom:24.480000pt;}
.y497{bottom:24.800000pt;}
.y2c2{bottom:24.946667pt;}
.y31b{bottom:25.106667pt;}
.y41c{bottom:25.146667pt;}
.y321{bottom:25.280000pt;}
.y2c7{bottom:25.426667pt;}
.y359{bottom:25.586667pt;}
.y353{bottom:25.600000pt;}
.y2de{bottom:25.760000pt;}
.ybd{bottom:25.920000pt;}
.y365{bottom:26.066667pt;}
.y131{bottom:26.080000pt;}
.y3b8{bottom:26.106667pt;}
.y2cd{bottom:26.226667pt;}
.y309{bottom:26.240000pt;}
.y1be{bottom:26.400000pt;}
.ycc{bottom:26.720000pt;}
.y2fa{bottom:26.746667pt;}
.y241{bottom:27.026667pt;}
.y36{bottom:27.040000pt;}
.y1f8{bottom:27.066667pt;}
.y3a{bottom:27.186667pt;}
.y7e{bottom:27.192000pt;}
.y2e{bottom:27.200000pt;}
.y30{bottom:27.226667pt;}
.yb4{bottom:27.240000pt;}
.y343{bottom:27.520000pt;}
.y501{bottom:27.706667pt;}
.y3b1{bottom:27.840000pt;}
.y516{bottom:27.866667pt;}
.y4b9{bottom:28.160000pt;}
.y177{bottom:28.480000pt;}
.y40{bottom:28.786667pt;}
.y32a{bottom:28.840000pt;}
.y4d2{bottom:28.960000pt;}
.y45f{bottom:29.280000pt;}
.y4db{bottom:29.306667pt;}
.y3fb{bottom:29.426667pt;}
.y42d{bottom:29.586667pt;}
.y44c{bottom:29.600000pt;}
.y42b{bottom:29.626667pt;}
.y407{bottom:29.746667pt;}
.y56{bottom:29.760000pt;}
.y467{bottom:29.786667pt;}
.y411{bottom:30.066667pt;}
.y3a8{bottom:30.080000pt;}
.y4cf{bottom:30.226667pt;}
.y4f4{bottom:30.240000pt;}
.y2d6{bottom:30.560000pt;}
.y4c0{bottom:30.600000pt;}
.y508{bottom:30.720000pt;}
.y495{bottom:30.880000pt;}
.y317{bottom:31.026667pt;}
.y4b0{bottom:31.032000pt;}
.y432{bottom:31.040000pt;}
.y41a{bottom:31.226667pt;}
.y31d{bottom:31.346667pt;}
.y64{bottom:31.360000pt;}
.y2c9{bottom:31.506667pt;}
.y322{bottom:31.520000pt;}
.y3c4{bottom:31.840000pt;}
.ybb{bottom:32.000000pt;}
.y372{bottom:32.026667pt;}
.y133{bottom:32.160000pt;}
.y2d4{bottom:32.186667pt;}
.y2cf{bottom:32.306667pt;}
.y305{bottom:32.320000pt;}
.y482{bottom:32.466667pt;}
.y1bf{bottom:32.480000pt;}
.y1e3{bottom:32.640000pt;}
.y158{bottom:33.146667pt;}
.y5c{bottom:33.266667pt;}
.y98{bottom:33.280000pt;}
.yd2{bottom:33.306667pt;}
.y52b{bottom:33.426667pt;}
.y7c{bottom:33.432000pt;}
.ya2{bottom:33.440000pt;}
.y8d{bottom:33.466667pt;}
.y45b{bottom:33.586667pt;}
.y503{bottom:33.786667pt;}
.y3ad{bottom:33.920000pt;}
.y518{bottom:33.946667pt;}
.y47f{bottom:34.266667pt;}
.y4b7{bottom:34.400000pt;}
.y48b{bottom:34.560000pt;}
.y32c{bottom:35.080000pt;}
.yf1{bottom:35.200000pt;}
.y460{bottom:35.360000pt;}
.y4e0{bottom:35.386667pt;}
.y3f8{bottom:35.506667pt;}
.y11c{bottom:35.520000pt;}
.y2e8{bottom:35.546667pt;}
.y51f{bottom:35.680000pt;}
.y408{bottom:35.826667pt;}
.y44d{bottom:35.840000pt;}
.y46b{bottom:36.026667pt;}
.y4e3{bottom:36.146667pt;}
.y412{bottom:36.306667pt;}
.y4ee{bottom:36.320000pt;}
.y4c9{bottom:36.466667pt;}
.y4a1{bottom:36.640000pt;}
.y2da{bottom:36.800000pt;}
.y4c1{bottom:36.840000pt;}
.y496{bottom:36.960000pt;}
.y2c3{bottom:37.106667pt;}
.y4fa{bottom:37.440000pt;}
.y41b{bottom:37.466667pt;}
.y3e5{bottom:37.746667pt;}
.y422{bottom:37.920000pt;}
.y406{bottom:38.240000pt;}
.y301{bottom:38.400000pt;}
.y483{bottom:38.546667pt;}
.y46f{bottom:38.560000pt;}
.y3f{bottom:39.346667pt;}
.y2d{bottom:39.360000pt;}
.y13c{bottom:39.386667pt;}
.y5b{bottom:39.506667pt;}
.ya4{bottom:39.520000pt;}
.y8b{bottom:39.546667pt;}
.y455{bottom:39.666667pt;}
.y3aa{bottom:40.000000pt;}
.y506{bottom:40.026667pt;}
.y445{bottom:40.160000pt;}
.y4b8{bottom:40.480000pt;}
.y479{bottom:40.506667pt;}
.y176{bottom:40.800000pt;}
.y4d4{bottom:41.280000pt;}
.y4da{bottom:41.466667pt;}
.y462{bottom:41.600000pt;}
.y3fa{bottom:41.746667pt;}
.y523{bottom:41.760000pt;}
.y4a9{bottom:41.786667pt;}
.y40d{bottom:41.906667pt;}
.y55{bottom:41.920000pt;}
.y466{bottom:42.106667pt;}
.y415{bottom:42.386667pt;}
.y4f3{bottom:42.400000pt;}
.y4ce{bottom:42.546667pt;}
.y2d8{bottom:42.880000pt;}
.y4c2{bottom:42.920000pt;}
.y4af{bottom:43.186667pt;}
.y498{bottom:43.200000pt;}
.y41d{bottom:43.546667pt;}
.y60{bottom:43.680000pt;}
.y3e7{bottom:43.826667pt;}
.y423{bottom:44.000000pt;}
.y36d{bottom:44.346667pt;}
.y132{bottom:44.480000pt;}
.y485{bottom:44.626667pt;}
.y304{bottom:44.640000pt;}
.y1c1{bottom:44.800000pt;}
.y1e2{bottom:44.960000pt;}
.ye1{bottom:45.440000pt;}
.y155{bottom:45.466667pt;}
.y88{bottom:45.586667pt;}
.y99{bottom:45.600000pt;}
.y8c{bottom:45.626667pt;}
.y45a{bottom:45.906667pt;}
.y4d7{bottom:45.946667pt;}
.y502{bottom:46.106667pt;}
.y3ac{bottom:46.240000pt;}
.y517{bottom:46.266667pt;}
.y464{bottom:46.426667pt;}
.y4bc{bottom:46.560000pt;}
.y47e{bottom:46.586667pt;}
.y48a{bottom:46.880000pt;}
.y4d5{bottom:47.360000pt;}
.yeb{bottom:47.520000pt;}
.y4ac{bottom:47.666667pt;}
.y463{bottom:47.680000pt;}
.y4df{bottom:47.706667pt;}
.y3fd{bottom:47.826667pt;}
.y11b{bottom:47.866667pt;}
.y51c{bottom:47.986667pt;}
.y44f{bottom:48.000000pt;}
.y40a{bottom:48.186667pt;}
.y417{bottom:48.466667pt;}
.y4c7{bottom:48.626667pt;}
.y4ec{bottom:48.640000pt;}
.y49f{bottom:48.960000pt;}
.y4c4{bottom:49.000000pt;}
.y49b{bottom:49.280000pt;}
.y4b4{bottom:49.426667pt;}
.y420{bottom:49.626667pt;}
.y5e{bottom:49.760000pt;}
.y425{bottom:50.240000pt;}
.y36e{bottom:50.426667pt;}
.y308{bottom:50.720000pt;}
.y486{bottom:50.866667pt;}
.y492{bottom:50.880000pt;}
.y1dd{bottom:51.040000pt;}
.y488{bottom:51.200000pt;}
.y75{bottom:51.666667pt;}
.y9b{bottom:51.680000pt;}
.y5a{bottom:51.706667pt;}
.y144{bottom:51.826667pt;}
.ya3{bottom:51.840000pt;}
.y8f{bottom:51.866667pt;}
.y453{bottom:51.986667pt;}
.y3b0{bottom:52.346667pt;}
.y477{bottom:52.666667pt;}
.y4bb{bottom:52.800000pt;}
.y175{bottom:52.960000pt;}
.y4d3{bottom:53.440000pt;}
.yed{bottom:53.600000pt;}
.y461{bottom:53.760000pt;}
.y4d9{bottom:53.786667pt;}
.y3f9{bottom:53.906667pt;}
.y4a8{bottom:53.946667pt;}
.y522{bottom:54.080000pt;}
.y44e{bottom:54.240000pt;}
.y40c{bottom:54.266667pt;}
.y4e5{bottom:54.546667pt;}
.y414{bottom:54.706667pt;}
.y4f2{bottom:54.720000pt;}
.y4cd{bottom:54.866667pt;}
.y4a5{bottom:55.040000pt;}
.y4c3{bottom:55.080000pt;}
.y49a{bottom:55.360000pt;}
.y4ae{bottom:55.506667pt;}
.y5f{bottom:55.840000pt;}
.y41e{bottom:55.866667pt;}
.y3e6{bottom:56.146667pt;}
.y424{bottom:56.320000pt;}
.y36c{bottom:56.666667pt;}
.y303{bottom:56.800000pt;}
.y484{bottom:56.946667pt;}
.y470{bottom:56.960000pt;}
.y491{bottom:57.000000pt;}
.y1e1{bottom:57.280000pt;}
.y157{bottom:57.626667pt;}
.ya8{bottom:57.746667pt;}
.ye2{bottom:57.760000pt;}
.y53c{bottom:57.786667pt;}
.y109{bottom:57.906667pt;}
.yd6{bottom:57.920000pt;}
.yc6{bottom:57.946667pt;}
.y459{bottom:58.066667pt;}
.y3ab{bottom:58.426667pt;}
.y447{bottom:58.586667pt;}
.y47d{bottom:58.906667pt;}
.y170{bottom:59.200000pt;}
.yea{bottom:59.680000pt;}
.y4de{bottom:59.866667pt;}
.y11a{bottom:60.026667pt;}
.y3fc{bottom:60.146667pt;}
.y46a{bottom:60.506667pt;}
.y4ed{bottom:60.800000pt;}
.y4c8{bottom:60.946667pt;}
.y4a0{bottom:61.280000pt;}
.y4b3{bottom:61.586667pt;}
.y4f9{bottom:62.080000pt;}
.y307{bottom:63.040000pt;}
.y9a{bottom:63.840000pt;}
.y13b{bottom:63.866667pt;}
.y89{bottom:63.986667pt;}
.ya5{bottom:64.000000pt;}
.y74{bottom:64.026667pt;}
.y454{bottom:64.306667pt;}
.y3af{bottom:64.666667pt;}
.y4ba{bottom:64.960000pt;}
.y478{bottom:64.986667pt;}
.y174{bottom:65.280000pt;}
.ye7{bottom:65.920000pt;}
.y4d8{bottom:66.106667pt;}
.y122{bottom:66.266667pt;}
.y465{bottom:66.586667pt;}
.y4e4{bottom:66.866667pt;}
.y4cc{bottom:67.026667pt;}
.y4f1{bottom:67.080000pt;}
.y4a4{bottom:67.360000pt;}
.y4ad{bottom:67.826667pt;}
.y63{bottom:68.160000pt;}
.y371{bottom:68.826667pt;}
.y302{bottom:69.120000pt;}
.y490{bottom:69.320000pt;}
.y1e0{bottom:69.440000pt;}
.y156{bottom:69.946667pt;}
.ya9{bottom:70.066667pt;}
.yd7{bottom:70.080000pt;}
.yd1{bottom:70.106667pt;}
.y147{bottom:70.120000pt;}
.y141{bottom:70.226667pt;}
.y526{bottom:70.266667pt;}
.y458{bottom:70.386667pt;}
.y446{bottom:70.746667pt;}
.y47c{bottom:71.066667pt;}
.y489{bottom:71.360000pt;}
.ye9{bottom:72.000000pt;}
.y114{bottom:72.346667pt;}
.yab{bottom:76.146667pt;}
.ye3{bottom:76.160000pt;}
.y73{bottom:76.186667pt;}
.y108{bottom:76.306667pt;}
.ydb{bottom:76.320000pt;}
.y86{bottom:76.346667pt;}
.y14c{bottom:76.360000pt;}
.y173{bottom:77.600000pt;}
.yec{bottom:78.080000pt;}
.y4dc{bottom:78.266667pt;}
.y121{bottom:78.426667pt;}
.y468{bottom:78.906667pt;}
.y4f0{bottom:79.240000pt;}
.y4cb{bottom:79.346667pt;}
.y4a3{bottom:79.680000pt;}
.y4b1{bottom:79.986667pt;}
.y62{bottom:80.480000pt;}
.y370{bottom:81.146667pt;}
.y1df{bottom:81.760000pt;}
.ye4{bottom:82.240000pt;}
.y138{bottom:82.266667pt;}
.yad{bottom:82.386667pt;}
.yde{bottom:82.400000pt;}
.yd0{bottom:82.426667pt;}
.y457{bottom:82.706667pt;}
.y47b{bottom:83.386667pt;}
.y48c{bottom:83.680000pt;}
.ye8{bottom:84.320000pt;}
.y112{bottom:84.666667pt;}
.yaa{bottom:88.466667pt;}
.yda{bottom:88.480000pt;}
.y72{bottom:88.506667pt;}
.y14b{bottom:88.520000pt;}
.y143{bottom:88.626667pt;}
.yc7{bottom:88.666667pt;}
.y172{bottom:89.760000pt;}
.y4e1{bottom:90.586667pt;}
.y110{bottom:90.746667pt;}
.y46c{bottom:91.066667pt;}
.y4ef{bottom:91.560000pt;}
.y4ca{bottom:91.666667pt;}
.y4a2{bottom:91.840000pt;}
.y4b5{bottom:92.306667pt;}
.y61{bottom:92.640000pt;}
.y4fb{bottom:92.666667pt;}
.y36f{bottom:93.466667pt;}
.y1de{bottom:94.106667pt;}
.yac{bottom:94.546667pt;}
.y105{bottom:94.560000pt;}
.y53b{bottom:94.586667pt;}
.y562{bottom:94.706667pt;}
.ydd{bottom:94.720000pt;}
.y83{bottom:94.746667pt;}
.y456{bottom:94.866667pt;}
.y51d{bottom:95.080000pt;}
.y47a{bottom:95.706667pt;}
.y48e{bottom:96.000000pt;}
.yf0{bottom:96.480000pt;}
.y111{bottom:96.826667pt;}
.y531{bottom:98.112000pt;}
.y42f{bottom:98.272000pt;}
.y140{bottom:98.280000pt;}
.y1d8{bottom:98.752000pt;}
.y382{bottom:99.080000pt;}
.y7a{bottom:99.240000pt;}
.yc9{bottom:100.520000pt;}
.y13a{bottom:100.666667pt;}
.y4ab{bottom:100.680000pt;}
.y10c{bottom:100.786667pt;}
.yd9{bottom:100.800000pt;}
.y6a{bottom:100.826667pt;}
.y14a{bottom:100.840000pt;}
.y3e1{bottom:101.000000pt;}
.y1a0{bottom:101.792000pt;}
.y1ab{bottom:101.960000pt;}
.y171{bottom:102.080000pt;}
.y1b2{bottom:102.120000pt;}
.y21d{bottom:102.440000pt;}
.y228{bottom:102.760000pt;}
.y191{bottom:102.920000pt;}
.y120{bottom:103.066667pt;}
.y570{bottom:103.400000pt;}
.y126{bottom:103.552000pt;}
.y1cd{bottom:103.560000pt;}
.y281{bottom:104.040000pt;}
.yae{bottom:104.680000pt;}
.y17f{bottom:104.840000pt;}
.y561{bottom:106.866667pt;}
.ydc{bottom:106.880000pt;}
.y6c{bottom:106.906667pt;}
.y528{bottom:107.066667pt;}
.y107{bottom:107.400000pt;}
.y20f{bottom:107.560000pt;}
.y52c{bottom:108.680000pt;}
.yef{bottom:108.800000pt;}
.y2b5{bottom:109.000000pt;}
.y113{bottom:109.146667pt;}
.y29f{bottom:109.960000pt;}
.y1ed{bottom:110.600000pt;}
.y3c2{bottom:110.920000pt;}
.yfd{bottom:112.040000pt;}
.y103{bottom:112.960000pt;}
.y68{bottom:112.986667pt;}
.y10b{bottom:113.106667pt;}
.yd8{bottom:113.120000pt;}
.y85{bottom:113.146667pt;}
.y149{bottom:113.160000pt;}
.y452{bottom:114.600000pt;}
.y11f{bottom:115.226667pt;}
.y190{bottom:115.720000pt;}
.y240{bottom:117.640000pt;}
.y3d4{bottom:118.120000pt;}
.y2bf{bottom:118.912000pt;}
.y560{bottom:119.186667pt;}
.y104{bottom:119.200000pt;}
.y6b{bottom:119.226667pt;}
.y273{bottom:119.392000pt;}
.yee{bottom:121.120000pt;}
.y119{bottom:121.466667pt;}
.y4e7{bottom:121.640000pt;}
.y19f{bottom:122.912000pt;}
.y553{bottom:123.560000pt;}
.y10a{bottom:125.266667pt;}
.y106{bottom:125.280000pt;}
.y69{bottom:125.306667pt;}
.y148{bottom:125.320000pt;}
.y142{bottom:125.426667pt;}
.y529{bottom:125.466667pt;}
.y530{bottom:125.472000pt;}
.y381{bottom:126.280000pt;}
.y34f{bottom:126.592000pt;}
.y35c{bottom:128.360000pt;}
.y568{bottom:129.160000pt;}
.y95{bottom:129.320000pt;}
.y17e{bottom:130.120000pt;}
.y3a4{bottom:131.232000pt;}
.y532{bottom:131.386667pt;}
.y10e{bottom:131.546667pt;}
.y280{bottom:132.360000pt;}
.y42e{bottom:132.832000pt;}
.y20e{bottom:132.840000pt;}
.y1d7{bottom:133.312000pt;}
.y118{bottom:133.626667pt;}
.y2be{bottom:134.120000pt;}
.y481{bottom:135.720000pt;}
.y1ec{bottom:135.880000pt;}
.y2b4{bottom:137.320000pt;}
.y139{bottom:137.466667pt;}
.y56a{bottom:137.600000pt;}
.y71{bottom:137.626667pt;}
.y125{bottom:138.106667pt;}
.y29e{bottom:138.120000pt;}
.y19e{bottom:138.280000pt;}
.y1fe{bottom:138.586667pt;}
.y3be{bottom:139.240000pt;}
.y1aa{bottom:139.400000pt;}
.y1b1{bottom:139.560000pt;}
.y24c{bottom:140.826667pt;}
.y56f{bottom:140.840000pt;}
.y3f5{bottom:141.146667pt;}
.ya7{bottom:142.280000pt;}
.y53a{bottom:143.706667pt;}
.y117{bottom:145.946667pt;}
.y3d3{bottom:146.440000pt;}
.y4e2{bottom:148.840000pt;}
.y79{bottom:149.000000pt;}
.yfc{bottom:149.480000pt;}
.y70{bottom:149.786667pt;}
.y84{bottom:149.946667pt;}
.y21c{bottom:152.200000pt;}
.y227{bottom:152.520000pt;}
.y123{bottom:153.320000pt;}
.y272{bottom:153.786667pt;}
.y23f{bottom:155.080000pt;}
.y17d{bottom:155.240000pt;}
.y539{bottom:156.026667pt;}
.y3e0{bottom:157.480000pt;}
.y20d{bottom:157.960000pt;}
.y550{bottom:158.120000pt;}
.y116{bottom:158.266667pt;}
.y52a{bottom:158.440000pt;}
.y52f{bottom:159.866667pt;}
.y27f{bottom:160.680000pt;}
.y1eb{bottom:161.000000pt;}
.y6f{bottom:162.106667pt;}
.y2bd{bottom:162.440000pt;}
.y19d{bottom:163.400000pt;}
.y380{bottom:163.720000pt;}
.y18f{bottom:165.480000pt;}
.y3a3{bottom:165.786667pt;}
.y29d{bottom:166.440000pt;}
.y94{bottom:166.760000pt;}
.y34e{bottom:167.226667pt;}
.y1d6{bottom:167.706667pt;}
.y538{bottom:168.186667pt;}
.y55f{bottom:168.346667pt;}
.y3ba{bottom:168.360000pt;}
.ye5{bottom:168.520000pt;}
.y271{bottom:169.160000pt;}
.y51b{bottom:169.320000pt;}
.y115{bottom:170.426667pt;}
.y1fd{bottom:172.986667pt;}
.y67{bottom:174.280000pt;}
.y6e{bottom:174.426667pt;}
.yc8{bottom:174.760000pt;}
.y24b{bottom:175.386667pt;}
.y3f4{bottom:175.546667pt;}
.y35b{bottom:176.200000pt;}
.y1cc{bottom:178.440000pt;}
.y500{bottom:178.746667pt;}
.y567{bottom:178.920000pt;}
.y537{bottom:180.506667pt;}
.y17c{bottom:180.520000pt;}
.y2e2{bottom:180.826667pt;}
.y42c{bottom:182.440000pt;}
.y315{bottom:183.080000pt;}
.y3df{bottom:185.800000pt;}
.y1ea{bottom:186.280000pt;}
.y6d{bottom:186.586667pt;}
.y124{bottom:186.746667pt;}
.y52e{bottom:188.346667pt;}
.y19c{bottom:188.680000pt;}
.y27d{bottom:188.840000pt;}
.y37c{bottom:189.000000pt;}
.y1a9{bottom:189.160000pt;}
.y1b0{bottom:189.320000pt;}
.y56e{bottom:190.600000pt;}
.y2bc{bottom:190.760000pt;}
.y2e5{bottom:191.226667pt;}
.y23e{bottom:192.520000pt;}
.y54d{bottom:192.840000pt;}
.y536{bottom:192.866667pt;}
.y3a2{bottom:192.986667pt;}
.y2b3{bottom:193.800000pt;}
.y292{bottom:194.746667pt;}
.y29c{bottom:194.760000pt;}
.y20c{bottom:195.400000pt;}
.y34d{bottom:195.546667pt;}
.y3b9{bottom:195.880000pt;}
.y162{bottom:196.346667pt;}
.y26f{bottom:197.320000pt;}
.y78{bottom:198.906667pt;}
.y541{bottom:198.946667pt;}
.yfb{bottom:199.240000pt;}
.y21b{bottom:201.960000pt;}
.y1d5{bottom:202.266667pt;}
.y226{bottom:202.280000pt;}
.y50f{bottom:202.746667pt;}
.y3d2{bottom:202.920000pt;}
.y52d{bottom:203.560000pt;}
.y93{bottom:204.200000pt;}
.y357{bottom:204.680000pt;}
.y535{bottom:205.026667pt;}
.y4ff{bottom:207.066667pt;}
.y4a7{bottom:207.080000pt;}
.y1fc{bottom:207.546667pt;}
.y476{bottom:208.200000pt;}
.y24a{bottom:209.786667pt;}
.y3f3{bottom:210.106667pt;}
.y34c{bottom:210.760000pt;}
.y405{bottom:210.906667pt;}
.y77{bottom:211.066667pt;}
.y540{bottom:211.266667pt;}
.y1e9{bottom:211.400000pt;}
.yc5{bottom:212.200000pt;}
.y19b{bottom:213.800000pt;}
.y3de{bottom:214.120000pt;}
.y18e{bottom:215.240000pt;}
.y2e1{bottom:215.386667pt;}
.y566{bottom:216.360000pt;}
.y27c{bottom:217.160000pt;}
.y534{bottom:217.346667pt;}
.y17a{bottom:217.960000pt;}
.y2bb{bottom:218.920000pt;}
.y3d7{bottom:219.546667pt;}
.y37b{bottom:220.360000pt;}
.y2b2{bottom:222.120000pt;}
.y1fb{bottom:222.760000pt;}
.y29b{bottom:222.920000pt;}
.y76{bottom:223.413333pt;}
.y53f{bottom:223.426667pt;}
.y3b5{bottom:224.040000pt;}
.y427{bottom:224.680000pt;}
.y3ef{bottom:225.320000pt;}
.y26c{bottom:225.640000pt;}
.y2e4{bottom:225.786667pt;}
.y451{bottom:226.120000pt;}
.y3a1{bottom:227.546667pt;}
.y548{bottom:227.560000pt;}
.y56d{bottom:228.040000pt;}
.y1cb{bottom:228.200000pt;}
.y311{bottom:228.360000pt;}
.y4d6{bottom:228.840000pt;}
.y291{bottom:229.306667pt;}
.y1bc{bottom:229.466667pt;}
.y533{bottom:229.666667pt;}
.y23d{bottom:229.960000pt;}
.y161{bottom:230.746667pt;}
.y3d1{bottom:231.240000pt;}
.y527{bottom:232.680000pt;}
.y20b{bottom:232.840000pt;}
.y13e{bottom:233.960000pt;}
.y4fe{bottom:234.426667pt;}
.y53e{bottom:235.746667pt;}
.y51a{bottom:236.200000pt;}
.yf9{bottom:236.680000pt;}
.y50e{bottom:237.306667pt;}
.y1a8{bottom:238.946667pt;}
.y19a{bottom:239.106667pt;}
.y3dd{bottom:242.306667pt;}
.y102{bottom:243.106667pt;}
.y249{bottom:244.386667pt;}
.y290{bottom:244.546667pt;}
.y27b{bottom:245.506667pt;}
.y25a{bottom:246.626667pt;}
.y2ba{bottom:247.266667pt;}
.y53d{bottom:248.066667pt;}
.y34b{bottom:248.386667pt;}
.y2e0{bottom:249.826667pt;}
.y2b1{bottom:250.306667pt;}
.y29a{bottom:251.266667pt;}
.y356{bottom:251.426667pt;}
.y21a{bottom:251.586667pt;}
.y225{bottom:251.906667pt;}
.y13d{bottom:252.386667pt;}
.y565{bottom:253.826667pt;}
.y26b{bottom:253.986667pt;}
.y3d6{bottom:254.146667pt;}
.y44b{bottom:254.786667pt;}
.y23c{bottom:255.106667pt;}
.y179{bottom:255.426667pt;}
.y3a0{bottom:255.906667pt;}
.y310{bottom:257.186667pt;}
.y1d4{bottom:257.986667pt;}
.y20a{bottom:258.146667pt;}
.y248{bottom:259.586667pt;}
.y1fa{bottom:260.226667pt;}
.y2e3{bottom:260.386667pt;}
.y404{bottom:260.706667pt;}
.y1e7{bottom:261.826667pt;}
.y547{bottom:262.146667pt;}
.y4fd{bottom:262.786667pt;}
.y3ee{bottom:263.426667pt;}
.y199{bottom:264.226667pt;}
.y18d{bottom:265.026667pt;}
.y2dc{bottom:265.186667pt;}
.y160{bottom:265.346667pt;}
.ya6{bottom:265.506667pt;}
.y1ca{bottom:265.666667pt;}
.y426{bottom:267.106667pt;}
.y47{bottom:268.546667pt;}
.y55d{bottom:269.986667pt;}
.y3dc{bottom:270.626667pt;}
.y39e{bottom:271.266667pt;}
.y3b4{bottom:271.426667pt;}
.y50d{bottom:271.906667pt;}
.y28f{bottom:272.866667pt;}
.y49e{bottom:273.506667pt;}
.y279{bottom:273.666667pt;}
.yf8{bottom:274.146667pt;}
.y2b9{bottom:275.586667pt;}
.y2b0{bottom:278.626667pt;}
.y1d3{bottom:279.106667pt;}
.y299{bottom:279.586667pt;}
.y37a{bottom:279.906667pt;}
.y23b{bottom:280.386667pt;}
.y16f{bottom:280.546667pt;}
.y259{bottom:281.186667pt;}
.y26a{bottom:282.146667pt;}
.y209{bottom:283.266667pt;}
.y247{bottom:284.706667pt;}
.y30f{bottom:285.666667pt;}
.y347{bottom:285.826667pt;}
.y1e6{bottom:287.106667pt;}
.y3d0{bottom:287.746667pt;}
.y3d5{bottom:288.546667pt;}
.y1a7{bottom:288.706667pt;}
.y92{bottom:290.786667pt;}
.ye0{bottom:291.906667pt;}
.y546{bottom:296.866667pt;}
.y4fc{bottom:297.346667pt;}
.y1f9{bottom:297.666667pt;}
.y1bb{bottom:298.786667pt;}
.y3db{bottom:298.946667pt;}
.y355{bottom:299.266667pt;}
.y39c{bottom:299.426667pt;}
.y15f{bottom:299.906667pt;}
.y1d2{bottom:300.226667pt;}
.y28e{bottom:301.186667pt;}
.y219{bottom:301.346667pt;}
.y3ed{bottom:301.506667pt;}
.y224{bottom:301.666667pt;}
.y153{bottom:301.826667pt;}
.y278{bottom:301.986667pt;}
.y56c{bottom:302.306667pt;}
.y377{bottom:302.466667pt;}
.y46{bottom:302.946667pt;}
.y564{bottom:303.586667pt;}
.y2b8{bottom:303.746667pt;}
.y55c{bottom:304.386667pt;}
.y23a{bottom:305.506667pt;}
.y50c{bottom:306.306667pt;}
.y2af{bottom:306.946667pt;}
.y298{bottom:307.746667pt;}
.y403{bottom:308.226667pt;}
.y246{bottom:309.986667pt;}
.y269{bottom:310.466667pt;}
.yf7{bottom:311.586667pt;}
.y1dc{bottom:312.226667pt;}
.y4f8{bottom:312.546667pt;}
.y341{bottom:313.186667pt;}
.y55b{bottom:313.506667pt;}
.y198{bottom:313.986667pt;}
.y18c{bottom:314.786667pt;}
.y15e{bottom:315.106667pt;}
.ya1{bottom:315.266667pt;}
.y258{bottom:315.586667pt;}
.y91{bottom:315.906667pt;}
.y3cf{bottom:316.066667pt;}
.y542{bottom:316.546667pt;}
.y45{bottom:318.306667pt;}
.y39a{bottom:318.466667pt;}
.y3b3{bottom:319.106667pt;}
.y1ba{bottom:319.906667pt;}
.y57f{bottom:320.706667pt;}
.y208{bottom:320.866667pt;}
.y1d1{bottom:321.346667pt;}
.y50b{bottom:321.506667pt;}
.y449{bottom:321.666667pt;}
.y519{bottom:322.786667pt;}
.y30e{bottom:323.106667pt;}
.y3da{bottom:327.106667pt;}
.y28d{bottom:329.346667pt;}
.y277{bottom:330.306667pt;}
.y256{bottom:330.786667pt;}
.y544{bottom:331.586667pt;}
.y4d1{bottom:331.746667pt;}
.y2b7{bottom:332.066667pt;}
.y1b9{bottom:335.106667pt;}
.yc3{bottom:335.586667pt;}
.y297{bottom:336.066667pt;}
.y376{bottom:337.026667pt;}
.y152{bottom:337.346667pt;}
.y1a6{bottom:338.466667pt;}
.y267{bottom:338.786667pt;}
.y3eb{bottom:339.586667pt;}
.y56b{bottom:339.906667pt;}
.y90{bottom:341.186667pt;}
.y1d0{bottom:342.626667pt;}
.y239{bottom:343.106667pt;}
.y399{bottom:343.746667pt;}
.y3ce{bottom:344.386667pt;}
.y402{bottom:345.826667pt;}
.y351{bottom:346.626667pt;}
.y3a9{bottom:347.266667pt;}
.y255{bottom:348.066667pt;}
.y444{bottom:350.146667pt;}
.y10f{bottom:350.306667pt;}
.y55a{bottom:350.946667pt;}
.y218{bottom:351.106667pt;}
.y223{bottom:351.426667pt;}
.y1c9{bottom:352.226667pt;}
.y474{bottom:353.506667pt;}
.y57e{bottom:355.106667pt;}
.y3d9{bottom:355.426667pt;}
.y28c{bottom:357.666667pt;}
.y207{bottom:358.306667pt;}
.y276{bottom:358.466667pt;}
.y374{bottom:358.946667pt;}
.y398{bottom:359.586667pt;}
.y1b8{bottom:360.386667pt;}
.y30c{bottom:360.546667pt;}
.yf6{bottom:361.346667pt;}
.y2ae{bottom:363.426667pt;}
.y197{bottom:363.746667pt;}
.y18b{bottom:364.386667pt;}
.y151{bottom:364.546667pt;}
.y543{bottom:366.146667pt;}
.y8a{bottom:366.306667pt;}
.y265{bottom:366.946667pt;}
.y2a9{bottom:367.106667pt;}
.y42{bottom:367.906667pt;}
.y2d1{bottom:368.866667pt;}
.y57d{bottom:370.306667pt;}
.y419{bottom:372.386667pt;}
.y3cd{bottom:372.546667pt;}
.ybf{bottom:372.706667pt;}
.y254{bottom:373.346667pt;}
.y233{bottom:374.466667pt;}
.y15d{bottom:377.026667pt;}
.y1c8{bottom:377.346667pt;}
.y3e8{bottom:377.666667pt;}
.y101{bottom:378.626667pt;}
.y49d{bottom:378.946667pt;}
.y238{bottom:380.546667pt;}
.y2f5{bottom:380.706667pt;}
.y206{bottom:383.426667pt;}
.y3d8{bottom:383.746667pt;}
.y1b7{bottom:385.506667pt;}
.y28a{bottom:385.986667pt;}
.y397{bottom:387.746667pt;}
.y36b{bottom:387.906667pt;}
.y137{bottom:388.066667pt;}
.y1af{bottom:388.226667pt;}
.y2b6{bottom:388.546667pt;}
.y33e{bottom:388.866667pt;}
.y9f{bottom:389.506667pt;}
.y563{bottom:390.146667pt;}
.ydf{bottom:390.626667pt;}
.y2ad{bottom:391.746667pt;}
.y295{bottom:392.546667pt;}
.y150{bottom:392.866667pt;}
.y350{bottom:393.186667pt;}
.y261{bottom:395.266667pt;}
.y400{bottom:395.586667pt;}
.y4c6{bottom:397.386667pt;}
.y30b{bottom:398.013333pt;}
.y1cf{bottom:398.173333pt;}
.y253{bottom:398.506667pt;}
.yf5{bottom:398.813333pt;}
.y332{bottom:399.933333pt;}
.y216{bottom:400.893333pt;}
.y222{bottom:401.226667pt;}
.yb9{bottom:401.693333pt;}
.y393{bottom:403.626667pt;}
.y3e{bottom:405.546667pt;}
.y509{bottom:406.186667pt;}
.y16c{bottom:406.346667pt;}
.y275{bottom:406.813333pt;}
.y5d{bottom:407.933333pt;}
.y2ed{bottom:408.253333pt;}
.y205{bottom:408.733333pt;}
.y232{bottom:409.053333pt;}
.y1f7{bottom:410.186667pt;}
.y1b6{bottom:410.813333pt;}
.y196{bottom:413.386667pt;}
.y14f{bottom:414.173333pt;}
.y18a{bottom:414.186667pt;}
.y569{bottom:414.813333pt;}
.y2f4{bottom:415.133333pt;}
.y471{bottom:415.626667pt;}
.y3e4{bottom:415.786667pt;}
.y2cb{bottom:416.426667pt;}
.y33b{bottom:416.733333pt;}
.y2a8{bottom:416.893333pt;}
.y438{bottom:417.533333pt;}
.y237{bottom:418.013333pt;}
.y4f7{bottom:419.613333pt;}
.y2ac{bottom:419.933333pt;}
.y57c{bottom:420.093333pt;}
.y294{bottom:420.893333pt;}
.y1da{bottom:422.013333pt;}
.y260{bottom:423.626667pt;}
.y252{bottom:423.773333pt;}
.y15c{bottom:426.813333pt;}
.y1c7{bottom:427.146667pt;}
.y55e{bottom:427.626667pt;}
.y274{bottom:427.933333pt;}
.yd5{bottom:428.093333pt;}
.y87{bottom:428.426667pt;}
.y392{bottom:430.813333pt;}
.y3f7{bottom:433.386667pt;}
.y3a7{bottom:434.973333pt;}
.y1b5{bottom:435.933333pt;}
.y1a5{bottom:437.853333pt;}
.y1ae{bottom:438.013333pt;}
.y331{bottom:440.573333pt;}
.y2f3{bottom:442.493333pt;}
.y410{bottom:442.506667pt;}
.y2ec{bottom:442.653333pt;}
.y236{bottom:443.146667pt;}
.y231{bottom:443.453333pt;}
.y46e{bottom:444.733333pt;}
.y369{bottom:445.213333pt;}
.y2a7{bottom:445.226667pt;}
.y300{bottom:445.853333pt;}
.y338{bottom:446.013333pt;}
.y204{bottom:446.186667pt;}
.y391{bottom:446.506667pt;}
.y1f6{bottom:447.626667pt;}
.y2ab{bottom:448.266667pt;}
.y14e{bottom:448.573333pt;}
.yf4{bottom:448.586667pt;}
.yb8{bottom:448.893333pt;}
.y215{bottom:449.053333pt;}
.y293{bottom:449.213333pt;}
.y1ce{bottom:450.973333pt;}
.y9e{bottom:451.613333pt;}
.y437{bottom:452.093333pt;}
.y16b{bottom:454.653333pt;}
.y39{bottom:455.146667pt;}
.y230{bottom:458.666667pt;}
.y515{bottom:460.266667pt;}
.y1b4{bottom:461.213333pt;}
.y245{bottom:461.226667pt;}
.y189{bottom:462.333333pt;}
.y195{bottom:463.146667pt;}
.y14d{bottom:463.773333pt;}
.y2c5{bottom:464.106667pt;}
.y2fe{bottom:464.413333pt;}
.y1c6{bottom:464.586667pt;}
.y183{bottom:468.893333pt;}
.y57b{bottom:469.853333pt;}
.y1d9{bottom:470.173333pt;}
.y2f2{bottom:470.813333pt;}
.y203{bottom:471.293333pt;}
.y25f{bottom:471.773333pt;}
.y1f5{bottom:472.733333pt;}
.y436{bottom:473.213333pt;}
.y2a6{bottom:473.373333pt;}
.y337{bottom:473.866667pt;}
.y251{bottom:474.186667pt;}
.y38f{bottom:474.813333pt;}
.y330{bottom:474.973333pt;}
.y16a{bottom:475.773333pt;}
.y493{bottom:476.106667pt;}
.y2aa{bottom:476.586667pt;}
.y368{bottom:479.613333pt;}
.y3cc{bottom:483.133333pt;}
.y188{bottom:483.613333pt;}
.y443{bottom:486.173333pt;}
.yb7{bottom:486.346667pt;}
.y1a4{bottom:487.626667pt;}
.y1ad{bottom:487.773333pt;}
.y15b{bottom:488.733333pt;}
.y146{bottom:489.053333pt;}
.y235{bottom:491.453333pt;}
.y4eb{bottom:491.613333pt;}
.y520{bottom:491.773333pt;}
.y35{bottom:492.733333pt;}
.y25e{bottom:492.893333pt;}
.y38e{bottom:494.813333pt;}
.y22e{bottom:496.106667pt;}
.y36a{bottom:496.586667pt;}
.y3a6{bottom:496.893333pt;}
.y1f4{bottom:498.026667pt;}
.y2eb{bottom:498.333333pt;}
.yf3{bottom:498.346667pt;}
.y244{bottom:498.666667pt;}
.y3e3{bottom:498.813333pt;}
.y2fd{bottom:498.973333pt;}
.y559{bottom:498.986667pt;}
.y250{bottom:499.306667pt;}
.y221{bottom:500.586667pt;}
.y48f{bottom:501.373333pt;}
.y2a5{bottom:501.693333pt;}
.y335{bottom:502.346667pt;}
.y82{bottom:502.666667pt;}
.y182{bottom:503.293333pt;}
.y32f{bottom:503.453333pt;}
.y12d{bottom:504.733333pt;}
.y2f1{bottom:505.373333pt;}
.y435{bottom:507.773333pt;}
.y514{bottom:508.573333pt;}
.y169{bottom:510.173333pt;}
.y2c1{bottom:510.346667pt;}
.yb6{bottom:511.626667pt;}
.y3f6{bottom:512.106667pt;}
.y194{bottom:512.893333pt;}
.y9d{bottom:513.546667pt;}
.y367{bottom:514.173333pt;}
.y59{bottom:514.986667pt;}
.y3cb{bottom:517.693333pt;}
.y187{bottom:518.013333pt;}
.y578{bottom:519.626667pt;}
.y22c{bottom:520.266667pt;}
.y2ef{bottom:520.586667pt;}
.y442{bottom:520.733333pt;}
.y38d{bottom:523.133333pt;}
.y1f3{bottom:523.146667pt;}
.y243{bottom:523.786667pt;}
.y181{bottom:524.573333pt;}
.y24f{bottom:524.586667pt;}
.y234{bottom:525.853333pt;}
.y100{bottom:526.506667pt;}
.y25d{bottom:527.453333pt;}
.y4bf{bottom:529.373333pt;}
.y363{bottom:529.386667pt;}
.y2a4{bottom:530.013333pt;}
.y2f{bottom:530.186667pt;}
.y2ff{bottom:530.346667pt;}
.y2ea{bottom:532.893333pt;}
.y2fc{bottom:533.373333pt;}
.y200{bottom:533.386667pt;}
.yb3{bottom:536.733333pt;}
.y1a3{bottom:537.386667pt;}
.y32e{bottom:537.853333pt;}
.y154{bottom:538.506667pt;}
.y38c{bottom:538.986667pt;}
.y12c{bottom:539.133333pt;}
.y10d{bottom:539.466667pt;}
.y214{bottom:539.613333pt;}
.y434{bottom:542.173333pt;}
.y441{bottom:542.973333pt;}
.y168{bottom:544.733333pt;}
.y3e2{bottom:546.973333pt;}
.y22a{bottom:547.933333pt;}
.y135{bottom:548.106667pt;}
.y1f2{bottom:548.426667pt;}
.y25c{bottom:548.573333pt;}
.y2f8{bottom:548.586667pt;}
.y242{bottom:549.053333pt;}
.y24e{bottom:549.693333pt;}
.y220{bottom:550.346667pt;}
.y577{bottom:550.506667pt;}
.y1c3{bottom:551.133333pt;}
.yce{bottom:551.466667pt;}
.y3ca{bottom:552.413333pt;}
.y3a5{bottom:552.573333pt;}
.y327{bottom:553.213333pt;}
.y430{bottom:557.413333pt;}
.y2a3{bottom:558.213333pt;}
.y51e{bottom:558.533333pt;}
.y180{bottom:559.013333pt;}
.ye6{bottom:560.293333pt;}
.y186{bottom:560.453333pt;}
.y558{bottom:560.933333pt;}
.y1b3{bottom:562.053333pt;}
.y193{bottom:562.693333pt;}
.y289{bottom:564.773333pt;}
.y440{bottom:565.413333pt;}
.y167{bottom:565.893333pt;}
.y2ee{bottom:567.013333pt;}
.y38b{bottom:567.333333pt;}
.y2b{bottom:567.653333pt;}
.y2c0{bottom:567.813333pt;}
.y25b{bottom:569.733333pt;}
.y1f1{bottom:573.573333pt;}
.y12b{bottom:573.733333pt;}
.y213{bottom:574.053333pt;}
.yb2{bottom:574.213333pt;}
.y24d{bottom:575.013333pt;}
.y9c{bottom:575.653333pt;}
.y229{bottom:576.133333pt;}
.y1bd{bottom:576.453333pt;}
.y362{bottom:576.773333pt;}
.y53{bottom:577.093333pt;}
.y130{bottom:577.253333pt;}
.y3c9{bottom:579.813333pt;}
.y1ff{bottom:581.573333pt;}
.y38a{bottom:583.013333pt;}
.y487{bottom:586.053333pt;}
.y2a2{bottom:586.533333pt;}
.y166{bottom:587.013333pt;}
.y1a2{bottom:587.173333pt;}
.y43f{bottom:587.653333pt;}
.y574{bottom:587.973333pt;}
.y185{bottom:594.853333pt;}
.y557{bottom:595.653333pt;}
.y4ea{bottom:596.293333pt;}
.y2f7{bottom:597.413333pt;}
.y4be{bottom:598.213333pt;}
.y1f0{bottom:598.853333pt;}
.yb1{bottom:599.493333pt;}
.y288{bottom:599.653333pt;}
.y21f{bottom:600.133333pt;}
.y12a{bottom:600.933333pt;}
.y2e6{bottom:602.373333pt;}
.ye{bottom:603.773333pt;}
.y325{bottom:606.373333pt;}
.y3c8{bottom:608.133333pt;}
.y165{bottom:608.293333pt;}
.y212{bottom:608.613333pt;}
.y43e{bottom:610.053333pt;}
.y389{bottom:611.333333pt;}
.y192{bottom:612.453333pt;}
.y287{bottom:614.853333pt;}
.y184{bottom:616.133333pt;}
.y26{bottom:617.413333pt;}
.y573{bottom:619.013333pt;}
.y3c5{bottom:623.333333pt;}
.y211{bottom:623.813333pt;}
.y1ef{bottom:623.973333pt;}
.y360{bottom:624.453333pt;}
.y145{bottom:624.613333pt;}
.y97{bottom:625.413333pt;}
.y388{bottom:627.173333pt;}
.y164{bottom:629.413333pt;}
.y556{bottom:630.213333pt;}
.y50{bottom:631.813333pt;}
.y45e{bottom:633.413333pt;}
.y129{bottom:635.493333pt;}
.y12f{bottom:636.773333pt;}
.yb0{bottom:636.933333pt;}
.yd{bottom:641.053333pt;}
.y24{bottom:642.533333pt;}
.y286{bottom:643.013333pt;}
.y2f6{bottom:645.573333pt;}
.y210{bottom:649.093333pt;}
.y1ee{bottom:649.253333pt;}
.y21e{bottom:649.893333pt;}
.y163{bottom:650.533333pt;}
.y35f{bottom:651.973333pt;}
.y3c3{bottom:652.773333pt;}
.y1a{bottom:652.893333pt;}
.y320{bottom:653.573333pt;}
.y387{bottom:655.333333pt;}
.yff{bottom:662.213333pt;}
.ycb{bottom:662.533333pt;}
.y128{bottom:663.813333pt;}
.y555{bottom:664.933333pt;}
.y571{bottom:668.613333pt;}
.y386{bottom:671.173333pt;}
.y285{bottom:671.333333pt;}
.yaf{bottom:674.373333pt;}
.y43d{bottom:677.213333pt;}
.yc{bottom:677.853333pt;}
.y23{bottom:679.813333pt;}
.y12e{bottom:684.773333pt;}
.y1a1{bottom:685.093333pt;}
.y1ac{bottom:686.693333pt;}
.y19{bottom:687.773333pt;}
.y127{bottom:691.173333pt;}
.y43c{bottom:711.773333pt;}
.yb{bottom:714.333333pt;}
.y22{bottom:714.720000pt;}
.y18{bottom:722.173333pt;}
.y81{bottom:732.160000pt;}
.y21{bottom:732.800000pt;}
.y43b{bottom:732.893333pt;}
.ya{bottom:751.453333pt;}
.y17{bottom:756.733333pt;}
.y43a{bottom:767.133333pt;}
.y4f{bottom:767.453333pt;}
.y513{bottom:780.733333pt;}
.y9{bottom:787.973333pt;}
.y16{bottom:791.173333pt;}
.y4e{bottom:801.573333pt;}
.y20{bottom:806.533333pt;}
.y512{bottom:815.333333pt;}
.y8{bottom:825.093333pt;}
.y15{bottom:825.733333pt;}
.y4d{bottom:836.133333pt;}
.y1f{bottom:841.093333pt;}
.y511{bottom:849.733333pt;}
.y14{bottom:860.293333pt;}
.y7{bottom:861.893333pt;}
.y4c{bottom:870.533333pt;}
.y510{bottom:870.853333pt;}
.y1e{bottom:875.493333pt;}
.y13{bottom:894.693333pt;}
.y6{bottom:898.693333pt;}
.y4b{bottom:905.093333pt;}
.y1d{bottom:910.053333pt;}
.y12{bottom:929.253333pt;}
.y5{bottom:935.493333pt;}
.y4a{bottom:939.653333pt;}
.y1c{bottom:944.613333pt;}
.y11{bottom:963.653333pt;}
.y4{bottom:972.293333pt;}
.y49{bottom:974.053333pt;}
.y1b{bottom:979.013333pt;}
.y48{bottom:1008.613333pt;}
.y439{bottom:1008.933333pt;}
.y3{bottom:1009.093333pt;}
.y10{bottom:1013.600000pt;}
.y2{bottom:1043.520000pt;}
.yf{bottom:1060.960000pt;}
.y1{bottom:1061.600000pt;}
.h53{height:12.146667pt;}
.h4e{height:12.152000pt;}
.h8e{height:12.512000pt;}
.h6f{height:13.760000pt;}
.h73{height:13.920000pt;}
.h9e{height:15.026667pt;}
.ha1{height:15.040000pt;}
.h9d{height:15.186667pt;}
.h9f{height:15.200000pt;}
.ha3{height:15.226667pt;}
.h69{height:16.626667pt;}
.h7{height:16.946667pt;}
.h40{height:17.778667pt;}
.ha4{height:18.400000pt;}
.ha0{height:19.360000pt;}
.h98{height:21.266667pt;}
.h9a{height:21.906667pt;}
.hab{height:21.946667pt;}
.h64{height:23.346667pt;}
.h67{height:23.506667pt;}
.h9{height:24.466667pt;}
.h4a{height:24.472000pt;}
.h49{height:24.480000pt;}
.h51{height:24.498667pt;}
.h57{height:24.500000pt;}
.h62{height:24.512000pt;}
.h1c{height:24.626667pt;}
.h4b{height:24.632000pt;}
.h43{height:24.640000pt;}
.h5b{height:24.658667pt;}
.h54{height:24.660000pt;}
.h55{height:24.672000pt;}
.ha2{height:26.386667pt;}
.h9c{height:26.552000pt;}
.h8d{height:26.706667pt;}
.h94{height:26.866667pt;}
.h66{height:27.026667pt;}
.h8b{height:27.066667pt;}
.h89{height:27.200000pt;}
.hcc{height:27.226667pt;}
.h87{height:27.346667pt;}
.h65{height:27.380000pt;}
.h6a{height:27.506667pt;}
.h71{height:27.512000pt;}
.h63{height:27.520000pt;}
.h60{height:27.538667pt;}
.h72{height:27.540000pt;}
.h6e{height:27.546667pt;}
.h6b{height:27.552000pt;}
.h12{height:27.666667pt;}
.h6d{height:27.672000pt;}
.h5d{height:27.680000pt;}
.h6c{height:27.698667pt;}
.h70{height:27.712000pt;}
.h91{height:27.826667pt;}
.hbf{height:27.840000pt;}
.h88{height:28.018667pt;}
.h97{height:28.146667pt;}
.h80{height:28.178667pt;}
.h28{height:28.346667pt;}
.ha8{height:28.466667pt;}
.h8a{height:28.480000pt;}
.h3d{height:28.498667pt;}
.haa{height:28.786667pt;}
.hf0{height:30.226667pt;}
.h9b{height:30.706667pt;}
.hc6{height:31.520000pt;}
.hb9{height:33.586667pt;}
.h99{height:33.760000pt;}
.he9{height:33.906667pt;}
.hec{height:33.912000pt;}
.he8{height:33.920000pt;}
.heb{height:33.938667pt;}
.hea{height:34.066667pt;}
.he7{height:34.106667pt;}
.h7b{height:34.706667pt;}
.he{height:35.761250pt;}
.h2c{height:36.306667pt;}
.hd7{height:36.466667pt;}
.h29{height:36.480000pt;}
.hde{height:36.506667pt;}
.h33{height:36.626667pt;}
.h68{height:36.632000pt;}
.hd{height:36.640000pt;}
.h5f{height:36.666667pt;}
.hf{height:36.786667pt;}
.h1e{height:36.792000pt;}
.h26{height:36.800000pt;}
.hc{height:36.818667pt;}
.h25{height:36.820000pt;}
.h10{height:36.826667pt;}
.h2f{height:36.832000pt;}
.hb3{height:36.946667pt;}
.hb2{height:36.992000pt;}
.hae{height:37.280000pt;}
.had{height:37.312000pt;}
.haf{height:37.440000pt;}
.hb0{height:37.458667pt;}
.h8c{height:37.586667pt;}
.hdd{height:37.906667pt;}
.ha5{height:41.280000pt;}
.hbb{height:41.586667pt;}
.hba{height:41.618667pt;}
.ha{height:42.084375pt;}
.h17{height:42.381250pt;}
.he5{height:42.541250pt;}
.h44{height:43.215000pt;}
.hbc{height:44.306667pt;}
.h82{height:44.626667pt;}
.h83{height:45.106667pt;}
.h84{height:45.266667pt;}
.h75{height:45.586667pt;}
.h7c{height:45.618667pt;}
.h8f{height:45.920000pt;}
.h90{height:45.938667pt;}
.ha9{height:46.066667pt;}
.h79{height:46.386667pt;}
.h85{height:46.546667pt;}
.h27{height:46.560000pt;}
.hb4{height:46.706667pt;}
.hdf{height:46.720000pt;}
.h95{height:46.738667pt;}
.h93{height:46.866667pt;}
.h77{height:46.906667pt;}
.h76{height:47.026667pt;}
.ha7{height:47.040000pt;}
.h92{height:47.192000pt;}
.h7f{height:47.200000pt;}
.h7d{height:48.178667pt;}
.h8{height:48.375000pt;}
.hb{height:48.946667pt;}
.h5a{height:48.952000pt;}
.h11{height:48.960000pt;}
.h52{height:48.978667pt;}
.h50{height:48.986667pt;}
.h32{height:49.106667pt;}
.h18{height:49.112000pt;}
.h23{height:49.120000pt;}
.h4d{height:49.138667pt;}
.h4f{height:49.140000pt;}
.h46{height:49.146667pt;}
.h4c{height:49.152000pt;}
.h86{height:52.500000pt;}
.h7a{height:53.618667pt;}
.h13{height:54.066667pt;}
.h78{height:55.986667pt;}
.hdc{height:56.000000pt;}
.h74{height:56.818667pt;}
.h2{height:58.563750pt;}
.h3c{height:58.866667pt;}
.h56{height:59.666667pt;}
.h47{height:61.266667pt;}
.h21{height:61.280000pt;}
.h14{height:61.298667pt;}
.hc5{height:61.312000pt;}
.h61{height:61.440000pt;}
.h20{height:61.458667pt;}
.h1b{height:61.472000pt;}
.hdb{height:62.258667pt;}
.h3{height:62.812500pt;}
.h4{height:64.500000pt;}
.hd3{height:64.946667pt;}
.hc2{height:65.426667pt;}
.hce{height:65.778667pt;}
.hbd{height:65.781915pt;}
.he1{height:66.066667pt;}
.he2{height:66.100000pt;}
.hc0{height:66.226667pt;}
.hb5{height:66.258667pt;}
.hd6{height:66.383042pt;}
.h3b{height:66.404375pt;}
.h81{height:66.564375pt;}
.hb6{height:67.186667pt;}
.hd1{height:68.020000pt;}
.hcb{height:68.640000pt;}
.hb7{height:69.472000pt;}
.hb8{height:70.400000pt;}
.hd9{height:71.360000pt;}
.hc8{height:71.826667pt;}
.h1f{height:73.426667pt;}
.h1a{height:73.586667pt;}
.h2b{height:73.592000pt;}
.h22{height:73.600000pt;}
.hef{height:73.618667pt;}
.hd0{height:75.506667pt;}
.hb1{height:78.066667pt;}
.hd5{height:79.346667pt;}
.hed{height:80.576875pt;}
.hac{height:82.386667pt;}
.h7e{height:83.840000pt;}
.hc4{height:84.000000pt;}
.hca{height:84.020000pt;}
.h5c{height:85.760000pt;}
.h58{height:85.906667pt;}
.h59{height:85.920000pt;}
.h1d{height:85.938667pt;}
.ha6{height:86.912000pt;}
.he0{height:87.072000pt;}
.hbe{height:87.226667pt;}
.h45{height:97.618667pt;}
.h30{height:98.066667pt;}
.hd4{height:102.098667pt;}
.hc3{height:103.378667pt;}
.hd8{height:104.020000pt;}
.hd2{height:104.306667pt;}
.hcd{height:104.800000pt;}
.hcf{height:105.752000pt;}
.h15{height:106.400000pt;}
.hda{height:106.432000pt;}
.h96{height:108.026667pt;}
.h5e{height:109.146667pt;}
.h2d{height:110.418667pt;}
.he3{height:110.426667pt;}
.hc1{height:110.872000pt;}
.hc7{height:112.338667pt;}
.hc9{height:112.786667pt;}
.h24{height:122.578667pt;}
.h2e{height:122.720000pt;}
.h2a{height:122.738667pt;}
.h48{height:125.152000pt;}
.h36{height:134.866667pt;}
.h3f{height:134.880000pt;}
.h34{height:134.893333pt;}
.h37{height:134.898667pt;}
.h42{height:134.906667pt;}
.h41{height:135.032000pt;}
.h31{height:138.546667pt;}
.he4{height:147.213333pt;}
.h35{height:147.226667pt;}
.h38{height:159.373333pt;}
.h3e{height:159.386667pt;}
.h39{height:188.506667pt;}
.h19{height:196.173333pt;}
.h3a{height:196.333333pt;}
.hee{height:208.493333pt;}
.h16{height:233.013333pt;}
.he6{height:269.813333pt;}
.h5{height:793.760000pt;}
.h6{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w22{width:58.386667pt;}
.w27{width:58.546667pt;}
.w15{width:58.586667pt;}
.w7d{width:61.306667pt;}
.wf{width:63.392000pt;}
.we{width:65.306667pt;}
.w88{width:65.466667pt;}
.w90{width:65.586667pt;}
.w89{width:65.632000pt;}
.w83{width:66.266667pt;}
.w64{width:66.586667pt;}
.w4b{width:66.866667pt;}
.w3e{width:67.026667pt;}
.w34{width:67.186667pt;}
.w2d{width:67.386667pt;}
.w7e{width:72.512000pt;}
.w8{width:72.832000pt;}
.w57{width:72.992000pt;}
.w23{width:73.632000pt;}
.w8c{width:74.592000pt;}
.w9{width:74.866667pt;}
.w65{width:74.912000pt;}
.w3a{width:84.512000pt;}
.w35{width:84.992000pt;}
.w3f{width:85.632000pt;}
.w43{width:86.432000pt;}
.w47{width:91.232000pt;}
.w4e{width:91.392000pt;}
.w8d{width:91.826667pt;}
.w78{width:93.746667pt;}
.w7f{width:98.546667pt;}
.w58{width:99.506667pt;}
.w7{width:100.826667pt;}
.w24{width:102.066667pt;}
.w10{width:103.186667pt;}
.w6c{width:103.392000pt;}
.w6d{width:109.586667pt;}
.w8a{width:112.786667pt;}
.w75{width:113.312000pt;}
.w4{width:118.592000pt;}
.w39{width:119.506667pt;}
.w37{width:119.552000pt;}
.w16{width:122.066667pt;}
.wc{width:122.226667pt;}
.w1c{width:122.272000pt;}
.w66{width:128.786667pt;}
.w5b{width:128.946667pt;}
.w28{width:130.706667pt;}
.w1e{width:131.666667pt;}
.w76{width:135.346667pt;}
.w62{width:135.373333pt;}
.w86{width:138.226667pt;}
.w36{width:138.386667pt;}
.w30{width:139.026667pt;}
.w7c{width:139.826667pt;}
.w13{width:140.786667pt;}
.w8b{width:141.106667pt;}
.w6f{width:141.120000pt;}
.w17{width:141.146667pt;}
.w81{width:141.626667pt;}
.w63{width:143.026667pt;}
.w2e{width:143.066667pt;}
.w6a{width:147.346667pt;}
.w4d{width:147.826667pt;}
.w82{width:149.586667pt;}
.w4c{width:149.746667pt;}
.w5f{width:150.386667pt;}
.w74{width:150.560000pt;}
.w5d{width:151.066667pt;}
.w68{width:153.626667pt;}
.w55{width:153.946667pt;}
.w72{width:157.266667pt;}
.w2c{width:157.906667pt;}
.w71{width:160.013333pt;}
.w70{width:160.026667pt;}
.w52{width:161.106667pt;}
.w2a{width:161.946667pt;}
.w69{width:166.413333pt;}
.w19{width:166.706667pt;}
.w2b{width:167.533333pt;}
.w1a{width:169.426667pt;}
.w25{width:170.093333pt;}
.w21{width:175.546667pt;}
.w4f{width:176.653333pt;}
.w48{width:176.813333pt;}
.w44{width:177.933333pt;}
.w40{width:178.093333pt;}
.w3b{width:178.253333pt;}
.w7b{width:178.413333pt;}
.w29{width:178.733333pt;}
.w1f{width:178.866667pt;}
.w1d{width:178.893333pt;}
.w5a{width:178.906667pt;}
.w11{width:179.213333pt;}
.w31{width:180.786667pt;}
.w77{width:182.893333pt;}
.w7a{width:183.386667pt;}
.w61{width:183.546667pt;}
.w2f{width:186.413333pt;}
.w8e{width:186.733333pt;}
.w85{width:186.906667pt;}
.w6e{width:187.533333pt;}
.w5e{width:187.853333pt;}
.w18{width:188.333333pt;}
.w8f{width:190.106667pt;}
.w87{width:190.253333pt;}
.w84{width:190.893333pt;}
.w12{width:191.386667pt;}
.w26{width:192.653333pt;}
.w56{width:194.413333pt;}
.w60{width:196.973333pt;}
.wa{width:197.773333pt;}
.wb{width:197.946667pt;}
.w14{width:201.453333pt;}
.wd{width:207.213333pt;}
.w54{width:207.533333pt;}
.w67{width:207.853333pt;}
.w38{width:209.933333pt;}
.w20{width:210.573333pt;}
.w73{width:216.333333pt;}
.w1b{width:216.653333pt;}
.w59{width:220.173333pt;}
.w5c{width:229.613333pt;}
.w80{width:231.213333pt;}
.w79{width:236.973333pt;}
.w50{width:237.946667pt;}
.w49{width:238.106667pt;}
.w51{width:238.413333pt;}
.w4a{width:238.573333pt;}
.w45{width:240.026667pt;}
.w46{width:240.333333pt;}
.w41{width:240.346667pt;}
.w42{width:240.653333pt;}
.w3c{width:240.826667pt;}
.w3d{width:241.133333pt;}
.w33{width:244.973333pt;}
.w32{width:245.013333pt;}
.w6b{width:245.613333pt;}
.w5{width:290.093333pt;}
.w6{width:439.586667pt;}
.w53{width:528.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w2{width:1122.560000pt;}
.w3{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.x9{left:76.000000pt;}
.x58{left:83.840000pt;}
.x1{left:94.112000pt;}
.x54{left:100.000000pt;}
.x7{left:141.306667pt;}
.xf{left:150.120000pt;}
.x42{left:152.360000pt;}
.x2e{left:162.280000pt;}
.x36{left:163.720000pt;}
.x37{left:168.520000pt;}
.xb{left:196.040000pt;}
.x3{left:215.226667pt;}
.x10{left:225.640000pt;}
.x4c{left:235.080000pt;}
.x15{left:244.520000pt;}
.x51{left:249.000000pt;}
.x3b{left:250.600000pt;}
.x25{left:253.640000pt;}
.x19{left:263.560000pt;}
.x27{left:282.440000pt;}
.x5b{left:284.066667pt;}
.x8{left:286.786667pt;}
.xe{left:293.506667pt;}
.x2f{left:301.320000pt;}
.x53{left:304.226667pt;}
.x1d{left:310.760000pt;}
.x3a{left:312.680000pt;}
.x6{left:316.386667pt;}
.x22{left:329.640000pt;}
.x2b{left:332.360000pt;}
.x46{left:339.106667pt;}
.x33{left:340.706667pt;}
.x35{left:341.666667pt;}
.x38{left:345.986667pt;}
.x5{left:362.146667pt;}
.x49{left:367.426667pt;}
.x4{left:396.893333pt;}
.x2{left:420.413333pt;}
.x11{left:424.066667pt;}
.x5c{left:432.066667pt;}
.x55{left:436.066667pt;}
.x59{left:452.546667pt;}
.x1a{left:461.986667pt;}
.x3c{left:471.426667pt;}
.x4d{left:472.706667pt;}
.x29{left:480.866667pt;}
.xc{left:486.786667pt;}
.x43{left:490.306667pt;}
.x3f{left:499.266667pt;}
.x30{left:509.186667pt;}
.x4a{left:518.626667pt;}
.x1e{left:528.066667pt;}
.x23{left:540.866667pt;}
.x2c{left:578.186667pt;}
.x34{left:582.186667pt;}
.x39{left:584.746667pt;}
.x1b{left:603.786667pt;}
.x5a{left:613.226667pt;}
.x16{left:616.586667pt;}
.x12{left:622.666667pt;}
.x56{left:623.626667pt;}
.x28{left:624.586667pt;}
.x31{left:629.386667pt;}
.x3d{left:632.586667pt;}
.x47{left:641.546667pt;}
.x44{left:644.586667pt;}
.x1f{left:650.986667pt;}
.x4e{left:656.906667pt;}
.x40{left:683.466667pt;}
.x24{left:717.226667pt;}
.x13{left:745.546667pt;}
.x17{left:758.026667pt;}
.x57{left:762.506667pt;}
.x4b{left:768.586667pt;}
.x1c{left:792.773333pt;}
.x48{left:802.213333pt;}
.x2a{left:811.653333pt;}
.x41{left:819.493333pt;}
.x3e{left:821.093333pt;}
.x2d{left:823.813333pt;}
.x20{left:830.533333pt;}
.x4f{left:835.973333pt;}
.x32{left:839.973333pt;}
.x45{left:849.413333pt;}
.xd{left:927.013333pt;}
.x26{left:951.333333pt;}
.x52{left:952.453333pt;}
.x14{left:953.413333pt;}
.x18{left:960.133333pt;}
.x21{left:962.853333pt;}
.x50{left:976.453333pt;}
}




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