
    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_77cb7157554f055aa091e764.woff')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_220de8b8c27542153a142d9b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.735000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1aee5c0638c6149808365c77.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0f29a1e73fc25bc826e51b10.woff')format("woff");}.ff4{font-family:ff4;line-height:0.761000;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_ff755163f529b20b7822e1e7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_32670118be722c22aa142269.woff')format("woff");}.ff6{font-family:ff6;line-height:0.707000;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_24ad9279200cfdff0b41b62e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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_9bc03f096e36f346313f6366.woff')format("woff");}.ff8{font-family:ff8;line-height:0.680000;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_986039f576719c2033b8522e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.702000;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_f5e2f8413c6f06b5d6bf5446.woff')format("woff");}.ffa{font-family:ffa;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_41be3cad95d8dc01cbd4d830.woff')format("woff");}.ffb{font-family:ffb;line-height:1.001000;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_5febc3a5120d950d986b48d9.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_37ac870500f303e358505ae4.woff')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_63a047147a9a3fe94a95d52b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_30c40aebc91887e8aacb6808.woff')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2d4968ec7bbeecae08f6d030.woff')format("woff");}.ff10{font-family:ff10;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ddea202b45dbeb89d1e9c9c3.woff')format("woff");}.ff11{font-family:ff11;line-height:0.705000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_ca59dd2a654700b896e5cdc8.woff')format("woff");}.ff12{font-family:ff12;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_2ee92a6447f16c7601784e76.woff')format("woff");}.ff13{font-family:ff13;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_b06ffd3ac9a289c6c1ce84b8.woff')format("woff");}.ff14{font-family:ff14;line-height:0.460000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_8c31ef1261381dc41b10ed85.woff')format("woff");}.ff15{font-family:ff15;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_e242cda5b8557e138ed09a9b.woff')format("woff");}.ff16{font-family:ff16;line-height:0.851000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_409eb53e69b59b3d7980b8a6.woff')format("woff");}.ff17{font-family:ff17;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_5d30e2418088e8ae89b3af28.woff')format("woff");}.ff18{font-family:ff18;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_1330a0a269649b848fbee0a3.woff')format("woff");}.ff19{font-family:ff19;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_e5f84808336bfd8d1e4088b2.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_0bcced5437b1982edbd3db4e.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.735000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_92c54641f433e0f6f84e97fd.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_1babf82820c9a3335ba9cf9f.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_2a1753a6d0b506887450c1ae.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_a87e519fe9d3c804df24442a.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_43b126403f2d6630a465b712.woff')format("woff");}.ff20{font-family:ff20;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_c39cdb589575f88b7f9cb33c.woff')format("woff");}.ff21{font-family:ff21;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_decb13b1d3972d5f908d5c65.woff')format("woff");}.ff22{font-family:ff22;line-height:0.705000;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;}
.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);}
.m1{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:-84.600000px;}
.v18{vertical-align:-54.816000px;}
.v1f{vertical-align:-30.480000px;}
.v2{vertical-align:-23.952000px;}
.v25{vertical-align:-21.774000px;}
.v3{vertical-align:-8.100000px;}
.v1b{vertical-align:-5.976000px;}
.v1d{vertical-align:-1.986000px;}
.v0{vertical-align:0.000000px;}
.v17{vertical-align:5.832000px;}
.v1c{vertical-align:7.014000px;}
.v20{vertical-align:9.000000px;}
.v13{vertical-align:11.688000px;}
.v24{vertical-align:12.918000px;}
.v16{vertical-align:14.832000px;}
.vc{vertical-align:17.328000px;}
.v9{vertical-align:20.688000px;}
.v4{vertical-align:21.774000px;}
.v8{vertical-align:23.628000px;}
.v14{vertical-align:24.774000px;}
.v1{vertical-align:26.130000px;}
.v1e{vertical-align:28.788000px;}
.v15{vertical-align:30.156000px;}
.v6{vertical-align:32.160000px;}
.v27{vertical-align:36.606000px;}
.v5{vertical-align:41.160000px;}
.v26{vertical-align:45.000000px;}
.vf{vertical-align:46.992000px;}
.v21{vertical-align:49.590000px;}
.ve{vertical-align:55.992000px;}
.vb{vertical-align:62.364000px;}
.v23{vertical-align:64.782000px;}
.v12{vertical-align:65.934000px;}
.v19{vertical-align:72.750000px;}
.v7{vertical-align:81.750000px;}
.va{vertical-align:84.600000px;}
.v11{vertical-align:103.524000px;}
.v22{vertical-align:113.388000px;}
.v1a{vertical-align:125.760000px;}
.vd{vertical-align:140.592000px;}
.ls3{letter-spacing:0.000000px;}
.ls9f{letter-spacing:0.000062px;}
.lsb4{letter-spacing:0.000993px;}
.ls49{letter-spacing:0.003283px;}
.lsf3{letter-spacing:0.004503px;}
.ls40{letter-spacing:0.004596px;}
.ls7{letter-spacing:0.006000px;}
.ls123{letter-spacing:0.006335px;}
.ls59{letter-spacing:0.006538px;}
.ls102{letter-spacing:0.007158px;}
.lsf5{letter-spacing:0.008552px;}
.lsff{letter-spacing:0.008557px;}
.ls9e{letter-spacing:0.008835px;}
.ls99{letter-spacing:0.011070px;}
.ls33{letter-spacing:0.012000px;}
.ls1d{letter-spacing:0.012538px;}
.lse8{letter-spacing:0.012993px;}
.ls16{letter-spacing:0.014172px;}
.lsbd{letter-spacing:0.014580px;}
.ls80{letter-spacing:0.014604px;}
.lsb5{letter-spacing:0.015631px;}
.ls12c{letter-spacing:0.017026px;}
.ls9{letter-spacing:0.018000px;}
.ls4f{letter-spacing:0.019207px;}
.lsfb{letter-spacing:0.022300px;}
.ls44{letter-spacing:0.024000px;}
.lsf9{letter-spacing:0.024538px;}
.ls68{letter-spacing:0.024978px;}
.ls30{letter-spacing:0.030000px;}
.lsf2{letter-spacing:0.239102px;}
.lsf6{letter-spacing:0.240000px;}
.ls103{letter-spacing:1.174107px;}
.ls21{letter-spacing:1.176000px;}
.ls122{letter-spacing:1.176538px;}
.ls120{letter-spacing:1.179269px;}
.ls126{letter-spacing:1.179996px;}
.ls100{letter-spacing:1.180107px;}
.ls19{letter-spacing:1.182000px;}
.ls15{letter-spacing:1.195512px;}
.lsb3{letter-spacing:1.613941px;}
.ls89{letter-spacing:1.673717px;}
.ls109{letter-spacing:1.800000px;}
.ls115{letter-spacing:2.154000px;}
.ls125{letter-spacing:2.271473px;}
.ls11f{letter-spacing:2.280000px;}
.lsce{letter-spacing:2.640000px;}
.lsa4{letter-spacing:2.984869px;}
.ls5b{letter-spacing:2.985306px;}
.ls14{letter-spacing:2.985924px;}
.ls3d{letter-spacing:2.988277px;}
.ls71{letter-spacing:2.989208px;}
.ls4{letter-spacing:2.989542px;}
.ls0{letter-spacing:2.990340px;}
.ls114{letter-spacing:2.991843px;}
.ls32{letter-spacing:2.991924px;}
.ls39{letter-spacing:2.994277px;}
.lse9{letter-spacing:2.995208px;}
.ls82{letter-spacing:2.995542px;}
.lsd2{letter-spacing:3.168000px;}
.ls37{letter-spacing:3.426000px;}
.lsa0{letter-spacing:3.444000px;}
.ls78{letter-spacing:3.466985px;}
.ls2c{letter-spacing:3.480000px;}
.ls46{letter-spacing:3.960000px;}
.ls47{letter-spacing:4.004965px;}
.lsbe{letter-spacing:4.123696px;}
.ls73{letter-spacing:4.279518px;}
.ls45{letter-spacing:4.303843px;}
.lsac{letter-spacing:4.495548px;}
.ls6e{letter-spacing:4.860000px;}
.ls86{letter-spacing:4.901599px;}
.lse{letter-spacing:5.032118px;}
.lsfe{letter-spacing:5.038118px;}
.ls121{letter-spacing:5.269542px;}
.ls2{letter-spacing:5.892960px;}
.lseb{letter-spacing:5.932776px;}
.lsb1{letter-spacing:5.996987px;}
.ls8{letter-spacing:6.203361px;}
.ls8b{letter-spacing:6.515540px;}
.ls12e{letter-spacing:6.555552px;}
.ls130{letter-spacing:6.575316px;}
.ls101{letter-spacing:6.645306px;}
.ls60{letter-spacing:7.158538px;}
.ls18{letter-spacing:7.170000px;}
.ls20{letter-spacing:7.176000px;}
.ls1{letter-spacing:7.241700px;}
.ls131{letter-spacing:7.489854px;}
.ls6{letter-spacing:7.492067px;}
.ls9b{letter-spacing:7.498067px;}
.lsc6{letter-spacing:8.106000px;}
.lsc0{letter-spacing:8.112000px;}
.ls51{letter-spacing:8.308808px;}
.lsfc{letter-spacing:8.328000px;}
.ls74{letter-spacing:8.334000px;}
.ls28{letter-spacing:8.368584px;}
.lsaa{letter-spacing:8.400000px;}
.ls124{letter-spacing:8.483361px;}
.lsb0{letter-spacing:8.995480px;}
.ls11e{letter-spacing:9.778067px;}
.ls10d{letter-spacing:9.960000px;}
.ls113{letter-spacing:9.996000px;}
.ls50{letter-spacing:10.161924px;}
.lsc9{letter-spacing:10.277641px;}
.lsa7{letter-spacing:10.302993px;}
.lscd{letter-spacing:10.329687px;}
.ls6f{letter-spacing:10.800000px;}
.ls6d{letter-spacing:10.860000px;}
.lsd4{letter-spacing:11.328000px;}
.lsf1{letter-spacing:11.357364px;}
.lsef{letter-spacing:11.417140px;}
.lsa9{letter-spacing:11.420315px;}
.lsaf{letter-spacing:11.993973px;}
.ls116{letter-spacing:12.081843px;}
.ls75{letter-spacing:12.961518px;}
.ls10c{letter-spacing:12.961542px;}
.lsad{letter-spacing:12.985542px;}
.lsee{letter-spacing:12.990277px;}
.lsbc{letter-spacing:12.991542px;}
.ls1c{letter-spacing:13.320000px;}
.ls1f{letter-spacing:13.329959px;}
.ls1b{letter-spacing:13.332000px;}
.ls58{letter-spacing:13.338000px;}
.ls7e{letter-spacing:13.380000px;}
.lsc2{letter-spacing:13.447542px;}
.lsf4{letter-spacing:13.449510px;}
.ls22{letter-spacing:13.815306px;}
.ls1a{letter-spacing:13.821306px;}
.lsd5{letter-spacing:14.160000px;}
.ls107{letter-spacing:14.220000px;}
.ls10a{letter-spacing:14.280000px;}
.ls110{letter-spacing:14.465695px;}
.lsd8{letter-spacing:14.525471px;}
.ls9a{letter-spacing:14.668067px;}
.ls90{letter-spacing:14.820000px;}
.lsdd{letter-spacing:14.880000px;}
.lsde{letter-spacing:14.884124px;}
.lsb6{letter-spacing:14.943900px;}
.lsae{letter-spacing:15.043288px;}
.ls48{letter-spacing:15.300000px;}
.ls117{letter-spacing:16.080000px;}
.ls1e{letter-spacing:16.199361px;}
.ls5a{letter-spacing:16.205361px;}
.ls10e{letter-spacing:16.320000px;}
.ls70{letter-spacing:16.327208px;}
.ls72{letter-spacing:16.327542px;}
.ls8a{letter-spacing:16.498066px;}
.lsa6{letter-spacing:16.557841px;}
.lsd0{letter-spacing:16.560000px;}
.ls84{letter-spacing:16.617617px;}
.ls5c{letter-spacing:16.677392px;}
.lsc{letter-spacing:16.680000px;}
.lsd3{letter-spacing:16.992000px;}
.lsd6{letter-spacing:17.040000px;}
.ls17{letter-spacing:17.494067px;}
.ls118{letter-spacing:17.700000px;}
.lse3{letter-spacing:17.881501px;}
.lsb2{letter-spacing:17.990960px;}
.lsbb{letter-spacing:18.171782px;}
.lsba{letter-spacing:18.180000px;}
.ls96{letter-spacing:18.351109px;}
.ls98{letter-spacing:18.360000px;}
.ls87{letter-spacing:18.660000px;}
.ls7c{letter-spacing:18.829314px;}
.lsa2{letter-spacing:18.840000px;}
.lsf0{letter-spacing:19.020000px;}
.lsed{letter-spacing:19.128192px;}
.ls88{letter-spacing:19.183542px;}
.lsa8{letter-spacing:19.320000px;}
.ls12f{letter-spacing:19.440000px;}
.ls69{letter-spacing:19.500000px;}
.ls54{letter-spacing:19.560000px;}
.ls3e{letter-spacing:19.652869px;}
.ls6a{letter-spacing:19.653924px;}
.ls3b{letter-spacing:19.657208px;}
.ls38{letter-spacing:19.657542px;}
.ls108{letter-spacing:19.659306px;}
.ls3f{letter-spacing:19.965050px;}
.ls55{letter-spacing:19.980000px;}
.lsc8{letter-spacing:20.024826px;}
.ls8c{letter-spacing:20.040000px;}
.ls8e{letter-spacing:20.144377px;}
.ls4a{letter-spacing:20.362118px;}
.ls62{letter-spacing:20.494375px;}
.lsdc{letter-spacing:20.562806px;}
.lsdb{letter-spacing:20.580000px;}
.ls92{letter-spacing:20.640000px;}
.ls3c{letter-spacing:20.947518px;}
.ls10f{letter-spacing:21.160562px;}
.lsc5{letter-spacing:21.163548px;}
.ls128{letter-spacing:21.220338px;}
.ls10b{letter-spacing:21.301542px;}
.lsc1{letter-spacing:21.393811px;}
.ls8d{letter-spacing:21.519216px;}
.lsea{letter-spacing:21.540000px;}
.ls66{letter-spacing:21.578992px;}
.ls111{letter-spacing:21.720000px;}
.ls93{letter-spacing:22.140000px;}
.ls52{letter-spacing:22.176748px;}
.ls4e{letter-spacing:22.260000px;}
.lsdf{letter-spacing:22.356074px;}
.ls79{letter-spacing:22.475626px;}
.lsd7{letter-spacing:22.573542px;}
.lsab{letter-spacing:22.582118px;}
.ls11{letter-spacing:22.865361px;}
.ls13{letter-spacing:22.871361px;}
.ls41{letter-spacing:22.986277px;}
.ls4b{letter-spacing:22.987542px;}
.ls34{letter-spacing:22.989306px;}
.ls136{letter-spacing:23.220000px;}
.ls53{letter-spacing:23.280000px;}
.ls4c{letter-spacing:23.340000px;}
.lscb{letter-spacing:23.372260px;}
.ls6b{letter-spacing:23.460000px;}
.lse1{letter-spacing:23.551501px;}
.lse2{letter-spacing:23.557208px;}
.lse0{letter-spacing:23.558353px;}
.lsda{letter-spacing:23.570645px;}
.lsf8{letter-spacing:23.580000px;}
.ls8f{letter-spacing:23.818161px;}
.ls12b{letter-spacing:23.820000px;}
.ls2a{letter-spacing:23.838538px;}
.ls29{letter-spacing:23.844000px;}
.ls132{letter-spacing:24.060000px;}
.lsb{letter-spacing:24.160067px;}
.ls67{letter-spacing:24.201547px;}
.ls127{letter-spacing:24.225306px;}
.ls5d{letter-spacing:24.300000px;}
.ls42{letter-spacing:24.687323px;}
.lsd9{letter-spacing:24.738277px;}
.lscc{letter-spacing:24.747098px;}
.lscf{letter-spacing:24.780000px;}
.ls43{letter-spacing:24.840000px;}
.ls5e{letter-spacing:24.900000px;}
.lsa3{letter-spacing:24.926425px;}
.ls112{letter-spacing:24.960000px;}
.ls25{letter-spacing:24.986201px;}
.ls26{letter-spacing:25.498338px;}
.ls134{letter-spacing:25.680000px;}
.ls12a{letter-spacing:25.980000px;}
.ls9c{letter-spacing:26.280000px;}
.ls5{letter-spacing:26.659918px;}
.ls135{letter-spacing:26.700000px;}
.ls97{letter-spacing:26.779469px;}
.ls95{letter-spacing:26.820000px;}
.ls12d{letter-spacing:26.823306px;}
.lsfa{letter-spacing:26.899518px;}
.ls36{letter-spacing:27.000000px;}
.ls133{letter-spacing:27.044869px;}
.ls31{letter-spacing:27.420000px;}
.lsd1{letter-spacing:27.834277px;}
.ls35{letter-spacing:28.034756px;}
.lsca{letter-spacing:28.077811px;}
.ls11b{letter-spacing:28.190362px;}
.ls11a{letter-spacing:28.244160px;}
.ls91{letter-spacing:28.740000px;}
.ls11d{letter-spacing:29.160000px;}
.ls9d{letter-spacing:29.280000px;}
.ls129{letter-spacing:29.400000px;}
.ls106{letter-spacing:29.460000px;}
.ls94{letter-spacing:29.700000px;}
.ls24{letter-spacing:29.973306px;}
.ls85{letter-spacing:29.988000px;}
.lsa5{letter-spacing:29.994000px;}
.ls4d{letter-spacing:30.545332px;}
.ls2e{letter-spacing:30.720000px;}
.lse7{letter-spacing:30.780000px;}
.lsec{letter-spacing:31.143088px;}
.lsb9{letter-spacing:31.783542px;}
.lsc3{letter-spacing:32.172000px;}
.lsa{letter-spacing:32.344067px;}
.ls105{letter-spacing:32.400000px;}
.ls10{letter-spacing:32.999361px;}
.lse6{letter-spacing:33.055907px;}
.ls6c{letter-spacing:33.360000px;}
.ls2d{letter-spacing:34.140000px;}
.ls83{letter-spacing:35.280000px;}
.ls11c{letter-spacing:36.634067px;}
.lsfd{letter-spacing:36.900000px;}
.lsc7{letter-spacing:38.079811px;}
.ls64{letter-spacing:38.212941px;}
.ls5f{letter-spacing:39.007542px;}
.ls63{letter-spacing:39.418200px;}
.ls104{letter-spacing:39.922067px;}
.ls81{letter-spacing:40.294118px;}
.ls137{letter-spacing:42.480000px;}
.lsf7{letter-spacing:42.949208px;}
.lse4{letter-spacing:46.474014px;}
.lse5{letter-spacing:46.482924px;}
.ls61{letter-spacing:48.934200px;}
.ls12{letter-spacing:49.638538px;}
.ls27{letter-spacing:49.972402px;}
.ls76{letter-spacing:51.987146px;}
.lsa1{letter-spacing:56.587518px;}
.ls119{letter-spacing:59.770022px;}
.ls56{letter-spacing:67.158000px;}
.ls7b{letter-spacing:69.972808px;}
.ls3a{letter-spacing:69.997228px;}
.lsd{letter-spacing:74.136538px;}
.ls2b{letter-spacing:116.754000px;}
.ls7d{letter-spacing:174.545224px;}
.lsb7{letter-spacing:318.304200px;}
.ls23{letter-spacing:424.380000px;}
.lsb8{letter-spacing:505.860000px;}
.lsc4{letter-spacing:566.880000px;}
.ls65{letter-spacing:567.576000px;}
.lsf{letter-spacing:672.132000px;}
.lsbf{letter-spacing:709.740000px;}
.ls7f{letter-spacing:771.170834px;}
.ls57{letter-spacing:795.840000px;}
.ls7a{letter-spacing:799.363542px;}
.ls77{letter-spacing:889.560000px;}
.ls2f{letter-spacing:983.940000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws40{word-spacing:-47.502000px;}
.ws141{word-spacing:-43.320000px;}
.ws2b{word-spacing:-39.084000px;}
.ws78{word-spacing:-38.782409px;}
.wsfd{word-spacing:-36.504000px;}
.ws53{word-spacing:-34.494000px;}
.ws130{word-spacing:-33.283054px;}
.ws5{word-spacing:-32.993400px;}
.wsa9{word-spacing:-32.880000px;}
.wsb2{word-spacing:-31.920000px;}
.ws6a{word-spacing:-29.994000px;}
.ws142{word-spacing:-29.124000px;}
.ws148{word-spacing:-29.064000px;}
.ws36{word-spacing:-28.932000px;}
.ws15c{word-spacing:-28.297958px;}
.ws2d{word-spacing:-26.964000px;}
.ws45{word-spacing:-26.904000px;}
.wsf8{word-spacing:-26.424000px;}
.ws101{word-spacing:-25.492800px;}
.ws80{word-spacing:-25.275836px;}
.ws172{word-spacing:-23.664000px;}
.ws9d{word-spacing:-22.466383px;}
.ws17a{word-spacing:-22.104000px;}
.ws81{word-spacing:-21.928403px;}
.ws1{word-spacing:-20.277600px;}
.ws87{word-spacing:-19.194000px;}
.ws62{word-spacing:-19.134000px;}
.ws82{word-spacing:-19.104000px;}
.wsad{word-spacing:-18.804000px;}
.wsea{word-spacing:-17.996042px;}
.ws169{word-spacing:-17.169600px;}
.ws63{word-spacing:-16.614000px;}
.ws3f{word-spacing:-16.605662px;}
.wsd9{word-spacing:-16.554000px;}
.ws192{word-spacing:-16.314000px;}
.ws32{word-spacing:-16.254000px;}
.ws190{word-spacing:-16.194000px;}
.wsb4{word-spacing:-16.164000px;}
.ws1a5{word-spacing:-16.134000px;}
.wsbe{word-spacing:-16.074000px;}
.ws166{word-spacing:-16.014000px;}
.ws0{word-spacing:-15.993600px;}
.ws153{word-spacing:-15.954000px;}
.ws3c{word-spacing:-15.894000px;}
.ws48{word-spacing:-15.774000px;}
.ws31{word-spacing:-15.741600px;}
.wsa2{word-spacing:-15.654000px;}
.ws4c{word-spacing:-15.534000px;}
.ws1ad{word-spacing:-15.414000px;}
.ws1be{word-spacing:-15.354000px;}
.wsd1{word-spacing:-15.234000px;}
.wsa7{word-spacing:-15.174000px;}
.ws14f{word-spacing:-15.054000px;}
.wsed{word-spacing:-14.997549px;}
.ws19d{word-spacing:-14.994000px;}
.ws16c{word-spacing:-14.874000px;}
.wscd{word-spacing:-14.814000px;}
.ws196{word-spacing:-14.754000px;}
.ws71{word-spacing:-14.691446px;}
.ws72{word-spacing:-14.634000px;}
.ws173{word-spacing:-14.574000px;}
.ws68{word-spacing:-14.514000px;}
.wsde{word-spacing:-14.454000px;}
.ws17c{word-spacing:-14.424000px;}
.wscf{word-spacing:-14.394000px;}
.wsa3{word-spacing:-14.334000px;}
.ws64{word-spacing:-14.274000px;}
.wsfe{word-spacing:-14.164800px;}
.ws1b1{word-spacing:-14.154000px;}
.ws1b0{word-spacing:-14.094000px;}
.ws140{word-spacing:-14.064000px;}
.ws176{word-spacing:-14.034000px;}
.ws38{word-spacing:-13.974000px;}
.ws150{word-spacing:-13.914000px;}
.ws9b{word-spacing:-13.794000px;}
.wse6{word-spacing:-13.674000px;}
.ws14b{word-spacing:-13.644000px;}
.ws1b4{word-spacing:-13.614000px;}
.wse8{word-spacing:-13.582606px;}
.ws164{word-spacing:-13.564800px;}
.ws5e{word-spacing:-13.554000px;}
.wsa4{word-spacing:-13.494000px;}
.ws4b{word-spacing:-13.492800px;}
.wsa{word-spacing:-13.435200px;}
.ws165{word-spacing:-13.134000px;}
.ws1a2{word-spacing:-13.014000px;}
.wsd7{word-spacing:-12.954000px;}
.wsce{word-spacing:-12.894000px;}
.wsd8{word-spacing:-12.834000px;}
.ws115{word-spacing:-12.714000px;}
.ws19a{word-spacing:-12.654000px;}
.ws1b{word-spacing:-12.594000px;}
.wsb9{word-spacing:-12.534000px;}
.wse7{word-spacing:-12.474000px;}
.ws2f{word-spacing:-12.424082px;}
.wsc1{word-spacing:-12.414000px;}
.ws1ac{word-spacing:-12.294000px;}
.ws84{word-spacing:-12.264000px;}
.wscb{word-spacing:-12.234000px;}
.wsb8{word-spacing:-12.174000px;}
.wsb7{word-spacing:-12.114000px;}
.ws1bc{word-spacing:-12.054000px;}
.wsbd{word-spacing:-11.994000px;}
.wsc0{word-spacing:-11.814000px;}
.ws13e{word-spacing:-11.694000px;}
.ws95{word-spacing:-11.634000px;}
.ws16e{word-spacing:-11.604000px;}
.ws1aa{word-spacing:-11.574000px;}
.ws3e{word-spacing:-11.514000px;}
.ws177{word-spacing:-11.454000px;}
.ws98{word-spacing:-11.334000px;}
.ws86{word-spacing:-11.284237px;}
.ws88{word-spacing:-11.274000px;}
.ws8a{word-spacing:-11.154000px;}
.wsab{word-spacing:-11.034000px;}
.ws4{word-spacing:-11.015400px;}
.ws65{word-spacing:-10.974000px;}
.ws6{word-spacing:-10.949400px;}
.ws50{word-spacing:-10.734000px;}
.wscc{word-spacing:-10.614000px;}
.ws33{word-spacing:-10.554000px;}
.ws83{word-spacing:-10.507154px;}
.ws7a{word-spacing:-10.494000px;}
.wsc4{word-spacing:-10.434000px;}
.wsd2{word-spacing:-10.314000px;}
.ws188{word-spacing:-10.194000px;}
.ws74{word-spacing:-10.134000px;}
.wsb0{word-spacing:-10.074000px;}
.ws12{word-spacing:-10.033200px;}
.ws7f{word-spacing:-10.028950px;}
.ws20{word-spacing:-10.014000px;}
.ws2a{word-spacing:-9.969174px;}
.ws97{word-spacing:-9.954000px;}
.ws1b6{word-spacing:-9.834000px;}
.wse1{word-spacing:-9.774000px;}
.ws104{word-spacing:-9.714000px;}
.ws34{word-spacing:-9.654000px;}
.ws46{word-spacing:-9.534000px;}
.ws106{word-spacing:-9.414000px;}
.wsdf{word-spacing:-9.354000px;}
.ws1d{word-spacing:-9.294000px;}
.ws183{word-spacing:-9.234000px;}
.ws14{word-spacing:-9.223200px;}
.wsd6{word-spacing:-9.114000px;}
.wsec{word-spacing:-9.000562px;}
.wsc6{word-spacing:-8.994000px;}
.wsee{word-spacing:-8.949740px;}
.wsc8{word-spacing:-8.934000px;}
.ws170{word-spacing:-8.814000px;}
.ws174{word-spacing:-8.754000px;}
.wsa1{word-spacing:-8.634000px;}
.ws18f{word-spacing:-8.574000px;}
.ws191{word-spacing:-8.514000px;}
.ws16{word-spacing:-8.500800px;}
.ws1a{word-spacing:-8.454000px;}
.ws35{word-spacing:-8.394000px;}
.ws1f{word-spacing:-8.334000px;}
.ws1e{word-spacing:-8.274000px;}
.ws119{word-spacing:-8.214000px;}
.wsa0{word-spacing:-8.154000px;}
.ws6f{word-spacing:-8.094000px;}
.wsc3{word-spacing:-8.034000px;}
.ws128{word-spacing:-7.854000px;}
.wsac{word-spacing:-7.794000px;}
.ws3a{word-spacing:-7.674000px;}
.ws10b{word-spacing:-7.637926px;}
.wsae{word-spacing:-7.374000px;}
.wsd5{word-spacing:-7.314000px;}
.ws73{word-spacing:-7.254000px;}
.ws19f{word-spacing:-7.014000px;}
.wsd0{word-spacing:-6.954000px;}
.ws179{word-spacing:-6.894000px;}
.ws39{word-spacing:-6.774000px;}
.ws1c{word-spacing:-6.714000px;}
.ws77{word-spacing:-6.681516px;}
.ws75{word-spacing:-6.654000px;}
.ws14e{word-spacing:-6.617634px;}
.ws7c{word-spacing:-6.602823px;}
.ws22{word-spacing:-6.594000px;}
.ws7d{word-spacing:-6.590582px;}
.ws11{word-spacing:-6.577200px;}
.ws124{word-spacing:-6.563361px;}
.wsaf{word-spacing:-6.534000px;}
.ws66{word-spacing:-6.474000px;}
.wsf2{word-spacing:-6.459466px;}
.ws133{word-spacing:-6.414000px;}
.ws195{word-spacing:-6.354000px;}
.wsb3{word-spacing:-6.234000px;}
.wsb5{word-spacing:-6.174000px;}
.ws79{word-spacing:-6.114000px;}
.wsef{word-spacing:-6.002069px;}
.ws151{word-spacing:-5.994000px;}
.ws8c{word-spacing:-5.952000px;}
.ws6b{word-spacing:-5.934000px;}
.wsd4{word-spacing:-5.874000px;}
.ws12a{word-spacing:-5.814000px;}
.wse0{word-spacing:-5.805662px;}
.ws9c{word-spacing:-5.745662px;}
.wsff{word-spacing:-5.668800px;}
.wsc5{word-spacing:-5.634000px;}
.ws8{word-spacing:-5.551200px;}
.ws57{word-spacing:-5.454000px;}
.ws19{word-spacing:-5.334000px;}
.ws47{word-spacing:-5.274000px;}
.ws12e{word-spacing:-5.265662px;}
.ws42{word-spacing:-5.214000px;}
.ws12f{word-spacing:-5.205662px;}
.ws6c{word-spacing:-5.154000px;}
.wsda{word-spacing:-5.094000px;}
.ws149{word-spacing:-5.034000px;}
.ws16b{word-spacing:-4.974000px;}
.wsf0{word-spacing:-4.934808px;}
.wsaa{word-spacing:-4.914000px;}
.wsb6{word-spacing:-4.794000px;}
.ws58{word-spacing:-4.734000px;}
.ws1a9{word-spacing:-4.674000px;}
.ws175{word-spacing:-4.614000px;}
.ws168{word-spacing:-4.554000px;}
.ws182{word-spacing:-4.494000px;}
.ws171{word-spacing:-4.434000px;}
.ws1bb{word-spacing:-4.314000px;}
.ws17b{word-spacing:-4.254000px;}
.ws5a{word-spacing:-4.194000px;}
.ws5f{word-spacing:-4.134000px;}
.ws11a{word-spacing:-4.074000px;}
.ws4e{word-spacing:-3.954000px;}
.ws49{word-spacing:-3.894000px;}
.ws29{word-spacing:-3.834000px;}
.ws18a{word-spacing:-3.774000px;}
.wsa8{word-spacing:-3.714000px;}
.ws21{word-spacing:-3.654000px;}
.ws60{word-spacing:-3.594000px;}
.ws16f{word-spacing:-3.474000px;}
.ws189{word-spacing:-3.354000px;}
.ws117{word-spacing:-3.294000px;}
.ws8f{word-spacing:-3.285662px;}
.wsf4{word-spacing:-3.275703px;}
.ws178{word-spacing:-3.234000px;}
.wsb1{word-spacing:-3.174000px;}
.ws5d{word-spacing:-3.114000px;}
.ws105{word-spacing:-3.054000px;}
.wsd{word-spacing:-3.013200px;}
.ws41{word-spacing:-2.994000px;}
.ws8e{word-spacing:-2.826000px;}
.ws186{word-spacing:-2.814000px;}
.wse2{word-spacing:-2.754000px;}
.wsf5{word-spacing:-2.694000px;}
.ws55{word-spacing:-2.574000px;}
.ws16d{word-spacing:-2.514000px;}
.wsc2{word-spacing:-2.454000px;}
.ws28{word-spacing:-2.334000px;}
.wsc{word-spacing:-2.257200px;}
.ws23{word-spacing:-2.214000px;}
.ws114{word-spacing:-2.154000px;}
.ws10a{word-spacing:-2.145662px;}
.wsdb{word-spacing:-1.974000px;}
.ws51{word-spacing:-1.914000px;}
.wsf{word-spacing:-1.825200px;}
.ws4d{word-spacing:-1.794000px;}
.ws10e{word-spacing:-1.721537px;}
.ws187{word-spacing:-1.674000px;}
.ws7{word-spacing:-1.555200px;}
.ws1a0{word-spacing:-1.554000px;}
.ws1a1{word-spacing:-1.494000px;}
.ws9{word-spacing:-1.393200px;}
.ws12b{word-spacing:-1.314000px;}
.ws18b{word-spacing:-1.134000px;}
.wsb{word-spacing:-0.961200px;}
.ws118{word-spacing:-0.894000px;}
.ws116{word-spacing:-0.714000px;}
.ws139{word-spacing:-0.594000px;}
.ws69{word-spacing:-0.590787px;}
.ws11e{word-spacing:-0.589523px;}
.ws59{word-spacing:-0.534000px;}
.ws10{word-spacing:-0.529200px;}
.wsa5{word-spacing:-0.474000px;}
.wsa6{word-spacing:-0.414000px;}
.ws194{word-spacing:-0.354000px;}
.ws197{word-spacing:-0.294000px;}
.ws9f{word-spacing:-0.114000px;}
.ws7b{word-spacing:-0.060000px;}
.wse5{word-spacing:-0.058799px;}
.wse{word-spacing:-0.054000px;}
.ws154{word-spacing:-0.053798px;}
.ws3{word-spacing:-0.046200px;}
.ws99{word-spacing:-0.041999px;}
.wseb{word-spacing:-0.035575px;}
.ws18{word-spacing:-0.033600px;}
.ws5c{word-spacing:-0.028800px;}
.ws17{word-spacing:0.000000px;}
.wsf9{word-spacing:0.006000px;}
.ws2e{word-spacing:0.011955px;}
.ws2c{word-spacing:0.014338px;}
.ws24{word-spacing:0.066000px;}
.ws30{word-spacing:0.071731px;}
.wse4{word-spacing:0.186000px;}
.wsbb{word-spacing:0.246000px;}
.ws16a{word-spacing:0.306000px;}
.ws13{word-spacing:0.334800px;}
.ws199{word-spacing:0.366000px;}
.wsbf{word-spacing:0.426000px;}
.ws92{word-spacing:0.456000px;}
.ws26{word-spacing:0.486000px;}
.ws193{word-spacing:0.606000px;}
.ws122{word-spacing:0.786000px;}
.ws1b9{word-spacing:0.906000px;}
.ws8d{word-spacing:1.296000px;}
.ws52{word-spacing:1.446000px;}
.ws1af{word-spacing:1.506000px;}
.ws1bd{word-spacing:1.566000px;}
.ws198{word-spacing:1.686000px;}
.ws27{word-spacing:1.866000px;}
.ws1ab{word-spacing:2.106000px;}
.wsd3{word-spacing:2.346000px;}
.ws12d{word-spacing:2.474338px;}
.wsbc{word-spacing:2.766000px;}
.ws145{word-spacing:2.940960px;}
.ws4f{word-spacing:2.949916px;}
.ws109{word-spacing:3.000735px;}
.ws103{word-spacing:3.246000px;}
.ws96{word-spacing:3.374338px;}
.ws9e{word-spacing:3.434338px;}
.ws61{word-spacing:3.546000px;}
.ws18c{word-spacing:3.606000px;}
.ws1ba{word-spacing:3.666000px;}
.ws25{word-spacing:3.846000px;}
.ws146{word-spacing:3.875382px;}
.ws10c{word-spacing:3.957145px;}
.ws131{word-spacing:3.966000px;}
.wse3{word-spacing:4.146000px;}
.ws19e{word-spacing:4.986000px;}
.wsdd{word-spacing:5.046000px;}
.wsba{word-spacing:5.106000px;}
.ws94{word-spacing:5.226000px;}
.ws90{word-spacing:5.273604px;}
.ws93{word-spacing:5.286000px;}
.wsca{word-spacing:5.406000px;}
.ws1b2{word-spacing:5.586000px;}
.ws10d{word-spacing:5.714338px;}
.ws1a4{word-spacing:5.886000px;}
.ws132{word-spacing:5.989515px;}
.ws13f{word-spacing:6.053364px;}
.ws112{word-spacing:6.066000px;}
.ws152{word-spacing:6.074345px;}
.ws134{word-spacing:6.075826px;}
.ws13d{word-spacing:6.076782px;}
.ws147{word-spacing:6.080807px;}
.ws110{word-spacing:6.110462px;}
.ws113{word-spacing:6.126000px;}
.ws18e{word-spacing:6.186000px;}
.ws11d{word-spacing:6.407944px;}
.ws1ae{word-spacing:6.606000px;}
.ws167{word-spacing:6.794338px;}
.ws1a8{word-spacing:7.146000px;}
.ws43{word-spacing:7.326000px;}
.ws184{word-spacing:7.986000px;}
.ws11f{word-spacing:8.054338px;}
.ws9a{word-spacing:8.106000px;}
.wsfb{word-spacing:8.234338px;}
.ws136{word-spacing:8.260988px;}
.ws137{word-spacing:8.294338px;}
.ws5b{word-spacing:9.194338px;}
.ws7e{word-spacing:9.405213px;}
.ws56{word-spacing:9.405746px;}
.ws11b{word-spacing:9.934705px;}
.ws126{word-spacing:10.626000px;}
.ws14d{word-spacing:10.711788px;}
.ws144{word-spacing:10.754338px;}
.ws6e{word-spacing:10.806000px;}
.ws19b{word-spacing:10.866000px;}
.ws108{word-spacing:11.046000px;}
.ws100{word-spacing:11.455200px;}
.ws13a{word-spacing:11.554782px;}
.ws18d{word-spacing:11.646000px;}
.wsf6{word-spacing:12.206178px;}
.ws11c{word-spacing:12.422807px;}
.ws1b8{word-spacing:12.486000px;}
.wsc9{word-spacing:12.588000px;}
.ws138{word-spacing:12.854338px;}
.ws1a7{word-spacing:13.866000px;}
.ws1a6{word-spacing:13.926000px;}
.ws125{word-spacing:14.174338px;}
.ws107{word-spacing:14.286000px;}
.ws1a3{word-spacing:14.346000px;}
.ws12c{word-spacing:14.537426px;}
.ws14a{word-spacing:15.045887px;}
.ws13c{word-spacing:16.574338px;}
.wsf7{word-spacing:16.677213px;}
.ws14c{word-spacing:16.722998px;}
.wsfa{word-spacing:16.749123px;}
.ws15{word-spacing:16.944000px;}
.ws121{word-spacing:18.004411px;}
.ws185{word-spacing:18.186000px;}
.ws143{word-spacing:18.307063px;}
.ws111{word-spacing:19.454338px;}
.wsf3{word-spacing:19.536000px;}
.ws8b{word-spacing:19.618413px;}
.ws44{word-spacing:21.066000px;}
.wsf1{word-spacing:21.802604px;}
.ws127{word-spacing:22.080000px;}
.ws129{word-spacing:22.140000px;}
.ws54{word-spacing:22.399832px;}
.ws2{word-spacing:23.400000px;}
.ws1b7{word-spacing:24.006000px;}
.ws123{word-spacing:24.030029px;}
.ws120{word-spacing:24.036029px;}
.ws1b5{word-spacing:24.720000px;}
.ws19c{word-spacing:25.140000px;}
.ws91{word-spacing:25.476361px;}
.ws102{word-spacing:25.506000px;}
.ws67{word-spacing:26.458413px;}
.ws10f{word-spacing:26.851200px;}
.ws13b{word-spacing:28.097364px;}
.ws156{word-spacing:28.136563px;}
.ws155{word-spacing:28.190362px;}
.ws135{word-spacing:28.934338px;}
.ws4a{word-spacing:29.041832px;}
.ws3d{word-spacing:29.403746px;}
.wsc7{word-spacing:30.447746px;}
.ws89{word-spacing:30.612016px;}
.ws37{word-spacing:30.876000px;}
.ws76{word-spacing:32.751746px;}
.ws1b3{word-spacing:35.700000px;}
.ws6d{word-spacing:38.646016px;}
.ws160{word-spacing:56.434522px;}
.ws157{word-spacing:59.740135px;}
.wsdc{word-spacing:81.006000px;}
.ws3b{word-spacing:90.876000px;}
.ws158{word-spacing:172.716775px;}
.ws159{word-spacing:285.639616px;}
.ws17e{word-spacing:370.372096px;}
.ws15d{word-spacing:398.562458px;}
.ws15a{word-spacing:398.616256px;}
.wse9{word-spacing:443.360266px;}
.ws85{word-spacing:504.636000px;}
.ws15e{word-spacing:511.539098px;}
.ws17d{word-spacing:539.783258px;}
.ws17f{word-spacing:596.271578px;}
.ws180{word-spacing:624.461939px;}
.ws15f{word-spacing:624.515738px;}
.ws163{word-spacing:680.950259px;}
.ws162{word-spacing:737.438579px;}
.ws15b{word-spacing:765.682739px;}
.ws181{word-spacing:793.926899px;}
.wsfc{word-spacing:806.122800px;}
.ws70{word-spacing:869.622000px;}
.ws161{word-spacing:906.849741px;}
._34{margin-left:-28.297958px;}
._17{margin-left:-22.176748px;}
._32{margin-left:-16.677392px;}
._1a{margin-left:-10.020000px;}
._1{margin-left:-7.956000px;}
._4{margin-left:-6.390000px;}
._2{margin-left:-5.124000px;}
._a{margin-left:-4.032000px;}
._0{margin-left:-2.652000px;}
._6{margin-left:-1.512000px;}
._5{width:1.848000px;}
._3{width:2.992680px;}
._19{width:4.860000px;}
._b{width:6.420000px;}
._21{width:8.704808px;}
._f{width:10.002000px;}
._d{width:12.684000px;}
._14{width:13.824000px;}
._1e{width:15.852000px;}
._13{width:17.484000px;}
._1d{width:19.524000px;}
._8{width:20.664000px;}
._3b{width:21.912000px;}
._15{width:22.980000px;}
._22{width:24.072000px;}
._7{width:25.692000px;}
._e{width:27.186000px;}
._2f{width:28.872000px;}
._3c{width:30.000000px;}
._9{width:31.092000px;}
._16{width:32.124000px;}
._11{width:33.912000px;}
._12{width:35.208000px;}
._1f{width:36.552000px;}
._20{width:37.788000px;}
._33{width:38.800625px;}
._10{width:40.464000px;}
._31{width:41.652000px;}
._2e{width:44.514236px;}
._c{width:47.208000px;}
._35{width:56.488320px;}
._1b{width:57.646699px;}
._18{width:70.440000px;}
._30{width:81.000000px;}
._37{width:84.678682px;}
._2d{width:95.256000px;}
._36{width:112.922842px;}
._39{width:141.113203px;}
._1c{width:156.996000px;}
._3a{width:169.357363px;}
._23{width:186.642996px;}
._38{width:197.601523px;}
._24{width:220.913872px;}
._26{width:246.629627px;}
._25{width:316.476110px;}
._27{width:406.638935px;}
._29{width:470.540400px;}
._2c{width:484.834800px;}
._2a{width:489.241200px;}
._2b{width:538.311600px;}
._28{width:627.738000px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:29.887800px;}
.fsf{font-size:33.600000px;}
.fse{font-size:35.575344px;}
.fs6{font-size:37.800000px;}
.fsb{font-size:41.999400px;}
.fs3{font-size:46.200000px;}
.fs7{font-size:48.000000px;}
.fs2{font-size:50.400000px;}
.fsd{font-size:50.821920px;}
.fs11{font-size:53.798400px;}
.fs5{font-size:54.000000px;}
.fsc{font-size:58.799400px;}
.fsa{font-size:59.775600px;}
.fs8{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:84.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y166{bottom:283.818000px;}
.y1c{bottom:283.819500px;}
.y95{bottom:328.588500px;}
.y12c{bottom:331.050000px;}
.y272{bottom:331.068000px;}
.y203{bottom:331.860000px;}
.y6d{bottom:332.005500px;}
.y46{bottom:334.483500px;}
.y1b1{bottom:337.798500px;}
.y45{bottom:338.193000px;}
.y94{bottom:338.878500px;}
.y1d3{bottom:344.017500px;}
.y280{bottom:346.012500px;}
.y186{bottom:346.566000px;}
.y202{bottom:348.298500px;}
.y44{bottom:348.481500px;}
.y12b{bottom:349.050000px;}
.y271{bottom:349.068000px;}
.y6c{bottom:350.005500px;}
.ybf{bottom:352.546500px;}
.y252{bottom:353.685000px;}
.y1b0{bottom:355.798500px;}
.ye3{bottom:357.307500px;}
.y214{bottom:358.707000px;}
.y1d2{bottom:360.456000px;}
.y146{bottom:362.697000px;}
.y27f{bottom:364.012500px;}
.y185{bottom:364.566000px;}
.y201{bottom:364.737000px;}
.y294{bottom:367.068000px;}
.y6b{bottom:368.005500px;}
.y12a{bottom:368.544000px;}
.y1af{bottom:370.090500px;}
.ybe{bottom:370.546500px;}
.y251{bottom:371.685000px;}
.y1ae{bottom:373.798500px;}
.ye2{bottom:375.307500px;}
.y213{bottom:376.707000px;}
.y1d1{bottom:376.894500px;}
.y165{bottom:379.474500px;}
.y23a{bottom:379.890000px;}
.y93{bottom:380.652000px;}
.y145{bottom:380.697000px;}
.y200{bottom:381.175500px;}
.y270{bottom:382.012500px;}
.y1ad{bottom:388.090500px;}
.y1ac{bottom:391.798500px;}
.ybd{bottom:392.469000px;}
.y43{bottom:393.181500px;}
.ye1{bottom:393.307500px;}
.y1d0{bottom:393.331500px;}
.y129{bottom:394.015500px;}
.y212{bottom:394.707000px;}
.y6a{bottom:394.972500px;}
.y184{bottom:396.016500px;}
.y164{bottom:397.474500px;}
.y1ff{bottom:397.614000px;}
.y239{bottom:397.890000px;}
.y26f{bottom:400.012500px;}
.ybc{bottom:403.027500px;}
.y250{bottom:404.629500px;}
.y1ab{bottom:405.550500px;}
.y42{bottom:406.009500px;}
.y1cf{bottom:409.770000px;}
.y1aa{bottom:409.798500px;}
.y41{bottom:411.181500px;}
.ye0{bottom:411.307500px;}
.y92{bottom:411.609000px;}
.y128{bottom:412.015500px;}
.y144{bottom:412.146000px;}
.y211{bottom:412.707000px;}
.y1fe{bottom:414.052500px;}
.y27e{bottom:414.955500px;}
.y238{bottom:415.890000px;}
.y293{bottom:418.012500px;}
.y91{bottom:421.897500px;}
.y24f{bottom:422.629500px;}
.y163{bottom:424.440000px;}
.y1ce{bottom:426.208500px;}
.y1a9{bottom:427.798500px;}
.y40{bottom:429.181500px;}
.ydf{bottom:429.307500px;}
.ybb{bottom:429.795000px;}
.y127{bottom:430.015500px;}
.y1fd{bottom:430.489500px;}
.y210{bottom:430.707000px;}
.y1b{bottom:432.001500px;}
.y26e{bottom:432.955500px;}
.y237{bottom:433.890000px;}
.y69{bottom:433.905000px;}
.y292{bottom:436.012500px;}
.y24e{bottom:440.629500px;}
.y162{bottom:442.440000px;}
.y1cd{bottom:442.647000px;}
.y1a8{bottom:445.798500px;}
.y1a{bottom:446.251500px;}
.y1fc{bottom:446.928000px;}
.y126{bottom:448.015500px;}
.y20f{bottom:448.707000px;}
.y143{bottom:449.596500px;}
.yb9{bottom:450.064500px;}
.y26d{bottom:450.955500px;}
.y236{bottom:451.890000px;}
.y68{bottom:451.905000px;}
.y183{bottom:455.949000px;}
.yde{bottom:456.273000px;}
.y1cc{bottom:459.085500px;}
.y161{bottom:460.440000px;}
.y3e{bottom:462.106500px;}
.y1fb{bottom:463.366500px;}
.y90{bottom:463.671000px;}
.y1a7{bottom:463.798500px;}
.yfe{bottom:463.957500px;}
.y125{bottom:466.015500px;}
.y20e{bottom:466.707000px;}
.y291{bottom:468.955500px;}
.y235{bottom:469.890000px;}
.y67{bottom:469.905000px;}
.yba{bottom:470.502000px;}
.y3d{bottom:472.396500px;}
.y24d{bottom:473.574000px;}
.y182{bottom:473.949000px;}
.y19{bottom:475.446000px;}
.y1cb{bottom:475.524000px;}
.y1fa{bottom:479.805000px;}
.y124{bottom:480.307500px;}
.y8f{bottom:481.671000px;}
.y1a6{bottom:481.798500px;}
.yfd{bottom:481.957500px;}
.y123{bottom:482.262000px;}
.y3f{bottom:482.544000px;}
.y26c{bottom:483.900000px;}
.y122{bottom:484.015500px;}
.yb8{bottom:484.206000px;}
.y20d{bottom:484.707000px;}
.y290{bottom:486.955500px;}
.y234{bottom:487.890000px;}
.y66{bottom:487.905000px;}
.y142{bottom:491.529000px;}
.y24c{bottom:491.574000px;}
.y160{bottom:491.890500px;}
.y18{bottom:491.946000px;}
.y181{bottom:491.949000px;}
.y1ca{bottom:491.962500px;}
.ydd{bottom:495.205500px;}
.y1f9{bottom:496.243500px;}
.y8e{bottom:499.671000px;}
.y1a5{bottom:499.798500px;}
.yfc{bottom:499.957500px;}
.y26b{bottom:501.900000px;}
.y20c{bottom:502.707000px;}
.y121{bottom:504.093000px;}
.yb7{bottom:504.250500px;}
.y28f{bottom:504.955500px;}
.y233{bottom:505.890000px;}
.y65{bottom:505.905000px;}
.y1c9{bottom:508.401000px;}
.y17{bottom:508.446000px;}
.y24b{bottom:509.574000px;}
.y180{bottom:509.949000px;}
.y1f8{bottom:512.682000px;}
.ydc{bottom:513.205500px;}
.yb6{bottom:514.540500px;}
.y3c{bottom:515.302500px;}
.y8d{bottom:517.671000px;}
.y1a4{bottom:517.798500px;}
.yfb{bottom:517.957500px;}
.y64{bottom:518.733000px;}
.y27d{bottom:519.900000px;}
.y20b{bottom:520.707000px;}
.y120{bottom:522.093000px;}
.y232{bottom:523.890000px;}
.y63{bottom:523.905000px;}
.y1c8{bottom:524.839500px;}
.y16{bottom:524.946000px;}
.y141{bottom:527.461500px;}
.y1f7{bottom:529.120500px;}
.y15f{bottom:529.339500px;}
.ydb{bottom:531.205500px;}
.y3b{bottom:533.302500px;}
.y26a{bottom:534.844500px;}
.y8c{bottom:535.671000px;}
.y1a3{bottom:535.798500px;}
.yfa{bottom:535.957500px;}
.y17f{bottom:536.914500px;}
.y28e{bottom:537.900000px;}
.y20a{bottom:538.707000px;}
.y11f{bottom:540.093000px;}
.y1c7{bottom:541.278000px;}
.yb5{bottom:541.308000px;}
.y15{bottom:541.446000px;}
.y231{bottom:541.890000px;}
.y62{bottom:541.905000px;}
.y24a{bottom:542.517000px;}
.y1f6{bottom:545.559000px;}
.yda{bottom:549.205500px;}
.y3a{bottom:551.302500px;}
.y297{bottom:552.843000px;}
.y269{bottom:552.844500px;}
.y8b{bottom:553.671000px;}
.y1a2{bottom:553.798500px;}
.yf9{bottom:553.957500px;}
.y28d{bottom:555.900000px;}
.y17e{bottom:556.410000px;}
.y209{bottom:556.707000px;}
.y1c6{bottom:557.715000px;}
.y14{bottom:557.946000px;}
.y11e{bottom:558.093000px;}
.yb4{bottom:559.308000px;}
.y230{bottom:559.890000px;}
.y61{bottom:559.905000px;}
.y249{bottom:560.517000px;}
.y1f5{bottom:561.997500px;}
.y140{bottom:563.394000px;}
.y8a{bottom:566.499000px;}
.yd9{bottom:567.205500px;}
.y39{bottom:569.302500px;}
.y296{bottom:570.843000px;}
.y27c{bottom:570.844500px;}
.y15e{bottom:571.272000px;}
.y89{bottom:571.671000px;}
.y1a1{bottom:571.798500px;}
.yf8{bottom:571.957500px;}
.y1c5{bottom:574.153500px;}
.y17d{bottom:574.410000px;}
.y13{bottom:574.446000px;}
.y208{bottom:574.707000px;}
.y11d{bottom:576.093000px;}
.yb3{bottom:577.308000px;}
.y22f{bottom:577.890000px;}
.y60{bottom:577.905000px;}
.y1f4{bottom:578.436000px;}
.yd8{bottom:585.205500px;}
.y268{bottom:585.787500px;}
.y38{bottom:587.302500px;}
.y295{bottom:588.843000px;}
.y28c{bottom:588.844500px;}
.y88{bottom:589.671000px;}
.y1a0{bottom:589.798500px;}
.yf7{bottom:589.957500px;}
.y1c4{bottom:590.592000px;}
.y12{bottom:590.946000px;}
.y17c{bottom:592.410000px;}
.y207{bottom:592.707000px;}
.y248{bottom:593.461500px;}
.y11c{bottom:594.093000px;}
.y1f3{bottom:594.874500px;}
.y22e{bottom:595.890000px;}
.y5f{bottom:595.905000px;}
.yb2{bottom:597.745500px;}
.y13f{bottom:599.326500px;}
.yd7{bottom:603.205500px;}
.y267{bottom:603.787500px;}
.y15b{bottom:605.160000px;}
.y28b{bottom:606.844500px;}
.y11{bottom:607.446000px;}
.y87{bottom:607.671000px;}
.y19f{bottom:607.798500px;}
.yf6{bottom:607.957500px;}
.yb1{bottom:608.034000px;}
.y17b{bottom:608.914500px;}
.y15c{bottom:610.276500px;}
.y1f2{bottom:611.311500px;}
.y247{bottom:611.461500px;}
.y11b{bottom:612.093000px;}
.y22d{bottom:613.890000px;}
.y5e{bottom:613.905000px;}
.y15a{bottom:615.448500px;}
.y37{bottom:619.311000px;}
.y206{bottom:619.672500px;}
.yd6{bottom:621.205500px;}
.y266{bottom:621.787500px;}
.y1c3{bottom:623.469000px;}
.y10{bottom:623.946000px;}
.y28a{bottom:624.844500px;}
.y15d{bottom:625.596000px;}
.y86{bottom:625.671000px;}
.y19e{bottom:625.798500px;}
.yf5{bottom:625.957500px;}
.y17a{bottom:626.914500px;}
.y1f1{bottom:627.750000px;}
.y35{bottom:629.601000px;}
.yb0{bottom:629.926500px;}
.y11a{bottom:630.093000px;}
.y22c{bottom:631.890000px;}
.y5d{bottom:631.905000px;}
.y13e{bottom:635.260500px;}
.yd5{bottom:639.205500px;}
.y36{bottom:639.748500px;}
.y27b{bottom:639.787500px;}
.y1c2{bottom:639.907500px;}
.yf{bottom:640.446000px;}
.y205{bottom:640.672500px;}
.y85{bottom:643.671000px;}
.y19d{bottom:643.798500px;}
.yf4{bottom:643.957500px;}
.y1f0{bottom:644.188500px;}
.y246{bottom:644.406000px;}
.y179{bottom:646.410000px;}
.yaf{bottom:648.702000px;}
.y22b{bottom:649.890000px;}
.yae{bottom:652.410000px;}
.y13d{bottom:653.260500px;}
.y265{bottom:654.732000px;}
.y1c1{bottom:656.346000px;}
.ye{bottom:656.946000px;}
.y119{bottom:657.058500px;}
.y159{bottom:657.570000px;}
.y289{bottom:657.787500px;}
.y1ef{bottom:660.627000px;}
.y84{bottom:661.671000px;}
.y19c{bottom:661.798500px;}
.yf3{bottom:661.957500px;}
.y245{bottom:662.406000px;}
.y5c{bottom:662.580000px;}
.y178{bottom:664.410000px;}
.y22a{bottom:667.890000px;}
.yd4{bottom:670.656000px;}
.y13c{bottom:671.260500px;}
.y34{bottom:672.507000px;}
.y264{bottom:672.732000px;}
.y1c0{bottom:672.784500px;}
.yd{bottom:673.446000px;}
.y83{bottom:674.827500px;}
.y118{bottom:675.058500px;}
.y288{bottom:675.787500px;}
.y1ee{bottom:677.065500px;}
.y19b{bottom:679.798500px;}
.yf2{bottom:679.957500px;}
.y244{bottom:680.406000px;}
.y177{bottom:682.410000px;}
.y5b{bottom:683.016000px;}
.y81{bottom:685.117500px;}
.y229{bottom:685.890000px;}
.yad{bottom:688.410000px;}
.y1bf{bottom:689.223000px;}
.y33{bottom:690.507000px;}
.y27a{bottom:690.732000px;}
.y117{bottom:693.058500px;}
.y158{bottom:693.502500px;}
.y1ed{bottom:693.504000px;}
.y157{bottom:693.526500px;}
.yc{bottom:694.429500px;}
.y82{bottom:695.265000px;}
.y19a{bottom:697.798500px;}
.yf1{bottom:697.957500px;}
.y243{bottom:698.406000px;}
.y176{bottom:700.410000px;}
.y228{bottom:703.890000px;}
.y1be{bottom:705.661500px;}
.y263{bottom:705.675000px;}
.yac{bottom:706.410000px;}
.y80{bottom:707.176500px;}
.y32{bottom:708.507000px;}
.y287{bottom:708.732000px;}
.y1ec{bottom:709.942500px;}
.y13b{bottom:710.329500px;}
.y116{bottom:711.058500px;}
.yd3{bottom:712.588500px;}
.y5a{bottom:715.776000px;}
.y199{bottom:715.798500px;}
.yf0{bottom:715.957500px;}
.y175{bottom:718.410000px;}
.yab{bottom:719.236500px;}
.y227{bottom:721.890000px;}
.y1bd{bottom:722.100000px;}
.y262{bottom:723.675000px;}
.yaa{bottom:724.410000px;}
.y7f{bottom:725.176500px;}
.y1eb{bottom:726.381000px;}
.y31{bottom:726.507000px;}
.y13a{bottom:726.709500px;}
.y286{bottom:726.732000px;}
.y156{bottom:729.435000px;}
.y115{bottom:730.554000px;}
.yd2{bottom:730.588500px;}
.y242{bottom:731.349000px;}
.y59{bottom:733.776000px;}
.y198{bottom:733.798500px;}
.yef{bottom:733.957500px;}
.y1bc{bottom:738.537000px;}
.y226{bottom:739.890000px;}
.y261{bottom:741.675000px;}
.ya9{bottom:742.410000px;}
.y1ea{bottom:742.819500px;}
.y7e{bottom:743.176500px;}
.y30{bottom:744.507000px;}
.y285{bottom:744.732000px;}
.yb{bottom:746.794500px;}
.y114{bottom:747.058500px;}
.y155{bottom:747.435000px;}
.y174{bottom:748.365000px;}
.yd1{bottom:748.588500px;}
.y241{bottom:749.349000px;}
.y58{bottom:751.776000px;}
.y197{bottom:751.798500px;}
.yee{bottom:751.957500px;}
.y1bb{bottom:754.975500px;}
.y225{bottom:757.890000px;}
.y1e9{bottom:759.258000px;}
.y279{bottom:759.675000px;}
.ya8{bottom:760.410000px;}
.y7d{bottom:761.176500px;}
.y113{bottom:765.058500px;}
.y154{bottom:765.435000px;}
.yd0{bottom:765.816000px;}
.ya{bottom:767.044500px;}
.y139{bottom:768.642000px;}
.y57{bottom:769.776000px;}
.y196{bottom:769.798500px;}
.yed{bottom:769.957500px;}
.y1ba{bottom:771.414000px;}
.y260{bottom:774.619500px;}
.y1e8{bottom:775.695000px;}
.y224{bottom:775.890000px;}
.y2f{bottom:775.957500px;}
.ycf{bottom:776.106000px;}
.y284{bottom:777.675000px;}
.ya7{bottom:778.410000px;}
.y7c{bottom:779.176500px;}
.y240{bottom:782.293500px;}
.y112{bottom:783.058500px;}
.y138{bottom:786.642000px;}
.y56{bottom:787.776000px;}
.y195{bottom:787.798500px;}
.yec{bottom:787.957500px;}
.y173{bottom:790.297500px;}
.y1e7{bottom:792.133500px;}
.y25f{bottom:792.619500px;}
.y223{bottom:793.890000px;}
.y283{bottom:795.675000px;}
.y153{bottom:797.073000px;}
.y23f{bottom:800.293500px;}
.y111{bottom:802.554000px;}
.y1b9{bottom:804.291000px;}
.y137{bottom:804.642000px;}
.y55{bottom:805.776000px;}
.yeb{bottom:805.957500px;}
.y152{bottom:807.361500px;}
.y151{bottom:807.385500px;}
.y172{bottom:808.297500px;}
.y1e6{bottom:808.572000px;}
.y25e{bottom:810.619500px;}
.y7b{bottom:810.625500px;}
.y222{bottom:811.890000px;}
.ya5{bottom:814.392000px;}
.y194{bottom:814.765500px;}
.y2e{bottom:817.890000px;}
.y110{bottom:819.058500px;}
.yce{bottom:822.441000px;}
.y136{bottom:822.642000px;}
.y9{bottom:823.159500px;}
.yea{bottom:823.957500px;}
.ya6{bottom:824.682000px;}
.y1e5{bottom:825.010500px;}
.y171{bottom:826.297500px;}
.y278{bottom:828.619500px;}
.y221{bottom:829.890000px;}
.y1b8{bottom:831.339000px;}
.y54{bottom:832.743000px;}
.y23e{bottom:833.238000px;}
.ya4{bottom:834.829500px;}
.y193{bottom:835.765500px;}
.y2d{bottom:835.890000px;}
.y10f{bottom:837.058500px;}
.y135{bottom:840.642000px;}
.y1e4{bottom:841.449000px;}
.ye9{bottom:841.957500px;}
.y8{bottom:843.409500px;}
.y25d{bottom:843.564000px;}
.y220{bottom:844.182000px;}
.y170{bottom:844.297500px;}
.y282{bottom:846.619500px;}
.y21f{bottom:847.890000px;}
.y1b7{bottom:849.339000px;}
.y7a{bottom:850.458000px;}
.y150{bottom:851.061000px;}
.y23d{bottom:851.238000px;}
.y2c{bottom:853.890000px;}
.y10e{bottom:856.554000px;}
.y1e3{bottom:857.887500px;}
.ycd{bottom:858.441000px;}
.y134{bottom:858.642000px;}
.y25c{bottom:861.564000px;}
.y21e{bottom:862.182000px;}
.y16f{bottom:862.297500px;}
.y21d{bottom:865.890000px;}
.y1b6{bottom:867.339000px;}
.ya3{bottom:868.423500px;}
.y79{bottom:868.458000px;}
.y23c{bottom:869.238000px;}
.y7{bottom:869.647500px;}
.y53{bottom:871.675500px;}
.y2b{bottom:871.890000px;}
.y10d{bottom:873.058500px;}
.ye8{bottom:873.406500px;}
.y1e2{bottom:874.326000px;}
.y192{bottom:874.698000px;}
.ycc{bottom:876.441000px;}
.y133{bottom:876.642000px;}
.y25b{bottom:879.564000px;}
.y21c{bottom:883.890000px;}
.y6{bottom:883.909500px;}
.y1b5{bottom:885.339000px;}
.ya2{bottom:886.423500px;}
.y78{bottom:886.458000px;}
.y52{bottom:889.675500px;}
.y2a{bottom:889.890000px;}
.y1e1{bottom:890.764500px;}
.y10c{bottom:891.058500px;}
.y191{bottom:892.698000px;}
.ycb{bottom:894.441000px;}
.y132{bottom:894.642000px;}
.ye7{bottom:897.406500px;}
.y25a{bottom:897.564000px;}
.y77{bottom:899.284500px;}
.y23b{bottom:900.687000px;}
.y21b{bottom:901.890000px;}
.y1b4{bottom:903.339000px;}
.y5{bottom:904.159500px;}
.ya1{bottom:904.423500px;}
.y76{bottom:904.456500px;}
.y1e0{bottom:907.203000px;}
.y190{bottom:907.468500px;}
.y51{bottom:907.675500px;}
.y29{bottom:907.890000px;}
.y10b{bottom:910.554000px;}
.y18e{bottom:910.698000px;}
.yca{bottom:912.441000px;}
.y131{bottom:912.642000px;}
.y18f{bottom:913.797000px;}
.y281{bottom:915.564000px;}
.y14f{bottom:919.662000px;}
.y21a{bottom:919.890000px;}
.y1b3{bottom:921.339000px;}
.ya0{bottom:922.423500px;}
.y75{bottom:922.456500px;}
.y1df{bottom:923.641500px;}
.y50{bottom:925.675500px;}
.y28{bottom:925.890000px;}
.y10a{bottom:927.058500px;}
.y4{bottom:930.397500px;}
.yc9{bottom:930.441000px;}
.y259{bottom:930.507000px;}
.y16e{bottom:930.898500px;}
.y219{bottom:937.890000px;}
.ye6{bottom:939.339000px;}
.y109{bottom:939.886500px;}
.y1de{bottom:940.078500px;}
.y9f{bottom:940.423500px;}
.y74{bottom:940.456500px;}
.y4f{bottom:943.675500px;}
.y27{bottom:943.890000px;}
.y108{bottom:945.058500px;}
.yc8{bottom:948.441000px;}
.y258{bottom:948.507000px;}
.y130{bottom:948.574500px;}
.y14e{bottom:948.842173px;}
.y18d{bottom:949.957500px;}
.y3{bottom:955.120500px;}
.y218{bottom:955.890000px;}
.y1dd{bottom:956.517000px;}
.ye5{bottom:957.339000px;}
.y16d{bottom:958.047000px;}
.y73{bottom:958.456500px;}
.y107{bottom:959.751000px;}
.y4e{bottom:961.675500px;}
.y26{bottom:961.890000px;}
.y106{bottom:964.923000px;}
.y277{bottom:966.507000px;}
.y18c{bottom:967.957500px;}
.y1b2{bottom:971.434500px;}
.y9e{bottom:972.060000px;}
.y1dc{bottom:972.955500px;}
.y217{bottom:973.890000px;}
.ye4{bottom:975.339000px;}
.yc7{bottom:975.406500px;}
.y14d{bottom:979.017688px;}
.y4d{bottom:979.675500px;}
.y25{bottom:979.890000px;}
.y257{bottom:981.451500px;}
.y105{bottom:982.923000px;}
.y12f{bottom:984.507000px;}
.y18b{bottom:985.957500px;}
.y16c{bottom:987.144000px;}
.y1db{bottom:989.394000px;}
.y216{bottom:991.890000px;}
.y9d{bottom:992.497500px;}
.y72{bottom:993.339000px;}
.y14c{bottom:994.105446px;}
.yc6{bottom:994.900500px;}
.y24{bottom:997.890000px;}
.y256{bottom:999.451500px;}
.y104{bottom:1002.418500px;}
.y18a{bottom:1003.957500px;}
.y1da{bottom:1005.832500px;}
.y2{bottom:1006.758000px;}
.y215{bottom:1009.890000px;}
.y4c{bottom:1010.349000px;}
.y71{bottom:1011.339000px;}
.yc5{bottom:1012.900500px;}
.y16b{bottom:1015.644000px;}
.y23{bottom:1015.890000px;}
.y276{bottom:1017.451500px;}
.y12e{bottom:1020.441000px;}
.y4b{bottom:1020.639000px;}
.y189{bottom:1021.957500px;}
.y1d9{bottom:1022.271000px;}
.y14b{bottom:1024.280961px;}
.y70{bottom:1025.151000px;}
.y9c{bottom:1027.050000px;}
.y103{bottom:1027.890000px;}
.y6f{bottom:1029.339000px;}
.yc4{bottom:1030.900500px;}
.y255{bottom:1032.396000px;}
.y22{bottom:1033.890000px;}
.y275{bottom:1035.451500px;}
.y204{bottom:1038.709500px;}
.y14a{bottom:1039.368718px;}
.y1{bottom:1040.508000px;}
.y16a{bottom:1044.144000px;}
.y9b{bottom:1045.050000px;}
.y102{bottom:1045.890000px;}
.y6e{bottom:1047.339000px;}
.y254{bottom:1050.396000px;}
.y21{bottom:1051.890000px;}
.y188{bottom:1053.406500px;}
.y298{bottom:1053.451500px;}
.y1d8{bottom:1055.148000px;}
.yc3{bottom:1056.373500px;}
.y9a{bottom:1063.050000px;}
.y101{bottom:1063.890000px;}
.y4a{bottom:1065.339000px;}
.y253{bottom:1068.396000px;}
.y149{bottom:1069.544233px;}
.y20{bottom:1069.890000px;}
.y1d7{bottom:1071.586500px;}
.y169{bottom:1072.644000px;}
.yc2{bottom:1074.373500px;}
.y187{bottom:1077.406500px;}
.y99{bottom:1081.050000px;}
.y100{bottom:1081.890000px;}
.y49{bottom:1083.339000px;}
.y274{bottom:1086.396000px;}
.y1f{bottom:1087.890000px;}
.y1d6{bottom:1088.025000px;}
.yc1{bottom:1092.373500px;}
.y98{bottom:1099.489500px;}
.y148{bottom:1099.719748px;}
.y168{bottom:1101.144000px;}
.y48{bottom:1101.339000px;}
.y97{bottom:1103.199000px;}
.y273{bottom:1104.396000px;}
.y1d5{bottom:1104.463500px;}
.y1e{bottom:1105.890000px;}
.yc0{bottom:1110.373500px;}
.yff{bottom:1113.339000px;}
.y96{bottom:1113.487500px;}
.y47{bottom:1119.339000px;}
.y1d4{bottom:1120.900500px;}
.y167{bottom:1130.241000px;}
.y147{bottom:1130.527361px;}
.y1d{bottom:1137.339000px;}
.y12d{bottom:1138.834500px;}
.h3c{height:20.263928px;}
.h32{height:31.499550px;}
.h35{height:31.541549px;}
.h4{height:34.696200px;}
.h8{height:36.048000px;}
.h3b{height:37.443686px;}
.h6{height:37.854000px;}
.h2e{height:38.167262px;}
.h34{height:39.651600px;}
.h2b{height:39.748394px;}
.h7{height:40.554000px;}
.h2f{height:41.982718px;}
.h2d{height:44.831700px;}
.h2c{height:44.933700px;}
.hc{height:45.000000px;}
.h9{height:45.060000px;}
.h27{height:45.743572px;}
.h19{height:46.500000px;}
.h13{height:47.273572px;}
.h24{height:47.279572px;}
.h5{height:49.566000px;}
.h21{height:51.713572px;}
.hb{height:51.719572px;}
.h18{height:54.072000px;}
.h1d{height:54.719572px;}
.h1b{height:55.121550px;}
.h10{height:55.127550px;}
.h37{height:56.621572px;}
.h36{height:57.978000px;}
.h29{height:58.733572px;}
.h23{height:59.832000px;}
.h2a{height:59.892000px;}
.h22{height:60.101572px;}
.h3a{height:60.678000px;}
.h39{height:61.332000px;}
.h1c{height:61.812000px;}
.h28{height:62.669550px;}
.ha{height:63.084000px;}
.h3{height:63.980400px;}
.h11{height:65.748000px;}
.h1e{height:65.754000px;}
.h3d{height:66.551572px;}
.h38{height:68.711572px;}
.h2{height:71.706000px;}
.hf{height:85.590000px;}
.h1f{height:86.154000px;}
.h1a{height:86.214000px;}
.he{height:86.220000px;}
.h30{height:87.090000px;}
.h26{height:87.294000px;}
.h12{height:92.309572px;}
.h33{height:95.873572px;}
.h17{height:95.879572px;}
.h31{height:115.788000px;}
.hd{height:126.750000px;}
.h25{height:128.160000px;}
.h20{height:133.463572px;}
.h16{height:133.469572px;}
.h15{height:142.992000px;}
.h14{height:148.301572px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x68{left:114.826500px;}
.x65{left:119.911500px;}
.x63{left:124.995000px;}
.x61{left:130.078500px;}
.x1c{left:150.106500px;}
.x69{left:151.612500px;}
.x4d{left:154.189500px;}
.x66{left:156.696000px;}
.x58{left:159.072000px;}
.x64{left:161.779500px;}
.x4b{left:165.105000px;}
.x2{left:168.039000px;}
.x7{left:170.601000px;}
.x1d{left:172.522500px;}
.x1{left:176.236500px;}
.x6{left:178.360500px;}
.x62{left:179.994000px;}
.x9{left:185.665500px;}
.xd{left:186.892500px;}
.x6b{left:191.367000px;}
.x4{left:194.455500px;}
.x4e{left:196.385082px;}
.x6a{left:200.490000px;}
.x45{left:201.889500px;}
.xe{left:209.308500px;}
.x67{left:216.780000px;}
.x5b{left:222.894000px;}
.x37{left:227.115000px;}
.x5c{left:229.495500px;}
.x5d{left:237.826500px;}
.x60{left:250.674000px;}
.x3c{left:258.082500px;}
.x1e{left:266.349000px;}
.x5{left:269.497500px;}
.x2f{left:276.198000px;}
.x16{left:281.064000px;}
.x41{left:298.593000px;}
.x38{left:306.994500px;}
.x3d{left:308.110500px;}
.x33{left:309.945000px;}
.x17{left:312.150000px;}
.x1f{left:313.921500px;}
.xa{left:319.008000px;}
.x23{left:325.762500px;}
.x5a{left:335.958000px;}
.x51{left:340.012500px;}
.x50{left:342.537000px;}
.x42{left:353.148000px;}
.x39{left:355.012500px;}
.x3{left:359.352000px;}
.x4f{left:362.521938px;}
.x5e{left:364.845000px;}
.x12{left:366.046500px;}
.x8{left:370.534500px;}
.xf{left:372.294000px;}
.x40{left:374.065500px;}
.x34{left:381.634500px;}
.x4c{left:390.484500px;}
.x3a{left:391.882500px;}
.x52{left:393.508500px;}
.xb{left:397.516500px;}
.x30{left:398.865000px;}
.x43{left:400.845000px;}
.x2a{left:402.442500px;}
.x2c{left:405.024000px;}
.x13{left:407.935500px;}
.x20{left:414.619500px;}
.x22{left:417.045000px;}
.x46{left:418.914000px;}
.x59{left:420.565500px;}
.x3f{left:421.974000px;}
.xc{left:424.315500px;}
.x47{left:427.828500px;}
.x54{left:429.132000px;}
.x27{left:430.692000px;}
.x10{left:432.543000px;}
.x29{left:434.733000px;}
.x18{left:436.792500px;}
.x2b{left:443.002500px;}
.x14{left:444.420000px;}
.x2d{left:446.913000px;}
.x35{left:448.746000px;}
.x57{left:457.351500px;}
.x48{left:459.703500px;}
.x1b{left:461.100000px;}
.x53{left:467.367000px;}
.x21{left:474.562500px;}
.x3b{left:477.958500px;}
.x28{left:479.344500px;}
.x2e{left:498.394500px;}
.x44{left:503.985000px;}
.x11{left:514.429500px;}
.x3e{left:523.818000px;}
.x36{left:532.495500px;}
.x15{left:543.990000px;}
.x31{left:547.681500px;}
.x32{left:552.157500px;}
.x56{left:564.378000px;}
.x19{left:578.634000px;}
.x26{left:581.293500px;}
.x1a{left:583.110000px;}
.x24{left:615.433500px;}
.x49{left:616.462500px;}
.x5f{left:656.254500px;}
.x55{left:681.378000px;}
.x4a{left:696.714000px;}
.x25{left:723.645000px;}
@media print{
.v10{vertical-align:-75.200000pt;}
.v18{vertical-align:-48.725333pt;}
.v1f{vertical-align:-27.093333pt;}
.v2{vertical-align:-21.290667pt;}
.v25{vertical-align:-19.354667pt;}
.v3{vertical-align:-7.200000pt;}
.v1b{vertical-align:-5.312000pt;}
.v1d{vertical-align:-1.765333pt;}
.v0{vertical-align:0.000000pt;}
.v17{vertical-align:5.184000pt;}
.v1c{vertical-align:6.234667pt;}
.v20{vertical-align:8.000000pt;}
.v13{vertical-align:10.389333pt;}
.v24{vertical-align:11.482667pt;}
.v16{vertical-align:13.184000pt;}
.vc{vertical-align:15.402667pt;}
.v9{vertical-align:18.389333pt;}
.v4{vertical-align:19.354667pt;}
.v8{vertical-align:21.002667pt;}
.v14{vertical-align:22.021333pt;}
.v1{vertical-align:23.226667pt;}
.v1e{vertical-align:25.589333pt;}
.v15{vertical-align:26.805333pt;}
.v6{vertical-align:28.586667pt;}
.v27{vertical-align:32.538667pt;}
.v5{vertical-align:36.586667pt;}
.v26{vertical-align:40.000000pt;}
.vf{vertical-align:41.770667pt;}
.v21{vertical-align:44.080000pt;}
.ve{vertical-align:49.770667pt;}
.vb{vertical-align:55.434667pt;}
.v23{vertical-align:57.584000pt;}
.v12{vertical-align:58.608000pt;}
.v19{vertical-align:64.666667pt;}
.v7{vertical-align:72.666667pt;}
.va{vertical-align:75.200000pt;}
.v11{vertical-align:92.021333pt;}
.v22{vertical-align:100.789333pt;}
.v1a{vertical-align:111.786667pt;}
.vd{vertical-align:124.970667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9f{letter-spacing:0.000055pt;}
.lsb4{letter-spacing:0.000882pt;}
.ls49{letter-spacing:0.002918pt;}
.lsf3{letter-spacing:0.004003pt;}
.ls40{letter-spacing:0.004085pt;}
.ls7{letter-spacing:0.005333pt;}
.ls123{letter-spacing:0.005631pt;}
.ls59{letter-spacing:0.005812pt;}
.ls102{letter-spacing:0.006363pt;}
.lsf5{letter-spacing:0.007601pt;}
.lsff{letter-spacing:0.007607pt;}
.ls9e{letter-spacing:0.007853pt;}
.ls99{letter-spacing:0.009840pt;}
.ls33{letter-spacing:0.010667pt;}
.ls1d{letter-spacing:0.011145pt;}
.lse8{letter-spacing:0.011549pt;}
.ls16{letter-spacing:0.012598pt;}
.lsbd{letter-spacing:0.012960pt;}
.ls80{letter-spacing:0.012981pt;}
.lsb5{letter-spacing:0.013894pt;}
.ls12c{letter-spacing:0.015135pt;}
.ls9{letter-spacing:0.016000pt;}
.ls4f{letter-spacing:0.017073pt;}
.lsfb{letter-spacing:0.019822pt;}
.ls44{letter-spacing:0.021333pt;}
.lsf9{letter-spacing:0.021812pt;}
.ls68{letter-spacing:0.022202pt;}
.ls30{letter-spacing:0.026667pt;}
.lsf2{letter-spacing:0.212535pt;}
.lsf6{letter-spacing:0.213333pt;}
.ls103{letter-spacing:1.043651pt;}
.ls21{letter-spacing:1.045333pt;}
.ls122{letter-spacing:1.045812pt;}
.ls120{letter-spacing:1.048239pt;}
.ls126{letter-spacing:1.048886pt;}
.ls100{letter-spacing:1.048984pt;}
.ls19{letter-spacing:1.050667pt;}
.ls15{letter-spacing:1.062677pt;}
.lsb3{letter-spacing:1.434614pt;}
.ls89{letter-spacing:1.487748pt;}
.ls109{letter-spacing:1.600000pt;}
.ls115{letter-spacing:1.914667pt;}
.ls125{letter-spacing:2.019087pt;}
.ls11f{letter-spacing:2.026667pt;}
.lsce{letter-spacing:2.346667pt;}
.lsa4{letter-spacing:2.653217pt;}
.ls5b{letter-spacing:2.653606pt;}
.ls14{letter-spacing:2.654154pt;}
.ls3d{letter-spacing:2.656247pt;}
.ls71{letter-spacing:2.657074pt;}
.ls4{letter-spacing:2.657370pt;}
.ls0{letter-spacing:2.658080pt;}
.ls114{letter-spacing:2.659416pt;}
.ls32{letter-spacing:2.659488pt;}
.ls39{letter-spacing:2.661580pt;}
.lse9{letter-spacing:2.662407pt;}
.ls82{letter-spacing:2.662704pt;}
.lsd2{letter-spacing:2.816000pt;}
.ls37{letter-spacing:3.045333pt;}
.lsa0{letter-spacing:3.061333pt;}
.ls78{letter-spacing:3.081764pt;}
.ls2c{letter-spacing:3.093333pt;}
.ls46{letter-spacing:3.520000pt;}
.ls47{letter-spacing:3.559969pt;}
.lsbe{letter-spacing:3.665507pt;}
.ls73{letter-spacing:3.804016pt;}
.ls45{letter-spacing:3.825638pt;}
.lsac{letter-spacing:3.996042pt;}
.ls6e{letter-spacing:4.320000pt;}
.ls86{letter-spacing:4.356977pt;}
.lse{letter-spacing:4.472994pt;}
.lsfe{letter-spacing:4.478327pt;}
.ls121{letter-spacing:4.684037pt;}
.ls2{letter-spacing:5.238187pt;}
.lseb{letter-spacing:5.273579pt;}
.lsb1{letter-spacing:5.330655pt;}
.ls8{letter-spacing:5.514099pt;}
.ls8b{letter-spacing:5.791591pt;}
.ls12e{letter-spacing:5.827158pt;}
.ls130{letter-spacing:5.844725pt;}
.ls101{letter-spacing:5.906939pt;}
.ls60{letter-spacing:6.363145pt;}
.ls18{letter-spacing:6.373333pt;}
.ls20{letter-spacing:6.378667pt;}
.ls1{letter-spacing:6.437067pt;}
.ls131{letter-spacing:6.657648pt;}
.ls6{letter-spacing:6.659615pt;}
.ls9b{letter-spacing:6.664948pt;}
.lsc6{letter-spacing:7.205333pt;}
.lsc0{letter-spacing:7.210667pt;}
.ls51{letter-spacing:7.385607pt;}
.lsfc{letter-spacing:7.402667pt;}
.ls74{letter-spacing:7.408000pt;}
.ls28{letter-spacing:7.438741pt;}
.lsaa{letter-spacing:7.466667pt;}
.ls124{letter-spacing:7.540766pt;}
.lsb0{letter-spacing:7.995982pt;}
.ls11e{letter-spacing:8.691615pt;}
.ls10d{letter-spacing:8.853333pt;}
.ls113{letter-spacing:8.885333pt;}
.ls50{letter-spacing:9.032821pt;}
.lsc9{letter-spacing:9.135681pt;}
.lsa7{letter-spacing:9.158216pt;}
.lscd{letter-spacing:9.181944pt;}
.ls6f{letter-spacing:9.600000pt;}
.ls6d{letter-spacing:9.653333pt;}
.lsd4{letter-spacing:10.069333pt;}
.lsf1{letter-spacing:10.095435pt;}
.lsef{letter-spacing:10.148569pt;}
.lsa9{letter-spacing:10.151392pt;}
.lsaf{letter-spacing:10.661309pt;}
.ls116{letter-spacing:10.739416pt;}
.ls75{letter-spacing:11.521350pt;}
.ls10c{letter-spacing:11.521370pt;}
.lsad{letter-spacing:11.542704pt;}
.lsee{letter-spacing:11.546913pt;}
.lsbc{letter-spacing:11.548037pt;}
.ls1c{letter-spacing:11.840000pt;}
.ls1f{letter-spacing:11.848852pt;}
.ls1b{letter-spacing:11.850667pt;}
.ls58{letter-spacing:11.856000pt;}
.ls7e{letter-spacing:11.893333pt;}
.lsc2{letter-spacing:11.953370pt;}
.lsf4{letter-spacing:11.955120pt;}
.ls22{letter-spacing:12.280272pt;}
.ls1a{letter-spacing:12.285606pt;}
.lsd5{letter-spacing:12.586667pt;}
.ls107{letter-spacing:12.640000pt;}
.ls10a{letter-spacing:12.693333pt;}
.ls110{letter-spacing:12.858396pt;}
.lsd8{letter-spacing:12.911530pt;}
.ls9a{letter-spacing:13.038282pt;}
.ls90{letter-spacing:13.173333pt;}
.lsdd{letter-spacing:13.226667pt;}
.lsde{letter-spacing:13.230333pt;}
.lsb6{letter-spacing:13.283467pt;}
.lsae{letter-spacing:13.371812pt;}
.ls48{letter-spacing:13.600000pt;}
.ls117{letter-spacing:14.293333pt;}
.ls1e{letter-spacing:14.399432pt;}
.ls5a{letter-spacing:14.404766pt;}
.ls10e{letter-spacing:14.506667pt;}
.ls70{letter-spacing:14.513074pt;}
.ls72{letter-spacing:14.513370pt;}
.ls8a{letter-spacing:14.664947pt;}
.lsa6{letter-spacing:14.718081pt;}
.lsd0{letter-spacing:14.720000pt;}
.ls84{letter-spacing:14.771215pt;}
.ls5c{letter-spacing:14.824349pt;}
.lsc{letter-spacing:14.826667pt;}
.lsd3{letter-spacing:15.104000pt;}
.lsd6{letter-spacing:15.146667pt;}
.ls17{letter-spacing:15.550282pt;}
.ls118{letter-spacing:15.733333pt;}
.lse3{letter-spacing:15.894668pt;}
.lsb2{letter-spacing:15.991964pt;}
.lsbb{letter-spacing:16.152695pt;}
.lsba{letter-spacing:16.160000pt;}
.ls96{letter-spacing:16.312097pt;}
.ls98{letter-spacing:16.320000pt;}
.ls87{letter-spacing:16.586667pt;}
.ls7c{letter-spacing:16.737168pt;}
.lsa2{letter-spacing:16.746667pt;}
.lsf0{letter-spacing:16.906667pt;}
.lsed{letter-spacing:17.002837pt;}
.ls88{letter-spacing:17.052037pt;}
.lsa8{letter-spacing:17.173333pt;}
.ls12f{letter-spacing:17.280000pt;}
.ls69{letter-spacing:17.333333pt;}
.ls54{letter-spacing:17.386667pt;}
.ls3e{letter-spacing:17.469217pt;}
.ls6a{letter-spacing:17.470154pt;}
.ls3b{letter-spacing:17.473074pt;}
.ls38{letter-spacing:17.473370pt;}
.ls108{letter-spacing:17.474939pt;}
.ls3f{letter-spacing:17.746711pt;}
.ls55{letter-spacing:17.760000pt;}
.lsc8{letter-spacing:17.799845pt;}
.ls8c{letter-spacing:17.813333pt;}
.ls8e{letter-spacing:17.906113pt;}
.ls4a{letter-spacing:18.099660pt;}
.ls62{letter-spacing:18.217222pt;}
.lsdc{letter-spacing:18.278050pt;}
.lsdb{letter-spacing:18.293333pt;}
.ls92{letter-spacing:18.346667pt;}
.ls3c{letter-spacing:18.620016pt;}
.ls10f{letter-spacing:18.809389pt;}
.lsc5{letter-spacing:18.812042pt;}
.ls128{letter-spacing:18.862523pt;}
.ls10b{letter-spacing:18.934704pt;}
.lsc1{letter-spacing:19.016721pt;}
.ls8d{letter-spacing:19.128192pt;}
.lsea{letter-spacing:19.146667pt;}
.ls66{letter-spacing:19.181326pt;}
.ls111{letter-spacing:19.306667pt;}
.ls93{letter-spacing:19.680000pt;}
.ls52{letter-spacing:19.712665pt;}
.ls4e{letter-spacing:19.786667pt;}
.lsdf{letter-spacing:19.872066pt;}
.ls79{letter-spacing:19.978334pt;}
.lsd7{letter-spacing:20.065370pt;}
.lsab{letter-spacing:20.072994pt;}
.ls11{letter-spacing:20.324766pt;}
.ls13{letter-spacing:20.330099pt;}
.ls41{letter-spacing:20.432247pt;}
.ls4b{letter-spacing:20.433370pt;}
.ls34{letter-spacing:20.434939pt;}
.ls136{letter-spacing:20.640000pt;}
.ls53{letter-spacing:20.693333pt;}
.ls4c{letter-spacing:20.746667pt;}
.lscb{letter-spacing:20.775342pt;}
.ls6b{letter-spacing:20.853333pt;}
.lse1{letter-spacing:20.934668pt;}
.lse2{letter-spacing:20.939741pt;}
.lse0{letter-spacing:20.940759pt;}
.lsda{letter-spacing:20.951684pt;}
.lsf8{letter-spacing:20.960000pt;}
.ls8f{letter-spacing:21.171699pt;}
.ls12b{letter-spacing:21.173333pt;}
.ls2a{letter-spacing:21.189812pt;}
.ls29{letter-spacing:21.194667pt;}
.ls132{letter-spacing:21.386667pt;}
.lsb{letter-spacing:21.475615pt;}
.ls67{letter-spacing:21.512486pt;}
.ls127{letter-spacing:21.533606pt;}
.ls5d{letter-spacing:21.600000pt;}
.ls42{letter-spacing:21.944287pt;}
.lsd9{letter-spacing:21.989580pt;}
.lscc{letter-spacing:21.997421pt;}
.lscf{letter-spacing:22.026667pt;}
.ls43{letter-spacing:22.080000pt;}
.ls5e{letter-spacing:22.133333pt;}
.lsa3{letter-spacing:22.156822pt;}
.ls112{letter-spacing:22.186667pt;}
.ls25{letter-spacing:22.209956pt;}
.ls26{letter-spacing:22.665189pt;}
.ls134{letter-spacing:22.826667pt;}
.ls12a{letter-spacing:23.093333pt;}
.ls9c{letter-spacing:23.360000pt;}
.ls5{letter-spacing:23.697705pt;}
.ls135{letter-spacing:23.733333pt;}
.ls97{letter-spacing:23.803972pt;}
.ls95{letter-spacing:23.840000pt;}
.ls12d{letter-spacing:23.842939pt;}
.lsfa{letter-spacing:23.910683pt;}
.ls36{letter-spacing:24.000000pt;}
.ls133{letter-spacing:24.039884pt;}
.ls31{letter-spacing:24.373333pt;}
.lsd1{letter-spacing:24.741580pt;}
.ls35{letter-spacing:24.919783pt;}
.lsca{letter-spacing:24.958055pt;}
.ls11b{letter-spacing:25.058099pt;}
.ls11a{letter-spacing:25.105920pt;}
.ls91{letter-spacing:25.546667pt;}
.ls11d{letter-spacing:25.920000pt;}
.ls9d{letter-spacing:26.026667pt;}
.ls129{letter-spacing:26.133333pt;}
.ls106{letter-spacing:26.186667pt;}
.ls94{letter-spacing:26.400000pt;}
.ls24{letter-spacing:26.642939pt;}
.ls85{letter-spacing:26.656000pt;}
.lsa5{letter-spacing:26.661333pt;}
.ls4d{letter-spacing:27.151406pt;}
.ls2e{letter-spacing:27.306667pt;}
.lse7{letter-spacing:27.360000pt;}
.lsec{letter-spacing:27.682745pt;}
.lsb9{letter-spacing:28.252037pt;}
.lsc3{letter-spacing:28.597333pt;}
.lsa{letter-spacing:28.750282pt;}
.ls105{letter-spacing:28.800000pt;}
.ls10{letter-spacing:29.332766pt;}
.lse6{letter-spacing:29.383028pt;}
.ls6c{letter-spacing:29.653333pt;}
.ls2d{letter-spacing:30.346667pt;}
.ls83{letter-spacing:31.360000pt;}
.ls11c{letter-spacing:32.563615pt;}
.lsfd{letter-spacing:32.800000pt;}
.lsc7{letter-spacing:33.848721pt;}
.ls64{letter-spacing:33.967059pt;}
.ls5f{letter-spacing:34.673370pt;}
.ls63{letter-spacing:35.038400pt;}
.ls104{letter-spacing:35.486282pt;}
.ls81{letter-spacing:35.816994pt;}
.ls137{letter-spacing:37.760000pt;}
.lsf7{letter-spacing:38.177074pt;}
.lse4{letter-spacing:41.310235pt;}
.lse5{letter-spacing:41.318155pt;}
.ls61{letter-spacing:43.497067pt;}
.ls12{letter-spacing:44.123145pt;}
.ls27{letter-spacing:44.419913pt;}
.ls76{letter-spacing:46.210796pt;}
.lsa1{letter-spacing:50.300016pt;}
.ls119{letter-spacing:53.128909pt;}
.ls56{letter-spacing:59.696000pt;}
.ls7b{letter-spacing:62.198051pt;}
.ls3a{letter-spacing:62.219758pt;}
.lsd{letter-spacing:65.899145pt;}
.ls2b{letter-spacing:103.781333pt;}
.ls7d{letter-spacing:155.151311pt;}
.lsb7{letter-spacing:282.937067pt;}
.ls23{letter-spacing:377.226667pt;}
.lsb8{letter-spacing:449.653333pt;}
.lsc4{letter-spacing:503.893333pt;}
.ls65{letter-spacing:504.512000pt;}
.lsf{letter-spacing:597.450667pt;}
.lsbf{letter-spacing:630.880000pt;}
.ls7f{letter-spacing:685.485186pt;}
.ls57{letter-spacing:707.413333pt;}
.ls7a{letter-spacing:710.545370pt;}
.ls77{letter-spacing:790.720000pt;}
.ls2f{letter-spacing:874.613333pt;}
.ws40{word-spacing:-42.224000pt;}
.ws141{word-spacing:-38.506667pt;}
.ws2b{word-spacing:-34.741333pt;}
.ws78{word-spacing:-34.473253pt;}
.wsfd{word-spacing:-32.448000pt;}
.ws53{word-spacing:-30.661333pt;}
.ws130{word-spacing:-29.584937pt;}
.ws5{word-spacing:-29.327467pt;}
.wsa9{word-spacing:-29.226667pt;}
.wsb2{word-spacing:-28.373333pt;}
.ws6a{word-spacing:-26.661333pt;}
.ws142{word-spacing:-25.888000pt;}
.ws148{word-spacing:-25.834667pt;}
.ws36{word-spacing:-25.717333pt;}
.ws15c{word-spacing:-25.153741pt;}
.ws2d{word-spacing:-23.968000pt;}
.ws45{word-spacing:-23.914667pt;}
.wsf8{word-spacing:-23.488000pt;}
.ws101{word-spacing:-22.660267pt;}
.ws80{word-spacing:-22.467410pt;}
.ws172{word-spacing:-21.034667pt;}
.ws9d{word-spacing:-19.970118pt;}
.ws17a{word-spacing:-19.648000pt;}
.ws81{word-spacing:-19.491914pt;}
.ws1{word-spacing:-18.024533pt;}
.ws87{word-spacing:-17.061333pt;}
.ws62{word-spacing:-17.008000pt;}
.ws82{word-spacing:-16.981333pt;}
.wsad{word-spacing:-16.714667pt;}
.wsea{word-spacing:-15.996482pt;}
.ws169{word-spacing:-15.261867pt;}
.ws63{word-spacing:-14.768000pt;}
.ws3f{word-spacing:-14.760588pt;}
.wsd9{word-spacing:-14.714667pt;}
.ws192{word-spacing:-14.501333pt;}
.ws32{word-spacing:-14.448000pt;}
.ws190{word-spacing:-14.394667pt;}
.wsb4{word-spacing:-14.368000pt;}
.ws1a5{word-spacing:-14.341333pt;}
.wsbe{word-spacing:-14.288000pt;}
.ws166{word-spacing:-14.234667pt;}
.ws0{word-spacing:-14.216533pt;}
.ws153{word-spacing:-14.181333pt;}
.ws3c{word-spacing:-14.128000pt;}
.ws48{word-spacing:-14.021333pt;}
.ws31{word-spacing:-13.992533pt;}
.wsa2{word-spacing:-13.914667pt;}
.ws4c{word-spacing:-13.808000pt;}
.ws1ad{word-spacing:-13.701333pt;}
.ws1be{word-spacing:-13.648000pt;}
.wsd1{word-spacing:-13.541333pt;}
.wsa7{word-spacing:-13.488000pt;}
.ws14f{word-spacing:-13.381333pt;}
.wsed{word-spacing:-13.331154pt;}
.ws19d{word-spacing:-13.328000pt;}
.ws16c{word-spacing:-13.221333pt;}
.wscd{word-spacing:-13.168000pt;}
.ws196{word-spacing:-13.114667pt;}
.ws71{word-spacing:-13.059063pt;}
.ws72{word-spacing:-13.008000pt;}
.ws173{word-spacing:-12.954667pt;}
.ws68{word-spacing:-12.901333pt;}
.wsde{word-spacing:-12.848000pt;}
.ws17c{word-spacing:-12.821333pt;}
.wscf{word-spacing:-12.794667pt;}
.wsa3{word-spacing:-12.741333pt;}
.ws64{word-spacing:-12.688000pt;}
.wsfe{word-spacing:-12.590933pt;}
.ws1b1{word-spacing:-12.581333pt;}
.ws1b0{word-spacing:-12.528000pt;}
.ws140{word-spacing:-12.501333pt;}
.ws176{word-spacing:-12.474667pt;}
.ws38{word-spacing:-12.421333pt;}
.ws150{word-spacing:-12.368000pt;}
.ws9b{word-spacing:-12.261333pt;}
.wse6{word-spacing:-12.154667pt;}
.ws14b{word-spacing:-12.128000pt;}
.ws1b4{word-spacing:-12.101333pt;}
.wse8{word-spacing:-12.073428pt;}
.ws164{word-spacing:-12.057600pt;}
.ws5e{word-spacing:-12.048000pt;}
.wsa4{word-spacing:-11.994667pt;}
.ws4b{word-spacing:-11.993600pt;}
.wsa{word-spacing:-11.942400pt;}
.ws165{word-spacing:-11.674667pt;}
.ws1a2{word-spacing:-11.568000pt;}
.wsd7{word-spacing:-11.514667pt;}
.wsce{word-spacing:-11.461333pt;}
.wsd8{word-spacing:-11.408000pt;}
.ws115{word-spacing:-11.301333pt;}
.ws19a{word-spacing:-11.248000pt;}
.ws1b{word-spacing:-11.194667pt;}
.wsb9{word-spacing:-11.141333pt;}
.wse7{word-spacing:-11.088000pt;}
.ws2f{word-spacing:-11.043629pt;}
.wsc1{word-spacing:-11.034667pt;}
.ws1ac{word-spacing:-10.928000pt;}
.ws84{word-spacing:-10.901333pt;}
.wscb{word-spacing:-10.874667pt;}
.wsb8{word-spacing:-10.821333pt;}
.wsb7{word-spacing:-10.768000pt;}
.ws1bc{word-spacing:-10.714667pt;}
.wsbd{word-spacing:-10.661333pt;}
.wsc0{word-spacing:-10.501333pt;}
.ws13e{word-spacing:-10.394667pt;}
.ws95{word-spacing:-10.341333pt;}
.ws16e{word-spacing:-10.314667pt;}
.ws1aa{word-spacing:-10.288000pt;}
.ws3e{word-spacing:-10.234667pt;}
.ws177{word-spacing:-10.181333pt;}
.ws98{word-spacing:-10.074667pt;}
.ws86{word-spacing:-10.030433pt;}
.ws88{word-spacing:-10.021333pt;}
.ws8a{word-spacing:-9.914667pt;}
.wsab{word-spacing:-9.808000pt;}
.ws4{word-spacing:-9.791467pt;}
.ws65{word-spacing:-9.754667pt;}
.ws6{word-spacing:-9.732800pt;}
.ws50{word-spacing:-9.541333pt;}
.wscc{word-spacing:-9.434667pt;}
.ws33{word-spacing:-9.381333pt;}
.ws83{word-spacing:-9.339693pt;}
.ws7a{word-spacing:-9.328000pt;}
.wsc4{word-spacing:-9.274667pt;}
.wsd2{word-spacing:-9.168000pt;}
.ws188{word-spacing:-9.061333pt;}
.ws74{word-spacing:-9.008000pt;}
.wsb0{word-spacing:-8.954667pt;}
.ws12{word-spacing:-8.918400pt;}
.ws7f{word-spacing:-8.914622pt;}
.ws20{word-spacing:-8.901333pt;}
.ws2a{word-spacing:-8.861488pt;}
.ws97{word-spacing:-8.848000pt;}
.ws1b6{word-spacing:-8.741333pt;}
.wse1{word-spacing:-8.688000pt;}
.ws104{word-spacing:-8.634667pt;}
.ws34{word-spacing:-8.581333pt;}
.ws46{word-spacing:-8.474667pt;}
.ws106{word-spacing:-8.368000pt;}
.wsdf{word-spacing:-8.314667pt;}
.ws1d{word-spacing:-8.261333pt;}
.ws183{word-spacing:-8.208000pt;}
.ws14{word-spacing:-8.198400pt;}
.wsd6{word-spacing:-8.101333pt;}
.wsec{word-spacing:-8.000500pt;}
.wsc6{word-spacing:-7.994667pt;}
.wsee{word-spacing:-7.955325pt;}
.wsc8{word-spacing:-7.941333pt;}
.ws170{word-spacing:-7.834667pt;}
.ws174{word-spacing:-7.781333pt;}
.wsa1{word-spacing:-7.674667pt;}
.ws18f{word-spacing:-7.621333pt;}
.ws191{word-spacing:-7.568000pt;}
.ws16{word-spacing:-7.556267pt;}
.ws1a{word-spacing:-7.514667pt;}
.ws35{word-spacing:-7.461333pt;}
.ws1f{word-spacing:-7.408000pt;}
.ws1e{word-spacing:-7.354667pt;}
.ws119{word-spacing:-7.301333pt;}
.wsa0{word-spacing:-7.248000pt;}
.ws6f{word-spacing:-7.194667pt;}
.wsc3{word-spacing:-7.141333pt;}
.ws128{word-spacing:-6.981333pt;}
.wsac{word-spacing:-6.928000pt;}
.ws3a{word-spacing:-6.821333pt;}
.ws10b{word-spacing:-6.789267pt;}
.wsae{word-spacing:-6.554667pt;}
.wsd5{word-spacing:-6.501333pt;}
.ws73{word-spacing:-6.448000pt;}
.ws19f{word-spacing:-6.234667pt;}
.wsd0{word-spacing:-6.181333pt;}
.ws179{word-spacing:-6.128000pt;}
.ws39{word-spacing:-6.021333pt;}
.ws1c{word-spacing:-5.968000pt;}
.ws77{word-spacing:-5.939125pt;}
.ws75{word-spacing:-5.914667pt;}
.ws14e{word-spacing:-5.882342pt;}
.ws7c{word-spacing:-5.869176pt;}
.ws22{word-spacing:-5.861333pt;}
.ws7d{word-spacing:-5.858295pt;}
.ws11{word-spacing:-5.846400pt;}
.ws124{word-spacing:-5.834099pt;}
.wsaf{word-spacing:-5.808000pt;}
.ws66{word-spacing:-5.754667pt;}
.wsf2{word-spacing:-5.741748pt;}
.ws133{word-spacing:-5.701333pt;}
.ws195{word-spacing:-5.648000pt;}
.wsb3{word-spacing:-5.541333pt;}
.wsb5{word-spacing:-5.488000pt;}
.ws79{word-spacing:-5.434667pt;}
.wsef{word-spacing:-5.335172pt;}
.ws151{word-spacing:-5.328000pt;}
.ws8c{word-spacing:-5.290667pt;}
.ws6b{word-spacing:-5.274667pt;}
.wsd4{word-spacing:-5.221333pt;}
.ws12a{word-spacing:-5.168000pt;}
.wse0{word-spacing:-5.160588pt;}
.ws9c{word-spacing:-5.107255pt;}
.wsff{word-spacing:-5.038933pt;}
.wsc5{word-spacing:-5.008000pt;}
.ws8{word-spacing:-4.934400pt;}
.ws57{word-spacing:-4.848000pt;}
.ws19{word-spacing:-4.741333pt;}
.ws47{word-spacing:-4.688000pt;}
.ws12e{word-spacing:-4.680588pt;}
.ws42{word-spacing:-4.634667pt;}
.ws12f{word-spacing:-4.627255pt;}
.ws6c{word-spacing:-4.581333pt;}
.wsda{word-spacing:-4.528000pt;}
.ws149{word-spacing:-4.474667pt;}
.ws16b{word-spacing:-4.421333pt;}
.wsf0{word-spacing:-4.386496pt;}
.wsaa{word-spacing:-4.368000pt;}
.wsb6{word-spacing:-4.261333pt;}
.ws58{word-spacing:-4.208000pt;}
.ws1a9{word-spacing:-4.154667pt;}
.ws175{word-spacing:-4.101333pt;}
.ws168{word-spacing:-4.048000pt;}
.ws182{word-spacing:-3.994667pt;}
.ws171{word-spacing:-3.941333pt;}
.ws1bb{word-spacing:-3.834667pt;}
.ws17b{word-spacing:-3.781333pt;}
.ws5a{word-spacing:-3.728000pt;}
.ws5f{word-spacing:-3.674667pt;}
.ws11a{word-spacing:-3.621333pt;}
.ws4e{word-spacing:-3.514667pt;}
.ws49{word-spacing:-3.461333pt;}
.ws29{word-spacing:-3.408000pt;}
.ws18a{word-spacing:-3.354667pt;}
.wsa8{word-spacing:-3.301333pt;}
.ws21{word-spacing:-3.248000pt;}
.ws60{word-spacing:-3.194667pt;}
.ws16f{word-spacing:-3.088000pt;}
.ws189{word-spacing:-2.981333pt;}
.ws117{word-spacing:-2.928000pt;}
.ws8f{word-spacing:-2.920588pt;}
.wsf4{word-spacing:-2.911736pt;}
.ws178{word-spacing:-2.874667pt;}
.wsb1{word-spacing:-2.821333pt;}
.ws5d{word-spacing:-2.768000pt;}
.ws105{word-spacing:-2.714667pt;}
.wsd{word-spacing:-2.678400pt;}
.ws41{word-spacing:-2.661333pt;}
.ws8e{word-spacing:-2.512000pt;}
.ws186{word-spacing:-2.501333pt;}
.wse2{word-spacing:-2.448000pt;}
.wsf5{word-spacing:-2.394667pt;}
.ws55{word-spacing:-2.288000pt;}
.ws16d{word-spacing:-2.234667pt;}
.wsc2{word-spacing:-2.181333pt;}
.ws28{word-spacing:-2.074667pt;}
.wsc{word-spacing:-2.006400pt;}
.ws23{word-spacing:-1.968000pt;}
.ws114{word-spacing:-1.914667pt;}
.ws10a{word-spacing:-1.907255pt;}
.wsdb{word-spacing:-1.754667pt;}
.ws51{word-spacing:-1.701333pt;}
.wsf{word-spacing:-1.622400pt;}
.ws4d{word-spacing:-1.594667pt;}
.ws10e{word-spacing:-1.530255pt;}
.ws187{word-spacing:-1.488000pt;}
.ws7{word-spacing:-1.382400pt;}
.ws1a0{word-spacing:-1.381333pt;}
.ws1a1{word-spacing:-1.328000pt;}
.ws9{word-spacing:-1.238400pt;}
.ws12b{word-spacing:-1.168000pt;}
.ws18b{word-spacing:-1.008000pt;}
.wsb{word-spacing:-0.854400pt;}
.ws118{word-spacing:-0.794667pt;}
.ws116{word-spacing:-0.634667pt;}
.ws139{word-spacing:-0.528000pt;}
.ws69{word-spacing:-0.525144pt;}
.ws11e{word-spacing:-0.524020pt;}
.ws59{word-spacing:-0.474667pt;}
.ws10{word-spacing:-0.470400pt;}
.wsa5{word-spacing:-0.421333pt;}
.wsa6{word-spacing:-0.368000pt;}
.ws194{word-spacing:-0.314667pt;}
.ws197{word-spacing:-0.261333pt;}
.ws9f{word-spacing:-0.101333pt;}
.ws7b{word-spacing:-0.053333pt;}
.wse5{word-spacing:-0.052266pt;}
.wse{word-spacing:-0.048000pt;}
.ws154{word-spacing:-0.047821pt;}
.ws3{word-spacing:-0.041067pt;}
.ws99{word-spacing:-0.037333pt;}
.wseb{word-spacing:-0.031623pt;}
.ws18{word-spacing:-0.029867pt;}
.ws5c{word-spacing:-0.025600pt;}
.ws17{word-spacing:0.000000pt;}
.wsf9{word-spacing:0.005333pt;}
.ws2e{word-spacing:0.010627pt;}
.ws2c{word-spacing:0.012745pt;}
.ws24{word-spacing:0.058667pt;}
.ws30{word-spacing:0.063761pt;}
.wse4{word-spacing:0.165333pt;}
.wsbb{word-spacing:0.218667pt;}
.ws16a{word-spacing:0.272000pt;}
.ws13{word-spacing:0.297600pt;}
.ws199{word-spacing:0.325333pt;}
.wsbf{word-spacing:0.378667pt;}
.ws92{word-spacing:0.405333pt;}
.ws26{word-spacing:0.432000pt;}
.ws193{word-spacing:0.538667pt;}
.ws122{word-spacing:0.698667pt;}
.ws1b9{word-spacing:0.805333pt;}
.ws8d{word-spacing:1.152000pt;}
.ws52{word-spacing:1.285333pt;}
.ws1af{word-spacing:1.338667pt;}
.ws1bd{word-spacing:1.392000pt;}
.ws198{word-spacing:1.498667pt;}
.ws27{word-spacing:1.658667pt;}
.ws1ab{word-spacing:1.872000pt;}
.wsd3{word-spacing:2.085333pt;}
.ws12d{word-spacing:2.199412pt;}
.wsbc{word-spacing:2.458667pt;}
.ws145{word-spacing:2.614186pt;}
.ws4f{word-spacing:2.622147pt;}
.ws109{word-spacing:2.667320pt;}
.ws103{word-spacing:2.885333pt;}
.ws96{word-spacing:2.999412pt;}
.ws9e{word-spacing:3.052745pt;}
.ws61{word-spacing:3.152000pt;}
.ws18c{word-spacing:3.205333pt;}
.ws1ba{word-spacing:3.258667pt;}
.ws25{word-spacing:3.418667pt;}
.ws146{word-spacing:3.444784pt;}
.ws10c{word-spacing:3.517462pt;}
.ws131{word-spacing:3.525333pt;}
.wse3{word-spacing:3.685333pt;}
.ws19e{word-spacing:4.432000pt;}
.wsdd{word-spacing:4.485333pt;}
.wsba{word-spacing:4.538667pt;}
.ws94{word-spacing:4.645333pt;}
.ws90{word-spacing:4.687648pt;}
.ws93{word-spacing:4.698667pt;}
.wsca{word-spacing:4.805333pt;}
.ws1b2{word-spacing:4.965333pt;}
.ws10d{word-spacing:5.079412pt;}
.ws1a4{word-spacing:5.232000pt;}
.ws132{word-spacing:5.324013pt;}
.ws13f{word-spacing:5.380768pt;}
.ws112{word-spacing:5.392000pt;}
.ws152{word-spacing:5.399418pt;}
.ws134{word-spacing:5.400734pt;}
.ws13d{word-spacing:5.401584pt;}
.ws147{word-spacing:5.405162pt;}
.ws110{word-spacing:5.431522pt;}
.ws113{word-spacing:5.445333pt;}
.ws18e{word-spacing:5.498667pt;}
.ws11d{word-spacing:5.695951pt;}
.ws1ae{word-spacing:5.872000pt;}
.ws167{word-spacing:6.039412pt;}
.ws1a8{word-spacing:6.352000pt;}
.ws43{word-spacing:6.512000pt;}
.ws184{word-spacing:7.098667pt;}
.ws11f{word-spacing:7.159412pt;}
.ws9a{word-spacing:7.205333pt;}
.wsfb{word-spacing:7.319412pt;}
.ws136{word-spacing:7.343100pt;}
.ws137{word-spacing:7.372745pt;}
.ws5b{word-spacing:8.172745pt;}
.ws7e{word-spacing:8.360189pt;}
.ws56{word-spacing:8.360663pt;}
.ws11b{word-spacing:8.830849pt;}
.ws126{word-spacing:9.445333pt;}
.ws14d{word-spacing:9.521589pt;}
.ws144{word-spacing:9.559412pt;}
.ws6e{word-spacing:9.605333pt;}
.ws19b{word-spacing:9.658667pt;}
.ws108{word-spacing:9.818667pt;}
.ws100{word-spacing:10.182400pt;}
.ws13a{word-spacing:10.270917pt;}
.ws18d{word-spacing:10.352000pt;}
.wsf6{word-spacing:10.849936pt;}
.ws11c{word-spacing:11.042495pt;}
.ws1b8{word-spacing:11.098667pt;}
.wsc9{word-spacing:11.189333pt;}
.ws138{word-spacing:11.426079pt;}
.ws1a7{word-spacing:12.325333pt;}
.ws1a6{word-spacing:12.378667pt;}
.ws125{word-spacing:12.599412pt;}
.ws107{word-spacing:12.698667pt;}
.ws1a3{word-spacing:12.752000pt;}
.ws12c{word-spacing:12.922156pt;}
.ws14a{word-spacing:13.374121pt;}
.ws13c{word-spacing:14.732745pt;}
.wsf7{word-spacing:14.824189pt;}
.ws14c{word-spacing:14.864887pt;}
.wsfa{word-spacing:14.888109pt;}
.ws15{word-spacing:15.061333pt;}
.ws121{word-spacing:16.003921pt;}
.ws185{word-spacing:16.165333pt;}
.ws143{word-spacing:16.272945pt;}
.ws111{word-spacing:17.292745pt;}
.wsf3{word-spacing:17.365333pt;}
.ws8b{word-spacing:17.438590pt;}
.ws44{word-spacing:18.725333pt;}
.wsf1{word-spacing:19.380092pt;}
.ws127{word-spacing:19.626667pt;}
.ws129{word-spacing:19.680000pt;}
.ws54{word-spacing:19.910962pt;}
.ws2{word-spacing:20.800000pt;}
.ws1b7{word-spacing:21.338667pt;}
.ws123{word-spacing:21.360025pt;}
.ws120{word-spacing:21.365359pt;}
.ws1b5{word-spacing:21.973333pt;}
.ws19c{word-spacing:22.346667pt;}
.ws91{word-spacing:22.645654pt;}
.ws102{word-spacing:22.672000pt;}
.ws67{word-spacing:23.518590pt;}
.ws10f{word-spacing:23.867733pt;}
.ws13b{word-spacing:24.975435pt;}
.ws156{word-spacing:25.010278pt;}
.ws155{word-spacing:25.058099pt;}
.ws135{word-spacing:25.719412pt;}
.ws4a{word-spacing:25.814962pt;}
.ws3d{word-spacing:26.136663pt;}
.wsc7{word-spacing:27.064663pt;}
.ws89{word-spacing:27.210681pt;}
.ws37{word-spacing:27.445333pt;}
.ws76{word-spacing:29.112663pt;}
.ws1b3{word-spacing:31.733333pt;}
.ws6d{word-spacing:34.352015pt;}
.ws160{word-spacing:50.164019pt;}
.ws157{word-spacing:53.102342pt;}
.wsdc{word-spacing:72.005333pt;}
.ws3b{word-spacing:80.778667pt;}
.ws158{word-spacing:153.526022pt;}
.ws159{word-spacing:253.901881pt;}
.ws17e{word-spacing:329.219641pt;}
.ws15d{word-spacing:354.277740pt;}
.ws15a{word-spacing:354.325561pt;}
.wse9{word-spacing:394.098014pt;}
.ws85{word-spacing:448.565333pt;}
.ws15e{word-spacing:454.701420pt;}
.ws17d{word-spacing:479.807340pt;}
.ws17f{word-spacing:530.019180pt;}
.ws180{word-spacing:555.077279pt;}
.ws15f{word-spacing:555.125100pt;}
.ws163{word-spacing:605.289119pt;}
.ws162{word-spacing:655.500959pt;}
.ws15b{word-spacing:680.606879pt;}
.ws181{word-spacing:705.712799pt;}
.wsfc{word-spacing:716.553600pt;}
.ws70{word-spacing:772.997333pt;}
.ws161{word-spacing:806.088659pt;}
._34{margin-left:-25.153741pt;}
._17{margin-left:-19.712665pt;}
._32{margin-left:-14.824349pt;}
._1a{margin-left:-8.906667pt;}
._1{margin-left:-7.072000pt;}
._4{margin-left:-5.680000pt;}
._2{margin-left:-4.554667pt;}
._a{margin-left:-3.584000pt;}
._0{margin-left:-2.357333pt;}
._6{margin-left:-1.344000pt;}
._5{width:1.642667pt;}
._3{width:2.660160pt;}
._19{width:4.320000pt;}
._b{width:5.706667pt;}
._21{width:7.737607pt;}
._f{width:8.890667pt;}
._d{width:11.274667pt;}
._14{width:12.288000pt;}
._1e{width:14.090667pt;}
._13{width:15.541333pt;}
._1d{width:17.354667pt;}
._8{width:18.368000pt;}
._3b{width:19.477333pt;}
._15{width:20.426667pt;}
._22{width:21.397333pt;}
._7{width:22.837333pt;}
._e{width:24.165333pt;}
._2f{width:25.664000pt;}
._3c{width:26.666667pt;}
._9{width:27.637333pt;}
._16{width:28.554667pt;}
._11{width:30.144000pt;}
._12{width:31.296000pt;}
._1f{width:32.490667pt;}
._20{width:33.589333pt;}
._33{width:34.489445pt;}
._10{width:35.968000pt;}
._31{width:37.024000pt;}
._2e{width:39.568210pt;}
._c{width:41.962667pt;}
._35{width:50.211840pt;}
._1b{width:51.241511pt;}
._18{width:62.613333pt;}
._30{width:72.000000pt;}
._37{width:75.269939pt;}
._2d{width:84.672000pt;}
._36{width:100.375859pt;}
._39{width:125.433958pt;}
._1c{width:139.552000pt;}
._3a{width:150.539878pt;}
._23{width:165.904885pt;}
._38{width:175.645798pt;}
._24{width:196.367887pt;}
._26{width:219.226335pt;}
._25{width:281.312098pt;}
._27{width:361.456831pt;}
._29{width:418.258133pt;}
._2c{width:430.964267pt;}
._2a{width:434.881067pt;}
._2b{width:478.499200pt;}
._28{width:557.989333pt;}
.fs10{font-size:26.566933pt;}
.fsf{font-size:29.866667pt;}
.fse{font-size:31.622528pt;}
.fs6{font-size:33.600000pt;}
.fsb{font-size:37.332800pt;}
.fs3{font-size:41.066667pt;}
.fs7{font-size:42.666667pt;}
.fs2{font-size:44.800000pt;}
.fsd{font-size:45.175040pt;}
.fs11{font-size:47.820800pt;}
.fs5{font-size:48.000000pt;}
.fsc{font-size:52.266133pt;}
.fsa{font-size:53.133867pt;}
.fs8{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:74.666667pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y166{bottom:252.282667pt;}
.y1c{bottom:252.284000pt;}
.y95{bottom:292.078667pt;}
.y12c{bottom:294.266667pt;}
.y272{bottom:294.282667pt;}
.y203{bottom:294.986667pt;}
.y6d{bottom:295.116000pt;}
.y46{bottom:297.318667pt;}
.y1b1{bottom:300.265333pt;}
.y45{bottom:300.616000pt;}
.y94{bottom:301.225333pt;}
.y1d3{bottom:305.793333pt;}
.y280{bottom:307.566667pt;}
.y186{bottom:308.058667pt;}
.y202{bottom:309.598667pt;}
.y44{bottom:309.761333pt;}
.y12b{bottom:310.266667pt;}
.y271{bottom:310.282667pt;}
.y6c{bottom:311.116000pt;}
.ybf{bottom:313.374667pt;}
.y252{bottom:314.386667pt;}
.y1b0{bottom:316.265333pt;}
.ye3{bottom:317.606667pt;}
.y214{bottom:318.850667pt;}
.y1d2{bottom:320.405333pt;}
.y146{bottom:322.397333pt;}
.y27f{bottom:323.566667pt;}
.y185{bottom:324.058667pt;}
.y201{bottom:324.210667pt;}
.y294{bottom:326.282667pt;}
.y6b{bottom:327.116000pt;}
.y12a{bottom:327.594667pt;}
.y1af{bottom:328.969333pt;}
.ybe{bottom:329.374667pt;}
.y251{bottom:330.386667pt;}
.y1ae{bottom:332.265333pt;}
.ye2{bottom:333.606667pt;}
.y213{bottom:334.850667pt;}
.y1d1{bottom:335.017333pt;}
.y165{bottom:337.310667pt;}
.y23a{bottom:337.680000pt;}
.y93{bottom:338.357333pt;}
.y145{bottom:338.397333pt;}
.y200{bottom:338.822667pt;}
.y270{bottom:339.566667pt;}
.y1ad{bottom:344.969333pt;}
.y1ac{bottom:348.265333pt;}
.ybd{bottom:348.861333pt;}
.y43{bottom:349.494667pt;}
.ye1{bottom:349.606667pt;}
.y1d0{bottom:349.628000pt;}
.y129{bottom:350.236000pt;}
.y212{bottom:350.850667pt;}
.y6a{bottom:351.086667pt;}
.y184{bottom:352.014667pt;}
.y164{bottom:353.310667pt;}
.y1ff{bottom:353.434667pt;}
.y239{bottom:353.680000pt;}
.y26f{bottom:355.566667pt;}
.ybc{bottom:358.246667pt;}
.y250{bottom:359.670667pt;}
.y1ab{bottom:360.489333pt;}
.y42{bottom:360.897333pt;}
.y1cf{bottom:364.240000pt;}
.y1aa{bottom:364.265333pt;}
.y41{bottom:365.494667pt;}
.ye0{bottom:365.606667pt;}
.y92{bottom:365.874667pt;}
.y128{bottom:366.236000pt;}
.y144{bottom:366.352000pt;}
.y211{bottom:366.850667pt;}
.y1fe{bottom:368.046667pt;}
.y27e{bottom:368.849333pt;}
.y238{bottom:369.680000pt;}
.y293{bottom:371.566667pt;}
.y91{bottom:375.020000pt;}
.y24f{bottom:375.670667pt;}
.y163{bottom:377.280000pt;}
.y1ce{bottom:378.852000pt;}
.y1a9{bottom:380.265333pt;}
.y40{bottom:381.494667pt;}
.ydf{bottom:381.606667pt;}
.ybb{bottom:382.040000pt;}
.y127{bottom:382.236000pt;}
.y1fd{bottom:382.657333pt;}
.y210{bottom:382.850667pt;}
.y1b{bottom:384.001333pt;}
.y26e{bottom:384.849333pt;}
.y237{bottom:385.680000pt;}
.y69{bottom:385.693333pt;}
.y292{bottom:387.566667pt;}
.y24e{bottom:391.670667pt;}
.y162{bottom:393.280000pt;}
.y1cd{bottom:393.464000pt;}
.y1a8{bottom:396.265333pt;}
.y1a{bottom:396.668000pt;}
.y1fc{bottom:397.269333pt;}
.y126{bottom:398.236000pt;}
.y20f{bottom:398.850667pt;}
.y143{bottom:399.641333pt;}
.yb9{bottom:400.057333pt;}
.y26d{bottom:400.849333pt;}
.y236{bottom:401.680000pt;}
.y68{bottom:401.693333pt;}
.y183{bottom:405.288000pt;}
.yde{bottom:405.576000pt;}
.y1cc{bottom:408.076000pt;}
.y161{bottom:409.280000pt;}
.y3e{bottom:410.761333pt;}
.y1fb{bottom:411.881333pt;}
.y90{bottom:412.152000pt;}
.y1a7{bottom:412.265333pt;}
.yfe{bottom:412.406667pt;}
.y125{bottom:414.236000pt;}
.y20e{bottom:414.850667pt;}
.y291{bottom:416.849333pt;}
.y235{bottom:417.680000pt;}
.y67{bottom:417.693333pt;}
.yba{bottom:418.224000pt;}
.y3d{bottom:419.908000pt;}
.y24d{bottom:420.954667pt;}
.y182{bottom:421.288000pt;}
.y19{bottom:422.618667pt;}
.y1cb{bottom:422.688000pt;}
.y1fa{bottom:426.493333pt;}
.y124{bottom:426.940000pt;}
.y8f{bottom:428.152000pt;}
.y1a6{bottom:428.265333pt;}
.yfd{bottom:428.406667pt;}
.y123{bottom:428.677333pt;}
.y3f{bottom:428.928000pt;}
.y26c{bottom:430.133333pt;}
.y122{bottom:430.236000pt;}
.yb8{bottom:430.405333pt;}
.y20d{bottom:430.850667pt;}
.y290{bottom:432.849333pt;}
.y234{bottom:433.680000pt;}
.y66{bottom:433.693333pt;}
.y142{bottom:436.914667pt;}
.y24c{bottom:436.954667pt;}
.y160{bottom:437.236000pt;}
.y18{bottom:437.285333pt;}
.y181{bottom:437.288000pt;}
.y1ca{bottom:437.300000pt;}
.ydd{bottom:440.182667pt;}
.y1f9{bottom:441.105333pt;}
.y8e{bottom:444.152000pt;}
.y1a5{bottom:444.265333pt;}
.yfc{bottom:444.406667pt;}
.y26b{bottom:446.133333pt;}
.y20c{bottom:446.850667pt;}
.y121{bottom:448.082667pt;}
.yb7{bottom:448.222667pt;}
.y28f{bottom:448.849333pt;}
.y233{bottom:449.680000pt;}
.y65{bottom:449.693333pt;}
.y1c9{bottom:451.912000pt;}
.y17{bottom:451.952000pt;}
.y24b{bottom:452.954667pt;}
.y180{bottom:453.288000pt;}
.y1f8{bottom:455.717333pt;}
.ydc{bottom:456.182667pt;}
.yb6{bottom:457.369333pt;}
.y3c{bottom:458.046667pt;}
.y8d{bottom:460.152000pt;}
.y1a4{bottom:460.265333pt;}
.yfb{bottom:460.406667pt;}
.y64{bottom:461.096000pt;}
.y27d{bottom:462.133333pt;}
.y20b{bottom:462.850667pt;}
.y120{bottom:464.082667pt;}
.y232{bottom:465.680000pt;}
.y63{bottom:465.693333pt;}
.y1c8{bottom:466.524000pt;}
.y16{bottom:466.618667pt;}
.y141{bottom:468.854667pt;}
.y1f7{bottom:470.329333pt;}
.y15f{bottom:470.524000pt;}
.ydb{bottom:472.182667pt;}
.y3b{bottom:474.046667pt;}
.y26a{bottom:475.417333pt;}
.y8c{bottom:476.152000pt;}
.y1a3{bottom:476.265333pt;}
.yfa{bottom:476.406667pt;}
.y17f{bottom:477.257333pt;}
.y28e{bottom:478.133333pt;}
.y20a{bottom:478.850667pt;}
.y11f{bottom:480.082667pt;}
.y1c7{bottom:481.136000pt;}
.yb5{bottom:481.162667pt;}
.y15{bottom:481.285333pt;}
.y231{bottom:481.680000pt;}
.y62{bottom:481.693333pt;}
.y24a{bottom:482.237333pt;}
.y1f6{bottom:484.941333pt;}
.yda{bottom:488.182667pt;}
.y3a{bottom:490.046667pt;}
.y297{bottom:491.416000pt;}
.y269{bottom:491.417333pt;}
.y8b{bottom:492.152000pt;}
.y1a2{bottom:492.265333pt;}
.yf9{bottom:492.406667pt;}
.y28d{bottom:494.133333pt;}
.y17e{bottom:494.586667pt;}
.y209{bottom:494.850667pt;}
.y1c6{bottom:495.746667pt;}
.y14{bottom:495.952000pt;}
.y11e{bottom:496.082667pt;}
.yb4{bottom:497.162667pt;}
.y230{bottom:497.680000pt;}
.y61{bottom:497.693333pt;}
.y249{bottom:498.237333pt;}
.y1f5{bottom:499.553333pt;}
.y140{bottom:500.794667pt;}
.y8a{bottom:503.554667pt;}
.yd9{bottom:504.182667pt;}
.y39{bottom:506.046667pt;}
.y296{bottom:507.416000pt;}
.y27c{bottom:507.417333pt;}
.y15e{bottom:507.797333pt;}
.y89{bottom:508.152000pt;}
.y1a1{bottom:508.265333pt;}
.yf8{bottom:508.406667pt;}
.y1c5{bottom:510.358667pt;}
.y17d{bottom:510.586667pt;}
.y13{bottom:510.618667pt;}
.y208{bottom:510.850667pt;}
.y11d{bottom:512.082667pt;}
.yb3{bottom:513.162667pt;}
.y22f{bottom:513.680000pt;}
.y60{bottom:513.693333pt;}
.y1f4{bottom:514.165333pt;}
.yd8{bottom:520.182667pt;}
.y268{bottom:520.700000pt;}
.y38{bottom:522.046667pt;}
.y295{bottom:523.416000pt;}
.y28c{bottom:523.417333pt;}
.y88{bottom:524.152000pt;}
.y1a0{bottom:524.265333pt;}
.yf7{bottom:524.406667pt;}
.y1c4{bottom:524.970667pt;}
.y12{bottom:525.285333pt;}
.y17c{bottom:526.586667pt;}
.y207{bottom:526.850667pt;}
.y248{bottom:527.521333pt;}
.y11c{bottom:528.082667pt;}
.y1f3{bottom:528.777333pt;}
.y22e{bottom:529.680000pt;}
.y5f{bottom:529.693333pt;}
.yb2{bottom:531.329333pt;}
.y13f{bottom:532.734667pt;}
.yd7{bottom:536.182667pt;}
.y267{bottom:536.700000pt;}
.y15b{bottom:537.920000pt;}
.y28b{bottom:539.417333pt;}
.y11{bottom:539.952000pt;}
.y87{bottom:540.152000pt;}
.y19f{bottom:540.265333pt;}
.yf6{bottom:540.406667pt;}
.yb1{bottom:540.474667pt;}
.y17b{bottom:541.257333pt;}
.y15c{bottom:542.468000pt;}
.y1f2{bottom:543.388000pt;}
.y247{bottom:543.521333pt;}
.y11b{bottom:544.082667pt;}
.y22d{bottom:545.680000pt;}
.y5e{bottom:545.693333pt;}
.y15a{bottom:547.065333pt;}
.y37{bottom:550.498667pt;}
.y206{bottom:550.820000pt;}
.yd6{bottom:552.182667pt;}
.y266{bottom:552.700000pt;}
.y1c3{bottom:554.194667pt;}
.y10{bottom:554.618667pt;}
.y28a{bottom:555.417333pt;}
.y15d{bottom:556.085333pt;}
.y86{bottom:556.152000pt;}
.y19e{bottom:556.265333pt;}
.yf5{bottom:556.406667pt;}
.y17a{bottom:557.257333pt;}
.y1f1{bottom:558.000000pt;}
.y35{bottom:559.645333pt;}
.yb0{bottom:559.934667pt;}
.y11a{bottom:560.082667pt;}
.y22c{bottom:561.680000pt;}
.y5d{bottom:561.693333pt;}
.y13e{bottom:564.676000pt;}
.yd5{bottom:568.182667pt;}
.y36{bottom:568.665333pt;}
.y27b{bottom:568.700000pt;}
.y1c2{bottom:568.806667pt;}
.yf{bottom:569.285333pt;}
.y205{bottom:569.486667pt;}
.y85{bottom:572.152000pt;}
.y19d{bottom:572.265333pt;}
.yf4{bottom:572.406667pt;}
.y1f0{bottom:572.612000pt;}
.y246{bottom:572.805333pt;}
.y179{bottom:574.586667pt;}
.yaf{bottom:576.624000pt;}
.y22b{bottom:577.680000pt;}
.yae{bottom:579.920000pt;}
.y13d{bottom:580.676000pt;}
.y265{bottom:581.984000pt;}
.y1c1{bottom:583.418667pt;}
.ye{bottom:583.952000pt;}
.y119{bottom:584.052000pt;}
.y159{bottom:584.506667pt;}
.y289{bottom:584.700000pt;}
.y1ef{bottom:587.224000pt;}
.y84{bottom:588.152000pt;}
.y19c{bottom:588.265333pt;}
.yf3{bottom:588.406667pt;}
.y245{bottom:588.805333pt;}
.y5c{bottom:588.960000pt;}
.y178{bottom:590.586667pt;}
.y22a{bottom:593.680000pt;}
.yd4{bottom:596.138667pt;}
.y13c{bottom:596.676000pt;}
.y34{bottom:597.784000pt;}
.y264{bottom:597.984000pt;}
.y1c0{bottom:598.030667pt;}
.yd{bottom:598.618667pt;}
.y83{bottom:599.846667pt;}
.y118{bottom:600.052000pt;}
.y288{bottom:600.700000pt;}
.y1ee{bottom:601.836000pt;}
.y19b{bottom:604.265333pt;}
.yf2{bottom:604.406667pt;}
.y244{bottom:604.805333pt;}
.y177{bottom:606.586667pt;}
.y5b{bottom:607.125333pt;}
.y81{bottom:608.993333pt;}
.y229{bottom:609.680000pt;}
.yad{bottom:611.920000pt;}
.y1bf{bottom:612.642667pt;}
.y33{bottom:613.784000pt;}
.y27a{bottom:613.984000pt;}
.y117{bottom:616.052000pt;}
.y158{bottom:616.446667pt;}
.y1ed{bottom:616.448000pt;}
.y157{bottom:616.468000pt;}
.yc{bottom:617.270667pt;}
.y82{bottom:618.013333pt;}
.y19a{bottom:620.265333pt;}
.yf1{bottom:620.406667pt;}
.y243{bottom:620.805333pt;}
.y176{bottom:622.586667pt;}
.y228{bottom:625.680000pt;}
.y1be{bottom:627.254667pt;}
.y263{bottom:627.266667pt;}
.yac{bottom:627.920000pt;}
.y80{bottom:628.601333pt;}
.y32{bottom:629.784000pt;}
.y287{bottom:629.984000pt;}
.y1ec{bottom:631.060000pt;}
.y13b{bottom:631.404000pt;}
.y116{bottom:632.052000pt;}
.yd3{bottom:633.412000pt;}
.y5a{bottom:636.245333pt;}
.y199{bottom:636.265333pt;}
.yf0{bottom:636.406667pt;}
.y175{bottom:638.586667pt;}
.yab{bottom:639.321333pt;}
.y227{bottom:641.680000pt;}
.y1bd{bottom:641.866667pt;}
.y262{bottom:643.266667pt;}
.yaa{bottom:643.920000pt;}
.y7f{bottom:644.601333pt;}
.y1eb{bottom:645.672000pt;}
.y31{bottom:645.784000pt;}
.y13a{bottom:645.964000pt;}
.y286{bottom:645.984000pt;}
.y156{bottom:648.386667pt;}
.y115{bottom:649.381333pt;}
.yd2{bottom:649.412000pt;}
.y242{bottom:650.088000pt;}
.y59{bottom:652.245333pt;}
.y198{bottom:652.265333pt;}
.yef{bottom:652.406667pt;}
.y1bc{bottom:656.477333pt;}
.y226{bottom:657.680000pt;}
.y261{bottom:659.266667pt;}
.ya9{bottom:659.920000pt;}
.y1ea{bottom:660.284000pt;}
.y7e{bottom:660.601333pt;}
.y30{bottom:661.784000pt;}
.y285{bottom:661.984000pt;}
.yb{bottom:663.817333pt;}
.y114{bottom:664.052000pt;}
.y155{bottom:664.386667pt;}
.y174{bottom:665.213333pt;}
.yd1{bottom:665.412000pt;}
.y241{bottom:666.088000pt;}
.y58{bottom:668.245333pt;}
.y197{bottom:668.265333pt;}
.yee{bottom:668.406667pt;}
.y1bb{bottom:671.089333pt;}
.y225{bottom:673.680000pt;}
.y1e9{bottom:674.896000pt;}
.y279{bottom:675.266667pt;}
.ya8{bottom:675.920000pt;}
.y7d{bottom:676.601333pt;}
.y113{bottom:680.052000pt;}
.y154{bottom:680.386667pt;}
.yd0{bottom:680.725333pt;}
.ya{bottom:681.817333pt;}
.y139{bottom:683.237333pt;}
.y57{bottom:684.245333pt;}
.y196{bottom:684.265333pt;}
.yed{bottom:684.406667pt;}
.y1ba{bottom:685.701333pt;}
.y260{bottom:688.550667pt;}
.y1e8{bottom:689.506667pt;}
.y224{bottom:689.680000pt;}
.y2f{bottom:689.740000pt;}
.ycf{bottom:689.872000pt;}
.y284{bottom:691.266667pt;}
.ya7{bottom:691.920000pt;}
.y7c{bottom:692.601333pt;}
.y240{bottom:695.372000pt;}
.y112{bottom:696.052000pt;}
.y138{bottom:699.237333pt;}
.y56{bottom:700.245333pt;}
.y195{bottom:700.265333pt;}
.yec{bottom:700.406667pt;}
.y173{bottom:702.486667pt;}
.y1e7{bottom:704.118667pt;}
.y25f{bottom:704.550667pt;}
.y223{bottom:705.680000pt;}
.y283{bottom:707.266667pt;}
.y153{bottom:708.509333pt;}
.y23f{bottom:711.372000pt;}
.y111{bottom:713.381333pt;}
.y1b9{bottom:714.925333pt;}
.y137{bottom:715.237333pt;}
.y55{bottom:716.245333pt;}
.yeb{bottom:716.406667pt;}
.y152{bottom:717.654667pt;}
.y151{bottom:717.676000pt;}
.y172{bottom:718.486667pt;}
.y1e6{bottom:718.730667pt;}
.y25e{bottom:720.550667pt;}
.y7b{bottom:720.556000pt;}
.y222{bottom:721.680000pt;}
.ya5{bottom:723.904000pt;}
.y194{bottom:724.236000pt;}
.y2e{bottom:727.013333pt;}
.y110{bottom:728.052000pt;}
.yce{bottom:731.058667pt;}
.y136{bottom:731.237333pt;}
.y9{bottom:731.697333pt;}
.yea{bottom:732.406667pt;}
.ya6{bottom:733.050667pt;}
.y1e5{bottom:733.342667pt;}
.y171{bottom:734.486667pt;}
.y278{bottom:736.550667pt;}
.y221{bottom:737.680000pt;}
.y1b8{bottom:738.968000pt;}
.y54{bottom:740.216000pt;}
.y23e{bottom:740.656000pt;}
.ya4{bottom:742.070667pt;}
.y193{bottom:742.902667pt;}
.y2d{bottom:743.013333pt;}
.y10f{bottom:744.052000pt;}
.y135{bottom:747.237333pt;}
.y1e4{bottom:747.954667pt;}
.ye9{bottom:748.406667pt;}
.y8{bottom:749.697333pt;}
.y25d{bottom:749.834667pt;}
.y220{bottom:750.384000pt;}
.y170{bottom:750.486667pt;}
.y282{bottom:752.550667pt;}
.y21f{bottom:753.680000pt;}
.y1b7{bottom:754.968000pt;}
.y7a{bottom:755.962667pt;}
.y150{bottom:756.498667pt;}
.y23d{bottom:756.656000pt;}
.y2c{bottom:759.013333pt;}
.y10e{bottom:761.381333pt;}
.y1e3{bottom:762.566667pt;}
.ycd{bottom:763.058667pt;}
.y134{bottom:763.237333pt;}
.y25c{bottom:765.834667pt;}
.y21e{bottom:766.384000pt;}
.y16f{bottom:766.486667pt;}
.y21d{bottom:769.680000pt;}
.y1b6{bottom:770.968000pt;}
.ya3{bottom:771.932000pt;}
.y79{bottom:771.962667pt;}
.y23c{bottom:772.656000pt;}
.y7{bottom:773.020000pt;}
.y53{bottom:774.822667pt;}
.y2b{bottom:775.013333pt;}
.y10d{bottom:776.052000pt;}
.ye8{bottom:776.361333pt;}
.y1e2{bottom:777.178667pt;}
.y192{bottom:777.509333pt;}
.ycc{bottom:779.058667pt;}
.y133{bottom:779.237333pt;}
.y25b{bottom:781.834667pt;}
.y21c{bottom:785.680000pt;}
.y6{bottom:785.697333pt;}
.y1b5{bottom:786.968000pt;}
.ya2{bottom:787.932000pt;}
.y78{bottom:787.962667pt;}
.y52{bottom:790.822667pt;}
.y2a{bottom:791.013333pt;}
.y1e1{bottom:791.790667pt;}
.y10c{bottom:792.052000pt;}
.y191{bottom:793.509333pt;}
.ycb{bottom:795.058667pt;}
.y132{bottom:795.237333pt;}
.ye7{bottom:797.694667pt;}
.y25a{bottom:797.834667pt;}
.y77{bottom:799.364000pt;}
.y23b{bottom:800.610667pt;}
.y21b{bottom:801.680000pt;}
.y1b4{bottom:802.968000pt;}
.y5{bottom:803.697333pt;}
.ya1{bottom:803.932000pt;}
.y76{bottom:803.961333pt;}
.y1e0{bottom:806.402667pt;}
.y190{bottom:806.638667pt;}
.y51{bottom:806.822667pt;}
.y29{bottom:807.013333pt;}
.y10b{bottom:809.381333pt;}
.y18e{bottom:809.509333pt;}
.yca{bottom:811.058667pt;}
.y131{bottom:811.237333pt;}
.y18f{bottom:812.264000pt;}
.y281{bottom:813.834667pt;}
.y14f{bottom:817.477333pt;}
.y21a{bottom:817.680000pt;}
.y1b3{bottom:818.968000pt;}
.ya0{bottom:819.932000pt;}
.y75{bottom:819.961333pt;}
.y1df{bottom:821.014667pt;}
.y50{bottom:822.822667pt;}
.y28{bottom:823.013333pt;}
.y10a{bottom:824.052000pt;}
.y4{bottom:827.020000pt;}
.yc9{bottom:827.058667pt;}
.y259{bottom:827.117333pt;}
.y16e{bottom:827.465333pt;}
.y219{bottom:833.680000pt;}
.ye6{bottom:834.968000pt;}
.y109{bottom:835.454667pt;}
.y1de{bottom:835.625333pt;}
.y9f{bottom:835.932000pt;}
.y74{bottom:835.961333pt;}
.y4f{bottom:838.822667pt;}
.y27{bottom:839.013333pt;}
.y108{bottom:840.052000pt;}
.yc8{bottom:843.058667pt;}
.y258{bottom:843.117333pt;}
.y130{bottom:843.177333pt;}
.y14e{bottom:843.415265pt;}
.y18d{bottom:844.406667pt;}
.y3{bottom:848.996000pt;}
.y218{bottom:849.680000pt;}
.y1dd{bottom:850.237333pt;}
.ye5{bottom:850.968000pt;}
.y16d{bottom:851.597333pt;}
.y73{bottom:851.961333pt;}
.y107{bottom:853.112000pt;}
.y4e{bottom:854.822667pt;}
.y26{bottom:855.013333pt;}
.y106{bottom:857.709333pt;}
.y277{bottom:859.117333pt;}
.y18c{bottom:860.406667pt;}
.y1b2{bottom:863.497333pt;}
.y9e{bottom:864.053333pt;}
.y1dc{bottom:864.849333pt;}
.y217{bottom:865.680000pt;}
.ye4{bottom:866.968000pt;}
.yc7{bottom:867.028000pt;}
.y14d{bottom:870.237945pt;}
.y4d{bottom:870.822667pt;}
.y25{bottom:871.013333pt;}
.y257{bottom:872.401333pt;}
.y105{bottom:873.709333pt;}
.y12f{bottom:875.117333pt;}
.y18b{bottom:876.406667pt;}
.y16c{bottom:877.461333pt;}
.y1db{bottom:879.461333pt;}
.y216{bottom:881.680000pt;}
.y9d{bottom:882.220000pt;}
.y72{bottom:882.968000pt;}
.y14c{bottom:883.649285pt;}
.yc6{bottom:884.356000pt;}
.y24{bottom:887.013333pt;}
.y256{bottom:888.401333pt;}
.y104{bottom:891.038667pt;}
.y18a{bottom:892.406667pt;}
.y1da{bottom:894.073333pt;}
.y2{bottom:894.896000pt;}
.y215{bottom:897.680000pt;}
.y4c{bottom:898.088000pt;}
.y71{bottom:898.968000pt;}
.yc5{bottom:900.356000pt;}
.y16b{bottom:902.794667pt;}
.y23{bottom:903.013333pt;}
.y276{bottom:904.401333pt;}
.y12e{bottom:907.058667pt;}
.y4b{bottom:907.234667pt;}
.y189{bottom:908.406667pt;}
.y1d9{bottom:908.685333pt;}
.y14b{bottom:910.471965pt;}
.y70{bottom:911.245333pt;}
.y9c{bottom:912.933333pt;}
.y103{bottom:913.680000pt;}
.y6f{bottom:914.968000pt;}
.yc4{bottom:916.356000pt;}
.y255{bottom:917.685333pt;}
.y22{bottom:919.013333pt;}
.y275{bottom:920.401333pt;}
.y204{bottom:923.297333pt;}
.y14a{bottom:923.883305pt;}
.y1{bottom:924.896000pt;}
.y16a{bottom:928.128000pt;}
.y9b{bottom:928.933333pt;}
.y102{bottom:929.680000pt;}
.y6e{bottom:930.968000pt;}
.y254{bottom:933.685333pt;}
.y21{bottom:935.013333pt;}
.y188{bottom:936.361333pt;}
.y298{bottom:936.401333pt;}
.y1d8{bottom:937.909333pt;}
.yc3{bottom:938.998667pt;}
.y9a{bottom:944.933333pt;}
.y101{bottom:945.680000pt;}
.y4a{bottom:946.968000pt;}
.y253{bottom:949.685333pt;}
.y149{bottom:950.705985pt;}
.y20{bottom:951.013333pt;}
.y1d7{bottom:952.521333pt;}
.y169{bottom:953.461333pt;}
.yc2{bottom:954.998667pt;}
.y187{bottom:957.694667pt;}
.y99{bottom:960.933333pt;}
.y100{bottom:961.680000pt;}
.y49{bottom:962.968000pt;}
.y274{bottom:965.685333pt;}
.y1f{bottom:967.013333pt;}
.y1d6{bottom:967.133333pt;}
.yc1{bottom:970.998667pt;}
.y98{bottom:977.324000pt;}
.y148{bottom:977.528665pt;}
.y168{bottom:978.794667pt;}
.y48{bottom:978.968000pt;}
.y97{bottom:980.621333pt;}
.y273{bottom:981.685333pt;}
.y1d5{bottom:981.745333pt;}
.y1e{bottom:983.013333pt;}
.yc0{bottom:986.998667pt;}
.yff{bottom:989.634667pt;}
.y96{bottom:989.766667pt;}
.y47{bottom:994.968000pt;}
.y1d4{bottom:996.356000pt;}
.y167{bottom:1004.658667pt;}
.y147{bottom:1004.913210pt;}
.y1d{bottom:1010.968000pt;}
.y12d{bottom:1012.297333pt;}
.h3c{height:18.012381pt;}
.h32{height:27.999600pt;}
.h35{height:28.036933pt;}
.h4{height:30.841067pt;}
.h8{height:32.042667pt;}
.h3b{height:33.283277pt;}
.h6{height:33.648000pt;}
.h2e{height:33.926455pt;}
.h34{height:35.245867pt;}
.h2b{height:35.331906pt;}
.h7{height:36.048000pt;}
.h2f{height:37.317971pt;}
.h2d{height:39.850400pt;}
.h2c{height:39.941067pt;}
.hc{height:40.000000pt;}
.h9{height:40.053333pt;}
.h27{height:40.660953pt;}
.h19{height:41.333333pt;}
.h13{height:42.020953pt;}
.h24{height:42.026286pt;}
.h5{height:44.058667pt;}
.h21{height:45.967620pt;}
.hb{height:45.972953pt;}
.h18{height:48.064000pt;}
.h1d{height:48.639620pt;}
.h1b{height:48.996933pt;}
.h10{height:49.002267pt;}
.h37{height:50.330286pt;}
.h36{height:51.536000pt;}
.h29{height:52.207620pt;}
.h23{height:53.184000pt;}
.h2a{height:53.237333pt;}
.h22{height:53.423620pt;}
.h3a{height:53.936000pt;}
.h39{height:54.517333pt;}
.h1c{height:54.944000pt;}
.h28{height:55.706267pt;}
.ha{height:56.074667pt;}
.h3{height:56.871467pt;}
.h11{height:58.442667pt;}
.h1e{height:58.448000pt;}
.h3d{height:59.156953pt;}
.h38{height:61.076953pt;}
.h2{height:63.738667pt;}
.hf{height:76.080000pt;}
.h1f{height:76.581333pt;}
.h1a{height:76.634667pt;}
.he{height:76.640000pt;}
.h30{height:77.413333pt;}
.h26{height:77.594667pt;}
.h12{height:82.052953pt;}
.h33{height:85.220953pt;}
.h17{height:85.226286pt;}
.h31{height:102.922667pt;}
.hd{height:112.666667pt;}
.h25{height:113.920000pt;}
.h20{height:118.634286pt;}
.h16{height:118.639620pt;}
.h15{height:127.104000pt;}
.h14{height:131.823620pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x68{left:102.068000pt;}
.x65{left:106.588000pt;}
.x63{left:111.106667pt;}
.x61{left:115.625333pt;}
.x1c{left:133.428000pt;}
.x69{left:134.766667pt;}
.x4d{left:137.057333pt;}
.x66{left:139.285333pt;}
.x58{left:141.397333pt;}
.x64{left:143.804000pt;}
.x4b{left:146.760000pt;}
.x2{left:149.368000pt;}
.x7{left:151.645333pt;}
.x1d{left:153.353333pt;}
.x1{left:156.654667pt;}
.x6{left:158.542667pt;}
.x62{left:159.994667pt;}
.x9{left:165.036000pt;}
.xd{left:166.126667pt;}
.x6b{left:170.104000pt;}
.x4{left:172.849333pt;}
.x4e{left:174.564517pt;}
.x6a{left:178.213333pt;}
.x45{left:179.457333pt;}
.xe{left:186.052000pt;}
.x67{left:192.693333pt;}
.x5b{left:198.128000pt;}
.x37{left:201.880000pt;}
.x5c{left:203.996000pt;}
.x5d{left:211.401333pt;}
.x60{left:222.821333pt;}
.x3c{left:229.406667pt;}
.x1e{left:236.754667pt;}
.x5{left:239.553333pt;}
.x2f{left:245.509333pt;}
.x16{left:249.834667pt;}
.x41{left:265.416000pt;}
.x38{left:272.884000pt;}
.x3d{left:273.876000pt;}
.x33{left:275.506667pt;}
.x17{left:277.466667pt;}
.x1f{left:279.041333pt;}
.xa{left:283.562667pt;}
.x23{left:289.566667pt;}
.x5a{left:298.629333pt;}
.x51{left:302.233333pt;}
.x50{left:304.477333pt;}
.x42{left:313.909333pt;}
.x39{left:315.566667pt;}
.x3{left:319.424000pt;}
.x4f{left:322.241723pt;}
.x5e{left:324.306667pt;}
.x12{left:325.374667pt;}
.x8{left:329.364000pt;}
.xf{left:330.928000pt;}
.x40{left:332.502667pt;}
.x34{left:339.230667pt;}
.x4c{left:347.097333pt;}
.x3a{left:348.340000pt;}
.x52{left:349.785333pt;}
.xb{left:353.348000pt;}
.x30{left:354.546667pt;}
.x43{left:356.306667pt;}
.x2a{left:357.726667pt;}
.x2c{left:360.021333pt;}
.x13{left:362.609333pt;}
.x20{left:368.550667pt;}
.x22{left:370.706667pt;}
.x46{left:372.368000pt;}
.x59{left:373.836000pt;}
.x3f{left:375.088000pt;}
.xc{left:377.169333pt;}
.x47{left:380.292000pt;}
.x54{left:381.450667pt;}
.x27{left:382.837333pt;}
.x10{left:384.482667pt;}
.x29{left:386.429333pt;}
.x18{left:388.260000pt;}
.x2b{left:393.780000pt;}
.x14{left:395.040000pt;}
.x2d{left:397.256000pt;}
.x35{left:398.885333pt;}
.x57{left:406.534667pt;}
.x48{left:408.625333pt;}
.x1b{left:409.866667pt;}
.x53{left:415.437333pt;}
.x21{left:421.833333pt;}
.x3b{left:424.852000pt;}
.x28{left:426.084000pt;}
.x2e{left:443.017333pt;}
.x44{left:447.986667pt;}
.x11{left:457.270667pt;}
.x3e{left:465.616000pt;}
.x36{left:473.329333pt;}
.x15{left:483.546667pt;}
.x31{left:486.828000pt;}
.x32{left:490.806667pt;}
.x56{left:501.669333pt;}
.x19{left:514.341333pt;}
.x26{left:516.705333pt;}
.x1a{left:518.320000pt;}
.x24{left:547.052000pt;}
.x49{left:547.966667pt;}
.x5f{left:583.337333pt;}
.x55{left:605.669333pt;}
.x4a{left:619.301333pt;}
.x25{left:643.240000pt;}
}




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