
    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_bf7c4efef847764b70b31014.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3d181def63f6ca0653ea4c01.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cedf0361024040c1c97ec213.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_9a02881cda4b17221e378ade.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_363ba5679eeb2fddd91600e5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.845000;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_28d08094642f7a52fc2e7c6d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f20e581eb63ae9ac44b847e8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.677000;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_cad70d5acf17550d9d598cac.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.685000;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_7ed71ae753624dc46e42ae8f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_40d0c545103fa0b414800d95.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.106000;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;}
.m2a{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.m1c{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);}
.mf{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);}
.m7{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);}
.m8{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);}
.m1d{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);}
.m1e{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);}
.m19{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);}
.m2{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);}
.m21{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);}
.m6{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);}
.m14{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);}
.m28{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);}
.m22{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);}
.mb{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);}
.m4{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m1b{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);}
.m24{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);}
.md{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);}
.m11{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);}
.m3{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);}
.m9{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);}
.m29{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);}
.m12{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);}
.m18{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);}
.m16{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);}
.m20{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);}
.m26{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);}
.m27{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);}
.m25{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);}
.me{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);}
.mc{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);}
.m1f{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);}
.m1a{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);}
.m10{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);}
.m13{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);}
.m23{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);}
.m5{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);}
.m17{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);}
.v2{vertical-align:-22.855143px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.755188px;}
.v1{vertical-align:29.893495px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000605px;}
.ls10{letter-spacing:0.001357px;}
.ls28{letter-spacing:0.002700px;}
.ls2b{letter-spacing:0.002712px;}
.lsd{letter-spacing:0.003166px;}
.ls2f{letter-spacing:2.989349px;}
.ls26{letter-spacing:13.448231px;}
.ls21{letter-spacing:13.484322px;}
.ls16{letter-spacing:14.204358px;}
.ls2a{letter-spacing:14.580141px;}
.ls29{letter-spacing:14.589429px;}
.ls5{letter-spacing:14.597106px;}
.ls4{letter-spacing:16.102637px;}
.ls14{letter-spacing:16.168095px;}
.ls18{letter-spacing:16.233552px;}
.ls1{letter-spacing:16.364468px;}
.lsb{letter-spacing:16.429926px;}
.ls2{letter-spacing:16.495384px;}
.ls1b{letter-spacing:16.560842px;}
.ls23{letter-spacing:16.691758px;}
.lse{letter-spacing:16.727017px;}
.ls1c{letter-spacing:16.757215px;}
.ls20{letter-spacing:16.953589px;}
.ls1f{letter-spacing:17.215421px;}
.ls24{letter-spacing:17.411794px;}
.ls17{letter-spacing:17.542710px;}
.ls2c{letter-spacing:17.730299px;}
.lsa{letter-spacing:17.739084px;}
.ls1a{letter-spacing:18.000915px;}
.ls0{letter-spacing:18.524578px;}
.ls11{letter-spacing:18.554925px;}
.ls7{letter-spacing:18.786409px;}
.ls30{letter-spacing:19.350667px;}
.ls31{letter-spacing:19.356668px;}
.ls3{letter-spacing:19.506446px;}
.ls12{letter-spacing:19.966309px;}
.ls22{letter-spacing:20.030109px;}
.lsc{letter-spacing:20.396494px;}
.ls27{letter-spacing:21.470182px;}
.ls8{letter-spacing:22.124761px;}
.ls2d{letter-spacing:22.582966px;}
.ls13{letter-spacing:24.284871px;}
.ls15{letter-spacing:24.677618px;}
.ls19{letter-spacing:24.743076px;}
.ls32{letter-spacing:25.135823px;}
.ls25{letter-spacing:25.986775px;}
.ls9{letter-spacing:26.052233px;}
.ls2e{letter-spacing:26.706812px;}
.ls1d{letter-spacing:41.042086px;}
.ls1e{letter-spacing:41.107544px;}
.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;}
}
.wsc1{word-spacing:-57.472012px;}
.wsc4{word-spacing:-33.318057px;}
.wsbe{word-spacing:-33.121684px;}
.ws42{word-spacing:-16.364468px;}
.wsf{word-spacing:-14.944647px;}
.ws162{word-spacing:-13.450272px;}
.wsc6{word-spacing:-10.461223px;}
.ws166{word-spacing:-8.966848px;}
.wsa3{word-spacing:-3.534725px;}
.ws94{word-spacing:-3.469267px;}
.wsa7{word-spacing:-3.403809px;}
.ws156{word-spacing:-3.347601px;}
.ws15f{word-spacing:-3.338352px;}
.ws3c{word-spacing:-3.076520px;}
.ws10c{word-spacing:-3.011062px;}
.ws2e{word-spacing:-2.880146px;}
.ws111{word-spacing:-2.814689px;}
.ws119{word-spacing:-2.809594px;}
.wsd9{word-spacing:-2.761091px;}
.ws86{word-spacing:-2.749231px;}
.wsd8{word-spacing:-2.743103px;}
.ws93{word-spacing:-2.683773px;}
.ws157{word-spacing:-2.630258px;}
.ws6{word-spacing:-2.570479px;}
.ws75{word-spacing:-2.552857px;}
.ws8c{word-spacing:-2.487399px;}
.ws11b{word-spacing:-2.450922px;}
.ws8d{word-spacing:-2.421941px;}
.ws4{word-spacing:-2.331365px;}
.ws98{word-spacing:-2.160110px;}
.ws34{word-spacing:-2.029194px;}
.wsf4{word-spacing:-1.963736px;}
.wsd2{word-spacing:-1.898278px;}
.ws36{word-spacing:-1.767363px;}
.ws131{word-spacing:-1.733579px;}
.ws3a{word-spacing:-1.701905px;}
.ws11e{word-spacing:-1.673800px;}
.wsbf{word-spacing:-1.636447px;}
.wsa2{word-spacing:-1.570989px;}
.ws65{word-spacing:-1.505531px;}
.wsf3{word-spacing:-1.440073px;}
.ws12b{word-spacing:-1.434686px;}
.ws8e{word-spacing:-1.374615px;}
.ws19{word-spacing:-1.315129px;}
.ws10e{word-spacing:-1.309157px;}
.ws1e{word-spacing:-1.243700px;}
.ws10d{word-spacing:-1.178242px;}
.ws24{word-spacing:-1.112784px;}
.ws4c{word-spacing:-1.047326px;}
.wscc{word-spacing:-0.981868px;}
.wsb0{word-spacing:-0.850952px;}
.ws9c{word-spacing:-0.785494px;}
.wsca{word-spacing:-0.720037px;}
.ws46{word-spacing:-0.654579px;}
.ws4d{word-spacing:-0.589121px;}
.ws160{word-spacing:-0.565453px;}
.ws134{word-spacing:-0.538007px;}
.ws67{word-spacing:-0.523663px;}
.ws39{word-spacing:-0.458205px;}
.ws57{word-spacing:-0.392747px;}
.ws11{word-spacing:-0.358672px;}
.ws2a{word-spacing:-0.327289px;}
.ws76{word-spacing:-0.300166px;}
.ws158{word-spacing:-0.298893px;}
.ws32{word-spacing:-0.261831px;}
.ws1c{word-spacing:-0.239114px;}
.ws50{word-spacing:-0.228169px;}
.wse2{word-spacing:-0.213397px;}
.ws14c{word-spacing:-0.200991px;}
.ws45{word-spacing:-0.196374px;}
.ws7{word-spacing:-0.179336px;}
.wsd7{word-spacing:-0.170082px;}
.ws77{word-spacing:-0.159599px;}
.ws21{word-spacing:-0.130916px;}
.ws14{word-spacing:-0.119557px;}
.ws112{word-spacing:-0.114519px;}
.ws113{word-spacing:-0.108842px;}
.ws10f{word-spacing:-0.071735px;}
.wsb1{word-spacing:-0.067737px;}
.ws2f{word-spacing:-0.065458px;}
.wsb{word-spacing:-0.059779px;}
.ws165{word-spacing:-0.053801px;}
.wsb7{word-spacing:-0.048651px;}
.ws87{word-spacing:-0.003329px;}
.ws11f{word-spacing:-0.002975px;}
.wsae{word-spacing:-0.002075px;}
.wsaf{word-spacing:-0.000967px;}
.wsdd{word-spacing:-0.000265px;}
.ws3{word-spacing:0.000000px;}
.wsfe{word-spacing:0.014689px;}
.wsff{word-spacing:0.015044px;}
.wsfc{word-spacing:0.015534px;}
.wsa8{word-spacing:0.015642px;}
.wsfd{word-spacing:0.016244px;}
.ws16{word-spacing:0.059779px;}
.ws35{word-spacing:0.065458px;}
.wsd4{word-spacing:0.085040px;}
.wse{word-spacing:0.119557px;}
.ws11a{word-spacing:0.129460px;}
.ws37{word-spacing:0.130916px;}
.ws10b{word-spacing:0.134742px;}
.wsd3{word-spacing:0.173004px;}
.ws5{word-spacing:0.179336px;}
.ws14a{word-spacing:0.190954px;}
.ws41{word-spacing:0.196374px;}
.ws18{word-spacing:0.239114px;}
.ws4f{word-spacing:0.261831px;}
.wsf8{word-spacing:0.268463px;}
.wsfa{word-spacing:0.269005px;}
.wsb4{word-spacing:0.289161px;}
.ws12{word-spacing:0.298893px;}
.wsb3{word-spacing:0.309719px;}
.wse1{word-spacing:0.316203px;}
.ws29{word-spacing:0.327289px;}
.ws15a{word-spacing:0.358672px;}
.ws53{word-spacing:0.392747px;}
.ws68{word-spacing:0.458205px;}
.ws7b{word-spacing:0.523663px;}
.ws3f{word-spacing:0.589121px;}
.ws17{word-spacing:0.597786px;}
.ws47{word-spacing:0.654579px;}
.ws12f{word-spacing:0.657564px;}
.ws15e{word-spacing:0.699414px;}
.ws130{word-spacing:0.701017px;}
.ws22{word-spacing:0.720037px;}
.ws7e{word-spacing:0.721676px;}
.wsbc{word-spacing:0.785494px;}
.ws13e{word-spacing:0.836900px;}
.wse0{word-spacing:0.916410px;}
.ws51{word-spacing:0.920264px;}
.ws4b{word-spacing:0.966649px;}
.ws78{word-spacing:0.973242px;}
.wsbd{word-spacing:0.981868px;}
.ws90{word-spacing:1.029346px;}
.wsb2{word-spacing:1.038550px;}
.ws64{word-spacing:1.047326px;}
.ws167{word-spacing:1.066778px;}
.ws154{word-spacing:1.076015px;}
.ws7a{word-spacing:1.112784px;}
.ws91{word-spacing:1.151109px;}
.wsa9{word-spacing:1.177683px;}
.ws80{word-spacing:1.178242px;}
.ws30{word-spacing:1.243700px;}
.ws62{word-spacing:1.309157px;}
.ws88{word-spacing:1.356316px;}
.ws44{word-spacing:1.360466px;}
.wsdb{word-spacing:1.394822px;}
.ws152{word-spacing:1.434686px;}
.ws109{word-spacing:1.440073px;}
.ws151{word-spacing:1.463098px;}
.ws10{word-spacing:1.494465px;}
.ws66{word-spacing:1.505531px;}
.ws14d{word-spacing:1.554243px;}
.ws4a{word-spacing:1.636447px;}
.ws11d{word-spacing:1.673800px;}
.wsba{word-spacing:1.701905px;}
.ws25{word-spacing:1.832820px;}
.wsad{word-spacing:1.853136px;}
.wsf7{word-spacing:1.898278px;}
.ws52{word-spacing:1.963736px;}
.wsdc{word-spacing:2.029194px;}
.ws132{word-spacing:2.032472px;}
.ws27{word-spacing:2.094652px;}
.ws14f{word-spacing:2.152029px;}
.ws26{word-spacing:2.160110px;}
.ws6d{word-spacing:2.163647px;}
.ws6e{word-spacing:2.167260px;}
.ws5b{word-spacing:2.225568px;}
.wsda{word-spacing:2.291026px;}
.ws92{word-spacing:2.356483px;}
.ws48{word-spacing:2.421941px;}
.ws49{word-spacing:2.487399px;}
.ws9b{word-spacing:2.552857px;}
.ws23{word-spacing:2.618315px;}
.ws5d{word-spacing:2.683773px;}
.ws58{word-spacing:2.749231px;}
.ws153{word-spacing:2.809594px;}
.ws9a{word-spacing:2.814689px;}
.ws13c{word-spacing:2.929151px;}
.wsf5{word-spacing:2.945604px;}
.ws83{word-spacing:3.011062px;}
.ws38{word-spacing:3.076520px;}
.wsa4{word-spacing:3.141978px;}
.ws147{word-spacing:3.168265px;}
.ws135{word-spacing:3.228044px;}
.wsaa{word-spacing:3.228065px;}
.ws85{word-spacing:3.272894px;}
.wsa{word-spacing:3.347601px;}
.wsc5{word-spacing:3.403809px;}
.ws137{word-spacing:3.407380px;}
.ws114{word-spacing:3.467158px;}
.ws59{word-spacing:3.469267px;}
.ws115{word-spacing:3.526937px;}
.ws13d{word-spacing:3.586715px;}
.wsde{word-spacing:3.600183px;}
.wsdf{word-spacing:3.665641px;}
.ws63{word-spacing:3.731099px;}
.ws9{word-spacing:3.766051px;}
.ws43{word-spacing:3.796557px;}
.ws4e{word-spacing:3.862014px;}
.ws155{word-spacing:3.885608px;}
.ws102{word-spacing:3.927472px;}
.ws117{word-spacing:3.945387px;}
.ws6c{word-spacing:3.992930px;}
.ws125{word-spacing:4.005165px;}
.ws6b{word-spacing:4.058388px;}
.ws8{word-spacing:4.064944px;}
.ws15d{word-spacing:4.142684px;}
.ws55{word-spacing:4.189304px;}
.ws1b{word-spacing:4.244280px;}
.wsce{word-spacing:4.254762px;}
.ws12c{word-spacing:4.304058px;}
.ws81{word-spacing:4.320220px;}
.ws99{word-spacing:4.385677px;}
.wse4{word-spacing:4.395249px;}
.wse3{word-spacing:4.398108px;}
.ws139{word-spacing:4.483394px;}
.ws142{word-spacing:4.543173px;}
.ws15c{word-spacing:4.647509px;}
.ws12d{word-spacing:4.662730px;}
.ws9f{word-spacing:4.712967px;}
.ws6f{word-spacing:4.778425px;}
.ws15{word-spacing:4.782287px;}
.ws12e{word-spacing:4.842066px;}
.wsb9{word-spacing:4.909340px;}
.ws5a{word-spacing:5.040256px;}
.wsb6{word-spacing:5.105714px;}
.ws107{word-spacing:5.171172px;}
.ws159{word-spacing:5.200737px;}
.ws54{word-spacing:5.236630px;}
.wsa5{word-spacing:5.302088px;}
.ws14e{word-spacing:5.320294px;}
.ws105{word-spacing:5.349445px;}
.ws103{word-spacing:5.367546px;}
.ws95{word-spacing:5.433003px;}
.ws31{word-spacing:5.498461px;}
.wsc{word-spacing:5.559409px;}
.ws3d{word-spacing:5.563919px;}
.ws33{word-spacing:5.694835px;}
.ws5c{word-spacing:5.760293px;}
.ws143{word-spacing:5.798523px;}
.ws100{word-spacing:5.825751px;}
.ws2c{word-spacing:5.891209px;}
.ws13b{word-spacing:5.918080px;}
.ws16b{word-spacing:5.956666px;}
.ws71{word-spacing:6.022124px;}
.wscb{word-spacing:6.087582px;}
.ws8a{word-spacing:6.153040px;}
.ws148{word-spacing:6.157195px;}
.ws121{word-spacing:6.216973px;}
.ws97{word-spacing:6.218498px;}
.ws3b{word-spacing:6.283956px;}
.wsd{word-spacing:6.396309px;}
.wsa6{word-spacing:6.480329px;}
.wsa0{word-spacing:6.545787px;}
.ws138{word-spacing:6.571887px;}
.ws126{word-spacing:6.575645px;}
.wsbb{word-spacing:6.611245px;}
.ws40{word-spacing:6.676703px;}
.ws1f{word-spacing:6.742161px;}
.ws12a{word-spacing:6.754981px;}
.ws7f{word-spacing:6.807619px;}
.ws128{word-spacing:6.934316px;}
.wsb8{word-spacing:6.938535px;}
.ws14b{word-spacing:6.994095px;}
.ws5e{word-spacing:7.003992px;}
.ws11c{word-spacing:7.113652px;}
.ws7c{word-spacing:7.134908px;}
.ws133{word-spacing:7.155235px;}
.ws9d{word-spacing:7.200366px;}
.ws169{word-spacing:7.394620px;}
.wsd1{word-spacing:7.396740px;}
.ws164{word-spacing:7.400620px;}
.ws124{word-spacing:7.532102px;}
.ws13f{word-spacing:7.771217px;}
.ws8b{word-spacing:7.789487px;}
.ws79{word-spacing:7.854945px;}
.ws3e{word-spacing:7.920403px;}
.ws13{word-spacing:7.950552px;}
.ws73{word-spacing:7.985860px;}
.ws5f{word-spacing:8.051318px;}
.ws1a{word-spacing:8.070109px;}
.ws96{word-spacing:8.182234px;}
.ws74{word-spacing:8.247692px;}
.ws82{word-spacing:8.313150px;}
.ws136{word-spacing:8.369002px;}
.wsa1{word-spacing:8.378608px;}
.ws89{word-spacing:8.444066px;}
.ws122{word-spacing:8.548338px;}
.ws7d{word-spacing:8.574981px;}
.ws149{word-spacing:8.608117px;}
.ws2b{word-spacing:8.640439px;}
.wsb5{word-spacing:8.705897px;}
.ws9e{word-spacing:8.771355px;}
.ws72{word-spacing:9.061882px;}
.ws129{word-spacing:9.146124px;}
.ws84{word-spacing:9.164102px;}
.wsf6{word-spacing:9.556849px;}
.ws15b{word-spacing:9.622307px;}
.ws61{word-spacing:9.687765px;}
.ws141{word-spacing:9.803689px;}
.ws28{word-spacing:9.884139px;}
.wscf{word-spacing:10.211428px;}
.ws161{word-spacing:10.407802px;}
.ws8f{word-spacing:10.538718px;}
.ws108{word-spacing:10.800549px;}
.ws20{word-spacing:10.931465px;}
.ws118{word-spacing:10.999260px;}
.wsc3{word-spacing:11.389670px;}
.ws127{word-spacing:11.417710px;}
.ws150{word-spacing:11.716603px;}
.wsd0{word-spacing:11.847875px;}
.wsf9{word-spacing:12.175164px;}
.ws110{word-spacing:12.567912px;}
.ws0{word-spacing:13.395802px;}
.ws163{word-spacing:13.549780px;}
.ws123{word-spacing:13.868633px;}
.wsd5{word-spacing:14.204358px;}
.ws106{word-spacing:14.597106px;}
.ws60{word-spacing:14.858937px;}
.wsd6{word-spacing:15.186226px;}
.ws10a{word-spacing:15.906263px;}
.ws2d{word-spacing:15.971721px;}
.ws70{word-spacing:16.299010px;}
.ws104{word-spacing:17.477252px;}
.ws101{word-spacing:17.664829px;}
.ws2{word-spacing:17.861962px;}
.wsc2{word-spacing:18.590036px;}
.ws144{word-spacing:19.248706px;}
.ws146{word-spacing:19.906270px;}
.ws13a{word-spacing:20.264942px;}
.ws120{word-spacing:20.922506px;}
.ws1{word-spacing:21.434294px;}
.ws116{word-spacing:23.313650px;}
.ws145{word-spacing:24.150550px;}
.wsc0{word-spacing:24.743076px;}
.ws56{word-spacing:25.232711px;}
.ws16a{word-spacing:27.623222px;}
.ws140{word-spacing:38.395714px;}
.ws69{word-spacing:58.266580px;}
.wse9{word-spacing:58.280914px;}
.ws168{word-spacing:58.284648px;}
.wse5{word-spacing:58.320381px;}
.wsc7{word-spacing:61.260922px;}
.wse8{word-spacing:62.751137px;}
.wscd{word-spacing:65.392415px;}
.ws1d{word-spacing:71.663052px;}
.wsec{word-spacing:71.677385px;}
.wseb{word-spacing:71.697719px;}
.wsf1{word-spacing:74.783515px;}
.ws6a{word-spacing:76.128542px;}
.wse7{word-spacing:76.147609px;}
.wsc9{word-spacing:81.011711px;}
.wse6{word-spacing:85.167125px;}
.wsfb{word-spacing:85.489932px;}
.wsc8{word-spacing:112.395380px;}
.wsac{word-spacing:125.464142px;}
.wsee{word-spacing:140.502910px;}
.wsab{word-spacing:153.171703px;}
.wsed{word-spacing:173.831322px;}
.wsef{word-spacing:187.227793px;}
.wsea{word-spacing:214.128338px;}
.wsf0{word-spacing:295.905995px;}
.wsf2{word-spacing:470.527368px;}
._2a{margin-left:-40.650352px;}
._29{margin-left:-17.020060px;}
._22{margin-left:-8.007792px;}
._23{margin-left:-6.087582px;}
._4{margin-left:-4.722509px;}
._10{margin-left:-3.469267px;}
._0{margin-left:-2.420928px;}
._6{margin-left:-1.255560px;}
._5d{width:3.012861px;}
._5c{width:5.108964px;}
._3{width:14.077753px;}
._e{width:15.317142px;}
._1{width:16.677504px;}
._5{width:18.471584px;}
._7{width:20.055612px;}
._12{width:21.350114px;}
._9{width:22.954978px;}
._f{width:24.676605px;}
._2{width:26.685266px;}
._d{width:28.352801px;}
._11{width:30.176079px;}
._13{width:32.401647px;}
._b{width:33.417335px;}
._58{width:35.388925px;}
._15{width:36.460035px;}
._5a{width:37.481175px;}
._8{width:39.244539px;}
._26{width:40.387507px;}
._a{width:42.263462px;}
._24{width:43.660401px;}
._21{width:45.755053px;}
._25{width:47.391500px;}
._59{width:49.353447px;}
._c{width:53.806371px;}
._20{width:65.457873px;}
._14{width:71.734787px;}
._31{width:74.860512px;}
._3f{width:76.272012px;}
._3d{width:79.141403px;}
._55{width:85.116944px;}
._5b{width:87.099513px;}
._3c{width:88.179986px;}
._56{width:89.636235px;}
._45{width:98.287189px;}
._3b{width:99.442547px;}
._48{width:103.516735px;}
._4a{width:106.777031px;}
._61{width:118.416199px;}
._41{width:125.222401px;}
._1f{width:131.543665px;}
._6a{width:136.403898px;}
._52{width:143.495566px;}
._57{width:149.387693px;}
._47{width:153.978719px;}
._1e{width:155.431349px;}
._19{width:156.937779px;}
._4c{width:173.239510px;}
._54{width:177.403698px;}
._16{width:179.372834px;}
._40{width:187.281594px;}
._69{width:194.813747px;}
._64{width:197.844743px;}
._60{width:201.700286px;}
._18{width:207.726008px;}
._42{width:214.211843px;}
._1d{width:230.914278px;}
._4b{width:232.958719px;}
._46{width:234.680354px;}
._5e{width:240.006662px;}
._63{width:251.035886px;}
._17{width:257.814823px;}
._65{width:261.957507px;}
._44{width:273.363338px;}
._2c{width:280.611847px;}
._3e{width:282.348120px;}
._3a{width:288.427643px;}
._38{width:290.062828px;}
._2d{width:313.209018px;}
._28{width:316.888420px;}
._49{width:318.287248px;}
._68{width:320.277888px;}
._1a{width:357.884850px;}
._2b{width:359.656848px;}
._27{width:362.457943px;}
._43{width:380.965518px;}
._1c{width:384.785395px;}
._67{width:387.905858px;}
._1b{width:391.564332px;}
._4f{width:404.853202px;}
._32{width:422.424186px;}
._66{width:430.354918px;}
._62{width:442.406564px;}
._51{width:445.204019px;}
._5f{width:456.233243px;}
._50{width:471.943161px;}
._39{width:478.161582px;}
._34{width:493.351278px;}
._4d{width:521.924373px;}
._37{width:524.734947px;}
._35{width:545.531859px;}
._36{width:550.260332px;}
._2e{width:554.905115px;}
._53{width:558.885722px;}
._2f{width:584.405764px;}
._4e{width:782.859659px;}
._33{width:787.353491px;}
._30{width:801.287840px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.867393px;}
.fs9{font-size:41.844892px;}
.fs6{font-size:47.822991px;}
.fs0{font-size:53.798400px;}
.fs8{font-size:53.801090px;}
.fs3{font-size:59.778589px;}
.fs5{font-size:65.454600px;}
.fs4{font-size:65.457873px;}
.fs2{font-size:71.734787px;}
.fs1{font-size:86.081504px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.836500px;}
.y1{bottom:55.275000px;}
.y56{bottom:75.867000px;}
.y34{bottom:103.562179px;}
.y2fb{bottom:109.275965px;}
.y80{bottom:118.505926px;}
.y25a{bottom:120.001501px;}
.y33{bottom:123.886695px;}
.y7f{bottom:124.219712px;}
.y2fa{bottom:125.551779px;}
.y328{bottom:136.115307px;}
.y259{bottom:136.440823px;}
.y348{bottom:140.497026px;}
.y32{bottom:144.211212px;}
.y2f9{bottom:148.180410px;}
.y7e{bottom:150.753039px;}
.y1b0{bottom:151.381570px;}
.y258{bottom:152.878645px;}
.y327{bottom:156.772840px;}
.y31{bottom:164.535728px;}
.y2f8{bottom:168.504926px;}
.y257{bottom:169.317967px;}
.y2db{bottom:170.429522px;}
.y7d{bottom:171.077555px;}
.y326{bottom:173.050153px;}
.y28d{bottom:181.356069px;}
.y1af{bottom:184.350218px;}
.y30{bottom:184.860244px;}
.y2bc{bottom:185.757289px;}
.y17f{bottom:186.015302px;}
.y2f7{bottom:188.829442px;}
.y325{bottom:189.327467px;}
.y7c{bottom:191.402071px;}
.y354{bottom:192.824142px;}
.y13b{bottom:194.951248px;}
.y28c{bottom:197.795391px;}
.y256{bottom:200.494026px;}
.y2da{bottom:204.014702px;}
.y2f{bottom:205.186260px;}
.y1d6{bottom:205.325767px;}
.y324{bottom:205.603281px;}
.y17e{bottom:206.339818px;}
.y2f5{bottom:209.153959px;}
.y7b{bottom:211.728087px;}
.y353{bottom:213.148658px;}
.y28b{bottom:214.234713px;}
.y2f6{bottom:215.092755px;}
.y2bb{bottom:215.437773px;}
.y323{bottom:215.923797px;}
.y255{bottom:216.933347px;}
.y347{bottom:221.880595px;}
.y1ae{bottom:222.233112px;}
.y2d9{bottom:224.340718px;}
.y2e{bottom:225.510776px;}
.y1d5{bottom:225.650283px;}
.y17d{bottom:226.664334px;}
.y2f3{bottom:229.478475px;}
.y203{bottom:230.090505px;}
.y28a{bottom:230.674034px;}
.y2ba{bottom:231.877095px;}
.y7a{bottom:232.052603px;}
.y254{bottom:233.372669px;}
.y2f4{bottom:235.417272px;}
.y13a{bottom:235.856794px;}
.y322{bottom:236.582830px;}
.y352{bottom:239.365469px;}
.y1ad{bottom:242.557629px;}
.y2d8{bottom:244.665234px;}
.y55{bottom:245.835293px;}
.y1d4{bottom:245.974799px;}
.y17c{bottom:246.990350px;}
.y321{bottom:247.144858px;}
.y202{bottom:248.025402px;}
.y2b9{bottom:248.316417px;}
.yc5{bottom:249.610981px;}
.y253{bottom:249.811991px;}
.y79{bottom:253.242663px;}
.y139{bottom:256.181310px;}
.y2d{bottom:256.808341px;}
.y2f2{bottom:257.151858px;}
.y289{bottom:259.149958px;}
.y346{bottom:259.431972px;}
.y1ac{bottom:262.882145px;}
.y2b8{bottom:264.755738px;}
.y2d7{bottom:264.989750px;}
.y201{bottom:265.958799px;}
.y54{bottom:266.159809px;}
.y252{bottom:266.249813px;}
.y1d3{bottom:266.299316px;}
.y17b{bottom:267.314866px;}
.y320{bottom:267.803891px;}
.ye1{bottom:272.137608px;}
.y78{bottom:273.567179px;}
.y159{bottom:274.365219px;}
.y288{bottom:275.589280px;}
.y138{bottom:276.505826px;}
.y31f{bottom:278.367419px;}
.y345{bottom:279.756488px;}
.yc4{bottom:281.145558px;}
.y2b7{bottom:281.195060px;}
.y1ab{bottom:283.206661px;}
.y200{bottom:283.892195px;}
.y2d6{bottom:285.314266px;}
.y53{bottom:286.484325px;}
.y1d2{bottom:286.623832px;}
.y17a{bottom:287.639383px;}
.y109{bottom:290.254013px;}
.y351{bottom:291.074554px;}
.y287{bottom:292.028602px;}
.yf5{bottom:292.135107px;}
.y2c{bottom:292.270114px;}
.ye0{bottom:292.463624px;}
.y2f1{bottom:293.272164px;}
.y77{bottom:293.891695px;}
.y1ff{bottom:295.637783px;}
.y137{bottom:296.830342px;}
.y251{bottom:297.425872px;}
.y2b6{bottom:297.634382px;}
.y31e{bottom:299.024952px;}
.y344{bottom:300.081005px;}
.yc3{bottom:301.470074px;}
.y9b{bottom:301.986100px;}
.y1aa{bottom:303.532677px;}
.y2d5{bottom:305.640283px;}
.y52{bottom:306.810341px;}
.y1d1{bottom:306.949848px;}
.y179{bottom:307.963899px;}
.y350{bottom:309.007951px;}
.y2b{bottom:310.205011px;}
.y108{bottom:310.578530px;}
.y158{bottom:311.979600px;}
.yf4{bottom:312.459624px;}
.ydf{bottom:312.788140px;}
.y2f0{bottom:313.596680px;}
.y250{bottom:313.865194px;}
.y76{bottom:314.216211px;}
.y136{bottom:317.156358px;}
.y342{bottom:320.405521px;}
.y286{bottom:320.504526px;}
.yc2{bottom:321.794590px;}
.y31d{bottom:323.641183px;}
.y1a9{bottom:323.857193px;}
.y2d4{bottom:325.966299px;}
.y343{bottom:326.344318px;}
.y51{bottom:327.134857px;}
.y1d0{bottom:327.274364px;}
.y2b5{bottom:327.313366px;}
.y2a{bottom:328.138407px;}
.y178{bottom:328.288415px;}
.y24f{bottom:330.304516px;}
.y107{bottom:330.903046px;}
.y157{bottom:332.305616px;}
.yf3{bottom:332.784140px;}
.yde{bottom:333.112656px;}
.y2ef{bottom:333.922697px;}
.y75{bottom:334.542228px;}
.y1fe{bottom:334.906746px;}
.y285{bottom:336.943848px;}
.y135{bottom:337.480875px;}
.y34f{bottom:341.586580px;}
.yc1{bottom:342.119106px;}
.y2b4{bottom:343.752688px;}
.y9a{bottom:343.863694px;}
.y31b{bottom:343.965699px;}
.y1a8{bottom:344.181710px;}
.y341{bottom:344.351218px;}
.y29{bottom:346.071804px;}
.y2d3{bottom:346.290815px;}
.y24e{bottom:346.743838px;}
.y50{bottom:347.459373px;}
.y1cf{bottom:347.598880px;}
.y177{bottom:348.612931px;}
.y31c{bottom:349.904496px;}
.y106{bottom:351.229062px;}
.y156{bottom:352.630132px;}
.yf2{bottom:353.108656px;}
.y284{bottom:353.383170px;}
.ydd{bottom:353.437172px;}
.y74{bottom:354.866744px;}
.y1fd{bottom:355.231262px;}
.y34e{bottom:356.531827px;}
.y134{bottom:357.805391px;}
.y2b3{bottom:360.192010px;}
.y2ee{bottom:361.594580px;}
.yc0{bottom:362.445123px;}
.y28{bottom:364.005201px;}
.y99{bottom:364.188210px;}
.y31a{bottom:364.290215px;}
.y1a7{bottom:364.506226px;}
.y33f{bottom:364.675734px;}
.y2d2{bottom:366.615331px;}
.y4f{bottom:367.783890px;}
.y1ce{bottom:367.923397px;}
.y176{bottom:368.938947px;}
.y283{bottom:369.822492px;}
.y340{bottom:370.614531px;}
.y34d{bottom:371.477074px;}
.y105{bottom:371.553578px;}
.y155{bottom:372.954648px;}
.yf1{bottom:373.434672px;}
.ydc{bottom:373.761689px;}
.y1fc{bottom:375.555778px;}
.y2b2{bottom:376.631332px;}
.y24d{bottom:377.918396px;}
.y133{bottom:378.129907px;}
.y27{bottom:381.938597px;}
.ybf{bottom:382.769639px;}
.y98{bottom:384.514226px;}
.y318{bottom:384.614731px;}
.y1a6{bottom:384.830742px;}
.y33e{bottom:385.000250px;}
.y282{bottom:386.261813px;}
.y34c{bottom:386.420821px;}
.y4e{bottom:388.108406px;}
.y1cd{bottom:388.247913px;}
.y73{bottom:388.381419px;}
.y175{bottom:389.263464px;}
.y319{bottom:390.553528px;}
.y104{bottom:391.878094px;}
.y2b1{bottom:393.070654px;}
.y154{bottom:393.279164px;}
.yf0{bottom:393.759188px;}
.ydb{bottom:394.087705px;}
.y24c{bottom:394.357718px;}
.y1fb{bottom:395.880294px;}
.y2ed{bottom:397.714886px;}
.y132{bottom:398.454423px;}
.y26{bottom:399.871994px;}
.y34b{bottom:401.366069px;}
.y281{bottom:402.701135px;}
.ybe{bottom:403.094155px;}
.y97{bottom:404.838742px;}
.y317{bottom:404.939247px;}
.y1a5{bottom:405.156758px;}
.y33c{bottom:405.324767px;}
.y4d{bottom:408.434422px;}
.y1cc{bottom:408.573929px;}
.y174{bottom:409.587980px;}
.y2d1{bottom:410.060503px;}
.y24b{bottom:410.797040px;}
.y33d{bottom:411.263564px;}
.y103{bottom:412.202610px;}
.y153{bottom:413.603681px;}
.yef{bottom:414.083705px;}
.yda{bottom:414.412221px;}
.y1fa{bottom:416.204811px;}
.y34a{bottom:416.309816px;}
.y25{bottom:417.806891px;}
.y2ec{bottom:418.040902px;}
.y131{bottom:418.780439px;}
.y280{bottom:419.140457px;}
.y2b0{bottom:422.751138px;}
.ybd{bottom:423.418671px;}
.y96{bottom:425.163258px;}
.y316{bottom:425.265264px;}
.y1a4{bottom:425.481274px;}
.y33b{bottom:425.650783px;}
.y72{bottom:427.027852px;}
.y24a{bottom:427.236362px;}
.y2d0{bottom:427.993900px;}
.y4c{bottom:428.758938px;}
.y1cb{bottom:428.898445px;}
.y173{bottom:429.912496px;}
.y349{bottom:431.853593px;}
.y102{bottom:432.527127px;}
.y152{bottom:433.929697px;}
.yee{bottom:434.408221px;}
.yd9{bottom:434.736737px;}
.y27f{bottom:435.578279px;}
.y24{bottom:435.740287px;}
.y1f9{bottom:436.530827px;}
.y2eb{bottom:438.365419px;}
.y130{bottom:439.104956px;}
.y2af{bottom:439.190460px;}
.ybc{bottom:443.743187px;}
.y95{bottom:445.487775px;}
.y315{bottom:445.589780px;}
.y1a3{bottom:445.805791px;}
.y33a{bottom:445.975299px;}
.y71{bottom:447.353868px;}
.y4b{bottom:449.083454px;}
.y172{bottom:450.237012px;}
.y101{bottom:452.853143px;}
.y23{bottom:453.673684px;}
.y151{bottom:454.254213px;}
.y249{bottom:454.518226px;}
.yed{bottom:454.732737px;}
.yd8{bottom:455.061253px;}
.y1ca{bottom:455.391270px;}
.y2ae{bottom:455.629782px;}
.y1f8{bottom:456.855343px;}
.y2ea{bottom:458.689935px;}
.y12f{bottom:459.429472px;}
.y27e{bottom:464.055703px;}
.ybb{bottom:464.115706px;}
.y94{bottom:465.812291px;}
.y314{bottom:465.914296px;}
.y1a2{bottom:466.130307px;}
.y339{bottom:466.299815px;}
.y70{bottom:467.678384px;}
.y4a{bottom:469.407971px;}
.y11d{bottom:469.413971px;}
.y171{bottom:470.563028px;}
.y22{bottom:471.607081px;}
.y2ad{bottom:472.069104px;}
.y100{bottom:473.177659px;}
.y150{bottom:474.578729px;}
.yec{bottom:475.058753px;}
.yd7{bottom:475.385769px;}
.y1f7{bottom:477.179859px;}
.y2e9{bottom:479.014451px;}
.y21f{bottom:480.345017px;}
.y27d{bottom:480.495025px;}
.y12e{bottom:481.869094px;}
.yba{bottom:484.440222px;}
.y93{bottom:486.138307px;}
.y312{bottom:486.238812px;}
.y1a1{bottom:486.454823px;}
.y338{bottom:486.624331px;}
.y6f{bottom:488.868444px;}
.y1c9{bottom:489.453473px;}
.y21{bottom:489.540477px;}
.y49{bottom:489.732487px;}
.y11c{bottom:489.738487px;}
.y170{bottom:490.887545px;}
.y313{bottom:492.177609px;}
.yff{bottom:493.502175px;}
.y14f{bottom:494.903245px;}
.yd6{bottom:495.710286px;}
.y27c{bottom:496.934347px;}
.y1f6{bottom:497.504375px;}
.y2e8{bottom:499.338967px;}
.y2ac{bottom:501.748088px;}
.y12d{bottom:502.193610px;}
.yb9{bottom:504.764738px;}
.y92{bottom:506.462823px;}
.y311{bottom:506.563328px;}
.y1a0{bottom:507.424371px;}
.y20{bottom:507.473874px;}
.y6e{bottom:509.192960px;}
.y1c8{bottom:509.779489px;}
.y48{bottom:510.058503px;}
.y11b{bottom:510.063003px;}
.y248{bottom:510.261013px;}
.y16f{bottom:511.212061px;}
.yeb{bottom:512.491625px;}
.y27b{bottom:513.373669px;}
.yfe{bottom:513.826691px;}
.y14e{bottom:515.227761px;}
.y21e{bottom:515.884794px;}
.y2ab{bottom:518.187409px;}
.y2e7{bottom:519.664983px;}
.yd5{bottom:522.014101px;}
.y12c{bottom:522.518126px;}
.yb8{bottom:525.090755px;}
.y1f{bottom:525.408770px;}
.y91{bottom:526.787339px;}
.y310{bottom:526.889344px;}
.y19f{bottom:527.748887px;}
.y6d{bottom:529.517476px;}
.y27a{bottom:529.811491px;}
.y1c7{bottom:530.104005px;}
.y47{bottom:530.383019px;}
.y11a{bottom:530.389019px;}
.y247{bottom:530.585529px;}
.y16e{bottom:531.536577px;}
.yfd{bottom:534.151208px;}
.y2aa{bottom:534.626731px;}
.y14d{bottom:535.553778px;}
.y21d{bottom:536.209310px;}
.y337{bottom:538.333417px;}
.y2e6{bottom:539.989499px;}
.yd4{bottom:542.338617px;}
.y12b{bottom:542.844142px;}
.y1e{bottom:543.342167px;}
.yb7{bottom:545.415271px;}
.y90{bottom:547.111856px;}
.y30e{bottom:547.213861px;}
.y19e{bottom:548.074904px;}
.y1f5{bottom:549.213461px;}
.y6c{bottom:549.841992px;}
.y1c6{bottom:550.428521px;}
.y46{bottom:550.707535px;}
.y119{bottom:550.713536px;}
.y246{bottom:550.911546px;}
.y2a9{bottom:551.066053px;}
.y16d{bottom:551.861093px;}
.y30f{bottom:553.152658px;}
.yfc{bottom:554.477224px;}
.y14c{bottom:555.878294px;}
.y21c{bottom:556.533827px;}
.y279{bottom:558.288914px;}
.y2e5{bottom:560.314016px;}
.y1d{bottom:561.275564px;}
.yd3{bottom:562.663133px;}
.y12a{bottom:563.168658px;}
.yea{bottom:565.642282px;}
.yb6{bottom:565.739787px;}
.y8f{bottom:567.436372px;}
.y2a8{bottom:567.505375px;}
.y30d{bottom:567.538377px;}
.y6b{bottom:570.166508px;}
.y1c5{bottom:570.753038px;}
.y336{bottom:570.912046px;}
.y45{bottom:571.032052px;}
.y118{bottom:571.038052px;}
.y245{bottom:571.236062px;}
.y16c{bottom:572.187109px;}
.y278{bottom:574.728236px;}
.yfb{bottom:574.801740px;}
.y19d{bottom:575.569778px;}
.y21b{bottom:576.859843px;}
.y14b{bottom:577.368368px;}
.y1c{bottom:579.208960px;}
.y1f4{bottom:581.793590px;}
.yd2{bottom:582.987649px;}
.y129{bottom:583.493175px;}
.y2a7{bottom:583.944697px;}
.ye9{bottom:585.966798px;}
.yb5{bottom:586.064303px;}
.y335{bottom:586.455823px;}
.y8e{bottom:587.762388px;}
.y30b{bottom:587.862893px;}
.y6a{bottom:590.492525px;}
.y1c4{bottom:591.077554px;}
.y277{bottom:591.167558px;}
.y22b{bottom:591.274064px;}
.y44{bottom:591.356568px;}
.y117{bottom:591.362568px;}
.y244{bottom:591.560578px;}
.y16b{bottom:592.511625px;}
.y30c{bottom:593.801690px;}
.yfa{bottom:595.126256px;}
.y1f3{bottom:596.737337px;}
.y1b{bottom:597.142357px;}
.y21a{bottom:597.184359px;}
.y14a{bottom:597.692884px;}
.y2a6{bottom:600.384019px;}
.y334{bottom:601.998100px;}
.yd1{bottom:603.313666px;}
.y128{bottom:603.817691px;}
.ye8{bottom:606.291314px;}
.yb4{bottom:606.388819px;}
.y276{bottom:607.606880px;}
.y8d{bottom:608.086904px;}
.y30a{bottom:608.187409px;}
.y69{bottom:610.817041px;}
.y19c{bottom:611.382569px;}
.y1c3{bottom:611.403570px;}
.y43{bottom:611.682584px;}
.y116{bottom:611.687084px;}
.y243{bottom:611.885094px;}
.y16a{bottom:612.836142px;}
.y2e4{bottom:613.490174px;}
.y1a{bottom:615.075754px;}
.yf9{bottom:615.450772px;}
.y219{bottom:617.508875px;}
.y333{bottom:617.540377px;}
.y149{bottom:618.017401px;}
.yd0{bottom:623.638182px;}
.y275{bottom:624.044702px;}
.y127{bottom:624.142207px;}
.y332{bottom:625.012250px;}
.ye7{bottom:626.615831px;}
.y1f2{bottom:626.626331px;}
.yb3{bottom:626.714836px;}
.y8c{bottom:628.411420px;}
.y308{bottom:628.513425px;}
.y2a5{bottom:630.064503px;}
.y68{bottom:631.141557px;}
.y2e3{bottom:631.423571px;}
.y19b{bottom:631.707085px;}
.y1c2{bottom:631.728086px;}
.y42{bottom:632.007100px;}
.y115{bottom:632.013100px;}
.y242{bottom:632.209610px;}
.y19{bottom:633.010650px;}
.y169{bottom:633.160658px;}
.y309{bottom:634.450722px;}
.yf8{bottom:635.775289px;}
.y218{bottom:637.833391px;}
.y148{bottom:638.341917px;}
.y22a{bottom:639.778989px;}
.y1f1{bottom:641.571578px;}
.ycf{bottom:643.962698px;}
.y126{bottom:644.466723px;}
.y2a4{bottom:646.503825px;}
.ye6{bottom:646.940347px;}
.yb2{bottom:647.039352px;}
.y331{bottom:648.027901px;}
.y8b{bottom:648.735937px;}
.y307{bottom:649.376469px;}
.y18{bottom:650.944047px;}
.y67{bottom:651.466073px;}
.y19a{bottom:652.031601px;}
.y1c1{bottom:652.052602px;}
.y41{bottom:652.331616px;}
.y114{bottom:652.337617px;}
.y274{bottom:652.522126px;}
.y241{bottom:652.535627px;}
.y168{bottom:653.485174px;}
.yf7{bottom:656.099805px;}
.y1f0{bottom:656.516826px;}
.y217{bottom:658.157908px;}
.y147{bottom:658.666433px;}
.y229{bottom:660.103505px;}
.y2a3{bottom:662.941647px;}
.y330{bottom:662.971648px;}
.yce{bottom:664.287214px;}
.y125{bottom:664.792739px;}
.ye5{bottom:667.266363px;}
.yb1{bottom:667.363868px;}
.y17{bottom:668.877444px;}
.y273{bottom:668.961448px;}
.y306{bottom:669.700985px;}
.y32d{bottom:670.445022px;}
.y8a{bottom:670.859043px;}
.y66{bottom:671.790589px;}
.y1ef{bottom:672.059103px;}
.y199{bottom:672.356117px;}
.y1c0{bottom:672.377119px;}
.y40{bottom:672.656132px;}
.y113{bottom:672.662133px;}
.y240{bottom:672.860143px;}
.y167{bottom:674.964748px;}
.yf6{bottom:676.425821px;}
.y32f{bottom:677.916896px;}
.y216{bottom:678.483924px;}
.y146{bottom:678.992449px;}
.y2a2{bottom:679.380969px;}
.y228{bottom:680.428021px;}
.ycd{bottom:684.611730px;}
.y124{bottom:685.117256px;}
.y272{bottom:685.400770px;}
.y16{bottom:686.810840px;}
.y1ee{bottom:687.004350px;}
.y2cf{bottom:687.287864px;}
.ye4{bottom:687.590879px;}
.yb0{bottom:687.688384px;}
.y305{bottom:690.027001px;}
.y89{bottom:691.183559px;}
.y65{bottom:692.116605px;}
.y198{bottom:692.682134px;}
.y1bf{bottom:692.701635px;}
.y32e{bottom:692.862143px;}
.y3f{bottom:692.980649px;}
.y112{bottom:692.986649px;}
.y23f{bottom:693.184659px;}
.y166{bottom:695.289264px;}
.y2a1{bottom:695.820291px;}
.y215{bottom:698.808440px;}
.y145{bottom:699.316965px;}
.y227{bottom:700.752537px;}
.y271{bottom:701.840092px;}
.y1ed{bottom:701.948097px;}
.y15{bottom:704.744237px;}
.ycc{bottom:704.937746px;}
.y123{bottom:705.441772px;}
.ye3{bottom:707.915395px;}
.yaf{bottom:708.060903px;}
.y32c{bottom:708.404420px;}
.y304{bottom:710.351517px;}
.y88{bottom:711.508075px;}
.y2a0{bottom:712.259613px;}
.y64{bottom:712.441122px;}
.y197{bottom:713.006650px;}
.y1be{bottom:713.027651px;}
.y3e{bottom:713.306665px;}
.y111{bottom:713.317165px;}
.y23e{bottom:713.509175px;}
.y165{bottom:715.613780px;}
.y1ec{bottom:716.893344px;}
.y270{bottom:718.277913px;}
.y2ce{bottom:718.661933px;}
.y214{bottom:719.132956px;}
.y144{bottom:719.641482px;}
.y226{bottom:721.077053px;}
.y14{bottom:722.677633px;}
.ycb{bottom:725.262263px;}
.y122{bottom:725.766288px;}
.yae{bottom:728.385419px;}
.y303{bottom:730.676033px;}
.y87{bottom:731.832591px;}
.y1eb{bottom:731.837091px;}
.y62{bottom:732.765638px;}
.y1bd{bottom:733.491674px;}
.y3d{bottom:733.631181px;}
.y110{bottom:733.641682px;}
.y164{bottom:735.939797px;}
.y63{bottom:738.704435px;}
.y213{bottom:739.457472px;}
.y196{bottom:740.501525px;}
.y13{bottom:740.612530px;}
.y225{bottom:741.401570px;}
.y29f{bottom:741.940097px;}
.y32b{bottom:742.777138px;}
.yca{bottom:745.586779px;}
.y23d{bottom:745.676783px;}
.y121{bottom:746.090804px;}
.y26f{bottom:746.755337px;}
.y1ea{bottom:746.782339px;}
.yad{bottom:748.709935px;}
.y302{bottom:751.000550px;}
.y86{bottom:752.158607px;}
.y1bc{bottom:753.816190px;}
.y3c{bottom:753.955697px;}
.y10f{bottom:753.972198px;}
.y2cd{bottom:754.536226px;}
.y163{bottom:756.264313px;}
.y29e{bottom:758.379418px;}
.y12{bottom:758.545927px;}
.ye2{bottom:759.624481px;}
.y1e9{bottom:761.727586px;}
.y26e{bottom:763.194659px;}
.yc9{bottom:765.911295px;}
.y120{bottom:766.416820px;}
.y2cc{bottom:770.975548px;}
.y85{bottom:772.483124px;}
.yac{bottom:772.810140px;}
.y143{bottom:773.680183px;}
.y1bb{bottom:774.140706px;}
.y3b{bottom:774.280213px;}
.y10e{bottom:774.296714px;}
.y32a{bottom:774.758737px;}
.y29d{bottom:774.818740px;}
.y195{bottom:776.314315px;}
.y11{bottom:776.479323px;}
.y162{bottom:776.588829px;}
.y1e8{bottom:776.671333px;}
.y301{bottom:778.286914px;}
.y26d{bottom:779.633981px;}
.y224{bottom:782.052102px;}
.y23c{bottom:782.440621px;}
.yc8{bottom:786.235811px;}
.y11f{bottom:786.741336px;}
.y2cb{bottom:787.414870px;}
.y212{bottom:790.719535px;}
.y29c{bottom:791.258062px;}
.y142{bottom:791.613580px;}
.y1e7{bottom:791.616580px;}
.y84{bottom:792.807640px;}
.y10{bottom:794.412720px;}
.y1ba{bottom:794.465223px;}
.y3a{bottom:794.604730px;}
.y10d{bottom:794.622731px;}
.y26c{bottom:796.073303px;}
.y194{bottom:796.638831px;}
.y161{bottom:796.913345px;}
.yab{bottom:799.119955px;}
.y223{bottom:802.376618px;}
.y23b{bottom:802.765138px;}
.y2ca{bottom:803.854192px;}
.yc7{bottom:806.561827px;}
.y11e{bottom:807.065853px;}
.y29b{bottom:807.697384px;}
.yf{bottom:812.346117px;}
.y26b{bottom:812.511125px;}
.y83{bottom:813.132156px;}
.y300{bottom:813.735186px;}
.y1b9{bottom:814.791239px;}
.y39{bottom:814.930746px;}
.y10c{bottom:814.947247px;}
.y193{bottom:816.963347px;}
.y160{bottom:817.237861px;}
.y2c9{bottom:820.293514px;}
.y1e6{bottom:822.104105px;}
.y222{bottom:822.701134px;}
.y23a{bottom:823.091154px;}
.y211{bottom:823.299664px;}
.yc6{bottom:826.886344px;}
.y26a{bottom:828.950447px;}
.ye{bottom:830.279513px;}
.yaa{bottom:832.864142px;}
.y82{bottom:833.456672px;}
.y2ff{bottom:834.059702px;}
.y1b8{bottom:835.115755px;}
.y38{bottom:835.255262px;}
.y10b{bottom:835.271763px;}
.y2c8{bottom:836.731336px;}
.y192{bottom:837.289364px;}
.y29a{bottom:837.376368px;}
.y15f{bottom:837.563877px;}
.y1e5{bottom:837.646382px;}
.y210{bottom:838.243411px;}
.y221{bottom:843.025651px;}
.y239{bottom:843.415670px;}
.yd{bottom:848.214410px;}
.y2c7{bottom:853.170658px;}
.ya9{bottom:853.188659px;}
.y81{bottom:853.782688px;}
.y299{bottom:853.815690px;}
.y2fe{bottom:854.384218px;}
.y1b7{bottom:855.440271px;}
.y37{bottom:855.579778px;}
.y269{bottom:857.427871px;}
.y220{bottom:863.351667px;}
.y238{bottom:863.740186px;}
.y15e{bottom:866.071303px;}
.yc{bottom:866.147807px;}
.y20f{bottom:868.730936px;}
.y2c6{bottom:869.609980px;}
.y298{bottom:870.255012px;}
.y1e4{bottom:872.019100px;}
.ya8{bottom:873.513175px;}
.y268{bottom:873.867193px;}
.y2fd{bottom:874.708735px;}
.y1b6{bottom:875.764787px;}
.y36{bottom:875.904294px;}
.y237{bottom:884.064702px;}
.yb{bottom:884.081203px;}
.y297{bottom:886.694334px;}
.y10a{bottom:886.980848px;}
.y191{bottom:890.287013px;}
.y267{bottom:890.306514px;}
.ya7{bottom:893.837691px;}
.y2fc{bottom:895.033251px;}
.y1b5{bottom:896.089304px;}
.y35{bottom:896.228811px;}
.y2c5{bottom:899.504974px;}
.y296{bottom:903.133656px;}
.y15d{bottom:903.648182px;}
.y236{bottom:904.389219px;}
.y1e3{bottom:904.599229px;}
.y266{bottom:906.744336px;}
.ya6{bottom:914.163707px;}
.y20e{bottom:915.059252px;}
.y2c4{bottom:915.944296px;}
.y1b4{bottom:916.415320px;}
.ya{bottom:916.554827px;}
.y1e2{bottom:919.542976px;}
.y295{bottom:919.572978px;}
.y190{bottom:921.968597px;}
.y265{bottom:923.183658px;}
.y15c{bottom:923.974198px;}
.y235{bottom:924.715235px;}
.y1e0{bottom:927.016350px;}
.y2c3{bottom:932.383618px;}
.y18f{bottom:933.924195px;}
.ya5{bottom:934.488223px;}
.y329{bottom:936.132306px;}
.y1b3{bottom:936.739836px;}
.y61{bottom:936.879343px;}
.y264{bottom:939.622980px;}
.y15b{bottom:944.298714px;}
.y234{bottom:945.039751px;}
.y18e{bottom:945.881293px;}
.y2e2{bottom:946.742336px;}
.y20d{bottom:947.639381px;}
.y2c2{bottom:948.822940px;}
.y294{bottom:949.253462px;}
.y1e1{bottom:949.431971px;}
.ya4{bottom:954.812740px;}
.y20c{bottom:955.111255px;}
.y1b2{bottom:957.064352px;}
.y60{bottom:957.203859px;}
.y18d{bottom:957.836891px;}
.y1df{bottom:964.975748px;}
.y233{bottom:965.364267px;}
.y293{bottom:965.692784px;}
.y263{bottom:968.100404px;}
.y18c{bottom:969.792489px;}
.ya3{bottom:975.137256px;}
.y9{bottom:976.364317px;}
.y1b1{bottom:977.388868px;}
.y5f{bottom:977.528375px;}
.y20b{bottom:978.126905px;}
.y15a{bottom:978.530425px;}
.y2c1{bottom:978.717935px;}
.y2e1{bottom:979.322465px;}
.y1de{bottom:979.919495px;}
.y18b{bottom:981.748086px;}
.y292{bottom:982.132106px;}
.y262{bottom:984.539726px;}
.y20a{bottom:985.598779px;}
.y232{bottom:985.688783px;}
.y2e0{bottom:994.266212px;}
.y18a{bottom:994.300714px;}
.y1dd{bottom:994.864742px;}
.y2c0{bottom:995.157257px;}
.ya2{bottom:995.461772px;}
.y8{bottom:997.287363px;}
.y5e{bottom:997.852892px;}
.y261{bottom:1000.977548px;}
.y1d9{bottom:1002.336616px;}
.y231{bottom:1006.013300px;}
.y189{bottom:1006.257812px;}
.y209{bottom:1008.614430px;}
.y2de{bottom:1009.211459px;}
.y1dc{bottom:1009.809989px;}
.y2bf{bottom:1011.596579px;}
.y291{bottom:1011.811089px;}
.ya1{bottom:1015.787788px;}
.y260{bottom:1017.416870px;}
.y5d{bottom:1018.178908px;}
.y7{bottom:1018.210409px;}
.y188{bottom:1018.213409px;}
.y208{bottom:1023.558177px;}
.y2df{bottom:1024.156707px;}
.y1db{bottom:1024.753736px;}
.y230{bottom:1026.339316px;}
.y2be{bottom:1028.035901px;}
.y290{bottom:1028.250411px;}
.y187{bottom:1030.169007px;}
.y207{bottom:1031.031550px;}
.y141{bottom:1037.606379px;}
.y5c{bottom:1038.503424px;}
.y6{bottom:1039.131955px;}
.y1da{bottom:1039.698984px;}
.y186{bottom:1042.124605px;}
.y28f{bottom:1044.689733px;}
.y25f{bottom:1045.894293px;}
.y22f{bottom:1046.663832px;}
.y206{bottom:1054.045701px;}
.y185{bottom:1054.080203px;}
.y2dd{bottom:1054.642731px;}
.y1d8{bottom:1055.241261px;}
.y2bd{bottom:1057.930895px;}
.y5b{bottom:1058.827940px;}
.y5{bottom:1060.055001px;}
.y205{bottom:1061.517575px;}
.y25e{bottom:1062.333615px;}
.y184{bottom:1066.035800px;}
.y22e{bottom:1066.988348px;}
.ya0{bottom:1067.495373px;}
.y2dc{bottom:1069.587978px;}
.y140{bottom:1070.186508px;}
.y28e{bottom:1074.370217px;}
.y183{bottom:1077.991398px;}
.y5a{bottom:1079.152456px;}
.y204{bottom:1084.533225px;}
.y13f{bottom:1085.130255px;}
.y22d{bottom:1087.312864px;}
.y182{bottom:1089.946996px;}
.y25d{bottom:1090.809539px;}
.y1d7{bottom:1092.603629px;}
.y59{bottom:1099.476972px;}
.y9f{bottom:1100.075502px;}
.y180{bottom:1102.501124px;}
.y4{bottom:1104.326715px;}
.y181{bottom:1105.115754px;}
.y25c{bottom:1107.248861px;}
.y22c{bottom:1107.959897px;}
.y9e{bottom:1115.020750px;}
.y13e{bottom:1115.617779px;}
.y58{bottom:1119.802989px;}
.y25b{bottom:1123.688183px;}
.y3{bottom:1128.237910px;}
.y9d{bottom:1129.964497px;}
.y13c{bottom:1130.189508px;}
.y13d{bottom:1130.563027px;}
.y57{bottom:1140.127505px;}
.y9c{bottom:1145.506774px;}
.hb{height:24.676767px;}
.h11{height:28.789286px;}
.ha{height:32.902218px;}
.hd{height:36.100531px;}
.h2{height:37.013299px;}
.hc{height:37.015150px;}
.h12{height:38.360177px;}
.h15{height:41.008112px;}
.h7{height:41.127669px;}
.h16{height:41.727699px;}
.hf{height:43.594943px;}
.h10{height:44.904101px;}
.h9{height:45.032765px;}
.h8{height:45.035016px;}
.he{height:46.671463px;}
.h6{height:48.134042px;}
.h5{height:49.353533px;}
.h4{height:51.146903px;}
.h18{height:56.651405px;}
.h17{height:56.657406px;}
.h3{height:61.376112px;}
.h14{height:66.902644px;}
.h13{height:66.908644px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x40{left:105.057754px;}
.x14{left:106.284815px;}
.x3{left:107.796891px;}
.x29{left:115.252263px;}
.x31{left:116.528827px;}
.x38{left:119.017452px;}
.x56{left:120.781540px;}
.x30{left:122.422622px;}
.x5{left:123.573179px;}
.x18{left:125.814291px;}
.x43{left:127.476374px;}
.x1c{left:130.496025px;}
.x13{left:131.798091px;}
.x6{left:137.561379px;}
.x19{left:139.013451px;}
.x2d{left:142.667634px;}
.x8{left:146.150808px;}
.x33{left:153.309166px;}
.x3d{left:164.534227px;}
.x9{left:173.051653px;}
.x7{left:184.762739px;}
.x1{left:191.361000px;}
.x3f{left:196.950848px;}
.x22{left:201.313066px;}
.x53{left:203.476174px;}
.x2a{left:209.212461px;}
.x44{left:212.659633px;}
.x39{left:215.790290px;}
.x23{left:221.768089px;}
.x52{left:224.436722px;}
.x3c{left:228.282915px;}
.x3e{left:234.557728px;}
.x12{left:236.629332px;}
.x34{left:238.492425px;}
.x2{left:254.385000px;}
.x45{left:255.759788px;}
.x46{left:260.893045px;}
.x42{left:272.494625px;}
.x35{left:273.916696px;}
.x3b{left:275.157258px;}
.x28{left:289.511476px;}
.x21{left:292.867144px;}
.x3a{left:301.552578px;}
.x2c{left:303.186160px;}
.x1d{left:307.270864px;}
.x55{left:309.643982px;}
.x54{left:316.127307px;}
.x1a{left:319.878994px;}
.x2b{left:324.497725px;}
.x1b{left:326.603830px;}
.x1e{left:337.887395px;}
.x24{left:340.332517px;}
.xd{left:343.341667px;}
.xb{left:346.704835px;}
.x50{left:356.767338px;}
.x37{left:358.064903px;}
.x2e{left:360.151508px;}
.x25{left:381.422571px;}
.x36{left:387.767888px;}
.xa{left:390.417021px;}
.x26{left:401.877594px;}
.x2f{left:403.359668px;}
.x51{left:405.323266px;}
.x4{left:408.207910px;}
.xc{left:426.033302px;}
.x17{left:427.702500px;}
.x27{left:457.989399px;}
.x15{left:459.216461px;}
.x41{left:474.578729px;}
.x16{left:475.580779px;}
.x1f{left:478.745937px;}
.x20{left:491.945097px;}
.x5a{left:493.668683px;}
.x32{left:496.035802px;}
.x4e{left:545.725786px;}
.x4f{left:564.832241px;}
.x11{left:580.881544px;}
.xf{left:585.741787px;}
.xe{left:607.029351px;}
.x4b{left:621.679083px;}
.x10{left:632.943147px;}
.x57{left:638.424421px;}
.x58{left:686.620330px;}
.x4c{left:688.261412px;}
.x4d{left:705.039751px;}
.x47{left:715.009250px;}
.x48{left:725.803789px;}
.x4a{left:734.610730px;}
.x59{left:738.179408px;}
.x49{left:747.614880px;}
@media print{
.v2{vertical-align:-20.315682pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.115722pt;}
.v1{vertical-align:26.571995pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000538pt;}
.ls10{letter-spacing:0.001206pt;}
.ls28{letter-spacing:0.002400pt;}
.ls2b{letter-spacing:0.002411pt;}
.lsd{letter-spacing:0.002814pt;}
.ls2f{letter-spacing:2.657200pt;}
.ls26{letter-spacing:11.953983pt;}
.ls21{letter-spacing:11.986064pt;}
.ls16{letter-spacing:12.626096pt;}
.ls2a{letter-spacing:12.960125pt;}
.ls29{letter-spacing:12.968382pt;}
.ls5{letter-spacing:12.975205pt;}
.ls4{letter-spacing:14.313455pt;}
.ls14{letter-spacing:14.371640pt;}
.ls18{letter-spacing:14.429824pt;}
.ls1{letter-spacing:14.546194pt;}
.lsb{letter-spacing:14.604379pt;}
.ls2{letter-spacing:14.662563pt;}
.ls1b{letter-spacing:14.720748pt;}
.ls23{letter-spacing:14.837118pt;}
.lse{letter-spacing:14.868459pt;}
.ls1c{letter-spacing:14.895303pt;}
.ls20{letter-spacing:15.069857pt;}
.ls1f{letter-spacing:15.302596pt;}
.ls24{letter-spacing:15.477150pt;}
.ls17{letter-spacing:15.593520pt;}
.ls2c{letter-spacing:15.760265pt;}
.lsa{letter-spacing:15.768074pt;}
.ls1a{letter-spacing:16.000813pt;}
.ls0{letter-spacing:16.466292pt;}
.ls11{letter-spacing:16.493266pt;}
.ls7{letter-spacing:16.699031pt;}
.ls30{letter-spacing:17.200593pt;}
.ls31{letter-spacing:17.205927pt;}
.ls3{letter-spacing:17.339063pt;}
.ls12{letter-spacing:17.747831pt;}
.ls22{letter-spacing:17.804541pt;}
.lsc{letter-spacing:18.130217pt;}
.ls27{letter-spacing:19.084606pt;}
.ls8{letter-spacing:19.666454pt;}
.ls2d{letter-spacing:20.073748pt;}
.ls13{letter-spacing:21.586552pt;}
.ls15{letter-spacing:21.935660pt;}
.ls19{letter-spacing:21.993845pt;}
.ls32{letter-spacing:22.342954pt;}
.ls25{letter-spacing:23.099356pt;}
.ls9{letter-spacing:23.157541pt;}
.ls2e{letter-spacing:23.739389pt;}
.ls1d{letter-spacing:36.481854pt;}
.ls1e{letter-spacing:36.540039pt;}
.wsc1{word-spacing:-51.086233pt;}
.wsc4{word-spacing:-29.616051pt;}
.wsbe{word-spacing:-29.441497pt;}
.ws42{word-spacing:-14.546194pt;}
.wsf{word-spacing:-13.284131pt;}
.ws162{word-spacing:-11.955798pt;}
.wsc6{word-spacing:-9.298865pt;}
.ws166{word-spacing:-7.970532pt;}
.wsa3{word-spacing:-3.141978pt;}
.ws94{word-spacing:-3.083793pt;}
.wsa7{word-spacing:-3.025608pt;}
.ws156{word-spacing:-2.975645pt;}
.ws15f{word-spacing:-2.967424pt;}
.ws3c{word-spacing:-2.734684pt;}
.ws10c{word-spacing:-2.676500pt;}
.ws2e{word-spacing:-2.560130pt;}
.ws111{word-spacing:-2.501945pt;}
.ws119{word-spacing:-2.497417pt;}
.wsd9{word-spacing:-2.454304pt;}
.ws86{word-spacing:-2.443761pt;}
.wsd8{word-spacing:-2.438313pt;}
.ws93{word-spacing:-2.385576pt;}
.ws157{word-spacing:-2.338007pt;}
.ws6{word-spacing:-2.284871pt;}
.ws75{word-spacing:-2.269206pt;}
.ws8c{word-spacing:-2.211021pt;}
.ws11b{word-spacing:-2.178597pt;}
.ws8d{word-spacing:-2.152837pt;}
.ws4{word-spacing:-2.072324pt;}
.ws98{word-spacing:-1.920098pt;}
.ws34{word-spacing:-1.803728pt;}
.wsf4{word-spacing:-1.745543pt;}
.wsd2{word-spacing:-1.687358pt;}
.ws36{word-spacing:-1.570989pt;}
.ws131{word-spacing:-1.540959pt;}
.ws3a{word-spacing:-1.512804pt;}
.ws11e{word-spacing:-1.487823pt;}
.wsbf{word-spacing:-1.454619pt;}
.wsa2{word-spacing:-1.396435pt;}
.ws65{word-spacing:-1.338250pt;}
.wsf3{word-spacing:-1.280065pt;}
.ws12b{word-spacing:-1.275277pt;}
.ws8e{word-spacing:-1.221880pt;}
.ws19{word-spacing:-1.169004pt;}
.ws10e{word-spacing:-1.163696pt;}
.ws1e{word-spacing:-1.105511pt;}
.ws10d{word-spacing:-1.047326pt;}
.ws24{word-spacing:-0.989141pt;}
.ws4c{word-spacing:-0.930956pt;}
.wscc{word-spacing:-0.872772pt;}
.wsb0{word-spacing:-0.756402pt;}
.ws9c{word-spacing:-0.698217pt;}
.wsca{word-spacing:-0.640033pt;}
.ws46{word-spacing:-0.581848pt;}
.ws4d{word-spacing:-0.523663pt;}
.ws160{word-spacing:-0.502625pt;}
.ws134{word-spacing:-0.478229pt;}
.ws67{word-spacing:-0.465478pt;}
.ws39{word-spacing:-0.407293pt;}
.ws57{word-spacing:-0.349109pt;}
.ws11{word-spacing:-0.318819pt;}
.ws2a{word-spacing:-0.290924pt;}
.ws76{word-spacing:-0.266814pt;}
.ws158{word-spacing:-0.265683pt;}
.ws32{word-spacing:-0.232739pt;}
.ws1c{word-spacing:-0.212546pt;}
.ws50{word-spacing:-0.202817pt;}
.wse2{word-spacing:-0.189686pt;}
.ws14c{word-spacing:-0.178659pt;}
.ws45{word-spacing:-0.174554pt;}
.ws7{word-spacing:-0.159410pt;}
.wsd7{word-spacing:-0.151184pt;}
.ws77{word-spacing:-0.141866pt;}
.ws21{word-spacing:-0.116370pt;}
.ws14{word-spacing:-0.106273pt;}
.ws112{word-spacing:-0.101795pt;}
.ws113{word-spacing:-0.096749pt;}
.ws10f{word-spacing:-0.063764pt;}
.wsb1{word-spacing:-0.060211pt;}
.ws2f{word-spacing:-0.058185pt;}
.wsb{word-spacing:-0.053137pt;}
.ws165{word-spacing:-0.047823pt;}
.wsb7{word-spacing:-0.043245pt;}
.ws87{word-spacing:-0.002959pt;}
.ws11f{word-spacing:-0.002644pt;}
.wsae{word-spacing:-0.001844pt;}
.wsaf{word-spacing:-0.000860pt;}
.wsdd{word-spacing:-0.000236pt;}
.ws3{word-spacing:0.000000pt;}
.wsfe{word-spacing:0.013057pt;}
.wsff{word-spacing:0.013372pt;}
.wsfc{word-spacing:0.013808pt;}
.wsa8{word-spacing:0.013904pt;}
.wsfd{word-spacing:0.014439pt;}
.ws16{word-spacing:0.053137pt;}
.ws35{word-spacing:0.058185pt;}
.wsd4{word-spacing:0.075591pt;}
.wse{word-spacing:0.106273pt;}
.ws11a{word-spacing:0.115076pt;}
.ws37{word-spacing:0.116370pt;}
.ws10b{word-spacing:0.119770pt;}
.wsd3{word-spacing:0.153781pt;}
.ws5{word-spacing:0.159410pt;}
.ws14a{word-spacing:0.169736pt;}
.ws41{word-spacing:0.174554pt;}
.ws18{word-spacing:0.212546pt;}
.ws4f{word-spacing:0.232739pt;}
.wsf8{word-spacing:0.238634pt;}
.wsfa{word-spacing:0.239116pt;}
.wsb4{word-spacing:0.257032pt;}
.ws12{word-spacing:0.265683pt;}
.wsb3{word-spacing:0.275306pt;}
.wse1{word-spacing:0.281069pt;}
.ws29{word-spacing:0.290924pt;}
.ws15a{word-spacing:0.318819pt;}
.ws53{word-spacing:0.349109pt;}
.ws68{word-spacing:0.407293pt;}
.ws7b{word-spacing:0.465478pt;}
.ws3f{word-spacing:0.523663pt;}
.ws17{word-spacing:0.531365pt;}
.ws47{word-spacing:0.581848pt;}
.ws12f{word-spacing:0.584502pt;}
.ws15e{word-spacing:0.621701pt;}
.ws130{word-spacing:0.623126pt;}
.ws22{word-spacing:0.640033pt;}
.ws7e{word-spacing:0.641489pt;}
.wsbc{word-spacing:0.698217pt;}
.ws13e{word-spacing:0.743911pt;}
.wse0{word-spacing:0.814587pt;}
.ws51{word-spacing:0.818013pt;}
.ws4b{word-spacing:0.859243pt;}
.ws78{word-spacing:0.865104pt;}
.wsbd{word-spacing:0.872772pt;}
.ws90{word-spacing:0.914974pt;}
.wsb2{word-spacing:0.923156pt;}
.ws64{word-spacing:0.930956pt;}
.ws167{word-spacing:0.948247pt;}
.ws154{word-spacing:0.956457pt;}
.ws7a{word-spacing:0.989141pt;}
.ws91{word-spacing:1.023208pt;}
.wsa9{word-spacing:1.046829pt;}
.ws80{word-spacing:1.047326pt;}
.ws30{word-spacing:1.105511pt;}
.ws62{word-spacing:1.163696pt;}
.ws88{word-spacing:1.205614pt;}
.ws44{word-spacing:1.209303pt;}
.wsdb{word-spacing:1.239842pt;}
.ws152{word-spacing:1.275277pt;}
.ws109{word-spacing:1.280065pt;}
.ws151{word-spacing:1.300532pt;}
.ws10{word-spacing:1.328413pt;}
.ws66{word-spacing:1.338250pt;}
.ws14d{word-spacing:1.381550pt;}
.ws4a{word-spacing:1.454619pt;}
.ws11d{word-spacing:1.487823pt;}
.wsba{word-spacing:1.512804pt;}
.ws25{word-spacing:1.629174pt;}
.wsad{word-spacing:1.647232pt;}
.wsf7{word-spacing:1.687358pt;}
.ws52{word-spacing:1.745543pt;}
.wsdc{word-spacing:1.803728pt;}
.ws132{word-spacing:1.806642pt;}
.ws27{word-spacing:1.861913pt;}
.ws14f{word-spacing:1.912915pt;}
.ws26{word-spacing:1.920098pt;}
.ws6d{word-spacing:1.923241pt;}
.ws6e{word-spacing:1.926453pt;}
.ws5b{word-spacing:1.978282pt;}
.wsda{word-spacing:2.036467pt;}
.ws92{word-spacing:2.094652pt;}
.ws48{word-spacing:2.152837pt;}
.ws49{word-spacing:2.211021pt;}
.ws9b{word-spacing:2.269206pt;}
.ws23{word-spacing:2.327391pt;}
.ws5d{word-spacing:2.385576pt;}
.ws58{word-spacing:2.443761pt;}
.ws153{word-spacing:2.497417pt;}
.ws9a{word-spacing:2.501945pt;}
.ws13c{word-spacing:2.603690pt;}
.wsf5{word-spacing:2.618315pt;}
.ws83{word-spacing:2.676500pt;}
.ws38{word-spacing:2.734684pt;}
.wsa4{word-spacing:2.792869pt;}
.ws147{word-spacing:2.816236pt;}
.ws135{word-spacing:2.869372pt;}
.wsaa{word-spacing:2.869391pt;}
.ws85{word-spacing:2.909239pt;}
.wsa{word-spacing:2.975645pt;}
.wsc5{word-spacing:3.025608pt;}
.ws137{word-spacing:3.028782pt;}
.ws114{word-spacing:3.081918pt;}
.ws59{word-spacing:3.083793pt;}
.ws115{word-spacing:3.135055pt;}
.ws13d{word-spacing:3.188191pt;}
.wsde{word-spacing:3.200163pt;}
.wsdf{word-spacing:3.258347pt;}
.ws63{word-spacing:3.316532pt;}
.ws9{word-spacing:3.347601pt;}
.ws43{word-spacing:3.374717pt;}
.ws4e{word-spacing:3.432902pt;}
.ws155{word-spacing:3.453874pt;}
.ws102{word-spacing:3.491087pt;}
.ws117{word-spacing:3.507011pt;}
.ws6c{word-spacing:3.549271pt;}
.ws125{word-spacing:3.560147pt;}
.ws6b{word-spacing:3.607456pt;}
.ws8{word-spacing:3.613284pt;}
.ws15d{word-spacing:3.682386pt;}
.ws55{word-spacing:3.723826pt;}
.ws1b{word-spacing:3.772693pt;}
.wsce{word-spacing:3.782010pt;}
.ws12c{word-spacing:3.825830pt;}
.ws81{word-spacing:3.840195pt;}
.ws99{word-spacing:3.898380pt;}
.wse4{word-spacing:3.906888pt;}
.wse3{word-spacing:3.909429pt;}
.ws139{word-spacing:3.985239pt;}
.ws142{word-spacing:4.038376pt;}
.ws15c{word-spacing:4.131119pt;}
.ws12d{word-spacing:4.144649pt;}
.ws9f{word-spacing:4.189304pt;}
.ws6f{word-spacing:4.247489pt;}
.ws15{word-spacing:4.250922pt;}
.ws12e{word-spacing:4.304058pt;}
.wsb9{word-spacing:4.363858pt;}
.ws5a{word-spacing:4.480228pt;}
.wsb6{word-spacing:4.538413pt;}
.ws107{word-spacing:4.596597pt;}
.ws159{word-spacing:4.622878pt;}
.ws54{word-spacing:4.654782pt;}
.wsa5{word-spacing:4.712967pt;}
.ws14e{word-spacing:4.729151pt;}
.ws105{word-spacing:4.755062pt;}
.ws103{word-spacing:4.771152pt;}
.ws95{word-spacing:4.829336pt;}
.ws31{word-spacing:4.887521pt;}
.wsc{word-spacing:4.941697pt;}
.ws3d{word-spacing:4.945706pt;}
.ws33{word-spacing:5.062075pt;}
.ws5c{word-spacing:5.120260pt;}
.ws143{word-spacing:5.154243pt;}
.ws100{word-spacing:5.178445pt;}
.ws2c{word-spacing:5.236630pt;}
.ws13b{word-spacing:5.260516pt;}
.ws16b{word-spacing:5.294815pt;}
.ws71{word-spacing:5.352999pt;}
.wscb{word-spacing:5.411184pt;}
.ws8a{word-spacing:5.469369pt;}
.ws148{word-spacing:5.473062pt;}
.ws121{word-spacing:5.526198pt;}
.ws97{word-spacing:5.527554pt;}
.ws3b{word-spacing:5.585738pt;}
.wsd{word-spacing:5.685608pt;}
.wsa6{word-spacing:5.760293pt;}
.wsa0{word-spacing:5.818478pt;}
.ws138{word-spacing:5.841678pt;}
.ws126{word-spacing:5.845018pt;}
.wsbb{word-spacing:5.876662pt;}
.ws40{word-spacing:5.934847pt;}
.ws1f{word-spacing:5.993032pt;}
.ws12a{word-spacing:6.004427pt;}
.ws7f{word-spacing:6.051217pt;}
.ws128{word-spacing:6.163837pt;}
.wsb8{word-spacing:6.167586pt;}
.ws14b{word-spacing:6.216973pt;}
.ws5e{word-spacing:6.225771pt;}
.ws11c{word-spacing:6.323246pt;}
.ws7c{word-spacing:6.342141pt;}
.ws133{word-spacing:6.360209pt;}
.ws9d{word-spacing:6.400325pt;}
.ws169{word-spacing:6.572995pt;}
.wsd1{word-spacing:6.574880pt;}
.ws164{word-spacing:6.578329pt;}
.ws124{word-spacing:6.695202pt;}
.ws13f{word-spacing:6.907748pt;}
.ws8b{word-spacing:6.923988pt;}
.ws79{word-spacing:6.982173pt;}
.ws3e{word-spacing:7.040358pt;}
.ws13{word-spacing:7.067158pt;}
.ws73{word-spacing:7.098543pt;}
.ws5f{word-spacing:7.156727pt;}
.ws1a{word-spacing:7.173431pt;}
.ws96{word-spacing:7.273097pt;}
.ws74{word-spacing:7.331282pt;}
.ws82{word-spacing:7.389467pt;}
.ws136{word-spacing:7.439113pt;}
.wsa1{word-spacing:7.447651pt;}
.ws89{word-spacing:7.505836pt;}
.ws122{word-spacing:7.598523pt;}
.ws7d{word-spacing:7.622206pt;}
.ws149{word-spacing:7.651659pt;}
.ws2b{word-spacing:7.680390pt;}
.wsb5{word-spacing:7.738575pt;}
.ws9e{word-spacing:7.796760pt;}
.ws72{word-spacing:8.055006pt;}
.ws129{word-spacing:8.129888pt;}
.ws84{word-spacing:8.145869pt;}
.wsf6{word-spacing:8.494977pt;}
.ws15b{word-spacing:8.553162pt;}
.ws61{word-spacing:8.611347pt;}
.ws141{word-spacing:8.714390pt;}
.ws28{word-spacing:8.785901pt;}
.wscf{word-spacing:9.076825pt;}
.ws161{word-spacing:9.251379pt;}
.ws8f{word-spacing:9.367749pt;}
.ws108{word-spacing:9.600488pt;}
.ws20{word-spacing:9.716858pt;}
.ws118{word-spacing:9.777120pt;}
.wsc3{word-spacing:10.124151pt;}
.ws127{word-spacing:10.149076pt;}
.ws150{word-spacing:10.414759pt;}
.wsd0{word-spacing:10.531444pt;}
.wsf9{word-spacing:10.822368pt;}
.ws110{word-spacing:11.171477pt;}
.ws0{word-spacing:11.907379pt;}
.ws163{word-spacing:12.044249pt;}
.ws123{word-spacing:12.327673pt;}
.wsd5{word-spacing:12.626096pt;}
.ws106{word-spacing:12.975205pt;}
.ws60{word-spacing:13.207944pt;}
.wsd6{word-spacing:13.498868pt;}
.ws10a{word-spacing:14.138901pt;}
.ws2d{word-spacing:14.197085pt;}
.ws70{word-spacing:14.488009pt;}
.ws104{word-spacing:15.535335pt;}
.ws101{word-spacing:15.702070pt;}
.ws2{word-spacing:15.877299pt;}
.wsc2{word-spacing:16.524476pt;}
.ws144{word-spacing:17.109961pt;}
.ws146{word-spacing:17.694462pt;}
.ws13a{word-spacing:18.013281pt;}
.ws120{word-spacing:18.597783pt;}
.ws1{word-spacing:19.052706pt;}
.ws116{word-spacing:20.723244pt;}
.ws145{word-spacing:21.467155pt;}
.wsc0{word-spacing:21.993845pt;}
.ws56{word-spacing:22.429077pt;}
.ws16a{word-spacing:24.553975pt;}
.ws140{word-spacing:34.129523pt;}
.ws69{word-spacing:51.792516pt;}
.wse9{word-spacing:51.805257pt;}
.ws168{word-spacing:51.808576pt;}
.wse5{word-spacing:51.840339pt;}
.wsc7{word-spacing:54.454153pt;}
.wse8{word-spacing:55.778789pt;}
.wscd{word-spacing:58.126591pt;}
.ws1d{word-spacing:63.700490pt;}
.wsec{word-spacing:63.713231pt;}
.wseb{word-spacing:63.731306pt;}
.wsf1{word-spacing:66.474236pt;}
.ws6a{word-spacing:67.669815pt;}
.wse7{word-spacing:67.686763pt;}
.wsc9{word-spacing:72.010410pt;}
.wse6{word-spacing:75.704111pt;}
.wsfb{word-spacing:75.991051pt;}
.wsc8{word-spacing:99.907005pt;}
.wsac{word-spacing:111.523682pt;}
.wsee{word-spacing:124.891475pt;}
.wsab{word-spacing:136.152625pt;}
.wsed{word-spacing:154.516730pt;}
.wsef{word-spacing:166.424705pt;}
.wsea{word-spacing:190.336300pt;}
.wsf0{word-spacing:263.027551pt;}
.wsf2{word-spacing:418.246550pt;}
._2a{margin-left:-36.133646pt;}
._29{margin-left:-15.128942pt;}
._22{margin-left:-7.118037pt;}
._23{margin-left:-5.411184pt;}
._4{margin-left:-4.197785pt;}
._10{margin-left:-3.083793pt;}
._0{margin-left:-2.151936pt;}
._6{margin-left:-1.116053pt;}
._5d{width:2.678099pt;}
._5c{width:4.541301pt;}
._3{width:12.513558pt;}
._e{width:13.615238pt;}
._1{width:14.824448pt;}
._5{width:16.419186pt;}
._7{width:17.827210pt;}
._12{width:18.977879pt;}
._9{width:20.404425pt;}
._f{width:21.934760pt;}
._2{width:23.720237pt;}
._d{width:25.202489pt;}
._11{width:26.823182pt;}
._13{width:28.801464pt;}
._b{width:29.704297pt;}
._58{width:31.456822pt;}
._15{width:32.408920pt;}
._5a{width:33.316600pt;}
._8{width:34.884034pt;}
._26{width:35.900007pt;}
._a{width:37.567522pt;}
._24{width:38.809245pt;}
._21{width:40.671158pt;}
._25{width:42.125778pt;}
._59{width:43.869731pt;}
._c{width:47.827886pt;}
._20{width:58.184776pt;}
._14{width:63.764255pt;}
._31{width:66.542677pt;}
._3f{width:67.797344pt;}
._3d{width:70.347914pt;}
._55{width:75.659505pt;}
._5b{width:77.421789pt;}
._3c{width:78.382210pt;}
._56{width:79.676654pt;}
._45{width:87.366390pt;}
._3b{width:88.393375pt;}
._48{width:92.014876pt;}
._4a{width:94.912916pt;}
._61{width:105.258843pt;}
._41{width:111.308801pt;}
._1f{width:116.927702pt;}
._6a{width:121.247909pt;}
._52{width:127.551614pt;}
._57{width:132.789060pt;}
._47{width:136.869973pt;}
._1e{width:138.161199pt;}
._19{width:139.500248pt;}
._4c{width:153.990675pt;}
._54{width:157.692176pt;}
._16{width:159.442519pt;}
._40{width:166.472528pt;}
._69{width:173.167775pt;}
._64{width:175.861993pt;}
._60{width:179.289143pt;}
._18{width:184.645341pt;}
._42{width:190.410527pt;}
._1d{width:205.257136pt;}
._4b{width:207.074417pt;}
._46{width:208.604759pt;}
._5e{width:213.339255pt;}
._63{width:223.143009pt;}
._17{width:229.168731pt;}
._65{width:232.851117pt;}
._44{width:242.989634pt;}
._2c{width:249.432753pt;}
._3e{width:250.976107pt;}
._3a{width:256.380127pt;}
._38{width:257.833625pt;}
._2d{width:278.408016pt;}
._28{width:281.678595pt;}
._49{width:282.921998pt;}
._68{width:284.691456pt;}
._1a{width:318.119867pt;}
._2b{width:319.694976pt;}
._27{width:322.184838pt;}
._43{width:338.636016pt;}
._1c{width:342.031462pt;}
._67{width:344.805207pt;}
._1b{width:348.057184pt;}
._4f{width:359.869513pt;}
._32{width:375.488165pt;}
._66{width:382.537705pt;}
._62{width:393.250279pt;}
._51{width:395.736906pt;}
._5f{width:405.540660pt;}
._50{width:419.505032pt;}
._39{width:425.032518pt;}
._34{width:438.534470pt;}
._4d{width:463.932776pt;}
._37{width:466.431064pt;}
._35{width:484.917208pt;}
._36{width:489.120295pt;}
._2e{width:493.248991pt;}
._53{width:496.787309pt;}
._2f{width:519.471790pt;}
._4e{width:695.875253pt;}
._33{width:699.869769pt;}
._30{width:712.255857pt;}
.fs7{font-size:31.882127pt;}
.fs9{font-size:37.195460pt;}
.fs6{font-size:42.509325pt;}
.fs0{font-size:47.820800pt;}
.fs8{font-size:47.823191pt;}
.fs3{font-size:53.136523pt;}
.fs5{font-size:58.181867pt;}
.fs4{font-size:58.184776pt;}
.fs2{font-size:63.764255pt;}
.fs1{font-size:76.516892pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:34.521333pt;}
.y1{bottom:49.133333pt;}
.y56{bottom:67.437333pt;}
.y34{bottom:92.055270pt;}
.y2fb{bottom:97.134191pt;}
.y80{bottom:105.338601pt;}
.y25a{bottom:106.668001pt;}
.y33{bottom:110.121507pt;}
.y7f{bottom:110.417522pt;}
.y2fa{bottom:111.601581pt;}
.y328{bottom:120.991384pt;}
.y259{bottom:121.280732pt;}
.y348{bottom:124.886245pt;}
.y32{bottom:128.187744pt;}
.y2f9{bottom:131.715920pt;}
.y7e{bottom:134.002701pt;}
.y1b0{bottom:134.561396pt;}
.y258{bottom:135.892129pt;}
.y327{bottom:139.353635pt;}
.y31{bottom:146.253980pt;}
.y2f8{bottom:149.782157pt;}
.y257{bottom:150.504859pt;}
.y2db{bottom:151.492909pt;}
.y7d{bottom:152.068938pt;}
.y326{bottom:153.822359pt;}
.y28d{bottom:161.205394pt;}
.y1af{bottom:163.866861pt;}
.y30{bottom:164.320217pt;}
.y2bc{bottom:165.117590pt;}
.y17f{bottom:165.346935pt;}
.y2f7{bottom:167.848393pt;}
.y325{bottom:168.291082pt;}
.y7c{bottom:170.135174pt;}
.y354{bottom:171.399237pt;}
.y13b{bottom:173.289999pt;}
.y28c{bottom:175.818125pt;}
.y256{bottom:178.216912pt;}
.y2da{bottom:181.346401pt;}
.y2f{bottom:182.387787pt;}
.y1d6{bottom:182.511793pt;}
.y324{bottom:182.758472pt;}
.y17e{bottom:183.413171pt;}
.y2f5{bottom:185.914630pt;}
.y7b{bottom:188.202744pt;}
.y353{bottom:189.465474pt;}
.y28b{bottom:190.430856pt;}
.y2f6{bottom:191.193560pt;}
.y2bb{bottom:191.500242pt;}
.y323{bottom:191.932264pt;}
.y255{bottom:192.829642pt;}
.y347{bottom:197.227195pt;}
.y1ae{bottom:197.540544pt;}
.y2d9{bottom:199.413971pt;}
.y2e{bottom:200.454023pt;}
.y1d5{bottom:200.578030pt;}
.y17d{bottom:201.479408pt;}
.y2f3{bottom:203.980866pt;}
.y203{bottom:204.524894pt;}
.y28a{bottom:205.043586pt;}
.y2ba{bottom:206.112973pt;}
.y7a{bottom:206.268981pt;}
.y254{bottom:207.442373pt;}
.y2f4{bottom:209.259797pt;}
.y13a{bottom:209.650483pt;}
.y322{bottom:210.295849pt;}
.y352{bottom:212.769306pt;}
.y1ad{bottom:215.606781pt;}
.y2d8{bottom:217.480208pt;}
.y55{bottom:218.520260pt;}
.y1d4{bottom:218.644266pt;}
.y17c{bottom:219.546978pt;}
.y321{bottom:219.684318pt;}
.y202{bottom:220.467024pt;}
.y2b9{bottom:220.725704pt;}
.yc5{bottom:221.876428pt;}
.y253{bottom:222.055103pt;}
.y79{bottom:225.104589pt;}
.y139{bottom:227.716720pt;}
.y2d{bottom:228.274081pt;}
.y2f2{bottom:228.579430pt;}
.y289{bottom:230.355518pt;}
.y346{bottom:230.606198pt;}
.y1ac{bottom:233.673018pt;}
.y2b8{bottom:235.338434pt;}
.y2d7{bottom:235.546445pt;}
.y201{bottom:236.407821pt;}
.y54{bottom:236.586497pt;}
.y252{bottom:236.666501pt;}
.y1d3{bottom:236.710503pt;}
.y17b{bottom:237.613215pt;}
.y320{bottom:238.047903pt;}
.ye1{bottom:241.900096pt;}
.y78{bottom:243.170826pt;}
.y159{bottom:243.880195pt;}
.y288{bottom:244.968249pt;}
.y138{bottom:245.782956pt;}
.y31f{bottom:247.437706pt;}
.y345{bottom:248.672434pt;}
.yc4{bottom:249.907163pt;}
.y2b7{bottom:249.951165pt;}
.y1ab{bottom:251.739254pt;}
.y200{bottom:252.348618pt;}
.y2d6{bottom:253.612681pt;}
.y53{bottom:254.652733pt;}
.y1d2{bottom:254.776739pt;}
.y17a{bottom:255.679451pt;}
.y109{bottom:258.003567pt;}
.y351{bottom:258.732937pt;}
.y287{bottom:259.580980pt;}
.yf5{bottom:259.675651pt;}
.y2c{bottom:259.795657pt;}
.ye0{bottom:259.967666pt;}
.y2f1{bottom:260.686368pt;}
.y77{bottom:261.237062pt;}
.y1ff{bottom:262.789140pt;}
.y137{bottom:263.849193pt;}
.y251{bottom:264.378553pt;}
.y2b6{bottom:264.563895pt;}
.y31e{bottom:265.799957pt;}
.y344{bottom:266.738671pt;}
.yc3{bottom:267.973399pt;}
.y9b{bottom:268.432089pt;}
.y1aa{bottom:269.806824pt;}
.y2d5{bottom:271.680251pt;}
.y52{bottom:272.720303pt;}
.y1d1{bottom:272.844309pt;}
.y179{bottom:273.745688pt;}
.y350{bottom:274.673734pt;}
.y2b{bottom:275.737787pt;}
.y108{bottom:276.069804pt;}
.y158{bottom:277.315200pt;}
.yf4{bottom:277.741888pt;}
.ydf{bottom:278.033902pt;}
.y2f0{bottom:278.752605pt;}
.y250{bottom:278.991283pt;}
.y76{bottom:279.303299pt;}
.y136{bottom:281.916763pt;}
.y342{bottom:284.804907pt;}
.y286{bottom:284.892912pt;}
.yc2{bottom:286.039636pt;}
.y31d{bottom:287.681051pt;}
.y1a9{bottom:287.873061pt;}
.y2d4{bottom:289.747821pt;}
.y343{bottom:290.083838pt;}
.y51{bottom:290.786540pt;}
.y1d0{bottom:290.910546pt;}
.y2b5{bottom:290.945214pt;}
.y2a{bottom:291.678584pt;}
.y178{bottom:291.811924pt;}
.y24f{bottom:293.604014pt;}
.y107{bottom:294.136041pt;}
.y157{bottom:295.382770pt;}
.yf3{bottom:295.808124pt;}
.yde{bottom:296.100139pt;}
.y2ef{bottom:296.820175pt;}
.y75{bottom:297.370869pt;}
.y1fe{bottom:297.694885pt;}
.y285{bottom:299.505642pt;}
.y135{bottom:299.983000pt;}
.y34f{bottom:303.632515pt;}
.yc1{bottom:304.105872pt;}
.y2b4{bottom:305.557945pt;}
.y9a{bottom:305.656617pt;}
.y31b{bottom:305.747288pt;}
.y1a8{bottom:305.939297pt;}
.y341{bottom:306.089972pt;}
.y29{bottom:307.619381pt;}
.y2d3{bottom:307.814058pt;}
.y24e{bottom:308.216745pt;}
.y50{bottom:308.852776pt;}
.y1cf{bottom:308.976783pt;}
.y177{bottom:309.878161pt;}
.y31c{bottom:311.026218pt;}
.y106{bottom:312.203611pt;}
.y156{bottom:313.449006pt;}
.yf2{bottom:313.874361pt;}
.y284{bottom:314.118373pt;}
.ydd{bottom:314.166375pt;}
.y74{bottom:315.437106pt;}
.y1fd{bottom:315.761122pt;}
.y34e{bottom:316.917180pt;}
.y134{bottom:318.049236pt;}
.y2b3{bottom:320.170676pt;}
.y2ee{bottom:321.417405pt;}
.yc0{bottom:322.173442pt;}
.y28{bottom:323.560178pt;}
.y99{bottom:323.722853pt;}
.y31a{bottom:323.813524pt;}
.y1a7{bottom:324.005534pt;}
.y33f{bottom:324.156208pt;}
.y2d2{bottom:325.880294pt;}
.y4f{bottom:326.919013pt;}
.y1ce{bottom:327.043019pt;}
.y176{bottom:327.945731pt;}
.y283{bottom:328.731104pt;}
.y340{bottom:329.435139pt;}
.y34d{bottom:330.201844pt;}
.y105{bottom:330.269847pt;}
.y155{bottom:331.515243pt;}
.yf1{bottom:331.941931pt;}
.ydc{bottom:332.232612pt;}
.y1fc{bottom:333.827358pt;}
.y2b2{bottom:334.783406pt;}
.y24d{bottom:335.927463pt;}
.y133{bottom:336.115473pt;}
.y27{bottom:339.500975pt;}
.ybf{bottom:340.239679pt;}
.y98{bottom:341.790423pt;}
.y318{bottom:341.879761pt;}
.y1a6{bottom:342.071771pt;}
.y33e{bottom:342.222445pt;}
.y282{bottom:343.343834pt;}
.y34c{bottom:343.485175pt;}
.y4e{bottom:344.985250pt;}
.y1cd{bottom:345.109256pt;}
.y73{bottom:345.227928pt;}
.y175{bottom:346.011968pt;}
.y319{bottom:347.158692pt;}
.y104{bottom:348.336084pt;}
.y2b1{bottom:349.396137pt;}
.y154{bottom:349.581479pt;}
.yf0{bottom:350.008167pt;}
.ydb{bottom:350.300182pt;}
.y24c{bottom:350.540194pt;}
.y1fb{bottom:351.893595pt;}
.y2ed{bottom:353.524343pt;}
.y132{bottom:354.181709pt;}
.y26{bottom:355.441772pt;}
.y34b{bottom:356.769839pt;}
.y281{bottom:357.956565pt;}
.ybe{bottom:358.305916pt;}
.y97{bottom:359.856660pt;}
.y317{bottom:359.945998pt;}
.y1a5{bottom:360.139341pt;}
.y33c{bottom:360.288681pt;}
.y4d{bottom:363.052820pt;}
.y1cc{bottom:363.176826pt;}
.y174{bottom:364.078204pt;}
.y2d1{bottom:364.498225pt;}
.y24b{bottom:365.152925pt;}
.y33d{bottom:365.567612pt;}
.y103{bottom:366.402320pt;}
.y153{bottom:367.647716pt;}
.yef{bottom:368.074404pt;}
.yda{bottom:368.366419pt;}
.y1fa{bottom:369.959832pt;}
.y34a{bottom:370.053170pt;}
.y25{bottom:371.383903pt;}
.y2ec{bottom:371.591913pt;}
.y131{bottom:372.249279pt;}
.y280{bottom:372.569295pt;}
.y2b0{bottom:375.778789pt;}
.ybd{bottom:376.372152pt;}
.y96{bottom:377.922896pt;}
.y316{bottom:378.013568pt;}
.y1a4{bottom:378.205577pt;}
.y33b{bottom:378.356251pt;}
.y72{bottom:379.580313pt;}
.y24a{bottom:379.765655pt;}
.y2d0{bottom:380.439022pt;}
.y4c{bottom:381.119056pt;}
.y1cb{bottom:381.243062pt;}
.y173{bottom:382.144441pt;}
.y349{bottom:383.869860pt;}
.y102{bottom:384.468557pt;}
.y152{bottom:385.715286pt;}
.yee{bottom:386.140641pt;}
.yd9{bottom:386.432655pt;}
.y27f{bottom:387.180693pt;}
.y24{bottom:387.324700pt;}
.y1f9{bottom:388.027402pt;}
.y2eb{bottom:389.658150pt;}
.y130{bottom:390.315516pt;}
.y2af{bottom:390.391520pt;}
.ybc{bottom:394.438389pt;}
.y95{bottom:395.989133pt;}
.y315{bottom:396.079804pt;}
.y1a3{bottom:396.271814pt;}
.y33a{bottom:396.422488pt;}
.y71{bottom:397.647883pt;}
.y4b{bottom:399.185293pt;}
.y172{bottom:400.210677pt;}
.y101{bottom:402.536127pt;}
.y23{bottom:403.265497pt;}
.y151{bottom:403.781523pt;}
.y249{bottom:404.016201pt;}
.yed{bottom:404.206877pt;}
.yd8{bottom:404.498892pt;}
.y1ca{bottom:404.792240pt;}
.y2ae{bottom:405.004250pt;}
.y1f8{bottom:406.093638pt;}
.y2ea{bottom:407.724386pt;}
.y12f{bottom:408.381753pt;}
.y27e{bottom:412.493958pt;}
.ybb{bottom:412.547294pt;}
.y94{bottom:414.055370pt;}
.y314{bottom:414.146041pt;}
.y1a2{bottom:414.338050pt;}
.y339{bottom:414.488725pt;}
.y70{bottom:415.714119pt;}
.y4a{bottom:417.251529pt;}
.y11d{bottom:417.256863pt;}
.y171{bottom:418.278247pt;}
.y22{bottom:419.206294pt;}
.y2ad{bottom:419.616981pt;}
.y100{bottom:420.602364pt;}
.y150{bottom:421.847759pt;}
.yec{bottom:422.274447pt;}
.yd7{bottom:422.565128pt;}
.y1f7{bottom:424.159875pt;}
.y2e9{bottom:425.790623pt;}
.y21f{bottom:426.973349pt;}
.y27d{bottom:427.106689pt;}
.y12e{bottom:428.328083pt;}
.yba{bottom:430.613531pt;}
.y93{bottom:432.122940pt;}
.y312{bottom:432.212277pt;}
.y1a1{bottom:432.404287pt;}
.y338{bottom:432.554961pt;}
.y6f{bottom:434.549728pt;}
.y1c9{bottom:435.069754pt;}
.y21{bottom:435.147091pt;}
.y49{bottom:435.317766pt;}
.y11c{bottom:435.323100pt;}
.y170{bottom:436.344484pt;}
.y313{bottom:437.491208pt;}
.yff{bottom:438.668600pt;}
.y14f{bottom:439.913996pt;}
.yd6{bottom:440.631365pt;}
.y27c{bottom:441.719419pt;}
.y1f6{bottom:442.226111pt;}
.y2e8{bottom:443.856860pt;}
.y2ac{bottom:445.998300pt;}
.y12d{bottom:446.394320pt;}
.yb9{bottom:448.679767pt;}
.y92{bottom:450.189176pt;}
.y311{bottom:450.278514pt;}
.y1a0{bottom:451.043886pt;}
.y20{bottom:451.087888pt;}
.y6e{bottom:452.615964pt;}
.y1c8{bottom:453.137324pt;}
.y48{bottom:453.385336pt;}
.y11b{bottom:453.389336pt;}
.y248{bottom:453.565345pt;}
.y16f{bottom:454.410721pt;}
.yeb{bottom:455.548111pt;}
.y27b{bottom:456.332150pt;}
.yfe{bottom:456.734837pt;}
.y14e{bottom:457.980232pt;}
.y21e{bottom:458.564262pt;}
.y2ab{bottom:460.611031pt;}
.y2e7{bottom:461.924430pt;}
.yd5{bottom:464.012534pt;}
.y12c{bottom:464.460556pt;}
.yb8{bottom:466.747337pt;}
.y1f{bottom:467.030018pt;}
.y91{bottom:468.255413pt;}
.y310{bottom:468.346084pt;}
.y19f{bottom:469.110122pt;}
.y6d{bottom:470.682201pt;}
.y27a{bottom:470.943547pt;}
.y1c7{bottom:471.203560pt;}
.y47{bottom:471.451573pt;}
.y11a{bottom:471.456906pt;}
.y247{bottom:471.631582pt;}
.y16e{bottom:472.476957pt;}
.yfd{bottom:474.801073pt;}
.y2aa{bottom:475.223761pt;}
.y14d{bottom:476.047802pt;}
.y21d{bottom:476.630498pt;}
.y337{bottom:478.518593pt;}
.y2e6{bottom:479.990666pt;}
.yd4{bottom:482.078771pt;}
.y12b{bottom:482.528126pt;}
.y1e{bottom:482.970815pt;}
.yb7{bottom:484.813574pt;}
.y90{bottom:486.321649pt;}
.y30e{bottom:486.412321pt;}
.y19e{bottom:487.177692pt;}
.y1f5{bottom:488.189743pt;}
.y6c{bottom:488.748437pt;}
.y1c6{bottom:489.269797pt;}
.y46{bottom:489.517809pt;}
.y119{bottom:489.523143pt;}
.y246{bottom:489.699152pt;}
.y2a9{bottom:489.836492pt;}
.y16d{bottom:490.543194pt;}
.y30f{bottom:491.691251pt;}
.yfc{bottom:492.868643pt;}
.y14c{bottom:494.114039pt;}
.y21c{bottom:494.696735pt;}
.y279{bottom:496.256813pt;}
.y2e5{bottom:498.056903pt;}
.y1d{bottom:498.911612pt;}
.yd3{bottom:500.145007pt;}
.y12a{bottom:500.594363pt;}
.yea{bottom:502.793140pt;}
.yb6{bottom:502.879811pt;}
.y8f{bottom:504.387886pt;}
.y2a8{bottom:504.449222pt;}
.y30d{bottom:504.478557pt;}
.y6b{bottom:506.814674pt;}
.y1c5{bottom:507.336033pt;}
.y336{bottom:507.477374pt;}
.y45{bottom:507.584046pt;}
.y118{bottom:507.589379pt;}
.y245{bottom:507.765388pt;}
.y16c{bottom:508.610764pt;}
.y278{bottom:510.869543pt;}
.yfb{bottom:510.934880pt;}
.y19d{bottom:511.617581pt;}
.y21b{bottom:512.764305pt;}
.y14b{bottom:513.216327pt;}
.y1c{bottom:514.852409pt;}
.y1f4{bottom:517.149857pt;}
.yd2{bottom:518.211244pt;}
.y129{bottom:518.660600pt;}
.y2a7{bottom:519.061953pt;}
.ye9{bottom:520.859376pt;}
.yb5{bottom:520.946047pt;}
.y335{bottom:521.294065pt;}
.y8e{bottom:522.455456pt;}
.y30b{bottom:522.544794pt;}
.y6a{bottom:524.882244pt;}
.y1c4{bottom:525.402270pt;}
.y277{bottom:525.482274pt;}
.y22b{bottom:525.576945pt;}
.y44{bottom:525.650282pt;}
.y117{bottom:525.655616pt;}
.y244{bottom:525.831625pt;}
.y16b{bottom:526.677000pt;}
.y30c{bottom:527.823724pt;}
.yfa{bottom:529.001117pt;}
.y1f3{bottom:530.433188pt;}
.y1b{bottom:530.793206pt;}
.y21a{bottom:530.830541pt;}
.y14a{bottom:531.282564pt;}
.y2a6{bottom:533.674684pt;}
.y334{bottom:535.109422pt;}
.yd1{bottom:536.278814pt;}
.y128{bottom:536.726836pt;}
.ye8{bottom:538.925613pt;}
.yb4{bottom:539.012284pt;}
.y276{bottom:540.095005pt;}
.y8d{bottom:540.521693pt;}
.y30a{bottom:540.611030pt;}
.y69{bottom:542.948481pt;}
.y19c{bottom:543.451172pt;}
.y1c3{bottom:543.469840pt;}
.y43{bottom:543.717852pt;}
.y116{bottom:543.721853pt;}
.y243{bottom:543.897861pt;}
.y16a{bottom:544.743237pt;}
.y2e4{bottom:545.324599pt;}
.y1a{bottom:546.734003pt;}
.yf9{bottom:547.067353pt;}
.y219{bottom:548.896778pt;}
.y333{bottom:548.924779pt;}
.y149{bottom:549.348801pt;}
.yd0{bottom:554.345050pt;}
.y275{bottom:554.706402pt;}
.y127{bottom:554.793073pt;}
.y332{bottom:555.566445pt;}
.ye7{bottom:556.991849pt;}
.y1f2{bottom:557.001183pt;}
.yb3{bottom:557.079854pt;}
.y8c{bottom:558.587929pt;}
.y308{bottom:558.678600pt;}
.y2a5{bottom:560.057336pt;}
.y68{bottom:561.014717pt;}
.y2e3{bottom:561.265396pt;}
.y19b{bottom:561.517409pt;}
.y1c2{bottom:561.536077pt;}
.y42{bottom:561.784089pt;}
.y115{bottom:561.789423pt;}
.y242{bottom:561.964098pt;}
.y19{bottom:562.676134pt;}
.y169{bottom:562.809474pt;}
.y309{bottom:563.956198pt;}
.yf8{bottom:565.133590pt;}
.y218{bottom:566.963015pt;}
.y148{bottom:567.415037pt;}
.y22a{bottom:568.692434pt;}
.y1f1{bottom:570.285847pt;}
.ycf{bottom:572.411287pt;}
.y126{bottom:572.859309pt;}
.y2a4{bottom:574.670067pt;}
.ye6{bottom:575.058086pt;}
.yb2{bottom:575.146090pt;}
.y331{bottom:576.024801pt;}
.y8b{bottom:576.654166pt;}
.y307{bottom:577.223528pt;}
.y18{bottom:578.616931pt;}
.y67{bottom:579.080954pt;}
.y19a{bottom:579.583646pt;}
.y1c1{bottom:579.602313pt;}
.y41{bottom:579.850326pt;}
.y114{bottom:579.855659pt;}
.y274{bottom:580.019667pt;}
.y241{bottom:580.031668pt;}
.y168{bottom:580.875710pt;}
.yf7{bottom:583.199826pt;}
.y1f0{bottom:583.570512pt;}
.y217{bottom:585.029251pt;}
.y147{bottom:585.481274pt;}
.y229{bottom:586.758671pt;}
.y2a3{bottom:589.281464pt;}
.y330{bottom:589.308132pt;}
.yce{bottom:590.477524pt;}
.y125{bottom:590.926879pt;}
.ye5{bottom:593.125656pt;}
.yb1{bottom:593.212327pt;}
.y17{bottom:594.557728pt;}
.y273{bottom:594.632398pt;}
.y306{bottom:595.289764pt;}
.y32d{bottom:595.951131pt;}
.y8a{bottom:596.319149pt;}
.y66{bottom:597.147190pt;}
.y1ef{bottom:597.385869pt;}
.y199{bottom:597.649882pt;}
.y1c0{bottom:597.668550pt;}
.y40{bottom:597.916562pt;}
.y113{bottom:597.921896pt;}
.y240{bottom:598.097905pt;}
.y167{bottom:599.968665pt;}
.yf6{bottom:601.267396pt;}
.y32f{bottom:602.592796pt;}
.y216{bottom:603.096821pt;}
.y146{bottom:603.548844pt;}
.y2a2{bottom:603.894194pt;}
.y228{bottom:604.824908pt;}
.ycd{bottom:608.543760pt;}
.y124{bottom:608.993116pt;}
.y272{bottom:609.245129pt;}
.y16{bottom:610.498525pt;}
.y1ee{bottom:610.670533pt;}
.y2cf{bottom:610.922546pt;}
.ye4{bottom:611.191893pt;}
.yb0{bottom:611.278564pt;}
.y305{bottom:613.357334pt;}
.y89{bottom:614.385386pt;}
.y65{bottom:615.214760pt;}
.y198{bottom:615.717452pt;}
.y1bf{bottom:615.734786pt;}
.y32e{bottom:615.877460pt;}
.y3f{bottom:615.982799pt;}
.y112{bottom:615.988132pt;}
.y23f{bottom:616.164141pt;}
.y166{bottom:618.034901pt;}
.y2a1{bottom:618.506925pt;}
.y215{bottom:621.163058pt;}
.y145{bottom:621.615080pt;}
.y227{bottom:622.891144pt;}
.y271{bottom:623.857859pt;}
.y1ed{bottom:623.953864pt;}
.y15{bottom:626.439322pt;}
.ycc{bottom:626.611330pt;}
.y123{bottom:627.059353pt;}
.ye3{bottom:629.258129pt;}
.yaf{bottom:629.387469pt;}
.y32c{bottom:629.692818pt;}
.y304{bottom:631.423571pt;}
.y88{bottom:632.451622pt;}
.y2a0{bottom:633.119656pt;}
.y64{bottom:633.280997pt;}
.y197{bottom:633.783689pt;}
.y1be{bottom:633.802356pt;}
.y3e{bottom:634.050369pt;}
.y111{bottom:634.059703pt;}
.y23e{bottom:634.230378pt;}
.y165{bottom:636.101138pt;}
.y1ec{bottom:637.238528pt;}
.y270{bottom:638.469256pt;}
.y2ce{bottom:638.810607pt;}
.y214{bottom:639.229294pt;}
.y144{bottom:639.681317pt;}
.y226{bottom:640.957381pt;}
.y14{bottom:642.380119pt;}
.ycb{bottom:644.677567pt;}
.y122{bottom:645.125589pt;}
.yae{bottom:647.453706pt;}
.y303{bottom:649.489807pt;}
.y87{bottom:650.517859pt;}
.y1eb{bottom:650.521859pt;}
.y62{bottom:651.347234pt;}
.y1bd{bottom:651.992599pt;}
.y3d{bottom:652.116605pt;}
.y110{bottom:652.125939pt;}
.y164{bottom:654.168708pt;}
.y63{bottom:656.626164pt;}
.y213{bottom:657.295531pt;}
.y196{bottom:658.223577pt;}
.y13{bottom:658.322249pt;}
.y225{bottom:659.023617pt;}
.y29f{bottom:659.502308pt;}
.y32b{bottom:660.246345pt;}
.yca{bottom:662.743803pt;}
.y23d{bottom:662.823807pt;}
.y121{bottom:663.191826pt;}
.y26f{bottom:663.782522pt;}
.y1ea{bottom:663.806523pt;}
.yad{bottom:665.519942pt;}
.y302{bottom:667.556044pt;}
.y86{bottom:668.585429pt;}
.y1bc{bottom:670.058836pt;}
.y3c{bottom:670.182842pt;}
.y10f{bottom:670.197509pt;}
.y2cd{bottom:670.698868pt;}
.y163{bottom:672.234945pt;}
.y29e{bottom:674.115039pt;}
.y12{bottom:674.263046pt;}
.ye2{bottom:675.221761pt;}
.y1e9{bottom:677.091187pt;}
.y26e{bottom:678.395253pt;}
.yc9{bottom:680.810040pt;}
.y120{bottom:681.259396pt;}
.y2cc{bottom:685.311598pt;}
.y85{bottom:686.651665pt;}
.yac{bottom:686.942347pt;}
.y143{bottom:687.715719pt;}
.y1bb{bottom:688.125072pt;}
.y3b{bottom:688.249079pt;}
.y10e{bottom:688.263746pt;}
.y32a{bottom:688.674433pt;}
.y29d{bottom:688.727769pt;}
.y195{bottom:690.057169pt;}
.y11{bottom:690.203843pt;}
.y162{bottom:690.301181pt;}
.y1e8{bottom:690.374518pt;}
.y301{bottom:691.810590pt;}
.y26d{bottom:693.007983pt;}
.y224{bottom:695.157424pt;}
.y23c{bottom:695.502775pt;}
.yc8{bottom:698.876277pt;}
.y11f{bottom:699.325632pt;}
.y2cb{bottom:699.924329pt;}
.y212{bottom:702.861809pt;}
.y29c{bottom:703.340500pt;}
.y142{bottom:703.656516pt;}
.y1e7{bottom:703.659182pt;}
.y84{bottom:704.717902pt;}
.y10{bottom:706.144640pt;}
.y1ba{bottom:706.191309pt;}
.y3a{bottom:706.315315pt;}
.y10d{bottom:706.331316pt;}
.y26c{bottom:707.620714pt;}
.y194{bottom:708.123406pt;}
.y161{bottom:708.367418pt;}
.yab{bottom:710.328849pt;}
.y223{bottom:713.223661pt;}
.y23b{bottom:713.569011pt;}
.y2ca{bottom:714.537060pt;}
.yc7{bottom:716.943847pt;}
.y11e{bottom:717.391869pt;}
.y29b{bottom:717.953230pt;}
.yf{bottom:722.085437pt;}
.y26b{bottom:722.232111pt;}
.y83{bottom:722.784139pt;}
.y300{bottom:723.320165pt;}
.y1b9{bottom:724.258879pt;}
.y39{bottom:724.382885pt;}
.y10c{bottom:724.397553pt;}
.y193{bottom:726.189642pt;}
.y160{bottom:726.433654pt;}
.y2c9{bottom:729.149790pt;}
.y1e6{bottom:730.759204pt;}
.y222{bottom:731.289897pt;}
.y23a{bottom:731.636581pt;}
.y211{bottom:731.821924pt;}
.yc6{bottom:735.010083pt;}
.y26a{bottom:736.844842pt;}
.ye{bottom:738.026234pt;}
.yaa{bottom:740.323682pt;}
.y82{bottom:740.850375pt;}
.y2ff{bottom:741.386402pt;}
.y1b8{bottom:742.325116pt;}
.y38{bottom:742.449122pt;}
.y10b{bottom:742.463789pt;}
.y2c8{bottom:743.761187pt;}
.y192{bottom:744.257212pt;}
.y29a{bottom:744.334549pt;}
.y15f{bottom:744.501224pt;}
.y1e5{bottom:744.574561pt;}
.y210{bottom:745.105255pt;}
.y221{bottom:749.356134pt;}
.y239{bottom:749.702818pt;}
.yd{bottom:753.968364pt;}
.y2c7{bottom:758.373918pt;}
.ya9{bottom:758.389919pt;}
.y81{bottom:758.917945pt;}
.y299{bottom:758.947280pt;}
.y2fe{bottom:759.452639pt;}
.y1b7{bottom:760.391352pt;}
.y37{bottom:760.515358pt;}
.y269{bottom:762.158107pt;}
.y220{bottom:767.423704pt;}
.y238{bottom:767.769054pt;}
.y15e{bottom:769.841158pt;}
.yc{bottom:769.909161pt;}
.y20f{bottom:772.205276pt;}
.y2c6{bottom:772.986649pt;}
.y298{bottom:773.560011pt;}
.y1e4{bottom:775.128089pt;}
.ya8{bottom:776.456155pt;}
.y268{bottom:776.770838pt;}
.y2fd{bottom:777.518875pt;}
.y1b6{bottom:778.457589pt;}
.y36{bottom:778.581595pt;}
.y237{bottom:785.835291pt;}
.yb{bottom:785.849958pt;}
.y297{bottom:788.172741pt;}
.y10a{bottom:788.427421pt;}
.y191{bottom:791.366234pt;}
.y267{bottom:791.383568pt;}
.ya7{bottom:794.522392pt;}
.y2fc{bottom:795.585112pt;}
.y1b5{bottom:796.523825pt;}
.y35{bottom:796.647832pt;}
.y2c5{bottom:799.559977pt;}
.y296{bottom:802.785472pt;}
.y15d{bottom:803.242828pt;}
.y236{bottom:803.901528pt;}
.y1e3{bottom:804.088204pt;}
.y266{bottom:805.994966pt;}
.ya6{bottom:812.589962pt;}
.y20e{bottom:813.386002pt;}
.y2c4{bottom:814.172708pt;}
.y1b4{bottom:814.591395pt;}
.ya{bottom:814.715402pt;}
.y1e2{bottom:817.371534pt;}
.y295{bottom:817.398202pt;}
.y190{bottom:819.527642pt;}
.y265{bottom:820.607696pt;}
.y15c{bottom:821.310398pt;}
.y235{bottom:821.969098pt;}
.y1e0{bottom:824.014533pt;}
.y2c3{bottom:828.785438pt;}
.y18f{bottom:830.154840pt;}
.ya5{bottom:830.656199pt;}
.y329{bottom:832.117605pt;}
.y1b3{bottom:832.657632pt;}
.y61{bottom:832.781638pt;}
.y264{bottom:835.220427pt;}
.y15b{bottom:839.376635pt;}
.y234{bottom:840.035334pt;}
.y18e{bottom:840.783372pt;}
.y2e2{bottom:841.548743pt;}
.y20d{bottom:842.346116pt;}
.y2c2{bottom:843.398169pt;}
.y294{bottom:843.780855pt;}
.y1e1{bottom:843.939529pt;}
.ya4{bottom:848.722435pt;}
.y20c{bottom:848.987782pt;}
.y1b2{bottom:850.723869pt;}
.y60{bottom:850.847875pt;}
.y18d{bottom:851.410570pt;}
.y1df{bottom:857.756220pt;}
.y233{bottom:858.101571pt;}
.y293{bottom:858.393585pt;}
.y263{bottom:860.533692pt;}
.y18c{bottom:862.037768pt;}
.ya3{bottom:866.788672pt;}
.y9{bottom:867.879393pt;}
.y1b1{bottom:868.790105pt;}
.y5f{bottom:868.914111pt;}
.y20b{bottom:869.446138pt;}
.y15a{bottom:869.804823pt;}
.y2c1{bottom:869.971498pt;}
.y2e1{bottom:870.508858pt;}
.y1de{bottom:871.039551pt;}
.y18b{bottom:872.664966pt;}
.y292{bottom:873.006316pt;}
.y262{bottom:875.146423pt;}
.y20a{bottom:876.087803pt;}
.y232{bottom:876.167807pt;}
.y2e0{bottom:883.792189pt;}
.y18a{bottom:883.822857pt;}
.y1dd{bottom:884.324215pt;}
.y2c0{bottom:884.584228pt;}
.ya2{bottom:884.854908pt;}
.y8{bottom:886.477656pt;}
.y5e{bottom:886.980348pt;}
.y261{bottom:889.757820pt;}
.y1d9{bottom:890.965881pt;}
.y231{bottom:894.234044pt;}
.y189{bottom:894.451388pt;}
.y209{bottom:896.546160pt;}
.y2de{bottom:897.076853pt;}
.y1dc{bottom:897.608879pt;}
.y2bf{bottom:899.196959pt;}
.y291{bottom:899.387635pt;}
.ya1{bottom:902.922478pt;}
.y260{bottom:904.370551pt;}
.y5d{bottom:905.047918pt;}
.y7{bottom:905.075919pt;}
.y188{bottom:905.078586pt;}
.y208{bottom:909.829490pt;}
.y2df{bottom:910.361517pt;}
.y1db{bottom:910.892210pt;}
.y230{bottom:912.301614pt;}
.y2be{bottom:913.809689pt;}
.y290{bottom:914.000366pt;}
.y187{bottom:915.705784pt;}
.y207{bottom:916.472489pt;}
.y141{bottom:922.316781pt;}
.y5c{bottom:923.114155pt;}
.y6{bottom:923.672849pt;}
.y1da{bottom:924.176874pt;}
.y186{bottom:926.332982pt;}
.y28f{bottom:928.613096pt;}
.y25f{bottom:929.683816pt;}
.y22f{bottom:930.367851pt;}
.y206{bottom:936.929512pt;}
.y185{bottom:936.960180pt;}
.y2dd{bottom:937.460205pt;}
.y1d8{bottom:937.992232pt;}
.y2bd{bottom:940.383018pt;}
.y5b{bottom:941.180391pt;}
.y5{bottom:942.271112pt;}
.y205{bottom:943.571177pt;}
.y25e{bottom:944.296547pt;}
.y184{bottom:947.587378pt;}
.y22e{bottom:948.434087pt;}
.ya0{bottom:948.884776pt;}
.y2dc{bottom:950.744869pt;}
.y140{bottom:951.276896pt;}
.y28e{bottom:954.995749pt;}
.y183{bottom:958.214576pt;}
.y5a{bottom:959.246628pt;}
.y204{bottom:964.029534pt;}
.y13f{bottom:964.560227pt;}
.y22d{bottom:966.500324pt;}
.y182{bottom:968.841774pt;}
.y25d{bottom:969.608479pt;}
.y1d7{bottom:971.203226pt;}
.y59{bottom:977.312864pt;}
.y9f{bottom:977.844891pt;}
.y180{bottom:980.000999pt;}
.y4{bottom:981.623747pt;}
.y181{bottom:982.325115pt;}
.y25c{bottom:984.221210pt;}
.y22c{bottom:984.853241pt;}
.y9e{bottom:991.129555pt;}
.y13e{bottom:991.660248pt;}
.y58{bottom:995.380434pt;}
.y25b{bottom:998.833940pt;}
.y3{bottom:1002.878143pt;}
.y9d{bottom:1004.412886pt;}
.y13c{bottom:1004.612896pt;}
.y13d{bottom:1004.944913pt;}
.y57{bottom:1013.446671pt;}
.y9c{bottom:1018.228243pt;}
.hb{height:21.934904pt;}
.h11{height:25.590476pt;}
.ha{height:29.246416pt;}
.hd{height:32.089361pt;}
.h2{height:32.900710pt;}
.hc{height:32.902355pt;}
.h12{height:34.097935pt;}
.h15{height:36.451655pt;}
.h7{height:36.557928pt;}
.h16{height:37.091288pt;}
.hf{height:38.751061pt;}
.h10{height:39.914756pt;}
.h9{height:40.029124pt;}
.h8{height:40.031126pt;}
.he{height:41.485745pt;}
.h6{height:42.785815pt;}
.h5{height:43.869807pt;}
.h4{height:45.463914pt;}
.h18{height:50.356805pt;}
.h17{height:50.362138pt;}
.h3{height:54.556544pt;}
.h14{height:59.469017pt;}
.h13{height:59.474351pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x40{left:93.384670pt;}
.x14{left:94.475391pt;}
.x3{left:95.819458pt;}
.x29{left:102.446456pt;}
.x31{left:103.581180pt;}
.x38{left:105.793290pt;}
.x56{left:107.361369pt;}
.x30{left:108.820108pt;}
.x5{left:109.842826pt;}
.x18{left:111.834926pt;}
.x43{left:113.312333pt;}
.x1c{left:115.996467pt;}
.x13{left:117.153858pt;}
.x6{left:122.276781pt;}
.x19{left:123.567512pt;}
.x2d{left:126.815675pt;}
.x8{left:129.911829pt;}
.x33{left:136.274814pt;}
.x3d{left:146.252646pt;}
.x9{left:153.823692pt;}
.x7{left:164.233545pt;}
.x1{left:170.098667pt;}
.x3f{left:175.067420pt;}
.x22{left:178.944948pt;}
.x53{left:180.867710pt;}
.x2a{left:185.966632pt;}
.x44{left:189.030785pt;}
.x39{left:191.813591pt;}
.x23{left:197.127190pt;}
.x52{left:199.499309pt;}
.x3c{left:202.918146pt;}
.x3e{left:208.495758pt;}
.x12{left:210.337184pt;}
.x34{left:211.993267pt;}
.x2{left:226.120000pt;}
.x45{left:227.342034pt;}
.x46{left:231.904929pt;}
.x42{left:242.217444pt;}
.x35{left:243.481508pt;}
.x3b{left:244.584229pt;}
.x28{left:257.343534pt;}
.x21{left:260.326350pt;}
.x3a{left:268.046736pt;}
.x2c{left:269.498808pt;}
.x1d{left:273.129657pt;}
.x55{left:275.239095pt;}
.x54{left:281.002050pt;}
.x1a{left:284.336884pt;}
.x2b{left:288.442422pt;}
.x1b{left:290.314516pt;}
.x1e{left:300.344351pt;}
.x24{left:302.517793pt;}
.xd{left:305.192593pt;}
.xb{left:308.182076pt;}
.x50{left:317.126523pt;}
.x37{left:318.279914pt;}
.x2e{left:320.134673pt;}
.x25{left:339.042285pt;}
.x36{left:344.682567pt;}
.xa{left:347.037352pt;}
.x26{left:357.224528pt;}
.x2f{left:358.541927pt;}
.x51{left:360.287348pt;}
.x4{left:362.851476pt;}
.xc{left:378.696268pt;}
.x17{left:380.180000pt;}
.x27{left:407.101688pt;}
.x15{left:408.192409pt;}
.x41{left:421.847759pt;}
.x16{left:422.738470pt;}
.x1f{left:425.551944pt;}
.x20{left:437.284531pt;}
.x5a{left:438.816607pt;}
.x32{left:440.920712pt;}
.x4e{left:485.089587pt;}
.x4f{left:502.073103pt;}
.x11{left:516.339150pt;}
.xf{left:520.659366pt;}
.xe{left:539.581645pt;}
.x4b{left:552.603630pt;}
.x10{left:562.616130pt;}
.x57{left:567.488374pt;}
.x58{left:610.329182pt;}
.x4c{left:611.787922pt;}
.x4d{left:626.702001pt;}
.x47{left:635.563777pt;}
.x48{left:645.158924pt;}
.x4a{left:652.987315pt;}
.x59{left:656.159474pt;}
.x49{left:664.546560pt;}
}




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