
    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_2e521d7e60e9f7314710c50a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.226000;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_cdb4cf4fa0de9f55b4455dc6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_aa13525c9e15934bd0caac95.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_7c34594b36e296feec139ac8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.482000;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_c80b021e69162e3ff8fde4c5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.710000;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_60bc856c65aa552d65c9036a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.729000;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_937346116bddd336de38a41a.woff')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_48a7635fa8b97606d6cab15e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.215332;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_8ae4c2790f350d62d91b85cb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_43fee3d74a2f0e6b3fe76011.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_38691b1379d5b97fa8b61b79.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_48a7635fa8b97606d6cab15e.woff')format("woff");}.ffc{font-family:ffc;line-height:1.215332;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_48a7635fa8b97606d6cab15e.woff')format("woff");}.ffd{font-family:ffd;line-height:1.215332;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_2eb770d32afd5cccb167c6a4.woff')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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_30fa92538bc360182556d2af.woff')format("woff");}.fff{font-family:fff;line-height:0.938477;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:ff10;src:url('chunks/assets/font_48a7635fa8b97606d6cab15e.woff')format("woff");}.ff10{font-family:ff10;line-height:1.215332;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:ff11;src:url('chunks/assets/font_4ef31bf5b7bfc7df03ce4ddc.woff')format("woff");}.ff11{font-family:ff11;line-height:0.938965;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:ff12;src:url('chunks/assets/font_d23483834adaa375431e6123.woff')format("woff");}.ff12{font-family:ff12;line-height:0.938477;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:ff13;src:url('chunks/assets/font_f461048ebbdb065be911c76b.woff')format("woff");}.ff13{font-family:ff13;line-height:1.016602;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:ff14;src:url('chunks/assets/font_19958b4c484d22ab62923764.woff')format("woff");}.ff14{font-family:ff14;line-height:0.938477;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:ff15;src:url('chunks/assets/font_48a7635fa8b97606d6cab15e.woff')format("woff");}.ff15{font-family:ff15;line-height:1.215332;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:ff16;src:url('chunks/assets/font_be7114c41eb04535fcf50d8a.woff')format("woff");}.ff16{font-family:ff16;line-height:0.938477;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:ff17;src:url('chunks/assets/font_d6ea39c515d8f3a52dcf4a23.woff')format("woff");}.ff17{font-family:ff17;line-height:0.938965;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:ff18;src:url('chunks/assets/font_5aa285af8b0e5e27116881e7.woff')format("woff");}.ff18{font-family:ff18;line-height:0.694000;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:ff19;src:url('chunks/assets/font_07f4b4b58ef3cb67124f9776.woff')format("woff");}.ff19{font-family:ff19;line-height:0.703000;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;}
