
    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_ceff3993c64e8a59197b461b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ba5f9b12bee6ad9c0e7263f7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3a3ecb834e56701055c900fd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.845000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cd9e063f1789b818b3871fb4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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_bf64ed61718465d410bb2353.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1e4f903de3e28d69c3a19b8c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897450;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_1983002bb6d351ffe43869e2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7c1540ca864239c6053d12f3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_40239f68317c41e61d7bb6d3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.628000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_65c5ff4872b20f311ada2d89.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e69e823dbbcab7d44259fe57.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_248982a5442bb1900626eba5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.520000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_25f7024469d1e9d58167302a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c669758e145150e762e0c5d4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.647000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ad01ccf2decfd6ed5dd30826.woff2')format("woff");}.fff{font-family:fff;line-height:0.645000;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;}
.m3{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);}
.m1b{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);}
.m29{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);}
.m28{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);}
.m9{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);}
.m1f{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);}
.me{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);}
.m1d{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);}
.m8{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);}
.m16{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);}
.ma{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);}
.m7{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);}
.m20{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);}
.m4{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m6{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);}
.m12{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);}
.mb{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);}
.mc{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);}
.m13{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);}
.m17{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);}
.m26{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m5{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);}
.m15{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);}
.m27{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.mf{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);}
.m11{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);}
.m1e{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);}
.m18{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);}
.m24{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);}
.m22{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);}
.md{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);}
.m25{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);}
.m1c{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);}
.m1{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);}
.m14{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:-92.292000px;}
.v1{vertical-align:-22.854000px;}
.va{vertical-align:-10.998000px;}
.v3{vertical-align:-9.816000px;}
.v9{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.616000px;}
.v6{vertical-align:13.614000px;}
.vc{vertical-align:23.748000px;}
.v2{vertical-align:33.570000px;}
.vd{vertical-align:40.752000px;}
.v4{vertical-align:44.118000px;}
.v7{vertical-align:71.472000px;}
.vf{vertical-align:81.192000px;}
.v8{vertical-align:92.292000px;}
.ve{vertical-align:132.834000px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.001050px;}
.ls1c{letter-spacing:2.471836px;}
.ls19{letter-spacing:2.988103px;}
.ls1{letter-spacing:2.989200px;}
.ls17{letter-spacing:2.993950px;}
.ls1d{letter-spacing:13.418193px;}
.ls18{letter-spacing:13.621452px;}
.ls1b{letter-spacing:14.530921px;}
.ls1a{letter-spacing:14.596376px;}
.ls27{letter-spacing:14.943900px;}
.ls10{letter-spacing:14.989103px;}
.ls1e{letter-spacing:15.307452px;}
.ls28{letter-spacing:16.036377px;}
.ls3{letter-spacing:16.167286px;}
.ls2{letter-spacing:16.232741px;}
.ls7{letter-spacing:16.363650px;}
.lsb{letter-spacing:16.429105px;}
.ls5{letter-spacing:16.560014px;}
.lsc{letter-spacing:18.130924px;}
.ls15{letter-spacing:18.196379px;}
.lsf{letter-spacing:18.523652px;}
.ls13{letter-spacing:18.850925px;}
.ls26{letter-spacing:19.128192px;}
.ls0{letter-spacing:19.243652px;}
.ls9{letter-spacing:19.570925px;}
.ls16{letter-spacing:19.963653px;}
.ls20{letter-spacing:20.029108px;}
.ls2f{letter-spacing:20.814563px;}
.lsd{letter-spacing:21.272745px;}
.ls6{letter-spacing:21.338200px;}
.ls25{letter-spacing:21.339889px;}
.ls11{letter-spacing:21.671930px;}
.lsa{letter-spacing:21.730927px;}
.ls29{letter-spacing:21.997421px;}
.ls2b{letter-spacing:22.236523px;}
.ls1f{letter-spacing:27.229114px;}
.lse{letter-spacing:32.989118px;}
.ls2d{letter-spacing:34.849175px;}
.ls8{letter-spacing:42.807308px;}
.ls2e{letter-spacing:42.859105px;}
.ls21{letter-spacing:48.070737px;}
.ls22{letter-spacing:49.745496px;}
.ls2a{letter-spacing:60.014702px;}
.ls2c{letter-spacing:79.919977px;}
.ls24{letter-spacing:111.769050px;}
.ls23{letter-spacing:268.011492px;}
.ls12{letter-spacing:336.698462px;}
.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;}
}
.wsa6{word-spacing:-42.637126px;}
.wsa5{word-spacing:-31.771663px;}
.wsa3{word-spacing:-31.706208px;}
.ws40{word-spacing:-16.363650px;}
.ws57{word-spacing:-14.943900px;}
.wsaa{word-spacing:-8.966400px;}
.wsa2{word-spacing:-6.336005px;}
.wscf{word-spacing:-3.600003px;}
.wsd0{word-spacing:-3.469094px;}
.ws150{word-spacing:-3.287658px;}
.wsfa{word-spacing:-3.207275px;}
.wsa{word-spacing:-3.168107px;}
.ws24{word-spacing:-3.141821px;}
.ws8b{word-spacing:-3.010912px;}
.wsd2{word-spacing:-2.945457px;}
.ws115{word-spacing:-2.880002px;}
.wsdd{word-spacing:-2.814548px;}
.ws74{word-spacing:-2.749093px;}
.ws82{word-spacing:-2.487275px;}
.wsf4{word-spacing:-2.421820px;}
.ws164{word-spacing:-2.391024px;}
.wsf0{word-spacing:-2.356366px;}
.ws123{word-spacing:-2.225456px;}
.ws5c{word-spacing:-2.094547px;}
.ws5{word-spacing:-2.092146px;}
.ws165{word-spacing:-2.032370px;}
.ws1b{word-spacing:-2.029093px;}
.ws9f{word-spacing:-1.898183px;}
.ws64{word-spacing:-1.819638px;}
.ws2f{word-spacing:-1.767274px;}
.wsde{word-spacing:-1.701820px;}
.ws14c{word-spacing:-1.673717px;}
.ws54{word-spacing:-1.613941px;}
.wsc7{word-spacing:-1.578086px;}
.ws72{word-spacing:-1.570910px;}
.wsb1{word-spacing:-1.542221px;}
.ws6c{word-spacing:-1.505456px;}
.ws84{word-spacing:-1.440001px;}
.ws47{word-spacing:-1.374547px;}
.ws130{word-spacing:-1.315063px;}
.wsf8{word-spacing:-1.309092px;}
.wse8{word-spacing:-1.243637px;}
.ws144{word-spacing:-1.195512px;}
.ws65{word-spacing:-1.178183px;}
.ws159{word-spacing:-1.135736px;}
.ws8f{word-spacing:-1.112728px;}
.wsdc{word-spacing:-1.047274px;}
.wsfd{word-spacing:-0.981819px;}
.wse{word-spacing:-0.916364px;}
.ws5f{word-spacing:-0.850910px;}
.wscb{word-spacing:-0.785455px;}
.wsa1{word-spacing:-0.720001px;}
.ws149{word-spacing:-0.717307px;}
.ws113{word-spacing:-0.657532px;}
.ws2e{word-spacing:-0.654546px;}
.wsc8{word-spacing:-0.645581px;}
.wse1{word-spacing:-0.523637px;}
.wsce{word-spacing:-0.458182px;}
.ws56{word-spacing:-0.418429px;}
.ws5b{word-spacing:-0.392728px;}
.ws13b{word-spacing:-0.358654px;}
.ws4b{word-spacing:-0.327273px;}
.ws4{word-spacing:-0.298878px;}
.ws27{word-spacing:-0.261818px;}
.ws98{word-spacing:-0.239102px;}
.ws4e{word-spacing:-0.215194px;}
.wsf{word-spacing:-0.196364px;}
.wsc9{word-spacing:-0.179327px;}
.wsc1{word-spacing:-0.143462px;}
.ws2d{word-spacing:-0.130909px;}
.ws111{word-spacing:-0.119551px;}
.ws53{word-spacing:-0.107597px;}
.wsb6{word-spacing:-0.071731px;}
.ws25{word-spacing:-0.065455px;}
.ws133{word-spacing:-0.059776px;}
.ws1c{word-spacing:-0.053798px;}
.ws45{word-spacing:-0.047821px;}
.wsa7{word-spacing:-0.035866px;}
.ws2{word-spacing:0.000000px;}
.wsd9{word-spacing:0.013091px;}
.wsaf{word-spacing:0.035866px;}
.ws52{word-spacing:0.053798px;}
.ws6{word-spacing:0.059776px;}
.ws22{word-spacing:0.065455px;}
.wsbb{word-spacing:0.071731px;}
.ws8e{word-spacing:0.078546px;}
.wsc5{word-spacing:0.107597px;}
.wsb{word-spacing:0.119551px;}
.ws18{word-spacing:0.130909px;}
.wsad{word-spacing:0.143462px;}
.ws126{word-spacing:0.179327px;}
.ws17{word-spacing:0.196364px;}
.wsc0{word-spacing:0.215194px;}
.ws55{word-spacing:0.239102px;}
.wsc3{word-spacing:0.251059px;}
.ws16{word-spacing:0.261818px;}
.wsed{word-spacing:0.298878px;}
.ws34{word-spacing:0.322790px;}
.ws3c{word-spacing:0.327273px;}
.wse7{word-spacing:0.358654px;}
.ws37{word-spacing:0.392728px;}
.ws21{word-spacing:0.430387px;}
.ws11d{word-spacing:0.458182px;}
.ws13e{word-spacing:0.478205px;}
.ws38{word-spacing:0.523637px;}
.wse3{word-spacing:0.589091px;}
.ws97{word-spacing:0.591782px;}
.ws9{word-spacing:0.597756px;}
.wsbd{word-spacing:0.609715px;}
.wsf3{word-spacing:0.654546px;}
.ws6b{word-spacing:0.720001px;}
.wsd4{word-spacing:0.785455px;}
.ws73{word-spacing:0.916364px;}
.ws85{word-spacing:0.981819px;}
.wsee{word-spacing:1.016185px;}
.ws139{word-spacing:1.075961px;}
.wsef{word-spacing:1.112728px;}
.ws15f{word-spacing:1.135736px;}
.ws29{word-spacing:1.178183px;}
.ws15a{word-spacing:1.195512px;}
.ws67{word-spacing:1.243637px;}
.ws160{word-spacing:1.255288px;}
.ws119{word-spacing:1.309092px;}
.wscd{word-spacing:1.374547px;}
.ws13d{word-spacing:1.434614px;}
.wsda{word-spacing:1.505456px;}
.ws32{word-spacing:1.570910px;}
.ws13a{word-spacing:1.613941px;}
.wsf2{word-spacing:1.636365px;}
.ws154{word-spacing:1.673717px;}
.ws4a{word-spacing:1.701820px;}
.ws15c{word-spacing:1.733492px;}
.ws69{word-spacing:1.767274px;}
.wsb3{word-spacing:1.829146px;}
.ws114{word-spacing:1.832729px;}
.ws152{word-spacing:1.853044px;}
.ws2c{word-spacing:1.898183px;}
.wsd7{word-spacing:1.963638px;}
.ws1a{word-spacing:2.029093px;}
.ws50{word-spacing:2.160002px;}
.wsf7{word-spacing:2.225456px;}
.ws10{word-spacing:2.290911px;}
.ws3{word-spacing:2.331248px;}
.wsd1{word-spacing:2.356366px;}
.ws12{word-spacing:2.421820px;}
.ws13c{word-spacing:2.450800px;}
.ws15{word-spacing:2.487275px;}
.ws142{word-spacing:2.510575px;}
.ws46{word-spacing:2.552729px;}
.ws112{word-spacing:2.570351px;}
.wsa4{word-spacing:2.618184px;}
.ws134{word-spacing:2.630126px;}
.ws135{word-spacing:2.689902px;}
.ws62{word-spacing:2.749093px;}
.ws13{word-spacing:2.880002px;}
.ws14{word-spacing:2.945457px;}
.ws39{word-spacing:3.076366px;}
.ws138{word-spacing:3.108331px;}
.ws3b{word-spacing:3.141821px;}
.ws36{word-spacing:3.207275px;}
.ws125{word-spacing:3.227882px;}
.ws5e{word-spacing:3.272730px;}
.ws3e{word-spacing:3.287658px;}
.ws59{word-spacing:3.338185px;}
.ws163{word-spacing:3.347434px;}
.ws87{word-spacing:3.403639px;}
.ws162{word-spacing:3.466985px;}
.ws35{word-spacing:3.469094px;}
.wsca{word-spacing:3.526760px;}
.ws8a{word-spacing:3.534548px;}
.ws28{word-spacing:3.600003px;}
.ws41{word-spacing:3.665458px;}
.ws4f{word-spacing:3.730912px;}
.ws2b{word-spacing:3.927276px;}
.ws19{word-spacing:3.992731px;}
.ws158{word-spacing:4.004965px;}
.wsa8{word-spacing:4.027505px;}
.ws49{word-spacing:4.058185px;}
.ws169{word-spacing:4.064741px;}
.ws81{word-spacing:4.123640px;}
.ws124{word-spacing:4.184292px;}
.ws5d{word-spacing:4.189094px;}
.ws75{word-spacing:4.254549px;}
.ws118{word-spacing:4.320004px;}
.ws43{word-spacing:4.385458px;}
.ws117{word-spacing:4.450913px;}
.ws143{word-spacing:4.483170px;}
.ws88{word-spacing:4.516367px;}
.ws161{word-spacing:4.542946px;}
.ws141{word-spacing:4.602721px;}
.ws42{word-spacing:4.647277px;}
.ws166{word-spacing:4.662497px;}
.ws3f{word-spacing:4.712731px;}
.ws63{word-spacing:4.778186px;}
.ws2a{word-spacing:4.843640px;}
.wsb9{word-spacing:4.877722px;}
.ws146{word-spacing:4.901599px;}
.ws89{word-spacing:4.909095px;}
.ws77{word-spacing:4.974550px;}
.ws8{word-spacing:5.021150px;}
.wse9{word-spacing:5.040004px;}
.ws90{word-spacing:5.105459px;}
.ws120{word-spacing:5.170913px;}
.ws167{word-spacing:5.200477px;}
.ws30{word-spacing:5.367277px;}
.ws80{word-spacing:5.432732px;}
.ws11a{word-spacing:5.563641px;}
.ws172{word-spacing:5.618906px;}
.wsfc{word-spacing:5.629096px;}
.wsfe{word-spacing:5.890914px;}
.ws11f{word-spacing:5.956369px;}
.ws4d{word-spacing:5.971622px;}
.ws153{word-spacing:6.037336px;}
.ws66{word-spacing:6.087278px;}
.ws61{word-spacing:6.414551px;}
.ws9d{word-spacing:6.480005px;}
.ws15d{word-spacing:6.515540px;}
.ws44{word-spacing:6.545460px;}
.ws9e{word-spacing:6.610915px;}
.wsd{word-spacing:6.676369px;}
.wsd5{word-spacing:6.741824px;}
.wsf1{word-spacing:6.807278px;}
.ws7{word-spacing:6.933970px;}
.ws60{word-spacing:6.938188px;}
.ws140{word-spacing:6.993745px;}
.ws6e{word-spacing:7.003642px;}
.wseb{word-spacing:7.069097px;}
.ws48{word-spacing:7.134551px;}
.ws58{word-spacing:7.200006px;}
.wsf5{word-spacing:7.265461px;}
.ws8c{word-spacing:7.396370px;}
.ws137{word-spacing:7.412174px;}
.ws15e{word-spacing:7.531726px;}
.ws157{word-spacing:7.591501px;}
.wsfb{word-spacing:7.592734px;}
.ws4c{word-spacing:7.639373px;}
.ws12d{word-spacing:7.651277px;}
.ws16a{word-spacing:7.920007px;}
.wsf9{word-spacing:8.050916px;}
.ws14f{word-spacing:8.069706px;}
.ws11b{word-spacing:8.116370px;}
.wsec{word-spacing:8.181825px;}
.ws20{word-spacing:8.231155px;}
.ws6a{word-spacing:8.247280px;}
.wsdb{word-spacing:8.312734px;}
.wsd6{word-spacing:8.443643px;}
.ws12c{word-spacing:8.488135px;}
.wsea{word-spacing:8.640007px;}
.ws11{word-spacing:8.705462px;}
.wsa9{word-spacing:8.930534px;}
.ws71{word-spacing:8.967280px;}
.ws7b{word-spacing:9.032735px;}
.wscc{word-spacing:9.360008px;}
.ws147{word-spacing:9.384769px;}
.ws11c{word-spacing:9.490917px;}
.ws12a{word-spacing:9.564096px;}
.ws128{word-spacing:9.623872px;}
.ws9b{word-spacing:9.687281px;}
.ws9c{word-spacing:9.752735px;}
.ws155{word-spacing:9.803198px;}
.ws136{word-spacing:9.922750px;}
.ws14a{word-spacing:10.042301px;}
.wsb0{word-spacing:10.723814px;}
.ws31{word-spacing:10.865464px;}
.wsb4{word-spacing:10.867277px;}
.wsd8{word-spacing:10.930918px;}
.ws12e{word-spacing:10.938935px;}
.wsb7{word-spacing:10.939008px;}
.wsb5{word-spacing:11.010739px;}
.wsc6{word-spacing:11.046605px;}
.wsf6{word-spacing:11.061827px;}
.wsab{word-spacing:11.082470px;}
.wsae{word-spacing:11.154202px;}
.wsba{word-spacing:11.190067px;}
.wsc4{word-spacing:11.261798px;}
.ws7d{word-spacing:11.323646px;}
.wsac{word-spacing:11.333530px;}
.wsd3{word-spacing:11.389100px;}
.wsbf{word-spacing:11.405261px;}
.ws131{word-spacing:11.417140px;}
.ws78{word-spacing:11.585464px;}
.ws11e{word-spacing:11.650919px;}
.ws1f{word-spacing:11.674253px;}
.ws132{word-spacing:11.835569px;}
.ws9a{word-spacing:12.109101px;}
.ws6f{word-spacing:12.174556px;}
.wsc2{word-spacing:12.194304px;}
.ws148{word-spacing:12.493100px;}
.ws127{word-spacing:12.552876px;}
.wsbe{word-spacing:12.696422px;}
.ws13f{word-spacing:12.791978px;}
.ws151{word-spacing:12.971305px;}
.ws116{word-spacing:13.025465px;}
.wsbc{word-spacing:13.198541px;}
.ws15b{word-spacing:13.210408px;}
.ws70{word-spacing:13.352738px;}
.ws51{word-spacing:13.395802px;}
.ws7c{word-spacing:13.549102px;}
.ws76{word-spacing:13.614557px;}
.ws156{word-spacing:13.628837px;}
.ws12f{word-spacing:13.808164px;}
.ws145{word-spacing:13.867939px;}
.ws14b{word-spacing:13.927715px;}
.ws79{word-spacing:13.941830px;}
.ws168{word-spacing:14.047266px;}
.ws8d{word-spacing:14.478558px;}
.ws129{word-spacing:15.003676px;}
.ws12b{word-spacing:15.661207px;}
.ws5a{word-spacing:16.101832px;}
.ws3d{word-spacing:16.167286px;}
.ws6d{word-spacing:16.298195px;}
.wsb2{word-spacing:16.892698px;}
.ws122{word-spacing:16.952741px;}
.ws1d{word-spacing:17.107891px;}
.ws99{word-spacing:17.214560px;}
.wse2{word-spacing:17.280014px;}
.ws14d{word-spacing:17.514251px;}
.ws68{word-spacing:17.541833px;}
.ws1{word-spacing:17.861069px;}
.ws14e{word-spacing:18.112007px;}
.ws7a{word-spacing:18.196379px;}
.ws7f{word-spacing:19.047289px;}
.ws3a{word-spacing:19.374562px;}
.ws26{word-spacing:20.160017px;}
.ws23{word-spacing:20.487290px;}
.ws1e{word-spacing:20.712384px;}
.wsa0{word-spacing:21.021369px;}
.ws0{word-spacing:21.433223px;}
.ws91{word-spacing:21.992746px;}
.ws86{word-spacing:23.498201px;}
.wsb8{word-spacing:26.002560px;}
.ws33{word-spacing:26.038426px;}
.ws7e{word-spacing:26.443658px;}
.ws121{word-spacing:33.316391px;}
.wsdf{word-spacing:53.280044px;}
.ws94{word-spacing:57.753150px;}
.ws96{word-spacing:57.756450px;}
.wse4{word-spacing:58.263667px;}
.ws102{word-spacing:58.264867px;}
.ws105{word-spacing:58.278000px;}
.ws110{word-spacing:58.284000px;}
.ws10c{word-spacing:58.301722px;}
.ws104{word-spacing:58.306522px;}
.wse5{word-spacing:58.317466px;}
.ws10b{word-spacing:59.393434px;}
.wsff{word-spacing:60.254208px;}
.ws101{word-spacing:60.276730px;}
.ws10e{word-spacing:60.308006px;}
.wsc{word-spacing:71.659469px;}
.ws103{word-spacing:71.713267px;}
.ws108{word-spacing:73.650010px;}
.ws92{word-spacing:74.053535px;}
.ws93{word-spacing:74.118386px;}
.wse0{word-spacing:74.749153px;}
.ws95{word-spacing:75.854648px;}
.wse6{word-spacing:80.159616px;}
.ws16e{word-spacing:100.872000px;}
.ws171{word-spacing:114.267802px;}
.ws10f{word-spacing:122.496326px;}
.ws109{word-spacing:122.529792px;}
.ws10d{word-spacing:124.489498px;}
.ws16c{word-spacing:127.771200px;}
.ws16d{word-spacing:132.236467px;}
.ws100{word-spacing:135.892128px;}
.ws106{word-spacing:135.948557px;}
.ws170{word-spacing:154.670400px;}
.ws16b{word-spacing:159.135667px;}
.ws83{word-spacing:172.154880px;}
.ws16f{word-spacing:199.484467px;}
.ws10a{word-spacing:337.638758px;}
.ws107{word-spacing:354.477658px;}
._0{margin-left:-7.919102px;}
._4{margin-left:-6.671002px;}
._1c{margin-left:-5.105459px;}
._2{margin-left:-4.045646px;}
._1{margin-left:-2.410162px;}
._5{margin-left:-1.195512px;}
._1d{width:1.438604px;}
._d{width:3.012710px;}
._15{width:4.707190px;}
._31{width:6.052490px;}
._32{width:7.854566px;}
._2f{width:11.118336px;}
._6b{width:13.832696px;}
._9{width:15.108354px;}
._8{width:16.816081px;}
._10{width:18.839266px;}
._7{width:19.965050px;}
._13{width:21.063842px;}
._3{width:22.236672px;}
._12{width:23.253712px;}
._44{width:24.349111px;}
._14{width:25.404630px;}
._6a{width:26.553749px;}
._a{width:27.687296px;}
._b{width:29.585479px;}
._16{width:30.829117px;}
._c{width:32.929334px;}
._e{width:34.743000px;}
._63{width:36.123600px;}
._19{width:37.957997px;}
._6{width:39.810550px;}
._f{width:41.855155px;}
._1e{width:43.985491px;}
._67{width:45.088936px;}
._43{width:46.865494px;}
._1a{width:48.752018px;}
._2d{width:49.941860px;}
._65{width:52.906844px;}
._1b{width:54.850955px;}
._35{width:56.213843px;}
._66{width:58.520312px;}
._18{width:61.711149px;}
._64{width:62.903069px;}
._69{width:64.337683px;}
._17{width:65.454600px;}
._68{width:66.590018px;}
._11{width:71.731200px;}
._36{width:73.327219px;}
._4d{width:74.390227px;}
._2c{width:75.950100px;}
._2b{width:79.555561px;}
._28{width:81.422642px;}
._42{width:82.795738px;}
._62{width:83.925504px;}
._25{width:85.940100px;}
._2a{width:90.479939px;}
._29{width:94.152476px;}
._61{width:95.373797px;}
._24{width:97.750258px;}
._20{width:106.850100px;}
._1f{width:108.158129px;}
._48{width:114.106406px;}
._47{width:115.770569px;}
._26{width:117.284100px;}
._21{width:118.661400px;}
._45{width:126.049651px;}
._46{width:133.043443px;}
._4a{width:136.809331px;}
._27{width:139.121400px;}
._58{width:140.682816px;}
._72{width:145.686067px;}
._38{width:147.891802px;}
._22{width:150.017400px;}
._23{width:155.480700px;}
._73{width:167.582016px;}
._7d{width:172.585267px;}
._77{width:182.268979px;}
._6f{width:186.034867px;}
._6d{width:195.019200px;}
._7a{width:212.934067px;}
._83{width:231.494515px;}
._7f{width:237.466138px;}
._81{width:258.447514px;}
._40{width:262.052006px;}
._5d{width:263.181773px;}
._71{width:270.390758px;}
._79{width:275.716800px;}
._74{width:279.267494px;}
._6c{width:285.292915px;}
._39{width:287.241605px;}
._85{width:288.251827px;}
._78{width:292.770893px;}
._76{width:294.277248px;}
._7c{width:297.236160px;}
._84{width:300.195072px;}
._6e{width:306.220493px;}
._75{width:309.125606px;}
._60{width:329.515200px;}
._7b{width:333.119693px;}
._82{width:336.024806px;}
._80{width:339.091315px;}
._5f{width:341.404646px;}
._70{width:345.062938px;}
._3e{width:366.797491px;}
._3a{width:369.702605px;}
._57{width:370.832371px;}
._33{width:381.340800px;}
._7e{width:383.905382px;}
._4f{width:398.161958px;}
._37{width:435.444250px;}
._34{width:443.538917px;}
._3f{width:483.271027px;}
._5c{width:484.400794px;}
._3d{width:486.229939px;}
._5b{width:487.359706px;}
._3b{width:489.242650px;}
._59{width:490.372416px;}
._3c{width:498.226982px;}
._5a{width:499.356749px;}
._41{width:516.088051px;}
._5e{width:517.217818px;}
._55{width:520.660915px;}
._53{width:625.406400px;}
._4e{width:628.311514px;}
._30{width:630.212198px;}
._4b{width:640.254758px;}
._49{width:694.053158px;}
._4c{width:701.220293px;}
._54{width:741.879936px;}
._52{width:744.838848px;}
._50{width:747.851558px;}
._51{width:756.835891px;}
._56{width:774.696960px;}
._2e{width:1088.785632px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.887800px;}
.fs5{font-size:35.865600px;}
.fs8{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y33{bottom:103.584000px;}
.y32{bottom:118.527000px;}
.y281{bottom:120.022500px;}
.y9a{bottom:123.907500px;}
.y114{bottom:124.020000px;}
.y313{bottom:124.998000px;}
.y31{bottom:133.471500px;}
.y280{bottom:136.461000px;}
.y5a{bottom:139.185000px;}
.y99{bottom:141.777000px;}
.y312{bottom:142.930500px;}
.y98{bottom:144.231000px;}
.y113{bottom:144.343500px;}
.y13f{bottom:145.210500px;}
.y1ec{bottom:146.290500px;}
.y80{bottom:146.821500px;}
.y193{bottom:147.105000px;}
.y30{bottom:148.416000px;}
.y27f{bottom:152.898000px;}
.y7f{bottom:154.129500px;}
.y59{bottom:155.461500px;}
.y311{bottom:160.863000px;}
.y13e{bottom:162.232500px;}
.y2f{bottom:163.359000px;}
.y97{bottom:164.554500px;}
.y112{bottom:164.667000px;}
.y1eb{bottom:166.614000px;}
.y192{bottom:167.428500px;}
.ye6{bottom:169.072500px;}
.y27e{bottom:169.336500px;}
.y1b9{bottom:171.181500px;}
.y181{bottom:173.424000px;}
.y7e{bottom:177.465000px;}
.y2e{bottom:178.303500px;}
.y57{bottom:178.632000px;}
.y310{bottom:178.795500px;}
.y2d{bottom:184.017000px;}
.y2e1{bottom:184.221000px;}
.y58{bottom:184.570500px;}
.y96{bottom:184.878000px;}
.y111{bottom:184.992000px;}
.y2b3{bottom:185.775000px;}
.y1ea{bottom:186.937500px;}
.y191{bottom:187.753500px;}
.ye5{bottom:193.929000px;}
.y13d{bottom:196.417500px;}
.y30f{bottom:196.729500px;}
.y7d{bottom:197.788500px;}
.y27d{bottom:198.417000px;}
.y56{bottom:198.957000px;}
.y2c{bottom:200.292000px;}
.y2e0{bottom:200.659500px;}
.y2b2{bottom:202.213500px;}
.y95{bottom:205.203000px;}
.y110{bottom:205.315500px;}
.y1b8{bottom:206.044500px;}
.yba{bottom:206.235000px;}
.y1e9{bottom:207.261000px;}
.y190{bottom:208.077000px;}
.y180{bottom:212.199000px;}
.ye4{bottom:214.252500px;}
.y30e{bottom:214.662000px;}
.y27c{bottom:214.855500px;}
.y2df{bottom:217.098000px;}
.y7c{bottom:218.112000px;}
.y2b1{bottom:218.652000px;}
.y55{bottom:219.280500px;}
.y2b{bottom:221.836500px;}
.y94{bottom:225.526500px;}
.y10f{bottom:225.639000px;}
.y1b7{bottom:226.368000px;}
.yb9{bottom:226.558500px;}
.y1e8{bottom:227.584500px;}
.y18f{bottom:231.274500px;}
.y27b{bottom:231.294000px;}
.y17f{bottom:232.522500px;}
.ye3{bottom:234.576000px;}
.y2b0{bottom:235.090500px;}
.y7b{bottom:238.435500px;}
.y20d{bottom:238.600500px;}
.y13c{bottom:239.244000px;}
.y53{bottom:239.604000px;}
.y2a{bottom:242.161500px;}
.y54{bottom:245.542500px;}
.y93{bottom:245.850000px;}
.y10e{bottom:245.962500px;}
.y1b6{bottom:246.691500px;}
.yb8{bottom:246.882000px;}
.y27a{bottom:247.732500px;}
.y1e7{bottom:247.909500px;}
.y2de{bottom:248.421000px;}
.y30d{bottom:250.896000px;}
.y22a{bottom:251.125500px;}
.y18e{bottom:251.598000px;}
.y17e{bottom:252.846000px;}
.ye2{bottom:254.899500px;}
.y7a{bottom:258.826500px;}
.y13b{bottom:259.569000px;}
.y52{bottom:259.953000px;}
.y29{bottom:262.485000px;}
.y2dd{bottom:264.859500px;}
.y92{bottom:266.173500px;}
.y2af{bottom:266.241000px;}
.y10d{bottom:266.286000px;}
.y1b5{bottom:267.016500px;}
.yb7{bottom:267.207000px;}
.y1e6{bottom:268.233000px;}
.y18d{bottom:269.467500px;}
.y229{bottom:271.449000px;}
.y18c{bottom:271.921500px;}
.y17d{bottom:273.169500px;}
.y30c{bottom:274.390500px;}
.y279{bottom:276.813000px;}
.y20c{bottom:277.083000px;}
.y79{bottom:279.150000px;}
.y25f{bottom:279.280500px;}
.ye1{bottom:279.792000px;}
.y13a{bottom:279.892500px;}
.y51{bottom:280.276500px;}
.y2dc{bottom:281.296500px;}
.y2ae{bottom:282.678000px;}
.y28{bottom:282.808500px;}
.y91{bottom:286.497000px;}
.y10c{bottom:286.611000px;}
.yb6{bottom:287.530500px;}
.y1e5{bottom:288.556500px;}
.y30b{bottom:289.333500px;}
.y228{bottom:291.774000px;}
.y258{bottom:291.991500px;}
.y18b{bottom:292.246500px;}
.y278{bottom:293.251500px;}
.y17c{bottom:293.494500px;}
.y20b{bottom:297.406500px;}
.y2db{bottom:297.735000px;}
.y2ad{bottom:299.116500px;}
.y1b4{bottom:299.304000px;}
.y78{bottom:299.473500px;}
.ye0{bottom:300.115500px;}
.y139{bottom:300.216000px;}
.y50{bottom:300.600000px;}
.y27{bottom:303.132000px;}
.y30a{bottom:304.278000px;}
.y90{bottom:306.822000px;}
.y10b{bottom:306.934500px;}
.yb5{bottom:307.854000px;}
.y1e4{bottom:308.880000px;}
.y277{bottom:309.690000px;}
.y227{bottom:312.097500px;}
.y257{bottom:312.315000px;}
.y18a{bottom:312.570000px;}
.y17b{bottom:315.318000px;}
.y2ac{bottom:315.555000px;}
.y20a{bottom:317.730000px;}
.y25e{bottom:317.809500px;}
.y309{bottom:319.222500px;}
.y77{bottom:319.797000px;}
.y4f{bottom:320.923500px;}
.y26{bottom:323.455500px;}
.y276{bottom:326.128500px;}
.y8f{bottom:327.145500px;}
.y10a{bottom:327.258000px;}
.yb4{bottom:328.177500px;}
.y2da{bottom:329.058000px;}
.y1e3{bottom:329.203500px;}
.y138{bottom:329.314500px;}
.y226{bottom:332.421000px;}
.y256{bottom:332.640000px;}
.ydf{bottom:333.030000px;}
.y308{bottom:334.165500px;}
.y17a{bottom:335.641500px;}
.y189{bottom:335.767500px;}
.y1b3{bottom:336.237000px;}
.y209{bottom:338.055000px;}
.y25d{bottom:338.133000px;}
.y76{bottom:340.120500px;}
.y137{bottom:340.344000px;}
.y4e{bottom:341.248500px;}
.y275{bottom:342.567000px;}
.y25{bottom:343.780500px;}
.y2d9{bottom:345.496500px;}
.y2ab{bottom:346.705500px;}
.y8e{bottom:347.469000px;}
.y109{bottom:347.694000px;}
.yb3{bottom:348.501000px;}
.y307{bottom:349.110000px;}
.y1e2{bottom:349.527000px;}
.y225{bottom:352.744500px;}
.y255{bottom:352.963500px;}
.yde{bottom:353.353500px;}
.y179{bottom:355.965000px;}
.y188{bottom:356.091000px;}
.y1b2{bottom:356.560500px;}
.y75{bottom:357.990000px;}
.y208{bottom:358.378500px;}
.y25c{bottom:358.458000px;}
.y74{bottom:360.444000px;}
.y4d{bottom:361.572000px;}
.y2aa{bottom:363.144000px;}
.y306{bottom:364.053000px;}
.y24{bottom:364.104000px;}
.y8d{bottom:367.792500px;}
.y108{bottom:368.019000px;}
.y1e1{bottom:369.852000px;}
.y274{bottom:371.647500px;}
.y224{bottom:373.068000px;}
.y254{bottom:373.287000px;}
.ydc{bottom:373.677000px;}
.y178{bottom:376.290000px;}
.y187{bottom:376.416000px;}
.yb2{bottom:376.765500px;}
.y2d8{bottom:376.819500px;}
.y1b1{bottom:376.884000px;}
.y207{bottom:378.702000px;}
.y25b{bottom:378.781500px;}
.y305{bottom:378.997500px;}
.y2a9{bottom:379.582500px;}
.ydd{bottom:379.615500px;}
.y73{bottom:380.769000px;}
.y4c{bottom:381.895500px;}
.y22{bottom:384.427500px;}
.y136{bottom:384.909000px;}
.y273{bottom:388.086000px;}
.y107{bottom:388.342500px;}
.y1e0{bottom:390.175500px;}
.y23{bottom:390.366000px;}
.y2d7{bottom:393.258000px;}
.y223{bottom:393.393000px;}
.y253{bottom:393.610500px;}
.y304{bottom:393.942000px;}
.ydb{bottom:394.002000px;}
.y2a8{bottom:396.021000px;}
.y186{bottom:396.739500px;}
.y1b0{bottom:397.207500px;}
.y177{bottom:398.113500px;}
.y206{bottom:399.025500px;}
.y25a{bottom:399.105000px;}
.y72{bottom:401.092500px;}
.y4b{bottom:402.219000px;}
.y272{bottom:404.524500px;}
.y20{bottom:404.751000px;}
.y135{bottom:405.232500px;}
.y106{bottom:408.666000px;}
.y303{bottom:408.885000px;}
.y2d6{bottom:409.696500px;}
.y8c{bottom:409.789500px;}
.y1df{bottom:410.499000px;}
.y21{bottom:410.689500px;}
.y2a7{bottom:412.458000px;}
.y222{bottom:413.716500px;}
.yb1{bottom:413.920500px;}
.y252{bottom:413.934000px;}
.yda{bottom:414.325500px;}
.y185{bottom:417.063000px;}
.y1af{bottom:417.903000px;}
.y176{bottom:418.437000px;}
.y205{bottom:419.349000px;}
.y259{bottom:419.428500px;}
.y271{bottom:420.963000px;}
.y71{bottom:421.416000px;}
.y4a{bottom:422.542500px;}
.y302{bottom:423.829500px;}
.y1f{bottom:425.074500px;}
.y134{bottom:425.556000px;}
.y2d5{bottom:426.133500px;}
.y8b{bottom:427.723500px;}
.y2a6{bottom:428.896500px;}
.y105{bottom:428.989500px;}
.y1de{bottom:430.822500px;}
.y221{bottom:434.040000px;}
.yb0{bottom:434.244000px;}
.yd9{bottom:434.649000px;}
.y184{bottom:437.386500px;}
.y270{bottom:437.401500px;}
.y1ae{bottom:438.226500px;}
.y175{bottom:438.760500px;}
.y301{bottom:438.774000px;}
.y204{bottom:439.674000px;}
.y251{bottom:439.752000px;}
.y70{bottom:441.739500px;}
.y2d4{bottom:442.572000px;}
.y49{bottom:442.867500px;}
.y1e{bottom:445.399500px;}
.y8a{bottom:445.656000px;}
.y133{bottom:445.879500px;}
.y104{bottom:449.313000px;}
.y1dd{bottom:451.146000px;}
.y300{bottom:453.717000px;}
.y26f{bottom:453.838500px;}
.y220{bottom:454.363500px;}
.yaf{bottom:454.567500px;}
.yd8{bottom:454.972500px;}
.y183{bottom:457.710000px;}
.y1ad{bottom:458.550000px;}
.y174{bottom:459.084000px;}
.y2a5{bottom:460.047000px;}
.y250{bottom:460.077000px;}
.y203{bottom:460.815000px;}
.y6f{bottom:462.063000px;}
.y89{bottom:463.588500px;}
.y1d{bottom:465.723000px;}
.y132{bottom:466.203000px;}
.y2ff{bottom:468.661500px;}
.y103{bottom:469.638000px;}
.y1dc{bottom:471.471000px;}
.y2d3{bottom:473.895000px;}
.y48{bottom:474.298500px;}
.y21f{bottom:474.687000px;}
.yae{bottom:474.892500px;}
.yd7{bottom:475.296000px;}
.y2a4{bottom:476.485500px;}
.y1ac{bottom:478.873500px;}
.y173{bottom:479.409000px;}
.y26e{bottom:480.001500px;}
.y24f{bottom:480.400500px;}
.y182{bottom:480.909000px;}
.y202{bottom:481.140000px;}
.y6e{bottom:482.388000px;}
.y2fe{bottom:483.606000px;}
.y1c{bottom:486.046500px;}
.y131{bottom:487.506000px;}
.y102{bottom:489.961500px;}
.y2d2{bottom:490.333500px;}
.y1db{bottom:491.794500px;}
.y2a3{bottom:492.924000px;}
.y21e{bottom:495.010500px;}
.yad{bottom:495.216000px;}
.y88{bottom:495.568500px;}
.yd6{bottom:495.621000px;}
.y2fd{bottom:498.549000px;}
.y1ab{bottom:499.198500px;}
.y24e{bottom:500.724000px;}
.y172{bottom:501.232500px;}
.y201{bottom:501.463500px;}
.y6d{bottom:502.711500px;}
.y1b{bottom:506.370000px;}
.y2d1{bottom:506.772000px;}
.y130{bottom:507.829500px;}
.y2a2{bottom:509.362500px;}
.y47{bottom:510.034500px;}
.y101{bottom:510.285000px;}
.y87{bottom:510.513000px;}
.y1da{bottom:512.118000px;}
.y2fc{bottom:513.493500px;}
.y21d{bottom:515.335500px;}
.y26d{bottom:515.455500px;}
.yac{bottom:515.539500px;}
.yd5{bottom:515.944500px;}
.y1aa{bottom:519.892500px;}
.y24d{bottom:521.047500px;}
.y171{bottom:521.556000px;}
.y200{bottom:521.787000px;}
.y6c{bottom:523.035000px;}
.y2d0{bottom:523.210500px;}
.y86{bottom:525.456000px;}
.y1a{bottom:526.693500px;}
.y12f{bottom:528.154500px;}
.y2fb{bottom:528.438000px;}
.y46{bottom:530.358000px;}
.y100{bottom:530.608500px;}
.y1d9{bottom:532.441500px;}
.y21c{bottom:535.659000px;}
.yab{bottom:535.863000px;}
.yd4{bottom:536.268000px;}
.y2cf{bottom:539.649000px;}
.y1a9{bottom:540.216000px;}
.y85{bottom:540.400500px;}
.y2a1{bottom:540.511500px;}
.y170{bottom:541.879500px;}
.y1ff{bottom:542.110500px;}
.y6b{bottom:543.358500px;}
.y2fa{bottom:543.381000px;}
.y19{bottom:547.018500px;}
.y12e{bottom:548.478000px;}
.y45{bottom:550.681500px;}
.y26c{bottom:550.707000px;}
.yff{bottom:550.932000px;}
.y1d8{bottom:552.765000px;}
.y84{bottom:555.345000px;}
.y2ce{bottom:556.087500px;}
.yaa{bottom:556.186500px;}
.yd3{bottom:556.591500px;}
.y2a0{bottom:556.950000px;}
.y2f9{bottom:558.325500px;}
.y1a8{bottom:560.539500px;}
.y21b{bottom:561.258000px;}
.y1fe{bottom:562.434000px;}
.y6a{bottom:563.682000px;}
.y18{bottom:567.342000px;}
.y12d{bottom:568.801500px;}
.y44{bottom:571.005000px;}
.y26b{bottom:571.030500px;}
.yfe{bottom:571.369500px;}
.y24c{bottom:572.754000px;}
.y1d7{bottom:573.090000px;}
.y2f8{bottom:573.270000px;}
.y29f{bottom:573.388500px;}
.ya9{bottom:576.511500px;}
.yd2{bottom:576.915000px;}
.y1a7{bottom:580.864500px;}
.y21a{bottom:581.581500px;}
.y1fd{bottom:582.759000px;}
.y69{bottom:584.007000px;}
.y2cd{bottom:587.409000px;}
.y17{bottom:587.665500px;}
.y2f7{bottom:588.213000px;}
.y12c{bottom:589.125000px;}
.y29e{bottom:589.827000px;}
.y24b{bottom:590.686500px;}
.y43{bottom:591.330000px;}
.y26a{bottom:591.354000px;}
.yfd{bottom:591.693000px;}
.y16f{bottom:593.586000px;}
.y1d6{bottom:595.471500px;}
.ya8{bottom:596.835000px;}
.yd1{bottom:597.238500px;}
.y1a6{bottom:601.188000px;}
.y219{bottom:601.906500px;}
.y1fc{bottom:603.082500px;}
.y2f6{bottom:603.157500px;}
.y2cc{bottom:603.847500px;}
.y29d{bottom:606.265500px;}
.y16{bottom:607.989000px;}
.y24a{bottom:608.619000px;}
.y12b{bottom:609.448500px;}
.y16e{bottom:611.518500px;}
.y42{bottom:611.653500px;}
.y269{bottom:611.679000px;}
.yfc{bottom:612.016500px;}
.y1d5{bottom:615.795000px;}
.ya7{bottom:617.158500px;}
.yd0{bottom:617.563500px;}
.y2f5{bottom:618.100500px;}
.y2cb{bottom:620.286000px;}
.y1a5{bottom:621.511500px;}
.y218{bottom:622.230000px;}
.y29c{bottom:622.704000px;}
.y1fb{bottom:623.406000px;}
.y68{bottom:624.846000px;}
.y249{bottom:626.553000px;}
.y16d{bottom:627.210000px;}
.y15{bottom:628.312500px;}
.y16c{bottom:629.451000px;}
.y12a{bottom:629.773500px;}
.y41{bottom:631.977000px;}
.y268{bottom:632.002500px;}
.yfb{bottom:632.340000px;}
.y2f4{bottom:633.045000px;}
.y1d4{bottom:636.120000px;}
.y2ca{bottom:636.724500px;}
.ya6{bottom:637.482000px;}
.ycf{bottom:637.887000px;}
.y1a4{bottom:642.205500px;}
.y217{bottom:642.553500px;}
.y67{bottom:642.778500px;}
.y248{bottom:644.485500px;}
.y1fa{bottom:644.548500px;}
.y2f3{bottom:647.989500px;}
.y129{bottom:650.097000px;}
.y40{bottom:652.300500px;}
.y267{bottom:652.326000px;}
.yfa{bottom:652.665000px;}
.y2c9{bottom:653.163000px;}
.y29b{bottom:653.853000px;}
.y1d3{bottom:656.443500px;}
.ya5{bottom:657.805500px;}
.yce{bottom:658.210500px;}
.y14{bottom:658.930500px;}
.y16b{bottom:660.087000px;}
.y66{bottom:660.711000px;}
.y1a3{bottom:662.529000px;}
.y216{bottom:662.877000px;}
.y1f9{bottom:664.872000px;}
.y2c8{bottom:669.601500px;}
.y29a{bottom:670.291500px;}
.y16a{bottom:670.548000px;}
.y2f2{bottom:671.482500px;}
.y3f{bottom:672.624000px;}
.y266{bottom:672.649500px;}
.yf9{bottom:672.988500px;}
.y1d2{bottom:676.767000px;}
.y128{bottom:678.255000px;}
.ycd{bottom:678.534000px;}
.ya4{bottom:679.162500px;}
.y247{bottom:680.719500px;}
.y169{bottom:681.007500px;}
.y1a2{bottom:682.854000px;}
.y215{bottom:683.200500px;}
.y1f8{bottom:685.195500px;}
.y2f1{bottom:686.427000px;}
.y299{bottom:686.730000px;}
.y13{bottom:690.597000px;}
.y168{bottom:691.468500px;}
.y3e{bottom:692.949000px;}
.y265{bottom:692.973000px;}
.yf8{bottom:693.312000px;}
.y246{bottom:695.664000px;}
.y1d1{bottom:697.090500px;}
.ycc{bottom:698.857500px;}
.ya3{bottom:699.486000px;}
.y2c7{bottom:700.924500px;}
.y167{bottom:701.929500px;}
.y298{bottom:703.168500px;}
.y1a1{bottom:703.177500px;}
.y214{bottom:703.525500px;}
.y12{bottom:708.529500px;}
.y245{bottom:710.607000px;}
.y127{bottom:712.050000px;}
.y166{bottom:712.390500px;}
.y1f7{bottom:713.035500px;}
.y3d{bottom:713.272500px;}
.y264{bottom:713.298000px;}
.yf7{bottom:713.635500px;}
.y2c6{bottom:717.361500px;}
.y1d0{bottom:717.414000px;}
.ycb{bottom:719.182500px;}
.ya2{bottom:719.809500px;}
.y2f0{bottom:722.560500px;}
.y165{bottom:722.851500px;}
.y213{bottom:723.849000px;}
.y244{bottom:725.551500px;}
.y11{bottom:726.462000px;}
.y1a0{bottom:730.128000px;}
.y164{bottom:733.312500px;}
.y3c{bottom:733.596000px;}
.y263{bottom:733.621500px;}
.y2c5{bottom:733.800000px;}
.yf6{bottom:734.073000px;}
.y297{bottom:734.319000px;}
.yca{bottom:739.506000px;}
.ya1{bottom:740.133000px;}
.y243{bottom:740.496000px;}
.y2ef{bottom:742.884000px;}
.y163{bottom:743.773500px;}
.y212{bottom:744.172500px;}
.y10{bottom:744.394500px;}
.y1f6{bottom:749.448000px;}
.y2c4{bottom:750.238500px;}
.y296{bottom:750.757500px;}
.y126{bottom:751.090500px;}
.y83{bottom:752.943000px;}
.y3b{bottom:753.919500px;}
.y262{bottom:753.945000px;}
.y162{bottom:754.233000px;}
.yf5{bottom:754.396500px;}
.y242{bottom:755.439000px;}
.yc9{bottom:759.829500px;}
.yf{bottom:762.328500px;}
.y2ee{bottom:763.207500px;}
.y211{bottom:764.496000px;}
.y161{bottom:764.694000px;}
.y19f{bottom:764.991000px;}
.y295{bottom:767.196000px;}
.y82{bottom:767.887500px;}
.y1f5{bottom:769.771500px;}
.y241{bottom:770.980500px;}
.y125{bottom:771.414000px;}
.y1cf{bottom:773.238000px;}
.ya0{bottom:774.061500px;}
.y3a{bottom:774.243000px;}
.y261{bottom:774.268500px;}
.yf4{bottom:774.720000px;}
.y160{bottom:775.155000px;}
.yc8{bottom:780.153000px;}
.ye{bottom:780.261000px;}
.y2c3{bottom:781.561500px;}
.y81{bottom:782.830500px;}
.y2ed{bottom:783.531000px;}
.y294{bottom:783.633000px;}
.y210{bottom:784.819500px;}
.y19e{bottom:785.314500px;}
.y15f{bottom:785.616000px;}
.y240{bottom:785.925000px;}
.y1f4{bottom:790.095000px;}
.y1ce{bottom:791.170500px;}
.y124{bottom:791.737500px;}
.y39{bottom:794.568000px;}
.y260{bottom:794.592000px;}
.y9f{bottom:794.983500px;}
.yf3{bottom:795.043500px;}
.y15e{bottom:796.077000px;}
.y2c2{bottom:798.000000px;}
.yd{bottom:798.193500px;}
.y293{bottom:800.071500px;}
.y23f{bottom:800.869500px;}
.yc7{bottom:805.045500px;}
.y20f{bottom:805.144500px;}
.y19d{bottom:805.638000px;}
.y15d{bottom:806.538000px;}
.y1cd{bottom:809.103000px;}
.y1f3{bottom:810.420000px;}
.y123{bottom:812.062500px;}
.y2ec{bottom:813.966000px;}
.y2c1{bottom:814.438500px;}
.y38{bottom:814.917000px;}
.yf2{bottom:815.367000px;}
.y23e{bottom:815.812500px;}
.yc{bottom:816.126000px;}
.y292{bottom:816.510000px;}
.y15c{bottom:816.997500px;}
.y20e{bottom:825.468000px;}
.y19c{bottom:825.961500px;}
.y15b{bottom:827.458500px;}
.y1f2{bottom:830.743500px;}
.y23d{bottom:830.757000px;}
.y2c0{bottom:830.877000px;}
.y122{bottom:832.386000px;}
.y291{bottom:832.948500px;}
.yb{bottom:834.058500px;}
.y9e{bottom:834.207000px;}
.y2eb{bottom:834.886500px;}
.y37{bottom:835.240500px;}
.yf1{bottom:835.690500px;}
.y15a{bottom:837.919500px;}
.yc6{bottom:837.960000px;}
.y1cc{bottom:845.338500px;}
.y23c{bottom:845.701500px;}
.y19b{bottom:846.286500px;}
.y2bf{bottom:847.315500px;}
.y159{bottom:848.380500px;}
.y1f1{bottom:851.067000px;}
.ya{bottom:851.991000px;}
.y121{bottom:852.709500px;}
.y9d{bottom:854.532000px;}
.y36{bottom:855.564000px;}
.yf0{bottom:856.015500px;}
.yc5{bottom:858.283500px;}
.y158{bottom:858.841500px;}
.y1cb{bottom:860.281500px;}
.y23b{bottom:860.644500px;}
.y2be{bottom:863.754000px;}
.y290{bottom:864.099000px;}
.y2ea{bottom:865.531500px;}
.y19a{bottom:866.610000px;}
.y157{bottom:869.302500px;}
.y9{bottom:869.925000px;}
.y1f0{bottom:871.390500px;}
.y120{bottom:873.033000px;}
.y9c{bottom:874.855500px;}
.y1ca{bottom:875.226000px;}
.y23a{bottom:875.589000px;}
.y35{bottom:875.887500px;}
.yef{bottom:876.451500px;}
.yc4{bottom:878.607000px;}
.y156{bottom:879.763500px;}
.y2bd{bottom:880.191000px;}
.y28f{bottom:880.537500px;}
.y2e9{bottom:881.970000px;}
.y199{bottom:886.933500px;}
.y8{bottom:887.857500px;}
.y1c9{bottom:890.170500px;}
.y155{bottom:890.223000px;}
.y239{bottom:890.532000px;}
.y9b{bottom:895.179000px;}
.y34{bottom:896.211000px;}
.yee{bottom:896.775000px;}
.y28e{bottom:896.976000px;}
.y2e8{bottom:898.408500px;}
.yc3{bottom:898.930500px;}
.y154{bottom:900.684000px;}
.y1c8{bottom:905.113500px;}
.y238{bottom:905.476500px;}
.y198{bottom:907.257000px;}
.y153{bottom:911.145000px;}
.y2bc{bottom:911.514000px;}
.y28d{bottom:913.413000px;}
.y2e7{bottom:914.847000px;}
.y7{bottom:916.536000px;}
.yed{bottom:917.098500px;}
.yc2{bottom:919.254000px;}
.y1c7{bottom:920.058000px;}
.y237{bottom:921.018000px;}
.y152{bottom:921.606000px;}
.y1ef{bottom:923.097000px;}
.y11f{bottom:926.697000px;}
.y197{bottom:927.580500px;}
.y2bb{bottom:927.952500px;}
.y28c{bottom:929.851500px;}
.y2e6{bottom:931.285500px;}
.y1c6{bottom:935.002500px;}
.y236{bottom:935.962500px;}
.y65{bottom:936.859500px;}
.yec{bottom:937.423500px;}
.yc1{bottom:939.579000px;}
.y151{bottom:940.290000px;}
.y1ee{bottom:941.029500px;}
.y2ba{bottom:944.391000px;}
.y11e{bottom:944.631000px;}
.y2e5{bottom:947.724000px;}
.y1c5{bottom:949.945500px;}
.y150{bottom:950.749500px;}
.y235{bottom:950.907000px;}
.y64{bottom:957.183000px;}
.yeb{bottom:957.747000px;}
.y1ed{bottom:958.962000px;}
.yc0{bottom:959.902500px;}
.y2b9{bottom:960.829500px;}
.y28b{bottom:961.002000px;}
.y14f{bottom:961.210500px;}
.y2e4{bottom:964.162500px;}
.y196{bottom:964.188000px;}
.y1c4{bottom:964.890000px;}
.y234{bottom:965.850000px;}
.y14e{bottom:971.671500px;}
.y11d{bottom:976.611000px;}
.y2b8{bottom:977.268000px;}
.y28a{bottom:977.440500px;}
.y63{bottom:977.506500px;}
.yea{bottom:978.070500px;}
.y1c3{bottom:979.834500px;}
.y2e3{bottom:980.601000px;}
.y233{bottom:980.794500px;}
.y14d{bottom:982.132500px;}
.ybf{bottom:984.793500px;}
.y11c{bottom:991.554000px;}
.y6{bottom:992.283000px;}
.y14c{bottom:992.593500px;}
.y2b7{bottom:993.706500px;}
.y289{bottom:993.879000px;}
.y1c2{bottom:994.777500px;}
.y232{bottom:995.737500px;}
.y195{bottom:997.396500px;}
.y62{bottom:997.830000px;}
.ye9{bottom:998.394000px;}
.y14b{bottom:1003.054500px;}
.y194{bottom:1004.836500px;}
.y2e2{bottom:1008.589500px;}
.y1c1{bottom:1009.722000px;}
.y288{bottom:1010.317500px;}
.y231{bottom:1010.682000px;}
.y5{bottom:1013.205000px;}
.y14a{bottom:1013.514000px;}
.y11b{bottom:1017.676500px;}
.ybe{bottom:1017.708000px;}
.y61{bottom:1018.155000px;}
.ye8{bottom:1018.717500px;}
.y1c0{bottom:1024.666500px;}
.y2b6{bottom:1025.028000px;}
.y230{bottom:1025.626500px;}
.y287{bottom:1026.756000px;}
.y149{bottom:1032.198000px;}
.y4{bottom:1034.125500px;}
.ybd{bottom:1038.031500px;}
.y60{bottom:1038.478500px;}
.y11a{bottom:1038.598500px;}
.y22f{bottom:1040.569500px;}
.y2b5{bottom:1041.466500px;}
.y148{bottom:1042.659000px;}
.y286{bottom:1043.193000px;}
.ye7{bottom:1045.156500px;}
.y1bf{bottom:1048.159500px;}
.y147{bottom:1053.120000px;}
.y3{bottom:1055.047500px;}
.y22e{bottom:1055.514000px;}
.y2b4{bottom:1057.905000px;}
.ybc{bottom:1058.355000px;}
.y5f{bottom:1058.802000px;}
.y119{bottom:1059.400500px;}
.y285{bottom:1059.631500px;}
.y1be{bottom:1063.104000px;}
.y146{bottom:1063.581000px;}
.y22d{bottom:1071.055500px;}
.y145{bottom:1074.040500px;}
.y118{bottom:1074.343500px;}
.y2{bottom:1075.969500px;}
.ybb{bottom:1078.680000px;}
.y5e{bottom:1079.125500px;}
.y144{bottom:1084.501500px;}
.y22c{bottom:1086.000000px;}
.y1bd{bottom:1086.597000px;}
.y284{bottom:1090.782000px;}
.y143{bottom:1094.962500px;}
.y5d{bottom:1099.449000px;}
.y117{bottom:1100.466000px;}
.y1bc{bottom:1101.541500px;}
.y142{bottom:1105.423500px;}
.y283{bottom:1107.220500px;}
.y22b{bottom:1116.486000px;}
.y5c{bottom:1119.774000px;}
.y116{bottom:1120.789500px;}
.y282{bottom:1123.659000px;}
.y141{bottom:1124.107500px;}
.y1bb{bottom:1125.036000px;}
.y1{bottom:1128.208500px;}
.y1ba{bottom:1139.979000px;}
.y5b{bottom:1140.097500px;}
.y115{bottom:1141.711500px;}
.y140{bottom:1143.117000px;}
.h15{height:2.618184px;}
.h18{height:18.452675px;}
.h9{height:24.675533px;}
.he{height:24.871000px;}
.h17{height:25.572173px;}
.h8{height:32.900573px;}
.h11{height:33.187496px;}
.hb{height:36.098726px;}
.ha{height:37.013299px;}
.h1c{height:37.019299px;}
.h10{height:38.358259px;}
.h1e{height:40.109428px;}
.h1d{height:41.006062px;}
.h6{height:41.125613px;}
.h1f{height:41.719613px;}
.h20{height:41.725613px;}
.hf{height:43.920037px;}
.h1b{height:44.831700px;}
.h7{height:45.032765px;}
.h13{height:46.538221px;}
.hc{height:46.669130px;}
.h5{height:48.131635px;}
.h12{height:49.090950px;}
.h4{height:49.351066px;}
.h19{height:50.718818px;}
.h3{height:51.144346px;}
.h2{height:61.373044px;}
.hd{height:66.470573px;}
.h14{height:93.208950px;}
.h1a{height:135.452184px;}
.h16{height:139.358184px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:104.122500px;}
.x9{left:106.299000px;}
.x4c{left:118.294500px;}
.xa{left:122.662500px;}
.xf{left:125.278500px;}
.x10{left:130.252500px;}
.x8{left:131.811000px;}
.x2e{left:133.198500px;}
.x54{left:134.781000px;}
.x60{left:140.796000px;}
.x1e{left:150.480000px;}
.x5d{left:170.914500px;}
.x38{left:174.034500px;}
.x1{left:176.284500px;}
.x2c{left:178.177500px;}
.x1f{left:182.119500px;}
.x57{left:200.725500px;}
.x12{left:206.514000px;}
.x55{left:210.681000px;}
.x58{left:216.295500px;}
.x3a{left:221.590500px;}
.x22{left:226.578000px;}
.x7{left:236.637000px;}
.x14{left:238.927500px;}
.x39{left:250.921500px;}
.x3c{left:257.973000px;}
.x3{left:266.923500px;}
.x3d{left:272.595000px;}
.x5a{left:285.811500px;}
.x4e{left:294.135000px;}
.x3b{left:295.353000px;}
.x20{left:312.147000px;}
.x3e{left:316.762500px;}
.x4f{left:317.890500px;}
.xb{left:326.323500px;}
.x21{left:327.646500px;}
.x2d{left:330.327000px;}
.x5b{left:333.283500px;}
.xc{left:337.119000px;}
.x56{left:340.861500px;}
.x6{left:343.344000px;}
.x3f{left:354.034500px;}
.x5{left:359.554500px;}
.x11{left:371.160000px;}
.x50{left:373.770000px;}
.x2{left:390.919500px;}
.x4{left:393.250500px;}
.x5c{left:394.852500px;}
.x51{left:396.544500px;}
.xd{left:397.683000px;}
.x13{left:403.438500px;}
.xe{left:409.599000px;}
.x5f{left:413.635500px;}
.x53{left:421.882500px;}
.x4d{left:455.722500px;}
.x16{left:457.986000px;}
.x17{left:459.213000px;}
.x62{left:468.178500px;}
.x29{left:469.399500px;}
.x15{left:475.576500px;}
.x1c{left:478.191000px;}
.x40{left:482.391000px;}
.x1d{left:483.421500px;}
.x41{left:488.298000px;}
.x61{left:489.501000px;}
.x44{left:495.048000px;}
.x42{left:502.492500px;}
.x32{left:508.303500px;}
.x47{left:521.277000px;}
.x48{left:533.748000px;}
.x33{left:537.796500px;}
.x30{left:540.742500px;}
.x31{left:552.519000px;}
.x49{left:561.367500px;}
.x18{left:566.740500px;}
.x34{left:568.689000px;}
.x19{left:577.537500px;}
.x23{left:587.742000px;}
.x2a{left:590.052000px;}
.x27{left:591.352500px;}
.x43{left:611.595000px;}
.x2b{left:612.646500px;}
.x4a{left:629.592000px;}
.x25{left:631.656000px;}
.x59{left:641.101500px;}
.x52{left:645.144000px;}
.x1a{left:658.492500px;}
.x1b{left:669.912000px;}
.x24{left:677.740500px;}
.x36{left:681.382500px;}
.x28{left:689.535000px;}
.x45{left:720.798000px;}
.x5e{left:745.518000px;}
.x46{left:748.071000px;}
.x37{left:750.751500px;}
.x35{left:754.383000px;}
.x4b{left:768.630000px;}
.x26{left:778.929000px;}
@media print{
.v5{vertical-align:-82.037333pt;}
.v1{vertical-align:-20.314667pt;}
.va{vertical-align:-9.776000pt;}
.v3{vertical-align:-8.725333pt;}
.v9{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:2.325333pt;}
.v6{vertical-align:12.101333pt;}
.vc{vertical-align:21.109333pt;}
.v2{vertical-align:29.840000pt;}
.vd{vertical-align:36.224000pt;}
.v4{vertical-align:39.216000pt;}
.v7{vertical-align:63.530667pt;}
.vf{vertical-align:72.170667pt;}
.v8{vertical-align:82.037333pt;}
.ve{vertical-align:118.074667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000933pt;}
.ls1c{letter-spacing:2.197187pt;}
.ls19{letter-spacing:2.656092pt;}
.ls1{letter-spacing:2.657067pt;}
.ls17{letter-spacing:2.661289pt;}
.ls1d{letter-spacing:11.927283pt;}
.ls18{letter-spacing:12.107957pt;}
.ls1b{letter-spacing:12.916374pt;}
.ls1a{letter-spacing:12.974556pt;}
.ls27{letter-spacing:13.283467pt;}
.ls10{letter-spacing:13.323647pt;}
.ls1e{letter-spacing:13.606624pt;}
.ls28{letter-spacing:14.254557pt;}
.ls3{letter-spacing:14.370921pt;}
.ls2{letter-spacing:14.429103pt;}
.ls7{letter-spacing:14.545467pt;}
.lsb{letter-spacing:14.603649pt;}
.ls5{letter-spacing:14.720012pt;}
.lsc{letter-spacing:16.116377pt;}
.ls15{letter-spacing:16.174559pt;}
.lsf{letter-spacing:16.465468pt;}
.ls13{letter-spacing:16.756378pt;}
.ls26{letter-spacing:17.002837pt;}
.ls0{letter-spacing:17.105469pt;}
.ls9{letter-spacing:17.396378pt;}
.ls16{letter-spacing:17.745469pt;}
.ls20{letter-spacing:17.803651pt;}
.ls2f{letter-spacing:18.501834pt;}
.lsd{letter-spacing:18.909107pt;}
.ls6{letter-spacing:18.967289pt;}
.ls25{letter-spacing:18.968790pt;}
.ls11{letter-spacing:19.263938pt;}
.lsa{letter-spacing:19.316380pt;}
.ls29{letter-spacing:19.553263pt;}
.ls2b{letter-spacing:19.765798pt;}
.ls1f{letter-spacing:24.203657pt;}
.lse{letter-spacing:29.323661pt;}
.ls2d{letter-spacing:30.977044pt;}
.ls8{letter-spacing:38.050941pt;}
.ls2e{letter-spacing:38.096982pt;}
.ls21{letter-spacing:42.729544pt;}
.ls22{letter-spacing:44.218219pt;}
.ls2a{letter-spacing:53.346402pt;}
.ls2c{letter-spacing:71.039980pt;}
.ls24{letter-spacing:99.350267pt;}
.ls23{letter-spacing:238.232437pt;}
.ls12{letter-spacing:299.287522pt;}
.wsa6{word-spacing:-37.899668pt;}
.wsa5{word-spacing:-28.241478pt;}
.wsa3{word-spacing:-28.183296pt;}
.ws40{word-spacing:-14.545467pt;}
.ws57{word-spacing:-13.283467pt;}
.wsaa{word-spacing:-7.970133pt;}
.wsa2{word-spacing:-5.632005pt;}
.wscf{word-spacing:-3.200003pt;}
.wsd0{word-spacing:-3.083639pt;}
.ws150{word-spacing:-2.922363pt;}
.wsfa{word-spacing:-2.850911pt;}
.wsa{word-spacing:-2.816095pt;}
.ws24{word-spacing:-2.792730pt;}
.ws8b{word-spacing:-2.676366pt;}
.wsd2{word-spacing:-2.618184pt;}
.ws115{word-spacing:-2.560002pt;}
.wsdd{word-spacing:-2.501820pt;}
.ws74{word-spacing:-2.443638pt;}
.ws82{word-spacing:-2.210911pt;}
.wsf4{word-spacing:-2.152729pt;}
.ws164{word-spacing:-2.125355pt;}
.wsf0{word-spacing:-2.094547pt;}
.ws123{word-spacing:-1.978183pt;}
.ws5c{word-spacing:-1.861820pt;}
.ws5{word-spacing:-1.859685pt;}
.ws165{word-spacing:-1.806551pt;}
.ws1b{word-spacing:-1.803638pt;}
.ws9f{word-spacing:-1.687274pt;}
.ws64{word-spacing:-1.617456pt;}
.ws2f{word-spacing:-1.570910pt;}
.wsde{word-spacing:-1.512729pt;}
.ws14c{word-spacing:-1.487748pt;}
.ws54{word-spacing:-1.434614pt;}
.wsc7{word-spacing:-1.402743pt;}
.ws72{word-spacing:-1.396365pt;}
.wsb1{word-spacing:-1.370863pt;}
.ws6c{word-spacing:-1.338183pt;}
.ws84{word-spacing:-1.280001pt;}
.ws47{word-spacing:-1.221819pt;}
.ws130{word-spacing:-1.168945pt;}
.wsf8{word-spacing:-1.163637pt;}
.wse8{word-spacing:-1.105455pt;}
.ws144{word-spacing:-1.062677pt;}
.ws65{word-spacing:-1.047274pt;}
.ws159{word-spacing:-1.009543pt;}
.ws8f{word-spacing:-0.989092pt;}
.wsdc{word-spacing:-0.930910pt;}
.wsfd{word-spacing:-0.872728pt;}
.wse{word-spacing:-0.814546pt;}
.ws5f{word-spacing:-0.756364pt;}
.wscb{word-spacing:-0.698182pt;}
.wsa1{word-spacing:-0.640001pt;}
.ws149{word-spacing:-0.637606pt;}
.ws113{word-spacing:-0.584473pt;}
.ws2e{word-spacing:-0.581819pt;}
.wsc8{word-spacing:-0.573850pt;}
.wse1{word-spacing:-0.465455pt;}
.wsce{word-spacing:-0.407273pt;}
.ws56{word-spacing:-0.371937pt;}
.ws5b{word-spacing:-0.349091pt;}
.ws13b{word-spacing:-0.318803pt;}
.ws4b{word-spacing:-0.290909pt;}
.ws4{word-spacing:-0.265669pt;}
.ws27{word-spacing:-0.232727pt;}
.ws98{word-spacing:-0.212535pt;}
.ws4e{word-spacing:-0.191283pt;}
.wsf{word-spacing:-0.174546pt;}
.wsc9{word-spacing:-0.159402pt;}
.wsc1{word-spacing:-0.127522pt;}
.ws2d{word-spacing:-0.116364pt;}
.ws111{word-spacing:-0.106268pt;}
.ws53{word-spacing:-0.095642pt;}
.wsb6{word-spacing:-0.063761pt;}
.ws25{word-spacing:-0.058182pt;}
.ws133{word-spacing:-0.053134pt;}
.ws1c{word-spacing:-0.047821pt;}
.ws45{word-spacing:-0.042507pt;}
.wsa7{word-spacing:-0.031881pt;}
.ws2{word-spacing:0.000000pt;}
.wsd9{word-spacing:0.011636pt;}
.wsaf{word-spacing:0.031881pt;}
.ws52{word-spacing:0.047821pt;}
.ws6{word-spacing:0.053134pt;}
.ws22{word-spacing:0.058182pt;}
.wsbb{word-spacing:0.063761pt;}
.ws8e{word-spacing:0.069818pt;}
.wsc5{word-spacing:0.095642pt;}
.wsb{word-spacing:0.106268pt;}
.ws18{word-spacing:0.116364pt;}
.wsad{word-spacing:0.127522pt;}
.ws126{word-spacing:0.159402pt;}
.ws17{word-spacing:0.174546pt;}
.wsc0{word-spacing:0.191283pt;}
.ws55{word-spacing:0.212535pt;}
.wsc3{word-spacing:0.223164pt;}
.ws16{word-spacing:0.232727pt;}
.wsed{word-spacing:0.265669pt;}
.ws34{word-spacing:0.286925pt;}
.ws3c{word-spacing:0.290909pt;}
.wse7{word-spacing:0.318803pt;}
.ws37{word-spacing:0.349091pt;}
.ws21{word-spacing:0.382566pt;}
.ws11d{word-spacing:0.407273pt;}
.ws13e{word-spacing:0.425071pt;}
.ws38{word-spacing:0.465455pt;}
.wse3{word-spacing:0.523637pt;}
.ws97{word-spacing:0.526029pt;}
.ws9{word-spacing:0.531339pt;}
.wsbd{word-spacing:0.541969pt;}
.wsf3{word-spacing:0.581819pt;}
.ws6b{word-spacing:0.640001pt;}
.wsd4{word-spacing:0.698182pt;}
.ws73{word-spacing:0.814546pt;}
.ws85{word-spacing:0.872728pt;}
.wsee{word-spacing:0.903276pt;}
.ws139{word-spacing:0.956410pt;}
.wsef{word-spacing:0.989092pt;}
.ws15f{word-spacing:1.009543pt;}
.ws29{word-spacing:1.047274pt;}
.ws15a{word-spacing:1.062677pt;}
.ws67{word-spacing:1.105455pt;}
.ws160{word-spacing:1.115811pt;}
.ws119{word-spacing:1.163637pt;}
.wscd{word-spacing:1.221819pt;}
.ws13d{word-spacing:1.275213pt;}
.wsda{word-spacing:1.338183pt;}
.ws32{word-spacing:1.396365pt;}
.ws13a{word-spacing:1.434614pt;}
.wsf2{word-spacing:1.454547pt;}
.ws154{word-spacing:1.487748pt;}
.ws4a{word-spacing:1.512729pt;}
.ws15c{word-spacing:1.540882pt;}
.ws69{word-spacing:1.570910pt;}
.wsb3{word-spacing:1.625907pt;}
.ws114{word-spacing:1.629092pt;}
.ws152{word-spacing:1.647150pt;}
.ws2c{word-spacing:1.687274pt;}
.wsd7{word-spacing:1.745456pt;}
.ws1a{word-spacing:1.803638pt;}
.ws50{word-spacing:1.920002pt;}
.wsf7{word-spacing:1.978183pt;}
.ws10{word-spacing:2.036365pt;}
.ws3{word-spacing:2.072221pt;}
.wsd1{word-spacing:2.094547pt;}
.ws12{word-spacing:2.152729pt;}
.ws13c{word-spacing:2.178489pt;}
.ws15{word-spacing:2.210911pt;}
.ws142{word-spacing:2.231622pt;}
.ws46{word-spacing:2.269093pt;}
.ws112{word-spacing:2.284756pt;}
.wsa4{word-spacing:2.327275pt;}
.ws134{word-spacing:2.337890pt;}
.ws135{word-spacing:2.391024pt;}
.ws62{word-spacing:2.443638pt;}
.ws13{word-spacing:2.560002pt;}
.ws14{word-spacing:2.618184pt;}
.ws39{word-spacing:2.734548pt;}
.ws138{word-spacing:2.762961pt;}
.ws3b{word-spacing:2.792730pt;}
.ws36{word-spacing:2.850911pt;}
.ws125{word-spacing:2.869229pt;}
.ws5e{word-spacing:2.909093pt;}
.ws3e{word-spacing:2.922363pt;}
.ws59{word-spacing:2.967275pt;}
.ws163{word-spacing:2.975497pt;}
.ws87{word-spacing:3.025457pt;}
.ws162{word-spacing:3.081764pt;}
.ws35{word-spacing:3.083639pt;}
.wsca{word-spacing:3.134898pt;}
.ws8a{word-spacing:3.141821pt;}
.ws28{word-spacing:3.200003pt;}
.ws41{word-spacing:3.258185pt;}
.ws4f{word-spacing:3.316366pt;}
.ws2b{word-spacing:3.490912pt;}
.ws19{word-spacing:3.549094pt;}
.ws158{word-spacing:3.559969pt;}
.wsa8{word-spacing:3.580004pt;}
.ws49{word-spacing:3.607276pt;}
.ws169{word-spacing:3.613103pt;}
.ws81{word-spacing:3.665458pt;}
.ws124{word-spacing:3.719371pt;}
.ws5d{word-spacing:3.723639pt;}
.ws75{word-spacing:3.781821pt;}
.ws118{word-spacing:3.840003pt;}
.ws43{word-spacing:3.898185pt;}
.ws117{word-spacing:3.956367pt;}
.ws143{word-spacing:3.985040pt;}
.ws88{word-spacing:4.014549pt;}
.ws161{word-spacing:4.038174pt;}
.ws141{word-spacing:4.091308pt;}
.ws42{word-spacing:4.130913pt;}
.ws166{word-spacing:4.144442pt;}
.ws3f{word-spacing:4.189094pt;}
.ws63{word-spacing:4.247276pt;}
.ws2a{word-spacing:4.305458pt;}
.wsb9{word-spacing:4.335753pt;}
.ws146{word-spacing:4.356977pt;}
.ws89{word-spacing:4.363640pt;}
.ws77{word-spacing:4.421822pt;}
.ws8{word-spacing:4.463245pt;}
.wse9{word-spacing:4.480004pt;}
.ws90{word-spacing:4.538186pt;}
.ws120{word-spacing:4.596367pt;}
.ws167{word-spacing:4.622646pt;}
.ws30{word-spacing:4.770913pt;}
.ws80{word-spacing:4.829095pt;}
.ws11a{word-spacing:4.945459pt;}
.ws172{word-spacing:4.994583pt;}
.wsfc{word-spacing:5.003641pt;}
.wsfe{word-spacing:5.236368pt;}
.ws11f{word-spacing:5.294550pt;}
.ws4d{word-spacing:5.308109pt;}
.ws153{word-spacing:5.366521pt;}
.ws66{word-spacing:5.410914pt;}
.ws61{word-spacing:5.701823pt;}
.ws9d{word-spacing:5.760005pt;}
.ws15d{word-spacing:5.791591pt;}
.ws44{word-spacing:5.818187pt;}
.ws9e{word-spacing:5.876369pt;}
.wsd{word-spacing:5.934550pt;}
.wsd5{word-spacing:5.992732pt;}
.wsf1{word-spacing:6.050914pt;}
.ws7{word-spacing:6.163529pt;}
.ws60{word-spacing:6.167278pt;}
.ws140{word-spacing:6.216662pt;}
.ws6e{word-spacing:6.225460pt;}
.wseb{word-spacing:6.283642pt;}
.ws48{word-spacing:6.341823pt;}
.ws58{word-spacing:6.400005pt;}
.wsf5{word-spacing:6.458187pt;}
.ws8c{word-spacing:6.574551pt;}
.ws137{word-spacing:6.588599pt;}
.ws15e{word-spacing:6.694867pt;}
.ws157{word-spacing:6.748001pt;}
.wsfb{word-spacing:6.749097pt;}
.ws4c{word-spacing:6.790554pt;}
.ws12d{word-spacing:6.801135pt;}
.ws16a{word-spacing:7.040006pt;}
.wsf9{word-spacing:7.156370pt;}
.ws14f{word-spacing:7.173072pt;}
.ws11b{word-spacing:7.214551pt;}
.wsec{word-spacing:7.272733pt;}
.ws20{word-spacing:7.316582pt;}
.ws6a{word-spacing:7.330915pt;}
.wsdb{word-spacing:7.389097pt;}
.wsd6{word-spacing:7.505461pt;}
.ws12c{word-spacing:7.545009pt;}
.wsea{word-spacing:7.680006pt;}
.ws11{word-spacing:7.738188pt;}
.wsa9{word-spacing:7.938253pt;}
.ws71{word-spacing:7.970916pt;}
.ws7b{word-spacing:8.029098pt;}
.wscc{word-spacing:8.320007pt;}
.ws147{word-spacing:8.342017pt;}
.ws11c{word-spacing:8.436371pt;}
.ws12a{word-spacing:8.501419pt;}
.ws128{word-spacing:8.554553pt;}
.ws9b{word-spacing:8.610916pt;}
.ws9c{word-spacing:8.669098pt;}
.ws155{word-spacing:8.713954pt;}
.ws136{word-spacing:8.820222pt;}
.ws14a{word-spacing:8.926490pt;}
.wsb0{word-spacing:9.532279pt;}
.ws31{word-spacing:9.658190pt;}
.wsb4{word-spacing:9.659802pt;}
.wsd8{word-spacing:9.716372pt;}
.ws12e{word-spacing:9.723498pt;}
.wsb7{word-spacing:9.723563pt;}
.wsb5{word-spacing:9.787324pt;}
.wsc6{word-spacing:9.819204pt;}
.wsf6{word-spacing:9.832735pt;}
.wsab{word-spacing:9.851085pt;}
.wsae{word-spacing:9.914846pt;}
.wsba{word-spacing:9.946726pt;}
.wsc4{word-spacing:10.010487pt;}
.ws7d{word-spacing:10.065463pt;}
.wsac{word-spacing:10.074249pt;}
.wsd3{word-spacing:10.123645pt;}
.wsbf{word-spacing:10.138010pt;}
.ws131{word-spacing:10.148569pt;}
.ws78{word-spacing:10.298190pt;}
.ws11e{word-spacing:10.356372pt;}
.ws1f{word-spacing:10.377114pt;}
.ws132{word-spacing:10.520506pt;}
.ws9a{word-spacing:10.763645pt;}
.ws6f{word-spacing:10.821827pt;}
.wsc2{word-spacing:10.839381pt;}
.ws148{word-spacing:11.104978pt;}
.ws127{word-spacing:11.158112pt;}
.wsbe{word-spacing:11.285709pt;}
.ws13f{word-spacing:11.370647pt;}
.ws151{word-spacing:11.530049pt;}
.ws116{word-spacing:11.578191pt;}
.wsbc{word-spacing:11.732036pt;}
.ws15b{word-spacing:11.742585pt;}
.ws70{word-spacing:11.869101pt;}
.ws51{word-spacing:11.907379pt;}
.ws7c{word-spacing:12.043646pt;}
.ws76{word-spacing:12.101828pt;}
.ws156{word-spacing:12.114522pt;}
.ws12f{word-spacing:12.273923pt;}
.ws145{word-spacing:12.327057pt;}
.ws14b{word-spacing:12.380191pt;}
.ws79{word-spacing:12.392738pt;}
.ws168{word-spacing:12.486459pt;}
.ws8d{word-spacing:12.869829pt;}
.ws129{word-spacing:13.336601pt;}
.ws12b{word-spacing:13.921073pt;}
.ws5a{word-spacing:14.312739pt;}
.ws3d{word-spacing:14.370921pt;}
.ws6d{word-spacing:14.487285pt;}
.wsb2{word-spacing:15.015731pt;}
.ws122{word-spacing:15.069103pt;}
.ws1d{word-spacing:15.207014pt;}
.ws99{word-spacing:15.301831pt;}
.wse2{word-spacing:15.360013pt;}
.ws14d{word-spacing:15.568223pt;}
.ws68{word-spacing:15.592740pt;}
.ws1{word-spacing:15.876506pt;}
.ws14e{word-spacing:16.099562pt;}
.ws7a{word-spacing:16.174559pt;}
.ws7f{word-spacing:16.930923pt;}
.ws3a{word-spacing:17.221833pt;}
.ws26{word-spacing:17.920015pt;}
.ws23{word-spacing:18.210924pt;}
.ws1e{word-spacing:18.411008pt;}
.wsa0{word-spacing:18.685662pt;}
.ws0{word-spacing:19.051754pt;}
.ws91{word-spacing:19.549107pt;}
.ws86{word-spacing:20.887290pt;}
.wsb8{word-spacing:23.113387pt;}
.ws33{word-spacing:23.145267pt;}
.ws7e{word-spacing:23.505474pt;}
.ws121{word-spacing:29.614570pt;}
.wsdf{word-spacing:47.360039pt;}
.ws94{word-spacing:51.336133pt;}
.ws96{word-spacing:51.339067pt;}
.wse4{word-spacing:51.789926pt;}
.ws102{word-spacing:51.790993pt;}
.ws105{word-spacing:51.802667pt;}
.ws110{word-spacing:51.808000pt;}
.ws10c{word-spacing:51.823753pt;}
.ws104{word-spacing:51.828019pt;}
.wse5{word-spacing:51.837747pt;}
.ws10b{word-spacing:52.794163pt;}
.wsff{word-spacing:53.559296pt;}
.ws101{word-spacing:53.579315pt;}
.ws10e{word-spacing:53.607117pt;}
.wsc{word-spacing:63.697306pt;}
.ws103{word-spacing:63.745126pt;}
.ws108{word-spacing:65.466675pt;}
.ws92{word-spacing:65.825364pt;}
.ws93{word-spacing:65.883010pt;}
.wse0{word-spacing:66.443692pt;}
.ws95{word-spacing:67.426354pt;}
.wse6{word-spacing:71.252992pt;}
.ws16e{word-spacing:89.664000pt;}
.ws171{word-spacing:101.571379pt;}
.ws10f{word-spacing:108.885623pt;}
.ws109{word-spacing:108.915371pt;}
.ws10d{word-spacing:110.657331pt;}
.ws16c{word-spacing:113.574400pt;}
.ws16d{word-spacing:117.543526pt;}
.ws100{word-spacing:120.793003pt;}
.ws106{word-spacing:120.843162pt;}
.ws170{word-spacing:137.484800pt;}
.ws16b{word-spacing:141.453926pt;}
.ws83{word-spacing:153.026560pt;}
.ws16f{word-spacing:177.319526pt;}
.ws10a{word-spacing:300.123341pt;}
.ws107{word-spacing:315.091251pt;}
._0{margin-left:-7.039202pt;}
._4{margin-left:-5.929779pt;}
._1c{margin-left:-4.538186pt;}
._2{margin-left:-3.596130pt;}
._1{margin-left:-2.142366pt;}
._5{margin-left:-1.062677pt;}
._1d{width:1.278759pt;}
._d{width:2.677965pt;}
._15{width:4.184169pt;}
._31{width:5.379991pt;}
._32{width:6.981837pt;}
._2f{width:9.882965pt;}
._6b{width:12.295730pt;}
._9{width:13.429648pt;}
._8{width:14.947628pt;}
._10{width:16.746014pt;}
._7{width:17.746711pt;}
._13{width:18.723415pt;}
._3{width:19.765931pt;}
._12{width:20.669966pt;}
._44{width:21.643654pt;}
._14{width:22.581893pt;}
._6a{width:23.603333pt;}
._a{width:24.610930pt;}
._b{width:26.298204pt;}
._16{width:27.403659pt;}
._c{width:29.270519pt;}
._e{width:30.882667pt;}
._63{width:32.109867pt;}
._19{width:33.740442pt;}
._6{width:35.387155pt;}
._f{width:37.204582pt;}
._1e{width:39.098214pt;}
._67{width:40.079054pt;}
._43{width:41.658217pt;}
._1a{width:43.335127pt;}
._2d{width:44.392764pt;}
._65{width:47.028306pt;}
._1b{width:48.756404pt;}
._35{width:49.967860pt;}
._66{width:52.018055pt;}
._18{width:54.854355pt;}
._64{width:55.913839pt;}
._69{width:57.189052pt;}
._17{width:58.181867pt;}
._68{width:59.191127pt;}
._11{width:63.761067pt;}
._36{width:65.179750pt;}
._4d{width:66.124646pt;}
._2c{width:67.511200pt;}
._2b{width:70.716054pt;}
._28{width:72.375682pt;}
._42{width:73.596211pt;}
._62{width:74.600448pt;}
._25{width:76.391200pt;}
._2a{width:80.426613pt;}
._29{width:83.691090pt;}
._61{width:84.776708pt;}
._24{width:86.889118pt;}
._20{width:94.977867pt;}
._1f{width:96.140559pt;}
._48{width:101.427917pt;}
._47{width:102.907172pt;}
._26{width:104.252533pt;}
._21{width:105.476800pt;}
._45{width:112.044134pt;}
._46{width:118.260838pt;}
._4a{width:121.608294pt;}
._27{width:123.663467pt;}
._58{width:125.051392pt;}
._72{width:129.498726pt;}
._38{width:131.459379pt;}
._22{width:133.348800pt;}
._23{width:138.205067pt;}
._73{width:148.961792pt;}
._7d{width:153.409126pt;}
._77{width:162.016870pt;}
._6f{width:165.364326pt;}
._6d{width:173.350400pt;}
._7a{width:189.274726pt;}
._83{width:205.772902pt;}
._7f{width:211.081011pt;}
._81{width:229.731123pt;}
._40{width:232.935117pt;}
._5d{width:233.939354pt;}
._71{width:240.347341pt;}
._79{width:245.081600pt;}
._74{width:248.237773pt;}
._6c{width:253.593702pt;}
._39{width:255.325871pt;}
._85{width:256.223846pt;}
._78{width:260.240794pt;}
._76{width:261.579776pt;}
._7c{width:264.209920pt;}
._84{width:266.840064pt;}
._6e{width:272.195994pt;}
._75{width:274.778317pt;}
._60{width:292.902400pt;}
._7b{width:296.106394pt;}
._82{width:298.688717pt;}
._80{width:301.414502pt;}
._5f{width:303.470797pt;}
._70{width:306.722611pt;}
._3e{width:326.042214pt;}
._3a{width:328.624538pt;}
._57{width:329.628774pt;}
._33{width:338.969600pt;}
._7e{width:341.249229pt;}
._4f{width:353.921741pt;}
._37{width:387.061555pt;}
._34{width:394.256815pt;}
._3f{width:429.574246pt;}
._5c{width:430.578483pt;}
._3d{width:432.204390pt;}
._5b{width:433.208627pt;}
._3b{width:434.882355pt;}
._59{width:435.886592pt;}
._3c{width:442.868429pt;}
._5a{width:443.872666pt;}
._41{width:458.744934pt;}
._5e{width:459.749171pt;}
._55{width:462.809702pt;}
._53{width:555.916800pt;}
._4e{width:558.499123pt;}
._30{width:560.188621pt;}
._4b{width:569.115341pt;}
._49{width:616.936141pt;}
._4c{width:623.306927pt;}
._54{width:659.448832pt;}
._52{width:662.078976pt;}
._50{width:664.756941pt;}
._51{width:672.743014pt;}
._56{width:688.619520pt;}
._2e{width:967.809451pt;}
.fs7{font-size:26.566933pt;}
.fs5{font-size:31.880533pt;}
.fs8{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:92.074667pt;}
.y32{bottom:105.357333pt;}
.y281{bottom:106.686667pt;}
.y9a{bottom:110.140000pt;}
.y114{bottom:110.240000pt;}
.y313{bottom:111.109333pt;}
.y31{bottom:118.641333pt;}
.y280{bottom:121.298667pt;}
.y5a{bottom:123.720000pt;}
.y99{bottom:126.024000pt;}
.y312{bottom:127.049333pt;}
.y98{bottom:128.205333pt;}
.y113{bottom:128.305333pt;}
.y13f{bottom:129.076000pt;}
.y1ec{bottom:130.036000pt;}
.y80{bottom:130.508000pt;}
.y193{bottom:130.760000pt;}
.y30{bottom:131.925333pt;}
.y27f{bottom:135.909333pt;}
.y7f{bottom:137.004000pt;}
.y59{bottom:138.188000pt;}
.y311{bottom:142.989333pt;}
.y13e{bottom:144.206667pt;}
.y2f{bottom:145.208000pt;}
.y97{bottom:146.270667pt;}
.y112{bottom:146.370667pt;}
.y1eb{bottom:148.101333pt;}
.y192{bottom:148.825333pt;}
.ye6{bottom:150.286667pt;}
.y27e{bottom:150.521333pt;}
.y1b9{bottom:152.161333pt;}
.y181{bottom:154.154667pt;}
.y7e{bottom:157.746667pt;}
.y2e{bottom:158.492000pt;}
.y57{bottom:158.784000pt;}
.y310{bottom:158.929333pt;}
.y2d{bottom:163.570667pt;}
.y2e1{bottom:163.752000pt;}
.y58{bottom:164.062667pt;}
.y96{bottom:164.336000pt;}
.y111{bottom:164.437333pt;}
.y2b3{bottom:165.133333pt;}
.y1ea{bottom:166.166667pt;}
.y191{bottom:166.892000pt;}
.ye5{bottom:172.381333pt;}
.y13d{bottom:174.593333pt;}
.y30f{bottom:174.870667pt;}
.y7d{bottom:175.812000pt;}
.y27d{bottom:176.370667pt;}
.y56{bottom:176.850667pt;}
.y2c{bottom:178.037333pt;}
.y2e0{bottom:178.364000pt;}
.y2b2{bottom:179.745333pt;}
.y95{bottom:182.402667pt;}
.y110{bottom:182.502667pt;}
.y1b8{bottom:183.150667pt;}
.yba{bottom:183.320000pt;}
.y1e9{bottom:184.232000pt;}
.y190{bottom:184.957333pt;}
.y180{bottom:188.621333pt;}
.ye4{bottom:190.446667pt;}
.y30e{bottom:190.810667pt;}
.y27c{bottom:190.982667pt;}
.y2df{bottom:192.976000pt;}
.y7c{bottom:193.877333pt;}
.y2b1{bottom:194.357333pt;}
.y55{bottom:194.916000pt;}
.y2b{bottom:197.188000pt;}
.y94{bottom:200.468000pt;}
.y10f{bottom:200.568000pt;}
.y1b7{bottom:201.216000pt;}
.yb9{bottom:201.385333pt;}
.y1e8{bottom:202.297333pt;}
.y18f{bottom:205.577333pt;}
.y27b{bottom:205.594667pt;}
.y17f{bottom:206.686667pt;}
.ye3{bottom:208.512000pt;}
.y2b0{bottom:208.969333pt;}
.y7b{bottom:211.942667pt;}
.y20d{bottom:212.089333pt;}
.y13c{bottom:212.661333pt;}
.y53{bottom:212.981333pt;}
.y2a{bottom:215.254667pt;}
.y54{bottom:218.260000pt;}
.y93{bottom:218.533333pt;}
.y10e{bottom:218.633333pt;}
.y1b6{bottom:219.281333pt;}
.yb8{bottom:219.450667pt;}
.y27a{bottom:220.206667pt;}
.y1e7{bottom:220.364000pt;}
.y2de{bottom:220.818667pt;}
.y30d{bottom:223.018667pt;}
.y22a{bottom:223.222667pt;}
.y18e{bottom:223.642667pt;}
.y17e{bottom:224.752000pt;}
.ye2{bottom:226.577333pt;}
.y7a{bottom:230.068000pt;}
.y13b{bottom:230.728000pt;}
.y52{bottom:231.069333pt;}
.y29{bottom:233.320000pt;}
.y2dd{bottom:235.430667pt;}
.y92{bottom:236.598667pt;}
.y2af{bottom:236.658667pt;}
.y10d{bottom:236.698667pt;}
.y1b5{bottom:237.348000pt;}
.yb7{bottom:237.517333pt;}
.y1e6{bottom:238.429333pt;}
.y18d{bottom:239.526667pt;}
.y229{bottom:241.288000pt;}
.y18c{bottom:241.708000pt;}
.y17d{bottom:242.817333pt;}
.y30c{bottom:243.902667pt;}
.y279{bottom:246.056000pt;}
.y20c{bottom:246.296000pt;}
.y79{bottom:248.133333pt;}
.y25f{bottom:248.249333pt;}
.ye1{bottom:248.704000pt;}
.y13a{bottom:248.793333pt;}
.y51{bottom:249.134667pt;}
.y2dc{bottom:250.041333pt;}
.y2ae{bottom:251.269333pt;}
.y28{bottom:251.385333pt;}
.y91{bottom:254.664000pt;}
.y10c{bottom:254.765333pt;}
.yb6{bottom:255.582667pt;}
.y1e5{bottom:256.494667pt;}
.y30b{bottom:257.185333pt;}
.y228{bottom:259.354667pt;}
.y258{bottom:259.548000pt;}
.y18b{bottom:259.774667pt;}
.y278{bottom:260.668000pt;}
.y17c{bottom:260.884000pt;}
.y20b{bottom:264.361333pt;}
.y2db{bottom:264.653333pt;}
.y2ad{bottom:265.881333pt;}
.y1b4{bottom:266.048000pt;}
.y78{bottom:266.198667pt;}
.ye0{bottom:266.769333pt;}
.y139{bottom:266.858667pt;}
.y50{bottom:267.200000pt;}
.y27{bottom:269.450667pt;}
.y30a{bottom:270.469333pt;}
.y90{bottom:272.730667pt;}
.y10b{bottom:272.830667pt;}
.yb5{bottom:273.648000pt;}
.y1e4{bottom:274.560000pt;}
.y277{bottom:275.280000pt;}
.y227{bottom:277.420000pt;}
.y257{bottom:277.613333pt;}
.y18a{bottom:277.840000pt;}
.y17b{bottom:280.282667pt;}
.y2ac{bottom:280.493333pt;}
.y20a{bottom:282.426667pt;}
.y25e{bottom:282.497333pt;}
.y309{bottom:283.753333pt;}
.y77{bottom:284.264000pt;}
.y4f{bottom:285.265333pt;}
.y26{bottom:287.516000pt;}
.y276{bottom:289.892000pt;}
.y8f{bottom:290.796000pt;}
.y10a{bottom:290.896000pt;}
.yb4{bottom:291.713333pt;}
.y2da{bottom:292.496000pt;}
.y1e3{bottom:292.625333pt;}
.y138{bottom:292.724000pt;}
.y226{bottom:295.485333pt;}
.y256{bottom:295.680000pt;}
.ydf{bottom:296.026667pt;}
.y308{bottom:297.036000pt;}
.y17a{bottom:298.348000pt;}
.y189{bottom:298.460000pt;}
.y1b3{bottom:298.877333pt;}
.y209{bottom:300.493333pt;}
.y25d{bottom:300.562667pt;}
.y76{bottom:302.329333pt;}
.y137{bottom:302.528000pt;}
.y4e{bottom:303.332000pt;}
.y275{bottom:304.504000pt;}
.y25{bottom:305.582667pt;}
.y2d9{bottom:307.108000pt;}
.y2ab{bottom:308.182667pt;}
.y8e{bottom:308.861333pt;}
.y109{bottom:309.061333pt;}
.yb3{bottom:309.778667pt;}
.y307{bottom:310.320000pt;}
.y1e2{bottom:310.690667pt;}
.y225{bottom:313.550667pt;}
.y255{bottom:313.745333pt;}
.yde{bottom:314.092000pt;}
.y179{bottom:316.413333pt;}
.y188{bottom:316.525333pt;}
.y1b2{bottom:316.942667pt;}
.y75{bottom:318.213333pt;}
.y208{bottom:318.558667pt;}
.y25c{bottom:318.629333pt;}
.y74{bottom:320.394667pt;}
.y4d{bottom:321.397333pt;}
.y2aa{bottom:322.794667pt;}
.y306{bottom:323.602667pt;}
.y24{bottom:323.648000pt;}
.y8d{bottom:326.926667pt;}
.y108{bottom:327.128000pt;}
.y1e1{bottom:328.757333pt;}
.y274{bottom:330.353333pt;}
.y224{bottom:331.616000pt;}
.y254{bottom:331.810667pt;}
.ydc{bottom:332.157333pt;}
.y178{bottom:334.480000pt;}
.y187{bottom:334.592000pt;}
.yb2{bottom:334.902667pt;}
.y2d8{bottom:334.950667pt;}
.y1b1{bottom:335.008000pt;}
.y207{bottom:336.624000pt;}
.y25b{bottom:336.694667pt;}
.y305{bottom:336.886667pt;}
.y2a9{bottom:337.406667pt;}
.ydd{bottom:337.436000pt;}
.y73{bottom:338.461333pt;}
.y4c{bottom:339.462667pt;}
.y22{bottom:341.713333pt;}
.y136{bottom:342.141333pt;}
.y273{bottom:344.965333pt;}
.y107{bottom:345.193333pt;}
.y1e0{bottom:346.822667pt;}
.y23{bottom:346.992000pt;}
.y2d7{bottom:349.562667pt;}
.y223{bottom:349.682667pt;}
.y253{bottom:349.876000pt;}
.y304{bottom:350.170667pt;}
.ydb{bottom:350.224000pt;}
.y2a8{bottom:352.018667pt;}
.y186{bottom:352.657333pt;}
.y1b0{bottom:353.073333pt;}
.y177{bottom:353.878667pt;}
.y206{bottom:354.689333pt;}
.y25a{bottom:354.760000pt;}
.y72{bottom:356.526667pt;}
.y4b{bottom:357.528000pt;}
.y272{bottom:359.577333pt;}
.y20{bottom:359.778667pt;}
.y135{bottom:360.206667pt;}
.y106{bottom:363.258667pt;}
.y303{bottom:363.453333pt;}
.y2d6{bottom:364.174667pt;}
.y8c{bottom:364.257333pt;}
.y1df{bottom:364.888000pt;}
.y21{bottom:365.057333pt;}
.y2a7{bottom:366.629333pt;}
.y222{bottom:367.748000pt;}
.yb1{bottom:367.929333pt;}
.y252{bottom:367.941333pt;}
.yda{bottom:368.289333pt;}
.y185{bottom:370.722667pt;}
.y1af{bottom:371.469333pt;}
.y176{bottom:371.944000pt;}
.y205{bottom:372.754667pt;}
.y259{bottom:372.825333pt;}
.y271{bottom:374.189333pt;}
.y71{bottom:374.592000pt;}
.y4a{bottom:375.593333pt;}
.y302{bottom:376.737333pt;}
.y1f{bottom:377.844000pt;}
.y134{bottom:378.272000pt;}
.y2d5{bottom:378.785333pt;}
.y8b{bottom:380.198667pt;}
.y2a6{bottom:381.241333pt;}
.y105{bottom:381.324000pt;}
.y1de{bottom:382.953333pt;}
.y221{bottom:385.813333pt;}
.yb0{bottom:385.994667pt;}
.yd9{bottom:386.354667pt;}
.y184{bottom:388.788000pt;}
.y270{bottom:388.801333pt;}
.y1ae{bottom:389.534667pt;}
.y175{bottom:390.009333pt;}
.y301{bottom:390.021333pt;}
.y204{bottom:390.821333pt;}
.y251{bottom:390.890667pt;}
.y70{bottom:392.657333pt;}
.y2d4{bottom:393.397333pt;}
.y49{bottom:393.660000pt;}
.y1e{bottom:395.910667pt;}
.y8a{bottom:396.138667pt;}
.y133{bottom:396.337333pt;}
.y104{bottom:399.389333pt;}
.y1dd{bottom:401.018667pt;}
.y300{bottom:403.304000pt;}
.y26f{bottom:403.412000pt;}
.y220{bottom:403.878667pt;}
.yaf{bottom:404.060000pt;}
.yd8{bottom:404.420000pt;}
.y183{bottom:406.853333pt;}
.y1ad{bottom:407.600000pt;}
.y174{bottom:408.074667pt;}
.y2a5{bottom:408.930667pt;}
.y250{bottom:408.957333pt;}
.y203{bottom:409.613333pt;}
.y6f{bottom:410.722667pt;}
.y89{bottom:412.078667pt;}
.y1d{bottom:413.976000pt;}
.y132{bottom:414.402667pt;}
.y2ff{bottom:416.588000pt;}
.y103{bottom:417.456000pt;}
.y1dc{bottom:419.085333pt;}
.y2d3{bottom:421.240000pt;}
.y48{bottom:421.598667pt;}
.y21f{bottom:421.944000pt;}
.yae{bottom:422.126667pt;}
.yd7{bottom:422.485333pt;}
.y2a4{bottom:423.542667pt;}
.y1ac{bottom:425.665333pt;}
.y173{bottom:426.141333pt;}
.y26e{bottom:426.668000pt;}
.y24f{bottom:427.022667pt;}
.y182{bottom:427.474667pt;}
.y202{bottom:427.680000pt;}
.y6e{bottom:428.789333pt;}
.y2fe{bottom:429.872000pt;}
.y1c{bottom:432.041333pt;}
.y131{bottom:433.338667pt;}
.y102{bottom:435.521333pt;}
.y2d2{bottom:435.852000pt;}
.y1db{bottom:437.150667pt;}
.y2a3{bottom:438.154667pt;}
.y21e{bottom:440.009333pt;}
.yad{bottom:440.192000pt;}
.y88{bottom:440.505333pt;}
.yd6{bottom:440.552000pt;}
.y2fd{bottom:443.154667pt;}
.y1ab{bottom:443.732000pt;}
.y24e{bottom:445.088000pt;}
.y172{bottom:445.540000pt;}
.y201{bottom:445.745333pt;}
.y6d{bottom:446.854667pt;}
.y1b{bottom:450.106667pt;}
.y2d1{bottom:450.464000pt;}
.y130{bottom:451.404000pt;}
.y2a2{bottom:452.766667pt;}
.y47{bottom:453.364000pt;}
.y101{bottom:453.586667pt;}
.y87{bottom:453.789333pt;}
.y1da{bottom:455.216000pt;}
.y2fc{bottom:456.438667pt;}
.y21d{bottom:458.076000pt;}
.y26d{bottom:458.182667pt;}
.yac{bottom:458.257333pt;}
.yd5{bottom:458.617333pt;}
.y1aa{bottom:462.126667pt;}
.y24d{bottom:463.153333pt;}
.y171{bottom:463.605333pt;}
.y200{bottom:463.810667pt;}
.y6c{bottom:464.920000pt;}
.y2d0{bottom:465.076000pt;}
.y86{bottom:467.072000pt;}
.y1a{bottom:468.172000pt;}
.y12f{bottom:469.470667pt;}
.y2fb{bottom:469.722667pt;}
.y46{bottom:471.429333pt;}
.y100{bottom:471.652000pt;}
.y1d9{bottom:473.281333pt;}
.y21c{bottom:476.141333pt;}
.yab{bottom:476.322667pt;}
.yd4{bottom:476.682667pt;}
.y2cf{bottom:479.688000pt;}
.y1a9{bottom:480.192000pt;}
.y85{bottom:480.356000pt;}
.y2a1{bottom:480.454667pt;}
.y170{bottom:481.670667pt;}
.y1ff{bottom:481.876000pt;}
.y6b{bottom:482.985333pt;}
.y2fa{bottom:483.005333pt;}
.y19{bottom:486.238667pt;}
.y12e{bottom:487.536000pt;}
.y45{bottom:489.494667pt;}
.y26c{bottom:489.517333pt;}
.yff{bottom:489.717333pt;}
.y1d8{bottom:491.346667pt;}
.y84{bottom:493.640000pt;}
.y2ce{bottom:494.300000pt;}
.yaa{bottom:494.388000pt;}
.yd3{bottom:494.748000pt;}
.y2a0{bottom:495.066667pt;}
.y2f9{bottom:496.289333pt;}
.y1a8{bottom:498.257333pt;}
.y21b{bottom:498.896000pt;}
.y1fe{bottom:499.941333pt;}
.y6a{bottom:501.050667pt;}
.y18{bottom:504.304000pt;}
.y12d{bottom:505.601333pt;}
.y44{bottom:507.560000pt;}
.y26b{bottom:507.582667pt;}
.yfe{bottom:507.884000pt;}
.y24c{bottom:509.114667pt;}
.y1d7{bottom:509.413333pt;}
.y2f8{bottom:509.573333pt;}
.y29f{bottom:509.678667pt;}
.ya9{bottom:512.454667pt;}
.yd2{bottom:512.813333pt;}
.y1a7{bottom:516.324000pt;}
.y21a{bottom:516.961333pt;}
.y1fd{bottom:518.008000pt;}
.y69{bottom:519.117333pt;}
.y2cd{bottom:522.141333pt;}
.y17{bottom:522.369333pt;}
.y2f7{bottom:522.856000pt;}
.y12c{bottom:523.666667pt;}
.y29e{bottom:524.290667pt;}
.y24b{bottom:525.054667pt;}
.y43{bottom:525.626667pt;}
.y26a{bottom:525.648000pt;}
.yfd{bottom:525.949333pt;}
.y16f{bottom:527.632000pt;}
.y1d6{bottom:529.308000pt;}
.ya8{bottom:530.520000pt;}
.yd1{bottom:530.878667pt;}
.y1a6{bottom:534.389333pt;}
.y219{bottom:535.028000pt;}
.y1fc{bottom:536.073333pt;}
.y2f6{bottom:536.140000pt;}
.y2cc{bottom:536.753333pt;}
.y29d{bottom:538.902667pt;}
.y16{bottom:540.434667pt;}
.y24a{bottom:540.994667pt;}
.y12b{bottom:541.732000pt;}
.y16e{bottom:543.572000pt;}
.y42{bottom:543.692000pt;}
.y269{bottom:543.714667pt;}
.yfc{bottom:544.014667pt;}
.y1d5{bottom:547.373333pt;}
.ya7{bottom:548.585333pt;}
.yd0{bottom:548.945333pt;}
.y2f5{bottom:549.422667pt;}
.y2cb{bottom:551.365333pt;}
.y1a5{bottom:552.454667pt;}
.y218{bottom:553.093333pt;}
.y29c{bottom:553.514667pt;}
.y1fb{bottom:554.138667pt;}
.y68{bottom:555.418667pt;}
.y249{bottom:556.936000pt;}
.y16d{bottom:557.520000pt;}
.y15{bottom:558.500000pt;}
.y16c{bottom:559.512000pt;}
.y12a{bottom:559.798667pt;}
.y41{bottom:561.757333pt;}
.y268{bottom:561.780000pt;}
.yfb{bottom:562.080000pt;}
.y2f4{bottom:562.706667pt;}
.y1d4{bottom:565.440000pt;}
.y2ca{bottom:565.977333pt;}
.ya6{bottom:566.650667pt;}
.ycf{bottom:567.010667pt;}
.y1a4{bottom:570.849333pt;}
.y217{bottom:571.158667pt;}
.y67{bottom:571.358667pt;}
.y248{bottom:572.876000pt;}
.y1fa{bottom:572.932000pt;}
.y2f3{bottom:575.990667pt;}
.y129{bottom:577.864000pt;}
.y40{bottom:579.822667pt;}
.y267{bottom:579.845333pt;}
.yfa{bottom:580.146667pt;}
.y2c9{bottom:580.589333pt;}
.y29b{bottom:581.202667pt;}
.y1d3{bottom:583.505333pt;}
.ya5{bottom:584.716000pt;}
.yce{bottom:585.076000pt;}
.y14{bottom:585.716000pt;}
.y16b{bottom:586.744000pt;}
.y66{bottom:587.298667pt;}
.y1a3{bottom:588.914667pt;}
.y216{bottom:589.224000pt;}
.y1f9{bottom:590.997333pt;}
.y2c8{bottom:595.201333pt;}
.y29a{bottom:595.814667pt;}
.y16a{bottom:596.042667pt;}
.y2f2{bottom:596.873333pt;}
.y3f{bottom:597.888000pt;}
.y266{bottom:597.910667pt;}
.yf9{bottom:598.212000pt;}
.y1d2{bottom:601.570667pt;}
.y128{bottom:602.893333pt;}
.ycd{bottom:603.141333pt;}
.ya4{bottom:603.700000pt;}
.y247{bottom:605.084000pt;}
.y169{bottom:605.340000pt;}
.y1a2{bottom:606.981333pt;}
.y215{bottom:607.289333pt;}
.y1f8{bottom:609.062667pt;}
.y2f1{bottom:610.157333pt;}
.y299{bottom:610.426667pt;}
.y13{bottom:613.864000pt;}
.y168{bottom:614.638667pt;}
.y3e{bottom:615.954667pt;}
.y265{bottom:615.976000pt;}
.yf8{bottom:616.277333pt;}
.y246{bottom:618.368000pt;}
.y1d1{bottom:619.636000pt;}
.ycc{bottom:621.206667pt;}
.ya3{bottom:621.765333pt;}
.y2c7{bottom:623.044000pt;}
.y167{bottom:623.937333pt;}
.y298{bottom:625.038667pt;}
.y1a1{bottom:625.046667pt;}
.y214{bottom:625.356000pt;}
.y12{bottom:629.804000pt;}
.y245{bottom:631.650667pt;}
.y127{bottom:632.933333pt;}
.y166{bottom:633.236000pt;}
.y1f7{bottom:633.809333pt;}
.y3d{bottom:634.020000pt;}
.y264{bottom:634.042667pt;}
.yf7{bottom:634.342667pt;}
.y2c6{bottom:637.654667pt;}
.y1d0{bottom:637.701333pt;}
.ycb{bottom:639.273333pt;}
.ya2{bottom:639.830667pt;}
.y2f0{bottom:642.276000pt;}
.y165{bottom:642.534667pt;}
.y213{bottom:643.421333pt;}
.y244{bottom:644.934667pt;}
.y11{bottom:645.744000pt;}
.y1a0{bottom:649.002667pt;}
.y164{bottom:651.833333pt;}
.y3c{bottom:652.085333pt;}
.y263{bottom:652.108000pt;}
.y2c5{bottom:652.266667pt;}
.yf6{bottom:652.509333pt;}
.y297{bottom:652.728000pt;}
.yca{bottom:657.338667pt;}
.ya1{bottom:657.896000pt;}
.y243{bottom:658.218667pt;}
.y2ef{bottom:660.341333pt;}
.y163{bottom:661.132000pt;}
.y212{bottom:661.486667pt;}
.y10{bottom:661.684000pt;}
.y1f6{bottom:666.176000pt;}
.y2c4{bottom:666.878667pt;}
.y296{bottom:667.340000pt;}
.y126{bottom:667.636000pt;}
.y83{bottom:669.282667pt;}
.y3b{bottom:670.150667pt;}
.y262{bottom:670.173333pt;}
.y162{bottom:670.429333pt;}
.yf5{bottom:670.574667pt;}
.y242{bottom:671.501333pt;}
.yc9{bottom:675.404000pt;}
.yf{bottom:677.625333pt;}
.y2ee{bottom:678.406667pt;}
.y211{bottom:679.552000pt;}
.y161{bottom:679.728000pt;}
.y19f{bottom:679.992000pt;}
.y295{bottom:681.952000pt;}
.y82{bottom:682.566667pt;}
.y1f5{bottom:684.241333pt;}
.y241{bottom:685.316000pt;}
.y125{bottom:685.701333pt;}
.y1cf{bottom:687.322667pt;}
.ya0{bottom:688.054667pt;}
.y3a{bottom:688.216000pt;}
.y261{bottom:688.238667pt;}
.yf4{bottom:688.640000pt;}
.y160{bottom:689.026667pt;}
.yc8{bottom:693.469333pt;}
.ye{bottom:693.565333pt;}
.y2c3{bottom:694.721333pt;}
.y81{bottom:695.849333pt;}
.y2ed{bottom:696.472000pt;}
.y294{bottom:696.562667pt;}
.y210{bottom:697.617333pt;}
.y19e{bottom:698.057333pt;}
.y15f{bottom:698.325333pt;}
.y240{bottom:698.600000pt;}
.y1f4{bottom:702.306667pt;}
.y1ce{bottom:703.262667pt;}
.y124{bottom:703.766667pt;}
.y39{bottom:706.282667pt;}
.y260{bottom:706.304000pt;}
.y9f{bottom:706.652000pt;}
.yf3{bottom:706.705333pt;}
.y15e{bottom:707.624000pt;}
.y2c2{bottom:709.333333pt;}
.yd{bottom:709.505333pt;}
.y293{bottom:711.174667pt;}
.y23f{bottom:711.884000pt;}
.yc7{bottom:715.596000pt;}
.y20f{bottom:715.684000pt;}
.y19d{bottom:716.122667pt;}
.y15d{bottom:716.922667pt;}
.y1cd{bottom:719.202667pt;}
.y1f3{bottom:720.373333pt;}
.y123{bottom:721.833333pt;}
.y2ec{bottom:723.525333pt;}
.y2c1{bottom:723.945333pt;}
.y38{bottom:724.370667pt;}
.yf2{bottom:724.770667pt;}
.y23e{bottom:725.166667pt;}
.yc{bottom:725.445333pt;}
.y292{bottom:725.786667pt;}
.y15c{bottom:726.220000pt;}
.y20e{bottom:733.749333pt;}
.y19c{bottom:734.188000pt;}
.y15b{bottom:735.518667pt;}
.y1f2{bottom:738.438667pt;}
.y23d{bottom:738.450667pt;}
.y2c0{bottom:738.557333pt;}
.y122{bottom:739.898667pt;}
.y291{bottom:740.398667pt;}
.yb{bottom:741.385333pt;}
.y9e{bottom:741.517333pt;}
.y2eb{bottom:742.121333pt;}
.y37{bottom:742.436000pt;}
.yf1{bottom:742.836000pt;}
.y15a{bottom:744.817333pt;}
.yc6{bottom:744.853333pt;}
.y1cc{bottom:751.412000pt;}
.y23c{bottom:751.734667pt;}
.y19b{bottom:752.254667pt;}
.y2bf{bottom:753.169333pt;}
.y159{bottom:754.116000pt;}
.y1f1{bottom:756.504000pt;}
.ya{bottom:757.325333pt;}
.y121{bottom:757.964000pt;}
.y9d{bottom:759.584000pt;}
.y36{bottom:760.501333pt;}
.yf0{bottom:760.902667pt;}
.yc5{bottom:762.918667pt;}
.y158{bottom:763.414667pt;}
.y1cb{bottom:764.694667pt;}
.y23b{bottom:765.017333pt;}
.y2be{bottom:767.781333pt;}
.y290{bottom:768.088000pt;}
.y2ea{bottom:769.361333pt;}
.y19a{bottom:770.320000pt;}
.y157{bottom:772.713333pt;}
.y9{bottom:773.266667pt;}
.y1f0{bottom:774.569333pt;}
.y120{bottom:776.029333pt;}
.y9c{bottom:777.649333pt;}
.y1ca{bottom:777.978667pt;}
.y23a{bottom:778.301333pt;}
.y35{bottom:778.566667pt;}
.yef{bottom:779.068000pt;}
.yc4{bottom:780.984000pt;}
.y156{bottom:782.012000pt;}
.y2bd{bottom:782.392000pt;}
.y28f{bottom:782.700000pt;}
.y2e9{bottom:783.973333pt;}
.y199{bottom:788.385333pt;}
.y8{bottom:789.206667pt;}
.y1c9{bottom:791.262667pt;}
.y155{bottom:791.309333pt;}
.y239{bottom:791.584000pt;}
.y9b{bottom:795.714667pt;}
.y34{bottom:796.632000pt;}
.yee{bottom:797.133333pt;}
.y28e{bottom:797.312000pt;}
.y2e8{bottom:798.585333pt;}
.yc3{bottom:799.049333pt;}
.y154{bottom:800.608000pt;}
.y1c8{bottom:804.545333pt;}
.y238{bottom:804.868000pt;}
.y198{bottom:806.450667pt;}
.y153{bottom:809.906667pt;}
.y2bc{bottom:810.234667pt;}
.y28d{bottom:811.922667pt;}
.y2e7{bottom:813.197333pt;}
.y7{bottom:814.698667pt;}
.yed{bottom:815.198667pt;}
.yc2{bottom:817.114667pt;}
.y1c7{bottom:817.829333pt;}
.y237{bottom:818.682667pt;}
.y152{bottom:819.205333pt;}
.y1ef{bottom:820.530667pt;}
.y11f{bottom:823.730667pt;}
.y197{bottom:824.516000pt;}
.y2bb{bottom:824.846667pt;}
.y28c{bottom:826.534667pt;}
.y2e6{bottom:827.809333pt;}
.y1c6{bottom:831.113333pt;}
.y236{bottom:831.966667pt;}
.y65{bottom:832.764000pt;}
.yec{bottom:833.265333pt;}
.yc1{bottom:835.181333pt;}
.y151{bottom:835.813333pt;}
.y1ee{bottom:836.470667pt;}
.y2ba{bottom:839.458667pt;}
.y11e{bottom:839.672000pt;}
.y2e5{bottom:842.421333pt;}
.y1c5{bottom:844.396000pt;}
.y150{bottom:845.110667pt;}
.y235{bottom:845.250667pt;}
.y64{bottom:850.829333pt;}
.yeb{bottom:851.330667pt;}
.y1ed{bottom:852.410667pt;}
.yc0{bottom:853.246667pt;}
.y2b9{bottom:854.070667pt;}
.y28b{bottom:854.224000pt;}
.y14f{bottom:854.409333pt;}
.y2e4{bottom:857.033333pt;}
.y196{bottom:857.056000pt;}
.y1c4{bottom:857.680000pt;}
.y234{bottom:858.533333pt;}
.y14e{bottom:863.708000pt;}
.y11d{bottom:868.098667pt;}
.y2b8{bottom:868.682667pt;}
.y28a{bottom:868.836000pt;}
.y63{bottom:868.894667pt;}
.yea{bottom:869.396000pt;}
.y1c3{bottom:870.964000pt;}
.y2e3{bottom:871.645333pt;}
.y233{bottom:871.817333pt;}
.y14d{bottom:873.006667pt;}
.ybf{bottom:875.372000pt;}
.y11c{bottom:881.381333pt;}
.y6{bottom:882.029333pt;}
.y14c{bottom:882.305333pt;}
.y2b7{bottom:883.294667pt;}
.y289{bottom:883.448000pt;}
.y1c2{bottom:884.246667pt;}
.y232{bottom:885.100000pt;}
.y195{bottom:886.574667pt;}
.y62{bottom:886.960000pt;}
.ye9{bottom:887.461333pt;}
.y14b{bottom:891.604000pt;}
.y194{bottom:893.188000pt;}
.y2e2{bottom:896.524000pt;}
.y1c1{bottom:897.530667pt;}
.y288{bottom:898.060000pt;}
.y231{bottom:898.384000pt;}
.y5{bottom:900.626667pt;}
.y14a{bottom:900.901333pt;}
.y11b{bottom:904.601333pt;}
.ybe{bottom:904.629333pt;}
.y61{bottom:905.026667pt;}
.ye8{bottom:905.526667pt;}
.y1c0{bottom:910.814667pt;}
.y2b6{bottom:911.136000pt;}
.y230{bottom:911.668000pt;}
.y287{bottom:912.672000pt;}
.y149{bottom:917.509333pt;}
.y4{bottom:919.222667pt;}
.ybd{bottom:922.694667pt;}
.y60{bottom:923.092000pt;}
.y11a{bottom:923.198667pt;}
.y22f{bottom:924.950667pt;}
.y2b5{bottom:925.748000pt;}
.y148{bottom:926.808000pt;}
.y286{bottom:927.282667pt;}
.ye7{bottom:929.028000pt;}
.y1bf{bottom:931.697333pt;}
.y147{bottom:936.106667pt;}
.y3{bottom:937.820000pt;}
.y22e{bottom:938.234667pt;}
.y2b4{bottom:940.360000pt;}
.ybc{bottom:940.760000pt;}
.y5f{bottom:941.157333pt;}
.y119{bottom:941.689333pt;}
.y285{bottom:941.894667pt;}
.y1be{bottom:944.981333pt;}
.y146{bottom:945.405333pt;}
.y22d{bottom:952.049333pt;}
.y145{bottom:954.702667pt;}
.y118{bottom:954.972000pt;}
.y2{bottom:956.417333pt;}
.ybb{bottom:958.826667pt;}
.y5e{bottom:959.222667pt;}
.y144{bottom:964.001333pt;}
.y22c{bottom:965.333333pt;}
.y1bd{bottom:965.864000pt;}
.y284{bottom:969.584000pt;}
.y143{bottom:973.300000pt;}
.y5d{bottom:977.288000pt;}
.y117{bottom:978.192000pt;}
.y1bc{bottom:979.148000pt;}
.y142{bottom:982.598667pt;}
.y283{bottom:984.196000pt;}
.y22b{bottom:992.432000pt;}
.y5c{bottom:995.354667pt;}
.y116{bottom:996.257333pt;}
.y282{bottom:998.808000pt;}
.y141{bottom:999.206667pt;}
.y1bb{bottom:1000.032000pt;}
.y1{bottom:1002.852000pt;}
.y1ba{bottom:1013.314667pt;}
.y5b{bottom:1013.420000pt;}
.y115{bottom:1014.854667pt;}
.y140{bottom:1016.104000pt;}
.h15{height:2.327275pt;}
.h18{height:16.402378pt;}
.h9{height:21.933807pt;}
.he{height:22.107556pt;}
.h17{height:22.730820pt;}
.h8{height:29.244954pt;}
.h11{height:29.499997pt;}
.hb{height:32.087757pt;}
.ha{height:32.900710pt;}
.h1c{height:32.906044pt;}
.h10{height:34.096230pt;}
.h1e{height:35.652825pt;}
.h1d{height:36.449833pt;}
.h6{height:36.556100pt;}
.h1f{height:37.084100pt;}
.h20{height:37.089434pt;}
.hf{height:39.040033pt;}
.h1b{height:39.850400pt;}
.h7{height:40.029124pt;}
.h13{height:41.367307pt;}
.hc{height:41.483671pt;}
.h5{height:42.783676pt;}
.h12{height:43.636400pt;}
.h4{height:43.867614pt;}
.h19{height:45.083394pt;}
.h3{height:45.461641pt;}
.h2{height:54.553817pt;}
.hd{height:59.084954pt;}
.h14{height:82.852400pt;}
.h1a{height:120.401941pt;}
.h16{height:123.873941pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:92.553333pt;}
.x9{left:94.488000pt;}
.x4c{left:105.150667pt;}
.xa{left:109.033333pt;}
.xf{left:111.358667pt;}
.x10{left:115.780000pt;}
.x8{left:117.165333pt;}
.x2e{left:118.398667pt;}
.x54{left:119.805333pt;}
.x60{left:125.152000pt;}
.x1e{left:133.760000pt;}
.x5d{left:151.924000pt;}
.x38{left:154.697333pt;}
.x1{left:156.697333pt;}
.x2c{left:158.380000pt;}
.x1f{left:161.884000pt;}
.x57{left:178.422667pt;}
.x12{left:183.568000pt;}
.x55{left:187.272000pt;}
.x58{left:192.262667pt;}
.x3a{left:196.969333pt;}
.x22{left:201.402667pt;}
.x7{left:210.344000pt;}
.x14{left:212.380000pt;}
.x39{left:223.041333pt;}
.x3c{left:229.309333pt;}
.x3{left:237.265333pt;}
.x3d{left:242.306667pt;}
.x5a{left:254.054667pt;}
.x4e{left:261.453333pt;}
.x3b{left:262.536000pt;}
.x20{left:277.464000pt;}
.x3e{left:281.566667pt;}
.x4f{left:282.569333pt;}
.xb{left:290.065333pt;}
.x21{left:291.241333pt;}
.x2d{left:293.624000pt;}
.x5b{left:296.252000pt;}
.xc{left:299.661333pt;}
.x56{left:302.988000pt;}
.x6{left:305.194667pt;}
.x3f{left:314.697333pt;}
.x5{left:319.604000pt;}
.x11{left:329.920000pt;}
.x50{left:332.240000pt;}
.x2{left:347.484000pt;}
.x4{left:349.556000pt;}
.x5c{left:350.980000pt;}
.x51{left:352.484000pt;}
.xd{left:353.496000pt;}
.x13{left:358.612000pt;}
.xe{left:364.088000pt;}
.x5f{left:367.676000pt;}
.x53{left:375.006667pt;}
.x4d{left:405.086667pt;}
.x16{left:407.098667pt;}
.x17{left:408.189333pt;}
.x62{left:416.158667pt;}
.x29{left:417.244000pt;}
.x15{left:422.734667pt;}
.x1c{left:425.058667pt;}
.x40{left:428.792000pt;}
.x1d{left:429.708000pt;}
.x41{left:434.042667pt;}
.x61{left:435.112000pt;}
.x44{left:440.042667pt;}
.x42{left:446.660000pt;}
.x32{left:451.825333pt;}
.x47{left:463.357333pt;}
.x48{left:474.442667pt;}
.x33{left:478.041333pt;}
.x30{left:480.660000pt;}
.x31{left:491.128000pt;}
.x49{left:498.993333pt;}
.x18{left:503.769333pt;}
.x34{left:505.501333pt;}
.x19{left:513.366667pt;}
.x23{left:522.437333pt;}
.x2a{left:524.490667pt;}
.x27{left:525.646667pt;}
.x43{left:543.640000pt;}
.x2b{left:544.574667pt;}
.x4a{left:559.637333pt;}
.x25{left:561.472000pt;}
.x59{left:569.868000pt;}
.x52{left:573.461333pt;}
.x1a{left:585.326667pt;}
.x1b{left:595.477333pt;}
.x24{left:602.436000pt;}
.x36{left:605.673333pt;}
.x28{left:612.920000pt;}
.x45{left:640.709333pt;}
.x5e{left:662.682667pt;}
.x46{left:664.952000pt;}
.x37{left:667.334667pt;}
.x35{left:670.562667pt;}
.x4b{left:683.226667pt;}
.x26{left:692.381333pt;}
}




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