
    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_ebb9c6ae9ec4b68da48dc3e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_6150770e7433eeb7699e296a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;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_fd37d8173298426ca158243f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_f75873ceb06ac4a39692e21c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010000;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_1ebda8ae2fd1225a7157067a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;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_ec320be1beea4398a262c4d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.040000;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_3630befdc8547c67d10be0c3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_185ccdf4072f1a42e670289a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006836;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_0df37776f57c037ec2bf39fa.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.008301;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_df9584ecc1db873acd305994.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.693848;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_b8d6be0b3cb5cd79ceef27e7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.675781;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;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.278263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278263,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.278264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278264,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-0.510593px;}
.ls15{letter-spacing:-0.204408px;}
.ls1e{letter-spacing:-0.198396px;}
.ls1d{letter-spacing:-0.192384px;}
.ls16{letter-spacing:-0.180360px;}
.ls14{letter-spacing:-0.156312px;}
.ls1c{letter-spacing:-0.150300px;}
.ls18{letter-spacing:-0.144288px;}
.ls1b{letter-spacing:-0.138276px;}
.ls17{letter-spacing:-0.114228px;}
.ls19{letter-spacing:-0.090180px;}
.ls22{letter-spacing:-0.048096px;}
.ls12{letter-spacing:-0.038304px;}
.ls21{letter-spacing:-0.021600px;}
.ls24{letter-spacing:-0.018036px;}
.ls13{letter-spacing:-0.014364px;}
.ls23{letter-spacing:-0.006012px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.024048px;}
.ls11{letter-spacing:0.036072px;}
.lse{letter-spacing:0.042084px;}
.lsc{letter-spacing:0.054000px;}
.lsf{letter-spacing:0.066132px;}
.ls1a{letter-spacing:0.138276px;}
.lsa{letter-spacing:0.167580px;}
.lsb{letter-spacing:0.180360px;}
.ls9{letter-spacing:0.181944px;}
.ls7{letter-spacing:0.642088px;}
.ls8{letter-spacing:0.648088px;}
.lsd{letter-spacing:1.307615px;}
.ls1f{letter-spacing:1.637633px;}
.ls3{letter-spacing:11.954850px;}
.ls5{letter-spacing:14.286368px;}
.ls2{letter-spacing:15.063451px;}
.ls4{letter-spacing:17.574026px;}
.ls6{letter-spacing:17.992456px;}
.ls1{letter-spacing:28.453654px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa4{word-spacing:-70.493615px;}
.wsc{word-spacing:-22.718660px;}
.ws74{word-spacing:-14.943900px;}
.wsf5{word-spacing:-13.449600px;}
.wsa1{word-spacing:-12.151944px;}
.wsa2{word-spacing:-11.970000px;}
.ws2d{word-spacing:-11.955150px;}
.ws5{word-spacing:-10.460700px;}
.ws83{word-spacing:-3.347434px;}
.wsec{word-spacing:-3.287658px;}
.wse9{word-spacing:-3.227882px;}
.wsd5{word-spacing:-3.168107px;}
.wsd8{word-spacing:-3.108331px;}
.ws4a{word-spacing:-3.048556px;}
.ws4e{word-spacing:-2.929004px;}
.ws7c{word-spacing:-2.869229px;}
.ws7b{word-spacing:-2.749678px;}
.wsfc{word-spacing:-2.474726px;}
.wsd4{word-spacing:-2.450800px;}
.wse1{word-spacing:-2.211697px;}
.ws11a{word-spacing:-2.151936px;}
.ws35{word-spacing:-2.151922px;}
.ws78{word-spacing:-2.092146px;}
.ws46{word-spacing:-2.032370px;}
.wscd{word-spacing:-1.972595px;}
.ws4b{word-spacing:-1.912819px;}
.wsca{word-spacing:-1.853044px;}
.wscc{word-spacing:-1.793268px;}
.ws75{word-spacing:-1.733492px;}
.wscb{word-spacing:-1.673717px;}
.ws4d{word-spacing:-1.613941px;}
.ws12{word-spacing:-1.452557px;}
.wsc6{word-spacing:-1.376748px;}
.ws70{word-spacing:-1.374839px;}
.ws43{word-spacing:-1.315063px;}
.wsf7{word-spacing:-1.291162px;}
.ws3c{word-spacing:-1.255288px;}
.ws72{word-spacing:-1.195512px;}
.ws10f{word-spacing:-1.129766px;}
.ws67{word-spacing:-1.075961px;}
.ws4f{word-spacing:-1.016185px;}
.wsc2{word-spacing:-0.991980px;}
.ws11{word-spacing:-0.968371px;}
.wse0{word-spacing:-0.956410px;}
.ws71{word-spacing:-0.896634px;}
.ws3e{word-spacing:-0.836858px;}
.ws44{word-spacing:-0.777083px;}
.ws125{word-spacing:-0.699379px;}
.wsbe{word-spacing:-0.673344px;}
.wsdc{word-spacing:-0.657532px;}
.wsc1{word-spacing:-0.625248px;}
.ws49{word-spacing:-0.597756px;}
.ws54{word-spacing:-0.537980px;}
.wsd3{word-spacing:-0.478205px;}
.ws85{word-spacing:-0.418429px;}
.ws57{word-spacing:-0.358654px;}
.wsc0{word-spacing:-0.336672px;}
.wsed{word-spacing:-0.322790px;}
.ws1c{word-spacing:-0.298878px;}
.wsa8{word-spacing:-0.272916px;}
.wsf3{word-spacing:-0.268992px;}
.ws20{word-spacing:-0.239102px;}
.ws10{word-spacing:-0.215194px;}
.ws37{word-spacing:-0.179327px;}
.ws13{word-spacing:-0.161395px;}
.ws18{word-spacing:-0.119551px;}
.wsff{word-spacing:-0.107597px;}
.wsa9{word-spacing:-0.076608px;}
.ws1b{word-spacing:-0.059776px;}
.wsf{word-spacing:-0.053798px;}
.wsa7{word-spacing:-0.052668px;}
.ws10b{word-spacing:-0.012029px;}
.ws124{word-spacing:-0.010243px;}
.ws104{word-spacing:-0.009994px;}
.ws11c{word-spacing:-0.008496px;}
.ws114{word-spacing:-0.007526px;}
.ws12f{word-spacing:-0.004483px;}
.ws111{word-spacing:-0.003302px;}
.wsfa{word-spacing:-0.001622px;}
.ws120{word-spacing:-0.001526px;}
.ws126{word-spacing:-0.001517px;}
.ws3{word-spacing:-0.000026px;}
.ws0{word-spacing:0.000000px;}
.ws2c{word-spacing:0.003599px;}
.ws101{word-spacing:0.053798px;}
.ws39{word-spacing:0.059776px;}
.ws110{word-spacing:0.090205px;}
.wsf1{word-spacing:0.107597px;}
.ws1e{word-spacing:0.119551px;}
.wsbb{word-spacing:0.124200px;}
.ws100{word-spacing:0.161395px;}
.wsbc{word-spacing:0.178200px;}
.ws27{word-spacing:0.179327px;}
.wsbd{word-spacing:0.199800px;}
.wsfb{word-spacing:0.215194px;}
.ws2b{word-spacing:0.239102px;}
.ws14{word-spacing:0.268992px;}
.ws45{word-spacing:0.298878px;}
.wsf9{word-spacing:0.322790px;}
.ws63{word-spacing:0.358654px;}
.ws48{word-spacing:0.418429px;}
.ws56{word-spacing:0.478205px;}
.ws117{word-spacing:0.484186px;}
.wsd0{word-spacing:0.597756px;}
.ws10e{word-spacing:0.645581px;}
.ws5d{word-spacing:0.657532px;}
.ws42{word-spacing:0.717307px;}
.ws4c{word-spacing:0.777083px;}
.ws5f{word-spacing:0.836858px;}
.ws116{word-spacing:0.860774px;}
.wseb{word-spacing:0.896634px;}
.ws15{word-spacing:0.914573px;}
.ws76{word-spacing:0.956410px;}
.ws31{word-spacing:1.016185px;}
.ws80{word-spacing:1.075961px;}
.ws10a{word-spacing:1.129766px;}
.wse2{word-spacing:1.135736px;}
.ws66{word-spacing:1.195512px;}
.ws2a{word-spacing:1.255288px;}
.ws106{word-spacing:1.291162px;}
.ws28{word-spacing:1.315063px;}
.ws29{word-spacing:1.374839px;}
.wsb{word-spacing:1.380812px;}
.ws65{word-spacing:1.434614px;}
.ws53{word-spacing:1.494390px;}
.ws7a{word-spacing:1.554166px;}
.wsf6{word-spacing:1.667750px;}
.ws5e{word-spacing:1.673717px;}
.ws11e{word-spacing:1.721549px;}
.ws64{word-spacing:1.733492px;}
.ws11d{word-spacing:1.775347px;}
.wsd1{word-spacing:1.793268px;}
.ws10c{word-spacing:1.829146px;}
.ws10d{word-spacing:1.829454px;}
.ws50{word-spacing:1.853044px;}
.ws108{word-spacing:1.882944px;}
.ws51{word-spacing:1.912819px;}
.ws36{word-spacing:1.972595px;}
.wse7{word-spacing:2.032370px;}
.ws129{word-spacing:2.044339px;}
.ws6d{word-spacing:2.092146px;}
.ws128{word-spacing:2.098138px;}
.ws62{word-spacing:2.151922px;}
.wsef{word-spacing:2.205734px;}
.ws61{word-spacing:2.211697px;}
.ws5c{word-spacing:2.271473px;}
.ws12c{word-spacing:2.313331px;}
.wscf{word-spacing:2.331248px;}
.wsfd{word-spacing:2.367130px;}
.wse5{word-spacing:2.391024px;}
.ws12d{word-spacing:2.420928px;}
.ws41{word-spacing:2.450800px;}
.ws2{word-spacing:2.510568px;}
.ws6c{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws6a{word-spacing:2.570351px;}
.wsf2{word-spacing:2.582323px;}
.ws77{word-spacing:2.630126px;}
.wsa6{word-spacing:2.689902px;}
.ws1d{word-spacing:2.809453px;}
.ws127{word-spacing:2.851315px;}
.ws40{word-spacing:2.869229px;}
.wsd{word-spacing:2.869236px;}
.wsc5{word-spacing:2.903796px;}
.ws5b{word-spacing:2.929004px;}
.ws81{word-spacing:2.988780px;}
.ws102{word-spacing:3.012710px;}
.ws7e{word-spacing:3.048556px;}
.ws7f{word-spacing:3.108331px;}
.wsa5{word-spacing:3.168107px;}
.wse{word-spacing:3.181912px;}
.ws16{word-spacing:3.219667px;}
.ws107{word-spacing:3.220416px;}
.ws123{word-spacing:3.221261px;}
.ws11f{word-spacing:3.222749px;}
.wsf4{word-spacing:3.227904px;}
.ws119{word-spacing:3.281702px;}
.ws84{word-spacing:3.287658px;}
.ws68{word-spacing:3.347434px;}
.ws118{word-spacing:3.389299px;}
.ws69{word-spacing:3.407209px;}
.wsf0{word-spacing:3.414967px;}
.wsf8{word-spacing:3.443098px;}
.ws38{word-spacing:3.466985px;}
.wsc7{word-spacing:3.474936px;}
.ws11b{word-spacing:3.496896px;}
.ws5a{word-spacing:3.526760px;}
.ws113{word-spacing:3.550694px;}
.ws17{word-spacing:3.586536px;}
.ws55{word-spacing:3.646312px;}
.ws2f{word-spacing:3.706087px;}
.ws6b{word-spacing:3.765863px;}
.ws109{word-spacing:3.819686px;}
.ws3f{word-spacing:3.825638px;}
.wsda{word-spacing:3.885414px;}
.ws58{word-spacing:3.945190px;}
.ws3b{word-spacing:4.004965px;}
.ws3a{word-spacing:4.064741px;}
.ws6f{word-spacing:4.124516px;}
.wsfe{word-spacing:4.142477px;}
.ws86{word-spacing:4.184292px;}
.ws7d{word-spacing:4.244068px;}
.ws6e{word-spacing:4.303843px;}
.ws32{word-spacing:4.363619px;}
.ws24{word-spacing:4.423394px;}
.ws23{word-spacing:4.483170px;}
.ws112{word-spacing:4.519066px;}
.ws47{word-spacing:4.542946px;}
.wsd7{word-spacing:4.602721px;}
.ws2e{word-spacing:4.722272px;}
.wsce{word-spacing:4.782048px;}
.ws60{word-spacing:4.841824px;}
.ws12a{word-spacing:4.895654px;}
.ws33{word-spacing:4.901599px;}
.ws34{word-spacing:4.961375px;}
.ws59{word-spacing:5.021150px;}
.ws115{word-spacing:5.110848px;}
.ws21{word-spacing:5.140702px;}
.wsbf{word-spacing:5.176332px;}
.ws87{word-spacing:5.320028px;}
.ws121{word-spacing:5.326042px;}
.wsd9{word-spacing:5.379804px;}
.ws9{word-spacing:5.481407px;}
.wse8{word-spacing:5.499355px;}
.ws79{word-spacing:5.559131px;}
.wsdb{word-spacing:5.618906px;}
.ws105{word-spacing:5.648832px;}
.ws1f{word-spacing:5.738458px;}
.wsee{word-spacing:5.810227px;}
.ws30{word-spacing:5.977560px;}
.wsdf{word-spacing:6.037336px;}
.wsd2{word-spacing:6.216662px;}
.ws22{word-spacing:6.276438px;}
.ws26{word-spacing:6.395989px;}
.ws73{word-spacing:6.515540px;}
.wsc8{word-spacing:6.535044px;}
.wsc3{word-spacing:6.571116px;}
.wsc4{word-spacing:6.589152px;}
.wse6{word-spacing:6.874194px;}
.wsde{word-spacing:7.053521px;}
.wse3{word-spacing:7.113296px;}
.ws3d{word-spacing:7.232848px;}
.wsd6{word-spacing:7.292623px;}
.ws103{word-spacing:7.316582px;}
.ws19{word-spacing:7.352399px;}
.ws1a{word-spacing:7.412174px;}
.wsea{word-spacing:7.471950px;}
.ws82{word-spacing:7.711052px;}
.ws25{word-spacing:7.770828px;}
.wsc9{word-spacing:7.830604px;}
.ws52{word-spacing:8.009930px;}
.wse4{word-spacing:8.069706px;}
.wsdd{word-spacing:8.428360px;}
.ws12b{word-spacing:8.661542px;}
.ws12e{word-spacing:9.360922px;}
.ws7{word-spacing:9.833058px;}
.wsaa{word-spacing:11.620476px;}
.ws8{word-spacing:11.841512px;}
.ws122{word-spacing:14.148979px;}
.ws4{word-spacing:15.481836px;}
.ws6{word-spacing:22.339429px;}
.wsa{word-spacing:22.720640px;}
.wsa3{word-spacing:35.274482px;}
.ws88{word-spacing:221.864602px;}
.wsb1{word-spacing:317.006748px;}
.wsb2{word-spacing:317.030796px;}
.wsad{word-spacing:317.036808px;}
.wsab{word-spacing:317.048832px;}
.wsac{word-spacing:317.072880px;}
.ws94{word-spacing:319.609200px;}
.wsa0{word-spacing:319.615200px;}
.wsaf{word-spacing:330.792264px;}
.ws93{word-spacing:333.061200px;}
.ws95{word-spacing:333.062400px;}
.ws98{word-spacing:333.067200px;}
.ws91{word-spacing:341.404646px;}
.ws96{word-spacing:342.088464px;}
.wsb9{word-spacing:345.443508px;}
.wsb6{word-spacing:345.804228px;}
.wsb0{word-spacing:346.207032px;}
.wsb7{word-spacing:346.243104px;}
.wsb8{word-spacing:346.249116px;}
.ws8d{word-spacing:346.508400px;}
.ws8e{word-spacing:346.514400px;}
.ws8c{word-spacing:348.801600px;}
.ws8f{word-spacing:354.854246px;}
.ws92{word-spacing:355.516954px;}
.ws90{word-spacing:355.517443px;}
.ws9d{word-spacing:355.519843px;}
.ws9c{word-spacing:355.538064px;}
.ws9e{word-spacing:355.550621px;}
.wsb3{word-spacing:360.587736px;}
.wsba{word-spacing:360.593748px;}
.wsb5{word-spacing:360.948456px;}
.ws9f{word-spacing:363.838579px;}
.wsb4{word-spacing:363.840228px;}
.ws99{word-spacing:363.892378px;}
.ws8b{word-spacing:368.303846px;}
.ws8a{word-spacing:368.969443px;}
.ws9a{word-spacing:368.990064px;}
.ws9b{word-spacing:368.996621px;}
.ws97{word-spacing:370.563379px;}
.ws89{word-spacing:377.341978px;}
.wsae{word-spacing:378.539568px;}
._30{margin-left:-14.470884px;}
._3c{margin-left:-8.655511px;}
._12{margin-left:-7.161121px;}
._4{margin-left:-5.917824px;}
._8{margin-left:-4.895654px;}
._6{margin-left:-3.873485px;}
._3b{margin-left:-2.857278px;}
._2{margin-left:-1.506341px;}
._28{width:1.220940px;}
._3f{width:2.265496px;}
._3e{width:3.389299px;}
._18{width:5.439580px;}
._0{width:10.460700px;}
._1{width:12.218098px;}
._1f{width:13.766345px;}
._14{width:14.824386px;}
._7{width:16.462310px;}
._1d{width:17.598002px;}
._d{width:18.602162px;}
._1a{width:19.618387px;}
._17{width:20.813860px;}
._f{width:21.991476px;}
._3a{width:23.145108px;}
._9{width:24.209118px;}
._3{width:25.314894px;}
._1c{width:26.480591px;}
._b{width:27.496776px;}
._1e{width:28.632512px;}
._10{width:29.828024px;}
._19{width:31.095263px;}
._1b{width:32.159273px;}
._5{width:33.355008px;}
._e{width:34.370970px;}
._c{width:36.224014px;}
._13{width:38.447662px;}
._3d{width:40.300705px;}
._a{width:41.675544px;}
._11{width:42.691729px;}
._2a{width:44.116056px;}
._2e{width:47.819420px;}
._2c{width:59.308380px;}
._2b{width:61.995744px;}
._34{width:63.306360px;}
._2d{width:76.947588px;}
._38{width:101.558129px;}
._22{width:251.776512px;}
._21{width:289.166400px;}
._2f{width:302.313420px;}
._35{width:316.381500px;}
._33{width:330.395472px;}
._31{width:345.948516px;}
._36{width:349.140888px;}
._20{width:351.949133px;}
._32{width:363.010572px;}
._24{width:377.288179px;}
._37{width:378.635760px;}
._26{width:381.753446px;}
._23{width:384.012979px;}
._27{width:390.737779px;}
._25{width:404.241178px;}
._15{width:881.284037px;}
._29{width:2104.598916px;}
._39{width:2512.803000px;}
._16{width:2536.713000px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:47.820600px;}
.fsc{font-size:47.880000px;}
.fsa{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fsb{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:60.120000px;}
.fsf{font-size:62.267400px;}
.fs1{font-size:63.000000px;}
.fs10{font-size:69.186000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y186{bottom:-247.283550px;}
.y1b3{bottom:-182.659899px;}
.y1b2{bottom:-163.400457px;}
.y1b1{bottom:-144.231195px;}
.y1b0{bottom:-124.971753px;}
.y1af{bottom:-105.712311px;}
.y1ae{bottom:-86.543049px;}
.y1ad{bottom:-67.283607px;}
.y1ac{bottom:-48.112842px;}
.y1ab{bottom:-28.853400px;}
.y0{bottom:0.000000px;}
.y1aa{bottom:7.956450px;}
.y3a{bottom:9.233944px;}
.y39{bottom:26.903761px;}
.y1a9{bottom:30.456450px;}
.y67{bottom:31.890000px;}
.y1a7{bottom:33.876564px;}
.y6{bottom:35.925007px;}
.y19f{bottom:47.646450px;}
.y5{bottom:66.525004px;}
.y1a0{bottom:81.396937px;}
.y4{bottom:97.125005px;}
.y1c0{bottom:103.621500px;}
.y37{bottom:104.646000px;}
.y66{bottom:104.863500px;}
.y249{bottom:108.538500px;}
.y26a{bottom:110.181000px;}
.y274{bottom:111.526500px;}
.y2aa{bottom:111.975000px;}
.y1a1{bottom:115.146600px;}
.y21a{bottom:116.010000px;}
.y2e0{bottom:116.458500px;}
.y119{bottom:117.355500px;}
.yba{bottom:119.148000px;}
.y9e{bottom:119.596500px;}
.ye8{bottom:122.286000px;}
.y1bf{bottom:122.449500px;}
.y36{bottom:122.535000px;}
.y65{bottom:123.693000px;}
.y248{bottom:127.368000px;}
.y269{bottom:129.010500px;}
.y2a9{bottom:129.235500px;}
.y2df{bottom:133.719000px;}
.y219{bottom:134.839500px;}
.y118{bottom:136.185000px;}
.yb9{bottom:137.977500px;}
.y273{bottom:138.067500px;}
.y9d{bottom:138.426000px;}
.y22{bottom:139.264499px;}
.y35{bottom:140.422500px;}
.y146{bottom:140.667000px;}
.ye7{bottom:141.115500px;}
.y1be{bottom:141.279000px;}
.y64{bottom:142.522500px;}
.y1e6{bottom:144.852000px;}
.y247{bottom:146.196000px;}
.y2a8{bottom:146.496000px;}
.y1a2{bottom:147.996450px;}
.y2de{bottom:150.978000px;}
.y268{bottom:152.323500px;}
.y218{bottom:153.669000px;}
.y117{bottom:155.013000px;}
.y272{bottom:155.641500px;}
.yb8{bottom:156.807000px;}
.y9c{bottom:157.255500px;}
.y170{bottom:157.540500px;}
.y34{bottom:158.310000px;}
.y145{bottom:159.496500px;}
.ye6{bottom:159.945000px;}
.y1bd{bottom:160.108500px;}
.y255{bottom:161.140500px;}
.y63{bottom:161.352000px;}
.y1e5{bottom:163.681500px;}
.y2a7{bottom:163.756500px;}
.y246{bottom:165.025500px;}
.y2dd{bottom:168.238500px;}
.y267{bottom:171.153000px;}
.y217{bottom:172.498500px;}
.y116{bottom:173.842500px;}
.yb7{bottom:175.636500px;}
.y9b{bottom:176.085000px;}
.y33{bottom:176.199000px;}
.y144{bottom:178.326000px;}
.ye5{bottom:178.774500px;}
.y1bc{bottom:178.938000px;}
.y254{bottom:179.970000px;}
.y62{bottom:180.181500px;}
.y2a6{bottom:181.015500px;}
.y16f{bottom:181.180500px;}
.y1a3{bottom:181.746450px;}
.y271{bottom:182.182500px;}
.y1e4{bottom:182.511000px;}
.y245{bottom:183.855000px;}
.y2dc{bottom:185.499000px;}
.y266{bottom:189.982500px;}
.y216{bottom:191.328000px;}
.y115{bottom:192.672000px;}
.y32{bottom:194.086500px;}
.yb6{bottom:194.466000px;}
.y9a{bottom:194.914500px;}
.y19{bottom:196.933500px;}
.y143{bottom:197.155500px;}
.ye4{bottom:197.604000px;}
.y1bb{bottom:197.767500px;}
.y2a5{bottom:198.276000px;}
.y253{bottom:198.799500px;}
.y61{bottom:199.011000px;}
.y1e3{bottom:201.340500px;}
.y244{bottom:202.684500px;}
.y2db{bottom:202.759500px;}
.y16e{bottom:204.822000px;}
.y270{bottom:208.722000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y215{bottom:210.157500px;}
.y114{bottom:211.501500px;}
.y31{bottom:211.974000px;}
.yb5{bottom:213.295500px;}
.y99{bottom:213.744000px;}
.y1a4{bottom:214.596450px;}
.y2a4{bottom:215.536500px;}
.y142{bottom:215.985000px;}
.ye3{bottom:216.433500px;}
.y1ba{bottom:216.597000px;}
.y252{bottom:217.629000px;}
.y60{bottom:217.840500px;}
.y2da{bottom:220.020000px;}
.y1e2{bottom:220.170000px;}
.y243{bottom:221.514000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y26f{bottom:226.296000px;}
.y16d{bottom:228.462000px;}
.y214{bottom:228.987000px;}
.y30{bottom:229.863000px;}
.y113{bottom:230.331000px;}
.yb4{bottom:232.125000px;}
.y98{bottom:232.573500px;}
.y2a3{bottom:232.797000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y141{bottom:234.814500px;}
.ye2{bottom:235.263000px;}
.y1b9{bottom:235.426500px;}
.y251{bottom:236.458500px;}
.y5f{bottom:236.670000px;}
.y2d9{bottom:237.280500px;}
.y1e1{bottom:238.999500px;}
.y242{bottom:240.343500px;}
.y265{bottom:246.919500px;}
.y213{bottom:247.816500px;}
.y1a5{bottom:248.346450px;}
.y112{bottom:249.160500px;}
.y2a2{bottom:250.057500px;}
.yb3{bottom:250.954500px;}
.y97{bottom:251.403000px;}
.y16c{bottom:252.103500px;}
.y26e{bottom:252.837000px;}
.y140{bottom:253.644000px;}
.ye1{bottom:254.092500px;}
.y1b8{bottom:254.256000px;}
.y2d8{bottom:254.541000px;}
.y250{bottom:255.288000px;}
.y5e{bottom:255.499500px;}
.y1e0{bottom:257.829000px;}
.y241{bottom:259.173000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y264{bottom:265.749000px;}
.y212{bottom:266.646000px;}
.y2a1{bottom:267.318000px;}
.y111{bottom:267.990000px;}
.yb2{bottom:269.784000px;}
.y96{bottom:270.232500px;}
.y26d{bottom:270.411000px;}
.y2d7{bottom:271.801500px;}
.y13f{bottom:272.473500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.ye0{bottom:272.922000px;}
.y1b7{bottom:273.085500px;}
.y24f{bottom:274.117500px;}
.y5d{bottom:274.329000px;}
.y16b{bottom:275.743500px;}
.y1df{bottom:276.658500px;}
.y240{bottom:278.002500px;}
.y1a6{bottom:281.196450px;}
.y263{bottom:284.578500px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y211{bottom:285.475500px;}
.y110{bottom:286.819500px;}
.y26c{bottom:287.985000px;}
.yb1{bottom:288.613500px;}
.y95{bottom:289.062000px;}
.y13e{bottom:291.303000px;}
.ydf{bottom:291.751500px;}
.y1b6{bottom:291.915000px;}
.y24e{bottom:292.947000px;}
.y5c{bottom:293.158500px;}
.y1de{bottom:295.488000px;}
.y23f{bottom:296.832000px;}
.y16a{bottom:299.385000px;}
.y2f{bottom:299.890500px;}
.y2a0{bottom:301.839000px;}
.y262{bottom:303.408000px;}
.y210{bottom:304.305000px;}
.y26b{bottom:305.559000px;}
.y10f{bottom:305.649000px;}
.y2d6{bottom:306.321000px;}
.yb0{bottom:307.443000px;}
.y94{bottom:307.891500px;}
.y13d{bottom:310.132500px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yde{bottom:310.581000px;}
.y1b5{bottom:310.744500px;}
.y24d{bottom:311.776500px;}
.y5b{bottom:311.988000px;}
.y1a8{bottom:312.426450px;}
.y1dd{bottom:314.317500px;}
.y23e{bottom:315.661500px;}
.y2e{bottom:317.779500px;}
.y29f{bottom:319.099500px;}
.y261{bottom:322.237500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y169{bottom:323.025000px;}
.y20f{bottom:323.133000px;}
.y2d5{bottom:323.581500px;}
.y10e{bottom:324.478500px;}
.yaf{bottom:326.272500px;}
.y93{bottom:326.719500px;}
.y13c{bottom:328.962000px;}
.ydd{bottom:329.410500px;}
.y1b4{bottom:329.574000px;}
.y24c{bottom:330.606000px;}
.y5a{bottom:330.817500px;}
.y1dc{bottom:333.145500px;}
.y2d{bottom:335.667000px;}
.y29e{bottom:336.358500px;}
.y2d4{bottom:340.842000px;}
.y260{bottom:341.067000px;}
.y20e{bottom:341.962500px;}
.y10d{bottom:343.308000px;}
.yae{bottom:345.102000px;}
.y92{bottom:345.549000px;}
.y168{bottom:346.665000px;}
.y13b{bottom:347.791500px;}
.y10{bottom:348.133500px;}
.ydc{bottom:348.240000px;}
.y24b{bottom:349.435500px;}
.y59{bottom:349.647000px;}
.y19e{bottom:350.676450px;}
.y1db{bottom:351.975000px;}
.y2c{bottom:353.554500px;}
.y29d{bottom:353.619000px;}
.y2d3{bottom:358.102500px;}
.y25f{bottom:359.896500px;}
.y20d{bottom:360.792000px;}
.y10c{bottom:362.137500px;}
.y183{bottom:362.937000px;}
.yad{bottom:363.931500px;}
.y91{bottom:364.378500px;}
.y13a{bottom:366.621000px;}
.ydb{bottom:367.069500px;}
.y23d{bottom:368.265000px;}
.y58{bottom:368.476500px;}
.y19d{bottom:370.206450px;}
.y167{bottom:370.306500px;}
.y1da{bottom:370.804500px;}
.y29c{bottom:370.879500px;}
.y2d2{bottom:375.363000px;}
.y25e{bottom:378.726000px;}
.y20c{bottom:379.621500px;}
.y2b{bottom:380.409000px;}
.y10b{bottom:380.967000px;}
.yac{bottom:382.761000px;}
.y90{bottom:383.208000px;}
.y139{bottom:385.450500px;}
.yda{bottom:385.899000px;}
.yf{bottom:386.785499px;}
.y23c{bottom:387.094500px;}
.y57{bottom:387.306000px;}
.y29b{bottom:388.140000px;}
.y1d9{bottom:389.634000px;}
.y19c{bottom:391.176450px;}
.y2d1{bottom:392.623500px;}
.y166{bottom:393.946500px;}
.y25d{bottom:397.555500px;}
.y2a{bottom:398.298000px;}
.y20b{bottom:398.451000px;}
.y10a{bottom:399.796500px;}
.yab{bottom:401.589000px;}
.y8f{bottom:402.037500px;}
.y138{bottom:404.280000px;}
.yd9{bottom:404.728500px;}
.y29a{bottom:405.400500px;}
.y23b{bottom:405.924000px;}
.y56{bottom:406.135500px;}
.ye{bottom:408.044999px;}
.y1d8{bottom:408.463500px;}
.y2d0{bottom:409.884000px;}
.y19b{bottom:412.236450px;}
.y29{bottom:416.185500px;}
.y25c{bottom:416.383500px;}
.y20a{bottom:417.280500px;}
.y165{bottom:417.588000px;}
.y109{bottom:418.626000px;}
.yaa{bottom:420.418500px;}
.y8e{bottom:420.867000px;}
.y299{bottom:422.661000px;}
.y137{bottom:423.109500px;}
.yd8{bottom:423.558000px;}
.y23a{bottom:424.753500px;}
.y55{bottom:424.965000px;}
.y2cf{bottom:427.144500px;}
.y1d7{bottom:427.293000px;}
.y19a{bottom:433.206450px;}
.y28{bottom:434.073000px;}
.y25b{bottom:435.213000px;}
.y209{bottom:436.110000px;}
.y108{bottom:437.455500px;}
.ya9{bottom:439.248000px;}
.y8d{bottom:439.696500px;}
.y298{bottom:439.921500px;}
.y164{bottom:441.228000px;}
.y136{bottom:441.939000px;}
.yd7{bottom:442.387500px;}
.y239{bottom:443.583000px;}
.y54{bottom:443.794500px;}
.y2ce{bottom:444.403500px;}
.y1d6{bottom:446.122500px;}
.y27{bottom:451.962000px;}
.y25a{bottom:454.042500px;}
.y199{bottom:454.176450px;}
.y208{bottom:454.939500px;}
.y107{bottom:456.285000px;}
.y297{bottom:457.182000px;}
.ya8{bottom:458.077500px;}
.y8c{bottom:458.526000px;}
.y135{bottom:460.768500px;}
.yd6{bottom:461.217000px;}
.y2cd{bottom:461.664000px;}
.y238{bottom:462.412500px;}
.y53{bottom:462.624000px;}
.y163{bottom:464.869500px;}
.y1d5{bottom:464.952000px;}
.y26{bottom:469.849500px;}
.y259{bottom:472.872000px;}
.y207{bottom:473.769000px;}
.y296{bottom:474.441000px;}
.y106{bottom:475.114500px;}
.y198{bottom:475.146450px;}
.ya7{bottom:476.907000px;}
.y8b{bottom:477.355500px;}
.y2cc{bottom:478.924500px;}
.y134{bottom:479.598000px;}
.yd5{bottom:480.045000px;}
.y237{bottom:481.240500px;}
.y52{bottom:481.453500px;}
.y25{bottom:487.737000px;}
.y162{bottom:488.509500px;}
.y1d4{bottom:491.253000px;}
.y258{bottom:491.701500px;}
.y206{bottom:492.598500px;}
.ya6{bottom:495.736500px;}
.y197{bottom:496.116450px;}
.y8a{bottom:496.185000px;}
.y105{bottom:498.427500px;}
.yd4{bottom:498.874500px;}
.y236{bottom:500.070000px;}
.ybb{bottom:500.220000px;}
.y51{bottom:500.281500px;}
.yd{bottom:502.864502px;}
.y24{bottom:505.626000px;}
.y295{bottom:508.962000px;}
.y257{bottom:510.531000px;}
.y205{bottom:511.428000px;}
.y161{bottom:512.151000px;}
.y2cb{bottom:513.445500px;}
.ya5{bottom:514.566000px;}
.y89{bottom:515.014500px;}
.y196{bottom:517.086450px;}
.y133{bottom:517.257000px;}
.yd3{bottom:517.704000px;}
.y235{bottom:518.899500px;}
.y50{bottom:519.111000px;}
.yc{bottom:520.864502px;}
.y23{bottom:523.513500px;}
.y294{bottom:526.222500px;}
.y256{bottom:529.360500px;}
.y204{bottom:530.257500px;}
.y2ca{bottom:530.706000px;}
.y104{bottom:532.051500px;}
.ya4{bottom:533.395500px;}
.y88{bottom:533.844000px;}
.y160{bottom:535.791000px;}
.y132{bottom:536.086500px;}
.yd2{bottom:536.533500px;}
.y234{bottom:537.729000px;}
.y4f{bottom:537.940500px;}
.y195{bottom:538.146600px;}
.yb{bottom:538.864499px;}
.y293{bottom:543.483000px;}
.y2c9{bottom:547.966500px;}
.y1d3{bottom:548.190000px;}
.y203{bottom:549.087000px;}
.y103{bottom:550.881000px;}
.ya3{bottom:552.225000px;}
.y87{bottom:552.673500px;}
.y131{bottom:554.916000px;}
.yd1{bottom:555.363000px;}
.y233{bottom:556.558500px;}
.y4e{bottom:556.770000px;}
.ya{bottom:556.864499px;}
.y194{bottom:559.116450px;}
.y15f{bottom:559.432500px;}
.y292{bottom:560.743500px;}
.y24a{bottom:564.031500px;}
.y2c8{bottom:565.227000px;}
.y1d2{bottom:567.019500px;}
.y202{bottom:567.916500px;}
.y102{bottom:569.710500px;}
.ya2{bottom:571.054500px;}
.y86{bottom:571.503000px;}
.y130{bottom:573.744000px;}
.yd0{bottom:574.192500px;}
.y232{bottom:575.388000px;}
.y1c1{bottom:575.538000px;}
.y2e3{bottom:577.929000px;}
.y291{bottom:578.004000px;}
.y4d{bottom:580.083000px;}
.y193{bottom:580.086450px;}
.y2c7{bottom:582.487500px;}
.y15e{bottom:583.072500px;}
.y1d1{bottom:585.849000px;}
.y201{bottom:586.746000px;}
.y101{bottom:588.538500px;}
.ya1{bottom:589.884000px;}
.y85{bottom:590.332500px;}
.y12f{bottom:592.573500px;}
.ycf{bottom:593.022000px;}
.y231{bottom:594.217500px;}
.y2e2{bottom:595.189500px;}
.y290{bottom:595.264500px;}
.y2c6{bottom:599.746500px;}
.y192{bottom:601.056450px;}
.y1d0{bottom:604.678500px;}
.y200{bottom:605.575500px;}
.y15d{bottom:606.714000px;}
.y100{bottom:607.368000px;}
.ya0{bottom:608.713500px;}
.y84{bottom:609.162000px;}
.y12e{bottom:611.403000px;}
.yce{bottom:611.851500px;}
.y2e1{bottom:612.450000px;}
.y28f{bottom:612.525000px;}
.y230{bottom:613.047000px;}
.y2c5{bottom:617.007000px;}
.y191{bottom:622.026450px;}
.y1cf{bottom:623.508000px;}
.yff{bottom:626.197500px;}
.y83{bottom:627.991500px;}
.y28e{bottom:629.784000px;}
.y15c{bottom:630.354000px;}
.ycd{bottom:630.681000px;}
.y1ff{bottom:631.876500px;}
.y9f{bottom:632.026500px;}
.y2c4{bottom:634.267500px;}
.y12d{bottom:634.716000px;}
.y1ce{bottom:642.337500px;}
.y190{bottom:643.086450px;}
.yfe{bottom:645.027000px;}
.y9{bottom:645.510000px;}
.y82{bottom:646.821000px;}
.y28d{bottom:647.044500px;}
.ycc{bottom:649.510500px;}
.y12c{bottom:650.407500px;}
.y22f{bottom:650.706000px;}
.y2c3{bottom:651.528000px;}
.y15b{bottom:653.995500px;}
.y4c{bottom:655.233000px;}
.y1fe{bottom:658.177500px;}
.y1cd{bottom:661.167000px;}
.yfd{bottom:663.856500px;}
.y18f{bottom:664.056450px;}
.y28c{bottom:664.305000px;}
.y81{bottom:665.650500px;}
.y8{bottom:666.771000px;}
.ycb{bottom:668.340000px;}
.y2c2{bottom:668.788500px;}
.y22e{bottom:669.535500px;}
.y1fd{bottom:677.007000px;}
.y15a{bottom:677.635500px;}
.y1cc{bottom:679.996500px;}
.y28b{bottom:681.565500px;}
.yfc{bottom:682.686000px;}
.y12b{bottom:684.031500px;}
.y80{bottom:684.480000px;}
.y18e{bottom:685.026450px;}
.y2c1{bottom:686.049000px;}
.yca{bottom:687.169500px;}
.y22d{bottom:688.365000px;}
.y4b{bottom:692.623500px;}
.y1fc{bottom:695.836500px;}
.y1cb{bottom:698.826000px;}
.y159{bottom:701.277000px;}
.yfb{bottom:701.515500px;}
.y12a{bottom:702.861000px;}
.y7f{bottom:703.309500px;}
.y18d{bottom:705.996450px;}
.yc9{bottom:705.999000px;}
.y22c{bottom:707.194500px;}
.y4a{bottom:712.080000px;}
.y182{bottom:713.964000px;}
.y1fb{bottom:714.666000px;}
.y28a{bottom:716.086500px;}
.y1ca{bottom:717.655500px;}
.yfa{bottom:720.345000px;}
.y2c0{bottom:720.570000px;}
.y129{bottom:721.690500px;}
.y7e{bottom:722.139000px;}
.yc8{bottom:724.828500px;}
.y158{bottom:724.917000px;}
.y22b{bottom:726.024000px;}
.y7{bottom:726.298500px;}
.y18c{bottom:726.966450px;}
.y49{bottom:731.536500px;}
.y181{bottom:732.807000px;}
.y289{bottom:733.347000px;}
.y1fa{bottom:733.495500px;}
.y1c9{bottom:736.485000px;}
.y2bf{bottom:737.829000px;}
.yf9{bottom:739.174500px;}
.y128{bottom:740.520000px;}
.y7d{bottom:740.968500px;}
.yc7{bottom:743.658000px;}
.y22a{bottom:744.853500px;}
.y18b{bottom:748.026450px;}
.y157{bottom:748.558500px;}
.y288{bottom:750.607500px;}
.y48{bottom:750.994500px;}
.y1f9{bottom:752.325000px;}
.y3{bottom:752.599495px;}
.y2be{bottom:755.089500px;}
.y1c8{bottom:755.314500px;}
.y180{bottom:756.448500px;}
.yf8{bottom:758.004000px;}
.y127{bottom:759.349500px;}
.y7c{bottom:759.798000px;}
.yc6{bottom:762.487500px;}
.y229{bottom:763.683000px;}
.y287{bottom:767.866500px;}
.y18a{bottom:768.996450px;}
.y47{bottom:770.451000px;}
.y1f8{bottom:771.154500px;}
.y156{bottom:772.198500px;}
.y2bd{bottom:772.350000px;}
.y1c7{bottom:774.144000px;}
.yf7{bottom:776.833500px;}
.y126{bottom:778.179000px;}
.y7b{bottom:778.627500px;}
.y17f{bottom:780.088500px;}
.yc5{bottom:781.317000px;}
.y228{bottom:782.512500px;}
.y286{bottom:785.127000px;}
.y2bc{bottom:789.610500px;}
.y46{bottom:789.909000px;}
.y189{bottom:789.966450px;}
.y1f7{bottom:789.984000px;}
.y1c6{bottom:792.973500px;}
.yf6{bottom:795.663000px;}
.y155{bottom:795.840000px;}
.y125{bottom:797.008500px;}
.y7a{bottom:797.457000px;}
.yc4{bottom:800.146500px;}
.y227{bottom:801.342000px;}
.y285{bottom:802.387500px;}
.y17e{bottom:803.730000px;}
.y2bb{bottom:806.871000px;}
.y1f6{bottom:808.813500px;}
.y45{bottom:809.365500px;}
.y188{bottom:810.936450px;}
.y1c5{bottom:811.803000px;}
.yf5{bottom:814.492500px;}
.y124{bottom:815.838000px;}
.y79{bottom:816.286500px;}
.yc3{bottom:818.976000px;}
.y154{bottom:819.480000px;}
.y284{bottom:819.648000px;}
.y226{bottom:820.171500px;}
.y2ba{bottom:824.131500px;}
.y17d{bottom:827.370000px;}
.y1f5{bottom:827.643000px;}
.y44{bottom:828.822000px;}
.y1c4{bottom:830.632500px;}
.y187{bottom:831.906450px;}
.yf4{bottom:833.322000px;}
.y123{bottom:834.667500px;}
.y78{bottom:835.114500px;}
.y283{bottom:836.908500px;}
.yc2{bottom:837.805500px;}
.y225{bottom:839.001000px;}
.y2b9{bottom:841.392000px;}
.y1f4{bottom:846.472500px;}
.y43{bottom:848.280000px;}
.y1c3{bottom:849.462000px;}
.y17c{bottom:851.011500px;}
.y153{bottom:851.100000px;}
.yf3{bottom:852.151500px;}
.y122{bottom:853.497000px;}
.y77{bottom:853.944000px;}
.y282{bottom:854.169000px;}
.yc1{bottom:856.635000px;}
.y224{bottom:857.830500px;}
.y2b8{bottom:858.652500px;}
.y1f3{bottom:865.302000px;}
.y42{bottom:867.736500px;}
.y1c2{bottom:868.291500px;}
.yf2{bottom:870.981000px;}
.y281{bottom:871.429500px;}
.y121{bottom:872.326500px;}
.y76{bottom:872.773500px;}
.y17b{bottom:874.651500px;}
.yc0{bottom:875.464500px;}
.y2b7{bottom:875.913000px;}
.y223{bottom:876.660000px;}
.y2{bottom:879.369000px;}
.y1f2{bottom:884.131500px;}
.y152{bottom:887.121000px;}
.y280{bottom:888.690000px;}
.y185{bottom:888.876585px;}
.yf1{bottom:889.810500px;}
.y120{bottom:891.156000px;}
.y75{bottom:891.603000px;}
.y2b6{bottom:893.172000px;}
.ybf{bottom:894.294000px;}
.y222{bottom:895.489500px;}
.y17a{bottom:898.293000px;}
.y184{bottom:898.506450px;}
.y1f1{bottom:902.961000px;}
.y151{bottom:905.950500px;}
.y41{bottom:906.322500px;}
.yf0{bottom:908.640000px;}
.y11f{bottom:909.984000px;}
.y74{bottom:910.432500px;}
.ybe{bottom:913.123500px;}
.y221{bottom:914.319000px;}
.y1f0{bottom:921.790500px;}
.y179{bottom:921.933000px;}
.y40{bottom:922.461000px;}
.y27f{bottom:923.209500px;}
.y150{bottom:924.778500px;}
.yef{bottom:927.469500px;}
.y2b5{bottom:927.693000px;}
.y11e{bottom:928.813500px;}
.y73{bottom:929.262000px;}
.y220{bottom:933.148500px;}
.ybd{bottom:936.435000px;}
.y27e{bottom:940.470000px;}
.y1ef{bottom:940.620000px;}
.y14f{bottom:943.608000px;}
.y2b4{bottom:944.953500px;}
.y178{bottom:945.574500px;}
.yee{bottom:946.299000px;}
.y11d{bottom:947.643000px;}
.y72{bottom:948.091500px;}
.y21f{bottom:951.978000px;}
.ybc{bottom:952.126500px;}
.y27d{bottom:957.730500px;}
.y1ee{bottom:959.449500px;}
.y2b3{bottom:962.214000px;}
.y14e{bottom:962.437500px;}
.yed{bottom:965.128500px;}
.y11c{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.y71{bottom:966.921000px;}
.y177{bottom:969.214500px;}
.y21e{bottom:970.807500px;}
.y3f{bottom:971.478000px;}
.y27c{bottom:974.991000px;}
.y1ed{bottom:978.279000px;}
.y2b2{bottom:979.474500px;}
.y14d{bottom:981.267000px;}
.yec{bottom:983.958000px;}
.y11b{bottom:985.302000px;}
.y70{bottom:985.750500px;}
.y21d{bottom:989.635500px;}
.y27b{bottom:992.251500px;}
.y176{bottom:992.856000px;}
.y2b1{bottom:996.735000px;}
.y1ec{bottom:997.108500px;}
.y14c{bottom:1000.096500px;}
.yeb{bottom:1002.787500px;}
.y6f{bottom:1004.580000px;}
.y3e{bottom:1008.240000px;}
.y21c{bottom:1008.465000px;}
.y11a{bottom:1008.615000px;}
.y27a{bottom:1009.512000px;}
.y2b0{bottom:1013.995500px;}
.y1eb{bottom:1015.938000px;}
.y175{bottom:1016.496000px;}
.y14b{bottom:1018.926000px;}
.y6e{bottom:1023.409500px;}
.yea{bottom:1026.099000px;}
.y279{bottom:1026.772500px;}
.y21b{bottom:1027.294500px;}
.y2af{bottom:1031.254500px;}
.y1ea{bottom:1034.767500px;}
.y3d{bottom:1036.485000px;}
.y14a{bottom:1037.755500px;}
.y174{bottom:1040.137500px;}
.y6d{bottom:1042.239000px;}
.y278{bottom:1044.033000px;}
.ye9{bottom:1046.274000px;}
.y2ae{bottom:1048.515000px;}
.y1e9{bottom:1053.597000px;}
.y149{bottom:1056.585000px;}
.y6c{bottom:1061.068500px;}
.y277{bottom:1061.292000px;}
.y173{bottom:1063.777500px;}
.y3c{bottom:1064.728500px;}
.y2ad{bottom:1065.775500px;}
.y1e8{bottom:1072.426500px;}
.y148{bottom:1075.414500px;}
.y276{bottom:1078.552500px;}
.y6b{bottom:1079.898000px;}
.y2ac{bottom:1083.036000px;}
.y172{bottom:1087.419000px;}
.y1e7{bottom:1091.256000px;}
.y3b{bottom:1092.972000px;}
.y147{bottom:1094.244000px;}
.y275{bottom:1095.813000px;}
.y6a{bottom:1098.727500px;}
.y2ab{bottom:1100.296500px;}
.y69{bottom:1117.557000px;}
.y171{bottom:1119.037500px;}
.y38{bottom:1136.460000px;}
.y68{bottom:1177.662000px;}
.h9{height:30.461558px;}
.ha{height:30.712615px;}
.h7{height:32.130000px;}
.h18{height:34.811191px;}
.h10{height:34.813397px;}
.h13{height:35.100320px;}
.h17{height:35.255391px;}
.h14{height:38.734848px;}
.h11{height:39.165235px;}
.h1a{height:39.260742px;}
.h15{height:39.488026px;}
.h1b{height:41.501465px;}
.hf{height:43.038432px;}
.h12{height:43.516637px;}
.h19{height:43.710293px;}
.hd{height:43.875290px;}
.h6{height:45.900000px;}
.h1c{height:46.112739px;}
.h3{height:48.195000px;}
.hb{height:50.930649px;}
.h2{height:55.080000px;}
.hc{height:61.613006px;}
.he{height:77.469696px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h16{height:327.310500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.527766px;}
.w5{width:554.977500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.xe{left:-188.802000px;}
.x0{left:0.000000px;}
.x10{left:6.768000px;}
.x12{left:9.648286px;}
.x11{left:12.528000px;}
.x15{left:38.628000px;}
.xf{left:45.468000px;}
.x7{left:52.525500px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.x18{left:84.220500px;}
.x17{left:85.848000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x9{left:248.526000px;}
.x8{left:249.591000px;}
.xd{left:266.763000px;}
.x13{left:269.928000px;}
.xa{left:281.479500px;}
.x16{left:283.720500px;}
.xb{left:293.956500px;}
.xc{left:295.072500px;}
.x3{left:454.959000px;}
.x14{left:550.548000px;}
@media print{
.v1{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-0.453860pt;}
.ls15{letter-spacing:-0.181696pt;}
.ls1e{letter-spacing:-0.176352pt;}
.ls1d{letter-spacing:-0.171008pt;}
.ls16{letter-spacing:-0.160320pt;}
.ls14{letter-spacing:-0.138944pt;}
.ls1c{letter-spacing:-0.133600pt;}
.ls18{letter-spacing:-0.128256pt;}
.ls1b{letter-spacing:-0.122912pt;}
.ls17{letter-spacing:-0.101536pt;}
.ls19{letter-spacing:-0.080160pt;}
.ls22{letter-spacing:-0.042752pt;}
.ls12{letter-spacing:-0.034048pt;}
.ls21{letter-spacing:-0.019200pt;}
.ls24{letter-spacing:-0.016032pt;}
.ls13{letter-spacing:-0.012768pt;}
.ls23{letter-spacing:-0.005344pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.021376pt;}
.ls11{letter-spacing:0.032064pt;}
.lse{letter-spacing:0.037408pt;}
.lsc{letter-spacing:0.048000pt;}
.lsf{letter-spacing:0.058784pt;}
.ls1a{letter-spacing:0.122912pt;}
.lsa{letter-spacing:0.148960pt;}
.lsb{letter-spacing:0.160320pt;}
.ls9{letter-spacing:0.161728pt;}
.ls7{letter-spacing:0.570745pt;}
.ls8{letter-spacing:0.576078pt;}
.lsd{letter-spacing:1.162325pt;}
.ls1f{letter-spacing:1.455673pt;}
.ls3{letter-spacing:10.626533pt;}
.ls5{letter-spacing:12.698994pt;}
.ls2{letter-spacing:13.389734pt;}
.ls4{letter-spacing:15.621357pt;}
.ls6{letter-spacing:15.993294pt;}
.ls1{letter-spacing:25.292137pt;}
.wsa4{word-spacing:-62.660991pt;}
.wsc{word-spacing:-20.194365pt;}
.ws74{word-spacing:-13.283467pt;}
.wsf5{word-spacing:-11.955200pt;}
.wsa1{word-spacing:-10.801728pt;}
.wsa2{word-spacing:-10.640000pt;}
.ws2d{word-spacing:-10.626800pt;}
.ws5{word-spacing:-9.298400pt;}
.ws83{word-spacing:-2.975497pt;}
.wsec{word-spacing:-2.922363pt;}
.wse9{word-spacing:-2.869229pt;}
.wsd5{word-spacing:-2.816095pt;}
.wsd8{word-spacing:-2.762961pt;}
.ws4a{word-spacing:-2.709827pt;}
.ws4e{word-spacing:-2.603559pt;}
.ws7c{word-spacing:-2.550426pt;}
.ws7b{word-spacing:-2.444158pt;}
.wsfc{word-spacing:-2.199757pt;}
.wsd4{word-spacing:-2.178489pt;}
.wse1{word-spacing:-1.965953pt;}
.ws11a{word-spacing:-1.912832pt;}
.ws35{word-spacing:-1.912819pt;}
.ws78{word-spacing:-1.859685pt;}
.ws46{word-spacing:-1.806551pt;}
.wscd{word-spacing:-1.753418pt;}
.ws4b{word-spacing:-1.700284pt;}
.wsca{word-spacing:-1.647150pt;}
.wscc{word-spacing:-1.594016pt;}
.ws75{word-spacing:-1.540882pt;}
.wscb{word-spacing:-1.487748pt;}
.ws4d{word-spacing:-1.434614pt;}
.ws12{word-spacing:-1.291162pt;}
.wsc6{word-spacing:-1.223776pt;}
.ws70{word-spacing:-1.222079pt;}
.ws43{word-spacing:-1.168945pt;}
.wsf7{word-spacing:-1.147699pt;}
.ws3c{word-spacing:-1.115811pt;}
.ws72{word-spacing:-1.062677pt;}
.ws10f{word-spacing:-1.004237pt;}
.ws67{word-spacing:-0.956410pt;}
.ws4f{word-spacing:-0.903276pt;}
.wsc2{word-spacing:-0.881760pt;}
.ws11{word-spacing:-0.860774pt;}
.wse0{word-spacing:-0.850142pt;}
.ws71{word-spacing:-0.797008pt;}
.ws3e{word-spacing:-0.743874pt;}
.ws44{word-spacing:-0.690740pt;}
.ws125{word-spacing:-0.621670pt;}
.wsbe{word-spacing:-0.598528pt;}
.wsdc{word-spacing:-0.584473pt;}
.wsc1{word-spacing:-0.555776pt;}
.ws49{word-spacing:-0.531339pt;}
.ws54{word-spacing:-0.478205pt;}
.wsd3{word-spacing:-0.425071pt;}
.ws85{word-spacing:-0.371937pt;}
.ws57{word-spacing:-0.318803pt;}
.wsc0{word-spacing:-0.299264pt;}
.wsed{word-spacing:-0.286925pt;}
.ws1c{word-spacing:-0.265669pt;}
.wsa8{word-spacing:-0.242592pt;}
.wsf3{word-spacing:-0.239104pt;}
.ws20{word-spacing:-0.212535pt;}
.ws10{word-spacing:-0.191283pt;}
.ws37{word-spacing:-0.159402pt;}
.ws13{word-spacing:-0.143462pt;}
.ws18{word-spacing:-0.106268pt;}
.wsff{word-spacing:-0.095642pt;}
.wsa9{word-spacing:-0.068096pt;}
.ws1b{word-spacing:-0.053134pt;}
.wsf{word-spacing:-0.047821pt;}
.wsa7{word-spacing:-0.046816pt;}
.ws10b{word-spacing:-0.010692pt;}
.ws124{word-spacing:-0.009105pt;}
.ws104{word-spacing:-0.008883pt;}
.ws11c{word-spacing:-0.007552pt;}
.ws114{word-spacing:-0.006690pt;}
.ws12f{word-spacing:-0.003985pt;}
.ws111{word-spacing:-0.002935pt;}
.wsfa{word-spacing:-0.001442pt;}
.ws120{word-spacing:-0.001357pt;}
.ws126{word-spacing:-0.001348pt;}
.ws3{word-spacing:-0.000023pt;}
.ws0{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.003199pt;}
.ws101{word-spacing:0.047821pt;}
.ws39{word-spacing:0.053134pt;}
.ws110{word-spacing:0.080182pt;}
.wsf1{word-spacing:0.095642pt;}
.ws1e{word-spacing:0.106268pt;}
.wsbb{word-spacing:0.110400pt;}
.ws100{word-spacing:0.143462pt;}
.wsbc{word-spacing:0.158400pt;}
.ws27{word-spacing:0.159402pt;}
.wsbd{word-spacing:0.177600pt;}
.wsfb{word-spacing:0.191283pt;}
.ws2b{word-spacing:0.212535pt;}
.ws14{word-spacing:0.239104pt;}
.ws45{word-spacing:0.265669pt;}
.wsf9{word-spacing:0.286925pt;}
.ws63{word-spacing:0.318803pt;}
.ws48{word-spacing:0.371937pt;}
.ws56{word-spacing:0.425071pt;}
.ws117{word-spacing:0.430387pt;}
.wsd0{word-spacing:0.531339pt;}
.ws10e{word-spacing:0.573850pt;}
.ws5d{word-spacing:0.584473pt;}
.ws42{word-spacing:0.637606pt;}
.ws4c{word-spacing:0.690740pt;}
.ws5f{word-spacing:0.743874pt;}
.ws116{word-spacing:0.765133pt;}
.wseb{word-spacing:0.797008pt;}
.ws15{word-spacing:0.812954pt;}
.ws76{word-spacing:0.850142pt;}
.ws31{word-spacing:0.903276pt;}
.ws80{word-spacing:0.956410pt;}
.ws10a{word-spacing:1.004237pt;}
.wse2{word-spacing:1.009543pt;}
.ws66{word-spacing:1.062677pt;}
.ws2a{word-spacing:1.115811pt;}
.ws106{word-spacing:1.147699pt;}
.ws28{word-spacing:1.168945pt;}
.ws29{word-spacing:1.222079pt;}
.wsb{word-spacing:1.227389pt;}
.ws65{word-spacing:1.275213pt;}
.ws53{word-spacing:1.328347pt;}
.ws7a{word-spacing:1.381481pt;}
.wsf6{word-spacing:1.482445pt;}
.ws5e{word-spacing:1.487748pt;}
.ws11e{word-spacing:1.530266pt;}
.ws64{word-spacing:1.540882pt;}
.ws11d{word-spacing:1.578086pt;}
.wsd1{word-spacing:1.594016pt;}
.ws10c{word-spacing:1.625907pt;}
.ws10d{word-spacing:1.626181pt;}
.ws50{word-spacing:1.647150pt;}
.ws108{word-spacing:1.673728pt;}
.ws51{word-spacing:1.700284pt;}
.ws36{word-spacing:1.753418pt;}
.wse7{word-spacing:1.806551pt;}
.ws129{word-spacing:1.817190pt;}
.ws6d{word-spacing:1.859685pt;}
.ws128{word-spacing:1.865011pt;}
.ws62{word-spacing:1.912819pt;}
.wsef{word-spacing:1.960653pt;}
.ws61{word-spacing:1.965953pt;}
.ws5c{word-spacing:2.019087pt;}
.ws12c{word-spacing:2.056294pt;}
.wscf{word-spacing:2.072221pt;}
.wsfd{word-spacing:2.104115pt;}
.wse5{word-spacing:2.125355pt;}
.ws12d{word-spacing:2.151936pt;}
.ws41{word-spacing:2.178489pt;}
.ws2{word-spacing:2.231616pt;}
.ws6c{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws6a{word-spacing:2.284756pt;}
.wsf2{word-spacing:2.295398pt;}
.ws77{word-spacing:2.337890pt;}
.wsa6{word-spacing:2.391024pt;}
.ws1d{word-spacing:2.497292pt;}
.ws127{word-spacing:2.534502pt;}
.ws40{word-spacing:2.550426pt;}
.wsd{word-spacing:2.550432pt;}
.wsc5{word-spacing:2.581152pt;}
.ws5b{word-spacing:2.603559pt;}
.ws81{word-spacing:2.656693pt;}
.ws102{word-spacing:2.677965pt;}
.ws7e{word-spacing:2.709827pt;}
.ws7f{word-spacing:2.762961pt;}
.wsa5{word-spacing:2.816095pt;}
.wse{word-spacing:2.828366pt;}
.ws16{word-spacing:2.861926pt;}
.ws107{word-spacing:2.862592pt;}
.ws123{word-spacing:2.863343pt;}
.ws11f{word-spacing:2.864666pt;}
.wsf4{word-spacing:2.869248pt;}
.ws119{word-spacing:2.917069pt;}
.ws84{word-spacing:2.922363pt;}
.ws68{word-spacing:2.975497pt;}
.ws118{word-spacing:3.012710pt;}
.ws69{word-spacing:3.028630pt;}
.wsf0{word-spacing:3.035526pt;}
.wsf8{word-spacing:3.060531pt;}
.ws38{word-spacing:3.081764pt;}
.wsc7{word-spacing:3.088832pt;}
.ws11b{word-spacing:3.108352pt;}
.ws5a{word-spacing:3.134898pt;}
.ws113{word-spacing:3.156173pt;}
.ws17{word-spacing:3.188032pt;}
.ws55{word-spacing:3.241166pt;}
.ws2f{word-spacing:3.294300pt;}
.ws6b{word-spacing:3.347434pt;}
.ws109{word-spacing:3.395277pt;}
.ws3f{word-spacing:3.400567pt;}
.wsda{word-spacing:3.453701pt;}
.ws58{word-spacing:3.506835pt;}
.ws3b{word-spacing:3.559969pt;}
.ws3a{word-spacing:3.613103pt;}
.ws6f{word-spacing:3.666237pt;}
.wsfe{word-spacing:3.682202pt;}
.ws86{word-spacing:3.719371pt;}
.ws7d{word-spacing:3.772505pt;}
.ws6e{word-spacing:3.825638pt;}
.ws32{word-spacing:3.878772pt;}
.ws24{word-spacing:3.931906pt;}
.ws23{word-spacing:3.985040pt;}
.ws112{word-spacing:4.016947pt;}
.ws47{word-spacing:4.038174pt;}
.wsd7{word-spacing:4.091308pt;}
.ws2e{word-spacing:4.197575pt;}
.wsce{word-spacing:4.250709pt;}
.ws60{word-spacing:4.303843pt;}
.ws12a{word-spacing:4.351693pt;}
.ws33{word-spacing:4.356977pt;}
.ws34{word-spacing:4.410111pt;}
.ws59{word-spacing:4.463245pt;}
.ws115{word-spacing:4.542976pt;}
.ws21{word-spacing:4.569513pt;}
.wsbf{word-spacing:4.601184pt;}
.ws87{word-spacing:4.728914pt;}
.ws121{word-spacing:4.734259pt;}
.wsd9{word-spacing:4.782048pt;}
.ws9{word-spacing:4.872362pt;}
.wse8{word-spacing:4.888316pt;}
.ws79{word-spacing:4.941450pt;}
.wsdb{word-spacing:4.994583pt;}
.ws105{word-spacing:5.021184pt;}
.ws1f{word-spacing:5.100851pt;}
.wsee{word-spacing:5.164646pt;}
.ws30{word-spacing:5.313387pt;}
.wsdf{word-spacing:5.366521pt;}
.wsd2{word-spacing:5.525922pt;}
.ws22{word-spacing:5.579056pt;}
.ws26{word-spacing:5.685324pt;}
.ws73{word-spacing:5.791591pt;}
.wsc8{word-spacing:5.808928pt;}
.wsc3{word-spacing:5.840992pt;}
.wsc4{word-spacing:5.857024pt;}
.wse6{word-spacing:6.110395pt;}
.wsde{word-spacing:6.269796pt;}
.wse3{word-spacing:6.322930pt;}
.ws3d{word-spacing:6.429198pt;}
.wsd6{word-spacing:6.482332pt;}
.ws103{word-spacing:6.503629pt;}
.ws19{word-spacing:6.535466pt;}
.ws1a{word-spacing:6.588599pt;}
.wsea{word-spacing:6.641733pt;}
.ws82{word-spacing:6.854269pt;}
.ws25{word-spacing:6.907403pt;}
.wsc9{word-spacing:6.960537pt;}
.ws52{word-spacing:7.119938pt;}
.wse4{word-spacing:7.173072pt;}
.wsdd{word-spacing:7.491875pt;}
.ws12b{word-spacing:7.699149pt;}
.ws12e{word-spacing:8.320819pt;}
.ws7{word-spacing:8.740496pt;}
.wsaa{word-spacing:10.329312pt;}
.ws8{word-spacing:10.525789pt;}
.ws122{word-spacing:12.576870pt;}
.ws4{word-spacing:13.761632pt;}
.ws6{word-spacing:19.857270pt;}
.wsa{word-spacing:20.196125pt;}
.wsa3{word-spacing:31.355095pt;}
.ws88{word-spacing:197.212979pt;}
.wsb1{word-spacing:281.783776pt;}
.wsb2{word-spacing:281.805152pt;}
.wsad{word-spacing:281.810496pt;}
.wsab{word-spacing:281.821184pt;}
.wsac{word-spacing:281.842560pt;}
.ws94{word-spacing:284.097067pt;}
.wsa0{word-spacing:284.102400pt;}
.wsaf{word-spacing:294.037568pt;}
.ws93{word-spacing:296.054400pt;}
.ws95{word-spacing:296.055467pt;}
.ws98{word-spacing:296.059733pt;}
.ws91{word-spacing:303.470797pt;}
.ws96{word-spacing:304.078635pt;}
.wsb9{word-spacing:307.060896pt;}
.wsb6{word-spacing:307.381536pt;}
.wsb0{word-spacing:307.739584pt;}
.wsb7{word-spacing:307.771648pt;}
.wsb8{word-spacing:307.776992pt;}
.ws8d{word-spacing:308.007467pt;}
.ws8e{word-spacing:308.012800pt;}
.ws8c{word-spacing:310.045867pt;}
.ws8f{word-spacing:315.425997pt;}
.ws92{word-spacing:316.015070pt;}
.ws90{word-spacing:316.015505pt;}
.ws9d{word-spacing:316.017638pt;}
.ws9c{word-spacing:316.033835pt;}
.ws9e{word-spacing:316.044996pt;}
.wsb3{word-spacing:320.522432pt;}
.wsba{word-spacing:320.527776pt;}
.wsb5{word-spacing:320.843072pt;}
.ws9f{word-spacing:323.412070pt;}
.wsb4{word-spacing:323.413536pt;}
.ws99{word-spacing:323.459891pt;}
.ws8b{word-spacing:327.381197pt;}
.ws8a{word-spacing:327.972838pt;}
.ws9a{word-spacing:327.991168pt;}
.ws9b{word-spacing:327.996996pt;}
.ws97{word-spacing:329.389670pt;}
.ws89{word-spacing:335.415091pt;}
.wsae{word-spacing:336.479616pt;}
._30{margin-left:-12.863008pt;}
._3c{margin-left:-7.693788pt;}
._12{margin-left:-6.365441pt;}
._4{margin-left:-5.260288pt;}
._8{margin-left:-4.351693pt;}
._6{margin-left:-3.443098pt;}
._3b{margin-left:-2.539803pt;}
._2{margin-left:-1.338970pt;}
._28{width:1.085280pt;}
._3f{width:2.013774pt;}
._3e{width:3.012710pt;}
._18{width:4.835182pt;}
._0{width:9.298400pt;}
._1{width:10.860531pt;}
._1f{width:12.236751pt;}
._14{width:13.177232pt;}
._7{width:14.633165pt;}
._1d{width:15.642669pt;}
._d{width:16.535255pt;}
._1a{width:17.438566pt;}
._17{width:18.501209pt;}
._f{width:19.547979pt;}
._3a{width:20.573429pt;}
._9{width:21.519216pt;}
._3{width:22.502128pt;}
._1c{width:23.538303pt;}
._b{width:24.441579pt;}
._1e{width:25.451122pt;}
._10{width:26.513799pt;}
._19{width:27.640234pt;}
._1b{width:28.586020pt;}
._5{width:29.648896pt;}
._e{width:30.551973pt;}
._c{width:32.199123pt;}
._13{width:34.175699pt;}
._3d{width:35.822849pt;}
._a{width:37.044928pt;}
._11{width:37.948204pt;}
._2a{width:39.214272pt;}
._2e{width:42.506151pt;}
._2c{width:52.718560pt;}
._2b{width:55.107328pt;}
._34{width:56.272320pt;}
._2d{width:68.397856pt;}
._38{width:90.273893pt;}
._22{width:223.801344pt;}
._21{width:257.036800pt;}
._2f{width:268.723040pt;}
._35{width:281.228000pt;}
._33{width:293.684864pt;}
._31{width:307.509792pt;}
._36{width:310.347456pt;}
._20{width:312.843674pt;}
._32{width:322.676064pt;}
._24{width:335.367270pt;}
._37{width:336.565120pt;}
._26{width:339.336397pt;}
._23{width:341.344870pt;}
._27{width:347.322470pt;}
._25{width:359.325491pt;}
._15{width:783.363589pt;}
._29{width:1870.754592pt;}
._39{width:2233.602667pt;}
._16{width:2254.856000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.507200pt;}
.fsc{font-size:42.560000pt;}
.fsa{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fsb{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:53.440000pt;}
.fsf{font-size:55.348800pt;}
.fs1{font-size:56.000000pt;}
.fs10{font-size:61.498667pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y186{bottom:-219.807600pt;}
.y1b3{bottom:-162.364355pt;}
.y1b2{bottom:-145.244851pt;}
.y1b1{bottom:-128.205507pt;}
.y1b0{bottom:-111.086003pt;}
.y1af{bottom:-93.966499pt;}
.y1ae{bottom:-76.927155pt;}
.y1ad{bottom:-59.807651pt;}
.y1ac{bottom:-42.766971pt;}
.y1ab{bottom:-25.647467pt;}
.y0{bottom:0.000000pt;}
.y1aa{bottom:7.072400pt;}
.y3a{bottom:8.207950pt;}
.y39{bottom:23.914454pt;}
.y1a9{bottom:27.072400pt;}
.y67{bottom:28.346667pt;}
.y1a7{bottom:30.112501pt;}
.y6{bottom:31.933340pt;}
.y19f{bottom:42.352400pt;}
.y5{bottom:59.133337pt;}
.y1a0{bottom:72.352833pt;}
.y4{bottom:86.333337pt;}
.y1c0{bottom:92.108000pt;}
.y37{bottom:93.018667pt;}
.y66{bottom:93.212000pt;}
.y249{bottom:96.478667pt;}
.y26a{bottom:97.938667pt;}
.y274{bottom:99.134667pt;}
.y2aa{bottom:99.533333pt;}
.y1a1{bottom:102.352533pt;}
.y21a{bottom:103.120000pt;}
.y2e0{bottom:103.518667pt;}
.y119{bottom:104.316000pt;}
.yba{bottom:105.909333pt;}
.y9e{bottom:106.308000pt;}
.ye8{bottom:108.698667pt;}
.y1bf{bottom:108.844000pt;}
.y36{bottom:108.920000pt;}
.y65{bottom:109.949333pt;}
.y248{bottom:113.216000pt;}
.y269{bottom:114.676000pt;}
.y2a9{bottom:114.876000pt;}
.y2df{bottom:118.861333pt;}
.y219{bottom:119.857333pt;}
.y118{bottom:121.053333pt;}
.yb9{bottom:122.646667pt;}
.y273{bottom:122.726667pt;}
.y9d{bottom:123.045333pt;}
.y22{bottom:123.790666pt;}
.y35{bottom:124.820000pt;}
.y146{bottom:125.037333pt;}
.ye7{bottom:125.436000pt;}
.y1be{bottom:125.581333pt;}
.y64{bottom:126.686667pt;}
.y1e6{bottom:128.757333pt;}
.y247{bottom:129.952000pt;}
.y2a8{bottom:130.218667pt;}
.y1a2{bottom:131.552400pt;}
.y2de{bottom:134.202667pt;}
.y268{bottom:135.398667pt;}
.y218{bottom:136.594667pt;}
.y117{bottom:137.789333pt;}
.y272{bottom:138.348000pt;}
.yb8{bottom:139.384000pt;}
.y9c{bottom:139.782667pt;}
.y170{bottom:140.036000pt;}
.y34{bottom:140.720000pt;}
.y145{bottom:141.774667pt;}
.ye6{bottom:142.173333pt;}
.y1bd{bottom:142.318667pt;}
.y255{bottom:143.236000pt;}
.y63{bottom:143.424000pt;}
.y1e5{bottom:145.494667pt;}
.y2a7{bottom:145.561333pt;}
.y246{bottom:146.689333pt;}
.y2dd{bottom:149.545333pt;}
.y267{bottom:152.136000pt;}
.y217{bottom:153.332000pt;}
.y116{bottom:154.526667pt;}
.yb7{bottom:156.121333pt;}
.y9b{bottom:156.520000pt;}
.y33{bottom:156.621333pt;}
.y144{bottom:158.512000pt;}
.ye5{bottom:158.910667pt;}
.y1bc{bottom:159.056000pt;}
.y254{bottom:159.973333pt;}
.y62{bottom:160.161333pt;}
.y2a6{bottom:160.902667pt;}
.y16f{bottom:161.049333pt;}
.y1a3{bottom:161.552400pt;}
.y271{bottom:161.940000pt;}
.y1e4{bottom:162.232000pt;}
.y245{bottom:163.426667pt;}
.y2dc{bottom:164.888000pt;}
.y266{bottom:168.873333pt;}
.y216{bottom:170.069333pt;}
.y115{bottom:171.264000pt;}
.y32{bottom:172.521333pt;}
.yb6{bottom:172.858667pt;}
.y9a{bottom:173.257333pt;}
.y19{bottom:175.052000pt;}
.y143{bottom:175.249333pt;}
.ye4{bottom:175.648000pt;}
.y1bb{bottom:175.793333pt;}
.y2a5{bottom:176.245333pt;}
.y253{bottom:176.710667pt;}
.y61{bottom:176.898667pt;}
.y1e3{bottom:178.969333pt;}
.y244{bottom:180.164000pt;}
.y2db{bottom:180.230667pt;}
.y16e{bottom:182.064000pt;}
.y270{bottom:185.530667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y215{bottom:186.806667pt;}
.y114{bottom:188.001333pt;}
.y31{bottom:188.421333pt;}
.yb5{bottom:189.596000pt;}
.y99{bottom:189.994667pt;}
.y1a4{bottom:190.752400pt;}
.y2a4{bottom:191.588000pt;}
.y142{bottom:191.986667pt;}
.ye3{bottom:192.385333pt;}
.y1ba{bottom:192.530667pt;}
.y252{bottom:193.448000pt;}
.y60{bottom:193.636000pt;}
.y2da{bottom:195.573333pt;}
.y1e2{bottom:195.706667pt;}
.y243{bottom:196.901333pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y26f{bottom:201.152000pt;}
.y16d{bottom:203.077333pt;}
.y214{bottom:203.544000pt;}
.y30{bottom:204.322667pt;}
.y113{bottom:204.738667pt;}
.yb4{bottom:206.333333pt;}
.y98{bottom:206.732000pt;}
.y2a3{bottom:206.930667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y141{bottom:208.724000pt;}
.ye2{bottom:209.122667pt;}
.y1b9{bottom:209.268000pt;}
.y251{bottom:210.185333pt;}
.y5f{bottom:210.373333pt;}
.y2d9{bottom:210.916000pt;}
.y1e1{bottom:212.444000pt;}
.y242{bottom:213.638667pt;}
.y265{bottom:219.484000pt;}
.y213{bottom:220.281333pt;}
.y1a5{bottom:220.752400pt;}
.y112{bottom:221.476000pt;}
.y2a2{bottom:222.273333pt;}
.yb3{bottom:223.070667pt;}
.y97{bottom:223.469333pt;}
.y16c{bottom:224.092000pt;}
.y26e{bottom:224.744000pt;}
.y140{bottom:225.461333pt;}
.ye1{bottom:225.860000pt;}
.y1b8{bottom:226.005333pt;}
.y2d8{bottom:226.258667pt;}
.y250{bottom:226.922667pt;}
.y5e{bottom:227.110667pt;}
.y1e0{bottom:229.181333pt;}
.y241{bottom:230.376000pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y264{bottom:236.221333pt;}
.y212{bottom:237.018667pt;}
.y2a1{bottom:237.616000pt;}
.y111{bottom:238.213333pt;}
.yb2{bottom:239.808000pt;}
.y96{bottom:240.206667pt;}
.y26d{bottom:240.365333pt;}
.y2d7{bottom:241.601333pt;}
.y13f{bottom:242.198667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.ye0{bottom:242.597333pt;}
.y1b7{bottom:242.742667pt;}
.y24f{bottom:243.660000pt;}
.y5d{bottom:243.848000pt;}
.y16b{bottom:245.105333pt;}
.y1df{bottom:245.918667pt;}
.y240{bottom:247.113333pt;}
.y1a6{bottom:249.952400pt;}
.y263{bottom:252.958667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y211{bottom:253.756000pt;}
.y110{bottom:254.950667pt;}
.y26c{bottom:255.986667pt;}
.yb1{bottom:256.545333pt;}
.y95{bottom:256.944000pt;}
.y13e{bottom:258.936000pt;}
.ydf{bottom:259.334667pt;}
.y1b6{bottom:259.480000pt;}
.y24e{bottom:260.397333pt;}
.y5c{bottom:260.585333pt;}
.y1de{bottom:262.656000pt;}
.y23f{bottom:263.850667pt;}
.y16a{bottom:266.120000pt;}
.y2f{bottom:266.569333pt;}
.y2a0{bottom:268.301333pt;}
.y262{bottom:269.696000pt;}
.y210{bottom:270.493333pt;}
.y26b{bottom:271.608000pt;}
.y10f{bottom:271.688000pt;}
.y2d6{bottom:272.285333pt;}
.yb0{bottom:273.282667pt;}
.y94{bottom:273.681333pt;}
.y13d{bottom:275.673333pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yde{bottom:276.072000pt;}
.y1b5{bottom:276.217333pt;}
.y24d{bottom:277.134667pt;}
.y5b{bottom:277.322667pt;}
.y1a8{bottom:277.712400pt;}
.y1dd{bottom:279.393333pt;}
.y23e{bottom:280.588000pt;}
.y2e{bottom:282.470667pt;}
.y29f{bottom:283.644000pt;}
.y261{bottom:286.433333pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y169{bottom:287.133333pt;}
.y20f{bottom:287.229333pt;}
.y2d5{bottom:287.628000pt;}
.y10e{bottom:288.425333pt;}
.yaf{bottom:290.020000pt;}
.y93{bottom:290.417333pt;}
.y13c{bottom:292.410667pt;}
.ydd{bottom:292.809333pt;}
.y1b4{bottom:292.954667pt;}
.y24c{bottom:293.872000pt;}
.y5a{bottom:294.060000pt;}
.y1dc{bottom:296.129333pt;}
.y2d{bottom:298.370667pt;}
.y29e{bottom:298.985333pt;}
.y2d4{bottom:302.970667pt;}
.y260{bottom:303.170667pt;}
.y20e{bottom:303.966667pt;}
.y10d{bottom:305.162667pt;}
.yae{bottom:306.757333pt;}
.y92{bottom:307.154667pt;}
.y168{bottom:308.146667pt;}
.y13b{bottom:309.148000pt;}
.y10{bottom:309.452000pt;}
.ydc{bottom:309.546667pt;}
.y24b{bottom:310.609333pt;}
.y59{bottom:310.797333pt;}
.y19e{bottom:311.712400pt;}
.y1db{bottom:312.866667pt;}
.y2c{bottom:314.270667pt;}
.y29d{bottom:314.328000pt;}
.y2d3{bottom:318.313333pt;}
.y25f{bottom:319.908000pt;}
.y20d{bottom:320.704000pt;}
.y10c{bottom:321.900000pt;}
.y183{bottom:322.610667pt;}
.yad{bottom:323.494667pt;}
.y91{bottom:323.892000pt;}
.y13a{bottom:325.885333pt;}
.ydb{bottom:326.284000pt;}
.y23d{bottom:327.346667pt;}
.y58{bottom:327.534667pt;}
.y19d{bottom:329.072400pt;}
.y167{bottom:329.161333pt;}
.y1da{bottom:329.604000pt;}
.y29c{bottom:329.670667pt;}
.y2d2{bottom:333.656000pt;}
.y25e{bottom:336.645333pt;}
.y20c{bottom:337.441333pt;}
.y2b{bottom:338.141333pt;}
.y10b{bottom:338.637333pt;}
.yac{bottom:340.232000pt;}
.y90{bottom:340.629333pt;}
.y139{bottom:342.622667pt;}
.yda{bottom:343.021333pt;}
.yf{bottom:343.809333pt;}
.y23c{bottom:344.084000pt;}
.y57{bottom:344.272000pt;}
.y29b{bottom:345.013333pt;}
.y1d9{bottom:346.341333pt;}
.y19c{bottom:347.712400pt;}
.y2d1{bottom:348.998667pt;}
.y166{bottom:350.174667pt;}
.y25d{bottom:353.382667pt;}
.y2a{bottom:354.042667pt;}
.y20b{bottom:354.178667pt;}
.y10a{bottom:355.374667pt;}
.yab{bottom:356.968000pt;}
.y8f{bottom:357.366667pt;}
.y138{bottom:359.360000pt;}
.yd9{bottom:359.758667pt;}
.y29a{bottom:360.356000pt;}
.y23b{bottom:360.821333pt;}
.y56{bottom:361.009333pt;}
.ye{bottom:362.706666pt;}
.y1d8{bottom:363.078667pt;}
.y2d0{bottom:364.341333pt;}
.y19b{bottom:366.432400pt;}
.y29{bottom:369.942667pt;}
.y25c{bottom:370.118667pt;}
.y20a{bottom:370.916000pt;}
.y165{bottom:371.189333pt;}
.y109{bottom:372.112000pt;}
.yaa{bottom:373.705333pt;}
.y8e{bottom:374.104000pt;}
.y299{bottom:375.698667pt;}
.y137{bottom:376.097333pt;}
.yd8{bottom:376.496000pt;}
.y23a{bottom:377.558667pt;}
.y55{bottom:377.746667pt;}
.y2cf{bottom:379.684000pt;}
.y1d7{bottom:379.816000pt;}
.y19a{bottom:385.072400pt;}
.y28{bottom:385.842667pt;}
.y25b{bottom:386.856000pt;}
.y209{bottom:387.653333pt;}
.y108{bottom:388.849333pt;}
.ya9{bottom:390.442667pt;}
.y8d{bottom:390.841333pt;}
.y298{bottom:391.041333pt;}
.y164{bottom:392.202667pt;}
.y136{bottom:392.834667pt;}
.yd7{bottom:393.233333pt;}
.y239{bottom:394.296000pt;}
.y54{bottom:394.484000pt;}
.y2ce{bottom:395.025333pt;}
.y1d6{bottom:396.553333pt;}
.y27{bottom:401.744000pt;}
.y25a{bottom:403.593333pt;}
.y199{bottom:403.712400pt;}
.y208{bottom:404.390667pt;}
.y107{bottom:405.586667pt;}
.y297{bottom:406.384000pt;}
.ya8{bottom:407.180000pt;}
.y8c{bottom:407.578667pt;}
.y135{bottom:409.572000pt;}
.yd6{bottom:409.970667pt;}
.y2cd{bottom:410.368000pt;}
.y238{bottom:411.033333pt;}
.y53{bottom:411.221333pt;}
.y163{bottom:413.217333pt;}
.y1d5{bottom:413.290667pt;}
.y26{bottom:417.644000pt;}
.y259{bottom:420.330667pt;}
.y207{bottom:421.128000pt;}
.y296{bottom:421.725333pt;}
.y106{bottom:422.324000pt;}
.y198{bottom:422.352400pt;}
.ya7{bottom:423.917333pt;}
.y8b{bottom:424.316000pt;}
.y2cc{bottom:425.710667pt;}
.y134{bottom:426.309333pt;}
.yd5{bottom:426.706667pt;}
.y237{bottom:427.769333pt;}
.y52{bottom:427.958667pt;}
.y25{bottom:433.544000pt;}
.y162{bottom:434.230667pt;}
.y1d4{bottom:436.669333pt;}
.y258{bottom:437.068000pt;}
.y206{bottom:437.865333pt;}
.ya6{bottom:440.654667pt;}
.y197{bottom:440.992400pt;}
.y8a{bottom:441.053333pt;}
.y105{bottom:443.046667pt;}
.yd4{bottom:443.444000pt;}
.y236{bottom:444.506667pt;}
.ybb{bottom:444.640000pt;}
.y51{bottom:444.694667pt;}
.yd{bottom:446.990669pt;}
.y24{bottom:449.445333pt;}
.y295{bottom:452.410667pt;}
.y257{bottom:453.805333pt;}
.y205{bottom:454.602667pt;}
.y161{bottom:455.245333pt;}
.y2cb{bottom:456.396000pt;}
.ya5{bottom:457.392000pt;}
.y89{bottom:457.790667pt;}
.y196{bottom:459.632400pt;}
.y133{bottom:459.784000pt;}
.yd3{bottom:460.181333pt;}
.y235{bottom:461.244000pt;}
.y50{bottom:461.432000pt;}
.yc{bottom:462.990669pt;}
.y23{bottom:465.345333pt;}
.y294{bottom:467.753333pt;}
.y256{bottom:470.542667pt;}
.y204{bottom:471.340000pt;}
.y2ca{bottom:471.738667pt;}
.y104{bottom:472.934667pt;}
.ya4{bottom:474.129333pt;}
.y88{bottom:474.528000pt;}
.y160{bottom:476.258667pt;}
.y132{bottom:476.521333pt;}
.yd2{bottom:476.918667pt;}
.y234{bottom:477.981333pt;}
.y4f{bottom:478.169333pt;}
.y195{bottom:478.352533pt;}
.yb{bottom:478.990666pt;}
.y293{bottom:483.096000pt;}
.y2c9{bottom:487.081333pt;}
.y1d3{bottom:487.280000pt;}
.y203{bottom:488.077333pt;}
.y103{bottom:489.672000pt;}
.ya3{bottom:490.866667pt;}
.y87{bottom:491.265333pt;}
.y131{bottom:493.258667pt;}
.yd1{bottom:493.656000pt;}
.y233{bottom:494.718667pt;}
.y4e{bottom:494.906667pt;}
.ya{bottom:494.990666pt;}
.y194{bottom:496.992400pt;}
.y15f{bottom:497.273333pt;}
.y292{bottom:498.438667pt;}
.y24a{bottom:501.361333pt;}
.y2c8{bottom:502.424000pt;}
.y1d2{bottom:504.017333pt;}
.y202{bottom:504.814667pt;}
.y102{bottom:506.409333pt;}
.ya2{bottom:507.604000pt;}
.y86{bottom:508.002667pt;}
.y130{bottom:509.994667pt;}
.yd0{bottom:510.393333pt;}
.y232{bottom:511.456000pt;}
.y1c1{bottom:511.589333pt;}
.y2e3{bottom:513.714667pt;}
.y291{bottom:513.781333pt;}
.y4d{bottom:515.629333pt;}
.y193{bottom:515.632400pt;}
.y2c7{bottom:517.766667pt;}
.y15e{bottom:518.286667pt;}
.y1d1{bottom:520.754667pt;}
.y201{bottom:521.552000pt;}
.y101{bottom:523.145333pt;}
.ya1{bottom:524.341333pt;}
.y85{bottom:524.740000pt;}
.y12f{bottom:526.732000pt;}
.ycf{bottom:527.130667pt;}
.y231{bottom:528.193333pt;}
.y2e2{bottom:529.057333pt;}
.y290{bottom:529.124000pt;}
.y2c6{bottom:533.108000pt;}
.y192{bottom:534.272400pt;}
.y1d0{bottom:537.492000pt;}
.y200{bottom:538.289333pt;}
.y15d{bottom:539.301333pt;}
.y100{bottom:539.882667pt;}
.ya0{bottom:541.078667pt;}
.y84{bottom:541.477333pt;}
.y12e{bottom:543.469333pt;}
.yce{bottom:543.868000pt;}
.y2e1{bottom:544.400000pt;}
.y28f{bottom:544.466667pt;}
.y230{bottom:544.930667pt;}
.y2c5{bottom:548.450667pt;}
.y191{bottom:552.912400pt;}
.y1cf{bottom:554.229333pt;}
.yff{bottom:556.620000pt;}
.y83{bottom:558.214667pt;}
.y28e{bottom:559.808000pt;}
.y15c{bottom:560.314667pt;}
.ycd{bottom:560.605333pt;}
.y1ff{bottom:561.668000pt;}
.y9f{bottom:561.801333pt;}
.y2c4{bottom:563.793333pt;}
.y12d{bottom:564.192000pt;}
.y1ce{bottom:570.966667pt;}
.y190{bottom:571.632400pt;}
.yfe{bottom:573.357333pt;}
.y9{bottom:573.786667pt;}
.y82{bottom:574.952000pt;}
.y28d{bottom:575.150667pt;}
.ycc{bottom:577.342667pt;}
.y12c{bottom:578.140000pt;}
.y22f{bottom:578.405333pt;}
.y2c3{bottom:579.136000pt;}
.y15b{bottom:581.329333pt;}
.y4c{bottom:582.429333pt;}
.y1fe{bottom:585.046667pt;}
.y1cd{bottom:587.704000pt;}
.yfd{bottom:590.094667pt;}
.y18f{bottom:590.272400pt;}
.y28c{bottom:590.493333pt;}
.y81{bottom:591.689333pt;}
.y8{bottom:592.685334pt;}
.ycb{bottom:594.080000pt;}
.y2c2{bottom:594.478667pt;}
.y22e{bottom:595.142667pt;}
.y1fd{bottom:601.784000pt;}
.y15a{bottom:602.342667pt;}
.y1cc{bottom:604.441333pt;}
.y28b{bottom:605.836000pt;}
.yfc{bottom:606.832000pt;}
.y12b{bottom:608.028000pt;}
.y80{bottom:608.426667pt;}
.y18e{bottom:608.912400pt;}
.y2c1{bottom:609.821333pt;}
.yca{bottom:610.817333pt;}
.y22d{bottom:611.880000pt;}
.y4b{bottom:615.665333pt;}
.y1fc{bottom:618.521333pt;}
.y1cb{bottom:621.178667pt;}
.y159{bottom:623.357333pt;}
.yfb{bottom:623.569333pt;}
.y12a{bottom:624.765333pt;}
.y7f{bottom:625.164000pt;}
.y18d{bottom:627.552400pt;}
.yc9{bottom:627.554667pt;}
.y22c{bottom:628.617333pt;}
.y4a{bottom:632.960000pt;}
.y182{bottom:634.634667pt;}
.y1fb{bottom:635.258667pt;}
.y28a{bottom:636.521333pt;}
.y1ca{bottom:637.916000pt;}
.yfa{bottom:640.306667pt;}
.y2c0{bottom:640.506667pt;}
.y129{bottom:641.502667pt;}
.y7e{bottom:641.901333pt;}
.yc8{bottom:644.292000pt;}
.y158{bottom:644.370667pt;}
.y22b{bottom:645.354667pt;}
.y7{bottom:645.598667pt;}
.y18c{bottom:646.192400pt;}
.y49{bottom:650.254667pt;}
.y181{bottom:651.384000pt;}
.y289{bottom:651.864000pt;}
.y1fa{bottom:651.996000pt;}
.y1c9{bottom:654.653333pt;}
.y2bf{bottom:655.848000pt;}
.yf9{bottom:657.044000pt;}
.y128{bottom:658.240000pt;}
.y7d{bottom:658.638667pt;}
.yc7{bottom:661.029333pt;}
.y22a{bottom:662.092000pt;}
.y18b{bottom:664.912400pt;}
.y157{bottom:665.385333pt;}
.y288{bottom:667.206667pt;}
.y48{bottom:667.550667pt;}
.y1f9{bottom:668.733333pt;}
.y3{bottom:668.977329pt;}
.y2be{bottom:671.190667pt;}
.y1c8{bottom:671.390667pt;}
.y180{bottom:672.398667pt;}
.yf8{bottom:673.781333pt;}
.y127{bottom:674.977333pt;}
.y7c{bottom:675.376000pt;}
.yc6{bottom:677.766667pt;}
.y229{bottom:678.829333pt;}
.y287{bottom:682.548000pt;}
.y18a{bottom:683.552400pt;}
.y47{bottom:684.845333pt;}
.y1f8{bottom:685.470667pt;}
.y156{bottom:686.398667pt;}
.y2bd{bottom:686.533333pt;}
.y1c7{bottom:688.128000pt;}
.yf7{bottom:690.518667pt;}
.y126{bottom:691.714667pt;}
.y7b{bottom:692.113333pt;}
.y17f{bottom:693.412000pt;}
.yc5{bottom:694.504000pt;}
.y228{bottom:695.566667pt;}
.y286{bottom:697.890667pt;}
.y2bc{bottom:701.876000pt;}
.y46{bottom:702.141333pt;}
.y189{bottom:702.192400pt;}
.y1f7{bottom:702.208000pt;}
.y1c6{bottom:704.865333pt;}
.yf6{bottom:707.256000pt;}
.y155{bottom:707.413333pt;}
.y125{bottom:708.452000pt;}
.y7a{bottom:708.850667pt;}
.yc4{bottom:711.241333pt;}
.y227{bottom:712.304000pt;}
.y285{bottom:713.233333pt;}
.y17e{bottom:714.426667pt;}
.y2bb{bottom:717.218667pt;}
.y1f6{bottom:718.945333pt;}
.y45{bottom:719.436000pt;}
.y188{bottom:720.832400pt;}
.y1c5{bottom:721.602667pt;}
.yf5{bottom:723.993333pt;}
.y124{bottom:725.189333pt;}
.y79{bottom:725.588000pt;}
.yc3{bottom:727.978667pt;}
.y154{bottom:728.426667pt;}
.y284{bottom:728.576000pt;}
.y226{bottom:729.041333pt;}
.y2ba{bottom:732.561333pt;}
.y17d{bottom:735.440000pt;}
.y1f5{bottom:735.682667pt;}
.y44{bottom:736.730667pt;}
.y1c4{bottom:738.340000pt;}
.y187{bottom:739.472400pt;}
.yf4{bottom:740.730667pt;}
.y123{bottom:741.926667pt;}
.y78{bottom:742.324000pt;}
.y283{bottom:743.918667pt;}
.yc2{bottom:744.716000pt;}
.y225{bottom:745.778667pt;}
.y2b9{bottom:747.904000pt;}
.y1f4{bottom:752.420000pt;}
.y43{bottom:754.026667pt;}
.y1c3{bottom:755.077333pt;}
.y17c{bottom:756.454667pt;}
.y153{bottom:756.533333pt;}
.yf3{bottom:757.468000pt;}
.y122{bottom:758.664000pt;}
.y77{bottom:759.061333pt;}
.y282{bottom:759.261333pt;}
.yc1{bottom:761.453333pt;}
.y224{bottom:762.516000pt;}
.y2b8{bottom:763.246667pt;}
.y1f3{bottom:769.157333pt;}
.y42{bottom:771.321333pt;}
.y1c2{bottom:771.814667pt;}
.yf2{bottom:774.205333pt;}
.y281{bottom:774.604000pt;}
.y121{bottom:775.401333pt;}
.y76{bottom:775.798667pt;}
.y17b{bottom:777.468000pt;}
.yc0{bottom:778.190667pt;}
.y2b7{bottom:778.589333pt;}
.y223{bottom:779.253333pt;}
.y2{bottom:781.661334pt;}
.y1f2{bottom:785.894667pt;}
.y152{bottom:788.552000pt;}
.y280{bottom:789.946667pt;}
.y185{bottom:790.112520pt;}
.yf1{bottom:790.942667pt;}
.y120{bottom:792.138667pt;}
.y75{bottom:792.536000pt;}
.y2b6{bottom:793.930667pt;}
.ybf{bottom:794.928000pt;}
.y222{bottom:795.990667pt;}
.y17a{bottom:798.482667pt;}
.y184{bottom:798.672400pt;}
.y1f1{bottom:802.632000pt;}
.y151{bottom:805.289333pt;}
.y41{bottom:805.620000pt;}
.yf0{bottom:807.680000pt;}
.y11f{bottom:808.874667pt;}
.y74{bottom:809.273333pt;}
.ybe{bottom:811.665333pt;}
.y221{bottom:812.728000pt;}
.y1f0{bottom:819.369333pt;}
.y179{bottom:819.496000pt;}
.y40{bottom:819.965333pt;}
.y27f{bottom:820.630667pt;}
.y150{bottom:822.025333pt;}
.yef{bottom:824.417333pt;}
.y2b5{bottom:824.616000pt;}
.y11e{bottom:825.612000pt;}
.y73{bottom:826.010667pt;}
.y220{bottom:829.465333pt;}
.ybd{bottom:832.386667pt;}
.y27e{bottom:835.973333pt;}
.y1ef{bottom:836.106667pt;}
.y14f{bottom:838.762667pt;}
.y2b4{bottom:839.958667pt;}
.y178{bottom:840.510667pt;}
.yee{bottom:841.154667pt;}
.y11d{bottom:842.349333pt;}
.y72{bottom:842.748000pt;}
.y21f{bottom:846.202667pt;}
.ybc{bottom:846.334667pt;}
.y27d{bottom:851.316000pt;}
.y1ee{bottom:852.844000pt;}
.y2b3{bottom:855.301333pt;}
.y14e{bottom:855.500000pt;}
.yed{bottom:857.892000pt;}
.y11c{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.y71{bottom:859.485333pt;}
.y177{bottom:861.524000pt;}
.y21e{bottom:862.940000pt;}
.y3f{bottom:863.536000pt;}
.y27c{bottom:866.658667pt;}
.y1ed{bottom:869.581333pt;}
.y2b2{bottom:870.644000pt;}
.y14d{bottom:872.237333pt;}
.yec{bottom:874.629333pt;}
.y11b{bottom:875.824000pt;}
.y70{bottom:876.222667pt;}
.y21d{bottom:879.676000pt;}
.y27b{bottom:882.001333pt;}
.y176{bottom:882.538667pt;}
.y2b1{bottom:885.986667pt;}
.y1ec{bottom:886.318667pt;}
.y14c{bottom:888.974667pt;}
.yeb{bottom:891.366667pt;}
.y6f{bottom:892.960000pt;}
.y3e{bottom:896.213333pt;}
.y21c{bottom:896.413333pt;}
.y11a{bottom:896.546667pt;}
.y27a{bottom:897.344000pt;}
.y2b0{bottom:901.329333pt;}
.y1eb{bottom:903.056000pt;}
.y175{bottom:903.552000pt;}
.y14b{bottom:905.712000pt;}
.y6e{bottom:909.697333pt;}
.yea{bottom:912.088000pt;}
.y279{bottom:912.686667pt;}
.y21b{bottom:913.150667pt;}
.y2af{bottom:916.670667pt;}
.y1ea{bottom:919.793333pt;}
.y3d{bottom:921.320000pt;}
.y14a{bottom:922.449333pt;}
.y174{bottom:924.566667pt;}
.y6d{bottom:926.434667pt;}
.y278{bottom:928.029333pt;}
.ye9{bottom:930.021333pt;}
.y2ae{bottom:932.013333pt;}
.y1e9{bottom:936.530667pt;}
.y149{bottom:939.186667pt;}
.y6c{bottom:943.172000pt;}
.y277{bottom:943.370667pt;}
.y173{bottom:945.580000pt;}
.y3c{bottom:946.425333pt;}
.y2ad{bottom:947.356000pt;}
.y1e8{bottom:953.268000pt;}
.y148{bottom:955.924000pt;}
.y276{bottom:958.713333pt;}
.y6b{bottom:959.909333pt;}
.y2ac{bottom:962.698667pt;}
.y172{bottom:966.594667pt;}
.y1e7{bottom:970.005333pt;}
.y3b{bottom:971.530667pt;}
.y147{bottom:972.661333pt;}
.y275{bottom:974.056000pt;}
.y6a{bottom:976.646667pt;}
.y2ab{bottom:978.041333pt;}
.y69{bottom:993.384000pt;}
.y171{bottom:994.700000pt;}
.y38{bottom:1010.186667pt;}
.y68{bottom:1046.810667pt;}
.h9{height:27.076941pt;}
.ha{height:27.300102pt;}
.h7{height:28.560000pt;}
.h18{height:30.943281pt;}
.h10{height:30.945242pt;}
.h13{height:31.200285pt;}
.h17{height:31.338125pt;}
.h14{height:34.430976pt;}
.h11{height:34.813542pt;}
.h1a{height:34.898438pt;}
.h15{height:35.100467pt;}
.h1b{height:36.890191pt;}
.hf{height:38.256384pt;}
.h12{height:38.681455pt;}
.h19{height:38.853594pt;}
.hd{height:39.000258pt;}
.h6{height:40.800000pt;}
.h1c{height:40.989102pt;}
.h3{height:42.840000pt;}
.hb{height:45.271688pt;}
.h2{height:48.960000pt;}
.hc{height:54.767117pt;}
.he{height:68.861952pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h16{height:290.942667pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.580236pt;}
.w5{width:493.313333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.xe{left:-167.824000pt;}
.x0{left:0.000000pt;}
.x10{left:6.016000pt;}
.x12{left:8.576254pt;}
.x11{left:11.136000pt;}
.x15{left:34.336000pt;}
.xf{left:40.416000pt;}
.x7{left:46.689333pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.x18{left:74.862667pt;}
.x17{left:76.309333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x9{left:220.912000pt;}
.x8{left:221.858667pt;}
.xd{left:237.122667pt;}
.x13{left:239.936000pt;}
.xa{left:250.204000pt;}
.x16{left:252.196000pt;}
.xb{left:261.294667pt;}
.xc{left:262.286667pt;}
.x3{left:404.408000pt;}
.x14{left:489.376000pt;}
}




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