.m3f{transform:matrix(0.000000,0.250563,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250563,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250563,-0.250000,0.000000,0,0);}
.m3e{transform:matrix(0.000000,0.250560,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250560,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250560,-0.250000,0.000000,0,0);}
.m3d{transform:matrix(0.000000,0.250559,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250559,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250559,-0.250000,0.000000,0,0);}
.m27{transform:matrix(0.000000,-0.250328,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250328,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250328,0.250000,0.000000,0,0);}
.m34{transform:matrix(0.000000,-0.250338,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250338,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250338,0.250000,0.000000,0,0);}
.m2f{transform:matrix(0.000000,-0.250358,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250358,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250358,0.250000,0.000000,0,0);}
.m3a{transform:matrix(0.000000,-0.250557,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250557,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250557,0.250000,0.000000,0,0);}
.m39{transform:matrix(0.000000,-0.250559,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250559,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250559,0.250000,0.000000,0,0);}
.m4a{transform:matrix(0.000000,-0.250831,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250831,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250831,0.250000,0.000000,0,0);}
.m49{transform:matrix(0.056426,-0.244399,0.243592,0.056239,0,0);-ms-transform:matrix(0.056426,-0.244399,0.243592,0.056239,0,0);-webkit-transform:matrix(0.056426,-0.244399,0.243592,0.056239,0,0);}
.m48{transform:matrix(0.064914,-0.242282,0.241482,0.064702,0,0);-ms-transform:matrix(0.064914,-0.242282,0.241482,0.064702,0,0);-webkit-transform:matrix(0.064914,-0.242282,0.241482,0.064702,0,0);}
.m4b{transform:matrix(0.085785,-0.235707,0.234925,0.085500,0,0);-ms-transform:matrix(0.085785,-0.235707,0.234925,0.085500,0,0);-webkit-transform:matrix(0.085785,-0.235707,0.234925,0.085500,0,0);}
.m45{transform:matrix(0.093962,-0.232564,0.231796,0.093651,0,0);-ms-transform:matrix(0.093962,-0.232564,0.231796,0.093651,0,0);-webkit-transform:matrix(0.093962,-0.232564,0.231796,0.093651,0,0);}
.m46{transform:matrix(0.125419,-0.217229,0.216508,0.124997,0,0);-ms-transform:matrix(0.125419,-0.217229,0.216508,0.124997,0,0);-webkit-transform:matrix(0.125419,-0.217229,0.216508,0.124997,0,0);}
.m38{transform:matrix(0.177167,-0.177167,0.176777,0.176777,0,0);-ms-transform:matrix(0.177167,-0.177167,0.176777,0.176777,0,0);-webkit-transform:matrix(0.177167,-0.177167,0.176777,0.176777,0,0);}
.m37{transform:matrix(0.177172,-0.177172,0.176777,0.176777,0,0);-ms-transform:matrix(0.177172,-0.177172,0.176777,0.176777,0,0);-webkit-transform:matrix(0.177172,-0.177172,0.176777,0.176777,0,0);}
.m47{transform:matrix(0.192150,-0.161230,0.160697,0.191511,0,0);-ms-transform:matrix(0.192150,-0.161230,0.160697,0.191511,0,0);-webkit-transform:matrix(0.192150,-0.161230,0.160697,0.191511,0,0);}
.m42{transform:matrix(0.235449,-0.085696,0.085501,0.234925,0,0);-ms-transform:matrix(0.235449,-0.085696,0.085501,0.234925,0,0);-webkit-transform:matrix(0.235449,-0.085696,0.085501,0.234925,0,0);}
.m2{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);}
.me{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);}
.m6{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);}
.m2c{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);}
.m4c{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);}
.m24{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);}
.m12{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);}
.m14{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);}
.m2a{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);}
.m1b{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);}
.m23{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);}
.m3{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);}
.m26{transform:matrix(0.247884,-0.034836,0.034786,0.247568,0,0);-ms-transform:matrix(0.247884,-0.034836,0.034786,0.247568,0,0);-webkit-transform:matrix(0.247884,-0.034836,0.034786,0.247568,0,0);}
.m16{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m18{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);}
.m1d{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);}
.m21{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);}
.m10{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);}
.m31{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,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);}
.mf{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);}
.m29{transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250328,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250358,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250359,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.m36{transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250558,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250559,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250562,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m44{transform:matrix(0.250831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250831,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m11{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);}
.m22{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m5{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m9{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);}
.m19{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);}
.m1{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m7{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.364000px;}
.v3{vertical-align:-11.952000px;}
.v5{vertical-align:-10.920000px;}
.v7{vertical-align:-9.900000px;}
.vc{vertical-align:-2.519028px;}
.v9{vertical-align:-1.182000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:10.920000px;}
.vb{vertical-align:15.306000px;}
.v8{vertical-align:16.488000px;}
.va{vertical-align:20.514000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:32.616000px;}
.ls51{letter-spacing:-0.476079px;}
.ls39{letter-spacing:-0.396682px;}
.ls55{letter-spacing:-0.295746px;}
.ls3b{letter-spacing:-0.290162px;}
.ls6a{letter-spacing:-0.277759px;}
.ls3c{letter-spacing:-0.276973px;}
.ls28{letter-spacing:-0.248211px;}
.ls54{letter-spacing:-0.214310px;}
.ls2e{letter-spacing:-0.180267px;}
.ls6b{letter-spacing:-0.156217px;}
.ls6e{letter-spacing:-0.150194px;}
.ls3e{letter-spacing:-0.139892px;}
.ls2f{letter-spacing:-0.128762px;}
.ls4f{letter-spacing:-0.115096px;}
.ls26{letter-spacing:-0.110717px;}
.ls3d{letter-spacing:-0.091234px;}
.ls27{letter-spacing:-0.083038px;}
.ls53{letter-spacing:-0.079421px;}
.ls6d{letter-spacing:-0.072487px;}
.ls4d{letter-spacing:-0.070911px;}
.ls6f{letter-spacing:-0.046612px;}
.ls3f{letter-spacing:-0.029089px;}
.ls8{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.000141px;}
.ls30{letter-spacing:0.000476px;}
.ls7a{letter-spacing:0.000800px;}
.ls33{letter-spacing:0.000845px;}
.ls7c{letter-spacing:0.002841px;}
.ls41{letter-spacing:0.003152px;}
.ls4b{letter-spacing:0.004028px;}
.ls73{letter-spacing:0.004800px;}
.ls44{letter-spacing:0.005231px;}
.ls48{letter-spacing:0.010462px;}
.ls5b{letter-spacing:0.016885px;}
.ls60{letter-spacing:0.021104px;}
.ls1b{letter-spacing:0.039482px;}
.ls5d{letter-spacing:0.059093px;}
.ls46{letter-spacing:0.062772px;}
.ls66{letter-spacing:0.063317px;}
.ls64{letter-spacing:0.067539px;}
.ls65{letter-spacing:0.071760px;}
.ls50{letter-spacing:0.072486px;}
.ls43{letter-spacing:0.073234px;}
.ls47{letter-spacing:0.078465px;}
.ls69{letter-spacing:0.082856px;}
.ls49{letter-spacing:0.083696px;}
.ls5f{letter-spacing:0.084418px;}
.ls4a{letter-spacing:0.098582px;}
.ls2a{letter-spacing:0.104968px;}
.ls52{letter-spacing:0.110149px;}
.ls5c{letter-spacing:0.113977px;}
.ls2b{letter-spacing:0.125962px;}
.ls68{letter-spacing:0.129442px;}
.ls59{letter-spacing:0.130862px;}
.ls6c{letter-spacing:0.139290px;}
.ls67{letter-spacing:0.139801px;}
.ls42{letter-spacing:0.158843px;}
.ls4e{letter-spacing:0.172643px;}
.ls63{letter-spacing:0.173068px;}
.ls62{letter-spacing:0.177289px;}
.ls57{letter-spacing:0.177298px;}
.ls37{letter-spacing:0.189045px;}
.ls61{letter-spacing:0.202603px;}
.ls45{letter-spacing:0.204009px;}
.ls5e{letter-spacing:0.227929px;}
.ls5a{letter-spacing:0.227954px;}
.ls56{letter-spacing:0.257504px;}
.ls3a{letter-spacing:0.317345px;}
.ls1a{letter-spacing:0.338418px;}
.ls58{letter-spacing:0.413694px;}
.ls1c{letter-spacing:0.451224px;}
.ls38{letter-spacing:0.503764px;}
.ls1d{letter-spacing:0.518908px;}
.ls21{letter-spacing:0.542815px;}
.ls20{letter-spacing:0.568766px;}
.lsd{letter-spacing:0.706723px;}
.ls10{letter-spacing:1.180741px;}
.ls13{letter-spacing:2.093675px;}
.ls76{letter-spacing:2.988600px;}
.ls1{letter-spacing:2.989200px;}
.ls7d{letter-spacing:2.994600px;}
.ls36{letter-spacing:3.507900px;}
.ls2c{letter-spacing:3.513900px;}
.ls9{letter-spacing:3.553200px;}
.lsa{letter-spacing:3.559200px;}
.lsb{letter-spacing:3.739200px;}
.ls0{letter-spacing:8.373300px;}
.ls7{letter-spacing:11.954850px;}
.ls7f{letter-spacing:13.150400px;}
.ls71{letter-spacing:13.274980px;}
.ls78{letter-spacing:13.336114px;}
.ls70{letter-spacing:13.448400px;}
.ls35{letter-spacing:13.449600px;}
.ls7b{letter-spacing:13.451301px;}
.ls74{letter-spacing:13.454400px;}
.ls75{letter-spacing:13.571591px;}
.lsc{letter-spacing:14.941580px;}
.ls22{letter-spacing:14.942725px;}
.ls18{letter-spacing:14.943900px;}
.ls79{letter-spacing:15.244518px;}
.ls32{letter-spacing:15.362329px;}
.ls72{letter-spacing:16.434600px;}
.ls1e{letter-spacing:16.440600px;}
.ls7e{letter-spacing:16.662165px;}
.ls77{letter-spacing:16.676400px;}
.ls29{letter-spacing:17.454475px;}
.ls31{letter-spacing:17.989200px;}
.ls1f{letter-spacing:24.149342px;}
.ls19{letter-spacing:26.420815px;}
.ls17{letter-spacing:26.582616px;}
.ls15{letter-spacing:27.285483px;}
.ls16{letter-spacing:27.289076px;}
.ls12{letter-spacing:27.795483px;}
.ls14{letter-spacing:27.982741px;}
.ls11{letter-spacing:30.301200px;}
.lsf{letter-spacing:33.009483px;}
.lse{letter-spacing:34.362017px;}
.ls2{letter-spacing:57.415200px;}
.ls3{letter-spacing:57.421200px;}
.ls5{letter-spacing:62.737200px;}
.ls4{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.ls2d{letter-spacing:98.970113px;}
.ls23{letter-spacing:136.741200px;}
.ls24{letter-spacing:143.374514px;}
.ls25{letter-spacing:162.082514px;}
.ls40{letter-spacing:1126.618740px;}
.ls34{letter-spacing:1514.006770px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,128,0),0 0.015em rgb(0,128,0),0.015em 0 rgb(0,128,0),0 -0.015em  rgb(0,128,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,128,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7d{word-spacing:-98.518746px;}
.ws9e{word-spacing:-26.899200px;}
.ws63{word-spacing:-15.680043px;}
.ws18{word-spacing:-14.943900px;}
.wscb{word-spacing:-14.396311px;}
.wsc9{word-spacing:-14.394349px;}
.wsca{word-spacing:-14.393939px;}
.ws64{word-spacing:-13.449600px;}
.ws26{word-spacing:-11.955150px;}
.wsc7{word-spacing:-11.873391px;}
.wsc5{word-spacing:-11.735406px;}
.wsc8{word-spacing:-11.734835px;}
.wsc6{word-spacing:-11.734102px;}
.ws7{word-spacing:-11.357400px;}
.wsab{word-spacing:-10.672748px;}
.ws3{word-spacing:-10.460700px;}
.ws41{word-spacing:-3.287658px;}
.ws40{word-spacing:-3.227882px;}
.wsb{word-spacing:-2.749678px;}
.wsa0{word-spacing:-2.636122px;}
.ws44{word-spacing:-2.630126px;}
.ws8e{word-spacing:-2.474726px;}
.ws45{word-spacing:-2.450800px;}
.ws95{word-spacing:-2.391024px;}
.wse1{word-spacing:-2.313331px;}
.wse2{word-spacing:-2.259533px;}
.ws114{word-spacing:-2.205734px;}
.ws0{word-spacing:-2.092140px;}
.ws10e{word-spacing:-2.044339px;}
.ws7b{word-spacing:-2.032370px;}
.wsb4{word-spacing:-1.912819px;}
.ws94{word-spacing:-1.853044px;}
.ws93{word-spacing:-1.793268px;}
.ws5c{word-spacing:-1.733492px;}
.ws8d{word-spacing:-1.554166px;}
.wsdf{word-spacing:-1.398758px;}
.ws8b{word-spacing:-1.374839px;}
.ws2e{word-spacing:-1.315063px;}
.ws32{word-spacing:-1.195512px;}
.ws127{word-spacing:-1.075968px;}
.ws60{word-spacing:-1.075961px;}
.ws124{word-spacing:-1.022170px;}
.wsa9{word-spacing:-1.016185px;}
.ws5f{word-spacing:-0.896634px;}
.ws61{word-spacing:-0.836858px;}
.ws128{word-spacing:-0.806976px;}
.ws17{word-spacing:-0.717307px;}
.ws10{word-spacing:-0.657532px;}
.ws97{word-spacing:-0.597756px;}
.ws16{word-spacing:-0.582974px;}
.wsa3{word-spacing:-0.505769px;}
.ws7f{word-spacing:-0.478205px;}
.ws139{word-spacing:-0.430387px;}
.ws7c{word-spacing:-0.418429px;}
.wsb0{word-spacing:-0.405926px;}
.ws12{word-spacing:-0.358654px;}
.wsa5{word-spacing:-0.325333px;}
.ws126{word-spacing:-0.322790px;}
.ws15{word-spacing:-0.298878px;}
.wsd3{word-spacing:-0.268992px;}
.ws33{word-spacing:-0.239102px;}
.wsf8{word-spacing:-0.215194px;}
.wsa7{word-spacing:-0.194633px;}
.wsa{word-spacing:-0.179327px;}
.wsa1{word-spacing:-0.161395px;}
.wsa8{word-spacing:-0.152057px;}
.wsce{word-spacing:-0.134657px;}
.ws1d{word-spacing:-0.119551px;}
.wsd7{word-spacing:-0.107597px;}
.ws85{word-spacing:-0.062981px;}
.ws20{word-spacing:-0.059776px;}
.wsd2{word-spacing:-0.053798px;}
.wsae{word-spacing:-0.052316px;}
.wsac{word-spacing:-0.052310px;}
.ws8{word-spacing:-0.047821px;}
.ws3d{word-spacing:-0.047338px;}
.ws84{word-spacing:-0.041987px;}
.ws4{word-spacing:-0.041843px;}
.wscd{word-spacing:-0.031075px;}
.ws115{word-spacing:-0.005587px;}
.ws6c{word-spacing:-0.001716px;}
.ws6{word-spacing:0.000000px;}
.wsad{word-spacing:0.026158px;}
.ws11b{word-spacing:0.053798px;}
.ws2b{word-spacing:0.059776px;}
.ws83{word-spacing:0.070819px;}
.wsf3{word-spacing:0.107597px;}
.wsc{word-spacing:0.119551px;}
.ws82{word-spacing:0.122324px;}
.wsa6{word-spacing:0.140685px;}
.wsa4{word-spacing:0.153874px;}
.wse3{word-spacing:0.161395px;}
.wsd{word-spacing:0.179327px;}
.wsba{word-spacing:0.215194px;}
.ws11{word-spacing:0.239102px;}
.wsd9{word-spacing:0.268992px;}
.ws77{word-spacing:0.269873px;}
.ws76{word-spacing:0.297553px;}
.ws2d{word-spacing:0.298878px;}
.wsda{word-spacing:0.322790px;}
.wsaf{word-spacing:0.347936px;}
.ws1b{word-spacing:0.358654px;}
.ws112{word-spacing:0.376589px;}
.wsf{word-spacing:0.418429px;}
.ws5{word-spacing:0.422252px;}
.wsdc{word-spacing:0.430387px;}
.ws88{word-spacing:0.478205px;}
.ws9d{word-spacing:0.484186px;}
.ws49{word-spacing:0.537980px;}
.wsfb{word-spacing:0.537984px;}
.ws78{word-spacing:0.592322px;}
.ws5a{word-spacing:0.657532px;}
.ws12f{word-spacing:0.699379px;}
.ws81{word-spacing:0.717307px;}
.wsd4{word-spacing:0.753178px;}
.ws57{word-spacing:0.777083px;}
.ws1f{word-spacing:0.956410px;}
.ws4d{word-spacing:1.016185px;}
.ws13b{word-spacing:1.022170px;}
.wsdb{word-spacing:1.183565px;}
.ws27{word-spacing:1.195512px;}
.ws56{word-spacing:1.255288px;}
.ws53{word-spacing:1.315063px;}
.ws102{word-spacing:1.344960px;}
.wsb9{word-spacing:1.374839px;}
.ws108{word-spacing:1.398758px;}
.ws47{word-spacing:1.434614px;}
.wsb6{word-spacing:1.494390px;}
.wsb8{word-spacing:1.554166px;}
.ws51{word-spacing:1.613941px;}
.ws8f{word-spacing:1.667750px;}
.wsc3{word-spacing:1.673717px;}
.ws1c{word-spacing:1.733492px;}
.ws10a{word-spacing:1.775347px;}
.ws4a{word-spacing:1.793268px;}
.ws12b{word-spacing:1.829146px;}
.ws86{word-spacing:1.853044px;}
.ws107{word-spacing:1.882944px;}
.ws35{word-spacing:1.912819px;}
.ws7a{word-spacing:1.972595px;}
.ws50{word-spacing:2.032370px;}
.wse8{word-spacing:2.044339px;}
.ws2c{word-spacing:2.092146px;}
.ws36{word-spacing:2.151922px;}
.wsfe{word-spacing:2.205734px;}
.ws38{word-spacing:2.271473px;}
.ws5b{word-spacing:2.331248px;}
.ws8c{word-spacing:2.391024px;}
.ws106{word-spacing:2.420928px;}
.ws75{word-spacing:2.510575px;}
.ws134{word-spacing:2.528525px;}
.ws79{word-spacing:2.570351px;}
.ws21{word-spacing:2.630126px;}
.wscc{word-spacing:2.636122px;}
.ws22{word-spacing:2.689902px;}
.wsb3{word-spacing:2.749678px;}
.ws10f{word-spacing:2.851315px;}
.ws54{word-spacing:2.869229px;}
.ws9{word-spacing:2.869236px;}
.ws100{word-spacing:2.905114px;}
.ws91{word-spacing:3.048556px;}
.wsb1{word-spacing:3.108331px;}
.ws39{word-spacing:3.168107px;}
.wse0{word-spacing:3.176736px;}
.ws13a{word-spacing:3.217613px;}
.wsef{word-spacing:3.219677px;}
.ws13c{word-spacing:3.219696px;}
.wsf1{word-spacing:3.221088px;}
.ws122{word-spacing:3.221587px;}
.ws12c{word-spacing:3.223786px;}
.ws13d{word-spacing:3.224602px;}
.wsfd{word-spacing:3.224947px;}
.ws136{word-spacing:3.225360px;}
.ws116{word-spacing:3.227606px;}
.wsf4{word-spacing:3.227770px;}
.ws2f{word-spacing:3.227882px;}
.ws104{word-spacing:3.227904px;}
.ws7e{word-spacing:3.281702px;}
.ws30{word-spacing:3.287658px;}
.ws34{word-spacing:3.347434px;}
.ws73{word-spacing:3.347442px;}
.ws117{word-spacing:3.389299px;}
.ws96{word-spacing:3.407209px;}
.ws90{word-spacing:3.466985px;}
.ws28{word-spacing:3.488575px;}
.ws13f{word-spacing:3.496896px;}
.ws9b{word-spacing:3.526760px;}
.wsd5{word-spacing:3.550694px;}
.ws2a{word-spacing:3.586536px;}
.ws69{word-spacing:3.646312px;}
.ws52{word-spacing:3.706087px;}
.ws99{word-spacing:3.765888px;}
.ws43{word-spacing:3.825638px;}
.ws48{word-spacing:3.885414px;}
.wsb5{word-spacing:3.945190px;}
.ws87{word-spacing:4.004965px;}
.ws1a{word-spacing:4.064741px;}
.wsd0{word-spacing:4.088678px;}
.ws29{word-spacing:4.124516px;}
.wsd1{word-spacing:4.142477px;}
.ws12d{word-spacing:4.196275px;}
.ws19{word-spacing:4.303872px;}
.ws24{word-spacing:4.363619px;}
.ws23{word-spacing:4.423394px;}
.ws42{word-spacing:4.483170px;}
.ws68{word-spacing:4.602721px;}
.wsb2{word-spacing:4.662497px;}
.ws31{word-spacing:4.722272px;}
.ws9a{word-spacing:4.782048px;}
.wsa2{word-spacing:4.841824px;}
.ws92{word-spacing:4.961375px;}
.wsd8{word-spacing:5.003251px;}
.wsb7{word-spacing:5.021150px;}
.ws80{word-spacing:5.140702px;}
.wsfa{word-spacing:5.164646px;}
.ws1e{word-spacing:5.200477px;}
.ws67{word-spacing:5.320028px;}
.ws3c{word-spacing:5.379804px;}
.wsd6{word-spacing:5.541235px;}
.wsde{word-spacing:5.648832px;}
.ws37{word-spacing:5.738458px;}
.wsc1{word-spacing:5.798233px;}
.ws55{word-spacing:5.858009px;}
.ws62{word-spacing:5.977560px;}
.ws3a{word-spacing:6.037336px;}
.ws13{word-spacing:6.156887px;}
.ws4e{word-spacing:6.336214px;}
.ws10c{word-spacing:6.509606px;}
.ws8a{word-spacing:6.515540px;}
.wsc0{word-spacing:6.569462px;}
.ws89{word-spacing:6.575316px;}
.wsbc{word-spacing:6.575462px;}
.ws6b{word-spacing:6.578028px;}
.wse{word-spacing:7.173072px;}
.ws9c{word-spacing:7.232848px;}
.ws46{word-spacing:7.412174px;}
.ws3b{word-spacing:7.651277px;}
.ws74{word-spacing:7.711052px;}
.ws14{word-spacing:7.950155px;}
.wscf{word-spacing:8.069706px;}
.wsec{word-spacing:8.177357px;}
.ws10b{word-spacing:8.231155px;}
.ws119{word-spacing:8.284954px;}
.ws4b{word-spacing:8.308808px;}
.ws4c{word-spacing:8.428360px;}
.wsee{word-spacing:9.038131px;}
.ws65{word-spacing:9.145667px;}
.wsf6{word-spacing:9.145728px;}
.ws66{word-spacing:9.205442px;}
.ws2{word-spacing:10.840362px;}
.wsea{word-spacing:11.351462px;}
.ws5e{word-spacing:11.476915px;}
.ws5d{word-spacing:11.536691px;}
.ws59{word-spacing:11.656242px;}
.ws58{word-spacing:11.672248px;}
.ws25{word-spacing:11.904506px;}
.ws98{word-spacing:12.965414px;}
.wsff{word-spacing:13.232623px;}
.ws11e{word-spacing:13.234406px;}
.ws103{word-spacing:13.273238px;}
.ws110{word-spacing:13.288205px;}
.ws130{word-spacing:13.385395px;}
.ws13e{word-spacing:13.385520px;}
.ws12e{word-spacing:13.388179px;}
.wsf0{word-spacing:13.390003px;}
.ws123{word-spacing:13.390022px;}
.ws129{word-spacing:13.391184px;}
.ws118{word-spacing:13.391645px;}
.ws121{word-spacing:13.392188px;}
.ws11a{word-spacing:13.393373px;}
.ws133{word-spacing:13.393958px;}
.wse7{word-spacing:13.394698px;}
.wse9{word-spacing:13.395802px;}
.ws105{word-spacing:13.407515px;}
.ws11d{word-spacing:13.449600px;}
.ws11c{word-spacing:13.503398px;}
.ws131{word-spacing:13.610995px;}
.wsf5{word-spacing:13.664794px;}
.wsdd{word-spacing:14.731764px;}
.ws4f{word-spacing:14.884124px;}
.ws138{word-spacing:16.247117px;}
.wsed{word-spacing:16.408512px;}
.ws101{word-spacing:16.462310px;}
.ws10d{word-spacing:16.616669px;}
.ws137{word-spacing:16.618330px;}
.ws12a{word-spacing:16.618742px;}
.ws111{word-spacing:16.619136px;}
.ws125{word-spacing:16.619155px;}
.ws132{word-spacing:16.620374px;}
.ws113{word-spacing:16.621315px;}
.wsfc{word-spacing:16.621373px;}
.ws11f{word-spacing:16.623274px;}
.wsf2{word-spacing:16.623706px;}
.wsf9{word-spacing:16.762964px;}
.ws120{word-spacing:16.892698px;}
.wsc2{word-spacing:18.428575px;}
.ws3e{word-spacing:18.434575px;}
.ws3f{word-spacing:18.470660px;}
.ws109{word-spacing:21.250368px;}
.ws72{word-spacing:21.662732px;}
.ws1{word-spacing:22.179541px;}
.ws135{word-spacing:24.639667px;}
.wsf7{word-spacing:44.512760px;}
.wseb{word-spacing:51.162278px;}
.wsaa{word-spacing:127.375061px;}
.ws6a{word-spacing:140.818567px;}
.wsbd{word-spacing:155.894765px;}
.wsbe{word-spacing:162.567042px;}
.wsc4{word-spacing:183.390258px;}
.wse4{word-spacing:228.051418px;}
.wse5{word-spacing:265.710298px;}
.wse6{word-spacing:274.479437px;}
.ws71{word-spacing:276.163272px;}
.wsbb{word-spacing:276.394567px;}
.wsbf{word-spacing:278.793398px;}
.ws6f{word-spacing:282.619037px;}
.ws70{word-spacing:284.292754px;}
.ws6e{word-spacing:339.943837px;}
.ws6d{word-spacing:366.842857px;}
.ws9f{word-spacing:372.657563px;}
._1f{margin-left:-99.185303px;}
._40{margin-left:-31.549322px;}
._42{margin-left:-24.532070px;}
._3b{margin-left:-20.858248px;}
._20{margin-left:-13.826917px;}
._26{margin-left:-12.694966px;}
._1e{margin-left:-8.404460px;}
._6{margin-left:-7.312590px;}
._3{margin-left:-5.397721px;}
._2{margin-left:-3.849538px;}
._1{margin-left:-2.301354px;}
._9{margin-left:-1.141729px;}
._a{width:1.010190px;}
._7{width:2.997179px;}
._3f{width:4.829899px;}
._41{width:6.617203px;}
._3d{width:9.868567px;}
._0{width:10.879128px;}
._22{width:12.027382px;}
._17{width:13.688612px;}
._8{width:15.404198px;}
._19{width:16.671312px;}
._3e{width:17.705866px;}
._b{width:18.709763px;}
._d{width:20.269921px;}
._4{width:21.749256px;}
._16{width:23.103274px;}
._10{width:24.328669px;}
._f{width:25.374736px;}
._11{width:27.018571px;}
._15{width:28.811839px;}
._23{width:30.551324px;}
._14{width:32.099497px;}
._5{width:33.355008px;}
._21{width:34.370970px;}
._e{width:37.658628px;}
._c{width:40.348530px;}
._18{width:44.353495px;}
._3a{width:51.989045px;}
._24{width:56.123427px;}
._3c{width:61.868160px;}
._35{width:136.086005px;}
._2f{width:200.673936px;}
._28{width:208.837976px;}
._2d{width:216.770225px;}
._2a{width:231.714125px;}
._31{width:261.245030px;}
._33{width:264.419136px;}
._32{width:266.840064px;}
._34{width:270.498355px;}
._30{width:272.058509px;}
._29{width:278.853174px;}
._2e{width:281.258035px;}
._2b{width:293.737298px;}
._38{width:300.302669px;}
._37{width:303.745766px;}
._36{width:306.543283px;}
._2c{width:308.681198px;}
._39{width:315.097229px;}
._1d{width:366.842857px;}
._1c{width:382.348637px;}
._27{width:387.052156px;}
._1b{width:389.258707px;}
._1a{width:398.344598px;}
._12{width:1721.609788px;}
._25{width:2454.221788px;}
._13{width:2478.131788px;}
.fc9{color:rgb(255,0,255);}
.fca{color:rgb(0,0,128);}
.fc8{color:rgb(255,0,0);}
.fc6{color:rgb(0,128,0);}
.fc5{color:rgb(128,0,128);}
.fcb{color:rgb(0,0,160);}
.fc4{color:rgb(1,138,163);}
.fc3{color:rgb(128,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc7{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs1b{font-size:31.515183px;}
.fs1d{font-size:31.515600px;}
.fs4{font-size:35.865600px;}
.fs17{font-size:36.361080px;}
.fs26{font-size:37.819800px;}
.fs0{font-size:41.842800px;}
.fs2c{font-size:42.208999px;}
.fs2d{font-size:42.211636px;}
.fs2b{font-size:42.213691px;}
.fs2a{font-size:42.220799px;}
.fs11{font-size:43.600200px;}
.fs15{font-size:43.963920px;}
.fs24{font-size:44.122799px;}
.fs3{font-size:45.429600px;}
.fs19{font-size:47.274000px;}
.fs7{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fs14{font-size:49.585199px;}
.fs2f{font-size:51.776761px;}
.fs2e{font-size:51.778232px;}
.fs31{font-size:51.785291px;}
.fs30{font-size:51.791040px;}
.fs27{font-size:52.309963px;}
.fs1a{font-size:52.316002px;}
.fs1c{font-size:52.316400px;}
.fse{font-size:52.484549px;}
.fs9{font-size:53.798400px;}
.fsb{font-size:56.403031px;}
.fsd{font-size:56.411638px;}
.fs28{font-size:57.989399px;}
.fs1{font-size:59.775600px;}
.fs18{font-size:60.120000px;}
.fs16{font-size:60.822720px;}
.fs8{font-size:62.286600px;}
.fs25{font-size:63.032398px;}
.fsf{font-size:64.381110px;}
.fsc{font-size:69.198300px;}
.fs10{font-size:69.978780px;}
.fs6{font-size:71.731200px;}
.fs12{font-size:72.144000px;}
.fs23{font-size:73.432800px;}
.fs29{font-size:79.359837px;}
.fsa{font-size:81.162000px;}
.fs13{font-size:84.168000px;}
.fs20{font-size:104.948399px;}
.fs2{font-size:107.596800px;}
.fs1e{font-size:152.223598px;}
.fs1f{font-size:173.339996px;}
.fs22{font-size:181.219196px;}
.fs21{font-size:194.141396px;}
.y0{bottom:0.000000px;}
.y15c{bottom:0.256429px;}
.y1c7{bottom:0.449122px;}
.y151{bottom:1.130742px;}
.y173{bottom:1.494942px;}
.y101{bottom:1.856698px;}
.y16b{bottom:6.073861px;}
.y141{bottom:6.619953px;}
.y1d0{bottom:6.712762px;}
.y197{bottom:6.804450px;}
.y107{bottom:7.082038px;}
.y16c{bottom:13.507815px;}
.y1c9{bottom:25.072784px;}
.y109{bottom:27.615568px;}
.y174{bottom:29.844450px;}
.y140{bottom:32.148479px;}
.y162{bottom:32.155825px;}
.y46{bottom:45.921000px;}
.y1d1{bottom:52.828754px;}
.y1ce{bottom:53.476727px;}
.y1cd{bottom:54.016705px;}
.y146{bottom:61.722482px;}
.y145{bottom:83.065965px;}
.y102{bottom:83.505518px;}
.y1cc{bottom:94.624701px;}
.y18b{bottom:95.004591px;}
.y193{bottom:95.274580px;}
.y183{bottom:96.804472px;}
.y44{bottom:99.720000px;}
.y15{bottom:100.260000px;}
.y184{bottom:103.194441px;}
.y144{bottom:104.548942px;}
.y45{bottom:105.144000px;}
.y201{bottom:105.177000px;}
.y279{bottom:105.961500px;}
.y164{bottom:107.251846px;}
.y179{bottom:111.654463px;}
.y125{bottom:111.702000px;}
.y189{bottom:111.924452px;}
.y237{bottom:116.146500px;}
.y199{bottom:116.382000px;}
.y84{bottom:116.407500px;}
.y17a{bottom:118.044432px;}
.y14{bottom:118.147500px;}
.y17d{bottom:119.574461px;}
.y42{bottom:120.610500px;}
.y1cf{bottom:120.868732px;}
.y16a{bottom:123.631820px;}
.y200{bottom:124.675500px;}
.y273{bottom:125.112000px;}
.y18a{bottom:125.244460px;}
.y17e{bottom:125.964430px;}
.y143{bottom:126.031990px;}
.y43{bottom:126.036000px;}
.y163{bottom:131.947802px;}
.y1cb{bottom:132.532697px;}
.y124{bottom:132.594000px;}
.ybd{bottom:134.191500px;}
.y236{bottom:135.297000px;}
.y166{bottom:135.349187px;}
.y13{bottom:136.035000px;}
.y83{bottom:137.298000px;}
.ye2{bottom:137.326500px;}
.y171{bottom:138.811500px;}
.y40{bottom:141.502500px;}
.y1ff{bottom:144.174000px;}
.y272{bottom:144.262500px;}
.y41{bottom:146.928000px;}
.y106{bottom:148.994073px;}
.y142{bottom:152.676470px;}
.y123{bottom:153.486000px;}
.y12{bottom:153.922500px;}
.y235{bottom:154.447500px;}
.ybc{bottom:155.083500px;}
.y168{bottom:156.265020px;}
.y82{bottom:158.190000px;}
.ye1{bottom:158.218500px;}
.y194{bottom:159.623431px;}
.y196{bottom:161.694579px;}
.y3f{bottom:162.394500px;}
.y271{bottom:163.413000px;}
.yff{bottom:164.911500px;}
.y1db{bottom:166.878000px;}
.y175{bottom:171.774580px;}
.y11{bottom:171.811500px;}
.y234{bottom:173.598000px;}
.y18c{bottom:173.753821px;}
.y1fe{bottom:174.333000px;}
.y122{bottom:174.376500px;}
.y185{bottom:175.104582px;}
.ybb{bottom:175.974000px;}
.y1ca{bottom:176.380780px;}
.y14f{bottom:177.000000px;}
.y81{bottom:179.082000px;}
.ye0{bottom:179.109000px;}
.y186{bottom:181.494460px;}
.y270{bottom:182.563500px;}
.y3e{bottom:183.285000px;}
.y17b{bottom:185.094588px;}
.yfe{bottom:185.802000px;}
.y10{bottom:189.699000px;}
.y233{bottom:192.748500px;}
.y121{bottom:195.268500px;}
.y14d{bottom:196.233000px;}
.yba{bottom:196.866000px;}
.y1fd{bottom:198.315000px;}
.y278{bottom:199.092000px;}
.y80{bottom:199.972500px;}
.ydf{bottom:200.001000px;}
.y14e{bottom:201.115500px;}
.y15a{bottom:201.447000px;}
.y26f{bottom:201.714000px;}
.y17c{bottom:203.904463px;}
.y3d{bottom:204.177000px;}
.y1aa{bottom:205.398000px;}
.y1da{bottom:205.701000px;}
.yfd{bottom:206.694000px;}
.yf{bottom:207.586500px;}
.y18d{bottom:208.674452px;}
.y17f{bottom:208.944441px;}
.y176{bottom:209.124434px;}
.y232{bottom:211.899000px;}
.y180{bottom:215.334456px;}
.y14c{bottom:215.466000px;}
.y120{bottom:216.160500px;}
.yb8{bottom:217.758000px;}
.y7f{bottom:220.864500px;}
.yde{bottom:220.893000px;}
.y103{bottom:221.165318px;}
.y159{bottom:222.339000px;}
.yb9{bottom:223.182000px;}
.y3c{bottom:225.069000px;}
.ye{bottom:225.475500px;}
.y1d9{bottom:226.593000px;}
.yfc{bottom:227.586000px;}
.y231{bottom:231.049500px;}
.yb7{bottom:235.918500px;}
.y1fc{bottom:237.139500px;}
.yb6{bottom:238.648500px;}
.y170{bottom:238.864500px;}
.y26e{bottom:240.015000px;}
.y7e{bottom:241.756500px;}
.ydd{bottom:241.785000px;}
.y158{bottom:243.231000px;}
.y1d8{bottom:244.755000px;}
.y3b{bottom:245.961000px;}
.y1a9{bottom:247.180500px;}
.y1d6{bottom:247.485000px;}
.yfb{bottom:248.478000px;}
.y11f{bottom:249.388500px;}
.y230{bottom:250.200000px;}
.yd{bottom:252.330000px;}
.y1d7{bottom:252.909000px;}
.y165{bottom:255.679535px;}
.y277{bottom:256.543500px;}
.y1fb{bottom:256.638000px;}
.y16f{bottom:258.097500px;}
.y26d{bottom:259.165500px;}
.yb4{bottom:259.540500px;}
.y7d{bottom:262.647000px;}
.ydc{bottom:262.675500px;}
.y11d{bottom:263.586000px;}
.yb5{bottom:264.966000px;}
.y3a{bottom:266.851500px;}
.y11e{bottom:267.925500px;}
.y1a8{bottom:268.072500px;}
.y1d5{bottom:268.377000px;}
.y167{bottom:268.782980px;}
.y22f{bottom:269.350500px;}
.yfa{bottom:269.368500px;}
.y195{bottom:269.422174px;}
.yc{bottom:270.217500px;}
.y1c8{bottom:275.740692px;}
.y1fa{bottom:276.136500px;}
.y16e{bottom:277.330500px;}
.y11c{bottom:277.782000px;}
.y26c{bottom:278.316000px;}
.y16d{bottom:280.123861px;}
.yb3{bottom:280.432500px;}
.y11b{bottom:282.123000px;}
.y7c{bottom:283.539000px;}
.ydb{bottom:283.567500px;}
.y169{bottom:283.776870px;}
.y22e{bottom:285.879000px;}
.y104{bottom:287.140258px;}
.y39{bottom:287.743500px;}
.yb{bottom:288.105000px;}
.y22d{bottom:288.501000px;}
.yf9{bottom:290.260500px;}
.y177{bottom:294.084456px;}
.y26b{bottom:297.466500px;}
.y11a{bottom:299.251500px;}
.y148{bottom:299.521500px;}
.y161{bottom:299.760000px;}
.yb2{bottom:301.323000px;}
.y1d4{bottom:303.874500px;}
.y7b{bottom:304.431000px;}
.yda{bottom:304.459500px;}
.y1f9{bottom:304.602000px;}
.ya{bottom:305.994000px;}
.y22c{bottom:307.651500px;}
.y18e{bottom:307.944441px;}
.y157{bottom:308.635500px;}
.y187{bottom:308.844450px;}
.yf8{bottom:311.152500px;}
.y38{bottom:313.117500px;}
.y188{bottom:315.234465px;}
.y26a{bottom:316.617000px;}
.y119{bottom:317.184000px;}
.y147{bottom:318.754500px;}
.y1d3{bottom:323.107500px;}
.y9{bottom:323.881500px;}
.y1f8{bottom:324.100500px;}
.y7a{bottom:325.323000px;}
.yd9{bottom:325.350000px;}
.yb1{bottom:326.698500px;}
.y22b{bottom:326.802000px;}
.y156{bottom:329.526000px;}
.yf7{bottom:332.043000px;}
.y276{bottom:333.145500px;}
.y118{bottom:335.118000px;}
.y269{bottom:335.767500px;}
.y178{bottom:340.524443px;}
.y13f{bottom:341.184000px;}
.y8{bottom:341.769000px;}
.y1d2{bottom:342.340500px;}
.y1f7{bottom:343.599000px;}
.y105{bottom:345.461671px;}
.y22a{bottom:345.952500px;}
.y79{bottom:346.213500px;}
.yd8{bottom:346.242000px;}
.y1a7{bottom:351.639000px;}
.yf6{bottom:352.935000px;}
.y117{bottom:353.050500px;}
.y268{bottom:354.918000px;}
.y181{bottom:355.284438px;}
.y7{bottom:359.658000px;}
.y182{bottom:361.674452px;}
.yb0{bottom:362.041500px;}
.y78{bottom:364.375500px;}
.y155{bottom:364.611000px;}
.y229{bottom:365.103000px;}
.y77{bottom:367.105500px;}
.yd7{bottom:367.134000px;}
.y1c6{bottom:367.758000px;}
.y116{bottom:370.983000px;}
.y1f6{bottom:372.064500px;}
.y1a6{bottom:372.529500px;}
.yf5{bottom:373.827000px;}
.y267{bottom:374.070000px;}
.y6{bottom:377.545500px;}
.yaf{bottom:382.932000px;}
.y153{bottom:383.842500px;}
.y228{bottom:384.253500px;}
.y190{bottom:384.804472px;}
.y76{bottom:385.267500px;}
.y75{bottom:387.997500px;}
.yd6{bottom:388.024500px;}
.y192{bottom:388.044432px;}
.y154{bottom:388.725000px;}
.y18f{bottom:391.194441px;}
.y1f5{bottom:391.563000px;}
.y37{bottom:392.329500px;}
.y266{bottom:393.220500px;}
.y191{bottom:393.624434px;}
.yf4{bottom:394.717500px;}
.y115{bottom:396.657000px;}
.y198{bottom:399.744460px;}
.y5{bottom:401.410500px;}
.y152{bottom:403.075500px;}
.y227{bottom:403.404000px;}
.yad{bottom:403.824000px;}
.y108{bottom:407.303068px;}
.y74{bottom:408.888000px;}
.yae{bottom:409.248000px;}
.y265{bottom:412.371000px;}
.y36{bottom:413.221500px;}
.y1a5{bottom:414.313500px;}
.yf3{bottom:415.609500px;}
.y4{bottom:419.299500px;}
.y1f4{bottom:420.028500px;}
.y226{bottom:422.554500px;}
.yd5{bottom:423.652500px;}
.yac{bottom:424.716000px;}
.y172{bottom:425.124505px;}
.y150{bottom:428.494500px;}
.y73{bottom:429.780000px;}
.y114{bottom:429.861000px;}
.y264{bottom:431.521500px;}
.y1a4{bottom:435.204000px;}
.yf2{bottom:436.501500px;}
.y3{bottom:437.187000px;}
.y225{bottom:441.706500px;}
.yab{bottom:445.606500px;}
.y1f3{bottom:448.494000px;}
.y72{bottom:450.672000px;}
.y35{bottom:452.046000px;}
.y2{bottom:455.074500px;}
.yf1{bottom:457.392000px;}
.y224{bottom:460.857000px;}
.yaa{bottom:466.498500px;}
.y113{bottom:466.965000px;}
.y275{bottom:467.199000px;}
.y263{bottom:469.822500px;}
.y71{bottom:471.562500px;}
.y34{bottom:472.936500px;}
.y1f2{bottom:476.958000px;}
.y1a3{bottom:476.988000px;}
.yf0{bottom:478.284000px;}
.y1{bottom:478.941000px;}
.y223{bottom:480.007500px;}
.ya9{bottom:487.390500px;}
.y112{bottom:487.857000px;}
.y262{bottom:488.973000px;}
.y70{bottom:492.454500px;}
.y33{bottom:493.828500px;}
.y1f1{bottom:496.458000px;}
.y222{bottom:499.158000px;}
.yef{bottom:499.176000px;}
.y27d{bottom:503.394000px;}
.y261{bottom:508.123500px;}
.ya8{bottom:508.281000px;}
.y111{bottom:508.749000px;}
.y6f{bottom:513.346500px;}
.y31{bottom:514.720500px;}
.y1f0{bottom:515.956500px;}
.yee{bottom:517.338000px;}
.y221{bottom:518.308500px;}
.yed{bottom:520.068000px;}
.y32{bottom:520.144500px;}
.y27c{bottom:522.544500px;}
.y260{bottom:527.274000px;}
.ya7{bottom:529.173000px;}
.y110{bottom:529.639500px;}
.y6e{bottom:534.237000px;}
.y30{bottom:535.612500px;}
.y220{bottom:537.459000px;}
.y27b{bottom:541.695000px;}
.y1ef{bottom:544.422000px;}
.y25f{bottom:546.424500px;}
.ya5{bottom:550.065000px;}
.y10f{bottom:550.531500px;}
.y1a2{bottom:552.052500px;}
.y6d{bottom:552.399000px;}
.y6c{bottom:555.129000px;}
.ya6{bottom:555.489000px;}
.yec{bottom:555.694500px;}
.y2f{bottom:556.503000px;}
.y21f{bottom:556.609500px;}
.y1ee{bottom:563.920500px;}
.y25e{bottom:565.575000px;}
.ya4{bottom:570.955500px;}
.y10e{bottom:571.423500px;}
.y1a1{bottom:572.944500px;}
.y21e{bottom:575.760000px;}
.y6b{bottom:576.021000px;}
.y2e{bottom:577.395000px;}
.y1ed{bottom:583.419000px;}
.y25d{bottom:584.725500px;}
.ya3{bottom:591.847500px;}
.y10d{bottom:592.314000px;}
.y21d{bottom:594.910500px;}
.y6a{bottom:596.913000px;}
.y2d{bottom:598.287000px;}
.y1ec{bottom:602.917500px;}
.y25c{bottom:603.876000px;}
.ya2{bottom:612.739500px;}
.y10c{bottom:613.206000px;}
.y21c{bottom:614.061000px;}
.y1a0{bottom:614.727000px;}
.y69{bottom:617.803500px;}
.y2c{bottom:619.177500px;}
.y25b{bottom:620.404500px;}
.y1eb{bottom:622.416000px;}
.y25a{bottom:623.026500px;}
.ya1{bottom:630.901500px;}
.y21b{bottom:633.211500px;}
.ya0{bottom:633.631500px;}
.y10b{bottom:634.098000px;}
.y19f{bottom:635.619000px;}
.y68{bottom:635.965500px;}
.y2b{bottom:637.339500px;}
.y67{bottom:638.695500px;}
.y27a{bottom:639.555000px;}
.y2a{bottom:640.069500px;}
.y1ea{bottom:641.914500px;}
.y259{bottom:642.177000px;}
.yd4{bottom:651.099000px;}
.y21a{bottom:652.362000px;}
.y9f{bottom:654.522000px;}
.y66{bottom:659.587500px;}
.y29{bottom:660.961500px;}
.y258{bottom:661.327500px;}
.y10a{bottom:669.726000px;}
.y1e9{bottom:670.380000px;}
.y219{bottom:671.512500px;}
.yd3{bottom:671.989500px;}
.y9e{bottom:675.414000px;}
.y160{bottom:675.600000px;}
.y65{bottom:677.748000px;}
.y257{bottom:677.856000px;}
.y64{bottom:680.478000px;}
.y28{bottom:681.852000px;}
.y1e8{bottom:690.400500px;}
.y218{bottom:690.663000px;}
.y100{bottom:692.154000px;}
.y15f{bottom:692.211000px;}
.y1c5{bottom:692.346000px;}
.y15e{bottom:694.833000px;}
.y9d{bottom:696.306000px;}
.y256{bottom:699.628500px;}
.y63{bottom:701.370000px;}
.y27{bottom:702.744000px;}
.yd2{bottom:703.327500px;}
.y217{bottom:709.813500px;}
.y1e7{bottom:710.422500px;}
.y1c4{bottom:713.238000px;}
.y15d{bottom:714.066000px;}
.y255{bottom:716.157000px;}
.y9c{bottom:717.196500px;}
.y254{bottom:718.779000px;}
.y26{bottom:720.906000px;}
.y62{bottom:722.262000px;}
.y25{bottom:723.636000px;}
.yd1{bottom:724.219500px;}
.y216{bottom:728.964000px;}
.y1e6{bottom:730.443000px;}
.y1c3{bottom:734.128500px;}
.y15b{bottom:736.495500px;}
.y253{bottom:737.929500px;}
.y9b{bottom:738.088500px;}
.y13e{bottom:738.670500px;}
.y61{bottom:740.422500px;}
.y60{bottom:743.152500px;}
.y24{bottom:744.526500px;}
.yd0{bottom:745.110000px;}
.y215{bottom:748.114500px;}
.y1e5{bottom:750.465000px;}
.y1c2{bottom:755.020500px;}
.y252{bottom:757.081500px;}
.y9a{bottom:758.980500px;}
.y13d{bottom:759.561000px;}
.y5f{bottom:761.314500px;}
.y5e{bottom:764.044500px;}
.y23{bottom:765.418500px;}
.ycf{bottom:766.002000px;}
.y214{bottom:767.265000px;}
.y1e4{bottom:770.485500px;}
.y251{bottom:773.608500px;}
.y1c1{bottom:775.912500px;}
.y250{bottom:776.232000px;}
.y99{bottom:777.141000px;}
.y13c{bottom:777.723000px;}
.y98{bottom:779.871000px;}
.y13b{bottom:780.453000px;}
.y5d{bottom:782.206500px;}
.y5c{bottom:784.936500px;}
.y213{bottom:786.415500px;}
.yce{bottom:786.894000px;}
.y1e2{bottom:790.506000px;}
.y274{bottom:792.759000px;}
.y22{bottom:795.276000px;}
.y24f{bottom:795.382500px;}
.y1e3{bottom:795.388500px;}
.y1c0{bottom:796.804500px;}
.y97{bottom:798.033000px;}
.y96{bottom:800.763000px;}
.y13a{bottom:801.345000px;}
.y5b{bottom:803.098500px;}
.ycd{bottom:805.056000px;}
.y212{bottom:805.566000px;}
.y5a{bottom:805.827000px;}
.ycc{bottom:807.784500px;}
.y1e1{bottom:810.528000px;}
.y19e{bottom:811.252500px;}
.y24e{bottom:814.533000px;}
.y1bf{bottom:817.695000px;}
.y95{bottom:821.655000px;}
.y139{bottom:822.235500px;}
.y211{bottom:824.718000px;}
.y59{bottom:826.719000px;}
.ycb{bottom:828.676500px;}
.y1e0{bottom:830.548500px;}
.y19d{bottom:832.144500px;}
.y24d{bottom:833.683500px;}
.y21{bottom:834.942000px;}
.y1be{bottom:838.587000px;}
.y94{bottom:842.545500px;}
.y138{bottom:843.127500px;}
.y210{bottom:843.868500px;}
.y19c{bottom:844.534500px;}
.y58{bottom:847.611000px;}
.yca{bottom:849.568500px;}
.y20{bottom:851.082000px;}
.y24c{bottom:852.834000px;}
.y14b{bottom:853.035000px;}
.y1bd{bottom:859.479000px;}
.y137{bottom:861.289500px;}
.y93{bottom:863.437500px;}
.y136{bottom:864.019500px;}
.y57{bottom:865.773000px;}
.y20f{bottom:867.501000px;}
.y56{bottom:868.503000px;}
.yc9{bottom:870.460500px;}
.y1f{bottom:871.561500px;}
.y24b{bottom:871.984500px;}
.y1bb{bottom:880.369500px;}
.y135{bottom:882.181500px;}
.y1e{bottom:883.360500px;}
.y91{bottom:884.329500px;}
.y134{bottom:884.910000px;}
.y1bc{bottom:885.795000px;}
.y14a{bottom:886.663500px;}
.y24a{bottom:888.511500px;}
.y55{bottom:889.393500px;}
.y92{bottom:889.753500px;}
.y249{bottom:891.135000px;}
.yc8{bottom:891.351000px;}
.y1d{bottom:899.500500px;}
.y1b9{bottom:901.261500px;}
.y133{bottom:903.072000px;}
.y8f{bottom:905.220000px;}
.y132{bottom:905.802000px;}
.y1ba{bottom:906.685500px;}
.y20e{bottom:907.402500px;}
.y54{bottom:910.285500px;}
.y90{bottom:910.645500px;}
.yc7{bottom:912.243000px;}
.y248{bottom:913.513500px;}
.y1c{bottom:915.640500px;}
.y1b8{bottom:922.153500px;}
.y131{bottom:923.964000px;}
.y8e{bottom:926.112000px;}
.y130{bottom:926.694000px;}
.y20d{bottom:926.901000px;}
.y247{bottom:929.436000px;}
.y53{bottom:931.177500px;}
.yc5{bottom:933.135000px;}
.y1b{bottom:936.120000px;}
.yc6{bottom:938.559000px;}
.y1b7{bottom:940.314000px;}
.y1b6{bottom:943.044000px;}
.y20c{bottom:946.399500px;}
.y8c{bottom:947.004000px;}
.y12f{bottom:947.584500px;}
.y246{bottom:948.586500px;}
.y149{bottom:949.338000px;}
.y52{bottom:952.068000px;}
.y8d{bottom:952.428000px;}
.yc4{bottom:954.025500px;}
.y1b5{bottom:961.206000px;}
.y1b3{bottom:963.936000px;}
.yeb{bottom:964.936500px;}
.y20b{bottom:965.898000px;}
.y245{bottom:967.737000px;}
.y8b{bottom:967.896000px;}
.y12d{bottom:968.476500px;}
.y1b4{bottom:969.361500px;}
.y51{bottom:972.960000px;}
.y12e{bottom:973.902000px;}
.yc3{bottom:974.917500px;}
.y1a{bottom:980.442000px;}
.y244{bottom:984.265500px;}
.y1b1{bottom:984.828000px;}
.y243{bottom:984.870000px;}
.y20a{bottom:985.398000px;}
.yea{bottom:985.828500px;}
.y242{bottom:986.887500px;}
.y8a{bottom:988.786500px;}
.y12c{bottom:989.368500px;}
.y1b2{bottom:990.252000px;}
.y50{bottom:993.852000px;}
.yc2{bottom:995.809500px;}
.y1df{bottom:999.276000px;}
.y19{bottom:1001.332500px;}
.y209{bottom:1004.896500px;}
.y241{bottom:1006.038000px;}
.ye9{bottom:1006.719000px;}
.y89{bottom:1009.678500px;}
.y12b{bottom:1010.260500px;}
.y4f{bottom:1014.742500px;}
.yc1{bottom:1016.700000px;}
.y1de{bottom:1020.168000px;}
.y208{bottom:1024.395000px;}
.y240{bottom:1025.188500px;}
.ye8{bottom:1027.611000px;}
.y1b0{bottom:1028.187000px;}
.y88{bottom:1030.570500px;}
.y12a{bottom:1031.151000px;}
.y19b{bottom:1033.393500px;}
.y4e{bottom:1035.634500px;}
.yc0{bottom:1037.592000px;}
.y18{bottom:1040.157000px;}
.y1dd{bottom:1041.058500px;}
.y23e{bottom:1041.397500px;}
.y23f{bottom:1041.717000px;}
.y23d{bottom:1042.321500px;}
.y207{bottom:1043.893500px;}
.y23c{bottom:1044.339000px;}
.y1af{bottom:1046.119500px;}
.ye6{bottom:1048.503000px;}
.y129{bottom:1052.043000px;}
.ye7{bottom:1053.927000px;}
.y87{bottom:1055.944500px;}
.y4d{bottom:1056.526500px;}
.ybf{bottom:1058.484000px;}
.y206{bottom:1063.392000px;}
.y23b{bottom:1063.489500px;}
.y1ae{bottom:1064.053500px;}
.ye5{bottom:1069.393500px;}
.y17{bottom:1071.495000px;}
.y128{bottom:1072.935000px;}
.y4c{bottom:1077.417000px;}
.y86{bottom:1080.376500px;}
.y23a{bottom:1082.640000px;}
.y205{bottom:1082.890500px;}
.ybe{bottom:1083.858000px;}
.y1ad{bottom:1089.432000px;}
.ye4{bottom:1090.285500px;}
.y127{bottom:1093.825500px;}
.y4b{bottom:1098.309000px;}
.y239{bottom:1101.790500px;}
.y204{bottom:1102.389000px;}
.y16{bottom:1102.831500px;}
.y1dc{bottom:1103.734500px;}
.y126{bottom:1114.717500px;}
.ye3{bottom:1115.661000px;}
.y19a{bottom:1116.471000px;}
.y4a{bottom:1119.201000px;}
.y238{bottom:1120.941000px;}
.y203{bottom:1121.889000px;}
.y1ac{bottom:1122.340500px;}
.y49{bottom:1137.363000px;}
.y48{bottom:1140.091500px;}
.y202{bottom:1141.387500px;}
.y1ab{bottom:1141.573500px;}
.y85{bottom:1145.517000px;}
.y47{bottom:1200.196500px;}
.h1f{height:21.407698px;}
.h31{height:22.944219px;}
.h2f{height:23.199188px;}
.hd{height:23.242762px;}
.h29{height:26.489615px;}
.h3a{height:27.533849px;}
.h45{height:30.732721px;}
.h44{height:30.758512px;}
.h46{height:30.855932px;}
.h47{height:31.199774px;}
.h27{height:32.006936px;}
.h38{height:32.122604px;}
.h7{height:33.821261px;}
.h2d{height:34.439848px;}
.h26{height:36.099381px;}
.h25{height:36.123592px;}
.h4b{height:37.701108px;}
.h4a{height:37.730582px;}
.h49{height:37.860583px;}
.h48{height:37.866837px;}
.h2e{height:38.087480px;}
.h30{height:38.087770px;}
.h3d{height:38.172011px;}
.h3b{height:38.224321px;}
.h1c{height:38.235814px;}
.h3c{height:38.255707px;}
.h2{height:39.457760px;}
.h15{height:41.062949px;}
.h1a{height:41.096760px;}
.h17{height:41.141913px;}
.h19{height:41.164474px;}
.h10{height:41.245164px;}
.h16{height:41.316762px;}
.h3e{height:42.246183px;}
.h11{height:42.380900px;}
.hb{height:42.840113px;}
.h9{height:43.217759px;}
.h3{height:43.815515px;}
.h28{height:44.310302px;}
.h8{height:45.094826px;}
.h39{height:45.889309px;}
.h1d{height:46.902645px;}
.h18{height:50.412043px;}
.h12{height:50.731891px;}
.h1e{height:50.980635px;}
.hc{height:51.861658px;}
.h37{height:53.461086px;}
.h3f{height:53.569601px;}
.h6{height:54.541601px;}
.h5{height:54.547601px;}
.hf{height:55.858762px;}
.h40{height:55.864762px;}
.h2c{height:56.157012px;}
.ha{height:56.368391px;}
.h43{height:57.776132px;}
.h2a{height:58.981760px;}
.h41{height:64.536113px;}
.h21{height:67.388414px;}
.he{height:75.456113px;}
.h14{height:75.811966px;}
.h4{height:77.792486px;}
.h23{height:78.619816px;}
.h34{height:86.551682px;}
.h32{height:125.539872px;}
.h33{height:142.954714px;}
.h36{height:149.452745px;}
.h35{height:160.109774px;}
.h20{height:276.604200px;}
.h42{height:305.560800px;}
.h22{height:341.865300px;}
.h24{height:358.505700px;}
.h1b{height:381.286050px;}
.h13{height:462.880575px;}
.h2b{height:821.433000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:244.083375px;}
.w6{width:410.440800px;}
.w3{width:440.459625px;}
.w5{width:460.357800px;}
.w7{width:581.782500px;}
.w8{width:745.534620px;}
.w4{width:748.991880px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd8{left:14.080504px;}
.x9e{left:15.400130px;}
.xbc{left:28.841609px;}
.xd7{left:48.478514px;}
.x9d{left:51.971625px;}
.x1{left:53.574000px;}
.xcd{left:71.750220px;}
.xa0{left:73.477115px;}
.x9f{left:76.150130px;}
.xd6{left:83.128514px;}
.x116{left:85.848000px;}
.x117{left:88.375500px;}
.x118{left:107.602500px;}
.x119{left:113.580000px;}
.x11a{left:139.812000px;}
.x11b{left:149.149500px;}
.xd9{left:154.444496px;}
.xed{left:156.425987px;}
.xbd{left:167.923125px;}
.xec{left:176.765984px;}
.xdd{left:184.505989px;}
.xea{left:233.376015px;}
.x9c{left:243.090609px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.xeb{left:251.736000px;}
.x7a{left:254.173500px;}
.x82{left:260.889000px;}
.xa8{left:262.116000px;}
.xa5{left:263.392500px;}
.xf4{left:265.762500px;}
.x103{left:266.917500px;}
.x3{left:269.914500px;}
.x101{left:272.745000px;}
.x38{left:273.838500px;}
.xa4{left:276.252000px;}
.xa1{left:279.471000px;}
.xf{left:281.479500px;}
.x39{left:283.995000px;}
.x9b{left:289.012500px;}
.xa3{left:290.583000px;}
.xc3{left:293.322000px;}
.xdb{left:294.393983px;}
.xb3{left:297.105000px;}
.xa2{left:301.453500px;}
.xac{left:303.096000px;}
.xfb{left:306.763500px;}
.xc4{left:308.266500px;}
.xad{left:309.522000px;}
.x7b{left:312.421500px;}
.xa9{left:315.630000px;}
.xf6{left:317.971500px;}
.x89{left:320.307000px;}
.xae{left:321.432000px;}
.xde{left:322.925987px;}
.xb4{left:325.210500px;}
.x2a{left:326.347500px;}
.xd2{left:327.387000px;}
.xdf{left:329.405998px;}
.xaf{left:331.575000px;}
.x2b{left:333.819000px;}
.x8a{left:335.251500px;}
.x67{left:338.052000px;}
.xfc{left:340.462500px;}
.xf5{left:342.484500px;}
.x68{left:344.859000px;}
.x100{left:346.300500px;}
.xe0{left:348.216011px;}
.xbe{left:349.273091px;}
.xc5{left:353.173500px;}
.xd0{left:355.509000px;}
.x55{left:356.605500px;}
.xe3{left:357.935982px;}
.xb7{left:359.077500px;}
.xe1{left:361.806007px;}
.x8d{left:364.380000px;}
.xb8{left:365.503500px;}
.xe7{left:366.935982px;}
.xc6{left:368.118000px;}
.x109{left:369.777000px;}
.x56{left:371.550000px;}
.x10c{left:375.969000px;}
.xb9{left:377.274000px;}
.x8e{left:379.324500px;}
.xe2{left:380.616020px;}
.xba{left:383.700000px;}
.x8f{left:386.728500px;}
.x10a{left:388.375500px;}
.x10d{left:390.913500px;}
.x60{left:393.355500px;}
.x74{left:394.669500px;}
.xe9{left:398.255536px;}
.x61{left:400.161000px;}
.x75{left:401.475000px;}
.xe8{left:402.665993px;}
.xe4{left:403.745995px;}
.x111{left:404.927818px;}
.xe6{left:407.345985px;}
.x10e{left:409.668000px;}
.x6d{left:412.071000px;}
.x7{left:413.430000px;}
.xc7{left:414.660000px;}
.x53{left:415.927500px;}
.xe5{left:418.415993px;}
.xc8{left:421.467000px;}
.x8{left:423.360000px;}
.x125{left:424.447500px;}
.x54{left:426.094500px;}
.x112{left:427.116000px;}
.xf7{left:429.318000px;}
.x126{left:430.425000px;}
.x6e{left:432.136500px;}
.x113{left:433.921500px;}
.x8b{left:436.329000px;}
.x104{left:437.391000px;}
.x6f{left:438.562500px;}
.x102{left:439.671000px;}
.x2e{left:440.686500px;}
.x108{left:443.950500px;}
.xd1{left:447.223500px;}
.x88{left:449.430000px;}
.xdc{left:450.992137px;}
.x2f{left:455.629500px;}
.xd4{left:459.866300px;}
.x110{left:462.491838px;}
.x44{left:465.868500px;}
.x62{left:468.166500px;}
.x10{left:471.081000px;}
.x5{left:472.189500px;}
.x7c{left:476.299500px;}
.x11{left:478.554000px;}
.x3c{left:480.442500px;}
.x6{left:482.355000px;}
.x9{left:483.796500px;}
.x45{left:485.689500px;}
.x11e{left:488.097000px;}
.x12{left:489.837000px;}
.x63{left:491.023500px;}
.x51{left:493.366500px;}
.x3d{left:495.387000px;}
.x7d{left:496.876500px;}
.x3e{left:499.198500px;}
.xa{left:500.830500px;}
.x52{left:503.529000px;}
.x105{left:508.074000px;}
.x97{left:512.421000px;}
.x3f{left:514.141500px;}
.x98{left:516.231000px;}
.x42{left:520.756500px;}
.x5e{left:525.049500px;}
.xaa{left:526.617000px;}
.x43{left:530.340000px;}
.x6b{left:535.063500px;}
.xfd{left:538.386000px;}
.x5f{left:539.994000px;}
.x120{left:541.267500px;}
.x30{left:542.388000px;}
.xab{left:545.197500px;}
.xb0{left:547.840500px;}
.x8c{left:549.532500px;}
.x106{left:552.666000px;}
.xff{left:554.064000px;}
.x36{left:555.153000px;}
.xb{left:557.419500px;}
.x17{left:558.888000px;}
.x80{left:561.669000px;}
.x99{left:564.205500px;}
.x18{left:566.359500px;}
.x37{left:570.097500px;}
.xc9{left:571.789500px;}
.x4d{left:573.327000px;}
.xc{left:574.452000px;}
.xc1{left:575.508000px;}
.x3a{left:576.885000px;}
.x121{left:578.029500px;}
.x9a{left:579.150000px;}
.xb5{left:581.868000px;}
.x3b{left:587.041500px;}
.x4e{left:588.270000px;}
.xc2{left:590.452500px;}
.xb6{left:592.033500px;}
.x11d{left:597.408000px;}
.xfe{left:598.710000px;}
.x95{left:599.959500px;}
.xb1{left:605.973000px;}
.x69{left:610.395000px;}
.xee{left:612.973500px;}
.x20{left:614.043000px;}
.xb2{left:616.114500px;}
.x6a{left:617.200500px;}
.x4a{left:620.319000px;}
.x10f{left:624.059800px;}
.x114{left:625.308000px;}
.x21{left:626.895000px;}
.xef{left:627.918000px;}
.xd5{left:630.073500px;}
.xf0{left:631.729500px;}
.x19{left:633.357000px;}
.x4b{left:635.263500px;}
.x122{left:636.850500px;}
.x4c{left:638.950500px;}
.x31{left:640.360500px;}
.x13{left:643.929000px;}
.x26{left:645.439500px;}
.xf1{left:646.672500px;}
.x1a{left:647.935500px;}
.x10b{left:649.813500px;}
.x27{left:652.911000px;}
.x14{left:654.018000px;}
.x32{left:655.305000px;}
.x92{left:656.655000px;}
.xbf{left:659.344500px;}
.x28{left:660.517500px;}
.x33{left:662.739000px;}
.x70{left:665.224500px;}
.x29{left:667.989000px;}
.x6c{left:669.664500px;}
.x83{left:672.522000px;}
.xc0{left:674.287500px;}
.x71{left:676.344000px;}
.x34{left:677.683500px;}
.x107{left:679.549500px;}
.x94{left:680.661000px;}
.x123{left:682.065000px;}
.xca{left:683.385000px;}
.x1b{left:687.103500px;}
.x72{left:688.876500px;}
.x93{left:690.291000px;}
.x64{left:692.014500px;}
.x73{left:695.302500px;}
.x1c{left:699.223500px;}
.x7e{left:703.974000px;}
.xcb{left:705.838500px;}
.x46{left:709.138500px;}
.x81{left:711.493500px;}
.x7f{left:714.138000px;}
.x84{left:717.802500px;}
.xd3{left:718.882500px;}
.xcc{left:720.783000px;}
.xa6{left:722.781000px;}
.x47{left:724.083000px;}
.x40{left:726.592500px;}
.x48{left:727.744500px;}
.x85{left:732.747000px;}
.xa7{left:735.126000px;}
.x86{left:736.534500px;}
.x41{left:738.040500px;}
.xbb{left:739.545000px;}
.x49{left:742.687500px;}
.x15{left:744.549000px;}
.x1d{left:745.665000px;}
.x96{left:746.862000px;}
.xf9{left:750.099000px;}
.x16{left:752.178000px;}
.x11f{left:754.246500px;}
.xf2{left:757.213500px;}
.x65{left:759.255000px;}
.x78{left:761.538000px;}
.x115{left:763.905000px;}
.xfa{left:765.042000px;}
.xd{left:766.092000px;}
.xf3{left:768.823500px;}
.x90{left:771.946500px;}
.x66{left:774.199500px;}
.x79{left:777.303000px;}
.x57{left:780.247500px;}
.x2c{left:783.145500px;}
.x91{left:786.891000px;}
.x22{left:790.837500px;}
.x2d{left:794.358000px;}
.x58{left:795.391500px;}
.x23{left:797.263500px;}
.x5c{left:799.366500px;}
.x5b{left:801.555000px;}
.x76{left:802.977000px;}
.x35{left:806.352000px;}
.x24{left:809.244000px;}
.x59{left:810.336000px;}
.x11c{left:812.817000px;}
.x5d{left:814.311000px;}
.x25{left:815.670000px;}
.x5a{left:817.837500px;}
.x4f{left:818.928000px;}
.x124{left:820.036500px;}
.xce{left:821.110500px;}
.xf8{left:823.674000px;}
.x1e{left:825.169500px;}
.x87{left:826.216500px;}
.xcf{left:827.439000px;}
.x77{left:831.295500px;}
.x1f{left:832.642500px;}
.x50{left:833.872500px;}
.xda{left:835.869000px;}
.xe{left:837.120000px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v3{vertical-align:-10.624000pt;}
.v5{vertical-align:-9.706667pt;}
.v7{vertical-align:-8.800000pt;}
.vc{vertical-align:-2.239136pt;}
.v9{vertical-align:-1.050667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.706667pt;}
.vb{vertical-align:13.605333pt;}
.v8{vertical-align:14.656000pt;}
.va{vertical-align:18.234667pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:28.992000pt;}
.ls51{letter-spacing:-0.423182pt;}
.ls39{letter-spacing:-0.352606pt;}
.ls55{letter-spacing:-0.262885pt;}
.ls3b{letter-spacing:-0.257922pt;}
.ls6a{letter-spacing:-0.246897pt;}
.ls3c{letter-spacing:-0.246198pt;}
.ls28{letter-spacing:-0.220632pt;}
.ls54{letter-spacing:-0.190498pt;}
.ls2e{letter-spacing:-0.160237pt;}
.ls6b{letter-spacing:-0.138860pt;}
.ls6e{letter-spacing:-0.133506pt;}
.ls3e{letter-spacing:-0.124349pt;}
.ls2f{letter-spacing:-0.114455pt;}
.ls4f{letter-spacing:-0.102308pt;}
.ls26{letter-spacing:-0.098415pt;}
.ls3d{letter-spacing:-0.081097pt;}
.ls27{letter-spacing:-0.073812pt;}
.ls53{letter-spacing:-0.070596pt;}
.ls6d{letter-spacing:-0.064433pt;}
.ls4d{letter-spacing:-0.063032pt;}
.ls6f{letter-spacing:-0.041433pt;}
.ls3f{letter-spacing:-0.025857pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.000125pt;}
.ls30{letter-spacing:0.000423pt;}
.ls7a{letter-spacing:0.000711pt;}
.ls33{letter-spacing:0.000751pt;}
.ls7c{letter-spacing:0.002525pt;}
.ls41{letter-spacing:0.002801pt;}
.ls4b{letter-spacing:0.003581pt;}
.ls73{letter-spacing:0.004267pt;}
.ls44{letter-spacing:0.004650pt;}
.ls48{letter-spacing:0.009300pt;}
.ls5b{letter-spacing:0.015009pt;}
.ls60{letter-spacing:0.018760pt;}
.ls1b{letter-spacing:0.035095pt;}
.ls5d{letter-spacing:0.052527pt;}
.ls46{letter-spacing:0.055797pt;}
.ls66{letter-spacing:0.056282pt;}
.ls64{letter-spacing:0.060034pt;}
.ls65{letter-spacing:0.063786pt;}
.ls50{letter-spacing:0.064432pt;}
.ls43{letter-spacing:0.065097pt;}
.ls47{letter-spacing:0.069747pt;}
.ls69{letter-spacing:0.073650pt;}
.ls49{letter-spacing:0.074396pt;}
.ls5f{letter-spacing:0.075038pt;}
.ls4a{letter-spacing:0.087628pt;}
.ls2a{letter-spacing:0.093305pt;}
.ls52{letter-spacing:0.097910pt;}
.ls5c{letter-spacing:0.101313pt;}
.ls2b{letter-spacing:0.111966pt;}
.ls68{letter-spacing:0.115059pt;}
.ls59{letter-spacing:0.116322pt;}
.ls6c{letter-spacing:0.123813pt;}
.ls67{letter-spacing:0.124268pt;}
.ls42{letter-spacing:0.141194pt;}
.ls4e{letter-spacing:0.153460pt;}
.ls63{letter-spacing:0.153838pt;}
.ls62{letter-spacing:0.157590pt;}
.ls57{letter-spacing:0.157598pt;}
.ls37{letter-spacing:0.168040pt;}
.ls61{letter-spacing:0.180092pt;}
.ls45{letter-spacing:0.181341pt;}
.ls5e{letter-spacing:0.202603pt;}
.ls5a{letter-spacing:0.202626pt;}
.ls56{letter-spacing:0.228892pt;}
.ls3a{letter-spacing:0.282085pt;}
.ls1a{letter-spacing:0.300816pt;}
.ls58{letter-spacing:0.367728pt;}
.ls1c{letter-spacing:0.401088pt;}
.ls38{letter-spacing:0.447791pt;}
.ls1d{letter-spacing:0.461251pt;}
.ls21{letter-spacing:0.482502pt;}
.ls20{letter-spacing:0.505570pt;}
.lsd{letter-spacing:0.628198pt;}
.ls10{letter-spacing:1.049548pt;}
.ls13{letter-spacing:1.861044pt;}
.ls76{letter-spacing:2.656533pt;}
.ls1{letter-spacing:2.657067pt;}
.ls7d{letter-spacing:2.661867pt;}
.ls36{letter-spacing:3.118133pt;}
.ls2c{letter-spacing:3.123467pt;}
.ls9{letter-spacing:3.158400pt;}
.lsa{letter-spacing:3.163733pt;}
.lsb{letter-spacing:3.323733pt;}
.ls0{letter-spacing:7.442933pt;}
.ls7{letter-spacing:10.626533pt;}
.ls7f{letter-spacing:11.689244pt;}
.ls71{letter-spacing:11.799983pt;}
.ls78{letter-spacing:11.854324pt;}
.ls70{letter-spacing:11.954133pt;}
.ls35{letter-spacing:11.955200pt;}
.ls7b{letter-spacing:11.956712pt;}
.ls74{letter-spacing:11.959467pt;}
.ls75{letter-spacing:12.063636pt;}
.lsc{letter-spacing:13.281404pt;}
.ls22{letter-spacing:13.282422pt;}
.ls18{letter-spacing:13.283467pt;}
.ls79{letter-spacing:13.550682pt;}
.ls32{letter-spacing:13.655404pt;}
.ls72{letter-spacing:14.608533pt;}
.ls1e{letter-spacing:14.613867pt;}
.ls7e{letter-spacing:14.810813pt;}
.ls77{letter-spacing:14.823467pt;}
.ls29{letter-spacing:15.515089pt;}
.ls31{letter-spacing:15.990400pt;}
.ls1f{letter-spacing:21.466082pt;}
.ls19{letter-spacing:23.485169pt;}
.ls17{letter-spacing:23.628992pt;}
.ls15{letter-spacing:24.253762pt;}
.ls16{letter-spacing:24.256956pt;}
.ls12{letter-spacing:24.707096pt;}
.ls14{letter-spacing:24.873548pt;}
.ls11{letter-spacing:26.934400pt;}
.lsf{letter-spacing:29.341762pt;}
.lse{letter-spacing:30.544015pt;}
.ls2{letter-spacing:51.035733pt;}
.ls3{letter-spacing:51.041067pt;}
.ls5{letter-spacing:55.766400pt;}
.ls4{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ls2d{letter-spacing:87.973434pt;}
.ls23{letter-spacing:121.547733pt;}
.ls24{letter-spacing:127.444013pt;}
.ls25{letter-spacing:144.073346pt;}
.ls40{letter-spacing:1001.438880pt;}
.ls34{letter-spacing:1345.783795pt;}
.ws7d{word-spacing:-87.572219pt;}
.ws9e{word-spacing:-23.910400pt;}
.ws63{word-spacing:-13.937816pt;}
.ws18{word-spacing:-13.283467pt;}
.wscb{word-spacing:-12.796721pt;}
.wsc9{word-spacing:-12.794977pt;}
.wsca{word-spacing:-12.794613pt;}
.ws64{word-spacing:-11.955200pt;}
.ws26{word-spacing:-10.626800pt;}
.wsc7{word-spacing:-10.554126pt;}
.wsc5{word-spacing:-10.431472pt;}
.wsc8{word-spacing:-10.430964pt;}
.wsc6{word-spacing:-10.430313pt;}
.ws7{word-spacing:-10.095467pt;}
.wsab{word-spacing:-9.486887pt;}
.ws3{word-spacing:-9.298400pt;}
.ws41{word-spacing:-2.922363pt;}
.ws40{word-spacing:-2.869229pt;}
.wsb{word-spacing:-2.444158pt;}
.wsa0{word-spacing:-2.343219pt;}
.ws44{word-spacing:-2.337890pt;}
.ws8e{word-spacing:-2.199757pt;}
.ws45{word-spacing:-2.178489pt;}
.ws95{word-spacing:-2.125355pt;}
.wse1{word-spacing:-2.056294pt;}
.wse2{word-spacing:-2.008474pt;}
.ws114{word-spacing:-1.960653pt;}
.ws0{word-spacing:-1.859680pt;}
.ws10e{word-spacing:-1.817190pt;}
.ws7b{word-spacing:-1.806551pt;}
.wsb4{word-spacing:-1.700284pt;}
.ws94{word-spacing:-1.647150pt;}
.ws93{word-spacing:-1.594016pt;}
.ws5c{word-spacing:-1.540882pt;}
.ws8d{word-spacing:-1.381481pt;}
.wsdf{word-spacing:-1.243341pt;}
.ws8b{word-spacing:-1.222079pt;}
.ws2e{word-spacing:-1.168945pt;}
.ws32{word-spacing:-1.062677pt;}
.ws127{word-spacing:-0.956416pt;}
.ws60{word-spacing:-0.956410pt;}
.ws124{word-spacing:-0.908595pt;}
.wsa9{word-spacing:-0.903276pt;}
.ws5f{word-spacing:-0.797008pt;}
.ws61{word-spacing:-0.743874pt;}
.ws128{word-spacing:-0.717312pt;}
.ws17{word-spacing:-0.637606pt;}
.ws10{word-spacing:-0.584473pt;}
.ws97{word-spacing:-0.531339pt;}
.ws16{word-spacing:-0.518199pt;}
.wsa3{word-spacing:-0.449572pt;}
.ws7f{word-spacing:-0.425071pt;}
.ws139{word-spacing:-0.382566pt;}
.ws7c{word-spacing:-0.371937pt;}
.wsb0{word-spacing:-0.360823pt;}
.ws12{word-spacing:-0.318803pt;}
.wsa5{word-spacing:-0.289185pt;}
.ws126{word-spacing:-0.286925pt;}
.ws15{word-spacing:-0.265669pt;}
.wsd3{word-spacing:-0.239104pt;}
.ws33{word-spacing:-0.212535pt;}
.wsf8{word-spacing:-0.191283pt;}
.wsa7{word-spacing:-0.173007pt;}
.wsa{word-spacing:-0.159402pt;}
.wsa1{word-spacing:-0.143462pt;}
.wsa8{word-spacing:-0.135162pt;}
.wsce{word-spacing:-0.119695pt;}
.ws1d{word-spacing:-0.106268pt;}
.wsd7{word-spacing:-0.095642pt;}
.ws85{word-spacing:-0.055983pt;}
.ws20{word-spacing:-0.053134pt;}
.wsd2{word-spacing:-0.047821pt;}
.wsae{word-spacing:-0.046503pt;}
.wsac{word-spacing:-0.046498pt;}
.ws8{word-spacing:-0.042507pt;}
.ws3d{word-spacing:-0.042078pt;}
.ws84{word-spacing:-0.037322pt;}
.ws4{word-spacing:-0.037194pt;}
.wscd{word-spacing:-0.027622pt;}
.ws115{word-spacing:-0.004966pt;}
.ws6c{word-spacing:-0.001525pt;}
.ws6{word-spacing:0.000000pt;}
.wsad{word-spacing:0.023252pt;}
.ws11b{word-spacing:0.047821pt;}
.ws2b{word-spacing:0.053134pt;}
.ws83{word-spacing:0.062950pt;}
.wsf3{word-spacing:0.095642pt;}
.wsc{word-spacing:0.106268pt;}
.ws82{word-spacing:0.108733pt;}
.wsa6{word-spacing:0.125053pt;}
.wsa4{word-spacing:0.136777pt;}
.wse3{word-spacing:0.143462pt;}
.wsd{word-spacing:0.159402pt;}
.wsba{word-spacing:0.191283pt;}
.ws11{word-spacing:0.212535pt;}
.wsd9{word-spacing:0.239104pt;}
.ws77{word-spacing:0.239887pt;}
.ws76{word-spacing:0.264491pt;}
.ws2d{word-spacing:0.265669pt;}
.wsda{word-spacing:0.286925pt;}
.wsaf{word-spacing:0.309277pt;}
.ws1b{word-spacing:0.318803pt;}
.ws112{word-spacing:0.334746pt;}
.wsf{word-spacing:0.371937pt;}
.ws5{word-spacing:0.375335pt;}
.wsdc{word-spacing:0.382566pt;}
.ws88{word-spacing:0.425071pt;}
.ws9d{word-spacing:0.430387pt;}
.ws49{word-spacing:0.478205pt;}
.wsfb{word-spacing:0.478208pt;}
.ws78{word-spacing:0.526509pt;}
.ws5a{word-spacing:0.584473pt;}
.ws12f{word-spacing:0.621670pt;}
.ws81{word-spacing:0.637606pt;}
.wsd4{word-spacing:0.669491pt;}
.ws57{word-spacing:0.690740pt;}
.ws1f{word-spacing:0.850142pt;}
.ws4d{word-spacing:0.903276pt;}
.ws13b{word-spacing:0.908595pt;}
.wsdb{word-spacing:1.052058pt;}
.ws27{word-spacing:1.062677pt;}
.ws56{word-spacing:1.115811pt;}
.ws53{word-spacing:1.168945pt;}
.ws102{word-spacing:1.195520pt;}
.wsb9{word-spacing:1.222079pt;}
.ws108{word-spacing:1.243341pt;}
.ws47{word-spacing:1.275213pt;}
.wsb6{word-spacing:1.328347pt;}
.wsb8{word-spacing:1.381481pt;}
.ws51{word-spacing:1.434614pt;}
.ws8f{word-spacing:1.482445pt;}
.wsc3{word-spacing:1.487748pt;}
.ws1c{word-spacing:1.540882pt;}
.ws10a{word-spacing:1.578086pt;}
.ws4a{word-spacing:1.594016pt;}
.ws12b{word-spacing:1.625907pt;}
.ws86{word-spacing:1.647150pt;}
.ws107{word-spacing:1.673728pt;}
.ws35{word-spacing:1.700284pt;}
.ws7a{word-spacing:1.753418pt;}
.ws50{word-spacing:1.806551pt;}
.wse8{word-spacing:1.817190pt;}
.ws2c{word-spacing:1.859685pt;}
.ws36{word-spacing:1.912819pt;}
.wsfe{word-spacing:1.960653pt;}
.ws38{word-spacing:2.019087pt;}
.ws5b{word-spacing:2.072221pt;}
.ws8c{word-spacing:2.125355pt;}
.ws106{word-spacing:2.151936pt;}
.ws75{word-spacing:2.231622pt;}
.ws134{word-spacing:2.247578pt;}
.ws79{word-spacing:2.284756pt;}
.ws21{word-spacing:2.337890pt;}
.wscc{word-spacing:2.343219pt;}
.ws22{word-spacing:2.391024pt;}
.wsb3{word-spacing:2.444158pt;}
.ws10f{word-spacing:2.534502pt;}
.ws54{word-spacing:2.550426pt;}
.ws9{word-spacing:2.550432pt;}
.ws100{word-spacing:2.582323pt;}
.ws91{word-spacing:2.709827pt;}
.wsb1{word-spacing:2.762961pt;}
.ws39{word-spacing:2.816095pt;}
.wse0{word-spacing:2.823765pt;}
.ws13a{word-spacing:2.860100pt;}
.wsef{word-spacing:2.861935pt;}
.ws13c{word-spacing:2.861952pt;}
.wsf1{word-spacing:2.863189pt;}
.ws122{word-spacing:2.863633pt;}
.ws12c{word-spacing:2.865587pt;}
.ws13d{word-spacing:2.866313pt;}
.wsfd{word-spacing:2.866620pt;}
.ws136{word-spacing:2.866987pt;}
.ws116{word-spacing:2.868983pt;}
.wsf4{word-spacing:2.869129pt;}
.ws2f{word-spacing:2.869229pt;}
.ws104{word-spacing:2.869248pt;}
.ws7e{word-spacing:2.917069pt;}
.ws30{word-spacing:2.922363pt;}
.ws34{word-spacing:2.975497pt;}
.ws73{word-spacing:2.975504pt;}
.ws117{word-spacing:3.012710pt;}
.ws96{word-spacing:3.028630pt;}
.ws90{word-spacing:3.081764pt;}
.ws28{word-spacing:3.100955pt;}
.ws13f{word-spacing:3.108352pt;}
.ws9b{word-spacing:3.134898pt;}
.wsd5{word-spacing:3.156173pt;}
.ws2a{word-spacing:3.188032pt;}
.ws69{word-spacing:3.241166pt;}
.ws52{word-spacing:3.294300pt;}
.ws99{word-spacing:3.347456pt;}
.ws43{word-spacing:3.400567pt;}
.ws48{word-spacing:3.453701pt;}
.wsb5{word-spacing:3.506835pt;}
.ws87{word-spacing:3.559969pt;}
.ws1a{word-spacing:3.613103pt;}
.wsd0{word-spacing:3.634381pt;}
.ws29{word-spacing:3.666237pt;}
.wsd1{word-spacing:3.682202pt;}
.ws12d{word-spacing:3.730022pt;}
.ws19{word-spacing:3.825664pt;}
.ws24{word-spacing:3.878772pt;}
.ws23{word-spacing:3.931906pt;}
.ws42{word-spacing:3.985040pt;}
.ws68{word-spacing:4.091308pt;}
.wsb2{word-spacing:4.144442pt;}
.ws31{word-spacing:4.197575pt;}
.ws9a{word-spacing:4.250709pt;}
.wsa2{word-spacing:4.303843pt;}
.ws92{word-spacing:4.410111pt;}
.wsd8{word-spacing:4.447334pt;}
.wsb7{word-spacing:4.463245pt;}
.ws80{word-spacing:4.569513pt;}
.wsfa{word-spacing:4.590797pt;}
.ws1e{word-spacing:4.622646pt;}
.ws67{word-spacing:4.728914pt;}
.ws3c{word-spacing:4.782048pt;}
.wsd6{word-spacing:4.925542pt;}
.wsde{word-spacing:5.021184pt;}
.ws37{word-spacing:5.100851pt;}
.wsc1{word-spacing:5.153985pt;}
.ws55{word-spacing:5.207119pt;}
.ws62{word-spacing:5.313387pt;}
.ws3a{word-spacing:5.366521pt;}
.ws13{word-spacing:5.472788pt;}
.ws4e{word-spacing:5.632190pt;}
.ws10c{word-spacing:5.786317pt;}
.ws8a{word-spacing:5.791591pt;}
.wsc0{word-spacing:5.839522pt;}
.ws89{word-spacing:5.844725pt;}
.wsbc{word-spacing:5.844855pt;}
.ws6b{word-spacing:5.847136pt;}
.wse{word-spacing:6.376064pt;}
.ws9c{word-spacing:6.429198pt;}
.ws46{word-spacing:6.588599pt;}
.ws3b{word-spacing:6.801135pt;}
.ws74{word-spacing:6.854269pt;}
.ws14{word-spacing:7.066804pt;}
.wscf{word-spacing:7.173072pt;}
.wsec{word-spacing:7.268762pt;}
.ws10b{word-spacing:7.316582pt;}
.ws119{word-spacing:7.364403pt;}
.ws4b{word-spacing:7.385607pt;}
.ws4c{word-spacing:7.491875pt;}
.wsee{word-spacing:8.033894pt;}
.ws65{word-spacing:8.129482pt;}
.wsf6{word-spacing:8.129536pt;}
.ws66{word-spacing:8.182615pt;}
.ws2{word-spacing:9.635877pt;}
.wsea{word-spacing:10.090189pt;}
.ws5e{word-spacing:10.201702pt;}
.ws5d{word-spacing:10.254836pt;}
.ws59{word-spacing:10.361104pt;}
.ws58{word-spacing:10.375331pt;}
.ws25{word-spacing:10.581783pt;}
.ws98{word-spacing:11.524813pt;}
.wsff{word-spacing:11.762332pt;}
.ws11e{word-spacing:11.763917pt;}
.ws103{word-spacing:11.798434pt;}
.ws110{word-spacing:11.811738pt;}
.ws130{word-spacing:11.898129pt;}
.ws13e{word-spacing:11.898240pt;}
.ws12e{word-spacing:11.900604pt;}
.wsf0{word-spacing:11.902225pt;}
.ws123{word-spacing:11.902242pt;}
.ws129{word-spacing:11.903275pt;}
.ws118{word-spacing:11.903684pt;}
.ws121{word-spacing:11.904167pt;}
.ws11a{word-spacing:11.905220pt;}
.ws133{word-spacing:11.905741pt;}
.wse7{word-spacing:11.906398pt;}
.wse9{word-spacing:11.907379pt;}
.ws105{word-spacing:11.917791pt;}
.ws11d{word-spacing:11.955200pt;}
.ws11c{word-spacing:12.003021pt;}
.ws131{word-spacing:12.098662pt;}
.wsf5{word-spacing:12.146483pt;}
.wsdd{word-spacing:13.094901pt;}
.ws4f{word-spacing:13.230333pt;}
.ws138{word-spacing:14.441882pt;}
.wsed{word-spacing:14.585344pt;}
.ws101{word-spacing:14.633165pt;}
.ws10d{word-spacing:14.770372pt;}
.ws137{word-spacing:14.771849pt;}
.ws12a{word-spacing:14.772215pt;}
.ws111{word-spacing:14.772565pt;}
.ws125{word-spacing:14.772582pt;}
.ws132{word-spacing:14.773666pt;}
.ws113{word-spacing:14.774502pt;}
.wsfc{word-spacing:14.774554pt;}
.ws11f{word-spacing:14.776243pt;}
.wsf2{word-spacing:14.776627pt;}
.wsf9{word-spacing:14.900413pt;}
.ws120{word-spacing:15.015731pt;}
.wsc2{word-spacing:16.380955pt;}
.ws3e{word-spacing:16.386289pt;}
.ws3f{word-spacing:16.418365pt;}
.ws109{word-spacing:18.889216pt;}
.ws72{word-spacing:19.255762pt;}
.ws1{word-spacing:19.715148pt;}
.ws135{word-spacing:21.901926pt;}
.wsf7{word-spacing:39.566898pt;}
.wseb{word-spacing:45.477581pt;}
.wsaa{word-spacing:113.222276pt;}
.ws6a{word-spacing:125.172060pt;}
.wsbd{word-spacing:138.573124pt;}
.wsbe{word-spacing:144.504037pt;}
.wsc4{word-spacing:163.013563pt;}
.wse4{word-spacing:202.712371pt;}
.wse5{word-spacing:236.186931pt;}
.wse6{word-spacing:243.981722pt;}
.ws71{word-spacing:245.478464pt;}
.wsbb{word-spacing:245.684060pt;}
.wsbf{word-spacing:247.816354pt;}
.ws6f{word-spacing:251.216922pt;}
.ws70{word-spacing:252.704670pt;}
.ws6e{word-spacing:302.172300pt;}
.ws6d{word-spacing:326.082540pt;}
.ws9f{word-spacing:331.251167pt;}
._1f{margin-left:-88.164713pt;}
._40{margin-left:-28.043842pt;}
._42{margin-left:-21.806285pt;}
._3b{margin-left:-18.540665pt;}
._20{margin-left:-12.290593pt;}
._26{margin-left:-11.284415pt;}
._1e{margin-left:-7.470631pt;}
._6{margin-left:-6.500080pt;}
._3{margin-left:-4.797974pt;}
._2{margin-left:-3.421811pt;}
._1{margin-left:-2.045648pt;}
._9{margin-left:-1.014870pt;}
._a{width:0.897947pt;}
._7{width:2.664159pt;}
._3f{width:4.293244pt;}
._41{width:5.881958pt;}
._3d{width:8.772060pt;}
._0{width:9.670336pt;}
._22{width:10.691006pt;}
._17{width:12.167655pt;}
._8{width:13.692621pt;}
._19{width:14.818944pt;}
._3e{width:15.738547pt;}
._b{width:16.630900pt;}
._d{width:18.017708pt;}
._4{width:19.332672pt;}
._16{width:20.536243pt;}
._10{width:21.625484pt;}
._f{width:22.555321pt;}
._11{width:24.016508pt;}
._15{width:25.610524pt;}
._23{width:27.156733pt;}
._14{width:28.532886pt;}
._5{width:29.648896pt;}
._21{width:30.551973pt;}
._e{width:33.474336pt;}
._c{width:35.865360pt;}
._18{width:39.425329pt;}
._3a{width:46.212485pt;}
._24{width:49.887491pt;}
._3c{width:54.993920pt;}
._35{width:120.965338pt;}
._2f{width:178.376832pt;}
._28{width:185.633757pt;}
._2d{width:192.684644pt;}
._2a{width:205.968111pt;}
._31{width:232.217805pt;}
._33{width:235.039232pt;}
._32{width:237.191168pt;}
._34{width:240.442982pt;}
._30{width:241.829786pt;}
._29{width:247.869488pt;}
._2e{width:250.007142pt;}
._2b{width:261.099821pt;}
._38{width:266.935706pt;}
._37{width:269.996237pt;}
._36{width:272.482918pt;}
._2c{width:274.383287pt;}
._39{width:280.086426pt;}
._1d{width:326.082540pt;}
._1c{width:339.865455pt;}
._27{width:344.046361pt;}
._1b{width:346.007740pt;}
._1a{width:354.084087pt;}
._12{width:1530.319811pt;}
._25{width:2181.530478pt;}
._13{width:2202.783811pt;}
.fs1b{font-size:28.013496pt;}
.fs1d{font-size:28.013867pt;}
.fs4{font-size:31.880533pt;}
.fs17{font-size:32.320960pt;}
.fs26{font-size:33.617600pt;}
.fs0{font-size:37.193600pt;}
.fs2c{font-size:37.519110pt;}
.fs2d{font-size:37.521454pt;}
.fs2b{font-size:37.523281pt;}
.fs2a{font-size:37.529599pt;}
.fs11{font-size:38.755733pt;}
.fs15{font-size:39.079040pt;}
.fs24{font-size:39.220266pt;}
.fs3{font-size:40.381867pt;}
.fs19{font-size:42.021333pt;}
.fs7{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fs14{font-size:44.075732pt;}
.fs2f{font-size:46.023787pt;}
.fs2e{font-size:46.025095pt;}
.fs31{font-size:46.031370pt;}
.fs30{font-size:46.036480pt;}
.fs27{font-size:46.497745pt;}
.fs1a{font-size:46.503113pt;}
.fs1c{font-size:46.503467pt;}
.fse{font-size:46.652932pt;}
.fs9{font-size:47.820800pt;}
.fsb{font-size:50.136028pt;}
.fsd{font-size:50.143679pt;}
.fs28{font-size:51.546132pt;}
.fs1{font-size:53.133867pt;}
.fs18{font-size:53.440000pt;}
.fs16{font-size:54.064640pt;}
.fs8{font-size:55.365867pt;}
.fs25{font-size:56.028798pt;}
.fsf{font-size:57.227653pt;}
.fsc{font-size:61.509600pt;}
.fs10{font-size:62.203360pt;}
.fs6{font-size:63.761067pt;}
.fs12{font-size:64.128000pt;}
.fs23{font-size:65.273600pt;}
.fs29{font-size:70.542078pt;}
.fsa{font-size:72.144000pt;}
.fs13{font-size:74.816000pt;}
.fs20{font-size:93.287465pt;}
.fs2{font-size:95.641600pt;}
.fs1e{font-size:135.309865pt;}
.fs1f{font-size:154.079997pt;}
.fs22{font-size:161.083730pt;}
.fs21{font-size:172.570129pt;}
.y0{bottom:0.000000pt;}
.y15c{bottom:0.227937pt;}
.y1c7{bottom:0.399219pt;}
.y151{bottom:1.005104pt;}
.y173{bottom:1.328837pt;}
.y101{bottom:1.650398pt;}
.y16b{bottom:5.398988pt;}
.y141{bottom:5.884403pt;}
.y1d0{bottom:5.966900pt;}
.y197{bottom:6.048400pt;}
.y107{bottom:6.295145pt;}
.y16c{bottom:12.006947pt;}
.y1c9{bottom:22.286920pt;}
.y109{bottom:24.547171pt;}
.y174{bottom:26.528400pt;}
.y140{bottom:28.576426pt;}
.y162{bottom:28.582956pt;}
.y46{bottom:40.818667pt;}
.y1d1{bottom:46.958892pt;}
.y1ce{bottom:47.534869pt;}
.y1cd{bottom:48.014849pt;}
.y146{bottom:54.864428pt;}
.y145{bottom:73.836413pt;}
.y102{bottom:74.227127pt;}
.y1cc{bottom:84.110845pt;}
.y18b{bottom:84.448526pt;}
.y193{bottom:84.688516pt;}
.y183{bottom:86.048420pt;}
.y44{bottom:88.640000pt;}
.y15{bottom:89.120000pt;}
.y184{bottom:91.728392pt;}
.y144{bottom:92.932393pt;}
.y45{bottom:93.461333pt;}
.y201{bottom:93.490667pt;}
.y279{bottom:94.188000pt;}
.y164{bottom:95.334974pt;}
.y179{bottom:99.248412pt;}
.y125{bottom:99.290667pt;}
.y189{bottom:99.488402pt;}
.y237{bottom:103.241333pt;}
.y199{bottom:103.450667pt;}
.y84{bottom:103.473333pt;}
.y17a{bottom:104.928384pt;}
.y14{bottom:105.020000pt;}
.y17d{bottom:106.288410pt;}
.y42{bottom:107.209333pt;}
.y1cf{bottom:107.438873pt;}
.y16a{bottom:109.894951pt;}
.y200{bottom:110.822667pt;}
.y273{bottom:111.210667pt;}
.y18a{bottom:111.328409pt;}
.y17e{bottom:111.968382pt;}
.y143{bottom:112.028436pt;}
.y43{bottom:112.032000pt;}
.y163{bottom:117.286935pt;}
.y1cb{bottom:117.806841pt;}
.y124{bottom:117.861333pt;}
.ybd{bottom:119.281333pt;}
.y236{bottom:120.264000pt;}
.y166{bottom:120.310389pt;}
.y13{bottom:120.920000pt;}
.y83{bottom:122.042667pt;}
.ye2{bottom:122.068000pt;}
.y171{bottom:123.388000pt;}
.y40{bottom:125.780000pt;}
.y1ff{bottom:128.154667pt;}
.y272{bottom:128.233333pt;}
.y41{bottom:130.602667pt;}
.y106{bottom:132.439176pt;}
.y142{bottom:135.712418pt;}
.y123{bottom:136.432000pt;}
.y12{bottom:136.820000pt;}
.y235{bottom:137.286667pt;}
.ybc{bottom:137.852000pt;}
.y168{bottom:138.902240pt;}
.y82{bottom:140.613333pt;}
.ye1{bottom:140.638667pt;}
.y194{bottom:141.887494pt;}
.y196{bottom:143.728514pt;}
.y3f{bottom:144.350667pt;}
.y271{bottom:145.256000pt;}
.yff{bottom:146.588000pt;}
.y1db{bottom:148.336000pt;}
.y175{bottom:152.688516pt;}
.y11{bottom:152.721333pt;}
.y234{bottom:154.309333pt;}
.y18c{bottom:154.447841pt;}
.y1fe{bottom:154.962667pt;}
.y122{bottom:155.001333pt;}
.y185{bottom:155.648518pt;}
.ybb{bottom:156.421333pt;}
.y1ca{bottom:156.782916pt;}
.y14f{bottom:157.333333pt;}
.y81{bottom:159.184000pt;}
.ye0{bottom:159.208000pt;}
.y186{bottom:161.328409pt;}
.y270{bottom:162.278667pt;}
.y3e{bottom:162.920000pt;}
.y17b{bottom:164.528522pt;}
.yfe{bottom:165.157333pt;}
.y10{bottom:168.621333pt;}
.y233{bottom:171.332000pt;}
.y121{bottom:173.572000pt;}
.y14d{bottom:174.429333pt;}
.yba{bottom:174.992000pt;}
.y1fd{bottom:176.280000pt;}
.y278{bottom:176.970667pt;}
.y80{bottom:177.753333pt;}
.ydf{bottom:177.778667pt;}
.y14e{bottom:178.769333pt;}
.y15a{bottom:179.064000pt;}
.y26f{bottom:179.301333pt;}
.y17c{bottom:181.248412pt;}
.y3d{bottom:181.490667pt;}
.y1aa{bottom:182.576000pt;}
.y1da{bottom:182.845333pt;}
.yfd{bottom:183.728000pt;}
.yf{bottom:184.521333pt;}
.y18d{bottom:185.488402pt;}
.y17f{bottom:185.728392pt;}
.y176{bottom:185.888386pt;}
.y232{bottom:188.354667pt;}
.y180{bottom:191.408405pt;}
.y14c{bottom:191.525333pt;}
.y120{bottom:192.142667pt;}
.yb8{bottom:193.562667pt;}
.y7f{bottom:196.324000pt;}
.yde{bottom:196.349333pt;}
.y103{bottom:196.591394pt;}
.y159{bottom:197.634667pt;}
.yb9{bottom:198.384000pt;}
.y3c{bottom:200.061333pt;}
.ye{bottom:200.422667pt;}
.y1d9{bottom:201.416000pt;}
.yfc{bottom:202.298667pt;}
.y231{bottom:205.377333pt;}
.yb7{bottom:209.705333pt;}
.y1fc{bottom:210.790667pt;}
.yb6{bottom:212.132000pt;}
.y170{bottom:212.324000pt;}
.y26e{bottom:213.346667pt;}
.y7e{bottom:214.894667pt;}
.ydd{bottom:214.920000pt;}
.y158{bottom:216.205333pt;}
.y1d8{bottom:217.560000pt;}
.y3b{bottom:218.632000pt;}
.y1a9{bottom:219.716000pt;}
.y1d6{bottom:219.986667pt;}
.yfb{bottom:220.869333pt;}
.y11f{bottom:221.678667pt;}
.y230{bottom:222.400000pt;}
.yd{bottom:224.293333pt;}
.y1d7{bottom:224.808000pt;}
.y165{bottom:227.270698pt;}
.y277{bottom:228.038667pt;}
.y1fb{bottom:228.122667pt;}
.y16f{bottom:229.420000pt;}
.y26d{bottom:230.369333pt;}
.yb4{bottom:230.702667pt;}
.y7d{bottom:233.464000pt;}
.ydc{bottom:233.489333pt;}
.y11d{bottom:234.298667pt;}
.yb5{bottom:235.525333pt;}
.y3a{bottom:237.201333pt;}
.y11e{bottom:238.156000pt;}
.y1a8{bottom:238.286667pt;}
.y1d5{bottom:238.557333pt;}
.y167{bottom:238.918204pt;}
.y22f{bottom:239.422667pt;}
.yfa{bottom:239.438667pt;}
.y195{bottom:239.486377pt;}
.yc{bottom:240.193333pt;}
.y1c8{bottom:245.102837pt;}
.y1fa{bottom:245.454667pt;}
.y16e{bottom:246.516000pt;}
.y11c{bottom:246.917333pt;}
.y26c{bottom:247.392000pt;}
.y16d{bottom:248.998988pt;}
.yb3{bottom:249.273333pt;}
.y11b{bottom:250.776000pt;}
.y7c{bottom:252.034667pt;}
.ydb{bottom:252.060000pt;}
.y169{bottom:252.246106pt;}
.y22e{bottom:254.114667pt;}
.y104{bottom:255.235785pt;}
.y39{bottom:255.772000pt;}
.yb{bottom:256.093333pt;}
.y22d{bottom:256.445333pt;}
.yf9{bottom:258.009333pt;}
.y177{bottom:261.408405pt;}
.y26b{bottom:264.414667pt;}
.y11a{bottom:266.001333pt;}
.y148{bottom:266.241333pt;}
.y161{bottom:266.453333pt;}
.yb2{bottom:267.842667pt;}
.y1d4{bottom:270.110667pt;}
.y7b{bottom:270.605333pt;}
.yda{bottom:270.630667pt;}
.y1f9{bottom:270.757333pt;}
.ya{bottom:271.994667pt;}
.y22c{bottom:273.468000pt;}
.y18e{bottom:273.728392pt;}
.y157{bottom:274.342667pt;}
.y187{bottom:274.528400pt;}
.yf8{bottom:276.580000pt;}
.y38{bottom:278.326667pt;}
.y188{bottom:280.208413pt;}
.y26a{bottom:281.437333pt;}
.y119{bottom:281.941333pt;}
.y147{bottom:283.337333pt;}
.y1d3{bottom:287.206667pt;}
.y9{bottom:287.894667pt;}
.y1f8{bottom:288.089333pt;}
.y7a{bottom:289.176000pt;}
.yd9{bottom:289.200000pt;}
.yb1{bottom:290.398667pt;}
.y22b{bottom:290.490667pt;}
.y156{bottom:292.912000pt;}
.yf7{bottom:295.149333pt;}
.y276{bottom:296.129333pt;}
.y118{bottom:297.882667pt;}
.y269{bottom:298.460000pt;}
.y178{bottom:302.688394pt;}
.y13f{bottom:303.274667pt;}
.y8{bottom:303.794667pt;}
.y1d2{bottom:304.302667pt;}
.y1f7{bottom:305.421333pt;}
.y105{bottom:307.077041pt;}
.y22a{bottom:307.513333pt;}
.y79{bottom:307.745333pt;}
.yd8{bottom:307.770667pt;}
.y1a7{bottom:312.568000pt;}
.yf6{bottom:313.720000pt;}
.y117{bottom:313.822667pt;}
.y268{bottom:315.482667pt;}
.y181{bottom:315.808389pt;}
.y7{bottom:319.696000pt;}
.y182{bottom:321.488402pt;}
.yb0{bottom:321.814667pt;}
.y78{bottom:323.889333pt;}
.y155{bottom:324.098667pt;}
.y229{bottom:324.536000pt;}
.y77{bottom:326.316000pt;}
.yd7{bottom:326.341333pt;}
.y1c6{bottom:326.896000pt;}
.y116{bottom:329.762667pt;}
.y1f6{bottom:330.724000pt;}
.y1a6{bottom:331.137333pt;}
.yf5{bottom:332.290667pt;}
.y267{bottom:332.506667pt;}
.y6{bottom:335.596000pt;}
.yaf{bottom:340.384000pt;}
.y153{bottom:341.193333pt;}
.y228{bottom:341.558667pt;}
.y190{bottom:342.048420pt;}
.y76{bottom:342.460000pt;}
.y75{bottom:344.886667pt;}
.yd6{bottom:344.910667pt;}
.y192{bottom:344.928384pt;}
.y154{bottom:345.533333pt;}
.y18f{bottom:347.728392pt;}
.y1f5{bottom:348.056000pt;}
.y37{bottom:348.737333pt;}
.y266{bottom:349.529333pt;}
.y191{bottom:349.888386pt;}
.yf4{bottom:350.860000pt;}
.y115{bottom:352.584000pt;}
.y198{bottom:355.328409pt;}
.y5{bottom:356.809333pt;}
.y152{bottom:358.289333pt;}
.y227{bottom:358.581333pt;}
.yad{bottom:358.954667pt;}
.y108{bottom:362.047171pt;}
.y74{bottom:363.456000pt;}
.yae{bottom:363.776000pt;}
.y265{bottom:366.552000pt;}
.y36{bottom:367.308000pt;}
.y1a5{bottom:368.278667pt;}
.yf3{bottom:369.430667pt;}
.y4{bottom:372.710667pt;}
.y1f4{bottom:373.358667pt;}
.y226{bottom:375.604000pt;}
.yd5{bottom:376.580000pt;}
.yac{bottom:377.525333pt;}
.y172{bottom:377.888449pt;}
.y150{bottom:380.884000pt;}
.y73{bottom:382.026667pt;}
.y114{bottom:382.098667pt;}
.y264{bottom:383.574667pt;}
.y1a4{bottom:386.848000pt;}
.yf2{bottom:388.001333pt;}
.y3{bottom:388.610667pt;}
.y225{bottom:392.628000pt;}
.yab{bottom:396.094667pt;}
.y1f3{bottom:398.661333pt;}
.y72{bottom:400.597333pt;}
.y35{bottom:401.818667pt;}
.y2{bottom:404.510667pt;}
.yf1{bottom:406.570667pt;}
.y224{bottom:409.650667pt;}
.yaa{bottom:414.665333pt;}
.y113{bottom:415.080000pt;}
.y275{bottom:415.288000pt;}
.y263{bottom:417.620000pt;}
.y71{bottom:419.166667pt;}
.y34{bottom:420.388000pt;}
.y1f2{bottom:423.962667pt;}
.y1a3{bottom:423.989333pt;}
.yf0{bottom:425.141333pt;}
.y1{bottom:425.725333pt;}
.y223{bottom:426.673333pt;}
.ya9{bottom:433.236000pt;}
.y112{bottom:433.650667pt;}
.y262{bottom:434.642667pt;}
.y70{bottom:437.737333pt;}
.y33{bottom:438.958667pt;}
.y1f1{bottom:441.296000pt;}
.y222{bottom:443.696000pt;}
.yef{bottom:443.712000pt;}
.y27d{bottom:447.461333pt;}
.y261{bottom:451.665333pt;}
.ya8{bottom:451.805333pt;}
.y111{bottom:452.221333pt;}
.y6f{bottom:456.308000pt;}
.y31{bottom:457.529333pt;}
.y1f0{bottom:458.628000pt;}
.yee{bottom:459.856000pt;}
.y221{bottom:460.718667pt;}
.yed{bottom:462.282667pt;}
.y32{bottom:462.350667pt;}
.y27c{bottom:464.484000pt;}
.y260{bottom:468.688000pt;}
.ya7{bottom:470.376000pt;}
.y110{bottom:470.790667pt;}
.y6e{bottom:474.877333pt;}
.y30{bottom:476.100000pt;}
.y220{bottom:477.741333pt;}
.y27b{bottom:481.506667pt;}
.y1ef{bottom:483.930667pt;}
.y25f{bottom:485.710667pt;}
.ya5{bottom:488.946667pt;}
.y10f{bottom:489.361333pt;}
.y1a2{bottom:490.713333pt;}
.y6d{bottom:491.021333pt;}
.y6c{bottom:493.448000pt;}
.ya6{bottom:493.768000pt;}
.yec{bottom:493.950667pt;}
.y2f{bottom:494.669333pt;}
.y21f{bottom:494.764000pt;}
.y1ee{bottom:501.262667pt;}
.y25e{bottom:502.733333pt;}
.ya4{bottom:507.516000pt;}
.y10e{bottom:507.932000pt;}
.y1a1{bottom:509.284000pt;}
.y21e{bottom:511.786667pt;}
.y6b{bottom:512.018667pt;}
.y2e{bottom:513.240000pt;}
.y1ed{bottom:518.594667pt;}
.y25d{bottom:519.756000pt;}
.ya3{bottom:526.086667pt;}
.y10d{bottom:526.501333pt;}
.y21d{bottom:528.809333pt;}
.y6a{bottom:530.589333pt;}
.y2d{bottom:531.810667pt;}
.y1ec{bottom:535.926667pt;}
.y25c{bottom:536.778667pt;}
.ya2{bottom:544.657333pt;}
.y10c{bottom:545.072000pt;}
.y21c{bottom:545.832000pt;}
.y1a0{bottom:546.424000pt;}
.y69{bottom:549.158667pt;}
.y2c{bottom:550.380000pt;}
.y25b{bottom:551.470667pt;}
.y1eb{bottom:553.258667pt;}
.y25a{bottom:553.801333pt;}
.ya1{bottom:560.801333pt;}
.y21b{bottom:562.854667pt;}
.ya0{bottom:563.228000pt;}
.y10b{bottom:563.642667pt;}
.y19f{bottom:564.994667pt;}
.y68{bottom:565.302667pt;}
.y2b{bottom:566.524000pt;}
.y67{bottom:567.729333pt;}
.y27a{bottom:568.493333pt;}
.y2a{bottom:568.950667pt;}
.y1ea{bottom:570.590667pt;}
.y259{bottom:570.824000pt;}
.yd4{bottom:578.754667pt;}
.y21a{bottom:579.877333pt;}
.y9f{bottom:581.797333pt;}
.y66{bottom:586.300000pt;}
.y29{bottom:587.521333pt;}
.y258{bottom:587.846667pt;}
.y10a{bottom:595.312000pt;}
.y1e9{bottom:595.893333pt;}
.y219{bottom:596.900000pt;}
.yd3{bottom:597.324000pt;}
.y9e{bottom:600.368000pt;}
.y160{bottom:600.533333pt;}
.y65{bottom:602.442667pt;}
.y257{bottom:602.538667pt;}
.y64{bottom:604.869333pt;}
.y28{bottom:606.090667pt;}
.y1e8{bottom:613.689333pt;}
.y218{bottom:613.922667pt;}
.y100{bottom:615.248000pt;}
.y15f{bottom:615.298667pt;}
.y1c5{bottom:615.418667pt;}
.y15e{bottom:617.629333pt;}
.y9d{bottom:618.938667pt;}
.y256{bottom:621.892000pt;}
.y63{bottom:623.440000pt;}
.y27{bottom:624.661333pt;}
.yd2{bottom:625.180000pt;}
.y217{bottom:630.945333pt;}
.y1e7{bottom:631.486667pt;}
.y1c4{bottom:633.989333pt;}
.y15d{bottom:634.725333pt;}
.y255{bottom:636.584000pt;}
.y9c{bottom:637.508000pt;}
.y254{bottom:638.914667pt;}
.y26{bottom:640.805333pt;}
.y62{bottom:642.010667pt;}
.y25{bottom:643.232000pt;}
.yd1{bottom:643.750667pt;}
.y216{bottom:647.968000pt;}
.y1e6{bottom:649.282667pt;}
.y1c3{bottom:652.558667pt;}
.y15b{bottom:654.662667pt;}
.y253{bottom:655.937333pt;}
.y9b{bottom:656.078667pt;}
.y13e{bottom:656.596000pt;}
.y61{bottom:658.153333pt;}
.y60{bottom:660.580000pt;}
.y24{bottom:661.801333pt;}
.yd0{bottom:662.320000pt;}
.y215{bottom:664.990667pt;}
.y1e5{bottom:667.080000pt;}
.y1c2{bottom:671.129333pt;}
.y252{bottom:672.961333pt;}
.y9a{bottom:674.649333pt;}
.y13d{bottom:675.165333pt;}
.y5f{bottom:676.724000pt;}
.y5e{bottom:679.150667pt;}
.y23{bottom:680.372000pt;}
.ycf{bottom:680.890667pt;}
.y214{bottom:682.013333pt;}
.y1e4{bottom:684.876000pt;}
.y251{bottom:687.652000pt;}
.y1c1{bottom:689.700000pt;}
.y250{bottom:689.984000pt;}
.y99{bottom:690.792000pt;}
.y13c{bottom:691.309333pt;}
.y98{bottom:693.218667pt;}
.y13b{bottom:693.736000pt;}
.y5d{bottom:695.294667pt;}
.y5c{bottom:697.721333pt;}
.y213{bottom:699.036000pt;}
.yce{bottom:699.461333pt;}
.y1e2{bottom:702.672000pt;}
.y274{bottom:704.674667pt;}
.y22{bottom:706.912000pt;}
.y24f{bottom:707.006667pt;}
.y1e3{bottom:707.012000pt;}
.y1c0{bottom:708.270667pt;}
.y97{bottom:709.362667pt;}
.y96{bottom:711.789333pt;}
.y13a{bottom:712.306667pt;}
.y5b{bottom:713.865333pt;}
.ycd{bottom:715.605333pt;}
.y212{bottom:716.058667pt;}
.y5a{bottom:716.290667pt;}
.ycc{bottom:718.030667pt;}
.y1e1{bottom:720.469333pt;}
.y19e{bottom:721.113333pt;}
.y24e{bottom:724.029333pt;}
.y1bf{bottom:726.840000pt;}
.y95{bottom:730.360000pt;}
.y139{bottom:730.876000pt;}
.y211{bottom:733.082667pt;}
.y59{bottom:734.861333pt;}
.ycb{bottom:736.601333pt;}
.y1e0{bottom:738.265333pt;}
.y19d{bottom:739.684000pt;}
.y24d{bottom:741.052000pt;}
.y21{bottom:742.170667pt;}
.y1be{bottom:745.410667pt;}
.y94{bottom:748.929333pt;}
.y138{bottom:749.446667pt;}
.y210{bottom:750.105333pt;}
.y19c{bottom:750.697333pt;}
.y58{bottom:753.432000pt;}
.yca{bottom:755.172000pt;}
.y20{bottom:756.517333pt;}
.y24c{bottom:758.074667pt;}
.y14b{bottom:758.253333pt;}
.y1bd{bottom:763.981333pt;}
.y137{bottom:765.590667pt;}
.y93{bottom:767.500000pt;}
.y136{bottom:768.017333pt;}
.y57{bottom:769.576000pt;}
.y20f{bottom:771.112000pt;}
.y56{bottom:772.002667pt;}
.yc9{bottom:773.742667pt;}
.y1f{bottom:774.721333pt;}
.y24b{bottom:775.097333pt;}
.y1bb{bottom:782.550667pt;}
.y135{bottom:784.161333pt;}
.y1e{bottom:785.209333pt;}
.y91{bottom:786.070667pt;}
.y134{bottom:786.586667pt;}
.y1bc{bottom:787.373333pt;}
.y14a{bottom:788.145333pt;}
.y24a{bottom:789.788000pt;}
.y55{bottom:790.572000pt;}
.y92{bottom:790.892000pt;}
.y249{bottom:792.120000pt;}
.yc8{bottom:792.312000pt;}
.y1d{bottom:799.556000pt;}
.y1b9{bottom:801.121333pt;}
.y133{bottom:802.730667pt;}
.y8f{bottom:804.640000pt;}
.y132{bottom:805.157333pt;}
.y1ba{bottom:805.942667pt;}
.y20e{bottom:806.580000pt;}
.y54{bottom:809.142667pt;}
.y90{bottom:809.462667pt;}
.yc7{bottom:810.882667pt;}
.y248{bottom:812.012000pt;}
.y1c{bottom:813.902667pt;}
.y1b8{bottom:819.692000pt;}
.y131{bottom:821.301333pt;}
.y8e{bottom:823.210667pt;}
.y130{bottom:823.728000pt;}
.y20d{bottom:823.912000pt;}
.y247{bottom:826.165333pt;}
.y53{bottom:827.713333pt;}
.yc5{bottom:829.453333pt;}
.y1b{bottom:832.106667pt;}
.yc6{bottom:834.274667pt;}
.y1b7{bottom:835.834667pt;}
.y1b6{bottom:838.261333pt;}
.y20c{bottom:841.244000pt;}
.y8c{bottom:841.781333pt;}
.y12f{bottom:842.297333pt;}
.y246{bottom:843.188000pt;}
.y149{bottom:843.856000pt;}
.y52{bottom:846.282667pt;}
.y8d{bottom:846.602667pt;}
.yc4{bottom:848.022667pt;}
.y1b5{bottom:854.405333pt;}
.y1b3{bottom:856.832000pt;}
.yeb{bottom:857.721333pt;}
.y20b{bottom:858.576000pt;}
.y245{bottom:860.210667pt;}
.y8b{bottom:860.352000pt;}
.y12d{bottom:860.868000pt;}
.y1b4{bottom:861.654667pt;}
.y51{bottom:864.853333pt;}
.y12e{bottom:865.690667pt;}
.yc3{bottom:866.593333pt;}
.y1a{bottom:871.504000pt;}
.y244{bottom:874.902667pt;}
.y1b1{bottom:875.402667pt;}
.y243{bottom:875.440000pt;}
.y20a{bottom:875.909333pt;}
.yea{bottom:876.292000pt;}
.y242{bottom:877.233333pt;}
.y8a{bottom:878.921333pt;}
.y12c{bottom:879.438667pt;}
.y1b2{bottom:880.224000pt;}
.y50{bottom:883.424000pt;}
.yc2{bottom:885.164000pt;}
.y1df{bottom:888.245333pt;}
.y19{bottom:890.073333pt;}
.y209{bottom:893.241333pt;}
.y241{bottom:894.256000pt;}
.ye9{bottom:894.861333pt;}
.y89{bottom:897.492000pt;}
.y12b{bottom:898.009333pt;}
.y4f{bottom:901.993333pt;}
.yc1{bottom:903.733333pt;}
.y1de{bottom:906.816000pt;}
.y208{bottom:910.573333pt;}
.y240{bottom:911.278667pt;}
.ye8{bottom:913.432000pt;}
.y1b0{bottom:913.944000pt;}
.y88{bottom:916.062667pt;}
.y12a{bottom:916.578667pt;}
.y19b{bottom:918.572000pt;}
.y4e{bottom:920.564000pt;}
.yc0{bottom:922.304000pt;}
.y18{bottom:924.584000pt;}
.y1dd{bottom:925.385333pt;}
.y23e{bottom:925.686667pt;}
.y23f{bottom:925.970667pt;}
.y23d{bottom:926.508000pt;}
.y207{bottom:927.905333pt;}
.y23c{bottom:928.301333pt;}
.y1af{bottom:929.884000pt;}
.ye6{bottom:932.002667pt;}
.y129{bottom:935.149333pt;}
.ye7{bottom:936.824000pt;}
.y87{bottom:938.617333pt;}
.y4d{bottom:939.134667pt;}
.ybf{bottom:940.874667pt;}
.y206{bottom:945.237333pt;}
.y23b{bottom:945.324000pt;}
.y1ae{bottom:945.825333pt;}
.ye5{bottom:950.572000pt;}
.y17{bottom:952.440000pt;}
.y128{bottom:953.720000pt;}
.y4c{bottom:957.704000pt;}
.y86{bottom:960.334667pt;}
.y23a{bottom:962.346667pt;}
.y205{bottom:962.569333pt;}
.ybe{bottom:963.429333pt;}
.y1ad{bottom:968.384000pt;}
.ye4{bottom:969.142667pt;}
.y127{bottom:972.289333pt;}
.y4b{bottom:976.274667pt;}
.y239{bottom:979.369333pt;}
.y204{bottom:979.901333pt;}
.y16{bottom:980.294667pt;}
.y1dc{bottom:981.097333pt;}
.y126{bottom:990.860000pt;}
.ye3{bottom:991.698667pt;}
.y19a{bottom:992.418667pt;}
.y4a{bottom:994.845333pt;}
.y238{bottom:996.392000pt;}
.y203{bottom:997.234667pt;}
.y1ac{bottom:997.636000pt;}
.y49{bottom:1010.989333pt;}
.y48{bottom:1013.414667pt;}
.y202{bottom:1014.566667pt;}
.y1ab{bottom:1014.732000pt;}
.y85{bottom:1018.237333pt;}
.y47{bottom:1066.841333pt;}
.h1f{height:19.029065pt;}
.h31{height:20.394861pt;}
.h2f{height:20.621500pt;}
.hd{height:20.660233pt;}
.h29{height:23.546324pt;}
.h3a{height:24.474532pt;}
.h45{height:27.317974pt;}
.h44{height:27.340899pt;}
.h46{height:27.427495pt;}
.h47{height:27.733133pt;}
.h27{height:28.450610pt;}
.h38{height:28.553426pt;}
.h7{height:30.063343pt;}
.h2d{height:30.613198pt;}
.h26{height:32.088338pt;}
.h25{height:32.109860pt;}
.h4b{height:33.512096pt;}
.h4a{height:33.538295pt;}
.h49{height:33.653852pt;}
.h48{height:33.659411pt;}
.h2e{height:33.855538pt;}
.h30{height:33.855795pt;}
.h3d{height:33.930676pt;}
.h3b{height:33.977174pt;}
.h1c{height:33.987390pt;}
.h3c{height:34.005072pt;}
.h2{height:35.073565pt;}
.h15{height:36.500399pt;}
.h1a{height:36.530453pt;}
.h17{height:36.570589pt;}
.h19{height:36.590644pt;}
.h10{height:36.662368pt;}
.h16{height:36.726011pt;}
.h3e{height:37.552163pt;}
.h11{height:37.671911pt;}
.hb{height:38.080100pt;}
.h9{height:38.415786pt;}
.h3{height:38.947124pt;}
.h28{height:39.386935pt;}
.h8{height:40.084290pt;}
.h39{height:40.790497pt;}
.h1d{height:41.691240pt;}
.h18{height:44.810705pt;}
.h12{height:45.095014pt;}
.h1e{height:45.316120pt;}
.hc{height:46.099251pt;}
.h37{height:47.520966pt;}
.h3f{height:47.617423pt;}
.h6{height:48.481423pt;}
.h5{height:48.486756pt;}
.hf{height:49.652233pt;}
.h40{height:49.657566pt;}
.h2c{height:49.917344pt;}
.ha{height:50.105236pt;}
.h43{height:51.356561pt;}
.h2a{height:52.428231pt;}
.h41{height:57.365434pt;}
.h21{height:59.900812pt;}
.he{height:67.072100pt;}
.h14{height:67.388414pt;}
.h4{height:69.148877pt;}
.h23{height:69.884281pt;}
.h34{height:76.934829pt;}
.h32{height:111.590997pt;}
.h33{height:127.070857pt;}
.h36{height:132.846885pt;}
.h35{height:142.319799pt;}
.h20{height:245.870400pt;}
.h42{height:271.609600pt;}
.h22{height:303.880267pt;}
.h24{height:318.671733pt;}
.h1b{height:338.920933pt;}
.h13{height:411.449400pt;}
.h2b{height:730.162667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:216.963000pt;}
.w6{width:364.836267pt;}
.w3{width:391.519667pt;}
.w5{width:409.206933pt;}
.w7{width:517.140000pt;}
.w8{width:662.697440pt;}
.w4{width:665.770560pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd8{left:12.516003pt;}
.x9e{left:13.689004pt;}
.xbc{left:25.636986pt;}
.xd7{left:43.092013pt;}
.x9d{left:46.197000pt;}
.x1{left:47.621333pt;}
.xcd{left:63.777973pt;}
.xa0{left:65.312991pt;}
.x9f{left:67.689004pt;}
.xd6{left:73.892013pt;}
.x116{left:76.309333pt;}
.x117{left:78.556000pt;}
.x118{left:95.646667pt;}
.x119{left:100.960000pt;}
.x11a{left:124.277333pt;}
.x11b{left:132.577333pt;}
.xd9{left:137.283997pt;}
.xed{left:139.045322pt;}
.xbd{left:149.265000pt;}
.xec{left:157.125319pt;}
.xdd{left:164.005324pt;}
.xea{left:207.445346pt;}
.x9c{left:216.080541pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.xeb{left:223.765333pt;}
.x7a{left:225.932000pt;}
.x82{left:231.901333pt;}
.xa8{left:232.992000pt;}
.xa5{left:234.126667pt;}
.xf4{left:236.233333pt;}
.x103{left:237.260000pt;}
.x3{left:239.924000pt;}
.x101{left:242.440000pt;}
.x38{left:243.412000pt;}
.xa4{left:245.557333pt;}
.xa1{left:248.418667pt;}
.xf{left:250.204000pt;}
.x39{left:252.440000pt;}
.x9b{left:256.900000pt;}
.xa3{left:258.296000pt;}
.xc3{left:260.730667pt;}
.xdb{left:261.683541pt;}
.xb3{left:264.093333pt;}
.xa2{left:267.958667pt;}
.xac{left:269.418667pt;}
.xfb{left:272.678667pt;}
.xc4{left:274.014667pt;}
.xad{left:275.130667pt;}
.x7b{left:277.708000pt;}
.xa9{left:280.560000pt;}
.xf6{left:282.641333pt;}
.x89{left:284.717333pt;}
.xae{left:285.717333pt;}
.xde{left:287.045322pt;}
.xb4{left:289.076000pt;}
.x2a{left:290.086667pt;}
.xd2{left:291.010667pt;}
.xdf{left:292.805332pt;}
.xaf{left:294.733333pt;}
.x2b{left:296.728000pt;}
.x8a{left:298.001333pt;}
.x67{left:300.490667pt;}
.xfc{left:302.633333pt;}
.xf5{left:304.430667pt;}
.x68{left:306.541333pt;}
.x100{left:307.822667pt;}
.xe0{left:309.525343pt;}
.xbe{left:310.464970pt;}
.xc5{left:313.932000pt;}
.xd0{left:316.008000pt;}
.x55{left:316.982667pt;}
.xe3{left:318.165317pt;}
.xb7{left:319.180000pt;}
.xe1{left:321.605340pt;}
.x8d{left:323.893333pt;}
.xb8{left:324.892000pt;}
.xe7{left:326.165317pt;}
.xc6{left:327.216000pt;}
.x109{left:328.690667pt;}
.x56{left:330.266667pt;}
.x10c{left:334.194667pt;}
.xb9{left:335.354667pt;}
.x8e{left:337.177333pt;}
.xe2{left:338.325351pt;}
.xba{left:341.066667pt;}
.x8f{left:343.758667pt;}
.x10a{left:345.222667pt;}
.x10d{left:347.478667pt;}
.x60{left:349.649333pt;}
.x74{left:350.817333pt;}
.xe9{left:354.004921pt;}
.x61{left:355.698667pt;}
.x75{left:356.866667pt;}
.xe8{left:357.925327pt;}
.xe4{left:358.885328pt;}
.x111{left:359.935838pt;}
.xe6{left:362.085320pt;}
.x10e{left:364.149333pt;}
.x6d{left:366.285333pt;}
.x7{left:367.493333pt;}
.xc7{left:368.586667pt;}
.x53{left:369.713333pt;}
.xe5{left:371.925327pt;}
.xc8{left:374.637333pt;}
.x8{left:376.320000pt;}
.x125{left:377.286667pt;}
.x54{left:378.750667pt;}
.x112{left:379.658667pt;}
.xf7{left:381.616000pt;}
.x126{left:382.600000pt;}
.x6e{left:384.121333pt;}
.x113{left:385.708000pt;}
.x8b{left:387.848000pt;}
.x104{left:388.792000pt;}
.x6f{left:389.833333pt;}
.x102{left:390.818667pt;}
.x2e{left:391.721333pt;}
.x108{left:394.622667pt;}
.xd1{left:397.532000pt;}
.x88{left:399.493333pt;}
.xdc{left:400.881900pt;}
.x2f{left:405.004000pt;}
.xd4{left:408.770044pt;}
.x110{left:411.103856pt;}
.x44{left:414.105333pt;}
.x62{left:416.148000pt;}
.x10{left:418.738667pt;}
.x5{left:419.724000pt;}
.x7c{left:423.377333pt;}
.x11{left:425.381333pt;}
.x3c{left:427.060000pt;}
.x6{left:428.760000pt;}
.x9{left:430.041333pt;}
.x45{left:431.724000pt;}
.x11e{left:433.864000pt;}
.x12{left:435.410667pt;}
.x63{left:436.465333pt;}
.x51{left:438.548000pt;}
.x3d{left:440.344000pt;}
.x7d{left:441.668000pt;}
.x3e{left:443.732000pt;}
.xa{left:445.182667pt;}
.x52{left:447.581333pt;}
.x105{left:451.621333pt;}
.x97{left:455.485333pt;}
.x3f{left:457.014667pt;}
.x98{left:458.872000pt;}
.x42{left:462.894667pt;}
.x5e{left:466.710667pt;}
.xaa{left:468.104000pt;}
.x43{left:471.413333pt;}
.x6b{left:475.612000pt;}
.xfd{left:478.565333pt;}
.x5f{left:479.994667pt;}
.x120{left:481.126667pt;}
.x30{left:482.122667pt;}
.xab{left:484.620000pt;}
.xb0{left:486.969333pt;}
.x8c{left:488.473333pt;}
.x106{left:491.258667pt;}
.xff{left:492.501333pt;}
.x36{left:493.469333pt;}
.xb{left:495.484000pt;}
.x17{left:496.789333pt;}
.x80{left:499.261333pt;}
.x99{left:501.516000pt;}
.x18{left:503.430667pt;}
.x37{left:506.753333pt;}
.xc9{left:508.257333pt;}
.x4d{left:509.624000pt;}
.xc{left:510.624000pt;}
.xc1{left:511.562667pt;}
.x3a{left:512.786667pt;}
.x121{left:513.804000pt;}
.x9a{left:514.800000pt;}
.xb5{left:517.216000pt;}
.x3b{left:521.814667pt;}
.x4e{left:522.906667pt;}
.xc2{left:524.846667pt;}
.xb6{left:526.252000pt;}
.x11d{left:531.029333pt;}
.xfe{left:532.186667pt;}
.x95{left:533.297333pt;}
.xb1{left:538.642667pt;}
.x69{left:542.573333pt;}
.xee{left:544.865333pt;}
.x20{left:545.816000pt;}
.xb2{left:547.657333pt;}
.x6a{left:548.622667pt;}
.x4a{left:551.394667pt;}
.x10f{left:554.719822pt;}
.x114{left:555.829333pt;}
.x21{left:557.240000pt;}
.xef{left:558.149333pt;}
.xd5{left:560.065333pt;}
.xf0{left:561.537333pt;}
.x19{left:562.984000pt;}
.x4b{left:564.678667pt;}
.x122{left:566.089333pt;}
.x4c{left:567.956000pt;}
.x31{left:569.209333pt;}
.x13{left:572.381333pt;}
.x26{left:573.724000pt;}
.xf1{left:574.820000pt;}
.x1a{left:575.942667pt;}
.x10b{left:577.612000pt;}
.x27{left:580.365333pt;}
.x14{left:581.349333pt;}
.x32{left:582.493333pt;}
.x92{left:583.693333pt;}
.xbf{left:586.084000pt;}
.x28{left:587.126667pt;}
.x33{left:589.101333pt;}
.x70{left:591.310667pt;}
.x29{left:593.768000pt;}
.x6c{left:595.257333pt;}
.x83{left:597.797333pt;}
.xc0{left:599.366667pt;}
.x71{left:601.194667pt;}
.x34{left:602.385333pt;}
.x107{left:604.044000pt;}
.x94{left:605.032000pt;}
.x123{left:606.280000pt;}
.xca{left:607.453333pt;}
.x1b{left:610.758667pt;}
.x72{left:612.334667pt;}
.x93{left:613.592000pt;}
.x64{left:615.124000pt;}
.x73{left:618.046667pt;}
.x1c{left:621.532000pt;}
.x7e{left:625.754667pt;}
.xcb{left:627.412000pt;}
.x46{left:630.345333pt;}
.x81{left:632.438667pt;}
.x7f{left:634.789333pt;}
.x84{left:638.046667pt;}
.xd3{left:639.006667pt;}
.xcc{left:640.696000pt;}
.xa6{left:642.472000pt;}
.x47{left:643.629333pt;}
.x40{left:645.860000pt;}
.x48{left:646.884000pt;}
.x85{left:651.330667pt;}
.xa7{left:653.445333pt;}
.x86{left:654.697333pt;}
.x41{left:656.036000pt;}
.xbb{left:657.373333pt;}
.x49{left:660.166667pt;}
.x15{left:661.821333pt;}
.x1d{left:662.813333pt;}
.x96{left:663.877333pt;}
.xf9{left:666.754667pt;}
.x16{left:668.602667pt;}
.x11f{left:670.441333pt;}
.xf2{left:673.078667pt;}
.x65{left:674.893333pt;}
.x78{left:676.922667pt;}
.x115{left:679.026667pt;}
.xfa{left:680.037333pt;}
.xd{left:680.970667pt;}
.xf3{left:683.398667pt;}
.x90{left:686.174667pt;}
.x66{left:688.177333pt;}
.x79{left:690.936000pt;}
.x57{left:693.553333pt;}
.x2c{left:696.129333pt;}
.x91{left:699.458667pt;}
.x22{left:702.966667pt;}
.x2d{left:706.096000pt;}
.x58{left:707.014667pt;}
.x23{left:708.678667pt;}
.x5c{left:710.548000pt;}
.x5b{left:712.493333pt;}
.x76{left:713.757333pt;}
.x35{left:716.757333pt;}
.x24{left:719.328000pt;}
.x59{left:720.298667pt;}
.x11c{left:722.504000pt;}
.x5d{left:723.832000pt;}
.x25{left:725.040000pt;}
.x5a{left:726.966667pt;}
.x4f{left:727.936000pt;}
.x124{left:728.921333pt;}
.xce{left:729.876000pt;}
.xf8{left:732.154667pt;}
.x1e{left:733.484000pt;}
.x87{left:734.414667pt;}
.xcf{left:735.501333pt;}
.x77{left:738.929333pt;}
.x1f{left:740.126667pt;}
.x50{left:741.220000pt;}
.xda{left:742.994667pt;}
.xe{left:744.106667pt;}
}




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