
    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_90184f5b3698cc05f8c97f9e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0763674deada73979dfc2971.woff')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_f47443aebef06389cc73fab7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_01d11ef1ea948c3ae337439a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a0017e6a24e2ad0ad91364b0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_caa68a5f4c140a830591ec81.woff')format("woff");}.ff6{font-family:ff6;line-height:0.733000;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_655ee271d99b31b25ebf9cf6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.735000;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_00db6d8f5eaf4cc3573bb9a4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.555000;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;}
.m6{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);}
.m25{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);}
.m26{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);}
.m4{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);}
.mf{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);}
.md{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);}
.m1a{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);}
.m12{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);}
.m3{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);}
.m8{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);}
.mc{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);}
.m18{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);}
.m21{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);}
.m1f{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);}
.m14{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m13{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);}
.m16{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);}
.m27{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);}
.m24{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);}
.m15{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);}
.m22{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);}
.m1{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);}
.me{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);}
.m19{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);}
.m5{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);}
.m10{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);}
.m9{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);}
.mb{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);}
.m1d{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);}
.m20{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);}
.m23{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);}
.m7{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);}
.m1c{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);}
.m28{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);}
.m1e{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.v5{vertical-align:-9.486000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:9.486000px;}
.v4{vertical-align:19.524000px;}
.v3{vertical-align:24.954000px;}
.v2{vertical-align:55.542000px;}
.v1{vertical-align:56.676000px;}
.ls1{letter-spacing:0.000000px;}
.ls31{letter-spacing:2.474712px;}
.ls2f{letter-spacing:2.543454px;}
.ls26{letter-spacing:2.797517px;}
.ls1f{letter-spacing:2.988600px;}
.ls0{letter-spacing:2.988780px;}
.ls25{letter-spacing:4.454774px;}
.ls1d{letter-spacing:4.464298px;}
.ls20{letter-spacing:4.465430px;}
.ls27{letter-spacing:4.519066px;}
.ls21{letter-spacing:4.542461px;}
.ls1b{letter-spacing:4.542614px;}
.ls1e{letter-spacing:4.544640px;}
.ls23{letter-spacing:4.564291px;}
.lsa{letter-spacing:5.702988px;}
.ls15{letter-spacing:5.708988px;}
.ls2e{letter-spacing:5.740914px;}
.ls5{letter-spacing:5.774328px;}
.ls7{letter-spacing:5.840574px;}
.ls12{letter-spacing:5.846574px;}
.ls28{letter-spacing:5.971622px;}
.ls6{letter-spacing:7.561620px;}
.ls29{letter-spacing:11.889446px;}
.ls17{letter-spacing:13.679658px;}
.ls9{letter-spacing:14.779530px;}
.ls14{letter-spacing:15.948144px;}
.ls16{letter-spacing:16.429338px;}
.ls24{letter-spacing:16.440600px;}
.ls34{letter-spacing:17.048016px;}
.ls2b{letter-spacing:17.116758px;}
.ls2a{letter-spacing:17.185500px;}
.ls32{letter-spacing:17.460468px;}
.ls33{letter-spacing:17.666694px;}
.ls2d{letter-spacing:17.735436px;}
.ls8{letter-spacing:17.825100px;}
.lsb{letter-spacing:17.831100px;}
.ls35{letter-spacing:17.872920px;}
.lsd{letter-spacing:18.354114px;}
.ls13{letter-spacing:18.983100px;}
.ls30{letter-spacing:19.453986px;}
.ls1a{letter-spacing:20.622600px;}
.lsc{letter-spacing:21.172536px;}
.ls11{letter-spacing:22.134924px;}
.ls19{letter-spacing:23.097312px;}
.lsf{letter-spacing:24.197184px;}
.ls10{letter-spacing:24.953346px;}
.ls18{letter-spacing:25.915734px;}
.lse{letter-spacing:27.015606px;}
.ls2c{letter-spacing:27.084348px;}
.ls1c{letter-spacing:105.762600px;}
.ls22{letter-spacing:105.768600px;}
.ls2{letter-spacing:957.795000px;}
.ls4{letter-spacing:958.653000px;}
.ls3{letter-spacing:958.995000px;}
.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;}
}
.ws69{word-spacing:-17.185500px;}
.ws10e{word-spacing:-13.449600px;}
.ws171{word-spacing:-5.843070px;}
.wse4{word-spacing:-3.849552px;}
.ws8b{word-spacing:-3.780810px;}
.wsd3{word-spacing:-3.712068px;}
.ws42{word-spacing:-3.643326px;}
.ws118{word-spacing:-3.574584px;}
.ws15f{word-spacing:-3.505842px;}
.ws3b{word-spacing:-3.437100px;}
.wseb{word-spacing:-3.368358px;}
.ws8c{word-spacing:-3.299616px;}
.ws107{word-spacing:-3.230874px;}
.ws38{word-spacing:-3.162132px;}
.wsaf{word-spacing:-3.093390px;}
.ws43{word-spacing:-3.024648px;}
.ws11{word-spacing:-2.988780px;}
.wsd5{word-spacing:-2.955906px;}
.wsc3{word-spacing:-2.887164px;}
.ws33{word-spacing:-2.818422px;}
.ws39{word-spacing:-2.749680px;}
.wsfe{word-spacing:-2.689920px;}
.ws7c{word-spacing:-2.680938px;}
.wsdc{word-spacing:-2.612196px;}
.wse0{word-spacing:-2.543454px;}
.ws137{word-spacing:-2.474712px;}
.ws82{word-spacing:-2.405970px;}
.wsa3{word-spacing:-2.337228px;}
.wsc1{word-spacing:-2.268486px;}
.ws10d{word-spacing:-2.205734px;}
.ws138{word-spacing:-2.199744px;}
.ws9f{word-spacing:-2.131002px;}
.ws2f{word-spacing:-2.062260px;}
.ws146{word-spacing:-2.044339px;}
.ws86{word-spacing:-1.993518px;}
.ws53{word-spacing:-1.924776px;}
.wsdd{word-spacing:-1.856034px;}
.ws3a{word-spacing:-1.787292px;}
.ws150{word-spacing:-1.721549px;}
.ws7d{word-spacing:-1.718550px;}
.ws148{word-spacing:-1.667750px;}
.wsc2{word-spacing:-1.649808px;}
.ws11b{word-spacing:-1.613952px;}
.ws93{word-spacing:-1.581066px;}
.wsd4{word-spacing:-1.512324px;}
.wsa7{word-spacing:-1.443582px;}
.ws11d{word-spacing:-1.398758px;}
.wsb9{word-spacing:-1.374840px;}
.ws5c{word-spacing:-1.306098px;}
.ws135{word-spacing:-1.291162px;}
.ws11e{word-spacing:-1.237363px;}
.ws13b{word-spacing:-1.237356px;}
.ws55{word-spacing:-1.168614px;}
.wsa9{word-spacing:-1.099872px;}
.ws90{word-spacing:-1.031130px;}
.ws52{word-spacing:-0.962388px;}
.ws12b{word-spacing:-0.893646px;}
.wsc5{word-spacing:-0.824904px;}
.ws35{word-spacing:-0.756162px;}
.wsb3{word-spacing:-0.687420px;}
.wscb{word-spacing:-0.618678px;}
.ws31{word-spacing:-0.549936px;}
.ws22{word-spacing:-0.481194px;}
.ws6a{word-spacing:-0.412452px;}
.ws40{word-spacing:-0.343710px;}
.wsd{word-spacing:-0.298878px;}
.ws6c{word-spacing:-0.274968px;}
.ws102{word-spacing:-0.268992px;}
.wsb{word-spacing:-0.239102px;}
.wsdf{word-spacing:-0.215194px;}
.ws16{word-spacing:-0.206226px;}
.wsc{word-spacing:-0.179327px;}
.wsff{word-spacing:-0.161395px;}
.ws24{word-spacing:-0.137484px;}
.ws11a{word-spacing:-0.107597px;}
.ws1e{word-spacing:-0.068742px;}
.ws4{word-spacing:-0.059776px;}
.wsfc{word-spacing:-0.053798px;}
.ws1{word-spacing:-0.047821px;}
.ws2{word-spacing:0.000000px;}
.ws112{word-spacing:0.053798px;}
.wsa{word-spacing:0.059776px;}
.ws34{word-spacing:0.068742px;}
.ws12{word-spacing:0.107597px;}
.ws30{word-spacing:0.137484px;}
.ws14d{word-spacing:0.161395px;}
.wsf{word-spacing:0.179327px;}
.ws2a{word-spacing:0.206226px;}
.ws140{word-spacing:0.215194px;}
.ws7{word-spacing:0.239102px;}
.ws14c{word-spacing:0.268992px;}
.ws28{word-spacing:0.274968px;}
.ws9{word-spacing:0.298878px;}
.ws12f{word-spacing:0.322790px;}
.ws26{word-spacing:0.343710px;}
.ws2c{word-spacing:0.412452px;}
.ws98{word-spacing:0.481194px;}
.ws13d{word-spacing:0.537984px;}
.wsed{word-spacing:0.549936px;}
.ws21{word-spacing:0.618678px;}
.ws79{word-spacing:0.687420px;}
.ws78{word-spacing:0.756162px;}
.ws2e{word-spacing:0.824904px;}
.ws36{word-spacing:0.893646px;}
.ws56{word-spacing:0.962388px;}
.ws20{word-spacing:1.031130px;}
.ws3e{word-spacing:1.099872px;}
.ws13e{word-spacing:1.129766px;}
.wsae{word-spacing:1.168614px;}
.ws9b{word-spacing:1.237356px;}
.ws1f{word-spacing:1.306098px;}
.ws88{word-spacing:1.374840px;}
.wsa4{word-spacing:1.443582px;}
.ws41{word-spacing:1.512324px;}
.ws12a{word-spacing:1.581066px;}
.ws13f{word-spacing:1.613952px;}
.ws59{word-spacing:1.649808px;}
.wsd2{word-spacing:1.718550px;}
.wsca{word-spacing:1.787292px;}
.wsdb{word-spacing:1.856034px;}
.ws10{word-spacing:1.912819px;}
.wsec{word-spacing:1.924776px;}
.ws130{word-spacing:1.990541px;}
.ws2d{word-spacing:1.993518px;}
.ws67{word-spacing:2.062260px;}
.ws4c{word-spacing:2.131002px;}
.ws8{word-spacing:2.151922px;}
.wsb6{word-spacing:2.199744px;}
.wse{word-spacing:2.211697px;}
.wsf2{word-spacing:2.268486px;}
.ws29{word-spacing:2.337228px;}
.wsac{word-spacing:2.405970px;}
.wse1{word-spacing:2.474712px;}
.ws3f{word-spacing:2.543454px;}
.wsb2{word-spacing:2.612196px;}
.ws77{word-spacing:2.680938px;}
.ws32{word-spacing:2.749680px;}
.ws7b{word-spacing:2.818422px;}
.wsf3{word-spacing:2.887164px;}
.ws3c{word-spacing:2.955906px;}
.ws99{word-spacing:3.024648px;}
.ws132{word-spacing:3.066509px;}
.wsa2{word-spacing:3.093390px;}
.ws6{word-spacing:3.108331px;}
.ws46{word-spacing:3.162132px;}
.ws54{word-spacing:3.230874px;}
.wsd1{word-spacing:3.299616px;}
.ws103{word-spacing:3.335501px;}
.ws58{word-spacing:3.368358px;}
.ws119{word-spacing:3.437100px;}
.ws47{word-spacing:3.505842px;}
.ws124{word-spacing:3.574584px;}
.ws139{word-spacing:3.643326px;}
.ws147{word-spacing:3.658291px;}
.wsc4{word-spacing:3.712068px;}
.ws111{word-spacing:3.712090px;}
.ws7e{word-spacing:3.780810px;}
.wscc{word-spacing:3.849552px;}
.ws57{word-spacing:3.918294px;}
.ws110{word-spacing:3.981082px;}
.ws9d{word-spacing:3.987036px;}
.ws2b{word-spacing:4.055778px;}
.wsc8{word-spacing:4.124520px;}
.ws149{word-spacing:4.193262px;}
.ws9a{word-spacing:4.262004px;}
.ws4b{word-spacing:4.330746px;}
.ws14e{word-spacing:4.357670px;}
.ws94{word-spacing:4.399488px;}
.ws87{word-spacing:4.468230px;}
.ws89{word-spacing:4.536972px;}
.ws5{word-spacing:4.602721px;}
.ws14{word-spacing:4.605714px;}
.ws4d{word-spacing:4.674456px;}
.ws131{word-spacing:4.680461px;}
.wsa1{word-spacing:4.743198px;}
.ws101{word-spacing:4.788058px;}
.ws1d{word-spacing:4.811940px;}
.wscf{word-spacing:4.880682px;}
.wse8{word-spacing:4.949424px;}
.ws1c{word-spacing:5.018166px;}
.ws8d{word-spacing:5.086908px;}
.ws70{word-spacing:5.155650px;}
.ws12c{word-spacing:5.164646px;}
.wsb8{word-spacing:5.224392px;}
.wse3{word-spacing:5.293134px;}
.ws5b{word-spacing:5.361876px;}
.ws5d{word-spacing:5.430618px;}
.wsc7{word-spacing:5.499360px;}
.ws8f{word-spacing:5.568102px;}
.ws157{word-spacing:5.593141px;}
.ws50{word-spacing:5.636844px;}
.ws37{word-spacing:5.705586px;}
.wsd9{word-spacing:5.774328px;}
.ws120{word-spacing:5.810227px;}
.ws7a{word-spacing:5.843070px;}
.ws44{word-spacing:5.911812px;}
.ws105{word-spacing:5.971622px;}
.ws169{word-spacing:5.980500px;}
.ws48{word-spacing:5.980554px;}
.ws16b{word-spacing:6.049296px;}
.ws14f{word-spacing:6.079219px;}
.ws4f{word-spacing:6.118038px;}
.ws7f{word-spacing:6.186780px;}
.ws96{word-spacing:6.255522px;}
.wse6{word-spacing:6.324264px;}
.ws8a{word-spacing:6.393006px;}
.ws5a{word-spacing:6.461748px;}
.ws4a{word-spacing:6.530490px;}
.wsb5{word-spacing:6.599232px;}
.ws74{word-spacing:6.667974px;}
.ws143{word-spacing:6.736716px;}
.wsb1{word-spacing:6.805458px;}
.wsce{word-spacing:6.874200px;}
.ws6f{word-spacing:6.942942px;}
.ws72{word-spacing:7.011684px;}
.ws100{word-spacing:7.047590px;}
.wsef{word-spacing:7.080426px;}
.ws18{word-spacing:7.149168px;}
.wse5{word-spacing:7.155187px;}
.ws142{word-spacing:7.208986px;}
.wsa6{word-spacing:7.217910px;}
.ws19{word-spacing:7.286652px;}
.ws51{word-spacing:7.355394px;}
.ws25{word-spacing:7.424136px;}
.ws3d{word-spacing:7.492878px;}
.ws172{word-spacing:7.549728px;}
.ws158{word-spacing:7.561620px;}
.ws64{word-spacing:7.630362px;}
.wsaa{word-spacing:7.699104px;}
.wsa0{word-spacing:7.767846px;}
.ws9c{word-spacing:7.836588px;}
.wsda{word-spacing:7.905330px;}
.ws23{word-spacing:7.974072px;}
.ws63{word-spacing:8.042814px;}
.wscd{word-spacing:8.111556px;}
.ws45{word-spacing:8.180298px;}
.ws27{word-spacing:8.249040px;}
.wsc6{word-spacing:8.317782px;}
.wsa8{word-spacing:8.386524px;}
.ws1b{word-spacing:8.455266px;}
.wsee{word-spacing:8.524008px;}
.wse7{word-spacing:8.592750px;}
.ws65{word-spacing:8.661492px;}
.ws60{word-spacing:8.730234px;}
.ws1a{word-spacing:8.798976px;}
.ws5f{word-spacing:8.867718px;}
.ws10f{word-spacing:8.930534px;}
.wsb7{word-spacing:8.936460px;}
.ws97{word-spacing:9.005202px;}
.ws121{word-spacing:9.038131px;}
.wsa5{word-spacing:9.073944px;}
.ws84{word-spacing:9.142686px;}
.ws66{word-spacing:9.211428px;}
.ws91{word-spacing:9.280170px;}
.wsb0{word-spacing:9.348912px;}
.ws122{word-spacing:9.360922px;}
.ws17{word-spacing:9.417654px;}
.ws92{word-spacing:9.486396px;}
.wsc9{word-spacing:9.555138px;}
.ws95{word-spacing:9.623880px;}
.ws170{word-spacing:9.761364px;}
.ws123{word-spacing:9.830106px;}
.ws108{word-spacing:9.898848px;}
.wsd0{word-spacing:9.967590px;}
.ws4e{word-spacing:10.036332px;}
.ws85{word-spacing:10.105074px;}
.ws165{word-spacing:10.173816px;}
.wsf7{word-spacing:10.242558px;}
.ws49{word-spacing:10.311300px;}
.ws16c{word-spacing:10.380042px;}
.wsf9{word-spacing:10.448784px;}
.ws76{word-spacing:10.655010px;}
.wsbd{word-spacing:10.723752px;}
.wsf1{word-spacing:10.792494px;}
.wsb4{word-spacing:10.929978px;}
.wsad{word-spacing:10.998720px;}
.ws114{word-spacing:11.082470px;}
.wsf5{word-spacing:11.136204px;}
.ws6b{word-spacing:11.204946px;}
.wsfa{word-spacing:11.273688px;}
.ws5e{word-spacing:11.342430px;}
.ws71{word-spacing:11.411172px;}
.ws145{word-spacing:11.512858px;}
.ws125{word-spacing:11.548656px;}
.ws129{word-spacing:11.617398px;}
.ws156{word-spacing:11.686140px;}
.ws16f{word-spacing:11.754882px;}
.ws15e{word-spacing:11.823624px;}
.ws126{word-spacing:11.892366px;}
.ws14a{word-spacing:11.961108px;}
.ws15{word-spacing:12.029850px;}
.ws151{word-spacing:12.236076px;}
.ws10b{word-spacing:12.304818px;}
.ws13a{word-spacing:12.373560px;}
.ws141{word-spacing:12.535027px;}
.wsab{word-spacing:12.717270px;}
.ws9e{word-spacing:13.198464px;}
.ws113{word-spacing:13.342003px;}
.wsde{word-spacing:13.395802px;}
.ws15d{word-spacing:13.404690px;}
.ws154{word-spacing:13.542174px;}
.ws6e{word-spacing:13.885884px;}
.ws16e{word-spacing:14.160852px;}
.wsbe{word-spacing:14.367078px;}
.ws153{word-spacing:14.435820px;}
.ws117{word-spacing:14.504562px;}
.wsc0{word-spacing:14.642046px;}
.wsf4{word-spacing:14.710788px;}
.ws12d{word-spacing:14.794560px;}
.ws163{word-spacing:14.848272px;}
.ws159{word-spacing:15.191982px;}
.ws15b{word-spacing:15.535692px;}
.ws11c{word-spacing:15.655334px;}
.ws128{word-spacing:15.673176px;}
.ws83{word-spacing:15.741918px;}
.ws13c{word-spacing:15.948144px;}
.ws115{word-spacing:16.016886px;}
.ws162{word-spacing:16.360596px;}
.ws155{word-spacing:16.498080px;}
.ws160{word-spacing:16.566822px;}
.ws0{word-spacing:16.880672px;}
.ws133{word-spacing:16.892698px;}
.ws134{word-spacing:17.000294px;}
.ws116{word-spacing:17.597952px;}
.wsf6{word-spacing:17.666694px;}
.ws152{word-spacing:17.872920px;}
.ws127{word-spacing:18.216630px;}
.ws3{word-spacing:18.470660px;}
.wsbc{word-spacing:18.491598px;}
.ws15c{word-spacing:18.560340px;}
.ws61{word-spacing:18.697824px;}
.ws10a{word-spacing:19.247760px;}
.wsf0{word-spacing:19.349392px;}
.ws164{word-spacing:19.660212px;}
.ws62{word-spacing:20.347632px;}
.ws8e{word-spacing:20.897568px;}
.ws109{word-spacing:21.241278px;}
.ws6d{word-spacing:21.516246px;}
.wsbb{word-spacing:21.653730px;}
.wsba{word-spacing:21.722472px;}
.wsea{word-spacing:21.859956px;}
.wse9{word-spacing:21.928698px;}
.ws136{word-spacing:22.134924px;}
.ws10c{word-spacing:22.164941px;}
.ws15a{word-spacing:23.922216px;}
.ws11f{word-spacing:24.478272px;}
.wsbf{word-spacing:24.884604px;}
.ws104{word-spacing:25.070054px;}
.ws75{word-spacing:25.090830px;}
.ws81{word-spacing:25.640766px;}
.wsd8{word-spacing:26.053218px;}
.wsf8{word-spacing:28.802898px;}
.wsd7{word-spacing:35.677098px;}
.wsd6{word-spacing:35.745840px;}
.ws68{word-spacing:50.181660px;}
.ws16d{word-spacing:50.525370px;}
.ws73{word-spacing:50.662854px;}
.ws144{word-spacing:51.556500px;}
.ws80{word-spacing:52.862598px;}
.ws161{word-spacing:58.263667px;}
.ws166{word-spacing:63.482112px;}
.ws16a{word-spacing:74.456986px;}
.ws13{word-spacing:77.630692px;}
.wsfb{word-spacing:106.843622px;}
.ws168{word-spacing:112.438656px;}
.ws167{word-spacing:112.492454px;}
.wsfd{word-spacing:225.953280px;}
.ws106{word-spacing:226.007078px;}
.ws12e{word-spacing:246.073882px;}
.ws14b{word-spacing:940.539258px;}
.wse2{word-spacing:943.119258px;}
._25{margin-left:-9.123670px;}
._3{margin-left:-7.643638px;}
._3a{margin-left:-6.530490px;}
._19{margin-left:-5.499360px;}
._6{margin-left:-4.465951px;}
._2{margin-left:-3.305357px;}
._1{margin-left:-2.169140px;}
._4{margin-left:-1.161074px;}
._0{width:1.386797px;}
._6c{width:2.612276px;}
._23{width:3.944395px;}
._48{width:5.155650px;}
._6b{width:12.402370px;}
._5c{width:13.449600px;}
._27{width:15.062033px;}
._c{width:16.856104px;}
._7{width:18.505098px;}
._8{width:19.785724px;}
._13{width:20.798222px;}
._12{width:21.959297px;}
._21{width:23.234796px;}
._14{width:24.334668px;}
._9{width:25.763284px;}
._18{width:27.122486px;}
._5{width:28.273859px;}
._28{width:29.345299px;}
._17{width:30.353360px;}
._1c{width:31.415094px;}
._d{width:33.087568px;}
._16{width:35.142232px;}
._f{width:37.051938px;}
._15{width:38.907972px;}
._1a{width:41.038974px;}
._20{width:42.688782px;}
._24{width:43.796189px;}
._10{width:45.064148px;}
._11{width:46.482383px;}
._1d{width:48.600594px;}
._e{width:50.112918px;}
._6a{width:51.487758px;}
._26{width:53.656898px;}
._3b{width:54.962996px;}
._1b{width:56.029986px;}
._a{width:59.476722px;}
._b{width:60.749228px;}
._1f{width:67.367160px;}
._1e{width:68.742000px;}
._22{width:70.116840px;}
._51{width:71.713267px;}
._5e{width:76.208822px;}
._39{width:77.708400px;}
._54{width:83.979302px;}
._4a{width:87.207206px;}
._67{width:94.183474px;}
._5b{width:98.535158px;}
._62{width:99.993701px;}
._69{width:104.213807px;}
._41{width:106.897421px;}
._53{width:110.071526px;}
._2b{width:113.061746px;}
._3f{width:126.318643px;}
._4b{width:129.277555px;}
._55{width:130.999104px;}
._57{width:133.742822px;}
._5a{width:138.973190px;}
._4d{width:142.135373px;}
._68{width:147.569011px;}
._63{width:150.958310px;}
._56{width:160.588224px;}
._50{width:166.044353px;}
._5d{width:170.410841px;}
._66{width:172.030079px;}
._64{width:176.996736px;}
._5f{width:181.425409px;}
._4c{width:182.968358px;}
._4e{width:191.661209px;}
._30{width:198.063218px;}
._4f{width:218.421504px;}
._32{width:225.432500px;}
._60{width:235.206605px;}
._45{width:239.402880px;}
._3d{width:246.127680px;}
._37{width:250.825345px;}
._3e{width:259.254490px;}
._38{width:260.293864px;}
._2c{width:277.384550px;}
._65{width:281.881126px;}
._29{width:287.391053px;}
._47{width:294.707635px;}
._2d{width:298.419725px;}
._40{width:304.283750px;}
._34{width:306.883278px;}
._2a{width:308.318630px;}
._35{width:310.201574px;}
._59{width:324.458150px;}
._2e{width:355.930214px;}
._31{width:359.480909px;}
._36{width:384.927552px;}
._2f{width:393.373901px;}
._33{width:440.931686px;}
._61{width:442.396166px;}
._44{width:451.564380px;}
._58{width:478.751962px;}
._52{width:599.260378px;}
._49{width:611.687808px;}
._42{width:626.482368px;}
._43{width:631.001434px;}
._3c{width:899.521171px;}
._46{width:985.819086px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs7{font-size:41.842800px;}
.fs0{font-size:47.820600px;}
.fs6{font-size:50.869800px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:68.742000px;}
.fs8{font-size:71.731200px;}
.fs2{font-size:77.708400px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y54{bottom:41.308500px;}
.y85{bottom:41.592000px;}
.y55{bottom:43.522500px;}
.y9c{bottom:87.351000px;}
.y238{bottom:89.362500px;}
.y83{bottom:89.719500px;}
.y29a{bottom:90.603000px;}
.y53{bottom:90.733500px;}
.y1b5{bottom:92.352000px;}
.y147{bottom:94.417500px;}
.ybc{bottom:94.584000px;}
.y15a{bottom:95.431500px;}
.ydc{bottom:95.598000px;}
.y1f4{bottom:97.858500px;}
.y1f9{bottom:100.462500px;}
.y222{bottom:100.585500px;}
.y12d{bottom:101.409000px;}
.y1aa{bottom:102.081000px;}
.y161{bottom:104.295000px;}
.y180{bottom:104.694000px;}
.y1d6{bottom:106.302000px;}
.y100{bottom:108.145500px;}
.y11f{bottom:109.159500px;}
.y25{bottom:109.902000px;}
.y9b{bottom:110.148000px;}
.y237{bottom:112.159500px;}
.y82{bottom:112.516500px;}
.y299{bottom:113.400000px;}
.y52{bottom:113.530500px;}
.y1b4{bottom:115.149000px;}
.y146{bottom:117.214500px;}
.ybb{bottom:117.381000px;}
.y159{bottom:118.228500px;}
.ydb{bottom:118.395000px;}
.y25c{bottom:120.451500px;}
.y1f3{bottom:120.655500px;}
.y1f8{bottom:123.259500px;}
.y221{bottom:123.382500px;}
.y12c{bottom:124.206000px;}
.y1a9{bottom:124.878000px;}
.y160{bottom:127.092000px;}
.y17f{bottom:127.491000px;}
.y1d5{bottom:129.099000px;}
.yff{bottom:130.942500px;}
.y11e{bottom:131.956500px;}
.y24{bottom:132.699000px;}
.y9a{bottom:132.946500px;}
.y236{bottom:134.956500px;}
.y81{bottom:135.313500px;}
.y298{bottom:136.197000px;}
.y51{bottom:136.327500px;}
.y1b3{bottom:137.946000px;}
.y145{bottom:140.011500px;}
.yba{bottom:140.178000px;}
.y276{bottom:140.649000px;}
.y158{bottom:141.025500px;}
.yda{bottom:141.192000px;}
.y25b{bottom:143.248500px;}
.y1f2{bottom:143.452500px;}
.y1f7{bottom:146.056500px;}
.y220{bottom:146.179500px;}
.y12b{bottom:147.003000px;}
.y1a8{bottom:147.675000px;}
.y15f{bottom:149.889000px;}
.y17e{bottom:150.288000px;}
.y1d4{bottom:151.896000px;}
.yfe{bottom:153.739500px;}
.y11d{bottom:154.753500px;}
.y23{bottom:155.496000px;}
.y235{bottom:157.753500px;}
.y80{bottom:158.110500px;}
.y297{bottom:158.994000px;}
.y50{bottom:159.124500px;}
.y2a1{bottom:159.210000px;}
.y1b2{bottom:160.743000px;}
.y144{bottom:162.808500px;}
.yb9{bottom:162.975000px;}
.y157{bottom:163.822500px;}
.yd9{bottom:163.989000px;}
.y25a{bottom:166.045500px;}
.y1f1{bottom:166.249500px;}
.y275{bottom:166.722000px;}
.y1f6{bottom:168.853500px;}
.y21f{bottom:168.978000px;}
.y12a{bottom:169.800000px;}
.y1a7{bottom:170.472000px;}
.y96{bottom:171.982500px;}
.y15e{bottom:172.686000px;}
.y99{bottom:172.996500px;}
.y17d{bottom:173.085000px;}
.y1d3{bottom:174.693000px;}
.yfd{bottom:176.536500px;}
.y11c{bottom:177.550500px;}
.y22{bottom:178.293000px;}
.y234{bottom:180.552000px;}
.y7f{bottom:180.907500px;}
.y296{bottom:181.791000px;}
.y4e{bottom:181.921500px;}
.y4f{bottom:182.007000px;}
.y1b1{bottom:183.540000px;}
.y143{bottom:185.605500px;}
.yb8{bottom:185.772000px;}
.y156{bottom:186.619500px;}
.yd8{bottom:186.786000px;}
.y274{bottom:188.287500px;}
.y259{bottom:188.842500px;}
.y1f0{bottom:189.046500px;}
.y1f5{bottom:191.650500px;}
.y21e{bottom:191.775000px;}
.y129{bottom:192.597000px;}
.y1a6{bottom:193.269000px;}
.y95{bottom:194.779500px;}
.y15d{bottom:195.483000px;}
.y98{bottom:195.793500px;}
.y17c{bottom:195.882000px;}
.y1d2{bottom:197.490000px;}
.yfc{bottom:199.333500px;}
.y11b{bottom:200.347500px;}
.y21{bottom:201.090000px;}
.y233{bottom:203.349000px;}
.y7e{bottom:203.704500px;}
.y4d{bottom:204.718500px;}
.y1b0{bottom:206.337000px;}
.y142{bottom:208.402500px;}
.yb7{bottom:208.569000px;}
.y155{bottom:209.416500px;}
.yd7{bottom:209.583000px;}
.y273{bottom:209.851500px;}
.y258{bottom:211.641000px;}
.y1ef{bottom:211.843500px;}
.y295{bottom:215.049000px;}
.y128{bottom:215.394000px;}
.y1a5{bottom:216.066000px;}
.y94{bottom:217.576500px;}
.y15c{bottom:218.280000px;}
.y97{bottom:218.590500px;}
.y17b{bottom:218.679000px;}
.y1d1{bottom:220.287000px;}
.yfb{bottom:222.130500px;}
.y11a{bottom:223.144500px;}
.y20{bottom:223.887000px;}
.y232{bottom:226.146000px;}
.y7d{bottom:226.501500px;}
.y4c{bottom:227.515500px;}
.y1af{bottom:229.134000px;}
.y141{bottom:231.199500px;}
.yb6{bottom:231.366000px;}
.y154{bottom:232.213500px;}
.yd6{bottom:232.380000px;}
.y257{bottom:234.438000px;}
.y1ee{bottom:234.642000px;}
.y127{bottom:238.191000px;}
.y1a4{bottom:238.863000px;}
.y272{bottom:238.918500px;}
.y29d{bottom:241.078500px;}
.y17a{bottom:241.476000px;}
.y1d0{bottom:243.084000px;}
.yfa{bottom:244.927500px;}
.y119{bottom:245.941500px;}
.y1f{bottom:246.684000px;}
.y231{bottom:248.943000px;}
.y7c{bottom:249.298500px;}
.y4b{bottom:250.312500px;}
.y21d{bottom:250.917000px;}
.y15b{bottom:251.538000px;}
.y1ae{bottom:251.931000px;}
.y140{bottom:253.996500px;}
.yb5{bottom:254.163000px;}
.y153{bottom:255.010500px;}
.yd5{bottom:255.177000px;}
.y256{bottom:257.235000px;}
.y1ed{bottom:257.439000px;}
.y294{bottom:259.417500px;}
.y271{bottom:260.482500px;}
.y1a3{bottom:261.660000px;}
.y29c{bottom:263.875500px;}
.y179{bottom:264.273000px;}
.y1cf{bottom:265.882500px;}
.yf9{bottom:267.726000px;}
.y118{bottom:268.740000px;}
.y23a{bottom:268.978500px;}
.y1e{bottom:269.481000px;}
.y230{bottom:271.740000px;}
.y7b{bottom:272.097000px;}
.y4a{bottom:273.109500px;}
.y2a0{bottom:273.196500px;}
.y21c{bottom:273.714000px;}
.y93{bottom:273.867000px;}
.y1ad{bottom:274.728000px;}
.y13f{bottom:276.793500px;}
.yb4{bottom:276.960000px;}
.y152{bottom:277.807500px;}
.yd4{bottom:277.974000px;}
.y255{bottom:280.032000px;}
.y1ec{bottom:280.236000px;}
.y270{bottom:282.046500px;}
.y293{bottom:282.214500px;}
.y1a2{bottom:284.457000px;}
.y178{bottom:287.070000px;}
.y126{bottom:288.262500px;}
.y1ce{bottom:288.679500px;}
.yf8{bottom:290.523000px;}
.y117{bottom:291.537000px;}
.y1d{bottom:292.278000px;}
.y22f{bottom:294.537000px;}
.y7a{bottom:294.894000px;}
.y49{bottom:295.908000px;}
.y56{bottom:295.993500px;}
.y21b{bottom:296.511000px;}
.y92{bottom:296.664000px;}
.y29b{bottom:297.133500px;}
.y1ac{bottom:297.525000px;}
.y13e{bottom:299.592000px;}
.yb3{bottom:299.757000px;}
.y151{bottom:300.606000px;}
.yd3{bottom:300.771000px;}
.y254{bottom:302.829000px;}
.y292{bottom:305.011500px;}
.y125{bottom:306.838500px;}
.y177{bottom:309.867000px;}
.y26f{bottom:311.113500px;}
.y1cd{bottom:311.476500px;}
.yf7{bottom:313.320000px;}
.y116{bottom:314.334000px;}
.y239{bottom:314.737500px;}
.y1c{bottom:315.075000px;}
.y22e{bottom:317.334000px;}
.y79{bottom:317.691000px;}
.y48{bottom:318.705000px;}
.y21a{bottom:319.309500px;}
.y91{bottom:319.461000px;}
.y1ab{bottom:320.323500px;}
.y13d{bottom:322.389000px;}
.yb2{bottom:322.555500px;}
.y150{bottom:323.403000px;}
.yd2{bottom:323.569500px;}
.y253{bottom:325.626000px;}
.y291{bottom:327.808500px;}
.y124{bottom:328.402500px;}
.y1eb{bottom:330.307500px;}
.y176{bottom:332.664000px;}
.y1cc{bottom:334.273500px;}
.yf6{bottom:336.117000px;}
.y115{bottom:337.131000px;}
.y22d{bottom:340.131000px;}
.y78{bottom:340.488000px;}
.y47{bottom:341.502000px;}
.y219{bottom:342.106500px;}
.y90{bottom:342.258000px;}
.y1a1{bottom:343.120500px;}
.y13c{bottom:345.186000px;}
.yb1{bottom:345.352500px;}
.y14f{bottom:346.200000px;}
.yd1{bottom:346.366500px;}
.y123{bottom:346.978500px;}
.y252{bottom:348.423000px;}
.y1ea{bottom:348.882000px;}
.y290{bottom:350.605500px;}
.y26e{bottom:354.267000px;}
.yf5{bottom:358.914000px;}
.y114{bottom:359.928000px;}
.y22c{bottom:362.928000px;}
.y77{bottom:363.285000px;}
.y46{bottom:364.299000px;}
.y218{bottom:364.903500px;}
.y8f{bottom:365.055000px;}
.y1a0{bottom:365.917500px;}
.y1b{bottom:366.265500px;}
.y1e9{bottom:367.458000px;}
.y13b{bottom:367.983000px;}
.yb0{bottom:368.149500px;}
.y122{bottom:368.542500px;}
.y14e{bottom:368.997000px;}
.yd0{bottom:369.163500px;}
.y251{bottom:371.220000px;}
.y28f{bottom:373.402500px;}
.yf4{bottom:381.711000px;}
.y113{bottom:382.725000px;}
.y1cb{bottom:384.345000px;}
.y22b{bottom:385.725000px;}
.y76{bottom:386.082000px;}
.y45{bottom:387.096000px;}
.y121{bottom:387.118500px;}
.y217{bottom:387.700500px;}
.y8e{bottom:387.852000px;}
.y19f{bottom:388.714500px;}
.y13a{bottom:390.780000px;}
.yaf{bottom:390.946500px;}
.y14d{bottom:391.794000px;}
.ycf{bottom:391.960500px;}
.y250{bottom:394.017000px;}
.y28e{bottom:396.201000px;}
.y1e8{bottom:396.525000px;}
.y1ca{bottom:402.921000px;}
.yf3{bottom:404.508000px;}
.y112{bottom:405.522000px;}
.y1a{bottom:407.439000px;}
.y22a{bottom:408.522000px;}
.y75{bottom:408.879000px;}
.y44{bottom:409.893000px;}
.y216{bottom:410.497500px;}
.y8d{bottom:410.649000px;}
.y19e{bottom:411.511500px;}
.y139{bottom:413.577000px;}
.yae{bottom:413.743500px;}
.y14c{bottom:414.591000px;}
.yce{bottom:414.757500px;}
.y1e7{bottom:415.101000px;}
.y120{bottom:416.185500px;}
.y24f{bottom:416.814000px;}
.y28d{bottom:418.998000px;}
.y1c9{bottom:421.495500px;}
.y19{bottom:426.015000px;}
.yf2{bottom:427.305000px;}
.y111{bottom:428.319000px;}
.y229{bottom:431.319000px;}
.y74{bottom:431.676000px;}
.y43{bottom:432.690000px;}
.y215{bottom:433.294500px;}
.y8c{bottom:433.447500px;}
.y1e6{bottom:433.675500px;}
.y19d{bottom:434.308500px;}
.y138{bottom:436.374000px;}
.yad{bottom:436.540500px;}
.y14b{bottom:437.388000px;}
.ycd{bottom:437.554500px;}
.y24e{bottom:439.611000px;}
.y28c{bottom:441.795000px;}
.y18{bottom:442.906500px;}
.yf1{bottom:450.102000px;}
.y1c8{bottom:450.562500px;}
.y110{bottom:451.116000px;}
.y228{bottom:454.116000px;}
.y73{bottom:454.473000px;}
.y1e5{bottom:455.241000px;}
.y42{bottom:455.487000px;}
.y29f{bottom:455.572500px;}
.y214{bottom:456.091500px;}
.y8b{bottom:456.244500px;}
.y19c{bottom:457.105500px;}
.y137{bottom:459.171000px;}
.yac{bottom:459.337500px;}
.y14a{bottom:460.185000px;}
.ycc{bottom:460.351500px;}
.y24d{bottom:462.408000px;}
.y28b{bottom:464.592000px;}
.y17{bottom:464.859000px;}
.y1c7{bottom:469.138500px;}
.yf0{bottom:472.899000px;}
.y1e4{bottom:473.815500px;}
.y10f{bottom:473.913000px;}
.y227{bottom:476.913000px;}
.y72{bottom:477.270000px;}
.y41{bottom:478.284000px;}
.y213{bottom:478.888500px;}
.y8a{bottom:479.041500px;}
.y19b{bottom:479.902500px;}
.y136{bottom:481.968000px;}
.yab{bottom:482.134500px;}
.y149{bottom:482.982000px;}
.ycb{bottom:483.148500px;}
.y26d{bottom:484.846500px;}
.y24c{bottom:485.205000px;}
.y28a{bottom:487.389000px;}
.y16{bottom:487.533000px;}
.y1c6{bottom:487.714500px;}
.y1e3{bottom:492.391500px;}
.yef{bottom:495.696000px;}
.y10e{bottom:496.710000px;}
.y226{bottom:499.711500px;}
.y71{bottom:500.067000px;}
.y40{bottom:501.081000px;}
.y212{bottom:501.685500px;}
.y89{bottom:501.838500px;}
.y19a{bottom:502.699500px;}
.y135{bottom:504.765000px;}
.yaa{bottom:504.931500px;}
.y148{bottom:505.779000px;}
.yca{bottom:505.945500px;}
.y1c5{bottom:506.289000px;}
.y24b{bottom:508.002000px;}
.y289{bottom:510.186000px;}
.y26c{bottom:510.834000px;}
.y1e2{bottom:513.955500px;}
.yee{bottom:518.493000px;}
.y10d{bottom:519.507000px;}
.y225{bottom:522.508500px;}
.y70{bottom:522.864000px;}
.y15{bottom:522.934500px;}
.y3f{bottom:523.878000px;}
.y211{bottom:524.482500px;}
.y88{bottom:524.635500px;}
.y199{bottom:525.496500px;}
.ya9{bottom:527.728500px;}
.y1c4{bottom:527.853000px;}
.yc9{bottom:528.742500px;}
.y24a{bottom:530.800500px;}
.y26b{bottom:532.398000px;}
.y1e1{bottom:532.531500px;}
.y288{bottom:532.983000px;}
.yed{bottom:541.290000px;}
.y10c{bottom:542.304000px;}
.y14{bottom:544.887000px;}
.y224{bottom:545.305500px;}
.y6f{bottom:545.661000px;}
.y1c3{bottom:546.429000px;}
.y3e{bottom:546.675000px;}
.y57{bottom:546.762000px;}
.y210{bottom:547.279500px;}
.y87{bottom:547.432500px;}
.y198{bottom:548.293500px;}
.ya8{bottom:550.525500px;}
.y1e0{bottom:551.106000px;}
.yc8{bottom:551.539500px;}
.y249{bottom:553.597500px;}
.y26a{bottom:553.962000px;}
.y287{bottom:555.780000px;}
.y134{bottom:555.850500px;}
.yec{bottom:564.088500px;}
.y1c2{bottom:565.005000px;}
.y10b{bottom:565.101000px;}
.y13{bottom:566.841000px;}
.y223{bottom:568.102500px;}
.y6e{bottom:568.458000px;}
.y86{bottom:569.215500px;}
.y3d{bottom:569.472000px;}
.y20f{bottom:570.076500px;}
.y197{bottom:571.090500px;}
.y1df{bottom:572.670000px;}
.ya7{bottom:573.322500px;}
.yc7{bottom:574.336500px;}
.y248{bottom:576.394500px;}
.y133{bottom:577.414500px;}
.y286{bottom:578.577000px;}
.y269{bottom:583.029000px;}
.y1c1{bottom:586.569000px;}
.yeb{bottom:586.885500px;}
.y10a{bottom:587.899500px;}
.y12{bottom:588.793500px;}
.y1de{bottom:591.246000px;}
.y6d{bottom:591.256500px;}
.y3c{bottom:592.269000px;}
.y20e{bottom:592.873500px;}
.y196{bottom:593.887500px;}
.ya6{bottom:596.119500px;}
.yc6{bottom:597.133500px;}
.y132{bottom:598.980000px;}
.y247{bottom:599.191500px;}
.y285{bottom:601.374000px;}
.y268{bottom:604.593000px;}
.y1c0{bottom:605.143500px;}
.yea{bottom:609.682500px;}
.y109{bottom:610.696500px;}
.y11{bottom:610.746000px;}
.y1dd{bottom:612.810000px;}
.y6c{bottom:614.053500px;}
.y3b{bottom:615.067500px;}
.y195{bottom:616.684500px;}
.y131{bottom:617.554500px;}
.y20d{bottom:618.174000px;}
.ya5{bottom:618.918000px;}
.yc5{bottom:619.930500px;}
.y246{bottom:621.988500px;}
.y1bf{bottom:623.719500px;}
.y284{bottom:624.171000px;}
.y267{bottom:626.157000px;}
.y1dc{bottom:631.386000px;}
.ye9{bottom:632.479500px;}
.y10{bottom:632.698500px;}
.y108{bottom:633.493500px;}
.y20c{bottom:636.750000px;}
.y6b{bottom:636.850500px;}
.y3a{bottom:637.864500px;}
.y130{bottom:639.118500px;}
.y194{bottom:640.971000px;}
.ya4{bottom:641.715000px;}
.yc4{bottom:642.729000px;}
.y245{bottom:644.785500px;}
.y1be{bottom:645.283500px;}
.y283{bottom:646.968000px;}
.y1db{bottom:649.960500px;}
.yf{bottom:654.651000px;}
.y266{bottom:655.224000px;}
.ye8{bottom:655.276500px;}
.y20b{bottom:655.324500px;}
.y107{bottom:656.290500px;}
.y193{bottom:659.547000px;}
.y6a{bottom:659.647500px;}
.y39{bottom:660.661500px;}
.y12f{bottom:660.682500px;}
.y1bd{bottom:663.859500px;}
.ya3{bottom:664.512000px;}
.yc3{bottom:665.526000px;}
.y244{bottom:667.582500px;}
.y282{bottom:669.765000px;}
.ye{bottom:676.603500px;}
.ye7{bottom:678.073500px;}
.y192{bottom:678.121500px;}
.y1da{bottom:679.027500px;}
.y106{bottom:679.087500px;}
.y1bc{bottom:682.434000px;}
.y69{bottom:682.444500px;}
.y38{bottom:683.458500px;}
.y20a{bottom:684.391500px;}
.ya2{bottom:687.309000px;}
.yc2{bottom:688.323000px;}
.y12e{bottom:689.751000px;}
.y243{bottom:690.379500px;}
.y281{bottom:692.563500px;}
.y1d9{bottom:697.603500px;}
.y265{bottom:698.377500px;}
.yd{bottom:698.557500px;}
.ye6{bottom:700.870500px;}
.y105{bottom:701.884500px;}
.y209{bottom:702.967500px;}
.y1bb{bottom:703.998000px;}
.y68{bottom:705.241500px;}
.y37{bottom:706.255500px;}
.y191{bottom:707.188500px;}
.ya1{bottom:710.106000px;}
.yc1{bottom:711.120000px;}
.y280{bottom:715.360500px;}
.yc{bottom:720.510000px;}
.y264{bottom:721.174500px;}
.y208{bottom:721.543500px;}
.y1ba{bottom:722.574000px;}
.ye5{bottom:723.667500px;}
.y104{bottom:724.681500px;}
.y190{bottom:725.764500px;}
.y67{bottom:728.038500px;}
.y36{bottom:729.052500px;}
.y29e{bottom:729.138000px;}
.ya0{bottom:732.903000px;}
.y242{bottom:733.497000px;}
.yc0{bottom:733.917000px;}
.y27f{bottom:738.157500px;}
.y1d8{bottom:740.755500px;}
.y1b9{bottom:741.150000px;}
.yb{bottom:742.462500px;}
.y207{bottom:743.107500px;}
.y18f{bottom:744.340500px;}
.ye4{bottom:746.464500px;}
.y103{bottom:747.478500px;}
.y66{bottom:750.835500px;}
.y35{bottom:751.849500px;}
.y9f{bottom:755.700000px;}
.y241{bottom:756.294000px;}
.ybf{bottom:756.714000px;}
.y27e{bottom:760.954500px;}
.y206{bottom:761.682000px;}
.y1d7{bottom:763.552500px;}
.ya{bottom:764.415000px;}
.y18e{bottom:765.904500px;}
.ye3{bottom:769.261500px;}
.y1b8{bottom:770.217000px;}
.y102{bottom:770.275500px;}
.y65{bottom:773.632500px;}
.y34{bottom:774.646500px;}
.y9e{bottom:778.497000px;}
.ybe{bottom:779.511000px;}
.y205{bottom:780.258000px;}
.y27d{bottom:783.751500px;}
.y18d{bottom:784.479000px;}
.y240{bottom:784.987500px;}
.y9{bottom:786.367500px;}
.y1b7{bottom:788.791500px;}
.ye2{bottom:792.058500px;}
.y101{bottom:793.072500px;}
.y64{bottom:796.429500px;}
.y33{bottom:797.443500px;}
.y9d{bottom:801.294000px;}
.y204{bottom:801.822000px;}
.ybd{bottom:802.308000px;}
.y18c{bottom:803.055000px;}
.y23f{bottom:806.551500px;}
.y8{bottom:808.321500px;}
.y63{bottom:819.226500px;}
.y32{bottom:820.240500px;}
.y203{bottom:820.398000px;}
.y27c{bottom:823.672500px;}
.y16b{bottom:824.091000px;}
.y18b{bottom:824.619000px;}
.y175{bottom:825.105000px;}
.y23e{bottom:828.115500px;}
.y7{bottom:830.274000px;}
.y1b6{bottom:831.945000px;}
.ye1{bottom:833.802000px;}
.y202{bottom:838.972500px;}
.y62{bottom:842.023500px;}
.y31{bottom:843.037500px;}
.y18a{bottom:843.195000px;}
.y16a{bottom:846.888000px;}
.y174{bottom:847.902000px;}
.y27b{bottom:849.658500px;}
.y6{bottom:852.226500px;}
.y263{bottom:852.771000px;}
.ye0{bottom:856.600500px;}
.y23d{bottom:857.184000px;}
.y201{bottom:860.536500px;}
.y189{bottom:861.769500px;}
.y61{bottom:864.820500px;}
.y30{bottom:865.834500px;}
.y169{bottom:869.685000px;}
.y173{bottom:870.699000px;}
.y27a{bottom:871.222500px;}
.y200{bottom:879.112500px;}
.ydf{bottom:879.397500px;}
.y262{bottom:881.464500px;}
.y188{bottom:883.333500px;}
.y60{bottom:887.617500px;}
.y2f{bottom:888.631500px;}
.y168{bottom:892.482000px;}
.y279{bottom:892.786500px;}
.y172{bottom:893.496000px;}
.y1ff{bottom:897.688500px;}
.y23c{bottom:900.336000px;}
.y187{bottom:901.909500px;}
.yde{bottom:902.194500px;}
.y261{bottom:903.028500px;}
.y5f{bottom:910.416000px;}
.y2e{bottom:911.430000px;}
.y167{bottom:915.279000px;}
.y171{bottom:916.293000px;}
.y5{bottom:917.967000px;}
.y1fe{bottom:919.252500px;}
.y186{bottom:920.485500px;}
.y278{bottom:921.853500px;}
.y23b{bottom:923.133000px;}
.y260{bottom:924.592500px;}
.y5e{bottom:933.213000px;}
.y2d{bottom:934.227000px;}
.ydd{bottom:935.452500px;}
.y1fd{bottom:937.827000px;}
.y166{bottom:938.077500px;}
.y170{bottom:939.090000px;}
.y185{bottom:942.049500px;}
.y25f{bottom:953.659500px;}
.y5d{bottom:956.010000px;}
.y1fc{bottom:956.403000px;}
.y2c{bottom:957.024000px;}
.y4{bottom:959.347500px;}
.y184{bottom:960.624000px;}
.y165{bottom:960.874500px;}
.y16f{bottom:961.888500px;}
.y277{bottom:965.007000px;}
.y5c{bottom:978.807000px;}
.y183{bottom:979.200000px;}
.y2b{bottom:979.821000px;}
.y164{bottom:983.671500px;}
.y16e{bottom:984.685500px;}
.y1fb{bottom:985.470000px;}
.y3{bottom:996.498000px;}
.y25e{bottom:996.813000px;}
.y5b{bottom:1001.604000px;}
.y2a{bottom:1002.618000px;}
.y84{bottom:1002.703500px;}
.y1fa{bottom:1004.046000px;}
.y163{bottom:1006.468500px;}
.y16d{bottom:1007.482500px;}
.y182{bottom:1008.267000px;}
.y25d{bottom:1019.610000px;}
.y5a{bottom:1024.401000px;}
.y29{bottom:1025.415000px;}
.y181{bottom:1026.843000px;}
.y162{bottom:1029.265500px;}
.y16c{bottom:1030.279500px;}
.y59{bottom:1047.198000px;}
.y28{bottom:1048.212000px;}
.y58{bottom:1069.995000px;}
.y27{bottom:1071.009000px;}
.y2{bottom:1101.726000px;}
.y26{bottom:1110.262500px;}
.y1{bottom:1113.681000px;}
.he{height:34.998422px;}
.h1{height:35.865450px;}
.h6{height:37.013299px;}
.hd{height:37.228493px;}
.h13{height:37.802342px;}
.h15{height:40.348800px;}
.h5{height:41.125613px;}
.h4{height:41.364715px;}
.ha{height:47.157012px;}
.h8{height:47.294496px;}
.hb{height:47.636496px;}
.h12{height:48.311846px;}
.h14{height:48.317846px;}
.hf{height:51.556500px;}
.h3{height:53.463379px;}
.h7{height:53.774213px;}
.h11{height:59.946422px;}
.h10{height:59.952422px;}
.h2{height:71.065171px;}
.hc{height:91.407450px;}
.h9{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x28{left:125.274000px;}
.x3{left:127.558500px;}
.x4d{left:128.848500px;}
.x4{left:130.860000px;}
.x1c{left:137.850000px;}
.x1b{left:139.284000px;}
.x6e{left:141.169500px;}
.x32{left:147.774000px;}
.x33{left:149.643000px;}
.x20{left:151.072500px;}
.x11{left:153.070500px;}
.x34{left:154.498500px;}
.x2d{left:155.991000px;}
.x24{left:157.237500px;}
.x2f{left:160.846500px;}
.x1e{left:165.115500px;}
.x49{left:166.690500px;}
.x25{left:169.813500px;}
.x64{left:170.850000px;}
.x2a{left:173.140500px;}
.x6{left:178.044000px;}
.x6d{left:181.267500px;}
.xf{left:182.308500px;}
.x22{left:184.305000px;}
.x6f{left:187.281000px;}
.x29{left:188.460000px;}
.x23{left:190.990500px;}
.x35{left:194.814000px;}
.x30{left:199.150500px;}
.x21{left:202.096500px;}
.x9{left:220.579500px;}
.x62{left:227.137500px;}
.x5c{left:231.594000px;}
.x37{left:233.353500px;}
.xa{left:235.281000px;}
.x8{left:241.428000px;}
.x5d{left:245.251500px;}
.x72{left:252.259500px;}
.x1d{left:257.377500px;}
.x4e{left:261.232500px;}
.x66{left:266.229000px;}
.x4f{left:270.315000px;}
.x67{left:274.492500px;}
.x71{left:288.787500px;}
.x70{left:296.742000px;}
.x1f{left:312.655500px;}
.x4c{left:313.948500px;}
.x46{left:315.499500px;}
.x4a{left:318.186000px;}
.x65{left:330.136500px;}
.x50{left:342.526500px;}
.x68{left:350.460000px;}
.x69{left:364.117500px;}
.x5{left:380.788500px;}
.x47{left:395.115000px;}
.x4b{left:396.778500px;}
.x13{left:404.373000px;}
.xb{left:406.815000px;}
.x48{left:408.846000px;}
.x7{left:410.130000px;}
.xc{left:412.629000px;}
.x63{left:421.461000px;}
.x10{left:432.832500px;}
.x5b{left:438.162000px;}
.x14{left:442.740000px;}
.x27{left:447.636000px;}
.x16{left:452.577000px;}
.x2c{left:463.057500px;}
.x12{left:464.346000px;}
.x54{left:469.615500px;}
.x2b{left:473.125500px;}
.x61{left:478.003500px;}
.x15{left:489.858000px;}
.x31{left:494.004000px;}
.x73{left:495.474000px;}
.x36{left:500.352000px;}
.x26{left:503.352000px;}
.x59{left:515.182500px;}
.x38{left:530.136000px;}
.x5e{left:533.400000px;}
.x40{left:534.585000px;}
.x39{left:537.241500px;}
.x3b{left:543.771000px;}
.x5f{left:547.057500px;}
.x55{left:548.674500px;}
.x56{left:561.780000px;}
.x2{left:573.774000px;}
.x17{left:578.070000px;}
.x3c{left:585.726000px;}
.x5a{left:599.133000px;}
.x6c{left:601.822500px;}
.x42{left:611.527500px;}
.x41{left:614.628000px;}
.xd{left:616.020000px;}
.x51{left:618.742500px;}
.xe{left:623.493000px;}
.x18{left:625.716000px;}
.x6b{left:629.305500px;}
.x60{left:639.918000px;}
.x57{left:646.974000px;}
.x2e{left:658.504500px;}
.x43{left:688.224000px;}
.x52{left:693.085500px;}
.x1{left:696.322500px;}
.x44{left:698.671500px;}
.x53{left:701.254500px;}
.x3d{left:716.560500px;}
.x3e{left:731.470500px;}
.x6a{left:741.855000px;}
.x3a{left:748.350000px;}
.x58{left:752.047500px;}
.x1a{left:755.988000px;}
.x19{left:757.423500px;}
.x45{left:781.503000px;}
.x3f{left:783.954000px;}
@media print{
.v5{vertical-align:-8.432000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.432000pt;}
.v4{vertical-align:17.354667pt;}
.v3{vertical-align:22.181333pt;}
.v2{vertical-align:49.370667pt;}
.v1{vertical-align:50.378667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls31{letter-spacing:2.199744pt;}
.ls2f{letter-spacing:2.260848pt;}
.ls26{letter-spacing:2.486682pt;}
.ls1f{letter-spacing:2.656533pt;}
.ls0{letter-spacing:2.656693pt;}
.ls25{letter-spacing:3.959799pt;}
.ls1d{letter-spacing:3.968265pt;}
.ls20{letter-spacing:3.969271pt;}
.ls27{letter-spacing:4.016947pt;}
.ls21{letter-spacing:4.037743pt;}
.ls1b{letter-spacing:4.037879pt;}
.ls1e{letter-spacing:4.039680pt;}
.ls23{letter-spacing:4.057148pt;}
.lsa{letter-spacing:5.069323pt;}
.ls15{letter-spacing:5.074656pt;}
.ls2e{letter-spacing:5.103035pt;}
.ls5{letter-spacing:5.132736pt;}
.ls7{letter-spacing:5.191621pt;}
.ls12{letter-spacing:5.196955pt;}
.ls28{letter-spacing:5.308109pt;}
.ls6{letter-spacing:6.721440pt;}
.ls29{letter-spacing:10.568397pt;}
.ls17{letter-spacing:12.159696pt;}
.ls9{letter-spacing:13.137360pt;}
.ls14{letter-spacing:14.176128pt;}
.ls16{letter-spacing:14.603856pt;}
.ls24{letter-spacing:14.613867pt;}
.ls34{letter-spacing:15.153792pt;}
.ls2b{letter-spacing:15.214896pt;}
.ls2a{letter-spacing:15.276000pt;}
.ls32{letter-spacing:15.520416pt;}
.ls33{letter-spacing:15.703728pt;}
.ls2d{letter-spacing:15.764832pt;}
.ls8{letter-spacing:15.844533pt;}
.lsb{letter-spacing:15.849867pt;}
.ls35{letter-spacing:15.887040pt;}
.lsd{letter-spacing:16.314768pt;}
.ls13{letter-spacing:16.873867pt;}
.ls30{letter-spacing:17.292432pt;}
.ls1a{letter-spacing:18.331200pt;}
.lsc{letter-spacing:18.820032pt;}
.ls11{letter-spacing:19.675488pt;}
.ls19{letter-spacing:20.530944pt;}
.lsf{letter-spacing:21.508608pt;}
.ls10{letter-spacing:22.180752pt;}
.ls18{letter-spacing:23.036208pt;}
.lse{letter-spacing:24.013872pt;}
.ls2c{letter-spacing:24.074976pt;}
.ls1c{letter-spacing:94.011200pt;}
.ls22{letter-spacing:94.016533pt;}
.ls2{letter-spacing:851.373333pt;}
.ls4{letter-spacing:852.136000pt;}
.ls3{letter-spacing:852.440000pt;}
.ws69{word-spacing:-15.276000pt;}
.ws10e{word-spacing:-11.955200pt;}
.ws171{word-spacing:-5.193840pt;}
.wse4{word-spacing:-3.421824pt;}
.ws8b{word-spacing:-3.360720pt;}
.wsd3{word-spacing:-3.299616pt;}
.ws42{word-spacing:-3.238512pt;}
.ws118{word-spacing:-3.177408pt;}
.ws15f{word-spacing:-3.116304pt;}
.ws3b{word-spacing:-3.055200pt;}
.wseb{word-spacing:-2.994096pt;}
.ws8c{word-spacing:-2.932992pt;}
.ws107{word-spacing:-2.871888pt;}
.ws38{word-spacing:-2.810784pt;}
.wsaf{word-spacing:-2.749680pt;}
.ws43{word-spacing:-2.688576pt;}
.ws11{word-spacing:-2.656693pt;}
.wsd5{word-spacing:-2.627472pt;}
.wsc3{word-spacing:-2.566368pt;}
.ws33{word-spacing:-2.505264pt;}
.ws39{word-spacing:-2.444160pt;}
.wsfe{word-spacing:-2.391040pt;}
.ws7c{word-spacing:-2.383056pt;}
.wsdc{word-spacing:-2.321952pt;}
.wse0{word-spacing:-2.260848pt;}
.ws137{word-spacing:-2.199744pt;}
.ws82{word-spacing:-2.138640pt;}
.wsa3{word-spacing:-2.077536pt;}
.wsc1{word-spacing:-2.016432pt;}
.ws10d{word-spacing:-1.960653pt;}
.ws138{word-spacing:-1.955328pt;}
.ws9f{word-spacing:-1.894224pt;}
.ws2f{word-spacing:-1.833120pt;}
.ws146{word-spacing:-1.817190pt;}
.ws86{word-spacing:-1.772016pt;}
.ws53{word-spacing:-1.710912pt;}
.wsdd{word-spacing:-1.649808pt;}
.ws3a{word-spacing:-1.588704pt;}
.ws150{word-spacing:-1.530266pt;}
.ws7d{word-spacing:-1.527600pt;}
.ws148{word-spacing:-1.482445pt;}
.wsc2{word-spacing:-1.466496pt;}
.ws11b{word-spacing:-1.434624pt;}
.ws93{word-spacing:-1.405392pt;}
.wsd4{word-spacing:-1.344288pt;}
.wsa7{word-spacing:-1.283184pt;}
.ws11d{word-spacing:-1.243341pt;}
.wsb9{word-spacing:-1.222080pt;}
.ws5c{word-spacing:-1.160976pt;}
.ws135{word-spacing:-1.147699pt;}
.ws11e{word-spacing:-1.099878pt;}
.ws13b{word-spacing:-1.099872pt;}
.ws55{word-spacing:-1.038768pt;}
.wsa9{word-spacing:-0.977664pt;}
.ws90{word-spacing:-0.916560pt;}
.ws52{word-spacing:-0.855456pt;}
.ws12b{word-spacing:-0.794352pt;}
.wsc5{word-spacing:-0.733248pt;}
.ws35{word-spacing:-0.672144pt;}
.wsb3{word-spacing:-0.611040pt;}
.wscb{word-spacing:-0.549936pt;}
.ws31{word-spacing:-0.488832pt;}
.ws22{word-spacing:-0.427728pt;}
.ws6a{word-spacing:-0.366624pt;}
.ws40{word-spacing:-0.305520pt;}
.wsd{word-spacing:-0.265669pt;}
.ws6c{word-spacing:-0.244416pt;}
.ws102{word-spacing:-0.239104pt;}
.wsb{word-spacing:-0.212535pt;}
.wsdf{word-spacing:-0.191283pt;}
.ws16{word-spacing:-0.183312pt;}
.wsc{word-spacing:-0.159402pt;}
.wsff{word-spacing:-0.143462pt;}
.ws24{word-spacing:-0.122208pt;}
.ws11a{word-spacing:-0.095642pt;}
.ws1e{word-spacing:-0.061104pt;}
.ws4{word-spacing:-0.053134pt;}
.wsfc{word-spacing:-0.047821pt;}
.ws1{word-spacing:-0.042507pt;}
.ws2{word-spacing:0.000000pt;}
.ws112{word-spacing:0.047821pt;}
.wsa{word-spacing:0.053134pt;}
.ws34{word-spacing:0.061104pt;}
.ws12{word-spacing:0.095642pt;}
.ws30{word-spacing:0.122208pt;}
.ws14d{word-spacing:0.143462pt;}
.wsf{word-spacing:0.159402pt;}
.ws2a{word-spacing:0.183312pt;}
.ws140{word-spacing:0.191283pt;}
.ws7{word-spacing:0.212535pt;}
.ws14c{word-spacing:0.239104pt;}
.ws28{word-spacing:0.244416pt;}
.ws9{word-spacing:0.265669pt;}
.ws12f{word-spacing:0.286925pt;}
.ws26{word-spacing:0.305520pt;}
.ws2c{word-spacing:0.366624pt;}
.ws98{word-spacing:0.427728pt;}
.ws13d{word-spacing:0.478208pt;}
.wsed{word-spacing:0.488832pt;}
.ws21{word-spacing:0.549936pt;}
.ws79{word-spacing:0.611040pt;}
.ws78{word-spacing:0.672144pt;}
.ws2e{word-spacing:0.733248pt;}
.ws36{word-spacing:0.794352pt;}
.ws56{word-spacing:0.855456pt;}
.ws20{word-spacing:0.916560pt;}
.ws3e{word-spacing:0.977664pt;}
.ws13e{word-spacing:1.004237pt;}
.wsae{word-spacing:1.038768pt;}
.ws9b{word-spacing:1.099872pt;}
.ws1f{word-spacing:1.160976pt;}
.ws88{word-spacing:1.222080pt;}
.wsa4{word-spacing:1.283184pt;}
.ws41{word-spacing:1.344288pt;}
.ws12a{word-spacing:1.405392pt;}
.ws13f{word-spacing:1.434624pt;}
.ws59{word-spacing:1.466496pt;}
.wsd2{word-spacing:1.527600pt;}
.wsca{word-spacing:1.588704pt;}
.wsdb{word-spacing:1.649808pt;}
.ws10{word-spacing:1.700284pt;}
.wsec{word-spacing:1.710912pt;}
.ws130{word-spacing:1.769370pt;}
.ws2d{word-spacing:1.772016pt;}
.ws67{word-spacing:1.833120pt;}
.ws4c{word-spacing:1.894224pt;}
.ws8{word-spacing:1.912819pt;}
.wsb6{word-spacing:1.955328pt;}
.wse{word-spacing:1.965953pt;}
.wsf2{word-spacing:2.016432pt;}
.ws29{word-spacing:2.077536pt;}
.wsac{word-spacing:2.138640pt;}
.wse1{word-spacing:2.199744pt;}
.ws3f{word-spacing:2.260848pt;}
.wsb2{word-spacing:2.321952pt;}
.ws77{word-spacing:2.383056pt;}
.ws32{word-spacing:2.444160pt;}
.ws7b{word-spacing:2.505264pt;}
.wsf3{word-spacing:2.566368pt;}
.ws3c{word-spacing:2.627472pt;}
.ws99{word-spacing:2.688576pt;}
.ws132{word-spacing:2.725786pt;}
.wsa2{word-spacing:2.749680pt;}
.ws6{word-spacing:2.762961pt;}
.ws46{word-spacing:2.810784pt;}
.ws54{word-spacing:2.871888pt;}
.wsd1{word-spacing:2.932992pt;}
.ws103{word-spacing:2.964890pt;}
.ws58{word-spacing:2.994096pt;}
.ws119{word-spacing:3.055200pt;}
.ws47{word-spacing:3.116304pt;}
.ws124{word-spacing:3.177408pt;}
.ws139{word-spacing:3.238512pt;}
.ws147{word-spacing:3.251814pt;}
.wsc4{word-spacing:3.299616pt;}
.ws111{word-spacing:3.299635pt;}
.ws7e{word-spacing:3.360720pt;}
.wscc{word-spacing:3.421824pt;}
.ws57{word-spacing:3.482928pt;}
.ws110{word-spacing:3.538739pt;}
.ws9d{word-spacing:3.544032pt;}
.ws2b{word-spacing:3.605136pt;}
.wsc8{word-spacing:3.666240pt;}
.ws149{word-spacing:3.727344pt;}
.ws9a{word-spacing:3.788448pt;}
.ws4b{word-spacing:3.849552pt;}
.ws14e{word-spacing:3.873485pt;}
.ws94{word-spacing:3.910656pt;}
.ws87{word-spacing:3.971760pt;}
.ws89{word-spacing:4.032864pt;}
.ws5{word-spacing:4.091308pt;}
.ws14{word-spacing:4.093968pt;}
.ws4d{word-spacing:4.155072pt;}
.ws131{word-spacing:4.160410pt;}
.wsa1{word-spacing:4.216176pt;}
.ws101{word-spacing:4.256051pt;}
.ws1d{word-spacing:4.277280pt;}
.wscf{word-spacing:4.338384pt;}
.wse8{word-spacing:4.399488pt;}
.ws1c{word-spacing:4.460592pt;}
.ws8d{word-spacing:4.521696pt;}
.ws70{word-spacing:4.582800pt;}
.ws12c{word-spacing:4.590797pt;}
.wsb8{word-spacing:4.643904pt;}
.wse3{word-spacing:4.705008pt;}
.ws5b{word-spacing:4.766112pt;}
.ws5d{word-spacing:4.827216pt;}
.wsc7{word-spacing:4.888320pt;}
.ws8f{word-spacing:4.949424pt;}
.ws157{word-spacing:4.971681pt;}
.ws50{word-spacing:5.010528pt;}
.ws37{word-spacing:5.071632pt;}
.wsd9{word-spacing:5.132736pt;}
.ws120{word-spacing:5.164646pt;}
.ws7a{word-spacing:5.193840pt;}
.ws44{word-spacing:5.254944pt;}
.ws105{word-spacing:5.308109pt;}
.ws169{word-spacing:5.316000pt;}
.ws48{word-spacing:5.316048pt;}
.ws16b{word-spacing:5.377152pt;}
.ws14f{word-spacing:5.403750pt;}
.ws4f{word-spacing:5.438256pt;}
.ws7f{word-spacing:5.499360pt;}
.ws96{word-spacing:5.560464pt;}
.wse6{word-spacing:5.621568pt;}
.ws8a{word-spacing:5.682672pt;}
.ws5a{word-spacing:5.743776pt;}
.ws4a{word-spacing:5.804880pt;}
.wsb5{word-spacing:5.865984pt;}
.ws74{word-spacing:5.927088pt;}
.ws143{word-spacing:5.988192pt;}
.wsb1{word-spacing:6.049296pt;}
.wsce{word-spacing:6.110400pt;}
.ws6f{word-spacing:6.171504pt;}
.ws72{word-spacing:6.232608pt;}
.ws100{word-spacing:6.264525pt;}
.wsef{word-spacing:6.293712pt;}
.ws18{word-spacing:6.354816pt;}
.wse5{word-spacing:6.360166pt;}
.ws142{word-spacing:6.407987pt;}
.wsa6{word-spacing:6.415920pt;}
.ws19{word-spacing:6.477024pt;}
.ws51{word-spacing:6.538128pt;}
.ws25{word-spacing:6.599232pt;}
.ws3d{word-spacing:6.660336pt;}
.ws172{word-spacing:6.710869pt;}
.ws158{word-spacing:6.721440pt;}
.ws64{word-spacing:6.782544pt;}
.wsaa{word-spacing:6.843648pt;}
.wsa0{word-spacing:6.904752pt;}
.ws9c{word-spacing:6.965856pt;}
.wsda{word-spacing:7.026960pt;}
.ws23{word-spacing:7.088064pt;}
.ws63{word-spacing:7.149168pt;}
.wscd{word-spacing:7.210272pt;}
.ws45{word-spacing:7.271376pt;}
.ws27{word-spacing:7.332480pt;}
.wsc6{word-spacing:7.393584pt;}
.wsa8{word-spacing:7.454688pt;}
.ws1b{word-spacing:7.515792pt;}
.wsee{word-spacing:7.576896pt;}
.wse7{word-spacing:7.638000pt;}
.ws65{word-spacing:7.699104pt;}
.ws60{word-spacing:7.760208pt;}
.ws1a{word-spacing:7.821312pt;}
.ws5f{word-spacing:7.882416pt;}
.ws10f{word-spacing:7.938253pt;}
.wsb7{word-spacing:7.943520pt;}
.ws97{word-spacing:8.004624pt;}
.ws121{word-spacing:8.033894pt;}
.wsa5{word-spacing:8.065728pt;}
.ws84{word-spacing:8.126832pt;}
.ws66{word-spacing:8.187936pt;}
.ws91{word-spacing:8.249040pt;}
.wsb0{word-spacing:8.310144pt;}
.ws122{word-spacing:8.320819pt;}
.ws17{word-spacing:8.371248pt;}
.ws92{word-spacing:8.432352pt;}
.wsc9{word-spacing:8.493456pt;}
.ws95{word-spacing:8.554560pt;}
.ws170{word-spacing:8.676768pt;}
.ws123{word-spacing:8.737872pt;}
.ws108{word-spacing:8.798976pt;}
.wsd0{word-spacing:8.860080pt;}
.ws4e{word-spacing:8.921184pt;}
.ws85{word-spacing:8.982288pt;}
.ws165{word-spacing:9.043392pt;}
.wsf7{word-spacing:9.104496pt;}
.ws49{word-spacing:9.165600pt;}
.ws16c{word-spacing:9.226704pt;}
.wsf9{word-spacing:9.287808pt;}
.ws76{word-spacing:9.471120pt;}
.wsbd{word-spacing:9.532224pt;}
.wsf1{word-spacing:9.593328pt;}
.wsb4{word-spacing:9.715536pt;}
.wsad{word-spacing:9.776640pt;}
.ws114{word-spacing:9.851085pt;}
.wsf5{word-spacing:9.898848pt;}
.ws6b{word-spacing:9.959952pt;}
.wsfa{word-spacing:10.021056pt;}
.ws5e{word-spacing:10.082160pt;}
.ws71{word-spacing:10.143264pt;}
.ws145{word-spacing:10.233651pt;}
.ws125{word-spacing:10.265472pt;}
.ws129{word-spacing:10.326576pt;}
.ws156{word-spacing:10.387680pt;}
.ws16f{word-spacing:10.448784pt;}
.ws15e{word-spacing:10.509888pt;}
.ws126{word-spacing:10.570992pt;}
.ws14a{word-spacing:10.632096pt;}
.ws15{word-spacing:10.693200pt;}
.ws151{word-spacing:10.876512pt;}
.ws10b{word-spacing:10.937616pt;}
.ws13a{word-spacing:10.998720pt;}
.ws141{word-spacing:11.142246pt;}
.wsab{word-spacing:11.304240pt;}
.ws9e{word-spacing:11.731968pt;}
.ws113{word-spacing:11.859558pt;}
.wsde{word-spacing:11.907379pt;}
.ws15d{word-spacing:11.915280pt;}
.ws154{word-spacing:12.037488pt;}
.ws6e{word-spacing:12.343008pt;}
.ws16e{word-spacing:12.587424pt;}
.wsbe{word-spacing:12.770736pt;}
.ws153{word-spacing:12.831840pt;}
.ws117{word-spacing:12.892944pt;}
.wsc0{word-spacing:13.015152pt;}
.wsf4{word-spacing:13.076256pt;}
.ws12d{word-spacing:13.150720pt;}
.ws163{word-spacing:13.198464pt;}
.ws159{word-spacing:13.503984pt;}
.ws15b{word-spacing:13.809504pt;}
.ws11c{word-spacing:13.915853pt;}
.ws128{word-spacing:13.931712pt;}
.ws83{word-spacing:13.992816pt;}
.ws13c{word-spacing:14.176128pt;}
.ws115{word-spacing:14.237232pt;}
.ws162{word-spacing:14.542752pt;}
.ws155{word-spacing:14.664960pt;}
.ws160{word-spacing:14.726064pt;}
.ws0{word-spacing:15.005042pt;}
.ws133{word-spacing:15.015731pt;}
.ws134{word-spacing:15.111373pt;}
.ws116{word-spacing:15.642624pt;}
.wsf6{word-spacing:15.703728pt;}
.ws152{word-spacing:15.887040pt;}
.ws127{word-spacing:16.192560pt;}
.ws3{word-spacing:16.418365pt;}
.wsbc{word-spacing:16.436976pt;}
.ws15c{word-spacing:16.498080pt;}
.ws61{word-spacing:16.620288pt;}
.ws10a{word-spacing:17.109120pt;}
.wsf0{word-spacing:17.199459pt;}
.ws164{word-spacing:17.475744pt;}
.ws62{word-spacing:18.086784pt;}
.ws8e{word-spacing:18.575616pt;}
.ws109{word-spacing:18.881136pt;}
.ws6d{word-spacing:19.125552pt;}
.wsbb{word-spacing:19.247760pt;}
.wsba{word-spacing:19.308864pt;}
.wsea{word-spacing:19.431072pt;}
.wse9{word-spacing:19.492176pt;}
.ws136{word-spacing:19.675488pt;}
.ws10c{word-spacing:19.702170pt;}
.ws15a{word-spacing:21.264192pt;}
.ws11f{word-spacing:21.758464pt;}
.wsbf{word-spacing:22.119648pt;}
.ws104{word-spacing:22.284493pt;}
.ws75{word-spacing:22.302960pt;}
.ws81{word-spacing:22.791792pt;}
.wsd8{word-spacing:23.158416pt;}
.wsf8{word-spacing:25.602576pt;}
.wsd7{word-spacing:31.712976pt;}
.wsd6{word-spacing:31.774080pt;}
.ws68{word-spacing:44.605920pt;}
.ws16d{word-spacing:44.911440pt;}
.ws73{word-spacing:45.033648pt;}
.ws144{word-spacing:45.828000pt;}
.ws80{word-spacing:46.988976pt;}
.ws161{word-spacing:51.789926pt;}
.ws166{word-spacing:56.428544pt;}
.ws16a{word-spacing:66.183987pt;}
.ws13{word-spacing:69.005059pt;}
.wsfb{word-spacing:94.972109pt;}
.ws168{word-spacing:99.945472pt;}
.ws167{word-spacing:99.993293pt;}
.wsfd{word-spacing:200.847360pt;}
.ws106{word-spacing:200.895181pt;}
.ws12e{word-spacing:218.732339pt;}
.ws14b{word-spacing:836.034896pt;}
.wse2{word-spacing:838.328229pt;}
._25{margin-left:-8.109929pt;}
._3{margin-left:-6.794345pt;}
._3a{margin-left:-5.804880pt;}
._19{margin-left:-4.888320pt;}
._6{margin-left:-3.969734pt;}
._2{margin-left:-2.938095pt;}
._1{margin-left:-1.928125pt;}
._4{margin-left:-1.032066pt;}
._0{width:1.232709pt;}
._6c{width:2.322023pt;}
._23{width:3.506129pt;}
._48{width:4.582800pt;}
._6b{width:11.024329pt;}
._5c{width:11.955200pt;}
._27{width:13.388474pt;}
._c{width:14.983203pt;}
._7{width:16.448976pt;}
._8{width:17.587310pt;}
._13{width:18.487309pt;}
._12{width:19.519375pt;}
._21{width:20.653152pt;}
._14{width:21.630816pt;}
._9{width:22.900697pt;}
._18{width:24.108877pt;}
._5{width:25.132319pt;}
._28{width:26.084710pt;}
._17{width:26.980765pt;}
._1c{width:27.924528pt;}
._d{width:29.411171pt;}
._16{width:31.237539pt;}
._f{width:32.935056pt;}
._15{width:34.584864pt;}
._1a{width:36.479088pt;}
._20{width:37.945584pt;}
._24{width:38.929946pt;}
._10{width:40.057021pt;}
._11{width:41.317674pt;}
._1d{width:43.200528pt;}
._e{width:44.544816pt;}
._6a{width:45.766896pt;}
._26{width:47.695021pt;}
._3b{width:48.855997pt;}
._1b{width:49.804432pt;}
._a{width:52.868197pt;}
._b{width:53.999314pt;}
._1f{width:59.881920pt;}
._1e{width:61.104000pt;}
._22{width:62.326080pt;}
._51{width:63.745126pt;}
._5e{width:67.741175pt;}
._39{width:69.074133pt;}
._54{width:74.648269pt;}
._4a{width:77.517517pt;}
._67{width:83.718643pt;}
._5b{width:87.586807pt;}
._62{width:88.883290pt;}
._69{width:92.634495pt;}
._41{width:95.019930pt;}
._53{width:97.841357pt;}
._2b{width:100.499330pt;}
._3f{width:112.283238pt;}
._4b{width:114.913382pt;}
._55{width:116.443648pt;}
._57{width:118.882509pt;}
._5a{width:123.531725pt;}
._4d{width:126.342554pt;}
._68{width:131.172454pt;}
._63{width:134.185165pt;}
._56{width:142.745088pt;}
._50{width:147.594980pt;}
._5d{width:151.476303pt;}
._66{width:152.915626pt;}
._64{width:157.330432pt;}
._5f{width:161.267030pt;}
._4c{width:162.638541pt;}
._4e{width:170.365519pt;}
._30{width:176.056194pt;}
._4f{width:194.152448pt;}
._32{width:200.384445pt;}
._60{width:209.072538pt;}
._45{width:212.802560pt;}
._3d{width:218.780160pt;}
._37{width:222.955862pt;}
._3e{width:230.448435pt;}
._38{width:231.372323pt;}
._2c{width:246.564045pt;}
._65{width:250.561001pt;}
._29{width:255.458714pt;}
._47{width:261.962342pt;}
._2d{width:265.261978pt;}
._40{width:270.474445pt;}
._34{width:272.785136pt;}
._2a{width:274.061005pt;}
._35{width:275.734733pt;}
._59{width:288.407245pt;}
._2e{width:316.382413pt;}
._31{width:319.538586pt;}
._36{width:342.157824pt;}
._2f{width:349.665690pt;}
._33{width:391.939277pt;}
._61{width:393.241037pt;}
._44{width:401.390560pt;}
._58{width:425.557299pt;}
._52{width:532.675891pt;}
._49{width:543.722496pt;}
._42{width:556.873216pt;}
._43{width:560.890163pt;}
._3c{width:799.574374pt;}
._46{width:876.283632pt;}
.fs7{font-size:37.193600pt;}
.fs0{font-size:42.507200pt;}
.fs6{font-size:45.217600pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:61.104000pt;}
.fs8{font-size:63.761067pt;}
.fs2{font-size:69.074133pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:36.718667pt;}
.y85{bottom:36.970667pt;}
.y55{bottom:38.686667pt;}
.y9c{bottom:77.645333pt;}
.y238{bottom:79.433333pt;}
.y83{bottom:79.750667pt;}
.y29a{bottom:80.536000pt;}
.y53{bottom:80.652000pt;}
.y1b5{bottom:82.090667pt;}
.y147{bottom:83.926667pt;}
.ybc{bottom:84.074667pt;}
.y15a{bottom:84.828000pt;}
.ydc{bottom:84.976000pt;}
.y1f4{bottom:86.985333pt;}
.y1f9{bottom:89.300000pt;}
.y222{bottom:89.409333pt;}
.y12d{bottom:90.141333pt;}
.y1aa{bottom:90.738667pt;}
.y161{bottom:92.706667pt;}
.y180{bottom:93.061333pt;}
.y1d6{bottom:94.490667pt;}
.y100{bottom:96.129333pt;}
.y11f{bottom:97.030667pt;}
.y25{bottom:97.690667pt;}
.y9b{bottom:97.909333pt;}
.y237{bottom:99.697333pt;}
.y82{bottom:100.014667pt;}
.y299{bottom:100.800000pt;}
.y52{bottom:100.916000pt;}
.y1b4{bottom:102.354667pt;}
.y146{bottom:104.190667pt;}
.ybb{bottom:104.338667pt;}
.y159{bottom:105.092000pt;}
.ydb{bottom:105.240000pt;}
.y25c{bottom:107.068000pt;}
.y1f3{bottom:107.249333pt;}
.y1f8{bottom:109.564000pt;}
.y221{bottom:109.673333pt;}
.y12c{bottom:110.405333pt;}
.y1a9{bottom:111.002667pt;}
.y160{bottom:112.970667pt;}
.y17f{bottom:113.325333pt;}
.y1d5{bottom:114.754667pt;}
.yff{bottom:116.393333pt;}
.y11e{bottom:117.294667pt;}
.y24{bottom:117.954667pt;}
.y9a{bottom:118.174667pt;}
.y236{bottom:119.961333pt;}
.y81{bottom:120.278667pt;}
.y298{bottom:121.064000pt;}
.y51{bottom:121.180000pt;}
.y1b3{bottom:122.618667pt;}
.y145{bottom:124.454667pt;}
.yba{bottom:124.602667pt;}
.y276{bottom:125.021333pt;}
.y158{bottom:125.356000pt;}
.yda{bottom:125.504000pt;}
.y25b{bottom:127.332000pt;}
.y1f2{bottom:127.513333pt;}
.y1f7{bottom:129.828000pt;}
.y220{bottom:129.937333pt;}
.y12b{bottom:130.669333pt;}
.y1a8{bottom:131.266667pt;}
.y15f{bottom:133.234667pt;}
.y17e{bottom:133.589333pt;}
.y1d4{bottom:135.018667pt;}
.yfe{bottom:136.657333pt;}
.y11d{bottom:137.558667pt;}
.y23{bottom:138.218667pt;}
.y235{bottom:140.225333pt;}
.y80{bottom:140.542667pt;}
.y297{bottom:141.328000pt;}
.y50{bottom:141.444000pt;}
.y2a1{bottom:141.520000pt;}
.y1b2{bottom:142.882667pt;}
.y144{bottom:144.718667pt;}
.yb9{bottom:144.866667pt;}
.y157{bottom:145.620000pt;}
.yd9{bottom:145.768000pt;}
.y25a{bottom:147.596000pt;}
.y1f1{bottom:147.777333pt;}
.y275{bottom:148.197333pt;}
.y1f6{bottom:150.092000pt;}
.y21f{bottom:150.202667pt;}
.y12a{bottom:150.933333pt;}
.y1a7{bottom:151.530667pt;}
.y96{bottom:152.873333pt;}
.y15e{bottom:153.498667pt;}
.y99{bottom:153.774667pt;}
.y17d{bottom:153.853333pt;}
.y1d3{bottom:155.282667pt;}
.yfd{bottom:156.921333pt;}
.y11c{bottom:157.822667pt;}
.y22{bottom:158.482667pt;}
.y234{bottom:160.490667pt;}
.y7f{bottom:160.806667pt;}
.y296{bottom:161.592000pt;}
.y4e{bottom:161.708000pt;}
.y4f{bottom:161.784000pt;}
.y1b1{bottom:163.146667pt;}
.y143{bottom:164.982667pt;}
.yb8{bottom:165.130667pt;}
.y156{bottom:165.884000pt;}
.yd8{bottom:166.032000pt;}
.y274{bottom:167.366667pt;}
.y259{bottom:167.860000pt;}
.y1f0{bottom:168.041333pt;}
.y1f5{bottom:170.356000pt;}
.y21e{bottom:170.466667pt;}
.y129{bottom:171.197333pt;}
.y1a6{bottom:171.794667pt;}
.y95{bottom:173.137333pt;}
.y15d{bottom:173.762667pt;}
.y98{bottom:174.038667pt;}
.y17c{bottom:174.117333pt;}
.y1d2{bottom:175.546667pt;}
.yfc{bottom:177.185333pt;}
.y11b{bottom:178.086667pt;}
.y21{bottom:178.746667pt;}
.y233{bottom:180.754667pt;}
.y7e{bottom:181.070667pt;}
.y4d{bottom:181.972000pt;}
.y1b0{bottom:183.410667pt;}
.y142{bottom:185.246667pt;}
.yb7{bottom:185.394667pt;}
.y155{bottom:186.148000pt;}
.yd7{bottom:186.296000pt;}
.y273{bottom:186.534667pt;}
.y258{bottom:188.125333pt;}
.y1ef{bottom:188.305333pt;}
.y295{bottom:191.154667pt;}
.y128{bottom:191.461333pt;}
.y1a5{bottom:192.058667pt;}
.y94{bottom:193.401333pt;}
.y15c{bottom:194.026667pt;}
.y97{bottom:194.302667pt;}
.y17b{bottom:194.381333pt;}
.y1d1{bottom:195.810667pt;}
.yfb{bottom:197.449333pt;}
.y11a{bottom:198.350667pt;}
.y20{bottom:199.010667pt;}
.y232{bottom:201.018667pt;}
.y7d{bottom:201.334667pt;}
.y4c{bottom:202.236000pt;}
.y1af{bottom:203.674667pt;}
.y141{bottom:205.510667pt;}
.yb6{bottom:205.658667pt;}
.y154{bottom:206.412000pt;}
.yd6{bottom:206.560000pt;}
.y257{bottom:208.389333pt;}
.y1ee{bottom:208.570667pt;}
.y127{bottom:211.725333pt;}
.y1a4{bottom:212.322667pt;}
.y272{bottom:212.372000pt;}
.y29d{bottom:214.292000pt;}
.y17a{bottom:214.645333pt;}
.y1d0{bottom:216.074667pt;}
.yfa{bottom:217.713333pt;}
.y119{bottom:218.614667pt;}
.y1f{bottom:219.274667pt;}
.y231{bottom:221.282667pt;}
.y7c{bottom:221.598667pt;}
.y4b{bottom:222.500000pt;}
.y21d{bottom:223.037333pt;}
.y15b{bottom:223.589333pt;}
.y1ae{bottom:223.938667pt;}
.y140{bottom:225.774667pt;}
.yb5{bottom:225.922667pt;}
.y153{bottom:226.676000pt;}
.yd5{bottom:226.824000pt;}
.y256{bottom:228.653333pt;}
.y1ed{bottom:228.834667pt;}
.y294{bottom:230.593333pt;}
.y271{bottom:231.540000pt;}
.y1a3{bottom:232.586667pt;}
.y29c{bottom:234.556000pt;}
.y179{bottom:234.909333pt;}
.y1cf{bottom:236.340000pt;}
.yf9{bottom:237.978667pt;}
.y118{bottom:238.880000pt;}
.y23a{bottom:239.092000pt;}
.y1e{bottom:239.538667pt;}
.y230{bottom:241.546667pt;}
.y7b{bottom:241.864000pt;}
.y4a{bottom:242.764000pt;}
.y2a0{bottom:242.841333pt;}
.y21c{bottom:243.301333pt;}
.y93{bottom:243.437333pt;}
.y1ad{bottom:244.202667pt;}
.y13f{bottom:246.038667pt;}
.yb4{bottom:246.186667pt;}
.y152{bottom:246.940000pt;}
.yd4{bottom:247.088000pt;}
.y255{bottom:248.917333pt;}
.y1ec{bottom:249.098667pt;}
.y270{bottom:250.708000pt;}
.y293{bottom:250.857333pt;}
.y1a2{bottom:252.850667pt;}
.y178{bottom:255.173333pt;}
.y126{bottom:256.233333pt;}
.y1ce{bottom:256.604000pt;}
.yf8{bottom:258.242667pt;}
.y117{bottom:259.144000pt;}
.y1d{bottom:259.802667pt;}
.y22f{bottom:261.810667pt;}
.y7a{bottom:262.128000pt;}
.y49{bottom:263.029333pt;}
.y56{bottom:263.105333pt;}
.y21b{bottom:263.565333pt;}
.y92{bottom:263.701333pt;}
.y29b{bottom:264.118667pt;}
.y1ac{bottom:264.466667pt;}
.y13e{bottom:266.304000pt;}
.yb3{bottom:266.450667pt;}
.y151{bottom:267.205333pt;}
.yd3{bottom:267.352000pt;}
.y254{bottom:269.181333pt;}
.y292{bottom:271.121333pt;}
.y125{bottom:272.745333pt;}
.y177{bottom:275.437333pt;}
.y26f{bottom:276.545333pt;}
.y1cd{bottom:276.868000pt;}
.yf7{bottom:278.506667pt;}
.y116{bottom:279.408000pt;}
.y239{bottom:279.766667pt;}
.y1c{bottom:280.066667pt;}
.y22e{bottom:282.074667pt;}
.y79{bottom:282.392000pt;}
.y48{bottom:283.293333pt;}
.y21a{bottom:283.830667pt;}
.y91{bottom:283.965333pt;}
.y1ab{bottom:284.732000pt;}
.y13d{bottom:286.568000pt;}
.yb2{bottom:286.716000pt;}
.y150{bottom:287.469333pt;}
.yd2{bottom:287.617333pt;}
.y253{bottom:289.445333pt;}
.y291{bottom:291.385333pt;}
.y124{bottom:291.913333pt;}
.y1eb{bottom:293.606667pt;}
.y176{bottom:295.701333pt;}
.y1cc{bottom:297.132000pt;}
.yf6{bottom:298.770667pt;}
.y115{bottom:299.672000pt;}
.y22d{bottom:302.338667pt;}
.y78{bottom:302.656000pt;}
.y47{bottom:303.557333pt;}
.y219{bottom:304.094667pt;}
.y90{bottom:304.229333pt;}
.y1a1{bottom:304.996000pt;}
.y13c{bottom:306.832000pt;}
.yb1{bottom:306.980000pt;}
.y14f{bottom:307.733333pt;}
.yd1{bottom:307.881333pt;}
.y123{bottom:308.425333pt;}
.y252{bottom:309.709333pt;}
.y1ea{bottom:310.117333pt;}
.y290{bottom:311.649333pt;}
.y26e{bottom:314.904000pt;}
.yf5{bottom:319.034667pt;}
.y114{bottom:319.936000pt;}
.y22c{bottom:322.602667pt;}
.y77{bottom:322.920000pt;}
.y46{bottom:323.821333pt;}
.y218{bottom:324.358667pt;}
.y8f{bottom:324.493333pt;}
.y1a0{bottom:325.260000pt;}
.y1b{bottom:325.569333pt;}
.y1e9{bottom:326.629333pt;}
.y13b{bottom:327.096000pt;}
.yb0{bottom:327.244000pt;}
.y122{bottom:327.593333pt;}
.y14e{bottom:327.997333pt;}
.yd0{bottom:328.145333pt;}
.y251{bottom:329.973333pt;}
.y28f{bottom:331.913333pt;}
.yf4{bottom:339.298667pt;}
.y113{bottom:340.200000pt;}
.y1cb{bottom:341.640000pt;}
.y22b{bottom:342.866667pt;}
.y76{bottom:343.184000pt;}
.y45{bottom:344.085333pt;}
.y121{bottom:344.105333pt;}
.y217{bottom:344.622667pt;}
.y8e{bottom:344.757333pt;}
.y19f{bottom:345.524000pt;}
.y13a{bottom:347.360000pt;}
.yaf{bottom:347.508000pt;}
.y14d{bottom:348.261333pt;}
.ycf{bottom:348.409333pt;}
.y250{bottom:350.237333pt;}
.y28e{bottom:352.178667pt;}
.y1e8{bottom:352.466667pt;}
.y1ca{bottom:358.152000pt;}
.yf3{bottom:359.562667pt;}
.y112{bottom:360.464000pt;}
.y1a{bottom:362.168000pt;}
.y22a{bottom:363.130667pt;}
.y75{bottom:363.448000pt;}
.y44{bottom:364.349333pt;}
.y216{bottom:364.886667pt;}
.y8d{bottom:365.021333pt;}
.y19e{bottom:365.788000pt;}
.y139{bottom:367.624000pt;}
.yae{bottom:367.772000pt;}
.y14c{bottom:368.525333pt;}
.yce{bottom:368.673333pt;}
.y1e7{bottom:368.978667pt;}
.y120{bottom:369.942667pt;}
.y24f{bottom:370.501333pt;}
.y28d{bottom:372.442667pt;}
.y1c9{bottom:374.662667pt;}
.y19{bottom:378.680000pt;}
.yf2{bottom:379.826667pt;}
.y111{bottom:380.728000pt;}
.y229{bottom:383.394667pt;}
.y74{bottom:383.712000pt;}
.y43{bottom:384.613333pt;}
.y215{bottom:385.150667pt;}
.y8c{bottom:385.286667pt;}
.y1e6{bottom:385.489333pt;}
.y19d{bottom:386.052000pt;}
.y138{bottom:387.888000pt;}
.yad{bottom:388.036000pt;}
.y14b{bottom:388.789333pt;}
.ycd{bottom:388.937333pt;}
.y24e{bottom:390.765333pt;}
.y28c{bottom:392.706667pt;}
.y18{bottom:393.694667pt;}
.yf1{bottom:400.090667pt;}
.y1c8{bottom:400.500000pt;}
.y110{bottom:400.992000pt;}
.y228{bottom:403.658667pt;}
.y73{bottom:403.976000pt;}
.y1e5{bottom:404.658667pt;}
.y42{bottom:404.877333pt;}
.y29f{bottom:404.953333pt;}
.y214{bottom:405.414667pt;}
.y8b{bottom:405.550667pt;}
.y19c{bottom:406.316000pt;}
.y137{bottom:408.152000pt;}
.yac{bottom:408.300000pt;}
.y14a{bottom:409.053333pt;}
.ycc{bottom:409.201333pt;}
.y24d{bottom:411.029333pt;}
.y28b{bottom:412.970667pt;}
.y17{bottom:413.208000pt;}
.y1c7{bottom:417.012000pt;}
.yf0{bottom:420.354667pt;}
.y1e4{bottom:421.169333pt;}
.y10f{bottom:421.256000pt;}
.y227{bottom:423.922667pt;}
.y72{bottom:424.240000pt;}
.y41{bottom:425.141333pt;}
.y213{bottom:425.678667pt;}
.y8a{bottom:425.814667pt;}
.y19b{bottom:426.580000pt;}
.y136{bottom:428.416000pt;}
.yab{bottom:428.564000pt;}
.y149{bottom:429.317333pt;}
.ycb{bottom:429.465333pt;}
.y26d{bottom:430.974667pt;}
.y24c{bottom:431.293333pt;}
.y28a{bottom:433.234667pt;}
.y16{bottom:433.362667pt;}
.y1c6{bottom:433.524000pt;}
.y1e3{bottom:437.681333pt;}
.yef{bottom:440.618667pt;}
.y10e{bottom:441.520000pt;}
.y226{bottom:444.188000pt;}
.y71{bottom:444.504000pt;}
.y40{bottom:445.405333pt;}
.y212{bottom:445.942667pt;}
.y89{bottom:446.078667pt;}
.y19a{bottom:446.844000pt;}
.y135{bottom:448.680000pt;}
.yaa{bottom:448.828000pt;}
.y148{bottom:449.581333pt;}
.yca{bottom:449.729333pt;}
.y1c5{bottom:450.034667pt;}
.y24b{bottom:451.557333pt;}
.y289{bottom:453.498667pt;}
.y26c{bottom:454.074667pt;}
.y1e2{bottom:456.849333pt;}
.yee{bottom:460.882667pt;}
.y10d{bottom:461.784000pt;}
.y225{bottom:464.452000pt;}
.y70{bottom:464.768000pt;}
.y15{bottom:464.830667pt;}
.y3f{bottom:465.669333pt;}
.y211{bottom:466.206667pt;}
.y88{bottom:466.342667pt;}
.y199{bottom:467.108000pt;}
.ya9{bottom:469.092000pt;}
.y1c4{bottom:469.202667pt;}
.yc9{bottom:469.993333pt;}
.y24a{bottom:471.822667pt;}
.y26b{bottom:473.242667pt;}
.y1e1{bottom:473.361333pt;}
.y288{bottom:473.762667pt;}
.yed{bottom:481.146667pt;}
.y10c{bottom:482.048000pt;}
.y14{bottom:484.344000pt;}
.y224{bottom:484.716000pt;}
.y6f{bottom:485.032000pt;}
.y1c3{bottom:485.714667pt;}
.y3e{bottom:485.933333pt;}
.y57{bottom:486.010667pt;}
.y210{bottom:486.470667pt;}
.y87{bottom:486.606667pt;}
.y198{bottom:487.372000pt;}
.ya8{bottom:489.356000pt;}
.y1e0{bottom:489.872000pt;}
.yc8{bottom:490.257333pt;}
.y249{bottom:492.086667pt;}
.y26a{bottom:492.410667pt;}
.y287{bottom:494.026667pt;}
.y134{bottom:494.089333pt;}
.yec{bottom:501.412000pt;}
.y1c2{bottom:502.226667pt;}
.y10b{bottom:502.312000pt;}
.y13{bottom:503.858667pt;}
.y223{bottom:504.980000pt;}
.y6e{bottom:505.296000pt;}
.y86{bottom:505.969333pt;}
.y3d{bottom:506.197333pt;}
.y20f{bottom:506.734667pt;}
.y197{bottom:507.636000pt;}
.y1df{bottom:509.040000pt;}
.ya7{bottom:509.620000pt;}
.yc7{bottom:510.521333pt;}
.y248{bottom:512.350667pt;}
.y133{bottom:513.257333pt;}
.y286{bottom:514.290667pt;}
.y269{bottom:518.248000pt;}
.y1c1{bottom:521.394667pt;}
.yeb{bottom:521.676000pt;}
.y10a{bottom:522.577333pt;}
.y12{bottom:523.372000pt;}
.y1de{bottom:525.552000pt;}
.y6d{bottom:525.561333pt;}
.y3c{bottom:526.461333pt;}
.y20e{bottom:526.998667pt;}
.y196{bottom:527.900000pt;}
.ya6{bottom:529.884000pt;}
.yc6{bottom:530.785333pt;}
.y132{bottom:532.426667pt;}
.y247{bottom:532.614667pt;}
.y285{bottom:534.554667pt;}
.y268{bottom:537.416000pt;}
.y1c0{bottom:537.905333pt;}
.yea{bottom:541.940000pt;}
.y109{bottom:542.841333pt;}
.y11{bottom:542.885333pt;}
.y1dd{bottom:544.720000pt;}
.y6c{bottom:545.825333pt;}
.y3b{bottom:546.726667pt;}
.y195{bottom:548.164000pt;}
.y131{bottom:548.937333pt;}
.y20d{bottom:549.488000pt;}
.ya5{bottom:550.149333pt;}
.yc5{bottom:551.049333pt;}
.y246{bottom:552.878667pt;}
.y1bf{bottom:554.417333pt;}
.y284{bottom:554.818667pt;}
.y267{bottom:556.584000pt;}
.y1dc{bottom:561.232000pt;}
.ye9{bottom:562.204000pt;}
.y10{bottom:562.398667pt;}
.y108{bottom:563.105333pt;}
.y20c{bottom:566.000000pt;}
.y6b{bottom:566.089333pt;}
.y3a{bottom:566.990667pt;}
.y130{bottom:568.105333pt;}
.y194{bottom:569.752000pt;}
.ya4{bottom:570.413333pt;}
.yc4{bottom:571.314667pt;}
.y245{bottom:573.142667pt;}
.y1be{bottom:573.585333pt;}
.y283{bottom:575.082667pt;}
.y1db{bottom:577.742667pt;}
.yf{bottom:581.912000pt;}
.y266{bottom:582.421333pt;}
.ye8{bottom:582.468000pt;}
.y20b{bottom:582.510667pt;}
.y107{bottom:583.369333pt;}
.y193{bottom:586.264000pt;}
.y6a{bottom:586.353333pt;}
.y39{bottom:587.254667pt;}
.y12f{bottom:587.273333pt;}
.y1bd{bottom:590.097333pt;}
.ya3{bottom:590.677333pt;}
.yc3{bottom:591.578667pt;}
.y244{bottom:593.406667pt;}
.y282{bottom:595.346667pt;}
.ye{bottom:601.425333pt;}
.ye7{bottom:602.732000pt;}
.y192{bottom:602.774667pt;}
.y1da{bottom:603.580000pt;}
.y106{bottom:603.633333pt;}
.y1bc{bottom:606.608000pt;}
.y69{bottom:606.617333pt;}
.y38{bottom:607.518667pt;}
.y20a{bottom:608.348000pt;}
.ya2{bottom:610.941333pt;}
.yc2{bottom:611.842667pt;}
.y12e{bottom:613.112000pt;}
.y243{bottom:613.670667pt;}
.y281{bottom:615.612000pt;}
.y1d9{bottom:620.092000pt;}
.y265{bottom:620.780000pt;}
.yd{bottom:620.940000pt;}
.ye6{bottom:622.996000pt;}
.y105{bottom:623.897333pt;}
.y209{bottom:624.860000pt;}
.y1bb{bottom:625.776000pt;}
.y68{bottom:626.881333pt;}
.y37{bottom:627.782667pt;}
.y191{bottom:628.612000pt;}
.ya1{bottom:631.205333pt;}
.yc1{bottom:632.106667pt;}
.y280{bottom:635.876000pt;}
.yc{bottom:640.453333pt;}
.y264{bottom:641.044000pt;}
.y208{bottom:641.372000pt;}
.y1ba{bottom:642.288000pt;}
.ye5{bottom:643.260000pt;}
.y104{bottom:644.161333pt;}
.y190{bottom:645.124000pt;}
.y67{bottom:647.145333pt;}
.y36{bottom:648.046667pt;}
.y29e{bottom:648.122667pt;}
.ya0{bottom:651.469333pt;}
.y242{bottom:651.997333pt;}
.yc0{bottom:652.370667pt;}
.y27f{bottom:656.140000pt;}
.y1d8{bottom:658.449333pt;}
.y1b9{bottom:658.800000pt;}
.yb{bottom:659.966667pt;}
.y207{bottom:660.540000pt;}
.y18f{bottom:661.636000pt;}
.ye4{bottom:663.524000pt;}
.y103{bottom:664.425333pt;}
.y66{bottom:667.409333pt;}
.y35{bottom:668.310667pt;}
.y9f{bottom:671.733333pt;}
.y241{bottom:672.261333pt;}
.ybf{bottom:672.634667pt;}
.y27e{bottom:676.404000pt;}
.y206{bottom:677.050667pt;}
.y1d7{bottom:678.713333pt;}
.ya{bottom:679.480000pt;}
.y18e{bottom:680.804000pt;}
.ye3{bottom:683.788000pt;}
.y1b8{bottom:684.637333pt;}
.y102{bottom:684.689333pt;}
.y65{bottom:687.673333pt;}
.y34{bottom:688.574667pt;}
.y9e{bottom:691.997333pt;}
.ybe{bottom:692.898667pt;}
.y205{bottom:693.562667pt;}
.y27d{bottom:696.668000pt;}
.y18d{bottom:697.314667pt;}
.y240{bottom:697.766667pt;}
.y9{bottom:698.993333pt;}
.y1b7{bottom:701.148000pt;}
.ye2{bottom:704.052000pt;}
.y101{bottom:704.953333pt;}
.y64{bottom:707.937333pt;}
.y33{bottom:708.838667pt;}
.y9d{bottom:712.261333pt;}
.y204{bottom:712.730667pt;}
.ybd{bottom:713.162667pt;}
.y18c{bottom:713.826667pt;}
.y23f{bottom:716.934667pt;}
.y8{bottom:718.508000pt;}
.y63{bottom:728.201333pt;}
.y32{bottom:729.102667pt;}
.y203{bottom:729.242667pt;}
.y27c{bottom:732.153333pt;}
.y16b{bottom:732.525333pt;}
.y18b{bottom:732.994667pt;}
.y175{bottom:733.426667pt;}
.y23e{bottom:736.102667pt;}
.y7{bottom:738.021333pt;}
.y1b6{bottom:739.506667pt;}
.ye1{bottom:741.157333pt;}
.y202{bottom:745.753333pt;}
.y62{bottom:748.465333pt;}
.y31{bottom:749.366667pt;}
.y18a{bottom:749.506667pt;}
.y16a{bottom:752.789333pt;}
.y174{bottom:753.690667pt;}
.y27b{bottom:755.252000pt;}
.y6{bottom:757.534667pt;}
.y263{bottom:758.018667pt;}
.ye0{bottom:761.422667pt;}
.y23d{bottom:761.941333pt;}
.y201{bottom:764.921333pt;}
.y189{bottom:766.017333pt;}
.y61{bottom:768.729333pt;}
.y30{bottom:769.630667pt;}
.y169{bottom:773.053333pt;}
.y173{bottom:773.954667pt;}
.y27a{bottom:774.420000pt;}
.y200{bottom:781.433333pt;}
.ydf{bottom:781.686667pt;}
.y262{bottom:783.524000pt;}
.y188{bottom:785.185333pt;}
.y60{bottom:788.993333pt;}
.y2f{bottom:789.894667pt;}
.y168{bottom:793.317333pt;}
.y279{bottom:793.588000pt;}
.y172{bottom:794.218667pt;}
.y1ff{bottom:797.945333pt;}
.y23c{bottom:800.298667pt;}
.y187{bottom:801.697333pt;}
.yde{bottom:801.950667pt;}
.y261{bottom:802.692000pt;}
.y5f{bottom:809.258667pt;}
.y2e{bottom:810.160000pt;}
.y167{bottom:813.581333pt;}
.y171{bottom:814.482667pt;}
.y5{bottom:815.970667pt;}
.y1fe{bottom:817.113333pt;}
.y186{bottom:818.209333pt;}
.y278{bottom:819.425333pt;}
.y23b{bottom:820.562667pt;}
.y260{bottom:821.860000pt;}
.y5e{bottom:829.522667pt;}
.y2d{bottom:830.424000pt;}
.ydd{bottom:831.513333pt;}
.y1fd{bottom:833.624000pt;}
.y166{bottom:833.846667pt;}
.y170{bottom:834.746667pt;}
.y185{bottom:837.377333pt;}
.y25f{bottom:847.697333pt;}
.y5d{bottom:849.786667pt;}
.y1fc{bottom:850.136000pt;}
.y2c{bottom:850.688000pt;}
.y4{bottom:852.753333pt;}
.y184{bottom:853.888000pt;}
.y165{bottom:854.110667pt;}
.y16f{bottom:855.012000pt;}
.y277{bottom:857.784000pt;}
.y5c{bottom:870.050667pt;}
.y183{bottom:870.400000pt;}
.y2b{bottom:870.952000pt;}
.y164{bottom:874.374667pt;}
.y16e{bottom:875.276000pt;}
.y1fb{bottom:875.973333pt;}
.y3{bottom:885.776000pt;}
.y25e{bottom:886.056000pt;}
.y5b{bottom:890.314667pt;}
.y2a{bottom:891.216000pt;}
.y84{bottom:891.292000pt;}
.y1fa{bottom:892.485333pt;}
.y163{bottom:894.638667pt;}
.y16d{bottom:895.540000pt;}
.y182{bottom:896.237333pt;}
.y25d{bottom:906.320000pt;}
.y5a{bottom:910.578667pt;}
.y29{bottom:911.480000pt;}
.y181{bottom:912.749333pt;}
.y162{bottom:914.902667pt;}
.y16c{bottom:915.804000pt;}
.y59{bottom:930.842667pt;}
.y28{bottom:931.744000pt;}
.y58{bottom:951.106667pt;}
.y27{bottom:952.008000pt;}
.y2{bottom:979.312000pt;}
.y26{bottom:986.900000pt;}
.y1{bottom:989.938667pt;}
.he{height:31.109709pt;}
.h1{height:31.880400pt;}
.h6{height:32.900710pt;}
.hd{height:33.091994pt;}
.h13{height:33.602082pt;}
.h15{height:35.865600pt;}
.h5{height:36.556100pt;}
.h4{height:36.768636pt;}
.ha{height:41.917344pt;}
.h8{height:42.039552pt;}
.hb{height:42.343552pt;}
.h12{height:42.943863pt;}
.h14{height:42.949197pt;}
.hf{height:45.828000pt;}
.h3{height:47.523004pt;}
.h7{height:47.799300pt;}
.h11{height:53.285709pt;}
.h10{height:53.291042pt;}
.h2{height:63.169041pt;}
.hc{height:81.251067pt;}
.h9{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x28{left:111.354667pt;}
.x3{left:113.385333pt;}
.x4d{left:114.532000pt;}
.x4{left:116.320000pt;}
.x1c{left:122.533333pt;}
.x1b{left:123.808000pt;}
.x6e{left:125.484000pt;}
.x32{left:131.354667pt;}
.x33{left:133.016000pt;}
.x20{left:134.286667pt;}
.x11{left:136.062667pt;}
.x34{left:137.332000pt;}
.x2d{left:138.658667pt;}
.x24{left:139.766667pt;}
.x2f{left:142.974667pt;}
.x1e{left:146.769333pt;}
.x49{left:148.169333pt;}
.x25{left:150.945333pt;}
.x64{left:151.866667pt;}
.x2a{left:153.902667pt;}
.x6{left:158.261333pt;}
.x6d{left:161.126667pt;}
.xf{left:162.052000pt;}
.x22{left:163.826667pt;}
.x6f{left:166.472000pt;}
.x29{left:167.520000pt;}
.x23{left:169.769333pt;}
.x35{left:173.168000pt;}
.x30{left:177.022667pt;}
.x21{left:179.641333pt;}
.x9{left:196.070667pt;}
.x62{left:201.900000pt;}
.x5c{left:205.861333pt;}
.x37{left:207.425333pt;}
.xa{left:209.138667pt;}
.x8{left:214.602667pt;}
.x5d{left:218.001333pt;}
.x72{left:224.230667pt;}
.x1d{left:228.780000pt;}
.x4e{left:232.206667pt;}
.x66{left:236.648000pt;}
.x4f{left:240.280000pt;}
.x67{left:243.993333pt;}
.x71{left:256.700000pt;}
.x70{left:263.770667pt;}
.x1f{left:277.916000pt;}
.x4c{left:279.065333pt;}
.x46{left:280.444000pt;}
.x4a{left:282.832000pt;}
.x65{left:293.454667pt;}
.x50{left:304.468000pt;}
.x68{left:311.520000pt;}
.x69{left:323.660000pt;}
.x5{left:338.478667pt;}
.x47{left:351.213333pt;}
.x4b{left:352.692000pt;}
.x13{left:359.442667pt;}
.xb{left:361.613333pt;}
.x48{left:363.418667pt;}
.x7{left:364.560000pt;}
.xc{left:366.781333pt;}
.x63{left:374.632000pt;}
.x10{left:384.740000pt;}
.x5b{left:389.477333pt;}
.x14{left:393.546667pt;}
.x27{left:397.898667pt;}
.x16{left:402.290667pt;}
.x2c{left:411.606667pt;}
.x12{left:412.752000pt;}
.x54{left:417.436000pt;}
.x2b{left:420.556000pt;}
.x61{left:424.892000pt;}
.x15{left:435.429333pt;}
.x31{left:439.114667pt;}
.x73{left:440.421333pt;}
.x36{left:444.757333pt;}
.x26{left:447.424000pt;}
.x59{left:457.940000pt;}
.x38{left:471.232000pt;}
.x5e{left:474.133333pt;}
.x40{left:475.186667pt;}
.x39{left:477.548000pt;}
.x3b{left:483.352000pt;}
.x5f{left:486.273333pt;}
.x55{left:487.710667pt;}
.x56{left:499.360000pt;}
.x2{left:510.021333pt;}
.x17{left:513.840000pt;}
.x3c{left:520.645333pt;}
.x5a{left:532.562667pt;}
.x6c{left:534.953333pt;}
.x42{left:543.580000pt;}
.x41{left:546.336000pt;}
.xd{left:547.573333pt;}
.x51{left:549.993333pt;}
.xe{left:554.216000pt;}
.x18{left:556.192000pt;}
.x6b{left:559.382667pt;}
.x60{left:568.816000pt;}
.x57{left:575.088000pt;}
.x2e{left:585.337333pt;}
.x43{left:611.754667pt;}
.x52{left:616.076000pt;}
.x1{left:618.953333pt;}
.x44{left:621.041333pt;}
.x53{left:623.337333pt;}
.x3d{left:636.942667pt;}
.x3e{left:650.196000pt;}
.x6a{left:659.426667pt;}
.x3a{left:665.200000pt;}
.x58{left:668.486667pt;}
.x1a{left:671.989333pt;}
.x19{left:673.265333pt;}
.x45{left:694.669333pt;}
.x3f{left:696.848000pt;}
}




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