
    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_2e50556522fb7d570a2a1d6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_806f75c80178b61bb42ac8fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.945000;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_36b165a9ee954f8f6de19318.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1a64f7920d113d417c96aa75.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908000;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_44fab61540cf3463892507da.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690000;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_38103f9b7d3647b93f2809f7.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0a2836f4d2ad14947fda67d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.945000;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_914f5b7a3c795d591e1c687e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.813000;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_0a2836f4d2ad14947fda67d7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.945000;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_464e93ece644c6337d95de03.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6e5db6cc79992057634c0614.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692383;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_456f890eb570ef5925317b74.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.911000;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_8a007b573a05cd62d4f52669.woff2')format("woff");}.fff{font-family:fff;line-height:0.911000;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_3440ebdc6d15d1f0a400e1cf.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.680664;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_3e5b9c1bd1657cefed92ec28.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.933594;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_106a28b3182d334bd3dba340.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.911000;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_1eba363fe86e43c5fa09925f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.911000;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_08b8f37cb05be6bcb1fa4929.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.911000;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_9705ec7a009dc2d6c8de1974.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.911000;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_71829a9feef3f1ead8ec496e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.911000;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_517fe6dd2275d5cd4ac65eec.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.911000;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_456f890eb570ef5925317b74.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.911000;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_8a007b573a05cd62d4f52669.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.911000;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_39477b12946a7fc2fd1d4252.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.911000;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_b32fb1d8a1974da99220ef53.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.911000;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.155666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155666,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.155667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155667,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.167448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167448,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.186149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186149,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-ms-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-webkit-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);}
