
    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_0d07a1f4e0dbc7be5f926632.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_fe4b9ed52d3f6285c7d2c5d0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_3bd8ae8d7319c76522b2ed77.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_ee3c9d47748c376c2c289c80.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_cfa9a79ca3d73f696774f39d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b9066b3880d7738664bd46cd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003418;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_bdad1f6800a3b33b8ca65a62.woff2')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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6ca5efa21fed3d78f6a8b233.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.857422;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5992dc98854164daf3cfb123.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003418;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;}
.m9{transform:matrix(0.246349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246349,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249503,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251043,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251084,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253441,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.265782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265782,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.280628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280628,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-78.000000px;}
.v4{vertical-align:-2.540993px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.367586px;}
.v2{vertical-align:55.761977px;}
.ls47{letter-spacing:-3.020109px;}
.ls29{letter-spacing:-2.721840px;}
.ls3b{letter-spacing:-1.032000px;}
.ls44{letter-spacing:-1.021812px;}
.ls49{letter-spacing:-0.900000px;}
.ls40{letter-spacing:-0.762000px;}
.ls48{letter-spacing:-0.716804px;}
.ls4e{letter-spacing:-0.549406px;}
.ls42{letter-spacing:-0.522000px;}
.ls1a{letter-spacing:-0.516000px;}
.ls50{letter-spacing:-0.510000px;}
.ls4c{letter-spacing:-0.503821px;}
.ls46{letter-spacing:-0.480000px;}
.ls15{letter-spacing:-0.468000px;}
.ls3e{letter-spacing:-0.422916px;}
.lsa{letter-spacing:-0.420000px;}
.ls1e{letter-spacing:-0.414000px;}
.ls1c{letter-spacing:-0.408000px;}
.ls45{letter-spacing:-0.378000px;}
.ls3c{letter-spacing:-0.372000px;}
.ls39{letter-spacing:-0.332453px;}
.ls38{letter-spacing:-0.324000px;}
.lsf{letter-spacing:-0.318000px;}
.ls10{letter-spacing:-0.312000px;}
.ls22{letter-spacing:-0.300000px;}
.ls35{letter-spacing:-0.294000px;}
.ls43{letter-spacing:-0.284591px;}
.ls37{letter-spacing:-0.234000px;}
.ls3a{letter-spacing:-0.204000px;}
.ls21{letter-spacing:-0.120000px;}
.ls34{letter-spacing:-0.096000px;}
.ls2c{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.018000px;}
.ls11{letter-spacing:0.042000px;}
.ls1b{letter-spacing:0.060000px;}
.ls26{letter-spacing:0.066000px;}
.ls2d{letter-spacing:0.096000px;}
.ls12{letter-spacing:0.102000px;}
.ls19{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.138000px;}
.ls4{letter-spacing:0.150000px;}
.ls4a{letter-spacing:0.152787px;}
.ls7{letter-spacing:0.168000px;}
.lsc{letter-spacing:0.174000px;}
.lsb{letter-spacing:0.192000px;}
.ls51{letter-spacing:0.204000px;}
.ls28{letter-spacing:0.222000px;}
.ls55{letter-spacing:0.264000px;}
.lsd{letter-spacing:0.270000px;}
.ls3{letter-spacing:0.300000px;}
.ls32{letter-spacing:0.306000px;}
.ls33{letter-spacing:0.322800px;}
.ls3f{letter-spacing:0.342000px;}
.ls6{letter-spacing:0.378000px;}
.ls27{letter-spacing:0.381285px;}
.ls16{letter-spacing:0.402000px;}
.ls2b{letter-spacing:0.420000px;}
.ls31{letter-spacing:0.438000px;}
.ls0{letter-spacing:0.444000px;}
.ls41{letter-spacing:0.450000px;}
.ls9{letter-spacing:0.480000px;}
.ls4d{letter-spacing:0.564000px;}
.ls24{letter-spacing:0.594000px;}
.ls14{letter-spacing:0.624000px;}
.ls54{letter-spacing:0.642000px;}
.ls13{letter-spacing:0.684000px;}
.ls52{letter-spacing:0.732000px;}
.ls25{letter-spacing:0.786000px;}
.ls53{letter-spacing:0.882000px;}
.ls30{letter-spacing:1.080000px;}
.ls5{letter-spacing:1.218000px;}
.ls3d{letter-spacing:1.239775px;}
.ls2a{letter-spacing:1.350000px;}
.ls36{letter-spacing:1.362000px;}
.ls4f{letter-spacing:1.368000px;}
.ls4b{letter-spacing:1.476946px;}
.ls2e{letter-spacing:1.500000px;}
.ls20{letter-spacing:5.640000px;}
.ls1d{letter-spacing:5.652000px;}
.ls1f{letter-spacing:19.848000px;}
.ls17{letter-spacing:22.746000px;}
.ls23{letter-spacing:36.864000px;}
.ls18{letter-spacing:63.432000px;}
.ls2f{letter-spacing:89.970000px;}
.ls8{letter-spacing:151.884000px;}
.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;}
}
.ws15{word-spacing:-66.000000px;}
.ws10{word-spacing:-35.376000px;}
.ws2b{word-spacing:-24.084000px;}
.ws11{word-spacing:-21.696000px;}
.ws22{word-spacing:-21.648000px;}
.ws16{word-spacing:-18.984000px;}
.ws28{word-spacing:-16.278000px;}
.ws20{word-spacing:-16.266000px;}
.ws24{word-spacing:-15.996000px;}
.ws1a{word-spacing:-15.510000px;}
.ws94{word-spacing:-15.480000px;}
.ws12{word-spacing:-15.370795px;}
.ws21{word-spacing:-15.336000px;}
.ws1c{word-spacing:-15.318000px;}
.ws3{word-spacing:-15.294000px;}
.ws63{word-spacing:-15.138000px;}
.wsa{word-spacing:-15.108000px;}
.ws5{word-spacing:-15.084000px;}
.ws2{word-spacing:-15.066000px;}
.ws1{word-spacing:-15.054000px;}
.wse{word-spacing:-15.018000px;}
.ws23{word-spacing:-15.012000px;}
.ws1b{word-spacing:-14.982000px;}
.wsd{word-spacing:-14.958000px;}
.ws9{word-spacing:-14.934000px;}
.ws4{word-spacing:-14.916000px;}
.ws25{word-spacing:-14.848710px;}
.ws29{word-spacing:-14.796000px;}
.ws2a{word-spacing:-14.682000px;}
.wsc{word-spacing:-14.604000px;}
.wsb{word-spacing:-14.598000px;}
.ws56{word-spacing:-14.544000px;}
.ws80{word-spacing:-14.538000px;}
.ws1f{word-spacing:-14.511554px;}
.ws17{word-spacing:-14.502000px;}
.wsf{word-spacing:-14.448000px;}
.ws96{word-spacing:-14.406000px;}
.ws8c{word-spacing:-14.159349px;}
.ws7{word-spacing:-14.040000px;}
.ws13{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.620000px;}
.ws6{word-spacing:-13.560000px;}
.ws18{word-spacing:-13.440000px;}
.ws19{word-spacing:-13.260000px;}
.ws8{word-spacing:-13.140000px;}
.ws81{word-spacing:-13.080000px;}
.ws62{word-spacing:-12.654000px;}
.ws27{word-spacing:-12.642000px;}
.ws84{word-spacing:-12.426000px;}
.ws64{word-spacing:-11.682000px;}
.ws61{word-spacing:-11.442000px;}
.ws59{word-spacing:-10.901467px;}
.ws32{word-spacing:-9.343235px;}
.ws7d{word-spacing:-9.188231px;}
.ws67{word-spacing:-8.613966px;}
.ws54{word-spacing:-6.429544px;}
.ws0{word-spacing:0.000000px;}
.ws58{word-spacing:11.586027px;}
.ws5a{word-spacing:32.841618px;}
.ws2f{word-spacing:34.342271px;}
.ws65{word-spacing:37.003634px;}
.ws89{word-spacing:41.312016px;}
.ws43{word-spacing:41.747944px;}
.ws52{word-spacing:41.782324px;}
.ws53{word-spacing:42.079366px;}
.ws66{word-spacing:53.542958px;}
.ws51{word-spacing:54.937423px;}
.ws31{word-spacing:54.971802px;}
.ws8b{word-spacing:56.912361px;}
.ws2c{word-spacing:61.854387px;}
.ws33{word-spacing:62.375843px;}
.ws36{word-spacing:62.410223px;}
.ws38{word-spacing:62.478982px;}
.ws37{word-spacing:62.777657px;}
.ws7c{word-spacing:63.706930px;}
.ws8e{word-spacing:66.633839px;}
.ws69{word-spacing:71.342614px;}
.ws41{word-spacing:75.601334px;}
.ws4b{word-spacing:75.635714px;}
.ws34{word-spacing:75.670094px;}
.ws7f{word-spacing:82.705075px;}
.ws2d{word-spacing:86.565492px;}
.ws39{word-spacing:88.160716px;}
.ws3d{word-spacing:88.263855px;}
.ws3e{word-spacing:91.722380px;}
.ws3c{word-spacing:91.791140px;}
.ws3f{word-spacing:107.193304px;}
.ws3a{word-spacing:107.296444px;}
.ws95{word-spacing:108.138754px;}
.ws79{word-spacing:124.428194px;}
.ws7e{word-spacing:124.943872px;}
.ws86{word-spacing:126.104247px;}
.ws72{word-spacing:126.969187px;}
.ws6f{word-spacing:127.032712px;}
.ws4f{word-spacing:127.821117px;}
.ws4d{word-spacing:127.889876px;}
.ws75{word-spacing:129.573705px;}
.ws73{word-spacing:132.063878px;}
.ws6e{word-spacing:134.592166px;}
.ws70{word-spacing:134.604871px;}
.ws76{word-spacing:134.668396px;}
.ws7a{word-spacing:137.196684px;}
.ws87{word-spacing:142.172249px;}
.ws6b{word-spacing:142.227850px;}
.ws78{word-spacing:142.240555px;}
.ws74{word-spacing:144.768843px;}
.ws71{word-spacing:147.373361px;}
.ws82{word-spacing:149.849517px;}
.ws77{word-spacing:152.404527px;}
.ws6c{word-spacing:152.556986px;}
.ws88{word-spacing:154.494073px;}
.ws83{word-spacing:157.329079px;}
.ws1d{word-spacing:160.345346px;}
.ws8d{word-spacing:163.497978px;}
.ws90{word-spacing:163.500453px;}
.ws93{word-spacing:175.223278px;}
.ws4c{word-spacing:190.933719px;}
.ws40{word-spacing:195.493688px;}
.ws3b{word-spacing:210.757903px;}
.ws30{word-spacing:218.418503px;}
.ws2e{word-spacing:222.175961px;}
.ws55{word-spacing:228.732452px;}
.ws50{word-spacing:231.461008px;}
.ws42{word-spacing:234.074648px;}
.ws1e{word-spacing:235.437441px;}
.ws45{word-spacing:239.283708px;}
.ws47{word-spacing:244.318291px;}
.ws4a{word-spacing:257.308710px;}
.ws48{word-spacing:259.821446px;}
.ws35{word-spacing:262.260609px;}
.ws7b{word-spacing:264.222619px;}
.ws44{word-spacing:270.124651px;}
.ws6d{word-spacing:272.435109px;}
.ws46{word-spacing:272.554704px;}
.ws68{word-spacing:274.386591px;}
.ws6a{word-spacing:282.599081px;}
.ws49{word-spacing:285.557499px;}
.ws92{word-spacing:300.343723px;}
.ws4e{word-spacing:306.029142px;}
.ws85{word-spacing:315.180857px;}
.ws91{word-spacing:389.309543px;}
.ws8a{word-spacing:406.225580px;}
.ws8f{word-spacing:484.791170px;}
.ws57{word-spacing:522.561998px;}
.ws5b{word-spacing:552.294721px;}
.ws60{word-spacing:570.490511px;}
.ws5c{word-spacing:593.518786px;}
.ws5d{word-spacing:603.035824px;}
.ws5e{word-spacing:634.249739px;}
.ws5f{word-spacing:674.290338px;}
.ws26{word-spacing:969.160998px;}
._19{margin-left:-13.554000px;}
._16{margin-left:-11.886000px;}
._15{margin-left:-10.878000px;}
._1c{margin-left:-9.486000px;}
._12{margin-left:-8.064000px;}
._13{margin-left:-6.474000px;}
._1b{margin-left:-4.524000px;}
._1a{margin-left:-3.288000px;}
._14{margin-left:-2.256000px;}
._2{margin-left:-1.080000px;}
._0{width:1.176000px;}
._4{width:2.472000px;}
._9{width:3.810000px;}
._f{width:4.824000px;}
._10{width:6.090000px;}
._e{width:7.182000px;}
._b{width:8.220000px;}
._a{width:9.396000px;}
._7{width:10.956000px;}
._8{width:12.042000px;}
._22{width:13.506000px;}
._24{width:15.978000px;}
._c{width:17.094000px;}
._d{width:18.348000px;}
._20{width:19.464000px;}
._28{width:20.592000px;}
._1{width:22.176000px;}
._25{width:23.202000px;}
._1d{width:24.270000px;}
._3{width:25.584000px;}
._1e{width:26.706000px;}
._1f{width:27.852000px;}
._23{width:29.064000px;}
._27{width:30.228000px;}
._29{width:31.308000px;}
._2a{width:32.340000px;}
._67{width:34.182000px;}
._2b{width:36.576000px;}
._94{width:37.578000px;}
._93{width:38.598000px;}
._95{width:39.756000px;}
._96{width:42.927920px;}
._44{width:44.018080px;}
._4a{width:45.098269px;}
._4d{width:50.228464px;}
._26{width:51.782559px;}
._4e{width:58.098449px;}
._62{width:62.159836px;}
._3b{width:64.105243px;}
._38{width:65.367397px;}
._65{width:68.889200px;}
._5f{width:70.118242px;}
._32{width:72.119044px;}
._3c{width:74.207997px;}
._18{width:79.914000px;}
._31{width:84.009783px;}
._85{width:88.081824px;}
._40{width:93.835849px;}
._61{width:94.887229px;}
._41{width:97.312299px;}
._37{width:99.690595px;}
._66{width:102.526030px;}
._47{width:103.803666px;}
._60{width:105.561340px;}
._3e{width:107.017993px;}
._63{width:108.444284px;}
._35{width:111.986110px;}
._5e{width:113.526270px;}
._69{width:115.195518px;}
._36{width:116.415274px;}
._64{width:120.825627px;}
._39{width:126.981266px;}
._4b{width:128.257984px;}
._45{width:129.568093px;}
._17{width:130.602000px;}
._78{width:131.780360px;}
._74{width:134.437892px;}
._4f{width:136.007219px;}
._42{width:139.170318px;}
._34{width:140.486990px;}
._6d{width:142.441671px;}
._5c{width:144.613258px;}
._55{width:145.847568px;}
._48{width:148.784120px;}
._81{width:150.308620px;}
._8d{width:152.359761px;}
._6f{width:159.253208px;}
._52{width:161.484823px;}
._3a{width:165.135530px;}
._3d{width:166.768710px;}
._91{width:169.186855px;}
._73{width:170.251296px;}
._59{width:174.104254px;}
._43{width:177.849165px;}
._8a{width:185.228487px;}
._7c{width:189.905622px;}
._7d{width:193.961843px;}
._72{width:196.796772px;}
._7a{width:201.634974px;}
._6b{width:205.528653px;}
._75{width:207.641972px;}
._84{width:209.279005px;}
._82{width:213.100029px;}
._6c{width:220.899448px;}
._7b{width:224.127921px;}
._83{width:226.516351px;}
._2f{width:227.635267px;}
._77{width:231.097014px;}
._2e{width:232.490602px;}
._86{width:238.654948px;}
._8b{width:247.229266px;}
._89{width:248.519268px;}
._54{width:251.593414px;}
._6a{width:257.531517px;}
._71{width:259.006179px;}
._79{width:262.296127px;}
._5b{width:269.720116px;}
._68{width:272.132528px;}
._33{width:283.109365px;}
._51{width:299.987542px;}
._80{width:308.112006px;}
._6e{width:311.243368px;}
._88{width:322.540808px;}
._7f{width:331.457237px;}
._87{width:332.505863px;}
._70{width:352.098382px;}
._53{width:359.726680px;}
._56{width:373.776696px;}
._76{width:380.707464px;}
._57{width:388.118173px;}
._7e{width:414.712389px;}
._46{width:422.639754px;}
._58{width:426.647863px;}
._5a{width:427.884574px;}
._90{width:430.790715px;}
._2c{width:472.807735px;}
._3f{width:473.974192px;}
._4c{width:475.078812px;}
._5d{width:476.555522px;}
._49{width:485.328051px;}
._50{width:491.780737px;}
._8c{width:510.054582px;}
._8e{width:545.918310px;}
._8f{width:562.635750px;}
._92{width:570.579022px;}
._5{width:685.776000px;}
._2d{width:816.494759px;}
._30{width:1027.802340px;}
._21{width:1193.784000px;}
._11{width:1227.384000px;}
._6{width:1260.984000px;}
.fcd{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fc2{color:rgb(127,127,127);}
.fc8{color:rgb(166,166,166);}
.fc9{color:rgb(255,255,255);}
.fcb{color:rgb(51,51,51);}
.fcc{color:rgb(64,64,64);}
.fc3{color:transparent;}
.fcf{color:rgb(244,176,132);}
.fc4{color:rgb(174,170,170);}
.fc5{color:rgb(31,78,120);}
.fce{color:rgb(237,125,49);}
.fc1{color:rgb(31,73,125);}
.fc6{color:rgb(51,51,153);}
.fc7{color:rgb(255,0,0);}
.fca{color:rgb(91,155,213);}
.fs0{font-size:6.000000px;}
.fs13{font-size:28.449310px;}
.fse{font-size:29.974332px;}
.fs18{font-size:38.114895px;}
.fsb{font-size:39.600000px;}
.fs17{font-size:40.655888px;}
.fs12{font-size:41.341747px;}
.fsa{font-size:42.000000px;}
.fs16{font-size:42.750849px;}
.fs14{font-size:49.311082px;}
.fs20{font-size:49.396148px;}
.fs1d{font-size:50.929161px;}
.fs15{font-size:52.591198px;}
.fs7{font-size:54.000000px;}
.fs1e{font-size:58.744378px;}
.fs6{font-size:60.000000px;}
.fs1f{font-size:60.737101px;}
.fs1c{font-size:62.651986px;}
.fsd{font-size:64.210418px;}
.fs10{font-size:65.702257px;}
.fs1{font-size:66.000000px;}
.fs11{font-size:66.334978px;}
.fs1b{font-size:66.392457px;}
.fsc{font-size:68.012365px;}
.fs1a{font-size:70.945922px;}
.fs19{font-size:71.910780px;}
.fsf{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs9{font-size:96.000000px;}
.fs4{font-size:108.000000px;}
.fs5{font-size:120.000000px;}
.fs2{font-size:144.000000px;}
.fs8{font-size:156.000000px;}
.y1b{bottom:-68.430000px;}
.y26{bottom:-15.600000px;}
.y1e{bottom:-9.000000px;}
.yf{bottom:-4.500000px;}
.y0{bottom:0.000000px;}
.y2d5{bottom:1.270497px;}
.y312{bottom:1.270505px;}
.y2dc{bottom:1.287436px;}
.y316{bottom:2.540993px;}
.y314{bottom:2.566403px;}
.y229{bottom:2.578487px;}
.y253{bottom:2.578496px;}
.y251{bottom:3.214858px;}
.y3c1{bottom:3.811752px;}
.y29f{bottom:4.099052px;}
.y178{bottom:4.261753px;}
.y182{bottom:4.297268px;}
.y17b{bottom:4.304371px;}
.y1e0{bottom:4.387402px;}
.y1e4{bottom:4.427170px;}
.y35a{bottom:4.531616px;}
.y107{bottom:4.531661px;}
.y3a1{bottom:4.884554px;}
.y2d3{bottom:5.081986px;}
.y4f{bottom:5.100000px;}
.y1de{bottom:5.474318px;}
.y372{bottom:5.537160px;}
.y33d{bottom:5.648036px;}
.y109{bottom:5.655171px;}
.y388{bottom:5.861412px;}
.yac{bottom:5.985000px;}
.y2f{bottom:6.000000px;}
.ya5{bottom:6.045000px;}
.y99{bottom:6.300000px;}
.y9c{bottom:6.330000px;}
.y1d9{bottom:7.650760px;}
.y284{bottom:10.693179px;}
.y2d1{bottom:10.799220px;}
.y28{bottom:12.300000px;}
.y32{bottom:12.600000px;}
.y18a{bottom:13.886213px;}
.y186{bottom:14.951651px;}
.y183{bottom:14.991428px;}
.y105{bottom:15.842087px;}
.y250{bottom:16.773060px;}
.y17e{bottom:17.118043px;}
.y30{bottom:17.737500px;}
.y2d2{bottom:17.803891px;}
.y3c0{bottom:19.941107px;}
.y29e{bottom:20.526968px;}
.y387{bottom:22.507824px;}
.y4e{bottom:24.000000px;}
.y3a0{bottom:24.454898px;}
.y18b{bottom:24.576111px;}
.y283{bottom:24.655541px;}
.y25{bottom:25.200000px;}
.y17d{bottom:25.641550px;}
.y181{bottom:25.674223px;}
.y18f{bottom:26.742502px;}
.y106{bottom:27.152514px;}
.y1dd{bottom:27.374490px;}
.y18e{bottom:27.805100px;}
.y2e{bottom:27.900000px;}
.y108{bottom:28.314225px;}
.y371{bottom:28.782305px;}
.y33c{bottom:29.236986px;}
.ye{bottom:29.400000px;}
.y1d8{bottom:29.551512px;}
.y1d{bottom:29.730000px;}
.y24f{bottom:30.331606px;}
.y2c{bottom:33.337500px;}
.y189{bottom:35.266009px;}
.y3bf{bottom:36.070461px;}
.y29d{bottom:37.774913px;}
.y1e2{bottom:38.325780px;}
.y50{bottom:39.337500px;}
.y13{bottom:41.145000px;}
.y24d{bottom:43.890151px;}
.y39f{bottom:44.058066px;}
.y188{bottom:47.021346px;}
.y18d{bottom:49.184896px;}
.y1dc{bottom:49.275243px;}
.y2d{bottom:49.500000px;}
.y370{bottom:50.925365px;}
.y358{bottom:50.972529px;}
.y3be{bottom:52.231318px;}
.y33b{bottom:52.862705px;}
.y29c{bottom:54.202829px;}
.y4d{bottom:54.937500px;}
.y24c{bottom:57.448697px;}
.yd{bottom:58.200000px;}
.y39e{bottom:63.628671px;}
.y3bd{bottom:68.360673px;}
.y18c{bottom:70.607310px;}
.y29b{bottom:70.630744px;}
.y24a{bottom:71.007243px;}
.y1db{bottom:71.175995px;}
.y36f{bottom:73.105146px;}
.y357{bottom:73.593382px;}
.y12{bottom:75.045000px;}
.y24{bottom:82.530000px;}
.y39d{bottom:83.199276px;}
.y22{bottom:83.437500px;}
.y3bc{bottom:84.490028px;}
.y248{bottom:84.565789px;}
.y29a{bottom:87.058660px;}
.y36e{bottom:95.248205px;}
.y103{bottom:96.251686px;}
.y247{bottom:98.128632px;}
.y3bb{bottom:100.619382px;}
.y39c{bottom:102.769881px;}
.y299{bottom:103.486576px;}
.y21{bottom:103.537500px;}
.y245{bottom:111.682880px;}
.y36d{bottom:117.391265px;}
.y3ba{bottom:117.725319px;}
.y102{bottom:118.909991px;}
.y1a{bottom:119.400000px;}
.y298{bottom:120.730147px;}
.y39b{bottom:122.340486px;}
.y244{bottom:125.245724px;}
.yf6{bottom:131.137500px;}
.y32a{bottom:132.937500px;}
.y1a7{bottom:136.537500px;}
.y297{bottom:137.163530px;}
.y1d3{bottom:137.437500px;}
.y3b9{bottom:137.663973px;}
.y176{bottom:138.637500px;}
.y242{bottom:138.799972px;}
.y3c3{bottom:138.937500px;}
.y20{bottom:139.537500px;}
.y4c{bottom:139.837500px;}
.y36c{bottom:140.672691px;}
.yde{bottom:141.637500px;}
.y377{bottom:141.937500px;}
.y17{bottom:142.245000px;}
.y39a{bottom:142.885388px;}
.y2b1{bottom:143.437500px;}
.y2cd{bottom:143.737500px;}
.y11{bottom:144.345000px;}
.y2be{bottom:145.237500px;}
.yf5{bottom:149.437500px;}
.y223{bottom:152.130000px;}
.y241{bottom:152.362815px;}
.y35f{bottom:153.045000px;}
.y296{bottom:153.585979px;}
.yf4{bottom:154.830000px;}
.y19{bottom:155.145000px;}
.y10{bottom:156.330000px;}
.y409{bottom:156.630000px;}
.y3b8{bottom:157.573645px;}
.y329{bottom:159.030000px;}
.y2ce{bottom:159.183706px;}
.y1d2{bottom:159.345000px;}
.y311{bottom:159.818950px;}
.y175{bottom:160.245000px;}
.y68{bottom:160.530000px;}
.y135{bottom:161.430000px;}
.y399{bottom:162.462505px;}
.y36b{bottom:162.808406px;}
.y333{bottom:162.930000px;}
.ydd{bottom:163.245000px;}
.y1a6{bottom:163.575000px;}
.y376{bottom:163.875000px;}
.y2cc{bottom:165.375000px;}
.y3c2{bottom:165.675000px;}
.y3b5{bottom:165.765189px;}
.y240{bottom:165.917063px;}
.y1b8{bottom:166.575000px;}
.y15c{bottom:167.775000px;}
.y295{bottom:170.019362px;}
.y310{bottom:170.618349px;}
.y3dd{bottom:170.775000px;}
.y15b{bottom:173.175000px;}
.y4b{bottom:173.475000px;}
.y2bd{bottom:174.975000px;}
.y2b0{bottom:177.075000px;}
.y3b7{bottom:177.521120px;}
.y408{bottom:178.575000px;}
.y23f{bottom:179.479907px;}
.y3f0{bottom:180.675000px;}
.y1d1{bottom:180.975000px;}
.y30f{bottom:181.417569px;}
.yf3{bottom:181.875000px;}
.y398{bottom:182.026597px;}
.y174{bottom:182.175000px;}
.y16{bottom:183.045000px;}
.y134{bottom:183.375000px;}
.y332{bottom:184.875000px;}
.ydc{bottom:185.175000px;}
.y375{bottom:185.475000px;}
.y1a5{bottom:185.775000px;}
.y36a{bottom:186.060454px;}
.y15a{bottom:186.075000px;}
.y294{bottom:187.261840px;}
.y1f{bottom:187.275000px;}
.y1b7{bottom:188.175000px;}
.y26d{bottom:189.375000px;}
.y67{bottom:189.975000px;}
.y318{bottom:192.237964px;}
.y3dc{bottom:192.675000px;}
.y23e{bottom:193.034155px;}
.y35e{bottom:196.575000px;}
.y3b6{bottom:197.455995px;}
.yb4{bottom:198.075000px;}
.y383{bottom:200.175000px;}
.y2bc{bottom:201.375000px;}
.y397{bottom:201.603715px;}
.y1d0{bottom:202.575000px;}
.y293{bottom:203.695222px;}
.y173{bottom:203.775000px;}
.y159{bottom:204.375000px;}
.y133{bottom:204.975000px;}
.y30e{bottom:205.578178px;}
.y331{bottom:206.475000px;}
.y23c{bottom:206.596998px;}
.ydb{bottom:206.775000px;}
.y4a{bottom:207.375000px;}
.y2cb{bottom:208.875000px;}
.y214{bottom:209.175000px;}
.y158{bottom:209.775000px;}
.y2af{bottom:210.975000px;}
.y407{bottom:212.175000px;}
.yca{bottom:212.775000px;}
.yb3{bottom:213.675000px;}
.y3db{bottom:214.275000px;}
.y215{bottom:215.175000px;}
.y27f{bottom:215.775000px;}
.y30d{bottom:216.377398px;}
.y374{bottom:217.875000px;}
.y35d{bottom:218.475000px;}
.y66{bottom:219.075000px;}
.yf2{bottom:219.675000px;}
.y292{bottom:220.117671px;}
.y23b{bottom:220.151247px;}
.y396{bottom:221.167807px;}
.y382{bottom:222.075000px;}
.y1f5{bottom:222.675000px;}
.y26c{bottom:222.975000px;}
.y1cf{bottom:224.475000px;}
.y172{bottom:225.675000px;}
.y132{bottom:226.875000px;}
.y30c{bottom:227.197793px;}
.yda{bottom:228.675000px;}
.y1a4{bottom:228.975000px;}
.y15{bottom:230.475000px;}
.y213{bottom:230.775000px;}
.y1b6{bottom:231.675000px;}
.y239{bottom:233.714090px;}
.y406{bottom:234.075000px;}
.yb2{bottom:235.275000px;}
.y3ef{bottom:236.175000px;}
.y291{bottom:236.551054px;}
.y157{bottom:236.775000px;}
.y319{bottom:237.997014px;}
.y330{bottom:240.075000px;}
.y117{bottom:240.675000px;}
.y49{bottom:240.975000px;}
.yf1{bottom:241.575000px;}
.y395{bottom:241.747877px;}
.y2ca{bottom:242.775000px;}
.y25f{bottom:243.675000px;}
.y373{bottom:243.975000px;}
.y369{bottom:244.050000px;}
.y2ae{bottom:244.575000px;}
.y237{bottom:247.268338px;}
.y171{bottom:247.275000px;}
.y3da{bottom:248.175000px;}
.y65{bottom:248.475000px;}
.y27e{bottom:249.675000px;}
.yd9{bottom:250.275000px;}
.y30b{bottom:251.337227px;}
.y212{bottom:252.375000px;}
.y1b5{bottom:253.275000px;}
.y290{bottom:253.793532px;}
.y26b{bottom:256.875000px;}
.yb1{bottom:257.175000px;}
.y96{bottom:257.475000px;}
.y1ce{bottom:258.075000px;}
.y1f4{bottom:259.275000px;}
.y131{bottom:260.475000px;}
.y236{bottom:260.831181px;}
.y394{bottom:261.324995px;}
.y32f{bottom:261.975000px;}
.y30a{bottom:262.153387px;}
.y116{bottom:262.275000px;}
.y48{bottom:262.875000px;}
.y2c9{bottom:264.375000px;}
.y1f3{bottom:264.675000px;}
.y25e{bottom:265.575000px;}
.y405{bottom:267.675000px;}
.y3d9{bottom:269.775000px;}
.y28f{bottom:270.226915px;}
.y27d{bottom:271.275000px;}
.y95{bottom:271.575000px;}
.y1a3{bottom:271.875000px;}
.yd8{bottom:272.175000px;}
.y309{bottom:272.952608px;}
.y211{bottom:274.275000px;}
.y235{bottom:274.385430px;}
.yf0{bottom:275.175000px;}
.y64{bottom:277.575000px;}
.y2ad{bottom:278.475000px;}
.yb0{bottom:278.775000px;}
.y170{bottom:280.875000px;}
.y393{bottom:280.889087px;}
.y130{bottom:282.375000px;}
.y32e{bottom:283.575000px;}
.y31a{bottom:283.751828px;}
.y115{bottom:284.175000px;}
.y47{bottom:284.475000px;}
.y94{bottom:285.375000px;}
.y2c8{bottom:286.275000px;}
.y222{bottom:287.175000px;}
.y28e{bottom:287.469393px;}
.y233{bottom:287.948273px;}
.y26a{bottom:290.475000px;}
.y3d8{bottom:291.675000px;}
.y1cd{bottom:292.875000px;}
.y27c{bottom:293.175000px;}
.y3c7{bottom:293.775000px;}
.y1f2{bottom:295.875000px;}
.yee{bottom:297.075000px;}
.y308{bottom:297.117452px;}
.y25d{bottom:299.175000px;}
.y93{bottom:299.475000px;}
.y2ac{bottom:300.075000px;}
.y392{bottom:300.466205px;}
.yaf{bottom:300.675000px;}
.y232{bottom:301.502521px;}
.y404{bottom:301.575000px;}
.y16f{bottom:302.775000px;}
.yef{bottom:303.075000px;}
.y28d{bottom:303.902775px;}
.y12f{bottom:303.975000px;}
.y32d{bottom:305.475000px;}
.yd7{bottom:305.775000px;}
.y46{bottom:306.375000px;}
.y63{bottom:306.675000px;}
.y210{bottom:307.875000px;}
.y307{bottom:307.916672px;}
.y1b4{bottom:308.775000px;}
.y381{bottom:309.075000px;}
.yc2{bottom:310.275000px;}
.y269{bottom:312.075000px;}
.y92{bottom:313.275000px;}
.y3ee{bottom:313.575000px;}
.y1f1{bottom:314.175000px;}
.y27b{bottom:314.775000px;}
.y230{bottom:315.065364px;}
.y156{bottom:315.675000px;}
.y35c{bottom:315.975000px;}
.y114{bottom:317.775000px;}
.yed{bottom:318.675000px;}
.y306{bottom:318.732832px;}
.y1f0{bottom:319.575000px;}
.y391{bottom:320.030297px;}
.y28c{bottom:320.325224px;}
.y25c{bottom:320.775000px;}
.y2ab{bottom:321.975000px;}
.yae{bottom:322.275000px;}
.y16e{bottom:324.375000px;}
.y12e{bottom:325.575000px;}
.y1a2{bottom:326.775000px;}
.y3ad{bottom:327.075000px;}
.y91{bottom:327.375000px;}
.yd6{bottom:327.675000px;}
.y45{bottom:327.975000px;}
.y22e{bottom:328.619613px;}
.y31b{bottom:329.532053px;}
.y20f{bottom:329.775000px;}
.y1b3{bottom:330.675000px;}
.y268{bottom:334.005000px;}
.y403{bottom:335.220000px;}
.y62{bottom:336.120000px;}
.y27a{bottom:336.705000px;}
.y28b{bottom:336.758607px;}
.y155{bottom:337.305000px;}
.y32c{bottom:337.905000px;}
.y34b{bottom:338.220000px;}
.y113{bottom:339.705000px;}
.y390{bottom:340.584316px;}
.yec{bottom:340.605000px;}
.y90{bottom:341.220000px;}
.y35b{bottom:342.120000px;}
.y22d{bottom:342.182456px;}
.y356{bottom:342.209216px;}
.y25b{bottom:342.705000px;}
.y305{bottom:342.872266px;}
.y359{bottom:343.332771px;}
.y2aa{bottom:343.605000px;}
.yad{bottom:343.905000px;}
.y380{bottom:344.205000px;}
.y16d{bottom:346.320000px;}
.y1ef{bottom:346.905000px;}
.y3d7{bottom:347.205000px;}
.y12d{bottom:347.505000px;}
.y3ac{bottom:349.005000px;}
.yd5{bottom:349.320000px;}
.y44{bottom:349.905000px;}
.y20e{bottom:351.405000px;}
.y1b2{bottom:352.320000px;}
.y28a{bottom:353.181056px;}
.y304{bottom:353.696896px;}
.y8f{bottom:355.320000px;}
.y267{bottom:355.620000px;}
.y22b{bottom:355.736704px;}
.y402{bottom:357.105000px;}
.y279{bottom:358.305000px;}
.y154{bottom:358.920000px;}
.y34a{bottom:360.120000px;}
.y38f{bottom:360.148409px;}
.y18{bottom:361.005000px;}
.y112{bottom:361.305000px;}
.y1cc{bottom:361.920000px;}
.y2c7{bottom:363.405000px;}
.y25a{bottom:364.305000px;}
.y303{bottom:364.496117px;}
.y61{bottom:364.605000px;}
.y2a9{bottom:365.220000px;}
.yab{bottom:365.820000px;}
.y16c{bottom:367.905000px;}
.y3d6{bottom:368.820000px;}
.y12c{bottom:369.120000px;}
.y22a{bottom:369.299547px;}
.y8e{bottom:369.420000px;}
.y289{bottom:370.434468px;}
.y3ab{bottom:370.605000px;}
.yd4{bottom:371.205000px;}
.y43{bottom:371.505000px;}
.y1a1{bottom:373.320000px;}
.y221{bottom:373.905000px;}
.yeb{bottom:374.205000px;}
.y31c{bottom:375.295337px;}
.y37f{bottom:376.320000px;}
.y1ee{bottom:378.105000px;}
.y401{bottom:378.720000px;}
.y38e{bottom:379.725526px;}
.y278{bottom:380.205000px;}
.y153{bottom:380.820000px;}
.y349{bottom:381.720000px;}
.y111{bottom:382.920000px;}
.y8d{bottom:383.205000px;}
.y1cb{bottom:383.820000px;}
.y2c6{bottom:385.005000px;}
.y288{bottom:386.856917px;}
.y2a8{bottom:387.120000px;}
.yaa{bottom:387.405000px;}
.y302{bottom:388.652490px;}
.y266{bottom:389.505000px;}
.y3d5{bottom:390.405000px;}
.y12b{bottom:391.005000px;}
.y60{bottom:391.905000px;}
.yd3{bottom:392.820000px;}
.y1a0{bottom:394.905000px;}
.y37e{bottom:395.220000px;}
.y1b1{bottom:395.820000px;}
.yea{bottom:396.120000px;}
.y227{bottom:396.416639px;}
.y8c{bottom:397.320000px;}
.y259{bottom:398.205000px;}
.y38d{bottom:399.289618px;}
.y301{bottom:399.451711px;}
.y1ed{bottom:399.705000px;}
.y16b{bottom:401.820000px;}
.y152{bottom:402.420000px;}
.y3ed{bottom:402.705000px;}
.y287{bottom:403.290299px;}
.y348{bottom:403.605000px;}
.y3aa{bottom:404.505000px;}
.y10f{bottom:404.820000px;}
.y42{bottom:405.105000px;}
.y1ca{bottom:405.405000px;}
.y2c5{bottom:406.905000px;}
.ya9{bottom:409.320000px;}
.y300{bottom:410.250931px;}
.y110{bottom:410.820000px;}
.y8b{bottom:411.120000px;}
.y3d4{bottom:412.320000px;}
.y12a{bottom:412.620000px;}
.yd2{bottom:414.405000px;}
.y277{bottom:415.320000px;}
.y19f{bottom:416.820000px;}
.y220{bottom:417.420000px;}
.yc9{bottom:417.705000px;}
.y38c{bottom:418.892787px;}
.y286{bottom:419.712748px;}
.y5f{bottom:419.820000px;}
.y2a7{bottom:420.705000px;}
.y31d{bottom:421.075561px;}
.y1ec{bottom:421.320000px;}
.y37d{bottom:421.620000px;}
.y16a{bottom:423.405000px;}
.y151{bottom:424.320000px;}
.y3ec{bottom:424.620000px;}
.y8a{bottom:425.205000px;}
.y3a9{bottom:426.120000px;}
.y10e{bottom:426.405000px;}
.y41{bottom:427.005000px;}
.y2c4{bottom:428.505000px;}
.y1b0{bottom:429.705000px;}
.ya8{bottom:430.905000px;}
.y265{bottom:433.005000px;}
.y3d3{bottom:433.905000px;}
.y400{bottom:434.205000px;}
.y2ff{bottom:434.415775px;}
.yd1{bottom:436.320000px;}
.y285{bottom:436.966160px;}
.y19e{bottom:438.405000px;}
.y38b{bottom:438.469904px;}
.y89{bottom:439.320000px;}
.y258{bottom:441.705000px;}
.y2a6{bottom:442.620000px;}
.y1eb{bottom:443.205000px;}
.y2fe{bottom:445.214995px;}
.y169{bottom:445.320000px;}
.y150{bottom:445.905000px;}
.y129{bottom:446.505000px;}
.y347{bottom:446.820000px;}
.y276{bottom:447.405000px;}
.y3a8{bottom:447.705000px;}
.y40{bottom:448.620000px;}
.y3b4{bottom:448.905000px;}
.y5e{bottom:449.205000px;}
.y1af{bottom:451.320000px;}
.ya7{bottom:452.820000px;}
.y88{bottom:453.120000px;}
.y281{bottom:454.241439px;}
.y264{bottom:454.620000px;}
.y3ff{bottom:455.820000px;}
.y2fd{bottom:456.031156px;}
.yd0{bottom:457.920000px;}
.y38a{bottom:458.033996px;}
.y3eb{bottom:458.205000px;}
.y10d{bottom:460.320000px;}
.y1c9{bottom:460.905000px;}
.ye9{bottom:461.205000px;}
.y256{bottom:463.320000px;}
.y2c3{bottom:463.905000px;}
.y2a5{bottom:464.205000px;}
.y1ea{bottom:464.820000px;}
.y368{bottom:466.005000px;}
.y31e{bottom:466.830376px;}
.y168{bottom:466.905000px;}
.y87{bottom:467.205000px;}
.y275{bottom:467.505000px;}
.y14f{bottom:467.820000px;}
.y346{bottom:468.705000px;}
.y257{bottom:469.320000px;}
.y3a6{bottom:469.620000px;}
.y3f{bottom:470.505000px;}
.y1ae{bottom:472.905000px;}
.ya6{bottom:474.405000px;}
.y3a7{bottom:475.620000px;}
.y263{bottom:476.505000px;}
.y20d{bottom:477.705000px;}
.y5d{bottom:478.320000px;}
.y389{bottom:478.588016px;}
.y14{bottom:478.605000px;}
.y3c6{bottom:479.820000px;}
.y2fc{bottom:480.195999px;}
.y86{bottom:481.005000px;}
.y10c{bottom:481.905000px;}
.ye8{bottom:482.820000px;}
.y255{bottom:485.205000px;}
.y2a4{bottom:486.105000px;}
.y1e8{bottom:486.705000px;}
.y167{bottom:488.505000px;}
.y274{bottom:489.120000px;}
.y3d2{bottom:489.405000px;}
.y3fe{bottom:489.705000px;}
.y2fb{bottom:490.995220px;}
.y3a5{bottom:491.205000px;}
.ycf{bottom:491.820000px;}
.y1e9{bottom:492.705000px;}
.y1ad{bottom:494.820000px;}
.y85{bottom:495.105000px;}
.y2c2{bottom:496.005000px;}
.ya4{bottom:496.305000px;}
.y355{bottom:496.320000px;}
.y367{bottom:496.905000px;}
.y262{bottom:498.105000px;}
.y3ca{bottom:498.705000px;}
.y14e{bottom:501.405000px;}
.y2fa{bottom:501.794440px;}
.y345{bottom:502.350000px;}
.yc1{bottom:503.850000px;}
.y3e{bottom:504.150000px;}
.y1c8{bottom:504.450000px;}
.ycb{bottom:504.750000px;}
.y5c{bottom:507.450000px;}
.y2a3{bottom:507.750000px;}
.y385{bottom:507.960205px;}
.y84{bottom:509.250000px;}
.y166{bottom:510.450000px;}
.y273{bottom:511.050000px;}
.y3d1{bottom:511.350000px;}
.y31f{bottom:512.610600px;}
.y3a4{bottom:513.150000px;}
.yce{bottom:513.450000px;}
.y3ea{bottom:513.750000px;}
.y2c1{bottom:514.650000px;}
.y21f{bottom:514.950000px;}
.y128{bottom:515.550000px;}
.y19d{bottom:515.850000px;}
.y1ac{bottom:516.450000px;}
.y254{bottom:517.650000px;}
.ya3{bottom:517.950000px;}
.y366{bottom:518.850000px;}
.y1e7{bottom:519.150000px;}
.y83{bottom:523.050000px;}
.y344{bottom:524.250000px;}
.y20c{bottom:524.850000px;}
.yc0{bottom:525.450000px;}
.y2f9{bottom:525.950814px;}
.y3d{bottom:526.050000px;}
.y354{bottom:527.550000px;}
.y2a2{bottom:529.650000px;}
.y261{bottom:530.550000px;}
.y272{bottom:532.650000px;}
.y3d0{bottom:532.950000px;}
.ycd{bottom:535.350000px;}
.y14d{bottom:536.250000px;}
.y2f8{bottom:536.750034px;}
.y5b{bottom:536.850000px;}
.y82{bottom:537.150000px;}
.y19c{bottom:537.450000px;}
.ya2{bottom:539.850000px;}
.y365{bottom:540.450000px;}
.y2c0{bottom:541.050000px;}
.y3c5{bottom:541.350000px;}
.ye7{bottom:544.050000px;}
.y3fd{bottom:545.250000px;}
.y3a3{bottom:545.550000px;}
.y1c7{bottom:545.850000px;}
.y1e5{bottom:546.979872px;}
.ybf{bottom:547.350000px;}
.y2f7{bottom:547.574664px;}
.y3c{bottom:547.650000px;}
.y3b3{bottom:547.950000px;}
.y353{bottom:549.150000px;}
.y127{bottom:550.350000px;}
.y81{bottom:550.950000px;}
.y2a1{bottom:551.250000px;}
.y271{bottom:554.550000px;}
.ycc{bottom:556.950000px;}
.y3e9{bottom:557.250000px;}
.y14c{bottom:557.850000px;}
.y320{bottom:558.373885px;}
.y20b{bottom:558.450000px;}
.y19b{bottom:559.350000px;}
.ya1{bottom:561.450000px;}
.y21e{bottom:561.750000px;}
.y364{bottom:562.050000px;}
.y80{bottom:565.050000px;}
.y5a{bottom:565.950000px;}
.y3cf{bottom:566.850000px;}
.y1c6{bottom:567.150000px;}
.y343{bottom:567.750000px;}
.y2bb{bottom:568.050000px;}
.ybe{bottom:568.950000px;}
.y1e3{bottom:569.078855px;}
.y3b{bottom:569.550000px;}
.y352{bottom:571.050000px;}
.y3a2{bottom:571.650000px;}
.y384{bottom:571.652822px;}
.y2f6{bottom:571.714098px;}
.y126{bottom:571.950000px;}
.y226{bottom:573.750000px;}
.y252{bottom:574.386362px;}
.y7f{bottom:578.850000px;}
.y20a{bottom:580.350000px;}
.y19a{bottom:580.950000px;}
.y2f5{bottom:582.530259px;}
.ya0{bottom:583.050000px;}
.y21d{bottom:583.350000px;}
.y2a0{bottom:583.650000px;}
.y363{bottom:583.950000px;}
.y1c5{bottom:587.250000px;}
.y165{bottom:587.550000px;}
.y3ce{bottom:588.450000px;}
.y3fc{bottom:588.750000px;}
.y342{bottom:589.350000px;}
.y2ba{bottom:589.650000px;}
.ybd{bottom:590.850000px;}
.y3a{bottom:591.150000px;}
.y1e6{bottom:591.214706px;}
.y3b2{bottom:591.450000px;}
.y14a{bottom:592.350000px;}
.y351{bottom:592.650000px;}
.y7e{bottom:592.950000px;}
.y2f4{bottom:593.329479px;}
.y125{bottom:593.850000px;}
.y59{bottom:595.350000px;}
.y14b{bottom:598.350000px;}
.y3c4{bottom:600.450000px;}
.y209{bottom:601.950000px;}
.y199{bottom:602.550000px;}
.y313{bottom:604.128699px;}
.y9f{bottom:604.950000px;}
.y21c{bottom:605.250000px;}
.y362{bottom:605.550000px;}
.y7d{bottom:607.050000px;}
.y1c4{bottom:607.350000px;}
.y164{bottom:609.450000px;}
.y280{bottom:609.750000px;}
.yc8{bottom:610.950000px;}
.y2b9{bottom:611.250000px;}
.ybc{bottom:612.450000px;}
.y3e8{bottom:612.750000px;}
.y39{bottom:613.050000px;}
.y149{bottom:614.250000px;}
.y350{bottom:614.550000px;}
.y24e{bottom:615.061664px;}
.y124{bottom:615.450000px;}
.y2f3{bottom:617.494323px;}
.y7c{bottom:620.850000px;}
.y3cd{bottom:622.350000px;}
.y208{bottom:623.850000px;}
.y58{bottom:624.450000px;}
.ye6{bottom:624.750000px;}
.y3b1{bottom:625.050000px;}
.y9e{bottom:626.550000px;}
.y1da{bottom:626.850000px;}
.y1c3{bottom:627.450000px;}
.y1e1{bottom:627.936872px;}
.y2f2{bottom:628.293543px;}
.y23{bottom:629.850000px;}
.y163{bottom:631.050000px;}
.yc7{bottom:632.850000px;}
.y2b8{bottom:633.150000px;}
.ybb{bottom:634.350000px;}
.y38{bottom:634.650000px;}
.y7b{bottom:634.950000px;}
.y147{bottom:635.850000px;}
.y34f{bottom:636.150000px;}
.y197{bottom:636.450000px;}
.y361{bottom:638.250000px;}
.y2f1{bottom:639.092763px;}
.y270{bottom:639.450000px;}
.y148{bottom:641.850000px;}
.y24b{bottom:642.178756px;}
.y198{bottom:642.450000px;}
.y3cc{bottom:643.950000px;}
.y3fb{bottom:644.250000px;}
.y10b{bottom:644.850000px;}
.y207{bottom:645.450000px;}
.ye5{bottom:646.650000px;}
.y3b0{bottom:646.950000px;}
.y9d{bottom:648.450000px;}
.y7a{bottom:648.750000px;}
.y123{bottom:649.350000px;}
.y315{bottom:649.908924px;}
.y162{bottom:652.950000px;}
.y57{bottom:653.850000px;}
.yc6{bottom:654.450000px;}
.y2b7{bottom:654.750000px;}
.y249{bottom:655.737302px;}
.yba{bottom:655.950000px;}
.y3e7{bottom:656.250000px;}
.y146{bottom:657.750000px;}
.y196{bottom:658.050000px;}
.y1c2{bottom:661.350000px;}
.y79{bottom:662.850000px;}
.y2f0{bottom:663.249137px;}
.y360{bottom:664.050000px;}
.y3cb{bottom:665.550000px;}
.y3fa{bottom:665.850000px;}
.y206{bottom:667.350000px;}
.y341{bottom:667.950000px;}
.y37{bottom:668.250000px;}
.y3af{bottom:668.550000px;}
.y26f{bottom:669.450000px;}
.y9b{bottom:670.050000px;}
.y21b{bottom:670.350000px;}
.y10a{bottom:670.980000px;}
.y101{bottom:671.009216px;}
.y2ef{bottom:674.073767px;}
.yc5{bottom:676.380000px;}
.y2b6{bottom:676.695000px;}
.y78{bottom:676.980000px;}
.yb9{bottom:677.580000px;}
.y3e6{bottom:677.880000px;}
.y145{bottom:679.380000px;}
.y34e{bottom:679.695000px;}
.y195{bottom:679.995000px;}
.y246{bottom:682.854393px;}
.y56{bottom:682.995000px;}
.y2ee{bottom:684.872988px;}
.y161{bottom:688.080000px;}
.ye4{bottom:689.880000px;}
.y36{bottom:690.195000px;}
.y77{bottom:690.780000px;}
.y9a{bottom:691.980000px;}
.y21a{bottom:692.280000px;}
.y122{bottom:692.880000px;}
.y26e{bottom:695.580000px;}
.y323{bottom:695.672208px;}
.yc4{bottom:697.980000px;}
.y2b5{bottom:698.280000px;}
.yb8{bottom:699.480000px;}
.y340{bottom:700.380000px;}
.y205{bottom:700.980000px;}
.y194{bottom:701.580000px;}
.y76{bottom:704.880000px;}
.y2ed{bottom:709.029361px;}
.y243{bottom:709.971485px;}
.y3e5{bottom:711.480000px;}
.y35{bottom:711.780000px;}
.y34d{bottom:712.095000px;}
.y55{bottom:712.380000px;}
.y98{bottom:713.580000px;}
.y219{bottom:713.880000px;}
.y144{bottom:714.195000px;}
.y1ab{bottom:714.480000px;}
.y1d7{bottom:715.575604px;}
.y104{bottom:717.450084px;}
.y33f{bottom:718.980000px;}
.y2ec{bottom:719.828582px;}
.yc3{bottom:719.880000px;}
.y160{bottom:720.195000px;}
.yb7{bottom:721.080000px;}
.y3f9{bottom:721.380000px;}
.y204{bottom:722.880000px;}
.y193{bottom:723.495000px;}
.y75{bottom:724.680000px;}
.y3c9{bottom:725.880000px;}
.y121{bottom:726.480000px;}
.y3ae{bottom:727.095000px;}
.y2eb{bottom:730.627802px;}
.y2b4{bottom:730.980000px;}
.ye3{bottom:732.780000px;}
.y3e4{bottom:733.380000px;}
.y34{bottom:733.695000px;}
.y97{bottom:735.480000px;}
.y218{bottom:735.495000px;}
.y143{bottom:735.780000px;}
.y1aa{bottom:736.080000px;}
.y34c{bottom:738.180000px;}
.y15f{bottom:739.095000px;}
.y324{bottom:741.452433px;}
.y54{bottom:741.480000px;}
.yb6{bottom:742.980000px;}
.y203{bottom:744.480000px;}
.y192{bottom:745.080000px;}
.y33a{bottom:745.364606px;}
.y33e{bottom:745.380000px;}
.y3c8{bottom:747.495000px;}
.y120{bottom:748.080000px;}
.y2ea{bottom:754.792646px;}
.y3e3{bottom:754.980000px;}
.y74{bottom:758.580000px;}
.y2b3{bottom:760.695000px;}
.y1df{bottom:764.852297px;}
.y15e{bottom:764.880000px;}
.y2e9{bottom:765.591866px;}
.y1c1{bottom:765.780000px;}
.y202{bottom:766.095000px;}
.y217{bottom:769.380000px;}
.y11f{bottom:769.980000px;}
.y142{bottom:770.295000px;}
.y2e8{bottom:776.408027px;}
.y3f8{bottom:776.880000px;}
.y191{bottom:777.495000px;}
.y23d{bottom:777.768511px;}
.y2b2{bottom:786.480000px;}
.y325{bottom:787.207247px;}
.y201{bottom:787.995000px;}
.y3e2{bottom:788.880000px;}
.y216{bottom:790.995000px;}
.y11e{bottom:791.580000px;}
.y73{bottom:792.195000px;}
.y3f7{bottom:798.480000px;}
.y2e7{bottom:800.572870px;}
.y190{bottom:803.580000px;}
.y187{bottom:804.596971px;}
.y23a{bottom:804.885602px;}
.y200{bottom:809.580000px;}
.y3e1{bottom:810.480000px;}
.y2e6{bottom:811.372091px;}
.y1c0{bottom:812.880000px;}
.y11d{bottom:813.480000px;}
.y141{bottom:813.795000px;}
.y32b{bottom:815.580000px;}
.y238{bottom:818.439851px;}
.y2e5{bottom:822.171311px;}
.yb{bottom:823.695000px;}
.y100{bottom:825.195000px;}
.y72{bottom:826.080000px;}
.y1c{bottom:827.295000px;}
.y1ff{bottom:831.480000px;}
.y3e0{bottom:832.380000px;}
.y326{bottom:832.987471px;}
.y339{bottom:834.195000px;}
.y1d6{bottom:834.480000px;}
.y11c{bottom:835.080000px;}
.y2e4{bottom:846.327685px;}
.y1bf{bottom:846.525000px;}
.y140{bottom:848.625000px;}
.y1fe{bottom:853.125000px;}
.y3f6{bottom:854.025000px;}
.yff{bottom:856.425000px;}
.y11b{bottom:857.025000px;}
.y2e3{bottom:857.126905px;}
.ya{bottom:857.625000px;}
.y234{bottom:859.119786px;}
.y71{bottom:859.725000px;}
.y338{bottom:865.125000px;}
.y3df{bottom:866.025000px;}
.y185{bottom:866.605483px;}
.y2e2{bottom:867.951536px;}
.y1be{bottom:868.425000px;}
.y13f{bottom:870.225000px;}
.y1a9{bottom:874.725000px;}
.y3f5{bottom:875.925000px;}
.yfe{bottom:878.025000px;}
.y11a{bottom:878.625000px;}
.y327{bottom:878.750756px;}
.y1d5{bottom:884.025000px;}
.y231{bottom:886.236877px;}
.y1fd{bottom:887.025000px;}
.y3de{bottom:887.925000px;}
.y37c{bottom:888.825000px;}
.y1bd{bottom:890.025000px;}
.y9{bottom:891.225000px;}
.y2e1{bottom:892.090969px;}
.y13e{bottom:892.125000px;}
.y70{bottom:893.325000px;}
.y22f{bottom:899.791125px;}
.yfd{bottom:899.925000px;}
.y2e0{bottom:902.907130px;}
.y1fc{bottom:908.625000px;}
.y184{bottom:909.365075px;}
.y3f4{bottom:909.525000px;}
.y1bc{bottom:911.925000px;}
.y2df{bottom:913.706350px;}
.y13d{bottom:913.725000px;}
.y33{bottom:916.725000px;}
.y119{bottom:918.225000px;}
.y37b{bottom:919.725000px;}
.yfc{bottom:921.525000px;}
.y6f{bottom:922.725000px;}
.y328{bottom:924.505570px;}
.y53{bottom:924.825000px;}
.y8{bottom:925.125000px;}
.yb5{bottom:926.025000px;}
.y2cf{bottom:926.785031px;}
.y22c{bottom:926.908217px;}
.y1fb{bottom:930.525000px;}
.y180{bottom:930.744871px;}
.y3f3{bottom:931.425000px;}
.y1bb{bottom:933.525000px;}
.y2de{bottom:937.871194px;}
.y37a{bottom:939.825000px;}
.y336{bottom:942.525000px;}
.yfb{bottom:943.425000px;}
.yc{bottom:947.625000px;}
.y337{bottom:948.525000px;}
.y2dd{bottom:948.670414px;}
.y13c{bottom:948.825000px;}
.y6e{bottom:951.825000px;}
.y1fa{bottom:952.125000px;}
.y3f2{bottom:953.025000px;}
.y228{bottom:954.025308px;}
.y1a8{bottom:955.425000px;}
.y7{bottom:958.725000px;}
.y2db{bottom:959.469634px;}
.y379{bottom:960.225000px;}
.y335{bottom:964.125000px;}
.y118{bottom:965.025000px;}
.y321{bottom:970.285795px;}
.y17f{bottom:973.537137px;}
.y1f9{bottom:974.025000px;}
.yfa{bottom:977.025000px;}
.y6d{bottom:980.325000px;}
.y1d4{bottom:983.025000px;}
.y2da{bottom:983.626008px;}
.y334{bottom:986.025000px;}
.y13b{bottom:986.625000px;}
.y1ba{bottom:989.025000px;}
.y6{bottom:992.625000px;}
.y2d9{bottom:994.450638px;}
.y17c{bottom:994.916933px;}
.y1f8{bottom:995.625000px;}
.y225{bottom:998.325000px;}
.yf9{bottom:998.625000px;}
.y378{bottom:1000.425000px;}
.y2bf{bottom:1001.325000px;}
.y2d8{bottom:1005.249859px;}
.y6c{bottom:1007.625000px;}
.y13a{bottom:1008.225000px;}
.y3f1{bottom:1008.525000px;}
.y1b9{bottom:1010.655000px;}
.y322{bottom:1016.049079px;}
.yf8{bottom:1020.570000px;}
.y5{bottom:1026.255000px;}
.y1f7{bottom:1029.255000px;}
.y2d7{bottom:1029.406233px;}
.y139{bottom:1029.570000px;}
.ye2{bottom:1032.570000px;}
.y6b{bottom:1035.855000px;}
.y2d6{bottom:1040.205453px;}
.y17a{bottom:1040.872840px;}
.yf7{bottom:1042.170000px;}
.y2d4{bottom:1051.004673px;}
.y138{bottom:1051.170000px;}
.ye1{bottom:1054.170000px;}
.y224{bottom:1057.155000px;}
.y4{bottom:1060.155000px;}
.y282{bottom:1060.678522px;}
.y317{bottom:1061.829304px;}
.y179{bottom:1062.295254px;}
.y6a{bottom:1064.070000px;}
.y260{bottom:1066.755000px;}
.y386{bottom:1066.874224px;}
.y137{bottom:1072.455000px;}
.y1f6{bottom:1072.755000px;}
.y2d0{bottom:1075.169517px;}
.ye0{bottom:1076.070000px;}
.y177{bottom:1083.675050px;}
.y69{bottom:1091.370000px;}
.ydf{bottom:1097.655000px;}
.y3{bottom:1100.955000px;}
.y2b{bottom:1110.255000px;}
.y136{bottom:1112.370000px;}
.y52{bottom:1119.570000px;}
.y15d{bottom:1122.255000px;}
.y2a{bottom:1143.855000px;}
.y29{bottom:1177.755000px;}
.y2{bottom:1179.900000px;}
.y27{bottom:1195.500000px;}
.y51{bottom:1200.300000px;}
.y31{bottom:1204.200000px;}
.y1{bottom:1207.800000px;}
.h2{height:5.967773px;}
.h4f{height:10.163972px;}
.h4e{height:10.185147px;}
.h51{height:12.704965px;}
.h50{height:12.726140px;}
.h3d{height:12.913924px;}
.h12{height:14.100000px;}
.h26{height:20.314358px;}
.h28{height:20.349872px;}
.h34{height:20.812967px;}
.h39{height:21.010915px;}
.h37{height:21.047203px;}
.h56{height:21.497300px;}
.h19{height:21.600000px;}
.h1c{height:21.637500px;}
.h1a{height:21.900000px;}
.h1b{height:21.937500px;}
.h14{height:25.500000px;}
.h4b{height:29.242595px;}
.h5c{height:37.187406px;}
.h4d{height:39.026824px;}
.h20{height:39.387305px;}
.h17{height:39.600000px;}
.h4a{height:40.437522px;}
.h62{height:40.737351px;}
.h3e{height:41.119696px;}
.h4c{height:41.628612px;}
.h2c{height:41.694154px;}
.h2b{height:41.729669px;}
.h1f{height:41.774414px;}
.h3c{height:42.330880px;}
.h43{height:43.543544px;}
.h44{height:43.773697px;}
.h23{height:44.155605px;}
.h3f{height:44.534180px;}
.h29{height:44.890469px;}
.h31{height:48.188907px;}
.h47{height:49.046227px;}
.h48{height:50.490888px;}
.h5d{height:52.147681px;}
.h15{height:53.709961px;}
.h46{height:53.771004px;}
.h45{height:53.858474px;}
.h63{height:54.430664px;}
.h40{height:55.291992px;}
.hc{height:58.222500px;}
.h5e{height:58.428856px;}
.hf{height:59.677734px;}
.h61{height:60.410876px;}
.h2d{height:60.943073px;}
.h60{height:62.190283px;}
.h2f{height:63.073950px;}
.h2a{height:63.865538px;}
.h5b{height:64.150984px;}
.h13{height:65.100000px;}
.h32{height:65.349364px;}
.h3{height:65.645508px;}
.h27{height:65.746702px;}
.h38{height:65.978687px;}
.h59{height:66.035857px;}
.h35{height:67.274235px;}
.h18{height:67.579102px;}
.h22{height:67.647064px;}
.h3a{height:67.922094px;}
.h24{height:68.835938px;}
.h55{height:69.639614px;}
.h52{height:70.877154px;}
.h54{height:71.524540px;}
.h58{height:72.643359px;}
.h53{height:73.631301px;}
.h30{height:74.004654px;}
.h7{height:83.548828px;}
.h36{height:86.515224px;}
.h25{height:87.445312px;}
.h8{height:87.609375px;}
.h1e{height:99.937500px;}
.hb{height:107.419922px;}
.h2e{height:109.065372px;}
.h42{height:109.611461px;}
.h10{height:111.037500px;}
.h1d{height:112.429688px;}
.h11{height:119.355469px;}
.hd{height:122.871094px;}
.h21{height:135.912375px;}
.h4{height:143.226562px;}
.h16{height:155.162109px;}
.h33{height:158.815796px;}
.h6{height:164.430000px;}
.ha{height:180.930000px;}
.h5{height:200.130000px;}
.h57{height:203.796547px;}
.h5f{height:212.642858px;}
.he{height:213.075000px;}
.h9{height:264.675000px;}
.h3b{height:406.748111px;}
.h41{height:494.476465px;}
.h5a{height:532.411630px;}
.h49{height:945.223997px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w20{width:63.550481px;}
.w21{width:63.572993px;}
.w1e{width:65.134842px;}
.w28{width:83.467938px;}
.w16{width:119.917427px;}
.wd{width:125.137500px;}
.w25{width:137.544333px;}
.w14{width:139.408593px;}
.wc{width:258.375000px;}
.w8{width:274.890000px;}
.w3{width:309.105000px;}
.w4{width:318.375000px;}
.w6{width:332.220000px;}
.w5{width:380.505000px;}
.w13{width:408.587217px;}
.w11{width:504.116152px;}
.w17{width:513.403286px;}
.we{width:529.050000px;}
.wb{width:541.650000px;}
.w23{width:547.876447px;}
.w15{width:549.065188px;}
.w22{width:552.436700px;}
.w1f{width:553.112051px;}
.w10{width:595.271278px;}
.w1c{width:599.851792px;}
.w19{width:634.408893px;}
.w1b{width:634.741304px;}
.w12{width:635.238607px;}
.w27{width:635.323692px;}
.w26{width:635.483811px;}
.w18{width:635.497073px;}
.w24{width:635.501317px;}
.w1a{width:635.817383px;}
.w29{width:635.948225px;}
.w1d{width:638.173228px;}
.w9{width:654.195000px;}
.wa{width:662.325000px;}
.w7{width:722.025000px;}
.wf{width:893.099973px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:2.246307px;}
.x6a{left:4.139205px;}
.x4d{left:5.440900px;}
.x15{left:8.100000px;}
.x8{left:10.800000px;}
.x43{left:14.907548px;}
.x73{left:16.901772px;}
.x41{left:18.094435px;}
.x4b{left:20.711691px;}
.x80{left:22.491376px;}
.x40{left:26.592800px;}
.x14{left:29.400000px;}
.x6{left:32.145000px;}
.x44{left:35.126575px;}
.x45{left:36.188870px;}
.x39{left:40.438053px;}
.x59{left:48.553320px;}
.x3a{left:58.532488px;}
.xc{left:66.907500px;}
.xb{left:86.437500px;}
.x71{left:91.955723px;}
.x12{left:96.030000px;}
.xf{left:103.537500px;}
.x5d{left:105.037258px;}
.x5a{left:107.960587px;}
.x5b{left:110.854973px;}
.x13{left:119.437500px;}
.x10{left:123.637500px;}
.x2{left:127.537487px;}
.x37{left:129.312296px;}
.x3d{left:142.602562px;}
.x21{left:146.137473px;}
.x1{left:148.837487px;}
.x1e{left:154.244987px;}
.x11{left:156.945000px;}
.x54{left:159.029987px;}
.x49{left:160.529973px;}
.x1b{left:165.329987px;}
.x2b{left:169.229987px;}
.x7f{left:173.172698px;}
.x18{left:180.674987px;}
.x3{left:182.774987px;}
.x52{left:184.574973px;}
.x2a{left:188.474987px;}
.x46{left:190.574987px;}
.x1c{left:193.874987px;}
.x53{left:195.374987px;}
.x2c{left:201.974987px;}
.x67{left:206.474987px;}
.x76{left:210.277128px;}
.x77{left:212.303180px;}
.x7c{left:213.674987px;}
.x58{left:220.874987px;}
.x4f{left:222.893808px;}
.x75{left:225.161853px;}
.x16{left:229.875000px;}
.x36{left:231.674987px;}
.x42{left:233.039328px;}
.x78{left:235.310120px;}
.x24{left:239.512614px;}
.x33{left:241.274987px;}
.x7a{left:243.414326px;}
.x1d{left:244.575000px;}
.x79{left:246.124732px;}
.x4a{left:249.974987px;}
.x70{left:253.574987px;}
.x5{left:255.120000px;}
.x35{left:256.574987px;}
.x4c{left:258.333913px;}
.x89{left:259.574987px;}
.x5c{left:260.803449px;}
.x85{left:264.974987px;}
.x23{left:267.074987px;}
.x3b{left:269.783184px;}
.x7e{left:273.374987px;}
.x82{left:280.274987px;}
.x4{left:285.075000px;}
.x2d{left:288.074973px;}
.x6d{left:291.974987px;}
.x2e{left:293.474987px;}
.x17{left:294.675000px;}
.x66{left:303.119987px;}
.x61{left:305.020015px;}
.xe{left:312.682500px;}
.x6e{left:316.619987px;}
.x84{left:318.119987px;}
.x8a{left:328.319987px;}
.x2f{left:360.719973px;}
.x22{left:362.204987px;}
.x30{left:366.119987px;}
.xd{left:371.512500px;}
.x27{left:373.904987px;}
.x55{left:407.219973px;}
.x5e{left:410.780869px;}
.x47{left:418.949973px;}
.x48{left:424.349987px;}
.x7d{left:429.449987px;}
.x56{left:436.949973px;}
.x6f{left:446.549987px;}
.x57{left:447.749987px;}
.x9{left:452.550000px;}
.x7{left:457.050000px;}
.xa{left:469.950000px;}
.x28{left:480.449973px;}
.x29{left:485.849987px;}
.x60{left:507.868214px;}
.x5f{left:510.762600px;}
.x1a{left:511.950000px;}
.x1f{left:532.049973px;}
.x20{left:537.449987px;}
.x3c{left:554.376666px;}
.x3e{left:555.438961px;}
.x3f{left:572.464019px;}
.x38{left:576.727365px;}
.x87{left:595.057379px;}
.x72{left:605.467729px;}
.x69{left:634.708137px;}
.x31{left:649.979973px;}
.x32{left:655.379987px;}
.x50{left:661.124973px;}
.x51{left:666.524987px;}
.x74{left:669.689058px;}
.x88{left:679.505755px;}
.x6b{left:700.660938px;}
.x81{left:721.124987px;}
.x34{left:723.524987px;}
.x65{left:727.724987px;}
.x7b{left:734.024987px;}
.x83{left:740.924987px;}
.x26{left:744.824987px;}
.x62{left:746.924987px;}
.x63{left:750.824973px;}
.x86{left:760.424987px;}
.x64{left:761.624987px;}
.x4e{left:764.324987px;}
.x19{left:765.524987px;}
.x6c{left:766.724987px;}
.x68{left:776.024987px;}
@media print{
.v1{vertical-align:-69.333333pt;}
.v4{vertical-align:-2.258660pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.993410pt;}
.v2{vertical-align:49.566202pt;}
.ls47{letter-spacing:-2.684541pt;}
.ls29{letter-spacing:-2.419413pt;}
.ls3b{letter-spacing:-0.917333pt;}
.ls44{letter-spacing:-0.908278pt;}
.ls49{letter-spacing:-0.800000pt;}
.ls40{letter-spacing:-0.677333pt;}
.ls48{letter-spacing:-0.637159pt;}
.ls4e{letter-spacing:-0.488361pt;}
.ls42{letter-spacing:-0.464000pt;}
.ls1a{letter-spacing:-0.458667pt;}
.ls50{letter-spacing:-0.453333pt;}
.ls4c{letter-spacing:-0.447841pt;}
.ls46{letter-spacing:-0.426667pt;}
.ls15{letter-spacing:-0.416000pt;}
.ls3e{letter-spacing:-0.375926pt;}
.lsa{letter-spacing:-0.373333pt;}
.ls1e{letter-spacing:-0.368000pt;}
.ls1c{letter-spacing:-0.362667pt;}
.ls45{letter-spacing:-0.336000pt;}
.ls3c{letter-spacing:-0.330667pt;}
.ls39{letter-spacing:-0.295514pt;}
.ls38{letter-spacing:-0.288000pt;}
.lsf{letter-spacing:-0.282667pt;}
.ls10{letter-spacing:-0.277333pt;}
.ls22{letter-spacing:-0.266667pt;}
.ls35{letter-spacing:-0.261333pt;}
.ls43{letter-spacing:-0.252970pt;}
.ls37{letter-spacing:-0.208000pt;}
.ls3a{letter-spacing:-0.181333pt;}
.ls21{letter-spacing:-0.106667pt;}
.ls34{letter-spacing:-0.085333pt;}
.ls2c{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.016000pt;}
.ls11{letter-spacing:0.037333pt;}
.ls1b{letter-spacing:0.053333pt;}
.ls26{letter-spacing:0.058667pt;}
.ls2d{letter-spacing:0.085333pt;}
.ls12{letter-spacing:0.090667pt;}
.ls19{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.122667pt;}
.ls4{letter-spacing:0.133333pt;}
.ls4a{letter-spacing:0.135811pt;}
.ls7{letter-spacing:0.149333pt;}
.lsc{letter-spacing:0.154667pt;}
.lsb{letter-spacing:0.170667pt;}
.ls51{letter-spacing:0.181333pt;}
.ls28{letter-spacing:0.197333pt;}
.ls55{letter-spacing:0.234667pt;}
.lsd{letter-spacing:0.240000pt;}
.ls3{letter-spacing:0.266667pt;}
.ls32{letter-spacing:0.272000pt;}
.ls33{letter-spacing:0.286933pt;}
.ls3f{letter-spacing:0.304000pt;}
.ls6{letter-spacing:0.336000pt;}
.ls27{letter-spacing:0.338920pt;}
.ls16{letter-spacing:0.357333pt;}
.ls2b{letter-spacing:0.373333pt;}
.ls31{letter-spacing:0.389333pt;}
.ls0{letter-spacing:0.394667pt;}
.ls41{letter-spacing:0.400000pt;}
.ls9{letter-spacing:0.426667pt;}
.ls4d{letter-spacing:0.501333pt;}
.ls24{letter-spacing:0.528000pt;}
.ls14{letter-spacing:0.554667pt;}
.ls54{letter-spacing:0.570667pt;}
.ls13{letter-spacing:0.608000pt;}
.ls52{letter-spacing:0.650667pt;}
.ls25{letter-spacing:0.698667pt;}
.ls53{letter-spacing:0.784000pt;}
.ls30{letter-spacing:0.960000pt;}
.ls5{letter-spacing:1.082667pt;}
.ls3d{letter-spacing:1.102022pt;}
.ls2a{letter-spacing:1.200000pt;}
.ls36{letter-spacing:1.210667pt;}
.ls4f{letter-spacing:1.216000pt;}
.ls4b{letter-spacing:1.312841pt;}
.ls2e{letter-spacing:1.333333pt;}
.ls20{letter-spacing:5.013333pt;}
.ls1d{letter-spacing:5.024000pt;}
.ls1f{letter-spacing:17.642667pt;}
.ls17{letter-spacing:20.218667pt;}
.ls23{letter-spacing:32.768000pt;}
.ls18{letter-spacing:56.384000pt;}
.ls2f{letter-spacing:79.973333pt;}
.ls8{letter-spacing:135.008000pt;}
.ws15{word-spacing:-58.666667pt;}
.ws10{word-spacing:-31.445333pt;}
.ws2b{word-spacing:-21.408000pt;}
.ws11{word-spacing:-19.285333pt;}
.ws22{word-spacing:-19.242667pt;}
.ws16{word-spacing:-16.874667pt;}
.ws28{word-spacing:-14.469333pt;}
.ws20{word-spacing:-14.458667pt;}
.ws24{word-spacing:-14.218667pt;}
.ws1a{word-spacing:-13.786667pt;}
.ws94{word-spacing:-13.760000pt;}
.ws12{word-spacing:-13.662928pt;}
.ws21{word-spacing:-13.632000pt;}
.ws1c{word-spacing:-13.616000pt;}
.ws3{word-spacing:-13.594667pt;}
.ws63{word-spacing:-13.456000pt;}
.wsa{word-spacing:-13.429333pt;}
.ws5{word-spacing:-13.408000pt;}
.ws2{word-spacing:-13.392000pt;}
.ws1{word-spacing:-13.381333pt;}
.wse{word-spacing:-13.349333pt;}
.ws23{word-spacing:-13.344000pt;}
.ws1b{word-spacing:-13.317333pt;}
.wsd{word-spacing:-13.296000pt;}
.ws9{word-spacing:-13.274667pt;}
.ws4{word-spacing:-13.258667pt;}
.ws25{word-spacing:-13.198853pt;}
.ws29{word-spacing:-13.152000pt;}
.ws2a{word-spacing:-13.050667pt;}
.wsc{word-spacing:-12.981333pt;}
.wsb{word-spacing:-12.976000pt;}
.ws56{word-spacing:-12.928000pt;}
.ws80{word-spacing:-12.922667pt;}
.ws1f{word-spacing:-12.899159pt;}
.ws17{word-spacing:-12.890667pt;}
.wsf{word-spacing:-12.842667pt;}
.ws96{word-spacing:-12.805333pt;}
.ws8c{word-spacing:-12.586088pt;}
.ws7{word-spacing:-12.480000pt;}
.ws13{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.106667pt;}
.ws6{word-spacing:-12.053333pt;}
.ws18{word-spacing:-11.946667pt;}
.ws19{word-spacing:-11.786667pt;}
.ws8{word-spacing:-11.680000pt;}
.ws81{word-spacing:-11.626667pt;}
.ws62{word-spacing:-11.248000pt;}
.ws27{word-spacing:-11.237333pt;}
.ws84{word-spacing:-11.045333pt;}
.ws64{word-spacing:-10.384000pt;}
.ws61{word-spacing:-10.170667pt;}
.ws59{word-spacing:-9.690192pt;}
.ws32{word-spacing:-8.305098pt;}
.ws7d{word-spacing:-8.167316pt;}
.ws67{word-spacing:-7.656859pt;}
.ws54{word-spacing:-5.715150pt;}
.ws0{word-spacing:0.000000pt;}
.ws58{word-spacing:10.298690pt;}
.ws5a{word-spacing:29.192549pt;}
.ws2f{word-spacing:30.526463pt;}
.ws65{word-spacing:32.892120pt;}
.ws89{word-spacing:36.721792pt;}
.ws43{word-spacing:37.109284pt;}
.ws52{word-spacing:37.139844pt;}
.ws53{word-spacing:37.403881pt;}
.ws66{word-spacing:47.593741pt;}
.ws51{word-spacing:48.833264pt;}
.ws31{word-spacing:48.863824pt;}
.ws8b{word-spacing:50.588765pt;}
.ws2c{word-spacing:54.981677pt;}
.ws33{word-spacing:55.445194pt;}
.ws36{word-spacing:55.475753pt;}
.ws38{word-spacing:55.536873pt;}
.ws37{word-spacing:55.802362pt;}
.ws7c{word-spacing:56.628382pt;}
.ws8e{word-spacing:59.230079pt;}
.ws69{word-spacing:63.415657pt;}
.ws41{word-spacing:67.201186pt;}
.ws4b{word-spacing:67.231746pt;}
.ws34{word-spacing:67.262305pt;}
.ws7f{word-spacing:73.515622pt;}
.ws2d{word-spacing:76.947104pt;}
.ws39{word-spacing:78.365081pt;}
.ws3d{word-spacing:78.456760pt;}
.ws3e{word-spacing:81.531005pt;}
.ws3c{word-spacing:81.592124pt;}
.ws3f{word-spacing:95.282937pt;}
.ws3a{word-spacing:95.374617pt;}
.ws95{word-spacing:96.123337pt;}
.ws79{word-spacing:110.602839pt;}
.ws7e{word-spacing:111.061220pt;}
.ws86{word-spacing:112.092664pt;}
.ws72{word-spacing:112.861499pt;}
.ws6f{word-spacing:112.917966pt;}
.ws4f{word-spacing:113.618770pt;}
.ws4d{word-spacing:113.679890pt;}
.ws75{word-spacing:115.176626pt;}
.ws73{word-spacing:117.390114pt;}
.ws6e{word-spacing:119.637481pt;}
.ws70{word-spacing:119.648774pt;}
.ws76{word-spacing:119.705240pt;}
.ws7a{word-spacing:121.952608pt;}
.ws87{word-spacing:126.375333pt;}
.ws6b{word-spacing:126.424755pt;}
.ws78{word-spacing:126.436049pt;}
.ws74{word-spacing:128.683416pt;}
.ws71{word-spacing:130.998543pt;}
.ws82{word-spacing:133.199570pt;}
.ws77{word-spacing:135.470691pt;}
.ws6c{word-spacing:135.606210pt;}
.ws88{word-spacing:137.328064pt;}
.ws83{word-spacing:139.848070pt;}
.ws1d{word-spacing:142.529196pt;}
.ws8d{word-spacing:145.331536pt;}
.ws90{word-spacing:145.333736pt;}
.ws93{word-spacing:155.754025pt;}
.ws4c{word-spacing:169.718862pt;}
.ws40{word-spacing:173.772167pt;}
.ws3b{word-spacing:187.340358pt;}
.ws30{word-spacing:194.149780pt;}
.ws2e{word-spacing:197.489743pt;}
.ws55{word-spacing:203.317735pt;}
.ws50{word-spacing:205.743118pt;}
.ws42{word-spacing:208.066354pt;}
.ws1e{word-spacing:209.277725pt;}
.ws45{word-spacing:212.696630pt;}
.ws47{word-spacing:217.171814pt;}
.ws4a{word-spacing:228.718853pt;}
.ws48{word-spacing:230.952396pt;}
.ws35{word-spacing:233.120541pt;}
.ws7b{word-spacing:234.864550pt;}
.ws44{word-spacing:240.110801pt;}
.ws6d{word-spacing:242.164541pt;}
.ws46{word-spacing:242.270848pt;}
.ws68{word-spacing:243.899192pt;}
.ws6a{word-spacing:251.199183pt;}
.ws49{word-spacing:253.828888pt;}
.ws92{word-spacing:266.972198pt;}
.ws4e{word-spacing:272.025904pt;}
.ws85{word-spacing:280.160762pt;}
.ws91{word-spacing:346.052927pt;}
.ws8a{word-spacing:361.089404pt;}
.ws8f{word-spacing:430.925485pt;}
.ws57{word-spacing:464.499554pt;}
.ws5b{word-spacing:490.928641pt;}
.ws60{word-spacing:507.102676pt;}
.ws5c{word-spacing:527.572254pt;}
.ws5d{word-spacing:536.031844pt;}
.ws5e{word-spacing:563.777546pt;}
.ws5f{word-spacing:599.369189pt;}
.ws26{word-spacing:861.476442pt;}
._19{margin-left:-12.048000pt;}
._16{margin-left:-10.565333pt;}
._15{margin-left:-9.669333pt;}
._1c{margin-left:-8.432000pt;}
._12{margin-left:-7.168000pt;}
._13{margin-left:-5.754667pt;}
._1b{margin-left:-4.021333pt;}
._1a{margin-left:-2.922667pt;}
._14{margin-left:-2.005333pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.045333pt;}
._4{width:2.197333pt;}
._9{width:3.386667pt;}
._f{width:4.288000pt;}
._10{width:5.413333pt;}
._e{width:6.384000pt;}
._b{width:7.306667pt;}
._a{width:8.352000pt;}
._7{width:9.738667pt;}
._8{width:10.704000pt;}
._22{width:12.005333pt;}
._24{width:14.202667pt;}
._c{width:15.194667pt;}
._d{width:16.309333pt;}
._20{width:17.301333pt;}
._28{width:18.304000pt;}
._1{width:19.712000pt;}
._25{width:20.624000pt;}
._1d{width:21.573333pt;}
._3{width:22.741333pt;}
._1e{width:23.738667pt;}
._1f{width:24.757333pt;}
._23{width:25.834667pt;}
._27{width:26.869333pt;}
._29{width:27.829333pt;}
._2a{width:28.746667pt;}
._67{width:30.384000pt;}
._2b{width:32.512000pt;}
._94{width:33.402667pt;}
._93{width:34.309333pt;}
._95{width:35.338667pt;}
._96{width:38.158151pt;}
._44{width:39.127182pt;}
._4a{width:40.087351pt;}
._4d{width:44.647523pt;}
._26{width:46.028941pt;}
._4e{width:51.643066pt;}
._62{width:55.253187pt;}
._3b{width:56.982438pt;}
._38{width:58.104353pt;}
._65{width:61.234844pt;}
._5f{width:62.327327pt;}
._32{width:64.105817pt;}
._3c{width:65.962664pt;}
._18{width:71.034667pt;}
._31{width:74.675363pt;}
._85{width:78.294954pt;}
._40{width:83.409643pt;}
._61{width:84.344204pt;}
._41{width:86.499821pt;}
._37{width:88.613862pt;}
._66{width:91.134248pt;}
._47{width:92.269926pt;}
._60{width:93.832302pt;}
._3e{width:95.127105pt;}
._63{width:96.394919pt;}
._35{width:99.543209pt;}
._5e{width:100.912240pt;}
._69{width:102.396016pt;}
._36{width:103.480244pt;}
._64{width:107.400558pt;}
._39{width:112.872236pt;}
._4b{width:114.007097pt;}
._45{width:115.171638pt;}
._17{width:116.090667pt;}
._78{width:117.138098pt;}
._74{width:119.500349pt;}
._4f{width:120.895306pt;}
._42{width:123.706949pt;}
._34{width:124.877325pt;}
._6d{width:126.614818pt;}
._5c{width:128.545118pt;}
._55{width:129.642283pt;}
._48{width:132.252551pt;}
._81{width:133.607662pt;}
._8d{width:135.430899pt;}
._6f{width:141.558407pt;}
._52{width:143.542065pt;}
._3a{width:146.787137pt;}
._3d{width:148.238853pt;}
._91{width:150.388315pt;}
._73{width:151.334485pt;}
._59{width:154.759337pt;}
._43{width:158.088147pt;}
._8a{width:164.647544pt;}
._7c{width:168.804997pt;}
._7d{width:172.410527pt;}
._72{width:174.930464pt;}
._7a{width:179.231088pt;}
._6b{width:182.692136pt;}
._75{width:184.570642pt;}
._84{width:186.025782pt;}
._82{width:189.422248pt;}
._6c{width:196.355065pt;}
._7b{width:199.224819pt;}
._83{width:201.347867pt;}
._2f{width:202.342459pt;}
._77{width:205.419568pt;}
._2e{width:206.658313pt;}
._86{width:212.137732pt;}
._8b{width:219.759348pt;}
._89{width:220.906016pt;}
._54{width:223.638590pt;}
._6a{width:228.916904pt;}
._71{width:230.227715pt;}
._79{width:233.152113pt;}
._5b{width:239.751214pt;}
._68{width:241.895580pt;}
._33{width:251.652769pt;}
._51{width:266.655593pt;}
._80{width:273.877338pt;}
._6e{width:276.660772pt;}
._88{width:286.702940pt;}
._7f{width:294.628655pt;}
._87{width:295.560767pt;}
._70{width:312.976339pt;}
._53{width:319.757049pt;}
._56{width:332.245952pt;}
._76{width:338.406635pt;}
._57{width:344.993932pt;}
._7e{width:368.633235pt;}
._46{width:375.679781pt;}
._58{width:379.242545pt;}
._5a{width:380.341843pt;}
._90{width:382.925080pt;}
._2c{width:420.273542pt;}
._3f{width:421.310393pt;}
._4c{width:422.292277pt;}
._5d{width:423.604908pt;}
._49{width:431.402712pt;}
._50{width:437.138433pt;}
._8c{width:453.381851pt;}
._8e{width:485.260720pt;}
._8f{width:500.120666pt;}
._92{width:507.181353pt;}
._5{width:609.578667pt;}
._2d{width:725.773119pt;}
._30{width:913.602080pt;}
._21{width:1061.141333pt;}
._11{width:1091.008000pt;}
._6{width:1120.874667pt;}
.fs0{font-size:5.333333pt;}
.fs13{font-size:25.288276pt;}
.fse{font-size:26.643851pt;}
.fs18{font-size:33.879907pt;}
.fsb{font-size:35.200000pt;}
.fs17{font-size:36.138568pt;}
.fs12{font-size:36.748219pt;}
.fsa{font-size:37.333333pt;}
.fs16{font-size:38.000755pt;}
.fs14{font-size:43.832073pt;}
.fs20{font-size:43.907687pt;}
.fs1d{font-size:45.270366pt;}
.fs15{font-size:46.747732pt;}
.fs7{font-size:48.000000pt;}
.fs1e{font-size:52.217225pt;}
.fs6{font-size:53.333333pt;}
.fs1f{font-size:53.988534pt;}
.fs1c{font-size:55.690654pt;}
.fsd{font-size:57.075927pt;}
.fs10{font-size:58.402006pt;}
.fs1{font-size:58.666667pt;}
.fs11{font-size:58.964425pt;}
.fs1b{font-size:59.015517pt;}
.fsc{font-size:60.455436pt;}
.fs1a{font-size:63.063042pt;}
.fs19{font-size:63.920693pt;}
.fsf{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs9{font-size:85.333333pt;}
.fs4{font-size:96.000000pt;}
.fs5{font-size:106.666667pt;}
.fs2{font-size:128.000000pt;}
.fs8{font-size:138.666667pt;}
.y1b{bottom:-60.826667pt;}
.y26{bottom:-13.866667pt;}
.y1e{bottom:-8.000000pt;}
.yf{bottom:-4.000000pt;}
.y0{bottom:0.000000pt;}
.y2d5{bottom:1.129330pt;}
.y312{bottom:1.129338pt;}
.y2dc{bottom:1.144388pt;}
.y316{bottom:2.258660pt;}
.y314{bottom:2.281247pt;}
.y229{bottom:2.291989pt;}
.y253{bottom:2.291996pt;}
.y251{bottom:2.857652pt;}
.y3c1{bottom:3.388224pt;}
.y29f{bottom:3.643602pt;}
.y178{bottom:3.788225pt;}
.y182{bottom:3.819794pt;}
.y17b{bottom:3.826107pt;}
.y1e0{bottom:3.899913pt;}
.y1e4{bottom:3.935262pt;}
.y35a{bottom:4.028103pt;}
.y107{bottom:4.028143pt;}
.y3a1{bottom:4.341826pt;}
.y2d3{bottom:4.517321pt;}
.y4f{bottom:4.533333pt;}
.y1de{bottom:4.866060pt;}
.y372{bottom:4.921920pt;}
.y33d{bottom:5.020476pt;}
.y109{bottom:5.026819pt;}
.y388{bottom:5.210144pt;}
.yac{bottom:5.320000pt;}
.y2f{bottom:5.333333pt;}
.ya5{bottom:5.373333pt;}
.y99{bottom:5.600000pt;}
.y9c{bottom:5.626667pt;}
.y1d9{bottom:6.800675pt;}
.y284{bottom:9.505048pt;}
.y2d1{bottom:9.599307pt;}
.y28{bottom:10.933333pt;}
.y32{bottom:11.200000pt;}
.y18a{bottom:12.343301pt;}
.y186{bottom:13.290357pt;}
.y183{bottom:13.325714pt;}
.y105{bottom:14.081855pt;}
.y250{bottom:14.909387pt;}
.y17e{bottom:15.216038pt;}
.y30{bottom:15.766667pt;}
.y2d2{bottom:15.825681pt;}
.y3c0{bottom:17.725428pt;}
.y29e{bottom:18.246194pt;}
.y387{bottom:20.006954pt;}
.y4e{bottom:21.333333pt;}
.y3a0{bottom:21.737687pt;}
.y18b{bottom:21.845432pt;}
.y283{bottom:21.916036pt;}
.y25{bottom:22.400000pt;}
.y17d{bottom:22.792488pt;}
.y181{bottom:22.821532pt;}
.y18f{bottom:23.771113pt;}
.y106{bottom:24.135568pt;}
.y1dd{bottom:24.332880pt;}
.y18e{bottom:24.715644pt;}
.y2e{bottom:24.800000pt;}
.y108{bottom:25.168200pt;}
.y371{bottom:25.584271pt;}
.y33c{bottom:25.988432pt;}
.ye{bottom:26.133333pt;}
.y1d8{bottom:26.268011pt;}
.y1d{bottom:26.426667pt;}
.y24f{bottom:26.961427pt;}
.y2c{bottom:29.633333pt;}
.y189{bottom:31.347564pt;}
.y3bf{bottom:32.062632pt;}
.y29d{bottom:33.577700pt;}
.y1e2{bottom:34.067360pt;}
.y50{bottom:34.966667pt;}
.y13{bottom:36.573333pt;}
.y24d{bottom:39.013468pt;}
.y39f{bottom:39.162726pt;}
.y188{bottom:41.796752pt;}
.y18d{bottom:43.719907pt;}
.y1dc{bottom:43.800216pt;}
.y2d{bottom:44.000000pt;}
.y370{bottom:45.266991pt;}
.y358{bottom:45.308915pt;}
.y3be{bottom:46.427839pt;}
.y33b{bottom:46.989071pt;}
.y29c{bottom:48.180292pt;}
.y4d{bottom:48.833333pt;}
.y24c{bottom:51.065509pt;}
.yd{bottom:51.733333pt;}
.y39e{bottom:56.558819pt;}
.y3bd{bottom:60.765043pt;}
.y18c{bottom:62.762053pt;}
.y29b{bottom:62.782884pt;}
.y24a{bottom:63.117549pt;}
.y1db{bottom:63.267551pt;}
.y36f{bottom:64.982352pt;}
.y357{bottom:65.416339pt;}
.y12{bottom:66.706667pt;}
.y24{bottom:73.360000pt;}
.y39d{bottom:73.954912pt;}
.y22{bottom:74.166667pt;}
.y3bc{bottom:75.102247pt;}
.y248{bottom:75.169590pt;}
.y29a{bottom:77.385476pt;}
.y36e{bottom:84.665071pt;}
.y103{bottom:85.557055pt;}
.y247{bottom:87.225451pt;}
.y3bb{bottom:89.439451pt;}
.y39c{bottom:91.351005pt;}
.y299{bottom:91.988068pt;}
.y21{bottom:92.033333pt;}
.y245{bottom:99.273671pt;}
.y36d{bottom:104.347791pt;}
.y3ba{bottom:104.644728pt;}
.y102{bottom:105.697770pt;}
.y1a{bottom:106.133333pt;}
.y298{bottom:107.315687pt;}
.y39b{bottom:108.747098pt;}
.y244{bottom:111.329532pt;}
.yf6{bottom:116.566667pt;}
.y32a{bottom:118.166667pt;}
.y1a7{bottom:121.366667pt;}
.y297{bottom:121.923138pt;}
.y1d3{bottom:122.166667pt;}
.y3b9{bottom:122.367976pt;}
.y176{bottom:123.233333pt;}
.y242{bottom:123.377753pt;}
.y3c3{bottom:123.500000pt;}
.y20{bottom:124.033333pt;}
.y4c{bottom:124.300000pt;}
.y36c{bottom:125.042392pt;}
.yde{bottom:125.900000pt;}
.y377{bottom:126.166667pt;}
.y17{bottom:126.440000pt;}
.y39a{bottom:127.009233pt;}
.y2b1{bottom:127.500000pt;}
.y2cd{bottom:127.766667pt;}
.y11{bottom:128.306667pt;}
.y2be{bottom:129.100000pt;}
.yf5{bottom:132.833333pt;}
.y223{bottom:135.226667pt;}
.y241{bottom:135.433613pt;}
.y35f{bottom:136.040000pt;}
.y296{bottom:136.520870pt;}
.yf4{bottom:137.626667pt;}
.y19{bottom:137.906667pt;}
.y10{bottom:138.960000pt;}
.y409{bottom:139.226667pt;}
.y3b8{bottom:140.065462pt;}
.y329{bottom:141.360000pt;}
.y2ce{bottom:141.496628pt;}
.y1d2{bottom:141.640000pt;}
.y311{bottom:142.061289pt;}
.y175{bottom:142.440000pt;}
.y68{bottom:142.693333pt;}
.y135{bottom:143.493333pt;}
.y399{bottom:144.411116pt;}
.y36b{bottom:144.718583pt;}
.y333{bottom:144.826667pt;}
.ydd{bottom:145.106667pt;}
.y1a6{bottom:145.400000pt;}
.y376{bottom:145.666667pt;}
.y2cc{bottom:147.000000pt;}
.y3c2{bottom:147.266667pt;}
.y3b5{bottom:147.346835pt;}
.y240{bottom:147.481834pt;}
.y1b8{bottom:148.066667pt;}
.y15c{bottom:149.133333pt;}
.y295{bottom:151.128322pt;}
.y310{bottom:151.660754pt;}
.y3dd{bottom:151.800000pt;}
.y15b{bottom:153.933333pt;}
.y4b{bottom:154.200000pt;}
.y2bd{bottom:155.533333pt;}
.y2b0{bottom:157.400000pt;}
.y3b7{bottom:157.796551pt;}
.y408{bottom:158.733333pt;}
.y23f{bottom:159.537695pt;}
.y3f0{bottom:160.600000pt;}
.y1d1{bottom:160.866667pt;}
.y30f{bottom:161.260061pt;}
.yf3{bottom:161.666667pt;}
.y398{bottom:161.801420pt;}
.y174{bottom:161.933333pt;}
.y16{bottom:162.706667pt;}
.y134{bottom:163.000000pt;}
.y332{bottom:164.333333pt;}
.ydc{bottom:164.600000pt;}
.y375{bottom:164.866667pt;}
.y1a5{bottom:165.133333pt;}
.y36a{bottom:165.387071pt;}
.y15a{bottom:165.400000pt;}
.y294{bottom:166.454969pt;}
.y1f{bottom:166.466667pt;}
.y1b7{bottom:167.266667pt;}
.y26d{bottom:168.333333pt;}
.y67{bottom:168.866667pt;}
.y318{bottom:170.878190pt;}
.y3dc{bottom:171.266667pt;}
.y23e{bottom:171.585916pt;}
.y35e{bottom:174.733333pt;}
.y3b6{bottom:175.516440pt;}
.yb4{bottom:176.066667pt;}
.y383{bottom:177.933333pt;}
.y2bc{bottom:179.000000pt;}
.y397{bottom:179.203302pt;}
.y1d0{bottom:180.066667pt;}
.y293{bottom:181.062420pt;}
.y173{bottom:181.133333pt;}
.y159{bottom:181.666667pt;}
.y133{bottom:182.200000pt;}
.y30e{bottom:182.736158pt;}
.y331{bottom:183.533333pt;}
.y23c{bottom:183.641776pt;}
.ydb{bottom:183.800000pt;}
.y4a{bottom:184.333333pt;}
.y2cb{bottom:185.666667pt;}
.y214{bottom:185.933333pt;}
.y158{bottom:186.466667pt;}
.y2af{bottom:187.533333pt;}
.y407{bottom:188.600000pt;}
.yca{bottom:189.133333pt;}
.yb3{bottom:189.933333pt;}
.y3db{bottom:190.466667pt;}
.y215{bottom:191.266667pt;}
.y27f{bottom:191.800000pt;}
.y30d{bottom:192.335465pt;}
.y374{bottom:193.666667pt;}
.y35d{bottom:194.200000pt;}
.y66{bottom:194.733333pt;}
.yf2{bottom:195.266667pt;}
.y292{bottom:195.660152pt;}
.y23b{bottom:195.689997pt;}
.y396{bottom:196.593606pt;}
.y382{bottom:197.400000pt;}
.y1f5{bottom:197.933333pt;}
.y26c{bottom:198.200000pt;}
.y1cf{bottom:199.533333pt;}
.y172{bottom:200.600000pt;}
.y132{bottom:201.666667pt;}
.y30c{bottom:201.953594pt;}
.yda{bottom:203.266667pt;}
.y1a4{bottom:203.533333pt;}
.y15{bottom:204.866667pt;}
.y213{bottom:205.133333pt;}
.y1b6{bottom:205.933333pt;}
.y239{bottom:207.745858pt;}
.y406{bottom:208.066667pt;}
.yb2{bottom:209.133333pt;}
.y3ef{bottom:209.933333pt;}
.y291{bottom:210.267604pt;}
.y157{bottom:210.466667pt;}
.y319{bottom:211.552901pt;}
.y330{bottom:213.400000pt;}
.y117{bottom:213.933333pt;}
.y49{bottom:214.200000pt;}
.yf1{bottom:214.733333pt;}
.y395{bottom:214.887002pt;}
.y2ca{bottom:215.800000pt;}
.y25f{bottom:216.600000pt;}
.y373{bottom:216.866667pt;}
.y369{bottom:216.933333pt;}
.y2ae{bottom:217.400000pt;}
.y237{bottom:219.794078pt;}
.y171{bottom:219.800000pt;}
.y3da{bottom:220.600000pt;}
.y65{bottom:220.866667pt;}
.y27e{bottom:221.933333pt;}
.yd9{bottom:222.466667pt;}
.y30b{bottom:223.410869pt;}
.y212{bottom:224.333333pt;}
.y1b5{bottom:225.133333pt;}
.y290{bottom:225.594251pt;}
.y26b{bottom:228.333333pt;}
.yb1{bottom:228.600000pt;}
.y96{bottom:228.866667pt;}
.y1ce{bottom:229.400000pt;}
.y1f4{bottom:230.466667pt;}
.y131{bottom:231.533333pt;}
.y236{bottom:231.849939pt;}
.y394{bottom:232.288884pt;}
.y32f{bottom:232.866667pt;}
.y30a{bottom:233.025233pt;}
.y116{bottom:233.133333pt;}
.y48{bottom:233.666667pt;}
.y2c9{bottom:235.000000pt;}
.y1f3{bottom:235.266667pt;}
.y25e{bottom:236.066667pt;}
.y405{bottom:237.933333pt;}
.y3d9{bottom:239.800000pt;}
.y28f{bottom:240.201702pt;}
.y27d{bottom:241.133333pt;}
.y95{bottom:241.400000pt;}
.y1a3{bottom:241.666667pt;}
.yd8{bottom:241.933333pt;}
.y309{bottom:242.624540pt;}
.y211{bottom:243.800000pt;}
.y235{bottom:243.898160pt;}
.yf0{bottom:244.600000pt;}
.y64{bottom:246.733333pt;}
.y2ad{bottom:247.533333pt;}
.yb0{bottom:247.800000pt;}
.y170{bottom:249.666667pt;}
.y393{bottom:249.679189pt;}
.y130{bottom:251.000000pt;}
.y32e{bottom:252.066667pt;}
.y31a{bottom:252.223847pt;}
.y115{bottom:252.600000pt;}
.y47{bottom:252.866667pt;}
.y94{bottom:253.666667pt;}
.y2c8{bottom:254.466667pt;}
.y222{bottom:255.266667pt;}
.y28e{bottom:255.528349pt;}
.y233{bottom:255.954020pt;}
.y26a{bottom:258.200000pt;}
.y3d8{bottom:259.266667pt;}
.y1cd{bottom:260.333333pt;}
.y27c{bottom:260.600000pt;}
.y3c7{bottom:261.133333pt;}
.y1f2{bottom:263.000000pt;}
.yee{bottom:264.066667pt;}
.y308{bottom:264.104401pt;}
.y25d{bottom:265.933333pt;}
.y93{bottom:266.200000pt;}
.y2ac{bottom:266.733333pt;}
.y392{bottom:267.081071pt;}
.yaf{bottom:267.266667pt;}
.y232{bottom:268.002241pt;}
.y404{bottom:268.066667pt;}
.y16f{bottom:269.133333pt;}
.yef{bottom:269.400000pt;}
.y28d{bottom:270.135800pt;}
.y12f{bottom:270.200000pt;}
.y32d{bottom:271.533333pt;}
.yd7{bottom:271.800000pt;}
.y46{bottom:272.333333pt;}
.y63{bottom:272.600000pt;}
.y210{bottom:273.666667pt;}
.y307{bottom:273.703708pt;}
.y1b4{bottom:274.466667pt;}
.y381{bottom:274.733333pt;}
.yc2{bottom:275.800000pt;}
.y269{bottom:277.400000pt;}
.y92{bottom:278.466667pt;}
.y3ee{bottom:278.733333pt;}
.y1f1{bottom:279.266667pt;}
.y27b{bottom:279.800000pt;}
.y230{bottom:280.058102pt;}
.y156{bottom:280.600000pt;}
.y35c{bottom:280.866667pt;}
.y114{bottom:282.466667pt;}
.yed{bottom:283.266667pt;}
.y306{bottom:283.318073pt;}
.y1f0{bottom:284.066667pt;}
.y391{bottom:284.471375pt;}
.y28c{bottom:284.733533pt;}
.y25c{bottom:285.133333pt;}
.y2ab{bottom:286.200000pt;}
.yae{bottom:286.466667pt;}
.y16e{bottom:288.333333pt;}
.y12e{bottom:289.400000pt;}
.y1a2{bottom:290.466667pt;}
.y3ad{bottom:290.733333pt;}
.y91{bottom:291.000000pt;}
.yd6{bottom:291.266667pt;}
.y45{bottom:291.533333pt;}
.y22e{bottom:292.106322pt;}
.y31b{bottom:292.917380pt;}
.y20f{bottom:293.133333pt;}
.y1b3{bottom:293.933333pt;}
.y268{bottom:296.893333pt;}
.y403{bottom:297.973333pt;}
.y62{bottom:298.773333pt;}
.y27a{bottom:299.293333pt;}
.y28b{bottom:299.340984pt;}
.y155{bottom:299.826667pt;}
.y32c{bottom:300.360000pt;}
.y34b{bottom:300.640000pt;}
.y113{bottom:301.960000pt;}
.y390{bottom:302.741615pt;}
.yec{bottom:302.760000pt;}
.y90{bottom:303.306667pt;}
.y35b{bottom:304.106667pt;}
.y22d{bottom:304.162183pt;}
.y356{bottom:304.185970pt;}
.y25b{bottom:304.626667pt;}
.y305{bottom:304.775348pt;}
.y359{bottom:305.184685pt;}
.y2aa{bottom:305.426667pt;}
.yad{bottom:305.693333pt;}
.y380{bottom:305.960000pt;}
.y16d{bottom:307.840000pt;}
.y1ef{bottom:308.360000pt;}
.y3d7{bottom:308.626667pt;}
.y12d{bottom:308.893333pt;}
.y3ac{bottom:310.226667pt;}
.yd5{bottom:310.506667pt;}
.y44{bottom:311.026667pt;}
.y20e{bottom:312.360000pt;}
.y1b2{bottom:313.173333pt;}
.y28a{bottom:313.938717pt;}
.y304{bottom:314.397241pt;}
.y8f{bottom:315.840000pt;}
.y267{bottom:316.106667pt;}
.y22b{bottom:316.210404pt;}
.y402{bottom:317.426667pt;}
.y279{bottom:318.493333pt;}
.y154{bottom:319.040000pt;}
.y34a{bottom:320.106667pt;}
.y38f{bottom:320.131919pt;}
.y18{bottom:320.893333pt;}
.y112{bottom:321.160000pt;}
.y1cc{bottom:321.706667pt;}
.y2c7{bottom:323.026667pt;}
.y25a{bottom:323.826667pt;}
.y303{bottom:323.996548pt;}
.y61{bottom:324.093333pt;}
.y2a9{bottom:324.640000pt;}
.yab{bottom:325.173333pt;}
.y16c{bottom:327.026667pt;}
.y3d6{bottom:327.840000pt;}
.y12c{bottom:328.106667pt;}
.y22a{bottom:328.266264pt;}
.y8e{bottom:328.373333pt;}
.y289{bottom:329.275083pt;}
.y3ab{bottom:329.426667pt;}
.yd4{bottom:329.960000pt;}
.y43{bottom:330.226667pt;}
.y1a1{bottom:331.840000pt;}
.y221{bottom:332.360000pt;}
.yeb{bottom:332.626667pt;}
.y31c{bottom:333.595855pt;}
.y37f{bottom:334.506667pt;}
.y1ee{bottom:336.093333pt;}
.y401{bottom:336.640000pt;}
.y38e{bottom:337.533801pt;}
.y278{bottom:337.960000pt;}
.y153{bottom:338.506667pt;}
.y349{bottom:339.306667pt;}
.y111{bottom:340.373333pt;}
.y8d{bottom:340.626667pt;}
.y1cb{bottom:341.173333pt;}
.y2c6{bottom:342.226667pt;}
.y288{bottom:343.872815pt;}
.y2a8{bottom:344.106667pt;}
.yaa{bottom:344.360000pt;}
.y302{bottom:345.468880pt;}
.y266{bottom:346.226667pt;}
.y3d5{bottom:347.026667pt;}
.y12b{bottom:347.560000pt;}
.y60{bottom:348.360000pt;}
.yd3{bottom:349.173333pt;}
.y1a0{bottom:351.026667pt;}
.y37e{bottom:351.306667pt;}
.y1b1{bottom:351.840000pt;}
.yea{bottom:352.106667pt;}
.y227{bottom:352.370346pt;}
.y8c{bottom:353.173333pt;}
.y259{bottom:353.960000pt;}
.y38d{bottom:354.924105pt;}
.y301{bottom:355.068187pt;}
.y1ed{bottom:355.293333pt;}
.y16b{bottom:357.173333pt;}
.y152{bottom:357.706667pt;}
.y3ed{bottom:357.960000pt;}
.y287{bottom:358.480266pt;}
.y348{bottom:358.760000pt;}
.y3aa{bottom:359.560000pt;}
.y10f{bottom:359.840000pt;}
.y42{bottom:360.093333pt;}
.y1ca{bottom:360.360000pt;}
.y2c5{bottom:361.693333pt;}
.ya9{bottom:363.840000pt;}
.y300{bottom:364.667494pt;}
.y110{bottom:365.173333pt;}
.y8b{bottom:365.440000pt;}
.y3d4{bottom:366.506667pt;}
.y12a{bottom:366.773333pt;}
.yd2{bottom:368.360000pt;}
.y277{bottom:369.173333pt;}
.y19f{bottom:370.506667pt;}
.y220{bottom:371.040000pt;}
.yc9{bottom:371.293333pt;}
.y38c{bottom:372.349144pt;}
.y286{bottom:373.077999pt;}
.y5f{bottom:373.173333pt;}
.y2a7{bottom:373.960000pt;}
.y31d{bottom:374.289388pt;}
.y1ec{bottom:374.506667pt;}
.y37d{bottom:374.773333pt;}
.y16a{bottom:376.360000pt;}
.y151{bottom:377.173333pt;}
.y3ec{bottom:377.440000pt;}
.y8a{bottom:377.960000pt;}
.y3a9{bottom:378.773333pt;}
.y10e{bottom:379.026667pt;}
.y41{bottom:379.560000pt;}
.y2c4{bottom:380.893333pt;}
.y1b0{bottom:381.960000pt;}
.ya8{bottom:383.026667pt;}
.y265{bottom:384.893333pt;}
.y3d3{bottom:385.693333pt;}
.y400{bottom:385.960000pt;}
.y2ff{bottom:386.147355pt;}
.yd1{bottom:387.840000pt;}
.y285{bottom:388.414365pt;}
.y19e{bottom:389.693333pt;}
.y38b{bottom:389.751026pt;}
.y89{bottom:390.506667pt;}
.y258{bottom:392.626667pt;}
.y2a6{bottom:393.440000pt;}
.y1eb{bottom:393.960000pt;}
.y2fe{bottom:395.746662pt;}
.y169{bottom:395.840000pt;}
.y150{bottom:396.360000pt;}
.y129{bottom:396.893333pt;}
.y347{bottom:397.173333pt;}
.y276{bottom:397.693333pt;}
.y3a8{bottom:397.960000pt;}
.y40{bottom:398.773333pt;}
.y3b4{bottom:399.026667pt;}
.y5e{bottom:399.293333pt;}
.y1af{bottom:401.173333pt;}
.ya7{bottom:402.506667pt;}
.y88{bottom:402.773333pt;}
.y281{bottom:403.770168pt;}
.y264{bottom:404.106667pt;}
.y3ff{bottom:405.173333pt;}
.y2fd{bottom:405.361027pt;}
.yd0{bottom:407.040000pt;}
.y38a{bottom:407.141330pt;}
.y3eb{bottom:407.293333pt;}
.y10d{bottom:409.173333pt;}
.y1c9{bottom:409.693333pt;}
.ye9{bottom:409.960000pt;}
.y256{bottom:411.840000pt;}
.y2c3{bottom:412.360000pt;}
.y2a5{bottom:412.626667pt;}
.y1ea{bottom:413.173333pt;}
.y368{bottom:414.226667pt;}
.y31e{bottom:414.960334pt;}
.y168{bottom:415.026667pt;}
.y87{bottom:415.293333pt;}
.y275{bottom:415.560000pt;}
.y14f{bottom:415.840000pt;}
.y346{bottom:416.626667pt;}
.y257{bottom:417.173333pt;}
.y3a6{bottom:417.440000pt;}
.y3f{bottom:418.226667pt;}
.y1ae{bottom:420.360000pt;}
.ya6{bottom:421.693333pt;}
.y3a7{bottom:422.773333pt;}
.y263{bottom:423.560000pt;}
.y20d{bottom:424.626667pt;}
.y5d{bottom:425.173333pt;}
.y389{bottom:425.411570pt;}
.y14{bottom:425.426667pt;}
.y3c6{bottom:426.506667pt;}
.y2fc{bottom:426.840888pt;}
.y86{bottom:427.560000pt;}
.y10c{bottom:428.360000pt;}
.ye8{bottom:429.173333pt;}
.y255{bottom:431.293333pt;}
.y2a4{bottom:432.093333pt;}
.y1e8{bottom:432.626667pt;}
.y167{bottom:434.226667pt;}
.y274{bottom:434.773333pt;}
.y3d2{bottom:435.026667pt;}
.y3fe{bottom:435.293333pt;}
.y2fb{bottom:436.440195pt;}
.y3a5{bottom:436.626667pt;}
.ycf{bottom:437.173333pt;}
.y1e9{bottom:437.960000pt;}
.y1ad{bottom:439.840000pt;}
.y85{bottom:440.093333pt;}
.y2c2{bottom:440.893333pt;}
.ya4{bottom:441.160000pt;}
.y355{bottom:441.173333pt;}
.y367{bottom:441.693333pt;}
.y262{bottom:442.760000pt;}
.y3ca{bottom:443.293333pt;}
.y14e{bottom:445.693333pt;}
.y2fa{bottom:446.039502pt;}
.y345{bottom:446.533333pt;}
.yc1{bottom:447.866667pt;}
.y3e{bottom:448.133333pt;}
.y1c8{bottom:448.400000pt;}
.ycb{bottom:448.666667pt;}
.y5c{bottom:451.066667pt;}
.y2a3{bottom:451.333333pt;}
.y385{bottom:451.520182pt;}
.y84{bottom:452.666667pt;}
.y166{bottom:453.733333pt;}
.y273{bottom:454.266667pt;}
.y3d1{bottom:454.533333pt;}
.y31f{bottom:455.653867pt;}
.y3a4{bottom:456.133333pt;}
.yce{bottom:456.400000pt;}
.y3ea{bottom:456.666667pt;}
.y2c1{bottom:457.466667pt;}
.y21f{bottom:457.733333pt;}
.y128{bottom:458.266667pt;}
.y19d{bottom:458.533333pt;}
.y1ac{bottom:459.066667pt;}
.y254{bottom:460.133333pt;}
.ya3{bottom:460.400000pt;}
.y366{bottom:461.200000pt;}
.y1e7{bottom:461.466667pt;}
.y83{bottom:464.933333pt;}
.y344{bottom:466.000000pt;}
.y20c{bottom:466.533333pt;}
.yc0{bottom:467.066667pt;}
.y2f9{bottom:467.511834pt;}
.y3d{bottom:467.600000pt;}
.y354{bottom:468.933333pt;}
.y2a2{bottom:470.800000pt;}
.y261{bottom:471.600000pt;}
.y272{bottom:473.466667pt;}
.y3d0{bottom:473.733333pt;}
.ycd{bottom:475.866667pt;}
.y14d{bottom:476.666667pt;}
.y2f8{bottom:477.111141pt;}
.y5b{bottom:477.200000pt;}
.y82{bottom:477.466667pt;}
.y19c{bottom:477.733333pt;}
.ya2{bottom:479.866667pt;}
.y365{bottom:480.400000pt;}
.y2c0{bottom:480.933333pt;}
.y3c5{bottom:481.200000pt;}
.ye7{bottom:483.600000pt;}
.y3fd{bottom:484.666667pt;}
.y3a3{bottom:484.933333pt;}
.y1c7{bottom:485.200000pt;}
.y1e5{bottom:486.204331pt;}
.ybf{bottom:486.533333pt;}
.y2f7{bottom:486.733035pt;}
.y3c{bottom:486.800000pt;}
.y3b3{bottom:487.066667pt;}
.y353{bottom:488.133333pt;}
.y127{bottom:489.200000pt;}
.y81{bottom:489.733333pt;}
.y2a1{bottom:490.000000pt;}
.y271{bottom:492.933333pt;}
.ycc{bottom:495.066667pt;}
.y3e9{bottom:495.333333pt;}
.y14c{bottom:495.866667pt;}
.y320{bottom:496.332342pt;}
.y20b{bottom:496.400000pt;}
.y19b{bottom:497.200000pt;}
.ya1{bottom:499.066667pt;}
.y21e{bottom:499.333333pt;}
.y364{bottom:499.600000pt;}
.y80{bottom:502.266667pt;}
.y5a{bottom:503.066667pt;}
.y3cf{bottom:503.866667pt;}
.y1c6{bottom:504.133333pt;}
.y343{bottom:504.666667pt;}
.y2bb{bottom:504.933333pt;}
.ybe{bottom:505.733333pt;}
.y1e3{bottom:505.847871pt;}
.y3b{bottom:506.266667pt;}
.y352{bottom:507.600000pt;}
.y3a2{bottom:508.133333pt;}
.y384{bottom:508.135842pt;}
.y2f6{bottom:508.190310pt;}
.y126{bottom:508.400000pt;}
.y226{bottom:510.000000pt;}
.y252{bottom:510.565655pt;}
.y7f{bottom:514.533333pt;}
.y20a{bottom:515.866667pt;}
.y19a{bottom:516.400000pt;}
.y2f5{bottom:517.804674pt;}
.ya0{bottom:518.266667pt;}
.y21d{bottom:518.533333pt;}
.y2a0{bottom:518.800000pt;}
.y363{bottom:519.066667pt;}
.y1c5{bottom:522.000000pt;}
.y165{bottom:522.266667pt;}
.y3ce{bottom:523.066667pt;}
.y3fc{bottom:523.333333pt;}
.y342{bottom:523.866667pt;}
.y2ba{bottom:524.133333pt;}
.ybd{bottom:525.200000pt;}
.y3a{bottom:525.466667pt;}
.y1e6{bottom:525.524183pt;}
.y3b2{bottom:525.733333pt;}
.y14a{bottom:526.533333pt;}
.y351{bottom:526.800000pt;}
.y7e{bottom:527.066667pt;}
.y2f4{bottom:527.403981pt;}
.y125{bottom:527.866667pt;}
.y59{bottom:529.200000pt;}
.y14b{bottom:531.866667pt;}
.y3c4{bottom:533.733333pt;}
.y209{bottom:535.066667pt;}
.y199{bottom:535.600000pt;}
.y313{bottom:537.003288pt;}
.y9f{bottom:537.733333pt;}
.y21c{bottom:538.000000pt;}
.y362{bottom:538.266667pt;}
.y7d{bottom:539.600000pt;}
.y1c4{bottom:539.866667pt;}
.y164{bottom:541.733333pt;}
.y280{bottom:542.000000pt;}
.yc8{bottom:543.066667pt;}
.y2b9{bottom:543.333333pt;}
.ybc{bottom:544.400000pt;}
.y3e8{bottom:544.666667pt;}
.y39{bottom:544.933333pt;}
.y149{bottom:546.000000pt;}
.y350{bottom:546.266667pt;}
.y24e{bottom:546.721479pt;}
.y124{bottom:547.066667pt;}
.y2f3{bottom:548.883842pt;}
.y7c{bottom:551.866667pt;}
.y3cd{bottom:553.200000pt;}
.y208{bottom:554.533333pt;}
.y58{bottom:555.066667pt;}
.ye6{bottom:555.333333pt;}
.y3b1{bottom:555.600000pt;}
.y9e{bottom:556.933333pt;}
.y1da{bottom:557.200000pt;}
.y1c3{bottom:557.733333pt;}
.y1e1{bottom:558.166108pt;}
.y2f2{bottom:558.483149pt;}
.y23{bottom:559.866667pt;}
.y163{bottom:560.933333pt;}
.yc7{bottom:562.533333pt;}
.y2b8{bottom:562.800000pt;}
.ybb{bottom:563.866667pt;}
.y38{bottom:564.133333pt;}
.y7b{bottom:564.400000pt;}
.y147{bottom:565.200000pt;}
.y34f{bottom:565.466667pt;}
.y197{bottom:565.733333pt;}
.y361{bottom:567.333333pt;}
.y2f1{bottom:568.082456pt;}
.y270{bottom:568.400000pt;}
.y148{bottom:570.533333pt;}
.y24b{bottom:570.825561pt;}
.y198{bottom:571.066667pt;}
.y3cc{bottom:572.400000pt;}
.y3fb{bottom:572.666667pt;}
.y10b{bottom:573.200000pt;}
.y207{bottom:573.733333pt;}
.ye5{bottom:574.800000pt;}
.y3b0{bottom:575.066667pt;}
.y9d{bottom:576.400000pt;}
.y7a{bottom:576.666667pt;}
.y123{bottom:577.200000pt;}
.y315{bottom:577.696821pt;}
.y162{bottom:580.400000pt;}
.y57{bottom:581.200000pt;}
.yc6{bottom:581.733333pt;}
.y2b7{bottom:582.000000pt;}
.y249{bottom:582.877601pt;}
.yba{bottom:583.066667pt;}
.y3e7{bottom:583.333333pt;}
.y146{bottom:584.666667pt;}
.y196{bottom:584.933333pt;}
.y1c2{bottom:587.866667pt;}
.y79{bottom:589.200000pt;}
.y2f0{bottom:589.554789pt;}
.y360{bottom:590.266667pt;}
.y3cb{bottom:591.600000pt;}
.y3fa{bottom:591.866667pt;}
.y206{bottom:593.200000pt;}
.y341{bottom:593.733333pt;}
.y37{bottom:594.000000pt;}
.y3af{bottom:594.266667pt;}
.y26f{bottom:595.066667pt;}
.y9b{bottom:595.600000pt;}
.y21b{bottom:595.866667pt;}
.y10a{bottom:596.426667pt;}
.y101{bottom:596.452636pt;}
.y2ef{bottom:599.176682pt;}
.yc5{bottom:601.226667pt;}
.y2b6{bottom:601.506667pt;}
.y78{bottom:601.760000pt;}
.yb9{bottom:602.293333pt;}
.y3e6{bottom:602.560000pt;}
.y145{bottom:603.893333pt;}
.y34e{bottom:604.173333pt;}
.y195{bottom:604.440000pt;}
.y246{bottom:606.981683pt;}
.y56{bottom:607.106667pt;}
.y2ee{bottom:608.775989pt;}
.y161{bottom:611.626667pt;}
.ye4{bottom:613.226667pt;}
.y36{bottom:613.506667pt;}
.y77{bottom:614.026667pt;}
.y9a{bottom:615.093333pt;}
.y21a{bottom:615.360000pt;}
.y122{bottom:615.893333pt;}
.y26e{bottom:618.293333pt;}
.y323{bottom:618.375296pt;}
.yc4{bottom:620.426667pt;}
.y2b5{bottom:620.693333pt;}
.yb8{bottom:621.760000pt;}
.y340{bottom:622.560000pt;}
.y205{bottom:623.093333pt;}
.y194{bottom:623.626667pt;}
.y76{bottom:626.560000pt;}
.y2ed{bottom:630.248321pt;}
.y243{bottom:631.085764pt;}
.y3e5{bottom:632.426667pt;}
.y35{bottom:632.693333pt;}
.y34d{bottom:632.973333pt;}
.y55{bottom:633.226667pt;}
.y98{bottom:634.293333pt;}
.y219{bottom:634.560000pt;}
.y144{bottom:634.840000pt;}
.y1ab{bottom:635.093333pt;}
.y1d7{bottom:636.067204pt;}
.y104{bottom:637.733408pt;}
.y33f{bottom:639.093333pt;}
.y2ec{bottom:639.847628pt;}
.yc3{bottom:639.893333pt;}
.y160{bottom:640.173333pt;}
.yb7{bottom:640.960000pt;}
.y3f9{bottom:641.226667pt;}
.y204{bottom:642.560000pt;}
.y193{bottom:643.106667pt;}
.y75{bottom:644.160000pt;}
.y3c9{bottom:645.226667pt;}
.y121{bottom:645.760000pt;}
.y3ae{bottom:646.306667pt;}
.y2eb{bottom:649.446935pt;}
.y2b4{bottom:649.760000pt;}
.ye3{bottom:651.360000pt;}
.y3e4{bottom:651.893333pt;}
.y34{bottom:652.173333pt;}
.y97{bottom:653.760000pt;}
.y218{bottom:653.773333pt;}
.y143{bottom:654.026667pt;}
.y1aa{bottom:654.293333pt;}
.y34c{bottom:656.160000pt;}
.y15f{bottom:656.973333pt;}
.y324{bottom:659.068829pt;}
.y54{bottom:659.093333pt;}
.yb6{bottom:660.426667pt;}
.y203{bottom:661.760000pt;}
.y192{bottom:662.293333pt;}
.y33a{bottom:662.546316pt;}
.y33e{bottom:662.560000pt;}
.y3c8{bottom:664.440000pt;}
.y120{bottom:664.960000pt;}
.y2ea{bottom:670.926796pt;}
.y3e3{bottom:671.093333pt;}
.y74{bottom:674.293333pt;}
.y2b3{bottom:676.173333pt;}
.y1df{bottom:679.868709pt;}
.y15e{bottom:679.893333pt;}
.y2e9{bottom:680.526103pt;}
.y1c1{bottom:680.693333pt;}
.y202{bottom:680.973333pt;}
.y217{bottom:683.893333pt;}
.y11f{bottom:684.426667pt;}
.y142{bottom:684.706667pt;}
.y2e8{bottom:690.140468pt;}
.y3f8{bottom:690.560000pt;}
.y191{bottom:691.106667pt;}
.y23d{bottom:691.349787pt;}
.y2b2{bottom:699.093333pt;}
.y325{bottom:699.739775pt;}
.y201{bottom:700.440000pt;}
.y3e2{bottom:701.226667pt;}
.y216{bottom:703.106667pt;}
.y11e{bottom:703.626667pt;}
.y73{bottom:704.173333pt;}
.y3f7{bottom:709.760000pt;}
.y2e7{bottom:711.620329pt;}
.y190{bottom:714.293333pt;}
.y187{bottom:715.197307pt;}
.y23a{bottom:715.453869pt;}
.y200{bottom:719.626667pt;}
.y3e1{bottom:720.426667pt;}
.y2e6{bottom:721.219636pt;}
.y1c0{bottom:722.560000pt;}
.y11d{bottom:723.093333pt;}
.y141{bottom:723.373333pt;}
.y32b{bottom:724.960000pt;}
.y238{bottom:727.502090pt;}
.y2e5{bottom:730.818943pt;}
.yb{bottom:732.173333pt;}
.y100{bottom:733.506667pt;}
.y72{bottom:734.293333pt;}
.y1c{bottom:735.373333pt;}
.y1ff{bottom:739.093333pt;}
.y3e0{bottom:739.893333pt;}
.y326{bottom:740.433308pt;}
.y339{bottom:741.506667pt;}
.y1d6{bottom:741.760000pt;}
.y11c{bottom:742.293333pt;}
.y2e4{bottom:752.291275pt;}
.y1bf{bottom:752.466667pt;}
.y140{bottom:754.333333pt;}
.y1fe{bottom:758.333333pt;}
.y3f6{bottom:759.133333pt;}
.yff{bottom:761.266667pt;}
.y11b{bottom:761.800000pt;}
.y2e3{bottom:761.890582pt;}
.ya{bottom:762.333333pt;}
.y234{bottom:763.662032pt;}
.y71{bottom:764.200000pt;}
.y338{bottom:769.000000pt;}
.y3df{bottom:769.800000pt;}
.y185{bottom:770.315984pt;}
.y2e2{bottom:771.512476pt;}
.y1be{bottom:771.933333pt;}
.y13f{bottom:773.533333pt;}
.y1a9{bottom:777.533333pt;}
.y3f5{bottom:778.600000pt;}
.yfe{bottom:780.466667pt;}
.y11a{bottom:781.000000pt;}
.y327{bottom:781.111783pt;}
.y1d5{bottom:785.800000pt;}
.y231{bottom:787.766113pt;}
.y1fd{bottom:788.466667pt;}
.y3de{bottom:789.266667pt;}
.y37c{bottom:790.066667pt;}
.y1bd{bottom:791.133333pt;}
.y9{bottom:792.200000pt;}
.y2e1{bottom:792.969750pt;}
.y13e{bottom:793.000000pt;}
.y70{bottom:794.066667pt;}
.y22f{bottom:799.814334pt;}
.yfd{bottom:799.933333pt;}
.y2e0{bottom:802.584115pt;}
.y1fc{bottom:807.666667pt;}
.y184{bottom:808.324511pt;}
.y3f4{bottom:808.466667pt;}
.y1bc{bottom:810.600000pt;}
.y2df{bottom:812.183422pt;}
.y13d{bottom:812.200000pt;}
.y33{bottom:814.866667pt;}
.y119{bottom:816.200000pt;}
.y37b{bottom:817.533333pt;}
.yfc{bottom:819.133333pt;}
.y6f{bottom:820.200000pt;}
.y328{bottom:821.782729pt;}
.y53{bottom:822.066667pt;}
.y8{bottom:822.333333pt;}
.yb5{bottom:823.133333pt;}
.y2cf{bottom:823.808917pt;}
.y22c{bottom:823.918415pt;}
.y1fb{bottom:827.133333pt;}
.y180{bottom:827.328774pt;}
.y3f3{bottom:827.933333pt;}
.y1bb{bottom:829.800000pt;}
.y2de{bottom:833.663283pt;}
.y37a{bottom:835.400000pt;}
.y336{bottom:837.800000pt;}
.yfb{bottom:838.600000pt;}
.yc{bottom:842.333333pt;}
.y337{bottom:843.133333pt;}
.y2dd{bottom:843.262590pt;}
.y13c{bottom:843.400000pt;}
.y6e{bottom:846.066667pt;}
.y1fa{bottom:846.333333pt;}
.y3f2{bottom:847.133333pt;}
.y228{bottom:848.022496pt;}
.y1a8{bottom:849.266667pt;}
.y7{bottom:852.200000pt;}
.y2db{bottom:852.861897pt;}
.y379{bottom:853.533333pt;}
.y335{bottom:857.000000pt;}
.y118{bottom:857.800000pt;}
.y321{bottom:862.476262pt;}
.y17f{bottom:865.366344pt;}
.y1f9{bottom:865.800000pt;}
.yfa{bottom:868.466667pt;}
.y6d{bottom:871.400000pt;}
.y1d4{bottom:873.800000pt;}
.y2da{bottom:874.334229pt;}
.y334{bottom:876.466667pt;}
.y13b{bottom:877.000000pt;}
.y1ba{bottom:879.133333pt;}
.y6{bottom:882.333333pt;}
.y2d9{bottom:883.956123pt;}
.y17c{bottom:884.370607pt;}
.y1f8{bottom:885.000000pt;}
.y225{bottom:887.400000pt;}
.yf9{bottom:887.666667pt;}
.y378{bottom:889.266667pt;}
.y2bf{bottom:890.066667pt;}
.y2d8{bottom:893.555430pt;}
.y6c{bottom:895.666667pt;}
.y13a{bottom:896.200000pt;}
.y3f1{bottom:896.466667pt;}
.y1b9{bottom:898.360000pt;}
.y322{bottom:903.154737pt;}
.yf8{bottom:907.173333pt;}
.y5{bottom:912.226667pt;}
.y1f7{bottom:914.893333pt;}
.y2d7{bottom:915.027762pt;}
.y139{bottom:915.173333pt;}
.ye2{bottom:917.840000pt;}
.y6b{bottom:920.760000pt;}
.y2d6{bottom:924.627069pt;}
.y17a{bottom:925.220302pt;}
.yf7{bottom:926.373333pt;}
.y2d4{bottom:934.226376pt;}
.y138{bottom:934.373333pt;}
.ye1{bottom:937.040000pt;}
.y224{bottom:939.693333pt;}
.y4{bottom:942.360000pt;}
.y282{bottom:942.825353pt;}
.y317{bottom:943.848270pt;}
.y179{bottom:944.262448pt;}
.y6a{bottom:945.840000pt;}
.y260{bottom:948.226667pt;}
.y386{bottom:948.332644pt;}
.y137{bottom:953.293333pt;}
.y1f6{bottom:953.560000pt;}
.y2d0{bottom:955.706237pt;}
.ye0{bottom:956.506667pt;}
.y177{bottom:963.266711pt;}
.y69{bottom:970.106667pt;}
.ydf{bottom:975.693333pt;}
.y3{bottom:978.626667pt;}
.y2b{bottom:986.893333pt;}
.y136{bottom:988.773333pt;}
.y52{bottom:995.173333pt;}
.y15d{bottom:997.560000pt;}
.y2a{bottom:1016.760000pt;}
.y29{bottom:1046.893333pt;}
.y2{bottom:1048.800000pt;}
.y27{bottom:1062.666667pt;}
.y51{bottom:1066.933333pt;}
.y31{bottom:1070.400000pt;}
.y1{bottom:1073.600000pt;}
.h2{height:5.304688pt;}
.h4f{height:9.034642pt;}
.h4e{height:9.053464pt;}
.h51{height:11.293302pt;}
.h50{height:11.312125pt;}
.h3d{height:11.479044pt;}
.h12{height:12.533333pt;}
.h26{height:18.057207pt;}
.h28{height:18.088775pt;}
.h34{height:18.500415pt;}
.h39{height:18.676369pt;}
.h37{height:18.708625pt;}
.h56{height:19.108711pt;}
.h19{height:19.200000pt;}
.h1c{height:19.233333pt;}
.h1a{height:19.466667pt;}
.h1b{height:19.500000pt;}
.h14{height:22.666667pt;}
.h4b{height:25.993418pt;}
.h5c{height:33.055472pt;}
.h4d{height:34.690510pt;}
.h20{height:35.010937pt;}
.h17{height:35.200000pt;}
.h4a{height:35.944464pt;}
.h62{height:36.210979pt;}
.h3e{height:36.550841pt;}
.h4c{height:37.003211pt;}
.h2c{height:37.061470pt;}
.h2b{height:37.093039pt;}
.h1f{height:37.132812pt;}
.h3c{height:37.627449pt;}
.h43{height:38.705372pt;}
.h44{height:38.909953pt;}
.h23{height:39.249427pt;}
.h3f{height:39.585938pt;}
.h29{height:39.902639pt;}
.h31{height:42.834584pt;}
.h47{height:43.596646pt;}
.h48{height:44.880789pt;}
.h5d{height:46.353495pt;}
.h15{height:47.742188pt;}
.h46{height:47.796448pt;}
.h45{height:47.874199pt;}
.h63{height:48.382812pt;}
.h40{height:49.148438pt;}
.hc{height:51.753333pt;}
.h5e{height:51.936761pt;}
.hf{height:53.046875pt;}
.h61{height:53.698557pt;}
.h2d{height:54.171621pt;}
.h60{height:55.280252pt;}
.h2f{height:56.065733pt;}
.h2a{height:56.769367pt;}
.h5b{height:57.023097pt;}
.h13{height:57.866667pt;}
.h32{height:58.088324pt;}
.h3{height:58.351562pt;}
.h27{height:58.441513pt;}
.h38{height:58.647722pt;}
.h59{height:58.698540pt;}
.h35{height:59.799320pt;}
.h18{height:60.070312pt;}
.h22{height:60.130724pt;}
.h3a{height:60.375195pt;}
.h24{height:61.187500pt;}
.h55{height:61.901879pt;}
.h52{height:63.001915pt;}
.h54{height:63.577369pt;}
.h58{height:64.571874pt;}
.h53{height:65.450045pt;}
.h30{height:65.781915pt;}
.h7{height:74.265625pt;}
.h36{height:76.902421pt;}
.h25{height:77.729167pt;}
.h8{height:77.875000pt;}
.h1e{height:88.833333pt;}
.hb{height:95.484375pt;}
.h2e{height:96.946997pt;}
.h42{height:97.432410pt;}
.h10{height:98.700000pt;}
.h1d{height:99.937500pt;}
.h11{height:106.093750pt;}
.hd{height:109.218750pt;}
.h21{height:120.811000pt;}
.h4{height:127.312500pt;}
.h16{height:137.921875pt;}
.h33{height:141.169596pt;}
.h6{height:146.160000pt;}
.ha{height:160.826667pt;}
.h5{height:177.893333pt;}
.h57{height:181.152486pt;}
.h5f{height:189.015874pt;}
.he{height:189.400000pt;}
.h9{height:235.266667pt;}
.h3b{height:361.553876pt;}
.h41{height:439.534635pt;}
.h5a{height:473.254782pt;}
.h49{height:840.199108pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w20{width:56.489316pt;}
.w21{width:56.509327pt;}
.w1e{width:57.897637pt;}
.w28{width:74.193722pt;}
.w16{width:106.593269pt;}
.wd{width:111.233333pt;}
.w25{width:122.261629pt;}
.w14{width:123.918749pt;}
.wc{width:229.666667pt;}
.w8{width:244.346667pt;}
.w3{width:274.760000pt;}
.w4{width:283.000000pt;}
.w6{width:295.306667pt;}
.w5{width:338.226667pt;}
.w13{width:363.188637pt;}
.w11{width:448.103246pt;}
.w17{width:456.358477pt;}
.we{width:470.266667pt;}
.wb{width:481.466667pt;}
.w23{width:487.001287pt;}
.w15{width:488.057945pt;}
.w22{width:491.054845pt;}
.w1f{width:491.655156pt;}
.w10{width:529.130025pt;}
.w1c{width:533.201593pt;}
.w19{width:563.919016pt;}
.w1b{width:564.214492pt;}
.w12{width:564.656540pt;}
.w27{width:564.732171pt;}
.w26{width:564.874499pt;}
.w18{width:564.886287pt;}
.w24{width:564.890060pt;}
.w1a{width:565.171007pt;}
.w29{width:565.287311pt;}
.w1d{width:567.265092pt;}
.w9{width:581.506667pt;}
.wa{width:588.733333pt;}
.w7{width:641.800000pt;}
.wf{width:793.866643pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:1.996717pt;}
.x6a{left:3.679294pt;}
.x4d{left:4.836355pt;}
.x15{left:7.200000pt;}
.x8{left:9.600000pt;}
.x43{left:13.251154pt;}
.x73{left:15.023797pt;}
.x41{left:16.083942pt;}
.x4b{left:18.410392pt;}
.x80{left:19.992334pt;}
.x40{left:23.638044pt;}
.x14{left:26.133333pt;}
.x6{left:28.573333pt;}
.x44{left:31.223622pt;}
.x45{left:32.167885pt;}
.x39{left:35.944936pt;}
.x59{left:43.158507pt;}
.x3a{left:52.028878pt;}
.xc{left:59.473333pt;}
.xb{left:76.833333pt;}
.x71{left:81.738420pt;}
.x12{left:85.360000pt;}
.xf{left:92.033333pt;}
.x5d{left:93.366451pt;}
.x5a{left:95.964966pt;}
.x5b{left:98.537754pt;}
.x13{left:106.166667pt;}
.x10{left:109.900000pt;}
.x2{left:113.366655pt;}
.x37{left:114.944263pt;}
.x3d{left:126.757833pt;}
.x21{left:129.899976pt;}
.x1{left:132.299988pt;}
.x1e{left:137.106655pt;}
.x11{left:139.506667pt;}
.x54{left:141.359988pt;}
.x49{left:142.693310pt;}
.x1b{left:146.959988pt;}
.x2b{left:150.426655pt;}
.x7f{left:153.931287pt;}
.x18{left:160.599988pt;}
.x3{left:162.466655pt;}
.x52{left:164.066643pt;}
.x2a{left:167.533322pt;}
.x46{left:169.399988pt;}
.x1c{left:172.333322pt;}
.x53{left:173.666655pt;}
.x2c{left:179.533322pt;}
.x67{left:183.533322pt;}
.x76{left:186.913003pt;}
.x77{left:188.713938pt;}
.x7c{left:189.933322pt;}
.x58{left:196.333322pt;}
.x4f{left:198.127829pt;}
.x75{left:200.143869pt;}
.x16{left:204.333333pt;}
.x36{left:205.933322pt;}
.x42{left:207.146069pt;}
.x78{left:209.164551pt;}
.x24{left:212.900101pt;}
.x33{left:214.466655pt;}
.x7a{left:216.368289pt;}
.x1d{left:217.400000pt;}
.x79{left:218.777540pt;}
.x4a{left:222.199988pt;}
.x70{left:225.399988pt;}
.x5{left:226.773333pt;}
.x35{left:228.066655pt;}
.x4c{left:229.630145pt;}
.x89{left:230.733322pt;}
.x5c{left:231.825288pt;}
.x85{left:235.533322pt;}
.x23{left:237.399988pt;}
.x3b{left:239.807275pt;}
.x7e{left:242.999988pt;}
.x82{left:249.133322pt;}
.x4{left:253.400000pt;}
.x2d{left:256.066643pt;}
.x6d{left:259.533322pt;}
.x2e{left:260.866655pt;}
.x17{left:261.933333pt;}
.x66{left:269.439988pt;}
.x61{left:271.128902pt;}
.xe{left:277.940000pt;}
.x6e{left:281.439988pt;}
.x84{left:282.773322pt;}
.x8a{left:291.839988pt;}
.x2f{left:320.639976pt;}
.x22{left:321.959988pt;}
.x30{left:325.439988pt;}
.xd{left:330.233333pt;}
.x27{left:332.359988pt;}
.x55{left:361.973310pt;}
.x5e{left:365.138550pt;}
.x47{left:372.399976pt;}
.x48{left:377.199988pt;}
.x7d{left:381.733322pt;}
.x56{left:388.399976pt;}
.x6f{left:396.933322pt;}
.x57{left:397.999988pt;}
.x9{left:402.266667pt;}
.x7{left:406.266667pt;}
.xa{left:417.733333pt;}
.x28{left:427.066643pt;}
.x29{left:431.866655pt;}
.x60{left:451.438412pt;}
.x5f{left:454.011200pt;}
.x1a{left:455.066667pt;}
.x1f{left:472.933310pt;}
.x20{left:477.733322pt;}
.x3c{left:492.779258pt;}
.x3e{left:493.723521pt;}
.x3f{left:508.856906pt;}
.x38{left:512.646547pt;}
.x87{left:528.939893pt;}
.x72{left:538.193537pt;}
.x69{left:564.185010pt;}
.x31{left:577.759976pt;}
.x32{left:582.559988pt;}
.x50{left:587.666643pt;}
.x51{left:592.466655pt;}
.x74{left:595.279163pt;}
.x88{left:604.005115pt;}
.x6b{left:622.809723pt;}
.x81{left:640.999988pt;}
.x34{left:643.133322pt;}
.x65{left:646.866655pt;}
.x7b{left:652.466655pt;}
.x83{left:658.599988pt;}
.x26{left:662.066655pt;}
.x62{left:663.933322pt;}
.x63{left:667.399976pt;}
.x86{left:675.933322pt;}
.x64{left:676.999988pt;}
.x4e{left:679.399988pt;}
.x19{left:680.466655pt;}
.x6c{left:681.533322pt;}
.x68{left:689.799988pt;}
}




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