
    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_110dea0973ca8f2ba53099f6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_184af20f7fa94b1039fd4fca.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.911000;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_6c577c8eaf0546a06b94f38f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_36d844db61ea6d302070be66.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.898000;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_31ef3bd82ad616ab21e5187d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.503000;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_7dbf9c6c9b308239ee2465f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.906000;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_96b0e83cd1f353b4fca349a3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854000;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_10a72fa2430e3e81bf0e23f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908000;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_afe55818a240db2be71fc232.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893000;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_7e982ff2102eaa4ef94364e3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.859863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8bec485e9a2cf60bdd8eb3af.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.859863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a3fdb4a320e0e32384b2f870.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8f65904cb00366c786aa3dc1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.454000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_705e76d15bff5fd269362efa.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9772a9694cb05ff622b67579.woff2')format("woff");}.fff{font-family:fff;line-height:0.108000;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:ff10;src:url('chunks/assets/font_bd9da0860ef203138355873b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.686000;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:ff11;src:url('chunks/assets/font_8c340fe42a2a0c6484edeeeb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.688000;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:ff12;src:url('chunks/assets/font_24be56526b803ec7b6fdf0f7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_195973a33a399211a40d8243.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.927000;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:ff14;src:url('chunks/assets/font_f9e8a6255013880c0e3e45fe.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;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:ff15;src:url('chunks/assets/font_6a98a03de7745443384915fb.woff2')format("woff");}.ff15{font-family:ff15;line-height:3.000000;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:ff16;src:url('chunks/assets/font_f911d9a0d139d65938697cf7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.831000;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:ff17;src:url('chunks/assets/font_c3ef5348596628bde804a079.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.999000;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:ff18;src:url('chunks/assets/font_8e223bd22d116f1408d515f4.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.727000;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:ff19;src:url('chunks/assets/font_61f13572bf1211f1199ac401.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.049000;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:ff1a;src:url('chunks/assets/font_cdfb169026cdf59915d05d8a.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_15281a4fd2fa8209439483dd.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.239258;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:ff1c;src:url('chunks/assets/font_2479ea78c5146bd37eaae386.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.575000;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:ff1e;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_b0c7d33f9b26428ed58efc2c.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.575000;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:ff21;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_7e863bbf5a597633e1f1fa92.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.958008;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:ff23;src:url('chunks/assets/font_5bbb0bf8045ba6dbc0c2c450.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.958008;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:ff24;src:url('chunks/assets/font_26860151587a77a765eb62e6.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.958496;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:ff25;src:url('chunks/assets/font_c0f4696e23b8d44322330e3d.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.958008;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:ff26;src:url('chunks/assets/font_0e75563a616499ab6e2bd536.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.958496;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:ff27;src:url('chunks/assets/font_b73931c33b54242045842072.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.958008;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:ff28;src:url('chunks/assets/font_0db4f31677af6f31dc86cb62.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.958496;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:ff29;src:url('chunks/assets/font_086003b66023f25fb8ffc58b.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.958008;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:ff2a;src:url('chunks/assets/font_2eb37289a2111fbd92b0c727.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.958496;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:ff2b;src:url('chunks/assets/font_df2a799c71bb25dc78c12182.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.958008;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:ff2c;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.575000;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:ff2d;src:url('chunks/assets/font_b50668643ebc18d602e18a86.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.575000;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:ff2f;src:url('chunks/assets/font_d8b2553c6038c2a0aa48cfee.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_e148fba6301fa2017c03dde2.woff2')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.575000;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:ff32;src:url('chunks/assets/font_0902bdc07baf5d1bffe77d9e.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.000000;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:ff33;src:url('chunks/assets/font_e704e791810da08b6ce7f432.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.000000;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:ff34;src:url('chunks/assets/font_097459597f442a6df947f771.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v21{vertical-align:-38.608392px;}
.v19{vertical-align:-35.135807px;}
.v24{vertical-align:-33.399515px;}
.v23{vertical-align:-31.470301px;}
.v1b{vertical-align:-29.468741px;}
.v29{vertical-align:-27.265562px;}
.v1c{vertical-align:-25.899696px;}
.v22{vertical-align:-24.211634px;}
.v2{vertical-align:-22.854000px;}
.v17{vertical-align:-20.160285px;}
.v1a{vertical-align:-17.483500px;}
.v18{vertical-align:-15.602517px;}
.v27{vertical-align:-12.226393px;}
.v25{vertical-align:-11.213555px;}
.v20{vertical-align:-10.056027px;}
.v8{vertical-align:-8.970000px;}
.v26{vertical-align:-7.789201px;}
.v4{vertical-align:-5.976000px;}
.v1f{vertical-align:-4.919495px;}
.v1d{vertical-align:-3.520815px;}
.v28{vertical-align:-2.266826px;}
.v1e{vertical-align:-1.061068px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:5.814000px;}
.v14{vertical-align:8.964000px;}
.v7{vertical-align:10.296000px;}
.v12{vertical-align:14.778000px;}
.v3{vertical-align:20.048326px;}
.v16{vertical-align:21.696000px;}
.v5{vertical-align:22.854000px;}
.v11{vertical-align:28.992000px;}
.v1{vertical-align:31.242000px;}
.v6{vertical-align:37.092000px;}
.va{vertical-align:40.440000px;}
.v15{vertical-align:42.306000px;}
.v10{vertical-align:60.606000px;}
.vf{vertical-align:66.582000px;}
.ve{vertical-align:81.360000px;}
.v9{vertical-align:98.778000px;}
.vb{vertical-align:102.216000px;}
.vd{vertical-align:110.220000px;}
.vc{vertical-align:122.604000px;}
.ls0{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.000312px;}
.ls59{letter-spacing:0.000538px;}
.ls66{letter-spacing:0.000544px;}
.lsd{letter-spacing:0.000557px;}
.ls27{letter-spacing:0.000564px;}
.ls2{letter-spacing:0.000696px;}
.ls23{letter-spacing:0.000767px;}
.ls14{letter-spacing:0.001127px;}
.ls3e{letter-spacing:0.001140px;}
.ls3a{letter-spacing:0.001202px;}
.ls13{letter-spacing:0.001793px;}
.ls1e{letter-spacing:0.002015px;}
.ls3c{letter-spacing:0.002017px;}
.ls39{letter-spacing:0.002175px;}
.lsb7{letter-spacing:0.002207px;}
.ls2b{letter-spacing:0.002234px;}
.ls1a{letter-spacing:0.002245px;}
.ls71{letter-spacing:0.002338px;}
.ls26{letter-spacing:0.002525px;}
.ls2c{letter-spacing:0.003269px;}
.ls10{letter-spacing:0.003427px;}
.ls9{letter-spacing:0.003980px;}
.ls5f{letter-spacing:0.004200px;}
.ls3{letter-spacing:0.004241px;}
.ls5c{letter-spacing:0.004893px;}
.ls33{letter-spacing:0.005374px;}
.ls7{letter-spacing:0.005856px;}
.ls5{letter-spacing:0.036054px;}
.ls75{letter-spacing:1.133413px;}
.ls21{letter-spacing:2.148767px;}
.ls76{letter-spacing:2.580324px;}
.ls8c{letter-spacing:2.773245px;}
.ls56{letter-spacing:2.984525px;}
.ls32{letter-spacing:2.985959px;}
.ls34{letter-spacing:2.987870px;}
.ls73{letter-spacing:2.988600px;}
.lsba{letter-spacing:2.988648px;}
.ls5d{letter-spacing:2.988775px;}
.ls2e{letter-spacing:2.989140px;}
.ls2d{letter-spacing:2.989202px;}
.ls55{letter-spacing:2.990525px;}
.ls3f{letter-spacing:2.991954px;}
.ls1d{letter-spacing:4.278579px;}
.ls8b{letter-spacing:4.364846px;}
.ls9f{letter-spacing:4.750689px;}
.ls74{letter-spacing:5.040071px;}
.ls52{letter-spacing:5.408908px;}
.ls97{letter-spacing:5.570605px;}
.ls54{letter-spacing:6.433866px;}
.ls44{letter-spacing:7.658525px;}
.ls37{letter-spacing:7.684200px;}
.ls9b{letter-spacing:7.982122px;}
.ls25{letter-spacing:8.303139px;}
.ls9e{letter-spacing:8.657347px;}
.lsa5{letter-spacing:9.332572px;}
.lsa7{letter-spacing:9.429033px;}
.ls49{letter-spacing:9.964618px;}
.ls98{letter-spacing:10.152488px;}
.ls38{letter-spacing:12.049140px;}
.lsaf{letter-spacing:12.250508px;}
.lse{letter-spacing:12.283002px;}
.lsf{letter-spacing:12.288557px;}
.lsa0{letter-spacing:12.588120px;}
.lsaa{letter-spacing:12.636351px;}
.lsb0{letter-spacing:13.118654px;}
.ls20{letter-spacing:13.284538px;}
.ls61{letter-spacing:14.190538px;}
.ls67{letter-spacing:14.353084px;}
.ls77{letter-spacing:14.565564px;}
.lsab{letter-spacing:14.662025px;}
.lsa8{letter-spacing:14.710256px;}
.ls48{letter-spacing:14.940312px;}
.lsb8{letter-spacing:14.942100px;}
.lsa1{letter-spacing:15.530171px;}
.lsad{letter-spacing:15.578402px;}
.ls28{letter-spacing:15.602245px;}
.ls3b{letter-spacing:16.268017px;}
.ls1f{letter-spacing:16.272775px;}
.ls3d{letter-spacing:16.273140px;}
.ls1{letter-spacing:16.433468px;}
.lsb4{letter-spacing:16.435200px;}
.ls72{letter-spacing:16.439282px;}
.ls4a{letter-spacing:16.602312px;}
.ls1b{letter-spacing:16.602538px;}
.ls4d{letter-spacing:16.605269px;}
.ls4b{letter-spacing:16.607306px;}
.ls60{letter-spacing:16.734557px;}
.lsc{letter-spacing:16.740031px;}
.lsb6{letter-spacing:16.867084px;}
.lsb2{letter-spacing:16.880621px;}
.ls22{letter-spacing:17.299140px;}
.ls6e{letter-spacing:17.460648px;}
.ls68{letter-spacing:17.830200px;}
.lsb9{letter-spacing:17.929202px;}
.ls6d{letter-spacing:17.934775px;}
.ls5a{letter-spacing:18.134017px;}
.ls46{letter-spacing:18.526618px;}
.ls47{letter-spacing:18.528312px;}
.ls43{letter-spacing:18.573954px;}
.ls24{letter-spacing:18.588579px;}
.ls7f{letter-spacing:18.906296px;}
.ls8d{letter-spacing:19.099217px;}
.lsb5{letter-spacing:19.174200px;}
.ls63{letter-spacing:19.590648px;}
.ls62{letter-spacing:19.592017px;}
.ls57{letter-spacing:19.773269px;}
.lsae{letter-spacing:19.919133px;}
.ls5b{letter-spacing:19.998544px;}
.ls50{letter-spacing:20.024408px;}
.ls29{letter-spacing:20.049652px;}
.ls9a{letter-spacing:20.160285px;}
.ls41{letter-spacing:20.240017px;}
.ls8e{letter-spacing:20.353206px;}
.ls19{letter-spacing:20.581140px;}
.ls70{letter-spacing:21.084775px;}
.ls6f{letter-spacing:21.162775px;}
.ls6b{letter-spacing:21.163140px;}
.ls99{letter-spacing:21.366043px;}
.ls5e{letter-spacing:21.505140px;}
.ls42{letter-spacing:22.189140px;}
.ls4f{letter-spacing:23.247269px;}
.ls6c{letter-spacing:23.394775px;}
.ls31{letter-spacing:23.421269px;}
.ls36{letter-spacing:23.778538px;}
.lsa3{letter-spacing:24.283979px;}
.ls7b{letter-spacing:24.621592px;}
.ls64{letter-spacing:24.768648px;}
.ls65{letter-spacing:24.769202px;}
.ls69{letter-spacing:25.472017px;}
.ls89{letter-spacing:25.779120px;}
.lsa4{letter-spacing:25.875581px;}
.ls53{letter-spacing:26.203866px;}
.ls96{letter-spacing:26.406114px;}
.ls30{letter-spacing:26.407140px;}
.ls2a{letter-spacing:26.560677px;}
.ls4c{letter-spacing:26.564338px;}
.ls51{letter-spacing:26.570338px;}
.ls45{letter-spacing:26.995140px;}
.ls6a{letter-spacing:27.336544px;}
.ls9c{letter-spacing:27.853025px;}
.ls95{letter-spacing:28.769401px;}
.ls58{letter-spacing:29.890200px;}
.lsa6{letter-spacing:31.904374px;}
.ls79{letter-spacing:32.193756px;}
.lsac{letter-spacing:32.965441px;}
.ls88{letter-spacing:33.110133px;}
.lsb3{letter-spacing:33.435905px;}
.ls90{letter-spacing:33.737127px;}
.ls91{letter-spacing:41.574558px;}
.ls7d{letter-spacing:41.622789px;}
.lsa2{letter-spacing:41.671019px;}
.ls9d{letter-spacing:42.153322px;}
.ls93{letter-spacing:42.925008px;}
.lsb1{letter-spacing:44.371918px;}
.ls92{letter-spacing:45.481216px;}
.lsa9{letter-spacing:49.604911px;}
.ls1c{letter-spacing:51.422400px;}
.ls8a{letter-spacing:51.823507px;}
.ls8f{letter-spacing:52.691653px;}
.ls35{letter-spacing:59.273870px;}
.ls84{letter-spacing:72.080252px;}
.ls7c{letter-spacing:92.216422px;}
.ls81{letter-spacing:95.206703px;}
.ls87{letter-spacing:109.000582px;}
.lsa{letter-spacing:121.754346px;}
.ls7a{letter-spacing:128.461527px;}
.ls85{letter-spacing:134.032132px;}
.ls83{letter-spacing:142.713594px;}
.ls82{letter-spacing:144.666923px;}
.ls94{letter-spacing:148.959424px;}
.ls86{letter-spacing:153.975380px;}
.ls80{letter-spacing:156.796855px;}
.ls6{letter-spacing:165.094307px;}
.ls12{letter-spacing:165.098352px;}
.ls78{letter-spacing:166.346463px;}
.ls11{letter-spacing:179.154532px;}
.ls15{letter-spacing:182.653534px;}
.ls8{letter-spacing:191.993282px;}
.lsb{letter-spacing:191.995162px;}
.lsbd{letter-spacing:200.504346px;}
.ls7e{letter-spacing:201.337579px;}
.lsbb{letter-spacing:216.946307px;}
.ls18{letter-spacing:218.893162px;}
.lsbc{letter-spacing:243.845282px;}
.lsbe{letter-spacing:243.847162px;}
.ls16{letter-spacing:245.792352px;}
.ls17{letter-spacing:259.426800px;}
.ls2f{letter-spacing:364.713269px;}
.ls40{letter-spacing:564.945269px;}
.ls4{letter-spacing:653.154526px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(168,168,168),0 0.015em rgb(168,168,168),0.015em 0 rgb(168,168,168),0 -0.015em  rgb(168,168,168);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(168,168,168);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa9{word-spacing:-59.775600px;}
.ws65{word-spacing:-47.324343px;}
.ws86{word-spacing:-46.505417px;}
.ws57{word-spacing:-38.937826px;}
.ws47{word-spacing:-36.071827px;}
.ws63{word-spacing:-31.633157px;}
.ws89{word-spacing:-28.955301px;}
.ws4d{word-spacing:-28.378656px;}
.ws85{word-spacing:-26.540366px;}
.ws14a{word-spacing:-22.416000px;}
.wsc7{word-spacing:-22.343843px;}
.ws6c{word-spacing:-22.336781px;}
.ws76{word-spacing:-22.329938px;}
.ws87{word-spacing:-22.320209px;}
.ws6{word-spacing:-21.519300px;}
.wsca{word-spacing:-18.915638px;}
.ws127{word-spacing:-17.932800px;}
.ws33{word-spacing:-14.943900px;}
.ws15{word-spacing:-13.449600px;}
.ws10a{word-spacing:-12.377894px;}
.ws69{word-spacing:-11.751564px;}
.ws2c{word-spacing:-11.187205px;}
.ws5c{word-spacing:-10.749564px;}
.ws107{word-spacing:-7.715554px;}
.ws6f{word-spacing:-7.267448px;}
.ws71{word-spacing:-7.264952px;}
.wse6{word-spacing:-6.704018px;}
.ws3{word-spacing:-4.052813px;}
.wsde{word-spacing:-3.919990px;}
.wsbf{word-spacing:-3.586536px;}
.ws40{word-spacing:-3.466985px;}
.wsc5{word-spacing:-3.298221px;}
.ws10e{word-spacing:-3.227882px;}
.ws3c{word-spacing:-3.168107px;}
.ws13d{word-spacing:-3.120307px;}
.ws8b{word-spacing:-3.048556px;}
.ws14b{word-spacing:-2.976825px;}
.ws98{word-spacing:-2.929004px;}
.ws28{word-spacing:-2.869229px;}
.ws126{word-spacing:-2.749678px;}
.ws99{word-spacing:-2.689902px;}
.ws12a{word-spacing:-2.636122px;}
.ws8d{word-spacing:-2.391024px;}
.wse2{word-spacing:-2.211697px;}
.wsc2{word-spacing:-2.092146px;}
.ws94{word-spacing:-1.972595px;}
.ws74{word-spacing:-1.912819px;}
.wseb{word-spacing:-1.882944px;}
.ws122{word-spacing:-1.853044px;}
.ws120{word-spacing:-1.775347px;}
.ws110{word-spacing:-1.733492px;}
.ws7d{word-spacing:-1.673717px;}
.ws8{word-spacing:-1.667750px;}
.ws13a{word-spacing:-1.560154px;}
.ws19{word-spacing:-1.554166px;}
.ws2a{word-spacing:-1.494390px;}
.wsb{word-spacing:-1.452557px;}
.ws9b{word-spacing:-1.434614px;}
.wsd8{word-spacing:-1.422718px;}
.ws123{word-spacing:-1.374839px;}
.wsa{word-spacing:-1.291162px;}
.ws10d{word-spacing:-1.255288px;}
.ws9c{word-spacing:-1.195512px;}
.ws133{word-spacing:-1.183565px;}
.ws45{word-spacing:-1.129766px;}
.ws41{word-spacing:-1.016185px;}
.ws93{word-spacing:-0.956410px;}
.ws1c{word-spacing:-0.896634px;}
.wsb8{word-spacing:-0.872756px;}
.ws52{word-spacing:-0.836858px;}
.wsc6{word-spacing:-0.734975px;}
.wsc9{word-spacing:-0.717307px;}
.ws5f{word-spacing:-0.657532px;}
.ws5e{word-spacing:-0.637691px;}
.ws3d{word-spacing:-0.597756px;}
.wsf{word-spacing:-0.591782px;}
.ws7e{word-spacing:-0.537980px;}
.ws13{word-spacing:-0.484186px;}
.wsd4{word-spacing:-0.478205px;}
.ws138{word-spacing:-0.430387px;}
.ws53{word-spacing:-0.358654px;}
.ws39{word-spacing:-0.298878px;}
.ws2e{word-spacing:-0.179327px;}
.ws104{word-spacing:-0.119551px;}
.ws5d{word-spacing:-0.059776px;}
.ws4c{word-spacing:-0.053798px;}
.ws66{word-spacing:-0.041843px;}
.ws50{word-spacing:-0.035866px;}
.ws13f{word-spacing:-0.007738px;}
.wsd1{word-spacing:-0.006766px;}
.ws84{word-spacing:-0.005392px;}
.wsac{word-spacing:-0.003619px;}
.ws134{word-spacing:-0.002506px;}
.wsd2{word-spacing:-0.002150px;}
.ws13c{word-spacing:-0.001488px;}
.ws83{word-spacing:-0.001483px;}
.wsad{word-spacing:-0.000557px;}
.ws12e{word-spacing:-0.000269px;}
.ws5{word-spacing:0.000000px;}
.wsfb{word-spacing:0.003025px;}
.ws144{word-spacing:0.048538px;}
.ws141{word-spacing:0.053798px;}
.ws11b{word-spacing:0.059776px;}
.wsf7{word-spacing:0.119551px;}
.wsbd{word-spacing:0.161395px;}
.wsa5{word-spacing:0.179327px;}
.wsa6{word-spacing:0.194134px;}
.wsa8{word-spacing:0.239102px;}
.ws136{word-spacing:0.268992px;}
.ws25{word-spacing:0.298878px;}
.wsc{word-spacing:0.322790px;}
.ws37{word-spacing:0.358654px;}
.ws8c{word-spacing:0.418429px;}
.ws56{word-spacing:0.478205px;}
.ws113{word-spacing:0.484186px;}
.ws9f{word-spacing:0.537980px;}
.ws10c{word-spacing:0.591782px;}
.ws7a{word-spacing:0.597756px;}
.wsdc{word-spacing:0.645581px;}
.ws68{word-spacing:0.657532px;}
.ws67{word-spacing:0.658309px;}
.wsdd{word-spacing:0.664310px;}
.ws13b{word-spacing:0.699379px;}
.wsfa{word-spacing:0.717307px;}
.ws18{word-spacing:0.777083px;}
.wsa1{word-spacing:0.836858px;}
.wse{word-spacing:0.914573px;}
.ws131{word-spacing:0.962621px;}
.wse1{word-spacing:0.968965px;}
.ws1b{word-spacing:1.016185px;}
.ws11d{word-spacing:1.053194px;}
.ws17{word-spacing:1.075961px;}
.wsb4{word-spacing:1.195512px;}
.ws90{word-spacing:1.255288px;}
.wsb5{word-spacing:1.305415px;}
.ws1f{word-spacing:1.315063px;}
.ws91{word-spacing:1.374839px;}
.ws124{word-spacing:1.434614px;}
.ws34{word-spacing:1.494390px;}
.ws97{word-spacing:1.554166px;}
.ws2f{word-spacing:1.613941px;}
.ws75{word-spacing:1.673717px;}
.ws8e{word-spacing:1.793268px;}
.ws2d{word-spacing:1.853044px;}
.ws95{word-spacing:1.912819px;}
.ws12c{word-spacing:1.936742px;}
.ws5a{word-spacing:1.972595px;}
.ws112{word-spacing:2.032370px;}
.ws23{word-spacing:2.092146px;}
.ws30{word-spacing:2.151922px;}
.ws38{word-spacing:2.211697px;}
.ws9{word-spacing:2.259533px;}
.ws77{word-spacing:2.308309px;}
.ws78{word-spacing:2.331248px;}
.ws7f{word-spacing:2.391024px;}
.wsd0{word-spacing:2.510575px;}
.ws55{word-spacing:2.570351px;}
.ws1d{word-spacing:2.630126px;}
.ws121{word-spacing:2.689920px;}
.wsa4{word-spacing:2.749678px;}
.wsc4{word-spacing:2.782880px;}
.wsed{word-spacing:2.797517px;}
.ws60{word-spacing:2.809453px;}
.ws12b{word-spacing:2.851315px;}
.ws24{word-spacing:2.869229px;}
.ws102{word-spacing:2.905114px;}
.ws31{word-spacing:2.929004px;}
.ws12d{word-spacing:2.958912px;}
.ws13e{word-spacing:3.012710px;}
.ws36{word-spacing:3.108331px;}
.ws10{word-spacing:3.120307px;}
.wsd6{word-spacing:3.147942px;}
.ws3b{word-spacing:3.168107px;}
.ws8a{word-spacing:3.227882px;}
.wsae{word-spacing:3.281702px;}
.ws106{word-spacing:3.287658px;}
.ws14c{word-spacing:3.299613px;}
.ws14d{word-spacing:3.309589px;}
.wsaa{word-spacing:3.347434px;}
.ws132{word-spacing:3.389299px;}
.ws43{word-spacing:3.407209px;}
.wsbb{word-spacing:3.443098px;}
.ws9a{word-spacing:3.526760px;}
.ws81{word-spacing:3.577414px;}
.ws82{word-spacing:3.583208px;}
.ws80{word-spacing:3.586536px;}
.ws3a{word-spacing:3.646312px;}
.ws12{word-spacing:3.658291px;}
.ws11a{word-spacing:3.706087px;}
.ws111{word-spacing:3.765863px;}
.wsab{word-spacing:3.819686px;}
.ws2b{word-spacing:3.825638px;}
.wsd3{word-spacing:3.885414px;}
.wsbe{word-spacing:3.945190px;}
.wsec{word-spacing:3.981082px;}
.ws32{word-spacing:4.004965px;}
.ws21{word-spacing:4.034880px;}
.wsc0{word-spacing:4.064741px;}
.wsa3{word-spacing:4.124516px;}
.wsdf{word-spacing:4.142477px;}
.wsf4{word-spacing:4.218041px;}
.ws79{word-spacing:4.244068px;}
.wsef{word-spacing:4.303843px;}
.ws135{word-spacing:4.357670px;}
.wsf6{word-spacing:4.363619px;}
.ws125{word-spacing:4.423394px;}
.wscc{word-spacing:4.483170px;}
.ws4{word-spacing:4.483200px;}
.ws101{word-spacing:4.542946px;}
.ws54{word-spacing:4.602721px;}
.ws5b{word-spacing:4.662497px;}
.ws11{word-spacing:4.734259px;}
.ws1a{word-spacing:4.782048px;}
.wse3{word-spacing:4.789216px;}
.ws35{word-spacing:4.841824px;}
.ws58{word-spacing:4.961375px;}
.ws3f{word-spacing:5.021150px;}
.wsfe{word-spacing:5.080926px;}
.wscf{word-spacing:5.140702px;}
.ws27{word-spacing:5.200477px;}
.ws26{word-spacing:5.260253px;}
.ws92{word-spacing:5.320028px;}
.wsc1{word-spacing:5.439580px;}
.wsd{word-spacing:5.487437px;}
.ws29{word-spacing:5.499355px;}
.wsf0{word-spacing:5.559131px;}
.wsd5{word-spacing:5.618906px;}
.ws100{word-spacing:5.678682px;}
.ws8f{word-spacing:5.738458px;}
.ws105{word-spacing:5.798233px;}
.ws7b{word-spacing:5.858009px;}
.ws140{word-spacing:5.912112px;}
.ws146{word-spacing:5.912400px;}
.ws130{word-spacing:5.913043px;}
.ws22{word-spacing:5.917824px;}
.ws139{word-spacing:6.025421px;}
.ws7c{word-spacing:6.156887px;}
.wsbc{word-spacing:6.240614px;}
.wsf5{word-spacing:6.276438px;}
.wse4{word-spacing:6.336214px;}
.wsa0{word-spacing:6.395989px;}
.ws147{word-spacing:6.402010px;}
.ws6e{word-spacing:6.430309px;}
.ws70{word-spacing:6.455765px;}
.ws12f{word-spacing:6.455808px;}
.wsee{word-spacing:6.778598px;}
.wse5{word-spacing:6.814418px;}
.ws96{word-spacing:6.874194px;}
.wsf8{word-spacing:6.933970px;}
.ws1e{word-spacing:6.993745px;}
.ws14{word-spacing:7.047590px;}
.ws59{word-spacing:7.053521px;}
.wsff{word-spacing:7.173072px;}
.ws148{word-spacing:7.208986px;}
.ws149{word-spacing:7.262784px;}
.wsf9{word-spacing:7.412174px;}
.ws137{word-spacing:7.477978px;}
.wscd{word-spacing:7.531726px;}
.wsce{word-spacing:7.538134px;}
.ws103{word-spacing:7.591501px;}
.ws143{word-spacing:7.746970px;}
.ws2{word-spacing:7.748437px;}
.ws145{word-spacing:7.800768px;}
.ws20{word-spacing:7.908365px;}
.ws42{word-spacing:7.950155px;}
.wsfd{word-spacing:8.189257px;}
.wsd7{word-spacing:8.308808px;}
.ws9d{word-spacing:8.368584px;}
.ws3e{word-spacing:8.428360px;}
.ws72{word-spacing:8.488135px;}
.wsf1{word-spacing:8.547911px;}
.ws10b{word-spacing:8.553946px;}
.ws9e{word-spacing:8.667462px;}
.wsa7{word-spacing:8.727238px;}
.ws44{word-spacing:8.906564px;}
.ws10f{word-spacing:10.102076px;}
.ws64{word-spacing:10.111733px;}
.ws128{word-spacing:10.912560px;}
.ws129{word-spacing:10.921075px;}
.ws142{word-spacing:11.405261px;}
.ws6d{word-spacing:12.014896px;}
.ws62{word-spacing:13.210408px;}
.wsb2{word-spacing:14.130824px;}
.wsc8{word-spacing:14.156624px;}
.wsdb{word-spacing:14.644621px;}
.wsd9{word-spacing:14.882624px;}
.wse0{word-spacing:14.938758px;}
.wsa2{word-spacing:15.728624px;}
.wsb3{word-spacing:16.110824px;}
.wsf2{word-spacing:16.121024px;}
.ws7{word-spacing:16.438954px;}
.ws61{word-spacing:16.530415px;}
.ws73{word-spacing:16.557841px;}
.wscb{word-spacing:17.771024px;}
.wsf3{word-spacing:19.115024px;}
.ws1{word-spacing:19.845499px;}
.ws108{word-spacing:19.871715px;}
.ws11e{word-spacing:20.204704px;}
.wsc3{word-spacing:21.698543px;}
.ws0{word-spacing:22.834279px;}
.ws88{word-spacing:25.464406px;}
.wsfc{word-spacing:26.968758px;}
.ws6b{word-spacing:28.128663px;}
.ws6a{word-spacing:32.343062px;}
.wse8{word-spacing:34.621463px;}
.wsb7{word-spacing:41.856998px;}
.ws109{word-spacing:44.079552px;}
.wsba{word-spacing:44.279834px;}
.wsea{word-spacing:51.903198px;}
.ws16{word-spacing:53.798400px;}
.wse9{word-spacing:61.297967px;}
.wsb0{word-spacing:76.501325px;}
.wse7{word-spacing:83.915003px;}
.ws11c{word-spacing:92.573215px;}
.ws46{word-spacing:95.438362px;}
.wsb1{word-spacing:103.400525px;}
.ws4b{word-spacing:104.799283px;}
.wsda{word-spacing:130.531115px;}
.ws118{word-spacing:133.258637px;}
.wsaf{word-spacing:143.749325px;}
.ws119{word-spacing:169.142170px;}
.ws115{word-spacing:200.506637px;}
.ws48{word-spacing:203.253600px;}
.ws49{word-spacing:203.254800px;}
.ws4e{word-spacing:230.949600px;}
.ws4f{word-spacing:245.977200px;}
.ws11f{word-spacing:250.196677px;}
.ws51{word-spacing:250.686000px;}
.ws117{word-spacing:257.963328px;}
.ws114{word-spacing:271.412928px;}
.ws4a{word-spacing:274.780800px;}
.ws116{word-spacing:298.312128px;}
.wsb6{word-spacing:353.283697px;}
.wsb9{word-spacing:366.130925px;}
._c5{margin-left:-446.027859px;}
._b8{margin-left:-397.192894px;}
._c1{margin-left:-366.483961px;}
._9e{margin-left:-356.852317px;}
._6e{margin-left:-345.995797px;}
._95{margin-left:-326.853951px;}
._5a{margin-left:-315.848301px;}
._a6{margin-left:-300.931868px;}
._82{margin-left:-296.162430px;}
._c3{margin-left:-292.200554px;}
._76{margin-left:-290.009369px;}
._3a{margin-left:-286.258891px;}
._7c{margin-left:-284.967794px;}
._33{margin-left:-275.421873px;}
._9b{margin-left:-272.001979px;}
._8b{margin-left:-266.297132px;}
._6a{margin-left:-262.885744px;}
._a3{margin-left:-260.975447px;}
._8f{margin-left:-259.144787px;}
._4a{margin-left:-257.704148px;}
._65{margin-left:-252.960444px;}
._4e{margin-left:-250.515381px;}
._99{margin-left:-248.863291px;}
._53{margin-left:-245.846648px;}
._68{margin-left:-240.590082px;}
._d1{margin-left:-237.412207px;}
._85{margin-left:-235.878379px;}
._ba{margin-left:-233.781457px;}
._47{margin-left:-232.612545px;}
._3f{margin-left:-228.033232px;}
._6d{margin-left:-225.753935px;}
._5d{margin-left:-218.398025px;}
._cf{margin-left:-214.297359px;}
._87{margin-left:-212.399104px;}
._c8{margin-left:-208.574186px;}
._cd{margin-left:-207.313017px;}
._43{margin-left:-205.343873px;}
._7f{margin-left:-199.158751px;}
._36{margin-left:-192.579814px;}
._62{margin-left:-186.052738px;}
._d5{margin-left:-178.571894px;}
._8d{margin-left:-177.266150px;}
._aa{margin-left:-175.317601px;}
._a0{margin-left:-173.612281px;}
._4c{margin-left:-171.278754px;}
._70{margin-left:-168.533526px;}
._61{margin-left:-165.932769px;}
._91{margin-left:-150.901708px;}
._50{margin-left:-145.937124px;}
._94{margin-left:-141.876130px;}
._7a{margin-left:-138.363818px;}
._55{margin-left:-137.234356px;}
._30{margin-left:-133.815412px;}
._38{margin-left:-131.743325px;}
._b5{margin-left:-128.517441px;}
._c2{margin-left:-126.391627px;}
._92{margin-left:-121.483432px;}
._51{margin-left:-117.508083px;}
._c9{margin-left:-114.665028px;}
._7b{margin-left:-110.989069px;}
._ca{margin-left:-108.997533px;}
._31{margin-left:-107.334134px;}
._44{margin-left:-103.086354px;}
._d6{margin-left:-100.774082px;}
._84{margin-left:-96.790812px;}
._9c{margin-left:-95.534895px;}
._3e{margin-left:-93.637635px;}
._6b{margin-left:-92.456545px;}
._52{margin-left:-90.715992px;}
._79{margin-left:-87.857010px;}
._86{margin-left:-86.397889px;}
._a4{margin-left:-84.444502px;}
._42{margin-left:-82.655571px;}
._73{margin-left:-81.039343px;}
._90{margin-left:-79.653722px;}
._4f{margin-left:-76.107775px;}
._89{margin-left:-74.124705px;}
._49{margin-left:-70.544609px;}
._a8{margin-left:-68.458160px;}
._78{margin-left:-66.265359px;}
._d7{margin-left:-61.916749px;}
._d4{margin-left:-59.394625px;}
._98{margin-left:-51.308661px;}
._67{margin-left:-49.191358px;}
._57{margin-left:-47.616571px;}
._a7{margin-left:-45.596200px;}
._77{margin-left:-44.218348px;}
._28{margin-left:-41.965202px;}
._4{margin-left:-40.312934px;}
._5e{margin-left:-39.307500px;}
._bc{margin-left:-35.587571px;}
._59{margin-left:-32.303844px;}
._af{margin-left:-30.168372px;}
._75{margin-left:-28.884900px;}
._b1{margin-left:-25.366966px;}
._bb{margin-left:-22.212687px;}
._5c{margin-left:-21.135293px;}
._34{margin-left:-19.788436px;}
._be{margin-left:-18.351336px;}
._b0{margin-left:-15.014801px;}
._bf{margin-left:-11.474277px;}
._4b{margin-left:-8.354234px;}
._3{margin-left:-6.742733px;}
._6{margin-left:-5.542445px;}
._2{margin-left:-3.843225px;}
._0{margin-left:-1.912819px;}
._1{width:1.673717px;}
._5f{width:3.294619px;}
._ac{width:4.611929px;}
._7e{width:7.429073px;}
._b{width:9.582067px;}
._1b{width:12.261099px;}
._5{width:14.011123px;}
._2c{width:15.422105px;}
._c{width:16.856719px;}
._ab{width:17.992456px;}
._ad{width:19.546621px;}
._ae{width:20.742133px;}
._45{width:22.523591px;}
._2a{width:23.751906px;}
._2b{width:26.513189px;}
._da{width:28.578730px;}
._d{width:29.879209px;}
._88{width:31.598062px;}
._e{width:33.136400px;}
._8c{width:34.399374px;}
._29{width:35.491982px;}
._60{width:39.866964px;}
._97{width:41.539255px;}
._db{width:44.923799px;}
._d9{width:53.439939px;}
._c6{width:56.617422px;}
._9{width:59.775600px;}
._b4{width:61.836963px;}
._cb{width:63.773697px;}
._c7{width:66.295820px;}
._1e{width:67.516992px;}
._8{width:71.731200px;}
._27{width:73.212932px;}
._d2{width:79.848770px;}
._21{width:82.419149px;}
._56{width:84.023149px;}
._69{width:86.187468px;}
._ce{width:88.412904px;}
._9a{width:90.028702px;}
._b9{width:102.171870px;}
._b7{width:104.903713px;}
._26{width:110.464908px;}
._46{width:111.623355px;}
._35{width:115.891855px;}
._16{width:118.322400px;}
._7d{width:120.863675px;}
._bd{width:125.146345px;}
._3c{width:130.686560px;}
._41{width:134.934339px;}
._58{width:137.835262px;}
._37{width:140.280325px;}
._24{width:142.757030px;}
._80{width:145.303295px;}
._20{width:149.657597px;}
._71{width:151.283110px;}
._48{width:153.044677px;}
._66{width:155.033588px;}
._a1{width:156.691702px;}
._72{width:158.431812px;}
._15{width:160.369354px;}
._13{width:162.094579px;}
._a2{width:164.078201px;}
._63{width:165.663397px;}
._7{width:171.401702px;}
._25{width:175.544179px;}
._8a{width:177.212120px;}
._c0{width:178.825861px;}
._a9{width:182.317951px;}
._cc{width:183.853376px;}
._d0{width:189.823406px;}
._6f{width:192.849185px;}
._3b{width:194.009554px;}
._2e{width:198.408499px;}
._9f{width:199.690919px;}
._39{width:201.614116px;}
._81{width:209.779570px;}
._2f{width:211.642906px;}
._11{width:214.427210px;}
._14{width:216.713098px;}
._10{width:217.937318px;}
._17{width:221.628019px;}
._54{width:224.780054px;}
._32{width:228.696300px;}
._93{width:231.804398px;}
._b6{width:233.836888px;}
._3d{width:236.881045px;}
._2d{width:238.542106px;}
._23{width:241.869994px;}
._83{width:246.362461px;}
._5b{width:258.223547px;}
._d8{width:259.806887px;}
._6c{width:264.895669px;}
._b3{width:265.953635px;}
._96{width:267.361469px;}
._9d{width:274.258374px;}
._1f{width:280.595606px;}
._f{width:282.818189px;}
._b2{width:284.862528px;}
._d3{width:291.936201px;}
._12{width:302.239411px;}
._22{width:308.211034px;}
._4d{width:311.041058px;}
._40{width:315.185233px;}
._8e{width:322.047108px;}
._74{width:326.809644px;}
._a5{width:338.374038px;}
._18{width:351.923933px;}
._64{width:353.726061px;}
._1d{width:358.678310px;}
._19{width:367.767178px;}
._1c{width:389.297242px;}
._c4{width:416.649276px;}
._1a{width:435.619766px;}
._a{width:687.890731px;}
.fc7{color:rgb(236,0,140);}
.fc1{color:transparent;}
.fc6{color:rgb(168,168,168);}
.fc5{color:rgb(204,204,204);}
.fc4{color:rgb(33,33,33);}
.fc3{color:rgb(123,123,123);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1b{font-size:20.492640px;}
.fs1e{font-size:20.534400px;}
.fse{font-size:20.720875px;}
.fs13{font-size:21.286741px;}
.fs1c{font-size:23.908080px;}
.fs1f{font-size:23.956800px;}
.fs25{font-size:24.115173px;}
.fs2d{font-size:27.715644px;}
.fs2a{font-size:27.753792px;}
.fs17{font-size:29.343600px;}
.fs19{font-size:29.615040px;}
.fs9{font-size:29.887800px;}
.fs1d{font-size:34.154400px;}
.fs20{font-size:34.224000px;}
.fs18{font-size:34.234200px;}
.fs23{font-size:34.875360px;}
.fs7{font-size:35.358883px;}
.fs5{font-size:35.865600px;}
.fs24{font-size:40.687920px;}
.fsa{font-size:41.842800px;}
.fs21{font-size:42.192360px;}
.fsc{font-size:42.390647px;}
.fs8{font-size:42.431169px;}
.fs2c{font-size:44.463600px;}
.fs2b{font-size:44.524800px;}
.fs11{font-size:46.658510px;}
.fs16{font-size:47.376437px;}
.fs29{font-size:48.799157px;}
.fs27{font-size:48.985699px;}
.fsb{font-size:49.004640px;}
.fs1a{font-size:49.358400px;}
.fs6{font-size:49.500909px;}
.fsd{font-size:49.829760px;}
.fs12{font-size:51.190560px;}
.fs4{font-size:53.798400px;}
.fs10{font-size:54.434859px;}
.fs15{font-size:55.272581px;}
.fs26{font-size:57.992400px;}
.fs0{font-size:59.775600px;}
.fs22{font-size:60.274800px;}
.fsf{font-size:62.121101px;}
.fs14{font-size:63.817565px;}
.fs2{font-size:71.731200px;}
.fs28{font-size:72.297192px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:123.975000px;}
.y2c5{bottom:-1.981407px;}
.y0{bottom:0.000000px;}
.y404{bottom:1.159848px;}
.y2c3{bottom:2.179186px;}
.y275{bottom:2.206224px;}
.y125{bottom:2.296528px;}
.y402{bottom:2.927972px;}
.y2b8{bottom:3.333609px;}
.y47e{bottom:3.542718px;}
.y4a0{bottom:3.992461px;}
.y9b{bottom:3.995614px;}
.y4a7{bottom:4.001724px;}
.y15e{bottom:4.016100px;}
.y2aa{bottom:4.503194px;}
.y234{bottom:4.594447px;}
.y22d{bottom:4.595954px;}
.y137{bottom:4.725529px;}
.y474{bottom:5.296596px;}
.y3f0{bottom:5.313457px;}
.y343{bottom:5.397860px;}
.y18d{bottom:5.400303px;}
.y4a2{bottom:5.465317px;}
.y3e9{bottom:5.470206px;}
.y3c6{bottom:5.560638px;}
.y38d{bottom:5.632983px;}
.y2b9{bottom:5.642636px;}
.y3b8{bottom:5.783703px;}
.y38f{bottom:5.862077px;}
.y390{bottom:5.982653px;}
.y180{bottom:6.017283px;}
.y385{bottom:6.054999px;}
.y36a{bottom:6.139402px;}
.y339{bottom:6.205718px;}
.y3df{bottom:6.247920px;}
.y2de{bottom:6.368496px;}
.y3f1{bottom:6.458928px;}
.y247{bottom:6.537677px;}
.y344{bottom:6.615676px;}
.y336{bottom:6.748310px;}
.y277{bottom:6.794136px;}
.y328{bottom:6.820655px;}
.y362{bottom:6.947260px;}
.y37f{bottom:7.061807px;}
.y312{bottom:7.315016px;}
.y2d4{bottom:7.477794px;}
.y35d{bottom:7.562197px;}
.y32c{bottom:7.652629px;}
.y394{bottom:7.869665px;}
.y3ac{bottom:7.923924px;}
.y2a4{bottom:7.933578px;}
.y3b6{bottom:8.092731px;}
.y382{bottom:8.267566px;}
.y3e1{bottom:8.339911px;}
.y3a4{bottom:8.430343px;}
.y3d2{bottom:8.502689px;}
.y3ea{bottom:8.599149px;}
.y3f4{bottom:8.683552px;}
.y3be{bottom:8.834272px;}
.y310{bottom:8.954848px;}
.y366{bottom:9.033222px;}
.y270{bottom:9.097135px;}
.y38b{bottom:9.099539px;}
.y33a{bottom:9.274374px;}
.y3d0{bottom:9.322605px;}
.y3f9{bottom:9.581843px;}
.y3b3{bottom:9.642131px;}
.y2db{bottom:9.847110px;}
.y38e{bottom:9.907397px;}
.y3eb{bottom:9.997829px;}
.y2e9{bottom:10.118405px;}
.y3c4{bottom:10.166636px;}
.y272{bottom:10.206433px;}
.y361{bottom:10.293240px;}
.y345{bottom:10.474104px;}
.y3c7{bottom:10.540421px;}
.y325{bottom:10.679083px;}
.y34d{bottom:10.751429px;}
.y380{bottom:10.817745px;}
.y379{bottom:10.908177px;}
.y31e{bottom:11.034782px;}
.y3ab{bottom:11.058897px;}
.y3a8{bottom:11.155358px;}
.y368{bottom:11.269905px;}
.y2b5{bottom:11.279558px;}
.y3a0{bottom:11.414596px;}
.y2f9{bottom:11.535172px;}
.y174{bottom:11.570103px;}
.y300{bottom:11.625604px;}
.y33f{bottom:11.691920px;}
.y34b{bottom:11.782352px;}
.y2fc{bottom:11.890870px;}
.y3ca{bottom:11.927043px;}
.y15d{bottom:11.963325px;}
.y347{bottom:12.053648px;}
.y39e{bottom:12.125993px;}
.y2e4{bottom:12.252598px;}
.y3e7{bottom:12.324944px;}
.y2ad{bottom:12.388856px;}
.y354{bottom:12.445519px;}
.y3f2{bottom:12.523894px;}
.y370{bottom:12.644470px;}
.y2f2{bottom:12.752988px;}
.y324{bottom:12.855477px;}
.y322{bottom:13.060456px;}
.y398{bottom:13.132802px;}
.y35b{bottom:13.373954px;}
.y2ee{bottom:13.488501px;}
.y283{bottom:13.510212px;}
.y32d{bottom:13.597019px;}
.y2fd{bottom:13.826113px;}
.y3a2{bottom:13.892430px;}
.y348{bottom:14.025063px;}
.y399{bottom:14.217985px;}
.y3bf{bottom:14.308417px;}
.y3c2{bottom:14.404877px;}
.y3b0{bottom:14.513395px;}
.y296{bottom:14.583337px;}
.y395{bottom:14.718374px;}
.y3e4{bottom:14.808806px;}
.y3b4{bottom:15.007757px;}
.y33d{bottom:15.146419px;}
.y359{bottom:15.260966px;}
.y3a9{bottom:15.333311px;}
.y2d9{bottom:15.478002px;}
.y3f5{bottom:15.664895px;}
.y288{bottom:15.686606px;}
.y11e{bottom:15.762814px;}
.y38c{bottom:15.779442px;}
.y181{bottom:15.888963px;}
.y381{bottom:15.893989px;}
.y246{bottom:15.983087px;}
.y3fc{bottom:15.990450px;}
.y3cc{bottom:16.080882px;}
.y355{bottom:16.213515px;}
.y3e2{bottom:16.291890px;}
.y2fe{bottom:16.448638px;}
.y3fe{bottom:16.508926px;}
.y39a{bottom:16.623473px;}
.y233{bottom:16.650914px;}
.y22c{bottom:16.652420px;}
.y2af{bottom:16.735616px;}
.y99{bottom:16.853717px;}
.y372{bottom:16.870654px;}
.y2f5{bottom:17.003287px;}
.y340{bottom:17.117834px;}
.y18e{bottom:17.122923px;}
.y342{bottom:17.238410px;}
.y37c{bottom:17.358986px;}
.y2c1{bottom:17.374644px;}
.y3ec{bottom:17.461475px;}
.y1b8{bottom:17.504130px;}
.y376{bottom:17.600138px;}
.y3d8{bottom:17.714685px;}
.y297{bottom:17.808741px;}
.y2dc{bottom:17.871433px;}
.y341{bottom:17.985980px;}
.y3f6{bottom:18.082441px;}
.y335{bottom:18.227132px;}
.y39c{bottom:18.323593px;}
.y1ef{bottom:18.395400px;}
.y319{bottom:18.480341px;}
.y130{bottom:18.590918px;}
.y3d3{bottom:18.727522px;}
.y28a{bottom:18.875838px;}
.y3e5{bottom:19.010875px;}
.y4a3{bottom:19.035979px;}
.y3e3{bottom:19.288200px;}
.y351{bottom:19.854906px;}
.y278{bottom:19.924848px;}
.y337{bottom:20.108116px;}
.y35c{bottom:20.620563px;}
.y30e{bottom:20.891859px;}
.y2a6{bottom:20.955771px;}
.y37d{bottom:21.114924px;}
.y2d3{bottom:21.386220px;}
.y3f3{bottom:21.609285px;}
.y2cd{bottom:21.892638px;}
.y15c{bottom:21.930795px;}
.y266{bottom:22.004781px;}
.y2c7{bottom:22.145848px;}
.y3b2{bottom:22.350827px;}
.y38a{bottom:22.616094px;}
.y31f{bottom:22.899447px;}
.y299{bottom:23.005561px;}
.y3c5{bottom:23.104426px;}
.y175{bottom:23.292723px;}
.y2c8{bottom:23.375722px;}
.y3bb{bottom:23.592758px;}
.y3ee{bottom:23.858025px;}
.y161{bottom:23.972499px;}
.y29a{bottom:24.018398px;}
.y396{bottom:24.117263px;}
.y3d5{bottom:24.370472px;}
.y33c{bottom:24.665883px;}
.y3ff{bottom:24.919093px;}
.y30f{bottom:25.202446px;}
.y329{bottom:25.473742px;}
.y2e5{bottom:25.745037px;}
.y15f{bottom:26.010656px;}
.y32b{bottom:26.016333px;}
.y273{bottom:26.068188px;}
.y3da{bottom:26.257485px;}
.y182{bottom:26.377623px;}
.y3d9{bottom:26.788019px;}
.y26d{bottom:27.074996px;}
.y2ce{bottom:27.366783px;}
.y3d4{bottom:27.595877px;}
.y245{bottom:27.829593px;}
.y2d6{bottom:27.897317px;}
.y2a7{bottom:28.009459px;}
.y162{bottom:28.052420px;}
.y327{bottom:28.168612px;}
.y2ca{bottom:28.427850px;}
.y3ce{bottom:28.656944px;}
.y1ec{bottom:28.662600px;}
.y232{bottom:28.707380px;}
.y22b{bottom:28.708887px;}
.y18f{bottom:28.845543px;}
.y304{bottom:28.976471px;}
.y333{bottom:29.223651px;}
.y1d6{bottom:29.456548px;}
.y1dd{bottom:29.456804px;}
.y1d3{bottom:29.457145px;}
.y1da{bottom:29.457402px;}
.y356{bottom:29.482889px;}
.y215{bottom:29.516574px;}
.y21c{bottom:29.516831px;}
.y212{bottom:29.517173px;}
.y219{bottom:29.517430px;}
.y331{bottom:29.748156px;}
.y263{bottom:29.986903px;}
.y2eb{bottom:30.019452px;}
.y39d{bottom:30.236488px;}
.y24a{bottom:30.256191px;}
.y47d{bottom:30.257598px;}
.y2f3{bottom:30.525870px;}
.y4a6{bottom:30.679884px;}
.y306{bottom:30.797166px;}
.y2a2{bottom:30.939453px;}
.y3a1{bottom:31.014203px;}
.y3e6{bottom:31.279470px;}
.y3fb{bottom:31.828090px;}
.y28b{bottom:31.910089px;}
.y3aa{bottom:32.117472px;}
.y35f{bottom:32.443027px;}
.y248{bottom:32.678576px;}
.y367{bottom:32.738437px;}
.y397{bottom:33.009733px;}
.y360{bottom:33.335288px;}
.y37b{bottom:33.606584px;}
.y2a0{bottom:33.863418px;}
.y374{bottom:33.889937px;}
.y160{bottom:34.170439px;}
.y3fd{bottom:34.173290px;}
.y2e8{bottom:34.474730px;}
.y400{bottom:34.651546px;}
.y2cf{bottom:34.733968px;}
.y29e{bottom:34.828024px;}
.y3cf{bottom:34.963062px;}
.y176{bottom:35.015343px;}
.y24b{bottom:35.105174px;}
.y3b7{bottom:35.240387px;}
.y1bb{bottom:35.435190px;}
.y302{bottom:35.559913px;}
.y346{bottom:35.807093px;}
.y2bd{bottom:35.816747px;}
.y318{bottom:36.096475px;}
.y183{bottom:36.249303px;}
.y1d5{bottom:36.287684px;}
.y1dc{bottom:36.287940px;}
.y1d2{bottom:36.288282px;}
.y1d9{bottom:36.288538px;}
.y2c2{bottom:36.330910px;}
.y214{bottom:36.361631px;}
.y21b{bottom:36.361888px;}
.y211{bottom:36.362230px;}
.y218{bottom:36.362487px;}
.y309{bottom:36.373800px;}
.y3d7{bottom:36.608923px;}
.y292{bottom:36.817526px;}
.y316{bottom:36.934478px;}
.y338{bottom:37.181658px;}
.y3a7{bottom:37.458983px;}
.y384{bottom:37.760422px;}
.y2a9{bottom:37.788162px;}
.y353{bottom:38.098035px;}
.y475{bottom:38.300604px;}
.y32a{bottom:38.411532px;}
.y365{bottom:38.719000px;}
.y276{bottom:38.788942px;}
.y3e0{bottom:38.990296px;}
.y2fb{bottom:39.352024px;}
.y2ea{bottom:39.635377px;}
.y290{bottom:39.741491px;}
.y3c9{bottom:39.888586px;}
.y190{bottom:39.951183px;}
.y307{bottom:40.232228px;}
.y9a{bottom:40.284060px;}
.y2d2{bottom:40.533667px;}
.y26f{bottom:40.736242px;}
.y231{bottom:40.763847px;}
.y22a{bottom:40.765354px;}
.y375{bottom:40.823049px;}
.y3db{bottom:41.106403px;}
.y2ff{bottom:41.444015px;}
.y294{bottom:41.682762px;}
.y364{bottom:41.727368px;}
.y330{bottom:42.022779px;}
.y2e1{bottom:42.312161px;}
.y249{bottom:42.376614px;}
.y37e{bottom:42.595514px;}
.y281{bottom:42.647369px;}
.y2d7{bottom:42.902983px;}
.y1d4{bottom:43.118820px;}
.y1db{bottom:43.119076px;}
.y1d1{bottom:43.119418px;}
.y1d8{bottom:43.119674px;}
.y3b9{bottom:43.162221px;}
.y213{bottom:43.206688px;}
.y21a{bottom:43.206944px;}
.y210{bottom:43.207287px;}
.y217{bottom:43.207543px;}
.y2fa{bottom:43.517920px;}
.y2b1{bottom:43.593890px;}
.y449{bottom:43.651363px;}
.y3c1{bottom:43.777158px;}
.y303{bottom:44.126828px;}
.y14b{bottom:44.232726px;}
.y3c3{bottom:44.367980px;}
.y1bf{bottom:44.400720px;}
.y27c{bottom:44.582612px;}
.y2d0{bottom:44.699563px;}
.y157{bottom:44.839283px;}
.y442{bottom:44.993766px;}
.y2e0{bottom:45.007032px;}
.y31a{bottom:45.314500px;}
.y429{bottom:45.319321px;}
.y413{bottom:45.373580px;}
.y42b{bottom:45.488127px;}
.y438{bottom:45.530329px;}
.y410{bottom:45.542386px;}
.y280{bottom:45.547219px;}
.y3b1{bottom:45.573738px;}
.y434{bottom:45.596645px;}
.y437{bottom:45.638847px;}
.y406{bottom:45.656933px;}
.y421{bottom:45.711192px;}
.y436{bottom:45.747365px;}
.y42f{bottom:45.789567px;}
.y412{bottom:45.892056px;}
.y2e3{bottom:45.911351px;}
.y41a{bottom:46.006603px;}
.y40b{bottom:46.103064px;}
.y184{bottom:46.120983px;}
.y42e{bottom:46.163352px;}
.y428{bottom:46.187467px;}
.y34a{bottom:46.236906px;}
.y42d{bottom:46.295985px;}
.y43e{bottom:46.326129px;}
.y41e{bottom:46.362302px;}
.y41b{bottom:46.380388px;}
.y41d{bottom:46.422590px;}
.y407{bottom:46.440676px;}
.y114{bottom:46.460022px;}
.y439{bottom:46.488907px;}
.y43b{bottom:46.506993px;}
.y3c8{bottom:46.520259px;}
.y433{bottom:46.537137px;}
.y43d{bottom:46.567281px;}
.y422{bottom:46.603454px;}
.y414{bottom:46.627569px;}
.y440{bottom:46.663742px;}
.y427{bottom:46.693886px;}
.y443{bottom:46.736087px;}
.y177{bottom:46.737963px;}
.y40f{bottom:46.754174px;}
.y41c{bottom:46.796375px;}
.y420{bottom:46.820490px;}
.y430{bottom:46.850634px;}
.y31b{bottom:46.875958px;}
.y42c{bottom:46.886807px;}
.y447{bottom:46.916951px;}
.y444{bottom:46.953124px;}
.y431{bottom:46.983268px;}
.y416{bottom:47.001354px;}
.y411{bottom:47.043556px;}
.y43a{bottom:47.079728px;}
.y424{bottom:47.109872px;}
.y40d{bottom:47.127959px;}
.y408{bottom:47.164132px;}
.y441{bottom:47.194276px;}
.y314{bottom:47.201512px;}
.y159{bottom:47.214219px;}
.y435{bottom:47.230448px;}
.y446{bottom:47.254563px;}
.y409{bottom:47.284707px;}
.y40a{bottom:47.308823px;}
.y415{bottom:47.338967px;}
.y445{bottom:47.375139px;}
.y419{bottom:47.405283px;}
.y423{bottom:47.435427px;}
.y29c{bottom:47.470404px;}
.y42a{bottom:47.471600px;}
.y40c{bottom:47.489686px;}
.y373{bottom:47.508981px;}
.y448{bottom:47.531888px;}
.y128{bottom:47.534914px;}
.y43f{bottom:47.568061px;}
.y40e{bottom:47.586147px;}
.y41f{bottom:47.628349px;}
.y432{bottom:47.664521px;}
.y43c{bottom:47.706723px;}
.y426{bottom:47.724809px;}
.y425{bottom:47.760982px;}
.y417{bottom:47.791126px;}
.y386{bottom:47.810421px;}
.y418{bottom:47.827299px;}
.y11f{bottom:48.110633px;}
.y2df{bottom:48.160091px;}
.y301{bottom:48.497703px;}
.y3ae{bottom:48.799143px;}
.y3dc{bottom:49.142784px;}
.y476{bottom:49.301940px;}
.y295{bottom:49.429762px;}
.y377{bottom:49.510540px;}
.y3dd{bottom:49.854182px;}
.y1d0{bottom:49.950554px;}
.y1d7{bottom:49.950810px;}
.y20f{bottom:50.052343px;}
.y216{bottom:50.052600px;}
.y358{bottom:50.240024px;}
.y2b4{bottom:50.424513px;}
.y308{bottom:50.595723px;}
.y39b{bottom:50.909220px;}
.y321{bottom:51.301092px;}
.y26b{bottom:51.467494px;}
.y31c{bottom:51.650762px;}
.y131{bottom:51.662153px;}
.y191{bottom:51.673803px;}
.y332{bottom:51.964259px;}
.y2c4{bottom:52.226146px;}
.y2f4{bottom:52.295843px;}
.y269{bottom:52.480331px;}
.y3f8{bottom:52.591254px;}
.y403{bottom:52.784644px;}
.y230{bottom:52.820314px;}
.y229{bottom:52.821821px;}
.y3cd{bottom:52.904751px;}
.y2c9{bottom:53.278536px;}
.y29d{bottom:53.487140px;}
.y34f{bottom:53.622177px;}
.y36f{bottom:53.953761px;}
.y15a{bottom:54.144199px;}
.y2ed{bottom:54.303431px;}
.y35e{bottom:54.622957px;}
.y315{bottom:54.948512px;}
.y3a6{bottom:55.243923px;}
.y286{bottom:55.585160px;}
.y2f7{bottom:55.593593px;}
.y36d{bottom:55.925176px;}
.y3ef{bottom:56.250731px;}
.y185{bottom:56.609643px;}
.y334{bottom:56.612459px;}
.y282{bottom:56.652256px;}
.y2da{bottom:56.980215px;}
.y2d5{bottom:57.354000px;}
.y3d{bottom:57.481300px;}
.y2f8{bottom:57.709699px;}
.y285{bottom:57.725381px;}
.y242{bottom:57.879365px;}
.y478{bottom:58.002114px;}
.y388{bottom:58.041283px;}
.y30a{bottom:58.421097px;}
.y4a4{bottom:58.571530px;}
.y2e2{bottom:58.752680px;}
.y264{bottom:58.828650px;}
.y391{bottom:59.072206px;}
.y178{bottom:59.077563px;}
.y363{bottom:59.415848px;}
.y32e{bottom:59.759489px;}
.y2ab{bottom:59.895747px;}
.y3de{bottom:60.048871px;}
.y115{bottom:60.237951px;}
.y320{bottom:60.422656px;}
.y34c{bottom:60.724096px;}
.y2ae{bottom:61.017102px;}
.y387{bottom:61.025535px;}
.y357{bottom:61.369177px;}
.y389{bottom:61.652530px;}
.y39f{bottom:61.966027px;}
.y2a5{bottom:62.168602px;}
.y2dd{bottom:62.321726px;}
.y378{bottom:62.629194px;}
.y326{bottom:62.990922px;}
.y3fa{bottom:63.298390px;}
.y2b2{bottom:63.314073px;}
.y192{bottom:63.396423px;}
.y393{bottom:63.636003px;}
.y34e{bottom:63.985673px;}
.y2f1{bottom:64.317257px;}
.y28c{bottom:64.483658px;}
.y2d8{bottom:64.636783px;}
.y22f{bottom:64.876781px;}
.y228{bottom:64.878288px;}
.y3ad{bottom:64.926165px;}
.y37a{bottom:65.275835px;}
.y31d{bottom:65.631533px;}
.y279{bottom:65.665302px;}
.y2ec{bottom:65.963117px;}
.y243{bottom:66.115763px;}
.y3af{bottom:66.258528px;}
.y186{bottom:66.481323px;}
.y3ba{bottom:66.602169px;}
.y9c{bottom:66.636918px;}
.y2b6{bottom:66.816801px;}
.y36c{bottom:66.981983px;}
.y15b{bottom:66.982575px;}
.y35a{bottom:67.343711px;}
.y32f{bottom:67.723525px;}
.y120{bottom:67.942878px;}
.y293{bottom:67.998445px;}
.y3e8{bottom:68.067166px;}
.y311{bottom:68.471095px;}
.y3f7{bottom:68.814736px;}
.y479{bottom:69.010871px;}
.y2ba{bottom:69.155973px;}
.y30c{bottom:69.218665px;}
.y2e6{bottom:69.580393px;}
.y3cb{bottom:69.905948px;}
.y369{bottom:70.291791px;}
.y271{bottom:70.361732px;}
.y3bd{bottom:70.617345px;}
.y179{bottom:70.800183px;}
.y317{bottom:71.015246px;}
.y129{bottom:71.120965px;}
.y350{bottom:71.358887px;}
.y284{bottom:71.501174px;}
.y132{bottom:71.716055px;}
.y2f0{bottom:71.732672px;}
.y30d{bottom:72.106457px;}
.y4a5{bottom:72.132928px;}
.y36e{bottom:72.486271px;}
.y289{bottom:72.664731px;}
.y33b{bottom:72.896229px;}
.y3ed{bottom:73.282072px;}
.y1cc{bottom:73.430594px;}
.y1c9{bottom:73.431192px;}
.y20b{bottom:73.579974px;}
.y223{bottom:73.580231px;}
.y208{bottom:73.580573px;}
.y220{bottom:73.580830px;}
.y3b5{bottom:73.686001px;}
.y29f{bottom:73.840346px;}
.y116{bottom:74.015880px;}
.y349{bottom:74.144190px;}
.y352{bottom:74.560176px;}
.y392{bottom:74.909846px;}
.y29b{bottom:74.991845px;}
.y193{bottom:75.119043px;}
.y313{bottom:75.325833px;}
.y305{bottom:75.705647px;}
.y36b{bottom:76.043259px;}
.y2be{bottom:76.143345px;}
.y2cb{bottom:76.392929px;}
.y2ef{bottom:76.760686px;}
.y22e{bottom:76.933248px;}
.y187{bottom:76.969983px;}
.y3c0{bottom:77.086241px;}
.y2bb{bottom:77.276758px;}
.y30b{bottom:77.472083px;}
.y2e7{bottom:77.833811px;}
.y33e{bottom:78.189510px;}
.y2a1{bottom:78.422228px;}
.y3a3{bottom:78.515065px;}
.y3d6{bottom:78.846648px;}
.y371{bottom:79.238520px;}
.y2d1{bottom:79.582161px;}
.y27b{bottom:79.585786px;}
.y1cd{bottom:79.834373px;}
.y1cf{bottom:79.835654px;}
.y2cc{bottom:79.931831px;}
.y20c{bottom:79.996803px;}
.y20e{bottom:79.998343px;}
.y47a{bottom:80.008496px;}
.y1cb{bottom:80.261730px;}
.y1c8{bottom:80.262328px;}
.y2f6{bottom:80.275472px;}
.y20a{bottom:80.425031px;}
.y222{bottom:80.425288px;}
.y207{bottom:80.425630px;}
.y21f{bottom:80.425887px;}
.y3bc{bottom:80.582941px;}
.y274{bottom:80.713170px;}
.y3a5{bottom:80.944668px;}
.y383{bottom:81.312425px;}
.y244{bottom:81.374387px;}
.y323{bottom:81.698267px;}
.y2ac{bottom:81.810410px;}
.y3d1{bottom:82.017794px;}
.y17a{bottom:82.522803px;}
.y28e{bottom:82.931766px;}
.y26c{bottom:84.077237px;}
.y126{bottom:85.056802px;}
.y265{bottom:85.180506px;}
.y2b7{bottom:86.253631px;}
.y1ce{bottom:86.666790px;}
.y188{bottom:86.841663px;}
.y20d{bottom:86.843400px;}
.y1ca{bottom:87.092866px;}
.y1c7{bottom:87.093464px;}
.y209{bottom:87.270088px;}
.y221{bottom:87.270344px;}
.y206{bottom:87.270687px;}
.y21e{bottom:87.270943px;}
.y2a8{bottom:87.356900px;}
.y121{bottom:87.775122px;}
.y117{bottom:87.781351px;}
.y138{bottom:88.019183px;}
.y267{bottom:89.575496px;}
.y268{bottom:90.660679px;}
.y47b{bottom:91.006122px;}
.y405{bottom:91.265539px;}
.y27a{bottom:91.739833px;}
.y133{bottom:91.769957px;}
.y2bc{bottom:92.812958px;}
.y235{bottom:93.508818px;}
.y11d{bottom:93.773380px;}
.y1c6{bottom:93.924600px;}
.y27f{bottom:93.946371px;}
.y205{bottom:94.115743px;}
.y21d{bottom:94.116000px;}
.y17b{bottom:94.245423px;}
.y12a{bottom:94.719813px;}
.y12f{bottom:94.734530px;}
.y28d{bottom:95.049640px;}
.y298{bottom:96.158938px;}
.y26a{bottom:97.328524px;}
.y189{bottom:97.330323px;}
.y11c{bottom:97.365275px;}
.y12e{bottom:98.424516px;}
.y2bf{bottom:98.467966px;}
.y194{bottom:98.564283px;}
.y14d{bottom:99.382800px;}
.y2b3{bottom:99.643581px;}
.y26e{bottom:100.867426px;}
.y118{bottom:101.559280px;}
.y47c{bottom:102.003747px;}
.y287{bottom:102.049069px;}
.y2a3{bottom:103.260857px;}
.y155{bottom:103.664520px;}
.y2b0{bottom:104.496759px;}
.y2c6{bottom:105.413269px;}
.y291{bottom:105.756777px;}
.y17c{bottom:106.585023px;}
.y14e{bottom:106.718700px;}
.y28f{bottom:107.022824px;}
.y18a{bottom:107.202003px;}
.y122{bottom:107.607367px;}
.y27d{bottom:108.300928px;}
.y27e{bottom:109.579032px;}
.y195{bottom:109.669923px;}
.y1c5{bottom:111.001288px;}
.y1c2{bottom:111.001544px;}
.y1c0{bottom:111.001800px;}
.y134{bottom:111.823859px;}
.y14f{bottom:114.665925px;}
.y3e{bottom:114.992947px;}
.y119{bottom:115.337208px;}
.y154{bottom:117.111225px;}
.y201{bottom:117.643631px;}
.y1fe{bottom:117.644230px;}
.y18b{bottom:117.690663px;}
.y1c4{bottom:117.832424px;}
.y1c1{bottom:117.832680px;}
.y12b{bottom:118.305863px;}
.y17d{bottom:118.307643px;}
.y238{bottom:120.609167px;}
.y158{bottom:120.779175px;}
.y49e{bottom:121.348575px;}
.y196{bottom:121.392543px;}
.y150{bottom:122.001825px;}
.y202{bottom:124.060460px;}
.y204{bottom:124.061743px;}
.y200{bottom:124.488688px;}
.y1fd{bottom:124.489287px;}
.y1c3{bottom:124.663560px;}
.y123{bottom:127.439611px;}
.y18c{bottom:127.562343px;}
.y11a{bottom:129.102679px;}
.y151{bottom:129.337725px;}
.y17e{bottom:130.030263px;}
.y203{bottom:130.906800px;}
.y1ff{bottom:131.333744px;}
.y1fc{bottom:131.334343px;}
.y239{bottom:131.507717px;}
.y135{bottom:131.877761px;}
.y197{bottom:133.115163px;}
.y241{bottom:133.684521px;}
.y152{bottom:137.284950px;}
.y1fb{bottom:138.179400px;}
.y23e{bottom:140.953127px;}
.y12c{bottom:141.891914px;}
.y23a{bottom:142.406267px;}
.y17f{bottom:144.220803px;}
.y153{bottom:144.620850px;}
.y240{bottom:145.311094px;}
.y3c{bottom:146.612375px;}
.y49c{bottom:149.230958px;}
.y23b{bottom:153.304817px;}
.y143{bottom:153.790725px;}
.y1fa{bottom:155.290887px;}
.y1f7{bottom:155.291143px;}
.y1f5{bottom:155.291400px;}
.y1bc{bottom:155.829450px;}
.y23f{bottom:156.937667px;}
.y149{bottom:158.070000px;}
.y198{bottom:161.496243px;}
.y1f9{bottom:162.135943px;}
.y1f6{bottom:162.136200px;}
.y49d{bottom:162.803471px;}
.y144{bottom:162.960600px;}
.y23c{bottom:164.203367px;}
.y1f8{bottom:168.981000px;}
.y148{bottom:170.907825px;}
.y124{bottom:172.142713px;}
.y145{bottom:172.741800px;}
.y14c{bottom:174.575775px;}
.y23d{bottom:175.101917px;}
.y136{bottom:175.705094px;}
.y1bd{bottom:180.591390px;}
.y146{bottom:181.911675px;}
.y1f2{bottom:183.954000px;}
.y1aa{bottom:186.568410px;}
.y147{bottom:191.692875px;}
.y1f3{bottom:192.082200px;}
.y1ab{bottom:192.972360px;}
.y1ba{bottom:197.668590px;}
.y1ac{bottom:199.376310px;}
.y1f4{bottom:200.638200px;}
.y1b9{bottom:203.645610px;}
.y1ad{bottom:205.780260px;}
.y1df{bottom:206.627400px;}
.y1ae{bottom:212.184210px;}
.y1e0{bottom:214.327800px;}
.y1af{bottom:218.588160px;}
.y1b6{bottom:221.576670px;}
.y1e1{bottom:222.028200px;}
.y1f0{bottom:224.595000px;}
.y1b0{bottom:224.992110px;}
.y1ee{bottom:228.873000px;}
.y1e2{bottom:229.300800px;}
.y1b1{bottom:231.396060px;}
.y1f1{bottom:233.151000px;}
.y1ed{bottom:234.862200px;}
.y1e3{bottom:237.001200px;}
.y1b2{bottom:237.800010px;}
.y1ea{bottom:242.134800px;}
.y3b{bottom:244.157913px;}
.y1b3{bottom:244.203960px;}
.y1e4{bottom:244.273800px;}
.y1b4{bottom:250.607910px;}
.y1e5{bottom:251.974200px;}
.y1b5{bottom:257.011860px;}
.y1e6{bottom:259.246800px;}
.yb0{bottom:261.804000px;}
.yb1{bottom:263.067000px;}
.y8f{bottom:264.267000px;}
.y1e7{bottom:266.947200px;}
.y2a{bottom:266.956500px;}
.y8e{bottom:268.774500px;}
.y1de{bottom:269.819760px;}
.y450{bottom:272.670000px;}
.yaf{bottom:273.624000px;}
.y1e8{bottom:274.219800px;}
.y8d{bottom:279.025500px;}
.y24e{bottom:280.461000px;}
.y1e9{bottom:281.920200px;}
.y29{bottom:283.395000px;}
.y43{bottom:284.889000px;}
.y467{bottom:289.108500px;}
.y224{bottom:290.048400px;}
.y44f{bottom:294.109500px;}
.y24d{bottom:296.899500px;}
.y28{bottom:299.833500px;}
.y4ee{bottom:300.492000px;}
.y3a{bottom:301.642157px;}
.y40{bottom:301.818950px;}
.y66{bottom:302.821500px;}
.y141{bottom:302.823000px;}
.y466{bottom:309.817500px;}
.yf9{bottom:311.529000px;}
.y24c{bottom:313.338000px;}
.y4ed{bottom:316.930500px;}
.yd5{bottom:317.851500px;}
.y8c{bottom:320.671500px;}
.yae{bottom:320.755500px;}
.y488{bottom:321.502500px;}
.y27{bottom:321.985500px;}
.y39{bottom:326.702565px;}
.y4c1{bottom:326.733000px;}
.y3f{bottom:326.879358px;}
.y465{bottom:327.750000px;}
.yf8{bottom:329.461500px;}
.y140{bottom:330.567000px;}
.y65{bottom:330.892500px;}
.y4ec{bottom:334.027500px;}
.y42{bottom:337.029000px;}
.y8b{bottom:338.605500px;}
.y171{bottom:338.688000px;}
.yac{bottom:342.733500px;}
.y237{bottom:342.777000px;}
.y26{bottom:345.543000px;}
.y464{bottom:345.684000px;}
.y44e{bottom:346.429500px;}
.yf7{bottom:347.395500px;}
.y13f{bottom:348.499500px;}
.y64{bottom:348.826500px;}
.y38{bottom:349.279031px;}
.yad{bottom:349.290000px;}
.y4eb{bottom:350.466000px;}
.yab{bottom:352.984500px;}
.y8a{bottom:356.538000px;}
.y170{bottom:356.620500px;}
.y44d{bottom:362.868000px;}
.y25{bottom:363.477000px;}
.y463{bottom:363.616500px;}
.yf6{bottom:365.328000px;}
.yd4{bottom:365.758500px;}
.y13e{bottom:366.432000px;}
.y37{bottom:366.468292px;}
.y63{bottom:366.759000px;}
.y4ea{bottom:366.904500px;}
.y487{bottom:370.072500px;}
.y41{bottom:371.254401px;}
.y89{bottom:374.470500px;}
.y16f{bottom:374.553000px;}
.y44c{bottom:379.306500px;}
.y24{bottom:381.409500px;}
.y462{bottom:381.549000px;}
.yf5{bottom:383.260500px;}
.y4c0{bottom:383.520000px;}
.yd3{bottom:383.692500px;}
.y4e9{bottom:384.001500px;}
.yaa{bottom:384.364500px;}
.y62{bottom:384.691500px;}
.y486{bottom:388.005000px;}
.y16e{bottom:392.485500px;}
.y13d{bottom:394.177500px;}
.y44b{bottom:395.745000px;}
.y23{bottom:399.342000px;}
.y461{bottom:399.481500px;}
.y4e8{bottom:400.440000px;}
.yf4{bottom:401.193000px;}
.y4bf{bottom:401.452500px;}
.yd2{bottom:401.625000px;}
.ya9{bottom:402.298500px;}
.y61{bottom:402.624000px;}
.y485{bottom:405.937500px;}
.y4fe{bottom:409.131000px;}
.y1a8{bottom:409.267500px;}
.y16d{bottom:410.418000px;}
.y44a{bottom:412.182000px;}
.y4e7{bottom:416.878500px;}
.y22{bottom:417.274500px;}
.y460{bottom:417.414000px;}
.yf3{bottom:419.125500px;}
.y4be{bottom:419.385000px;}
.yd1{bottom:419.557500px;}
.ya8{bottom:420.231000px;}
.y60{bottom:420.556500px;}
.y484{bottom:423.870000px;}
.y88{bottom:424.132500px;}
.y1a7{bottom:427.200000px;}
.y16c{bottom:428.352000px;}
.y4e6{bottom:433.975500px;}
.y21{bottom:435.207000px;}
.y45f{bottom:435.348000px;}
.yf2{bottom:437.058000px;}
.y4bd{bottom:437.317500px;}
.yd0{bottom:437.490000px;}
.y5f{bottom:438.489000px;}
.y2c0{bottom:441.622621px;}
.y483{bottom:441.802500px;}
.y87{bottom:442.065000px;}
.y401{bottom:442.503905px;}
.y49a{bottom:443.976000px;}
.y4fd{bottom:444.996000px;}
.y1a6{bottom:445.132500px;}
.y16b{bottom:446.284500px;}
.y13c{bottom:447.973500px;}
.y4e5{bottom:450.414000px;}
.y20{bottom:453.139500px;}
.y45e{bottom:453.280500px;}
.yf1{bottom:454.992000px;}
.y4bc{bottom:455.250000px;}
.ycf{bottom:455.422500px;}
.y5e{bottom:456.423000px;}
.y482{bottom:459.736500px;}
.y86{bottom:459.997500px;}
.y499{bottom:461.908500px;}
.y4fc{bottom:462.928500px;}
.y1a5{bottom:463.065000px;}
.ya7{bottom:463.606500px;}
.y13b{bottom:464.412000px;}
.y4e4{bottom:466.852500px;}
.ya6{bottom:468.759000px;}
.y1f{bottom:471.073500px;}
.y45d{bottom:471.213000px;}
.yf0{bottom:472.924500px;}
.y4bb{bottom:473.184000px;}
.yce{bottom:473.355000px;}
.y5d{bottom:474.355500px;}
.y85{bottom:477.931500px;}
.y498{bottom:479.841000px;}
.y13a{bottom:480.850500px;}
.y4fb{bottom:480.862500px;}
.y1a4{bottom:480.997500px;}
.y16a{bottom:481.722000px;}
.y4e3{bottom:483.949500px;}
.y1e{bottom:489.006000px;}
.ya5{bottom:489.084000px;}
.y45c{bottom:489.145500px;}
.y262{bottom:490.313161px;}
.yef{bottom:490.857000px;}
.y4ba{bottom:491.116500px;}
.ycd{bottom:491.289000px;}
.y5c{bottom:492.288000px;}
.y84{bottom:495.864000px;}
.y139{bottom:497.289000px;}
.y497{bottom:497.775000px;}
.y4fa{bottom:498.795000px;}
.y1a3{bottom:498.930000px;}
.y4e2{bottom:500.388000px;}
.ya4{bottom:507.016500px;}
.y45b{bottom:507.078000px;}
.yee{bottom:508.789500px;}
.y4b9{bottom:509.049000px;}
.ycc{bottom:509.221500px;}
.y5b{bottom:510.220500px;}
.y481{bottom:510.487500px;}
.y10d{bottom:513.315000px;}
.y83{bottom:513.796500px;}
.y496{bottom:515.707500px;}
.y4f9{bottom:516.727500px;}
.y1a2{bottom:516.864000px;}
.y4e1{bottom:517.485000px;}
.y45a{bottom:525.010500px;}
.yed{bottom:526.722000px;}
.y127{bottom:526.727787px;}
.y113{bottom:526.728000px;}
.y480{bottom:526.926000px;}
.y4b8{bottom:526.981500px;}
.ycb{bottom:527.154000px;}
.y5a{bottom:528.153000px;}
.y10c{bottom:531.247500px;}
.y82{bottom:531.729000px;}
.ya3{bottom:531.738000px;}
.y169{bottom:532.104000px;}
.y495{bottom:533.640000px;}
.y4e0{bottom:533.923500px;}
.y4f8{bottom:534.660000px;}
.y1a1{bottom:534.796500px;}
.ya0{bottom:535.308000px;}
.y1d{bottom:536.181000px;}
.y459{bottom:542.944500px;}
.y47f{bottom:543.364500px;}
.yec{bottom:544.656000px;}
.y4b7{bottom:544.914000px;}
.yca{bottom:545.086500px;}
.y59{bottom:546.085500px;}
.y9f{bottom:548.923500px;}
.y10b{bottom:549.180000px;}
.y81{bottom:549.661500px;}
.y168{bottom:550.038000px;}
.y4df{bottom:551.020500px;}
.y4f7{bottom:552.592500px;}
.y236{bottom:559.797000px;}
.y458{bottom:560.877000px;}
.y1a0{bottom:562.378500px;}
.yeb{bottom:562.588500px;}
.y4b6{bottom:562.848000px;}
.yc9{bottom:563.019000px;}
.ya2{bottom:563.121000px;}
.y58{bottom:564.019500px;}
.y10a{bottom:567.112500px;}
.y4de{bottom:567.457500px;}
.ya1{bottom:567.769500px;}
.y167{bottom:567.970500px;}
.y11b{bottom:569.398884px;}
.y4f6{bottom:570.525000px;}
.y477{bottom:572.803287px;}
.y12d{bottom:572.961607px;}
.y457{bottom:578.809500px;}
.y19f{bottom:580.311000px;}
.yea{bottom:580.521000px;}
.y4b5{bottom:580.780500px;}
.yc8{bottom:580.953000px;}
.y57{bottom:581.952000px;}
.y4dd{bottom:583.896000px;}
.y80{bottom:584.380500px;}
.y109{bottom:585.045000px;}
.y166{bottom:585.903000px;}
.y9e{bottom:588.604500px;}
.y227{bottom:589.236000px;}
.y494{bottom:591.052500px;}
.y456{bottom:596.742000px;}
.y1c{bottom:597.969000px;}
.y19e{bottom:598.243500px;}
.y4b4{bottom:598.713000px;}
.yc7{bottom:598.885500px;}
.y4dc{bottom:600.993000px;}
.y108{bottom:602.979000px;}
.y165{bottom:603.835500px;}
.y4f5{bottom:606.391500px;}
.y493{bottom:607.491000px;}
.y1b{bottom:614.407500px;}
.y455{bottom:614.674500px;}
.y19d{bottom:616.176000px;}
.y4b3{bottom:616.645500px;}
.yc6{bottom:616.818000px;}
.y4db{bottom:617.431500px;}
.y107{bottom:620.911500px;}
.y164{bottom:621.768000px;}
.ye9{bottom:623.344500px;}
.y473{bottom:627.104276px;}
.y1a{bottom:630.846000px;}
.y492{bottom:631.431000px;}
.y454{bottom:632.607000px;}
.y7f{bottom:634.042500px;}
.y4da{bottom:634.528500px;}
.y4b2{bottom:634.578000px;}
.y56{bottom:637.831500px;}
.y106{bottom:638.844000px;}
.y9d{bottom:640.314000px;}
.y19c{bottom:643.758000px;}
.yc5{bottom:644.352000px;}
.y19{bottom:647.284500px;}
.y491{bottom:647.869500px;}
.y453{bottom:650.541000px;}
.y4d9{bottom:650.967000px;}
.y7e{bottom:651.975000px;}
.y4b1{bottom:652.510500px;}
.y55{bottom:655.764000px;}
.y105{bottom:656.776500px;}
.y261{bottom:658.413000px;}
.y4f4{bottom:660.189000px;}
.y19b{bottom:661.690500px;}
.y18{bottom:663.723000px;}
.y490{bottom:664.308000px;}
.y4d8{bottom:667.405500px;}
.y452{bottom:668.473500px;}
.y98{bottom:669.754296px;}
.y7d{bottom:669.907500px;}
.y4b0{bottom:670.444500px;}
.yc4{bottom:671.886000px;}
.y54{bottom:673.696500px;}
.y163{bottom:674.080500px;}
.y260{bottom:676.345500px;}
.ye8{bottom:678.121500px;}
.y19a{bottom:679.623000px;}
.y17{bottom:680.161500px;}
.y48f{bottom:680.746500px;}
.y4d7{bottom:684.502500px;}
.y7c{bottom:687.840000px;}
.y4af{bottom:688.377000px;}
.yc3{bottom:689.818500px;}
.y53{bottom:691.629000px;}
.ye7{bottom:696.055500px;}
.y104{bottom:696.313500px;}
.y16{bottom:696.600000px;}
.y48e{bottom:697.185000px;}
.y4d6{bottom:700.941000px;}
.y451{bottom:701.691000px;}
.y142{bottom:703.521306px;}
.y4ae{bottom:706.309500px;}
.yc2{bottom:707.751000px;}
.y52{bottom:709.563000px;}
.y15{bottom:713.038500px;}
.y48d{bottom:713.622000px;}
.ye6{bottom:713.988000px;}
.y112{bottom:716.917500px;}
.y4d5{bottom:718.038000px;}
.y472{bottom:722.206500px;}
.y4ad{bottom:724.242000px;}
.yc1{bottom:725.683500px;}
.y25f{bottom:726.751500px;}
.y14{bottom:729.475500px;}
.y48c{bottom:730.060500px;}
.ye5{bottom:731.920500px;}
.y199{bottom:732.228000px;}
.y4d4{bottom:734.476500px;}
.y226{bottom:734.530500px;}
.y111{bottom:734.850000px;}
.y51{bottom:737.634000px;}
.y471{bottom:740.139000px;}
.y4ac{bottom:742.174500px;}
.y7b{bottom:742.366500px;}
.yc0{bottom:743.617500px;}
.y25e{bottom:744.684000px;}
.y13{bottom:745.914000px;}
.ye4{bottom:749.853000px;}
.y103{bottom:750.795000px;}
.y225{bottom:750.969000px;}
.y4d3{bottom:751.573500px;}
.y48b{bottom:754.000500px;}
.y50{bottom:755.566500px;}
.y470{bottom:758.071500px;}
.y7a{bottom:758.805000px;}
.ybf{bottom:761.550000px;}
.y173{bottom:761.667123px;}
.y12{bottom:762.352500px;}
.y25d{bottom:762.616500px;}
.ye3{bottom:767.785500px;}
.y4d2{bottom:768.012000px;}
.y102{bottom:768.727500px;}
.y4f{bottom:773.499000px;}
.y110{bottom:774.853500px;}
.y46f{bottom:776.004000px;}
.y11{bottom:778.791000px;}
.ybe{bottom:779.482500px;}
.y7{bottom:780.228000px;}
.y1a9{bottom:780.408000px;}
.y25c{bottom:780.549000px;}
.y79{bottom:781.602000px;}
.y4d1{bottom:784.450500px;}
.ye2{bottom:785.718000px;}
.y4f3{bottom:785.719500px;}
.y78{bottom:786.480000px;}
.y101{bottom:786.660000px;}
.y4ab{bottom:789.996000px;}
.y4e{bottom:791.431500px;}
.y48a{bottom:792.253500px;}
.y36{bottom:793.026000px;}
.y46e{bottom:793.936500px;}
.y10{bottom:795.229500px;}
.y77{bottom:798.355500px;}
.y25b{bottom:798.481500px;}
.y6{bottom:801.150000px;}
.y4d0{bottom:801.547500px;}
.y76{bottom:802.918500px;}
.y156{bottom:803.515430px;}
.ye1{bottom:803.652000px;}
.y100{bottom:804.592500px;}
.y489{bottom:808.692000px;}
.y4d{bottom:809.364000px;}
.yf{bottom:811.668000px;}
.y46d{bottom:811.869000px;}
.ybd{bottom:812.445000px;}
.y25a{bottom:816.414000px;}
.y4cf{bottom:817.986000px;}
.y10f{bottom:820.833000px;}
.ye0{bottom:821.584500px;}
.y5{bottom:822.070500px;}
.yff{bottom:822.525000px;}
.y75{bottom:826.708500px;}
.y4c{bottom:827.298000px;}
.ye{bottom:828.106500px;}
.y46c{bottom:829.803000px;}
.y74{bottom:831.271500px;}
.y35{bottom:833.287500px;}
.y259{bottom:834.348000px;}
.y4ce{bottom:834.424500px;}
.ydf{bottom:839.517000px;}
.yfe{bottom:840.457500px;}
.y73{bottom:843.823500px;}
.y4aa{bottom:844.636500px;}
.y4b{bottom:845.230500px;}
.y46b{bottom:847.735500px;}
.y72{bottom:848.388000px;}
.y4cd{bottom:851.521500px;}
.y258{bottom:852.280500px;}
.y4{bottom:856.989000px;}
.y14a{bottom:857.312030px;}
.yde{bottom:857.449500px;}
.yfd{bottom:858.391500px;}
.ybc{bottom:860.352000px;}
.y4a9{bottom:861.075000px;}
.y4a{bottom:863.163000px;}
.y46a{bottom:865.668000px;}
.y71{bottom:867.408000px;}
.y4cc{bottom:867.960000px;}
.y257{bottom:870.213000px;}
.ydd{bottom:875.382000px;}
.yfc{bottom:876.324000px;}
.y4a8{bottom:877.513500px;}
.ybb{bottom:878.284500px;}
.y10e{bottom:878.644500px;}
.y49{bottom:881.095500px;}
.y469{bottom:883.600500px;}
.y4cb{bottom:885.057000px;}
.y34{bottom:885.504000px;}
.y256{bottom:888.145500px;}
.ydc{bottom:893.314500px;}
.y3{bottom:894.349500px;}
.y70{bottom:895.083000px;}
.yba{bottom:896.218500px;}
.y48{bottom:899.028000px;}
.y97{bottom:901.329000px;}
.yd{bottom:901.435500px;}
.y4ca{bottom:901.495500px;}
.y468{bottom:901.533000px;}
.y33{bottom:903.436500px;}
.y255{bottom:906.078000px;}
.y49b{bottom:906.952500px;}
.ydb{bottom:911.248500px;}
.y6f{bottom:911.521500px;}
.yb9{bottom:914.151000px;}
.yfb{bottom:915.861000px;}
.y1be{bottom:916.598670px;}
.y47{bottom:916.960500px;}
.yc{bottom:917.874000px;}
.y4c9{bottom:918.592500px;}
.y32{bottom:921.369000px;}
.y254{bottom:924.012000px;}
.y6e{bottom:927.960000px;}
.yda{bottom:929.181000px;}
.yb8{bottom:932.083500px;}
.y95{bottom:932.365500px;}
.yb{bottom:934.312500px;}
.y46{bottom:934.894500px;}
.y4c8{bottom:935.031000px;}
.y31{bottom:939.303000px;}
.y253{bottom:941.944500px;}
.y94{bottom:943.402500px;}
.y96{bottom:944.212500px;}
.y6d{bottom:944.398500px;}
.yd9{bottom:947.113500px;}
.y93{bottom:949.309500px;}
.yb7{bottom:950.016000px;}
.y4c7{bottom:951.469500px;}
.y30{bottom:957.235500px;}
.y252{bottom:959.877000px;}
.y6c{bottom:960.837000px;}
.yfa{bottom:961.375500px;}
.y4a1{bottom:961.642728px;}
.y45{bottom:962.965500px;}
.yd8{bottom:965.046000px;}
.ya{bottom:965.632500px;}
.y1b7{bottom:966.549480px;}
.yb6{bottom:967.948500px;}
.y4c6{bottom:968.566500px;}
.y172{bottom:973.330500px;}
.y2f{bottom:975.168000px;}
.y6b{bottom:977.275500px;}
.y251{bottom:977.809500px;}
.yd7{bottom:982.978500px;}
.y9{bottom:983.565000px;}
.y4c5{bottom:985.005000px;}
.yb5{bottom:985.881000px;}
.y1eb{bottom:986.607600px;}
.y2e{bottom:993.100500px;}
.y92{bottom:993.345000px;}
.y6a{bottom:993.712500px;}
.y250{bottom:995.742000px;}
.y49f{bottom:997.621191px;}
.yd6{bottom:1000.912500px;}
.y4c4{bottom:1001.442000px;}
.yb4{bottom:1003.815000px;}
.y4f2{bottom:1006.890000px;}
.y2d{bottom:1011.033000px;}
.y91{bottom:1011.277500px;}
.y4c3{bottom:1018.539000px;}
.y44{bottom:1018.845000px;}
.y69{bottom:1021.389000px;}
.yb3{bottom:1021.747500px;}
.y4f1{bottom:1023.328500px;}
.y90{bottom:1029.210000px;}
.y24f{bottom:1031.203500px;}
.y4c2{bottom:1034.977500px;}
.y2{bottom:1036.777500px;}
.yb2{bottom:1039.680000px;}
.y4f0{bottom:1039.765500px;}
.y8{bottom:1045.743000px;}
.y2c{bottom:1054.710000px;}
.y4ef{bottom:1056.204000px;}
.y68{bottom:1059.642000px;}
.y1{bottom:1072.642500px;}
.y67{bottom:1076.080500px;}
.y2b{bottom:1111.497000px;}
.h23{height:2.391024px;}
.h42{height:15.099313px;}
.h49{height:15.130083px;}
.h44{height:17.615866px;}
.h4b{height:17.651763px;}
.h46{height:17.709257px;}
.h4c{height:17.745345px;}
.h3b{height:21.620846px;}
.h3f{height:21.820847px;}
.h2f{height:22.109174px;}
.h36{height:22.712953px;}
.h60{height:24.675533px;}
.h3d{height:25.224320px;}
.hd{height:25.249382px;}
.h47{height:25.298938px;}
.h4d{height:25.350492px;}
.h53{height:25.696737px;}
.h57{height:25.730890px;}
.h12{height:28.943527px;}
.h68{height:29.308923px;}
.h69{height:29.572592px;}
.h62{height:29.613296px;}
.h1c{height:29.833916px;}
.h54{height:29.979527px;}
.h18{height:30.201275px;}
.h4f{height:31.088023px;}
.h50{height:31.252837px;}
.h10{height:33.766001px;}
.ha{height:35.937331px;}
.h40{height:36.560885px;}
.h13{height:36.905702px;}
.h9{height:37.013299px;}
.hb{height:37.228493px;}
.h14{height:39.961891px;}
.h2b{height:40.348800px;}
.h8{height:41.125613px;}
.he{height:41.364715px;}
.h6c{height:41.484266px;}
.h3{height:42.141798px;}
.h19{height:42.799330px;}
.h21{height:44.212120px;}
.h51{height:44.646910px;}
.h2{height:44.831700px;}
.h66{height:46.374145px;}
.h64{height:46.437975px;}
.h15{height:46.704624px;}
.h3c{height:47.683350px;}
.h32{height:48.663368px;}
.h17{height:49.081382px;}
.h39{height:49.412144px;}
.hc{height:49.637990px;}
.h5f{height:49.875542px;}
.h45{height:49.950810px;}
.h5{height:50.211840px;}
.h55{height:50.483846px;}
.h5e{height:50.895995px;}
.h5b{height:51.090553px;}
.h20{height:51.110308px;}
.h2d{height:51.970883px;}
.h1b{height:51.974100px;}
.h34{height:53.390154px;}
.h6b{height:53.798400px;}
.h11{height:53.814327px;}
.h2a{height:56.683613px;}
.h31{height:56.773857px;}
.h16{height:56.997275px;}
.h38{height:57.647575px;}
.h61{height:59.412780px;}
.h6{height:59.565422px;}
.h28{height:59.609700px;}
.h24{height:60.374100px;}
.h59{height:60.484261px;}
.h7{height:61.309127px;}
.h25{height:61.735613px;}
.h30{height:66.283215px;}
.h37{height:68.093342px;}
.h29{height:73.688100px;}
.h43{height:76.420470px;}
.h4a{height:76.576200px;}
.h5c{height:77.141104px;}
.h26{height:83.239330px;}
.h4{height:86.782500px;}
.h67{height:89.964684px;}
.h6a{height:90.668691px;}
.h22{height:96.415916px;}
.h27{height:97.070100px;}
.h2e{height:99.161222px;}
.h35{height:100.269509px;}
.h1a{height:101.169024px;}
.h1d{height:104.607024px;}
.h4e{height:111.262007px;}
.h63{height:115.046731px;}
.h56{height:115.984800px;}
.h1e{height:141.602100px;}
.h2c{height:147.421345px;}
.h33{height:152.785905px;}
.h5a{height:170.690809px;}
.h5d{height:170.797326px;}
.h3e{height:173.373108px;}
.h65{height:180.633375px;}
.h58{height:180.864885px;}
.h52{height:182.988108px;}
.h1f{height:196.260725px;}
.h3a{height:207.675967px;}
.h41{height:278.357506px;}
.h48{height:298.603544px;}
.hf{height:382.698212px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wb{width:75.192975px;}
.w5{width:104.922788px;}
.w8{width:108.587975px;}
.w14{width:116.443906px;}
.w6{width:167.547321px;}
.we{width:170.345070px;}
.w11{width:170.692200px;}
.w17{width:171.183653px;}
.wf{width:171.198930px;}
.w16{width:171.838625px;}
.w9{width:172.983146px;}
.w10{width:207.482572px;}
.wd{width:207.487553px;}
.w3{width:233.435849px;}
.w4{width:254.190669px;}
.w7{width:254.200051px;}
.w18{width:271.879560px;}
.w15{width:363.124729px;}
.w2{width:383.574424px;}
.w12{width:389.064793px;}
.w1b{width:393.502860px;}
.w1a{width:466.867800px;}
.w19{width:466.882517px;}
.wc{width:518.732055px;}
.wa{width:518.734327px;}
.w13{width:518.739592px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x38{left:-6.145670px;}
.xd6{left:-2.839211px;}
.x0{left:0.000000px;}
.xf{left:2.495345px;}
.xcf{left:3.827063px;}
.x85{left:5.093738px;}
.x9f{left:6.403950px;}
.x8e{left:7.440408px;}
.x27{left:9.335792px;}
.x3d{left:10.512761px;}
.x87{left:11.527110px;}
.x45{left:12.791618px;}
.x49{left:14.060475px;}
.x3a{left:15.392963px;}
.x8d{left:17.062599px;}
.x42{left:18.257428px;}
.x46{left:19.730514px;}
.x4e{left:21.564489px;}
.xce{left:22.938338px;}
.x25{left:23.943055px;}
.xc8{left:25.789957px;}
.x47{left:27.675294px;}
.x4a{left:29.511714px;}
.x96{left:30.715778px;}
.xcc{left:31.806693px;}
.x8f{left:33.224077px;}
.x89{left:34.298660px;}
.x9a{left:36.174505px;}
.x95{left:37.690960px;}
.xcd{left:39.240195px;}
.xd3{left:40.349493px;}
.xd2{left:41.404532px;}
.xe{left:43.076410px;}
.x90{left:44.209370px;}
.x11{left:45.822889px;}
.xcb{left:47.716678px;}
.xd1{left:49.778526px;}
.x39{left:50.855142px;}
.xd4{left:52.841153px;}
.x41{left:54.741367px;}
.xd0{left:55.831434px;}
.xc9{left:57.808878px;}
.x97{left:59.267405px;}
.xca{left:60.841361px;}
.x91{left:62.025671px;}
.x4b{left:63.119062px;}
.x9b{left:64.893360px;}
.x9c{left:66.174235px;}
.x4c{left:67.198923px;}
.x37{left:68.453633px;}
.xae{left:69.700587px;}
.x40{left:70.866932px;}
.xaf{left:73.096430px;}
.x14{left:75.242128px;}
.x92{left:77.654170px;}
.xc7{left:79.277411px;}
.x3c{left:80.772512px;}
.x4d{left:82.696989px;}
.x44{left:84.497862px;}
.xa4{left:85.604277px;}
.x9e{left:87.444656px;}
.x99{left:88.601338px;}
.x26{left:90.894010px;}
.xd{left:92.833032px;}
.xb2{left:94.893530px;}
.x98{left:96.227290px;}
.xd5{left:97.508482px;}
.x9d{left:99.077730px;}
.x54{left:101.036739px;}
.x3b{left:102.536698px;}
.x8b{left:104.073793px;}
.x43{left:106.596934px;}
.xa5{left:108.445888px;}
.x93{left:109.559417px;}
.x4f{left:110.817939px;}
.x55{left:115.097214px;}
.xb0{left:116.690630px;}
.x94{left:117.876867px;}
.x50{left:119.376489px;}
.xa2{left:122.350800px;}
.xa7{left:124.917600px;}
.xa6{left:125.941582px;}
.x51{left:127.323714px;}
.x52{left:135.882264px;}
.xa3{left:141.143926px;}
.x53{left:144.440814px;}
.xb1{left:146.480000px;}
.xa9{left:147.514852px;}
.xaa{left:150.846045px;}
.x7f{left:152.952069px;}
.x56{left:154.833339px;}
.x80{left:157.069670px;}
.xa8{left:159.171632px;}
.x5c{left:162.169239px;}
.x57{left:163.391889px;}
.xb4{left:167.550530px;}
.x8a{left:169.080119px;}
.x8c{left:170.353011px;}
.x58{left:171.950439px;}
.x5d{left:178.063689px;}
.xb3{left:179.175650px;}
.x59{left:180.508989px;}
.xb5{left:186.441350px;}
.x5a{left:188.456214px;}
.x5b{left:197.014764px;}
.xab{left:199.656659px;}
.x1{left:202.147500px;}
.x33{left:203.940000px;}
.x10{left:205.140785px;}
.xa{left:207.253500px;}
.x17{left:208.872000px;}
.xd9{left:211.162893px;}
.x5{left:213.136500px;}
.x48{left:215.764764px;}
.xb{left:217.090500px;}
.x34{left:219.177000px;}
.xdb{left:221.252726px;}
.x3e{left:222.923686px;}
.xd8{left:224.501145px;}
.xdd{left:226.431000px;}
.x4{left:227.617500px;}
.x88{left:232.886460px;}
.x5e{left:236.750889px;}
.x61{left:237.973539px;}
.xb9{left:240.207530px;}
.xda{left:242.140500px;}
.x9{left:244.666500px;}
.x5f{left:246.532089px;}
.x36{left:249.639000px;}
.x2{left:251.986500px;}
.x12{left:256.057169px;}
.xba{left:257.645210px;}
.x18{left:262.207500px;}
.x7{left:263.722500px;}
.x60{left:266.094489px;}
.xb6{left:267.817190px;}
.xc{left:269.730088px;}
.x82{left:274.713998px;}
.x62{left:278.320989px;}
.xb7{left:279.442310px;}
.x81{left:282.305751px;}
.x35{left:284.571000px;}
.x63{left:286.879539px;}
.xdc{left:288.111360px;}
.xb8{left:291.067430px;}
.x64{left:296.049414px;}
.x15{left:298.815000px;}
.x7e{left:300.334500px;}
.x65{left:304.607964px;}
.x13{left:305.806719px;}
.x29{left:310.750500px;}
.x66{left:313.166514px;}
.xbb{left:315.770810px;}
.x67{left:322.336389px;}
.xbc{left:326.669360px;}
.xbf{left:329.575640px;}
.x68{left:330.894939px;}
.x6{left:332.187000px;}
.xc6{left:333.950633px;}
.xbd{left:336.841340px;}
.x69{left:339.453489px;}
.x8{left:340.471500px;}
.xad{left:342.916522px;}
.x24{left:344.801317px;}
.xac{left:346.195095px;}
.x6a{left:347.400714px;}
.x2a{left:350.871000px;}
.x6b{left:355.347939px;}
.xbe{left:357.911870px;}
.x6f{left:359.627214px;}
.x30{left:360.808500px;}
.x16{left:363.478500px;}
.x20{left:364.614000px;}
.x28{left:369.046500px;}
.x6c{left:371.242389px;}
.x2f{left:376.050000px;}
.x6d{left:378.578289px;}
.x86{left:384.339000px;}
.xc3{left:385.521530px;}
.x6e{left:386.525514px;}
.xc0{left:387.701240px;}
.x2b{left:389.151000px;}
.x1c{left:394.231500px;}
.xc1{left:397.146650px;}
.x70{left:399.363339px;}
.x31{left:402.625500px;}
.x84{left:404.279798px;}
.x3{left:406.642500px;}
.x71{left:407.921889px;}
.x83{left:412.081201px;}
.x72{left:416.480439px;}
.x32{left:419.262000px;}
.x77{left:421.371039px;}
.x73{left:425.038989px;}
.x74{left:432.986214px;}
.xc2{left:434.201720px;}
.x75{left:441.544764px;}
.x76{left:450.103314px;}
.x1d{left:455.356500px;}
.x22{left:456.666000px;}
.x78{left:461.107164px;}
.x21{left:463.651500px;}
.xc4{left:464.717660px;}
.x7d{left:466.609089px;}
.x79{left:473.333664px;}
.x23{left:479.208000px;}
.x7a{left:484.948839px;}
.x2c{left:489.619500px;}
.x2d{left:493.027500px;}
.x7b{left:496.564014px;}
.xc5{left:506.858720px;}
.x7c{left:508.790514px;}
.xd7{left:511.999382px;}
.xa0{left:513.394500px;}
.x1e{left:514.848000px;}
.x2e{left:520.512000px;}
.x3f{left:525.276652px;}
.xa1{left:543.768300px;}
.x1b{left:557.817000px;}
.x19{left:562.383000px;}
.x1a{left:565.714500px;}
.x1f{left:703.462500px;}
@media print{
.v21{vertical-align:-34.318571pt;}
.v19{vertical-align:-31.231828pt;}
.v24{vertical-align:-29.688457pt;}
.v23{vertical-align:-27.973601pt;}
.v1b{vertical-align:-26.194437pt;}
.v29{vertical-align:-24.236055pt;}
.v1c{vertical-align:-23.021952pt;}
.v22{vertical-align:-21.521452pt;}
.v2{vertical-align:-20.314667pt;}
.v17{vertical-align:-17.920253pt;}
.v1a{vertical-align:-15.540889pt;}
.v18{vertical-align:-13.868904pt;}
.v27{vertical-align:-10.867905pt;}
.v25{vertical-align:-9.967605pt;}
.v20{vertical-align:-8.938691pt;}
.v8{vertical-align:-7.973333pt;}
.v26{vertical-align:-6.923734pt;}
.v4{vertical-align:-5.312000pt;}
.v1f{vertical-align:-4.372885pt;}
.v1d{vertical-align:-3.129614pt;}
.v28{vertical-align:-2.014957pt;}
.v1e{vertical-align:-0.943171pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:5.168000pt;}
.v14{vertical-align:7.968000pt;}
.v7{vertical-align:9.152000pt;}
.v12{vertical-align:13.136000pt;}
.v3{vertical-align:17.820734pt;}
.v16{vertical-align:19.285333pt;}
.v5{vertical-align:20.314667pt;}
.v11{vertical-align:25.770667pt;}
.v1{vertical-align:27.770667pt;}
.v6{vertical-align:32.970667pt;}
.va{vertical-align:35.946667pt;}
.v15{vertical-align:37.605333pt;}
.v10{vertical-align:53.872000pt;}
.vf{vertical-align:59.184000pt;}
.ve{vertical-align:72.320000pt;}
.v9{vertical-align:87.802667pt;}
.vb{vertical-align:90.858667pt;}
.vd{vertical-align:97.973333pt;}
.vc{vertical-align:108.981333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.000278pt;}
.ls59{letter-spacing:0.000479pt;}
.ls66{letter-spacing:0.000483pt;}
.lsd{letter-spacing:0.000495pt;}
.ls27{letter-spacing:0.000501pt;}
.ls2{letter-spacing:0.000619pt;}
.ls23{letter-spacing:0.000681pt;}
.ls14{letter-spacing:0.001002pt;}
.ls3e{letter-spacing:0.001014pt;}
.ls3a{letter-spacing:0.001069pt;}
.ls13{letter-spacing:0.001594pt;}
.ls1e{letter-spacing:0.001791pt;}
.ls3c{letter-spacing:0.001793pt;}
.ls39{letter-spacing:0.001933pt;}
.lsb7{letter-spacing:0.001962pt;}
.ls2b{letter-spacing:0.001986pt;}
.ls1a{letter-spacing:0.001995pt;}
.ls71{letter-spacing:0.002079pt;}
.ls26{letter-spacing:0.002245pt;}
.ls2c{letter-spacing:0.002906pt;}
.ls10{letter-spacing:0.003046pt;}
.ls9{letter-spacing:0.003538pt;}
.ls5f{letter-spacing:0.003733pt;}
.ls3{letter-spacing:0.003770pt;}
.ls5c{letter-spacing:0.004349pt;}
.ls33{letter-spacing:0.004777pt;}
.ls7{letter-spacing:0.005205pt;}
.ls5{letter-spacing:0.032048pt;}
.ls75{letter-spacing:1.007478pt;}
.ls21{letter-spacing:1.910015pt;}
.ls76{letter-spacing:2.293621pt;}
.ls8c{letter-spacing:2.465107pt;}
.ls56{letter-spacing:2.652911pt;}
.ls32{letter-spacing:2.654186pt;}
.ls34{letter-spacing:2.655884pt;}
.ls73{letter-spacing:2.656533pt;}
.lsba{letter-spacing:2.656576pt;}
.ls5d{letter-spacing:2.656689pt;}
.ls2e{letter-spacing:2.657014pt;}
.ls2d{letter-spacing:2.657069pt;}
.ls55{letter-spacing:2.658245pt;}
.ls3f{letter-spacing:2.659514pt;}
.ls1d{letter-spacing:3.803181pt;}
.ls8b{letter-spacing:3.879863pt;}
.ls9f{letter-spacing:4.222835pt;}
.ls74{letter-spacing:4.480063pt;}
.ls52{letter-spacing:4.807919pt;}
.ls97{letter-spacing:4.951649pt;}
.ls54{letter-spacing:5.718992pt;}
.ls44{letter-spacing:6.807578pt;}
.ls37{letter-spacing:6.830400pt;}
.ls9b{letter-spacing:7.095220pt;}
.ls25{letter-spacing:7.380568pt;}
.ls9e{letter-spacing:7.695420pt;}
.lsa5{letter-spacing:8.295620pt;}
.lsa7{letter-spacing:8.381362pt;}
.ls49{letter-spacing:8.857438pt;}
.ls98{letter-spacing:9.024434pt;}
.ls38{letter-spacing:10.710347pt;}
.lsaf{letter-spacing:10.889340pt;}
.lse{letter-spacing:10.918224pt;}
.lsf{letter-spacing:10.923162pt;}
.lsa0{letter-spacing:11.189440pt;}
.lsaa{letter-spacing:11.232312pt;}
.lsb0{letter-spacing:11.661026pt;}
.ls20{letter-spacing:11.808479pt;}
.ls61{letter-spacing:12.613812pt;}
.ls67{letter-spacing:12.758297pt;}
.ls77{letter-spacing:12.947168pt;}
.lsab{letter-spacing:13.032911pt;}
.lsa8{letter-spacing:13.075783pt;}
.ls48{letter-spacing:13.280278pt;}
.lsb8{letter-spacing:13.281867pt;}
.lsa1{letter-spacing:13.804597pt;}
.lsad{letter-spacing:13.847468pt;}
.ls28{letter-spacing:13.868662pt;}
.ls3b{letter-spacing:14.460459pt;}
.ls1f{letter-spacing:14.464689pt;}
.ls3d{letter-spacing:14.465014pt;}
.ls1{letter-spacing:14.607527pt;}
.lsb4{letter-spacing:14.609067pt;}
.ls72{letter-spacing:14.612695pt;}
.ls4a{letter-spacing:14.757611pt;}
.ls1b{letter-spacing:14.757812pt;}
.ls4d{letter-spacing:14.760239pt;}
.ls4b{letter-spacing:14.762050pt;}
.ls60{letter-spacing:14.875162pt;}
.lsc{letter-spacing:14.880027pt;}
.lsb6{letter-spacing:14.992964pt;}
.lsb2{letter-spacing:15.004997pt;}
.ls22{letter-spacing:15.377014pt;}
.ls6e{letter-spacing:15.520576pt;}
.ls68{letter-spacing:15.849067pt;}
.lsb9{letter-spacing:15.937069pt;}
.ls6d{letter-spacing:15.942022pt;}
.ls5a{letter-spacing:16.119126pt;}
.ls46{letter-spacing:16.468105pt;}
.ls47{letter-spacing:16.469611pt;}
.ls43{letter-spacing:16.510181pt;}
.ls24{letter-spacing:16.523181pt;}
.ls7f{letter-spacing:16.805596pt;}
.ls8d{letter-spacing:16.977082pt;}
.lsb5{letter-spacing:17.043733pt;}
.ls63{letter-spacing:17.413909pt;}
.ls62{letter-spacing:17.415126pt;}
.ls57{letter-spacing:17.576239pt;}
.lsae{letter-spacing:17.705896pt;}
.ls5b{letter-spacing:17.776483pt;}
.ls50{letter-spacing:17.799474pt;}
.ls29{letter-spacing:17.821913pt;}
.ls9a{letter-spacing:17.920253pt;}
.ls41{letter-spacing:17.991126pt;}
.ls8e{letter-spacing:18.091739pt;}
.ls19{letter-spacing:18.294347pt;}
.ls70{letter-spacing:18.742022pt;}
.ls6f{letter-spacing:18.811356pt;}
.ls6b{letter-spacing:18.811680pt;}
.ls99{letter-spacing:18.992038pt;}
.ls5e{letter-spacing:19.115680pt;}
.ls42{letter-spacing:19.723680pt;}
.ls4f{letter-spacing:20.664239pt;}
.ls6c{letter-spacing:20.795356pt;}
.ls31{letter-spacing:20.818906pt;}
.ls36{letter-spacing:21.136479pt;}
.lsa3{letter-spacing:21.585759pt;}
.ls7b{letter-spacing:21.885859pt;}
.ls64{letter-spacing:22.016576pt;}
.ls65{letter-spacing:22.017069pt;}
.ls69{letter-spacing:22.641793pt;}
.ls89{letter-spacing:22.914773pt;}
.lsa4{letter-spacing:23.000516pt;}
.ls53{letter-spacing:23.292326pt;}
.ls96{letter-spacing:23.472102pt;}
.ls30{letter-spacing:23.473014pt;}
.ls2a{letter-spacing:23.609490pt;}
.ls4c{letter-spacing:23.612745pt;}
.ls51{letter-spacing:23.618079pt;}
.ls45{letter-spacing:23.995680pt;}
.ls6a{letter-spacing:24.299150pt;}
.ls9c{letter-spacing:24.758244pt;}
.ls95{letter-spacing:25.572801pt;}
.ls58{letter-spacing:26.569067pt;}
.lsa6{letter-spacing:28.359443pt;}
.ls79{letter-spacing:28.616672pt;}
.lsac{letter-spacing:29.302615pt;}
.ls88{letter-spacing:29.431229pt;}
.lsb3{letter-spacing:29.720804pt;}
.ls90{letter-spacing:29.988557pt;}
.ls91{letter-spacing:36.955163pt;}
.ls7d{letter-spacing:36.998034pt;}
.lsa2{letter-spacing:37.040906pt;}
.ls9d{letter-spacing:37.469620pt;}
.ls93{letter-spacing:38.155563pt;}
.lsb1{letter-spacing:39.441705pt;}
.ls92{letter-spacing:40.427748pt;}
.lsa9{letter-spacing:44.093254pt;}
.ls1c{letter-spacing:45.708800pt;}
.ls8a{letter-spacing:46.065339pt;}
.ls8f{letter-spacing:46.837025pt;}
.ls35{letter-spacing:52.687884pt;}
.ls84{letter-spacing:64.071335pt;}
.ls7c{letter-spacing:81.970152pt;}
.ls81{letter-spacing:84.628180pt;}
.ls87{letter-spacing:96.889406pt;}
.lsa{letter-spacing:108.226086pt;}
.ls7a{letter-spacing:114.188024pt;}
.ls85{letter-spacing:119.139672pt;}
.ls83{letter-spacing:126.856528pt;}
.ls82{letter-spacing:128.592820pt;}
.ls94{letter-spacing:132.408377pt;}
.ls86{letter-spacing:136.867004pt;}
.ls80{letter-spacing:139.374982pt;}
.ls6{letter-spacing:146.750495pt;}
.ls12{letter-spacing:146.754091pt;}
.ls78{letter-spacing:147.863523pt;}
.ls11{letter-spacing:159.248473pt;}
.ls15{letter-spacing:162.358697pt;}
.ls8{letter-spacing:170.660695pt;}
.lsb{letter-spacing:170.662366pt;}
.lsbd{letter-spacing:178.226086pt;}
.ls7e{letter-spacing:178.966737pt;}
.lsbb{letter-spacing:192.841161pt;}
.ls18{letter-spacing:194.571699pt;}
.lsbc{letter-spacing:216.751362pt;}
.lsbe{letter-spacing:216.753033pt;}
.ls16{letter-spacing:218.482091pt;}
.ls17{letter-spacing:230.601600pt;}
.ls2f{letter-spacing:324.189573pt;}
.ls40{letter-spacing:502.173573pt;}
.ls4{letter-spacing:580.581801pt;}
.wsa9{word-spacing:-53.133867pt;}
.ws65{word-spacing:-42.066082pt;}
.ws86{word-spacing:-41.338148pt;}
.ws57{word-spacing:-34.611401pt;}
.ws47{word-spacing:-32.063846pt;}
.ws63{word-spacing:-28.118362pt;}
.ws89{word-spacing:-25.738045pt;}
.ws4d{word-spacing:-25.225472pt;}
.ws85{word-spacing:-23.591437pt;}
.ws14a{word-spacing:-19.925333pt;}
.wsc7{word-spacing:-19.861194pt;}
.ws6c{word-spacing:-19.854916pt;}
.ws76{word-spacing:-19.848833pt;}
.ws87{word-spacing:-19.840186pt;}
.ws6{word-spacing:-19.128267pt;}
.wsca{word-spacing:-16.813901pt;}
.ws127{word-spacing:-15.940267pt;}
.ws33{word-spacing:-13.283467pt;}
.ws15{word-spacing:-11.955200pt;}
.ws10a{word-spacing:-11.002573pt;}
.ws69{word-spacing:-10.445835pt;}
.ws2c{word-spacing:-9.944183pt;}
.ws5c{word-spacing:-9.555168pt;}
.ws107{word-spacing:-6.858270pt;}
.ws6f{word-spacing:-6.459954pt;}
.ws71{word-spacing:-6.457735pt;}
.wse6{word-spacing:-5.959127pt;}
.ws3{word-spacing:-3.602500pt;}
.wsde{word-spacing:-3.484436pt;}
.wsbf{word-spacing:-3.188032pt;}
.ws40{word-spacing:-3.081764pt;}
.wsc5{word-spacing:-2.931752pt;}
.ws10e{word-spacing:-2.869229pt;}
.ws3c{word-spacing:-2.816095pt;}
.ws13d{word-spacing:-2.773606pt;}
.ws8b{word-spacing:-2.709827pt;}
.ws14b{word-spacing:-2.646067pt;}
.ws98{word-spacing:-2.603559pt;}
.ws28{word-spacing:-2.550426pt;}
.ws126{word-spacing:-2.444158pt;}
.ws99{word-spacing:-2.391024pt;}
.ws12a{word-spacing:-2.343219pt;}
.ws8d{word-spacing:-2.125355pt;}
.wse2{word-spacing:-1.965953pt;}
.wsc2{word-spacing:-1.859685pt;}
.ws94{word-spacing:-1.753418pt;}
.ws74{word-spacing:-1.700284pt;}
.wseb{word-spacing:-1.673728pt;}
.ws122{word-spacing:-1.647150pt;}
.ws120{word-spacing:-1.578086pt;}
.ws110{word-spacing:-1.540882pt;}
.ws7d{word-spacing:-1.487748pt;}
.ws8{word-spacing:-1.482445pt;}
.ws13a{word-spacing:-1.386803pt;}
.ws19{word-spacing:-1.381481pt;}
.ws2a{word-spacing:-1.328347pt;}
.wsb{word-spacing:-1.291162pt;}
.ws9b{word-spacing:-1.275213pt;}
.wsd8{word-spacing:-1.264638pt;}
.ws123{word-spacing:-1.222079pt;}
.wsa{word-spacing:-1.147699pt;}
.ws10d{word-spacing:-1.115811pt;}
.ws9c{word-spacing:-1.062677pt;}
.ws133{word-spacing:-1.052058pt;}
.ws45{word-spacing:-1.004237pt;}
.ws41{word-spacing:-0.903276pt;}
.ws93{word-spacing:-0.850142pt;}
.ws1c{word-spacing:-0.797008pt;}
.wsb8{word-spacing:-0.775783pt;}
.ws52{word-spacing:-0.743874pt;}
.wsc6{word-spacing:-0.653311pt;}
.wsc9{word-spacing:-0.637606pt;}
.ws5f{word-spacing:-0.584473pt;}
.ws5e{word-spacing:-0.566836pt;}
.ws3d{word-spacing:-0.531339pt;}
.wsf{word-spacing:-0.526029pt;}
.ws7e{word-spacing:-0.478205pt;}
.ws13{word-spacing:-0.430387pt;}
.wsd4{word-spacing:-0.425071pt;}
.ws138{word-spacing:-0.382566pt;}
.ws53{word-spacing:-0.318803pt;}
.ws39{word-spacing:-0.265669pt;}
.ws2e{word-spacing:-0.159402pt;}
.ws104{word-spacing:-0.106268pt;}
.ws5d{word-spacing:-0.053134pt;}
.ws4c{word-spacing:-0.047821pt;}
.ws66{word-spacing:-0.037194pt;}
.ws50{word-spacing:-0.031881pt;}
.ws13f{word-spacing:-0.006878pt;}
.wsd1{word-spacing:-0.006014pt;}
.ws84{word-spacing:-0.004793pt;}
.wsac{word-spacing:-0.003217pt;}
.ws134{word-spacing:-0.002227pt;}
.wsd2{word-spacing:-0.001911pt;}
.ws13c{word-spacing:-0.001323pt;}
.ws83{word-spacing:-0.001318pt;}
.wsad{word-spacing:-0.000495pt;}
.ws12e{word-spacing:-0.000239pt;}
.ws5{word-spacing:0.000000pt;}
.wsfb{word-spacing:0.002689pt;}
.ws144{word-spacing:0.043145pt;}
.ws141{word-spacing:0.047821pt;}
.ws11b{word-spacing:0.053134pt;}
.wsf7{word-spacing:0.106268pt;}
.wsbd{word-spacing:0.143462pt;}
.wsa5{word-spacing:0.159402pt;}
.wsa6{word-spacing:0.172563pt;}
.wsa8{word-spacing:0.212535pt;}
.ws136{word-spacing:0.239104pt;}
.ws25{word-spacing:0.265669pt;}
.wsc{word-spacing:0.286925pt;}
.ws37{word-spacing:0.318803pt;}
.ws8c{word-spacing:0.371937pt;}
.ws56{word-spacing:0.425071pt;}
.ws113{word-spacing:0.430387pt;}
.ws9f{word-spacing:0.478205pt;}
.ws10c{word-spacing:0.526029pt;}
.ws7a{word-spacing:0.531339pt;}
.wsdc{word-spacing:0.573850pt;}
.ws68{word-spacing:0.584473pt;}
.ws67{word-spacing:0.585164pt;}
.wsdd{word-spacing:0.590498pt;}
.ws13b{word-spacing:0.621670pt;}
.wsfa{word-spacing:0.637606pt;}
.ws18{word-spacing:0.690740pt;}
.wsa1{word-spacing:0.743874pt;}
.wse{word-spacing:0.812954pt;}
.ws131{word-spacing:0.855663pt;}
.wse1{word-spacing:0.861302pt;}
.ws1b{word-spacing:0.903276pt;}
.ws11d{word-spacing:0.936173pt;}
.ws17{word-spacing:0.956410pt;}
.wsb4{word-spacing:1.062677pt;}
.ws90{word-spacing:1.115811pt;}
.wsb5{word-spacing:1.160369pt;}
.ws1f{word-spacing:1.168945pt;}
.ws91{word-spacing:1.222079pt;}
.ws124{word-spacing:1.275213pt;}
.ws34{word-spacing:1.328347pt;}
.ws97{word-spacing:1.381481pt;}
.ws2f{word-spacing:1.434614pt;}
.ws75{word-spacing:1.487748pt;}
.ws8e{word-spacing:1.594016pt;}
.ws2d{word-spacing:1.647150pt;}
.ws95{word-spacing:1.700284pt;}
.ws12c{word-spacing:1.721549pt;}
.ws5a{word-spacing:1.753418pt;}
.ws112{word-spacing:1.806551pt;}
.ws23{word-spacing:1.859685pt;}
.ws30{word-spacing:1.912819pt;}
.ws38{word-spacing:1.965953pt;}
.ws9{word-spacing:2.008474pt;}
.ws77{word-spacing:2.051830pt;}
.ws78{word-spacing:2.072221pt;}
.ws7f{word-spacing:2.125355pt;}
.wsd0{word-spacing:2.231622pt;}
.ws55{word-spacing:2.284756pt;}
.ws1d{word-spacing:2.337890pt;}
.ws121{word-spacing:2.391040pt;}
.wsa4{word-spacing:2.444158pt;}
.wsc4{word-spacing:2.473671pt;}
.wsed{word-spacing:2.486682pt;}
.ws60{word-spacing:2.497292pt;}
.ws12b{word-spacing:2.534502pt;}
.ws24{word-spacing:2.550426pt;}
.ws102{word-spacing:2.582323pt;}
.ws31{word-spacing:2.603559pt;}
.ws12d{word-spacing:2.630144pt;}
.ws13e{word-spacing:2.677965pt;}
.ws36{word-spacing:2.762961pt;}
.ws10{word-spacing:2.773606pt;}
.wsd6{word-spacing:2.798171pt;}
.ws3b{word-spacing:2.816095pt;}
.ws8a{word-spacing:2.869229pt;}
.wsae{word-spacing:2.917069pt;}
.ws106{word-spacing:2.922363pt;}
.ws14c{word-spacing:2.932989pt;}
.ws14d{word-spacing:2.941857pt;}
.wsaa{word-spacing:2.975497pt;}
.ws132{word-spacing:3.012710pt;}
.ws43{word-spacing:3.028630pt;}
.wsbb{word-spacing:3.060531pt;}
.ws9a{word-spacing:3.134898pt;}
.ws81{word-spacing:3.179923pt;}
.ws82{word-spacing:3.185074pt;}
.ws80{word-spacing:3.188032pt;}
.ws3a{word-spacing:3.241166pt;}
.ws12{word-spacing:3.251814pt;}
.ws11a{word-spacing:3.294300pt;}
.ws111{word-spacing:3.347434pt;}
.wsab{word-spacing:3.395277pt;}
.ws2b{word-spacing:3.400567pt;}
.wsd3{word-spacing:3.453701pt;}
.wsbe{word-spacing:3.506835pt;}
.wsec{word-spacing:3.538739pt;}
.ws32{word-spacing:3.559969pt;}
.ws21{word-spacing:3.586560pt;}
.wsc0{word-spacing:3.613103pt;}
.wsa3{word-spacing:3.666237pt;}
.wsdf{word-spacing:3.682202pt;}
.wsf4{word-spacing:3.749370pt;}
.ws79{word-spacing:3.772505pt;}
.wsef{word-spacing:3.825638pt;}
.ws135{word-spacing:3.873485pt;}
.wsf6{word-spacing:3.878772pt;}
.ws125{word-spacing:3.931906pt;}
.wscc{word-spacing:3.985040pt;}
.ws4{word-spacing:3.985067pt;}
.ws101{word-spacing:4.038174pt;}
.ws54{word-spacing:4.091308pt;}
.ws5b{word-spacing:4.144442pt;}
.ws11{word-spacing:4.208230pt;}
.ws1a{word-spacing:4.250709pt;}
.wse3{word-spacing:4.257081pt;}
.ws35{word-spacing:4.303843pt;}
.ws58{word-spacing:4.410111pt;}
.ws3f{word-spacing:4.463245pt;}
.wsfe{word-spacing:4.516379pt;}
.wscf{word-spacing:4.569513pt;}
.ws27{word-spacing:4.622646pt;}
.ws26{word-spacing:4.675780pt;}
.ws92{word-spacing:4.728914pt;}
.wsc1{word-spacing:4.835182pt;}
.wsd{word-spacing:4.877722pt;}
.ws29{word-spacing:4.888316pt;}
.wsf0{word-spacing:4.941450pt;}
.wsd5{word-spacing:4.994583pt;}
.ws100{word-spacing:5.047717pt;}
.ws8f{word-spacing:5.100851pt;}
.ws105{word-spacing:5.153985pt;}
.ws7b{word-spacing:5.207119pt;}
.ws140{word-spacing:5.255211pt;}
.ws146{word-spacing:5.255467pt;}
.ws130{word-spacing:5.256038pt;}
.ws22{word-spacing:5.260288pt;}
.ws139{word-spacing:5.355930pt;}
.ws7c{word-spacing:5.472788pt;}
.wsbc{word-spacing:5.547213pt;}
.wsf5{word-spacing:5.579056pt;}
.wse4{word-spacing:5.632190pt;}
.wsa0{word-spacing:5.685324pt;}
.ws147{word-spacing:5.690675pt;}
.ws6e{word-spacing:5.715830pt;}
.ws70{word-spacing:5.738458pt;}
.ws12f{word-spacing:5.738496pt;}
.wsee{word-spacing:6.025421pt;}
.wse5{word-spacing:6.057261pt;}
.ws96{word-spacing:6.110395pt;}
.wsf8{word-spacing:6.163529pt;}
.ws1e{word-spacing:6.216662pt;}
.ws14{word-spacing:6.264525pt;}
.ws59{word-spacing:6.269796pt;}
.wsff{word-spacing:6.376064pt;}
.ws148{word-spacing:6.407987pt;}
.ws149{word-spacing:6.455808pt;}
.wsf9{word-spacing:6.588599pt;}
.ws137{word-spacing:6.647091pt;}
.wscd{word-spacing:6.694867pt;}
.wsce{word-spacing:6.700563pt;}
.ws103{word-spacing:6.748001pt;}
.ws143{word-spacing:6.886195pt;}
.ws2{word-spacing:6.887500pt;}
.ws145{word-spacing:6.934016pt;}
.ws20{word-spacing:7.029658pt;}
.ws42{word-spacing:7.066804pt;}
.wsfd{word-spacing:7.279340pt;}
.wsd7{word-spacing:7.385607pt;}
.ws9d{word-spacing:7.438741pt;}
.ws3e{word-spacing:7.491875pt;}
.ws72{word-spacing:7.545009pt;}
.wsf1{word-spacing:7.598143pt;}
.ws10b{word-spacing:7.603507pt;}
.ws9e{word-spacing:7.704411pt;}
.wsa7{word-spacing:7.757545pt;}
.ws44{word-spacing:7.916946pt;}
.ws10f{word-spacing:8.979623pt;}
.ws64{word-spacing:8.988207pt;}
.ws128{word-spacing:9.700053pt;}
.ws129{word-spacing:9.707622pt;}
.ws142{word-spacing:10.138010pt;}
.ws6d{word-spacing:10.679907pt;}
.ws62{word-spacing:11.742585pt;}
.wsb2{word-spacing:12.560733pt;}
.wsc8{word-spacing:12.583666pt;}
.wsdb{word-spacing:13.017441pt;}
.wsd9{word-spacing:13.228999pt;}
.wse0{word-spacing:13.278896pt;}
.wsa2{word-spacing:13.980999pt;}
.wsb3{word-spacing:14.320733pt;}
.wsf2{word-spacing:14.329799pt;}
.ws7{word-spacing:14.612403pt;}
.ws61{word-spacing:14.693702pt;}
.ws73{word-spacing:14.718081pt;}
.wscb{word-spacing:15.796466pt;}
.wsf3{word-spacing:16.991133pt;}
.ws1{word-spacing:17.640444pt;}
.ws108{word-spacing:17.663747pt;}
.ws11e{word-spacing:17.959737pt;}
.wsc3{word-spacing:19.287594pt;}
.ws0{word-spacing:20.297137pt;}
.ws88{word-spacing:22.635027pt;}
.wsfc{word-spacing:23.972229pt;}
.ws6b{word-spacing:25.003256pt;}
.ws6a{word-spacing:28.749389pt;}
.wse8{word-spacing:30.774634pt;}
.wsb7{word-spacing:37.206221pt;}
.ws109{word-spacing:39.181824pt;}
.wsba{word-spacing:39.359853pt;}
.wsea{word-spacing:46.136176pt;}
.ws16{word-spacing:47.820800pt;}
.wse9{word-spacing:54.487082pt;}
.wsb0{word-spacing:68.001178pt;}
.wse7{word-spacing:74.591114pt;}
.ws11c{word-spacing:82.287302pt;}
.ws46{word-spacing:84.834099pt;}
.wsb1{word-spacing:91.911578pt;}
.ws4b{word-spacing:93.154918pt;}
.wsda{word-spacing:116.027658pt;}
.ws118{word-spacing:118.452122pt;}
.wsaf{word-spacing:127.777178pt;}
.ws119{word-spacing:150.348595pt;}
.ws115{word-spacing:178.228122pt;}
.ws48{word-spacing:180.669867pt;}
.ws49{word-spacing:180.670933pt;}
.ws4e{word-spacing:205.288533pt;}
.ws4f{word-spacing:218.646400pt;}
.ws11f{word-spacing:222.397046pt;}
.ws51{word-spacing:222.832000pt;}
.ws117{word-spacing:229.300736pt;}
.ws114{word-spacing:241.255936pt;}
.ws4a{word-spacing:244.249600pt;}
.ws116{word-spacing:265.166336pt;}
.wsb6{word-spacing:314.029953pt;}
.wsb9{word-spacing:325.449711pt;}
._c5{margin-left:-396.469208pt;}
._b8{margin-left:-353.060350pt;}
._c1{margin-left:-325.763521pt;}
._9e{margin-left:-317.202059pt;}
._6e{margin-left:-307.551819pt;}
._95{margin-left:-290.536846pt;}
._5a{margin-left:-280.754045pt;}
._a6{margin-left:-267.494994pt;}
._82{margin-left:-263.255494pt;}
._c3{margin-left:-259.733826pt;}
._76{margin-left:-257.786106pt;}
._3a{margin-left:-254.452347pt;}
._7c{margin-left:-253.304705pt;}
._33{margin-left:-244.819443pt;}
._9b{margin-left:-241.779537pt;}
._8b{margin-left:-236.708562pt;}
._6a{margin-left:-233.676217pt;}
._a3{margin-left:-231.978175pt;}
._8f{margin-left:-230.350922pt;}
._4a{margin-left:-229.070353pt;}
._65{margin-left:-224.853728pt;}
._4e{margin-left:-222.680339pt;}
._99{margin-left:-221.211815pt;}
._53{margin-left:-218.530354pt;}
._68{margin-left:-213.857851pt;}
._d1{margin-left:-211.033072pt;}
._85{margin-left:-209.669670pt;}
._ba{margin-left:-207.805740pt;}
._47{margin-left:-206.766707pt;}
._3f{margin-left:-202.696206pt;}
._6d{margin-left:-200.670165pt;}
._5d{margin-left:-194.131577pt;}
._cf{margin-left:-190.486542pt;}
._87{margin-left:-188.799203pt;}
._c8{margin-left:-185.399276pt;}
._cd{margin-left:-184.278237pt;}
._43{margin-left:-182.527887pt;}
._7f{margin-left:-177.030001pt;}
._36{margin-left:-171.182057pt;}
._62{margin-left:-165.380212pt;}
._d5{margin-left:-158.730573pt;}
._8d{margin-left:-157.569911pt;}
._aa{margin-left:-155.837867pt;}
._a0{margin-left:-154.322028pt;}
._4c{margin-left:-152.247782pt;}
._70{margin-left:-149.807578pt;}
._61{margin-left:-147.495794pt;}
._91{margin-left:-134.134852pt;}
._50{margin-left:-129.721888pt;}
._94{margin-left:-126.112116pt;}
._7a{margin-left:-122.990060pt;}
._55{margin-left:-121.986095pt;}
._30{margin-left:-118.947033pt;}
._38{margin-left:-117.105177pt;}
._b5{margin-left:-114.237726pt;}
._c2{margin-left:-112.348113pt;}
._92{margin-left:-107.985273pt;}
._51{margin-left:-104.451630pt;}
._c9{margin-left:-101.924470pt;}
._7b{margin-left:-98.656950pt;}
._ca{margin-left:-96.886696pt;}
._31{margin-left:-95.408119pt;}
._44{margin-left:-91.632315pt;}
._d6{margin-left:-89.576961pt;}
._84{margin-left:-86.036278pt;}
._9c{margin-left:-84.919906pt;}
._3e{margin-left:-83.233453pt;}
._6b{margin-left:-82.183596pt;}
._52{margin-left:-80.636437pt;}
._79{margin-left:-78.095120pt;}
._86{margin-left:-76.798124pt;}
._a4{margin-left:-75.061780pt;}
._42{margin-left:-73.471619pt;}
._73{margin-left:-72.034971pt;}
._90{margin-left:-70.803308pt;}
._4f{margin-left:-67.651355pt;}
._89{margin-left:-65.888627pt;}
._49{margin-left:-62.706319pt;}
._a8{margin-left:-60.851698pt;}
._78{margin-left:-58.902541pt;}
._d7{margin-left:-55.037110pt;}
._d4{margin-left:-52.795222pt;}
._98{margin-left:-45.607699pt;}
._67{margin-left:-43.725651pt;}
._57{margin-left:-42.325841pt;}
._a7{margin-left:-40.529955pt;}
._77{margin-left:-39.305198pt;}
._28{margin-left:-37.302402pt;}
._4{margin-left:-35.833719pt;}
._5e{margin-left:-34.940000pt;}
._bc{margin-left:-31.633396pt;}
._59{margin-left:-28.714528pt;}
._af{margin-left:-26.816331pt;}
._75{margin-left:-25.675467pt;}
._b1{margin-left:-22.548414pt;}
._bb{margin-left:-19.744611pt;}
._5c{margin-left:-18.786927pt;}
._34{margin-left:-17.589721pt;}
._be{margin-left:-16.312298pt;}
._b0{margin-left:-13.346490pt;}
._bf{margin-left:-10.199357pt;}
._4b{margin-left:-7.425985pt;}
._3{margin-left:-5.993540pt;}
._6{margin-left:-4.926618pt;}
._2{margin-left:-3.416200pt;}
._0{margin-left:-1.700284pt;}
._1{width:1.487748pt;}
._5f{width:2.928550pt;}
._ac{width:4.099493pt;}
._7e{width:6.603620pt;}
._b{width:8.517393pt;}
._1b{width:10.898755pt;}
._5{width:12.454331pt;}
._2c{width:13.708538pt;}
._c{width:14.983750pt;}
._ab{width:15.993294pt;}
._ad{width:17.374774pt;}
._ae{width:18.437452pt;}
._45{width:20.020970pt;}
._2a{width:21.112805pt;}
._2b{width:23.567279pt;}
._da{width:25.403315pt;}
._d{width:26.559297pt;}
._88{width:28.087166pt;}
._e{width:29.454578pt;}
._8c{width:30.577221pt;}
._29{width:31.548429pt;}
._60{width:35.437301pt;}
._97{width:36.923782pt;}
._db{width:39.932266pt;}
._d9{width:47.502168pt;}
._c6{width:50.326597pt;}
._9{width:53.133867pt;}
._b4{width:54.966190pt;}
._cb{width:56.687731pt;}
._c7{width:58.929618pt;}
._1e{width:60.015104pt;}
._8{width:63.761067pt;}
._27{width:65.078162pt;}
._d2{width:70.976685pt;}
._21{width:73.261466pt;}
._56{width:74.687243pt;}
._69{width:76.611083pt;}
._ce{width:78.589248pt;}
._9a{width:80.025513pt;}
._b9{width:90.819440pt;}
._b7{width:93.247744pt;}
._26{width:98.191029pt;}
._46{width:99.220760pt;}
._35{width:103.014982pt;}
._16{width:105.175467pt;}
._7d{width:107.434378pt;}
._bd{width:111.241196pt;}
._3c{width:116.165831pt;}
._41{width:119.941635pt;}
._58{width:122.520233pt;}
._37{width:124.693622pt;}
._24{width:126.895138pt;}
._80{width:129.158485pt;}
._20{width:133.028975pt;}
._71{width:134.473875pt;}
._48{width:136.039713pt;}
._66{width:137.807634pt;}
._a1{width:139.281513pt;}
._72{width:140.828277pt;}
._15{width:142.550537pt;}
._13{width:144.084070pt;}
._a2{width:145.847290pt;}
._63{width:147.256353pt;}
._7{width:152.357069pt;}
._25{width:156.039270pt;}
._8a{width:157.521885pt;}
._c0{width:158.956321pt;}
._a9{width:162.060401pt;}
._cc{width:163.425223pt;}
._d0{width:168.731917pt;}
._6f{width:171.421498pt;}
._3b{width:172.452937pt;}
._2e{width:176.363110pt;}
._9f{width:177.503039pt;}
._39{width:179.212547pt;}
._81{width:186.470729pt;}
._2f{width:188.127027pt;}
._11{width:190.601965pt;}
._14{width:192.633865pt;}
._10{width:193.722061pt;}
._17{width:197.002684pt;}
._54{width:199.804493pt;}
._32{width:203.285600pt;}
._93{width:206.048354pt;}
._b6{width:207.855012pt;}
._3d{width:210.560929pt;}
._2d{width:212.037427pt;}
._23{width:214.995550pt;}
._83{width:218.988854pt;}
._5b{width:229.532042pt;}
._d8{width:230.939455pt;}
._6c{width:235.462816pt;}
._b3{width:236.403231pt;}
._96{width:237.654640pt;}
._9d{width:243.785221pt;}
._1f{width:249.418317pt;}
._f{width:251.393946pt;}
._b2{width:253.211136pt;}
._d3{width:259.498846pt;}
._12{width:268.657254pt;}
._22{width:273.965363pt;}
._4d{width:276.480940pt;}
._40{width:280.164651pt;}
._8e{width:286.264096pt;}
._74{width:290.497461pt;}
._a5{width:300.776923pt;}
._18{width:312.821274pt;}
._64{width:314.423165pt;}
._1d{width:318.825165pt;}
._19{width:326.904158pt;}
._1c{width:346.041993pt;}
._c4{width:370.354912pt;}
._1a{width:387.217570pt;}
._a{width:611.458428pt;}
.fs1b{font-size:18.215680pt;}
.fs1e{font-size:18.252800pt;}
.fse{font-size:18.418556pt;}
.fs13{font-size:18.921548pt;}
.fs1c{font-size:21.251627pt;}
.fs1f{font-size:21.294933pt;}
.fs25{font-size:21.435709pt;}
.fs2d{font-size:24.636128pt;}
.fs2a{font-size:24.670037pt;}
.fs17{font-size:26.083200pt;}
.fs19{font-size:26.324480pt;}
.fs9{font-size:26.566933pt;}
.fs1d{font-size:30.359467pt;}
.fs20{font-size:30.421333pt;}
.fs18{font-size:30.430400pt;}
.fs23{font-size:31.000320pt;}
.fs7{font-size:31.430118pt;}
.fs5{font-size:31.880533pt;}
.fs24{font-size:36.167040pt;}
.fsa{font-size:37.193600pt;}
.fs21{font-size:37.504320pt;}
.fsc{font-size:37.680575pt;}
.fs8{font-size:37.716594pt;}
.fs2c{font-size:39.523200pt;}
.fs2b{font-size:39.577600pt;}
.fs11{font-size:41.474231pt;}
.fs16{font-size:42.112389pt;}
.fs29{font-size:43.377028pt;}
.fs27{font-size:43.542843pt;}
.fsb{font-size:43.559680pt;}
.fs1a{font-size:43.874133pt;}
.fs6{font-size:44.000808pt;}
.fsd{font-size:44.293120pt;}
.fs12{font-size:45.502720pt;}
.fs4{font-size:47.820800pt;}
.fs10{font-size:48.386541pt;}
.fs15{font-size:49.131183pt;}
.fs26{font-size:51.548800pt;}
.fs0{font-size:53.133867pt;}
.fs22{font-size:53.577600pt;}
.fsf{font-size:55.218756pt;}
.fs14{font-size:56.726724pt;}
.fs2{font-size:63.761067pt;}
.fs28{font-size:64.264171pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:110.200000pt;}
.y2c5{bottom:-1.761251pt;}
.y0{bottom:0.000000pt;}
.y404{bottom:1.030976pt;}
.y2c3{bottom:1.937054pt;}
.y275{bottom:1.961088pt;}
.y125{bottom:2.041358pt;}
.y402{bottom:2.602642pt;}
.y2b8{bottom:2.963208pt;}
.y47e{bottom:3.149082pt;}
.y4a0{bottom:3.548854pt;}
.y9b{bottom:3.551657pt;}
.y4a7{bottom:3.557088pt;}
.y15e{bottom:3.569866pt;}
.y2aa{bottom:4.002839pt;}
.y234{bottom:4.083953pt;}
.y22d{bottom:4.085292pt;}
.y137{bottom:4.200470pt;}
.y474{bottom:4.708085pt;}
.y3f0{bottom:4.723073pt;}
.y343{bottom:4.798098pt;}
.y18d{bottom:4.800269pt;}
.y4a2{bottom:4.858060pt;}
.y3e9{bottom:4.862405pt;}
.y3c6{bottom:4.942789pt;}
.y38d{bottom:5.007096pt;}
.y2b9{bottom:5.015677pt;}
.y3b8{bottom:5.141069pt;}
.y38f{bottom:5.210735pt;}
.y390{bottom:5.317914pt;}
.y180{bottom:5.348696pt;}
.y385{bottom:5.382221pt;}
.y36a{bottom:5.457246pt;}
.y339{bottom:5.516194pt;}
.y3df{bottom:5.553707pt;}
.y2de{bottom:5.660885pt;}
.y3f1{bottom:5.741269pt;}
.y247{bottom:5.811268pt;}
.y344{bottom:5.880601pt;}
.y336{bottom:5.998498pt;}
.y277{bottom:6.039232pt;}
.y328{bottom:6.062805pt;}
.y362{bottom:6.175342pt;}
.y37f{bottom:6.277162pt;}
.y312{bottom:6.502237pt;}
.y2d4{bottom:6.646928pt;}
.y35d{bottom:6.721953pt;}
.y32c{bottom:6.802337pt;}
.y394{bottom:6.995258pt;}
.y3ac{bottom:7.043488pt;}
.y2a4{bottom:7.052069pt;}
.y3b6{bottom:7.193538pt;}
.y382{bottom:7.348947pt;}
.y3e1{bottom:7.413254pt;}
.y3a4{bottom:7.493638pt;}
.y3d2{bottom:7.557945pt;}
.y3ea{bottom:7.643688pt;}
.y3f4{bottom:7.718713pt;}
.y3be{bottom:7.852686pt;}
.y310{bottom:7.959865pt;}
.y366{bottom:8.029531pt;}
.y270{bottom:8.086342pt;}
.y38b{bottom:8.088479pt;}
.y33a{bottom:8.243888pt;}
.y3d0{bottom:8.286760pt;}
.y3f9{bottom:8.517193pt;}
.y3b3{bottom:8.570783pt;}
.y2db{bottom:8.752986pt;}
.y38e{bottom:8.806576pt;}
.y3eb{bottom:8.886959pt;}
.y2e9{bottom:8.994138pt;}
.y3c4{bottom:9.037009pt;}
.y272{bottom:9.072385pt;}
.y361{bottom:9.149547pt;}
.y345{bottom:9.310315pt;}
.y3c7{bottom:9.369263pt;}
.y325{bottom:9.492518pt;}
.y34d{bottom:9.556825pt;}
.y380{bottom:9.615774pt;}
.y379{bottom:9.696157pt;}
.y31e{bottom:9.808695pt;}
.y3ab{bottom:9.830131pt;}
.y3a8{bottom:9.915873pt;}
.y368{bottom:10.017693pt;}
.y2b5{bottom:10.026274pt;}
.y3a0{bottom:10.146307pt;}
.y2f9{bottom:10.253486pt;}
.y174{bottom:10.284536pt;}
.y300{bottom:10.333870pt;}
.y33f{bottom:10.392818pt;}
.y34b{bottom:10.473202pt;}
.y2fc{bottom:10.569663pt;}
.y3ca{bottom:10.601816pt;}
.y15d{bottom:10.634066pt;}
.y347{bottom:10.714354pt;}
.y39e{bottom:10.778661pt;}
.y2e4{bottom:10.891198pt;}
.y3e7{bottom:10.955505pt;}
.y2ad{bottom:11.012316pt;}
.y354{bottom:11.062684pt;}
.y3f2{bottom:11.132350pt;}
.y370{bottom:11.239529pt;}
.y2f2{bottom:11.335989pt;}
.y324{bottom:11.427091pt;}
.y322{bottom:11.609295pt;}
.y398{bottom:11.673602pt;}
.y35b{bottom:11.887959pt;}
.y2ee{bottom:11.989778pt;}
.y283{bottom:12.009077pt;}
.y32d{bottom:12.086239pt;}
.y2fd{bottom:12.289878pt;}
.y3a2{bottom:12.348826pt;}
.y348{bottom:12.466723pt;}
.y399{bottom:12.638209pt;}
.y3bf{bottom:12.718592pt;}
.y3c2{bottom:12.804335pt;}
.y3b0{bottom:12.900796pt;}
.y296{bottom:12.962966pt;}
.y395{bottom:13.083000pt;}
.y3e4{bottom:13.163383pt;}
.y3b4{bottom:13.340228pt;}
.y33d{bottom:13.463483pt;}
.y359{bottom:13.565303pt;}
.y3a9{bottom:13.629610pt;}
.y2d9{bottom:13.758224pt;}
.y3f5{bottom:13.924351pt;}
.y288{bottom:13.943650pt;}
.y11e{bottom:14.011390pt;}
.y38c{bottom:14.026171pt;}
.y181{bottom:14.123522pt;}
.y381{bottom:14.127990pt;}
.y246{bottom:14.207188pt;}
.y3fc{bottom:14.213733pt;}
.y3cc{bottom:14.294117pt;}
.y355{bottom:14.412014pt;}
.y3e2{bottom:14.481680pt;}
.y2fe{bottom:14.621012pt;}
.y3fe{bottom:14.674601pt;}
.y39a{bottom:14.776421pt;}
.y233{bottom:14.800812pt;}
.y22c{bottom:14.802151pt;}
.y2af{bottom:14.876103pt;}
.y99{bottom:14.981081pt;}
.y372{bottom:14.996137pt;}
.y2f5{bottom:15.114033pt;}
.y340{bottom:15.215853pt;}
.y18e{bottom:15.220376pt;}
.y342{bottom:15.323031pt;}
.y37c{bottom:15.430210pt;}
.y2c1{bottom:15.444128pt;}
.y3ec{bottom:15.521311pt;}
.y1b8{bottom:15.559227pt;}
.y376{bottom:15.644567pt;}
.y3d8{bottom:15.746386pt;}
.y297{bottom:15.829992pt;}
.y2dc{bottom:15.885719pt;}
.y341{bottom:15.987538pt;}
.y3f6{bottom:16.073281pt;}
.y335{bottom:16.201895pt;}
.y39c{bottom:16.287638pt;}
.y1ef{bottom:16.351467pt;}
.y319{bottom:16.426970pt;}
.y130{bottom:16.525261pt;}
.y3d3{bottom:16.646686pt;}
.y28a{bottom:16.778522pt;}
.y3e5{bottom:16.898556pt;}
.y4a3{bottom:16.920870pt;}
.y3e3{bottom:17.145066pt;}
.y351{bottom:17.648806pt;}
.y278{bottom:17.710976pt;}
.y337{bottom:17.873881pt;}
.y35c{bottom:18.329389pt;}
.y30e{bottom:18.570541pt;}
.y2a6{bottom:18.627352pt;}
.y37d{bottom:18.768821pt;}
.y2d3{bottom:19.009973pt;}
.y3f3{bottom:19.208253pt;}
.y2cd{bottom:19.460123pt;}
.y15c{bottom:19.494040pt;}
.y266{bottom:19.559806pt;}
.y2c7{bottom:19.685198pt;}
.y3b2{bottom:19.867402pt;}
.y38a{bottom:20.103194pt;}
.y31f{bottom:20.355064pt;}
.y299{bottom:20.449387pt;}
.y3c5{bottom:20.537267pt;}
.y175{bottom:20.704642pt;}
.y2c8{bottom:20.778419pt;}
.y3bb{bottom:20.971341pt;}
.y3ee{bottom:21.207133pt;}
.y161{bottom:21.308888pt;}
.y29a{bottom:21.349687pt;}
.y396{bottom:21.437567pt;}
.y3d5{bottom:21.662642pt;}
.y33c{bottom:21.925230pt;}
.y3ff{bottom:22.150305pt;}
.y30f{bottom:22.402174pt;}
.y329{bottom:22.643326pt;}
.y2e5{bottom:22.884478pt;}
.y15f{bottom:23.120583pt;}
.y32b{bottom:23.125629pt;}
.y273{bottom:23.171723pt;}
.y3da{bottom:23.339986pt;}
.y182{bottom:23.446776pt;}
.y3d9{bottom:23.811572pt;}
.y26d{bottom:24.066663pt;}
.y2ce{bottom:24.326029pt;}
.y3d4{bottom:24.529668pt;}
.y245{bottom:24.737416pt;}
.y2d6{bottom:24.797615pt;}
.y2a7{bottom:24.897297pt;}
.y162{bottom:24.935485pt;}
.y327{bottom:25.038766pt;}
.y2ca{bottom:25.269200pt;}
.y3ce{bottom:25.472840pt;}
.y1ec{bottom:25.477867pt;}
.y232{bottom:25.517671pt;}
.y22b{bottom:25.519011pt;}
.y18f{bottom:25.640482pt;}
.y304{bottom:25.756863pt;}
.y333{bottom:25.976579pt;}
.y1d6{bottom:26.183598pt;}
.y1dd{bottom:26.183826pt;}
.y1d3{bottom:26.184129pt;}
.y1da{bottom:26.184357pt;}
.y356{bottom:26.207013pt;}
.y215{bottom:26.236955pt;}
.y21c{bottom:26.237183pt;}
.y212{bottom:26.237487pt;}
.y219{bottom:26.237716pt;}
.y331{bottom:26.442805pt;}
.y263{bottom:26.655025pt;}
.y2eb{bottom:26.683957pt;}
.y39d{bottom:26.876878pt;}
.y24a{bottom:26.894392pt;}
.y47d{bottom:26.895642pt;}
.y2f3{bottom:27.134107pt;}
.y4a6{bottom:27.271008pt;}
.y306{bottom:27.375259pt;}
.y2a2{bottom:27.501736pt;}
.y3a1{bottom:27.568180pt;}
.y3e6{bottom:27.803973pt;}
.y3fb{bottom:28.291635pt;}
.y28b{bottom:28.364523pt;}
.y3aa{bottom:28.548864pt;}
.y35f{bottom:28.838246pt;}
.y248{bottom:29.047623pt;}
.y367{bottom:29.100833pt;}
.y397{bottom:29.341985pt;}
.y360{bottom:29.631367pt;}
.y37b{bottom:29.872519pt;}
.y2a0{bottom:30.100816pt;}
.y374{bottom:30.124388pt;}
.y160{bottom:30.373723pt;}
.y3fd{bottom:30.376258pt;}
.y2e8{bottom:30.644204pt;}
.y400{bottom:30.801375pt;}
.y2cf{bottom:30.874638pt;}
.y29e{bottom:30.958244pt;}
.y3cf{bottom:31.078278pt;}
.y176{bottom:31.124749pt;}
.y24b{bottom:31.204599pt;}
.y3b7{bottom:31.324788pt;}
.y1bb{bottom:31.497947pt;}
.y302{bottom:31.608811pt;}
.y346{bottom:31.828527pt;}
.y2bd{bottom:31.837108pt;}
.y318{bottom:32.085756pt;}
.y183{bottom:32.221602pt;}
.y1d5{bottom:32.255719pt;}
.y1dc{bottom:32.255947pt;}
.y1d2{bottom:32.256250pt;}
.y1d9{bottom:32.256478pt;}
.y2c2{bottom:32.294142pt;}
.y214{bottom:32.321450pt;}
.y21b{bottom:32.321678pt;}
.y211{bottom:32.321982pt;}
.y218{bottom:32.322210pt;}
.y309{bottom:32.332267pt;}
.y3d7{bottom:32.541265pt;}
.y292{bottom:32.726690pt;}
.y316{bottom:32.830647pt;}
.y338{bottom:33.050363pt;}
.y3a7{bottom:33.296873pt;}
.y384{bottom:33.564820pt;}
.y2a9{bottom:33.589477pt;}
.y353{bottom:33.864920pt;}
.y475{bottom:34.044981pt;}
.y32a{bottom:34.143584pt;}
.y365{bottom:34.416889pt;}
.y276{bottom:34.479059pt;}
.y3e0{bottom:34.658041pt;}
.y2fb{bottom:34.979577pt;}
.y2ea{bottom:35.231446pt;}
.y290{bottom:35.325770pt;}
.y3c9{bottom:35.456521pt;}
.y190{bottom:35.512162pt;}
.y307{bottom:35.761980pt;}
.y9a{bottom:35.808053pt;}
.y2d2{bottom:36.029926pt;}
.y26f{bottom:36.209993pt;}
.y231{bottom:36.234531pt;}
.y22a{bottom:36.235870pt;}
.y375{bottom:36.287155pt;}
.y3db{bottom:36.539024pt;}
.y2ff{bottom:36.839124pt;}
.y294{bottom:37.051344pt;}
.y364{bottom:37.090994pt;}
.y330{bottom:37.353581pt;}
.y2e1{bottom:37.610810pt;}
.y249{bottom:37.668101pt;}
.y37e{bottom:37.862680pt;}
.y281{bottom:37.908773pt;}
.y2d7{bottom:38.135985pt;}
.y1d4{bottom:38.327840pt;}
.y1db{bottom:38.328068pt;}
.y1d1{bottom:38.328371pt;}
.y1d8{bottom:38.328599pt;}
.y3b9{bottom:38.366419pt;}
.y213{bottom:38.405945pt;}
.y21a{bottom:38.406173pt;}
.y210{bottom:38.406477pt;}
.y217{bottom:38.406705pt;}
.y2fa{bottom:38.682595pt;}
.y2b1{bottom:38.750124pt;}
.y449{bottom:38.801211pt;}
.y3c1{bottom:38.913029pt;}
.y303{bottom:39.223847pt;}
.y14b{bottom:39.317979pt;}
.y3c3{bottom:39.438204pt;}
.y1bf{bottom:39.467307pt;}
.y27c{bottom:39.628988pt;}
.y2d0{bottom:39.732945pt;}
.y157{bottom:39.857140pt;}
.y442{bottom:39.994459pt;}
.y2e0{bottom:40.006250pt;}
.y31a{bottom:40.279556pt;}
.y429{bottom:40.283841pt;}
.y413{bottom:40.332071pt;}
.y42b{bottom:40.433891pt;}
.y438{bottom:40.471403pt;}
.y410{bottom:40.482121pt;}
.y280{bottom:40.486417pt;}
.y3b1{bottom:40.509990pt;}
.y434{bottom:40.530351pt;}
.y437{bottom:40.567864pt;}
.y406{bottom:40.583941pt;}
.y421{bottom:40.632171pt;}
.y436{bottom:40.664325pt;}
.y42f{bottom:40.701837pt;}
.y412{bottom:40.792939pt;}
.y2e3{bottom:40.810090pt;}
.y41a{bottom:40.894758pt;}
.y40b{bottom:40.980501pt;}
.y184{bottom:40.996429pt;}
.y42e{bottom:41.034091pt;}
.y428{bottom:41.055526pt;}
.y34a{bottom:41.099472pt;}
.y42d{bottom:41.151987pt;}
.y43e{bottom:41.178782pt;}
.y41e{bottom:41.210935pt;}
.y41b{bottom:41.227012pt;}
.y41d{bottom:41.264524pt;}
.y407{bottom:41.280601pt;}
.y114{bottom:41.297798pt;}
.y439{bottom:41.323473pt;}
.y43b{bottom:41.339549pt;}
.y3c8{bottom:41.351341pt;}
.y433{bottom:41.366344pt;}
.y43d{bottom:41.393139pt;}
.y422{bottom:41.425292pt;}
.y414{bottom:41.446728pt;}
.y440{bottom:41.478882pt;}
.y427{bottom:41.505676pt;}
.y443{bottom:41.543189pt;}
.y177{bottom:41.544856pt;}
.y40f{bottom:41.559265pt;}
.y41c{bottom:41.596778pt;}
.y420{bottom:41.618214pt;}
.y430{bottom:41.645008pt;}
.y31b{bottom:41.667518pt;}
.y42c{bottom:41.677162pt;}
.y447{bottom:41.703956pt;}
.y444{bottom:41.736110pt;}
.y431{bottom:41.762905pt;}
.y416{bottom:41.778981pt;}
.y411{bottom:41.816494pt;}
.y43a{bottom:41.848648pt;}
.y424{bottom:41.875442pt;}
.y40d{bottom:41.891519pt;}
.y408{bottom:41.923672pt;}
.y441{bottom:41.950467pt;}
.y314{bottom:41.956900pt;}
.y159{bottom:41.968195pt;}
.y435{bottom:41.982621pt;}
.y446{bottom:42.004056pt;}
.y409{bottom:42.030851pt;}
.y40a{bottom:42.052287pt;}
.y415{bottom:42.079081pt;}
.y445{bottom:42.111235pt;}
.y419{bottom:42.138030pt;}
.y423{bottom:42.164824pt;}
.y29c{bottom:42.195915pt;}
.y42a{bottom:42.196978pt;}
.y40c{bottom:42.213055pt;}
.y373{bottom:42.230205pt;}
.y448{bottom:42.250567pt;}
.y128{bottom:42.253257pt;}
.y43f{bottom:42.282721pt;}
.y40e{bottom:42.298797pt;}
.y41f{bottom:42.336310pt;}
.y432{bottom:42.368463pt;}
.y43c{bottom:42.405976pt;}
.y426{bottom:42.422053pt;}
.y425{bottom:42.454206pt;}
.y417{bottom:42.481001pt;}
.y386{bottom:42.498152pt;}
.y418{bottom:42.513155pt;}
.y11f{bottom:42.765007pt;}
.y2df{bottom:42.808969pt;}
.y301{bottom:43.109069pt;}
.y3ae{bottom:43.377016pt;}
.y3dc{bottom:43.682475pt;}
.y476{bottom:43.823947pt;}
.y295{bottom:43.937566pt;}
.y377{bottom:44.009369pt;}
.y3dd{bottom:44.314828pt;}
.y1d0{bottom:44.400492pt;}
.y1d7{bottom:44.400720pt;}
.y20f{bottom:44.490972pt;}
.y216{bottom:44.491200pt;}
.y358{bottom:44.657799pt;}
.y2b4{bottom:44.821789pt;}
.y308{bottom:44.973976pt;}
.y39b{bottom:45.252640pt;}
.y321{bottom:45.600971pt;}
.y26b{bottom:45.748883pt;}
.y31c{bottom:45.911788pt;}
.y131{bottom:45.921914pt;}
.y191{bottom:45.932269pt;}
.y332{bottom:46.190453pt;}
.y2c4{bottom:46.423241pt;}
.y2f4{bottom:46.485194pt;}
.y269{bottom:46.649183pt;}
.y3f8{bottom:46.747781pt;}
.y403{bottom:46.919684pt;}
.y230{bottom:46.951390pt;}
.y229{bottom:46.952730pt;}
.y3cd{bottom:47.026445pt;}
.y2c9{bottom:47.358699pt;}
.y29d{bottom:47.544124pt;}
.y34f{bottom:47.664158pt;}
.y36f{bottom:47.958899pt;}
.y15a{bottom:48.128177pt;}
.y2ed{bottom:48.269716pt;}
.y35e{bottom:48.553740pt;}
.y315{bottom:48.843122pt;}
.y3a6{bottom:49.105709pt;}
.y286{bottom:49.409031pt;}
.y2f7{bottom:49.416527pt;}
.y36d{bottom:49.711268pt;}
.y3ef{bottom:50.000650pt;}
.y185{bottom:50.319682pt;}
.y334{bottom:50.322186pt;}
.y282{bottom:50.357561pt;}
.y2da{bottom:50.649080pt;}
.y2d5{bottom:50.981334pt;}
.y3d{bottom:51.094489pt;}
.y2f8{bottom:51.297510pt;}
.y285{bottom:51.311450pt;}
.y242{bottom:51.448325pt;}
.y478{bottom:51.557434pt;}
.y388{bottom:51.592251pt;}
.y30a{bottom:51.929864pt;}
.y4a4{bottom:52.063582pt;}
.y2e2{bottom:52.224605pt;}
.y264{bottom:52.292134pt;}
.y391{bottom:52.508628pt;}
.y178{bottom:52.513389pt;}
.y363{bottom:52.814087pt;}
.y32e{bottom:53.119546pt;}
.y2ab{bottom:53.240664pt;}
.y3de{bottom:53.376774pt;}
.y115{bottom:53.544845pt;}
.y320{bottom:53.709028pt;}
.y34c{bottom:53.976974pt;}
.y2ae{bottom:54.237424pt;}
.y387{bottom:54.244920pt;}
.y357{bottom:54.550379pt;}
.y389{bottom:54.802249pt;}
.y39f{bottom:55.080913pt;}
.y2a5{bottom:55.260979pt;}
.y2dd{bottom:55.397090pt;}
.y378{bottom:55.670395pt;}
.y326{bottom:55.991931pt;}
.y3fa{bottom:56.265236pt;}
.y2b2{bottom:56.279176pt;}
.y192{bottom:56.352376pt;}
.y393{bottom:56.565336pt;}
.y34e{bottom:56.876154pt;}
.y2f1{bottom:57.170895pt;}
.y28c{bottom:57.318808pt;}
.y2d8{bottom:57.454918pt;}
.y22f{bottom:57.668250pt;}
.y228{bottom:57.669589pt;}
.y3ad{bottom:57.712146pt;}
.y37a{bottom:58.022964pt;}
.y31d{bottom:58.339141pt;}
.y279{bottom:58.369157pt;}
.y2ec{bottom:58.633882pt;}
.y243{bottom:58.769567pt;}
.y3af{bottom:58.896469pt;}
.y186{bottom:59.094509pt;}
.y3ba{bottom:59.201928pt;}
.y9c{bottom:59.232816pt;}
.y2b6{bottom:59.392712pt;}
.y36c{bottom:59.539541pt;}
.y15b{bottom:59.540066pt;}
.y35a{bottom:59.861076pt;}
.y32f{bottom:60.198689pt;}
.y120{bottom:60.393669pt;}
.y293{bottom:60.443062pt;}
.y3e8{bottom:60.504147pt;}
.y311{bottom:60.863196pt;}
.y3f7{bottom:61.168654pt;}
.y479{bottom:61.342996pt;}
.y2ba{bottom:61.471976pt;}
.y30c{bottom:61.527703pt;}
.y2e6{bottom:61.849238pt;}
.y3cb{bottom:62.138620pt;}
.y369{bottom:62.481592pt;}
.y271{bottom:62.543762pt;}
.y3bd{bottom:62.770974pt;}
.y179{bottom:62.933496pt;}
.y317{bottom:63.124663pt;}
.y129{bottom:63.218635pt;}
.y350{bottom:63.430122pt;}
.y284{bottom:63.556599pt;}
.y132{bottom:63.747604pt;}
.y2f0{bottom:63.762375pt;}
.y30d{bottom:64.094629pt;}
.y4a5{bottom:64.118158pt;}
.y36e{bottom:64.432241pt;}
.y289{bottom:64.590872pt;}
.y33b{bottom:64.796648pt;}
.y3ed{bottom:65.139620pt;}
.y1cc{bottom:65.271639pt;}
.y1c9{bottom:65.272170pt;}
.y20b{bottom:65.404422pt;}
.y223{bottom:65.404650pt;}
.y208{bottom:65.404954pt;}
.y220{bottom:65.405182pt;}
.y3b5{bottom:65.498668pt;}
.y29f{bottom:65.635863pt;}
.y116{bottom:65.791893pt;}
.y349{bottom:65.905946pt;}
.y352{bottom:66.275712pt;}
.y392{bottom:66.586530pt;}
.y29b{bottom:66.659418pt;}
.y193{bottom:66.772482pt;}
.y313{bottom:66.956296pt;}
.y305{bottom:67.293908pt;}
.y36b{bottom:67.594008pt;}
.y2be{bottom:67.682973pt;}
.y2cb{bottom:67.904826pt;}
.y2ef{bottom:68.231721pt;}
.y22e{bottom:68.385109pt;}
.y187{bottom:68.417762pt;}
.y3c0{bottom:68.521103pt;}
.y2bb{bottom:68.690451pt;}
.y30b{bottom:68.864074pt;}
.y2e7{bottom:69.185610pt;}
.y33e{bottom:69.501786pt;}
.y2a1{bottom:69.708648pt;}
.y3a3{bottom:69.791169pt;}
.y3d6{bottom:70.085910pt;}
.y371{bottom:70.434240pt;}
.y2d1{bottom:70.739699pt;}
.y27b{bottom:70.742921pt;}
.y1cd{bottom:70.963887pt;}
.y1cf{bottom:70.965026pt;}
.y2cc{bottom:71.050516pt;}
.y20c{bottom:71.108270pt;}
.y20e{bottom:71.109639pt;}
.y47a{bottom:71.118663pt;}
.y1cb{bottom:71.343760pt;}
.y1c8{bottom:71.344291pt;}
.y2f6{bottom:71.355975pt;}
.y20a{bottom:71.488916pt;}
.y222{bottom:71.489145pt;}
.y207{bottom:71.489449pt;}
.y21f{bottom:71.489677pt;}
.y3bc{bottom:71.629281pt;}
.y274{bottom:71.745040pt;}
.y3a5{bottom:71.950816pt;}
.y383{bottom:72.277711pt;}
.y244{bottom:72.332788pt;}
.y323{bottom:72.620682pt;}
.y2ac{bottom:72.720365pt;}
.y3d1{bottom:72.904705pt;}
.y17a{bottom:73.353602pt;}
.y28e{bottom:73.717125pt;}
.y26c{bottom:74.735321pt;}
.y126{bottom:75.606046pt;}
.y265{bottom:75.716005pt;}
.y2b7{bottom:76.669894pt;}
.y1ce{bottom:77.037147pt;}
.y188{bottom:77.192589pt;}
.y20d{bottom:77.194133pt;}
.y1ca{bottom:77.415881pt;}
.y1c7{bottom:77.416412pt;}
.y209{bottom:77.573411pt;}
.y221{bottom:77.573639pt;}
.y206{bottom:77.573944pt;}
.y21e{bottom:77.574172pt;}
.y2a8{bottom:77.650578pt;}
.y121{bottom:78.022331pt;}
.y117{bottom:78.027868pt;}
.y138{bottom:78.239274pt;}
.y267{bottom:79.622663pt;}
.y268{bottom:80.587270pt;}
.y47b{bottom:80.894330pt;}
.y405{bottom:81.124924pt;}
.y27a{bottom:81.546518pt;}
.y133{bottom:81.573295pt;}
.y2bc{bottom:82.500407pt;}
.y235{bottom:83.118949pt;}
.y11d{bottom:83.354115pt;}
.y1c6{bottom:83.488533pt;}
.y27f{bottom:83.507885pt;}
.y205{bottom:83.658439pt;}
.y21d{bottom:83.658667pt;}
.y17b{bottom:83.773709pt;}
.y12a{bottom:84.195389pt;}
.y12f{bottom:84.208471pt;}
.y28d{bottom:84.488569pt;}
.y298{bottom:85.474612pt;}
.y26a{bottom:86.514244pt;}
.y189{bottom:86.515842pt;}
.y11c{bottom:86.546911pt;}
.y12e{bottom:87.488459pt;}
.y2bf{bottom:87.527081pt;}
.y194{bottom:87.612696pt;}
.y14d{bottom:88.340266pt;}
.y2b3{bottom:88.572072pt;}
.y26e{bottom:89.659934pt;}
.y118{bottom:90.274915pt;}
.y47c{bottom:90.669998pt;}
.y287{bottom:90.710284pt;}
.y2a3{bottom:91.787428pt;}
.y155{bottom:92.146240pt;}
.y2b0{bottom:92.886008pt;}
.y2c6{bottom:93.700683pt;}
.y291{bottom:94.006024pt;}
.y17c{bottom:94.742242pt;}
.y14e{bottom:94.861066pt;}
.y28f{bottom:95.131399pt;}
.y18a{bottom:95.290669pt;}
.y122{bottom:95.650993pt;}
.y27d{bottom:96.267491pt;}
.y27e{bottom:97.403584pt;}
.y195{bottom:97.484376pt;}
.y1c5{bottom:98.667811pt;}
.y1c2{bottom:98.668039pt;}
.y1c0{bottom:98.668267pt;}
.y134{bottom:99.398985pt;}
.y14f{bottom:101.925266pt;}
.y3e{bottom:102.215953pt;}
.y119{bottom:102.521963pt;}
.y154{bottom:104.098866pt;}
.y201{bottom:104.572116pt;}
.y1fe{bottom:104.572649pt;}
.y18b{bottom:104.613922pt;}
.y1c4{bottom:104.739932pt;}
.y1c1{bottom:104.740160pt;}
.y12b{bottom:105.160767pt;}
.y17d{bottom:105.162349pt;}
.y238{bottom:107.208148pt;}
.y158{bottom:107.359266pt;}
.y49e{bottom:107.865400pt;}
.y196{bottom:107.904482pt;}
.y150{bottom:108.446066pt;}
.y202{bottom:110.275964pt;}
.y204{bottom:110.277105pt;}
.y200{bottom:110.656611pt;}
.y1fd{bottom:110.657144pt;}
.y1c3{bottom:110.812053pt;}
.y123{bottom:113.279654pt;}
.y18c{bottom:113.388749pt;}
.y11a{bottom:114.757937pt;}
.y151{bottom:114.966866pt;}
.y17e{bottom:115.582456pt;}
.y203{bottom:116.361600pt;}
.y1ff{bottom:116.741106pt;}
.y1fc{bottom:116.741639pt;}
.y239{bottom:116.895748pt;}
.y135{bottom:117.224676pt;}
.y197{bottom:118.324589pt;}
.y241{bottom:118.830685pt;}
.y152{bottom:122.031066pt;}
.y1fb{bottom:122.826133pt;}
.y23e{bottom:125.291668pt;}
.y12c{bottom:126.126146pt;}
.y23a{bottom:126.583348pt;}
.y17f{bottom:128.196269pt;}
.y153{bottom:128.551866pt;}
.y240{bottom:129.165417pt;}
.y3c{bottom:130.322111pt;}
.y49c{bottom:132.649740pt;}
.y23b{bottom:136.270948pt;}
.y143{bottom:136.702866pt;}
.y1fa{bottom:138.036344pt;}
.y1f7{bottom:138.036572pt;}
.y1f5{bottom:138.036800pt;}
.y1bc{bottom:138.515067pt;}
.y23f{bottom:139.500148pt;}
.y149{bottom:140.506666pt;}
.y198{bottom:143.552216pt;}
.y1f9{bottom:144.120839pt;}
.y1f6{bottom:144.121067pt;}
.y49d{bottom:144.714197pt;}
.y144{bottom:144.853866pt;}
.y23c{bottom:145.958548pt;}
.y1f8{bottom:150.205333pt;}
.y148{bottom:151.918066pt;}
.y124{bottom:153.015745pt;}
.y145{bottom:153.548266pt;}
.y14c{bottom:155.178466pt;}
.y23d{bottom:155.646148pt;}
.y136{bottom:156.182306pt;}
.y1bd{bottom:160.525680pt;}
.y146{bottom:161.699266pt;}
.y1f2{bottom:163.514667pt;}
.y1aa{bottom:165.838587pt;}
.y147{bottom:170.393666pt;}
.y1f3{bottom:170.739733pt;}
.y1ab{bottom:171.530987pt;}
.y1ba{bottom:175.705413pt;}
.y1ac{bottom:177.223387pt;}
.y1f4{bottom:178.345067pt;}
.y1b9{bottom:181.018320pt;}
.y1ad{bottom:182.915787pt;}
.y1df{bottom:183.668800pt;}
.y1ae{bottom:188.608187pt;}
.y1e0{bottom:190.513600pt;}
.y1af{bottom:194.300587pt;}
.y1b6{bottom:196.957040pt;}
.y1e1{bottom:197.358400pt;}
.y1f0{bottom:199.640000pt;}
.y1b0{bottom:199.992987pt;}
.y1ee{bottom:203.442667pt;}
.y1e2{bottom:203.822933pt;}
.y1b1{bottom:205.685387pt;}
.y1f1{bottom:207.245333pt;}
.y1ed{bottom:208.766400pt;}
.y1e3{bottom:210.667733pt;}
.y1b2{bottom:211.377787pt;}
.y1ea{bottom:215.230933pt;}
.y3b{bottom:217.029256pt;}
.y1b3{bottom:217.070187pt;}
.y1e4{bottom:217.132267pt;}
.y1b4{bottom:222.762587pt;}
.y1e5{bottom:223.977067pt;}
.y1b5{bottom:228.454987pt;}
.y1e6{bottom:230.441600pt;}
.yb0{bottom:232.714667pt;}
.yb1{bottom:233.837333pt;}
.y8f{bottom:234.904000pt;}
.y1e7{bottom:237.286400pt;}
.y2a{bottom:237.294667pt;}
.y8e{bottom:238.910667pt;}
.y1de{bottom:239.839787pt;}
.y450{bottom:242.373333pt;}
.yaf{bottom:243.221333pt;}
.y1e8{bottom:243.750933pt;}
.y8d{bottom:248.022667pt;}
.y24e{bottom:249.298667pt;}
.y1e9{bottom:250.595733pt;}
.y29{bottom:251.906667pt;}
.y43{bottom:253.234667pt;}
.y467{bottom:256.985333pt;}
.y224{bottom:257.820800pt;}
.y44f{bottom:261.430667pt;}
.y24d{bottom:263.910667pt;}
.y28{bottom:266.518667pt;}
.y4ee{bottom:267.104000pt;}
.y3a{bottom:268.126362pt;}
.y40{bottom:268.283511pt;}
.y66{bottom:269.174667pt;}
.y141{bottom:269.176000pt;}
.y466{bottom:275.393333pt;}
.yf9{bottom:276.914667pt;}
.y24c{bottom:278.522667pt;}
.y4ed{bottom:281.716000pt;}
.yd5{bottom:282.534667pt;}
.y8c{bottom:285.041333pt;}
.yae{bottom:285.116000pt;}
.y488{bottom:285.780000pt;}
.y27{bottom:286.209333pt;}
.y39{bottom:290.402280pt;}
.y4c1{bottom:290.429333pt;}
.y3f{bottom:290.559429pt;}
.y465{bottom:291.333333pt;}
.yf8{bottom:292.854667pt;}
.y140{bottom:293.837333pt;}
.y65{bottom:294.126667pt;}
.y4ec{bottom:296.913333pt;}
.y42{bottom:299.581333pt;}
.y8b{bottom:300.982667pt;}
.y171{bottom:301.056000pt;}
.yac{bottom:304.652000pt;}
.y237{bottom:304.690667pt;}
.y26{bottom:307.149333pt;}
.y464{bottom:307.274667pt;}
.y44e{bottom:307.937333pt;}
.yf7{bottom:308.796000pt;}
.y13f{bottom:309.777333pt;}
.y64{bottom:310.068000pt;}
.y38{bottom:310.470250pt;}
.yad{bottom:310.480000pt;}
.y4eb{bottom:311.525333pt;}
.yab{bottom:313.764000pt;}
.y8a{bottom:316.922667pt;}
.y170{bottom:316.996000pt;}
.y44d{bottom:322.549333pt;}
.y25{bottom:323.090667pt;}
.y463{bottom:323.214667pt;}
.yf6{bottom:324.736000pt;}
.yd4{bottom:325.118667pt;}
.y13e{bottom:325.717333pt;}
.y37{bottom:325.749593pt;}
.y63{bottom:326.008000pt;}
.y4ea{bottom:326.137333pt;}
.y487{bottom:328.953333pt;}
.y41{bottom:330.003912pt;}
.y89{bottom:332.862667pt;}
.y16f{bottom:332.936000pt;}
.y44c{bottom:337.161333pt;}
.y24{bottom:339.030667pt;}
.y462{bottom:339.154667pt;}
.yf5{bottom:340.676000pt;}
.y4c0{bottom:340.906667pt;}
.yd3{bottom:341.060000pt;}
.y4e9{bottom:341.334667pt;}
.yaa{bottom:341.657333pt;}
.y62{bottom:341.948000pt;}
.y486{bottom:344.893333pt;}
.y16e{bottom:348.876000pt;}
.y13d{bottom:350.380000pt;}
.y44b{bottom:351.773333pt;}
.y23{bottom:354.970667pt;}
.y461{bottom:355.094667pt;}
.y4e8{bottom:355.946667pt;}
.yf4{bottom:356.616000pt;}
.y4bf{bottom:356.846667pt;}
.yd2{bottom:357.000000pt;}
.ya9{bottom:357.598667pt;}
.y61{bottom:357.888000pt;}
.y485{bottom:360.833333pt;}
.y4fe{bottom:363.672000pt;}
.y1a8{bottom:363.793333pt;}
.y16d{bottom:364.816000pt;}
.y44a{bottom:366.384000pt;}
.y4e7{bottom:370.558667pt;}
.y22{bottom:370.910667pt;}
.y460{bottom:371.034667pt;}
.yf3{bottom:372.556000pt;}
.y4be{bottom:372.786667pt;}
.yd1{bottom:372.940000pt;}
.ya8{bottom:373.538667pt;}
.y60{bottom:373.828000pt;}
.y484{bottom:376.773333pt;}
.y88{bottom:377.006667pt;}
.y1a7{bottom:379.733333pt;}
.y16c{bottom:380.757333pt;}
.y4e6{bottom:385.756000pt;}
.y21{bottom:386.850667pt;}
.y45f{bottom:386.976000pt;}
.yf2{bottom:388.496000pt;}
.y4bd{bottom:388.726667pt;}
.yd0{bottom:388.880000pt;}
.y5f{bottom:389.768000pt;}
.y2c0{bottom:392.553441pt;}
.y483{bottom:392.713333pt;}
.y87{bottom:392.946667pt;}
.y401{bottom:393.336804pt;}
.y49a{bottom:394.645333pt;}
.y4fd{bottom:395.552000pt;}
.y1a6{bottom:395.673333pt;}
.y16b{bottom:396.697333pt;}
.y13c{bottom:398.198667pt;}
.y4e5{bottom:400.368000pt;}
.y20{bottom:402.790667pt;}
.y45e{bottom:402.916000pt;}
.yf1{bottom:404.437333pt;}
.y4bc{bottom:404.666667pt;}
.ycf{bottom:404.820000pt;}
.y5e{bottom:405.709333pt;}
.y482{bottom:408.654667pt;}
.y86{bottom:408.886667pt;}
.y499{bottom:410.585333pt;}
.y4fc{bottom:411.492000pt;}
.y1a5{bottom:411.613333pt;}
.ya7{bottom:412.094667pt;}
.y13b{bottom:412.810667pt;}
.y4e4{bottom:414.980000pt;}
.ya6{bottom:416.674667pt;}
.y1f{bottom:418.732000pt;}
.y45d{bottom:418.856000pt;}
.yf0{bottom:420.377333pt;}
.y4bb{bottom:420.608000pt;}
.yce{bottom:420.760000pt;}
.y5d{bottom:421.649333pt;}
.y85{bottom:424.828000pt;}
.y498{bottom:426.525333pt;}
.y13a{bottom:427.422667pt;}
.y4fb{bottom:427.433333pt;}
.y1a4{bottom:427.553333pt;}
.y16a{bottom:428.197333pt;}
.y4e3{bottom:430.177333pt;}
.y1e{bottom:434.672000pt;}
.ya5{bottom:434.741333pt;}
.y45c{bottom:434.796000pt;}
.y262{bottom:435.833921pt;}
.yef{bottom:436.317333pt;}
.y4ba{bottom:436.548000pt;}
.ycd{bottom:436.701333pt;}
.y5c{bottom:437.589333pt;}
.y84{bottom:440.768000pt;}
.y139{bottom:442.034667pt;}
.y497{bottom:442.466667pt;}
.y4fa{bottom:443.373333pt;}
.y1a3{bottom:443.493333pt;}
.y4e2{bottom:444.789333pt;}
.ya4{bottom:450.681333pt;}
.y45b{bottom:450.736000pt;}
.yee{bottom:452.257333pt;}
.y4b9{bottom:452.488000pt;}
.ycc{bottom:452.641333pt;}
.y5b{bottom:453.529333pt;}
.y481{bottom:453.766667pt;}
.y10d{bottom:456.280000pt;}
.y83{bottom:456.708000pt;}
.y496{bottom:458.406667pt;}
.y4f9{bottom:459.313333pt;}
.y1a2{bottom:459.434667pt;}
.y4e1{bottom:459.986667pt;}
.y45a{bottom:466.676000pt;}
.yed{bottom:468.197333pt;}
.y127{bottom:468.202477pt;}
.y113{bottom:468.202667pt;}
.y480{bottom:468.378667pt;}
.y4b8{bottom:468.428000pt;}
.ycb{bottom:468.581333pt;}
.y5a{bottom:469.469333pt;}
.y10c{bottom:472.220000pt;}
.y82{bottom:472.648000pt;}
.ya3{bottom:472.656000pt;}
.y169{bottom:472.981333pt;}
.y495{bottom:474.346667pt;}
.y4e0{bottom:474.598667pt;}
.y4f8{bottom:475.253333pt;}
.y1a1{bottom:475.374667pt;}
.ya0{bottom:475.829333pt;}
.y1d{bottom:476.605333pt;}
.y459{bottom:482.617333pt;}
.y47f{bottom:482.990667pt;}
.yec{bottom:484.138667pt;}
.y4b7{bottom:484.368000pt;}
.yca{bottom:484.521333pt;}
.y59{bottom:485.409333pt;}
.y9f{bottom:487.932000pt;}
.y10b{bottom:488.160000pt;}
.y81{bottom:488.588000pt;}
.y168{bottom:488.922667pt;}
.y4df{bottom:489.796000pt;}
.y4f7{bottom:491.193333pt;}
.y236{bottom:497.597333pt;}
.y458{bottom:498.557333pt;}
.y1a0{bottom:499.892000pt;}
.yeb{bottom:500.078667pt;}
.y4b6{bottom:500.309333pt;}
.yc9{bottom:500.461333pt;}
.ya2{bottom:500.552000pt;}
.y58{bottom:501.350667pt;}
.y10a{bottom:504.100000pt;}
.y4de{bottom:504.406667pt;}
.ya1{bottom:504.684000pt;}
.y167{bottom:504.862667pt;}
.y11b{bottom:506.132342pt;}
.y4f6{bottom:507.133333pt;}
.y477{bottom:509.158477pt;}
.y12d{bottom:509.299207pt;}
.y457{bottom:514.497333pt;}
.y19f{bottom:515.832000pt;}
.yea{bottom:516.018667pt;}
.y4b5{bottom:516.249333pt;}
.yc8{bottom:516.402667pt;}
.y57{bottom:517.290667pt;}
.y4dd{bottom:519.018667pt;}
.y80{bottom:519.449333pt;}
.y109{bottom:520.040000pt;}
.y166{bottom:520.802667pt;}
.y9e{bottom:523.204000pt;}
.y227{bottom:523.765333pt;}
.y494{bottom:525.380000pt;}
.y456{bottom:530.437333pt;}
.y1c{bottom:531.528000pt;}
.y19e{bottom:531.772000pt;}
.y4b4{bottom:532.189333pt;}
.yc7{bottom:532.342667pt;}
.y4dc{bottom:534.216000pt;}
.y108{bottom:535.981333pt;}
.y165{bottom:536.742667pt;}
.y4f5{bottom:539.014667pt;}
.y493{bottom:539.992000pt;}
.y1b{bottom:546.140000pt;}
.y455{bottom:546.377333pt;}
.y19d{bottom:547.712000pt;}
.y4b3{bottom:548.129333pt;}
.yc6{bottom:548.282667pt;}
.y4db{bottom:548.828000pt;}
.y107{bottom:551.921333pt;}
.y164{bottom:552.682667pt;}
.ye9{bottom:554.084000pt;}
.y473{bottom:557.426023pt;}
.y1a{bottom:560.752000pt;}
.y492{bottom:561.272000pt;}
.y454{bottom:562.317333pt;}
.y7f{bottom:563.593333pt;}
.y4da{bottom:564.025333pt;}
.y4b2{bottom:564.069333pt;}
.y56{bottom:566.961333pt;}
.y106{bottom:567.861333pt;}
.y9d{bottom:569.168000pt;}
.y19c{bottom:572.229333pt;}
.yc5{bottom:572.757333pt;}
.y19{bottom:575.364000pt;}
.y491{bottom:575.884000pt;}
.y453{bottom:578.258667pt;}
.y4d9{bottom:578.637333pt;}
.y7e{bottom:579.533333pt;}
.y4b1{bottom:580.009333pt;}
.y55{bottom:582.901333pt;}
.y105{bottom:583.801333pt;}
.y261{bottom:585.256000pt;}
.y4f4{bottom:586.834667pt;}
.y19b{bottom:588.169333pt;}
.y18{bottom:589.976000pt;}
.y490{bottom:590.496000pt;}
.y4d8{bottom:593.249333pt;}
.y452{bottom:594.198667pt;}
.y98{bottom:595.337152pt;}
.y7d{bottom:595.473333pt;}
.y4b0{bottom:595.950667pt;}
.yc4{bottom:597.232000pt;}
.y54{bottom:598.841333pt;}
.y163{bottom:599.182667pt;}
.y260{bottom:601.196000pt;}
.ye8{bottom:602.774667pt;}
.y19a{bottom:604.109333pt;}
.y17{bottom:604.588000pt;}
.y48f{bottom:605.108000pt;}
.y4d7{bottom:608.446667pt;}
.y7c{bottom:611.413333pt;}
.y4af{bottom:611.890667pt;}
.yc3{bottom:613.172000pt;}
.y53{bottom:614.781333pt;}
.ye7{bottom:618.716000pt;}
.y104{bottom:618.945333pt;}
.y16{bottom:619.200000pt;}
.y48e{bottom:619.720000pt;}
.y4d6{bottom:623.058667pt;}
.y451{bottom:623.725333pt;}
.y142{bottom:625.352272pt;}
.y4ae{bottom:627.830667pt;}
.yc2{bottom:629.112000pt;}
.y52{bottom:630.722667pt;}
.y15{bottom:633.812000pt;}
.y48d{bottom:634.330667pt;}
.ye6{bottom:634.656000pt;}
.y112{bottom:637.260000pt;}
.y4d5{bottom:638.256000pt;}
.y472{bottom:641.961333pt;}
.y4ad{bottom:643.770667pt;}
.yc1{bottom:645.052000pt;}
.y25f{bottom:646.001333pt;}
.y14{bottom:648.422667pt;}
.y48c{bottom:648.942667pt;}
.ye5{bottom:650.596000pt;}
.y199{bottom:650.869333pt;}
.y4d4{bottom:652.868000pt;}
.y226{bottom:652.916000pt;}
.y111{bottom:653.200000pt;}
.y51{bottom:655.674667pt;}
.y471{bottom:657.901333pt;}
.y4ac{bottom:659.710667pt;}
.y7b{bottom:659.881333pt;}
.yc0{bottom:660.993333pt;}
.y25e{bottom:661.941333pt;}
.y13{bottom:663.034667pt;}
.ye4{bottom:666.536000pt;}
.y103{bottom:667.373333pt;}
.y225{bottom:667.528000pt;}
.y4d3{bottom:668.065333pt;}
.y48b{bottom:670.222667pt;}
.y50{bottom:671.614667pt;}
.y470{bottom:673.841333pt;}
.y7a{bottom:674.493333pt;}
.ybf{bottom:676.933333pt;}
.y173{bottom:677.037443pt;}
.y12{bottom:677.646667pt;}
.y25d{bottom:677.881333pt;}
.ye3{bottom:682.476000pt;}
.y4d2{bottom:682.677333pt;}
.y102{bottom:683.313333pt;}
.y4f{bottom:687.554667pt;}
.y110{bottom:688.758667pt;}
.y46f{bottom:689.781333pt;}
.y11{bottom:692.258667pt;}
.ybe{bottom:692.873333pt;}
.y7{bottom:693.536000pt;}
.y1a9{bottom:693.696000pt;}
.y25c{bottom:693.821333pt;}
.y79{bottom:694.757333pt;}
.y4d1{bottom:697.289333pt;}
.ye2{bottom:698.416000pt;}
.y4f3{bottom:698.417333pt;}
.y78{bottom:699.093333pt;}
.y101{bottom:699.253333pt;}
.y4ab{bottom:702.218667pt;}
.y4e{bottom:703.494667pt;}
.y48a{bottom:704.225333pt;}
.y36{bottom:704.912000pt;}
.y46e{bottom:705.721333pt;}
.y10{bottom:706.870667pt;}
.y77{bottom:709.649333pt;}
.y25b{bottom:709.761333pt;}
.y6{bottom:712.133333pt;}
.y4d0{bottom:712.486667pt;}
.y76{bottom:713.705333pt;}
.y156{bottom:714.235938pt;}
.ye1{bottom:714.357333pt;}
.y100{bottom:715.193333pt;}
.y489{bottom:718.837333pt;}
.y4d{bottom:719.434667pt;}
.yf{bottom:721.482667pt;}
.y46d{bottom:721.661333pt;}
.ybd{bottom:722.173333pt;}
.y25a{bottom:725.701333pt;}
.y4cf{bottom:727.098667pt;}
.y10f{bottom:729.629333pt;}
.ye0{bottom:730.297333pt;}
.y5{bottom:730.729333pt;}
.yff{bottom:731.133333pt;}
.y75{bottom:734.852000pt;}
.y4c{bottom:735.376000pt;}
.ye{bottom:736.094667pt;}
.y46c{bottom:737.602667pt;}
.y74{bottom:738.908000pt;}
.y35{bottom:740.700000pt;}
.y259{bottom:741.642667pt;}
.y4ce{bottom:741.710667pt;}
.ydf{bottom:746.237333pt;}
.yfe{bottom:747.073333pt;}
.y73{bottom:750.065333pt;}
.y4aa{bottom:750.788000pt;}
.y4b{bottom:751.316000pt;}
.y46b{bottom:753.542667pt;}
.y72{bottom:754.122667pt;}
.y4cd{bottom:756.908000pt;}
.y258{bottom:757.582667pt;}
.y4{bottom:761.768000pt;}
.y14a{bottom:762.055138pt;}
.yde{bottom:762.177333pt;}
.yfd{bottom:763.014667pt;}
.ybc{bottom:764.757333pt;}
.y4a9{bottom:765.400000pt;}
.y4a{bottom:767.256000pt;}
.y46a{bottom:769.482667pt;}
.y71{bottom:771.029333pt;}
.y4cc{bottom:771.520000pt;}
.y257{bottom:773.522667pt;}
.ydd{bottom:778.117333pt;}
.yfc{bottom:778.954667pt;}
.y4a8{bottom:780.012000pt;}
.ybb{bottom:780.697333pt;}
.y10e{bottom:781.017333pt;}
.y49{bottom:783.196000pt;}
.y469{bottom:785.422667pt;}
.y4cb{bottom:786.717333pt;}
.y34{bottom:787.114667pt;}
.y256{bottom:789.462667pt;}
.ydc{bottom:794.057333pt;}
.y3{bottom:794.977333pt;}
.y70{bottom:795.629333pt;}
.yba{bottom:796.638667pt;}
.y48{bottom:799.136000pt;}
.y97{bottom:801.181333pt;}
.yd{bottom:801.276000pt;}
.y4ca{bottom:801.329333pt;}
.y468{bottom:801.362667pt;}
.y33{bottom:803.054667pt;}
.y255{bottom:805.402667pt;}
.y49b{bottom:806.180000pt;}
.ydb{bottom:809.998667pt;}
.y6f{bottom:810.241333pt;}
.yb9{bottom:812.578667pt;}
.yfb{bottom:814.098667pt;}
.y1be{bottom:814.754373pt;}
.y47{bottom:815.076000pt;}
.yc{bottom:815.888000pt;}
.y4c9{bottom:816.526667pt;}
.y32{bottom:818.994667pt;}
.y254{bottom:821.344000pt;}
.y6e{bottom:824.853333pt;}
.yda{bottom:825.938667pt;}
.yb8{bottom:828.518667pt;}
.y95{bottom:828.769333pt;}
.yb{bottom:830.500000pt;}
.y46{bottom:831.017333pt;}
.y4c8{bottom:831.138667pt;}
.y31{bottom:834.936000pt;}
.y253{bottom:837.284000pt;}
.y94{bottom:838.580000pt;}
.y96{bottom:839.300000pt;}
.y6d{bottom:839.465333pt;}
.yd9{bottom:841.878667pt;}
.y93{bottom:843.830667pt;}
.yb7{bottom:844.458667pt;}
.y4c7{bottom:845.750667pt;}
.y30{bottom:850.876000pt;}
.y252{bottom:853.224000pt;}
.y6c{bottom:854.077333pt;}
.yfa{bottom:854.556000pt;}
.y4a1{bottom:854.793536pt;}
.y45{bottom:855.969333pt;}
.yd8{bottom:857.818667pt;}
.ya{bottom:858.340000pt;}
.y1b7{bottom:859.155093pt;}
.yb6{bottom:860.398667pt;}
.y4c6{bottom:860.948000pt;}
.y172{bottom:865.182667pt;}
.y2f{bottom:866.816000pt;}
.y6b{bottom:868.689333pt;}
.y251{bottom:869.164000pt;}
.yd7{bottom:873.758667pt;}
.y9{bottom:874.280000pt;}
.y4c5{bottom:875.560000pt;}
.yb5{bottom:876.338667pt;}
.y1eb{bottom:876.984533pt;}
.y2e{bottom:882.756000pt;}
.y92{bottom:882.973333pt;}
.y6a{bottom:883.300000pt;}
.y250{bottom:885.104000pt;}
.y49f{bottom:886.774392pt;}
.yd6{bottom:889.700000pt;}
.y4c4{bottom:890.170667pt;}
.yb4{bottom:892.280000pt;}
.y4f2{bottom:895.013333pt;}
.y2d{bottom:898.696000pt;}
.y91{bottom:898.913333pt;}
.y4c3{bottom:905.368000pt;}
.y44{bottom:905.640000pt;}
.y69{bottom:907.901333pt;}
.yb3{bottom:908.220000pt;}
.y4f1{bottom:909.625333pt;}
.y90{bottom:914.853333pt;}
.y24f{bottom:916.625333pt;}
.y4c2{bottom:919.980000pt;}
.y2{bottom:921.580000pt;}
.yb2{bottom:924.160000pt;}
.y4f0{bottom:924.236000pt;}
.y8{bottom:929.549333pt;}
.y2c{bottom:937.520000pt;}
.y4ef{bottom:938.848000pt;}
.y68{bottom:941.904000pt;}
.y1{bottom:953.460000pt;}
.y67{bottom:956.516000pt;}
.y2b{bottom:987.997333pt;}
.h23{height:2.125355pt;}
.h42{height:13.421612pt;}
.h49{height:13.448963pt;}
.h44{height:15.658547pt;}
.h4b{height:15.690456pt;}
.h46{height:15.741561pt;}
.h4c{height:15.773640pt;}
.h3b{height:19.218530pt;}
.h3f{height:19.396309pt;}
.h2f{height:19.652599pt;}
.h36{height:20.189291pt;}
.h60{height:21.933807pt;}
.h3d{height:22.421618pt;}
.hd{height:22.443895pt;}
.h47{height:22.487945pt;}
.h4d{height:22.533771pt;}
.h53{height:22.841544pt;}
.h57{height:22.871902pt;}
.h12{height:25.727579pt;}
.h68{height:26.052376pt;}
.h69{height:26.286749pt;}
.h62{height:26.322930pt;}
.h1c{height:26.519037pt;}
.h54{height:26.648468pt;}
.h18{height:26.845578pt;}
.h4f{height:27.633798pt;}
.h50{height:27.780300pt;}
.h10{height:30.014223pt;}
.ha{height:31.944294pt;}
.h40{height:32.498565pt;}
.h13{height:32.805069pt;}
.h9{height:32.900710pt;}
.hb{height:33.091994pt;}
.h14{height:35.521681pt;}
.h2b{height:35.865600pt;}
.h8{height:36.556100pt;}
.he{height:36.768636pt;}
.h6c{height:36.874903pt;}
.h3{height:37.459376pt;}
.h19{height:38.043849pt;}
.h21{height:39.299662pt;}
.h51{height:39.686142pt;}
.h2{height:39.850400pt;}
.h66{height:41.221462pt;}
.h64{height:41.278200pt;}
.h15{height:41.515221pt;}
.h3c{height:42.385200pt;}
.h32{height:43.256327pt;}
.h17{height:43.627895pt;}
.h39{height:43.921905pt;}
.hc{height:44.122658pt;}
.h5f{height:44.333815pt;}
.h45{height:44.400720pt;}
.h5{height:44.632747pt;}
.h55{height:44.874530pt;}
.h5e{height:45.240885pt;}
.h5b{height:45.413825pt;}
.h20{height:45.431385pt;}
.h2d{height:46.196340pt;}
.h1b{height:46.199200pt;}
.h34{height:47.457915pt;}
.h6b{height:47.820800pt;}
.h11{height:47.834957pt;}
.h2a{height:50.385434pt;}
.h31{height:50.465650pt;}
.h16{height:50.664244pt;}
.h38{height:51.242289pt;}
.h61{height:52.811360pt;}
.h6{height:52.947042pt;}
.h28{height:52.986400pt;}
.h24{height:53.665867pt;}
.h59{height:53.763787pt;}
.h7{height:54.497002pt;}
.h25{height:54.876100pt;}
.h30{height:58.918413pt;}
.h37{height:60.527415pt;}
.h29{height:65.500533pt;}
.h43{height:67.929307pt;}
.h4a{height:68.067733pt;}
.h5c{height:68.569870pt;}
.h26{height:73.990515pt;}
.h4{height:77.140000pt;}
.h67{height:79.968608pt;}
.h6a{height:80.594392pt;}
.h22{height:85.703037pt;}
.h27{height:86.284533pt;}
.h2e{height:88.143309pt;}
.h35{height:89.128453pt;}
.h1a{height:89.928021pt;}
.h1d{height:92.984021pt;}
.h4e{height:98.899562pt;}
.h63{height:102.263761pt;}
.h56{height:103.097600pt;}
.h1e{height:125.868533pt;}
.h2c{height:131.041196pt;}
.h33{height:135.809693pt;}
.h5a{height:151.725164pt;}
.h5d{height:151.819845pt;}
.h3e{height:154.109429pt;}
.h65{height:160.563000pt;}
.h58{height:160.768787pt;}
.h52{height:162.656096pt;}
.h1f{height:174.453977pt;}
.h3a{height:184.600859pt;}
.h41{height:247.428894pt;}
.h48{height:265.425373pt;}
.hf{height:340.176188pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wb{width:66.838200pt;}
.w5{width:93.264701pt;}
.w8{width:96.522645pt;}
.w14{width:103.505695pt;}
.w6{width:148.930952pt;}
.we{width:151.417840pt;}
.w11{width:151.726400pt;}
.w17{width:152.163247pt;}
.wf{width:152.176827pt;}
.w16{width:152.745444pt;}
.w9{width:153.762796pt;}
.w10{width:184.428953pt;}
.wd{width:184.433381pt;}
.w3{width:207.498532pt;}
.w4{width:225.947261pt;}
.w7{width:225.955601pt;}
.w18{width:241.670720pt;}
.w15{width:322.777537pt;}
.w2{width:340.955044pt;}
.w12{width:345.835371pt;}
.w1b{width:349.780320pt;}
.w1a{width:414.993600pt;}
.w19{width:415.006682pt;}
.wc{width:461.095160pt;}
.wa{width:461.097179pt;}
.w13{width:461.101860pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x38{left:-5.462818pt;}
.xd6{left:-2.523743pt;}
.x0{left:0.000000pt;}
.xf{left:2.218084pt;}
.xcf{left:3.401834pt;}
.x85{left:4.527767pt;}
.x9f{left:5.692400pt;}
.x8e{left:6.613696pt;}
.x27{left:8.298482pt;}
.x3d{left:9.344676pt;}
.x87{left:10.246320pt;}
.x45{left:11.370327pt;}
.x49{left:12.498200pt;}
.x3a{left:13.682634pt;}
.x8d{left:15.166755pt;}
.x42{left:16.228825pt;}
.x46{left:17.538235pt;}
.x4e{left:19.168435pt;}
.xce{left:20.389634pt;}
.x25{left:21.282715pt;}
.xc8{left:22.924406pt;}
.x47{left:24.600261pt;}
.x4a{left:26.232635pt;}
.x96{left:27.302914pt;}
.xcc{left:28.272616pt;}
.x8f{left:29.532513pt;}
.x89{left:30.487697pt;}
.x9a{left:32.155115pt;}
.x95{left:33.503076pt;}
.xcd{left:34.880173pt;}
.xd3{left:35.866216pt;}
.xd2{left:36.804028pt;}
.xe{left:38.290142pt;}
.x90{left:39.297218pt;}
.x11{left:40.731457pt;}
.xcb{left:42.414825pt;}
.xd1{left:44.247578pt;}
.x39{left:45.204571pt;}
.xd4{left:46.969913pt;}
.x41{left:48.658992pt;}
.xd0{left:49.627941pt;}
.xc9{left:51.385670pt;}
.x97{left:52.682137pt;}
.xca{left:54.081210pt;}
.x91{left:55.133930pt;}
.x4b{left:56.105833pt;}
.x9b{left:57.682987pt;}
.x9c{left:58.821543pt;}
.x4c{left:59.732376pt;}
.x37{left:60.847674pt;}
.xae{left:61.956077pt;}
.x40{left:62.992828pt;}
.xaf{left:64.974604pt;}
.x14{left:66.881892pt;}
.x92{left:69.025929pt;}
.xc7{left:70.468810pt;}
.x3c{left:71.797789pt;}
.x4d{left:73.508435pt;}
.x44{left:75.109211pt;}
.xa4{left:76.092691pt;}
.x9e{left:77.728584pt;}
.x99{left:78.756745pt;}
.x26{left:80.794676pt;}
.xd{left:82.518251pt;}
.xb2{left:84.349804pt;}
.x98{left:85.535369pt;}
.xd5{left:86.674206pt;}
.x9d{left:88.069094pt;}
.x54{left:89.810435pt;}
.x3b{left:91.143731pt;}
.x8b{left:92.510039pt;}
.x43{left:94.752830pt;}
.xa5{left:96.396345pt;}
.x93{left:97.386148pt;}
.x4f{left:98.504835pt;}
.x55{left:102.308635pt;}
.xb0{left:103.725004pt;}
.x94{left:104.779438pt;}
.x50{left:106.112435pt;}
.xa2{left:108.756267pt;}
.xa7{left:111.037867pt;}
.xa6{left:111.948073pt;}
.x51{left:113.176635pt;}
.x52{left:120.784235pt;}
.xa3{left:125.461267pt;}
.x53{left:128.391835pt;}
.xb1{left:130.204444pt;}
.xa9{left:131.124313pt;}
.xaa{left:134.085373pt;}
.x7f{left:135.957395pt;}
.x56{left:137.629635pt;}
.x80{left:139.617485pt;}
.xa8{left:141.485895pt;}
.x5c{left:144.150435pt;}
.x57{left:145.237235pt;}
.xb4{left:148.933804pt;}
.x8a{left:150.293439pt;}
.x8c{left:151.424899pt;}
.x58{left:152.844835pt;}
.x5d{left:158.278835pt;}
.xb3{left:159.267244pt;}
.x59{left:160.452435pt;}
.xb5{left:165.725644pt;}
.x5a{left:167.516635pt;}
.x5b{left:175.124235pt;}
.xab{left:177.472585pt;}
.x1{left:179.686667pt;}
.x33{left:181.280000pt;}
.x10{left:182.347365pt;}
.xa{left:184.225333pt;}
.x17{left:185.664000pt;}
.xd9{left:187.700350pt;}
.x5{left:189.454667pt;}
.x48{left:191.790902pt;}
.xb{left:192.969333pt;}
.x34{left:194.824000pt;}
.xdb{left:196.669090pt;}
.x3e{left:198.154387pt;}
.xd8{left:199.556574pt;}
.xdd{left:201.272000pt;}
.x4{left:202.326667pt;}
.x88{left:207.010187pt;}
.x5e{left:210.445235pt;}
.x61{left:211.532035pt;}
.xb9{left:213.517804pt;}
.xda{left:215.236000pt;}
.x9{left:217.481333pt;}
.x5f{left:219.139635pt;}
.x36{left:221.901333pt;}
.x2{left:223.988000pt;}
.x12{left:227.606373pt;}
.xba{left:229.017964pt;}
.x18{left:233.073333pt;}
.x7{left:234.420000pt;}
.x60{left:236.528435pt;}
.xb6{left:238.059724pt;}
.xc{left:239.760079pt;}
.x82{left:244.190220pt;}
.x62{left:247.396435pt;}
.xb7{left:248.393164pt;}
.x81{left:250.938446pt;}
.x35{left:252.952000pt;}
.x63{left:255.004035pt;}
.xdc{left:256.098987pt;}
.xb8{left:258.726604pt;}
.x64{left:263.155035pt;}
.x15{left:265.613333pt;}
.x7e{left:266.964000pt;}
.x65{left:270.762635pt;}
.x13{left:271.828195pt;}
.x29{left:276.222667pt;}
.x66{left:278.370235pt;}
.xbb{left:280.685164pt;}
.x67{left:286.521235pt;}
.xbc{left:290.372764pt;}
.xbf{left:292.956124pt;}
.x68{left:294.128835pt;}
.x6{left:295.277333pt;}
.xc6{left:296.845007pt;}
.xbd{left:299.414524pt;}
.x69{left:301.736435pt;}
.x8{left:302.641333pt;}
.xad{left:304.814686pt;}
.x24{left:306.490059pt;}
.xac{left:307.728973pt;}
.x6a{left:308.800635pt;}
.x2a{left:311.885333pt;}
.x6b{left:315.864835pt;}
.xbe{left:318.143884pt;}
.x6f{left:319.668635pt;}
.x30{left:320.718667pt;}
.x16{left:323.092000pt;}
.x20{left:324.101333pt;}
.x28{left:328.041333pt;}
.x6c{left:329.993235pt;}
.x2f{left:334.266667pt;}
.x6d{left:336.514035pt;}
.x86{left:341.634667pt;}
.xc3{left:342.685804pt;}
.x6e{left:343.578235pt;}
.xc0{left:344.623324pt;}
.x2b{left:345.912000pt;}
.x1c{left:350.428000pt;}
.xc1{left:353.019244pt;}
.x70{left:354.989635pt;}
.x31{left:357.889333pt;}
.x84{left:359.359820pt;}
.x3{left:361.460000pt;}
.x71{left:362.597235pt;}
.x83{left:366.294401pt;}
.x72{left:370.204835pt;}
.x32{left:372.677333pt;}
.x77{left:374.552035pt;}
.x73{left:377.812435pt;}
.x74{left:384.876635pt;}
.xc2{left:385.957084pt;}
.x75{left:392.484235pt;}
.x76{left:400.091835pt;}
.x1d{left:404.761333pt;}
.x22{left:405.925333pt;}
.x78{left:409.873035pt;}
.x21{left:412.134667pt;}
.xc4{left:413.082364pt;}
.x7d{left:414.763635pt;}
.x79{left:420.741035pt;}
.x23{left:425.962667pt;}
.x7a{left:431.065635pt;}
.x2c{left:435.217333pt;}
.x2d{left:438.246667pt;}
.x7b{left:441.390235pt;}
.xc5{left:450.541084pt;}
.x7c{left:452.258235pt;}
.xd7{left:455.110562pt;}
.xa0{left:456.350667pt;}
.x1e{left:457.642667pt;}
.x2e{left:462.677333pt;}
.x3f{left:466.912580pt;}
.xa1{left:483.349600pt;}
.x1b{left:495.837333pt;}
.x19{left:499.896000pt;}
.x1a{left:502.857333pt;}
.x1f{left:625.300000pt;}
}




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