.m6{transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-ms-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-webkit-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v7{vertical-align:-27.227590px;}
.ve{vertical-align:-22.975390px;}
.v11{vertical-align:-17.982000px;}
.v2{vertical-align:-16.125000px;}
.vd{vertical-align:-10.184400px;}
.vc{vertical-align:-7.365600px;}
.v5{vertical-align:-4.015200px;}
.vb{vertical-align:-1.676400px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.959800px;}
.v1{vertical-align:4.098000px;}
.v9{vertical-align:9.401400px;}
.v3{vertical-align:11.637000px;}
.v10{vertical-align:14.140200px;}
.v6{vertical-align:15.888600px;}
.v4{vertical-align:20.140200px;}
.vf{vertical-align:21.978000px;}
.v8{vertical-align:27.000000px;}
.ls33{letter-spacing:-4.560000px;}
.ls1c{letter-spacing:-0.423192px;}
.ls30{letter-spacing:-0.420000px;}
.ls7a{letter-spacing:-0.418118px;}
.ls37{letter-spacing:-0.414637px;}
.ls19{letter-spacing:-0.302280px;}
.ls2e{letter-spacing:-0.300000px;}
.ls74{letter-spacing:-0.298656px;}
.ls68{letter-spacing:-0.295488px;}
.ls17{letter-spacing:-0.181368px;}
.ls2c{letter-spacing:-0.180000px;}
.ls78{letter-spacing:-0.179194px;}
.ls90{letter-spacing:-0.121936px;}
.ls1d{letter-spacing:-0.120912px;}
.ls2d{letter-spacing:-0.120000px;}
.ls73{letter-spacing:-0.119462px;}
.ls35{letter-spacing:-0.118468px;}
.ls0{letter-spacing:0.000000px;}
.ls9a{letter-spacing:0.000600px;}
.lsb{letter-spacing:0.007200px;}
.ls9{letter-spacing:0.015000px;}
.ls97{letter-spacing:0.060000px;}
.ls92{letter-spacing:0.060968px;}
.ls64{letter-spacing:0.241121px;}
.ls1{letter-spacing:0.480000px;}
.ls98{letter-spacing:2.185294px;}
.ls3{letter-spacing:2.400000px;}
.ls2{letter-spacing:3.000000px;}
.lse{letter-spacing:3.829282px;}
.lsa{letter-spacing:8.707733px;}
.lsc{letter-spacing:11.898070px;}
.lsd{letter-spacing:12.453065px;}
.ls99{letter-spacing:12.849665px;}
.ls3e{letter-spacing:13.015428px;}
.ls6{letter-spacing:13.044758px;}
.ls7{letter-spacing:14.169158px;}
.ls8{letter-spacing:14.169758px;}
.ls5{letter-spacing:14.731958px;}
.ls41{letter-spacing:16.231958px;}
.ls45{letter-spacing:30.206845px;}
.ls16{letter-spacing:36.031776px;}
.ls18{letter-spacing:38.691840px;}
.ls77{letter-spacing:39.303130px;}
.ls15{letter-spacing:43.649232px;}
.ls91{letter-spacing:43.652945px;}
.ls75{letter-spacing:53.041306px;}
.ls1a{letter-spacing:53.684928px;}
.ls62{letter-spacing:55.035823px;}
.ls76{letter-spacing:57.700339px;}
.ls4d{letter-spacing:59.497901px;}
.ls3a{letter-spacing:60.181541px;}
.ls1b{letter-spacing:60.274632px;}
.ls84{letter-spacing:60.686899px;}
.ls32{letter-spacing:60.960000px;}
.ls28{letter-spacing:61.423296px;}
.ls5e{letter-spacing:62.450842px;}
.ls56{letter-spacing:62.617691px;}
.ls6d{letter-spacing:64.120896px;}
.ls47{letter-spacing:64.610728px;}
.ls58{letter-spacing:65.157909px;}
.ls6a{letter-spacing:68.080435px;}
.ls87{letter-spacing:69.120000px;}
.ls3d{letter-spacing:70.136770px;}
.ls4a{letter-spacing:70.285595px;}
.ls3f{letter-spacing:74.880000px;}
.ls24{letter-spacing:76.537296px;}
.ls46{letter-spacing:77.260952px;}
.ls53{letter-spacing:79.901069px;}
.ls96{letter-spacing:80.070000px;}
.ls3c{letter-spacing:80.483400px;}
.ls50{letter-spacing:81.180000px;}
.ls12{letter-spacing:83.183478px;}
.ls70{letter-spacing:84.049568px;}
.ls8d{letter-spacing:86.745999px;}
.ls51{letter-spacing:93.273881px;}
.ls20{letter-spacing:96.849775px;}
.ls54{letter-spacing:97.202213px;}
.ls59{letter-spacing:98.662433px;}
.ls81{letter-spacing:104.171213px;}
.ls72{letter-spacing:104.350406px;}
.ls85{letter-spacing:104.631354px;}
.ls26{letter-spacing:105.435264px;}
.ls66{letter-spacing:105.648624px;}
.ls29{letter-spacing:105.902136px;}
.ls14{letter-spacing:106.523472px;}
.ls8f{letter-spacing:107.181392px;}
.ls55{letter-spacing:107.441192px;}
.ls6f{letter-spacing:107.588288px;}
.ls82{letter-spacing:107.874547px;}
.ls27{letter-spacing:109.183536px;}
.ls7c{letter-spacing:109.500338px;}
.ls7e{letter-spacing:112.470073px;}
.ls2a{letter-spacing:113.067132px;}
.ls8b{letter-spacing:115.740000px;}
.ls21{letter-spacing:116.282642px;}
.ls43{letter-spacing:116.571230px;}
.ls5c{letter-spacing:117.209656px;}
.ls88{letter-spacing:120.180000px;}
.ls60{letter-spacing:121.464603px;}
.ls36{letter-spacing:121.666225px;}
.ls8c{letter-spacing:121.886730px;}
.ls48{letter-spacing:122.896343px;}
.ls79{letter-spacing:123.942240px;}
.ls2f{letter-spacing:124.500000px;}
.ls61{letter-spacing:127.914584px;}
.ls7d{letter-spacing:130.944586px;}
.ls8e{letter-spacing:131.360426px;}
.ls83{letter-spacing:131.946221px;}
.ls65{letter-spacing:133.416806px;}
.lsf{letter-spacing:142.477200px;}
.ls95{letter-spacing:142.477800px;}
.ls13{letter-spacing:144.047856px;}
.ls4{letter-spacing:146.704800px;}
.ls3b{letter-spacing:147.000000px;}
.ls57{letter-spacing:148.384752px;}
.ls8a{letter-spacing:151.236192px;}
.ls4f{letter-spacing:153.410677px;}
.ls6c{letter-spacing:155.420224px;}
.ls69{letter-spacing:177.765581px;}
.ls39{letter-spacing:183.036318px;}
.ls38{letter-spacing:190.638575px;}
.ls6b{letter-spacing:192.353454px;}
.ls31{letter-spacing:194.352382px;}
.ls22{letter-spacing:195.831574px;}
.ls67{letter-spacing:198.425117px;}
.ls89{letter-spacing:205.036039px;}
.ls4b{letter-spacing:206.252622px;}
.ls49{letter-spacing:206.808345px;}
.ls5a{letter-spacing:210.965036px;}
.ls52{letter-spacing:222.723120px;}
.ls10{letter-spacing:227.470396px;}
.ls42{letter-spacing:228.117839px;}
.ls93{letter-spacing:234.251562px;}
.ls25{letter-spacing:237.471168px;}
.ls44{letter-spacing:241.063630px;}
.ls1f{letter-spacing:242.875889px;}
.ls6e{letter-spacing:243.482112px;}
.ls1e{letter-spacing:244.972961px;}
.ls11{letter-spacing:253.838966px;}
.ls7b{letter-spacing:254.154048px;}
.ls71{letter-spacing:256.243500px;}
.ls4c{letter-spacing:262.504980px;}
.ls4e{letter-spacing:272.954128px;}
.ls63{letter-spacing:347.635913px;}
.ls5f{letter-spacing:357.702707px;}
.ls5d{letter-spacing:367.804789px;}
.ls86{letter-spacing:381.610922px;}
.ls40{letter-spacing:384.859050px;}
.ls34{letter-spacing:419.808409px;}
.ls5b{letter-spacing:595.368268px;}
.ls94{letter-spacing:873.656030px;}
.ls7f{letter-spacing:994.584211px;}
.ls23{letter-spacing:1252.043760px;}
.ls80{letter-spacing:1862.633976px;}
.ls2b{letter-spacing:2279.345878px;}
.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;}
}
.wsd5{word-spacing:-2279.345878px;}
.ws148{word-spacing:-1862.633976px;}
.wsd3{word-spacing:-1252.043760px;}
.ws147{word-spacing:-994.584211px;}
.ws152{word-spacing:-873.656030px;}
.wsff{word-spacing:-595.429990px;}
.ws14b{word-spacing:-381.610922px;}
.ws101{word-spacing:-372.772757px;}
.ws106{word-spacing:-362.705963px;}
.ws12b{word-spacing:-272.954128px;}
.wsaf{word-spacing:-264.919766px;}
.ws116{word-spacing:-262.786998px;}
.wsfd{word-spacing:-262.565506px;}
.ws143{word-spacing:-256.243500px;}
.wsf8{word-spacing:-255.841930px;}
.wsbe{word-spacing:-253.710761px;}
.wsc2{word-spacing:-252.585168px;}
.wsbf{word-spacing:-251.613689px;}
.ws141{word-spacing:-243.482112px;}
.wsf6{word-spacing:-242.896139px;}
.wsd0{word-spacing:-227.470396px;}
.ws12f{word-spacing:-222.723120px;}
.ws137{word-spacing:-210.965036px;}
.ws128{word-spacing:-206.808345px;}
.ws129{word-spacing:-206.252622px;}
.ws14d{word-spacing:-205.036039px;}
.ws13b{word-spacing:-198.425117px;}
.wsd2{word-spacing:-195.831574px;}
.wsd8{word-spacing:-194.352382px;}
.ws10b{word-spacing:-192.539981px;}
.ws13f{word-spacing:-192.353454px;}
.wse7{word-spacing:-190.638575px;}
.wse8{word-spacing:-183.036318px;}
.ws140{word-spacing:-155.420224px;}
.ws12c{word-spacing:-153.410677px;}
.ws14e{word-spacing:-151.236192px;}
.ws100{word-spacing:-148.390448px;}
.ws134{word-spacing:-148.384752px;}
.ws11c{word-spacing:-146.879021px;}
.wsb1{word-spacing:-144.126356px;}
.ws104{word-spacing:-142.984634px;}
.ws11f{word-spacing:-140.032226px;}
.ws103{word-spacing:-136.534653px;}
.ws118{word-spacing:-133.223684px;}
.wsf7{word-spacing:-131.349530px;}
.wsd7{word-spacing:-124.500000px;}
.wsc4{word-spacing:-124.297536px;}
.ws145{word-spacing:-123.942240px;}
.ws127{word-spacing:-122.896343px;}
.ws11b{word-spacing:-122.807347px;}
.ws120{word-spacing:-122.423342px;}
.ws11e{word-spacing:-121.948164px;}
.wse5{word-spacing:-121.666225px;}
.wsb2{word-spacing:-121.637472px;}
.wsc3{word-spacing:-120.549264px;}
.ws14c{word-spacing:-120.180000px;}
.ws10e{word-spacing:-119.283206px;}
.ws11a{word-spacing:-119.104013px;}
.ws138{word-spacing:-117.209656px;}
.wsd1{word-spacing:-116.282642px;}
.ws14f{word-spacing:-115.740000px;}
.wsc5{word-spacing:-114.639936px;}
.ws117{word-spacing:-112.746327px;}
.ws132{word-spacing:-107.441192px;}
.ws14a{word-spacing:-104.631354px;}
.ws136{word-spacing:-98.662433px;}
.ws12e{word-spacing:-93.273881px;}
.wsc0{word-spacing:-91.642046px;}
.ws150{word-spacing:-86.745999px;}
.ws142{word-spacing:-84.049568px;}
.ws12d{word-spacing:-81.180000px;}
.ws131{word-spacing:-79.901069px;}
.wsfa{word-spacing:-77.320066px;}
.ws123{word-spacing:-76.697472px;}
.wscb{word-spacing:-75.960000px;}
.wsbb{word-spacing:-75.388632px;}
.wse1{word-spacing:-74.989991px;}
.ws113{word-spacing:-72.633139px;}
.ws156{word-spacing:-69.120000px;}
.wsb9{word-spacing:-68.798928px;}
.ws13e{word-spacing:-68.080435px;}
.ws111{word-spacing:-67.974106px;}
.ws135{word-spacing:-65.157909px;}
.ws133{word-spacing:-62.617691px;}
.ws139{word-spacing:-62.450842px;}
.wsd4{word-spacing:-61.423296px;}
.ws149{word-spacing:-60.686899px;}
.ws5b{word-spacing:-60.000000px;}
.ws12a{word-spacing:-59.497901px;}
.ws122{word-spacing:-58.894895px;}
.wsc1{word-spacing:-58.823688px;}
.wsb3{word-spacing:-58.763232px;}
.wsfe{word-spacing:-55.859496px;}
.ws114{word-spacing:-54.235930px;}
.wsb6{word-spacing:-53.805840px;}
.wsb4{word-spacing:-51.145776px;}
.wsc6{word-spacing:-43.374439px;}
.ws119{word-spacing:-40.091420px;}
.ws179{word-spacing:-18.000000px;}
.wsfb{word-spacing:-16.137904px;}
.ws121{word-spacing:-15.120014px;}
.ws102{word-spacing:-15.070050px;}
.ws154{word-spacing:-15.060000px;}
.ws47{word-spacing:-15.000000px;}
.wsbd{word-spacing:-14.993088px;}
.wsb5{word-spacing:-14.932632px;}
.ws124{word-spacing:-14.880000px;}
.ws1{word-spacing:-14.850000px;}
.wsc8{word-spacing:-14.820000px;}
.wsb8{word-spacing:-14.811720px;}
.wsc9{word-spacing:-14.700000px;}
.ws110{word-spacing:-14.634144px;}
.ws10a{word-spacing:-14.478912px;}
.ws2{word-spacing:-14.400000px;}
.ws10{word-spacing:-12.000000px;}
.ws153{word-spacing:-9.619500px;}
.wsc7{word-spacing:-8.737800px;}
.wsca{word-spacing:-8.671800px;}
.ws155{word-spacing:-7.870500px;}
.ws10c{word-spacing:-7.800883px;}
.wscc{word-spacing:-7.440000px;}
.ws190{word-spacing:-7.380000px;}
.wsb0{word-spacing:-5.826677px;}
.ws17f{word-spacing:-5.220000px;}
.wsfc{word-spacing:-5.201962px;}
.wsf9{word-spacing:-5.024622px;}
.ws186{word-spacing:-4.140000px;}
.ws181{word-spacing:-3.780000px;}
.ws19d{word-spacing:-3.660000px;}
.ws18f{word-spacing:-3.600000px;}
.ws188{word-spacing:-3.480000px;}
.wsaa{word-spacing:-3.360000px;}
.ws18e{word-spacing:-3.180000px;}
.ws196{word-spacing:-3.120000px;}
.ws43{word-spacing:-3.000000px;}
.ws1e{word-spacing:-2.940000px;}
.wscd{word-spacing:-2.880000px;}
.wsa0{word-spacing:-2.820000px;}
.ws126{word-spacing:-2.760000px;}
.ws25{word-spacing:-2.700000px;}
.wsdf{word-spacing:-2.640000px;}
.ws8a{word-spacing:-2.580000px;}
.ws92{word-spacing:-2.520000px;}
.ws48{word-spacing:-2.460000px;}
.ws82{word-spacing:-2.400000px;}
.ws81{word-spacing:-2.340000px;}
.ws62{word-spacing:-2.280000px;}
.ws15d{word-spacing:-2.220000px;}
.ws69{word-spacing:-2.160000px;}
.ws18{word-spacing:-2.100000px;}
.ws60{word-spacing:-2.040000px;}
.ws4{word-spacing:-1.980000px;}
.ws56{word-spacing:-1.920000px;}
.ws15f{word-spacing:-1.887000px;}
.ws99{word-spacing:-1.860000px;}
.ws17{word-spacing:-1.800000px;}
.ws41{word-spacing:-1.740000px;}
.ws50{word-spacing:-1.680000px;}
.ws55{word-spacing:-1.620000px;}
.ws3d{word-spacing:-1.560000px;}
.ws42{word-spacing:-1.500000px;}
.wsda{word-spacing:-1.440000px;}
.ws6c{word-spacing:-1.380000px;}
.ws19{word-spacing:-1.320000px;}
.ws58{word-spacing:-1.260000px;}
.ws8c{word-spacing:-1.200000px;}
.wsdb{word-spacing:-1.140000px;}
.ws61{word-spacing:-1.080000px;}
.ws2a{word-spacing:-1.020000px;}
.wsef{word-spacing:-0.960000px;}
.ws23{word-spacing:-0.900000px;}
.ws3c{word-spacing:-0.840000px;}
.ws34{word-spacing:-0.780000px;}
.ws37{word-spacing:-0.720000px;}
.wsa9{word-spacing:-0.660000px;}
.ws21{word-spacing:-0.600000px;}
.ws95{word-spacing:-0.540000px;}
.ws14{word-spacing:-0.480000px;}
.ws175{word-spacing:-0.420000px;}
.ws98{word-spacing:-0.360000px;}
.wsac{word-spacing:-0.300000px;}
.ws13a{word-spacing:-0.241121px;}
.ws80{word-spacing:-0.240000px;}
.ws2b{word-spacing:-0.180000px;}
.ws29{word-spacing:-0.120000px;}
.wse3{word-spacing:-0.096000px;}
.ws151{word-spacing:-0.060968px;}
.ws6a{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws16{word-spacing:0.060000px;}
.wse4{word-spacing:0.118468px;}
.ws144{word-spacing:0.119462px;}
.ws8f{word-spacing:0.120000px;}
.ws6{word-spacing:0.180000px;}
.ws178{word-spacing:0.240000px;}
.ws40{word-spacing:0.300000px;}
.ws13d{word-spacing:0.360000px;}
.wse6{word-spacing:0.414637px;}
.ws146{word-spacing:0.418118px;}
.ws4b{word-spacing:0.420000px;}
.ws76{word-spacing:0.540000px;}
.wsa6{word-spacing:0.600000px;}
.ws15e{word-spacing:0.612000px;}
.ws173{word-spacing:0.660000px;}
.ws90{word-spacing:0.720000px;}
.ws59{word-spacing:0.780000px;}
.ws57{word-spacing:0.840000px;}
.ws64{word-spacing:0.900000px;}
.ws4e{word-spacing:0.960000px;}
.ws96{word-spacing:1.020000px;}
.ws51{word-spacing:1.080000px;}
.wsa5{word-spacing:1.140000px;}
.ws24{word-spacing:1.200000px;}
.wsa4{word-spacing:1.260000px;}
.ws28{word-spacing:1.320000px;}
.ws3e{word-spacing:1.380000px;}
.ws177{word-spacing:1.440000px;}
.wsf5{word-spacing:1.500000px;}
.wsad{word-spacing:1.560000px;}
.ws27{word-spacing:1.620000px;}
.wsdc{word-spacing:1.680000px;}
.ws75{word-spacing:1.740000px;}
.ws15{word-spacing:1.800000px;}
.ws4c{word-spacing:1.860000px;}
.ws8e{word-spacing:1.920000px;}
.ws35{word-spacing:1.980000px;}
.ws74{word-spacing:2.040000px;}
.ws3{word-spacing:2.100000px;}
.ws94{word-spacing:2.160000px;}
.ws73{word-spacing:2.220000px;}
.ws38{word-spacing:2.280000px;}
.ws22{word-spacing:2.340000px;}
.ws68{word-spacing:2.400000px;}
.ws5f{word-spacing:2.460000px;}
.ws176{word-spacing:2.520000px;}
.ws9d{word-spacing:2.580000px;}
.ws125{word-spacing:2.640000px;}
.ws7f{word-spacing:2.700000px;}
.ws33{word-spacing:2.760000px;}
.ws5e{word-spacing:2.820000px;}
.ws6b{word-spacing:2.880000px;}
.ws2e{word-spacing:2.940000px;}
.ws54{word-spacing:3.000000px;}
.wsb{word-spacing:3.060000px;}
.ws130{word-spacing:3.120000px;}
.ws11{word-spacing:3.180000px;}
.ws3a{word-spacing:3.240000px;}
.ws79{word-spacing:3.300000px;}
.ws1b{word-spacing:3.360000px;}
.ws39{word-spacing:3.420000px;}
.ws12{word-spacing:3.480000px;}
.ws49{word-spacing:3.540000px;}
.ws32{word-spacing:3.600000px;}
.ws53{word-spacing:3.660000px;}
.wsa{word-spacing:3.720000px;}
.ws3f{word-spacing:3.780000px;}
.ws13{word-spacing:3.840000px;}
.ws86{word-spacing:3.900000px;}
.ws84{word-spacing:3.960000px;}
.ws71{word-spacing:4.020000px;}
.ws8b{word-spacing:4.080000px;}
.wsae{word-spacing:4.140000px;}
.ws7d{word-spacing:4.200000px;}
.wsdd{word-spacing:4.320000px;}
.wsec{word-spacing:4.380000px;}
.ws6d{word-spacing:4.440000px;}
.ws26{word-spacing:4.500000px;}
.wsee{word-spacing:4.560000px;}
.ws5{word-spacing:4.620000px;}
.ws2d{word-spacing:4.680000px;}
.ws91{word-spacing:4.740000px;}
.wsce{word-spacing:4.800000px;}
.ws9{word-spacing:4.860000px;}
.ws72{word-spacing:4.920000px;}
.ws161{word-spacing:4.980000px;}
.ws93{word-spacing:5.040000px;}
.ws83{word-spacing:5.100000px;}
.ws30{word-spacing:5.160000px;}
.ws8{word-spacing:5.220000px;}
.wsa8{word-spacing:5.280000px;}
.ws15a{word-spacing:5.340000px;}
.ws63{word-spacing:5.400000px;}
.wsa1{word-spacing:5.460000px;}
.ws6e{word-spacing:5.520000px;}
.ws1a{word-spacing:5.580000px;}
.ws87{word-spacing:5.640000px;}
.ws107{word-spacing:5.666339px;}
.ws9b{word-spacing:5.700000px;}
.ws2f{word-spacing:5.760000px;}
.ws15b{word-spacing:5.820000px;}
.ws44{word-spacing:5.880000px;}
.ws3b{word-spacing:5.940000px;}
.ws15c{word-spacing:6.000000px;}
.ws1f{word-spacing:6.060000px;}
.wsd{word-spacing:6.120000px;}
.ws8d{word-spacing:6.180000px;}
.ws1c{word-spacing:6.240000px;}
.ws9c{word-spacing:6.300000px;}
.ws7e{word-spacing:6.360000px;}
.wsf4{word-spacing:6.420000px;}
.ws20{word-spacing:6.480000px;}
.wsf3{word-spacing:6.540000px;}
.ws5a{word-spacing:6.600000px;}
.ws31{word-spacing:6.660000px;}
.ws36{word-spacing:6.720000px;}
.ws4d{word-spacing:6.780000px;}
.ws89{word-spacing:6.840000px;}
.ws4a{word-spacing:6.900000px;}
.ws5d{word-spacing:6.960000px;}
.ws7a{word-spacing:7.020000px;}
.ws85{word-spacing:7.080000px;}
.ws9e{word-spacing:7.140000px;}
.wsd9{word-spacing:7.200000px;}
.ws2c{word-spacing:7.260000px;}
.ws1d{word-spacing:7.320000px;}
.ws5c{word-spacing:7.380000px;}
.wsc{word-spacing:7.440000px;}
.wsf1{word-spacing:7.560000px;}
.wsa7{word-spacing:7.680000px;}
.ws162{word-spacing:7.740000px;}
.ws46{word-spacing:7.800000px;}
.wsf0{word-spacing:7.860000px;}
.ws66{word-spacing:7.920000px;}
.ws78{word-spacing:7.980000px;}
.wsd6{word-spacing:8.100000px;}
.ws97{word-spacing:8.280000px;}
.wsa2{word-spacing:8.340000px;}
.wsed{word-spacing:8.400000px;}
.ws7{word-spacing:8.460000px;}
.ws7c{word-spacing:8.520000px;}
.ws45{word-spacing:8.580000px;}
.ws88{word-spacing:8.640000px;}
.ws160{word-spacing:8.700000px;}
.ws52{word-spacing:8.760000px;}
.wscf{word-spacing:8.820000px;}
.ws4f{word-spacing:8.880000px;}
.ws172{word-spacing:8.940000px;}
.ws9f{word-spacing:9.000000px;}
.ws70{word-spacing:9.060000px;}
.ws158{word-spacing:9.120000px;}
.ws171{word-spacing:9.180000px;}
.ws6f{word-spacing:9.240000px;}
.ws77{word-spacing:9.360000px;}
.wsab{word-spacing:9.480000px;}
.ws9a{word-spacing:9.540000px;}
.ws159{word-spacing:9.600000px;}
.ws174{word-spacing:9.660000px;}
.ws193{word-spacing:9.720000px;}
.ws185{word-spacing:10.200000px;}
.ws183{word-spacing:10.380000px;}
.ws65{word-spacing:10.680000px;}
.wsa3{word-spacing:11.100000px;}
.ws184{word-spacing:11.220000px;}
.ws163{word-spacing:11.460000px;}
.ws67{word-spacing:11.940000px;}
.ws18c{word-spacing:12.120000px;}
.ws17c{word-spacing:12.240000px;}
.wse{word-spacing:12.699000px;}
.ws17e{word-spacing:12.720000px;}
.ws194{word-spacing:13.080000px;}
.ws13c{word-spacing:13.560000px;}
.ws157{word-spacing:13.620000px;}
.ws180{word-spacing:13.860000px;}
.ws198{word-spacing:14.520000px;}
.ws189{word-spacing:14.640000px;}
.ws7b{word-spacing:14.880000px;}
.wsf2{word-spacing:15.120000px;}
.ws18d{word-spacing:15.600000px;}
.ws191{word-spacing:15.960000px;}
.ws1a0{word-spacing:16.920000px;}
.ws19c{word-spacing:17.160000px;}
.ws192{word-spacing:17.520000px;}
.ws17d{word-spacing:18.000000px;}
.ws19b{word-spacing:18.900000px;}
.ws197{word-spacing:20.100000px;}
.ws199{word-spacing:21.420000px;}
.ws18b{word-spacing:21.900000px;}
.ws195{word-spacing:21.960000px;}
.wsb7{word-spacing:23.396472px;}
.ws19e{word-spacing:24.780000px;}
.ws10f{word-spacing:25.445491px;}
.ws17b{word-spacing:25.680000px;}
.ws115{word-spacing:25.923341px;}
.ws10d{word-spacing:28.561120px;}
.ws18a{word-spacing:30.720000px;}
.ws11d{word-spacing:32.700000px;}
.ws19f{word-spacing:36.480000px;}
.ws19a{word-spacing:37.980000px;}
.ws182{word-spacing:38.400000px;}
.ws17a{word-spacing:42.960000px;}
.ws112{word-spacing:43.484314px;}
.wsba{word-spacing:44.011968px;}
.ws187{word-spacing:46.500000px;}
.wseb{word-spacing:63.000000px;}
.ws108{word-spacing:66.627446px;}
.wsbc{word-spacing:111.239040px;}
.wsea{word-spacing:123.000000px;}
.wse2{word-spacing:144.815400px;}
.ws16d{word-spacing:157.197000px;}
.ws16b{word-spacing:157.197600px;}
.ws109{word-spacing:185.391072px;}
.ws16c{word-spacing:205.197600px;}
.ws16f{word-spacing:221.181000px;}
.ws16e{word-spacing:221.181600px;}
.ws105{word-spacing:231.054007px;}
.ws16a{word-spacing:237.165600px;}
.ws170{word-spacing:249.165000px;}
.ws165{word-spacing:259.244400px;}
.ws167{word-spacing:283.244400px;}
.wsde{word-spacing:288.189000px;}
.ws166{word-spacing:307.244400px;}
.ws168{word-spacing:323.228400px;}
.wse0{word-spacing:329.244600px;}
.ws164{word-spacing:339.212400px;}
.ws169{word-spacing:351.212400px;}
.wse9{word-spacing:1057.806000px;}
.wsf{word-spacing:1084.806000px;}
._65{margin-left:-949.490291px;}
._63{margin-left:-588.093631px;}
._61{margin-left:-552.039580px;}
._62{margin-left:-342.632657px;}
._16{margin-left:-224.703682px;}
._5c{margin-left:-171.029122px;}
._5e{margin-left:-163.684451px;}
._66{margin-left:-160.043931px;}
._69{margin-left:-158.500962px;}
._4a{margin-left:-147.000000px;}
._17{margin-left:-135.960000px;}
._43{margin-left:-134.223791px;}
._10{margin-left:-125.090345px;}
._6b{margin-left:-107.430296px;}
._11{margin-left:-103.909918px;}
._5d{margin-left:-82.699367px;}
._4b{margin-left:-72.000000px;}
._5f{margin-left:-63.310237px;}
._f{margin-left:-60.093264px;}
._7{margin-left:-58.417978px;}
._e{margin-left:-53.684928px;}
._68{margin-left:-51.414912px;}
._64{margin-left:-45.752672px;}
._b{margin-left:-43.830600px;}
._8{margin-left:-42.233104px;}
._d{margin-left:-38.752296px;}
._a{margin-left:-36.878160px;}
._60{margin-left:-20.337024px;}
._6a{margin-left:-19.165270px;}
._13{margin-left:-16.743511px;}
._8d{margin-left:-7.236000px;}
._1{margin-left:-6.192000px;}
._5{margin-left:-4.992000px;}
._3{margin-left:-3.504000px;}
._0{margin-left:-2.400000px;}
._2{margin-left:-1.296000px;}
._c{width:1.330032px;}
._26{width:2.640000px;}
._12{width:5.427094px;}
._15{width:7.304400px;}
._6d{width:9.528600px;}
._6c{width:11.193000px;}
._14{width:12.259800px;}
._9{width:13.980000px;}
._67{width:26.593800px;}
._6e{width:38.250000px;}
._6f{width:39.576000px;}
._4c{width:53.700000px;}
._59{width:73.500000px;}
._4e{width:75.000000px;}
._48{width:108.913200px;}
._45{width:110.250000px;}
._47{width:111.750000px;}
._6{width:116.040000px;}
._44{width:123.000000px;}
._5a{width:127.746000px;}
._5b{width:131.040000px;}
._46{width:136.650000px;}
._33{width:146.787000px;}
._3b{width:153.253800px;}
._4{width:159.243000px;}
._54{width:170.986200px;}
._3a{width:180.225000px;}
._37{width:189.448200px;}
._83{width:194.173800px;}
._3c{width:196.877400px;}
._40{width:198.236400px;}
._3e{width:209.922600px;}
._19{width:213.045000px;}
._81{width:216.220800px;}
._86{width:218.174400px;}
._72{width:220.171200px;}
._76{width:227.971200px;}
._36{width:231.304200px;}
._51{width:232.810200px;}
._71{width:238.531200px;}
._35{width:246.016200px;}
._7e{width:249.165600px;}
._34{width:256.672200px;}
._1a{width:258.909000px;}
._38{width:271.339800px;}
._1b{width:275.805000px;}
._79{width:283.245000px;}
._78{width:286.867200px;}
._32{width:289.648200px;}
._42{width:291.203400px;}
._39{width:293.908800px;}
._77{width:295.245000px;}
._21{width:300.189000px;}
._41{width:309.904200px;}
._3d{width:311.908800px;}
._30{width:313.528200px;}
._50{width:317.002200px;}
._82{width:318.363000px;}
._1c{width:323.113200px;}
._57{width:327.514200px;}
._75{width:329.491200px;}
._7d{width:331.674600px;}
._2e{width:332.693400px;}
._73{width:335.228400px;}
._70{width:341.395200px;}
._74{width:343.221000px;}
._3f{width:350.540400px;}
._55{width:351.706200px;}
._80{width:366.363000px;}
._4d{width:367.450200px;}
._4f{width:370.138200px;}
._1e{width:384.189000px;}
._58{width:386.410200px;}
._84{width:390.378600px;}
._1f{width:392.692800px;}
._52{width:396.778200px;}
._7f{width:398.331000px;}
._85{width:415.131000px;}
._56{width:429.034200px;}
._7c{width:430.946400px;}
._7a{width:432.138600px;}
._49{width:436.968168px;}
._31{width:451.707000px;}
._89{width:454.299600px;}
._53{width:464.938200px;}
._18{width:468.541800px;}
._88{width:543.643200px;}
._7b{width:582.162600px;}
._87{width:802.072200px;}
._28{width:817.852200px;}
._24{width:879.676200px;}
._2f{width:892.828200px;}
._8a{width:930.183600px;}
._8c{width:936.808200px;}
._2d{width:946.252200px;}
._23{width:963.868800px;}
._2b{width:974.380200px;}
._8b{width:991.480200px;}
._29{width:998.572200px;}
._20{width:1014.316800px;}
._22{width:1017.004200px;}
._2c{width:1033.276800px;}
._25{width:1043.644200px;}
._2a{width:1075.900800px;}
._1d{width:1083.834168px;}
._27{width:1111.804800px;}
.fc2{color:rgb(123,121,121);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs30{font-size:31.482000px;}
.fs1a{font-size:33.448800px;}
.fs1d{font-size:34.033200px;}
.fs26{font-size:34.165800px;}
.fs15{font-size:34.174800px;}
.fs13{font-size:34.244400px;}
.fs29{font-size:34.531800px;}
.fs10{font-size:34.687200px;}
.fs20{font-size:34.849800px;}
.fse{font-size:34.951200px;}
.fs2d{font-size:35.247000px;}
.fs2f{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:44.323200px;}
.fs11{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs24{font-size:55.384800px;}
.fs23{font-size:56.709306px;}
.fs19{font-size:57.857400px;}
.fs1c{font-size:58.867800px;}
.fs25{font-size:59.097600px;}
.fs14{font-size:59.113200px;}
.fs12{font-size:59.233800px;}
.fs1b{font-size:59.240956px;}
.fs8{font-size:59.400000px;}
.fs28{font-size:59.731200px;}
.fs3{font-size:60.000000px;}
.fs1e{font-size:60.275586px;}
.fs21{font-size:60.280200px;}
.fsd{font-size:60.456000px;}
.fs27{font-size:60.510848px;}
.fs17{font-size:60.526857px;}
.fs2c{font-size:60.967800px;}
.fs2b{font-size:61.434844px;}
.fs1f{font-size:61.721778px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:76.666800px;}
.fsc{font-size:78.500194px;}
.fs16{font-size:79.389000px;}
.fs18{font-size:80.580000px;}
.fs22{font-size:80.956800px;}
.fs2e{font-size:91.024800px;}
.fs2a{font-size:95.928000px;}
.fsf{font-size:97.092600px;}
.fs2{font-size:102.000000px;}
.y95{bottom:-1.816800px;}
.y0{bottom:0.000000px;}
.yf0{bottom:1.556550px;}
.y166{bottom:2.405700px;}
.y94{bottom:3.334350px;}
.y151{bottom:3.467700px;}
.yaa{bottom:3.469200px;}
.y142{bottom:3.754950px;}
.y12f{bottom:3.827700px;}
.y127{bottom:4.968750px;}
.y124{bottom:5.273100px;}
.yef{bottom:5.490150px;}
.y98{bottom:6.301200px;}
.y153{bottom:7.498950px;}
.y9e{bottom:7.499550px;}
.ya1{bottom:7.500450px;}
.y143{bottom:7.725450px;}
.y137{bottom:7.746450px;}
.y130{bottom:7.782900px;}
.y129{bottom:7.828050px;}
.y12c{bottom:8.035200px;}
.y123{bottom:8.090250px;}
.y9c{bottom:8.190450px;}
.y14b{bottom:8.434650px;}
.y13a{bottom:8.538000px;}
.y158{bottom:8.542650px;}
.y135{bottom:8.923950px;}
.y126{bottom:9.000000px;}
.y122{bottom:9.244800px;}
.y99{bottom:10.363050px;}
.y147{bottom:10.581150px;}
.yf1{bottom:12.138070px;}
.y14d{bottom:17.301000px;}
.y5{bottom:66.525004px;}
.yb8{bottom:85.039350px;}
.y39{bottom:87.173700px;}
.y15a{bottom:87.916500px;}
.y167{bottom:89.534850px;}
.yf7{bottom:91.039350px;}
.yaf{bottom:91.039500px;}
.yb0{bottom:91.039650px;}
.yb1{bottom:91.039800px;}
.yb2{bottom:91.039950px;}
.yb3{bottom:91.040100px;}
.yb4{bottom:91.040250px;}
.yb5{bottom:91.040400px;}
.yb6{bottom:91.040550px;}
.yb7{bottom:91.040700px;}
.y182{bottom:93.543450px;}
.y184{bottom:93.543600px;}
.y186{bottom:93.543750px;}
.y188{bottom:93.544050px;}
.y18a{bottom:93.544200px;}
.y18c{bottom:93.544350px;}
.y18e{bottom:93.544500px;}
.y191{bottom:93.544650px;}
.y194{bottom:93.544950px;}
.y196{bottom:93.545100px;}
.y15b{bottom:93.660347px;}
.y1be{bottom:95.869500px;}
.y11f{bottom:96.751500px;}
.y4{bottom:97.125005px;}
.y82{bottom:98.416500px;}
.y5c{bottom:99.916500px;}
.y168{bottom:104.834850px;}
.yf4{bottom:107.119500px;}
.y159{bottom:107.416500px;}
.y38{bottom:113.961000px;}
.y1bd{bottom:115.369500px;}
.y11e{bottom:116.251500px;}
.y81{bottom:117.916500px;}
.y5b{bottom:119.416500px;}
.y37{bottom:127.461000px;}
.yee{bottom:130.518000px;}
.yf3{bottom:131.670750px;}
.y157{bottom:133.660500px;}
.y1bc{bottom:134.869500px;}
.y11d{bottom:135.751500px;}
.yed{bottom:136.008150px;}
.y80{bottom:137.416350px;}
.y5a{bottom:138.916350px;}
.y20{bottom:139.264499px;}
.y155{bottom:139.773900px;}
.yf2{bottom:142.660350px;}
.y156{bottom:143.870250px;}
.y154{bottom:146.416350px;}
.y1bb{bottom:154.369500px;}
.y11c{bottom:155.251500px;}
.y7f{bottom:156.916350px;}
.y59{bottom:158.416350px;}
.yec{bottom:163.022700px;}
.y1ba{bottom:173.869500px;}
.y11b{bottom:174.751500px;}
.y7e{bottom:176.416350px;}
.yea{bottom:176.522700px;}
.y58{bottom:177.916350px;}
.y150{bottom:177.976500px;}
.y14f{bottom:181.444200px;}
.y14e{bottom:185.416350px;}
.y152{bottom:185.475450px;}
.yeb{bottom:190.022700px;}
.y1b9{bottom:193.369500px;}
.y11a{bottom:194.251500px;}
.y7d{bottom:195.916350px;}
.y17{bottom:196.933500px;}
.y57{bottom:197.416350px;}
.y16a{bottom:205.842600px;}
.ye9{bottom:206.846850px;}
.yae{bottom:208.889400px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y1b8{bottom:212.869500px;}
.y119{bottom:213.751500px;}
.y146{bottom:213.786000px;}
.y7c{bottom:215.416350px;}
.y56{bottom:216.916350px;}
.ye7{bottom:220.346850px;}
.y149{bottom:220.354050px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y148{bottom:224.367150px;}
.y145{bottom:224.416350px;}
.y14a{bottom:231.084807px;}
.y14c{bottom:231.087000px;}
.y1b7{bottom:232.369500px;}
.y118{bottom:233.251500px;}
.y170{bottom:233.748150px;}
.y172{bottom:233.748300px;}
.ye8{bottom:233.846850px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y7b{bottom:234.916350px;}
.y55{bottom:236.416350px;}
.y171{bottom:239.748150px;}
.ye6{bottom:250.671150px;}
.y1b6{bottom:251.869500px;}
.y117{bottom:252.751500px;}
.y141{bottom:253.849500px;}
.y7a{bottom:254.416350px;}
.y54{bottom:255.916350px;}
.ye5{bottom:257.421150px;}
.y140{bottom:257.604450px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y144{bottom:261.574950px;}
.y13f{bottom:263.416350px;}
.y1b5{bottom:271.369500px;}
.y183{bottom:272.126100px;}
.y185{bottom:272.126250px;}
.y187{bottom:272.126400px;}
.y189{bottom:272.126700px;}
.y18b{bottom:272.126850px;}
.y18d{bottom:272.127000px;}
.y18f{bottom:272.127150px;}
.y192{bottom:272.127450px;}
.y193{bottom:272.127600px;}
.y116{bottom:272.251500px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y79{bottom:273.916350px;}
.y175{bottom:274.577850px;}
.y53{bottom:275.416350px;}
.y173{bottom:280.510350px;}
.ye4{bottom:280.995450px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y174{bottom:286.433850px;}
.ye2{bottom:287.745450px;}
.y1b4{bottom:290.869500px;}
.y115{bottom:291.751500px;}
.y78{bottom:293.416350px;}
.ye1{bottom:294.495450px;}
.y52{bottom:294.916350px;}
.yf6{bottom:297.504900px;}
.y13e{bottom:302.416350px;}
.ye3{bottom:307.995450px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y1b3{bottom:310.369500px;}
.y114{bottom:311.251500px;}
.y77{bottom:312.916350px;}
.y51{bottom:314.416350px;}
.y16b{bottom:320.645700px;}
.y13d{bottom:321.916350px;}
.y36{bottom:322.400700px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.ye0{bottom:324.819600px;}
.y1b2{bottom:329.869500px;}
.y113{bottom:330.751500px;}
.y76{bottom:332.416350px;}
.y50{bottom:333.916350px;}
.yde{bottom:338.319600px;}
.y13c{bottom:341.416350px;}
.ye{bottom:348.133500px;}
.y1b1{bottom:349.369500px;}
.y112{bottom:350.251500px;}
.ydd{bottom:351.819600px;}
.y75{bottom:351.916350px;}
.y4f{bottom:353.416350px;}
.y35{bottom:358.400700px;}
.y13b{bottom:360.916350px;}
.y190{bottom:361.418550px;}
.y195{bottom:361.418850px;}
.y169{bottom:361.456350px;}
.ydf{bottom:365.319600px;}
.y1b0{bottom:368.869500px;}
.y111{bottom:369.751500px;}
.y74{bottom:371.416350px;}
.y177{bottom:371.801100px;}
.y139{bottom:371.913000px;}
.y4e{bottom:372.916350px;}
.y34{bottom:376.400700px;}
.y138{bottom:380.416350px;}
.ydc{bottom:382.143900px;}
.yd{bottom:386.785499px;}
.y176{bottom:387.317250px;}
.y1af{bottom:388.369500px;}
.y110{bottom:389.251500px;}
.y73{bottom:390.916350px;}
.y134{bottom:391.411500px;}
.y4d{bottom:392.416350px;}
.yda{bottom:395.643900px;}
.y136{bottom:396.285300px;}
.y132{bottom:399.916350px;}
.y133{bottom:400.335450px;}
.y1ae{bottom:407.869500px;}
.yc{bottom:408.044999px;}
.y10f{bottom:408.751500px;}
.yd9{bottom:409.143900px;}
.y72{bottom:410.416350px;}
.y4c{bottom:411.916350px;}
.y33{bottom:412.400700px;}
.yf5{bottom:420.688350px;}
.ya8{bottom:422.475000px;}
.yad{bottom:422.626350px;}
.ydb{bottom:422.643900px;}
.y1ad{bottom:427.369500px;}
.y10e{bottom:428.251500px;}
.y71{bottom:429.916350px;}
.ya9{bottom:429.975450px;}
.y32{bottom:430.400700px;}
.y92{bottom:431.416350px;}
.y16c{bottom:435.448800px;}
.yab{bottom:436.725450px;}
.y12e{bottom:438.916500px;}
.yd8{bottom:439.468200px;}
.y131{bottom:442.744200px;}
.y12d{bottom:446.699400px;}
.y1ac{bottom:446.869500px;}
.y10d{bottom:447.751500px;}
.y31{bottom:448.400700px;}
.y4b{bottom:449.416350px;}
.y91{bottom:450.916350px;}
.yd6{bottom:452.968200px;}
.yac{bottom:457.757850px;}
.y179{bottom:461.092500px;}
.y1ab{bottom:466.369500px;}
.y30{bottom:466.400700px;}
.yd5{bottom:466.468200px;}
.y10c{bottom:467.251500px;}
.y178{bottom:468.184500px;}
.y70{bottom:468.916350px;}
.y90{bottom:470.416350px;}
.ya7{bottom:475.723247px;}
.yd7{bottom:479.968200px;}
.ya4{bottom:480.975000px;}
.y2f{bottom:484.400700px;}
.y1aa{bottom:485.869500px;}
.y10b{bottom:486.751500px;}
.y6f{bottom:488.416350px;}
.ya5{bottom:488.475450px;}
.y8f{bottom:489.916350px;}
.ya6{bottom:495.223247px;}
.yd4{bottom:499.715700px;}
.y2e{bottom:502.400700px;}
.y1a9{bottom:505.369500px;}
.y10a{bottom:506.251500px;}
.y6e{bottom:507.916350px;}
.y8e{bottom:509.416350px;}
.yd3{bottom:519.463200px;}
.y2d{bottom:520.400700px;}
.yb{bottom:520.864502px;}
.y12b{bottom:522.102000px;}
.y1a8{bottom:524.869500px;}
.y109{bottom:525.751500px;}
.yd2{bottom:526.213200px;}
.y12a{bottom:526.249950px;}
.y6d{bottom:527.416350px;}
.y8d{bottom:528.916350px;}
.y4a{bottom:533.416350px;}
.ya3{bottom:534.223247px;}
.y2c{bottom:538.400700px;}
.ya{bottom:538.864499px;}
.ya0{bottom:539.475000px;}
.y1a7{bottom:544.369500px;}
.y108{bottom:545.251500px;}
.y6c{bottom:546.916350px;}
.ya2{bottom:546.975450px;}
.y8c{bottom:548.416350px;}
.yd1{bottom:549.787500px;}
.y16d{bottom:550.252050px;}
.y17b{bottom:550.383900px;}
.y2b{bottom:556.400700px;}
.y9{bottom:556.864499px;}
.y17a{bottom:557.811900px;}
.yd0{bottom:563.287500px;}
.yce{bottom:563.349600px;}
.y1a6{bottom:563.869500px;}
.y107{bottom:564.751500px;}
.y6b{bottom:566.416350px;}
.y8b{bottom:567.916350px;}
.y49{bottom:572.416350px;}
.y2a{bottom:574.400700px;}
.ycf{bottom:576.787500px;}
.y9d{bottom:577.413000px;}
.y9f{bottom:580.881300px;}
.y1a5{bottom:583.369500px;}
.y106{bottom:584.251500px;}
.y6a{bottom:585.916350px;}
.y8a{bottom:587.416350px;}
.y48{bottom:590.416350px;}
.y29{bottom:592.400700px;}
.ycd{bottom:593.611650px;}
.y97{bottom:595.849500px;}
.y96{bottom:602.150700px;}
.y1a4{bottom:602.869500px;}
.y105{bottom:603.751500px;}
.y69{bottom:605.416350px;}
.y9a{bottom:606.212550px;}
.y89{bottom:606.916350px;}
.ycc{bottom:607.111650px;}
.y9b{bottom:613.013850px;}
.yc9{bottom:613.861650px;}
.y125{bottom:615.349500px;}
.ycb{bottom:620.611650px;}
.y1a3{bottom:622.369500px;}
.y104{bottom:623.251500px;}
.y128{bottom:624.349500px;}
.y68{bottom:624.916350px;}
.y47{bottom:626.416350px;}
.y28{bottom:628.400700px;}
.yca{bottom:634.111650px;}
.y93{bottom:639.100500px;}
.y17d{bottom:639.675150px;}
.y17c{bottom:640.497150px;}
.y1a2{bottom:641.869500px;}
.y103{bottom:642.751500px;}
.y83{bottom:642.916350px;}
.y46{bottom:644.416350px;}
.y8{bottom:645.510000px;}
.y88{bottom:645.916350px;}
.yc8{bottom:650.811600px;}
.y1a1{bottom:661.369500px;}
.y102{bottom:662.251500px;}
.y45{bottom:662.416350px;}
.y67{bottom:663.916350px;}
.yc7{bottom:664.311600px;}
.y16e{bottom:665.055150px;}
.y87{bottom:665.416350px;}
.y7{bottom:666.771000px;}
.yc4{bottom:671.061600px;}
.y121{bottom:674.911500px;}
.y165{bottom:677.038500px;}
.yc6{bottom:677.811600px;}
.y120{bottom:680.184600px;}
.y44{bottom:680.416350px;}
.y1a0{bottom:680.869500px;}
.y101{bottom:681.751500px;}
.y66{bottom:683.416350px;}
.y86{bottom:684.916350px;}
.yc5{bottom:691.311600px;}
.y43{bottom:698.416350px;}
.y19f{bottom:700.369500px;}
.y100{bottom:701.251500px;}
.y65{bottom:702.916350px;}
.y85{bottom:704.416350px;}
.yc3{bottom:708.011550px;}
.y42{bottom:716.416350px;}
.y17e{bottom:719.204550px;}
.y19e{bottom:719.869500px;}
.yff{bottom:720.751500px;}
.yc1{bottom:721.511550px;}
.y27{bottom:722.120700px;}
.y64{bottom:722.416350px;}
.y6{bottom:726.298500px;}
.y17f{bottom:728.966550px;}
.y41{bottom:734.416350px;}
.y162{bottom:734.475000px;}
.yc2{bottom:735.011550px;}
.y163{bottom:737.944200px;}
.y19d{bottom:739.369500px;}
.yfe{bottom:740.251500px;}
.y63{bottom:741.916350px;}
.y164{bottom:741.975450px;}
.y84{bottom:743.416350px;}
.yc0{bottom:751.711350px;}
.y40{bottom:752.416350px;}
.y3{bottom:752.599495px;}
.y15f{bottom:753.975000px;}
.y19c{bottom:758.869500px;}
.yfd{bottom:759.751500px;}
.y62{bottom:761.416350px;}
.y160{bottom:761.475450px;}
.ybe{bottom:765.211350px;}
.y161{bottom:768.225450px;}
.y3f{bottom:770.416500px;}
.y19b{bottom:778.369500px;}
.ybf{bottom:778.711350px;}
.yfc{bottom:779.251500px;}
.y16f{bottom:779.858250px;}
.y61{bottom:780.916500px;}
.y26{bottom:782.123100px;}
.y3e{bottom:788.416500px;}
.ybd{bottom:795.411300px;}
.y19a{bottom:797.869500px;}
.yfb{bottom:798.751500px;}
.y25{bottom:799.943100px;}
.y60{bottom:800.416500px;}
.ybc{bottom:802.161300px;}
.y3d{bottom:806.416500px;}
.y199{bottom:817.369500px;}
.y24{bottom:817.763100px;}
.yfa{bottom:818.251500px;}
.y181{bottom:818.257800px;}
.y5f{bottom:819.916500px;}
.y15d{bottom:819.975600px;}
.y3c{bottom:824.416500px;}
.y15e{bottom:826.723247px;}
.ybb{bottom:828.933600px;}
.y180{bottom:829.015800px;}
.y198{bottom:836.869500px;}
.y23{bottom:837.203100px;}
.yf9{bottom:837.751500px;}
.y5e{bottom:839.416500px;}
.y3b{bottom:842.416500px;}
.yba{bottom:856.075650px;}
.y5d{bottom:858.916500px;}
.y15c{bottom:864.660347px;}
.y197{bottom:874.369500px;}
.yb9{bottom:875.575650px;}
.yf8{bottom:876.751500px;}
.y3a{bottom:878.416500px;}
.y2{bottom:879.369000px;}
.y21{bottom:914.732250px;}
.y22{bottom:915.756750px;}
.y1{bottom:966.726000px;}
.h49{height:21.000000px;}
.h3b{height:22.498500px;}
.h16{height:22.500000px;}
.h5e{height:22.887414px;}
.h3a{height:23.414160px;}
.h40{height:23.823240px;}
.h4c{height:23.916060px;}
.h31{height:23.922360px;}
.h2d{height:23.971080px;}
.h26{height:24.000000px;}
.h52{height:24.172260px;}
.h27{height:24.281040px;}
.h3e{height:24.317278px;}
.h1c{height:24.465840px;}
.h58{height:24.672900px;}
.h4f{height:24.838537px;}
.h36{height:24.845080px;}
.h2e{height:24.895679px;}
.h56{height:25.104619px;}
.h25{height:25.217594px;}
.h45{height:25.335805px;}
.h20{height:25.409522px;}
.h32{height:25.500000px;}
.h1d{height:28.500000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h18{height:32.222966px;}
.h28{height:32.715000px;}
.h15{height:33.600000px;}
.h2a{height:34.453125px;}
.hd{height:34.896000px;}
.h13{height:37.077000px;}
.hc{height:39.258000px;}
.h4a{height:39.412968px;}
.h3c{height:40.210893px;}
.h4b{height:40.264750px;}
.h10{height:40.560000px;}
.h42{height:40.913121px;}
.h4d{height:41.072832px;}
.h33{height:41.083674px;}
.h3d{height:41.172465px;}
.h3f{height:41.207460px;}
.h2c{height:41.463660px;}
.h53{height:41.513184px;}
.h37{height:41.700000px;}
.hf{height:41.758200px;}
.h51{height:41.811840px;}
.h41{height:41.891532px;}
.h48{height:41.943600px;}
.h11{height:42.000000px;}
.h1e{height:42.016920px;}
.h4e{height:42.055039px;}
.h35{height:42.066166px;}
.h59{height:42.372621px;}
.h57{height:42.697216px;}
.h44{height:42.896636px;}
.h50{height:42.963955px;}
.h24{height:43.383600px;}
.h55{height:43.424582px;}
.h12{height:43.620000px;}
.h46{height:43.823705px;}
.h1f{height:43.951512px;}
.h5d{height:43.984800px;}
.h5b{height:44.323591px;}
.h30{height:44.339040px;}
.he{height:45.360000px;}
.h1b{height:45.504000px;}
.h7{height:45.960000px;}
.h22{height:46.488000px;}
.h14{height:47.640000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h5c{height:49.951506px;}
.h39{height:51.383580px;}
.h19{height:53.283426px;}
.h1a{height:54.557635px;}
.h2{height:55.152000px;}
.h34{height:55.175355px;}
.h17{height:55.736764px;}
.h38{height:56.003100px;}
.h47{height:56.264976px;}
.h5f{height:57.168000px;}
.h43{height:58.617691px;}
.h2b{height:61.453125px;}
.h29{height:61.896000px;}
.h5a{height:63.262236px;}
.h23{height:63.760200px;}
.h54{height:66.669960px;}
.h21{height:67.479357px;}
.h2f{height:71.546400px;}
.h5{height:78.132000px;}
.h4{height:119.055004px;}
.ha{height:977.953500px;}
.hb{height:978.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w9{width:26.599500px;}
.w8{width:32.580000px;}
.w11{width:36.000000px;}
.w18{width:40.393500px;}
.w17{width:46.500000px;}
.wd{width:57.000000px;}
.w7{width:60.235500px;}
.wf{width:77.998500px;}
.we{width:81.000000px;}
.w16{width:84.000000px;}
.wa{width:84.001500px;}
.wb{width:87.000000px;}
.w5{width:138.000000px;}
.w14{width:175.500000px;}
.w15{width:189.000000px;}
.w12{width:196.498500px;}
.wc{width:300.001500px;}
.w10{width:322.500000px;}
.w13{width:331.135500px;}
.w6{width:397.500000px;}
.w4{width:637.500000px;}
.w2{width:637.794021px;}
.w3{width:637.795500px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6a{left:2.297100px;}
.xc{left:5.330550px;}
.x68{left:8.250300px;}
.x71{left:11.358750px;}
.xd{left:12.697800px;}
.x62{left:13.854600px;}
.x78{left:15.144150px;}
.x6d{left:17.492550px;}
.x14{left:18.514950px;}
.x51{left:19.898700px;}
.xe{left:23.059800px;}
.x53{left:24.295050px;}
.x65{left:25.908150px;}
.x87{left:29.007150px;}
.x17{left:30.133950px;}
.x93{left:35.863200px;}
.xf{left:36.895650px;}
.x6e{left:40.002600px;}
.x76{left:45.681300px;}
.x83{left:48.234300px;}
.x7b{left:50.602350px;}
.x84{left:59.296800px;}
.x6{left:85.039350px;}
.xb3{left:86.539350px;}
.x8b{left:88.039350px;}
.x46{left:90.722250px;}
.x40{left:92.386350px;}
.x10{left:94.575450px;}
.x1b{left:97.059750px;}
.x21{left:98.125200px;}
.x41{left:99.552300px;}
.x1{left:102.045000px;}
.x1c{left:104.327383px;}
.x2{left:106.297500px;}
.x8c{left:107.590184px;}
.x37{left:111.836850px;}
.x49{left:114.555300px;}
.x22{left:117.625200px;}
.x50{left:120.201000px;}
.x3b{left:121.772850px;}
.x31{left:125.426850px;}
.x32{left:126.530850px;}
.x9{left:128.090550px;}
.x82{left:129.468600px;}
.x3e{left:130.542600px;}
.x4c{left:132.704700px;}
.x42{left:135.373650px;}
.x47{left:139.372650px;}
.xa3{left:141.219150px;}
.x94{left:143.571000px;}
.x55{left:148.346100px;}
.x12{left:150.024000px;}
.x73{left:153.417000px;}
.x72{left:156.431100px;}
.x11{left:160.226250px;}
.x74{left:164.719650px;}
.x67{left:166.032000px;}
.x61{left:169.039500px;}
.x56{left:172.157100px;}
.x95{left:174.018900px;}
.x23{left:175.239750px;}
.xa4{left:181.765950px;}
.x52{left:183.657600px;}
.x69{left:189.235350px;}
.x96{left:194.214900px;}
.x57{left:195.968100px;}
.x15{left:198.531000px;}
.x63{left:201.354450px;}
.x4{left:203.484001px;}
.x75{left:205.079250px;}
.xa5{left:211.529700px;}
.x97{left:214.410900px;}
.x66{left:218.303400px;}
.x58{left:219.779100px;}
.x24{left:222.011400px;}
.x6b{left:223.032300px;}
.xa6{left:226.411650px;}
.x81{left:230.029500px;}
.x79{left:232.279350px;}
.x98{left:234.606900px;}
.x30{left:236.673600px;}
.x86{left:240.644400px;}
.x59{left:243.590250px;}
.x25{left:245.397150px;}
.xb{left:247.789500px;}
.x64{left:249.522600px;}
.x7a{left:254.340600px;}
.xa7{left:256.175400px;}
.x7c{left:261.229350px;}
.x5a{left:267.401250px;}
.x26{left:268.783050px;}
.x80{left:270.013800px;}
.xa8{left:271.057350px;}
.x99{left:274.998900px;}
.x1e{left:277.459500px;}
.x70{left:279.898500px;}
.x6f{left:282.841050px;}
.xa9{left:285.939300px;}
.x6c{left:287.326650px;}
.xa{left:289.317600px;}
.x8{left:290.990100px;}
.x27{left:292.168800px;}
.x9a{left:295.194750px;}
.x85{left:297.013800px;}
.x88{left:298.849500px;}
.xaa{left:300.821100px;}
.x19{left:304.078500px;}
.x8d{left:314.331300px;}
.x28{left:315.554700px;}
.x1a{left:323.579550px;}
.x8e{left:326.424900px;}
.x8a{left:327.899533px;}
.x13{left:330.195450px;}
.x9b{left:335.586750px;}
.x29{left:338.940450px;}
.x1f{left:341.303100px;}
.x18{left:343.196100px;}
.xab{left:345.466800px;}
.x38{left:348.286350px;}
.x36{left:350.071650px;}
.x44{left:352.069950px;}
.x20{left:353.396850px;}
.x43{left:355.069950px;}
.x34{left:356.197650px;}
.x3c{left:357.226200px;}
.x35{left:358.237650px;}
.x4a{left:359.241900px;}
.xac{left:360.348750px;}
.x2a{left:362.326350px;}
.x48{left:363.566100px;}
.x4b{left:375.056250px;}
.x39{left:376.549650px;}
.x4e{left:379.064100px;}
.x33{left:382.717650px;}
.x16{left:385.662000px;}
.x7{left:387.953850px;}
.x8f{left:390.364500px;}
.x9c{left:396.174750px;}
.x3d{left:397.386450px;}
.x4d{left:399.062100px;}
.x91{left:405.176550px;}
.x1d{left:406.967234px;}
.x2b{left:409.098000px;}
.x3a{left:410.215650px;}
.x9d{left:416.370750px;}
.x45{left:420.381450px;}
.x4f{left:423.381450px;}
.x54{left:424.879650px;}
.x3f{left:426.548550px;}
.x90{left:430.348350px;}
.x2c{left:432.483750px;}
.x5b{left:434.078400px;}
.x9e{left:436.566750px;}
.x77{left:450.109500px;}
.x3{left:454.959000px;}
.x5c{left:457.889400px;}
.x7d{left:461.322150px;}
.xad{left:464.521950px;}
.x7e{left:473.353250px;}
.x9f{left:476.958600px;}
.x2d{left:479.255550px;}
.x5d{left:481.700550px;}
.x7f{left:486.989850px;}
.xae{left:494.285700px;}
.xa0{left:497.154600px;}
.x2e{left:502.641300px;}
.x5e{left:505.511550px;}
.xaf{left:509.167650px;}
.x92{left:512.362500px;}
.xa1{left:517.350600px;}
.xb0{left:524.049600px;}
.x2f{left:530.250750px;}
.x60{left:532.505850px;}
.x5f{left:537.443550px;}
.x5{left:539.255850px;}
.xb1{left:544.920000px;}
.x89{left:546.243017px;}
.xa2{left:553.211400px;}
.xb2{left:560.014500px;}
@media print{
.v7{vertical-align:-24.202302pt;}
.ve{vertical-align:-20.422569pt;}
.v11{vertical-align:-15.984000pt;}
.v2{vertical-align:-14.333333pt;}
.vd{vertical-align:-9.052800pt;}
.vc{vertical-align:-6.547200pt;}
.v5{vertical-align:-3.569067pt;}
.vb{vertical-align:-1.490133pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:2.630933pt;}
.v1{vertical-align:3.642667pt;}
.v9{vertical-align:8.356800pt;}
.v3{vertical-align:10.344000pt;}
.v10{vertical-align:12.569067pt;}
.v6{vertical-align:14.123200pt;}
.v4{vertical-align:17.902400pt;}
.vf{vertical-align:19.536000pt;}
.v8{vertical-align:24.000000pt;}
.ls33{letter-spacing:-4.053333pt;}
.ls1c{letter-spacing:-0.376171pt;}
.ls30{letter-spacing:-0.373333pt;}
.ls7a{letter-spacing:-0.371661pt;}
.ls37{letter-spacing:-0.368566pt;}
.ls19{letter-spacing:-0.268693pt;}
.ls2e{letter-spacing:-0.266667pt;}
.ls74{letter-spacing:-0.265472pt;}
.ls68{letter-spacing:-0.262656pt;}
.ls17{letter-spacing:-0.161216pt;}
.ls2c{letter-spacing:-0.160000pt;}
.ls78{letter-spacing:-0.159283pt;}
.ls90{letter-spacing:-0.108387pt;}
.ls1d{letter-spacing:-0.107477pt;}
.ls2d{letter-spacing:-0.106667pt;}
.ls73{letter-spacing:-0.106189pt;}
.ls35{letter-spacing:-0.105305pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9a{letter-spacing:0.000533pt;}
.lsb{letter-spacing:0.006400pt;}
.ls9{letter-spacing:0.013333pt;}
.ls97{letter-spacing:0.053333pt;}
.ls92{letter-spacing:0.054194pt;}
.ls64{letter-spacing:0.214330pt;}
.ls1{letter-spacing:0.426667pt;}
.ls98{letter-spacing:1.942483pt;}
.ls3{letter-spacing:2.133333pt;}
.ls2{letter-spacing:2.666667pt;}
.lse{letter-spacing:3.403806pt;}
.lsa{letter-spacing:7.740207pt;}
.lsc{letter-spacing:10.576062pt;}
.lsd{letter-spacing:11.069391pt;}
.ls99{letter-spacing:11.421924pt;}
.ls3e{letter-spacing:11.569269pt;}
.ls6{letter-spacing:11.595341pt;}
.ls7{letter-spacing:12.594807pt;}
.ls8{letter-spacing:12.595341pt;}
.ls5{letter-spacing:13.095074pt;}
.ls41{letter-spacing:14.428407pt;}
.ls45{letter-spacing:26.850529pt;}
.ls16{letter-spacing:32.028245pt;}
.ls18{letter-spacing:34.392747pt;}
.ls77{letter-spacing:34.936115pt;}
.ls15{letter-spacing:38.799317pt;}
.ls91{letter-spacing:38.802618pt;}
.ls75{letter-spacing:47.147827pt;}
.ls1a{letter-spacing:47.719936pt;}
.ls62{letter-spacing:48.920731pt;}
.ls76{letter-spacing:51.289190pt;}
.ls4d{letter-spacing:52.887023pt;}
.ls3a{letter-spacing:53.494703pt;}
.ls1b{letter-spacing:53.577451pt;}
.ls84{letter-spacing:53.943910pt;}
.ls32{letter-spacing:54.186667pt;}
.ls28{letter-spacing:54.598485pt;}
.ls5e{letter-spacing:55.511859pt;}
.ls56{letter-spacing:55.660170pt;}
.ls6d{letter-spacing:56.996352pt;}
.ls47{letter-spacing:57.431758pt;}
.ls58{letter-spacing:57.918141pt;}
.ls6a{letter-spacing:60.515942pt;}
.ls87{letter-spacing:61.440000pt;}
.ls3d{letter-spacing:62.343796pt;}
.ls4a{letter-spacing:62.476084pt;}
.ls3f{letter-spacing:66.560000pt;}
.ls24{letter-spacing:68.033152pt;}
.ls46{letter-spacing:68.676402pt;}
.ls53{letter-spacing:71.023173pt;}
.ls96{letter-spacing:71.173333pt;}
.ls3c{letter-spacing:71.540800pt;}
.ls50{letter-spacing:72.160000pt;}
.ls12{letter-spacing:73.940869pt;}
.ls70{letter-spacing:74.710727pt;}
.ls8d{letter-spacing:77.107555pt;}
.ls51{letter-spacing:82.910116pt;}
.ls20{letter-spacing:86.088689pt;}
.ls54{letter-spacing:86.401967pt;}
.ls59{letter-spacing:87.699940pt;}
.ls81{letter-spacing:92.596634pt;}
.ls72{letter-spacing:92.755917pt;}
.ls85{letter-spacing:93.005648pt;}
.ls26{letter-spacing:93.720235pt;}
.ls66{letter-spacing:93.909888pt;}
.ls29{letter-spacing:94.135232pt;}
.ls14{letter-spacing:94.687531pt;}
.ls8f{letter-spacing:95.272349pt;}
.ls55{letter-spacing:95.503282pt;}
.ls6f{letter-spacing:95.634034pt;}
.ls82{letter-spacing:95.888486pt;}
.ls27{letter-spacing:97.052032pt;}
.ls7c{letter-spacing:97.333634pt;}
.ls7e{letter-spacing:99.973398pt;}
.ls2a{letter-spacing:100.504117pt;}
.ls8b{letter-spacing:102.880000pt;}
.ls21{letter-spacing:103.362349pt;}
.ls43{letter-spacing:103.618871pt;}
.ls5c{letter-spacing:104.186361pt;}
.ls88{letter-spacing:106.826667pt;}
.ls60{letter-spacing:107.968536pt;}
.ls36{letter-spacing:108.147756pt;}
.ls8c{letter-spacing:108.343760pt;}
.ls48{letter-spacing:109.241194pt;}
.ls79{letter-spacing:110.170880pt;}
.ls2f{letter-spacing:110.666667pt;}
.ls61{letter-spacing:113.701853pt;}
.ls7d{letter-spacing:116.395187pt;}
.ls8e{letter-spacing:116.764823pt;}
.ls83{letter-spacing:117.285530pt;}
.ls65{letter-spacing:118.592717pt;}
.lsf{letter-spacing:126.646400pt;}
.ls95{letter-spacing:126.646933pt;}
.ls13{letter-spacing:128.042538pt;}
.ls4{letter-spacing:130.404267pt;}
.ls3b{letter-spacing:130.666667pt;}
.ls57{letter-spacing:131.897557pt;}
.ls8a{letter-spacing:134.432171pt;}
.ls4f{letter-spacing:136.365046pt;}
.ls6c{letter-spacing:138.151310pt;}
.ls69{letter-spacing:158.013850pt;}
.ls39{letter-spacing:162.698949pt;}
.ls38{letter-spacing:169.456511pt;}
.ls6b{letter-spacing:170.980848pt;}
.ls31{letter-spacing:172.757673pt;}
.ls22{letter-spacing:174.072510pt;}
.ls67{letter-spacing:176.377882pt;}
.ls89{letter-spacing:182.254257pt;}
.ls4b{letter-spacing:183.335664pt;}
.ls49{letter-spacing:183.829640pt;}
.ls5a{letter-spacing:187.524477pt;}
.ls52{letter-spacing:197.976107pt;}
.ls10{letter-spacing:202.195907pt;}
.ls42{letter-spacing:202.771412pt;}
.ls93{letter-spacing:208.223611pt;}
.ls25{letter-spacing:211.085483pt;}
.ls44{letter-spacing:214.278782pt;}
.ls1f{letter-spacing:215.889679pt;}
.ls6e{letter-spacing:216.428544pt;}
.ls1e{letter-spacing:217.753743pt;}
.ls11{letter-spacing:225.634637pt;}
.ls7b{letter-spacing:225.914709pt;}
.ls71{letter-spacing:227.772000pt;}
.ls4c{letter-spacing:233.337760pt;}
.ls4e{letter-spacing:242.625891pt;}
.ls63{letter-spacing:309.009701pt;}
.ls5f{letter-spacing:317.957962pt;}
.ls5d{letter-spacing:326.937590pt;}
.ls86{letter-spacing:339.209708pt;}
.ls40{letter-spacing:342.096933pt;}
.ls34{letter-spacing:373.163030pt;}
.ls5b{letter-spacing:529.216239pt;}
.ls94{letter-spacing:776.583138pt;}
.ls7f{letter-spacing:884.074854pt;}
.ls23{letter-spacing:1112.927787pt;}
.ls80{letter-spacing:1655.674645pt;}
.ls2b{letter-spacing:2026.085225pt;}
.wsd5{word-spacing:-2026.085225pt;}
.ws148{word-spacing:-1655.674645pt;}
.wsd3{word-spacing:-1112.927787pt;}
.ws147{word-spacing:-884.074854pt;}
.ws152{word-spacing:-776.583138pt;}
.wsff{word-spacing:-529.271102pt;}
.ws14b{word-spacing:-339.209708pt;}
.ws101{word-spacing:-331.353562pt;}
.ws106{word-spacing:-322.405301pt;}
.ws12b{word-spacing:-242.625891pt;}
.wsaf{word-spacing:-235.484237pt;}
.ws116{word-spacing:-233.588443pt;}
.wsfd{word-spacing:-233.391561pt;}
.ws143{word-spacing:-227.772000pt;}
.wsf8{word-spacing:-227.415049pt;}
.wsbe{word-spacing:-225.520676pt;}
.wsc2{word-spacing:-224.520149pt;}
.wsbf{word-spacing:-223.656612pt;}
.ws141{word-spacing:-216.428544pt;}
.wsf6{word-spacing:-215.907679pt;}
.wsd0{word-spacing:-202.195907pt;}
.ws12f{word-spacing:-197.976107pt;}
.ws137{word-spacing:-187.524477pt;}
.ws128{word-spacing:-183.829640pt;}
.ws129{word-spacing:-183.335664pt;}
.ws14d{word-spacing:-182.254257pt;}
.ws13b{word-spacing:-176.377882pt;}
.wsd2{word-spacing:-174.072510pt;}
.wsd8{word-spacing:-172.757673pt;}
.ws10b{word-spacing:-171.146650pt;}
.ws13f{word-spacing:-170.980848pt;}
.wse7{word-spacing:-169.456511pt;}
.wse8{word-spacing:-162.698949pt;}
.ws140{word-spacing:-138.151310pt;}
.ws12c{word-spacing:-136.365046pt;}
.ws14e{word-spacing:-134.432171pt;}
.ws100{word-spacing:-131.902621pt;}
.ws134{word-spacing:-131.897557pt;}
.ws11c{word-spacing:-130.559130pt;}
.wsb1{word-spacing:-128.112316pt;}
.ws104{word-spacing:-127.097453pt;}
.ws11f{word-spacing:-124.473090pt;}
.ws103{word-spacing:-121.364136pt;}
.ws118{word-spacing:-118.421053pt;}
.wsf7{word-spacing:-116.755138pt;}
.wsd7{word-spacing:-110.666667pt;}
.wsc4{word-spacing:-110.486699pt;}
.ws145{word-spacing:-110.170880pt;}
.ws127{word-spacing:-109.241194pt;}
.ws11b{word-spacing:-109.162086pt;}
.ws120{word-spacing:-108.820749pt;}
.ws11e{word-spacing:-108.398368pt;}
.wse5{word-spacing:-108.147756pt;}
.wsb2{word-spacing:-108.122197pt;}
.wsc3{word-spacing:-107.154901pt;}
.ws14c{word-spacing:-106.826667pt;}
.ws10e{word-spacing:-106.029517pt;}
.ws11a{word-spacing:-105.870234pt;}
.ws138{word-spacing:-104.186361pt;}
.wsd1{word-spacing:-103.362349pt;}
.ws14f{word-spacing:-102.880000pt;}
.wsc5{word-spacing:-101.902165pt;}
.ws117{word-spacing:-100.218957pt;}
.ws132{word-spacing:-95.503282pt;}
.ws14a{word-spacing:-93.005648pt;}
.ws136{word-spacing:-87.699940pt;}
.ws12e{word-spacing:-82.910116pt;}
.wsc0{word-spacing:-81.459597pt;}
.ws150{word-spacing:-77.107555pt;}
.ws142{word-spacing:-74.710727pt;}
.ws12d{word-spacing:-72.160000pt;}
.ws131{word-spacing:-71.023173pt;}
.wsfa{word-spacing:-68.728947pt;}
.ws123{word-spacing:-68.175531pt;}
.wscb{word-spacing:-67.520000pt;}
.wsbb{word-spacing:-67.012117pt;}
.wse1{word-spacing:-66.657770pt;}
.ws113{word-spacing:-64.562790pt;}
.ws156{word-spacing:-61.440000pt;}
.wsb9{word-spacing:-61.154603pt;}
.ws13e{word-spacing:-60.515942pt;}
.ws111{word-spacing:-60.421427pt;}
.ws135{word-spacing:-57.918141pt;}
.ws133{word-spacing:-55.660170pt;}
.ws139{word-spacing:-55.511859pt;}
.wsd4{word-spacing:-54.598485pt;}
.ws149{word-spacing:-53.943910pt;}
.ws5b{word-spacing:-53.333333pt;}
.ws12a{word-spacing:-52.887023pt;}
.ws122{word-spacing:-52.351018pt;}
.wsc1{word-spacing:-52.287723pt;}
.wsb3{word-spacing:-52.233984pt;}
.wsfe{word-spacing:-49.652885pt;}
.ws114{word-spacing:-48.209715pt;}
.wsb6{word-spacing:-47.827413pt;}
.wsb4{word-spacing:-45.462912pt;}
.wsc6{word-spacing:-38.555057pt;}
.ws119{word-spacing:-35.636818pt;}
.ws179{word-spacing:-16.000000pt;}
.wsfb{word-spacing:-14.344803pt;}
.ws121{word-spacing:-13.440013pt;}
.ws102{word-spacing:-13.395600pt;}
.ws154{word-spacing:-13.386667pt;}
.ws47{word-spacing:-13.333333pt;}
.wsbd{word-spacing:-13.327189pt;}
.wsb5{word-spacing:-13.273451pt;}
.ws124{word-spacing:-13.226667pt;}
.ws1{word-spacing:-13.200000pt;}
.wsc8{word-spacing:-13.173333pt;}
.wsb8{word-spacing:-13.165973pt;}
.wsc9{word-spacing:-13.066667pt;}
.ws110{word-spacing:-13.008128pt;}
.ws10a{word-spacing:-12.870144pt;}
.ws2{word-spacing:-12.800000pt;}
.ws10{word-spacing:-10.666667pt;}
.ws153{word-spacing:-8.550667pt;}
.wsc7{word-spacing:-7.766933pt;}
.wsca{word-spacing:-7.708267pt;}
.ws155{word-spacing:-6.996000pt;}
.ws10c{word-spacing:-6.934118pt;}
.wscc{word-spacing:-6.613333pt;}
.ws190{word-spacing:-6.560000pt;}
.wsb0{word-spacing:-5.179268pt;}
.ws17f{word-spacing:-4.640000pt;}
.wsfc{word-spacing:-4.623966pt;}
.wsf9{word-spacing:-4.466331pt;}
.ws186{word-spacing:-3.680000pt;}
.ws181{word-spacing:-3.360000pt;}
.ws19d{word-spacing:-3.253333pt;}
.ws18f{word-spacing:-3.200000pt;}
.ws188{word-spacing:-3.093333pt;}
.wsaa{word-spacing:-2.986667pt;}
.ws18e{word-spacing:-2.826667pt;}
.ws196{word-spacing:-2.773333pt;}
.ws43{word-spacing:-2.666667pt;}
.ws1e{word-spacing:-2.613333pt;}
.wscd{word-spacing:-2.560000pt;}
.wsa0{word-spacing:-2.506667pt;}
.ws126{word-spacing:-2.453333pt;}
.ws25{word-spacing:-2.400000pt;}
.wsdf{word-spacing:-2.346667pt;}
.ws8a{word-spacing:-2.293333pt;}
.ws92{word-spacing:-2.240000pt;}
.ws48{word-spacing:-2.186667pt;}
.ws82{word-spacing:-2.133333pt;}
.ws81{word-spacing:-2.080000pt;}
.ws62{word-spacing:-2.026667pt;}
.ws15d{word-spacing:-1.973333pt;}
.ws69{word-spacing:-1.920000pt;}
.ws18{word-spacing:-1.866667pt;}
.ws60{word-spacing:-1.813333pt;}
.ws4{word-spacing:-1.760000pt;}
.ws56{word-spacing:-1.706667pt;}
.ws15f{word-spacing:-1.677333pt;}
.ws99{word-spacing:-1.653333pt;}
.ws17{word-spacing:-1.600000pt;}
.ws41{word-spacing:-1.546667pt;}
.ws50{word-spacing:-1.493333pt;}
.ws55{word-spacing:-1.440000pt;}
.ws3d{word-spacing:-1.386667pt;}
.ws42{word-spacing:-1.333333pt;}
.wsda{word-spacing:-1.280000pt;}
.ws6c{word-spacing:-1.226667pt;}
.ws19{word-spacing:-1.173333pt;}
.ws58{word-spacing:-1.120000pt;}
.ws8c{word-spacing:-1.066667pt;}
.wsdb{word-spacing:-1.013333pt;}
.ws61{word-spacing:-0.960000pt;}
.ws2a{word-spacing:-0.906667pt;}
.wsef{word-spacing:-0.853333pt;}
.ws23{word-spacing:-0.800000pt;}
.ws3c{word-spacing:-0.746667pt;}
.ws34{word-spacing:-0.693333pt;}
.ws37{word-spacing:-0.640000pt;}
.wsa9{word-spacing:-0.586667pt;}
.ws21{word-spacing:-0.533333pt;}
.ws95{word-spacing:-0.480000pt;}
.ws14{word-spacing:-0.426667pt;}
.ws175{word-spacing:-0.373333pt;}
.ws98{word-spacing:-0.320000pt;}
.wsac{word-spacing:-0.266667pt;}
.ws13a{word-spacing:-0.214330pt;}
.ws80{word-spacing:-0.213333pt;}
.ws2b{word-spacing:-0.160000pt;}
.ws29{word-spacing:-0.106667pt;}
.wse3{word-spacing:-0.085333pt;}
.ws151{word-spacing:-0.054194pt;}
.ws6a{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws16{word-spacing:0.053333pt;}
.wse4{word-spacing:0.105305pt;}
.ws144{word-spacing:0.106189pt;}
.ws8f{word-spacing:0.106667pt;}
.ws6{word-spacing:0.160000pt;}
.ws178{word-spacing:0.213333pt;}
.ws40{word-spacing:0.266667pt;}
.ws13d{word-spacing:0.320000pt;}
.wse6{word-spacing:0.368566pt;}
.ws146{word-spacing:0.371661pt;}
.ws4b{word-spacing:0.373333pt;}
.ws76{word-spacing:0.480000pt;}
.wsa6{word-spacing:0.533333pt;}
.ws15e{word-spacing:0.544000pt;}
.ws173{word-spacing:0.586667pt;}
.ws90{word-spacing:0.640000pt;}
.ws59{word-spacing:0.693333pt;}
.ws57{word-spacing:0.746667pt;}
.ws64{word-spacing:0.800000pt;}
.ws4e{word-spacing:0.853333pt;}
.ws96{word-spacing:0.906667pt;}
.ws51{word-spacing:0.960000pt;}
.wsa5{word-spacing:1.013333pt;}
.ws24{word-spacing:1.066667pt;}
.wsa4{word-spacing:1.120000pt;}
.ws28{word-spacing:1.173333pt;}
.ws3e{word-spacing:1.226667pt;}
.ws177{word-spacing:1.280000pt;}
.wsf5{word-spacing:1.333333pt;}
.wsad{word-spacing:1.386667pt;}
.ws27{word-spacing:1.440000pt;}
.wsdc{word-spacing:1.493333pt;}
.ws75{word-spacing:1.546667pt;}
.ws15{word-spacing:1.600000pt;}
.ws4c{word-spacing:1.653333pt;}
.ws8e{word-spacing:1.706667pt;}
.ws35{word-spacing:1.760000pt;}
.ws74{word-spacing:1.813333pt;}
.ws3{word-spacing:1.866667pt;}
.ws94{word-spacing:1.920000pt;}
.ws73{word-spacing:1.973333pt;}
.ws38{word-spacing:2.026667pt;}
.ws22{word-spacing:2.080000pt;}
.ws68{word-spacing:2.133333pt;}
.ws5f{word-spacing:2.186667pt;}
.ws176{word-spacing:2.240000pt;}
.ws9d{word-spacing:2.293333pt;}
.ws125{word-spacing:2.346667pt;}
.ws7f{word-spacing:2.400000pt;}
.ws33{word-spacing:2.453333pt;}
.ws5e{word-spacing:2.506667pt;}
.ws6b{word-spacing:2.560000pt;}
.ws2e{word-spacing:2.613333pt;}
.ws54{word-spacing:2.666667pt;}
.wsb{word-spacing:2.720000pt;}
.ws130{word-spacing:2.773333pt;}
.ws11{word-spacing:2.826667pt;}
.ws3a{word-spacing:2.880000pt;}
.ws79{word-spacing:2.933333pt;}
.ws1b{word-spacing:2.986667pt;}
.ws39{word-spacing:3.040000pt;}
.ws12{word-spacing:3.093333pt;}
.ws49{word-spacing:3.146667pt;}
.ws32{word-spacing:3.200000pt;}
.ws53{word-spacing:3.253333pt;}
.wsa{word-spacing:3.306667pt;}
.ws3f{word-spacing:3.360000pt;}
.ws13{word-spacing:3.413333pt;}
.ws86{word-spacing:3.466667pt;}
.ws84{word-spacing:3.520000pt;}
.ws71{word-spacing:3.573333pt;}
.ws8b{word-spacing:3.626667pt;}
.wsae{word-spacing:3.680000pt;}
.ws7d{word-spacing:3.733333pt;}
.wsdd{word-spacing:3.840000pt;}
.wsec{word-spacing:3.893333pt;}
.ws6d{word-spacing:3.946667pt;}
.ws26{word-spacing:4.000000pt;}
.wsee{word-spacing:4.053333pt;}
.ws5{word-spacing:4.106667pt;}
.ws2d{word-spacing:4.160000pt;}
.ws91{word-spacing:4.213333pt;}
.wsce{word-spacing:4.266667pt;}
.ws9{word-spacing:4.320000pt;}
.ws72{word-spacing:4.373333pt;}
.ws161{word-spacing:4.426667pt;}
.ws93{word-spacing:4.480000pt;}
.ws83{word-spacing:4.533333pt;}
.ws30{word-spacing:4.586667pt;}
.ws8{word-spacing:4.640000pt;}
.wsa8{word-spacing:4.693333pt;}
.ws15a{word-spacing:4.746667pt;}
.ws63{word-spacing:4.800000pt;}
.wsa1{word-spacing:4.853333pt;}
.ws6e{word-spacing:4.906667pt;}
.ws1a{word-spacing:4.960000pt;}
.ws87{word-spacing:5.013333pt;}
.ws107{word-spacing:5.036746pt;}
.ws9b{word-spacing:5.066667pt;}
.ws2f{word-spacing:5.120000pt;}
.ws15b{word-spacing:5.173333pt;}
.ws44{word-spacing:5.226667pt;}
.ws3b{word-spacing:5.280000pt;}
.ws15c{word-spacing:5.333333pt;}
.ws1f{word-spacing:5.386667pt;}
.wsd{word-spacing:5.440000pt;}
.ws8d{word-spacing:5.493333pt;}
.ws1c{word-spacing:5.546667pt;}
.ws9c{word-spacing:5.600000pt;}
.ws7e{word-spacing:5.653333pt;}
.wsf4{word-spacing:5.706667pt;}
.ws20{word-spacing:5.760000pt;}
.wsf3{word-spacing:5.813333pt;}
.ws5a{word-spacing:5.866667pt;}
.ws31{word-spacing:5.920000pt;}
.ws36{word-spacing:5.973333pt;}
.ws4d{word-spacing:6.026667pt;}
.ws89{word-spacing:6.080000pt;}
.ws4a{word-spacing:6.133333pt;}
.ws5d{word-spacing:6.186667pt;}
.ws7a{word-spacing:6.240000pt;}
.ws85{word-spacing:6.293333pt;}
.ws9e{word-spacing:6.346667pt;}
.wsd9{word-spacing:6.400000pt;}
.ws2c{word-spacing:6.453333pt;}
.ws1d{word-spacing:6.506667pt;}
.ws5c{word-spacing:6.560000pt;}
.wsc{word-spacing:6.613333pt;}
.wsf1{word-spacing:6.720000pt;}
.wsa7{word-spacing:6.826667pt;}
.ws162{word-spacing:6.880000pt;}
.ws46{word-spacing:6.933333pt;}
.wsf0{word-spacing:6.986667pt;}
.ws66{word-spacing:7.040000pt;}
.ws78{word-spacing:7.093333pt;}
.wsd6{word-spacing:7.200000pt;}
.ws97{word-spacing:7.360000pt;}
.wsa2{word-spacing:7.413333pt;}
.wsed{word-spacing:7.466667pt;}
.ws7{word-spacing:7.520000pt;}
.ws7c{word-spacing:7.573333pt;}
.ws45{word-spacing:7.626667pt;}
.ws88{word-spacing:7.680000pt;}
.ws160{word-spacing:7.733333pt;}
.ws52{word-spacing:7.786667pt;}
.wscf{word-spacing:7.840000pt;}
.ws4f{word-spacing:7.893333pt;}
.ws172{word-spacing:7.946667pt;}
.ws9f{word-spacing:8.000000pt;}
.ws70{word-spacing:8.053333pt;}
.ws158{word-spacing:8.106667pt;}
.ws171{word-spacing:8.160000pt;}
.ws6f{word-spacing:8.213333pt;}
.ws77{word-spacing:8.320000pt;}
.wsab{word-spacing:8.426667pt;}
.ws9a{word-spacing:8.480000pt;}
.ws159{word-spacing:8.533333pt;}
.ws174{word-spacing:8.586667pt;}
.ws193{word-spacing:8.640000pt;}
.ws185{word-spacing:9.066667pt;}
.ws183{word-spacing:9.226667pt;}
.ws65{word-spacing:9.493333pt;}
.wsa3{word-spacing:9.866667pt;}
.ws184{word-spacing:9.973333pt;}
.ws163{word-spacing:10.186667pt;}
.ws67{word-spacing:10.613333pt;}
.ws18c{word-spacing:10.773333pt;}
.ws17c{word-spacing:10.880000pt;}
.wse{word-spacing:11.288000pt;}
.ws17e{word-spacing:11.306667pt;}
.ws194{word-spacing:11.626667pt;}
.ws13c{word-spacing:12.053333pt;}
.ws157{word-spacing:12.106667pt;}
.ws180{word-spacing:12.320000pt;}
.ws198{word-spacing:12.906667pt;}
.ws189{word-spacing:13.013333pt;}
.ws7b{word-spacing:13.226667pt;}
.wsf2{word-spacing:13.440000pt;}
.ws18d{word-spacing:13.866667pt;}
.ws191{word-spacing:14.186667pt;}
.ws1a0{word-spacing:15.040000pt;}
.ws19c{word-spacing:15.253333pt;}
.ws192{word-spacing:15.573333pt;}
.ws17d{word-spacing:16.000000pt;}
.ws19b{word-spacing:16.800000pt;}
.ws197{word-spacing:17.866667pt;}
.ws199{word-spacing:19.040000pt;}
.ws18b{word-spacing:19.466667pt;}
.ws195{word-spacing:19.520000pt;}
.wsb7{word-spacing:20.796864pt;}
.ws19e{word-spacing:22.026667pt;}
.ws10f{word-spacing:22.618214pt;}
.ws17b{word-spacing:22.826667pt;}
.ws115{word-spacing:23.042970pt;}
.ws10d{word-spacing:25.387662pt;}
.ws18a{word-spacing:27.306667pt;}
.ws11d{word-spacing:29.066667pt;}
.ws19f{word-spacing:32.426667pt;}
.ws19a{word-spacing:33.760000pt;}
.ws182{word-spacing:34.133333pt;}
.ws17a{word-spacing:38.186667pt;}
.ws112{word-spacing:38.652723pt;}
.wsba{word-spacing:39.121749pt;}
.ws187{word-spacing:41.333333pt;}
.wseb{word-spacing:56.000000pt;}
.ws108{word-spacing:59.224397pt;}
.wsbc{word-spacing:98.879147pt;}
.wsea{word-spacing:109.333333pt;}
.wse2{word-spacing:128.724800pt;}
.ws16d{word-spacing:139.730667pt;}
.ws16b{word-spacing:139.731200pt;}
.ws109{word-spacing:164.792064pt;}
.ws16c{word-spacing:182.397867pt;}
.ws16f{word-spacing:196.605333pt;}
.ws16e{word-spacing:196.605867pt;}
.ws105{word-spacing:205.381339pt;}
.ws16a{word-spacing:210.813867pt;}
.ws170{word-spacing:221.480000pt;}
.ws165{word-spacing:230.439467pt;}
.ws167{word-spacing:251.772800pt;}
.wsde{word-spacing:256.168000pt;}
.ws166{word-spacing:273.106133pt;}
.ws168{word-spacing:287.314133pt;}
.wse0{word-spacing:292.661867pt;}
.ws164{word-spacing:301.522133pt;}
.ws169{word-spacing:312.188800pt;}
.wse9{word-spacing:940.272000pt;}
.wsf{word-spacing:964.272000pt;}
._65{margin-left:-843.991370pt;}
._63{margin-left:-522.749894pt;}
._61{margin-left:-490.701849pt;}
._62{margin-left:-304.562362pt;}
._16{margin-left:-199.736606pt;}
._5c{margin-left:-152.025886pt;}
._5e{margin-left:-145.497290pt;}
._66{margin-left:-142.261272pt;}
._69{margin-left:-140.889744pt;}
._4a{margin-left:-130.666667pt;}
._17{margin-left:-120.853333pt;}
._43{margin-left:-119.310036pt;}
._10{margin-left:-111.191418pt;}
._6b{margin-left:-95.493596pt;}
._11{margin-left:-92.364371pt;}
._5d{margin-left:-73.510548pt;}
._4b{margin-left:-64.000000pt;}
._5f{margin-left:-56.275766pt;}
._f{margin-left:-53.416235pt;}
._7{margin-left:-51.927091pt;}
._e{margin-left:-47.719936pt;}
._68{margin-left:-45.702144pt;}
._64{margin-left:-40.669042pt;}
._b{margin-left:-38.960533pt;}
._8{margin-left:-37.540537pt;}
._d{margin-left:-34.446485pt;}
._a{margin-left:-32.780587pt;}
._60{margin-left:-18.077355pt;}
._6a{margin-left:-17.035795pt;}
._13{margin-left:-14.883121pt;}
._8d{margin-left:-6.432000pt;}
._1{margin-left:-5.504000pt;}
._5{margin-left:-4.437333pt;}
._3{margin-left:-3.114667pt;}
._0{margin-left:-2.133333pt;}
._2{margin-left:-1.152000pt;}
._c{width:1.182251pt;}
._26{width:2.346667pt;}
._12{width:4.824083pt;}
._15{width:6.492800pt;}
._6d{width:8.469867pt;}
._6c{width:9.949333pt;}
._14{width:10.897600pt;}
._9{width:12.426667pt;}
._67{width:23.638933pt;}
._6e{width:34.000000pt;}
._6f{width:35.178667pt;}
._4c{width:47.733333pt;}
._59{width:65.333333pt;}
._4e{width:66.666667pt;}
._48{width:96.811733pt;}
._45{width:98.000000pt;}
._47{width:99.333333pt;}
._6{width:103.146667pt;}
._44{width:109.333333pt;}
._5a{width:113.552000pt;}
._5b{width:116.480000pt;}
._46{width:121.466667pt;}
._33{width:130.477333pt;}
._3b{width:136.225600pt;}
._4{width:141.549333pt;}
._54{width:151.987733pt;}
._3a{width:160.200000pt;}
._37{width:168.398400pt;}
._83{width:172.598933pt;}
._3c{width:175.002133pt;}
._40{width:176.210133pt;}
._3e{width:186.597867pt;}
._19{width:189.373333pt;}
._81{width:192.196267pt;}
._86{width:193.932800pt;}
._72{width:195.707733pt;}
._76{width:202.641067pt;}
._36{width:205.603733pt;}
._51{width:206.942400pt;}
._71{width:212.027733pt;}
._35{width:218.681067pt;}
._7e{width:221.480533pt;}
._34{width:228.153067pt;}
._1a{width:230.141333pt;}
._38{width:241.190933pt;}
._1b{width:245.160000pt;}
._79{width:251.773333pt;}
._78{width:254.993067pt;}
._32{width:257.465067pt;}
._42{width:258.847467pt;}
._39{width:261.252267pt;}
._77{width:262.440000pt;}
._21{width:266.834667pt;}
._41{width:275.470400pt;}
._3d{width:277.252267pt;}
._30{width:278.691733pt;}
._50{width:281.779733pt;}
._82{width:282.989333pt;}
._1c{width:287.211733pt;}
._57{width:291.123733pt;}
._75{width:292.881067pt;}
._7d{width:294.821867pt;}
._2e{width:295.727467pt;}
._73{width:297.980800pt;}
._70{width:303.462400pt;}
._74{width:305.085333pt;}
._3f{width:311.591467pt;}
._55{width:312.627733pt;}
._80{width:325.656000pt;}
._4d{width:326.622400pt;}
._4f{width:329.011733pt;}
._1e{width:341.501333pt;}
._58{width:343.475733pt;}
._84{width:347.003200pt;}
._1f{width:349.060267pt;}
._52{width:352.691733pt;}
._7f{width:354.072000pt;}
._85{width:369.005333pt;}
._56{width:381.363733pt;}
._7c{width:383.063467pt;}
._7a{width:384.123200pt;}
._49{width:388.416149pt;}
._31{width:401.517333pt;}
._89{width:403.821867pt;}
._53{width:413.278400pt;}
._18{width:416.481600pt;}
._88{width:483.238400pt;}
._7b{width:517.477867pt;}
._87{width:712.953067pt;}
._28{width:726.979733pt;}
._24{width:781.934400pt;}
._2f{width:793.625067pt;}
._8a{width:826.829867pt;}
._8c{width:832.718400pt;}
._2d{width:841.113067pt;}
._23{width:856.772267pt;}
._2b{width:866.115733pt;}
._8b{width:881.315733pt;}
._29{width:887.619733pt;}
._20{width:901.614933pt;}
._22{width:904.003733pt;}
._2c{width:918.468267pt;}
._25{width:927.683733pt;}
._2a{width:956.356267pt;}
._1d{width:963.408149pt;}
._27{width:988.270933pt;}
.fs30{font-size:27.984000pt;}
.fs1a{font-size:29.732267pt;}
.fs1d{font-size:30.251733pt;}
.fs26{font-size:30.369600pt;}
.fs15{font-size:30.377600pt;}
.fs13{font-size:30.439467pt;}
.fs29{font-size:30.694933pt;}
.fs10{font-size:30.833067pt;}
.fs20{font-size:30.977600pt;}
.fse{font-size:31.067733pt;}
.fs2d{font-size:31.330667pt;}
.fs2f{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:39.398400pt;}
.fs11{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs24{font-size:49.230933pt;}
.fs23{font-size:50.408272pt;}
.fs19{font-size:51.428800pt;}
.fs1c{font-size:52.326933pt;}
.fs25{font-size:52.531200pt;}
.fs14{font-size:52.545067pt;}
.fs12{font-size:52.652267pt;}
.fs1b{font-size:52.658628pt;}
.fs8{font-size:52.800000pt;}
.fs28{font-size:53.094400pt;}
.fs3{font-size:53.333333pt;}
.fs1e{font-size:53.578299pt;}
.fs21{font-size:53.582400pt;}
.fsd{font-size:53.738667pt;}
.fs27{font-size:53.787420pt;}
.fs17{font-size:53.801651pt;}
.fs2c{font-size:54.193600pt;}
.fs2b{font-size:54.608750pt;}
.fs1f{font-size:54.863802pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:68.148267pt;}
.fsc{font-size:69.777950pt;}
.fs16{font-size:70.568000pt;}
.fs18{font-size:71.626667pt;}
.fs22{font-size:71.961600pt;}
.fs2e{font-size:80.910933pt;}
.fs2a{font-size:85.269333pt;}
.fsf{font-size:86.304533pt;}
.fs2{font-size:90.666667pt;}
.y95{bottom:-1.614933pt;}
.y0{bottom:0.000000pt;}
.yf0{bottom:1.383600pt;}
.y166{bottom:2.138400pt;}
.y94{bottom:2.963867pt;}
.y151{bottom:3.082400pt;}
.yaa{bottom:3.083733pt;}
.y142{bottom:3.337733pt;}
.y12f{bottom:3.402400pt;}
.y127{bottom:4.416667pt;}
.y124{bottom:4.687200pt;}
.yef{bottom:4.880133pt;}
.y98{bottom:5.601067pt;}
.y153{bottom:6.665733pt;}
.y9e{bottom:6.666267pt;}
.ya1{bottom:6.667067pt;}
.y143{bottom:6.867067pt;}
.y137{bottom:6.885733pt;}
.y130{bottom:6.918133pt;}
.y129{bottom:6.958267pt;}
.y12c{bottom:7.142400pt;}
.y123{bottom:7.191333pt;}
.y9c{bottom:7.280400pt;}
.y14b{bottom:7.497467pt;}
.y13a{bottom:7.589333pt;}
.y158{bottom:7.593467pt;}
.y135{bottom:7.932400pt;}
.y126{bottom:8.000000pt;}
.y122{bottom:8.217600pt;}
.y99{bottom:9.211600pt;}
.y147{bottom:9.405467pt;}
.yf1{bottom:10.789395pt;}
.y14d{bottom:15.378667pt;}
.y5{bottom:59.133337pt;}
.yb8{bottom:75.590533pt;}
.y39{bottom:77.487733pt;}
.y15a{bottom:78.148000pt;}
.y167{bottom:79.586533pt;}
.yf7{bottom:80.923867pt;}
.yaf{bottom:80.924000pt;}
.yb0{bottom:80.924133pt;}
.yb1{bottom:80.924267pt;}
.yb2{bottom:80.924400pt;}
.yb3{bottom:80.924533pt;}
.yb4{bottom:80.924667pt;}
.yb5{bottom:80.924800pt;}
.yb6{bottom:80.924933pt;}
.yb7{bottom:80.925067pt;}
.y182{bottom:83.149733pt;}
.y184{bottom:83.149867pt;}
.y186{bottom:83.150000pt;}
.y188{bottom:83.150267pt;}
.y18a{bottom:83.150400pt;}
.y18c{bottom:83.150533pt;}
.y18e{bottom:83.150667pt;}
.y191{bottom:83.150800pt;}
.y194{bottom:83.151067pt;}
.y196{bottom:83.151200pt;}
.y15b{bottom:83.253642pt;}
.y1be{bottom:85.217333pt;}
.y11f{bottom:86.001333pt;}
.y4{bottom:86.333337pt;}
.y82{bottom:87.481333pt;}
.y5c{bottom:88.814667pt;}
.y168{bottom:93.186533pt;}
.yf4{bottom:95.217333pt;}
.y159{bottom:95.481333pt;}
.y38{bottom:101.298667pt;}
.y1bd{bottom:102.550667pt;}
.y11e{bottom:103.334667pt;}
.y81{bottom:104.814667pt;}
.y5b{bottom:106.148000pt;}
.y37{bottom:113.298667pt;}
.yee{bottom:116.016000pt;}
.yf3{bottom:117.040667pt;}
.y157{bottom:118.809333pt;}
.y1bc{bottom:119.884000pt;}
.y11d{bottom:120.668000pt;}
.yed{bottom:120.896133pt;}
.y80{bottom:122.147867pt;}
.y5a{bottom:123.481200pt;}
.y20{bottom:123.790666pt;}
.y155{bottom:124.243467pt;}
.yf2{bottom:126.809200pt;}
.y156{bottom:127.884667pt;}
.y154{bottom:130.147867pt;}
.y1bb{bottom:137.217333pt;}
.y11c{bottom:138.001333pt;}
.y7f{bottom:139.481200pt;}
.y59{bottom:140.814533pt;}
.yec{bottom:144.909067pt;}
.y1ba{bottom:154.550667pt;}
.y11b{bottom:155.334667pt;}
.y7e{bottom:156.814533pt;}
.yea{bottom:156.909067pt;}
.y58{bottom:158.147867pt;}
.y150{bottom:158.201333pt;}
.y14f{bottom:161.283733pt;}
.y14e{bottom:164.814533pt;}
.y152{bottom:164.867067pt;}
.yeb{bottom:168.909067pt;}
.y1b9{bottom:171.884000pt;}
.y11a{bottom:172.668000pt;}
.y7d{bottom:174.147867pt;}
.y17{bottom:175.052000pt;}
.y57{bottom:175.481200pt;}
.y16a{bottom:182.971200pt;}
.ye9{bottom:183.863867pt;}
.yae{bottom:185.679467pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y1b8{bottom:189.217333pt;}
.y119{bottom:190.001333pt;}
.y146{bottom:190.032000pt;}
.y7c{bottom:191.481200pt;}
.y56{bottom:192.814533pt;}
.ye7{bottom:195.863867pt;}
.y149{bottom:195.870267pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y148{bottom:199.437467pt;}
.y145{bottom:199.481200pt;}
.y14a{bottom:205.408717pt;}
.y14c{bottom:205.410667pt;}
.y1b7{bottom:206.550667pt;}
.y118{bottom:207.334667pt;}
.y170{bottom:207.776133pt;}
.y172{bottom:207.776267pt;}
.ye8{bottom:207.863867pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y7b{bottom:208.814533pt;}
.y55{bottom:210.147867pt;}
.y171{bottom:213.109467pt;}
.ye6{bottom:222.818800pt;}
.y1b6{bottom:223.884000pt;}
.y117{bottom:224.668000pt;}
.y141{bottom:225.644000pt;}
.y7a{bottom:226.147867pt;}
.y54{bottom:227.481200pt;}
.ye5{bottom:228.818800pt;}
.y140{bottom:228.981733pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y144{bottom:232.511067pt;}
.y13f{bottom:234.147867pt;}
.y1b5{bottom:241.217333pt;}
.y183{bottom:241.889867pt;}
.y185{bottom:241.890000pt;}
.y187{bottom:241.890133pt;}
.y189{bottom:241.890400pt;}
.y18b{bottom:241.890533pt;}
.y18d{bottom:241.890667pt;}
.y18f{bottom:241.890800pt;}
.y192{bottom:241.891067pt;}
.y193{bottom:241.891200pt;}
.y116{bottom:242.001333pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y79{bottom:243.481200pt;}
.y175{bottom:244.069200pt;}
.y53{bottom:244.814533pt;}
.y173{bottom:249.342533pt;}
.ye4{bottom:249.773733pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y174{bottom:254.607867pt;}
.ye2{bottom:255.773733pt;}
.y1b4{bottom:258.550667pt;}
.y115{bottom:259.334667pt;}
.y78{bottom:260.814533pt;}
.ye1{bottom:261.773733pt;}
.y52{bottom:262.147867pt;}
.yf6{bottom:264.448800pt;}
.y13e{bottom:268.814533pt;}
.ye3{bottom:273.773733pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y1b3{bottom:275.884000pt;}
.y114{bottom:276.668000pt;}
.y77{bottom:278.147867pt;}
.y51{bottom:279.481200pt;}
.y16b{bottom:285.018400pt;}
.y13d{bottom:286.147867pt;}
.y36{bottom:286.578400pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.ye0{bottom:288.728533pt;}
.y1b2{bottom:293.217333pt;}
.y113{bottom:294.001333pt;}
.y76{bottom:295.481200pt;}
.y50{bottom:296.814533pt;}
.yde{bottom:300.728533pt;}
.y13c{bottom:303.481200pt;}
.ye{bottom:309.452000pt;}
.y1b1{bottom:310.550667pt;}
.y112{bottom:311.334667pt;}
.ydd{bottom:312.728533pt;}
.y75{bottom:312.814533pt;}
.y4f{bottom:314.147867pt;}
.y35{bottom:318.578400pt;}
.y13b{bottom:320.814533pt;}
.y190{bottom:321.260933pt;}
.y195{bottom:321.261200pt;}
.y169{bottom:321.294533pt;}
.ydf{bottom:324.728533pt;}
.y1b0{bottom:327.884000pt;}
.y111{bottom:328.668000pt;}
.y74{bottom:330.147867pt;}
.y177{bottom:330.489867pt;}
.y139{bottom:330.589333pt;}
.y4e{bottom:331.481200pt;}
.y34{bottom:334.578400pt;}
.y138{bottom:338.147867pt;}
.ydc{bottom:339.683467pt;}
.yd{bottom:343.809333pt;}
.y176{bottom:344.282000pt;}
.y1af{bottom:345.217333pt;}
.y110{bottom:346.001333pt;}
.y73{bottom:347.481200pt;}
.y134{bottom:347.921333pt;}
.y4d{bottom:348.814533pt;}
.yda{bottom:351.683467pt;}
.y136{bottom:352.253600pt;}
.y132{bottom:355.481200pt;}
.y133{bottom:355.853733pt;}
.y1ae{bottom:362.550667pt;}
.yc{bottom:362.706666pt;}
.y10f{bottom:363.334667pt;}
.yd9{bottom:363.683467pt;}
.y72{bottom:364.814533pt;}
.y4c{bottom:366.147867pt;}
.y33{bottom:366.578400pt;}
.yf5{bottom:373.945200pt;}
.ya8{bottom:375.533333pt;}
.yad{bottom:375.667867pt;}
.ydb{bottom:375.683467pt;}
.y1ad{bottom:379.884000pt;}
.y10e{bottom:380.668000pt;}
.y71{bottom:382.147867pt;}
.ya9{bottom:382.200400pt;}
.y32{bottom:382.578400pt;}
.y92{bottom:383.481200pt;}
.y16c{bottom:387.065600pt;}
.yab{bottom:388.200400pt;}
.y12e{bottom:390.148000pt;}
.yd8{bottom:390.638400pt;}
.y131{bottom:393.550400pt;}
.y12d{bottom:397.066133pt;}
.y1ac{bottom:397.217333pt;}
.y10d{bottom:398.001333pt;}
.y31{bottom:398.578400pt;}
.y4b{bottom:399.481200pt;}
.y91{bottom:400.814533pt;}
.yd6{bottom:402.638400pt;}
.yac{bottom:406.895867pt;}
.y179{bottom:409.860000pt;}
.y1ab{bottom:414.550667pt;}
.y30{bottom:414.578400pt;}
.yd5{bottom:414.638400pt;}
.y10c{bottom:415.334667pt;}
.y178{bottom:416.164000pt;}
.y70{bottom:416.814533pt;}
.y90{bottom:418.147867pt;}
.ya7{bottom:422.865109pt;}
.yd7{bottom:426.638400pt;}
.ya4{bottom:427.533333pt;}
.y2f{bottom:430.578400pt;}
.y1aa{bottom:431.884000pt;}
.y10b{bottom:432.668000pt;}
.y6f{bottom:434.147867pt;}
.ya5{bottom:434.200400pt;}
.y8f{bottom:435.481200pt;}
.ya6{bottom:440.198442pt;}
.yd4{bottom:444.191733pt;}
.y2e{bottom:446.578400pt;}
.y1a9{bottom:449.217333pt;}
.y10a{bottom:450.001333pt;}
.y6e{bottom:451.481200pt;}
.y8e{bottom:452.814533pt;}
.yd3{bottom:461.745067pt;}
.y2d{bottom:462.578400pt;}
.yb{bottom:462.990669pt;}
.y12b{bottom:464.090667pt;}
.y1a8{bottom:466.550667pt;}
.y109{bottom:467.334667pt;}
.yd2{bottom:467.745067pt;}
.y12a{bottom:467.777733pt;}
.y6d{bottom:468.814533pt;}
.y8d{bottom:470.147867pt;}
.y4a{bottom:474.147867pt;}
.ya3{bottom:474.865109pt;}
.y2c{bottom:478.578400pt;}
.ya{bottom:478.990666pt;}
.ya0{bottom:479.533333pt;}
.y1a7{bottom:483.884000pt;}
.y108{bottom:484.668000pt;}
.y6c{bottom:486.147867pt;}
.ya2{bottom:486.200400pt;}
.y8c{bottom:487.481200pt;}
.yd1{bottom:488.700000pt;}
.y16d{bottom:489.112933pt;}
.y17b{bottom:489.230133pt;}
.y2b{bottom:494.578400pt;}
.y9{bottom:494.990666pt;}
.y17a{bottom:495.832800pt;}
.yd0{bottom:500.700000pt;}
.yce{bottom:500.755200pt;}
.y1a6{bottom:501.217333pt;}
.y107{bottom:502.001333pt;}
.y6b{bottom:503.481200pt;}
.y8b{bottom:504.814533pt;}
.y49{bottom:508.814533pt;}
.y2a{bottom:510.578400pt;}
.ycf{bottom:512.700000pt;}
.y9d{bottom:513.256000pt;}
.y9f{bottom:516.338933pt;}
.y1a5{bottom:518.550667pt;}
.y106{bottom:519.334667pt;}
.y6a{bottom:520.814533pt;}
.y8a{bottom:522.147867pt;}
.y48{bottom:524.814533pt;}
.y29{bottom:526.578400pt;}
.ycd{bottom:527.654800pt;}
.y97{bottom:529.644000pt;}
.y96{bottom:535.245067pt;}
.y1a4{bottom:535.884000pt;}
.y105{bottom:536.668000pt;}
.y69{bottom:538.147867pt;}
.y9a{bottom:538.855600pt;}
.y89{bottom:539.481200pt;}
.ycc{bottom:539.654800pt;}
.y9b{bottom:544.901200pt;}
.yc9{bottom:545.654800pt;}
.y125{bottom:546.977333pt;}
.ycb{bottom:551.654800pt;}
.y1a3{bottom:553.217333pt;}
.y104{bottom:554.001333pt;}
.y128{bottom:554.977333pt;}
.y68{bottom:555.481200pt;}
.y47{bottom:556.814533pt;}
.y28{bottom:558.578400pt;}
.yca{bottom:563.654800pt;}
.y93{bottom:568.089333pt;}
.y17d{bottom:568.600133pt;}
.y17c{bottom:569.330800pt;}
.y1a2{bottom:570.550667pt;}
.y103{bottom:571.334667pt;}
.y83{bottom:571.481200pt;}
.y46{bottom:572.814533pt;}
.y8{bottom:573.786667pt;}
.y88{bottom:574.147867pt;}
.yc8{bottom:578.499200pt;}
.y1a1{bottom:587.884000pt;}
.y102{bottom:588.668000pt;}
.y45{bottom:588.814533pt;}
.y67{bottom:590.147867pt;}
.yc7{bottom:590.499200pt;}
.y16e{bottom:591.160133pt;}
.y87{bottom:591.481200pt;}
.y7{bottom:592.685334pt;}
.yc4{bottom:596.499200pt;}
.y121{bottom:599.921333pt;}
.y165{bottom:601.812000pt;}
.yc6{bottom:602.499200pt;}
.y120{bottom:604.608533pt;}
.y44{bottom:604.814533pt;}
.y1a0{bottom:605.217333pt;}
.y101{bottom:606.001333pt;}
.y66{bottom:607.481200pt;}
.y86{bottom:608.814533pt;}
.yc5{bottom:614.499200pt;}
.y43{bottom:620.814533pt;}
.y19f{bottom:622.550667pt;}
.y100{bottom:623.334667pt;}
.y65{bottom:624.814533pt;}
.y85{bottom:626.147867pt;}
.yc3{bottom:629.343600pt;}
.y42{bottom:636.814533pt;}
.y17e{bottom:639.292933pt;}
.y19e{bottom:639.884000pt;}
.yff{bottom:640.668000pt;}
.yc1{bottom:641.343600pt;}
.y27{bottom:641.885067pt;}
.y64{bottom:642.147867pt;}
.y6{bottom:645.598667pt;}
.y17f{bottom:647.970267pt;}
.y41{bottom:652.814533pt;}
.y162{bottom:652.866667pt;}
.yc2{bottom:653.343600pt;}
.y163{bottom:655.950400pt;}
.y19d{bottom:657.217333pt;}
.yfe{bottom:658.001333pt;}
.y63{bottom:659.481200pt;}
.y164{bottom:659.533733pt;}
.y84{bottom:660.814533pt;}
.yc0{bottom:668.187867pt;}
.y40{bottom:668.814533pt;}
.y3{bottom:668.977329pt;}
.y15f{bottom:670.200000pt;}
.y19c{bottom:674.550667pt;}
.yfd{bottom:675.334667pt;}
.y62{bottom:676.814533pt;}
.y160{bottom:676.867067pt;}
.ybe{bottom:680.187867pt;}
.y161{bottom:682.867067pt;}
.y3f{bottom:684.814667pt;}
.y19b{bottom:691.884000pt;}
.ybf{bottom:692.187867pt;}
.yfc{bottom:692.668000pt;}
.y16f{bottom:693.207333pt;}
.y61{bottom:694.148000pt;}
.y26{bottom:695.220533pt;}
.y3e{bottom:700.814667pt;}
.ybd{bottom:707.032267pt;}
.y19a{bottom:709.217333pt;}
.yfb{bottom:710.001333pt;}
.y25{bottom:711.060533pt;}
.y60{bottom:711.481333pt;}
.ybc{bottom:713.032267pt;}
.y3d{bottom:716.814667pt;}
.y199{bottom:726.550667pt;}
.y24{bottom:726.900533pt;}
.yfa{bottom:727.334667pt;}
.y181{bottom:727.340267pt;}
.y5f{bottom:728.814667pt;}
.y15d{bottom:728.867200pt;}
.y3c{bottom:732.814667pt;}
.y15e{bottom:734.865109pt;}
.ybb{bottom:736.829867pt;}
.y180{bottom:736.902933pt;}
.y198{bottom:743.884000pt;}
.y23{bottom:744.180533pt;}
.yf9{bottom:744.668000pt;}
.y5e{bottom:746.148000pt;}
.y3b{bottom:748.814667pt;}
.yba{bottom:760.956133pt;}
.y5d{bottom:763.481333pt;}
.y15c{bottom:768.586975pt;}
.y197{bottom:777.217333pt;}
.yb9{bottom:778.289467pt;}
.yf8{bottom:779.334667pt;}
.y3a{bottom:780.814667pt;}
.y2{bottom:781.661334pt;}
.y21{bottom:813.095333pt;}
.y22{bottom:814.006000pt;}
.y1{bottom:859.312000pt;}
.h49{height:18.666667pt;}
.h3b{height:19.998667pt;}
.h16{height:20.000000pt;}
.h5e{height:20.344368pt;}
.h3a{height:20.812587pt;}
.h40{height:21.176213pt;}
.h4c{height:21.258720pt;}
.h31{height:21.264320pt;}
.h2d{height:21.307627pt;}
.h26{height:21.333333pt;}
.h52{height:21.486453pt;}
.h27{height:21.583147pt;}
.h3e{height:21.615358pt;}
.h1c{height:21.747413pt;}
.h58{height:21.931467pt;}
.h4f{height:22.078699pt;}
.h36{height:22.084515pt;}
.h2e{height:22.129492pt;}
.h56{height:22.315217pt;}
.h25{height:22.415639pt;}
.h45{height:22.520715pt;}
.h20{height:22.586242pt;}
.h32{height:22.666667pt;}
.h1d{height:25.333333pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h18{height:28.642637pt;}
.h28{height:29.080000pt;}
.h15{height:29.866667pt;}
.h2a{height:30.625000pt;}
.hd{height:31.018667pt;}
.h13{height:32.957333pt;}
.hc{height:34.896000pt;}
.h4a{height:35.033749pt;}
.h3c{height:35.743016pt;}
.h4b{height:35.790889pt;}
.h10{height:36.053333pt;}
.h42{height:36.367219pt;}
.h4d{height:36.509184pt;}
.h33{height:36.518821pt;}
.h3d{height:36.597746pt;}
.h3f{height:36.628853pt;}
.h2c{height:36.856587pt;}
.h53{height:36.900608pt;}
.h37{height:37.066667pt;}
.hf{height:37.118400pt;}
.h51{height:37.166080pt;}
.h41{height:37.236918pt;}
.h48{height:37.283200pt;}
.h11{height:37.333333pt;}
.h1e{height:37.348373pt;}
.h4e{height:37.382257pt;}
.h35{height:37.392147pt;}
.h59{height:37.664552pt;}
.h57{height:37.953081pt;}
.h44{height:38.130343pt;}
.h50{height:38.190182pt;}
.h24{height:38.563200pt;}
.h55{height:38.599629pt;}
.h12{height:38.773333pt;}
.h46{height:38.954405pt;}
.h1f{height:39.068011pt;}
.h5d{height:39.097600pt;}
.h5b{height:39.398747pt;}
.h30{height:39.412480pt;}
.he{height:40.320000pt;}
.h1b{height:40.448000pt;}
.h7{height:40.853333pt;}
.h22{height:41.322667pt;}
.h14{height:42.346667pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h5c{height:44.401339pt;}
.h39{height:45.674293pt;}
.h19{height:47.363045pt;}
.h1a{height:48.495675pt;}
.h2{height:49.024000pt;}
.h34{height:49.044760pt;}
.h17{height:49.543790pt;}
.h38{height:49.780533pt;}
.h47{height:50.013312pt;}
.h5f{height:50.816000pt;}
.h43{height:52.104614pt;}
.h2b{height:54.625000pt;}
.h29{height:55.018667pt;}
.h5a{height:56.233099pt;}
.h23{height:56.675733pt;}
.h54{height:59.262187pt;}
.h21{height:59.981651pt;}
.h2f{height:63.596800pt;}
.h5{height:69.450667pt;}
.h4{height:105.826671pt;}
.ha{height:869.292000pt;}
.hb{height:869.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w9{width:23.644000pt;}
.w8{width:28.960000pt;}
.w11{width:32.000000pt;}
.w18{width:35.905333pt;}
.w17{width:41.333333pt;}
.wd{width:50.666667pt;}
.w7{width:53.542667pt;}
.wf{width:69.332000pt;}
.we{width:72.000000pt;}
.w16{width:74.666667pt;}
.wa{width:74.668000pt;}
.wb{width:77.333333pt;}
.w5{width:122.666667pt;}
.w14{width:156.000000pt;}
.w15{width:168.000000pt;}
.w12{width:174.665333pt;}
.wc{width:266.668000pt;}
.w10{width:286.666667pt;}
.w13{width:294.342667pt;}
.w6{width:353.333333pt;}
.w4{width:566.666667pt;}
.w2{width:566.928019pt;}
.w3{width:566.929333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6a{left:2.041867pt;}
.xc{left:4.738267pt;}
.x68{left:7.333600pt;}
.x71{left:10.096667pt;}
.xd{left:11.286933pt;}
.x62{left:12.315200pt;}
.x78{left:13.461467pt;}
.x6d{left:15.548933pt;}
.x14{left:16.457733pt;}
.x51{left:17.687733pt;}
.xe{left:20.497600pt;}
.x53{left:21.595600pt;}
.x65{left:23.029467pt;}
.x87{left:25.784133pt;}
.x17{left:26.785733pt;}
.x93{left:31.878400pt;}
.xf{left:32.796133pt;}
.x6e{left:35.557867pt;}
.x76{left:40.605600pt;}
.x83{left:42.874933pt;}
.x7b{left:44.979867pt;}
.x84{left:52.708267pt;}
.x6{left:75.590533pt;}
.xb3{left:76.923867pt;}
.x8b{left:78.257200pt;}
.x46{left:80.642000pt;}
.x40{left:82.121200pt;}
.x10{left:84.067067pt;}
.x1b{left:86.275333pt;}
.x21{left:87.222400pt;}
.x41{left:88.490933pt;}
.x1{left:90.706667pt;}
.x1c{left:92.735451pt;}
.x2{left:94.486667pt;}
.x8c{left:95.635719pt;}
.x37{left:99.410533pt;}
.x49{left:101.826933pt;}
.x22{left:104.555733pt;}
.x50{left:106.845333pt;}
.x3b{left:108.242533pt;}
.x31{left:111.490533pt;}
.x32{left:112.471867pt;}
.x9{left:113.858267pt;}
.x82{left:115.083200pt;}
.x3e{left:116.037867pt;}
.x4c{left:117.959733pt;}
.x42{left:120.332133pt;}
.x47{left:123.886800pt;}
.xa3{left:125.528133pt;}
.x94{left:127.618667pt;}
.x55{left:131.863200pt;}
.x12{left:133.354667pt;}
.x73{left:136.370667pt;}
.x72{left:139.049867pt;}
.x11{left:142.423333pt;}
.x74{left:146.417467pt;}
.x67{left:147.584000pt;}
.x61{left:150.257333pt;}
.x56{left:153.028533pt;}
.x95{left:154.683467pt;}
.x23{left:155.768667pt;}
.xa4{left:161.569733pt;}
.x52{left:163.251200pt;}
.x69{left:168.209200pt;}
.x96{left:172.635467pt;}
.x57{left:174.193867pt;}
.x15{left:176.472000pt;}
.x63{left:178.981733pt;}
.x4{left:180.874667pt;}
.x75{left:182.292667pt;}
.xa5{left:188.026400pt;}
.x97{left:190.587467pt;}
.x66{left:194.047467pt;}
.x58{left:195.359200pt;}
.x24{left:197.343467pt;}
.x6b{left:198.250933pt;}
.xa6{left:201.254800pt;}
.x81{left:204.470667pt;}
.x79{left:206.470533pt;}
.x98{left:208.539467pt;}
.x30{left:210.376533pt;}
.x86{left:213.906133pt;}
.x59{left:216.524667pt;}
.x25{left:218.130800pt;}
.xb{left:220.257333pt;}
.x64{left:221.797867pt;}
.x7a{left:226.080533pt;}
.xa7{left:227.711467pt;}
.x7c{left:232.203867pt;}
.x5a{left:237.690000pt;}
.x26{left:238.918267pt;}
.x80{left:240.012267pt;}
.xa8{left:240.939867pt;}
.x99{left:244.443467pt;}
.x1e{left:246.630667pt;}
.x70{left:248.798667pt;}
.x6f{left:251.414267pt;}
.xa9{left:254.168267pt;}
.x6c{left:255.401467pt;}
.xa{left:257.171200pt;}
.x8{left:258.657867pt;}
.x27{left:259.705600pt;}
.x9a{left:262.395333pt;}
.x85{left:264.012267pt;}
.x88{left:265.644000pt;}
.xaa{left:267.396533pt;}
.x19{left:270.292000pt;}
.x8d{left:279.405600pt;}
.x28{left:280.493067pt;}
.x1a{left:287.626267pt;}
.x8e{left:290.155467pt;}
.x8a{left:291.466251pt;}
.x13{left:293.507067pt;}
.x9b{left:298.299333pt;}
.x29{left:301.280400pt;}
.x1f{left:303.380533pt;}
.x18{left:305.063200pt;}
.xab{left:307.081600pt;}
.x38{left:309.587867pt;}
.x36{left:311.174800pt;}
.x44{left:312.951067pt;}
.x20{left:314.130533pt;}
.x43{left:315.617733pt;}
.x34{left:316.620133pt;}
.x3c{left:317.534400pt;}
.x35{left:318.433467pt;}
.x4a{left:319.326133pt;}
.xac{left:320.310000pt;}
.x2a{left:322.067867pt;}
.x48{left:323.169867pt;}
.x4b{left:333.383333pt;}
.x39{left:334.710800pt;}
.x4e{left:336.945867pt;}
.x33{left:340.193467pt;}
.x16{left:342.810667pt;}
.x7{left:344.847867pt;}
.x8f{left:346.990667pt;}
.x9c{left:352.155333pt;}
.x3d{left:353.232400pt;}
.x4d{left:354.721867pt;}
.x91{left:360.156933pt;}
.x1d{left:361.748652pt;}
.x2b{left:363.642667pt;}
.x3a{left:364.636133pt;}
.x9d{left:370.107333pt;}
.x45{left:373.672400pt;}
.x4f{left:376.339067pt;}
.x54{left:377.670800pt;}
.x3f{left:379.154267pt;}
.x90{left:382.531867pt;}
.x2c{left:384.430000pt;}
.x5b{left:385.847467pt;}
.x9e{left:388.059333pt;}
.x77{left:400.097333pt;}
.x3{left:404.408000pt;}
.x5c{left:407.012800pt;}
.x7d{left:410.064133pt;}
.xad{left:412.908400pt;}
.x7e{left:420.758444pt;}
.x9f{left:423.963200pt;}
.x2d{left:426.004933pt;}
.x5d{left:428.178267pt;}
.x7f{left:432.879867pt;}
.xae{left:439.365067pt;}
.xa0{left:441.915200pt;}
.x2e{left:446.792267pt;}
.x5e{left:449.343600pt;}
.xaf{left:452.593467pt;}
.x92{left:455.433333pt;}
.xa1{left:459.867200pt;}
.xb0{left:465.821867pt;}
.x2f{left:471.334000pt;}
.x60{left:473.338533pt;}
.x5f{left:477.727600pt;}
.x5{left:479.338533pt;}
.xb1{left:484.373333pt;}
.x89{left:485.549348pt;}
.xa2{left:491.743467pt;}
.xb2{left:497.790667pt;}
}




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