
    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_0c78346800b85a80d99e0bdf.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_77fbeeb8084ce683248ac447.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_8bf98be4a2679f87f994d39b.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_7675c670212708404170f088.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_70ec470d0f8aa13cd3b73624.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_5629812cc29764072bc53d44.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b00895fd3fe87c6f2a830c4c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.388000;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_554098317d8765710c021644.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740000;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_107da13913507c386ea1e254.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.734000;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;}
.md{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);}
.m27{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);}
.mc{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);}
.me{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);}
.m2{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);}
.m15{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);}
.m19{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);}
.m1c{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);}
.m10{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);}
.m22{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);}
.m1b{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);}
.m28{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);}
.m16{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);}
.m3{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);}
.m1a{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);}
.m20{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);}
.m1f{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);}
.m23{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);}
.m5{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);}
.m9{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);}
.m29{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);}
.m1e{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);}
.m25{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);}
.m7{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);}
.m18{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);}
.m1d{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);}
.m8{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);}
.mf{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);}
.m21{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);}
.m12{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);}
.m11{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);}
.ma{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);}
.m17{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);}
.m26{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);}
.mb{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);}
.m24{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);}
.m13{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);}
.m6{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);}
.m14{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);}
.m4{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);}
.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;}
.v3{vertical-align:12.912000px;}
.v2{vertical-align:32.874000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000435px;}
.lsb{letter-spacing:0.000608px;}
.ls4{letter-spacing:0.001148px;}
.ls1e{letter-spacing:0.001996px;}
.ls7{letter-spacing:0.004090px;}
.ls1f{letter-spacing:0.004800px;}
.ls8{letter-spacing:0.642088px;}
.ls6{letter-spacing:0.648088px;}
.ls22{letter-spacing:11.671384px;}
.ls1{letter-spacing:11.954850px;}
.ls29{letter-spacing:13.561203px;}
.ls9{letter-spacing:13.987490px;}
.ls2a{letter-spacing:14.507037px;}
.ls14{letter-spacing:14.646581px;}
.ls1c{letter-spacing:14.708118px;}
.lsc{letter-spacing:14.735729px;}
.lsf{letter-spacing:14.764573px;}
.ls13{letter-spacing:14.824349px;}
.ls12{letter-spacing:14.873631px;}
.ls20{letter-spacing:14.891792px;}
.ls18{letter-spacing:14.917783px;}
.ls23{letter-spacing:14.923765px;}
.ls5{letter-spacing:14.937767px;}
.ls2{letter-spacing:14.943767px;}
.ls3{letter-spacing:14.943986px;}
.lse{letter-spacing:14.944200px;}
.ls1b{letter-spacing:14.995083px;}
.ls21{letter-spacing:15.030956px;}
.ls28{letter-spacing:15.045802px;}
.ls26{letter-spacing:15.148935px;}
.ls25{letter-spacing:15.289389px;}
.lsa{letter-spacing:17.512200px;}
.ls17{letter-spacing:17.765141px;}
.ls27{letter-spacing:17.859259px;}
.ls15{letter-spacing:18.590212px;}
.ls16{letter-spacing:18.894553px;}
.ls1d{letter-spacing:19.012200px;}
.ls11{letter-spacing:20.144377px;}
.ls19{letter-spacing:20.776906px;}
.lsd{letter-spacing:21.018082px;}
.ls24{letter-spacing:22.076906px;}
.ls1a{letter-spacing:22.714728px;}
.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;}
}
.ws97{word-spacing:-45.088735px;}
.ws57{word-spacing:-14.943900px;}
.wsa8{word-spacing:-13.449600px;}
.ws2a{word-spacing:-11.955150px;}
.ws5{word-spacing:-10.460700px;}
.wsf1{word-spacing:-3.347434px;}
.ws10b{word-spacing:-3.287658px;}
.ws11b{word-spacing:-3.227882px;}
.ws11e{word-spacing:-3.168107px;}
.ws10f{word-spacing:-2.988780px;}
.ws52{word-spacing:-2.869229px;}
.ws88{word-spacing:-2.809453px;}
.ws74{word-spacing:-2.749678px;}
.ws9f{word-spacing:-2.689902px;}
.ws114{word-spacing:-2.630126px;}
.ws7d{word-spacing:-2.570351px;}
.ws32{word-spacing:-2.510575px;}
.wsef{word-spacing:-2.450800px;}
.wsd9{word-spacing:-2.271473px;}
.ws4c{word-spacing:-2.211697px;}
.ws118{word-spacing:-1.853044px;}
.ws4e{word-spacing:-1.793268px;}
.ws9d{word-spacing:-1.733492px;}
.ws90{word-spacing:-1.673717px;}
.ws85{word-spacing:-1.613941px;}
.ws55{word-spacing:-1.554166px;}
.ws81{word-spacing:-1.494390px;}
.ws19{word-spacing:-1.452557px;}
.ws82{word-spacing:-1.434614px;}
.ws41{word-spacing:-1.374839px;}
.ws40{word-spacing:-1.315063px;}
.ws5f{word-spacing:-1.255288px;}
.ws6{word-spacing:-1.255284px;}
.ws39{word-spacing:-1.195512px;}
.ws56{word-spacing:-1.135736px;}
.ws6f{word-spacing:-1.016185px;}
.ws9c{word-spacing:-0.956410px;}
.wsee{word-spacing:-0.896634px;}
.ws68{word-spacing:-0.836858px;}
.wsda{word-spacing:-0.777083px;}
.ws136{word-spacing:-0.753178px;}
.ws116{word-spacing:-0.717307px;}
.ws115{word-spacing:-0.657532px;}
.wsa7{word-spacing:-0.645581px;}
.ws80{word-spacing:-0.597756px;}
.ws12d{word-spacing:-0.537984px;}
.wsa4{word-spacing:-0.537980px;}
.wsa2{word-spacing:-0.478205px;}
.ws3d{word-spacing:-0.418429px;}
.ws135{word-spacing:-0.376589px;}
.ws30{word-spacing:-0.358654px;}
.ws12b{word-spacing:-0.322790px;}
.ws2f{word-spacing:-0.298878px;}
.ws25{word-spacing:-0.239102px;}
.wse{word-spacing:-0.215194px;}
.ws2c{word-spacing:-0.179327px;}
.ws17{word-spacing:-0.161395px;}
.wsd2{word-spacing:-0.143462px;}
.ws3f{word-spacing:-0.119551px;}
.ws15{word-spacing:-0.107597px;}
.ws34{word-spacing:-0.059776px;}
.wsf{word-spacing:-0.053798px;}
.ws137{word-spacing:-0.008208px;}
.ws125{word-spacing:-0.006970px;}
.ws132{word-spacing:-0.005866px;}
.ws3{word-spacing:-0.005369px;}
.ws134{word-spacing:-0.004022px;}
.ws96{word-spacing:-0.003475px;}
.ws129{word-spacing:-0.001517px;}
.ws99{word-spacing:-0.001508px;}
.ws98{word-spacing:-0.001150px;}
.ws9b{word-spacing:-0.000899px;}
.ws29{word-spacing:-0.000448px;}
.ws9a{word-spacing:-0.000076px;}
.ws0{word-spacing:0.000000px;}
.ws120{word-spacing:0.053798px;}
.ws33{word-spacing:0.059776px;}
.wsd8{word-spacing:0.095641px;}
.ws123{word-spacing:0.107597px;}
.ws35{word-spacing:0.119551px;}
.ws2{word-spacing:0.125528px;}
.ws124{word-spacing:0.161395px;}
.ws38{word-spacing:0.179327px;}
.ws12a{word-spacing:0.215194px;}
.ws2b{word-spacing:0.239102px;}
.ws122{word-spacing:0.268992px;}
.ws23{word-spacing:0.298878px;}
.ws18{word-spacing:0.322790px;}
.ws3a{word-spacing:0.358654px;}
.ws3c{word-spacing:0.418429px;}
.ws127{word-spacing:0.430387px;}
.ws50{word-spacing:0.478205px;}
.ws121{word-spacing:0.484186px;}
.ws4a{word-spacing:0.537980px;}
.ws1c{word-spacing:0.537984px;}
.ws49{word-spacing:0.597756px;}
.ws76{word-spacing:0.657532px;}
.ws44{word-spacing:0.717307px;}
.ws110{word-spacing:0.777083px;}
.ws4b{word-spacing:0.836858px;}
.ws78{word-spacing:0.896634px;}
.ws59{word-spacing:0.956410px;}
.ws95{word-spacing:1.016185px;}
.ws16{word-spacing:1.022170px;}
.ws6b{word-spacing:1.075961px;}
.ws130{word-spacing:1.075968px;}
.ws117{word-spacing:1.135736px;}
.ws8b{word-spacing:1.195512px;}
.ws43{word-spacing:1.255288px;}
.ws70{word-spacing:1.315063px;}
.wsed{word-spacing:1.374839px;}
.wsc{word-spacing:1.380812px;}
.ws1f{word-spacing:1.398758px;}
.ws64{word-spacing:1.434614px;}
.ws3e{word-spacing:1.494390px;}
.ws94{word-spacing:1.554166px;}
.ws13{word-spacing:1.560154px;}
.ws4f{word-spacing:1.613941px;}
.ws128{word-spacing:1.667750px;}
.ws87{word-spacing:1.673717px;}
.ws45{word-spacing:1.733492px;}
.wsd3{word-spacing:1.793268px;}
.ws86{word-spacing:1.853044px;}
.ws10{word-spacing:1.882944px;}
.ws5c{word-spacing:1.912819px;}
.ws79{word-spacing:1.972595px;}
.ws1b{word-spacing:1.990541px;}
.wsdb{word-spacing:2.092146px;}
.ws48{word-spacing:2.151922px;}
.ws1a{word-spacing:2.151936px;}
.ws75{word-spacing:2.211697px;}
.ws101{word-spacing:2.271473px;}
.ws8d{word-spacing:2.331248px;}
.ws112{word-spacing:2.391024px;}
.ws67{word-spacing:2.450800px;}
.ws14{word-spacing:2.474726px;}
.ws1{word-spacing:2.511541px;}
.ws46{word-spacing:2.570351px;}
.ws58{word-spacing:2.630126px;}
.ws31{word-spacing:2.689902px;}
.ws36{word-spacing:2.749678px;}
.ws11{word-spacing:2.797517px;}
.ws2e{word-spacing:2.809453px;}
.ws26{word-spacing:2.869229px;}
.ws62{word-spacing:2.929004px;}
.wsd{word-spacing:2.978730px;}
.ws53{word-spacing:2.988780px;}
.wsd7{word-spacing:3.000406px;}
.ws5d{word-spacing:3.048556px;}
.ws92{word-spacing:3.108331px;}
.ws83{word-spacing:3.168107px;}
.ws12c{word-spacing:3.221088px;}
.ws133{word-spacing:3.221530px;}
.ws126{word-spacing:3.225101px;}
.wsc6{word-spacing:3.227882px;}
.ws12{word-spacing:3.227904px;}
.ws111{word-spacing:3.287658px;}
.ws11f{word-spacing:3.290234px;}
.ws1e{word-spacing:3.335501px;}
.wsa3{word-spacing:3.347434px;}
.ws131{word-spacing:3.389299px;}
.ws63{word-spacing:3.407209px;}
.ws27{word-spacing:3.466985px;}
.ws139{word-spacing:3.496896px;}
.ws104{word-spacing:3.526760px;}
.ws22{word-spacing:3.586536px;}
.ws91{word-spacing:3.646312px;}
.ws6c{word-spacing:3.706087px;}
.ws3b{word-spacing:3.765863px;}
.ws6a{word-spacing:3.825638px;}
.ws37{word-spacing:3.885414px;}
.ws84{word-spacing:3.945190px;}
.wsf0{word-spacing:4.064741px;}
.wsd5{word-spacing:4.124516px;}
.ws8f{word-spacing:4.184292px;}
.ws9e{word-spacing:4.244068px;}
.ws6d{word-spacing:4.303843px;}
.ws1d{word-spacing:4.357670px;}
.ws66{word-spacing:4.363619px;}
.ws51{word-spacing:4.423394px;}
.ws7e{word-spacing:4.483170px;}
.ws119{word-spacing:4.542946px;}
.wsa5{word-spacing:4.602721px;}
.ws12f{word-spacing:4.626662px;}
.ws69{word-spacing:4.662497px;}
.ws6e{word-spacing:4.722272px;}
.ws12e{word-spacing:4.734259px;}
.ws5a{word-spacing:4.841824px;}
.ws61{word-spacing:4.901599px;}
.ws7c{word-spacing:4.961375px;}
.ws7b{word-spacing:5.021150px;}
.ws102{word-spacing:5.080926px;}
.ws7a{word-spacing:5.140702px;}
.wsa0{word-spacing:5.200477px;}
.ws10c{word-spacing:5.260253px;}
.wsa6{word-spacing:5.320028px;}
.ws8c{word-spacing:5.379804px;}
.ws65{word-spacing:5.439580px;}
.wsa{word-spacing:5.481407px;}
.ws28{word-spacing:5.559131px;}
.ws24{word-spacing:5.618906px;}
.ws93{word-spacing:5.678682px;}
.ws54{word-spacing:5.738458px;}
.wse0{word-spacing:5.798233px;}
.ws4d{word-spacing:5.858009px;}
.ws42{word-spacing:5.917784px;}
.wsdf{word-spacing:5.977560px;}
.wsa1{word-spacing:6.037336px;}
.ws5e{word-spacing:6.097111px;}
.ws103{word-spacing:6.156887px;}
.ws60{word-spacing:6.216662px;}
.ws72{word-spacing:6.276438px;}
.wsaa{word-spacing:6.336214px;}
.ws10e{word-spacing:6.395989px;}
.wsff{word-spacing:6.407479px;}
.ws100{word-spacing:6.455765px;}
.ws89{word-spacing:6.575316px;}
.ws11d{word-spacing:6.635092px;}
.ws71{word-spacing:6.694867px;}
.ws5b{word-spacing:6.814418px;}
.wsd4{word-spacing:6.874194px;}
.wsde{word-spacing:6.933970px;}
.ws2d{word-spacing:6.993745px;}
.ws8e{word-spacing:7.053521px;}
.ws77{word-spacing:7.113296px;}
.ws47{word-spacing:7.173072px;}
.wsf2{word-spacing:7.292623px;}
.ws11a{word-spacing:7.412174px;}
.ws73{word-spacing:7.531726px;}
.wsdd{word-spacing:7.651277px;}
.wse2{word-spacing:7.711052px;}
.ws21{word-spacing:7.800768px;}
.wsa9{word-spacing:7.830604px;}
.ws8a{word-spacing:8.189257px;}
.ws11c{word-spacing:8.308808px;}
.wse1{word-spacing:8.368584px;}
.ws113{word-spacing:8.607686px;}
.ws7f{word-spacing:9.324994px;}
.ws138{word-spacing:10.544486px;}
.ws9{word-spacing:11.841512px;}
.ws8{word-spacing:13.306010px;}
.ws20{word-spacing:13.653079px;}
.ws4{word-spacing:15.481836px;}
.wsb{word-spacing:16.067635px;}
.ws7{word-spacing:29.262958px;}
.wsc4{word-spacing:60.630797px;}
.wsba{word-spacing:61.276378px;}
.wsbe{word-spacing:82.203955px;}
.wsc1{word-spacing:82.890000px;}
.wsc3{word-spacing:82.896000px;}
.wsc5{word-spacing:93.064118px;}
.wsc0{word-spacing:127.125619px;}
.wsbc{word-spacing:127.179418px;}
.wsbd{word-spacing:127.832266px;}
.wsac{word-spacing:145.094285px;}
.wsab{word-spacing:170.271936px;}
.wsad{word-spacing:171.993485px;}
.wsbb{word-spacing:176.189760px;}
.wsbf{word-spacing:187.534109px;}
.wsae{word-spacing:197.171136px;}
.wsc2{word-spacing:218.898576px;}
.wsd0{word-spacing:260.007667px;}
.wsdc{word-spacing:329.192410px;}
.wsd1{word-spacing:330.806362px;}
.ws109{word-spacing:354.101069px;}
.wsf3{word-spacing:359.178480px;}
.wscf{word-spacing:360.933466px;}
.wsd6{word-spacing:363.461990px;}
.wsc8{word-spacing:365.183539px;}
.wsc9{word-spacing:392.082739px;}
.wsc7{word-spacing:401.013274px;}
.wscb{word-spacing:410.580000px;}
.ws10d{word-spacing:417.260390px;}
.wscc{word-spacing:418.981939px;}
.wse9{word-spacing:456.479424px;}
.wsca{word-spacing:472.018109px;}
.wsea{word-spacing:527.278118px;}
.wse7{word-spacing:558.063792px;}
.wse3{word-spacing:561.655296px;}
.wsaf{word-spacing:575.193062px;}
.wsb0{word-spacing:579.462566px;}
.wse4{word-spacing:588.554496px;}
.wse8{word-spacing:607.020000px;}
.wse6{word-spacing:615.453696px;}
.wsb1{word-spacing:638.976586px;}
.ws10a{word-spacing:649.508083px;}
.wse5{word-spacing:651.922570px;}
.wsb5{word-spacing:663.885245px;}
.wsb2{word-spacing:668.458109px;}
.wsb6{word-spacing:683.306467px;}
.wsb8{word-spacing:684.221040px;}
.wsb7{word-spacing:686.426774px;}
.wsb3{word-spacing:694.765526px;}
.wsb4{word-spacing:707.139158px;}
.wsb9{word-spacing:712.250006px;}
.ws108{word-spacing:849.369139px;}
.wsfe{word-spacing:931.626893px;}
.ws107{word-spacing:950.294938px;}
.wsf4{word-spacing:959.010278px;}
.wseb{word-spacing:968.102208px;}
.wsec{word-spacing:989.244979px;}
.wsf5{word-spacing:1031.207731px;}
.wsf9{word-spacing:1056.116390px;}
.wsf7{word-spacing:1060.689254px;}
.ws105{word-spacing:1061.338109px;}
.wsfa{word-spacing:1075.537613px;}
.wsfb{word-spacing:1076.452186px;}
.wsfc{word-spacing:1078.657920px;}
.ws106{word-spacing:1079.306774px;}
.wsf6{word-spacing:1086.996672px;}
.wsf8{word-spacing:1099.370304px;}
.wsfd{word-spacing:1104.481152px;}
.wscd{word-spacing:1668.632774px;}
.wsce{word-spacing:1693.788826px;}
._1c{margin-left:-7.920270px;}
._a{margin-left:-6.754698px;}
._13{margin-left:-5.648797px;}
._0{margin-left:-4.644551px;}
._4{margin-left:-3.060159px;}
._73{margin-left:-2.050426px;}
._2{margin-left:-1.046070px;}
._77{width:1.034296px;}
._81{width:3.888976px;}
._3{width:11.715984px;}
._1{width:13.180482px;}
._9{width:14.280476px;}
._e{width:15.733033px;}
._8{width:16.785101px;}
._c{width:17.861069px;}
._18{width:19.158083px;}
._b{width:20.174400px;}
._15{width:21.220338px;}
._17{width:22.637006px;}
._16{width:24.209118px;}
._5{width:25.314894px;}
._19{width:26.480579px;}
._d{width:27.951268px;}
._f{width:29.319929px;}
._6{width:31.256572px;}
._7{width:33.355008px;}
._1b{width:34.490515px;}
._14{width:35.865360px;}
._23{width:37.180423px;}
._76{width:38.364445px;}
._1a{width:39.380176px;}
._63{width:40.438190px;}
._1d{width:41.663587px;}
._12{width:44.840208px;}
._1e{width:46.206545px;}
._82{width:49.548292px;}
._27{width:78.868454px;}
._25{width:83.064730px;}
._4a{width:95.653555px;}
._26{width:98.666266px;}
._4f{width:108.188582px;}
._4c{width:119.730787px;}
._3e{width:124.166707px;}
._3d{width:139.959536px;}
._46{width:141.275645px;}
._42{width:148.053197px;}
._7f{width:149.930164px;}
._40{width:151.119706px;}
._38{width:153.530918px;}
._24{width:166.021862px;}
._43{width:168.980774px;}
._44{width:170.809920px;}
._3f{width:177.965107px;}
._29{width:185.443085px;}
._41{width:189.854554px;}
._48{width:195.718579px;}
._33{width:201.051293px;}
._4e{width:209.867558px;}
._49{width:215.139802px;}
._45{width:226.598861px;}
._2c{width:227.950493px;}
._47{width:238.972493px;}
._4b{width:244.083341px;}
._2f{width:254.849693px;}
._2b{width:258.877901px;}
._5c{width:261.349088px;}
._70{width:275.878195px;}
._20{width:277.922534px;}
._36{width:281.748893px;}
._32{width:283.786560px;}
._2e{width:288.359424px;}
._34{width:303.207782px;}
._35{width:306.328090px;}
._28{width:312.192115px;}
._2d{width:314.666842px;}
._22{width:320.076580px;}
._3a{width:322.736602px;}
._30{width:327.040474px;}
._37{width:332.151322px;}
._64{width:358.404941px;}
._60{width:360.245923px;}
._4d{width:383.881482px;}
._55{width:392.028941px;}
._52{width:407.038694px;}
._62{width:412.956518px;}
._31{width:418.383485px;}
._53{width:441.362074px;}
._2a{width:445.282685px;}
._75{width:448.266295px;}
._80{width:449.395924px;}
._50{width:455.295859px;}
._5a{width:467.292902px;}
._58{width:468.315072px;}
._39{width:471.542976px;}
._5f{width:478.763764px;}
._61{width:486.779725px;}
._59{width:508.663872px;}
._51{width:511.084800px;}
._5d{width:543.752231px;}
._3c{width:578.010010px;}
._3b{width:580.353239px;}
._68{width:588.446899px;}
._66{width:603.402854px;}
._6e{width:609.374477px;}
._7e{width:614.646720px;}
._6b{width:637.780032px;}
._65{width:651.767616px;}
._72{width:656.711057px;}
._79{width:672.964186px;}
._6c{width:676.676275px;}
._69{width:681.249139px;}
._6d{width:696.097498px;}
._6f{width:705.028032px;}
._67{width:707.556557px;}
._6a{width:719.930189px;}
._10{width:724.402532px;}
._21{width:757.481472px;}
._71{width:758.826432px;}
._5b{width:765.796324px;}
._5e{width:777.183488px;}
._78{width:973.242954px;}
._7a{width:1044.657331px;}
._56{width:1069.565990px;}
._7c{width:1088.987213px;}
._7b{width:1100.446272px;}
._54{width:1112.819904px;}
._7d{width:1117.930752px;}
._74{width:1119.951191px;}
._57{width:1678.294886px;}
._1f{width:2500.851000px;}
._11{width:2524.761000px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(77,128,114);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:47.820600px;}
.fsa{font-size:53.798400px;}
.fsc{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsb{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.fs6{font-size:128.507760px;}
.y0{bottom:0.000000px;}
.y36{bottom:16.704213px;}
.y63{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y62{bottom:103.621500px;}
.y96{bottom:103.905000px;}
.y274{bottom:104.127000px;}
.y34{bottom:104.646000px;}
.y2e3{bottom:109.926000px;}
.y100{bottom:117.355500px;}
.y2fe{bottom:117.804000px;}
.y300{bottom:118.251000px;}
.y10f{bottom:118.699500px;}
.yc1{bottom:119.148000px;}
.y61{bottom:122.449500px;}
.y33{bottom:122.535000px;}
.y95{bottom:122.734500px;}
.y273{bottom:122.956500px;}
.y162{bottom:126.022500px;}
.y2e2{bottom:128.754000px;}
.y1fa{bottom:131.593500px;}
.y23f{bottom:133.494000px;}
.y34b{bottom:133.719000px;}
.y315{bottom:135.378000px;}
.yff{bottom:136.185000px;}
.y2fd{bottom:136.632000px;}
.y13a{bottom:137.080500px;}
.y10e{bottom:137.529000px;}
.yc0{bottom:137.977500px;}
.y21{bottom:139.264499px;}
.y32{bottom:140.422500px;}
.y60{bottom:141.279000px;}
.y94{bottom:141.564000px;}
.y1c6{bottom:141.778500px;}
.y272{bottom:141.786000px;}
.y161{bottom:144.852000px;}
.y178{bottom:145.830000px;}
.y2e1{bottom:147.583500px;}
.y1f9{bottom:150.423000px;}
.y34a{bottom:150.978000px;}
.y23e{bottom:152.323500px;}
.y314{bottom:152.638500px;}
.y175{bottom:154.048500px;}
.yfe{bottom:155.013000px;}
.y139{bottom:155.910000px;}
.y10d{bottom:156.358500px;}
.ybf{bottom:156.807000px;}
.y31{bottom:158.310000px;}
.y2fc{bottom:159.945000px;}
.y5f{bottom:160.108500px;}
.y93{bottom:160.393500px;}
.y1c5{bottom:160.608000px;}
.y271{bottom:160.615500px;}
.y195{bottom:161.704500px;}
.y177{bottom:162.268500px;}
.y2e0{bottom:166.413000px;}
.y160{bottom:168.165000px;}
.y349{bottom:168.238500px;}
.y1f8{bottom:169.252500px;}
.y313{bottom:169.897500px;}
.y213{bottom:170.298000px;}
.y174{bottom:170.487000px;}
.y23d{bottom:171.153000px;}
.yfd{bottom:173.842500px;}
.y138{bottom:174.739500px;}
.y10c{bottom:175.188000px;}
.ybe{bottom:175.636500px;}
.y30{bottom:176.199000px;}
.y29c{bottom:177.418500px;}
.y176{bottom:178.705500px;}
.y5e{bottom:178.938000px;}
.y92{bottom:179.223000px;}
.y1c4{bottom:179.437500px;}
.y270{bottom:179.445000px;}
.y194{bottom:180.532500px;}
.y2df{bottom:185.242500px;}
.y348{bottom:185.499000px;}
.y294{bottom:185.551500px;}
.y15f{bottom:186.994500px;}
.y312{bottom:187.158000px;}
.y1f7{bottom:188.082000px;}
.y212{bottom:189.127500px;}
.y23c{bottom:189.982500px;}
.yfc{bottom:192.672000px;}
.y2fb{bottom:193.569000px;}
.y10b{bottom:194.017500px;}
.y2f{bottom:194.086500px;}
.ybd{bottom:194.466000px;}
.y18{bottom:196.933500px;}
.y5d{bottom:197.767500px;}
.y91{bottom:198.052500px;}
.y1c3{bottom:198.267000px;}
.y26f{bottom:198.274500px;}
.y193{bottom:199.362000px;}
.y29b{bottom:201.060000px;}
.y293{bottom:201.990000px;}
.y173{bottom:202.347000px;}
.y347{bottom:202.759500px;}
.y2de{bottom:204.072000px;}
.y311{bottom:204.418500px;}
.y15e{bottom:205.824000px;}
.y1f6{bottom:206.911500px;}
.y211{bottom:207.957000px;}
.y23b{bottom:208.812000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.yfb{bottom:211.501500px;}
.y2e{bottom:211.974000px;}
.y2fa{bottom:212.398500px;}
.y10a{bottom:212.847000px;}
.ybc{bottom:213.295500px;}
.y5c{bottom:216.597000px;}
.y90{bottom:216.882000px;}
.y1c2{bottom:217.096500px;}
.y26e{bottom:217.104000px;}
.y192{bottom:218.191500px;}
.y172{bottom:218.785500px;}
.y346{bottom:220.020000px;}
.y310{bottom:221.679000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y2eb{bottom:222.354000px;}
.y2dd{bottom:222.901500px;}
.y15d{bottom:224.653500px;}
.y292{bottom:225.630000px;}
.y1f5{bottom:225.741000px;}
.y210{bottom:226.786500px;}
.y16e{bottom:227.004000px;}
.y23a{bottom:227.641500px;}
.y2d{bottom:229.863000px;}
.yfa{bottom:230.331000px;}
.y2f9{bottom:231.228000px;}
.y109{bottom:231.676500px;}
.ybb{bottom:232.125000px;}
.y29a{bottom:232.680000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y171{bottom:235.224000px;}
.y2bc{bottom:235.426500px;}
.y1c1{bottom:235.926000px;}
.y26d{bottom:235.932000px;}
.y191{bottom:237.021000px;}
.y345{bottom:237.280500px;}
.y2ea{bottom:238.792500px;}
.y30f{bottom:238.939500px;}
.y5b{bottom:239.910000px;}
.y8f{bottom:240.195000px;}
.y2dc{bottom:241.731000px;}
.y16d{bottom:243.442500px;}
.y1f4{bottom:244.570500px;}
.y20f{bottom:245.616000px;}
.y239{bottom:246.471000px;}
.y15c{bottom:247.965000px;}
.yf9{bottom:249.160500px;}
.y2f8{bottom:250.057500px;}
.y108{bottom:250.506000px;}
.yba{bottom:250.954500px;}
.y170{bottom:251.662500px;}
.y2bb{bottom:254.256000px;}
.y2ff{bottom:254.541000px;}
.y1c0{bottom:254.755500px;}
.y26c{bottom:254.761500px;}
.y2e9{bottom:255.231000px;}
.y190{bottom:255.850500px;}
.y30e{bottom:256.200000px;}
.y291{bottom:257.250000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1f3{bottom:263.400000px;}
.y20e{bottom:264.445500px;}
.y238{bottom:265.300500px;}
.y15b{bottom:266.794500px;}
.yf8{bottom:267.990000px;}
.y16f{bottom:268.101000px;}
.y2f7{bottom:268.887000px;}
.y126{bottom:269.335500px;}
.yb9{bottom:269.784000px;}
.y344{bottom:271.801500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y2ba{bottom:273.085500px;}
.y1bf{bottom:273.585000px;}
.y26b{bottom:273.591000px;}
.y8e{bottom:273.819000px;}
.y30d{bottom:277.944000px;}
.y2e8{bottom:278.872500px;}
.y18f{bottom:279.163500px;}
.y2db{bottom:281.865000px;}
.y1f2{bottom:282.229500px;}
.y20d{bottom:283.275000px;}
.y237{bottom:284.130000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y15a{bottom:285.624000px;}
.yf7{bottom:286.819500px;}
.y2f6{bottom:287.716500px;}
.y125{bottom:288.165000px;}
.yb8{bottom:288.613500px;}
.y343{bottom:289.062000px;}
.y16c{bottom:291.741000px;}
.y2b9{bottom:291.915000px;}
.y290{bottom:292.320000px;}
.y1be{bottom:292.414500px;}
.y26a{bottom:292.420500px;}
.y8d{bottom:292.648500px;}
.y2da{bottom:296.061000px;}
.y2c{bottom:297.166500px;}
.y169{bottom:299.959500px;}
.y1f1{bottom:301.059000px;}
.y20c{bottom:302.104500px;}
.y236{bottom:302.959500px;}
.y159{bottom:304.453500px;}
.yf6{bottom:305.649000px;}
.y342{bottom:306.321000px;}
.y28f{bottom:306.517500px;}
.y2f5{bottom:306.546000px;}
.y124{bottom:306.994500px;}
.yb7{bottom:307.443000px;}
.y16b{bottom:308.179500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y2e7{bottom:310.491000px;}
.y2b8{bottom:310.744500px;}
.y1bd{bottom:311.244000px;}
.y269{bottom:311.250000px;}
.y8c{bottom:311.478000px;}
.y30c{bottom:311.568000px;}
.y18e{bottom:312.787500px;}
.y2d9{bottom:314.905500px;}
.y2b{bottom:315.054000px;}
.y5a{bottom:315.060000px;}
.y168{bottom:316.398000px;}
.y1f0{bottom:319.888500px;}
.y20b{bottom:320.934000px;}
.y235{bottom:321.789000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y158{bottom:323.283000px;}
.y341{bottom:323.581500px;}
.yf5{bottom:324.478500px;}
.y16a{bottom:324.618000px;}
.y28e{bottom:325.360500px;}
.y2f4{bottom:325.375500px;}
.y123{bottom:325.824000px;}
.yb6{bottom:326.272500px;}
.y2b7{bottom:329.574000px;}
.y1bc{bottom:330.073500px;}
.y268{bottom:330.079500px;}
.y8b{bottom:330.307500px;}
.y2d8{bottom:331.344000px;}
.y18d{bottom:331.617000px;}
.y2a{bottom:332.943000px;}
.y59{bottom:334.516500px;}
.y30b{bottom:338.107500px;}
.y1ef{bottom:338.718000px;}
.y20a{bottom:339.763500px;}
.y234{bottom:340.618500px;}
.y340{bottom:340.842000px;}
.y28d{bottom:341.799000px;}
.y157{bottom:342.112500px;}
.yf4{bottom:343.308000px;}
.y2f3{bottom:344.205000px;}
.y122{bottom:344.653500px;}
.yb5{bottom:345.102000px;}
.y2e6{bottom:345.549000px;}
.y2d7{bottom:347.782500px;}
.yf{bottom:348.133500px;}
.y167{bottom:348.258000px;}
.y2b6{bottom:348.403500px;}
.y1bb{bottom:348.903000px;}
.y267{bottom:348.909000px;}
.y8a{bottom:349.137000px;}
.y18c{bottom:350.446500px;}
.y29{bottom:350.830500px;}
.y30a{bottom:355.681500px;}
.y1ee{bottom:357.547500px;}
.y33f{bottom:358.102500px;}
.y28c{bottom:358.237500px;}
.y209{bottom:358.593000px;}
.y233{bottom:359.448000px;}
.y156{bottom:360.942000px;}
.yf3{bottom:362.137500px;}
.y2f2{bottom:363.034500px;}
.y121{bottom:363.483000px;}
.yb4{bottom:363.931500px;}
.y2d6{bottom:364.221000px;}
.y2e5{bottom:364.378500px;}
.y2b5{bottom:367.233000px;}
.y1ba{bottom:367.732500px;}
.y266{bottom:367.738500px;}
.y89{bottom:367.966500px;}
.y299{bottom:368.413500px;}
.y18b{bottom:369.276000px;}
.y58{bottom:371.907000px;}
.y309{bottom:373.255500px;}
.y28b{bottom:374.676000px;}
.y33e{bottom:375.363000px;}
.y1ed{bottom:376.377000px;}
.y208{bottom:377.422500px;}
.y232{bottom:378.277500px;}
.y28{bottom:379.179000px;}
.y155{bottom:379.771500px;}
.y2d5{bottom:380.659500px;}
.yf2{bottom:380.967000px;}
.y2f1{bottom:381.864000px;}
.y120{bottom:382.312500px;}
.yb3{bottom:382.761000px;}
.y166{bottom:382.866000px;}
.y2e4{bottom:383.208000px;}
.y2b4{bottom:386.062500px;}
.y1b9{bottom:386.562000px;}
.y265{bottom:386.568000px;}
.ye{bottom:386.785499px;}
.y88{bottom:386.796000px;}
.y18a{bottom:388.105500px;}
.y308{bottom:390.829500px;}
.y28a{bottom:391.114500px;}
.y57{bottom:391.363500px;}
.y33d{bottom:392.623500px;}
.y1ec{bottom:395.206500px;}
.y207{bottom:396.252000px;}
.y2d4{bottom:397.096500px;}
.y231{bottom:397.107000px;}
.y154{bottom:398.601000px;}
.yf1{bottom:399.796500px;}
.y2f0{bottom:400.693500px;}
.y11f{bottom:401.142000px;}
.yb2{bottom:401.589000px;}
.y298{bottom:402.037500px;}
.y2b3{bottom:404.892000px;}
.y1b8{bottom:405.391500px;}
.y264{bottom:405.397500px;}
.y87{bottom:405.624000px;}
.y27{bottom:406.033500px;}
.y189{bottom:406.935000px;}
.y289{bottom:407.553000px;}
.yd{bottom:408.044999px;}
.y307{bottom:408.405000px;}
.y33c{bottom:409.884000px;}
.y56{bottom:410.821500px;}
.y2d3{bottom:413.535000px;}
.y1eb{bottom:414.036000px;}
.y206{bottom:415.081500px;}
.y230{bottom:415.936500px;}
.y153{bottom:417.430500px;}
.yf0{bottom:418.626000px;}
.y2ef{bottom:419.523000px;}
.y11e{bottom:419.971500px;}
.yb1{bottom:420.418500px;}
.y297{bottom:420.867000px;}
.y2b2{bottom:423.721500px;}
.y26{bottom:423.921000px;}
.y288{bottom:423.991500px;}
.y263{bottom:424.227000px;}
.y86{bottom:424.453500px;}
.y188{bottom:425.764500px;}
.y33b{bottom:427.144500px;}
.y2d2{bottom:429.973500px;}
.y55{bottom:430.278000px;}
.y1ea{bottom:432.865500px;}
.y205{bottom:433.909500px;}
.y22f{bottom:434.766000px;}
.y306{bottom:434.944500px;}
.y152{bottom:436.260000px;}
.yef{bottom:437.455500px;}
.y11d{bottom:438.801000px;}
.yd3{bottom:439.248000px;}
.y296{bottom:439.696500px;}
.y287{bottom:440.430000px;}
.y25{bottom:441.810000px;}
.y2b1{bottom:442.551000px;}
.y2ee{bottom:442.836000px;}
.y262{bottom:443.056500px;}
.y85{bottom:443.283000px;}
.yb0{bottom:443.731500px;}
.y33a{bottom:444.403500px;}
.y2d1{bottom:446.412000px;}
.y54{bottom:449.736000px;}
.y1e9{bottom:451.695000px;}
.y22e{bottom:453.595500px;}
.y1b7{bottom:453.841500px;}
.y151{bottom:455.089500px;}
.yee{bottom:456.285000px;}
.y286{bottom:456.868500px;}
.y11c{bottom:457.630500px;}
.yd2{bottom:458.077500px;}
.y295{bottom:458.526000px;}
.y24{bottom:459.697500px;}
.y2b0{bottom:461.380500px;}
.y305{bottom:461.485500px;}
.y339{bottom:461.664000px;}
.y261{bottom:461.886000px;}
.y84{bottom:462.112500px;}
.y2d0{bottom:462.850500px;}
.y53{bottom:469.192500px;}
.y1b6{bottom:470.280000px;}
.y1e8{bottom:470.524500px;}
.y187{bottom:471.226500px;}
.y22d{bottom:472.425000px;}
.y285{bottom:473.305500px;}
.y150{bottom:473.919000px;}
.y204{bottom:474.043500px;}
.yed{bottom:475.114500px;}
.y11b{bottom:476.458500px;}
.yd1{bottom:476.907000px;}
.yaf{bottom:477.355500px;}
.y23{bottom:477.585000px;}
.y338{bottom:478.924500px;}
.y304{bottom:479.059500px;}
.y2cf{bottom:479.289000px;}
.y2af{bottom:480.210000px;}
.y260{bottom:480.715500px;}
.y83{bottom:480.942000px;}
.y1b5{bottom:486.718500px;}
.y186{bottom:487.665000px;}
.y203{bottom:488.241000px;}
.y52{bottom:488.649000px;}
.y1e7{bottom:489.352500px;}
.y284{bottom:489.744000px;}
.y14f{bottom:492.748500px;}
.yec{bottom:493.944000px;}
.y11a{bottom:495.288000px;}
.y22{bottom:495.474000px;}
.y2ce{bottom:495.727500px;}
.yd0{bottom:495.736500px;}
.yae{bottom:496.185000px;}
.y2ae{bottom:499.039500px;}
.y25f{bottom:499.545000px;}
.y82{bottom:499.771500px;}
.yc{bottom:502.864502px;}
.y1b4{bottom:503.157000px;}
.y185{bottom:504.103500px;}
.y283{bottom:506.182500px;}
.y202{bottom:507.084000px;}
.y51{bottom:508.107000px;}
.y14e{bottom:511.578000px;}
.y2cd{bottom:512.166000px;}
.yeb{bottom:512.773500px;}
.y337{bottom:513.445500px;}
.y119{bottom:514.117500px;}
.ycf{bottom:514.566000px;}
.yad{bottom:515.014500px;}
.y2ad{bottom:517.869000px;}
.y25e{bottom:518.374500px;}
.y81{bottom:518.601000px;}
.y1b3{bottom:519.595500px;}
.y184{bottom:520.542000px;}
.yb{bottom:520.864502px;}
.y282{bottom:522.621000px;}
.y201{bottom:523.522500px;}
.y50{bottom:527.563500px;}
.y2cc{bottom:528.604500px;}
.y22c{bottom:529.360500px;}
.y1e6{bottom:529.486500px;}
.y14d{bottom:530.407500px;}
.y336{bottom:530.706000px;}
.yea{bottom:531.603000px;}
.y137{bottom:532.947000px;}
.yce{bottom:533.395500px;}
.yac{bottom:533.844000px;}
.y1b2{bottom:536.034000px;}
.y2ac{bottom:536.698500px;}
.y183{bottom:536.979000px;}
.y25d{bottom:537.204000px;}
.y80{bottom:537.430500px;}
.ya{bottom:538.864499px;}
.y281{bottom:539.059500px;}
.y200{bottom:539.961000px;}
.y1e5{bottom:543.684000px;}
.y2cb{bottom:545.043000px;}
.y4f{bottom:547.020000px;}
.y335{bottom:547.966500px;}
.y22b{bottom:548.190000px;}
.y14c{bottom:549.237000px;}
.y136{bottom:551.776500px;}
.ycd{bottom:552.225000px;}
.y1b1{bottom:552.472500px;}
.yab{bottom:552.673500px;}
.y182{bottom:553.417500px;}
.ye9{bottom:554.916000px;}
.y280{bottom:555.498000px;}
.y2ab{bottom:555.528000px;}
.y25c{bottom:556.033500px;}
.y7f{bottom:556.260000px;}
.y1ff{bottom:556.399500px;}
.y9{bottom:556.864499px;}
.y2ca{bottom:561.480000px;}
.y1e4{bottom:562.527000px;}
.y334{bottom:565.227000px;}
.y4e{bottom:566.478000px;}
.y22a{bottom:567.019500px;}
.y14b{bottom:568.066500px;}
.y1b0{bottom:568.911000px;}
.y181{bottom:569.856000px;}
.y135{bottom:570.606000px;}
.ycc{bottom:571.054500px;}
.yaa{bottom:571.503000px;}
.y27f{bottom:571.936500px;}
.y1fe{bottom:572.838000px;}
.y2aa{bottom:574.357500px;}
.y25b{bottom:574.863000px;}
.y7e{bottom:575.089500px;}
.y2c9{bottom:577.918500px;}
.y1e3{bottom:578.965500px;}
.y333{bottom:582.487500px;}
.y1af{bottom:585.349500px;}
.y229{bottom:585.849000px;}
.y4d{bottom:585.934500px;}
.y180{bottom:586.294500px;}
.y14a{bottom:586.896000px;}
.y27e{bottom:588.375000px;}
.ye8{bottom:588.538500px;}
.y134{bottom:589.435500px;}
.ycb{bottom:589.884000px;}
.ya9{bottom:590.332500px;}
.y2a9{bottom:593.187000px;}
.y25a{bottom:593.692500px;}
.y7d{bottom:593.919000px;}
.y2c8{bottom:594.357000px;}
.y1e2{bottom:595.404000px;}
.y1fd{bottom:596.478000px;}
.y332{bottom:599.746500px;}
.y1ae{bottom:601.786500px;}
.y17f{bottom:602.733000px;}
.y228{bottom:604.678500px;}
.y27d{bottom:604.813500px;}
.y4c{bottom:605.392500px;}
.y149{bottom:605.725500px;}
.ye7{bottom:607.368000px;}
.y133{bottom:608.265000px;}
.yca{bottom:608.713500px;}
.ya8{bottom:609.162000px;}
.y2c7{bottom:610.795500px;}
.y1e1{bottom:611.842500px;}
.y2a8{bottom:612.016500px;}
.y259{bottom:612.522000px;}
.y7c{bottom:612.748500px;}
.y331{bottom:617.007000px;}
.y1ad{bottom:618.225000px;}
.y17e{bottom:619.171500px;}
.y27c{bottom:621.252000px;}
.y227{bottom:623.508000px;}
.y148{bottom:624.555000px;}
.y4b{bottom:624.849000px;}
.ye6{bottom:626.197500px;}
.y132{bottom:627.094500px;}
.y2c6{bottom:627.234000px;}
.yc9{bottom:627.543000px;}
.ya7{bottom:627.991500px;}
.y1fc{bottom:628.098000px;}
.y1e0{bottom:628.281000px;}
.y2a7{bottom:630.844500px;}
.y7b{bottom:631.578000px;}
.y330{bottom:634.267500px;}
.y17d{bottom:635.610000px;}
.y27b{bottom:637.689000px;}
.y1ac{bottom:641.866500px;}
.y226{bottom:642.337500px;}
.y147{bottom:643.384500px;}
.y2c5{bottom:643.672500px;}
.y4a{bottom:644.305500px;}
.y1df{bottom:644.719500px;}
.ye5{bottom:645.027000px;}
.y8{bottom:645.510000px;}
.y131{bottom:645.924000px;}
.yc8{bottom:646.372500px;}
.ya6{bottom:646.821000px;}
.y2a6{bottom:649.674000px;}
.y7a{bottom:650.407500px;}
.y302{bottom:650.856000px;}
.y32f{bottom:651.528000px;}
.y17c{bottom:652.048500px;}
.y258{bottom:652.654500px;}
.y27a{bottom:654.127500px;}
.y2c4{bottom:660.111000px;}
.y1de{bottom:661.158000px;}
.y225{bottom:661.167000px;}
.y49{bottom:663.763500px;}
.ye4{bottom:663.856500px;}
.y130{bottom:664.753500px;}
.yc7{bottom:665.202000px;}
.ya5{bottom:665.650500px;}
.y146{bottom:666.696000px;}
.y7{bottom:666.771000px;}
.y257{bottom:666.852000px;}
.y2a5{bottom:668.503500px;}
.y32e{bottom:668.788500px;}
.y79{bottom:669.237000px;}
.y303{bottom:669.685500px;}
.y279{bottom:670.566000px;}
.y17b{bottom:675.688500px;}
.y1ab{bottom:676.474500px;}
.y2c3{bottom:676.549500px;}
.y1dd{bottom:677.595000px;}
.y224{bottom:679.996500px;}
.ye3{bottom:682.686000px;}
.y48{bottom:683.220000px;}
.y12f{bottom:683.583000px;}
.yc6{bottom:684.031500px;}
.ya4{bottom:684.480000px;}
.y256{bottom:685.695000px;}
.y32d{bottom:686.049000px;}
.y278{bottom:687.004500px;}
.y78{bottom:688.066500px;}
.y2c2{bottom:692.988000px;}
.y1dc{bottom:694.033500px;}
.y223{bottom:698.826000px;}
.y145{bottom:700.320000px;}
.ye2{bottom:701.515500px;}
.y255{bottom:702.133500px;}
.y12e{bottom:702.412500px;}
.y47{bottom:702.676500px;}
.yc5{bottom:702.861000px;}
.ya3{bottom:703.309500px;}
.y17a{bottom:707.308500px;}
.y301{bottom:707.344500px;}
.y2c1{bottom:709.426500px;}
.y1db{bottom:710.472000px;}
.y277{bottom:710.646000px;}
.y2a4{bottom:711.208500px;}
.y1aa{bottom:713.578500px;}
.y222{bottom:717.655500px;}
.y254{bottom:718.572000px;}
.y144{bottom:719.149500px;}
.ye1{bottom:720.345000px;}
.y32c{bottom:720.570000px;}
.y12d{bottom:721.242000px;}
.yc4{bottom:721.690500px;}
.y46{bottom:722.134500px;}
.ya2{bottom:722.139000px;}
.y77{bottom:724.828500px;}
.y2c0{bottom:725.863500px;}
.y6{bottom:726.298500px;}
.y1da{bottom:726.910500px;}
.y2a3{bottom:727.647000px;}
.y1a9{bottom:732.408000px;}
.y253{bottom:735.010500px;}
.y221{bottom:736.485000px;}
.y32b{bottom:737.829000px;}
.y143{bottom:737.979000px;}
.ye0{bottom:739.174500px;}
.y12c{bottom:740.071500px;}
.yc3{bottom:740.520000px;}
.ya1{bottom:740.968500px;}
.y45{bottom:741.591000px;}
.y276{bottom:742.264500px;}
.y2bf{bottom:742.302000px;}
.y1d9{bottom:743.349000px;}
.y76{bottom:743.658000px;}
.y1a8{bottom:751.237500px;}
.y2a2{bottom:751.288500px;}
.y252{bottom:751.449000px;}
.y3{bottom:752.599495px;}
.y32a{bottom:755.089500px;}
.y220{bottom:755.314500px;}
.y142{bottom:756.808500px;}
.ydf{bottom:758.004000px;}
.y12b{bottom:758.901000px;}
.y107{bottom:759.349500px;}
.y1d8{bottom:759.787500px;}
.ya0{bottom:759.798000px;}
.y44{bottom:761.049000px;}
.y75{bottom:762.487500px;}
.yc2{bottom:763.833000px;}
.y2be{bottom:765.943500px;}
.y251{bottom:767.887500px;}
.y1a7{bottom:770.067000px;}
.y329{bottom:772.350000px;}
.y21f{bottom:774.144000px;}
.y1d7{bottom:776.226000px;}
.yde{bottom:776.833500px;}
.y12a{bottom:777.730500px;}
.y106{bottom:778.179000px;}
.y9f{bottom:778.627500px;}
.y141{bottom:780.121500px;}
.y43{bottom:780.505500px;}
.y1fb{bottom:782.662500px;}
.y2a1{bottom:782.907000px;}
.y250{bottom:784.326000px;}
.y1a6{bottom:788.896500px;}
.y328{bottom:789.610500px;}
.y1d6{bottom:792.664500px;}
.y21e{bottom:792.973500px;}
.ydd{bottom:795.663000px;}
.y129{bottom:796.560000px;}
.y105{bottom:797.008500px;}
.y9e{bottom:797.457000px;}
.y2bd{bottom:797.563500px;}
.y74{bottom:799.249500px;}
.y42{bottom:799.962000px;}
.y24f{bottom:800.764500px;}
.y327{bottom:806.871000px;}
.y1a5{bottom:807.726000px;}
.y1d5{bottom:809.103000px;}
.y21d{bottom:811.803000px;}
.ydc{bottom:814.492500px;}
.y140{bottom:814.642500px;}
.y128{bottom:815.389500px;}
.y104{bottom:815.838000px;}
.y9d{bottom:816.286500px;}
.y24e{bottom:817.203000px;}
.y73{bottom:818.079000px;}
.y41{bottom:819.420000px;}
.y34e{bottom:819.573000px;}
.y2a0{bottom:821.740500px;}
.y326{bottom:824.131500px;}
.y1d4{bottom:825.541500px;}
.y1a4{bottom:826.555500px;}
.y21c{bottom:830.632500px;}
.ydb{bottom:833.322000px;}
.y24d{bottom:833.640000px;}
.y165{bottom:834.219000px;}
.y103{bottom:834.667500px;}
.y9c{bottom:835.114500px;}
.y34d{bottom:836.833500px;}
.y72{bottom:836.908500px;}
.y29f{bottom:838.177500px;}
.y127{bottom:838.702500px;}
.y40{bottom:838.876500px;}
.y325{bottom:841.392000px;}
.y1d3{bottom:841.978500px;}
.y21b{bottom:849.462000px;}
.y1a3{bottom:849.868500px;}
.y24c{bottom:850.078500px;}
.yda{bottom:852.151500px;}
.y13f{bottom:853.048500px;}
.y102{bottom:853.497000px;}
.y9b{bottom:853.944000px;}
.y34c{bottom:854.094000px;}
.y71{bottom:855.738000px;}
.y3f{bottom:858.333000px;}
.y1d2{bottom:858.417000px;}
.y324{bottom:858.652500px;}
.y29e{bottom:861.819000px;}
.y24b{bottom:866.517000px;}
.y21a{bottom:868.291500px;}
.yd9{bottom:870.981000px;}
.y164{bottom:871.878000px;}
.y118{bottom:872.326500px;}
.y9a{bottom:872.773500px;}
.y1d1{bottom:874.855500px;}
.y323{bottom:875.913000px;}
.y13e{bottom:876.361500px;}
.y101{bottom:876.808500px;}
.y3e{bottom:877.791000px;}
.y2{bottom:879.369000px;}
.y24a{bottom:882.955500px;}
.y219{bottom:887.121000px;}
.yd8{bottom:889.810500px;}
.y117{bottom:891.156000px;}
.y1d0{bottom:891.294000px;}
.y99{bottom:891.603000px;}
.y1a2{bottom:892.192500px;}
.y70{bottom:892.500000px;}
.y322{bottom:893.172000px;}
.y29d{bottom:893.439000px;}
.y163{bottom:895.189500px;}
.y179{bottom:895.638000px;}
.y3d{bottom:897.247500px;}
.y249{bottom:899.394000px;}
.y218{bottom:905.950500px;}
.y1cf{bottom:907.732500px;}
.y1a1{bottom:908.629500px;}
.yd7{bottom:908.640000px;}
.y116{bottom:909.984000px;}
.y98{bottom:910.432500px;}
.y6f{bottom:911.329500px;}
.y275{bottom:914.467500px;}
.y248{bottom:915.832500px;}
.y217{bottom:924.778500px;}
.y1a0{bottom:925.068000px;}
.yd6{bottom:927.469500px;}
.y321{bottom:927.693000px;}
.y115{bottom:928.813500px;}
.y97{bottom:929.262000px;}
.y1ce{bottom:931.374000px;}
.y247{bottom:932.271000px;}
.y3c{bottom:933.822000px;}
.y19f{bottom:941.506500px;}
.y216{bottom:943.608000px;}
.y320{bottom:944.953500px;}
.y114{bottom:947.643000px;}
.y6e{bottom:948.091500px;}
.y246{bottom:948.709500px;}
.y3b{bottom:949.962000px;}
.yd5{bottom:950.782500px;}
.y13b{bottom:952.126500px;}
.y19e{bottom:957.945000px;}
.y31f{bottom:962.214000px;}
.y215{bottom:962.437500px;}
.y1cd{bottom:962.992500px;}
.y245{bottom:965.148000px;}
.y113{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.y6d{bottom:966.921000px;}
.yd4{bottom:970.956000px;}
.y19d{bottom:974.383500px;}
.y31e{bottom:979.474500px;}
.y214{bottom:981.267000px;}
.y244{bottom:981.586500px;}
.y112{bottom:985.302000px;}
.y6c{bottom:985.750500px;}
.y19c{bottom:990.822000px;}
.y31d{bottom:996.735000px;}
.y3a{bottom:996.967500px;}
.y243{bottom:998.023500px;}
.y1cc{bottom:1000.096500px;}
.y111{bottom:1004.131500px;}
.y6b{bottom:1004.580000px;}
.y19b{bottom:1007.260500px;}
.y31c{bottom:1013.995500px;}
.y242{bottom:1014.462000px;}
.y1cb{bottom:1018.926000px;}
.y13d{bottom:1022.961000px;}
.y6a{bottom:1023.409500px;}
.y19a{bottom:1023.699000px;}
.y110{bottom:1027.444500px;}
.y241{bottom:1030.900500px;}
.y31b{bottom:1031.254500px;}
.y39{bottom:1036.887000px;}
.y1ca{bottom:1037.755500px;}
.y199{bottom:1040.137500px;}
.y2ed{bottom:1041.790500px;}
.y69{bottom:1042.239000px;}
.y31a{bottom:1045.893000px;}
.y13c{bottom:1046.274000px;}
.y240{bottom:1047.339000px;}
.y319{bottom:1048.515000px;}
.y1c9{bottom:1056.585000px;}
.y68{bottom:1061.068500px;}
.y198{bottom:1063.777500px;}
.y2ec{bottom:1065.103500px;}
.y38{bottom:1065.130500px;}
.y318{bottom:1065.775500px;}
.y1c8{bottom:1075.414500px;}
.y67{bottom:1079.898000px;}
.y317{bottom:1083.036000px;}
.y197{bottom:1087.419000px;}
.y37{bottom:1093.375500px;}
.y1c7{bottom:1094.244000px;}
.y66{bottom:1098.727500px;}
.y316{bottom:1100.296500px;}
.y65{bottom:1117.557000px;}
.y196{bottom:1119.037500px;}
.y35{bottom:1136.862000px;}
.y64{bottom:1177.662000px;}
.h15{height:27.655250px;}
.h9{height:30.461558px;}
.ha{height:30.712615px;}
.h7{height:32.130000px;}
.h10{height:34.813397px;}
.h13{height:35.100320px;}
.h16{height:38.896243px;}
.h11{height:39.165235px;}
.h18{height:39.488026px;}
.h14{height:41.723369px;}
.hf{height:43.217759px;}
.h12{height:43.516637px;}
.hd{height:43.875290px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hb{height:50.930649px;}
.h19{height:52.077235px;}
.h2{height:55.080000px;}
.h17{height:72.039235px;}
.he{height:77.792486px;}
.h5{height:78.030000px;}
.hc{height:87.128261px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.247128px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:52.525500px;}
.x5{left:53.574000px;}
.x6{left:58.056593px;}
.xe{left:61.369500px;}
.x10{left:62.541000px;}
.x2a{left:84.220500px;}
.x26{left:85.404000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x11{left:172.369500px;}
.x4{left:203.484001px;}
.x29{left:227.404500px;}
.xd{left:247.348500px;}
.x8{left:249.591000px;}
.x21{left:254.359500px;}
.xf{left:256.860000px;}
.x14{left:258.556500px;}
.x1f{left:262.068000px;}
.x22{left:266.650500px;}
.x9{left:281.479500px;}
.x23{left:297.246000px;}
.x20{left:304.719000px;}
.x15{left:356.776500px;}
.xc{left:366.043500px;}
.x18{left:405.888000px;}
.x12{left:411.796500px;}
.x3{left:454.959000px;}
.x19{left:553.218000px;}
.x1d{left:571.129500px;}
.x1e{left:583.422000px;}
.x24{left:590.505000px;}
.x25{left:602.796000px;}
.x13{left:608.025000px;}
.x27{left:671.415000px;}
.x28{left:681.247500px;}
.x1a{left:700.549500px;}
.xa{left:704.583000px;}
.xb{left:719.721000px;}
.x17{left:730.362000px;}
.x1b{left:776.866500px;}
.x16{left:782.044500px;}
.x1c{left:836.970000px;}
@media print{
.v1{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:11.477333pt;}
.v2{vertical-align:29.221333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000387pt;}
.lsb{letter-spacing:0.000540pt;}
.ls4{letter-spacing:0.001021pt;}
.ls1e{letter-spacing:0.001774pt;}
.ls7{letter-spacing:0.003635pt;}
.ls1f{letter-spacing:0.004267pt;}
.ls8{letter-spacing:0.570745pt;}
.ls6{letter-spacing:0.576078pt;}
.ls22{letter-spacing:10.374563pt;}
.ls1{letter-spacing:10.626533pt;}
.ls29{letter-spacing:12.054403pt;}
.ls9{letter-spacing:12.433325pt;}
.ls2a{letter-spacing:12.895144pt;}
.ls14{letter-spacing:13.019183pt;}
.ls1c{letter-spacing:13.073883pt;}
.lsc{letter-spacing:13.098426pt;}
.lsf{letter-spacing:13.124065pt;}
.ls13{letter-spacing:13.177199pt;}
.ls12{letter-spacing:13.221006pt;}
.ls20{letter-spacing:13.237148pt;}
.ls18{letter-spacing:13.260252pt;}
.ls23{letter-spacing:13.265569pt;}
.ls5{letter-spacing:13.278015pt;}
.ls2{letter-spacing:13.283349pt;}
.ls3{letter-spacing:13.283543pt;}
.lse{letter-spacing:13.283733pt;}
.ls1b{letter-spacing:13.328963pt;}
.ls21{letter-spacing:13.360850pt;}
.ls28{letter-spacing:13.374046pt;}
.ls26{letter-spacing:13.465720pt;}
.ls25{letter-spacing:13.590568pt;}
.lsa{letter-spacing:15.566400pt;}
.ls17{letter-spacing:15.791237pt;}
.ls27{letter-spacing:15.874897pt;}
.ls15{letter-spacing:16.524633pt;}
.ls16{letter-spacing:16.795158pt;}
.ls1d{letter-spacing:16.899733pt;}
.ls11{letter-spacing:17.906113pt;}
.ls19{letter-spacing:18.468361pt;}
.lsd{letter-spacing:18.682740pt;}
.ls24{letter-spacing:19.623916pt;}
.ls1a{letter-spacing:20.190869pt;}
.ws97{word-spacing:-40.078876pt;}
.ws57{word-spacing:-13.283467pt;}
.wsa8{word-spacing:-11.955200pt;}
.ws2a{word-spacing:-10.626800pt;}
.ws5{word-spacing:-9.298400pt;}
.wsf1{word-spacing:-2.975497pt;}
.ws10b{word-spacing:-2.922363pt;}
.ws11b{word-spacing:-2.869229pt;}
.ws11e{word-spacing:-2.816095pt;}
.ws10f{word-spacing:-2.656693pt;}
.ws52{word-spacing:-2.550426pt;}
.ws88{word-spacing:-2.497292pt;}
.ws74{word-spacing:-2.444158pt;}
.ws9f{word-spacing:-2.391024pt;}
.ws114{word-spacing:-2.337890pt;}
.ws7d{word-spacing:-2.284756pt;}
.ws32{word-spacing:-2.231622pt;}
.wsef{word-spacing:-2.178489pt;}
.wsd9{word-spacing:-2.019087pt;}
.ws4c{word-spacing:-1.965953pt;}
.ws118{word-spacing:-1.647150pt;}
.ws4e{word-spacing:-1.594016pt;}
.ws9d{word-spacing:-1.540882pt;}
.ws90{word-spacing:-1.487748pt;}
.ws85{word-spacing:-1.434614pt;}
.ws55{word-spacing:-1.381481pt;}
.ws81{word-spacing:-1.328347pt;}
.ws19{word-spacing:-1.291162pt;}
.ws82{word-spacing:-1.275213pt;}
.ws41{word-spacing:-1.222079pt;}
.ws40{word-spacing:-1.168945pt;}
.ws5f{word-spacing:-1.115811pt;}
.ws6{word-spacing:-1.115808pt;}
.ws39{word-spacing:-1.062677pt;}
.ws56{word-spacing:-1.009543pt;}
.ws6f{word-spacing:-0.903276pt;}
.ws9c{word-spacing:-0.850142pt;}
.wsee{word-spacing:-0.797008pt;}
.ws68{word-spacing:-0.743874pt;}
.wsda{word-spacing:-0.690740pt;}
.ws136{word-spacing:-0.669491pt;}
.ws116{word-spacing:-0.637606pt;}
.ws115{word-spacing:-0.584473pt;}
.wsa7{word-spacing:-0.573850pt;}
.ws80{word-spacing:-0.531339pt;}
.ws12d{word-spacing:-0.478208pt;}
.wsa4{word-spacing:-0.478205pt;}
.wsa2{word-spacing:-0.425071pt;}
.ws3d{word-spacing:-0.371937pt;}
.ws135{word-spacing:-0.334746pt;}
.ws30{word-spacing:-0.318803pt;}
.ws12b{word-spacing:-0.286925pt;}
.ws2f{word-spacing:-0.265669pt;}
.ws25{word-spacing:-0.212535pt;}
.wse{word-spacing:-0.191283pt;}
.ws2c{word-spacing:-0.159402pt;}
.ws17{word-spacing:-0.143462pt;}
.wsd2{word-spacing:-0.127522pt;}
.ws3f{word-spacing:-0.106268pt;}
.ws15{word-spacing:-0.095642pt;}
.ws34{word-spacing:-0.053134pt;}
.wsf{word-spacing:-0.047821pt;}
.ws137{word-spacing:-0.007296pt;}
.ws125{word-spacing:-0.006195pt;}
.ws132{word-spacing:-0.005214pt;}
.ws3{word-spacing:-0.004772pt;}
.ws134{word-spacing:-0.003575pt;}
.ws96{word-spacing:-0.003089pt;}
.ws129{word-spacing:-0.001348pt;}
.ws99{word-spacing:-0.001341pt;}
.ws98{word-spacing:-0.001022pt;}
.ws9b{word-spacing:-0.000799pt;}
.ws29{word-spacing:-0.000398pt;}
.ws9a{word-spacing:-0.000067pt;}
.ws0{word-spacing:0.000000pt;}
.ws120{word-spacing:0.047821pt;}
.ws33{word-spacing:0.053134pt;}
.wsd8{word-spacing:0.085014pt;}
.ws123{word-spacing:0.095642pt;}
.ws35{word-spacing:0.106268pt;}
.ws2{word-spacing:0.111581pt;}
.ws124{word-spacing:0.143462pt;}
.ws38{word-spacing:0.159402pt;}
.ws12a{word-spacing:0.191283pt;}
.ws2b{word-spacing:0.212535pt;}
.ws122{word-spacing:0.239104pt;}
.ws23{word-spacing:0.265669pt;}
.ws18{word-spacing:0.286925pt;}
.ws3a{word-spacing:0.318803pt;}
.ws3c{word-spacing:0.371937pt;}
.ws127{word-spacing:0.382566pt;}
.ws50{word-spacing:0.425071pt;}
.ws121{word-spacing:0.430387pt;}
.ws4a{word-spacing:0.478205pt;}
.ws1c{word-spacing:0.478208pt;}
.ws49{word-spacing:0.531339pt;}
.ws76{word-spacing:0.584473pt;}
.ws44{word-spacing:0.637606pt;}
.ws110{word-spacing:0.690740pt;}
.ws4b{word-spacing:0.743874pt;}
.ws78{word-spacing:0.797008pt;}
.ws59{word-spacing:0.850142pt;}
.ws95{word-spacing:0.903276pt;}
.ws16{word-spacing:0.908595pt;}
.ws6b{word-spacing:0.956410pt;}
.ws130{word-spacing:0.956416pt;}
.ws117{word-spacing:1.009543pt;}
.ws8b{word-spacing:1.062677pt;}
.ws43{word-spacing:1.115811pt;}
.ws70{word-spacing:1.168945pt;}
.wsed{word-spacing:1.222079pt;}
.wsc{word-spacing:1.227389pt;}
.ws1f{word-spacing:1.243341pt;}
.ws64{word-spacing:1.275213pt;}
.ws3e{word-spacing:1.328347pt;}
.ws94{word-spacing:1.381481pt;}
.ws13{word-spacing:1.386803pt;}
.ws4f{word-spacing:1.434614pt;}
.ws128{word-spacing:1.482445pt;}
.ws87{word-spacing:1.487748pt;}
.ws45{word-spacing:1.540882pt;}
.wsd3{word-spacing:1.594016pt;}
.ws86{word-spacing:1.647150pt;}
.ws10{word-spacing:1.673728pt;}
.ws5c{word-spacing:1.700284pt;}
.ws79{word-spacing:1.753418pt;}
.ws1b{word-spacing:1.769370pt;}
.wsdb{word-spacing:1.859685pt;}
.ws48{word-spacing:1.912819pt;}
.ws1a{word-spacing:1.912832pt;}
.ws75{word-spacing:1.965953pt;}
.ws101{word-spacing:2.019087pt;}
.ws8d{word-spacing:2.072221pt;}
.ws112{word-spacing:2.125355pt;}
.ws67{word-spacing:2.178489pt;}
.ws14{word-spacing:2.199757pt;}
.ws1{word-spacing:2.232481pt;}
.ws46{word-spacing:2.284756pt;}
.ws58{word-spacing:2.337890pt;}
.ws31{word-spacing:2.391024pt;}
.ws36{word-spacing:2.444158pt;}
.ws11{word-spacing:2.486682pt;}
.ws2e{word-spacing:2.497292pt;}
.ws26{word-spacing:2.550426pt;}
.ws62{word-spacing:2.603559pt;}
.wsd{word-spacing:2.647760pt;}
.ws53{word-spacing:2.656693pt;}
.wsd7{word-spacing:2.667028pt;}
.ws5d{word-spacing:2.709827pt;}
.ws92{word-spacing:2.762961pt;}
.ws83{word-spacing:2.816095pt;}
.ws12c{word-spacing:2.863189pt;}
.ws133{word-spacing:2.863582pt;}
.ws126{word-spacing:2.866756pt;}
.wsc6{word-spacing:2.869229pt;}
.ws12{word-spacing:2.869248pt;}
.ws111{word-spacing:2.922363pt;}
.ws11f{word-spacing:2.924652pt;}
.ws1e{word-spacing:2.964890pt;}
.wsa3{word-spacing:2.975497pt;}
.ws131{word-spacing:3.012710pt;}
.ws63{word-spacing:3.028630pt;}
.ws27{word-spacing:3.081764pt;}
.ws139{word-spacing:3.108352pt;}
.ws104{word-spacing:3.134898pt;}
.ws22{word-spacing:3.188032pt;}
.ws91{word-spacing:3.241166pt;}
.ws6c{word-spacing:3.294300pt;}
.ws3b{word-spacing:3.347434pt;}
.ws6a{word-spacing:3.400567pt;}
.ws37{word-spacing:3.453701pt;}
.ws84{word-spacing:3.506835pt;}
.wsf0{word-spacing:3.613103pt;}
.wsd5{word-spacing:3.666237pt;}
.ws8f{word-spacing:3.719371pt;}
.ws9e{word-spacing:3.772505pt;}
.ws6d{word-spacing:3.825638pt;}
.ws1d{word-spacing:3.873485pt;}
.ws66{word-spacing:3.878772pt;}
.ws51{word-spacing:3.931906pt;}
.ws7e{word-spacing:3.985040pt;}
.ws119{word-spacing:4.038174pt;}
.wsa5{word-spacing:4.091308pt;}
.ws12f{word-spacing:4.112589pt;}
.ws69{word-spacing:4.144442pt;}
.ws6e{word-spacing:4.197575pt;}
.ws12e{word-spacing:4.208230pt;}
.ws5a{word-spacing:4.303843pt;}
.ws61{word-spacing:4.356977pt;}
.ws7c{word-spacing:4.410111pt;}
.ws7b{word-spacing:4.463245pt;}
.ws102{word-spacing:4.516379pt;}
.ws7a{word-spacing:4.569513pt;}
.wsa0{word-spacing:4.622646pt;}
.ws10c{word-spacing:4.675780pt;}
.wsa6{word-spacing:4.728914pt;}
.ws8c{word-spacing:4.782048pt;}
.ws65{word-spacing:4.835182pt;}
.wsa{word-spacing:4.872362pt;}
.ws28{word-spacing:4.941450pt;}
.ws24{word-spacing:4.994583pt;}
.ws93{word-spacing:5.047717pt;}
.ws54{word-spacing:5.100851pt;}
.wse0{word-spacing:5.153985pt;}
.ws4d{word-spacing:5.207119pt;}
.ws42{word-spacing:5.260253pt;}
.wsdf{word-spacing:5.313387pt;}
.wsa1{word-spacing:5.366521pt;}
.ws5e{word-spacing:5.419654pt;}
.ws103{word-spacing:5.472788pt;}
.ws60{word-spacing:5.525922pt;}
.ws72{word-spacing:5.579056pt;}
.wsaa{word-spacing:5.632190pt;}
.ws10e{word-spacing:5.685324pt;}
.wsff{word-spacing:5.695537pt;}
.ws100{word-spacing:5.738458pt;}
.ws89{word-spacing:5.844725pt;}
.ws11d{word-spacing:5.897859pt;}
.ws71{word-spacing:5.950993pt;}
.ws5b{word-spacing:6.057261pt;}
.wsd4{word-spacing:6.110395pt;}
.wsde{word-spacing:6.163529pt;}
.ws2d{word-spacing:6.216662pt;}
.ws8e{word-spacing:6.269796pt;}
.ws77{word-spacing:6.322930pt;}
.ws47{word-spacing:6.376064pt;}
.wsf2{word-spacing:6.482332pt;}
.ws11a{word-spacing:6.588599pt;}
.ws73{word-spacing:6.694867pt;}
.wsdd{word-spacing:6.801135pt;}
.wse2{word-spacing:6.854269pt;}
.ws21{word-spacing:6.934016pt;}
.wsa9{word-spacing:6.960537pt;}
.ws8a{word-spacing:7.279340pt;}
.ws11c{word-spacing:7.385607pt;}
.wse1{word-spacing:7.438741pt;}
.ws113{word-spacing:7.651277pt;}
.ws7f{word-spacing:8.288883pt;}
.ws138{word-spacing:9.372877pt;}
.ws9{word-spacing:10.525789pt;}
.ws8{word-spacing:11.827565pt;}
.ws20{word-spacing:12.136070pt;}
.ws4{word-spacing:13.761632pt;}
.wsb{word-spacing:14.282342pt;}
.ws7{word-spacing:26.011518pt;}
.wsc4{word-spacing:53.894042pt;}
.wsba{word-spacing:54.467891pt;}
.wsbe{word-spacing:73.070182pt;}
.wsc1{word-spacing:73.680000pt;}
.wsc3{word-spacing:73.685333pt;}
.wsc5{word-spacing:82.723661pt;}
.wsc0{word-spacing:113.000550pt;}
.wsbc{word-spacing:113.048371pt;}
.wsbd{word-spacing:113.628681pt;}
.wsac{word-spacing:128.972698pt;}
.wsab{word-spacing:151.352832pt;}
.wsad{word-spacing:152.883098pt;}
.wsbb{word-spacing:156.613120pt;}
.wsbf{word-spacing:166.696986pt;}
.wsae{word-spacing:175.263232pt;}
.wsc2{word-spacing:194.576512pt;}
.wsd0{word-spacing:231.117926pt;}
.wsdc{word-spacing:292.615475pt;}
.wsd1{word-spacing:294.050099pt;}
.ws109{word-spacing:314.756506pt;}
.wsf3{word-spacing:319.269760pt;}
.wscf{word-spacing:320.829747pt;}
.wsd6{word-spacing:323.077325pt;}
.wsc8{word-spacing:324.607590pt;}
.wsc9{word-spacing:348.517990pt;}
.wsc7{word-spacing:356.456243pt;}
.wscb{word-spacing:364.960000pt;}
.ws10d{word-spacing:370.898125pt;}
.wscc{word-spacing:372.428390pt;}
.wse9{word-spacing:405.759488pt;}
.wsca{word-spacing:419.571652pt;}
.wsea{word-spacing:468.691661pt;}
.wse7{word-spacing:496.056704pt;}
.wse3{word-spacing:499.249152pt;}
.wsaf{word-spacing:511.282722pt;}
.wsb0{word-spacing:515.077837pt;}
.wse4{word-spacing:523.159552pt;}
.wse8{word-spacing:539.573333pt;}
.wse6{word-spacing:547.069952pt;}
.wsb1{word-spacing:567.979187pt;}
.ws10a{word-spacing:577.340518pt;}
.wse5{word-spacing:579.486729pt;}
.wsb5{word-spacing:590.120218pt;}
.wsb2{word-spacing:594.184986pt;}
.wsb6{word-spacing:607.383526pt;}
.wsb8{word-spacing:608.196480pt;}
.wsb7{word-spacing:610.157133pt;}
.wsb3{word-spacing:617.569357pt;}
.wsb4{word-spacing:628.568141pt;}
.wsb9{word-spacing:633.111117pt;}
.ws108{word-spacing:754.994790pt;}
.wsfe{word-spacing:828.112794pt;}
.ws107{word-spacing:844.706611pt;}
.wsf4{word-spacing:852.453581pt;}
.wseb{word-spacing:860.535296pt;}
.wsec{word-spacing:879.328870pt;}
.wsf5{word-spacing:916.629094pt;}
.wsf9{word-spacing:938.770125pt;}
.wsf7{word-spacing:942.834893pt;}
.ws105{word-spacing:943.411652pt;}
.wsfa{word-spacing:956.033434pt;}
.wsfb{word-spacing:956.846387pt;}
.wsfc{word-spacing:958.807040pt;}
.ws106{word-spacing:959.383799pt;}
.wsf6{word-spacing:966.219264pt;}
.wsf8{word-spacing:977.218048pt;}
.wsfd{word-spacing:981.761024pt;}
.wscd{word-spacing:1483.229133pt;}
.wsce{word-spacing:1505.590067pt;}
._1c{margin-left:-7.040240pt;}
._a{margin-left:-6.004176pt;}
._13{margin-left:-5.021153pt;}
._0{margin-left:-4.128490pt;}
._4{margin-left:-2.720142pt;}
._73{margin-left:-1.822601pt;}
._2{margin-left:-0.929840pt;}
._77{width:0.919374pt;}
._81{width:3.456867pt;}
._3{width:10.414208pt;}
._1{width:11.715984pt;}
._9{width:12.693757pt;}
._e{width:13.984918pt;}
._8{width:14.920090pt;}
._c{width:15.876506pt;}
._18{width:17.029407pt;}
._b{width:17.932800pt;}
._15{width:18.862523pt;}
._17{width:20.121783pt;}
._16{width:21.519216pt;}
._5{width:22.502128pt;}
._19{width:23.538292pt;}
._d{width:24.845571pt;}
._f{width:26.062159pt;}
._6{width:27.783619pt;}
._7{width:29.648896pt;}
._1b{width:30.658236pt;}
._14{width:31.880320pt;}
._23{width:33.049265pt;}
._76{width:34.101729pt;}
._1a{width:35.004601pt;}
._63{width:35.945058pt;}
._1d{width:37.034300pt;}
._12{width:39.857963pt;}
._1e{width:41.072484pt;}
._82{width:44.042926pt;}
._27{width:70.105293pt;}
._25{width:73.835315pt;}
._4a{width:85.025382pt;}
._26{width:87.703347pt;}
._4f{width:96.167629pt;}
._4c{width:106.427366pt;}
._3e{width:110.370406pt;}
._3d{width:124.408477pt;}
._46{width:125.578351pt;}
._42{width:131.602842pt;}
._7f{width:133.271257pt;}
._40{width:134.328627pt;}
._38{width:136.471927pt;}
._24{width:147.574989pt;}
._43{width:150.205133pt;}
._44{width:151.831040pt;}
._3f{width:158.191206pt;}
._29{width:164.838298pt;}
._41{width:168.759603pt;}
._48{width:173.972070pt;}
._33{width:178.712260pt;}
._4e{width:186.548941pt;}
._49{width:191.235379pt;}
._45{width:201.421210pt;}
._2c{width:202.622660pt;}
._47{width:212.419994pt;}
._4b{width:216.962970pt;}
._2f{width:226.533060pt;}
._2b{width:230.113690pt;}
._5c{width:232.310301pt;}
._70{width:245.225062pt;}
._20{width:247.042253pt;}
._36{width:250.443460pt;}
._32{width:252.254720pt;}
._2e{width:256.319488pt;}
._34{width:269.518029pt;}
._35{width:272.291635pt;}
._28{width:277.504102pt;}
._2d{width:279.703859pt;}
._22{width:284.512515pt;}
._3a{width:286.876979pt;}
._30{width:290.702643pt;}
._37{width:295.245619pt;}
._64{width:318.582170pt;}
._60{width:320.218598pt;}
._4d{width:341.227984pt;}
._55{width:348.470170pt;}
._52{width:361.812173pt;}
._62{width:367.072461pt;}
._31{width:371.896431pt;}
._53{width:392.321843pt;}
._2a{width:395.806831pt;}
._75{width:398.458929pt;}
._80{width:399.463043pt;}
._50{width:404.707430pt;}
._5a{width:415.371469pt;}
._58{width:416.280064pt;}
._39{width:419.149312pt;}
._5f{width:425.567790pt;}
._61{width:432.693089pt;}
._59{width:452.145664pt;}
._51{width:454.297600pt;}
._5d{width:483.335316pt;}
._3c{width:513.786675pt;}
._3b{width:515.869546pt;}
._68{width:523.063910pt;}
._66{width:536.358093pt;}
._6e{width:541.666202pt;}
._7e{width:546.352640pt;}
._6b{width:566.915584pt;}
._65{width:579.348992pt;}
._72{width:583.743162pt;}
._79{width:598.190387pt;}
._6c{width:601.490022pt;}
._69{width:605.554790pt;}
._6d{width:618.753331pt;}
._6f{width:626.691584pt;}
._67{width:628.939162pt;}
._6a{width:639.937946pt;}
._10{width:643.913362pt;}
._21{width:673.316864pt;}
._71{width:674.512384pt;}
._5b{width:680.707843pt;}
._5e{width:690.829767pt;}
._78{width:865.104848pt;}
._7a{width:928.584294pt;}
._56{width:950.725325pt;}
._7c{width:967.988634pt;}
._7b{width:978.174464pt;}
._54{width:989.173248pt;}
._7d{width:993.716224pt;}
._74{width:995.512170pt;}
._57{width:1491.817677pt;}
._1f{width:2222.978667pt;}
._11{width:2244.232000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.507200pt;}
.fsa{font-size:47.820800pt;}
.fsc{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsb{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.fs6{font-size:114.229120pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:14.848190pt;}
.y63{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y62{bottom:92.108000pt;}
.y96{bottom:92.360000pt;}
.y274{bottom:92.557333pt;}
.y34{bottom:93.018667pt;}
.y2e3{bottom:97.712000pt;}
.y100{bottom:104.316000pt;}
.y2fe{bottom:104.714667pt;}
.y300{bottom:105.112000pt;}
.y10f{bottom:105.510667pt;}
.yc1{bottom:105.909333pt;}
.y61{bottom:108.844000pt;}
.y33{bottom:108.920000pt;}
.y95{bottom:109.097333pt;}
.y273{bottom:109.294667pt;}
.y162{bottom:112.020000pt;}
.y2e2{bottom:114.448000pt;}
.y1fa{bottom:116.972000pt;}
.y23f{bottom:118.661333pt;}
.y34b{bottom:118.861333pt;}
.y315{bottom:120.336000pt;}
.yff{bottom:121.053333pt;}
.y2fd{bottom:121.450667pt;}
.y13a{bottom:121.849333pt;}
.y10e{bottom:122.248000pt;}
.yc0{bottom:122.646667pt;}
.y21{bottom:123.790666pt;}
.y32{bottom:124.820000pt;}
.y60{bottom:125.581333pt;}
.y94{bottom:125.834667pt;}
.y1c6{bottom:126.025333pt;}
.y272{bottom:126.032000pt;}
.y161{bottom:128.757333pt;}
.y178{bottom:129.626667pt;}
.y2e1{bottom:131.185333pt;}
.y1f9{bottom:133.709333pt;}
.y34a{bottom:134.202667pt;}
.y23e{bottom:135.398667pt;}
.y314{bottom:135.678667pt;}
.y175{bottom:136.932000pt;}
.yfe{bottom:137.789333pt;}
.y139{bottom:138.586667pt;}
.y10d{bottom:138.985333pt;}
.ybf{bottom:139.384000pt;}
.y31{bottom:140.720000pt;}
.y2fc{bottom:142.173333pt;}
.y5f{bottom:142.318667pt;}
.y93{bottom:142.572000pt;}
.y1c5{bottom:142.762667pt;}
.y271{bottom:142.769333pt;}
.y195{bottom:143.737333pt;}
.y177{bottom:144.238667pt;}
.y2e0{bottom:147.922667pt;}
.y160{bottom:149.480000pt;}
.y349{bottom:149.545333pt;}
.y1f8{bottom:150.446667pt;}
.y313{bottom:151.020000pt;}
.y213{bottom:151.376000pt;}
.y174{bottom:151.544000pt;}
.y23d{bottom:152.136000pt;}
.yfd{bottom:154.526667pt;}
.y138{bottom:155.324000pt;}
.y10c{bottom:155.722667pt;}
.ybe{bottom:156.121333pt;}
.y30{bottom:156.621333pt;}
.y29c{bottom:157.705333pt;}
.y176{bottom:158.849333pt;}
.y5e{bottom:159.056000pt;}
.y92{bottom:159.309333pt;}
.y1c4{bottom:159.500000pt;}
.y270{bottom:159.506667pt;}
.y194{bottom:160.473333pt;}
.y2df{bottom:164.660000pt;}
.y348{bottom:164.888000pt;}
.y294{bottom:164.934667pt;}
.y15f{bottom:166.217333pt;}
.y312{bottom:166.362667pt;}
.y1f7{bottom:167.184000pt;}
.y212{bottom:168.113333pt;}
.y23c{bottom:168.873333pt;}
.yfc{bottom:171.264000pt;}
.y2fb{bottom:172.061333pt;}
.y10b{bottom:172.460000pt;}
.y2f{bottom:172.521333pt;}
.ybd{bottom:172.858667pt;}
.y18{bottom:175.052000pt;}
.y5d{bottom:175.793333pt;}
.y91{bottom:176.046667pt;}
.y1c3{bottom:176.237333pt;}
.y26f{bottom:176.244000pt;}
.y193{bottom:177.210667pt;}
.y29b{bottom:178.720000pt;}
.y293{bottom:179.546667pt;}
.y173{bottom:179.864000pt;}
.y347{bottom:180.230667pt;}
.y2de{bottom:181.397333pt;}
.y311{bottom:181.705333pt;}
.y15e{bottom:182.954667pt;}
.y1f6{bottom:183.921333pt;}
.y211{bottom:184.850667pt;}
.y23b{bottom:185.610667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.yfb{bottom:188.001333pt;}
.y2e{bottom:188.421333pt;}
.y2fa{bottom:188.798667pt;}
.y10a{bottom:189.197333pt;}
.ybc{bottom:189.596000pt;}
.y5c{bottom:192.530667pt;}
.y90{bottom:192.784000pt;}
.y1c2{bottom:192.974667pt;}
.y26e{bottom:192.981333pt;}
.y192{bottom:193.948000pt;}
.y172{bottom:194.476000pt;}
.y346{bottom:195.573333pt;}
.y310{bottom:197.048000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y2eb{bottom:197.648000pt;}
.y2dd{bottom:198.134667pt;}
.y15d{bottom:199.692000pt;}
.y292{bottom:200.560000pt;}
.y1f5{bottom:200.658667pt;}
.y210{bottom:201.588000pt;}
.y16e{bottom:201.781333pt;}
.y23a{bottom:202.348000pt;}
.y2d{bottom:204.322667pt;}
.yfa{bottom:204.738667pt;}
.y2f9{bottom:205.536000pt;}
.y109{bottom:205.934667pt;}
.ybb{bottom:206.333333pt;}
.y29a{bottom:206.826667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y171{bottom:209.088000pt;}
.y2bc{bottom:209.268000pt;}
.y1c1{bottom:209.712000pt;}
.y26d{bottom:209.717333pt;}
.y191{bottom:210.685333pt;}
.y345{bottom:210.916000pt;}
.y2ea{bottom:212.260000pt;}
.y30f{bottom:212.390667pt;}
.y5b{bottom:213.253333pt;}
.y8f{bottom:213.506667pt;}
.y2dc{bottom:214.872000pt;}
.y16d{bottom:216.393333pt;}
.y1f4{bottom:217.396000pt;}
.y20f{bottom:218.325333pt;}
.y239{bottom:219.085333pt;}
.y15c{bottom:220.413333pt;}
.yf9{bottom:221.476000pt;}
.y2f8{bottom:222.273333pt;}
.y108{bottom:222.672000pt;}
.yba{bottom:223.070667pt;}
.y170{bottom:223.700000pt;}
.y2bb{bottom:226.005333pt;}
.y2ff{bottom:226.258667pt;}
.y1c0{bottom:226.449333pt;}
.y26c{bottom:226.454667pt;}
.y2e9{bottom:226.872000pt;}
.y190{bottom:227.422667pt;}
.y30e{bottom:227.733333pt;}
.y291{bottom:228.666667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1f3{bottom:234.133333pt;}
.y20e{bottom:235.062667pt;}
.y238{bottom:235.822667pt;}
.y15b{bottom:237.150667pt;}
.yf8{bottom:238.213333pt;}
.y16f{bottom:238.312000pt;}
.y2f7{bottom:239.010667pt;}
.y126{bottom:239.409333pt;}
.yb9{bottom:239.808000pt;}
.y344{bottom:241.601333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y2ba{bottom:242.742667pt;}
.y1bf{bottom:243.186667pt;}
.y26b{bottom:243.192000pt;}
.y8e{bottom:243.394667pt;}
.y30d{bottom:247.061333pt;}
.y2e8{bottom:247.886667pt;}
.y18f{bottom:248.145333pt;}
.y2db{bottom:250.546667pt;}
.y1f2{bottom:250.870667pt;}
.y20d{bottom:251.800000pt;}
.y237{bottom:252.560000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y15a{bottom:253.888000pt;}
.yf7{bottom:254.950667pt;}
.y2f6{bottom:255.748000pt;}
.y125{bottom:256.146667pt;}
.yb8{bottom:256.545333pt;}
.y343{bottom:256.944000pt;}
.y16c{bottom:259.325333pt;}
.y2b9{bottom:259.480000pt;}
.y290{bottom:259.840000pt;}
.y1be{bottom:259.924000pt;}
.y26a{bottom:259.929333pt;}
.y8d{bottom:260.132000pt;}
.y2da{bottom:263.165333pt;}
.y2c{bottom:264.148000pt;}
.y169{bottom:266.630667pt;}
.y1f1{bottom:267.608000pt;}
.y20c{bottom:268.537333pt;}
.y236{bottom:269.297333pt;}
.y159{bottom:270.625333pt;}
.yf6{bottom:271.688000pt;}
.y342{bottom:272.285333pt;}
.y28f{bottom:272.460000pt;}
.y2f5{bottom:272.485333pt;}
.y124{bottom:272.884000pt;}
.yb7{bottom:273.282667pt;}
.y16b{bottom:273.937333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y2e7{bottom:275.992000pt;}
.y2b8{bottom:276.217333pt;}
.y1bd{bottom:276.661333pt;}
.y269{bottom:276.666667pt;}
.y8c{bottom:276.869333pt;}
.y30c{bottom:276.949333pt;}
.y18e{bottom:278.033333pt;}
.y2d9{bottom:279.916000pt;}
.y2b{bottom:280.048000pt;}
.y5a{bottom:280.053333pt;}
.y168{bottom:281.242667pt;}
.y1f0{bottom:284.345333pt;}
.y20b{bottom:285.274667pt;}
.y235{bottom:286.034667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y158{bottom:287.362667pt;}
.y341{bottom:287.628000pt;}
.yf5{bottom:288.425333pt;}
.y16a{bottom:288.549333pt;}
.y28e{bottom:289.209333pt;}
.y2f4{bottom:289.222667pt;}
.y123{bottom:289.621333pt;}
.yb6{bottom:290.020000pt;}
.y2b7{bottom:292.954667pt;}
.y1bc{bottom:293.398667pt;}
.y268{bottom:293.404000pt;}
.y8b{bottom:293.606667pt;}
.y2d8{bottom:294.528000pt;}
.y18d{bottom:294.770667pt;}
.y2a{bottom:295.949333pt;}
.y59{bottom:297.348000pt;}
.y30b{bottom:300.540000pt;}
.y1ef{bottom:301.082667pt;}
.y20a{bottom:302.012000pt;}
.y234{bottom:302.772000pt;}
.y340{bottom:302.970667pt;}
.y28d{bottom:303.821333pt;}
.y157{bottom:304.100000pt;}
.yf4{bottom:305.162667pt;}
.y2f3{bottom:305.960000pt;}
.y122{bottom:306.358667pt;}
.yb5{bottom:306.757333pt;}
.y2e6{bottom:307.154667pt;}
.y2d7{bottom:309.140000pt;}
.yf{bottom:309.452000pt;}
.y167{bottom:309.562667pt;}
.y2b6{bottom:309.692000pt;}
.y1bb{bottom:310.136000pt;}
.y267{bottom:310.141333pt;}
.y8a{bottom:310.344000pt;}
.y18c{bottom:311.508000pt;}
.y29{bottom:311.849333pt;}
.y30a{bottom:316.161333pt;}
.y1ee{bottom:317.820000pt;}
.y33f{bottom:318.313333pt;}
.y28c{bottom:318.433333pt;}
.y209{bottom:318.749333pt;}
.y233{bottom:319.509333pt;}
.y156{bottom:320.837333pt;}
.yf3{bottom:321.900000pt;}
.y2f2{bottom:322.697333pt;}
.y121{bottom:323.096000pt;}
.yb4{bottom:323.494667pt;}
.y2d6{bottom:323.752000pt;}
.y2e5{bottom:323.892000pt;}
.y2b5{bottom:326.429333pt;}
.y1ba{bottom:326.873333pt;}
.y266{bottom:326.878667pt;}
.y89{bottom:327.081333pt;}
.y299{bottom:327.478667pt;}
.y18b{bottom:328.245333pt;}
.y58{bottom:330.584000pt;}
.y309{bottom:331.782667pt;}
.y28b{bottom:333.045333pt;}
.y33e{bottom:333.656000pt;}
.y1ed{bottom:334.557333pt;}
.y208{bottom:335.486667pt;}
.y232{bottom:336.246667pt;}
.y28{bottom:337.048000pt;}
.y155{bottom:337.574667pt;}
.y2d5{bottom:338.364000pt;}
.yf2{bottom:338.637333pt;}
.y2f1{bottom:339.434667pt;}
.y120{bottom:339.833333pt;}
.yb3{bottom:340.232000pt;}
.y166{bottom:340.325333pt;}
.y2e4{bottom:340.629333pt;}
.y2b4{bottom:343.166667pt;}
.y1b9{bottom:343.610667pt;}
.y265{bottom:343.616000pt;}
.ye{bottom:343.809333pt;}
.y88{bottom:343.818667pt;}
.y18a{bottom:344.982667pt;}
.y308{bottom:347.404000pt;}
.y28a{bottom:347.657333pt;}
.y57{bottom:347.878667pt;}
.y33d{bottom:348.998667pt;}
.y1ec{bottom:351.294667pt;}
.y207{bottom:352.224000pt;}
.y2d4{bottom:352.974667pt;}
.y231{bottom:352.984000pt;}
.y154{bottom:354.312000pt;}
.yf1{bottom:355.374667pt;}
.y2f0{bottom:356.172000pt;}
.y11f{bottom:356.570667pt;}
.yb2{bottom:356.968000pt;}
.y298{bottom:357.366667pt;}
.y2b3{bottom:359.904000pt;}
.y1b8{bottom:360.348000pt;}
.y264{bottom:360.353333pt;}
.y87{bottom:360.554667pt;}
.y27{bottom:360.918667pt;}
.y189{bottom:361.720000pt;}
.y289{bottom:362.269333pt;}
.yd{bottom:362.706666pt;}
.y307{bottom:363.026667pt;}
.y33c{bottom:364.341333pt;}
.y56{bottom:365.174667pt;}
.y2d3{bottom:367.586667pt;}
.y1eb{bottom:368.032000pt;}
.y206{bottom:368.961333pt;}
.y230{bottom:369.721333pt;}
.y153{bottom:371.049333pt;}
.yf0{bottom:372.112000pt;}
.y2ef{bottom:372.909333pt;}
.y11e{bottom:373.308000pt;}
.yb1{bottom:373.705333pt;}
.y297{bottom:374.104000pt;}
.y2b2{bottom:376.641333pt;}
.y26{bottom:376.818667pt;}
.y288{bottom:376.881333pt;}
.y263{bottom:377.090667pt;}
.y86{bottom:377.292000pt;}
.y188{bottom:378.457333pt;}
.y33b{bottom:379.684000pt;}
.y2d2{bottom:382.198667pt;}
.y55{bottom:382.469333pt;}
.y1ea{bottom:384.769333pt;}
.y205{bottom:385.697333pt;}
.y22f{bottom:386.458667pt;}
.y306{bottom:386.617333pt;}
.y152{bottom:387.786667pt;}
.yef{bottom:388.849333pt;}
.y11d{bottom:390.045333pt;}
.yd3{bottom:390.442667pt;}
.y296{bottom:390.841333pt;}
.y287{bottom:391.493333pt;}
.y25{bottom:392.720000pt;}
.y2b1{bottom:393.378667pt;}
.y2ee{bottom:393.632000pt;}
.y262{bottom:393.828000pt;}
.y85{bottom:394.029333pt;}
.yb0{bottom:394.428000pt;}
.y33a{bottom:395.025333pt;}
.y2d1{bottom:396.810667pt;}
.y54{bottom:399.765333pt;}
.y1e9{bottom:401.506667pt;}
.y22e{bottom:403.196000pt;}
.y1b7{bottom:403.414667pt;}
.y151{bottom:404.524000pt;}
.yee{bottom:405.586667pt;}
.y286{bottom:406.105333pt;}
.y11c{bottom:406.782667pt;}
.yd2{bottom:407.180000pt;}
.y295{bottom:407.578667pt;}
.y24{bottom:408.620000pt;}
.y2b0{bottom:410.116000pt;}
.y305{bottom:410.209333pt;}
.y339{bottom:410.368000pt;}
.y261{bottom:410.565333pt;}
.y84{bottom:410.766667pt;}
.y2d0{bottom:411.422667pt;}
.y53{bottom:417.060000pt;}
.y1b6{bottom:418.026667pt;}
.y1e8{bottom:418.244000pt;}
.y187{bottom:418.868000pt;}
.y22d{bottom:419.933333pt;}
.y285{bottom:420.716000pt;}
.y150{bottom:421.261333pt;}
.y204{bottom:421.372000pt;}
.yed{bottom:422.324000pt;}
.y11b{bottom:423.518667pt;}
.yd1{bottom:423.917333pt;}
.yaf{bottom:424.316000pt;}
.y23{bottom:424.520000pt;}
.y338{bottom:425.710667pt;}
.y304{bottom:425.830667pt;}
.y2cf{bottom:426.034667pt;}
.y2af{bottom:426.853333pt;}
.y260{bottom:427.302667pt;}
.y83{bottom:427.504000pt;}
.y1b5{bottom:432.638667pt;}
.y186{bottom:433.480000pt;}
.y203{bottom:433.992000pt;}
.y52{bottom:434.354667pt;}
.y1e7{bottom:434.980000pt;}
.y284{bottom:435.328000pt;}
.y14f{bottom:437.998667pt;}
.yec{bottom:439.061333pt;}
.y11a{bottom:440.256000pt;}
.y22{bottom:440.421333pt;}
.y2ce{bottom:440.646667pt;}
.yd0{bottom:440.654667pt;}
.yae{bottom:441.053333pt;}
.y2ae{bottom:443.590667pt;}
.y25f{bottom:444.040000pt;}
.y82{bottom:444.241333pt;}
.yc{bottom:446.990669pt;}
.y1b4{bottom:447.250667pt;}
.y185{bottom:448.092000pt;}
.y283{bottom:449.940000pt;}
.y202{bottom:450.741333pt;}
.y51{bottom:451.650667pt;}
.y14e{bottom:454.736000pt;}
.y2cd{bottom:455.258667pt;}
.yeb{bottom:455.798667pt;}
.y337{bottom:456.396000pt;}
.y119{bottom:456.993333pt;}
.ycf{bottom:457.392000pt;}
.yad{bottom:457.790667pt;}
.y2ad{bottom:460.328000pt;}
.y25e{bottom:460.777333pt;}
.y81{bottom:460.978667pt;}
.y1b3{bottom:461.862667pt;}
.y184{bottom:462.704000pt;}
.yb{bottom:462.990669pt;}
.y282{bottom:464.552000pt;}
.y201{bottom:465.353333pt;}
.y50{bottom:468.945333pt;}
.y2cc{bottom:469.870667pt;}
.y22c{bottom:470.542667pt;}
.y1e6{bottom:470.654667pt;}
.y14d{bottom:471.473333pt;}
.y336{bottom:471.738667pt;}
.yea{bottom:472.536000pt;}
.y137{bottom:473.730667pt;}
.yce{bottom:474.129333pt;}
.yac{bottom:474.528000pt;}
.y1b2{bottom:476.474667pt;}
.y2ac{bottom:477.065333pt;}
.y183{bottom:477.314667pt;}
.y25d{bottom:477.514667pt;}
.y80{bottom:477.716000pt;}
.ya{bottom:478.990666pt;}
.y281{bottom:479.164000pt;}
.y200{bottom:479.965333pt;}
.y1e5{bottom:483.274667pt;}
.y2cb{bottom:484.482667pt;}
.y4f{bottom:486.240000pt;}
.y335{bottom:487.081333pt;}
.y22b{bottom:487.280000pt;}
.y14c{bottom:488.210667pt;}
.y136{bottom:490.468000pt;}
.ycd{bottom:490.866667pt;}
.y1b1{bottom:491.086667pt;}
.yab{bottom:491.265333pt;}
.y182{bottom:491.926667pt;}
.ye9{bottom:493.258667pt;}
.y280{bottom:493.776000pt;}
.y2ab{bottom:493.802667pt;}
.y25c{bottom:494.252000pt;}
.y7f{bottom:494.453333pt;}
.y1ff{bottom:494.577333pt;}
.y9{bottom:494.990666pt;}
.y2ca{bottom:499.093333pt;}
.y1e4{bottom:500.024000pt;}
.y334{bottom:502.424000pt;}
.y4e{bottom:503.536000pt;}
.y22a{bottom:504.017333pt;}
.y14b{bottom:504.948000pt;}
.y1b0{bottom:505.698667pt;}
.y181{bottom:506.538667pt;}
.y135{bottom:507.205333pt;}
.ycc{bottom:507.604000pt;}
.yaa{bottom:508.002667pt;}
.y27f{bottom:508.388000pt;}
.y1fe{bottom:509.189333pt;}
.y2aa{bottom:510.540000pt;}
.y25b{bottom:510.989333pt;}
.y7e{bottom:511.190667pt;}
.y2c9{bottom:513.705333pt;}
.y1e3{bottom:514.636000pt;}
.y333{bottom:517.766667pt;}
.y1af{bottom:520.310667pt;}
.y229{bottom:520.754667pt;}
.y4d{bottom:520.830667pt;}
.y180{bottom:521.150667pt;}
.y14a{bottom:521.685333pt;}
.y27e{bottom:523.000000pt;}
.ye8{bottom:523.145333pt;}
.y134{bottom:523.942667pt;}
.ycb{bottom:524.341333pt;}
.ya9{bottom:524.740000pt;}
.y2a9{bottom:527.277333pt;}
.y25a{bottom:527.726667pt;}
.y7d{bottom:527.928000pt;}
.y2c8{bottom:528.317333pt;}
.y1e2{bottom:529.248000pt;}
.y1fd{bottom:530.202667pt;}
.y332{bottom:533.108000pt;}
.y1ae{bottom:534.921333pt;}
.y17f{bottom:535.762667pt;}
.y228{bottom:537.492000pt;}
.y27d{bottom:537.612000pt;}
.y4c{bottom:538.126667pt;}
.y149{bottom:538.422667pt;}
.ye7{bottom:539.882667pt;}
.y133{bottom:540.680000pt;}
.yca{bottom:541.078667pt;}
.ya8{bottom:541.477333pt;}
.y2c7{bottom:542.929333pt;}
.y1e1{bottom:543.860000pt;}
.y2a8{bottom:544.014667pt;}
.y259{bottom:544.464000pt;}
.y7c{bottom:544.665333pt;}
.y331{bottom:548.450667pt;}
.y1ad{bottom:549.533333pt;}
.y17e{bottom:550.374667pt;}
.y27c{bottom:552.224000pt;}
.y227{bottom:554.229333pt;}
.y148{bottom:555.160000pt;}
.y4b{bottom:555.421333pt;}
.ye6{bottom:556.620000pt;}
.y132{bottom:557.417333pt;}
.y2c6{bottom:557.541333pt;}
.yc9{bottom:557.816000pt;}
.ya7{bottom:558.214667pt;}
.y1fc{bottom:558.309333pt;}
.y1e0{bottom:558.472000pt;}
.y2a7{bottom:560.750667pt;}
.y7b{bottom:561.402667pt;}
.y330{bottom:563.793333pt;}
.y17d{bottom:564.986667pt;}
.y27b{bottom:566.834667pt;}
.y1ac{bottom:570.548000pt;}
.y226{bottom:570.966667pt;}
.y147{bottom:571.897333pt;}
.y2c5{bottom:572.153333pt;}
.y4a{bottom:572.716000pt;}
.y1df{bottom:573.084000pt;}
.ye5{bottom:573.357333pt;}
.y8{bottom:573.786667pt;}
.y131{bottom:574.154667pt;}
.yc8{bottom:574.553333pt;}
.ya6{bottom:574.952000pt;}
.y2a6{bottom:577.488000pt;}
.y7a{bottom:578.140000pt;}
.y302{bottom:578.538667pt;}
.y32f{bottom:579.136000pt;}
.y17c{bottom:579.598667pt;}
.y258{bottom:580.137333pt;}
.y27a{bottom:581.446667pt;}
.y2c4{bottom:586.765333pt;}
.y1de{bottom:587.696000pt;}
.y225{bottom:587.704000pt;}
.y49{bottom:590.012000pt;}
.ye4{bottom:590.094667pt;}
.y130{bottom:590.892000pt;}
.yc7{bottom:591.290667pt;}
.ya5{bottom:591.689333pt;}
.y146{bottom:592.618667pt;}
.y7{bottom:592.685334pt;}
.y257{bottom:592.757333pt;}
.y2a5{bottom:594.225333pt;}
.y32e{bottom:594.478667pt;}
.y79{bottom:594.877333pt;}
.y303{bottom:595.276000pt;}
.y279{bottom:596.058667pt;}
.y17b{bottom:600.612000pt;}
.y1ab{bottom:601.310667pt;}
.y2c3{bottom:601.377333pt;}
.y1dd{bottom:602.306667pt;}
.y224{bottom:604.441333pt;}
.ye3{bottom:606.832000pt;}
.y48{bottom:607.306667pt;}
.y12f{bottom:607.629333pt;}
.yc6{bottom:608.028000pt;}
.ya4{bottom:608.426667pt;}
.y256{bottom:609.506667pt;}
.y32d{bottom:609.821333pt;}
.y278{bottom:610.670667pt;}
.y78{bottom:611.614667pt;}
.y2c2{bottom:615.989333pt;}
.y1dc{bottom:616.918667pt;}
.y223{bottom:621.178667pt;}
.y145{bottom:622.506667pt;}
.ye2{bottom:623.569333pt;}
.y255{bottom:624.118667pt;}
.y12e{bottom:624.366667pt;}
.y47{bottom:624.601333pt;}
.yc5{bottom:624.765333pt;}
.ya3{bottom:625.164000pt;}
.y17a{bottom:628.718667pt;}
.y301{bottom:628.750667pt;}
.y2c1{bottom:630.601333pt;}
.y1db{bottom:631.530667pt;}
.y277{bottom:631.685333pt;}
.y2a4{bottom:632.185333pt;}
.y1aa{bottom:634.292000pt;}
.y222{bottom:637.916000pt;}
.y254{bottom:638.730667pt;}
.y144{bottom:639.244000pt;}
.ye1{bottom:640.306667pt;}
.y32c{bottom:640.506667pt;}
.y12d{bottom:641.104000pt;}
.yc4{bottom:641.502667pt;}
.y46{bottom:641.897333pt;}
.ya2{bottom:641.901333pt;}
.y77{bottom:644.292000pt;}
.y2c0{bottom:645.212000pt;}
.y6{bottom:645.598667pt;}
.y1da{bottom:646.142667pt;}
.y2a3{bottom:646.797333pt;}
.y1a9{bottom:651.029333pt;}
.y253{bottom:653.342667pt;}
.y221{bottom:654.653333pt;}
.y32b{bottom:655.848000pt;}
.y143{bottom:655.981333pt;}
.ye0{bottom:657.044000pt;}
.y12c{bottom:657.841333pt;}
.yc3{bottom:658.240000pt;}
.ya1{bottom:658.638667pt;}
.y45{bottom:659.192000pt;}
.y276{bottom:659.790667pt;}
.y2bf{bottom:659.824000pt;}
.y1d9{bottom:660.754667pt;}
.y76{bottom:661.029333pt;}
.y1a8{bottom:667.766667pt;}
.y2a2{bottom:667.812000pt;}
.y252{bottom:667.954667pt;}
.y3{bottom:668.977329pt;}
.y32a{bottom:671.190667pt;}
.y220{bottom:671.390667pt;}
.y142{bottom:672.718667pt;}
.ydf{bottom:673.781333pt;}
.y12b{bottom:674.578667pt;}
.y107{bottom:674.977333pt;}
.y1d8{bottom:675.366667pt;}
.ya0{bottom:675.376000pt;}
.y44{bottom:676.488000pt;}
.y75{bottom:677.766667pt;}
.yc2{bottom:678.962667pt;}
.y2be{bottom:680.838667pt;}
.y251{bottom:682.566667pt;}
.y1a7{bottom:684.504000pt;}
.y329{bottom:686.533333pt;}
.y21f{bottom:688.128000pt;}
.y1d7{bottom:689.978667pt;}
.yde{bottom:690.518667pt;}
.y12a{bottom:691.316000pt;}
.y106{bottom:691.714667pt;}
.y9f{bottom:692.113333pt;}
.y141{bottom:693.441333pt;}
.y43{bottom:693.782667pt;}
.y1fb{bottom:695.700000pt;}
.y2a1{bottom:695.917333pt;}
.y250{bottom:697.178667pt;}
.y1a6{bottom:701.241333pt;}
.y328{bottom:701.876000pt;}
.y1d6{bottom:704.590667pt;}
.y21e{bottom:704.865333pt;}
.ydd{bottom:707.256000pt;}
.y129{bottom:708.053333pt;}
.y105{bottom:708.452000pt;}
.y9e{bottom:708.850667pt;}
.y2bd{bottom:708.945333pt;}
.y74{bottom:710.444000pt;}
.y42{bottom:711.077333pt;}
.y24f{bottom:711.790667pt;}
.y327{bottom:717.218667pt;}
.y1a5{bottom:717.978667pt;}
.y1d5{bottom:719.202667pt;}
.y21d{bottom:721.602667pt;}
.ydc{bottom:723.993333pt;}
.y140{bottom:724.126667pt;}
.y128{bottom:724.790667pt;}
.y104{bottom:725.189333pt;}
.y9d{bottom:725.588000pt;}
.y24e{bottom:726.402667pt;}
.y73{bottom:727.181333pt;}
.y41{bottom:728.373333pt;}
.y34e{bottom:728.509333pt;}
.y2a0{bottom:730.436000pt;}
.y326{bottom:732.561333pt;}
.y1d4{bottom:733.814667pt;}
.y1a4{bottom:734.716000pt;}
.y21c{bottom:738.340000pt;}
.ydb{bottom:740.730667pt;}
.y24d{bottom:741.013333pt;}
.y165{bottom:741.528000pt;}
.y103{bottom:741.926667pt;}
.y9c{bottom:742.324000pt;}
.y34d{bottom:743.852000pt;}
.y72{bottom:743.918667pt;}
.y29f{bottom:745.046667pt;}
.y127{bottom:745.513333pt;}
.y40{bottom:745.668000pt;}
.y325{bottom:747.904000pt;}
.y1d3{bottom:748.425333pt;}
.y21b{bottom:755.077333pt;}
.y1a3{bottom:755.438667pt;}
.y24c{bottom:755.625333pt;}
.yda{bottom:757.468000pt;}
.y13f{bottom:758.265333pt;}
.y102{bottom:758.664000pt;}
.y9b{bottom:759.061333pt;}
.y34c{bottom:759.194667pt;}
.y71{bottom:760.656000pt;}
.y3f{bottom:762.962667pt;}
.y1d2{bottom:763.037333pt;}
.y324{bottom:763.246667pt;}
.y29e{bottom:766.061333pt;}
.y24b{bottom:770.237333pt;}
.y21a{bottom:771.814667pt;}
.yd9{bottom:774.205333pt;}
.y164{bottom:775.002667pt;}
.y118{bottom:775.401333pt;}
.y9a{bottom:775.798667pt;}
.y1d1{bottom:777.649333pt;}
.y323{bottom:778.589333pt;}
.y13e{bottom:778.988000pt;}
.y101{bottom:779.385333pt;}
.y3e{bottom:780.258667pt;}
.y2{bottom:781.661334pt;}
.y24a{bottom:784.849333pt;}
.y219{bottom:788.552000pt;}
.yd8{bottom:790.942667pt;}
.y117{bottom:792.138667pt;}
.y1d0{bottom:792.261333pt;}
.y99{bottom:792.536000pt;}
.y1a2{bottom:793.060000pt;}
.y70{bottom:793.333333pt;}
.y322{bottom:793.930667pt;}
.y29d{bottom:794.168000pt;}
.y163{bottom:795.724000pt;}
.y179{bottom:796.122667pt;}
.y3d{bottom:797.553333pt;}
.y249{bottom:799.461333pt;}
.y218{bottom:805.289333pt;}
.y1cf{bottom:806.873333pt;}
.y1a1{bottom:807.670667pt;}
.yd7{bottom:807.680000pt;}
.y116{bottom:808.874667pt;}
.y98{bottom:809.273333pt;}
.y6f{bottom:810.070667pt;}
.y275{bottom:812.860000pt;}
.y248{bottom:814.073333pt;}
.y217{bottom:822.025333pt;}
.y1a0{bottom:822.282667pt;}
.yd6{bottom:824.417333pt;}
.y321{bottom:824.616000pt;}
.y115{bottom:825.612000pt;}
.y97{bottom:826.010667pt;}
.y1ce{bottom:827.888000pt;}
.y247{bottom:828.685333pt;}
.y3c{bottom:830.064000pt;}
.y19f{bottom:836.894667pt;}
.y216{bottom:838.762667pt;}
.y320{bottom:839.958667pt;}
.y114{bottom:842.349333pt;}
.y6e{bottom:842.748000pt;}
.y246{bottom:843.297333pt;}
.y3b{bottom:844.410667pt;}
.yd5{bottom:845.140000pt;}
.y13b{bottom:846.334667pt;}
.y19e{bottom:851.506667pt;}
.y31f{bottom:855.301333pt;}
.y215{bottom:855.500000pt;}
.y1cd{bottom:855.993333pt;}
.y245{bottom:857.909333pt;}
.y113{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.y6d{bottom:859.485333pt;}
.yd4{bottom:863.072000pt;}
.y19d{bottom:866.118667pt;}
.y31e{bottom:870.644000pt;}
.y214{bottom:872.237333pt;}
.y244{bottom:872.521333pt;}
.y112{bottom:875.824000pt;}
.y6c{bottom:876.222667pt;}
.y19c{bottom:880.730667pt;}
.y31d{bottom:885.986667pt;}
.y3a{bottom:886.193333pt;}
.y243{bottom:887.132000pt;}
.y1cc{bottom:888.974667pt;}
.y111{bottom:892.561333pt;}
.y6b{bottom:892.960000pt;}
.y19b{bottom:895.342667pt;}
.y31c{bottom:901.329333pt;}
.y242{bottom:901.744000pt;}
.y1cb{bottom:905.712000pt;}
.y13d{bottom:909.298667pt;}
.y6a{bottom:909.697333pt;}
.y19a{bottom:909.954667pt;}
.y110{bottom:913.284000pt;}
.y241{bottom:916.356000pt;}
.y31b{bottom:916.670667pt;}
.y39{bottom:921.677333pt;}
.y1ca{bottom:922.449333pt;}
.y199{bottom:924.566667pt;}
.y2ed{bottom:926.036000pt;}
.y69{bottom:926.434667pt;}
.y31a{bottom:929.682667pt;}
.y13c{bottom:930.021333pt;}
.y240{bottom:930.968000pt;}
.y319{bottom:932.013333pt;}
.y1c9{bottom:939.186667pt;}
.y68{bottom:943.172000pt;}
.y198{bottom:945.580000pt;}
.y2ec{bottom:946.758667pt;}
.y38{bottom:946.782667pt;}
.y318{bottom:947.356000pt;}
.y1c8{bottom:955.924000pt;}
.y67{bottom:959.909333pt;}
.y317{bottom:962.698667pt;}
.y197{bottom:966.594667pt;}
.y37{bottom:971.889333pt;}
.y1c7{bottom:972.661333pt;}
.y66{bottom:976.646667pt;}
.y316{bottom:978.041333pt;}
.y65{bottom:993.384000pt;}
.y196{bottom:994.700000pt;}
.y35{bottom:1010.544000pt;}
.y64{bottom:1046.810667pt;}
.h15{height:24.582445pt;}
.h9{height:27.076941pt;}
.ha{height:27.300102pt;}
.h7{height:28.560000pt;}
.h10{height:30.945242pt;}
.h13{height:31.200285pt;}
.h16{height:34.574438pt;}
.h11{height:34.813542pt;}
.h18{height:35.100467pt;}
.h14{height:37.087439pt;}
.hf{height:38.415786pt;}
.h12{height:38.681455pt;}
.hd{height:39.000258pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hb{height:45.271688pt;}
.h19{height:46.290876pt;}
.h2{height:48.960000pt;}
.h17{height:64.034876pt;}
.he{height:69.148877pt;}
.h5{height:69.360000pt;}
.hc{height:77.447343pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.330780pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:46.689333pt;}
.x5{left:47.621333pt;}
.x6{left:51.605861pt;}
.xe{left:54.550667pt;}
.x10{left:55.592000pt;}
.x2a{left:74.862667pt;}
.x26{left:75.914667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x11{left:153.217333pt;}
.x4{left:180.874667pt;}
.x29{left:202.137333pt;}
.xd{left:219.865333pt;}
.x8{left:221.858667pt;}
.x21{left:226.097333pt;}
.xf{left:228.320000pt;}
.x14{left:229.828000pt;}
.x1f{left:232.949333pt;}
.x22{left:237.022667pt;}
.x9{left:250.204000pt;}
.x23{left:264.218667pt;}
.x20{left:270.861333pt;}
.x15{left:317.134667pt;}
.xc{left:325.372000pt;}
.x18{left:360.789333pt;}
.x12{left:366.041333pt;}
.x3{left:404.408000pt;}
.x19{left:491.749333pt;}
.x1d{left:507.670667pt;}
.x1e{left:518.597333pt;}
.x24{left:524.893333pt;}
.x25{left:535.818667pt;}
.x13{left:540.466667pt;}
.x27{left:596.813333pt;}
.x28{left:605.553333pt;}
.x1a{left:622.710667pt;}
.xa{left:626.296000pt;}
.xb{left:639.752000pt;}
.x17{left:649.210667pt;}
.x1b{left:690.548000pt;}
.x16{left:695.150667pt;}
.x1c{left:743.973333pt;}
}




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