
    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_636ccf3dd1cec11dfa205c66.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_966eae131aa78110af0ab051.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.109863;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_1ff3deb670764d04420d4966.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_502fc792607e6ecc70f946cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.056152;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_d3a83f4f8bb2ffcbcb8c8ed0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_0c9ff9b7c0e0ab5fdc129975.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.725708;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_8bd5a130bca22516fcd67286.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_e92d3c465e3401b12334a00f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_cc003c55fee66448dd027b96.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.689453;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_c35fada8a63b58b566d54997.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_bba4b8b0ae558b0b96c81034.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_492ee08ba2b45ee47636104f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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_5351a32e0134afbcc8e27079.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.224677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224677,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.mb{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249991,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);}
.ma{transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253858,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253861,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.263722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263722,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.263723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263723,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.433342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433342,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.433346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433346,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v10{vertical-align:-117.058320px;}
.vc{vertical-align:-58.536000px;}
.vb{vertical-align:-44.280000px;}
.v8{vertical-align:-33.120000px;}
.v4{vertical-align:-24.120000px;}
.v9{vertical-align:-22.320000px;}
.v2{vertical-align:-9.072000px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.000000px;}
.v7{vertical-align:11.880000px;}
.va{vertical-align:22.320000px;}
.v3{vertical-align:23.994000px;}
.ve{vertical-align:26.952480px;}
.v6{vertical-align:33.120000px;}
.vd{vertical-align:62.981280px;}
.vf{vertical-align:161.979120px;}
.ls71{letter-spacing:-3.610769px;}
.ls67{letter-spacing:-2.949345px;}
.ls6b{letter-spacing:-2.724511px;}
.ls68{letter-spacing:-2.620598px;}
.ls72{letter-spacing:-2.388393px;}
.ls6a{letter-spacing:-1.523718px;}
.ls6c{letter-spacing:-1.470371px;}
.ls2c{letter-spacing:-1.188000px;}
.ls41{letter-spacing:-0.828000px;}
.ls2b{letter-spacing:-0.810000px;}
.ls5c{letter-spacing:-0.720000px;}
.ls35{letter-spacing:-0.486000px;}
.lse{letter-spacing:-0.450000px;}
.ls49{letter-spacing:-0.379080px;}
.ls2a{letter-spacing:-0.378000px;}
.ls29{letter-spacing:-0.324000px;}
.ls76{letter-spacing:-0.300600px;}
.ls15{letter-spacing:-0.216000px;}
.ls63{letter-spacing:-0.192240px;}
.lsd{letter-spacing:-0.180000px;}
.ls48{letter-spacing:-0.168480px;}
.ls60{letter-spacing:-0.167760px;}
.ls10{letter-spacing:-0.162000px;}
.ls46{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.135000px;}
.ls36{letter-spacing:-0.120240px;}
.ls11{letter-spacing:-0.108000px;}
.ls62{letter-spacing:-0.096120px;}
.ls61{letter-spacing:-0.090000px;}
.ls69{letter-spacing:-0.083880px;}
.ls17{letter-spacing:-0.072000px;}
.ls47{letter-spacing:-0.042120px;}
.ls34{letter-spacing:-0.036000px;}
.lsc{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.060120px;}
.ls70{letter-spacing:0.065880px;}
.lsb{letter-spacing:0.072000px;}
.ls5f{letter-spacing:0.083880px;}
.ls2{letter-spacing:0.090000px;}
.ls6{letter-spacing:0.108000px;}
.ls3b{letter-spacing:0.120240px;}
.ls37{letter-spacing:0.126744px;}
.ls0{letter-spacing:0.135000px;}
.ls38{letter-spacing:0.140040px;}
.lsa{letter-spacing:0.144000px;}
.ls75{letter-spacing:0.150984px;}
.ls14{letter-spacing:0.162000px;}
.ls5a{letter-spacing:0.167400px;}
.ls5d{letter-spacing:0.167760px;}
.ls44{letter-spacing:0.168480px;}
.ls1{letter-spacing:0.180000px;}
.ls73{letter-spacing:0.180360px;}
.ls5e{letter-spacing:0.192240px;}
.ls18{letter-spacing:0.203760px;}
.ls12{letter-spacing:0.216000px;}
.ls2d{letter-spacing:0.270000px;}
.ls16{letter-spacing:0.540000px;}
.ls57{letter-spacing:0.612000px;}
.ls6f{letter-spacing:0.672840px;}
.ls43{letter-spacing:0.828000px;}
.ls24{letter-spacing:0.954000px;}
.ls42{letter-spacing:1.620000px;}
.ls39{letter-spacing:1.998000px;}
.ls25{letter-spacing:2.700000px;}
.ls1a{letter-spacing:2.880000px;}
.ls20{letter-spacing:3.078000px;}
.ls4b{letter-spacing:3.132000px;}
.ls3d{letter-spacing:3.204000px;}
.ls1c{letter-spacing:3.240000px;}
.ls4{letter-spacing:3.384000px;}
.ls2e{letter-spacing:3.402000px;}
.ls1f{letter-spacing:3.492000px;}
.ls4c{letter-spacing:3.564000px;}
.ls8{letter-spacing:3.600000px;}
.ls5{letter-spacing:3.708000px;}
.ls3{letter-spacing:3.744000px;}
.ls3f{letter-spacing:3.960000px;}
.ls56{letter-spacing:3.978000px;}
.ls54{letter-spacing:4.158000px;}
.ls40{letter-spacing:4.860000px;}
.ls1b{letter-spacing:4.914000px;}
.ls27{letter-spacing:5.562000px;}
.ls3a{letter-spacing:6.318000px;}
.ls2f{letter-spacing:6.642000px;}
.ls5b{letter-spacing:7.020000px;}
.ls9{letter-spacing:7.398000px;}
.ls22{letter-spacing:7.722000px;}
.ls4e{letter-spacing:8.100000px;}
.ls1d{letter-spacing:8.478000px;}
.ls3e{letter-spacing:8.802000px;}
.ls58{letter-spacing:9.104400px;}
.ls23{letter-spacing:9.180000px;}
.ls30{letter-spacing:9.558000px;}
.ls53{letter-spacing:9.882000px;}
.ls4d{letter-spacing:10.638000px;}
.ls32{letter-spacing:10.962000px;}
.ls50{letter-spacing:13.878000px;}
.ls52{letter-spacing:14.580000px;}
.ls59{letter-spacing:16.362000px;}
.ls51{letter-spacing:17.118000px;}
.ls28{letter-spacing:18.198000px;}
.ls26{letter-spacing:19.278000px;}
.ls21{letter-spacing:21.240000px;}
.ls4f{letter-spacing:21.438000px;}
.ls33{letter-spacing:22.086000px;}
.ls3c{letter-spacing:22.518000px;}
.ls45{letter-spacing:23.216400px;}
.ls55{letter-spacing:25.002000px;}
.ls19{letter-spacing:27.162000px;}
.ls1e{letter-spacing:32.081400px;}
.ls4a{letter-spacing:34.020000px;}
.ls31{letter-spacing:35.640000px;}
.ls65{letter-spacing:117.229542px;}
.ls6e{letter-spacing:172.912071px;}
.ls64{letter-spacing:226.912305px;}
.ls6d{letter-spacing:242.036177px;}
.ls66{letter-spacing:250.020000px;}
.ls74{letter-spacing:1313.644680px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15c{word-spacing:-158.354247px;}
.ws14b{word-spacing:-96.120000px;}
.ws15e{word-spacing:-72.000000px;}
.ws160{word-spacing:-65.880000px;}
.ws110{word-spacing:-54.000000px;}
.ws155{word-spacing:-30.132000px;}
.ws14d{word-spacing:-29.916000px;}
.ws14a{word-spacing:-26.625240px;}
.ws14c{word-spacing:-26.529120px;}
.ws147{word-spacing:-25.020000px;}
.ws149{word-spacing:-24.930000px;}
.ws144{word-spacing:-23.486400px;}
.ws164{word-spacing:-23.469624px;}
.ws143{word-spacing:-23.402520px;}
.ws145{word-spacing:-23.318640px;}
.ws151{word-spacing:-23.234760px;}
.ws146{word-spacing:-23.150880px;}
.ws15a{word-spacing:-20.016000px;}
.ws154{word-spacing:-19.944000px;}
.ws15f{word-spacing:-19.872000px;}
.ws161{word-spacing:-18.380520px;}
.ws148{word-spacing:-16.833600px;}
.ws8e{word-spacing:-16.773480px;}
.ws8f{word-spacing:-16.713360px;}
.ws90{word-spacing:-16.593120px;}
.wsd9{word-spacing:-15.120000px;}
.ws5{word-spacing:-15.012000px;}
.ws6{word-spacing:-14.904000px;}
.ws8{word-spacing:-14.850000px;}
.ws3f{word-spacing:-13.770000px;}
.wsa{word-spacing:-13.662000px;}
.ws3c{word-spacing:-13.608000px;}
.ws9{word-spacing:-13.500000px;}
.ws39{word-spacing:-13.392000px;}
.wsbb{word-spacing:-13.338000px;}
.ws3d{word-spacing:-13.284000px;}
.ws3a{word-spacing:-13.176000px;}
.wsd8{word-spacing:-13.122000px;}
.ws122{word-spacing:-13.014000px;}
.ws3{word-spacing:-12.690000px;}
.ws4{word-spacing:-12.510000px;}
.ws2{word-spacing:-12.375000px;}
.ws0{word-spacing:-12.330000px;}
.ws3e{word-spacing:-12.312000px;}
.ws1{word-spacing:-12.060000px;}
.ws10f{word-spacing:-11.877840px;}
.wsf0{word-spacing:-11.709360px;}
.wsef{word-spacing:-11.667240px;}
.wsf2{word-spacing:-11.540880px;}
.wsf3{word-spacing:-11.330280px;}
.wsf1{word-spacing:-10.530000px;}
.ws7{word-spacing:-10.152000px;}
.wsc{word-spacing:-10.080000px;}
.wsb{word-spacing:-10.008000px;}
.ws159{word-spacing:-9.297933px;}
.ws123{word-spacing:-9.072000px;}
.ws3b{word-spacing:-9.000000px;}
.ws8d{word-spacing:-8.964000px;}
.ws40{word-spacing:-8.892000px;}
.wsee{word-spacing:-8.856000px;}
.ws121{word-spacing:-8.280000px;}
.wsd7{word-spacing:-8.172000px;}
.ws162{word-spacing:-1.991085px;}
.ws165{word-spacing:-0.901800px;}
.ws166{word-spacing:-0.724680px;}
.ws2f{word-spacing:-0.540000px;}
.wsf{word-spacing:-0.450000px;}
.ws36{word-spacing:-0.432000px;}
.wsbf{word-spacing:-0.240480px;}
.ws19{word-spacing:-0.216000px;}
.ws1f{word-spacing:-0.180360px;}
.ws11{word-spacing:-0.180000px;}
.ws10a{word-spacing:-0.168480px;}
.ws163{word-spacing:-0.167760px;}
.ws2e{word-spacing:-0.162000px;}
.ws37{word-spacing:-0.144000px;}
.wsb6{word-spacing:-0.126744px;}
.ws10c{word-spacing:-0.126360px;}
.ws9f{word-spacing:-0.108000px;}
.ws38{word-spacing:-0.101880px;}
.ws10{word-spacing:-0.090000px;}
.ws35{word-spacing:-0.072000px;}
.ws167{word-spacing:-0.065880px;}
.ws20{word-spacing:-0.060120px;}
.wsc3{word-spacing:-0.054000px;}
.ws33{word-spacing:-0.036000px;}
.wsd{word-spacing:0.000000px;}
.ws115{word-spacing:0.042120px;}
.ws9c{word-spacing:0.054000px;}
.ws1e{word-spacing:0.108000px;}
.wsb8{word-spacing:0.120240px;}
.ws34{word-spacing:0.144000px;}
.ws15{word-spacing:0.162000px;}
.ws10d{word-spacing:0.168480px;}
.ws10b{word-spacing:0.210600px;}
.ws2a{word-spacing:0.216000px;}
.ws13{word-spacing:0.270000px;}
.wse{word-spacing:0.288000px;}
.wscb{word-spacing:0.324000px;}
.ws97{word-spacing:0.378000px;}
.ws10e{word-spacing:0.379080px;}
.wsaa{word-spacing:0.432000px;}
.wsa8{word-spacing:0.486000px;}
.ws12{word-spacing:0.540000px;}
.wsc9{word-spacing:0.594000px;}
.wsc5{word-spacing:0.648000px;}
.ws12c{word-spacing:0.702000px;}
.ws42{word-spacing:0.918000px;}
.wsca{word-spacing:1.026000px;}
.ws4c{word-spacing:1.242000px;}
.ws16{word-spacing:1.350000px;}
.ws102{word-spacing:1.512000px;}
.ws31{word-spacing:1.620000px;}
.ws7d{word-spacing:1.728000px;}
.ws7e{word-spacing:1.836000px;}
.ws86{word-spacing:1.890000px;}
.ws5d{word-spacing:1.998000px;}
.wsc7{word-spacing:2.106000px;}
.ws13a{word-spacing:2.160000px;}
.ws84{word-spacing:2.322000px;}
.ws103{word-spacing:2.430000px;}
.wsdd{word-spacing:2.538000px;}
.ws71{word-spacing:2.592000px;}
.ws72{word-spacing:2.700000px;}
.ws9d{word-spacing:2.808000px;}
.wsfc{word-spacing:2.916000px;}
.ws64{word-spacing:2.970000px;}
.ws21{word-spacing:3.078000px;}
.ws18{word-spacing:3.186000px;}
.ws78{word-spacing:3.240000px;}
.ws92{word-spacing:3.294000px;}
.ws88{word-spacing:3.402000px;}
.wsbe{word-spacing:3.510000px;}
.ws98{word-spacing:3.618000px;}
.wsbd{word-spacing:3.672000px;}
.ws89{word-spacing:3.780000px;}
.ws136{word-spacing:3.888000px;}
.ws13c{word-spacing:3.996000px;}
.ws117{word-spacing:4.050000px;}
.ws73{word-spacing:4.158000px;}
.ws119{word-spacing:4.320000px;}
.wsa2{word-spacing:4.374000px;}
.ws6c{word-spacing:4.482000px;}
.wsba{word-spacing:4.590000px;}
.wsf6{word-spacing:4.698000px;}
.wsea{word-spacing:4.752000px;}
.wsa3{word-spacing:4.860000px;}
.wse9{word-spacing:4.968000px;}
.wsa9{word-spacing:5.076000px;}
.ws27{word-spacing:5.130000px;}
.ws50{word-spacing:5.238000px;}
.ws17{word-spacing:5.346000px;}
.ws57{word-spacing:5.400000px;}
.ws26{word-spacing:5.454000px;}
.ws41{word-spacing:5.562000px;}
.ws4d{word-spacing:5.940000px;}
.wsac{word-spacing:6.210000px;}
.ws53{word-spacing:6.318000px;}
.wsab{word-spacing:6.426000px;}
.wsd2{word-spacing:6.534000px;}
.ws9b{word-spacing:6.642000px;}
.ws44{word-spacing:7.020000px;}
.ws1d{word-spacing:7.128000px;}
.ws6e{word-spacing:7.290000px;}
.ws28{word-spacing:7.398000px;}
.wsf4{word-spacing:7.506000px;}
.ws6a{word-spacing:7.722000px;}
.wscf{word-spacing:7.776000px;}
.ws6b{word-spacing:7.830000px;}
.ws25{word-spacing:7.938000px;}
.ws24{word-spacing:8.100000px;}
.wsa4{word-spacing:8.208000px;}
.wsfe{word-spacing:8.316000px;}
.ws4a{word-spacing:8.478000px;}
.ws1a{word-spacing:8.586000px;}
.wse7{word-spacing:8.640000px;}
.ws76{word-spacing:8.694000px;}
.wse0{word-spacing:8.802000px;}
.ws1c{word-spacing:8.910000px;}
.ws101{word-spacing:9.018000px;}
.ws62{word-spacing:9.072000px;}
.wse6{word-spacing:9.126000px;}
.ws6d{word-spacing:9.180000px;}
.ws118{word-spacing:9.396000px;}
.wsff{word-spacing:9.450000px;}
.ws67{word-spacing:9.558000px;}
.wsc8{word-spacing:9.720000px;}
.ws61{word-spacing:9.774000px;}
.wsb3{word-spacing:9.882000px;}
.ws128{word-spacing:10.098000px;}
.ws8b{word-spacing:10.260000px;}
.ws54{word-spacing:10.638000px;}
.wsd5{word-spacing:10.854000px;}
.wsb5{word-spacing:10.962000px;}
.wsf8{word-spacing:11.070000px;}
.wsde{word-spacing:11.178000px;}
.wsa5{word-spacing:11.232000px;}
.wsdf{word-spacing:11.340000px;}
.ws69{word-spacing:11.610000px;}
.ws68{word-spacing:11.718000px;}
.ws91{word-spacing:11.934000px;}
.ws81{word-spacing:12.042000px;}
.wsf7{word-spacing:12.096000px;}
.ws63{word-spacing:12.150000px;}
.ws4b{word-spacing:12.420000px;}
.ws1b{word-spacing:12.528000px;}
.ws12d{word-spacing:12.636000px;}
.ws80{word-spacing:12.798000px;}
.ws7f{word-spacing:12.960000px;}
.ws12e{word-spacing:13.014000px;}
.ws49{word-spacing:13.122000px;}
.ws107{word-spacing:13.230000px;}
.ws7a{word-spacing:13.338000px;}
.ws65{word-spacing:13.500000px;}
.ws8c{word-spacing:13.716000px;}
.ws83{word-spacing:13.878000px;}
.wsce{word-spacing:14.040000px;}
.ws124{word-spacing:14.094000px;}
.wsae{word-spacing:14.188320px;}
.ws5a{word-spacing:14.202000px;}
.ws125{word-spacing:14.256000px;}
.wsfb{word-spacing:14.418000px;}
.wse4{word-spacing:14.472000px;}
.wse8{word-spacing:14.526000px;}
.ws85{word-spacing:14.580000px;}
.ws127{word-spacing:14.688000px;}
.wsfa{word-spacing:14.796000px;}
.wsf5{word-spacing:14.958000px;}
.ws29{word-spacing:15.282000px;}
.ws8a{word-spacing:15.660000px;}
.wse5{word-spacing:15.768000px;}
.wsd1{word-spacing:15.876000px;}
.ws126{word-spacing:15.930000px;}
.wsc0{word-spacing:16.038000px;}
.ws9a{word-spacing:16.146000px;}
.wsad{word-spacing:16.362000px;}
.ws14{word-spacing:16.470000px;}
.ws139{word-spacing:16.578000px;}
.ws23{word-spacing:16.740000px;}
.ws22{word-spacing:17.118000px;}
.ws9e{word-spacing:17.226000px;}
.ws48{word-spacing:17.280000px;}
.ws32{word-spacing:17.442000px;}
.wsd3{word-spacing:17.658000px;}
.ws47{word-spacing:17.820000px;}
.ws87{word-spacing:18.198000px;}
.wsbc{word-spacing:18.360000px;}
.ws94{word-spacing:18.414000px;}
.ws99{word-spacing:18.522000px;}
.ws4f{word-spacing:18.792000px;}
.ws4e{word-spacing:18.900000px;}
.ws13b{word-spacing:19.116000px;}
.ws59{word-spacing:19.278000px;}
.ws56{word-spacing:19.494000px;}
.ws2c{word-spacing:19.602000px;}
.wsd0{word-spacing:19.872000px;}
.wsdb{word-spacing:19.980000px;}
.wsfd{word-spacing:20.250000px;}
.wsed{word-spacing:20.358000px;}
.ws2d{word-spacing:20.682000px;}
.ws75{word-spacing:20.952000px;}
.ws74{word-spacing:21.060000px;}
.ws114{word-spacing:21.168000px;}
.ws11c{word-spacing:21.330000px;}
.wsd4{word-spacing:21.438000px;}
.ws11f{word-spacing:21.600000px;}
.ws105{word-spacing:21.762000px;}
.ws30{word-spacing:22.140000px;}
.wsa0{word-spacing:22.518000px;}
.wsdc{word-spacing:22.626000px;}
.ws11d{word-spacing:22.680000px;}
.ws5b{word-spacing:23.058000px;}
.ws55{word-spacing:23.112000px;}
.ws77{word-spacing:23.220000px;}
.ws5c{word-spacing:23.598000px;}
.ws5e{word-spacing:23.922000px;}
.wscd{word-spacing:24.030000px;}
.ws66{word-spacing:24.300000px;}
.ws116{word-spacing:24.408000px;}
.ws46{word-spacing:24.678000px;}
.ws129{word-spacing:25.002000px;}
.ws12a{word-spacing:25.218000px;}
.wsc6{word-spacing:25.758000px;}
.ws132{word-spacing:25.920000px;}
.wsaf{word-spacing:26.082000px;}
.wse1{word-spacing:26.190000px;}
.ws120{word-spacing:26.298000px;}
.wsa6{word-spacing:26.460000px;}
.ws51{word-spacing:26.730000px;}
.ws133{word-spacing:26.838000px;}
.ws13e{word-spacing:27.000000px;}
.ws109{word-spacing:27.108000px;}
.ws43{word-spacing:27.162000px;}
.ws108{word-spacing:27.270000px;}
.ws13d{word-spacing:27.378000px;}
.ws95{word-spacing:27.540000px;}
.ws96{word-spacing:27.702000px;}
.ws131{word-spacing:27.756000px;}
.ws93{word-spacing:27.918000px;}
.ws137{word-spacing:28.080000px;}
.ws138{word-spacing:28.242000px;}
.ws11e{word-spacing:28.890000px;}
.ws60{word-spacing:29.322000px;}
.wsf9{word-spacing:29.700000px;}
.ws79{word-spacing:30.402000px;}
.ws142{word-spacing:30.996000px;}
.ws52{word-spacing:31.482000px;}
.wsb0{word-spacing:31.698000px;}
.ws100{word-spacing:31.860000px;}
.ws58{word-spacing:32.076000px;}
.ws2b{word-spacing:32.238000px;}
.wsd6{word-spacing:32.562000px;}
.ws82{word-spacing:32.940000px;}
.wsb2{word-spacing:33.318000px;}
.wsb1{word-spacing:33.426000px;}
.wsa7{word-spacing:33.642000px;}
.ws141{word-spacing:33.858000px;}
.wsb4{word-spacing:34.020000px;}
.wsec{word-spacing:35.316000px;}
.wseb{word-spacing:35.478000px;}
.ws70{word-spacing:35.586000px;}
.ws6f{word-spacing:35.802000px;}
.ws106{word-spacing:36.396000px;}
.ws5f{word-spacing:36.558000px;}
.wsda{word-spacing:36.882000px;}
.wsc4{word-spacing:38.070000px;}
.ws11b{word-spacing:38.340000px;}
.wse3{word-spacing:38.556000px;}
.wse2{word-spacing:38.718000px;}
.wscc{word-spacing:39.420000px;}
.wsc2{word-spacing:44.820000px;}
.ws12f{word-spacing:47.682000px;}
.ws11a{word-spacing:48.762000px;}
.wsb7{word-spacing:51.300000px;}
.ws7c{word-spacing:52.002000px;}
.wsa1{word-spacing:52.380000px;}
.wsc1{word-spacing:54.432000px;}
.ws104{word-spacing:54.540000px;}
.ws134{word-spacing:55.242000px;}
.ws7b{word-spacing:57.780000px;}
.ws140{word-spacing:61.722000px;}
.ws13f{word-spacing:62.100000px;}
.wsb9{word-spacing:63.907560px;}
.ws113{word-spacing:70.038000px;}
.ws111{word-spacing:92.718000px;}
.ws112{word-spacing:92.880000px;}
.ws12b{word-spacing:93.042000px;}
.ws130{word-spacing:95.580000px;}
.ws153{word-spacing:98.154044px;}
.ws152{word-spacing:105.402588px;}
.ws135{word-spacing:116.802000px;}
.ws150{word-spacing:123.471781px;}
.ws158{word-spacing:124.678795px;}
.ws156{word-spacing:129.479123px;}
.ws15d{word-spacing:130.717128px;}
.ws157{word-spacing:138.604071px;}
.ws45{word-spacing:161.838000px;}
.ws14f{word-spacing:189.989314px;}
.ws14e{word-spacing:204.019770px;}
.ws15b{word-spacing:219.225285px;}
._2e{margin-left:-8.024400px;}
._21{margin-left:-6.349716px;}
._32{margin-left:-5.184000px;}
._2{margin-left:-1.350000px;}
._1{width:1.080000px;}
._8{width:2.664000px;}
._3{width:3.870000px;}
._14{width:5.112000px;}
._c{width:6.120000px;}
._1a{width:8.100000px;}
._4{width:9.180000px;}
._13{width:10.621800px;}
._18{width:12.241800px;}
._16{width:14.868000px;}
._6{width:17.226000px;}
._a{width:18.414000px;}
._5{width:20.466000px;}
._f{width:22.086000px;}
._15{width:23.238000px;}
._9{width:24.408000px;}
._17{width:25.704000px;}
._b{width:27.540000px;}
._1f{width:28.980000px;}
._1e{width:30.240000px;}
._d{width:32.472000px;}
._1d{width:33.534000px;}
._19{width:38.448000px;}
._12{width:43.524000px;}
._11{width:44.874000px;}
._e{width:50.814000px;}
._20{width:62.316000px;}
._10{width:64.347840px;}
._1c{width:72.233280px;}
._1b{width:81.815760px;}
._25{width:111.480941px;}
._24{width:121.665066px;}
._26{width:144.180000px;}
._28{width:148.896667px;}
._29{width:157.372922px;}
._2d{width:159.047487px;}
._7{width:161.460000px;}
._2a{width:166.896000px;}
._2f{width:179.325360px;}
._0{width:198.000000px;}
._2b{width:233.037911px;}
._23{width:237.164790px;}
._31{width:348.400440px;}
._2c{width:576.777503px;}
._27{width:849.816000px;}
._30{width:915.459480px;}
._22{width:1197.396000px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,0,153);}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:24.186000px;}
.fsc{font-size:27.000000px;}
.fs16{font-size:29.525400px;}
.fs5{font-size:36.000000px;}
.fs1c{font-size:37.911000px;}
.fs13{font-size:41.596800px;}
.fsb{font-size:42.120000px;}
.fs17{font-size:43.246200px;}
.fs3{font-size:45.000000px;}
.fs1d{font-size:46.281000px;}
.fs11{font-size:46.815000px;}
.fs2{font-size:47.880000px;}
.fsa{font-size:50.469951px;}
.fs14{font-size:50.780400px;}
.fs4{font-size:54.000000px;}
.fs9{font-size:56.920998px;}
.fs12{font-size:57.150600px;}
.fs18{font-size:57.313800px;}
.fs6{font-size:60.120000px;}
.fs8{font-size:63.372044px;}
.fs1e{font-size:65.880000px;}
.fs19{font-size:69.967200px;}
.fs0{font-size:72.000000px;}
.fs1a{font-size:79.643400px;}
.fse{font-size:83.880000px;}
.fsf{font-size:90.000000px;}
.fs10{font-size:96.120000px;}
.fs7{font-size:101.880000px;}
.fsd{font-size:108.000000px;}
.fs1b{font-size:132.120000px;}
.fs1{font-size:144.000000px;}
.y52{bottom:-11.970000px;}
.y263{bottom:-3.237600px;}
.y258{bottom:-1.302600px;}
.y0{bottom:0.000000px;}
.y41{bottom:2.340000px;}
.y1d9{bottom:3.600000px;}
.y24d{bottom:4.823250px;}
.y245{bottom:5.481600px;}
.y4b{bottom:6.210000px;}
.y4c{bottom:6.480000px;}
.y249{bottom:7.300950px;}
.y50{bottom:11.340000px;}
.y1bf{bottom:11.520000px;}
.y253{bottom:11.700450px;}
.y38{bottom:12.060000px;}
.y262{bottom:13.134600px;}
.y4e{bottom:13.500000px;}
.y49{bottom:14.310000px;}
.y40{bottom:14.400000px;}
.y161{bottom:21.599850px;}
.y151{bottom:21.600000px;}
.y257{bottom:23.446350px;}
.y248{bottom:25.260150px;}
.y3f{bottom:26.370000px;}
.y37{bottom:27.000000px;}
.y1bd{bottom:31.770000px;}
.y47{bottom:36.000000px;}
.y3e{bottom:38.340000px;}
.y150{bottom:39.600000px;}
.y36{bottom:44.910000px;}
.y3c{bottom:50.400000px;}
.y1bc{bottom:52.020000px;}
.y14f{bottom:57.600000px;}
.y35{bottom:60.030000px;}
.y3b{bottom:62.370000px;}
.y1bb{bottom:72.270000px;}
.y1d4{bottom:75.600000px;}
.y1b9{bottom:92.520000px;}
.y1b7{bottom:93.604500px;}
.y255{bottom:94.302000px;}
.y243{bottom:94.309350px;}
.y238{bottom:94.320000px;}
.y1ec{bottom:104.800500px;}
.y2b{bottom:105.309000px;}
.yd6{bottom:105.484500px;}
.yf0{bottom:105.489000px;}
.y176{bottom:105.498000px;}
.y8a{bottom:105.511500px;}
.y15a{bottom:105.516000px;}
.y20b{bottom:105.525000px;}
.y145{bottom:105.529500px;}
.yb4{bottom:105.565500px;}
.y197{bottom:105.588000px;}
.y1b6{bottom:111.600000px;}
.y1eb{bottom:122.796000px;}
.y2a{bottom:123.304500px;}
.y33{bottom:123.345000px;}
.yd5{bottom:123.480000px;}
.yef{bottom:123.484500px;}
.y175{bottom:123.493500px;}
.y11e{bottom:123.502500px;}
.y89{bottom:123.507000px;}
.y20a{bottom:123.520500px;}
.y144{bottom:123.525000px;}
.yb3{bottom:123.561000px;}
.y196{bottom:123.583500px;}
.y3a{bottom:127.710000px;}
.y1b5{bottom:129.600000px;}
.y55{bottom:130.500000px;}
.y56{bottom:130.590000px;}
.y42{bottom:134.010000px;}
.y1ea{bottom:140.791500px;}
.y29{bottom:141.318000px;}
.y32{bottom:141.340500px;}
.yd4{bottom:141.480000px;}
.y174{bottom:141.489000px;}
.y11d{bottom:141.498000px;}
.y88{bottom:141.502500px;}
.y209{bottom:141.516000px;}
.y143{bottom:141.520500px;}
.yb2{bottom:141.556500px;}
.y195{bottom:141.579000px;}
.y54{bottom:145.530000px;}
.y24e{bottom:155.119200px;}
.y1e9{bottom:158.787000px;}
.y28{bottom:159.313500px;}
.y31{bottom:159.336000px;}
.yee{bottom:159.480000px;}
.y173{bottom:159.484500px;}
.y11c{bottom:159.493500px;}
.y87{bottom:159.498000px;}
.y208{bottom:159.511500px;}
.y142{bottom:159.516000px;}
.y237{bottom:159.520500px;}
.yb1{bottom:159.552000px;}
.y194{bottom:159.574500px;}
.y44{bottom:164.070000px;}
.y1e8{bottom:176.782500px;}
.y27{bottom:177.309000px;}
.y30{bottom:177.331500px;}
.yd3{bottom:177.480000px;}
.y172{bottom:177.484500px;}
.y11b{bottom:177.489000px;}
.y86{bottom:177.493500px;}
.y207{bottom:177.507000px;}
.y141{bottom:177.511500px;}
.y236{bottom:177.516000px;}
.yb0{bottom:177.547500px;}
.y193{bottom:177.570000px;}
.y1b4{bottom:183.564000px;}
.y1e7{bottom:194.778000px;}
.y26{bottom:195.304500px;}
.y2f{bottom:195.327000px;}
.y11a{bottom:195.484500px;}
.y85{bottom:195.489000px;}
.y206{bottom:195.502500px;}
.y140{bottom:195.507000px;}
.y235{bottom:195.511500px;}
.yaf{bottom:195.543000px;}
.y192{bottom:195.565500px;}
.y1ca{bottom:195.570000px;}
.y1e6{bottom:212.773500px;}
.y25{bottom:213.300000px;}
.y2e{bottom:213.322500px;}
.yd2{bottom:213.480000px;}
.y84{bottom:213.484500px;}
.y205{bottom:213.498000px;}
.y13f{bottom:213.502500px;}
.yed{bottom:213.507000px;}
.y21e{bottom:213.516000px;}
.y191{bottom:213.561000px;}
.y1c9{bottom:217.170000px;}
.y119{bottom:219.510000px;}
.y1e5{bottom:230.769000px;}
.y24{bottom:231.300000px;}
.y2d{bottom:231.318000px;}
.y118{bottom:231.480000px;}
.y83{bottom:231.484500px;}
.y204{bottom:231.493500px;}
.y159{bottom:231.498000px;}
.yec{bottom:231.502500px;}
.y21d{bottom:231.511500px;}
.yae{bottom:231.547500px;}
.y190{bottom:231.556500px;}
.y1c8{bottom:231.570000px;}
.y2c{bottom:249.313500px;}
.y117{bottom:249.480000px;}
.y203{bottom:249.489000px;}
.y171{bottom:249.493500px;}
.y82{bottom:249.498000px;}
.y13e{bottom:249.507000px;}
.yad{bottom:249.543000px;}
.y18f{bottom:249.552000px;}
.y1c7{bottom:253.170000px;}
.y1e4{bottom:266.773500px;}
.y202{bottom:267.484500px;}
.y170{bottom:267.489000px;}
.y81{bottom:267.493500px;}
.y13d{bottom:267.502500px;}
.yac{bottom:267.538500px;}
.y18e{bottom:267.547500px;}
.y1c6{bottom:267.570000px;}
.y23{bottom:267.840000px;}
.y1e3{bottom:284.769000px;}
.y201{bottom:285.480000px;}
.y116{bottom:285.484500px;}
.y80{bottom:285.489000px;}
.y13c{bottom:285.498000px;}
.yab{bottom:285.534000px;}
.y18d{bottom:285.543000px;}
.y1c5{bottom:289.170000px;}
.y22{bottom:290.790000px;}
.y246{bottom:296.401950px;}
.y1e2{bottom:302.764500px;}
.y115{bottom:303.480000px;}
.y7f{bottom:303.484500px;}
.y16f{bottom:303.489000px;}
.y13b{bottom:303.493500px;}
.yaa{bottom:303.529500px;}
.y18c{bottom:303.538500px;}
.y1c1{bottom:303.570000px;}
.y252{bottom:310.500000px;}
.y21{bottom:314.280000px;}
.y1e1{bottom:320.764500px;}
.yeb{bottom:321.480000px;}
.y16e{bottom:321.484500px;}
.y13a{bottom:321.489000px;}
.y234{bottom:321.493500px;}
.y114{bottom:321.507000px;}
.y7e{bottom:321.511500px;}
.ya9{bottom:321.525000px;}
.y18b{bottom:321.534000px;}
.y1c4{bottom:325.170000px;}
.y270{bottom:336.825000px;}
.y20{bottom:337.860000px;}
.y1e0{bottom:338.764500px;}
.y139{bottom:339.484500px;}
.y16d{bottom:339.489000px;}
.y200{bottom:339.498000px;}
.y113{bottom:339.502500px;}
.y7d{bottom:339.507000px;}
.ya8{bottom:339.520500px;}
.y18a{bottom:339.529500px;}
.y1c2{bottom:339.570000px;}
.y256{bottom:340.875000px;}
.y158{bottom:355.230000px;}
.y1df{bottom:356.764500px;}
.yea{bottom:357.480000px;}
.y157{bottom:357.484500px;}
.y1ff{bottom:357.493500px;}
.y112{bottom:357.498000px;}
.y7c{bottom:357.502500px;}
.ya7{bottom:357.516000px;}
.y189{bottom:357.525000px;}
.y21c{bottom:357.552000px;}
.y1c3{bottom:361.170000px;}
.y1f{bottom:361.350000px;}
.y280{bottom:362.520000px;}
.y281{bottom:363.647250px;}
.ye9{bottom:375.480000px;}
.y16c{bottom:375.484500px;}
.y1fe{bottom:375.489000px;}
.y111{bottom:375.493500px;}
.y156{bottom:375.498000px;}
.ya6{bottom:375.511500px;}
.y188{bottom:375.520500px;}
.y21b{bottom:375.547500px;}
.y233{bottom:375.552000px;}
.y1b8{bottom:375.570000px;}
.y25a{bottom:379.419132px;}
.y1de{bottom:380.790000px;}
.y1e{bottom:384.840000px;}
.y1c0{bottom:387.090000px;}
.y16b{bottom:393.484500px;}
.y110{bottom:393.489000px;}
.y155{bottom:393.493500px;}
.y7b{bottom:393.507000px;}
.y187{bottom:393.516000px;}
.yd1{bottom:393.520500px;}
.y21a{bottom:393.543000px;}
.y232{bottom:393.547500px;}
.y259{bottom:401.380650px;}
.y1be{bottom:407.340000px;}
.y1d{bottom:408.420000px;}
.y1fd{bottom:411.480000px;}
.y10f{bottom:411.484500px;}
.y138{bottom:411.489000px;}
.y7a{bottom:411.502500px;}
.y186{bottom:411.511500px;}
.yd0{bottom:411.516000px;}
.y219{bottom:411.538500px;}
.y231{bottom:411.543000px;}
.y1dd{bottom:416.790000px;}
.y1dc{bottom:425.160000px;}
.y16a{bottom:427.230000px;}
.y10e{bottom:429.480000px;}
.y137{bottom:429.484500px;}
.y79{bottom:429.498000px;}
.y185{bottom:429.507000px;}
.ycf{bottom:429.511500px;}
.y218{bottom:429.534000px;}
.y230{bottom:429.538500px;}
.y1c{bottom:431.910000px;}
.y275{bottom:434.775330px;}
.y240{bottom:437.790000px;}
.y27d{bottom:446.042070px;}
.y10d{bottom:447.480000px;}
.y136{bottom:447.484500px;}
.y78{bottom:447.493500px;}
.y184{bottom:447.502500px;}
.yce{bottom:447.507000px;}
.y217{bottom:447.529500px;}
.y22f{bottom:447.534000px;}
.y26a{bottom:447.607500px;}
.y1b{bottom:455.400000px;}
.y260{bottom:458.814270px;}
.y1db{bottom:461.160000px;}
.y154{bottom:461.880000px;}
.y135{bottom:465.480000px;}
.y134{bottom:465.484500px;}
.y77{bottom:465.489000px;}
.y183{bottom:465.498000px;}
.ycd{bottom:465.502500px;}
.y1fc{bottom:465.511500px;}
.y216{bottom:465.525000px;}
.y22e{bottom:465.529500px;}
.y1ba{bottom:468.090000px;}
.y1a{bottom:478.980000px;}
.y133{bottom:483.480000px;}
.y76{bottom:483.484500px;}
.y10c{bottom:483.489000px;}
.y182{bottom:483.493500px;}
.ycc{bottom:483.498000px;}
.y1fb{bottom:483.507000px;}
.y215{bottom:483.520500px;}
.y22d{bottom:483.525000px;}
.y1da{bottom:497.160000px;}
.y153{bottom:497.880000px;}
.y282{bottom:499.095000px;}
.y10b{bottom:501.484500px;}
.y169{bottom:501.489000px;}
.ycb{bottom:501.493500px;}
.y1fa{bottom:501.502500px;}
.ya5{bottom:501.507000px;}
.y214{bottom:501.516000px;}
.y22c{bottom:501.520500px;}
.y75{bottom:501.561000px;}
.y19{bottom:502.470000px;}
.y25d{bottom:503.602950px;}
.y274{bottom:512.032500px;}
.y10a{bottom:519.480000px;}
.y132{bottom:519.484500px;}
.yca{bottom:519.489000px;}
.y1f9{bottom:519.498000px;}
.ya4{bottom:519.502500px;}
.y109{bottom:519.507000px;}
.y213{bottom:519.511500px;}
.y22b{bottom:519.516000px;}
.y74{bottom:519.556500px;}
.y28f{bottom:523.987500px;}
.y18{bottom:525.960000px;}
.y26b{bottom:529.159830px;}
.y27c{bottom:530.598870px;}
.y1d3{bottom:533.160000px;}
.y290{bottom:533.362500px;}
.y152{bottom:533.880000px;}
.y242{bottom:534.571350px;}
.y181{bottom:537.480000px;}
.yc9{bottom:537.484500px;}
.y180{bottom:537.493500px;}
.ya3{bottom:537.498000px;}
.y108{bottom:537.502500px;}
.y131{bottom:537.507000px;}
.y22a{bottom:537.511500px;}
.y73{bottom:537.552000px;}
.y28c{bottom:537.675000px;}
.y1b3{bottom:537.709500px;}
.y28b{bottom:538.612500px;}
.y284{bottom:541.802790px;}
.y294{bottom:543.792150px;}
.y298{bottom:544.928580px;}
.y25f{bottom:548.622840px;}
.y17{bottom:549.540000px;}
.yc8{bottom:555.489000px;}
.ya2{bottom:555.493500px;}
.y107{bottom:555.498000px;}
.y130{bottom:555.502500px;}
.y229{bottom:555.507000px;}
.ye8{bottom:555.516000px;}
.y72{bottom:555.547500px;}
.y1b2{bottom:555.705000px;}
.y254{bottom:556.920000px;}
.y288{bottom:559.171260px;}
.y287{bottom:560.303640px;}
.y293{bottom:563.589090px;}
.y297{bottom:564.725520px;}
.y14e{bottom:569.880000px;}
.y1d5{bottom:572.760000px;}
.yc7{bottom:573.484500px;}
.ya1{bottom:573.489000px;}
.y106{bottom:573.493500px;}
.y12f{bottom:573.498000px;}
.y228{bottom:573.502500px;}
.y71{bottom:573.543000px;}
.y1b1{bottom:573.700500px;}
.y25c{bottom:580.860120px;}
.y247{bottom:582.937500px;}
.y276{bottom:588.893310px;}
.y27b{bottom:589.095000px;}
.y1d8{bottom:590.760000px;}
.y17f{bottom:591.480000px;}
.ya0{bottom:591.484500px;}
.y105{bottom:591.489000px;}
.y12e{bottom:591.493500px;}
.y227{bottom:591.498000px;}
.yc6{bottom:591.511350px;}
.ye7{bottom:591.520500px;}
.y70{bottom:591.538500px;}
.y1b0{bottom:591.696000px;}
.y168{bottom:597.510000px;}
.y16{bottom:597.780000px;}
.y244{bottom:602.250000px;}
.y167{bottom:605.880000px;}
.y1d7{bottom:608.760000px;}
.y17e{bottom:609.480000px;}
.y104{bottom:609.484500px;}
.y12d{bottom:609.489000px;}
.y226{bottom:609.493500px;}
.y9f{bottom:609.502500px;}
.yc5{bottom:609.506850px;}
.ye6{bottom:609.516000px;}
.y1af{bottom:609.691500px;}
.y1d6{bottom:611.730000px;}
.y277{bottom:622.050000px;}
.y25b{bottom:626.970000px;}
.y27e{bottom:627.300000px;}
.y103{bottom:627.480000px;}
.y12c{bottom:627.484500px;}
.y225{bottom:627.489000px;}
.y102{bottom:627.493500px;}
.y9e{bottom:627.498000px;}
.yc4{bottom:627.502350px;}
.ye5{bottom:627.511500px;}
.y6f{bottom:627.543000px;}
.y1ae{bottom:627.687000px;}
.y26c{bottom:628.159200px;}
.y25e{bottom:629.612400px;}
.y15{bottom:633.600000px;}
.y24c{bottom:638.062500px;}
.y14{bottom:639.900000px;}
.y1d1{bottom:641.160000px;}
.y166{bottom:641.880000px;}
.y279{bottom:643.032780px;}
.y278{bottom:645.289170px;}
.y12b{bottom:645.480000px;}
.y212{bottom:645.484500px;}
.y101{bottom:645.489000px;}
.y9d{bottom:645.493500px;}
.yc3{bottom:645.497850px;}
.y17d{bottom:645.502500px;}
.ye4{bottom:645.507000px;}
.y6e{bottom:645.538500px;}
.y1ad{bottom:645.682500px;}
.y1d2{bottom:652.680000px;}
.y13{bottom:656.730000px;}
.y12a{bottom:663.480000px;}
.y100{bottom:663.484500px;}
.y9c{bottom:663.489000px;}
.yc2{bottom:663.493350px;}
.y17c{bottom:663.498000px;}
.ye3{bottom:663.502500px;}
.y6d{bottom:663.534000px;}
.y211{bottom:663.570000px;}
.y1ac{bottom:663.678000px;}
.y12{bottom:673.650000px;}
.y165{bottom:677.880000px;}
.y27a{bottom:677.899770px;}
.y250{bottom:679.549500px;}
.y24b{bottom:680.674500px;}
.yff{bottom:681.480000px;}
.y9b{bottom:681.484500px;}
.yc1{bottom:681.488850px;}
.y17b{bottom:681.493500px;}
.ye2{bottom:681.498000px;}
.y6c{bottom:681.529500px;}
.y210{bottom:681.565500px;}
.y1ab{bottom:681.673500px;}
.y11{bottom:690.480000px;}
.y271{bottom:695.925000px;}
.y27f{bottom:697.095000px;}
.y261{bottom:698.437500px;}
.y283{bottom:699.322860px;}
.yfe{bottom:699.480000px;}
.yc0{bottom:699.484350px;}
.y9a{bottom:699.489000px;}
.ye1{bottom:699.493500px;}
.y6b{bottom:699.525000px;}
.y20f{bottom:699.561000px;}
.y1aa{bottom:699.669000px;}
.y285{bottom:706.027950px;}
.y10{bottom:707.400000px;}
.y164{bottom:713.880000px;}
.y239{bottom:717.018600px;}
.ybf{bottom:717.479850px;}
.y99{bottom:717.484500px;}
.ye0{bottom:717.489000px;}
.y6a{bottom:717.520500px;}
.y20e{bottom:717.556500px;}
.y1a9{bottom:717.664500px;}
.yf{bottom:721.710000px;}
.y28e{bottom:726.675000px;}
.y28d{bottom:726.862500px;}
.y23b{bottom:726.937410px;}
.y23c{bottom:728.992470px;}
.y28a{bottom:730.800000px;}
.y23d{bottom:732.934830px;}
.ybe{bottom:735.475350px;}
.ydf{bottom:735.484500px;}
.y129{bottom:735.493350px;}
.y1f8{bottom:735.493500px;}
.yfd{bottom:735.502500px;}
.y98{bottom:735.506850px;}
.y69{bottom:735.516000px;}
.y20d{bottom:735.552000px;}
.y1a8{bottom:735.660000px;}
.ye{bottom:738.630000px;}
.y292{bottom:740.658060px;}
.y289{bottom:741.487500px;}
.y296{bottom:741.794490px;}
.y163{bottom:749.880000px;}
.yd{bottom:752.940000px;}
.yde{bottom:753.480000px;}
.y128{bottom:753.488850px;}
.y1f7{bottom:753.489000px;}
.yfc{bottom:753.498000px;}
.y97{bottom:753.502350px;}
.y68{bottom:753.511500px;}
.y20c{bottom:753.547500px;}
.y1a7{bottom:753.655500px;}
.y26d{bottom:755.279340px;}
.y286{bottom:757.170000px;}
.y291{bottom:760.455000px;}
.y295{bottom:761.591430px;}
.yc{bottom:769.950000px;}
.y127{bottom:771.484350px;}
.y1f6{bottom:771.484500px;}
.ybd{bottom:771.488850px;}
.yfb{bottom:771.493500px;}
.y96{bottom:771.497850px;}
.y67{bottom:771.507000px;}
.y14d{bottom:771.543000px;}
.y1a6{bottom:771.651000px;}
.y23a{bottom:778.796220px;}
.y266{bottom:779.408100px;}
.y162{bottom:785.880000px;}
.yb{bottom:786.780000px;}
.y24f{bottom:787.545000px;}
.y24a{bottom:788.670000px;}
.ydd{bottom:789.479850px;}
.ybc{bottom:789.484350px;}
.y126{bottom:789.488850px;}
.yfa{bottom:789.489000px;}
.y95{bottom:789.493350px;}
.y66{bottom:789.502500px;}
.y1d0{bottom:789.525000px;}
.y14c{bottom:789.538500px;}
.y1a5{bottom:789.646500px;}
.ya{bottom:803.700000px;}
.y26e{bottom:804.789510px;}
.ydc{bottom:807.479850px;}
.y125{bottom:807.484350px;}
.yf9{bottom:807.484500px;}
.y94{bottom:807.488850px;}
.y1f5{bottom:807.489000px;}
.y17a{bottom:807.493500px;}
.y65{bottom:807.498000px;}
.ybb{bottom:807.502500px;}
.y1cf{bottom:807.520500px;}
.y14b{bottom:807.534000px;}
.y1a4{bottom:807.642000px;}
.y269{bottom:815.410800px;}
.y9{bottom:818.010000px;}
.y160{bottom:821.880000px;}
.yf8{bottom:825.480000px;}
.y93{bottom:825.484350px;}
.y1f4{bottom:825.484500px;}
.y179{bottom:825.489000px;}
.y64{bottom:825.493500px;}
.yba{bottom:825.498000px;}
.y1ce{bottom:825.516000px;}
.y14a{bottom:825.529500px;}
.y1a3{bottom:825.637500px;}
.y265{bottom:833.412150px;}
.y8{bottom:834.930000px;}
.y1f3{bottom:843.480000px;}
.y92{bottom:843.484350px;}
.y178{bottom:843.484500px;}
.y63{bottom:843.489000px;}
.yb9{bottom:843.493500px;}
.ydb{bottom:843.498000px;}
.y1cd{bottom:843.511500px;}
.y149{bottom:843.525000px;}
.y1a2{bottom:843.633000px;}
.y23f{bottom:846.480000px;}
.y7{bottom:851.850000px;}
.y268{bottom:855.542250px;}
.y15f{bottom:857.880000px;}
.y62{bottom:861.484500px;}
.yb8{bottom:861.489000px;}
.yda{bottom:861.493500px;}
.y91{bottom:861.502500px;}
.y1cc{bottom:861.507000px;}
.y148{bottom:861.520500px;}
.y1a1{bottom:861.628500px;}
.y26f{bottom:865.539600px;}
.y6{bottom:868.680000px;}
.y273{bottom:872.642250px;}
.y23e{bottom:873.480000px;}
.yf7{bottom:879.480000px;}
.yb7{bottom:879.484500px;}
.yd9{bottom:879.489000px;}
.y90{bottom:879.498000px;}
.y61{bottom:879.502500px;}
.y147{bottom:879.516000px;}
.y224{bottom:879.520500px;}
.y1a0{bottom:879.624000px;}
.y5{bottom:885.600000px;}
.y264{bottom:886.095000px;}
.y267{bottom:887.218020px;}
.y272{bottom:889.706250px;}
.y15e{bottom:893.880000px;}
.y251{bottom:894.420000px;}
.y1f2{bottom:897.480000px;}
.yd8{bottom:897.484500px;}
.yb6{bottom:897.489000px;}
.y60{bottom:897.498000px;}
.y146{bottom:897.511500px;}
.y223{bottom:897.516000px;}
.y19f{bottom:897.619500px;}
.y4{bottom:899.910000px;}
.y241{bottom:909.007350px;}
.yf6{bottom:915.480000px;}
.yb5{bottom:915.484500px;}
.y5f{bottom:915.493500px;}
.y124{bottom:915.498000px;}
.y8f{bottom:915.502500px;}
.yf5{bottom:915.507000px;}
.y222{bottom:915.511500px;}
.y19e{bottom:915.615000px;}
.y3{bottom:928.350000px;}
.y15c{bottom:929.880000px;}
.y5e{bottom:933.489000px;}
.y123{bottom:933.493500px;}
.y8e{bottom:933.498000px;}
.yf4{bottom:933.502500px;}
.y221{bottom:933.507000px;}
.y19d{bottom:933.610500px;}
.y15d{bottom:951.480000px;}
.y5d{bottom:951.484500px;}
.y122{bottom:951.489000px;}
.y8d{bottom:951.493500px;}
.yf3{bottom:951.498000px;}
.y220{bottom:951.502500px;}
.y1f1{bottom:951.534000px;}
.y19c{bottom:951.606000px;}
.y1cb{bottom:967.230000px;}
.y5c{bottom:969.480000px;}
.y121{bottom:969.484500px;}
.y8c{bottom:969.489000px;}
.yf2{bottom:969.493500px;}
.y21f{bottom:969.498000px;}
.y1f0{bottom:969.529500px;}
.y19b{bottom:969.601500px;}
.y15b{bottom:983.880000px;}
.y8b{bottom:987.484500px;}
.yf1{bottom:987.489000px;}
.y120{bottom:987.493500px;}
.y1ef{bottom:987.525000px;}
.y19a{bottom:987.597000px;}
.y2{bottom:991.080000px;}
.y5b{bottom:1005.484500px;}
.y11f{bottom:1005.489000px;}
.y1ee{bottom:1005.520500px;}
.y199{bottom:1005.592500px;}
.y5a{bottom:1023.480000px;}
.yd7{bottom:1023.484500px;}
.y1ed{bottom:1023.516000px;}
.y198{bottom:1023.588000px;}
.y177{bottom:1029.510000px;}
.y1{bottom:1037.070000px;}
.y59{bottom:1064.250000px;}
.y58{bottom:1065.240000px;}
.y57{bottom:1066.320000px;}
.y53{bottom:1067.850000px;}
.y4f{bottom:1074.510000px;}
.y43{bottom:1086.750000px;}
.y45{bottom:1095.030000px;}
.y39{bottom:1116.810000px;}
.y4d{bottom:1123.290000px;}
.y46{bottom:1147.410000px;}
.y4a{bottom:1161.720000px;}
.y48{bottom:1173.780000px;}
.y34{bottom:1195.380000px;}
.y51{bottom:1225.350000px;}
.y3d{bottom:1245.780000px;}
.h36{height:24.297363px;}
.h46{height:25.225242px;}
.h11{height:30.060000px;}
.hf{height:30.598500px;}
.h47{height:30.794070px;}
.hc{height:32.396484px;}
.h3f{height:32.437500px;}
.h21{height:35.314453px;}
.h28{height:35.998500px;}
.h29{height:36.000000px;}
.h2f{height:36.571289px;}
.h13{height:37.530000px;}
.h32{height:37.903887px;}
.h1f{height:39.522294px;}
.h52{height:39.539988px;}
.h26{height:40.300511px;}
.h5{height:40.495605px;}
.h33{height:41.338477px;}
.h4{height:43.087324px;}
.h43{height:43.384163px;}
.h4a{height:45.104435px;}
.h20{height:45.377930px;}
.h2a{height:45.418028px;}
.he{height:47.971500px;}
.h53{height:48.269637px;}
.h6{height:48.594727px;}
.h40{height:48.826582px;}
.h44{height:52.962370px;}
.h8{height:52.971680px;}
.h2d{height:52.998047px;}
.h2c{height:54.000000px;}
.h7{height:54.102129px;}
.h1c{height:54.335953px;}
.h16{height:54.354553px;}
.h37{height:54.403875px;}
.h30{height:54.421875px;}
.h1e{height:57.028651px;}
.h39{height:59.218453px;}
.h15{height:59.308453px;}
.h1b{height:59.309053px;}
.h19{height:59.326453px;}
.h17{height:59.327053px;}
.h22{height:59.344453px;}
.h24{height:59.362453px;}
.h23{height:59.380453px;}
.h18{height:59.398453px;}
.h25{height:59.399053px;}
.h38{height:59.416031px;}
.h1a{height:59.416453px;}
.h41{height:59.606290px;}
.h4c{height:59.776502px;}
.h57{height:62.703281px;}
.hb{height:64.792969px;}
.h9{height:67.500000px;}
.h2b{height:68.434453px;}
.h56{height:68.710781px;}
.h1d{height:70.520062px;}
.h2{height:70.664062px;}
.h31{height:72.000000px;}
.h27{height:72.001500px;}
.h4d{height:72.973603px;}
.h54{height:75.093750px;}
.h48{height:80.240625px;}
.h4e{height:83.066177px;}
.h4f{height:83.081248px;}
.h3c{height:87.484219px;}
.h10{height:91.682051px;}
.h3d{height:93.867188px;}
.h3e{height:100.250156px;}
.h35{height:108.000000px;}
.h2e{height:108.720000px;}
.h34{height:108.721500px;}
.h3b{height:112.640625px;}
.h3{height:129.585938px;}
.h55{height:131.692061px;}
.h50{height:137.797031px;}
.h45{height:140.437500px;}
.ha{height:146.070000px;}
.h14{height:157.500000px;}
.h58{height:164.749511px;}
.hd{height:176.130000px;}
.h12{height:188.370000px;}
.h51{height:243.187500px;}
.h49{height:261.000000px;}
.h59{height:299.776151px;}
.h42{height:321.562500px;}
.h4b{height:366.750000px;}
.h3a{height:1080.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:34.110000px;}
.w4{width:34.201500px;}
.w17{width:34.378500px;}
.w20{width:34.471500px;}
.w28{width:37.800000px;}
.w29{width:39.150000px;}
.w21{width:40.500000px;}
.w1e{width:41.220000px;}
.w1f{width:41.310000px;}
.w15{width:41.400000px;}
.w6{width:42.660000px;}
.w26{width:44.370000px;}
.w22{width:46.530000px;}
.w23{width:46.620000px;}
.w27{width:49.050000px;}
.w11{width:57.330000px;}
.w25{width:60.120000px;}
.w19{width:61.650000px;}
.w1a{width:62.280000px;}
.w18{width:62.640000px;}
.w2b{width:69.478500px;}
.w13{width:69.570000px;}
.w12{width:69.660000px;}
.w2a{width:72.541500px;}
.w1b{width:75.690000px;}
.w1c{width:81.810000px;}
.w1d{width:139.680000px;}
.w7{width:158.760000px;}
.w10{width:162.898500px;}
.w5{width:257.668500px;}
.w3{width:259.558500px;}
.w2d{width:323.812500px;}
.w2f{width:328.312500px;}
.w32{width:342.000000px;}
.w30{width:351.000000px;}
.wc{width:357.210000px;}
.we{width:359.011500px;}
.wf{width:359.458500px;}
.w14{width:359.460000px;}
.w2e{width:363.000000px;}
.w24{width:372.510000px;}
.wd{width:386.998500px;}
.wb{width:388.800000px;}
.w31{width:522.000000px;}
.w8{width:594.088500px;}
.wa{width:746.010000px;}
.w2c{width:810.000000px;}
.w9{width:886.590000px;}
.w2{width:893.031000px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x85{left:-14.212446px;}
.x15{left:-7.470000px;}
.x0{left:0.000000px;}
.x6c{left:3.420000px;}
.x35{left:4.950000px;}
.x38{left:7.830000px;}
.x7d{left:10.429350px;}
.x6e{left:18.090000px;}
.x6d{left:19.620000px;}
.x6f{left:24.210000px;}
.x67{left:25.290000px;}
.x82{left:26.478000px;}
.x39{left:27.900000px;}
.x61{left:30.600000px;}
.x7c{left:33.750000px;}
.x5b{left:38.340000px;}
.x4b{left:40.500000px;}
.x55{left:44.910000px;}
.x16{left:60.030000px;}
.x6b{left:66.690000px;}
.xa{left:79.470000px;}
.x1{left:87.030000px;}
.x2d{left:96.300000px;}
.x95{left:98.550000px;}
.x9e{left:109.170000px;}
.x76{left:115.050000px;}
.x5a{left:120.600000px;}
.x26{left:123.120000px;}
.x27{left:130.500000px;}
.x32{left:134.820000px;}
.x1e{left:141.030000px;}
.x5c{left:146.790000px;}
.x1f{left:148.140000px;}
.x58{left:149.940000px;}
.x31{left:151.740000px;}
.x83{left:153.000000px;}
.x8{left:156.600000px;}
.x59{left:158.940000px;}
.x7{left:164.070000px;}
.xa1{left:174.943920px;}
.x9f{left:177.645000px;}
.x7e{left:180.756300px;}
.x23{left:184.050000px;}
.x3{left:187.920000px;}
.x5d{left:191.160000px;}
.x24{left:192.600000px;}
.xa0{left:195.646710px;}
.x5e{left:205.650000px;}
.x4{left:208.620000px;}
.x6{left:214.020000px;}
.x28{left:215.820000px;}
.x5{left:223.470000px;}
.x87{left:234.750000px;}
.x12{left:236.160000px;}
.x5f{left:240.210000px;}
.x2e{left:249.930000px;}
.x84{left:253.922400px;}
.x43{left:255.780000px;}
.x81{left:260.550000px;}
.x60{left:268.200000px;}
.x62{left:278.010000px;}
.x92{left:280.815630px;}
.x91{left:283.425000px;}
.x7b{left:288.835200px;}
.x90{left:294.086250px;}
.x33{left:305.100000px;}
.x2f{left:307.260000px;}
.x8a{left:309.168960px;}
.x89{left:310.655310px;}
.x34{left:314.100000px;}
.x66{left:317.160000px;}
.x65{left:324.450000px;}
.x64{left:326.160000px;}
.x63{left:327.510000px;}
.x79{left:334.788000px;}
.xb{left:339.030000px;}
.x25{left:346.320000px;}
.x97{left:349.457550px;}
.x41{left:351.180000px;}
.x80{left:359.694450px;}
.x70{left:361.800000px;}
.x20{left:369.450000px;}
.x99{left:370.800000px;}
.xc{left:373.230000px;}
.xd{left:375.750000px;}
.x30{left:376.920000px;}
.x8f{left:378.300000px;}
.x94{left:385.800000px;}
.x21{left:387.000000px;}
.x6a{left:389.700000px;}
.x22{left:394.110000px;}
.x69{left:398.610000px;}
.x68{left:400.590000px;}
.x1c{left:405.450000px;}
.x1d{left:412.740000px;}
.x13{left:414.810000px;}
.x93{left:419.671980px;}
.x7f{left:433.875000px;}
.x7a{left:439.500000px;}
.x3e{left:444.150000px;}
.x18{left:446.494500px;}
.x17{left:448.830000px;}
.x9b{left:457.544850px;}
.x98{left:458.985030px;}
.x88{left:460.050000px;}
.x57{left:468.810000px;}
.x4f{left:470.610000px;}
.x9{left:473.503500px;}
.x75{left:484.728450px;}
.x45{left:506.430000px;}
.x14{left:509.310000px;}
.x36{left:514.890000px;}
.x46{left:523.980000px;}
.x86{left:526.268880px;}
.x11{left:530.370000px;}
.x1b{left:535.320000px;}
.x4a{left:540.900000px;}
.x37{left:549.000000px;}
.x8d{left:559.812330px;}
.x8e{left:563.565960px;}
.xa2{left:570.042750px;}
.x50{left:574.200000px;}
.x2b{left:575.910000px;}
.xa3{left:579.035370px;}
.x2{left:581.670000px;}
.x2c{left:583.290000px;}
.x4c{left:593.100000px;}
.x78{left:602.925000px;}
.x47{left:605.520000px;}
.x77{left:618.300000px;}
.x8c{left:620.562420px;}
.x4d{left:622.620000px;}
.x8b{left:625.050000px;}
.xe{left:630.900000px;}
.x74{left:635.670510px;}
.x96{left:640.800000px;}
.x3a{left:646.020000px;}
.x44{left:651.420000px;}
.x3d{left:655.380000px;}
.x73{left:660.792570px;}
.x48{left:663.930000px;}
.xf{left:673.560000px;}
.x4e{left:675.540000px;}
.x72{left:687.697080px;}
.x42{left:695.520000px;}
.x49{left:707.760000px;}
.x29{left:709.200000px;}
.x51{left:710.460000px;}
.x2a{left:716.490000px;}
.x9c{left:718.110000px;}
.x9d{left:719.235000px;}
.x71{left:725.673750px;}
.x9a{left:730.791990px;}
.x54{left:746.190000px;}
.x52{left:749.610000px;}
.x3f{left:750.690000px;}
.x53{left:757.080000px;}
.x19{left:758.880000px;}
.x1a{left:768.060000px;}
.x3b{left:771.300000px;}
.x40{left:787.860000px;}
.x56{left:789.300000px;}
.x10{left:796.500000px;}
.x3c{left:806.580000px;}
@media print{
.v10{vertical-align:-104.051840pt;}
.vc{vertical-align:-52.032000pt;}
.vb{vertical-align:-39.360000pt;}
.v8{vertical-align:-29.440000pt;}
.v4{vertical-align:-21.440000pt;}
.v9{vertical-align:-19.840000pt;}
.v2{vertical-align:-8.064000pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.000000pt;}
.v7{vertical-align:10.560000pt;}
.va{vertical-align:19.840000pt;}
.v3{vertical-align:21.328000pt;}
.ve{vertical-align:23.957760pt;}
.v6{vertical-align:29.440000pt;}
.vd{vertical-align:55.983360pt;}
.vf{vertical-align:143.981440pt;}
.ls71{letter-spacing:-3.209573pt;}
.ls67{letter-spacing:-2.621640pt;}
.ls6b{letter-spacing:-2.421787pt;}
.ls68{letter-spacing:-2.329421pt;}
.ls72{letter-spacing:-2.123016pt;}
.ls6a{letter-spacing:-1.354416pt;}
.ls6c{letter-spacing:-1.306996pt;}
.ls2c{letter-spacing:-1.056000pt;}
.ls41{letter-spacing:-0.736000pt;}
.ls2b{letter-spacing:-0.720000pt;}
.ls5c{letter-spacing:-0.640000pt;}
.ls35{letter-spacing:-0.432000pt;}
.lse{letter-spacing:-0.400000pt;}
.ls49{letter-spacing:-0.336960pt;}
.ls2a{letter-spacing:-0.336000pt;}
.ls29{letter-spacing:-0.288000pt;}
.ls76{letter-spacing:-0.267200pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls63{letter-spacing:-0.170880pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls48{letter-spacing:-0.149760pt;}
.ls60{letter-spacing:-0.149120pt;}
.ls10{letter-spacing:-0.144000pt;}
.ls46{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.120000pt;}
.ls36{letter-spacing:-0.106880pt;}
.ls11{letter-spacing:-0.096000pt;}
.ls62{letter-spacing:-0.085440pt;}
.ls61{letter-spacing:-0.080000pt;}
.ls69{letter-spacing:-0.074560pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls47{letter-spacing:-0.037440pt;}
.ls34{letter-spacing:-0.032000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.053440pt;}
.ls70{letter-spacing:0.058560pt;}
.lsb{letter-spacing:0.064000pt;}
.ls5f{letter-spacing:0.074560pt;}
.ls2{letter-spacing:0.080000pt;}
.ls6{letter-spacing:0.096000pt;}
.ls3b{letter-spacing:0.106880pt;}
.ls37{letter-spacing:0.112661pt;}
.ls0{letter-spacing:0.120000pt;}
.ls38{letter-spacing:0.124480pt;}
.lsa{letter-spacing:0.128000pt;}
.ls75{letter-spacing:0.134208pt;}
.ls14{letter-spacing:0.144000pt;}
.ls5a{letter-spacing:0.148800pt;}
.ls5d{letter-spacing:0.149120pt;}
.ls44{letter-spacing:0.149760pt;}
.ls1{letter-spacing:0.160000pt;}
.ls73{letter-spacing:0.160320pt;}
.ls5e{letter-spacing:0.170880pt;}
.ls18{letter-spacing:0.181120pt;}
.ls12{letter-spacing:0.192000pt;}
.ls2d{letter-spacing:0.240000pt;}
.ls16{letter-spacing:0.480000pt;}
.ls57{letter-spacing:0.544000pt;}
.ls6f{letter-spacing:0.598080pt;}
.ls43{letter-spacing:0.736000pt;}
.ls24{letter-spacing:0.848000pt;}
.ls42{letter-spacing:1.440000pt;}
.ls39{letter-spacing:1.776000pt;}
.ls25{letter-spacing:2.400000pt;}
.ls1a{letter-spacing:2.560000pt;}
.ls20{letter-spacing:2.736000pt;}
.ls4b{letter-spacing:2.784000pt;}
.ls3d{letter-spacing:2.848000pt;}
.ls1c{letter-spacing:2.880000pt;}
.ls4{letter-spacing:3.008000pt;}
.ls2e{letter-spacing:3.024000pt;}
.ls1f{letter-spacing:3.104000pt;}
.ls4c{letter-spacing:3.168000pt;}
.ls8{letter-spacing:3.200000pt;}
.ls5{letter-spacing:3.296000pt;}
.ls3{letter-spacing:3.328000pt;}
.ls3f{letter-spacing:3.520000pt;}
.ls56{letter-spacing:3.536000pt;}
.ls54{letter-spacing:3.696000pt;}
.ls40{letter-spacing:4.320000pt;}
.ls1b{letter-spacing:4.368000pt;}
.ls27{letter-spacing:4.944000pt;}
.ls3a{letter-spacing:5.616000pt;}
.ls2f{letter-spacing:5.904000pt;}
.ls5b{letter-spacing:6.240000pt;}
.ls9{letter-spacing:6.576000pt;}
.ls22{letter-spacing:6.864000pt;}
.ls4e{letter-spacing:7.200000pt;}
.ls1d{letter-spacing:7.536000pt;}
.ls3e{letter-spacing:7.824000pt;}
.ls58{letter-spacing:8.092800pt;}
.ls23{letter-spacing:8.160000pt;}
.ls30{letter-spacing:8.496000pt;}
.ls53{letter-spacing:8.784000pt;}
.ls4d{letter-spacing:9.456000pt;}
.ls32{letter-spacing:9.744000pt;}
.ls50{letter-spacing:12.336000pt;}
.ls52{letter-spacing:12.960000pt;}
.ls59{letter-spacing:14.544000pt;}
.ls51{letter-spacing:15.216000pt;}
.ls28{letter-spacing:16.176000pt;}
.ls26{letter-spacing:17.136000pt;}
.ls21{letter-spacing:18.880000pt;}
.ls4f{letter-spacing:19.056000pt;}
.ls33{letter-spacing:19.632000pt;}
.ls3c{letter-spacing:20.016000pt;}
.ls45{letter-spacing:20.636800pt;}
.ls55{letter-spacing:22.224000pt;}
.ls19{letter-spacing:24.144000pt;}
.ls1e{letter-spacing:28.516800pt;}
.ls4a{letter-spacing:30.240000pt;}
.ls31{letter-spacing:31.680000pt;}
.ls65{letter-spacing:104.204037pt;}
.ls6e{letter-spacing:153.699619pt;}
.ls64{letter-spacing:201.699827pt;}
.ls6d{letter-spacing:215.143269pt;}
.ls66{letter-spacing:222.240000pt;}
.ls74{letter-spacing:1167.684160pt;}
.ws15c{word-spacing:-140.759331pt;}
.ws14b{word-spacing:-85.440000pt;}
.ws15e{word-spacing:-64.000000pt;}
.ws160{word-spacing:-58.560000pt;}
.ws110{word-spacing:-48.000000pt;}
.ws155{word-spacing:-26.784000pt;}
.ws14d{word-spacing:-26.592000pt;}
.ws14a{word-spacing:-23.666880pt;}
.ws14c{word-spacing:-23.581440pt;}
.ws147{word-spacing:-22.240000pt;}
.ws149{word-spacing:-22.160000pt;}
.ws144{word-spacing:-20.876800pt;}
.ws164{word-spacing:-20.861888pt;}
.ws143{word-spacing:-20.802240pt;}
.ws145{word-spacing:-20.727680pt;}
.ws151{word-spacing:-20.653120pt;}
.ws146{word-spacing:-20.578560pt;}
.ws15a{word-spacing:-17.792000pt;}
.ws154{word-spacing:-17.728000pt;}
.ws15f{word-spacing:-17.664000pt;}
.ws161{word-spacing:-16.338240pt;}
.ws148{word-spacing:-14.963200pt;}
.ws8e{word-spacing:-14.909760pt;}
.ws8f{word-spacing:-14.856320pt;}
.ws90{word-spacing:-14.749440pt;}
.wsd9{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.344000pt;}
.ws6{word-spacing:-13.248000pt;}
.ws8{word-spacing:-13.200000pt;}
.ws3f{word-spacing:-12.240000pt;}
.wsa{word-spacing:-12.144000pt;}
.ws3c{word-spacing:-12.096000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws39{word-spacing:-11.904000pt;}
.wsbb{word-spacing:-11.856000pt;}
.ws3d{word-spacing:-11.808000pt;}
.ws3a{word-spacing:-11.712000pt;}
.wsd8{word-spacing:-11.664000pt;}
.ws122{word-spacing:-11.568000pt;}
.ws3{word-spacing:-11.280000pt;}
.ws4{word-spacing:-11.120000pt;}
.ws2{word-spacing:-11.000000pt;}
.ws0{word-spacing:-10.960000pt;}
.ws3e{word-spacing:-10.944000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws10f{word-spacing:-10.558080pt;}
.wsf0{word-spacing:-10.408320pt;}
.wsef{word-spacing:-10.370880pt;}
.wsf2{word-spacing:-10.258560pt;}
.wsf3{word-spacing:-10.071360pt;}
.wsf1{word-spacing:-9.360000pt;}
.ws7{word-spacing:-9.024000pt;}
.wsc{word-spacing:-8.960000pt;}
.wsb{word-spacing:-8.896000pt;}
.ws159{word-spacing:-8.264829pt;}
.ws123{word-spacing:-8.064000pt;}
.ws3b{word-spacing:-8.000000pt;}
.ws8d{word-spacing:-7.968000pt;}
.ws40{word-spacing:-7.904000pt;}
.wsee{word-spacing:-7.872000pt;}
.ws121{word-spacing:-7.360000pt;}
.wsd7{word-spacing:-7.264000pt;}
.ws162{word-spacing:-1.769853pt;}
.ws165{word-spacing:-0.801600pt;}
.ws166{word-spacing:-0.644160pt;}
.ws2f{word-spacing:-0.480000pt;}
.wsf{word-spacing:-0.400000pt;}
.ws36{word-spacing:-0.384000pt;}
.wsbf{word-spacing:-0.213760pt;}
.ws19{word-spacing:-0.192000pt;}
.ws1f{word-spacing:-0.160320pt;}
.ws11{word-spacing:-0.160000pt;}
.ws10a{word-spacing:-0.149760pt;}
.ws163{word-spacing:-0.149120pt;}
.ws2e{word-spacing:-0.144000pt;}
.ws37{word-spacing:-0.128000pt;}
.wsb6{word-spacing:-0.112661pt;}
.ws10c{word-spacing:-0.112320pt;}
.ws9f{word-spacing:-0.096000pt;}
.ws38{word-spacing:-0.090560pt;}
.ws10{word-spacing:-0.080000pt;}
.ws35{word-spacing:-0.064000pt;}
.ws167{word-spacing:-0.058560pt;}
.ws20{word-spacing:-0.053440pt;}
.wsc3{word-spacing:-0.048000pt;}
.ws33{word-spacing:-0.032000pt;}
.wsd{word-spacing:0.000000pt;}
.ws115{word-spacing:0.037440pt;}
.ws9c{word-spacing:0.048000pt;}
.ws1e{word-spacing:0.096000pt;}
.wsb8{word-spacing:0.106880pt;}
.ws34{word-spacing:0.128000pt;}
.ws15{word-spacing:0.144000pt;}
.ws10d{word-spacing:0.149760pt;}
.ws10b{word-spacing:0.187200pt;}
.ws2a{word-spacing:0.192000pt;}
.ws13{word-spacing:0.240000pt;}
.wse{word-spacing:0.256000pt;}
.wscb{word-spacing:0.288000pt;}
.ws97{word-spacing:0.336000pt;}
.ws10e{word-spacing:0.336960pt;}
.wsaa{word-spacing:0.384000pt;}
.wsa8{word-spacing:0.432000pt;}
.ws12{word-spacing:0.480000pt;}
.wsc9{word-spacing:0.528000pt;}
.wsc5{word-spacing:0.576000pt;}
.ws12c{word-spacing:0.624000pt;}
.ws42{word-spacing:0.816000pt;}
.wsca{word-spacing:0.912000pt;}
.ws4c{word-spacing:1.104000pt;}
.ws16{word-spacing:1.200000pt;}
.ws102{word-spacing:1.344000pt;}
.ws31{word-spacing:1.440000pt;}
.ws7d{word-spacing:1.536000pt;}
.ws7e{word-spacing:1.632000pt;}
.ws86{word-spacing:1.680000pt;}
.ws5d{word-spacing:1.776000pt;}
.wsc7{word-spacing:1.872000pt;}
.ws13a{word-spacing:1.920000pt;}
.ws84{word-spacing:2.064000pt;}
.ws103{word-spacing:2.160000pt;}
.wsdd{word-spacing:2.256000pt;}
.ws71{word-spacing:2.304000pt;}
.ws72{word-spacing:2.400000pt;}
.ws9d{word-spacing:2.496000pt;}
.wsfc{word-spacing:2.592000pt;}
.ws64{word-spacing:2.640000pt;}
.ws21{word-spacing:2.736000pt;}
.ws18{word-spacing:2.832000pt;}
.ws78{word-spacing:2.880000pt;}
.ws92{word-spacing:2.928000pt;}
.ws88{word-spacing:3.024000pt;}
.wsbe{word-spacing:3.120000pt;}
.ws98{word-spacing:3.216000pt;}
.wsbd{word-spacing:3.264000pt;}
.ws89{word-spacing:3.360000pt;}
.ws136{word-spacing:3.456000pt;}
.ws13c{word-spacing:3.552000pt;}
.ws117{word-spacing:3.600000pt;}
.ws73{word-spacing:3.696000pt;}
.ws119{word-spacing:3.840000pt;}
.wsa2{word-spacing:3.888000pt;}
.ws6c{word-spacing:3.984000pt;}
.wsba{word-spacing:4.080000pt;}
.wsf6{word-spacing:4.176000pt;}
.wsea{word-spacing:4.224000pt;}
.wsa3{word-spacing:4.320000pt;}
.wse9{word-spacing:4.416000pt;}
.wsa9{word-spacing:4.512000pt;}
.ws27{word-spacing:4.560000pt;}
.ws50{word-spacing:4.656000pt;}
.ws17{word-spacing:4.752000pt;}
.ws57{word-spacing:4.800000pt;}
.ws26{word-spacing:4.848000pt;}
.ws41{word-spacing:4.944000pt;}
.ws4d{word-spacing:5.280000pt;}
.wsac{word-spacing:5.520000pt;}
.ws53{word-spacing:5.616000pt;}
.wsab{word-spacing:5.712000pt;}
.wsd2{word-spacing:5.808000pt;}
.ws9b{word-spacing:5.904000pt;}
.ws44{word-spacing:6.240000pt;}
.ws1d{word-spacing:6.336000pt;}
.ws6e{word-spacing:6.480000pt;}
.ws28{word-spacing:6.576000pt;}
.wsf4{word-spacing:6.672000pt;}
.ws6a{word-spacing:6.864000pt;}
.wscf{word-spacing:6.912000pt;}
.ws6b{word-spacing:6.960000pt;}
.ws25{word-spacing:7.056000pt;}
.ws24{word-spacing:7.200000pt;}
.wsa4{word-spacing:7.296000pt;}
.wsfe{word-spacing:7.392000pt;}
.ws4a{word-spacing:7.536000pt;}
.ws1a{word-spacing:7.632000pt;}
.wse7{word-spacing:7.680000pt;}
.ws76{word-spacing:7.728000pt;}
.wse0{word-spacing:7.824000pt;}
.ws1c{word-spacing:7.920000pt;}
.ws101{word-spacing:8.016000pt;}
.ws62{word-spacing:8.064000pt;}
.wse6{word-spacing:8.112000pt;}
.ws6d{word-spacing:8.160000pt;}
.ws118{word-spacing:8.352000pt;}
.wsff{word-spacing:8.400000pt;}
.ws67{word-spacing:8.496000pt;}
.wsc8{word-spacing:8.640000pt;}
.ws61{word-spacing:8.688000pt;}
.wsb3{word-spacing:8.784000pt;}
.ws128{word-spacing:8.976000pt;}
.ws8b{word-spacing:9.120000pt;}
.ws54{word-spacing:9.456000pt;}
.wsd5{word-spacing:9.648000pt;}
.wsb5{word-spacing:9.744000pt;}
.wsf8{word-spacing:9.840000pt;}
.wsde{word-spacing:9.936000pt;}
.wsa5{word-spacing:9.984000pt;}
.wsdf{word-spacing:10.080000pt;}
.ws69{word-spacing:10.320000pt;}
.ws68{word-spacing:10.416000pt;}
.ws91{word-spacing:10.608000pt;}
.ws81{word-spacing:10.704000pt;}
.wsf7{word-spacing:10.752000pt;}
.ws63{word-spacing:10.800000pt;}
.ws4b{word-spacing:11.040000pt;}
.ws1b{word-spacing:11.136000pt;}
.ws12d{word-spacing:11.232000pt;}
.ws80{word-spacing:11.376000pt;}
.ws7f{word-spacing:11.520000pt;}
.ws12e{word-spacing:11.568000pt;}
.ws49{word-spacing:11.664000pt;}
.ws107{word-spacing:11.760000pt;}
.ws7a{word-spacing:11.856000pt;}
.ws65{word-spacing:12.000000pt;}
.ws8c{word-spacing:12.192000pt;}
.ws83{word-spacing:12.336000pt;}
.wsce{word-spacing:12.480000pt;}
.ws124{word-spacing:12.528000pt;}
.wsae{word-spacing:12.611840pt;}
.ws5a{word-spacing:12.624000pt;}
.ws125{word-spacing:12.672000pt;}
.wsfb{word-spacing:12.816000pt;}
.wse4{word-spacing:12.864000pt;}
.wse8{word-spacing:12.912000pt;}
.ws85{word-spacing:12.960000pt;}
.ws127{word-spacing:13.056000pt;}
.wsfa{word-spacing:13.152000pt;}
.wsf5{word-spacing:13.296000pt;}
.ws29{word-spacing:13.584000pt;}
.ws8a{word-spacing:13.920000pt;}
.wse5{word-spacing:14.016000pt;}
.wsd1{word-spacing:14.112000pt;}
.ws126{word-spacing:14.160000pt;}
.wsc0{word-spacing:14.256000pt;}
.ws9a{word-spacing:14.352000pt;}
.wsad{word-spacing:14.544000pt;}
.ws14{word-spacing:14.640000pt;}
.ws139{word-spacing:14.736000pt;}
.ws23{word-spacing:14.880000pt;}
.ws22{word-spacing:15.216000pt;}
.ws9e{word-spacing:15.312000pt;}
.ws48{word-spacing:15.360000pt;}
.ws32{word-spacing:15.504000pt;}
.wsd3{word-spacing:15.696000pt;}
.ws47{word-spacing:15.840000pt;}
.ws87{word-spacing:16.176000pt;}
.wsbc{word-spacing:16.320000pt;}
.ws94{word-spacing:16.368000pt;}
.ws99{word-spacing:16.464000pt;}
.ws4f{word-spacing:16.704000pt;}
.ws4e{word-spacing:16.800000pt;}
.ws13b{word-spacing:16.992000pt;}
.ws59{word-spacing:17.136000pt;}
.ws56{word-spacing:17.328000pt;}
.ws2c{word-spacing:17.424000pt;}
.wsd0{word-spacing:17.664000pt;}
.wsdb{word-spacing:17.760000pt;}
.wsfd{word-spacing:18.000000pt;}
.wsed{word-spacing:18.096000pt;}
.ws2d{word-spacing:18.384000pt;}
.ws75{word-spacing:18.624000pt;}
.ws74{word-spacing:18.720000pt;}
.ws114{word-spacing:18.816000pt;}
.ws11c{word-spacing:18.960000pt;}
.wsd4{word-spacing:19.056000pt;}
.ws11f{word-spacing:19.200000pt;}
.ws105{word-spacing:19.344000pt;}
.ws30{word-spacing:19.680000pt;}
.wsa0{word-spacing:20.016000pt;}
.wsdc{word-spacing:20.112000pt;}
.ws11d{word-spacing:20.160000pt;}
.ws5b{word-spacing:20.496000pt;}
.ws55{word-spacing:20.544000pt;}
.ws77{word-spacing:20.640000pt;}
.ws5c{word-spacing:20.976000pt;}
.ws5e{word-spacing:21.264000pt;}
.wscd{word-spacing:21.360000pt;}
.ws66{word-spacing:21.600000pt;}
.ws116{word-spacing:21.696000pt;}
.ws46{word-spacing:21.936000pt;}
.ws129{word-spacing:22.224000pt;}
.ws12a{word-spacing:22.416000pt;}
.wsc6{word-spacing:22.896000pt;}
.ws132{word-spacing:23.040000pt;}
.wsaf{word-spacing:23.184000pt;}
.wse1{word-spacing:23.280000pt;}
.ws120{word-spacing:23.376000pt;}
.wsa6{word-spacing:23.520000pt;}
.ws51{word-spacing:23.760000pt;}
.ws133{word-spacing:23.856000pt;}
.ws13e{word-spacing:24.000000pt;}
.ws109{word-spacing:24.096000pt;}
.ws43{word-spacing:24.144000pt;}
.ws108{word-spacing:24.240000pt;}
.ws13d{word-spacing:24.336000pt;}
.ws95{word-spacing:24.480000pt;}
.ws96{word-spacing:24.624000pt;}
.ws131{word-spacing:24.672000pt;}
.ws93{word-spacing:24.816000pt;}
.ws137{word-spacing:24.960000pt;}
.ws138{word-spacing:25.104000pt;}
.ws11e{word-spacing:25.680000pt;}
.ws60{word-spacing:26.064000pt;}
.wsf9{word-spacing:26.400000pt;}
.ws79{word-spacing:27.024000pt;}
.ws142{word-spacing:27.552000pt;}
.ws52{word-spacing:27.984000pt;}
.wsb0{word-spacing:28.176000pt;}
.ws100{word-spacing:28.320000pt;}
.ws58{word-spacing:28.512000pt;}
.ws2b{word-spacing:28.656000pt;}
.wsd6{word-spacing:28.944000pt;}
.ws82{word-spacing:29.280000pt;}
.wsb2{word-spacing:29.616000pt;}
.wsb1{word-spacing:29.712000pt;}
.wsa7{word-spacing:29.904000pt;}
.ws141{word-spacing:30.096000pt;}
.wsb4{word-spacing:30.240000pt;}
.wsec{word-spacing:31.392000pt;}
.wseb{word-spacing:31.536000pt;}
.ws70{word-spacing:31.632000pt;}
.ws6f{word-spacing:31.824000pt;}
.ws106{word-spacing:32.352000pt;}
.ws5f{word-spacing:32.496000pt;}
.wsda{word-spacing:32.784000pt;}
.wsc4{word-spacing:33.840000pt;}
.ws11b{word-spacing:34.080000pt;}
.wse3{word-spacing:34.272000pt;}
.wse2{word-spacing:34.416000pt;}
.wscc{word-spacing:35.040000pt;}
.wsc2{word-spacing:39.840000pt;}
.ws12f{word-spacing:42.384000pt;}
.ws11a{word-spacing:43.344000pt;}
.wsb7{word-spacing:45.600000pt;}
.ws7c{word-spacing:46.224000pt;}
.wsa1{word-spacing:46.560000pt;}
.wsc1{word-spacing:48.384000pt;}
.ws104{word-spacing:48.480000pt;}
.ws134{word-spacing:49.104000pt;}
.ws7b{word-spacing:51.360000pt;}
.ws140{word-spacing:54.864000pt;}
.ws13f{word-spacing:55.200000pt;}
.wsb9{word-spacing:56.806720pt;}
.ws113{word-spacing:62.256000pt;}
.ws111{word-spacing:82.416000pt;}
.ws112{word-spacing:82.560000pt;}
.ws12b{word-spacing:82.704000pt;}
.ws130{word-spacing:84.960000pt;}
.ws153{word-spacing:87.248039pt;}
.ws152{word-spacing:93.691189pt;}
.ws135{word-spacing:103.824000pt;}
.ws150{word-spacing:109.752695pt;}
.ws158{word-spacing:110.825595pt;}
.ws156{word-spacing:115.092554pt;}
.ws15d{word-spacing:116.193003pt;}
.ws157{word-spacing:123.203619pt;}
.ws45{word-spacing:143.856000pt;}
.ws14f{word-spacing:168.879391pt;}
.ws14e{word-spacing:181.350907pt;}
.ws15b{word-spacing:194.866920pt;}
._2e{margin-left:-7.132800pt;}
._21{margin-left:-5.644192pt;}
._32{margin-left:-4.608000pt;}
._2{margin-left:-1.200000pt;}
._1{width:0.960000pt;}
._8{width:2.368000pt;}
._3{width:3.440000pt;}
._14{width:4.544000pt;}
._c{width:5.440000pt;}
._1a{width:7.200000pt;}
._4{width:8.160000pt;}
._13{width:9.441600pt;}
._18{width:10.881600pt;}
._16{width:13.216000pt;}
._6{width:15.312000pt;}
._a{width:16.368000pt;}
._5{width:18.192000pt;}
._f{width:19.632000pt;}
._15{width:20.656000pt;}
._9{width:21.696000pt;}
._17{width:22.848000pt;}
._b{width:24.480000pt;}
._1f{width:25.760000pt;}
._1e{width:26.880000pt;}
._d{width:28.864000pt;}
._1d{width:29.808000pt;}
._19{width:34.176000pt;}
._12{width:38.688000pt;}
._11{width:39.888000pt;}
._e{width:45.168000pt;}
._20{width:55.392000pt;}
._10{width:57.198080pt;}
._1c{width:64.207360pt;}
._1b{width:72.725120pt;}
._25{width:99.094170pt;}
._24{width:108.146726pt;}
._26{width:128.160000pt;}
._28{width:132.352593pt;}
._29{width:139.887042pt;}
._2d{width:141.375544pt;}
._7{width:143.520000pt;}
._2a{width:148.352000pt;}
._2f{width:159.400320pt;}
._0{width:176.000000pt;}
._2b{width:207.144810pt;}
._23{width:210.813147pt;}
._31{width:309.689280pt;}
._2c{width:512.691114pt;}
._27{width:755.392000pt;}
._30{width:813.741760pt;}
._22{width:1064.352000pt;}
.fs15{font-size:21.498667pt;}
.fsc{font-size:24.000000pt;}
.fs16{font-size:26.244800pt;}
.fs5{font-size:32.000000pt;}
.fs1c{font-size:33.698667pt;}
.fs13{font-size:36.974933pt;}
.fsb{font-size:37.440000pt;}
.fs17{font-size:38.441067pt;}
.fs3{font-size:40.000000pt;}
.fs1d{font-size:41.138667pt;}
.fs11{font-size:41.613333pt;}
.fs2{font-size:42.560000pt;}
.fsa{font-size:44.862179pt;}
.fs14{font-size:45.138133pt;}
.fs4{font-size:48.000000pt;}
.fs9{font-size:50.596443pt;}
.fs12{font-size:50.800533pt;}
.fs18{font-size:50.945600pt;}
.fs6{font-size:53.440000pt;}
.fs8{font-size:56.330706pt;}
.fs1e{font-size:58.560000pt;}
.fs19{font-size:62.193067pt;}
.fs0{font-size:64.000000pt;}
.fs1a{font-size:70.794133pt;}
.fse{font-size:74.560000pt;}
.fsf{font-size:80.000000pt;}
.fs10{font-size:85.440000pt;}
.fs7{font-size:90.560000pt;}
.fsd{font-size:96.000000pt;}
.fs1b{font-size:117.440000pt;}
.fs1{font-size:128.000000pt;}
.y52{bottom:-10.640000pt;}
.y263{bottom:-2.877867pt;}
.y258{bottom:-1.157867pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:2.080000pt;}
.y1d9{bottom:3.200000pt;}
.y24d{bottom:4.287333pt;}
.y245{bottom:4.872533pt;}
.y4b{bottom:5.520000pt;}
.y4c{bottom:5.760000pt;}
.y249{bottom:6.489733pt;}
.y50{bottom:10.080000pt;}
.y1bf{bottom:10.240000pt;}
.y253{bottom:10.400400pt;}
.y38{bottom:10.720000pt;}
.y262{bottom:11.675200pt;}
.y4e{bottom:12.000000pt;}
.y49{bottom:12.720000pt;}
.y40{bottom:12.800000pt;}
.y161{bottom:19.199867pt;}
.y151{bottom:19.200000pt;}
.y257{bottom:20.841200pt;}
.y248{bottom:22.453467pt;}
.y3f{bottom:23.440000pt;}
.y37{bottom:24.000000pt;}
.y1bd{bottom:28.240000pt;}
.y47{bottom:32.000000pt;}
.y3e{bottom:34.080000pt;}
.y150{bottom:35.200000pt;}
.y36{bottom:39.920000pt;}
.y3c{bottom:44.800000pt;}
.y1bc{bottom:46.240000pt;}
.y14f{bottom:51.200000pt;}
.y35{bottom:53.360000pt;}
.y3b{bottom:55.440000pt;}
.y1bb{bottom:64.240000pt;}
.y1d4{bottom:67.200000pt;}
.y1b9{bottom:82.240000pt;}
.y1b7{bottom:83.204000pt;}
.y255{bottom:83.824000pt;}
.y243{bottom:83.830533pt;}
.y238{bottom:83.840000pt;}
.y1ec{bottom:93.156000pt;}
.y2b{bottom:93.608000pt;}
.yd6{bottom:93.764000pt;}
.yf0{bottom:93.768000pt;}
.y176{bottom:93.776000pt;}
.y8a{bottom:93.788000pt;}
.y15a{bottom:93.792000pt;}
.y20b{bottom:93.800000pt;}
.y145{bottom:93.804000pt;}
.yb4{bottom:93.836000pt;}
.y197{bottom:93.856000pt;}
.y1b6{bottom:99.200000pt;}
.y1eb{bottom:109.152000pt;}
.y2a{bottom:109.604000pt;}
.y33{bottom:109.640000pt;}
.yd5{bottom:109.760000pt;}
.yef{bottom:109.764000pt;}
.y175{bottom:109.772000pt;}
.y11e{bottom:109.780000pt;}
.y89{bottom:109.784000pt;}
.y20a{bottom:109.796000pt;}
.y144{bottom:109.800000pt;}
.yb3{bottom:109.832000pt;}
.y196{bottom:109.852000pt;}
.y3a{bottom:113.520000pt;}
.y1b5{bottom:115.200000pt;}
.y55{bottom:116.000000pt;}
.y56{bottom:116.080000pt;}
.y42{bottom:119.120000pt;}
.y1ea{bottom:125.148000pt;}
.y29{bottom:125.616000pt;}
.y32{bottom:125.636000pt;}
.yd4{bottom:125.760000pt;}
.y174{bottom:125.768000pt;}
.y11d{bottom:125.776000pt;}
.y88{bottom:125.780000pt;}
.y209{bottom:125.792000pt;}
.y143{bottom:125.796000pt;}
.yb2{bottom:125.828000pt;}
.y195{bottom:125.848000pt;}
.y54{bottom:129.360000pt;}
.y24e{bottom:137.883733pt;}
.y1e9{bottom:141.144000pt;}
.y28{bottom:141.612000pt;}
.y31{bottom:141.632000pt;}
.yee{bottom:141.760000pt;}
.y173{bottom:141.764000pt;}
.y11c{bottom:141.772000pt;}
.y87{bottom:141.776000pt;}
.y208{bottom:141.788000pt;}
.y142{bottom:141.792000pt;}
.y237{bottom:141.796000pt;}
.yb1{bottom:141.824000pt;}
.y194{bottom:141.844000pt;}
.y44{bottom:145.840000pt;}
.y1e8{bottom:157.140000pt;}
.y27{bottom:157.608000pt;}
.y30{bottom:157.628000pt;}
.yd3{bottom:157.760000pt;}
.y172{bottom:157.764000pt;}
.y11b{bottom:157.768000pt;}
.y86{bottom:157.772000pt;}
.y207{bottom:157.784000pt;}
.y141{bottom:157.788000pt;}
.y236{bottom:157.792000pt;}
.yb0{bottom:157.820000pt;}
.y193{bottom:157.840000pt;}
.y1b4{bottom:163.168000pt;}
.y1e7{bottom:173.136000pt;}
.y26{bottom:173.604000pt;}
.y2f{bottom:173.624000pt;}
.y11a{bottom:173.764000pt;}
.y85{bottom:173.768000pt;}
.y206{bottom:173.780000pt;}
.y140{bottom:173.784000pt;}
.y235{bottom:173.788000pt;}
.yaf{bottom:173.816000pt;}
.y192{bottom:173.836000pt;}
.y1ca{bottom:173.840000pt;}
.y1e6{bottom:189.132000pt;}
.y25{bottom:189.600000pt;}
.y2e{bottom:189.620000pt;}
.yd2{bottom:189.760000pt;}
.y84{bottom:189.764000pt;}
.y205{bottom:189.776000pt;}
.y13f{bottom:189.780000pt;}
.yed{bottom:189.784000pt;}
.y21e{bottom:189.792000pt;}
.y191{bottom:189.832000pt;}
.y1c9{bottom:193.040000pt;}
.y119{bottom:195.120000pt;}
.y1e5{bottom:205.128000pt;}
.y24{bottom:205.600000pt;}
.y2d{bottom:205.616000pt;}
.y118{bottom:205.760000pt;}
.y83{bottom:205.764000pt;}
.y204{bottom:205.772000pt;}
.y159{bottom:205.776000pt;}
.yec{bottom:205.780000pt;}
.y21d{bottom:205.788000pt;}
.yae{bottom:205.820000pt;}
.y190{bottom:205.828000pt;}
.y1c8{bottom:205.840000pt;}
.y2c{bottom:221.612000pt;}
.y117{bottom:221.760000pt;}
.y203{bottom:221.768000pt;}
.y171{bottom:221.772000pt;}
.y82{bottom:221.776000pt;}
.y13e{bottom:221.784000pt;}
.yad{bottom:221.816000pt;}
.y18f{bottom:221.824000pt;}
.y1c7{bottom:225.040000pt;}
.y1e4{bottom:237.132000pt;}
.y202{bottom:237.764000pt;}
.y170{bottom:237.768000pt;}
.y81{bottom:237.772000pt;}
.y13d{bottom:237.780000pt;}
.yac{bottom:237.812000pt;}
.y18e{bottom:237.820000pt;}
.y1c6{bottom:237.840000pt;}
.y23{bottom:238.080000pt;}
.y1e3{bottom:253.128000pt;}
.y201{bottom:253.760000pt;}
.y116{bottom:253.764000pt;}
.y80{bottom:253.768000pt;}
.y13c{bottom:253.776000pt;}
.yab{bottom:253.808000pt;}
.y18d{bottom:253.816000pt;}
.y1c5{bottom:257.040000pt;}
.y22{bottom:258.480000pt;}
.y246{bottom:263.468400pt;}
.y1e2{bottom:269.124000pt;}
.y115{bottom:269.760000pt;}
.y7f{bottom:269.764000pt;}
.y16f{bottom:269.768000pt;}
.y13b{bottom:269.772000pt;}
.yaa{bottom:269.804000pt;}
.y18c{bottom:269.812000pt;}
.y1c1{bottom:269.840000pt;}
.y252{bottom:276.000000pt;}
.y21{bottom:279.360000pt;}
.y1e1{bottom:285.124000pt;}
.yeb{bottom:285.760000pt;}
.y16e{bottom:285.764000pt;}
.y13a{bottom:285.768000pt;}
.y234{bottom:285.772000pt;}
.y114{bottom:285.784000pt;}
.y7e{bottom:285.788000pt;}
.ya9{bottom:285.800000pt;}
.y18b{bottom:285.808000pt;}
.y1c4{bottom:289.040000pt;}
.y270{bottom:299.400000pt;}
.y20{bottom:300.320000pt;}
.y1e0{bottom:301.124000pt;}
.y139{bottom:301.764000pt;}
.y16d{bottom:301.768000pt;}
.y200{bottom:301.776000pt;}
.y113{bottom:301.780000pt;}
.y7d{bottom:301.784000pt;}
.ya8{bottom:301.796000pt;}
.y18a{bottom:301.804000pt;}
.y1c2{bottom:301.840000pt;}
.y256{bottom:303.000000pt;}
.y158{bottom:315.760000pt;}
.y1df{bottom:317.124000pt;}
.yea{bottom:317.760000pt;}
.y157{bottom:317.764000pt;}
.y1ff{bottom:317.772000pt;}
.y112{bottom:317.776000pt;}
.y7c{bottom:317.780000pt;}
.ya7{bottom:317.792000pt;}
.y189{bottom:317.800000pt;}
.y21c{bottom:317.824000pt;}
.y1c3{bottom:321.040000pt;}
.y1f{bottom:321.200000pt;}
.y280{bottom:322.240000pt;}
.y281{bottom:323.242000pt;}
.ye9{bottom:333.760000pt;}
.y16c{bottom:333.764000pt;}
.y1fe{bottom:333.768000pt;}
.y111{bottom:333.772000pt;}
.y156{bottom:333.776000pt;}
.ya6{bottom:333.788000pt;}
.y188{bottom:333.796000pt;}
.y21b{bottom:333.820000pt;}
.y233{bottom:333.824000pt;}
.y1b8{bottom:333.840000pt;}
.y25a{bottom:337.261451pt;}
.y1de{bottom:338.480000pt;}
.y1e{bottom:342.080000pt;}
.y1c0{bottom:344.080000pt;}
.y16b{bottom:349.764000pt;}
.y110{bottom:349.768000pt;}
.y155{bottom:349.772000pt;}
.y7b{bottom:349.784000pt;}
.y187{bottom:349.792000pt;}
.yd1{bottom:349.796000pt;}
.y21a{bottom:349.816000pt;}
.y232{bottom:349.820000pt;}
.y259{bottom:356.782800pt;}
.y1be{bottom:362.080000pt;}
.y1d{bottom:363.040000pt;}
.y1fd{bottom:365.760000pt;}
.y10f{bottom:365.764000pt;}
.y138{bottom:365.768000pt;}
.y7a{bottom:365.780000pt;}
.y186{bottom:365.788000pt;}
.yd0{bottom:365.792000pt;}
.y219{bottom:365.812000pt;}
.y231{bottom:365.816000pt;}
.y1dd{bottom:370.480000pt;}
.y1dc{bottom:377.920000pt;}
.y16a{bottom:379.760000pt;}
.y10e{bottom:381.760000pt;}
.y137{bottom:381.764000pt;}
.y79{bottom:381.776000pt;}
.y185{bottom:381.784000pt;}
.ycf{bottom:381.788000pt;}
.y218{bottom:381.808000pt;}
.y230{bottom:381.812000pt;}
.y1c{bottom:383.920000pt;}
.y275{bottom:386.466960pt;}
.y240{bottom:389.146667pt;}
.y27d{bottom:396.481840pt;}
.y10d{bottom:397.760000pt;}
.y136{bottom:397.764000pt;}
.y78{bottom:397.772000pt;}
.y184{bottom:397.780000pt;}
.yce{bottom:397.784000pt;}
.y217{bottom:397.804000pt;}
.y22f{bottom:397.808000pt;}
.y26a{bottom:397.873333pt;}
.y1b{bottom:404.800000pt;}
.y260{bottom:407.834907pt;}
.y1db{bottom:409.920000pt;}
.y154{bottom:410.560000pt;}
.y135{bottom:413.760000pt;}
.y134{bottom:413.764000pt;}
.y77{bottom:413.768000pt;}
.y183{bottom:413.776000pt;}
.ycd{bottom:413.780000pt;}
.y1fc{bottom:413.788000pt;}
.y216{bottom:413.800000pt;}
.y22e{bottom:413.804000pt;}
.y1ba{bottom:416.080000pt;}
.y1a{bottom:425.760000pt;}
.y133{bottom:429.760000pt;}
.y76{bottom:429.764000pt;}
.y10c{bottom:429.768000pt;}
.y182{bottom:429.772000pt;}
.ycc{bottom:429.776000pt;}
.y1fb{bottom:429.784000pt;}
.y215{bottom:429.796000pt;}
.y22d{bottom:429.800000pt;}
.y1da{bottom:441.920000pt;}
.y153{bottom:442.560000pt;}
.y282{bottom:443.640000pt;}
.y10b{bottom:445.764000pt;}
.y169{bottom:445.768000pt;}
.ycb{bottom:445.772000pt;}
.y1fa{bottom:445.780000pt;}
.ya5{bottom:445.784000pt;}
.y214{bottom:445.792000pt;}
.y22c{bottom:445.796000pt;}
.y75{bottom:445.832000pt;}
.y19{bottom:446.640000pt;}
.y25d{bottom:447.647067pt;}
.y274{bottom:455.140000pt;}
.y10a{bottom:461.760000pt;}
.y132{bottom:461.764000pt;}
.yca{bottom:461.768000pt;}
.y1f9{bottom:461.776000pt;}
.ya4{bottom:461.780000pt;}
.y109{bottom:461.784000pt;}
.y213{bottom:461.788000pt;}
.y22b{bottom:461.792000pt;}
.y74{bottom:461.828000pt;}
.y28f{bottom:465.766667pt;}
.y18{bottom:467.520000pt;}
.y26b{bottom:470.364293pt;}
.y27c{bottom:471.643440pt;}
.y1d3{bottom:473.920000pt;}
.y290{bottom:474.100000pt;}
.y152{bottom:474.560000pt;}
.y242{bottom:475.174533pt;}
.y181{bottom:477.760000pt;}
.yc9{bottom:477.764000pt;}
.y180{bottom:477.772000pt;}
.ya3{bottom:477.776000pt;}
.y108{bottom:477.780000pt;}
.y131{bottom:477.784000pt;}
.y22a{bottom:477.788000pt;}
.y73{bottom:477.824000pt;}
.y28c{bottom:477.933333pt;}
.y1b3{bottom:477.964000pt;}
.y28b{bottom:478.766667pt;}
.y284{bottom:481.602480pt;}
.y294{bottom:483.370800pt;}
.y298{bottom:484.380960pt;}
.y25f{bottom:487.664747pt;}
.y17{bottom:488.480000pt;}
.yc8{bottom:493.768000pt;}
.ya2{bottom:493.772000pt;}
.y107{bottom:493.776000pt;}
.y130{bottom:493.780000pt;}
.y229{bottom:493.784000pt;}
.ye8{bottom:493.792000pt;}
.y72{bottom:493.820000pt;}
.y1b2{bottom:493.960000pt;}
.y254{bottom:495.040000pt;}
.y288{bottom:497.041120pt;}
.y287{bottom:498.047680pt;}
.y293{bottom:500.968080pt;}
.y297{bottom:501.978240pt;}
.y14e{bottom:506.560000pt;}
.y1d5{bottom:509.120000pt;}
.yc7{bottom:509.764000pt;}
.ya1{bottom:509.768000pt;}
.y106{bottom:509.772000pt;}
.y12f{bottom:509.776000pt;}
.y228{bottom:509.780000pt;}
.y71{bottom:509.816000pt;}
.y1b1{bottom:509.956000pt;}
.y25c{bottom:516.320107pt;}
.y247{bottom:518.166667pt;}
.y276{bottom:523.460720pt;}
.y27b{bottom:523.640000pt;}
.y1d8{bottom:525.120000pt;}
.y17f{bottom:525.760000pt;}
.ya0{bottom:525.764000pt;}
.y105{bottom:525.768000pt;}
.y12e{bottom:525.772000pt;}
.y227{bottom:525.776000pt;}
.yc6{bottom:525.787867pt;}
.ye7{bottom:525.796000pt;}
.y70{bottom:525.812000pt;}
.y1b0{bottom:525.952000pt;}
.y168{bottom:531.120000pt;}
.y16{bottom:531.360000pt;}
.y244{bottom:535.333333pt;}
.y167{bottom:538.560000pt;}
.y1d7{bottom:541.120000pt;}
.y17e{bottom:541.760000pt;}
.y104{bottom:541.764000pt;}
.y12d{bottom:541.768000pt;}
.y226{bottom:541.772000pt;}
.y9f{bottom:541.780000pt;}
.yc5{bottom:541.783867pt;}
.ye6{bottom:541.792000pt;}
.y1af{bottom:541.948000pt;}
.y1d6{bottom:543.760000pt;}
.y277{bottom:552.933333pt;}
.y25b{bottom:557.306667pt;}
.y27e{bottom:557.600000pt;}
.y103{bottom:557.760000pt;}
.y12c{bottom:557.764000pt;}
.y225{bottom:557.768000pt;}
.y102{bottom:557.772000pt;}
.y9e{bottom:557.776000pt;}
.yc4{bottom:557.779867pt;}
.ye5{bottom:557.788000pt;}
.y6f{bottom:557.816000pt;}
.y1ae{bottom:557.944000pt;}
.y26c{bottom:558.363733pt;}
.y25e{bottom:559.655467pt;}
.y15{bottom:563.200000pt;}
.y24c{bottom:567.166667pt;}
.y14{bottom:568.800000pt;}
.y1d1{bottom:569.920000pt;}
.y166{bottom:570.560000pt;}
.y279{bottom:571.584693pt;}
.y278{bottom:573.590373pt;}
.y12b{bottom:573.760000pt;}
.y212{bottom:573.764000pt;}
.y101{bottom:573.768000pt;}
.y9d{bottom:573.772000pt;}
.yc3{bottom:573.775867pt;}
.y17d{bottom:573.780000pt;}
.ye4{bottom:573.784000pt;}
.y6e{bottom:573.812000pt;}
.y1ad{bottom:573.940000pt;}
.y1d2{bottom:580.160000pt;}
.y13{bottom:583.760000pt;}
.y12a{bottom:589.760000pt;}
.y100{bottom:589.764000pt;}
.y9c{bottom:589.768000pt;}
.yc2{bottom:589.771867pt;}
.y17c{bottom:589.776000pt;}
.ye3{bottom:589.780000pt;}
.y6d{bottom:589.808000pt;}
.y211{bottom:589.840000pt;}
.y1ac{bottom:589.936000pt;}
.y12{bottom:598.800000pt;}
.y165{bottom:602.560000pt;}
.y27a{bottom:602.577573pt;}
.y250{bottom:604.044000pt;}
.y24b{bottom:605.044000pt;}
.yff{bottom:605.760000pt;}
.y9b{bottom:605.764000pt;}
.yc1{bottom:605.767867pt;}
.y17b{bottom:605.772000pt;}
.ye2{bottom:605.776000pt;}
.y6c{bottom:605.804000pt;}
.y210{bottom:605.836000pt;}
.y1ab{bottom:605.932000pt;}
.y11{bottom:613.760000pt;}
.y271{bottom:618.600000pt;}
.y27f{bottom:619.640000pt;}
.y261{bottom:620.833333pt;}
.y283{bottom:621.620320pt;}
.yfe{bottom:621.760000pt;}
.yc0{bottom:621.763867pt;}
.y9a{bottom:621.768000pt;}
.ye1{bottom:621.772000pt;}
.y6b{bottom:621.800000pt;}
.y20f{bottom:621.832000pt;}
.y1aa{bottom:621.928000pt;}
.y285{bottom:627.580400pt;}
.y10{bottom:628.800000pt;}
.y164{bottom:634.560000pt;}
.y239{bottom:637.349867pt;}
.ybf{bottom:637.759867pt;}
.y99{bottom:637.764000pt;}
.ye0{bottom:637.768000pt;}
.y6a{bottom:637.796000pt;}
.y20e{bottom:637.828000pt;}
.y1a9{bottom:637.924000pt;}
.yf{bottom:641.520000pt;}
.y28e{bottom:645.933333pt;}
.y28d{bottom:646.100000pt;}
.y23b{bottom:646.166587pt;}
.y23c{bottom:647.993307pt;}
.y28a{bottom:649.600000pt;}
.y23d{bottom:651.497627pt;}
.ybe{bottom:653.755867pt;}
.ydf{bottom:653.764000pt;}
.y129{bottom:653.771867pt;}
.y1f8{bottom:653.772000pt;}
.yfd{bottom:653.780000pt;}
.y98{bottom:653.783867pt;}
.y69{bottom:653.792000pt;}
.y20d{bottom:653.824000pt;}
.y1a8{bottom:653.920000pt;}
.ye{bottom:656.560000pt;}
.y292{bottom:658.362720pt;}
.y289{bottom:659.100000pt;}
.y296{bottom:659.372880pt;}
.y163{bottom:666.560000pt;}
.yd{bottom:669.280000pt;}
.yde{bottom:669.760000pt;}
.y128{bottom:669.767867pt;}
.y1f7{bottom:669.768000pt;}
.yfc{bottom:669.776000pt;}
.y97{bottom:669.779867pt;}
.y68{bottom:669.788000pt;}
.y20c{bottom:669.820000pt;}
.y1a7{bottom:669.916000pt;}
.y26d{bottom:671.359413pt;}
.y286{bottom:673.040000pt;}
.y291{bottom:675.960000pt;}
.y295{bottom:676.970160pt;}
.yc{bottom:684.400000pt;}
.y127{bottom:685.763867pt;}
.y1f6{bottom:685.764000pt;}
.ybd{bottom:685.767867pt;}
.yfb{bottom:685.772000pt;}
.y96{bottom:685.775867pt;}
.y67{bottom:685.784000pt;}
.y14d{bottom:685.816000pt;}
.y1a6{bottom:685.912000pt;}
.y23a{bottom:692.263307pt;}
.y266{bottom:692.807200pt;}
.y162{bottom:698.560000pt;}
.yb{bottom:699.360000pt;}
.y24f{bottom:700.040000pt;}
.y24a{bottom:701.040000pt;}
.ydd{bottom:701.759867pt;}
.ybc{bottom:701.763867pt;}
.y126{bottom:701.767867pt;}
.yfa{bottom:701.768000pt;}
.y95{bottom:701.771867pt;}
.y66{bottom:701.780000pt;}
.y1d0{bottom:701.800000pt;}
.y14c{bottom:701.812000pt;}
.y1a5{bottom:701.908000pt;}
.ya{bottom:714.400000pt;}
.y26e{bottom:715.368453pt;}
.ydc{bottom:717.759867pt;}
.y125{bottom:717.763867pt;}
.yf9{bottom:717.764000pt;}
.y94{bottom:717.767867pt;}
.y1f5{bottom:717.768000pt;}
.y17a{bottom:717.772000pt;}
.y65{bottom:717.776000pt;}
.ybb{bottom:717.780000pt;}
.y1cf{bottom:717.796000pt;}
.y14b{bottom:717.808000pt;}
.y1a4{bottom:717.904000pt;}
.y269{bottom:724.809600pt;}
.y9{bottom:727.120000pt;}
.y160{bottom:730.560000pt;}
.yf8{bottom:733.760000pt;}
.y93{bottom:733.763867pt;}
.y1f4{bottom:733.764000pt;}
.y179{bottom:733.768000pt;}
.y64{bottom:733.772000pt;}
.yba{bottom:733.776000pt;}
.y1ce{bottom:733.792000pt;}
.y14a{bottom:733.804000pt;}
.y1a3{bottom:733.900000pt;}
.y265{bottom:740.810800pt;}
.y8{bottom:742.160000pt;}
.y1f3{bottom:749.760000pt;}
.y92{bottom:749.763867pt;}
.y178{bottom:749.764000pt;}
.y63{bottom:749.768000pt;}
.yb9{bottom:749.772000pt;}
.ydb{bottom:749.776000pt;}
.y1cd{bottom:749.788000pt;}
.y149{bottom:749.800000pt;}
.y1a2{bottom:749.896000pt;}
.y23f{bottom:752.426667pt;}
.y7{bottom:757.200000pt;}
.y268{bottom:760.482000pt;}
.y15f{bottom:762.560000pt;}
.y62{bottom:765.764000pt;}
.yb8{bottom:765.768000pt;}
.yda{bottom:765.772000pt;}
.y91{bottom:765.780000pt;}
.y1cc{bottom:765.784000pt;}
.y148{bottom:765.796000pt;}
.y1a1{bottom:765.892000pt;}
.y26f{bottom:769.368533pt;}
.y6{bottom:772.160000pt;}
.y273{bottom:775.682000pt;}
.y23e{bottom:776.426667pt;}
.yf7{bottom:781.760000pt;}
.yb7{bottom:781.764000pt;}
.yd9{bottom:781.768000pt;}
.y90{bottom:781.776000pt;}
.y61{bottom:781.780000pt;}
.y147{bottom:781.792000pt;}
.y224{bottom:781.796000pt;}
.y1a0{bottom:781.888000pt;}
.y5{bottom:787.200000pt;}
.y264{bottom:787.640000pt;}
.y267{bottom:788.638240pt;}
.y272{bottom:790.850000pt;}
.y15e{bottom:794.560000pt;}
.y251{bottom:795.040000pt;}
.y1f2{bottom:797.760000pt;}
.yd8{bottom:797.764000pt;}
.yb6{bottom:797.768000pt;}
.y60{bottom:797.776000pt;}
.y146{bottom:797.788000pt;}
.y223{bottom:797.792000pt;}
.y19f{bottom:797.884000pt;}
.y4{bottom:799.920000pt;}
.y241{bottom:808.006533pt;}
.yf6{bottom:813.760000pt;}
.yb5{bottom:813.764000pt;}
.y5f{bottom:813.772000pt;}
.y124{bottom:813.776000pt;}
.y8f{bottom:813.780000pt;}
.yf5{bottom:813.784000pt;}
.y222{bottom:813.788000pt;}
.y19e{bottom:813.880000pt;}
.y3{bottom:825.200000pt;}
.y15c{bottom:826.560000pt;}
.y5e{bottom:829.768000pt;}
.y123{bottom:829.772000pt;}
.y8e{bottom:829.776000pt;}
.yf4{bottom:829.780000pt;}
.y221{bottom:829.784000pt;}
.y19d{bottom:829.876000pt;}
.y15d{bottom:845.760000pt;}
.y5d{bottom:845.764000pt;}
.y122{bottom:845.768000pt;}
.y8d{bottom:845.772000pt;}
.yf3{bottom:845.776000pt;}
.y220{bottom:845.780000pt;}
.y1f1{bottom:845.808000pt;}
.y19c{bottom:845.872000pt;}
.y1cb{bottom:859.760000pt;}
.y5c{bottom:861.760000pt;}
.y121{bottom:861.764000pt;}
.y8c{bottom:861.768000pt;}
.yf2{bottom:861.772000pt;}
.y21f{bottom:861.776000pt;}
.y1f0{bottom:861.804000pt;}
.y19b{bottom:861.868000pt;}
.y15b{bottom:874.560000pt;}
.y8b{bottom:877.764000pt;}
.yf1{bottom:877.768000pt;}
.y120{bottom:877.772000pt;}
.y1ef{bottom:877.800000pt;}
.y19a{bottom:877.864000pt;}
.y2{bottom:880.960000pt;}
.y5b{bottom:893.764000pt;}
.y11f{bottom:893.768000pt;}
.y1ee{bottom:893.796000pt;}
.y199{bottom:893.860000pt;}
.y5a{bottom:909.760000pt;}
.yd7{bottom:909.764000pt;}
.y1ed{bottom:909.792000pt;}
.y198{bottom:909.856000pt;}
.y177{bottom:915.120000pt;}
.y1{bottom:921.840000pt;}
.y59{bottom:946.000000pt;}
.y58{bottom:946.880000pt;}
.y57{bottom:947.840000pt;}
.y53{bottom:949.200000pt;}
.y4f{bottom:955.120000pt;}
.y43{bottom:966.000000pt;}
.y45{bottom:973.360000pt;}
.y39{bottom:992.720000pt;}
.y4d{bottom:998.480000pt;}
.y46{bottom:1019.920000pt;}
.y4a{bottom:1032.640000pt;}
.y48{bottom:1043.360000pt;}
.y34{bottom:1062.560000pt;}
.y51{bottom:1089.200000pt;}
.y3d{bottom:1107.360000pt;}
.h36{height:21.597656pt;}
.h46{height:22.422438pt;}
.h11{height:26.720000pt;}
.hf{height:27.198667pt;}
.h47{height:27.372506pt;}
.hc{height:28.796875pt;}
.h3f{height:28.833333pt;}
.h21{height:31.390625pt;}
.h28{height:31.998667pt;}
.h29{height:32.000000pt;}
.h2f{height:32.507812pt;}
.h13{height:33.360000pt;}
.h32{height:33.692344pt;}
.h1f{height:35.130928pt;}
.h52{height:35.146656pt;}
.h26{height:35.822677pt;}
.h5{height:35.996094pt;}
.h33{height:36.745312pt;}
.h4{height:38.299844pt;}
.h43{height:38.563700pt;}
.h4a{height:40.092831pt;}
.h20{height:40.335938pt;}
.h2a{height:40.371580pt;}
.he{height:42.641333pt;}
.h53{height:42.906344pt;}
.h6{height:43.195312pt;}
.h40{height:43.401406pt;}
.h44{height:47.077663pt;}
.h8{height:47.085938pt;}
.h2d{height:47.109375pt;}
.h2c{height:48.000000pt;}
.h7{height:48.090781pt;}
.h1c{height:48.298625pt;}
.h16{height:48.315158pt;}
.h37{height:48.359000pt;}
.h30{height:48.375000pt;}
.h1e{height:50.692134pt;}
.h39{height:52.638625pt;}
.h15{height:52.718625pt;}
.h1b{height:52.719158pt;}
.h19{height:52.734625pt;}
.h17{height:52.735158pt;}
.h22{height:52.750625pt;}
.h24{height:52.766625pt;}
.h23{height:52.782625pt;}
.h18{height:52.798625pt;}
.h25{height:52.799158pt;}
.h38{height:52.814250pt;}
.h1a{height:52.814625pt;}
.h41{height:52.983369pt;}
.h4c{height:53.134669pt;}
.h57{height:55.736250pt;}
.hb{height:57.593750pt;}
.h9{height:60.000000pt;}
.h2b{height:60.830625pt;}
.h56{height:61.076250pt;}
.h1d{height:62.684500pt;}
.h2{height:62.812500pt;}
.h31{height:64.000000pt;}
.h27{height:64.001333pt;}
.h4d{height:64.865425pt;}
.h54{height:66.750000pt;}
.h48{height:71.325000pt;}
.h4e{height:73.836602pt;}
.h4f{height:73.849998pt;}
.h3c{height:77.763750pt;}
.h10{height:81.495156pt;}
.h3d{height:83.437500pt;}
.h3e{height:89.111250pt;}
.h35{height:96.000000pt;}
.h2e{height:96.640000pt;}
.h34{height:96.641333pt;}
.h3b{height:100.125000pt;}
.h3{height:115.187500pt;}
.h55{height:117.059610pt;}
.h50{height:122.486250pt;}
.h45{height:124.833333pt;}
.ha{height:129.840000pt;}
.h14{height:140.000000pt;}
.h58{height:146.444010pt;}
.hd{height:156.560000pt;}
.h12{height:167.440000pt;}
.h51{height:216.166667pt;}
.h49{height:232.000000pt;}
.h59{height:266.467690pt;}
.h42{height:285.833333pt;}
.h4b{height:326.000000pt;}
.h3a{height:960.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:30.320000pt;}
.w4{width:30.401333pt;}
.w17{width:30.558667pt;}
.w20{width:30.641333pt;}
.w28{width:33.600000pt;}
.w29{width:34.800000pt;}
.w21{width:36.000000pt;}
.w1e{width:36.640000pt;}
.w1f{width:36.720000pt;}
.w15{width:36.800000pt;}
.w6{width:37.920000pt;}
.w26{width:39.440000pt;}
.w22{width:41.360000pt;}
.w23{width:41.440000pt;}
.w27{width:43.600000pt;}
.w11{width:50.960000pt;}
.w25{width:53.440000pt;}
.w19{width:54.800000pt;}
.w1a{width:55.360000pt;}
.w18{width:55.680000pt;}
.w2b{width:61.758667pt;}
.w13{width:61.840000pt;}
.w12{width:61.920000pt;}
.w2a{width:64.481333pt;}
.w1b{width:67.280000pt;}
.w1c{width:72.720000pt;}
.w1d{width:124.160000pt;}
.w7{width:141.120000pt;}
.w10{width:144.798667pt;}
.w5{width:229.038667pt;}
.w3{width:230.718667pt;}
.w2d{width:287.833333pt;}
.w2f{width:291.833333pt;}
.w32{width:304.000000pt;}
.w30{width:312.000000pt;}
.wc{width:317.520000pt;}
.we{width:319.121333pt;}
.wf{width:319.518667pt;}
.w14{width:319.520000pt;}
.w2e{width:322.666667pt;}
.w24{width:331.120000pt;}
.wd{width:343.998667pt;}
.wb{width:345.600000pt;}
.w31{width:464.000000pt;}
.w8{width:528.078667pt;}
.wa{width:663.120000pt;}
.w2c{width:720.000000pt;}
.w9{width:788.080000pt;}
.w2{width:793.805333pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x85{left:-12.633285pt;}
.x15{left:-6.640000pt;}
.x0{left:0.000000pt;}
.x6c{left:3.040000pt;}
.x35{left:4.400000pt;}
.x38{left:6.960000pt;}
.x7d{left:9.270533pt;}
.x6e{left:16.080000pt;}
.x6d{left:17.440000pt;}
.x6f{left:21.520000pt;}
.x67{left:22.480000pt;}
.x82{left:23.536000pt;}
.x39{left:24.800000pt;}
.x61{left:27.200000pt;}
.x7c{left:30.000000pt;}
.x5b{left:34.080000pt;}
.x4b{left:36.000000pt;}
.x55{left:39.920000pt;}
.x16{left:53.360000pt;}
.x6b{left:59.280000pt;}
.xa{left:70.640000pt;}
.x1{left:77.360000pt;}
.x2d{left:85.600000pt;}
.x95{left:87.600000pt;}
.x9e{left:97.040000pt;}
.x76{left:102.266667pt;}
.x5a{left:107.200000pt;}
.x26{left:109.440000pt;}
.x27{left:116.000000pt;}
.x32{left:119.840000pt;}
.x1e{left:125.360000pt;}
.x5c{left:130.480000pt;}
.x1f{left:131.680000pt;}
.x58{left:133.280000pt;}
.x31{left:134.880000pt;}
.x83{left:136.000000pt;}
.x8{left:139.200000pt;}
.x59{left:141.280000pt;}
.x7{left:145.840000pt;}
.xa1{left:155.505707pt;}
.x9f{left:157.906667pt;}
.x7e{left:160.672267pt;}
.x23{left:163.600000pt;}
.x3{left:167.040000pt;}
.x5d{left:169.920000pt;}
.x24{left:171.200000pt;}
.xa0{left:173.908187pt;}
.x5e{left:182.800000pt;}
.x4{left:185.440000pt;}
.x6{left:190.240000pt;}
.x28{left:191.840000pt;}
.x5{left:198.640000pt;}
.x87{left:208.666667pt;}
.x12{left:209.920000pt;}
.x5f{left:213.520000pt;}
.x2e{left:222.160000pt;}
.x84{left:225.708800pt;}
.x43{left:227.360000pt;}
.x81{left:231.600000pt;}
.x60{left:238.400000pt;}
.x62{left:247.120000pt;}
.x92{left:249.613893pt;}
.x91{left:251.933333pt;}
.x7b{left:256.742400pt;}
.x90{left:261.410000pt;}
.x33{left:271.200000pt;}
.x2f{left:273.120000pt;}
.x8a{left:274.816853pt;}
.x89{left:276.138053pt;}
.x34{left:279.200000pt;}
.x66{left:281.920000pt;}
.x65{left:288.400000pt;}
.x64{left:289.920000pt;}
.x63{left:291.120000pt;}
.x79{left:297.589333pt;}
.xb{left:301.360000pt;}
.x25{left:307.840000pt;}
.x97{left:310.628933pt;}
.x41{left:312.160000pt;}
.x80{left:319.728400pt;}
.x70{left:321.600000pt;}
.x20{left:328.400000pt;}
.x99{left:329.600000pt;}
.xc{left:331.760000pt;}
.xd{left:334.000000pt;}
.x30{left:335.040000pt;}
.x8f{left:336.266667pt;}
.x94{left:342.933333pt;}
.x21{left:344.000000pt;}
.x6a{left:346.400000pt;}
.x22{left:350.320000pt;}
.x69{left:354.320000pt;}
.x68{left:356.080000pt;}
.x1c{left:360.400000pt;}
.x1d{left:366.880000pt;}
.x13{left:368.720000pt;}
.x93{left:373.041760pt;}
.x7f{left:385.666667pt;}
.x7a{left:390.666667pt;}
.x3e{left:394.800000pt;}
.x18{left:396.884000pt;}
.x17{left:398.960000pt;}
.x9b{left:406.706533pt;}
.x98{left:407.986693pt;}
.x88{left:408.933333pt;}
.x57{left:416.720000pt;}
.x4f{left:418.320000pt;}
.x9{left:420.892000pt;}
.x75{left:430.869733pt;}
.x45{left:450.160000pt;}
.x14{left:452.720000pt;}
.x36{left:457.680000pt;}
.x46{left:465.760000pt;}
.x86{left:467.794560pt;}
.x11{left:471.440000pt;}
.x1b{left:475.840000pt;}
.x4a{left:480.800000pt;}
.x37{left:488.000000pt;}
.x8d{left:497.610960pt;}
.x8e{left:500.947520pt;}
.xa2{left:506.704667pt;}
.x50{left:510.400000pt;}
.x2b{left:511.920000pt;}
.xa3{left:514.698107pt;}
.x2{left:517.040000pt;}
.x2c{left:518.480000pt;}
.x4c{left:527.200000pt;}
.x78{left:535.933333pt;}
.x47{left:538.240000pt;}
.x77{left:549.600000pt;}
.x8c{left:551.611040pt;}
.x4d{left:553.440000pt;}
.x8b{left:555.600000pt;}
.xe{left:560.800000pt;}
.x74{left:565.040453pt;}
.x96{left:569.600000pt;}
.x3a{left:574.240000pt;}
.x44{left:579.040000pt;}
.x3d{left:582.560000pt;}
.x73{left:587.371173pt;}
.x48{left:590.160000pt;}
.xf{left:598.720000pt;}
.x4e{left:600.480000pt;}
.x72{left:611.286293pt;}
.x42{left:618.240000pt;}
.x49{left:629.120000pt;}
.x29{left:630.400000pt;}
.x51{left:631.520000pt;}
.x2a{left:636.880000pt;}
.x9c{left:638.320000pt;}
.x9d{left:639.320000pt;}
.x71{left:645.043333pt;}
.x9a{left:649.592880pt;}
.x54{left:663.280000pt;}
.x52{left:666.320000pt;}
.x3f{left:667.280000pt;}
.x53{left:672.960000pt;}
.x19{left:674.560000pt;}
.x1a{left:682.720000pt;}
.x3b{left:685.600000pt;}
.x40{left:700.320000pt;}
.x56{left:701.600000pt;}
.x10{left:708.000000pt;}
.x3c{left:716.960000pt;}
}




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