
    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_742d08e514e4e0aabba0b74e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_540eea4ea57d5dbcaed6fc17.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4ebd78134832cc2c950ea6a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_8032d47448c3baf075ab61e5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;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_21c265c1ba3abdfe11cfb003.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.191000;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_9f49207f836fa013881f0a7a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933000;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_8e056cdb6070f9d7d702b3f2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.803000;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_20039c5b1ac5b4796ebf44af.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.665000;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_a8048dfaa087d849dfdfcbd5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000488;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_d584b91d025a445d27b6db11.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.200684;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_a3b8bd38b0f0c52826684363.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.206055;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_bd641f7d619831b96a859cff.woff2')format("woff");}.fff{font-family:fff;line-height:1.000488;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_995d65233fd66c5e584dc452.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.200684;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_cd2938fa3498f89f006abb1b.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.206055;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_c08c27dbf2fc59fd872a26aa.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.976074;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_15e34654a223133870ca646a.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000488;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_23e0dcd7f27832d74c45d7cb.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.200684;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_26c7d73317d23b6b0dc2ef93.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.206055;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_c08c27dbf2fc59fd872a26aa.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.976074;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_a8048dfaa087d849dfdfcbd5.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000488;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_f9528ee80c72943f5b918ef8.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.200684;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_5a0afc5c63b93449213d3ba0.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.206055;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:ff1a;src:url('chunks/assets/font_a8048dfaa087d849dfdfcbd5.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000488;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:ff1b;src:url('chunks/assets/font_f9528ee80c72943f5b918ef8.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.200684;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:ff1c;src:url('chunks/assets/font_5a0afc5c63b93449213d3ba0.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.206055;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:ff1d;src:url('chunks/assets/font_a8048dfaa087d849dfdfcbd5.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000488;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:ff1e;src:url('chunks/assets/font_437c4a5f70e5bf0e7e07a39f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.200684;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:ff1f;src:url('chunks/assets/font_d3992c5d7fd53d7460cd4ad7.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.206055;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:ff20;src:url('chunks/assets/font_a8048dfaa087d849dfdfcbd5.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.000488;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:ff21;src:url('chunks/assets/font_c298842a2392ad08fa485bf4.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.200684;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:ff22;src:url('chunks/assets/font_58950ec587eb8f3526a9f315.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.206055;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:ff23;src:url('chunks/assets/font_a8048dfaa087d849dfdfcbd5.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.000488;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:ff24;src:url('chunks/assets/font_c298842a2392ad08fa485bf4.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.200684;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:ff25;src:url('chunks/assets/font_58950ec587eb8f3526a9f315.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.206055;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;}
.m5{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);}
.ma{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m15{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);}
.m26{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);}
.m4{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);}
.m2c{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);}
.m13{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m11{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);}
.m22{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);}
.m2d{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.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);}
.m23{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m2b{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);}
.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);}
.m1c{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);}
.m28{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);}
.me{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);}
.m1d{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);}
.m7{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);}
.m29{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);}
.m6{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);}
.m9{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);}
.m1a{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);}
.m27{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);}
.m20{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);}
.m17{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);}
.m1b{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);}
.m14{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);}
.m12{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);}
.md{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);}
.m1e{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);}
.m2{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);}
.m1f{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls34{letter-spacing:-0.388368px;}
.ls97{letter-spacing:-0.371520px;}
.lsc4{letter-spacing:-0.294840px;}
.ls71{letter-spacing:-0.267300px;}
.lsd9{letter-spacing:-0.258516px;}
.lsd5{letter-spacing:-0.198396px;}
.ls81{letter-spacing:-0.178556px;}
.ls30{letter-spacing:-0.174348px;}
.ls33{letter-spacing:-0.160400px;}
.lscd{letter-spacing:-0.140400px;}
.ls2f{letter-spacing:-0.139478px;}
.ls95{letter-spacing:-0.137894px;}
.lsd4{letter-spacing:-0.126252px;}
.lsd8{letter-spacing:-0.120240px;}
.ls70{letter-spacing:-0.118800px;}
.ls7d{letter-spacing:-0.112424px;}
.lsbe{letter-spacing:-0.112039px;}
.lsc7{letter-spacing:-0.109418px;}
.ls77{letter-spacing:-0.105811px;}
.lsd7{letter-spacing:-0.102204px;}
.ls6d{letter-spacing:-0.100069px;}
.ls2d{letter-spacing:-0.099973px;}
.ls79{letter-spacing:-0.099198px;}
.ls75{letter-spacing:-0.092585px;}
.ls4c{letter-spacing:-0.090972px;}
.ls54{letter-spacing:-0.090180px;}
.lscc{letter-spacing:-0.086184px;}
.ls9a{letter-spacing:-0.076954px;}
.lsd2{letter-spacing:-0.072144px;}
.ls72{letter-spacing:-0.071280px;}
.ls74{letter-spacing:-0.066132px;}
.lsca{letter-spacing:-0.062525px;}
.lsd3{letter-spacing:-0.060120px;}
.ls50{letter-spacing:-0.059400px;}
.ls9c{letter-spacing:-0.057715px;}
.ls35{letter-spacing:-0.056376px;}
.lsc2{letter-spacing:-0.056160px;}
.ls78{letter-spacing:-0.052906px;}
.ls2e{letter-spacing:-0.048817px;}
.lscf{letter-spacing:-0.048096px;}
.ls7e{letter-spacing:-0.046292px;}
.ls4f{letter-spacing:-0.043200px;}
.lsbf{letter-spacing:-0.042120px;}
.ls7b{letter-spacing:-0.039679px;}
.lscb{letter-spacing:-0.039078px;}
.ls99{letter-spacing:-0.038477px;}
.ls52{letter-spacing:-0.037800px;}
.lsd0{letter-spacing:-0.036072px;}
.ls31{letter-spacing:-0.034870px;}
.ls7f{letter-spacing:-0.033066px;}
.lsce{letter-spacing:-0.032400px;}
.lsc9{letter-spacing:-0.031262px;}
.lsd6{letter-spacing:-0.030060px;}
.lsc3{letter-spacing:-0.028080px;}
.ls51{letter-spacing:-0.027000px;}
.ls98{letter-spacing:-0.025920px;}
.lsd1{letter-spacing:-0.024048px;}
.ls6f{letter-spacing:-0.023760px;}
.ls4e{letter-spacing:-0.021600px;}
.lsc0{letter-spacing:-0.021060px;}
.ls82{letter-spacing:-0.019840px;}
.ls9b{letter-spacing:-0.019238px;}
.ls56{letter-spacing:-0.018036px;}
.ls96{letter-spacing:-0.017280px;}
.lsc8{letter-spacing:-0.015631px;}
.lsc1{letter-spacing:-0.014040px;}
.ls32{letter-spacing:-0.013948px;}
.ls76{letter-spacing:-0.013226px;}
.ls55{letter-spacing:-0.012024px;}
.ls73{letter-spacing:-0.011880px;}
.ls53{letter-spacing:-0.010800px;}
.ls6e{letter-spacing:-0.010534px;}
.ls4d{letter-spacing:-0.009576px;}
.lsc6{letter-spacing:-0.007816px;}
.ls80{letter-spacing:-0.006613px;}
.ls36{letter-spacing:-0.006264px;}
.lsda{letter-spacing:-0.006012px;}
.lsa{letter-spacing:0.000000px;}
.lseb{letter-spacing:0.000196px;}
.ls13{letter-spacing:0.000349px;}
.ls9d{letter-spacing:0.000422px;}
.ls15{letter-spacing:0.000435px;}
.ls3{letter-spacing:0.000583px;}
.ls5{letter-spacing:0.000600px;}
.lse5{letter-spacing:0.000676px;}
.lsde{letter-spacing:0.000800px;}
.lsf0{letter-spacing:0.000901px;}
.lsdd{letter-spacing:0.001036px;}
.ls6a{letter-spacing:0.001133px;}
.lse0{letter-spacing:0.001155px;}
.lsf4{letter-spacing:0.001200px;}
.lsc{letter-spacing:0.001298px;}
.lsed{letter-spacing:0.001357px;}
.lse7{letter-spacing:0.001502px;}
.ls7{letter-spacing:0.001573px;}
.ls8{letter-spacing:0.001979px;}
.ls11{letter-spacing:0.001996px;}
.lsf6{letter-spacing:0.002074px;}
.lsec{letter-spacing:0.002186px;}
.lsef{letter-spacing:0.002461px;}
.ls10{letter-spacing:0.002517px;}
.lsdf{letter-spacing:0.002544px;}
.ls1{letter-spacing:0.002725px;}
.lse9{letter-spacing:0.002841px;}
.ls16{letter-spacing:0.003078px;}
.lsb2{letter-spacing:0.003178px;}
.lse3{letter-spacing:0.003263px;}
.lse1{letter-spacing:0.003668px;}
.lse2{letter-spacing:0.004026px;}
.lsdb{letter-spacing:0.004028px;}
.ls9e{letter-spacing:0.004090px;}
.ls2{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.004766px;}
.lsb5{letter-spacing:0.004788px;}
.lsee{letter-spacing:0.004885px;}
.ls3f{letter-spacing:0.005400px;}
.ls1c{letter-spacing:0.005554px;}
.ls5f{letter-spacing:0.005940px;}
.lsbb{letter-spacing:0.006012px;}
.lsa1{letter-spacing:0.006224px;}
.ls62{letter-spacing:0.006613px;}
.lsa7{letter-spacing:0.007020px;}
.ls85{letter-spacing:0.007661px;}
.lsb1{letter-spacing:0.007816px;}
.ls90{letter-spacing:0.009619px;}
.ls46{letter-spacing:0.010800px;}
.ls5a{letter-spacing:0.011880px;}
.lsbc{letter-spacing:0.012024px;}
.ls25{letter-spacing:0.012528px;}
.ls64{letter-spacing:0.013226px;}
.lsa6{letter-spacing:0.014040px;}
.ls41{letter-spacing:0.016200px;}
.ls8a{letter-spacing:0.017280px;}
.ls60{letter-spacing:0.017820px;}
.ls47{letter-spacing:0.018036px;}
.ls23{letter-spacing:0.018792px;}
.ls91{letter-spacing:0.019238px;}
.lsa3{letter-spacing:0.021060px;}
.ls3b{letter-spacing:0.021600px;}
.lsaf{letter-spacing:0.023447px;}
.ls49{letter-spacing:0.024048px;}
.ls8d{letter-spacing:0.025920px;}
.ls67{letter-spacing:0.026453px;}
.ls3c{letter-spacing:0.027000px;}
.ls22{letter-spacing:0.027896px;}
.lsaa{letter-spacing:0.028080px;}
.ls92{letter-spacing:0.028858px;}
.ls61{letter-spacing:0.029700px;}
.lsba{letter-spacing:0.030060px;}
.ls24{letter-spacing:0.031320px;}
.ls3a{letter-spacing:0.032400px;}
.ls66{letter-spacing:0.033066px;}
.lsa4{letter-spacing:0.035100px;}
.lsbd{letter-spacing:0.036072px;}
.ls29{letter-spacing:0.037584px;}
.lsb6{letter-spacing:0.037800px;}
.ls93{letter-spacing:0.038477px;}
.ls68{letter-spacing:0.039679px;}
.ls5b{letter-spacing:0.041580px;}
.ls20{letter-spacing:0.041844px;}
.ls4a{letter-spacing:0.042084px;}
.ls42{letter-spacing:0.043200px;}
.ls63{letter-spacing:0.046292px;}
.lsae{letter-spacing:0.046894px;}
.ls8f{letter-spacing:0.048096px;}
.ls44{letter-spacing:0.048600px;}
.ls88{letter-spacing:0.051840px;}
.ls65{letter-spacing:0.052906px;}
.ls3d{letter-spacing:0.054000px;}
.ls48{letter-spacing:0.054108px;}
.lsad{letter-spacing:0.054709px;}
.ls1f{letter-spacing:0.055791px;}
.lsa5{letter-spacing:0.056160px;}
.ls2a{letter-spacing:0.056376px;}
.ls94{letter-spacing:0.057715px;}
.ls87{letter-spacing:0.060480px;}
.ls1e{letter-spacing:0.062765px;}
.ls43{letter-spacing:0.064800px;}
.ls27{letter-spacing:0.068904px;}
.lsb9{letter-spacing:0.070200px;}
.lsb0{letter-spacing:0.070340px;}
.ls37{letter-spacing:0.076608px;}
.lsac{letter-spacing:0.078156px;}
.ls21{letter-spacing:0.083687px;}
.ls57{letter-spacing:0.084269px;}
.lsb3{letter-spacing:0.086184px;}
.ls8e{letter-spacing:0.096192px;}
.lsab{letter-spacing:0.098280px;}
.ls1a{letter-spacing:0.099973px;}
.ls9f{letter-spacing:0.112039px;}
.ls89{letter-spacing:0.112320px;}
.ls3e{letter-spacing:0.124200px;}
.ls7a{letter-spacing:0.125651px;}
.ls5c{letter-spacing:0.136620px;}
.ls83{letter-spacing:0.137894px;}
.lsb7{letter-spacing:0.140400px;}
.ls40{letter-spacing:0.145800px;}
.lsb8{letter-spacing:0.156600px;}
.ls5d{letter-spacing:0.160380px;}
.ls26{letter-spacing:0.162864px;}
.ls39{letter-spacing:0.167580px;}
.ls28{letter-spacing:0.175392px;}
.ls7c{letter-spacing:0.178556px;}
.ls38{letter-spacing:0.181944px;}
.lsa8{letter-spacing:0.182520px;}
.ls59{letter-spacing:0.184338px;}
.lsb4{letter-spacing:0.191520px;}
.ls58{letter-spacing:0.200138px;}
.lsa9{letter-spacing:0.203580px;}
.ls1d{letter-spacing:0.205501px;}
.ls1b{letter-spacing:0.222163px;}
.ls8b{letter-spacing:0.224640px;}
.lsa2{letter-spacing:0.230303px;}
.lsa0{letter-spacing:0.248976px;}
.ls8c{letter-spacing:0.250560px;}
.ls86{letter-spacing:0.283450px;}
.ls84{letter-spacing:0.306432px;}
.lsc5{letter-spacing:0.498420px;}
.lsb{letter-spacing:1.275394px;}
.ls4{letter-spacing:1.861130px;}
.lse{letter-spacing:3.295200px;}
.ls45{letter-spacing:3.780000px;}
.ls5e{letter-spacing:6.931980px;}
.lse4{letter-spacing:11.799380px;}
.ls9{letter-spacing:11.954850px;}
.lsf3{letter-spacing:12.423869px;}
.lse8{letter-spacing:12.617269px;}
.ls69{letter-spacing:13.273790px;}
.lsdc{letter-spacing:13.448400px;}
.ls2c{letter-spacing:13.450800px;}
.lsea{letter-spacing:13.454400px;}
.lse6{letter-spacing:13.617747px;}
.ls2b{letter-spacing:13.655437px;}
.ls6c{letter-spacing:14.094088px;}
.ls6b{letter-spacing:14.122800px;}
.ls12{letter-spacing:14.944766px;}
.lsf{letter-spacing:15.285483px;}
.lsd{letter-spacing:15.291483px;}
.ls14{letter-spacing:15.663483px;}
.ls18{letter-spacing:15.675483px;}
.ls17{letter-spacing:15.700200px;}
.ls4b{letter-spacing:15.770443px;}
.lsf5{letter-spacing:17.268047px;}
.lsf2{letter-spacing:19.597459px;}
.lsf1{letter-spacing:21.091576px;}
.ls19{letter-spacing:21.758318px;}
.ls6{letter-spacing:28.453654px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsae{word-spacing:-59.400000px;}
.ws81{word-spacing:-54.000000px;}
.wse9{word-spacing:-21.600000px;}
.wse8{word-spacing:-19.458432px;}
.ws10a{word-spacing:-17.550000px;}
.ws109{word-spacing:-15.809976px;}
.ws5f{word-spacing:-15.660000px;}
.ws2{word-spacing:-14.943900px;}
.wsad{word-spacing:-14.850000px;}
.ws5e{word-spacing:-14.107363px;}
.ws10d{word-spacing:-13.570200px;}
.ws80{word-spacing:-13.500000px;}
.ws108{word-spacing:-13.449600px;}
.wsac{word-spacing:-13.367138px;}
.ws10c{word-spacing:-12.161520px;}
.ws7f{word-spacing:-12.151944px;}
.ws32{word-spacing:-11.955150px;}
.ws7{word-spacing:-10.460700px;}
.wsfb{word-spacing:-5.588755px;}
.wsfa{word-spacing:-5.531040px;}
.ws43{word-spacing:-3.586536px;}
.ws13e{word-spacing:-3.553092px;}
.wsd5{word-spacing:-3.498383px;}
.ws12d{word-spacing:-3.149687px;}
.ws13d{word-spacing:-3.144276px;}
.ws12e{word-spacing:-3.134056px;}
.wsdb{word-spacing:-3.035459px;}
.wsdc{word-spacing:-2.889968px;}
.ws106{word-spacing:-2.851315px;}
.ws1c{word-spacing:-2.689920px;}
.ws107{word-spacing:-2.636122px;}
.ws4c{word-spacing:-2.630126px;}
.ws172{word-spacing:-2.582323px;}
.ws51{word-spacing:-2.508987px;}
.ws50{word-spacing:-2.450800px;}
.ws78{word-spacing:-2.323944px;}
.wsfe{word-spacing:-2.202797px;}
.ws17d{word-spacing:-2.151936px;}
.wse5{word-spacing:-2.032370px;}
.ws35{word-spacing:-1.972595px;}
.ws79{word-spacing:-1.941840px;}
.ws165{word-spacing:-1.912819px;}
.ws4{word-spacing:-1.908367px;}
.wsd7{word-spacing:-1.904602px;}
.ws77{word-spacing:-1.904256px;}
.ws7a{word-spacing:-1.885464px;}
.wsd8{word-spacing:-1.845083px;}
.ws18{word-spacing:-1.667750px;}
.ws135{word-spacing:-1.657800px;}
.ws134{word-spacing:-1.641600px;}
.ws137{word-spacing:-1.582200px;}
.wsf4{word-spacing:-1.486080px;}
.ws136{word-spacing:-1.474200px;}
.wsf5{word-spacing:-1.451520px;}
.ws57{word-spacing:-1.434614px;}
.wsbb{word-spacing:-1.425600px;}
.wsf6{word-spacing:-1.408320px;}
.wsba{word-spacing:-1.395900px;}
.wsc0{word-spacing:-1.384020px;}
.wsb9{word-spacing:-1.360260px;}
.ws1a1{word-spacing:-1.344960px;}
.ws3{word-spacing:-1.322630px;}
.ws34{word-spacing:-1.255288px;}
.ws1a3{word-spacing:-1.022170px;}
.ws16b{word-spacing:-0.956410px;}
.wsf8{word-spacing:-0.907200px;}
.wsf3{word-spacing:-0.881280px;}
.wsf7{word-spacing:-0.855360px;}
.ws58{word-spacing:-0.836858px;}
.wsf2{word-spacing:-0.829440px;}
.ws6f{word-spacing:-0.808975px;}
.ws187{word-spacing:-0.806976px;}
.ws13b{word-spacing:-0.649296px;}
.ws18c{word-spacing:-0.645581px;}
.ws13a{word-spacing:-0.535068px;}
.wsfc{word-spacing:-0.519437px;}
.ws15e{word-spacing:-0.505008px;}
.ws26{word-spacing:-0.478205px;}
.ws170{word-spacing:-0.376589px;}
.ws15d{word-spacing:-0.366732px;}
.wsfd{word-spacing:-0.365530px;}
.ws3f{word-spacing:-0.358654px;}
.ws6b{word-spacing:-0.355670px;}
.wsdf{word-spacing:-0.350500px;}
.ws138{word-spacing:-0.342684px;}
.wsec{word-spacing:-0.336960px;}
.ws13{word-spacing:-0.322790px;}
.ws3a{word-spacing:-0.298878px;}
.wsa8{word-spacing:-0.294588px;}
.wsee{word-spacing:-0.276480px;}
.ws17c{word-spacing:-0.268992px;}
.wsed{word-spacing:-0.259200px;}
.ws2f{word-spacing:-0.239102px;}
.wsc4{word-spacing:-0.219780px;}
.ws82{word-spacing:-0.215194px;}
.ws2e{word-spacing:-0.179327px;}
.ws6d{word-spacing:-0.167374px;}
.ws84{word-spacing:-0.161395px;}
.ws17a{word-spacing:-0.155560px;}
.wsea{word-spacing:-0.145555px;}
.ws6e{word-spacing:-0.132504px;}
.ws36{word-spacing:-0.119551px;}
.ws10e{word-spacing:-0.118264px;}
.ws1d{word-spacing:-0.107597px;}
.ws65{word-spacing:-0.105528px;}
.ws131{word-spacing:-0.090972px;}
.wsb7{word-spacing:-0.089536px;}
.ws8b{word-spacing:-0.081396px;}
.ws1{word-spacing:-0.059776px;}
.ws1a{word-spacing:-0.053798px;}
.ws33{word-spacing:-0.047821px;}
.ws196{word-spacing:-0.023414px;}
.ws0{word-spacing:0.000000px;}
.wsd1{word-spacing:0.046292px;}
.ws16{word-spacing:0.053798px;}
.ws74{word-spacing:0.055791px;}
.ws4d{word-spacing:0.059776px;}
.wsab{word-spacing:0.066132px;}
.wsd0{word-spacing:0.085972px;}
.ws155{word-spacing:0.090180px;}
.wsda{word-spacing:0.092585px;}
.ws105{word-spacing:0.096192px;}
.ws160{word-spacing:0.102204px;}
.wsd9{word-spacing:0.105811px;}
.ws17{word-spacing:0.107597px;}
.wsaa{word-spacing:0.108216px;}
.wsdd{word-spacing:0.119038px;}
.ws37{word-spacing:0.119551px;}
.ws91{word-spacing:0.124200px;}
.ws1a5{word-spacing:0.124951px;}
.ws121{word-spacing:0.132865px;}
.wsd4{word-spacing:0.145490px;}
.ws93{word-spacing:0.145800px;}
.ws90{word-spacing:0.151200px;}
.ws126{word-spacing:0.156312px;}
.ws94{word-spacing:0.156600px;}
.ws173{word-spacing:0.161395px;}
.ws142{word-spacing:0.162324px;}
.wsc5{word-spacing:0.166320px;}
.wsa2{word-spacing:0.167400px;}
.ws92{word-spacing:0.172800px;}
.wsc3{word-spacing:0.178200px;}
.ws20{word-spacing:0.179327px;}
.wsf0{word-spacing:0.181440px;}
.wsa3{word-spacing:0.199800px;}
.ws8{word-spacing:0.209214px;}
.ws11e{word-spacing:0.210600px;}
.wsd3{word-spacing:0.211622px;}
.ws63{word-spacing:0.215194px;}
.ws95{word-spacing:0.221400px;}
.ws41{word-spacing:0.226356px;}
.ws44{word-spacing:0.232356px;}
.ws96{word-spacing:0.237600px;}
.ws2b{word-spacing:0.239102px;}
.wsef{word-spacing:0.241920px;}
.ws60{word-spacing:0.268992px;}
.wsa{word-spacing:0.292900px;}
.ws25{word-spacing:0.298878px;}
.ws29{word-spacing:0.358654px;}
.ws40{word-spacing:0.373434px;}
.ws42{word-spacing:0.374808px;}
.ws15{word-spacing:0.376589px;}
.ws45{word-spacing:0.418429px;}
.ws193{word-spacing:0.430387px;}
.wsb1{word-spacing:0.478205px;}
.ws5a{word-spacing:0.537980px;}
.ws22{word-spacing:0.597756px;}
.ws19{word-spacing:0.645581px;}
.ws47{word-spacing:0.657532px;}
.wsf1{word-spacing:0.665280px;}
.ws111{word-spacing:0.673920px;}
.ws110{word-spacing:0.687960px;}
.ws7c{word-spacing:0.689040px;}
.ws101{word-spacing:0.711821px;}
.ws2a{word-spacing:0.717307px;}
.ws117{word-spacing:0.723060px;}
.ws116{word-spacing:0.730080px;}
.ws119{word-spacing:0.737100px;}
.ws52{word-spacing:0.742800px;}
.ws115{word-spacing:0.751140px;}
.ws118{word-spacing:0.765180px;}
.ws146{word-spacing:0.853704px;}
.ws145{word-spacing:0.865728px;}
.wsc8{word-spacing:0.886169px;}
.wsa4{word-spacing:0.901800px;}
.wsc9{word-spacing:0.906008px;}
.wse3{word-spacing:0.956410px;}
.ws1b{word-spacing:0.968371px;}
.ws7d{word-spacing:0.995976px;}
.ws11a{word-spacing:1.003860px;}
.ws7b{word-spacing:1.014768px;}
.wse6{word-spacing:1.016185px;}
.ws7e{word-spacing:1.058616px;}
.ws87{word-spacing:1.075961px;}
.ws88{word-spacing:1.135736px;}
.ws12{word-spacing:1.344960px;}
.ws8a{word-spacing:1.374839px;}
.ws64{word-spacing:1.398758px;}
.wse2{word-spacing:1.434614px;}
.wsa5{word-spacing:1.509012px;}
.ws147{word-spacing:1.527048px;}
.ws11c{word-spacing:1.544400px;}
.ws16c{word-spacing:1.554166px;}
.ws148{word-spacing:1.563120px;}
.ws112{word-spacing:1.586520px;}
.ws8e{word-spacing:1.587600px;}
.ws8f{word-spacing:1.598400px;}
.ws133{word-spacing:1.609200px;}
.ws11b{word-spacing:1.614600px;}
.ws114{word-spacing:1.621620px;}
.ws11d{word-spacing:1.628640px;}
.ws113{word-spacing:1.635660px;}
.ws8d{word-spacing:1.641600px;}
.ws3d{word-spacing:1.673717px;}
.ws16f{word-spacing:1.721549px;}
.ws5c{word-spacing:1.733492px;}
.ws3e{word-spacing:1.853044px;}
.ws75{word-spacing:1.866672px;}
.ws175{word-spacing:1.882944px;}
.ws76{word-spacing:1.885464px;}
.ws5d{word-spacing:1.912819px;}
.ws9b{word-spacing:1.917000px;}
.ws9c{word-spacing:1.933200px;}
.ws162{word-spacing:1.936742px;}
.ws9a{word-spacing:1.938600px;}
.ws120{word-spacing:1.946084px;}
.ws4a{word-spacing:1.972595px;}
.ws97{word-spacing:1.976400px;}
.ws190{word-spacing:1.990541px;}
.ws12c{word-spacing:1.992978px;}
.ws9{word-spacing:2.008454px;}
.ws98{word-spacing:2.008800px;}
.ws99{word-spacing:2.019600px;}
.ws39{word-spacing:2.032370px;}
.ws191{word-spacing:2.044339px;}
.ws189{word-spacing:2.205734px;}
.wsa9{word-spacing:2.206404px;}
.ws4e{word-spacing:2.211697px;}
.ws15f{word-spacing:2.218428px;}
.ws150{word-spacing:2.224440px;}
.ws14f{word-spacing:2.254500px;}
.ws161{word-spacing:2.259533px;}
.ws14e{word-spacing:2.266524px;}
.ws166{word-spacing:2.271473px;}
.ws85{word-spacing:2.313331px;}
.ws14b{word-spacing:2.314620px;}
.ws15a{word-spacing:2.356704px;}
.ws86{word-spacing:2.367130px;}
.ws15b{word-spacing:2.374740px;}
.ws124{word-spacing:2.415020px;}
.ws10b{word-spacing:2.420928px;}
.wsde{word-spacing:2.433658px;}
.ws55{word-spacing:2.450800px;}
.ws12b{word-spacing:2.461914px;}
.ws14{word-spacing:2.474726px;}
.ws125{word-spacing:2.477545px;}
.ws38{word-spacing:2.510575px;}
.wscb{word-spacing:2.526242px;}
.wsc6{word-spacing:2.539469px;}
.wsc7{word-spacing:2.565922px;}
.wsca{word-spacing:2.579148px;}
.ws1e{word-spacing:2.636122px;}
.wsb3{word-spacing:2.689902px;}
.ws4f{word-spacing:2.809453px;}
.wsd6{word-spacing:2.856902px;}
.ws169{word-spacing:2.869229px;}
.ws123{word-spacing:2.883956px;}
.ws27{word-spacing:2.988780px;}
.ws151{word-spacing:2.993976px;}
.ws73{word-spacing:3.005760px;}
.ws1a7{word-spacing:3.012710px;}
.ws122{word-spacing:3.040268px;}
.ws46{word-spacing:3.048556px;}
.ws62{word-spacing:3.066509px;}
.ws152{word-spacing:3.102192px;}
.ws59{word-spacing:3.108331px;}
.ws61{word-spacing:3.120307px;}
.wscd{word-spacing:3.141270px;}
.wse7{word-spacing:3.168107px;}
.ws72{word-spacing:3.194055px;}
.ws192{word-spacing:3.223517px;}
.ws186{word-spacing:3.223834px;}
.ws171{word-spacing:3.224822px;}
.ws5b{word-spacing:3.227882px;}
.ws185{word-spacing:3.227904px;}
.ws83{word-spacing:3.281702px;}
.wsb2{word-spacing:3.287658px;}
.wsce{word-spacing:3.306600px;}
.ws127{word-spacing:3.376339px;}
.wsb0{word-spacing:3.389299px;}
.wse4{word-spacing:3.407209px;}
.ws56{word-spacing:3.466985px;}
.ws1f{word-spacing:3.586536px;}
.wsa6{word-spacing:3.637260px;}
.ws13c{word-spacing:3.667320px;}
.wsa7{word-spacing:3.703392px;}
.wscc{word-spacing:3.762911px;}
.ws23{word-spacing:3.765863px;}
.wsa0{word-spacing:3.790800px;}
.wsa1{word-spacing:3.817800px;}
.ws1a9{word-spacing:3.819686px;}
.ws21{word-spacing:3.885414px;}
.ws130{word-spacing:3.907800px;}
.ws12f{word-spacing:3.931247px;}
.ws49{word-spacing:3.945190px;}
.ws15c{word-spacing:4.022028px;}
.ws14d{word-spacing:4.034052px;}
.ws14c{word-spacing:4.058100px;}
.wsb6{word-spacing:4.124516px;}
.ws100{word-spacing:4.174733px;}
.ws19f{word-spacing:4.196275px;}
.wsff{word-spacing:4.203590px;}
.ws179{word-spacing:4.303872px;}
.ws178{word-spacing:4.311910px;}
.wsd2{word-spacing:4.404391px;}
.ws167{word-spacing:4.542946px;}
.wse1{word-spacing:4.662497px;}
.ws71{word-spacing:4.721344px;}
.ws70{word-spacing:4.742266px;}
.ws128{word-spacing:4.759700px;}
.ws13f{word-spacing:4.761504px;}
.ws3b{word-spacing:4.782048px;}
.ws19c{word-spacing:4.841856px;}
.ws140{word-spacing:4.845672px;}
.ws168{word-spacing:4.901599px;}
.ws16e{word-spacing:5.003251px;}
.wsb5{word-spacing:5.021150px;}
.ws164{word-spacing:5.057050px;}
.ws54{word-spacing:5.080926px;}
.ws163{word-spacing:5.110848px;}
.ws149{word-spacing:5.128236px;}
.ws16a{word-spacing:5.140702px;}
.ws14a{word-spacing:5.212404px;}
.ws19e{word-spacing:5.326042px;}
.ws16d{word-spacing:5.379840px;}
.ws177{word-spacing:5.487437px;}
.wsbc{word-spacing:5.702400px;}
.wsbf{word-spacing:5.815260px;}
.ws153{word-spacing:5.831640px;}
.ws2c{word-spacing:5.858009px;}
.wsbd{word-spacing:5.862780px;}
.ws103{word-spacing:5.915808px;}
.ws102{word-spacing:5.935046px;}
.ws154{word-spacing:5.945868px;}
.wsbe{word-spacing:6.011280px;}
.ws10{word-spacing:6.067206px;}
.ws197{word-spacing:6.079219px;}
.ws24{word-spacing:6.097111px;}
.ws11{word-spacing:6.150892px;}
.ws156{word-spacing:6.234444px;}
.ws89{word-spacing:6.276438px;}
.ws19b{word-spacing:6.294413px;}
.wse0{word-spacing:6.336214px;}
.ws157{word-spacing:6.414804px;}
.ws9e{word-spacing:6.631200px;}
.ws9f{word-spacing:6.658200px;}
.ws9d{word-spacing:6.669000px;}
.ws12a{word-spacing:6.690154px;}
.ws6c{word-spacing:6.750755px;}
.ws53{word-spacing:6.814418px;}
.ws141{word-spacing:6.895764px;}
.ws158{word-spacing:6.919812px;}
.wsc2{word-spacing:6.926040px;}
.wsc1{word-spacing:6.943860px;}
.ws159{word-spacing:6.967908px;}
.wsb4{word-spacing:7.053521px;}
.ws182{word-spacing:7.101389px;}
.ws6a{word-spacing:7.169190px;}
.ws69{word-spacing:7.259851px;}
.ws19a{word-spacing:7.962163px;}
.ws67{word-spacing:7.985138px;}
.ws11f{word-spacing:8.003174px;}
.ws144{word-spacing:8.332632px;}
.ws129{word-spacing:8.479926px;}
.wse{word-spacing:8.661460px;}
.ws143{word-spacing:9.096156px;}
.wsaf{word-spacing:10.221696px;}
.ws6{word-spacing:10.414957px;}
.ws139{word-spacing:10.484928px;}
.wsf9{word-spacing:10.561882px;}
.wscf{word-spacing:10.746450px;}
.ws68{word-spacing:10.914185px;}
.ws17e{word-spacing:11.243866px;}
.ws132{word-spacing:11.615688px;}
.ws8c{word-spacing:11.620476px;}
.ws31{word-spacing:11.907779px;}
.ws1a2{word-spacing:12.050842px;}
.ws188{word-spacing:12.535027px;}
.wsb8{word-spacing:12.782524px;}
.ws1aa{word-spacing:13.073011px;}
.ws194{word-spacing:13.088030px;}
.ws195{word-spacing:13.126810px;}
.ws17b{word-spacing:13.234406px;}
.ws104{word-spacing:13.370688px;}
.ws1a6{word-spacing:13.390646px;}
.ws18d{word-spacing:13.390800px;}
.ws1a0{word-spacing:13.391069px;}
.ws181{word-spacing:13.391520px;}
.ws18f{word-spacing:13.393459px;}
.ws18a{word-spacing:13.395648px;}
.ws176{word-spacing:13.395802px;}
.ws199{word-spacing:13.398451px;}
.ws66{word-spacing:13.479752px;}
.ws1a4{word-spacing:13.503398px;}
.ws180{word-spacing:13.520679px;}
.ws184{word-spacing:13.557197px;}
.ws18b{word-spacing:13.610995px;}
.ws30{word-spacing:14.824349px;}
.ws3c{word-spacing:14.884124px;}
.ws4b{word-spacing:15.102809px;}
.ws10f{word-spacing:15.106619px;}
.ws5{word-spacing:15.483541px;}
.wsb{word-spacing:16.142252px;}
.wsc{word-spacing:16.151321px;}
.ws1a8{word-spacing:16.408512px;}
.ws17f{word-spacing:16.614816px;}
.ws174{word-spacing:16.623706px;}
.ws18e{word-spacing:16.625136px;}
.wsd{word-spacing:17.699504px;}
.ws28{word-spacing:17.872904px;}
.ws19d{word-spacing:18.237658px;}
.wseb{word-spacing:18.592762px;}
.ws48{word-spacing:18.876775px;}
.ws198{word-spacing:19.475021px;}
.ws183{word-spacing:20.497190px;}
.ws2d{word-spacing:20.742133px;}
.wsf{word-spacing:27.448877px;}
._1{margin-left:-11.943245px;}
._4{margin-left:-7.711052px;}
._2{margin-left:-6.635092px;}
._7{margin-left:-5.581432px;}
._0{margin-left:-3.981082px;}
._8{margin-left:-2.912657px;}
._5{margin-left:-1.322630px;}
._6{width:1.091170px;}
._b{width:2.301354px;}
._24{width:3.934798px;}
._9{width:12.439345px;}
._c{width:14.031925px;}
._19{width:15.338302px;}
._e{width:16.426400px;}
._10{width:17.538278px;}
._13{width:18.553138px;}
._f{width:19.891806px;}
._18{width:21.287681px;}
._11{width:22.901622px;}
._1c{width:24.101683px;}
._a{width:25.942536px;}
._14{width:28.094532px;}
._15{width:30.266968px;}
._d{width:32.637384px;}
._26{width:36.279825px;}
._12{width:37.359750px;}
._1e{width:40.109428px;}
._3{width:54.428501px;}
._25{width:61.868160px;}
._23{width:88.767360px;}
._16{width:820.196942px;}
._21{width:2105.345844px;}
._1b{width:2128.280364px;}
._1d{width:2340.017230px;}
._1a{width:2468.680462px;}
._22{width:2561.121600px;}
._17{width:2585.031600px;}
._20{width:2766.756349px;}
._1f{width:3405.490392px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(182,99,36);}
.fs1b{font-size:29.887800px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fsa{font-size:45.429600px;}
.fs3{font-size:47.236800px;}
.fs9{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fsf{font-size:47.880000px;}
.fs12{font-size:52.668000px;}
.fs7{font-size:53.798400px;}
.fs11{font-size:54.000000px;}
.fsb{font-size:55.540800px;}
.fse{font-size:56.058000px;}
.fs14{font-size:59.400000px;}
.fs1{font-size:59.775600px;}
.fs10{font-size:60.120000px;}
.fs18{font-size:62.244000px;}
.fs8{font-size:62.286600px;}
.fsd{font-size:62.640000px;}
.fs13{font-size:66.132000px;}
.fsc{font-size:69.739200px;}
.fs1a{font-size:70.200000px;}
.fs15{font-size:76.608000px;}
.fs19{font-size:78.156000px;}
.fs17{font-size:86.400000px;}
.fs16{font-size:96.192000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:136.067040px;}
.y156{bottom:-1478.956080px;}
.y164{bottom:-1337.540074px;}
.y163{bottom:-1306.724966px;}
.y162{bottom:-1276.054147px;}
.y161{bottom:-1245.239040px;}
.y160{bottom:-1214.568221px;}
.y15f{bottom:-1183.753114px;}
.y15e{bottom:-1152.938006px;}
.y15d{bottom:-1122.267187px;}
.y15c{bottom:-1091.452080px;}
.y15b{bottom:-1032.556800px;}
.y15a{bottom:-1004.764080px;}
.y159{bottom:-977.116080px;}
.y158{bottom:-949.468080px;}
.y157{bottom:-913.467360px;}
.y19a{bottom:-901.504050px;}
.y1b9{bottom:-812.927724px;}
.y1b8{bottom:-793.668282px;}
.y101{bottom:-777.222105px;}
.y1b7{bottom:-774.499020px;}
.y1b6{bottom:-755.239578px;}
.y1b5{bottom:-735.980136px;}
.y17e{bottom:-725.964915px;}
.y1b4{bottom:-716.810874px;}
.y1b3{bottom:-697.551432px;}
.y1be{bottom:-690.313050px;}
.y1b2{bottom:-678.382170px;}
.y1b1{bottom:-659.122728px;}
.y1b0{bottom:-639.863286px;}
.y1af{bottom:-620.694024px;}
.y1dd{bottom:-601.736724px;}
.y1ae{bottom:-601.434582px;}
.y1dc{bottom:-582.477282px;}
.y1ad{bottom:-582.175140px;}
.y169{bottom:-568.264080px;}
.y1db{bottom:-563.308020px;}
.y1ac{bottom:-563.005878px;}
.yd7{bottom:-557.330550px;}
.y1da{bottom:-544.048578px;}
.y1ab{bottom:-543.746436px;}
.y119{bottom:-530.802492px;}
.y1d9{bottom:-524.789136px;}
.y1aa{bottom:-524.577174px;}
.y118{bottom:-509.716304px;}
.y1d8{bottom:-505.619874px;}
.y1a9{bottom:-505.317732px;}
.y192{bottom:-494.762120px;}
.y117{bottom:-488.530918px;}
.y1d7{bottom:-486.360432px;}
.y1a8{bottom:-486.058290px;}
.y191{bottom:-469.842079px;}
.y116{bottom:-467.345531px;}
.y1d6{bottom:-467.191170px;}
.y1a7{bottom:-466.889028px;}
.y1d5{bottom:-447.931728px;}
.y1a6{bottom:-447.629586px;}
.y115{bottom:-446.259343px;}
.y190{bottom:-444.804805px;}
.y1d4{bottom:-428.672286px;}
.y1a5{bottom:-428.460324px;}
.y177{bottom:-426.848074px;}
.y114{bottom:-425.073957px;}
.y18f{bottom:-419.767530px;}
.y1d3{bottom:-409.503024px;}
.y1a4{bottom:-409.200882px;}
.y113{bottom:-403.888571px;}
.y176{bottom:-396.032966px;}
.y18e{bottom:-394.847489px;}
.y1d2{bottom:-390.243582px;}
.y1a3{bottom:-389.941440px;}
.y112{bottom:-382.802383px;}
.y1d1{bottom:-370.984140px;}
.y1a2{bottom:-370.772178px;}
.y18d{bottom:-369.810215px;}
.y175{bottom:-365.362147px;}
.y111{bottom:-356.764561px;}
.y1d0{bottom:-351.814878px;}
.y1a1{bottom:-351.512736px;}
.y18c{bottom:-344.890174px;}
.y174{bottom:-334.547040px;}
.y1cf{bottom:-332.555436px;}
.y1a0{bottom:-332.343474px;}
.y18b{bottom:-319.852900px;}
.y110{bottom:-315.779254px;}
.y1ce{bottom:-313.386174px;}
.y19f{bottom:-308.584050px;}
.y173{bottom:-303.876221px;}
.y18a{bottom:-294.815625px;}
.y10f{bottom:-294.593868px;}
.y1cd{bottom:-294.126732px;}
.y1cc{bottom:-274.867290px;}
.y10e{bottom:-273.408482px;}
.y172{bottom:-273.061114px;}
.y19e{bottom:-271.774500px;}
.y189{bottom:-269.895584px;}
.y1cb{bottom:-255.698028px;}
.y19d{bottom:-254.404050px;}
.y10d{bottom:-252.322293px;}
.y188{bottom:-244.858310px;}
.ye4{bottom:-243.677250px;}
.y171{bottom:-242.246006px;}
.y19c{bottom:-237.124050px;}
.y1ca{bottom:-236.438586px;}
.y10c{bottom:-231.136907px;}
.ye3{bottom:-224.417808px;}
.y187{bottom:-219.821035px;}
.y1c9{bottom:-217.269324px;}
.y19b{bottom:-214.624032px;}
.y170{bottom:-211.575187px;}
.y10b{bottom:-210.050719px;}
.ye2{bottom:-205.248546px;}
.y1c8{bottom:-198.009882px;}
.y186{bottom:-194.900995px;}
.y10a{bottom:-188.865333px;}
.ye1{bottom:-185.989104px;}
.y16f{bottom:-180.760080px;}
.y1c7{bottom:-178.750440px;}
.y185{bottom:-169.863720px;}
.y109{bottom:-167.679947px;}
.ye0{bottom:-166.819842px;}
.yc1{bottom:-162.696438px;}
.y1c6{bottom:-159.581178px;}
.ydf{bottom:-147.560400px;}
.y108{bottom:-146.592105px;}
.y1c5{bottom:-140.321736px;}
.y184{bottom:-122.012085px;}
.y16e{bottom:-121.864800px;}
.y1c4{bottom:-121.152474px;}
.yde{bottom:-110.751450px;}
.y107{bottom:-106.102095px;}
.y183{bottom:-99.430500px;}
.y1c3{bottom:-97.393050px;}
.y16d{bottom:-94.072080px;}
.ydd{bottom:-93.381000px;}
.y106{bottom:-86.994600px;}
.y182{bottom:-76.966500px;}
.ydc{bottom:-76.101000px;}
.yce{bottom:-69.884838px;}
.y105{bottom:-67.887105px;}
.y16c{bottom:-66.424080px;}
.y1c2{bottom:-60.583500px;}
.ydb{bottom:-58.730550px;}
.y181{bottom:-54.502500px;}
.ycd{bottom:-49.840038px;}
.y104{bottom:-48.879105px;}
.y1c1{bottom:-43.213050px;}
.yda{bottom:-41.450550px;}
.y16b{bottom:-38.776080px;}
.y180{bottom:-31.920915px;}
.y103{bottom:-29.871105px;}
.ycc{bottom:-29.795238px;}
.y1c0{bottom:-25.933050px;}
.yd9{bottom:-24.170550px;}
.y102{bottom:-5.220283px;}
.ycb{bottom:-3.795671px;}
.y1bf{bottom:-3.433032px;}
.y17f{bottom:-2.787447px;}
.y16a{bottom:-2.775360px;}
.yd8{bottom:-1.760127px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.425340px;}
.y9{bottom:14.151273px;}
.y2{bottom:15.995909px;}
.y4d{bottom:31.890000px;}
.y138{bottom:93.700500px;}
.yfd{bottom:93.750000px;}
.y23e{bottom:99.073500px;}
.y24{bottom:102.823500px;}
.y4c{bottom:103.621500px;}
.y1ba{bottom:104.184000px;}
.y205{bottom:104.209500px;}
.y88{bottom:107.125500px;}
.y137{bottom:112.530000px;}
.yfc{bottom:112.579500px;}
.y23d{bottom:116.334000px;}
.y23{bottom:120.711000px;}
.y4b{bottom:122.449500px;}
.y87{bottom:125.955000px;}
.y197{bottom:126.612000px;}
.y165{bottom:127.356000px;}
.y204{bottom:130.749000px;}
.y136{bottom:131.359500px;}
.yfb{bottom:131.409000px;}
.y23c{bottom:133.594500px;}
.yd3{bottom:138.268500px;}
.y22{bottom:138.600000px;}
.y4a{bottom:141.279000px;}
.ybd{bottom:143.010000px;}
.y85{bottom:144.784500px;}
.y203{bottom:148.323000px;}
.y153{bottom:149.785500px;}
.y135{bottom:150.189000px;}
.y86{bottom:150.208500px;}
.yfa{bottom:150.238500px;}
.y23b{bottom:150.855000px;}
.y21{bottom:156.487500px;}
.yd2{bottom:157.501500px;}
.y49{bottom:160.108500px;}
.ybc{bottom:161.839500px;}
.y84{bottom:163.614000px;}
.y23a{bottom:168.115500px;}
.y134{bottom:169.018500px;}
.yf9{bottom:169.068000px;}
.y20{bottom:174.375000px;}
.y202{bottom:174.864000px;}
.y17a{bottom:176.410500px;}
.yd1{bottom:176.734500px;}
.y48{bottom:178.938000px;}
.ybb{bottom:180.669000px;}
.y83{bottom:182.443500px;}
.y239{bottom:185.376000px;}
.y133{bottom:187.848000px;}
.yf8{bottom:187.897500px;}
.y1f{bottom:192.264000px;}
.y179{bottom:195.643500px;}
.yd0{bottom:195.967500px;}
.y47{bottom:197.767500px;}
.yba{bottom:199.497000px;}
.y82{bottom:201.273000px;}
.y201{bottom:201.405000px;}
.y238{bottom:202.636500px;}
.y132{bottom:206.677500px;}
.yf7{bottom:206.727000px;}
.y1e{bottom:210.151500px;}
.y178{bottom:214.876500px;}
.ycf{bottom:215.200500px;}
.y46{bottom:216.597000px;}
.yb9{bottom:218.326500px;}
.y237{bottom:219.895500px;}
.y81{bottom:220.102500px;}
.y131{bottom:225.505500px;}
.yf6{bottom:225.556500px;}
.y200{bottom:227.944500px;}
.y1d{bottom:228.039000px;}
.y199{bottom:232.586085px;}
.y45{bottom:235.426500px;}
.yb8{bottom:237.156000px;}
.y166{bottom:237.306000px;}
.ybe{bottom:237.630000px;}
.y80{bottom:238.932000px;}
.y198{bottom:242.215950px;}
.y130{bottom:244.335000px;}
.yf5{bottom:244.386000px;}
.y44{bottom:254.256000px;}
.y236{bottom:254.416500px;}
.y1ff{bottom:254.485500px;}
.yb7{bottom:255.985500px;}
.y7f{bottom:262.245000px;}
.y12f{bottom:263.164500px;}
.yf4{bottom:263.215500px;}
.y235{bottom:271.677000px;}
.y1fe{bottom:272.059500px;}
.y43{bottom:273.085500px;}
.yb6{bottom:274.815000px;}
.y12e{bottom:281.994000px;}
.yf3{bottom:282.045000px;}
.y234{bottom:288.937500px;}
.y1fd{bottom:289.633500px;}
.y42{bottom:291.915000px;}
.yb5{bottom:293.644500px;}
.y7e{bottom:295.869000px;}
.y12d{bottom:300.823500px;}
.yf2{bottom:300.873000px;}
.y233{bottom:306.198000px;}
.y1fc{bottom:307.207500px;}
.y1c{bottom:307.299000px;}
.y41{bottom:310.744500px;}
.yb4{bottom:312.474000px;}
.y7d{bottom:314.698500px;}
.y12c{bottom:319.653000px;}
.yf1{bottom:319.702500px;}
.y232{bottom:323.458500px;}
.y1b{bottom:325.186500px;}
.y40{bottom:329.574000px;}
.yb3{bottom:331.303500px;}
.y7c{bottom:333.528000px;}
.y155{bottom:335.588136px;}
.y12b{bottom:338.482500px;}
.yf0{bottom:338.532000px;}
.y196{bottom:339.714000px;}
.y231{bottom:340.719000px;}
.y1fb{bottom:342.715500px;}
.y1a{bottom:343.074000px;}
.y3f{bottom:348.403500px;}
.yb2{bottom:350.133000px;}
.y154{bottom:350.995920px;}
.y7b{bottom:352.356000px;}
.y12a{bottom:357.312000px;}
.yef{bottom:357.361500px;}
.y230{bottom:357.978000px;}
.y195{bottom:358.947000px;}
.y19{bottom:360.963000px;}
.y1fa{bottom:361.545000px;}
.y3e{bottom:367.233000px;}
.yb1{bottom:368.962500px;}
.y79{bottom:371.185500px;}
.y22f{bottom:375.238500px;}
.y129{bottom:376.141500px;}
.yee{bottom:376.191000px;}
.y7a{bottom:376.611000px;}
.y194{bottom:378.180000px;}
.y1f9{bottom:380.374500px;}
.y3d{bottom:386.062500px;}
.yb0{bottom:387.792000px;}
.y78{bottom:390.015000px;}
.y22e{bottom:392.499000px;}
.y128{bottom:394.971000px;}
.yed{bottom:395.020500px;}
.y193{bottom:397.413000px;}
.y18{bottom:399.024000px;}
.y1f8{bottom:399.204000px;}
.y3c{bottom:404.892000px;}
.yaf{bottom:406.621500px;}
.y77{bottom:408.844500px;}
.y22d{bottom:409.759500px;}
.y127{bottom:413.800500px;}
.yec{bottom:413.850000px;}
.y17{bottom:416.913000px;}
.y1f7{bottom:418.033500px;}
.y17b{bottom:419.842500px;}
.y3b{bottom:423.721500px;}
.yae{bottom:425.451000px;}
.y22c{bottom:427.020000px;}
.y76{bottom:427.674000px;}
.y126{bottom:432.630000px;}
.yeb{bottom:432.679500px;}
.y16{bottom:434.800500px;}
.y1f6{bottom:436.863000px;}
.y3a{bottom:442.551000px;}
.y1bd{bottom:443.777085px;}
.yad{bottom:444.280500px;}
.y152{bottom:445.177500px;}
.y75{bottom:446.503500px;}
.y125{bottom:451.459500px;}
.y1bc{bottom:453.406950px;}
.y1f5{bottom:455.691000px;}
.y22b{bottom:461.541000px;}
.yac{bottom:463.110000px;}
.y151{bottom:464.007000px;}
.y74{bottom:465.333000px;}
.y39{bottom:465.864000px;}
.yea{bottom:466.245000px;}
.y100{bottom:470.277044px;}
.y124{bottom:470.289000px;}
.y15{bottom:470.622000px;}
.y1f4{bottom:474.520500px;}
.y22a{bottom:478.801500px;}
.yff{bottom:480.869895px;}
.yab{bottom:481.939500px;}
.y150{bottom:482.836500px;}
.y73{bottom:484.162500px;}
.ye9{bottom:485.478000px;}
.y14{bottom:488.509500px;}
.y123{bottom:489.118500px;}
.y1f3{bottom:493.350000px;}
.y229{bottom:496.062000px;}
.yaa{bottom:500.769000px;}
.y14f{bottom:501.666000px;}
.y72{bottom:502.992000px;}
.ye8{bottom:504.711000px;}
.y122{bottom:507.948000px;}
.y1f2{bottom:512.179500px;}
.y228{bottom:513.321000px;}
.ya9{bottom:519.598500px;}
.y14e{bottom:520.495500px;}
.y71{bottom:521.821500px;}
.ye7{bottom:523.944000px;}
.y13{bottom:524.329500px;}
.y121{bottom:526.777500px;}
.y227{bottom:530.581500px;}
.y1f1{bottom:531.009000px;}
.ya8{bottom:538.428000px;}
.y14d{bottom:539.323500px;}
.y38{bottom:539.427000px;}
.y6f{bottom:540.651000px;}
.y12{bottom:542.218500px;}
.ye6{bottom:543.177000px;}
.y120{bottom:545.607000px;}
.y70{bottom:546.076500px;}
.y226{bottom:547.842000px;}
.y1f0{bottom:549.838500px;}
.ya7{bottom:557.257500px;}
.y14c{bottom:558.153000px;}
.y37{bottom:558.883500px;}
.y6e{bottom:559.480500px;}
.y11{bottom:560.106000px;}
.ye5{bottom:562.410000px;}
.y11f{bottom:564.436500px;}
.y225{bottom:565.102500px;}
.y1ef{bottom:568.668000px;}
.ya6{bottom:576.087000px;}
.yd6{bottom:576.759585px;}
.y14b{bottom:576.982500px;}
.y10{bottom:577.993500px;}
.y6d{bottom:578.310000px;}
.y224{bottom:582.363000px;}
.y11e{bottom:583.266000px;}
.yd4{bottom:584.839500px;}
.yd5{bottom:586.389450px;}
.y1ee{bottom:587.497500px;}
.y14a{bottom:595.812000px;}
.yf{bottom:595.882500px;}
.y36{bottom:596.274000px;}
.y6c{bottom:597.139500px;}
.ya5{bottom:599.398500px;}
.y223{bottom:599.623500px;}
.y1ed{bottom:606.327000px;}
.ye{bottom:613.770000px;}
.y149{bottom:614.641500px;}
.y35{bottom:615.730500px;}
.y6b{bottom:615.969000px;}
.y11d{bottom:616.831500px;}
.y222{bottom:616.884000px;}
.y1ec{bottom:625.156500px;}
.yd{bottom:631.657500px;}
.ya4{bottom:633.022500px;}
.y148{bottom:633.471000px;}
.y221{bottom:634.144500px;}
.y69{bottom:634.798500px;}
.y34{bottom:635.187000px;}
.y11c{bottom:636.064500px;}
.y6a{bottom:640.222500px;}
.y1eb{bottom:643.986000px;}
.yc{bottom:649.546500px;}
.y68{bottom:650.898000px;}
.y220{bottom:651.403500px;}
.ya3{bottom:651.852000px;}
.y147{bottom:652.300500px;}
.y67{bottom:653.628000px;}
.y33{bottom:654.645000px;}
.y11b{bottom:655.297500px;}
.y1ea{bottom:662.815500px;}
.yb{bottom:667.434000px;}
.y21f{bottom:668.664000px;}
.ya2{bottom:670.681500px;}
.y146{bottom:671.130000px;}
.y66{bottom:672.457500px;}
.y32{bottom:674.101500px;}
.y11a{bottom:674.530500px;}
.y1e9{bottom:681.645000px;}
.y21e{bottom:685.924500px;}
.y8{bottom:689.805055px;}
.y145{bottom:689.959500px;}
.y65{bottom:691.287000px;}
.y31{bottom:693.558000px;}
.ya1{bottom:693.994500px;}
.yfe{bottom:696.958500px;}
.y1e8{bottom:700.474500px;}
.y21d{bottom:703.185000px;}
.y64{bottom:707.386500px;}
.y144{bottom:708.789000px;}
.y63{bottom:710.116500px;}
.y30{bottom:713.016000px;}
.y1e7{bottom:719.304000px;}
.y21c{bottom:720.445500px;}
.y253{bottom:724.929000px;}
.ya0{bottom:727.618500px;}
.y62{bottom:728.946000px;}
.y2f{bottom:732.472500px;}
.y21b{bottom:735.750000px;}
.y21a{bottom:737.706000px;}
.y1e6{bottom:738.133500px;}
.y252{bottom:742.189500px;}
.y9f{bottom:746.448000px;}
.y61{bottom:747.775500px;}
.y17d{bottom:748.352261px;}
.y2e{bottom:751.930500px;}
.y219{bottom:754.966500px;}
.y1e5{bottom:756.963000px;}
.y251{bottom:759.450000px;}
.y17c{bottom:760.871085px;}
.y9e{bottom:765.277500px;}
.y60{bottom:766.605000px;}
.y2d{bottom:771.387000px;}
.y218{bottom:772.227000px;}
.y1e4{bottom:775.792500px;}
.y250{bottom:776.709000px;}
.y9d{bottom:784.107000px;}
.y5f{bottom:785.434500px;}
.y217{bottom:789.487500px;}
.y2c{bottom:790.843500px;}
.y24f{bottom:793.969500px;}
.y1e3{bottom:794.622000px;}
.y9c{bottom:802.936500px;}
.y216{bottom:806.746500px;}
.y5e{bottom:808.746000px;}
.y2b{bottom:810.301500px;}
.y24e{bottom:811.230000px;}
.y1e2{bottom:813.451500px;}
.y9b{bottom:821.766000px;}
.y215{bottom:824.007000px;}
.y24d{bottom:828.490500px;}
.y5d{bottom:828.921000px;}
.y2a{bottom:829.758000px;}
.y1e1{bottom:836.764500px;}
.y143{bottom:840.595500px;}
.y214{bottom:841.267500px;}
.y9a{bottom:845.079000px;}
.y24c{bottom:845.751000px;}
.y29{bottom:849.214500px;}
.y213{bottom:858.528000px;}
.y142{bottom:859.425000px;}
.y5c{bottom:862.545000px;}
.y24b{bottom:863.011500px;}
.y1e0{bottom:867.192000px;}
.y212{bottom:875.788500px;}
.y141{bottom:878.254500px;}
.y99{bottom:878.703000px;}
.y24a{bottom:880.272000px;}
.y5b{bottom:881.374500px;}
.y28{bottom:885.661500px;}
.y1df{bottom:886.423500px;}
.y211{bottom:893.049000px;}
.y140{bottom:897.084000px;}
.y98{bottom:897.532500px;}
.y5a{bottom:900.204000px;}
.y27{bottom:901.800000px;}
.y1de{bottom:905.656500px;}
.y210{bottom:910.309500px;}
.yca{bottom:910.957724px;}
.y249{bottom:914.793000px;}
.y13f{bottom:915.913500px;}
.y97{bottom:916.362000px;}
.y26{bottom:917.940000px;}
.y59{bottom:919.033500px;}
.y20f{bottom:927.570000px;}
.y1bb{bottom:928.086000px;}
.y248{bottom:932.052000px;}
.yc9{bottom:933.298677px;}
.y25{bottom:934.080000px;}
.y13e{bottom:934.743000px;}
.y96{bottom:935.191500px;}
.y58{bottom:937.863000px;}
.y20e{bottom:944.829000px;}
.y247{bottom:949.312500px;}
.y13d{bottom:953.572500px;}
.y95{bottom:954.021000px;}
.yc8{bottom:955.639630px;}
.y57{bottom:956.692500px;}
.y20d{bottom:962.089500px;}
.y246{bottom:966.573000px;}
.y13c{bottom:972.402000px;}
.y93{bottom:972.849000px;}
.y56{bottom:975.522000px;}
.y7{bottom:976.473000px;}
.yc7{bottom:977.875974px;}
.y94{bottom:978.274500px;}
.y20c{bottom:979.350000px;}
.y245{bottom:983.833500px;}
.y13b{bottom:991.231500px;}
.y91{bottom:991.678500px;}
.y55{bottom:994.351500px;}
.y6{bottom:995.302500px;}
.y20b{bottom:996.610500px;}
.y92{bottom:997.104000px;}
.yc6{bottom:1000.216926px;}
.y244{bottom:1001.094000px;}
.y13a{bottom:1010.061000px;}
.y90{bottom:1010.508000px;}
.y54{bottom:1013.181000px;}
.y20a{bottom:1013.871000px;}
.y243{bottom:1018.354500px;}
.yc5{bottom:1022.453270px;}
.y8f{bottom:1029.337500px;}
.y209{bottom:1031.131500px;}
.y53{bottom:1032.010500px;}
.y139{bottom:1033.372500px;}
.y242{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.yc4{bottom:1044.794223px;}
.y8e{bottom:1048.167000px;}
.y208{bottom:1048.392000px;}
.y52{bottom:1050.840000px;}
.y241{bottom:1052.875500px;}
.y207{bottom:1065.652500px;}
.y8d{bottom:1066.996500px;}
.yc3{bottom:1067.135176px;}
.y4{bottom:1069.443000px;}
.y51{bottom:1069.669500px;}
.y240{bottom:1070.134500px;}
.y206{bottom:1082.913000px;}
.y8b{bottom:1085.826000px;}
.y23f{bottom:1087.395000px;}
.y50{bottom:1088.499000px;}
.yc2{bottom:1089.373263px;}
.y8c{bottom:1091.251500px;}
.y3{bottom:1097.688000px;}
.y89{bottom:1104.655500px;}
.y4f{bottom:1107.327000px;}
.y8a{bottom:1110.081000px;}
.y1{bottom:1141.174500px;}
.yc0{bottom:1152.848119px;}
.ybf{bottom:1164.018762px;}
.y4e{bottom:1173.397500px;}
.y168{bottom:1246.280136px;}
.y167{bottom:1261.687920px;}
.h7{height:25.508090px;}
.h39{height:27.138122px;}
.h15{height:27.855430px;}
.h13{height:31.526842px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.h1b{height:37.334628px;}
.ha{height:37.993262px;}
.hd{height:38.734848px;}
.h12{height:41.250077px;}
.h14{height:41.482876px;}
.hf{height:43.038432px;}
.hb{height:43.421105px;}
.hc{height:43.660208px;}
.h4{height:43.815515px;}
.h1e{height:44.279648px;}
.h1d{height:44.536816px;}
.h28{height:47.596957px;}
.h24{height:48.707613px;}
.he{height:48.848947px;}
.h23{height:48.990498px;}
.h38{height:49.117939px;}
.h21{height:49.939453px;}
.h20{height:50.229492px;}
.h2{height:50.931027px;}
.h18{height:51.364392px;}
.h17{height:51.662707px;}
.h10{height:54.276245px;}
.h11{height:54.575123px;}
.h27{height:54.933398px;}
.h26{height:55.252441px;}
.h6{height:55.352206px;}
.h1f{height:55.599258px;}
.h36{height:55.922168px;}
.h32{height:57.563543px;}
.h31{height:57.897861px;}
.h1a{height:58.266211px;}
.h25{height:61.159184px;}
.h19{height:64.495139px;}
.h34{height:65.298340px;}
.h2b{height:70.847438px;}
.h2a{height:71.258906px;}
.h33{height:72.279035px;}
.h5{height:77.469696px;}
.h2e{height:79.903125px;}
.h2d{height:80.367188px;}
.h2c{height:88.958813px;}
.h3{height:92.253453px;}
.h37{height:191.514000px;}
.h35{height:192.388500px;}
.h29{height:273.244800px;}
.h22{height:422.639250px;}
.h1c{height:534.762000px;}
.h30{height:699.757500px;}
.h16{height:881.969460px;}
.h2f{height:882.292800px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:195.714484px;}
.wb{width:504.582000px;}
.wa{width:505.458000px;}
.w6{width:615.598500px;}
.w4{width:619.565280px;}
.w9{width:708.497400px;}
.w8{width:718.036800px;}
.w7{width:718.420800px;}
.w5{width:757.962600px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xa5{left:-316.800000px;}
.xaf{left:-253.829550px;}
.x5f{left:-228.007860px;}
.x93{left:-218.519400px;}
.xb9{left:-199.362000px;}
.x77{left:-12.108900px;}
.x95{left:-3.392400px;}
.x60{left:-1.147924px;}
.x0{left:0.000000px;}
.x79{left:19.751100px;}
.xbb{left:28.067894px;}
.x3{left:29.274117px;}
.x96{left:31.653600px;}
.xb1{left:41.829450px;}
.xa6{left:47.088000px;}
.x1{left:54.000000px;}
.x2{left:57.819988px;}
.x76{left:67.476900px;}
.x62{left:85.890000px;}
.xa4{left:87.246000px;}
.x6e{left:89.835000px;}
.xae{left:92.208000px;}
.x8e{left:94.492500px;}
.x6f{left:97.312500px;}
.x7c{left:132.591000px;}
.x97{left:135.162000px;}
.x5e{left:136.674000px;}
.x7d{left:139.315500px;}
.x98{left:141.886500px;}
.x63{left:143.193000px;}
.x84{left:155.590500px;}
.x85{left:163.069500px;}
.x64{left:180.595500px;}
.x7b{left:183.460506px;}
.x65{left:187.321500px;}
.x70{left:200.631000px;}
.x71{left:208.849500px;}
.xb2{left:214.296000px;}
.x7a{left:215.321100px;}
.xb3{left:219.528000px;}
.x99{left:247.176000px;}
.x5{left:249.832500px;}
.x4{left:250.897500px;}
.x9a{left:255.394500px;}
.x7e{left:258.307500px;}
.x66{left:272.710500px;}
.x86{left:277.768500px;}
.x67{left:280.929000px;}
.x8{left:282.786000px;}
.x87{left:285.987000px;}
.x4b{left:291.901500px;}
.x4c{left:307.959000px;}
.x6{left:310.260000px;}
.xa7{left:320.092500px;}
.x7{left:322.678500px;}
.x1f{left:325.371000px;}
.xa8{left:326.817000px;}
.xb4{left:333.505500px;}
.x20{left:340.314000px;}
.x29{left:342.123000px;}
.x9b{left:357.103500px;}
.x9c{left:363.075000px;}
.xbe{left:373.351500px;}
.x19{left:381.267000px;}
.x3f{left:387.513000px;}
.x40{left:394.320000px;}
.x1a{left:396.211500px;}
.x1b{left:403.548000px;}
.x7f{left:405.060000px;}
.xa9{left:406.278000px;}
.x68{left:410.161500px;}
.x4d{left:411.424500px;}
.x52{left:412.851000px;}
.xaa{left:414.495000px;}
.x1c{left:418.492500px;}
.x53{left:419.656500px;}
.x91{left:436.965000px;}
.x41{left:438.807000px;}
.x21{left:440.646000px;}
.x3c{left:441.661500px;}
.x8f{left:446.077500px;}
.x42{left:448.038000px;}
.x4e{left:451.096500px;}
.xc1{left:452.359500px;}
.x22{left:455.589000px;}
.x3d{left:456.604500px;}
.xb5{left:457.950000px;}
.x23{left:459.400500px;}
.x90{left:461.161500px;}
.xb6{left:466.168500px;}
.x92{left:470.664000px;}
.x57{left:472.414500px;}
.x24{left:474.343500px;}
.x88{left:478.437000px;}
.x89{left:482.916000px;}
.x58{left:487.357500px;}
.x33{left:494.862000px;}
.x34{left:501.669000px;}
.xba{left:505.155427px;}
.x80{left:507.412500px;}
.x81{left:515.629500px;}
.xf{left:520.926000px;}
.x59{left:524.257500px;}
.xd{left:526.458000px;}
.x10{left:528.397500px;}
.x69{left:530.781000px;}
.x11{left:532.152000px;}
.xe{left:533.929500px;}
.xab{left:535.150500px;}
.x30{left:537.471000px;}
.x12{left:539.623500px;}
.xa0{left:541.656000px;}
.x72{left:554.695500px;}
.xa1{left:556.600500px;}
.x49{left:564.561000px;}
.x5c{left:566.698500px;}
.x73{left:569.101500px;}
.x4f{left:570.732000px;}
.x4a{left:573.790500px;}
.x8a{left:575.653500px;}
.x8b{left:580.131000px;}
.x5d{left:581.643000px;}
.x9e{left:588.001500px;}
.x46{left:607.344000px;}
.x2c{left:610.458000px;}
.x94{left:618.427352px;}
.x6a{left:622.522500px;}
.x47{left:624.009000px;}
.x61{left:625.246987px;}
.x6b{left:629.247000px;}
.x50{left:631.249500px;}
.xbc{left:632.316000px;}
.x13{left:634.582500px;}
.x17{left:636.559500px;}
.x51{left:638.056500px;}
.x14{left:642.055500px;}
.x82{left:643.605000px;}
.x9d{left:649.117500px;}
.x31{left:650.307000px;}
.x18{left:651.504000px;}
.x32{left:657.112500px;}
.x35{left:664.267500px;}
.xbf{left:665.503500px;}
.xb7{left:668.281500px;}
.x74{left:669.285000px;}
.x36{left:671.074500px;}
.x5a{left:679.633500px;}
.x75{left:684.139500px;}
.x8c{left:689.700000px;}
.x25{left:692.451000px;}
.x9f{left:695.038500px;}
.x8d{left:697.918500px;}
.xb0{left:706.035180px;}
.x26{left:707.395500px;}
.x6c{left:710.070000px;}
.x2d{left:712.008000px;}
.x48{left:713.640000px;}
.x6d{left:715.302000px;}
.x2e{left:719.248500px;}
.x3a{left:730.242000px;}
.xa2{left:731.472000px;}
.xac{left:734.346000px;}
.x27{left:735.477000px;}
.x1d{left:738.846000px;}
.xad{left:741.070500px;}
.x37{left:743.896500px;}
.x3b{left:745.185000px;}
.xbd{left:747.345000px;}
.x1e{left:753.790500px;}
.x38{left:756.187500px;}
.x55{left:757.306500px;}
.x5b{left:759.274500px;}
.x78{left:762.971667px;}
.xb8{left:767.764500px;}
.x83{left:769.021500px;}
.x56{left:772.933500px;}
.x39{left:774.840000px;}
.x9{left:782.142000px;}
.x3e{left:783.538500px;}
.xc2{left:787.738500px;}
.xa{left:789.613500px;}
.xb{left:793.320000px;}
.x54{left:795.639000px;}
.x45{left:799.326000px;}
.xc{left:800.791500px;}
.x2a{left:807.531000px;}
.x2f{left:812.011500px;}
.x2b{left:813.891000px;}
.xc3{left:815.019000px;}
.xc0{left:817.486500px;}
.x43{left:821.197500px;}
.x15{left:825.510000px;}
.x44{left:830.428500px;}
.x16{left:832.981500px;}
.xa3{left:835.332000px;}
.x28{left:837.027000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls34{letter-spacing:-0.345216pt;}
.ls97{letter-spacing:-0.330240pt;}
.lsc4{letter-spacing:-0.262080pt;}
.ls71{letter-spacing:-0.237600pt;}
.lsd9{letter-spacing:-0.229792pt;}
.lsd5{letter-spacing:-0.176352pt;}
.ls81{letter-spacing:-0.158717pt;}
.ls30{letter-spacing:-0.154976pt;}
.ls33{letter-spacing:-0.142578pt;}
.lscd{letter-spacing:-0.124800pt;}
.ls2f{letter-spacing:-0.123981pt;}
.ls95{letter-spacing:-0.122573pt;}
.lsd4{letter-spacing:-0.112224pt;}
.lsd8{letter-spacing:-0.106880pt;}
.ls70{letter-spacing:-0.105600pt;}
.ls7d{letter-spacing:-0.099933pt;}
.lsbe{letter-spacing:-0.099590pt;}
.lsc7{letter-spacing:-0.097261pt;}
.ls77{letter-spacing:-0.094054pt;}
.lsd7{letter-spacing:-0.090848pt;}
.ls6d{letter-spacing:-0.088950pt;}
.ls2d{letter-spacing:-0.088865pt;}
.ls79{letter-spacing:-0.088176pt;}
.ls75{letter-spacing:-0.082298pt;}
.ls4c{letter-spacing:-0.080864pt;}
.ls54{letter-spacing:-0.080160pt;}
.lscc{letter-spacing:-0.076608pt;}
.ls9a{letter-spacing:-0.068403pt;}
.lsd2{letter-spacing:-0.064128pt;}
.ls72{letter-spacing:-0.063360pt;}
.ls74{letter-spacing:-0.058784pt;}
.lsca{letter-spacing:-0.055578pt;}
.lsd3{letter-spacing:-0.053440pt;}
.ls50{letter-spacing:-0.052800pt;}
.ls9c{letter-spacing:-0.051302pt;}
.ls35{letter-spacing:-0.050112pt;}
.lsc2{letter-spacing:-0.049920pt;}
.ls78{letter-spacing:-0.047027pt;}
.ls2e{letter-spacing:-0.043393pt;}
.lscf{letter-spacing:-0.042752pt;}
.ls7e{letter-spacing:-0.041149pt;}
.ls4f{letter-spacing:-0.038400pt;}
.lsbf{letter-spacing:-0.037440pt;}
.ls7b{letter-spacing:-0.035270pt;}
.lscb{letter-spacing:-0.034736pt;}
.ls99{letter-spacing:-0.034202pt;}
.ls52{letter-spacing:-0.033600pt;}
.lsd0{letter-spacing:-0.032064pt;}
.ls31{letter-spacing:-0.030995pt;}
.ls7f{letter-spacing:-0.029392pt;}
.lsce{letter-spacing:-0.028800pt;}
.lsc9{letter-spacing:-0.027789pt;}
.lsd6{letter-spacing:-0.026720pt;}
.lsc3{letter-spacing:-0.024960pt;}
.ls51{letter-spacing:-0.024000pt;}
.ls98{letter-spacing:-0.023040pt;}
.lsd1{letter-spacing:-0.021376pt;}
.ls6f{letter-spacing:-0.021120pt;}
.ls4e{letter-spacing:-0.019200pt;}
.lsc0{letter-spacing:-0.018720pt;}
.ls82{letter-spacing:-0.017635pt;}
.ls9b{letter-spacing:-0.017101pt;}
.ls56{letter-spacing:-0.016032pt;}
.ls96{letter-spacing:-0.015360pt;}
.lsc8{letter-spacing:-0.013894pt;}
.lsc1{letter-spacing:-0.012480pt;}
.ls32{letter-spacing:-0.012398pt;}
.ls76{letter-spacing:-0.011757pt;}
.ls55{letter-spacing:-0.010688pt;}
.ls73{letter-spacing:-0.010560pt;}
.ls53{letter-spacing:-0.009600pt;}
.ls6e{letter-spacing:-0.009363pt;}
.ls4d{letter-spacing:-0.008512pt;}
.lsc6{letter-spacing:-0.006947pt;}
.ls80{letter-spacing:-0.005878pt;}
.ls36{letter-spacing:-0.005568pt;}
.lsda{letter-spacing:-0.005344pt;}
.lsa{letter-spacing:0.000000pt;}
.lseb{letter-spacing:0.000174pt;}
.ls13{letter-spacing:0.000311pt;}
.ls9d{letter-spacing:0.000375pt;}
.ls15{letter-spacing:0.000387pt;}
.ls3{letter-spacing:0.000518pt;}
.ls5{letter-spacing:0.000533pt;}
.lse5{letter-spacing:0.000600pt;}
.lsde{letter-spacing:0.000711pt;}
.lsf0{letter-spacing:0.000801pt;}
.lsdd{letter-spacing:0.000921pt;}
.ls6a{letter-spacing:0.001007pt;}
.lse0{letter-spacing:0.001026pt;}
.lsf4{letter-spacing:0.001067pt;}
.lsc{letter-spacing:0.001154pt;}
.lsed{letter-spacing:0.001207pt;}
.lse7{letter-spacing:0.001335pt;}
.ls7{letter-spacing:0.001398pt;}
.ls8{letter-spacing:0.001759pt;}
.ls11{letter-spacing:0.001774pt;}
.lsf6{letter-spacing:0.001843pt;}
.lsec{letter-spacing:0.001943pt;}
.lsef{letter-spacing:0.002188pt;}
.ls10{letter-spacing:0.002237pt;}
.lsdf{letter-spacing:0.002262pt;}
.ls1{letter-spacing:0.002422pt;}
.lse9{letter-spacing:0.002525pt;}
.ls16{letter-spacing:0.002736pt;}
.lsb2{letter-spacing:0.002825pt;}
.lse3{letter-spacing:0.002900pt;}
.lse1{letter-spacing:0.003261pt;}
.lse2{letter-spacing:0.003578pt;}
.lsdb{letter-spacing:0.003581pt;}
.ls9e{letter-spacing:0.003635pt;}
.ls2{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.004237pt;}
.lsb5{letter-spacing:0.004256pt;}
.lsee{letter-spacing:0.004343pt;}
.ls3f{letter-spacing:0.004800pt;}
.ls1c{letter-spacing:0.004937pt;}
.ls5f{letter-spacing:0.005280pt;}
.lsbb{letter-spacing:0.005344pt;}
.lsa1{letter-spacing:0.005533pt;}
.ls62{letter-spacing:0.005878pt;}
.lsa7{letter-spacing:0.006240pt;}
.ls85{letter-spacing:0.006810pt;}
.lsb1{letter-spacing:0.006947pt;}
.ls90{letter-spacing:0.008550pt;}
.ls46{letter-spacing:0.009600pt;}
.ls5a{letter-spacing:0.010560pt;}
.lsbc{letter-spacing:0.010688pt;}
.ls25{letter-spacing:0.011136pt;}
.ls64{letter-spacing:0.011757pt;}
.lsa6{letter-spacing:0.012480pt;}
.ls41{letter-spacing:0.014400pt;}
.ls8a{letter-spacing:0.015360pt;}
.ls60{letter-spacing:0.015840pt;}
.ls47{letter-spacing:0.016032pt;}
.ls23{letter-spacing:0.016704pt;}
.ls91{letter-spacing:0.017101pt;}
.lsa3{letter-spacing:0.018720pt;}
.ls3b{letter-spacing:0.019200pt;}
.lsaf{letter-spacing:0.020842pt;}
.ls49{letter-spacing:0.021376pt;}
.ls8d{letter-spacing:0.023040pt;}
.ls67{letter-spacing:0.023514pt;}
.ls3c{letter-spacing:0.024000pt;}
.ls22{letter-spacing:0.024796pt;}
.lsaa{letter-spacing:0.024960pt;}
.ls92{letter-spacing:0.025651pt;}
.ls61{letter-spacing:0.026400pt;}
.lsba{letter-spacing:0.026720pt;}
.ls24{letter-spacing:0.027840pt;}
.ls3a{letter-spacing:0.028800pt;}
.ls66{letter-spacing:0.029392pt;}
.lsa4{letter-spacing:0.031200pt;}
.lsbd{letter-spacing:0.032064pt;}
.ls29{letter-spacing:0.033408pt;}
.lsb6{letter-spacing:0.033600pt;}
.ls93{letter-spacing:0.034202pt;}
.ls68{letter-spacing:0.035270pt;}
.ls5b{letter-spacing:0.036960pt;}
.ls20{letter-spacing:0.037194pt;}
.ls4a{letter-spacing:0.037408pt;}
.ls42{letter-spacing:0.038400pt;}
.ls63{letter-spacing:0.041149pt;}
.lsae{letter-spacing:0.041683pt;}
.ls8f{letter-spacing:0.042752pt;}
.ls44{letter-spacing:0.043200pt;}
.ls88{letter-spacing:0.046080pt;}
.ls65{letter-spacing:0.047027pt;}
.ls3d{letter-spacing:0.048000pt;}
.ls48{letter-spacing:0.048096pt;}
.lsad{letter-spacing:0.048630pt;}
.ls1f{letter-spacing:0.049592pt;}
.lsa5{letter-spacing:0.049920pt;}
.ls2a{letter-spacing:0.050112pt;}
.ls94{letter-spacing:0.051302pt;}
.ls87{letter-spacing:0.053760pt;}
.ls1e{letter-spacing:0.055791pt;}
.ls43{letter-spacing:0.057600pt;}
.ls27{letter-spacing:0.061248pt;}
.lsb9{letter-spacing:0.062400pt;}
.lsb0{letter-spacing:0.062525pt;}
.ls37{letter-spacing:0.068096pt;}
.lsac{letter-spacing:0.069472pt;}
.ls21{letter-spacing:0.074388pt;}
.ls57{letter-spacing:0.074906pt;}
.lsb3{letter-spacing:0.076608pt;}
.ls8e{letter-spacing:0.085504pt;}
.lsab{letter-spacing:0.087360pt;}
.ls1a{letter-spacing:0.088865pt;}
.ls9f{letter-spacing:0.099590pt;}
.ls89{letter-spacing:0.099840pt;}
.ls3e{letter-spacing:0.110400pt;}
.ls7a{letter-spacing:0.111690pt;}
.ls5c{letter-spacing:0.121440pt;}
.ls83{letter-spacing:0.122573pt;}
.lsb7{letter-spacing:0.124800pt;}
.ls40{letter-spacing:0.129600pt;}
.lsb8{letter-spacing:0.139200pt;}
.ls5d{letter-spacing:0.142560pt;}
.ls26{letter-spacing:0.144768pt;}
.ls39{letter-spacing:0.148960pt;}
.ls28{letter-spacing:0.155904pt;}
.ls7c{letter-spacing:0.158717pt;}
.ls38{letter-spacing:0.161728pt;}
.lsa8{letter-spacing:0.162240pt;}
.ls59{letter-spacing:0.163856pt;}
.lsb4{letter-spacing:0.170240pt;}
.ls58{letter-spacing:0.177901pt;}
.lsa9{letter-spacing:0.180960pt;}
.ls1d{letter-spacing:0.182668pt;}
.ls1b{letter-spacing:0.197478pt;}
.ls8b{letter-spacing:0.199680pt;}
.lsa2{letter-spacing:0.204714pt;}
.lsa0{letter-spacing:0.221312pt;}
.ls8c{letter-spacing:0.222720pt;}
.ls86{letter-spacing:0.251955pt;}
.ls84{letter-spacing:0.272384pt;}
.lsc5{letter-spacing:0.443040pt;}
.lsb{letter-spacing:1.133683pt;}
.ls4{letter-spacing:1.654338pt;}
.lse{letter-spacing:2.929067pt;}
.ls45{letter-spacing:3.360000pt;}
.ls5e{letter-spacing:6.161760pt;}
.lse4{letter-spacing:10.488337pt;}
.ls9{letter-spacing:10.626533pt;}
.lsf3{letter-spacing:11.043439pt;}
.lse8{letter-spacing:11.215350pt;}
.ls69{letter-spacing:11.798924pt;}
.lsdc{letter-spacing:11.954133pt;}
.ls2c{letter-spacing:11.956267pt;}
.lsea{letter-spacing:11.959467pt;}
.lse6{letter-spacing:12.104664pt;}
.ls2b{letter-spacing:12.138166pt;}
.ls6c{letter-spacing:12.528078pt;}
.ls6b{letter-spacing:12.553600pt;}
.ls12{letter-spacing:13.284237pt;}
.lsf{letter-spacing:13.587096pt;}
.lsd{letter-spacing:13.592429pt;}
.ls14{letter-spacing:13.923096pt;}
.ls18{letter-spacing:13.933762pt;}
.ls17{letter-spacing:13.955733pt;}
.ls4b{letter-spacing:14.018171pt;}
.lsf5{letter-spacing:15.349375pt;}
.lsf2{letter-spacing:17.419963pt;}
.lsf1{letter-spacing:18.748068pt;}
.ls19{letter-spacing:19.340727pt;}
.ls6{letter-spacing:25.292137pt;}
.wsae{word-spacing:-52.800000pt;}
.ws81{word-spacing:-48.000000pt;}
.wse9{word-spacing:-19.200000pt;}
.wse8{word-spacing:-17.296384pt;}
.ws10a{word-spacing:-15.600000pt;}
.ws109{word-spacing:-14.053312pt;}
.ws5f{word-spacing:-13.920000pt;}
.ws2{word-spacing:-13.283467pt;}
.wsad{word-spacing:-13.200000pt;}
.ws5e{word-spacing:-12.539878pt;}
.ws10d{word-spacing:-12.062400pt;}
.ws80{word-spacing:-12.000000pt;}
.ws108{word-spacing:-11.955200pt;}
.wsac{word-spacing:-11.881901pt;}
.ws10c{word-spacing:-10.810240pt;}
.ws7f{word-spacing:-10.801728pt;}
.ws32{word-spacing:-10.626800pt;}
.ws7{word-spacing:-9.298400pt;}
.wsfb{word-spacing:-4.967782pt;}
.wsfa{word-spacing:-4.916480pt;}
.ws43{word-spacing:-3.188032pt;}
.ws13e{word-spacing:-3.158304pt;}
.wsd5{word-spacing:-3.109674pt;}
.ws12d{word-spacing:-2.799722pt;}
.ws13d{word-spacing:-2.794912pt;}
.ws12e{word-spacing:-2.785827pt;}
.wsdb{word-spacing:-2.698186pt;}
.wsdc{word-spacing:-2.568861pt;}
.ws106{word-spacing:-2.534502pt;}
.ws1c{word-spacing:-2.391040pt;}
.ws107{word-spacing:-2.343219pt;}
.ws4c{word-spacing:-2.337890pt;}
.ws172{word-spacing:-2.295398pt;}
.ws51{word-spacing:-2.230211pt;}
.ws50{word-spacing:-2.178489pt;}
.ws78{word-spacing:-2.065728pt;}
.wsfe{word-spacing:-1.958042pt;}
.ws17d{word-spacing:-1.912832pt;}
.wse5{word-spacing:-1.806551pt;}
.ws35{word-spacing:-1.753418pt;}
.ws79{word-spacing:-1.726080pt;}
.ws165{word-spacing:-1.700284pt;}
.ws4{word-spacing:-1.696326pt;}
.wsd7{word-spacing:-1.692979pt;}
.ws77{word-spacing:-1.692672pt;}
.ws7a{word-spacing:-1.675968pt;}
.wsd8{word-spacing:-1.640074pt;}
.ws18{word-spacing:-1.482445pt;}
.ws135{word-spacing:-1.473600pt;}
.ws134{word-spacing:-1.459200pt;}
.ws137{word-spacing:-1.406400pt;}
.wsf4{word-spacing:-1.320960pt;}
.ws136{word-spacing:-1.310400pt;}
.wsf5{word-spacing:-1.290240pt;}
.ws57{word-spacing:-1.275213pt;}
.wsbb{word-spacing:-1.267200pt;}
.wsf6{word-spacing:-1.251840pt;}
.wsba{word-spacing:-1.240800pt;}
.wsc0{word-spacing:-1.230240pt;}
.wsb9{word-spacing:-1.209120pt;}
.ws1a1{word-spacing:-1.195520pt;}
.ws3{word-spacing:-1.175671pt;}
.ws34{word-spacing:-1.115811pt;}
.ws1a3{word-spacing:-0.908595pt;}
.ws16b{word-spacing:-0.850142pt;}
.wsf8{word-spacing:-0.806400pt;}
.wsf3{word-spacing:-0.783360pt;}
.wsf7{word-spacing:-0.760320pt;}
.ws58{word-spacing:-0.743874pt;}
.wsf2{word-spacing:-0.737280pt;}
.ws6f{word-spacing:-0.719089pt;}
.ws187{word-spacing:-0.717312pt;}
.ws13b{word-spacing:-0.577152pt;}
.ws18c{word-spacing:-0.573850pt;}
.ws13a{word-spacing:-0.475616pt;}
.wsfc{word-spacing:-0.461722pt;}
.ws15e{word-spacing:-0.448896pt;}
.ws26{word-spacing:-0.425071pt;}
.ws170{word-spacing:-0.334746pt;}
.ws15d{word-spacing:-0.325984pt;}
.wsfd{word-spacing:-0.324915pt;}
.ws3f{word-spacing:-0.318803pt;}
.ws6b{word-spacing:-0.316151pt;}
.wsdf{word-spacing:-0.311555pt;}
.ws138{word-spacing:-0.304608pt;}
.wsec{word-spacing:-0.299520pt;}
.ws13{word-spacing:-0.286925pt;}
.ws3a{word-spacing:-0.265669pt;}
.wsa8{word-spacing:-0.261856pt;}
.wsee{word-spacing:-0.245760pt;}
.ws17c{word-spacing:-0.239104pt;}
.wsed{word-spacing:-0.230400pt;}
.ws2f{word-spacing:-0.212535pt;}
.wsc4{word-spacing:-0.195360pt;}
.ws82{word-spacing:-0.191283pt;}
.ws2e{word-spacing:-0.159402pt;}
.ws6d{word-spacing:-0.148777pt;}
.ws84{word-spacing:-0.143462pt;}
.ws17a{word-spacing:-0.138276pt;}
.wsea{word-spacing:-0.129382pt;}
.ws6e{word-spacing:-0.117782pt;}
.ws36{word-spacing:-0.106268pt;}
.ws10e{word-spacing:-0.105123pt;}
.ws1d{word-spacing:-0.095642pt;}
.ws65{word-spacing:-0.093802pt;}
.ws131{word-spacing:-0.080864pt;}
.wsb7{word-spacing:-0.079587pt;}
.ws8b{word-spacing:-0.072352pt;}
.ws1{word-spacing:-0.053134pt;}
.ws1a{word-spacing:-0.047821pt;}
.ws33{word-spacing:-0.042507pt;}
.ws196{word-spacing:-0.020813pt;}
.ws0{word-spacing:0.000000pt;}
.wsd1{word-spacing:0.041149pt;}
.ws16{word-spacing:0.047821pt;}
.ws74{word-spacing:0.049592pt;}
.ws4d{word-spacing:0.053134pt;}
.wsab{word-spacing:0.058784pt;}
.wsd0{word-spacing:0.076419pt;}
.ws155{word-spacing:0.080160pt;}
.wsda{word-spacing:0.082298pt;}
.ws105{word-spacing:0.085504pt;}
.ws160{word-spacing:0.090848pt;}
.wsd9{word-spacing:0.094054pt;}
.ws17{word-spacing:0.095642pt;}
.wsaa{word-spacing:0.096192pt;}
.wsdd{word-spacing:0.105811pt;}
.ws37{word-spacing:0.106268pt;}
.ws91{word-spacing:0.110400pt;}
.ws1a5{word-spacing:0.111067pt;}
.ws121{word-spacing:0.118102pt;}
.wsd4{word-spacing:0.129325pt;}
.ws93{word-spacing:0.129600pt;}
.ws90{word-spacing:0.134400pt;}
.ws126{word-spacing:0.138944pt;}
.ws94{word-spacing:0.139200pt;}
.ws173{word-spacing:0.143462pt;}
.ws142{word-spacing:0.144288pt;}
.wsc5{word-spacing:0.147840pt;}
.wsa2{word-spacing:0.148800pt;}
.ws92{word-spacing:0.153600pt;}
.wsc3{word-spacing:0.158400pt;}
.ws20{word-spacing:0.159402pt;}
.wsf0{word-spacing:0.161280pt;}
.wsa3{word-spacing:0.177600pt;}
.ws8{word-spacing:0.185968pt;}
.ws11e{word-spacing:0.187200pt;}
.wsd3{word-spacing:0.188109pt;}
.ws63{word-spacing:0.191283pt;}
.ws95{word-spacing:0.196800pt;}
.ws41{word-spacing:0.201205pt;}
.ws44{word-spacing:0.206539pt;}
.ws96{word-spacing:0.211200pt;}
.ws2b{word-spacing:0.212535pt;}
.wsef{word-spacing:0.215040pt;}
.ws60{word-spacing:0.239104pt;}
.wsa{word-spacing:0.260355pt;}
.ws25{word-spacing:0.265669pt;}
.ws29{word-spacing:0.318803pt;}
.ws40{word-spacing:0.331941pt;}
.ws42{word-spacing:0.333163pt;}
.ws15{word-spacing:0.334746pt;}
.ws45{word-spacing:0.371937pt;}
.ws193{word-spacing:0.382566pt;}
.wsb1{word-spacing:0.425071pt;}
.ws5a{word-spacing:0.478205pt;}
.ws22{word-spacing:0.531339pt;}
.ws19{word-spacing:0.573850pt;}
.ws47{word-spacing:0.584473pt;}
.wsf1{word-spacing:0.591360pt;}
.ws111{word-spacing:0.599040pt;}
.ws110{word-spacing:0.611520pt;}
.ws7c{word-spacing:0.612480pt;}
.ws101{word-spacing:0.632730pt;}
.ws2a{word-spacing:0.637606pt;}
.ws117{word-spacing:0.642720pt;}
.ws116{word-spacing:0.648960pt;}
.ws119{word-spacing:0.655200pt;}
.ws52{word-spacing:0.660267pt;}
.ws115{word-spacing:0.667680pt;}
.ws118{word-spacing:0.680160pt;}
.ws146{word-spacing:0.758848pt;}
.ws145{word-spacing:0.769536pt;}
.wsc8{word-spacing:0.787706pt;}
.wsa4{word-spacing:0.801600pt;}
.wsc9{word-spacing:0.805341pt;}
.wse3{word-spacing:0.850142pt;}
.ws1b{word-spacing:0.860774pt;}
.ws7d{word-spacing:0.885312pt;}
.ws11a{word-spacing:0.892320pt;}
.ws7b{word-spacing:0.902016pt;}
.wse6{word-spacing:0.903276pt;}
.ws7e{word-spacing:0.940992pt;}
.ws87{word-spacing:0.956410pt;}
.ws88{word-spacing:1.009543pt;}
.ws12{word-spacing:1.195520pt;}
.ws8a{word-spacing:1.222079pt;}
.ws64{word-spacing:1.243341pt;}
.wse2{word-spacing:1.275213pt;}
.wsa5{word-spacing:1.341344pt;}
.ws147{word-spacing:1.357376pt;}
.ws11c{word-spacing:1.372800pt;}
.ws16c{word-spacing:1.381481pt;}
.ws148{word-spacing:1.389440pt;}
.ws112{word-spacing:1.410240pt;}
.ws8e{word-spacing:1.411200pt;}
.ws8f{word-spacing:1.420800pt;}
.ws133{word-spacing:1.430400pt;}
.ws11b{word-spacing:1.435200pt;}
.ws114{word-spacing:1.441440pt;}
.ws11d{word-spacing:1.447680pt;}
.ws113{word-spacing:1.453920pt;}
.ws8d{word-spacing:1.459200pt;}
.ws3d{word-spacing:1.487748pt;}
.ws16f{word-spacing:1.530266pt;}
.ws5c{word-spacing:1.540882pt;}
.ws3e{word-spacing:1.647150pt;}
.ws75{word-spacing:1.659264pt;}
.ws175{word-spacing:1.673728pt;}
.ws76{word-spacing:1.675968pt;}
.ws5d{word-spacing:1.700284pt;}
.ws9b{word-spacing:1.704000pt;}
.ws9c{word-spacing:1.718400pt;}
.ws162{word-spacing:1.721549pt;}
.ws9a{word-spacing:1.723200pt;}
.ws120{word-spacing:1.729853pt;}
.ws4a{word-spacing:1.753418pt;}
.ws97{word-spacing:1.756800pt;}
.ws190{word-spacing:1.769370pt;}
.ws12c{word-spacing:1.771536pt;}
.ws9{word-spacing:1.785293pt;}
.ws98{word-spacing:1.785600pt;}
.ws99{word-spacing:1.795200pt;}
.ws39{word-spacing:1.806551pt;}
.ws191{word-spacing:1.817190pt;}
.ws189{word-spacing:1.960653pt;}
.wsa9{word-spacing:1.961248pt;}
.ws4e{word-spacing:1.965953pt;}
.ws15f{word-spacing:1.971936pt;}
.ws150{word-spacing:1.977280pt;}
.ws14f{word-spacing:2.004000pt;}
.ws161{word-spacing:2.008474pt;}
.ws14e{word-spacing:2.014688pt;}
.ws166{word-spacing:2.019087pt;}
.ws85{word-spacing:2.056294pt;}
.ws14b{word-spacing:2.057440pt;}
.ws15a{word-spacing:2.094848pt;}
.ws86{word-spacing:2.104115pt;}
.ws15b{word-spacing:2.110880pt;}
.ws124{word-spacing:2.146685pt;}
.ws10b{word-spacing:2.151936pt;}
.wsde{word-spacing:2.163251pt;}
.ws55{word-spacing:2.178489pt;}
.ws12b{word-spacing:2.188368pt;}
.ws14{word-spacing:2.199757pt;}
.ws125{word-spacing:2.202262pt;}
.ws38{word-spacing:2.231622pt;}
.wscb{word-spacing:2.245549pt;}
.wsc6{word-spacing:2.257306pt;}
.wsc7{word-spacing:2.280819pt;}
.wsca{word-spacing:2.292576pt;}
.ws1e{word-spacing:2.343219pt;}
.wsb3{word-spacing:2.391024pt;}
.ws4f{word-spacing:2.497292pt;}
.wsd6{word-spacing:2.539469pt;}
.ws169{word-spacing:2.550426pt;}
.ws123{word-spacing:2.563517pt;}
.ws27{word-spacing:2.656693pt;}
.ws151{word-spacing:2.661312pt;}
.ws73{word-spacing:2.671786pt;}
.ws1a7{word-spacing:2.677965pt;}
.ws122{word-spacing:2.702461pt;}
.ws46{word-spacing:2.709827pt;}
.ws62{word-spacing:2.725786pt;}
.ws152{word-spacing:2.757504pt;}
.ws59{word-spacing:2.762961pt;}
.ws61{word-spacing:2.773606pt;}
.wscd{word-spacing:2.792240pt;}
.wse7{word-spacing:2.816095pt;}
.ws72{word-spacing:2.839160pt;}
.ws192{word-spacing:2.865348pt;}
.ws186{word-spacing:2.865630pt;}
.ws171{word-spacing:2.866509pt;}
.ws5b{word-spacing:2.869229pt;}
.ws185{word-spacing:2.869248pt;}
.ws83{word-spacing:2.917069pt;}
.wsb2{word-spacing:2.922363pt;}
.wsce{word-spacing:2.939200pt;}
.ws127{word-spacing:3.001190pt;}
.wsb0{word-spacing:3.012710pt;}
.wse4{word-spacing:3.028630pt;}
.ws56{word-spacing:3.081764pt;}
.ws1f{word-spacing:3.188032pt;}
.wsa6{word-spacing:3.233120pt;}
.ws13c{word-spacing:3.259840pt;}
.wsa7{word-spacing:3.291904pt;}
.wscc{word-spacing:3.344810pt;}
.ws23{word-spacing:3.347434pt;}
.wsa0{word-spacing:3.369600pt;}
.wsa1{word-spacing:3.393600pt;}
.ws1a9{word-spacing:3.395277pt;}
.ws21{word-spacing:3.453701pt;}
.ws130{word-spacing:3.473600pt;}
.ws12f{word-spacing:3.494442pt;}
.ws49{word-spacing:3.506835pt;}
.ws15c{word-spacing:3.575136pt;}
.ws14d{word-spacing:3.585824pt;}
.ws14c{word-spacing:3.607200pt;}
.wsb6{word-spacing:3.666237pt;}
.ws100{word-spacing:3.710874pt;}
.ws19f{word-spacing:3.730022pt;}
.wsff{word-spacing:3.736525pt;}
.ws179{word-spacing:3.825664pt;}
.ws178{word-spacing:3.832809pt;}
.wsd2{word-spacing:3.915014pt;}
.ws167{word-spacing:4.038174pt;}
.wse1{word-spacing:4.144442pt;}
.ws71{word-spacing:4.196750pt;}
.ws70{word-spacing:4.215347pt;}
.ws128{word-spacing:4.230845pt;}
.ws13f{word-spacing:4.232448pt;}
.ws3b{word-spacing:4.250709pt;}
.ws19c{word-spacing:4.303872pt;}
.ws140{word-spacing:4.307264pt;}
.ws168{word-spacing:4.356977pt;}
.ws16e{word-spacing:4.447334pt;}
.wsb5{word-spacing:4.463245pt;}
.ws164{word-spacing:4.495155pt;}
.ws54{word-spacing:4.516379pt;}
.ws163{word-spacing:4.542976pt;}
.ws149{word-spacing:4.558432pt;}
.ws16a{word-spacing:4.569513pt;}
.ws14a{word-spacing:4.633248pt;}
.ws19e{word-spacing:4.734259pt;}
.ws16d{word-spacing:4.782080pt;}
.ws177{word-spacing:4.877722pt;}
.wsbc{word-spacing:5.068800pt;}
.wsbf{word-spacing:5.169120pt;}
.ws153{word-spacing:5.183680pt;}
.ws2c{word-spacing:5.207119pt;}
.wsbd{word-spacing:5.211360pt;}
.ws103{word-spacing:5.258496pt;}
.ws102{word-spacing:5.275597pt;}
.ws154{word-spacing:5.285216pt;}
.wsbe{word-spacing:5.343360pt;}
.ws10{word-spacing:5.393072pt;}
.ws197{word-spacing:5.403750pt;}
.ws24{word-spacing:5.419654pt;}
.ws11{word-spacing:5.467459pt;}
.ws156{word-spacing:5.541728pt;}
.ws89{word-spacing:5.579056pt;}
.ws19b{word-spacing:5.595034pt;}
.wse0{word-spacing:5.632190pt;}
.ws157{word-spacing:5.702048pt;}
.ws9e{word-spacing:5.894400pt;}
.ws9f{word-spacing:5.918400pt;}
.ws9d{word-spacing:5.928000pt;}
.ws12a{word-spacing:5.946803pt;}
.ws6c{word-spacing:6.000671pt;}
.ws53{word-spacing:6.057261pt;}
.ws141{word-spacing:6.129568pt;}
.ws158{word-spacing:6.150944pt;}
.wsc2{word-spacing:6.156480pt;}
.wsc1{word-spacing:6.172320pt;}
.ws159{word-spacing:6.193696pt;}
.wsb4{word-spacing:6.269796pt;}
.ws182{word-spacing:6.312346pt;}
.ws6a{word-spacing:6.372613pt;}
.ws69{word-spacing:6.453201pt;}
.ws19a{word-spacing:7.077478pt;}
.ws67{word-spacing:7.097901pt;}
.ws11f{word-spacing:7.113933pt;}
.ws144{word-spacing:7.406784pt;}
.ws129{word-spacing:7.537712pt;}
.wse{word-spacing:7.699075pt;}
.ws143{word-spacing:8.085472pt;}
.wsaf{word-spacing:9.085952pt;}
.ws6{word-spacing:9.257740pt;}
.ws139{word-spacing:9.319936pt;}
.wsf9{word-spacing:9.388339pt;}
.wscf{word-spacing:9.552400pt;}
.ws68{word-spacing:9.701498pt;}
.ws17e{word-spacing:9.994547pt;}
.ws132{word-spacing:10.325056pt;}
.ws8c{word-spacing:10.329312pt;}
.ws31{word-spacing:10.584693pt;}
.ws1a2{word-spacing:10.711859pt;}
.ws188{word-spacing:11.142246pt;}
.wsb8{word-spacing:11.362243pt;}
.ws1aa{word-spacing:11.620454pt;}
.ws194{word-spacing:11.633804pt;}
.ws195{word-spacing:11.668275pt;}
.ws17b{word-spacing:11.763917pt;}
.ws104{word-spacing:11.885056pt;}
.ws1a6{word-spacing:11.902797pt;}
.ws18d{word-spacing:11.902933pt;}
.ws1a0{word-spacing:11.903172pt;}
.ws181{word-spacing:11.903573pt;}
.ws18f{word-spacing:11.905297pt;}
.ws18a{word-spacing:11.907243pt;}
.ws176{word-spacing:11.907379pt;}
.ws199{word-spacing:11.909734pt;}
.ws66{word-spacing:11.982002pt;}
.ws1a4{word-spacing:12.003021pt;}
.ws180{word-spacing:12.018381pt;}
.ws184{word-spacing:12.050842pt;}
.ws18b{word-spacing:12.098662pt;}
.ws30{word-spacing:13.177199pt;}
.ws3c{word-spacing:13.230333pt;}
.ws4b{word-spacing:13.424719pt;}
.ws10f{word-spacing:13.428106pt;}
.ws5{word-spacing:13.763148pt;}
.wsb{word-spacing:14.348669pt;}
.wsc{word-spacing:14.356730pt;}
.ws1a8{word-spacing:14.585344pt;}
.ws17f{word-spacing:14.768725pt;}
.ws174{word-spacing:14.776627pt;}
.ws18e{word-spacing:14.777899pt;}
.wsd{word-spacing:15.732893pt;}
.ws28{word-spacing:15.887026pt;}
.ws19d{word-spacing:16.211251pt;}
.wseb{word-spacing:16.526899pt;}
.ws48{word-spacing:16.779356pt;}
.ws198{word-spacing:17.311130pt;}
.ws183{word-spacing:18.219725pt;}
.ws2d{word-spacing:18.437452pt;}
.wsf{word-spacing:24.399002pt;}
._1{margin-left:-10.616218pt;}
._4{margin-left:-6.854269pt;}
._2{margin-left:-5.897859pt;}
._7{margin-left:-4.961273pt;}
._0{margin-left:-3.538739pt;}
._8{margin-left:-2.589028pt;}
._5{margin-left:-1.175671pt;}
._6{width:0.969929pt;}
._b{width:2.045648pt;}
._24{width:3.497598pt;}
._9{width:11.057196pt;}
._c{width:12.472822pt;}
._19{width:13.634046pt;}
._e{width:14.601245pt;}
._10{width:15.589581pt;}
._13{width:16.491678pt;}
._f{width:17.681605pt;}
._18{width:18.922383pt;}
._11{width:20.356997pt;}
._1c{width:21.423718pt;}
._a{width:23.060032pt;}
._14{width:24.972917pt;}
._15{width:26.903972pt;}
._d{width:29.011008pt;}
._26{width:32.248733pt;}
._12{width:33.208667pt;}
._1e{width:35.652825pt;}
._3{width:48.380890pt;}
._25{width:54.993920pt;}
._23{width:78.904320pt;}
._16{width:729.063948pt;}
._21{width:1871.418528pt;}
._1b{width:1891.804768pt;}
._1d{width:2080.015316pt;}
._1a{width:2194.382633pt;}
._22{width:2276.552533pt;}
._17{width:2297.805867pt;}
._20{width:2459.338977pt;}
._1f{width:3027.102570pt;}
.fs1b{font-size:26.566933pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fsa{font-size:40.381867pt;}
.fs3{font-size:41.988267pt;}
.fs9{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fsf{font-size:42.560000pt;}
.fs12{font-size:46.816000pt;}
.fs7{font-size:47.820800pt;}
.fs11{font-size:48.000000pt;}
.fsb{font-size:49.369600pt;}
.fse{font-size:49.829333pt;}
.fs14{font-size:52.800000pt;}
.fs1{font-size:53.133867pt;}
.fs10{font-size:53.440000pt;}
.fs18{font-size:55.328000pt;}
.fs8{font-size:55.365867pt;}
.fsd{font-size:55.680000pt;}
.fs13{font-size:58.784000pt;}
.fsc{font-size:61.990400pt;}
.fs1a{font-size:62.400000pt;}
.fs15{font-size:68.096000pt;}
.fs19{font-size:69.472000pt;}
.fs17{font-size:76.800000pt;}
.fs16{font-size:85.504000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:120.948480pt;}
.y156{bottom:-1314.627627pt;}
.y164{bottom:-1188.924510pt;}
.y163{bottom:-1161.533303pt;}
.y162{bottom:-1134.270353pt;}
.y161{bottom:-1106.879147pt;}
.y160{bottom:-1079.616196pt;}
.y15f{bottom:-1052.224990pt;}
.y15e{bottom:-1024.833783pt;}
.y15d{bottom:-997.570833pt;}
.y15c{bottom:-970.179627pt;}
.y15b{bottom:-917.828267pt;}
.y15a{bottom:-893.123627pt;}
.y159{bottom:-868.547627pt;}
.y158{bottom:-843.971627pt;}
.y157{bottom:-811.970987pt;}
.y19a{bottom:-801.336933pt;}
.y1b9{bottom:-722.602421pt;}
.y1b8{bottom:-705.482917pt;}
.y101{bottom:-690.864093pt;}
.y1b7{bottom:-688.443573pt;}
.y1b6{bottom:-671.324069pt;}
.y1b5{bottom:-654.204565pt;}
.y17e{bottom:-645.302147pt;}
.y1b4{bottom:-637.165221pt;}
.y1b3{bottom:-620.045717pt;}
.y1be{bottom:-613.611600pt;}
.y1b2{bottom:-603.006373pt;}
.y1b1{bottom:-585.886869pt;}
.y1b0{bottom:-568.767365pt;}
.y1af{bottom:-551.728021pt;}
.y1dd{bottom:-534.877088pt;}
.y1ae{bottom:-534.608517pt;}
.y1dc{bottom:-517.757584pt;}
.y1ad{bottom:-517.489013pt;}
.y169{bottom:-505.123627pt;}
.y1db{bottom:-500.718240pt;}
.y1ac{bottom:-500.449669pt;}
.yd7{bottom:-495.404933pt;}
.y1da{bottom:-483.598736pt;}
.y1ab{bottom:-483.330165pt;}
.y119{bottom:-471.824437pt;}
.y1d9{bottom:-466.479232pt;}
.y1aa{bottom:-466.290821pt;}
.y118{bottom:-453.081159pt;}
.y1d8{bottom:-449.439888pt;}
.y1a9{bottom:-449.171317pt;}
.y192{bottom:-439.788551pt;}
.y117{bottom:-434.249705pt;}
.y1d7{bottom:-432.320384pt;}
.y1a8{bottom:-432.051813pt;}
.y191{bottom:-417.637404pt;}
.y116{bottom:-415.418250pt;}
.y1d6{bottom:-415.281040pt;}
.y1a7{bottom:-415.012469pt;}
.y1d5{bottom:-398.161536pt;}
.y1a6{bottom:-397.892965pt;}
.y115{bottom:-396.674972pt;}
.y190{bottom:-395.382049pt;}
.y1d4{bottom:-381.042032pt;}
.y1a5{bottom:-380.853621pt;}
.y177{bottom:-379.420510pt;}
.y114{bottom:-377.843517pt;}
.y18f{bottom:-373.126693pt;}
.y1d3{bottom:-364.002688pt;}
.y1a4{bottom:-363.734117pt;}
.y113{bottom:-359.012063pt;}
.y176{bottom:-352.029303pt;}
.y18e{bottom:-350.975546pt;}
.y1d2{bottom:-346.883184pt;}
.y1a3{bottom:-346.614613pt;}
.y112{bottom:-340.268785pt;}
.y1d1{bottom:-329.763680pt;}
.y1a2{bottom:-329.575269pt;}
.y18d{bottom:-328.720191pt;}
.y175{bottom:-324.766353pt;}
.y111{bottom:-317.124054pt;}
.y1d0{bottom:-312.724336pt;}
.y1a1{bottom:-312.455765pt;}
.y18c{bottom:-306.569044pt;}
.y174{bottom:-297.375147pt;}
.y1cf{bottom:-295.604832pt;}
.y1a0{bottom:-295.416421pt;}
.y18b{bottom:-284.313689pt;}
.y110{bottom:-280.692670pt;}
.y1ce{bottom:-278.565488pt;}
.y19f{bottom:-274.296933pt;}
.y173{bottom:-270.112196pt;}
.y18a{bottom:-262.058333pt;}
.y10f{bottom:-261.861216pt;}
.y1cd{bottom:-261.445984pt;}
.y1cc{bottom:-244.326480pt;}
.y10e{bottom:-243.029761pt;}
.y172{bottom:-242.720990pt;}
.y19e{bottom:-241.577333pt;}
.y189{bottom:-239.907186pt;}
.y1cb{bottom:-227.287136pt;}
.y19d{bottom:-226.136933pt;}
.y10d{bottom:-224.286483pt;}
.y188{bottom:-217.651831pt;}
.ye4{bottom:-216.602000pt;}
.y171{bottom:-215.329783pt;}
.y19c{bottom:-210.776933pt;}
.y1ca{bottom:-210.167632pt;}
.y10c{bottom:-205.455029pt;}
.ye3{bottom:-199.482496pt;}
.y187{bottom:-195.396476pt;}
.y1c9{bottom:-193.128288pt;}
.y19b{bottom:-190.776917pt;}
.y170{bottom:-188.066833pt;}
.y10b{bottom:-186.711750pt;}
.ye2{bottom:-182.443152pt;}
.y1c8{bottom:-176.008784pt;}
.y186{bottom:-173.245329pt;}
.y10a{bottom:-167.880296pt;}
.ye1{bottom:-165.323648pt;}
.y16f{bottom:-160.675627pt;}
.y1c7{bottom:-158.889280pt;}
.y185{bottom:-150.989973pt;}
.y109{bottom:-149.048841pt;}
.ye0{bottom:-148.284304pt;}
.yc1{bottom:-144.619056pt;}
.y1c6{bottom:-141.849936pt;}
.ydf{bottom:-131.164800pt;}
.y108{bottom:-130.304093pt;}
.y1c5{bottom:-124.730432pt;}
.y184{bottom:-108.455187pt;}
.y16e{bottom:-108.324267pt;}
.y1c4{bottom:-107.691088pt;}
.yde{bottom:-98.445733pt;}
.y107{bottom:-94.312973pt;}
.y183{bottom:-88.382667pt;}
.y1c3{bottom:-86.571600pt;}
.y16d{bottom:-83.619627pt;}
.ydd{bottom:-83.005333pt;}
.y106{bottom:-77.328533pt;}
.y182{bottom:-68.414667pt;}
.ydc{bottom:-67.645333pt;}
.yce{bottom:-62.119856pt;}
.y105{bottom:-60.344093pt;}
.y16c{bottom:-59.043627pt;}
.y1c2{bottom:-53.852000pt;}
.ydb{bottom:-52.204933pt;}
.y181{bottom:-48.446667pt;}
.ycd{bottom:-44.302256pt;}
.y104{bottom:-43.448093pt;}
.y1c1{bottom:-38.411600pt;}
.yda{bottom:-36.844933pt;}
.y16b{bottom:-34.467627pt;}
.y180{bottom:-28.374147pt;}
.y103{bottom:-26.552093pt;}
.ycc{bottom:-26.484656pt;}
.y1c0{bottom:-23.051600pt;}
.yd9{bottom:-21.484933pt;}
.y102{bottom:-4.640252pt;}
.ycb{bottom:-3.373930pt;}
.y1bf{bottom:-3.051584pt;}
.y17f{bottom:-2.477731pt;}
.y16a{bottom:-2.466987pt;}
.yd8{bottom:-1.564557pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.044747pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:14.218586pt;}
.y4d{bottom:28.346667pt;}
.y138{bottom:83.289333pt;}
.yfd{bottom:83.333333pt;}
.y23e{bottom:88.065333pt;}
.y24{bottom:91.398667pt;}
.y4c{bottom:92.108000pt;}
.y1ba{bottom:92.608000pt;}
.y205{bottom:92.630667pt;}
.y88{bottom:95.222667pt;}
.y137{bottom:100.026667pt;}
.yfc{bottom:100.070667pt;}
.y23d{bottom:103.408000pt;}
.y23{bottom:107.298667pt;}
.y4b{bottom:108.844000pt;}
.y87{bottom:111.960000pt;}
.y197{bottom:112.544000pt;}
.y165{bottom:113.205333pt;}
.y204{bottom:116.221333pt;}
.y136{bottom:116.764000pt;}
.yfb{bottom:116.808000pt;}
.y23c{bottom:118.750667pt;}
.yd3{bottom:122.905333pt;}
.y22{bottom:123.200000pt;}
.y4a{bottom:125.581333pt;}
.ybd{bottom:127.120000pt;}
.y85{bottom:128.697333pt;}
.y203{bottom:131.842667pt;}
.y153{bottom:133.142667pt;}
.y135{bottom:133.501333pt;}
.y86{bottom:133.518667pt;}
.yfa{bottom:133.545333pt;}
.y23b{bottom:134.093333pt;}
.y21{bottom:139.100000pt;}
.yd2{bottom:140.001333pt;}
.y49{bottom:142.318667pt;}
.ybc{bottom:143.857333pt;}
.y84{bottom:145.434667pt;}
.y23a{bottom:149.436000pt;}
.y134{bottom:150.238667pt;}
.yf9{bottom:150.282667pt;}
.y20{bottom:155.000000pt;}
.y202{bottom:155.434667pt;}
.y17a{bottom:156.809333pt;}
.yd1{bottom:157.097333pt;}
.y48{bottom:159.056000pt;}
.ybb{bottom:160.594667pt;}
.y83{bottom:162.172000pt;}
.y239{bottom:164.778667pt;}
.y133{bottom:166.976000pt;}
.yf8{bottom:167.020000pt;}
.y1f{bottom:170.901333pt;}
.y179{bottom:173.905333pt;}
.yd0{bottom:174.193333pt;}
.y47{bottom:175.793333pt;}
.yba{bottom:177.330667pt;}
.y82{bottom:178.909333pt;}
.y201{bottom:179.026667pt;}
.y238{bottom:180.121333pt;}
.y132{bottom:183.713333pt;}
.yf7{bottom:183.757333pt;}
.y1e{bottom:186.801333pt;}
.y178{bottom:191.001333pt;}
.ycf{bottom:191.289333pt;}
.y46{bottom:192.530667pt;}
.yb9{bottom:194.068000pt;}
.y237{bottom:195.462667pt;}
.y81{bottom:195.646667pt;}
.y131{bottom:200.449333pt;}
.yf6{bottom:200.494667pt;}
.y200{bottom:202.617333pt;}
.y1d{bottom:202.701333pt;}
.y199{bottom:206.743187pt;}
.y45{bottom:209.268000pt;}
.yb8{bottom:210.805333pt;}
.y166{bottom:210.938667pt;}
.ybe{bottom:211.226667pt;}
.y80{bottom:212.384000pt;}
.y198{bottom:215.303067pt;}
.y130{bottom:217.186667pt;}
.yf5{bottom:217.232000pt;}
.y44{bottom:226.005333pt;}
.y236{bottom:226.148000pt;}
.y1ff{bottom:226.209333pt;}
.yb7{bottom:227.542667pt;}
.y7f{bottom:233.106667pt;}
.y12f{bottom:233.924000pt;}
.yf4{bottom:233.969333pt;}
.y235{bottom:241.490667pt;}
.y1fe{bottom:241.830667pt;}
.y43{bottom:242.742667pt;}
.yb6{bottom:244.280000pt;}
.y12e{bottom:250.661333pt;}
.yf3{bottom:250.706667pt;}
.y234{bottom:256.833333pt;}
.y1fd{bottom:257.452000pt;}
.y42{bottom:259.480000pt;}
.yb5{bottom:261.017333pt;}
.y7e{bottom:262.994667pt;}
.y12d{bottom:267.398667pt;}
.yf2{bottom:267.442667pt;}
.y233{bottom:272.176000pt;}
.y1fc{bottom:273.073333pt;}
.y1c{bottom:273.154667pt;}
.y41{bottom:276.217333pt;}
.yb4{bottom:277.754667pt;}
.y7d{bottom:279.732000pt;}
.y12c{bottom:284.136000pt;}
.yf1{bottom:284.180000pt;}
.y232{bottom:287.518667pt;}
.y1b{bottom:289.054667pt;}
.y40{bottom:292.954667pt;}
.yb3{bottom:294.492000pt;}
.y7c{bottom:296.469333pt;}
.y155{bottom:298.300565pt;}
.y12b{bottom:300.873333pt;}
.yf0{bottom:300.917333pt;}
.y196{bottom:301.968000pt;}
.y231{bottom:302.861333pt;}
.y1fb{bottom:304.636000pt;}
.y1a{bottom:304.954667pt;}
.y3f{bottom:309.692000pt;}
.yb2{bottom:311.229333pt;}
.y154{bottom:311.996373pt;}
.y7b{bottom:313.205333pt;}
.y12a{bottom:317.610667pt;}
.yef{bottom:317.654667pt;}
.y230{bottom:318.202667pt;}
.y195{bottom:319.064000pt;}
.y19{bottom:320.856000pt;}
.y1fa{bottom:321.373333pt;}
.y3e{bottom:326.429333pt;}
.yb1{bottom:327.966667pt;}
.y79{bottom:329.942667pt;}
.y22f{bottom:333.545333pt;}
.y129{bottom:334.348000pt;}
.yee{bottom:334.392000pt;}
.y7a{bottom:334.765333pt;}
.y194{bottom:336.160000pt;}
.y1f9{bottom:338.110667pt;}
.y3d{bottom:343.166667pt;}
.yb0{bottom:344.704000pt;}
.y78{bottom:346.680000pt;}
.y22e{bottom:348.888000pt;}
.y128{bottom:351.085333pt;}
.yed{bottom:351.129333pt;}
.y193{bottom:353.256000pt;}
.y18{bottom:354.688000pt;}
.y1f8{bottom:354.848000pt;}
.y3c{bottom:359.904000pt;}
.yaf{bottom:361.441333pt;}
.y77{bottom:363.417333pt;}
.y22d{bottom:364.230667pt;}
.y127{bottom:367.822667pt;}
.yec{bottom:367.866667pt;}
.y17{bottom:370.589333pt;}
.y1f7{bottom:371.585333pt;}
.y17b{bottom:373.193333pt;}
.y3b{bottom:376.641333pt;}
.yae{bottom:378.178667pt;}
.y22c{bottom:379.573333pt;}
.y76{bottom:380.154667pt;}
.y126{bottom:384.560000pt;}
.yeb{bottom:384.604000pt;}
.y16{bottom:386.489333pt;}
.y1f6{bottom:388.322667pt;}
.y3a{bottom:393.378667pt;}
.y1bd{bottom:394.468520pt;}
.yad{bottom:394.916000pt;}
.y152{bottom:395.713333pt;}
.y75{bottom:396.892000pt;}
.y125{bottom:401.297333pt;}
.y1bc{bottom:403.028400pt;}
.y1f5{bottom:405.058667pt;}
.y22b{bottom:410.258667pt;}
.yac{bottom:411.653333pt;}
.y151{bottom:412.450667pt;}
.y74{bottom:413.629333pt;}
.y39{bottom:414.101333pt;}
.yea{bottom:414.440000pt;}
.y100{bottom:418.024039pt;}
.y124{bottom:418.034667pt;}
.y15{bottom:418.330667pt;}
.y1f4{bottom:421.796000pt;}
.y22a{bottom:425.601333pt;}
.yff{bottom:427.439907pt;}
.yab{bottom:428.390667pt;}
.y150{bottom:429.188000pt;}
.y73{bottom:430.366667pt;}
.ye9{bottom:431.536000pt;}
.y14{bottom:434.230667pt;}
.y123{bottom:434.772000pt;}
.y1f3{bottom:438.533333pt;}
.y229{bottom:440.944000pt;}
.yaa{bottom:445.128000pt;}
.y14f{bottom:445.925333pt;}
.y72{bottom:447.104000pt;}
.ye8{bottom:448.632000pt;}
.y122{bottom:451.509333pt;}
.y1f2{bottom:455.270667pt;}
.y228{bottom:456.285333pt;}
.ya9{bottom:461.865333pt;}
.y14e{bottom:462.662667pt;}
.y71{bottom:463.841333pt;}
.ye7{bottom:465.728000pt;}
.y13{bottom:466.070667pt;}
.y121{bottom:468.246667pt;}
.y227{bottom:471.628000pt;}
.y1f1{bottom:472.008000pt;}
.ya8{bottom:478.602667pt;}
.y14d{bottom:479.398667pt;}
.y38{bottom:479.490667pt;}
.y6f{bottom:480.578667pt;}
.y12{bottom:481.972000pt;}
.ye6{bottom:482.824000pt;}
.y120{bottom:484.984000pt;}
.y70{bottom:485.401333pt;}
.y226{bottom:486.970667pt;}
.y1f0{bottom:488.745333pt;}
.ya7{bottom:495.340000pt;}
.y14c{bottom:496.136000pt;}
.y37{bottom:496.785333pt;}
.y6e{bottom:497.316000pt;}
.y11{bottom:497.872000pt;}
.ye5{bottom:499.920000pt;}
.y11f{bottom:501.721333pt;}
.y225{bottom:502.313333pt;}
.y1ef{bottom:505.482667pt;}
.ya6{bottom:512.077333pt;}
.yd6{bottom:512.675187pt;}
.y14b{bottom:512.873333pt;}
.y10{bottom:513.772000pt;}
.y6d{bottom:514.053333pt;}
.y224{bottom:517.656000pt;}
.y11e{bottom:518.458667pt;}
.yd4{bottom:519.857333pt;}
.yd5{bottom:521.235067pt;}
.y1ee{bottom:522.220000pt;}
.y14a{bottom:529.610667pt;}
.yf{bottom:529.673333pt;}
.y36{bottom:530.021333pt;}
.y6c{bottom:530.790667pt;}
.ya5{bottom:532.798667pt;}
.y223{bottom:532.998667pt;}
.y1ed{bottom:538.957333pt;}
.ye{bottom:545.573333pt;}
.y149{bottom:546.348000pt;}
.y35{bottom:547.316000pt;}
.y6b{bottom:547.528000pt;}
.y11d{bottom:548.294667pt;}
.y222{bottom:548.341333pt;}
.y1ec{bottom:555.694667pt;}
.yd{bottom:561.473333pt;}
.ya4{bottom:562.686667pt;}
.y148{bottom:563.085333pt;}
.y221{bottom:563.684000pt;}
.y69{bottom:564.265333pt;}
.y34{bottom:564.610667pt;}
.y11c{bottom:565.390667pt;}
.y6a{bottom:569.086667pt;}
.y1eb{bottom:572.432000pt;}
.yc{bottom:577.374667pt;}
.y68{bottom:578.576000pt;}
.y220{bottom:579.025333pt;}
.ya3{bottom:579.424000pt;}
.y147{bottom:579.822667pt;}
.y67{bottom:581.002667pt;}
.y33{bottom:581.906667pt;}
.y11b{bottom:582.486667pt;}
.y1ea{bottom:589.169333pt;}
.yb{bottom:593.274667pt;}
.y21f{bottom:594.368000pt;}
.ya2{bottom:596.161333pt;}
.y146{bottom:596.560000pt;}
.y66{bottom:597.740000pt;}
.y32{bottom:599.201333pt;}
.y11a{bottom:599.582667pt;}
.y1e9{bottom:605.906667pt;}
.y21e{bottom:609.710667pt;}
.y8{bottom:613.160048pt;}
.y145{bottom:613.297333pt;}
.y65{bottom:614.477333pt;}
.y31{bottom:616.496000pt;}
.ya1{bottom:616.884000pt;}
.yfe{bottom:619.518667pt;}
.y1e8{bottom:622.644000pt;}
.y21d{bottom:625.053333pt;}
.y64{bottom:628.788000pt;}
.y144{bottom:630.034667pt;}
.y63{bottom:631.214667pt;}
.y30{bottom:633.792000pt;}
.y1e7{bottom:639.381333pt;}
.y21c{bottom:640.396000pt;}
.y253{bottom:644.381333pt;}
.ya0{bottom:646.772000pt;}
.y62{bottom:647.952000pt;}
.y2f{bottom:651.086667pt;}
.y21b{bottom:654.000000pt;}
.y21a{bottom:655.738667pt;}
.y1e6{bottom:656.118667pt;}
.y252{bottom:659.724000pt;}
.y9f{bottom:663.509333pt;}
.y61{bottom:664.689333pt;}
.y17d{bottom:665.202009pt;}
.y2e{bottom:668.382667pt;}
.y219{bottom:671.081333pt;}
.y1e5{bottom:672.856000pt;}
.y251{bottom:675.066667pt;}
.y17c{bottom:676.329853pt;}
.y9e{bottom:680.246667pt;}
.y60{bottom:681.426667pt;}
.y2d{bottom:685.677333pt;}
.y218{bottom:686.424000pt;}
.y1e4{bottom:689.593333pt;}
.y250{bottom:690.408000pt;}
.y9d{bottom:696.984000pt;}
.y5f{bottom:698.164000pt;}
.y217{bottom:701.766667pt;}
.y2c{bottom:702.972000pt;}
.y24f{bottom:705.750667pt;}
.y1e3{bottom:706.330667pt;}
.y9c{bottom:713.721333pt;}
.y216{bottom:717.108000pt;}
.y5e{bottom:718.885333pt;}
.y2b{bottom:720.268000pt;}
.y24e{bottom:721.093333pt;}
.y1e2{bottom:723.068000pt;}
.y9b{bottom:730.458667pt;}
.y215{bottom:732.450667pt;}
.y24d{bottom:736.436000pt;}
.y5d{bottom:736.818667pt;}
.y2a{bottom:737.562667pt;}
.y1e1{bottom:743.790667pt;}
.y143{bottom:747.196000pt;}
.y214{bottom:747.793333pt;}
.y9a{bottom:751.181333pt;}
.y24c{bottom:751.778667pt;}
.y29{bottom:754.857333pt;}
.y213{bottom:763.136000pt;}
.y142{bottom:763.933333pt;}
.y5c{bottom:766.706667pt;}
.y24b{bottom:767.121333pt;}
.y1e0{bottom:770.837333pt;}
.y212{bottom:778.478667pt;}
.y141{bottom:780.670667pt;}
.y99{bottom:781.069333pt;}
.y24a{bottom:782.464000pt;}
.y5b{bottom:783.444000pt;}
.y28{bottom:787.254667pt;}
.y1df{bottom:787.932000pt;}
.y211{bottom:793.821333pt;}
.y140{bottom:797.408000pt;}
.y98{bottom:797.806667pt;}
.y5a{bottom:800.181333pt;}
.y27{bottom:801.600000pt;}
.y1de{bottom:805.028000pt;}
.y210{bottom:809.164000pt;}
.yca{bottom:809.740199pt;}
.y249{bottom:813.149333pt;}
.y13f{bottom:814.145333pt;}
.y97{bottom:814.544000pt;}
.y26{bottom:815.946667pt;}
.y59{bottom:816.918667pt;}
.y20f{bottom:824.506667pt;}
.y1bb{bottom:824.965333pt;}
.y248{bottom:828.490667pt;}
.yc9{bottom:829.598824pt;}
.y25{bottom:830.293333pt;}
.y13e{bottom:830.882667pt;}
.y96{bottom:831.281333pt;}
.y58{bottom:833.656000pt;}
.y20e{bottom:839.848000pt;}
.y247{bottom:843.833333pt;}
.y13d{bottom:847.620000pt;}
.y95{bottom:848.018667pt;}
.yc8{bottom:849.457449pt;}
.y57{bottom:850.393333pt;}
.y20d{bottom:855.190667pt;}
.y246{bottom:859.176000pt;}
.y13c{bottom:864.357333pt;}
.y93{bottom:864.754667pt;}
.y56{bottom:867.130667pt;}
.y7{bottom:867.976000pt;}
.yc7{bottom:869.223088pt;}
.y94{bottom:869.577333pt;}
.y20c{bottom:870.533333pt;}
.y245{bottom:874.518667pt;}
.y13b{bottom:881.094667pt;}
.y91{bottom:881.492000pt;}
.y55{bottom:883.868000pt;}
.y6{bottom:884.713333pt;}
.y20b{bottom:885.876000pt;}
.y92{bottom:886.314667pt;}
.yc6{bottom:889.081712pt;}
.y244{bottom:889.861333pt;}
.y13a{bottom:897.832000pt;}
.y90{bottom:898.229333pt;}
.y54{bottom:900.605333pt;}
.y20a{bottom:901.218667pt;}
.y243{bottom:905.204000pt;}
.yc5{bottom:908.847351pt;}
.y8f{bottom:914.966667pt;}
.y209{bottom:916.561333pt;}
.y53{bottom:917.342667pt;}
.y139{bottom:918.553333pt;}
.y242{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.yc4{bottom:928.705976pt;}
.y8e{bottom:931.704000pt;}
.y208{bottom:931.904000pt;}
.y52{bottom:934.080000pt;}
.y241{bottom:935.889333pt;}
.y207{bottom:947.246667pt;}
.y8d{bottom:948.441333pt;}
.yc3{bottom:948.564601pt;}
.y4{bottom:950.616000pt;}
.y51{bottom:950.817333pt;}
.y240{bottom:951.230667pt;}
.y206{bottom:962.589333pt;}
.y8b{bottom:965.178667pt;}
.y23f{bottom:966.573333pt;}
.y50{bottom:967.554667pt;}
.yc2{bottom:968.331789pt;}
.y8c{bottom:970.001333pt;}
.y3{bottom:975.722667pt;}
.y89{bottom:981.916000pt;}
.y4f{bottom:984.290667pt;}
.y8a{bottom:986.738667pt;}
.y1{bottom:1014.377333pt;}
.yc0{bottom:1024.753883pt;}
.ybf{bottom:1034.683344pt;}
.y4e{bottom:1043.020000pt;}
.y168{bottom:1107.804565pt;}
.y167{bottom:1121.500373pt;}
.h7{height:22.673858pt;}
.h39{height:24.122775pt;}
.h15{height:24.760382pt;}
.h13{height:28.023859pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.h1b{height:33.186336pt;}
.ha{height:33.771789pt;}
.hd{height:34.430976pt;}
.h12{height:36.666735pt;}
.h14{height:36.873667pt;}
.hf{height:38.256384pt;}
.hb{height:38.596538pt;}
.hc{height:38.809074pt;}
.h4{height:38.947124pt;}
.h1e{height:39.359687pt;}
.h1d{height:39.588281pt;}
.h28{height:42.308406pt;}
.h24{height:43.295656pt;}
.he{height:43.421286pt;}
.h23{height:43.547109pt;}
.h38{height:43.660390pt;}
.h21{height:44.390625pt;}
.h20{height:44.648438pt;}
.h2{height:45.272024pt;}
.h18{height:45.657238pt;}
.h17{height:45.922406pt;}
.h10{height:48.245551pt;}
.h11{height:48.511220pt;}
.h27{height:48.829687pt;}
.h26{height:49.113281pt;}
.h6{height:49.201961pt;}
.h1f{height:49.421563pt;}
.h36{height:49.708594pt;}
.h32{height:51.167594pt;}
.h31{height:51.464766pt;}
.h1a{height:51.792188pt;}
.h25{height:54.363719pt;}
.h19{height:57.329013pt;}
.h34{height:58.042969pt;}
.h2b{height:62.975500pt;}
.h2a{height:63.341250pt;}
.h33{height:64.248031pt;}
.h5{height:68.861952pt;}
.h2e{height:71.025000pt;}
.h2d{height:71.437500pt;}
.h2c{height:79.074500pt;}
.h3{height:82.003069pt;}
.h37{height:170.234667pt;}
.h35{height:171.012000pt;}
.h29{height:242.884267pt;}
.h22{height:375.679333pt;}
.h1c{height:475.344000pt;}
.h30{height:622.006667pt;}
.h16{height:783.972853pt;}
.h2f{height:784.260267pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:173.968430pt;}
.wb{width:448.517333pt;}
.wa{width:449.296000pt;}
.w6{width:547.198667pt;}
.w4{width:550.724693pt;}
.w9{width:629.775467pt;}
.w8{width:638.254933pt;}
.w7{width:638.596267pt;}
.w5{width:673.744533pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xa5{left:-281.600000pt;}
.xaf{left:-225.626267pt;}
.x5f{left:-202.673653pt;}
.x93{left:-194.239467pt;}
.xb9{left:-177.210667pt;}
.x77{left:-10.763467pt;}
.x95{left:-3.015467pt;}
.x60{left:-1.020377pt;}
.x0{left:0.000000pt;}
.x79{left:17.556533pt;}
.xbb{left:24.949239pt;}
.x3{left:26.021437pt;}
.x96{left:28.136533pt;}
.xb1{left:37.181733pt;}
.xa6{left:41.856000pt;}
.x1{left:48.000000pt;}
.x2{left:51.395545pt;}
.x76{left:59.979467pt;}
.x62{left:76.346667pt;}
.xa4{left:77.552000pt;}
.x6e{left:79.853333pt;}
.xae{left:81.962667pt;}
.x8e{left:83.993333pt;}
.x6f{left:86.500000pt;}
.x7c{left:117.858667pt;}
.x97{left:120.144000pt;}
.x5e{left:121.488000pt;}
.x7d{left:123.836000pt;}
.x98{left:126.121333pt;}
.x63{left:127.282667pt;}
.x84{left:138.302667pt;}
.x85{left:144.950667pt;}
.x64{left:160.529333pt;}
.x7b{left:163.076005pt;}
.x65{left:166.508000pt;}
.x70{left:178.338667pt;}
.x71{left:185.644000pt;}
.xb2{left:190.485333pt;}
.x7a{left:191.396533pt;}
.xb3{left:195.136000pt;}
.x99{left:219.712000pt;}
.x5{left:222.073333pt;}
.x4{left:223.020000pt;}
.x9a{left:227.017333pt;}
.x7e{left:229.606667pt;}
.x66{left:242.409333pt;}
.x86{left:246.905333pt;}
.x67{left:249.714667pt;}
.x8{left:251.365333pt;}
.x87{left:254.210667pt;}
.x4b{left:259.468000pt;}
.x4c{left:273.741333pt;}
.x6{left:275.786667pt;}
.xa7{left:284.526667pt;}
.x7{left:286.825333pt;}
.x1f{left:289.218667pt;}
.xa8{left:290.504000pt;}
.xb4{left:296.449333pt;}
.x20{left:302.501333pt;}
.x29{left:304.109333pt;}
.x9b{left:317.425333pt;}
.x9c{left:322.733333pt;}
.xbe{left:331.868000pt;}
.x19{left:338.904000pt;}
.x3f{left:344.456000pt;}
.x40{left:350.506667pt;}
.x1a{left:352.188000pt;}
.x1b{left:358.709333pt;}
.x7f{left:360.053333pt;}
.xa9{left:361.136000pt;}
.x68{left:364.588000pt;}
.x4d{left:365.710667pt;}
.x52{left:366.978667pt;}
.xaa{left:368.440000pt;}
.x1c{left:371.993333pt;}
.x53{left:373.028000pt;}
.x91{left:388.413333pt;}
.x41{left:390.050667pt;}
.x21{left:391.685333pt;}
.x3c{left:392.588000pt;}
.x8f{left:396.513333pt;}
.x42{left:398.256000pt;}
.x4e{left:400.974667pt;}
.xc1{left:402.097333pt;}
.x22{left:404.968000pt;}
.x3d{left:405.870667pt;}
.xb5{left:407.066667pt;}
.x23{left:408.356000pt;}
.x90{left:409.921333pt;}
.xb6{left:414.372000pt;}
.x92{left:418.368000pt;}
.x57{left:419.924000pt;}
.x24{left:421.638667pt;}
.x88{left:425.277333pt;}
.x89{left:429.258667pt;}
.x58{left:433.206667pt;}
.x33{left:439.877333pt;}
.x34{left:445.928000pt;}
.xba{left:449.027046pt;}
.x80{left:451.033333pt;}
.x81{left:458.337333pt;}
.xf{left:463.045333pt;}
.x59{left:466.006667pt;}
.xd{left:467.962667pt;}
.x10{left:469.686667pt;}
.x69{left:471.805333pt;}
.x11{left:473.024000pt;}
.xe{left:474.604000pt;}
.xab{left:475.689333pt;}
.x30{left:477.752000pt;}
.x12{left:479.665333pt;}
.xa0{left:481.472000pt;}
.x72{left:493.062667pt;}
.xa1{left:494.756000pt;}
.x49{left:501.832000pt;}
.x5c{left:503.732000pt;}
.x73{left:505.868000pt;}
.x4f{left:507.317333pt;}
.x4a{left:510.036000pt;}
.x8a{left:511.692000pt;}
.x8b{left:515.672000pt;}
.x5d{left:517.016000pt;}
.x9e{left:522.668000pt;}
.x46{left:539.861333pt;}
.x2c{left:542.629333pt;}
.x94{left:549.713202pt;}
.x6a{left:553.353333pt;}
.x47{left:554.674667pt;}
.x61{left:555.775099pt;}
.x6b{left:559.330667pt;}
.x50{left:561.110667pt;}
.xbc{left:562.058667pt;}
.x13{left:564.073333pt;}
.x17{left:565.830667pt;}
.x51{left:567.161333pt;}
.x14{left:570.716000pt;}
.x82{left:572.093333pt;}
.x9d{left:576.993333pt;}
.x31{left:578.050667pt;}
.x18{left:579.114667pt;}
.x32{left:584.100000pt;}
.x35{left:590.460000pt;}
.xbf{left:591.558667pt;}
.xb7{left:594.028000pt;}
.x74{left:594.920000pt;}
.x36{left:596.510667pt;}
.x5a{left:604.118667pt;}
.x75{left:608.124000pt;}
.x8c{left:613.066667pt;}
.x25{left:615.512000pt;}
.x9f{left:617.812000pt;}
.x8d{left:620.372000pt;}
.xb0{left:627.586827pt;}
.x26{left:628.796000pt;}
.x6c{left:631.173333pt;}
.x2d{left:632.896000pt;}
.x48{left:634.346667pt;}
.x6d{left:635.824000pt;}
.x2e{left:639.332000pt;}
.x3a{left:649.104000pt;}
.xa2{left:650.197333pt;}
.xac{left:652.752000pt;}
.x27{left:653.757333pt;}
.x1d{left:656.752000pt;}
.xad{left:658.729333pt;}
.x37{left:661.241333pt;}
.x3b{left:662.386667pt;}
.xbd{left:664.306667pt;}
.x1e{left:670.036000pt;}
.x38{left:672.166667pt;}
.x55{left:673.161333pt;}
.x5b{left:674.910667pt;}
.x78{left:678.197037pt;}
.xb8{left:682.457333pt;}
.x83{left:683.574667pt;}
.x56{left:687.052000pt;}
.x39{left:688.746667pt;}
.x9{left:695.237333pt;}
.x3e{left:696.478667pt;}
.xc2{left:700.212000pt;}
.xa{left:701.878667pt;}
.xb{left:705.173333pt;}
.x54{left:707.234667pt;}
.x45{left:710.512000pt;}
.xc{left:711.814667pt;}
.x2a{left:717.805333pt;}
.x2f{left:721.788000pt;}
.x2b{left:723.458667pt;}
.xc3{left:724.461333pt;}
.xc0{left:726.654667pt;}
.x43{left:729.953333pt;}
.x15{left:733.786667pt;}
.x44{left:738.158667pt;}
.x16{left:740.428000pt;}
.xa3{left:742.517333pt;}
.x28{left:744.024000pt;}
}




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