
    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_dc3a20c4d27f112be3c4e543.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_99a028ad7b8fff492fb1084a.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_b1f23d92db4e0a9e2ea47346.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;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_76ab6cacfc27727c9ea38d7a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_21bc76a20e94723a7baf904f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0d7467a60a5f36d08e6c5a58.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.723000;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_14eec2befe7794c74758cee6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011000;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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f74f1ad96ed28616a8c02e2f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.897000;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_484b089fa2d9277cb02779fa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.552000;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_a07dfd8de2cbd60d48fdfdaa.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c9ae53b5a6f0eb3c17bdbcc7.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b58ab2c1bd76e646b65d5268.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.008301;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_1963c248b3b5d02342620a94.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.703613;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_4d164c74daa6fa54e91266fa.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_9552378551fdc1cce496f173.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_1a221a9a69bb6397832949ef.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.008301;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_36694aec59151d4c588a3867.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.054688;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_b97eae251c1cfbbd9110c67c.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;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_b3fadfea7b12f36e752e8a74.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_19c9c6ef25f39b36b59af3f0.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.646000;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_8c76694c0ec6a83e564ee05e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.746000;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_02660a8cfe3146c10bea1124.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.740000;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_8a9b26d715c0775a3c27e88c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_d23f2cf036eccb3c0a62a207.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_72b8718a63e66dbc8d21d9ee.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_c8fe546a3be2c78551a648e0.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_1963c248b3b5d02342620a94.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.703613;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_104c473221ad5aacd8e65f76.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v8{vertical-align:-26.784000px;}
.v2{vertical-align:-19.530000px;}
.vc{vertical-align:-15.120000px;}
.v6{vertical-align:-11.316000px;}
.v9{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:6.510000px;}
.v3{vertical-align:15.119676px;}
.v1{vertical-align:21.702000px;}
.v5{vertical-align:37.436724px;}
.v4{vertical-align:40.677192px;}
.va{vertical-align:70.842000px;}
.v7{vertical-align:84.288000px;}
.ls5a{letter-spacing:-1.355400px;}
.ls5b{letter-spacing:-1.117800px;}
.ls3a{letter-spacing:-0.702000px;}
.ls37{letter-spacing:-0.450900px;}
.ls35{letter-spacing:-0.336672px;}
.ls9d{letter-spacing:-0.282564px;}
.ls9e{letter-spacing:-0.264528px;}
.ls32{letter-spacing:-0.216432px;}
.ls96{letter-spacing:-0.180360px;}
.ls39{letter-spacing:-0.174348px;}
.ls59{letter-spacing:-0.168336px;}
.ls97{letter-spacing:-0.162324px;}
.ls5f{letter-spacing:-0.156312px;}
.ls3c{letter-spacing:-0.138276px;}
.ls45{letter-spacing:-0.126252px;}
.ls2e{letter-spacing:-0.120240px;}
.ls57{letter-spacing:-0.114228px;}
.ls46{letter-spacing:-0.108216px;}
.ls30{letter-spacing:-0.096192px;}
.ls2c{letter-spacing:-0.090972px;}
.ls55{letter-spacing:-0.086184px;}
.ls31{letter-spacing:-0.084168px;}
.ls9f{letter-spacing:-0.078156px;}
.ls3d{letter-spacing:-0.072144px;}
.ls36{letter-spacing:-0.066132px;}
.ls3e{letter-spacing:-0.060120px;}
.ls98{letter-spacing:-0.054108px;}
.ls33{letter-spacing:-0.048096px;}
.ls40{letter-spacing:-0.042084px;}
.ls56{letter-spacing:-0.036072px;}
.ls44{letter-spacing:-0.030060px;}
.ls41{letter-spacing:-0.024048px;}
.ls9c{letter-spacing:-0.021600px;}
.ls3f{letter-spacing:-0.018036px;}
.ls9b{letter-spacing:-0.016200px;}
.ls2f{letter-spacing:-0.012024px;}
.ls3b{letter-spacing:-0.010800px;}
.ls38{letter-spacing:-0.006012px;}
.ls9a{letter-spacing:-0.005400px;}
.ls2d{letter-spacing:-0.004788px;}
.ls0{letter-spacing:0.000000px;}
.ls66{letter-spacing:0.000017px;}
.ls2a{letter-spacing:0.000124px;}
.lsa0{letter-spacing:0.000214px;}
.ls1{letter-spacing:0.000240px;}
.lsab{letter-spacing:0.000250px;}
.ls94{letter-spacing:0.000309px;}
.ls28{letter-spacing:0.000422px;}
.ls84{letter-spacing:0.000608px;}
.lsa{letter-spacing:0.000846px;}
.ls83{letter-spacing:0.000990px;}
.lsa7{letter-spacing:0.001203px;}
.ls10{letter-spacing:0.001518px;}
.ls95{letter-spacing:0.001541px;}
.lsb{letter-spacing:0.002016px;}
.ls85{letter-spacing:0.002220px;}
.ls11{letter-spacing:0.002224px;}
.ls93{letter-spacing:0.002338px;}
.lsac{letter-spacing:0.002403px;}
.ls8f{letter-spacing:0.002688px;}
.lsa5{letter-spacing:0.002818px;}
.lsa1{letter-spacing:0.003161px;}
.lsd{letter-spacing:0.003488px;}
.lsf{letter-spacing:0.003494px;}
.ls8{letter-spacing:0.003598px;}
.ls12{letter-spacing:0.003741px;}
.ls8d{letter-spacing:0.003859px;}
.ls8a{letter-spacing:0.004090px;}
.ls9{letter-spacing:0.004435px;}
.ls49{letter-spacing:0.004788px;}
.lsa9{letter-spacing:0.004800px;}
.ls19{letter-spacing:0.006012px;}
.ls1c{letter-spacing:0.010800px;}
.ls16{letter-spacing:0.012024px;}
.ls25{letter-spacing:0.018036px;}
.ls23{letter-spacing:0.021600px;}
.ls18{letter-spacing:0.024048px;}
.ls1b{letter-spacing:0.027000px;}
.ls24{letter-spacing:0.030060px;}
.ls20{letter-spacing:0.032400px;}
.ls1a{letter-spacing:0.036072px;}
.ls1d{letter-spacing:0.037800px;}
.ls26{letter-spacing:0.042084px;}
.ls13{letter-spacing:0.047880px;}
.ls17{letter-spacing:0.048096px;}
.ls1e{letter-spacing:0.048600px;}
.ls22{letter-spacing:0.054000px;}
.ls27{letter-spacing:0.054108px;}
.ls47{letter-spacing:0.057456px;}
.ls91{letter-spacing:0.059400px;}
.ls4b{letter-spacing:0.060120px;}
.ls4a{letter-spacing:0.064800px;}
.ls4f{letter-spacing:0.066132px;}
.ls50{letter-spacing:0.072144px;}
.ls43{letter-spacing:0.078156px;}
.ls42{letter-spacing:0.084168px;}
.ls92{letter-spacing:0.086400px;}
.ls34{letter-spacing:0.090180px;}
.ls4c{letter-spacing:0.096192px;}
.ls4d{letter-spacing:0.102204px;}
.ls4e{letter-spacing:0.108216px;}
.ls1f{letter-spacing:0.124200px;}
.ls51{letter-spacing:0.126252px;}
.ls90{letter-spacing:0.138276px;}
.ls21{letter-spacing:0.145800px;}
.ls5c{letter-spacing:0.150300px;}
.ls60{letter-spacing:0.162324px;}
.ls5e{letter-spacing:0.168336px;}
.ls15{letter-spacing:0.172368px;}
.ls61{letter-spacing:0.174348px;}
.ls99{letter-spacing:0.180360px;}
.ls14{letter-spacing:0.181944px;}
.ls5d{letter-spacing:0.186372px;}
.ls48{letter-spacing:0.191520px;}
.ls58{letter-spacing:0.192384px;}
.lsa2{letter-spacing:0.524565px;}
.lsa3{letter-spacing:0.530447px;}
.ls6d{letter-spacing:0.542815px;}
.ls6c{letter-spacing:0.570571px;}
.ls78{letter-spacing:0.670741px;}
.ls72{letter-spacing:0.676741px;}
.ls71{letter-spacing:0.742601px;}
.ls7d{letter-spacing:0.743675px;}
.ls7a{letter-spacing:0.747292px;}
.ls73{letter-spacing:0.748200px;}
.ls77{letter-spacing:0.749108px;}
.ls79{letter-spacing:0.749675px;}
.lse{letter-spacing:1.275394px;}
.ls80{letter-spacing:1.420741px;}
.ls29{letter-spacing:1.494390px;}
.ls6{letter-spacing:1.861130px;}
.ls63{letter-spacing:2.266766px;}
.ls6e{letter-spacing:2.272766px;}
.ls62{letter-spacing:2.988571px;}
.ls8b{letter-spacing:2.988600px;}
.ls2{letter-spacing:2.989200px;}
.ls76{letter-spacing:7.174200px;}
.ls7c{letter-spacing:11.628124px;}
.lsc{letter-spacing:11.954850px;}
.ls7b{letter-spacing:12.292741px;}
.ls7f{letter-spacing:12.339483px;}
.ls7e{letter-spacing:12.369292px;}
.ls89{letter-spacing:12.700002px;}
.ls70{letter-spacing:13.078200px;}
.lsa4{letter-spacing:13.448400px;}
.ls8c{letter-spacing:13.448870px;}
.lsa6{letter-spacing:13.454400px;}
.lsaa{letter-spacing:13.502207px;}
.lsa8{letter-spacing:13.599380px;}
.ls53{letter-spacing:14.789113px;}
.ls54{letter-spacing:14.795059px;}
.ls86{letter-spacing:14.796097px;}
.ls87{letter-spacing:14.797400px;}
.ls7{letter-spacing:14.940124px;}
.ls88{letter-spacing:14.944200px;}
.ls68{letter-spacing:14.944766px;}
.ls82{letter-spacing:14.946124px;}
.ls67{letter-spacing:15.184671px;}
.ls8e{letter-spacing:16.440600px;}
.ls64{letter-spacing:17.325483px;}
.ls69{letter-spacing:17.350766px;}
.ls52{letter-spacing:17.680712px;}
.ls3{letter-spacing:17.929200px;}
.ls74{letter-spacing:18.022741px;}
.ls6b{letter-spacing:18.796766px;}
.ls2b{letter-spacing:20.114924px;}
.ls75{letter-spacing:24.495483px;}
.ls6a{letter-spacing:26.169483px;}
.ls65{letter-spacing:33.740100px;}
.ls4{letter-spacing:70.236600px;}
.ls5{letter-spacing:72.353510px;}
.ls81{letter-spacing:883.939200px;}
.ls6f{letter-spacing:1069.632600px;}
.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;}
}
.ws38{word-spacing:-60.120000px;}
.ws45{word-spacing:-46.065614px;}
.ws39{word-spacing:-36.000000px;}
.wsbe{word-spacing:-24.029791px;}
.ws8{word-spacing:-17.394700px;}
.ws44{word-spacing:-16.438290px;}
.wse2{word-spacing:-15.655334px;}
.ws3c{word-spacing:-15.054048px;}
.ws92{word-spacing:-15.030000px;}
.ws3b{word-spacing:-14.945832px;}
.wsd{word-spacing:-14.943900px;}
.ws20{word-spacing:-13.915795px;}
.ws3d{word-spacing:-13.500000px;}
.wsdc{word-spacing:-13.449600px;}
.ws91{word-spacing:-12.161520px;}
.ws37{word-spacing:-12.151944px;}
.ws1e{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws3a{word-spacing:-9.000000px;}
.wsd1{word-spacing:-5.499355px;}
.ws164{word-spacing:-4.626662px;}
.ws8f{word-spacing:-3.885414px;}
.wsee{word-spacing:-3.637260px;}
.wsf1{word-spacing:-3.619224px;}
.wsf0{word-spacing:-3.577140px;}
.ws5d{word-spacing:-3.498984px;}
.ws134{word-spacing:-3.281702px;}
.wsf2{word-spacing:-3.192372px;}
.ws5c{word-spacing:-3.162312px;}
.wsef{word-spacing:-3.144276px;}
.wsd7{word-spacing:-3.048556px;}
.ws63{word-spacing:-2.825640px;}
.ws105{word-spacing:-2.819628px;}
.ws62{word-spacing:-2.795580px;}
.ws64{word-spacing:-2.741472px;}
.ws66{word-spacing:-2.723436px;}
.ws139{word-spacing:-2.689920px;}
.wsab{word-spacing:-2.482956px;}
.ws77{word-spacing:-2.458908px;}
.ws65{word-spacing:-2.452896px;}
.ws25{word-spacing:-2.450800px;}
.ws106{word-spacing:-2.440872px;}
.ws107{word-spacing:-2.404800px;}
.wsaa{word-spacing:-2.392776px;}
.wsa9{word-spacing:-2.362716px;}
.wsc9{word-spacing:-2.271473px;}
.ws17a{word-spacing:-2.259533px;}
.ws61{word-spacing:-2.212416px;}
.ws157{word-spacing:-2.098138px;}
.ws162{word-spacing:-2.044339px;}
.wsd4{word-spacing:-1.912819px;}
.ws5{word-spacing:-1.908367px;}
.wsd3{word-spacing:-1.853044px;}
.ws17d{word-spacing:-1.829146px;}
.wsd2{word-spacing:-1.793268px;}
.ws15c{word-spacing:-1.775347px;}
.wsf4{word-spacing:-1.755504px;}
.ws104{word-spacing:-1.743480px;}
.wsd0{word-spacing:-1.733492px;}
.ws110{word-spacing:-1.683360px;}
.ws175{word-spacing:-1.667750px;}
.ws154{word-spacing:-1.613952px;}
.ws36{word-spacing:-1.554166px;}
.ws152{word-spacing:-1.452557px;}
.wsf6{word-spacing:-1.418832px;}
.ws141{word-spacing:-1.398758px;}
.ws8b{word-spacing:-1.370736px;}
.ws10d{word-spacing:-1.358712px;}
.ws9e{word-spacing:-1.346688px;}
.ws9d{word-spacing:-1.334664px;}
.ws8c{word-spacing:-1.322640px;}
.ws4{word-spacing:-1.322630px;}
.ws10c{word-spacing:-1.310616px;}
.wsf5{word-spacing:-1.298592px;}
.ws2d{word-spacing:-1.255288px;}
.ws169{word-spacing:-1.237363px;}
.ws2c{word-spacing:-1.195512px;}
.ws179{word-spacing:-1.183565px;}
.ws145{word-spacing:-1.075968px;}
.ws11e{word-spacing:-1.040076px;}
.ws142{word-spacing:-1.022170px;}
.wsb{word-spacing:-1.016185px;}
.ws15a{word-spacing:-0.968371px;}
.wsfd{word-spacing:-0.955800px;}
.ws11d{word-spacing:-0.949896px;}
.ws156{word-spacing:-0.914573px;}
.wscb{word-spacing:-0.896634px;}
.wsfe{word-spacing:-0.896400px;}
.ws8d{word-spacing:-0.865728px;}
.ws4e{word-spacing:-0.777083px;}
.ws4d{word-spacing:-0.776858px;}
.wsdb{word-spacing:-0.753178px;}
.ws95{word-spacing:-0.717307px;}
.ws131{word-spacing:-0.699379px;}
.ws7d{word-spacing:-0.661320px;}
.ws124{word-spacing:-0.657532px;}
.ws32{word-spacing:-0.597756px;}
.ws70{word-spacing:-0.594000px;}
.ws72{word-spacing:-0.561600px;}
.ws4c{word-spacing:-0.554620px;}
.wscc{word-spacing:-0.537980px;}
.ws71{word-spacing:-0.529200px;}
.ws8e{word-spacing:-0.523044px;}
.wse6{word-spacing:-0.478205px;}
.wsf9{word-spacing:-0.438876px;}
.wse7{word-spacing:-0.430387px;}
.wse5{word-spacing:-0.418429px;}
.wsb1{word-spacing:-0.390780px;}
.wsa6{word-spacing:-0.366732px;}
.ws54{word-spacing:-0.358654px;}
.wscd{word-spacing:-0.298878px;}
.ws7f{word-spacing:-0.288576px;}
.ws69{word-spacing:-0.282564px;}
.ws147{word-spacing:-0.268992px;}
.ws120{word-spacing:-0.264528px;}
.ws11f{word-spacing:-0.252504px;}
.ws1b{word-spacing:-0.239102px;}
.ws102{word-spacing:-0.234468px;}
.wse9{word-spacing:-0.215194px;}
.wsc{word-spacing:-0.179327px;}
.ws111{word-spacing:-0.162324px;}
.wse8{word-spacing:-0.161395px;}
.ws6{word-spacing:-0.119551px;}
.ws15d{word-spacing:-0.107597px;}
.ws99{word-spacing:-0.090972px;}
.ws58{word-spacing:-0.086184px;}
.wsb8{word-spacing:-0.072144px;}
.wsba{word-spacing:-0.066132px;}
.ws52{word-spacing:-0.065218px;}
.wsf{word-spacing:-0.059776px;}
.ws42{word-spacing:-0.053798px;}
.ws1f{word-spacing:-0.047821px;}
.wsc1{word-spacing:-0.045430px;}
.ws1{word-spacing:-0.004901px;}
.wsd5{word-spacing:-0.002600px;}
.wse0{word-spacing:-0.001296px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.003000px;}
.ws89{word-spacing:0.012024px;}
.wsf8{word-spacing:0.024048px;}
.wsb6{word-spacing:0.030060px;}
.wsa5{word-spacing:0.036072px;}
.ws68{word-spacing:0.042084px;}
.wsb0{word-spacing:0.048096px;}
.ws151{word-spacing:0.053798px;}
.ws9c{word-spacing:0.054108px;}
.ws10{word-spacing:0.059776px;}
.ws88{word-spacing:0.078156px;}
.ws67{word-spacing:0.096192px;}
.wsed{word-spacing:0.102204px;}
.ws137{word-spacing:0.107597px;}
.ws9b{word-spacing:0.118800px;}
.ws11{word-spacing:0.119551px;}
.ws73{word-spacing:0.124200px;}
.ws74{word-spacing:0.129600px;}
.ws9a{word-spacing:0.151200px;}
.ws136{word-spacing:0.161395px;}
.ws13{word-spacing:0.179327px;}
.ws101{word-spacing:0.199800px;}
.wsbf{word-spacing:0.207030px;}
.ws13e{word-spacing:0.215194px;}
.wsb3{word-spacing:0.221400px;}
.ws14{word-spacing:0.239102px;}
.wsf3{word-spacing:0.252504px;}
.ws6a{word-spacing:0.264528px;}
.ws12e{word-spacing:0.268992px;}
.ws98{word-spacing:0.298878px;}
.ws180{word-spacing:0.322790px;}
.wsac{word-spacing:0.354708px;}
.ws4f{word-spacing:0.358654px;}
.ws103{word-spacing:0.384768px;}
.ws7{word-spacing:0.418429px;}
.wsb2{word-spacing:0.459000px;}
.ws28{word-spacing:0.478205px;}
.wsfc{word-spacing:0.518400px;}
.ws29{word-spacing:0.537980px;}
.ws12d{word-spacing:0.537984px;}
.wsea{word-spacing:0.591782px;}
.wseb{word-spacing:0.645581px;}
.ws12b{word-spacing:0.657532px;}
.ws172{word-spacing:0.699379px;}
.ws84{word-spacing:0.727452px;}
.wsa0{word-spacing:0.733464px;}
.ws5f{word-spacing:0.763524px;}
.ws34{word-spacing:0.777083px;}
.ws85{word-spacing:0.793584px;}
.ws5e{word-spacing:0.823644px;}
.ws12c{word-spacing:0.836858px;}
.wsfb{word-spacing:0.842400px;}
.wsfa{word-spacing:0.874800px;}
.ws90{word-spacing:0.896634px;}
.ws26{word-spacing:1.016185px;}
.ws114{word-spacing:1.070136px;}
.ws16b{word-spacing:1.075968px;}
.ws174{word-spacing:1.129766px;}
.ws27{word-spacing:1.135736px;}
.ws16e{word-spacing:1.183565px;}
.wsad{word-spacing:1.196388px;}
.ws113{word-spacing:1.346688px;}
.ws13d{word-spacing:1.398758px;}
.ws12{word-spacing:1.434614px;}
.wsc0{word-spacing:1.444244px;}
.wsa7{word-spacing:1.484964px;}
.ws1c{word-spacing:1.494390px;}
.ws30{word-spacing:1.554166px;}
.wsae{word-spacing:1.611216px;}
.ws57{word-spacing:1.613941px;}
.wsa{word-spacing:1.673717px;}
.ws22{word-spacing:1.793268px;}
.ws10e{word-spacing:1.857708px;}
.ws87{word-spacing:1.863720px;}
.ws108{word-spacing:1.881756px;}
.ws86{word-spacing:1.893780px;}
.ws109{word-spacing:1.899792px;}
.ws125{word-spacing:1.972595px;}
.wsca{word-spacing:2.032370px;}
.ws16f{word-spacing:2.044339px;}
.ws94{word-spacing:2.092146px;}
.ws16d{word-spacing:2.151936px;}
.wsc8{word-spacing:2.211697px;}
.ws14d{word-spacing:2.259533px;}
.ws35{word-spacing:2.391024px;}
.wsc2{word-spacing:2.450800px;}
.ws18{word-spacing:2.510575px;}
.wsaf{word-spacing:2.561112px;}
.ws19{word-spacing:2.570351px;}
.wsa1{word-spacing:2.609208px;}
.wsa2{word-spacing:2.621232px;}
.ws13c{word-spacing:2.743718px;}
.ws96{word-spacing:2.749678px;}
.ws97{word-spacing:2.766517px;}
.ws31{word-spacing:2.809453px;}
.ws122{word-spacing:2.945880px;}
.ws116{word-spacing:2.957904px;}
.ws7e{word-spacing:2.969928px;}
.ws118{word-spacing:2.987964px;}
.ws51{word-spacing:2.988780px;}
.ws6e{word-spacing:3.013200px;}
.ws6f{word-spacing:3.029400px;}
.ws123{word-spacing:3.048084px;}
.ws12a{word-spacing:3.048556px;}
.ws117{word-spacing:3.096180px;}
.wsd8{word-spacing:3.227882px;}
.ws82{word-spacing:3.276540px;}
.ws9{word-spacing:3.287658px;}
.ws2a{word-spacing:3.347434px;}
.ws160{word-spacing:3.389299px;}
.wsc7{word-spacing:3.466985px;}
.wsa8{word-spacing:3.474936px;}
.wsc6{word-spacing:3.526760px;}
.wsec{word-spacing:3.658291px;}
.ws5a{word-spacing:3.679344px;}
.ws5b{word-spacing:3.811608px;}
.wsd6{word-spacing:3.945190px;}
.ws112{word-spacing:3.985956px;}
.ws4a{word-spacing:4.064741px;}
.ws47{word-spacing:4.363619px;}
.ws10f{word-spacing:4.370724px;}
.ws7b{word-spacing:4.400784px;}
.wsc3{word-spacing:4.423394px;}
.ws177{word-spacing:4.465267px;}
.ws50{word-spacing:4.602721px;}
.ws2f{word-spacing:4.662497px;}
.ws7c{word-spacing:4.731444px;}
.ws46{word-spacing:4.782048px;}
.ws10b{word-spacing:4.785552px;}
.ws10a{word-spacing:4.791564px;}
.ws24{word-spacing:4.841824px;}
.ws76{word-spacing:5.074128px;}
.ws49{word-spacing:5.163989px;}
.ws3f{word-spacing:5.164646px;}
.ws75{word-spacing:5.266512px;}
.ws93{word-spacing:5.320028px;}
.ws133{word-spacing:5.370576px;}
.ws148{word-spacing:5.377978px;}
.ws158{word-spacing:5.378227px;}
.ws132{word-spacing:5.378822px;}
.ws23{word-spacing:5.379804px;}
.ws3{word-spacing:5.379840px;}
.ws181{word-spacing:5.380483px;}
.ws143{word-spacing:5.380992px;}
.ws15e{word-spacing:5.381136px;}
.ws14a{word-spacing:5.381731px;}
.ws165{word-spacing:5.383296px;}
.ws170{word-spacing:5.383862px;}
.ws1a{word-spacing:5.499355px;}
.ws11c{word-spacing:5.513004px;}
.ws3e{word-spacing:5.541235px;}
.wsa3{word-spacing:5.795568px;}
.ws11b{word-spacing:5.861700px;}
.wsa4{word-spacing:5.867712px;}
.ws2e{word-spacing:5.917784px;}
.ws16{word-spacing:5.977560px;}
.ws40{word-spacing:6.025421px;}
.ws41{word-spacing:6.079219px;}
.ws129{word-spacing:6.216662px;}
.ws12f{word-spacing:6.348211px;}
.ws56{word-spacing:6.455765px;}
.ws7a{word-spacing:6.541056px;}
.ws79{word-spacing:6.631236px;}
.ws78{word-spacing:6.643260px;}
.ws128{word-spacing:6.694867px;}
.ws55{word-spacing:7.232848px;}
.wscf{word-spacing:7.292623px;}
.wsbc{word-spacing:7.412174px;}
.ws153{word-spacing:7.531776px;}
.ws15{word-spacing:7.591501px;}
.wsd9{word-spacing:7.651277px;}
.ws100{word-spacing:7.651800px;}
.wsff{word-spacing:7.754400px;}
.ws127{word-spacing:7.770828px;}
.ws126{word-spacing:7.830604px;}
.ws17b{word-spacing:7.962163px;}
.ws9f{word-spacing:8.056080px;}
.ws130{word-spacing:8.553946px;}
.ws43{word-spacing:8.727238px;}
.ws59{word-spacing:9.097200px;}
.wsda{word-spacing:9.623872px;}
.ws6d{word-spacing:9.860400px;}
.ws6b{word-spacing:9.871200px;}
.ws6c{word-spacing:9.887400px;}
.ws8a{word-spacing:10.154268px;}
.ws121{word-spacing:10.280520px;}
.ws167{word-spacing:10.329293px;}
.ws80{word-spacing:10.484928px;}
.ws119{word-spacing:10.490940px;}
.ws11a{word-spacing:10.527012px;}
.ws81{word-spacing:10.569096px;}
.ws17{word-spacing:11.476915px;}
.ws155{word-spacing:11.781850px;}
.ws1d{word-spacing:11.907026px;}
.wsb4{word-spacing:12.426804px;}
.ws2b{word-spacing:12.552876px;}
.wsce{word-spacing:12.732203px;}
.ws14c{word-spacing:13.126810px;}
.ws150{word-spacing:13.312634px;}
.wsf7{word-spacing:13.358664px;}
.ws171{word-spacing:13.387958px;}
.ws17f{word-spacing:13.388314px;}
.ws14b{word-spacing:13.392096px;}
.ws140{word-spacing:13.392134px;}
.ws13b{word-spacing:13.392336px;}
.ws149{word-spacing:13.392941px;}
.ws135{word-spacing:13.393334px;}
.ws17c{word-spacing:13.394534px;}
.ws13a{word-spacing:13.395802px;}
.ws83{word-spacing:13.436820px;}
.ws173{word-spacing:13.449600px;}
.ws13f{word-spacing:13.610995px;}
.ws4b{word-spacing:14.107042px;}
.ws14f{word-spacing:14.735779px;}
.ws53{word-spacing:14.738290px;}
.wsc5{word-spacing:14.764573px;}
.wsc4{word-spacing:14.834610px;}
.ws33{word-spacing:14.884124px;}
.ws14e{word-spacing:15.655334px;}
.ws60{word-spacing:16.268472px;}
.ws182{word-spacing:17.753472px;}
.ws178{word-spacing:17.861069px;}
.ws166{word-spacing:18.767434px;}
.ws168{word-spacing:18.770390px;}
.ws144{word-spacing:18.771437px;}
.ws176{word-spacing:18.771725px;}
.ws17e{word-spacing:18.772070px;}
.ws16c{word-spacing:18.772464px;}
.ws15f{word-spacing:18.773434px;}
.ws138{word-spacing:18.775450px;}
.ws146{word-spacing:18.775642px;}
.ws163{word-spacing:18.829440px;}
.ws16a{word-spacing:18.937037px;}
.ws48{word-spacing:18.948865px;}
.ws15b{word-spacing:19.098432px;}
.ws159{word-spacing:19.152230px;}
.ws115{word-spacing:19.484892px;}
.wsbd{word-spacing:20.296342px;}
.wse4{word-spacing:20.861684px;}
.ws161{word-spacing:29.373926px;}
.wsdd{word-spacing:87.874838px;}
.wsb5{word-spacing:111.733020px;}
.wsbb{word-spacing:121.292100px;}
.wsb7{word-spacing:121.634784px;}
.wsb9{word-spacing:128.843172px;}
.wse1{word-spacing:131.214298px;}
.wsdf{word-spacing:131.268096px;}
.wsde{word-spacing:162.632563px;}
.wse3{word-spacing:171.563098px;}
.ws21{word-spacing:1140.903875px;}
._29{margin-left:-67.809358px;}
._1e{margin-left:-60.859476px;}
._28{margin-left:-54.937666px;}
._27{margin-left:-53.170138px;}
._20{margin-left:-47.729278px;}
._1f{margin-left:-45.961750px;}
._1d{margin-left:-17.639208px;}
._2a{margin-left:-15.931800px;}
._2c{margin-left:-14.585246px;}
._1{margin-left:-7.962163px;}
._3a{margin-left:-6.939994px;}
._2{margin-left:-5.933474px;}
._0{margin-left:-3.984374px;}
._17{margin-left:-2.494885px;}
._5{margin-left:-1.322630px;}
._6{width:1.091170px;}
._3{width:3.004154px;}
._16{width:4.190364px;}
._3b{width:10.652083px;}
._38{width:11.728051px;}
._7{width:13.815731px;}
._19{width:15.317127px;}
._37{width:16.505633px;}
._d{width:17.820696px;}
._4{width:18.829440px;}
._b{width:20.092169px;}
._a{width:21.280114px;}
._8{width:22.654952px;}
._c{width:24.926425px;}
._14{width:25.942610px;}
._10{width:27.018571px;}
._e{width:29.055367px;}
._13{width:30.664883px;}
._9{width:31.860395px;}
._12{width:33.892765px;}
._18{width:35.566482px;}
._11{width:37.151582px;}
._1a{width:40.057219px;}
._24{width:61.178102px;}
._23{width:89.530694px;}
._22{width:90.997622px;}
._21{width:95.272060px;}
._25{width:113.037624px;}
._36{width:124.533955px;}
._2b{width:152.422236px;}
._26{width:153.997370px;}
._2f{width:158.113498px;}
._1b{width:164.566466px;}
._34{width:171.616896px;}
._30{width:185.066496px;}
._1c{width:195.684588px;}
._32{width:214.817011px;}
._33{width:225.200102px;}
._31{width:228.212813px;}
._2e{width:245.643523px;}
._35{width:247.688064px;}
._2d{width:272.219904px;}
._15{width:1740.490668px;}
._39{width:2143.605300px;}
._f{width:2167.515300px;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc4{color:transparent;}
.fc1{color:rgb(81,56,48);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:36.000000px;}
.fs9{font-size:41.842800px;}
.fsc{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:45.429600px;}
.fsb{font-size:47.236800px;}
.fs13{font-size:47.337600px;}
.fsd{font-size:47.820600px;}
.fse{font-size:47.880000px;}
.fsa{font-size:53.798400px;}
.fs11{font-size:54.000000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:60.120000px;}
.fs12{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.fs5{font-size:151.185600px;}
.ye8{bottom:-660.143550px;}
.ye7{bottom:-636.203550px;}
.ye6{bottom:-636.203388px;}
.y18a{bottom:-616.281228px;}
.ye5{bottom:-615.953469px;}
.y189{bottom:-596.031309px;}
.ye4{bottom:-595.703550px;}
.ye3{bottom:-595.703469px;}
.y188{bottom:-575.781390px;}
.ye2{bottom:-575.453550px;}
.y187{bottom:-555.621651px;}
.ye1{bottom:-555.293550px;}
.y186{bottom:-535.371732px;}
.ye0{bottom:-534.233550px;}
.yde{bottom:-523.434351px;}
.y185{bottom:-515.121813px;}
.ydb{bottom:-513.263550px;}
.ydd{bottom:-512.543613px;}
.ydf{bottom:-503.184432px;}
.y184{bottom:-494.871894px;}
.ydc{bottom:-492.293694px;}
.y183{bottom:-474.621975px;}
.ya0{bottom:-474.378636px;}
.yda{bottom:-462.053550px;}
.y182{bottom:-454.372056px;}
.y9f{bottom:-454.128717px;}
.y181{bottom:-434.212317px;}
.y9e{bottom:-433.878798px;}
.yd9{bottom:-424.071795px;}
.y180{bottom:-413.962398px;}
.y9d{bottom:-404.628915px;}
.yd8{bottom:-403.821876px;}
.y17f{bottom:-393.712479px;}
.yd7{bottom:-383.571957px;}
.y17e{bottom:-373.462560px;}
.y9c{bottom:-366.379068px;}
.yd6{bottom:-363.322038px;}
.y17d{bottom:-353.212641px;}
.y9b{bottom:-346.219329px;}
.yd5{bottom:-343.072119px;}
.y17c{bottom:-332.962722px;}
.y9a{bottom:-325.969410px;}
.yd4{bottom:-322.912380px;}
.y17b{bottom:-312.712803px;}
.y99{bottom:-305.719491px;}
.yd3{bottom:-302.662461px;}
.y17a{bottom:-292.553064px;}
.y98{bottom:-285.469572px;}
.yd2{bottom:-273.412578px;}
.y179{bottom:-272.303145px;}
.y97{bottom:-265.219653px;}
.y178{bottom:-252.053226px;}
.y96{bottom:-244.969734px;}
.yd1{bottom:-235.162731px;}
.y177{bottom:-231.803307px;}
.y95{bottom:-224.719815px;}
.y176{bottom:-211.553388px;}
.y94{bottom:-204.560076px;}
.yd0{bottom:-196.912884px;}
.y175{bottom:-191.303469px;}
.y93{bottom:-184.310157px;}
.ycf{bottom:-176.662965px;}
.y174{bottom:-171.053253px;}
.y92{bottom:-164.060238px;}
.yce{bottom:-156.413046px;}
.y91{bottom:-143.810319px;}
.y173{bottom:-141.893550px;}
.ycd{bottom:-136.253307px;}
.y90{bottom:-123.560400px;}
.ycc{bottom:-116.003388px;}
.y172{bottom:-104.094450px;}
.ycb{bottom:-95.753469px;}
.y8f{bottom:-85.851900px;}
.y171{bottom:-84.564000px;}
.yca{bottom:-75.503550px;}
.y8e{bottom:-66.321450px;}
.y170{bottom:-65.033550px;}
.y8d{bottom:-46.791000px;}
.y16f{bottom:-45.593550px;}
.yc9{bottom:-37.703550px;}
.y8c{bottom:-27.260550px;}
.y16e{bottom:-10.223550px;}
.yc8{bottom:-2.783550px;}
.y0{bottom:0.000000px;}
.y30{bottom:3.425340px;}
.y8b{bottom:5.229450px;}
.y2f{bottom:14.151273px;}
.y23{bottom:14.814393px;}
.y52{bottom:63.780000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y51{bottom:110.116500px;}
.y19d{bottom:120.735000px;}
.y12b{bottom:127.123500px;}
.y217{bottom:128.325000px;}
.y50{bottom:130.381500px;}
.y1b1{bottom:131.923500px;}
.ybf{bottom:138.112500px;}
.y1e4{bottom:138.606000px;}
.y21{bottom:139.264499px;}
.y19c{bottom:140.998500px;}
.yfe{bottom:146.952000px;}
.y12a{bottom:147.387000px;}
.y216{bottom:147.691500px;}
.y4f{bottom:150.645000px;}
.y1b0{bottom:156.088500px;}
.y1e3{bottom:157.974000px;}
.ybe{bottom:158.376000px;}
.y19b{bottom:161.263500px;}
.y82{bottom:166.101000px;}
.y215{bottom:167.059500px;}
.yfd{bottom:167.217000px;}
.y129{bottom:167.650500px;}
.y4e{bottom:170.910000px;}
.y1e2{bottom:177.340500px;}
.ybd{bottom:178.639500px;}
.y1af{bottom:180.253500px;}
.y19a{bottom:181.527000px;}
.y81{bottom:186.364500px;}
.y214{bottom:186.427500px;}
.yfc{bottom:187.480500px;}
.y128{bottom:187.915500px;}
.y4d{bottom:191.173500px;}
.y1e1{bottom:196.708500px;}
.y18{bottom:196.933500px;}
.ybc{bottom:198.904500px;}
.y199{bottom:201.792000px;}
.y1ae{bottom:204.417000px;}
.y213{bottom:205.794000px;}
.y80{bottom:206.629500px;}
.yfb{bottom:207.745500px;}
.y127{bottom:208.179000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y4c{bottom:211.437000px;}
.y1e0{bottom:216.076500px;}
.ybb{bottom:219.168000px;}
.y1ad{bottom:219.615000px;}
.y198{bottom:222.055500px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y212{bottom:225.162000px;}
.y7f{bottom:226.893000px;}
.yfa{bottom:228.009000px;}
.y126{bottom:228.444000px;}
.y4b{bottom:231.702000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1ac{bottom:234.813000px;}
.y1df{bottom:235.443000px;}
.y16d{bottom:236.826936px;}
.yba{bottom:239.433000px;}
.y197{bottom:242.319000px;}
.y211{bottom:244.528500px;}
.y7e{bottom:247.158000px;}
.yf9{bottom:248.272500px;}
.y125{bottom:248.707500px;}
.y1ab{bottom:250.011000px;}
.y4a{bottom:251.965500px;}
.y1de{bottom:254.811000px;}
.y16c{bottom:257.076855px;}
.yb9{bottom:259.696500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y196{bottom:262.584000px;}
.y210{bottom:263.896500px;}
.y7d{bottom:267.421500px;}
.yf8{bottom:268.537500px;}
.y124{bottom:268.971000px;}
.y49{bottom:272.230500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y1aa{bottom:274.176000px;}
.y1dd{bottom:274.177500px;}
.y16b{bottom:277.326774px;}
.y14c{bottom:279.679500px;}
.yb8{bottom:279.960000px;}
.y195{bottom:282.847500px;}
.y20f{bottom:283.264500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y7c{bottom:287.685000px;}
.yf7{bottom:288.801000px;}
.y123{bottom:289.236000px;}
.y1a9{bottom:289.374000px;}
.y48{bottom:292.494000px;}
.y1dc{bottom:293.545500px;}
.y16a{bottom:297.576693px;}
.y14b{bottom:299.944500px;}
.yb7{bottom:300.225000px;}
.y20e{bottom:302.631000px;}
.y194{bottom:303.112500px;}
.y7b{bottom:307.950000px;}
.yf6{bottom:309.066000px;}
.y122{bottom:309.499500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y47{bottom:312.757500px;}
.y1db{bottom:312.913500px;}
.y169{bottom:317.826612px;}
.y14a{bottom:320.208000px;}
.yb6{bottom:320.488500px;}
.y20d{bottom:321.999000px;}
.y1a8{bottom:322.504500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y193{bottom:323.376000px;}
.y79{bottom:328.213500px;}
.yf5{bottom:329.329500px;}
.y121{bottom:329.764500px;}
.y1da{bottom:332.280000px;}
.y46{bottom:333.022500px;}
.y7a{bottom:333.639000px;}
.y168{bottom:338.076531px;}
.y149{bottom:340.471500px;}
.yb5{bottom:340.753500px;}
.y20c{bottom:341.367000px;}
.y1a7{bottom:342.769500px;}
.y192{bottom:343.639500px;}
.yf{bottom:348.133500px;}
.y78{bottom:348.478500px;}
.yf4{bottom:349.593000px;}
.y120{bottom:350.028000px;}
.y1d9{bottom:351.648000px;}
.y45{bottom:353.286000px;}
.y167{bottom:358.326531px;}
.y20b{bottom:360.733500px;}
.y148{bottom:360.736500px;}
.yb4{bottom:361.017000px;}
.y1a6{bottom:363.033000px;}
.y190{bottom:363.904500px;}
.y191{bottom:369.328500px;}
.yf2{bottom:369.858000px;}
.y11f{bottom:370.291500px;}
.y1d8{bottom:371.014500px;}
.yf3{bottom:375.282000px;}
.y77{bottom:377.709000px;}
.y166{bottom:378.576828px;}
.y20a{bottom:380.101500px;}
.y147{bottom:381.000000px;}
.yb3{bottom:381.280500px;}
.y44{bottom:382.516500px;}
.y1a5{bottom:383.298000px;}
.ye{bottom:386.785499px;}
.yf1{bottom:390.121500px;}
.y1d7{bottom:390.382500px;}
.y11e{bottom:390.556500px;}
.y18f{bottom:393.135000px;}
.y165{bottom:398.736567px;}
.y209{bottom:399.468000px;}
.yc7{bottom:399.516450px;}
.y146{bottom:401.265000px;}
.yb2{bottom:401.545500px;}
.y1a4{bottom:403.561500px;}
.yd{bottom:408.044999px;}
.y1d6{bottom:409.750500px;}
.yf0{bottom:410.386500px;}
.y11d{bottom:410.820000px;}
.y76{bottom:412.528500px;}
.y208{bottom:418.836000px;}
.yb1{bottom:421.809000px;}
.y1a3{bottom:423.825000px;}
.y18e{bottom:424.758000px;}
.y164{bottom:427.986450px;}
.y1d5{bottom:429.117000px;}
.y145{bottom:430.495500px;}
.yef{bottom:430.650000px;}
.y11c{bottom:431.085000px;}
.y207{bottom:438.204000px;}
.yb0{bottom:442.074000px;}
.y18d{bottom:443.991000px;}
.y1a2{bottom:444.090000px;}
.y75{bottom:447.348000px;}
.y1d4{bottom:448.485000px;}
.yee{bottom:450.913500px;}
.y11b{bottom:451.348500px;}
.y206{bottom:457.570500px;}
.y43{bottom:458.932500px;}
.yaf{bottom:462.337500px;}
.y18c{bottom:463.224000px;}
.y1a1{bottom:464.353500px;}
.y144{bottom:465.315000px;}
.y163{bottom:465.336450px;}
.y8a{bottom:466.209693px;}
.y74{bottom:467.611500px;}
.y1d3{bottom:467.851500px;}
.yed{bottom:471.178500px;}
.y205{bottom:476.938500px;}
.y42{bottom:479.196000px;}
.y11a{bottom:480.579000px;}
.y18b{bottom:482.455500px;}
.yad{bottom:482.601000px;}
.y1a0{bottom:484.618500px;}
.y89{bottom:486.459612px;}
.y1d2{bottom:487.219500px;}
.y73{bottom:487.875000px;}
.yae{bottom:488.026500px;}
.yec{bottom:491.442000px;}
.y204{bottom:496.305000px;}
.y143{bottom:500.134500px;}
.yc{bottom:502.864502px;}
.yab{bottom:502.866000px;}
.y19f{bottom:504.882000px;}
.y162{bottom:504.885000px;}
.y1d1{bottom:506.587500px;}
.y88{bottom:506.709531px;}
.y72{bottom:508.140000px;}
.yac{bottom:508.290000px;}
.yeb{bottom:511.707000px;}
.y119{bottom:515.398500px;}
.y203{bottom:515.673000px;}
.y41{bottom:517.393500px;}
.y142{bottom:520.398000px;}
.yb{bottom:520.864502px;}
.ya9{bottom:523.129500px;}
.y1d0{bottom:525.954000px;}
.y87{bottom:526.959711px;}
.y71{bottom:528.403500px;}
.yaa{bottom:528.555000px;}
.yea{bottom:531.970500px;}
.y19e{bottom:534.112500px;}
.y202{bottom:535.041000px;}
.y118{bottom:535.662000px;}
.y40{bottom:537.657000px;}
.ya{bottom:538.864499px;}
.y141{bottom:540.661500px;}
.ya7{bottom:543.394500px;}
.y1cf{bottom:545.322000px;}
.y86{bottom:547.119531px;}
.y70{bottom:548.667000px;}
.ya8{bottom:548.818500px;}
.y21c{bottom:554.202000px;}
.y201{bottom:554.407500px;}
.y117{bottom:555.927000px;}
.y9{bottom:556.864499px;}
.y3f{bottom:557.922000px;}
.y140{bottom:560.926500px;}
.ya5{bottom:563.658000px;}
.y1ce{bottom:564.688500px;}
.ye9{bottom:566.971500px;}
.y85{bottom:567.369450px;}
.y6f{bottom:568.932000px;}
.ya6{bottom:569.082000px;}
.y21b{bottom:573.570000px;}
.y200{bottom:573.775500px;}
.y116{bottom:576.190500px;}
.y3e{bottom:578.185500px;}
.y13f{bottom:581.190000px;}
.y1cd{bottom:584.056500px;}
.y6e{bottom:589.195500px;}
.yc6{bottom:589.399500px;}
.y21a{bottom:592.936500px;}
.y1ff{bottom:593.142000px;}
.y115{bottom:596.455500px;}
.y3d{bottom:598.450500px;}
.ya4{bottom:598.657500px;}
.y13e{bottom:601.455000px;}
.y1cc{bottom:603.424500px;}
.y84{bottom:604.719450px;}
.y6d{bottom:609.460500px;}
.y1fe{bottom:612.510000px;}
.y114{bottom:616.719000px;}
.ya3{bottom:617.890500px;}
.y3c{bottom:618.714000px;}
.y13d{bottom:621.718500px;}
.y219{bottom:622.284000px;}
.y1cb{bottom:622.791000px;}
.y6c{bottom:629.724000px;}
.y1fd{bottom:631.878000px;}
.y113{bottom:636.982500px;}
.ya2{bottom:637.123500px;}
.y218{bottom:637.482000px;}
.y3b{bottom:638.977500px;}
.y1ca{bottom:642.159000px;}
.y8{bottom:645.510000px;}
.y6b{bottom:649.987500px;}
.y13c{bottom:650.788500px;}
.y1fc{bottom:651.244500px;}
.ya1{bottom:656.356500px;}
.y3a{bottom:659.242500px;}
.y13b{bottom:661.039500px;}
.y1c9{bottom:661.527000px;}
.y112{bottom:666.213000px;}
.y7{bottom:666.771000px;}
.y6a{bottom:670.252500px;}
.y1fb{bottom:670.612500px;}
.y83{bottom:678.786000px;}
.y38{bottom:679.506000px;}
.y1c8{bottom:680.893500px;}
.y39{bottom:684.931500px;}
.y1fa{bottom:689.979000px;}
.y69{bottom:690.516000px;}
.y37{bottom:699.771000px;}
.y1c7{bottom:700.261500px;}
.y111{bottom:701.032500px;}
.y13a{bottom:704.265000px;}
.y1f9{bottom:709.347000px;}
.y68{bottom:710.781000px;}
.y1c6{bottom:719.628000px;}
.y36{bottom:720.034500px;}
.y110{bottom:721.297500px;}
.y139{bottom:724.530000px;}
.y6{bottom:726.298500px;}
.y1f8{bottom:728.715000px;}
.y67{bottom:731.044500px;}
.y1c5{bottom:738.996000px;}
.y35{bottom:740.298000px;}
.y10f{bottom:741.561000px;}
.y138{bottom:744.793500px;}
.y1f7{bottom:748.081500px;}
.y66{bottom:751.308000px;}
.y161{bottom:752.322000px;}
.y3{bottom:752.599495px;}
.y1c4{bottom:758.364000px;}
.y34{bottom:760.563000px;}
.y10e{bottom:761.826000px;}
.y137{bottom:765.057000px;}
.y1f6{bottom:767.449500px;}
.y65{bottom:771.573000px;}
.y160{bottom:772.585500px;}
.y1c3{bottom:777.730500px;}
.y33{bottom:780.826500px;}
.y10d{bottom:782.089500px;}
.y1f5{bottom:786.816000px;}
.y64{bottom:791.836500px;}
.y15f{bottom:792.850500px;}
.y136{bottom:794.287500px;}
.y1c2{bottom:797.098500px;}
.y32{bottom:801.091500px;}
.y1f4{bottom:806.184000px;}
.y63{bottom:812.101500px;}
.y10c{bottom:812.656500px;}
.y15e{bottom:813.114000px;}
.y1c1{bottom:816.465000px;}
.y109{bottom:820.927500px;}
.y31{bottom:821.355000px;}
.y1f3{bottom:825.552000px;}
.y135{bottom:829.107000px;}
.y108{bottom:831.178500px;}
.y62{bottom:832.365000px;}
.y15d{bottom:833.377500px;}
.y1c0{bottom:835.833000px;}
.y1f2{bottom:844.918500px;}
.y10b{bottom:847.281000px;}
.y134{bottom:849.372000px;}
.y10a{bottom:850.269000px;}
.y61{bottom:852.628500px;}
.y15c{bottom:853.642500px;}
.y1bf{bottom:855.201000px;}
.y2e{bottom:856.787964px;}
.y2d{bottom:857.554500px;}
.y1f1{bottom:864.286500px;}
.y133{bottom:869.635500px;}
.y60{bottom:872.893500px;}
.y15a{bottom:873.906000px;}
.y1be{bottom:874.567500px;}
.y15b{bottom:879.331500px;}
.y2{bottom:879.369000px;}
.y107{bottom:879.846000px;}
.y1f0{bottom:883.653000px;}
.y131{bottom:889.899000px;}
.y5f{bottom:893.157000px;}
.y1bd{bottom:893.935500px;}
.y158{bottom:894.171000px;}
.y132{bottom:895.324500px;}
.y2c{bottom:896.559000px;}
.y106{bottom:897.868500px;}
.y159{bottom:899.595000px;}
.y105{bottom:900.111000px;}
.y1ef{bottom:903.021000px;}
.y130{bottom:910.164000px;}
.y1bc{bottom:913.302000px;}
.y5e{bottom:913.422000px;}
.y157{bottom:914.434500px;}
.y2b{bottom:914.716500px;}
.y104{bottom:918.133500px;}
.y103{bottom:920.374500px;}
.y1ee{bottom:922.389000px;}
.y12f{bottom:930.427500px;}
.y1bb{bottom:932.670000px;}
.y5d{bottom:933.685500px;}
.y2a{bottom:937.756500px;}
.y1ed{bottom:941.755500px;}
.y156{bottom:943.665000px;}
.y12e{bottom:950.692500px;}
.y29{bottom:951.030000px;}
.y101{bottom:951.850500px;}
.y1ba{bottom:952.038000px;}
.y5c{bottom:953.949000px;}
.y1ec{bottom:961.123500px;}
.yff{bottom:962.101500px;}
.y1{bottom:966.726000px;}
.y12d{bottom:970.956000px;}
.y1b9{bottom:971.404500px;}
.y100{bottom:972.219000px;}
.y28{bottom:974.070000px;}
.y5b{bottom:974.214000px;}
.y1eb{bottom:980.490000px;}
.y102{bottom:983.173500px;}
.yc5{bottom:985.512000px;}
.y155{bottom:987.541500px;}
.y1b8{bottom:990.772500px;}
.y5a{bottom:994.477500px;}
.y27{bottom:996.310500px;}
.y1ea{bottom:999.858000px;}
.y12c{bottom:1000.186500px;}
.y154{bottom:1004.337000px;}
.yc4{bottom:1005.775500px;}
.y1b7{bottom:1010.139000px;}
.y59{bottom:1014.742500px;}
.y1e9{bottom:1019.226000px;}
.y153{bottom:1021.132500px;}
.yc3{bottom:1026.039000px;}
.y1b6{bottom:1029.507000px;}
.y58{bottom:1035.006000px;}
.y152{bottom:1037.928000px;}
.y1e8{bottom:1038.592500px;}
.y26{bottom:1040.848500px;}
.yc2{bottom:1046.304000px;}
.y1b5{bottom:1048.875000px;}
.y57{bottom:1055.269500px;}
.y1e7{bottom:1057.960500px;}
.y151{bottom:1061.926500px;}
.yc1{bottom:1066.567500px;}
.y1b4{bottom:1068.241500px;}
.y25{bottom:1071.244500px;}
.y14e{bottom:1072.068000px;}
.y150{bottom:1072.243500px;}
.y56{bottom:1075.534500px;}
.y1e6{bottom:1077.327000px;}
.y14f{bottom:1085.923500px;}
.yc0{bottom:1086.832500px;}
.y1b3{bottom:1087.609500px;}
.y55{bottom:1095.798000px;}
.y1e5{bottom:1096.695000px;}
.y24{bottom:1100.145000px;}
.y1b2{bottom:1115.943000px;}
.y54{bottom:1116.063000px;}
.y14d{bottom:1117.543500px;}
.y22{bottom:1137.954000px;}
.y53{bottom:1168.366500px;}
.h2a{height:1.016185px;}
.h1f{height:24.849991px;}
.h10{height:25.508090px;}
.h25{height:26.173828px;}
.he{height:30.461558px;}
.h7{height:32.130000px;}
.h15{height:32.697253px;}
.h16{height:33.072749px;}
.h12{height:33.112997px;}
.h2b{height:33.299897px;}
.h11{height:34.199443px;}
.h19{height:34.951465px;}
.h17{height:35.052500px;}
.h2e{height:35.503200px;}
.h35{height:37.927872px;}
.h1e{height:38.734848px;}
.hf{height:39.165235px;}
.h33{height:39.260742px;}
.h1c{height:39.418945px;}
.h34{height:39.434227px;}
.h13{height:43.038432px;}
.h1d{height:43.269961px;}
.h14{height:43.516637px;}
.h1a{height:43.710293px;}
.hb{height:43.815515px;}
.h22{height:43.886426px;}
.h30{height:45.244848px;}
.h6{height:45.900000px;}
.h24{height:46.645840px;}
.h27{height:47.988281px;}
.h3{height:48.195000px;}
.h9{height:50.930649px;}
.h1b{height:52.347656px;}
.h32{height:52.558594px;}
.hd{height:54.411312px;}
.h20{height:54.768749px;}
.h2{height:55.080000px;}
.h2d{height:73.701253px;}
.hc{height:77.469696px;}
.h5{height:78.030000px;}
.h2c{height:83.986637px;}
.h26{height:84.032777px;}
.h29{height:84.285515px;}
.h23{height:84.563618px;}
.h28{height:85.304185px;}
.ha{height:102.503837px;}
.h2f{height:103.914749px;}
.h4{height:119.055004px;}
.h31{height:223.788000px;}
.h21{height:372.463500px;}
.h18{height:452.221500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:129.423378px;}
.w8{width:623.352750px;}
.w2{width:637.794021px;}
.w7{width:641.163000px;}
.w6{width:652.778850px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x79{left:-10.605000px;}
.xc4{left:-9.056250px;}
.x4f{left:-7.507650px;}
.x0{left:0.000000px;}
.x7b{left:21.255000px;}
.xc5{left:22.804344px;}
.x51{left:24.352350px;}
.xb{left:29.274117px;}
.x6{left:58.063964px;}
.x84{left:85.785000px;}
.x81{left:92.535000px;}
.x85{left:94.335158px;}
.x88{left:96.765667px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x89{left:112.425000px;}
.x5{left:114.802500px;}
.x8a{left:116.925000px;}
.x4e{left:120.067650px;}
.x9{left:122.110500px;}
.x7{left:123.307500px;}
.x78{left:125.875500px;}
.x63{left:129.927000px;}
.x8b{left:132.315000px;}
.xc3{left:134.781750px;}
.x64{left:136.614000px;}
.x8{left:146.170500px;}
.x56{left:150.763500px;}
.xc2{left:152.928000px;}
.x57{left:156.735000px;}
.xd{left:158.997000px;}
.x86{left:160.395000px;}
.x82{left:162.285000px;}
.x87{left:164.895000px;}
.x83{left:166.695000px;}
.x29{left:171.628500px;}
.xad{left:174.535500px;}
.x3a{left:175.803000px;}
.x65{left:179.314500px;}
.xca{left:180.325500px;}
.x7a{left:182.085000px;}
.x2a{left:186.573000px;}
.xc{left:188.971500px;}
.x3b{left:190.746000px;}
.xbd{left:193.774500px;}
.xcb{left:195.268500px;}
.xbc{left:197.928000px;}
.x66{left:201.124500px;}
.x4{left:203.484001px;}
.x17{left:204.691500px;}
.x80{left:206.835000px;}
.x52{left:209.992500px;}
.xae{left:211.939500px;}
.x7d{left:213.134861px;}
.x2d{left:217.572000px;}
.x2e{left:221.233500px;}
.xaf{left:225.963000px;}
.xe{left:236.242500px;}
.x7c{left:240.944285px;}
.x71{left:249.274500px;}
.xa3{left:252.013500px;}
.xd4{left:254.101500px;}
.x9f{left:261.462000px;}
.x72{left:264.219000px;}
.x6f{left:266.355000px;}
.x73{left:268.029000px;}
.xa0{left:269.703000px;}
.xb3{left:274.867500px;}
.xd0{left:279.781500px;}
.xf{left:281.272500px;}
.x74{left:282.973500px;}
.xb4{left:289.812000px;}
.x10{left:295.011000px;}
.xa4{left:300.873000px;}
.xa5{left:305.401500px;}
.x8c{left:307.390500px;}
.xbe{left:311.031000px;}
.xbf{left:314.982000px;}
.x3c{left:316.101000px;}
.xb0{left:322.684500px;}
.x3d{left:331.045500px;}
.x70{left:332.325000px;}
.xb1{left:336.708000px;}
.x94{left:339.327000px;}
.x41{left:345.930000px;}
.x76{left:352.116000px;}
.x95{left:354.271500px;}
.x4a{left:360.306000px;}
.x11{left:366.324000px;}
.xce{left:372.504000px;}
.x4b{left:375.250500px;}
.x4c{left:378.967500px;}
.x12{left:380.062500px;}
.x67{left:385.902000px;}
.xcf{left:387.448500px;}
.x58{left:389.113500px;}
.x9b{left:392.451000px;}
.x4d{left:393.912000px;}
.x59{left:397.332000px;}
.xa6{left:398.887500px;}
.xb5{left:404.029500px;}
.x48{left:405.972000px;}
.x97{left:407.014500px;}
.xcc{left:410.782500px;}
.xcd{left:418.255500px;}
.x49{left:420.915000px;}
.x98{left:421.959000px;}
.x99{left:425.703000px;}
.x7e{left:430.754496px;}
.x6a{left:436.831500px;}
.x9a{left:440.646000px;}
.x6b{left:446.829000px;}
.xa8{left:449.419500px;}
.xa9{left:450.667500px;}
.x18{left:453.708000px;}
.x3{left:454.959000px;}
.xa7{left:456.670500px;}
.xb2{left:459.708000px;}
.x19{left:461.181000px;}
.x9c{left:463.797000px;}
.x1a{left:464.923500px;}
.xb6{left:471.426000px;}
.x13{left:473.032500px;}
.x54{left:474.501000px;}
.x6c{left:476.814000px;}
.x36{left:479.139000px;}
.x55{left:482.719500px;}
.x1d{left:484.476000px;}
.x14{left:486.772500px;}
.x1e{left:491.947500px;}
.xb7{left:493.518000px;}
.x9d{left:496.816500px;}
.x1f{left:499.368000px;}
.x37{left:501.705000px;}
.x20{left:506.839500px;}
.x3e{left:508.842000px;}
.x7f{left:513.733550px;}
.x96{left:517.120500px;}
.x3f{left:523.786500px;}
.x8d{left:526.918500px;}
.x53{left:530.278500px;}
.x8e{left:536.916000px;}
.xc7{left:540.345000px;}
.xc8{left:548.563500px;}
.x34{left:565.482000px;}
.x15{left:570.097500px;}
.x8f{left:578.382000px;}
.x35{left:580.426500px;}
.x16{left:584.122500px;}
.x25{left:588.853500px;}
.xb9{left:591.150000px;}
.xd3{left:593.814000px;}
.xb8{left:598.650000px;}
.x26{left:603.798000px;}
.x32{left:604.947000px;}
.x27{left:607.459500px;}
.x5a{left:608.695500px;}
.x5b{left:615.420000px;}
.x33{left:619.891500px;}
.x28{left:622.402500px;}
.x38{left:628.876500px;}
.xc6{left:635.433750px;}
.x50{left:641.482350px;}
.xaa{left:642.495000px;}
.x39{left:643.819500px;}
.x90{left:647.553000px;}
.x21{left:650.040000px;}
.x2f{left:651.613500px;}
.xc0{left:654.037500px;}
.xab{left:657.432000px;}
.x91{left:661.282500px;}
.x22{left:664.983000px;}
.x30{left:666.556500px;}
.xc1{left:667.632000px;}
.x23{left:668.790000px;}
.x5c{left:671.887500px;}
.x31{left:674.067000px;}
.x5d{left:678.903000px;}
.x75{left:680.121000px;}
.x24{left:683.734500px;}
.x1b{left:688.131000px;}
.xc9{left:689.556000px;}
.x1c{left:695.602500px;}
.x5e{left:700.084500px;}
.xa{left:701.339982px;}
.x40{left:703.294500px;}
.x6d{left:704.785500px;}
.xd1{left:706.855500px;}
.x42{left:708.118500px;}
.x92{left:714.033000px;}
.xba{left:715.269000px;}
.x6e{left:718.809000px;}
.x43{left:722.127000px;}
.x93{left:724.189500px;}
.xa1{left:727.984500px;}
.xbb{left:731.023500px;}
.x5f{left:732.049500px;}
.x44{left:737.370000px;}
.x60{left:739.066500px;}
.x45{left:747.807000px;}
.xd2{left:749.463000px;}
.xac{left:750.835500px;}
.x77{left:753.582000px;}
.x61{left:755.026500px;}
.x2b{left:756.895500px;}
.x68{left:758.673000px;}
.x9e{left:760.686000px;}
.x69{left:765.360000px;}
.x62{left:766.660500px;}
.x46{left:769.741500px;}
.x2c{left:771.838500px;}
.xa2{left:773.581500px;}
.x47{left:776.167500px;}
@media print{
.v8{vertical-align:-23.808000pt;}
.v2{vertical-align:-17.360000pt;}
.vc{vertical-align:-13.440000pt;}
.v6{vertical-align:-10.058667pt;}
.v9{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:5.786667pt;}
.v3{vertical-align:13.439712pt;}
.v1{vertical-align:19.290667pt;}
.v5{vertical-align:33.277088pt;}
.v4{vertical-align:36.157504pt;}
.va{vertical-align:62.970667pt;}
.v7{vertical-align:74.922667pt;}
.ls5a{letter-spacing:-1.204800pt;}
.ls5b{letter-spacing:-0.993600pt;}
.ls3a{letter-spacing:-0.624000pt;}
.ls37{letter-spacing:-0.400800pt;}
.ls35{letter-spacing:-0.299264pt;}
.ls9d{letter-spacing:-0.251168pt;}
.ls9e{letter-spacing:-0.235136pt;}
.ls32{letter-spacing:-0.192384pt;}
.ls96{letter-spacing:-0.160320pt;}
.ls39{letter-spacing:-0.154976pt;}
.ls59{letter-spacing:-0.149632pt;}
.ls97{letter-spacing:-0.144288pt;}
.ls5f{letter-spacing:-0.138944pt;}
.ls3c{letter-spacing:-0.122912pt;}
.ls45{letter-spacing:-0.112224pt;}
.ls2e{letter-spacing:-0.106880pt;}
.ls57{letter-spacing:-0.101536pt;}
.ls46{letter-spacing:-0.096192pt;}
.ls30{letter-spacing:-0.085504pt;}
.ls2c{letter-spacing:-0.080864pt;}
.ls55{letter-spacing:-0.076608pt;}
.ls31{letter-spacing:-0.074816pt;}
.ls9f{letter-spacing:-0.069472pt;}
.ls3d{letter-spacing:-0.064128pt;}
.ls36{letter-spacing:-0.058784pt;}
.ls3e{letter-spacing:-0.053440pt;}
.ls98{letter-spacing:-0.048096pt;}
.ls33{letter-spacing:-0.042752pt;}
.ls40{letter-spacing:-0.037408pt;}
.ls56{letter-spacing:-0.032064pt;}
.ls44{letter-spacing:-0.026720pt;}
.ls41{letter-spacing:-0.021376pt;}
.ls9c{letter-spacing:-0.019200pt;}
.ls3f{letter-spacing:-0.016032pt;}
.ls9b{letter-spacing:-0.014400pt;}
.ls2f{letter-spacing:-0.010688pt;}
.ls3b{letter-spacing:-0.009600pt;}
.ls38{letter-spacing:-0.005344pt;}
.ls9a{letter-spacing:-0.004800pt;}
.ls2d{letter-spacing:-0.004256pt;}
.ls0{letter-spacing:0.000000pt;}
.ls66{letter-spacing:0.000015pt;}
.ls2a{letter-spacing:0.000110pt;}
.lsa0{letter-spacing:0.000190pt;}
.ls1{letter-spacing:0.000213pt;}
.lsab{letter-spacing:0.000222pt;}
.ls94{letter-spacing:0.000274pt;}
.ls28{letter-spacing:0.000375pt;}
.ls84{letter-spacing:0.000540pt;}
.lsa{letter-spacing:0.000752pt;}
.ls83{letter-spacing:0.000880pt;}
.lsa7{letter-spacing:0.001069pt;}
.ls10{letter-spacing:0.001349pt;}
.ls95{letter-spacing:0.001370pt;}
.lsb{letter-spacing:0.001792pt;}
.ls85{letter-spacing:0.001974pt;}
.ls11{letter-spacing:0.001977pt;}
.ls93{letter-spacing:0.002078pt;}
.lsac{letter-spacing:0.002136pt;}
.ls8f{letter-spacing:0.002389pt;}
.lsa5{letter-spacing:0.002505pt;}
.lsa1{letter-spacing:0.002809pt;}
.lsd{letter-spacing:0.003100pt;}
.lsf{letter-spacing:0.003106pt;}
.ls8{letter-spacing:0.003198pt;}
.ls12{letter-spacing:0.003325pt;}
.ls8d{letter-spacing:0.003430pt;}
.ls8a{letter-spacing:0.003635pt;}
.ls9{letter-spacing:0.003942pt;}
.ls49{letter-spacing:0.004256pt;}
.lsa9{letter-spacing:0.004267pt;}
.ls19{letter-spacing:0.005344pt;}
.ls1c{letter-spacing:0.009600pt;}
.ls16{letter-spacing:0.010688pt;}
.ls25{letter-spacing:0.016032pt;}
.ls23{letter-spacing:0.019200pt;}
.ls18{letter-spacing:0.021376pt;}
.ls1b{letter-spacing:0.024000pt;}
.ls24{letter-spacing:0.026720pt;}
.ls20{letter-spacing:0.028800pt;}
.ls1a{letter-spacing:0.032064pt;}
.ls1d{letter-spacing:0.033600pt;}
.ls26{letter-spacing:0.037408pt;}
.ls13{letter-spacing:0.042560pt;}
.ls17{letter-spacing:0.042752pt;}
.ls1e{letter-spacing:0.043200pt;}
.ls22{letter-spacing:0.048000pt;}
.ls27{letter-spacing:0.048096pt;}
.ls47{letter-spacing:0.051072pt;}
.ls91{letter-spacing:0.052800pt;}
.ls4b{letter-spacing:0.053440pt;}
.ls4a{letter-spacing:0.057600pt;}
.ls4f{letter-spacing:0.058784pt;}
.ls50{letter-spacing:0.064128pt;}
.ls43{letter-spacing:0.069472pt;}
.ls42{letter-spacing:0.074816pt;}
.ls92{letter-spacing:0.076800pt;}
.ls34{letter-spacing:0.080160pt;}
.ls4c{letter-spacing:0.085504pt;}
.ls4d{letter-spacing:0.090848pt;}
.ls4e{letter-spacing:0.096192pt;}
.ls1f{letter-spacing:0.110400pt;}
.ls51{letter-spacing:0.112224pt;}
.ls90{letter-spacing:0.122912pt;}
.ls21{letter-spacing:0.129600pt;}
.ls5c{letter-spacing:0.133600pt;}
.ls60{letter-spacing:0.144288pt;}
.ls5e{letter-spacing:0.149632pt;}
.ls15{letter-spacing:0.153216pt;}
.ls61{letter-spacing:0.154976pt;}
.ls99{letter-spacing:0.160320pt;}
.ls14{letter-spacing:0.161728pt;}
.ls5d{letter-spacing:0.165664pt;}
.ls48{letter-spacing:0.170240pt;}
.ls58{letter-spacing:0.171008pt;}
.lsa2{letter-spacing:0.466280pt;}
.lsa3{letter-spacing:0.471509pt;}
.ls6d{letter-spacing:0.482502pt;}
.ls6c{letter-spacing:0.507174pt;}
.ls78{letter-spacing:0.596214pt;}
.ls72{letter-spacing:0.601548pt;}
.ls71{letter-spacing:0.660090pt;}
.ls7d{letter-spacing:0.661044pt;}
.ls7a{letter-spacing:0.664259pt;}
.ls73{letter-spacing:0.665067pt;}
.ls77{letter-spacing:0.665874pt;}
.ls79{letter-spacing:0.666378pt;}
.lse{letter-spacing:1.133683pt;}
.ls80{letter-spacing:1.262881pt;}
.ls29{letter-spacing:1.328347pt;}
.ls6{letter-spacing:1.654338pt;}
.ls63{letter-spacing:2.014903pt;}
.ls6e{letter-spacing:2.020237pt;}
.ls62{letter-spacing:2.656508pt;}
.ls8b{letter-spacing:2.656533pt;}
.ls2{letter-spacing:2.657067pt;}
.ls76{letter-spacing:6.377067pt;}
.ls7c{letter-spacing:10.336110pt;}
.lsc{letter-spacing:10.626533pt;}
.ls7b{letter-spacing:10.926881pt;}
.ls7f{letter-spacing:10.968429pt;}
.ls7e{letter-spacing:10.994926pt;}
.ls89{letter-spacing:11.288891pt;}
.ls70{letter-spacing:11.625067pt;}
.lsa4{letter-spacing:11.954133pt;}
.ls8c{letter-spacing:11.954551pt;}
.lsa6{letter-spacing:11.959467pt;}
.lsaa{letter-spacing:12.001962pt;}
.lsa8{letter-spacing:12.088337pt;}
.ls53{letter-spacing:13.145878pt;}
.ls54{letter-spacing:13.151164pt;}
.ls86{letter-spacing:13.152086pt;}
.ls87{letter-spacing:13.153244pt;}
.ls7{letter-spacing:13.280110pt;}
.ls88{letter-spacing:13.283733pt;}
.ls68{letter-spacing:13.284237pt;}
.ls82{letter-spacing:13.285443pt;}
.ls67{letter-spacing:13.497486pt;}
.ls8e{letter-spacing:14.613867pt;}
.ls64{letter-spacing:15.400429pt;}
.ls69{letter-spacing:15.422903pt;}
.ls52{letter-spacing:15.716188pt;}
.ls3{letter-spacing:15.937067pt;}
.ls74{letter-spacing:16.020214pt;}
.ls6b{letter-spacing:16.708237pt;}
.ls2b{letter-spacing:17.879932pt;}
.ls75{letter-spacing:21.773762pt;}
.ls6a{letter-spacing:23.261762pt;}
.ls65{letter-spacing:29.991200pt;}
.ls4{letter-spacing:62.432533pt;}
.ls5{letter-spacing:64.314231pt;}
.ls81{letter-spacing:785.723733pt;}
.ls6f{letter-spacing:950.784533pt;}
.ws38{word-spacing:-53.440000pt;}
.ws45{word-spacing:-40.947213pt;}
.ws39{word-spacing:-32.000000pt;}
.wsbe{word-spacing:-21.359814pt;}
.ws8{word-spacing:-15.461955pt;}
.ws44{word-spacing:-14.611813pt;}
.wse2{word-spacing:-13.915853pt;}
.ws3c{word-spacing:-13.381376pt;}
.ws92{word-spacing:-13.360000pt;}
.ws3b{word-spacing:-13.285184pt;}
.wsd{word-spacing:-13.283467pt;}
.ws20{word-spacing:-12.369595pt;}
.ws3d{word-spacing:-12.000000pt;}
.wsdc{word-spacing:-11.955200pt;}
.ws91{word-spacing:-10.810240pt;}
.ws37{word-spacing:-10.801728pt;}
.ws1e{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws3a{word-spacing:-8.000000pt;}
.wsd1{word-spacing:-4.888316pt;}
.ws164{word-spacing:-4.112589pt;}
.ws8f{word-spacing:-3.453701pt;}
.wsee{word-spacing:-3.233120pt;}
.wsf1{word-spacing:-3.217088pt;}
.wsf0{word-spacing:-3.179680pt;}
.ws5d{word-spacing:-3.110208pt;}
.ws134{word-spacing:-2.917069pt;}
.wsf2{word-spacing:-2.837664pt;}
.ws5c{word-spacing:-2.810944pt;}
.wsef{word-spacing:-2.794912pt;}
.wsd7{word-spacing:-2.709827pt;}
.ws63{word-spacing:-2.511680pt;}
.ws105{word-spacing:-2.506336pt;}
.ws62{word-spacing:-2.484960pt;}
.ws64{word-spacing:-2.436864pt;}
.ws66{word-spacing:-2.420832pt;}
.ws139{word-spacing:-2.391040pt;}
.wsab{word-spacing:-2.207072pt;}
.ws77{word-spacing:-2.185696pt;}
.ws65{word-spacing:-2.180352pt;}
.ws25{word-spacing:-2.178489pt;}
.ws106{word-spacing:-2.169664pt;}
.ws107{word-spacing:-2.137600pt;}
.wsaa{word-spacing:-2.126912pt;}
.wsa9{word-spacing:-2.100192pt;}
.wsc9{word-spacing:-2.019087pt;}
.ws17a{word-spacing:-2.008474pt;}
.ws61{word-spacing:-1.966592pt;}
.ws157{word-spacing:-1.865011pt;}
.ws162{word-spacing:-1.817190pt;}
.wsd4{word-spacing:-1.700284pt;}
.ws5{word-spacing:-1.696326pt;}
.wsd3{word-spacing:-1.647150pt;}
.ws17d{word-spacing:-1.625907pt;}
.wsd2{word-spacing:-1.594016pt;}
.ws15c{word-spacing:-1.578086pt;}
.wsf4{word-spacing:-1.560448pt;}
.ws104{word-spacing:-1.549760pt;}
.wsd0{word-spacing:-1.540882pt;}
.ws110{word-spacing:-1.496320pt;}
.ws175{word-spacing:-1.482445pt;}
.ws154{word-spacing:-1.434624pt;}
.ws36{word-spacing:-1.381481pt;}
.ws152{word-spacing:-1.291162pt;}
.wsf6{word-spacing:-1.261184pt;}
.ws141{word-spacing:-1.243341pt;}
.ws8b{word-spacing:-1.218432pt;}
.ws10d{word-spacing:-1.207744pt;}
.ws9e{word-spacing:-1.197056pt;}
.ws9d{word-spacing:-1.186368pt;}
.ws8c{word-spacing:-1.175680pt;}
.ws4{word-spacing:-1.175671pt;}
.ws10c{word-spacing:-1.164992pt;}
.wsf5{word-spacing:-1.154304pt;}
.ws2d{word-spacing:-1.115811pt;}
.ws169{word-spacing:-1.099878pt;}
.ws2c{word-spacing:-1.062677pt;}
.ws179{word-spacing:-1.052058pt;}
.ws145{word-spacing:-0.956416pt;}
.ws11e{word-spacing:-0.924512pt;}
.ws142{word-spacing:-0.908595pt;}
.wsb{word-spacing:-0.903276pt;}
.ws15a{word-spacing:-0.860774pt;}
.wsfd{word-spacing:-0.849600pt;}
.ws11d{word-spacing:-0.844352pt;}
.ws156{word-spacing:-0.812954pt;}
.wscb{word-spacing:-0.797008pt;}
.wsfe{word-spacing:-0.796800pt;}
.ws8d{word-spacing:-0.769536pt;}
.ws4e{word-spacing:-0.690740pt;}
.ws4d{word-spacing:-0.690541pt;}
.wsdb{word-spacing:-0.669491pt;}
.ws95{word-spacing:-0.637606pt;}
.ws131{word-spacing:-0.621670pt;}
.ws7d{word-spacing:-0.587840pt;}
.ws124{word-spacing:-0.584473pt;}
.ws32{word-spacing:-0.531339pt;}
.ws70{word-spacing:-0.528000pt;}
.ws72{word-spacing:-0.499200pt;}
.ws4c{word-spacing:-0.492996pt;}
.wscc{word-spacing:-0.478205pt;}
.ws71{word-spacing:-0.470400pt;}
.ws8e{word-spacing:-0.464928pt;}
.wse6{word-spacing:-0.425071pt;}
.wsf9{word-spacing:-0.390112pt;}
.wse7{word-spacing:-0.382566pt;}
.wse5{word-spacing:-0.371937pt;}
.wsb1{word-spacing:-0.347360pt;}
.wsa6{word-spacing:-0.325984pt;}
.ws54{word-spacing:-0.318803pt;}
.wscd{word-spacing:-0.265669pt;}
.ws7f{word-spacing:-0.256512pt;}
.ws69{word-spacing:-0.251168pt;}
.ws147{word-spacing:-0.239104pt;}
.ws120{word-spacing:-0.235136pt;}
.ws11f{word-spacing:-0.224448pt;}
.ws1b{word-spacing:-0.212535pt;}
.ws102{word-spacing:-0.208416pt;}
.wse9{word-spacing:-0.191283pt;}
.wsc{word-spacing:-0.159402pt;}
.ws111{word-spacing:-0.144288pt;}
.wse8{word-spacing:-0.143462pt;}
.ws6{word-spacing:-0.106268pt;}
.ws15d{word-spacing:-0.095642pt;}
.ws99{word-spacing:-0.080864pt;}
.ws58{word-spacing:-0.076608pt;}
.wsb8{word-spacing:-0.064128pt;}
.wsba{word-spacing:-0.058784pt;}
.ws52{word-spacing:-0.057971pt;}
.wsf{word-spacing:-0.053134pt;}
.ws42{word-spacing:-0.047821pt;}
.ws1f{word-spacing:-0.042507pt;}
.wsc1{word-spacing:-0.040382pt;}
.ws1{word-spacing:-0.004356pt;}
.wsd5{word-spacing:-0.002311pt;}
.wse0{word-spacing:-0.001152pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.002667pt;}
.ws89{word-spacing:0.010688pt;}
.wsf8{word-spacing:0.021376pt;}
.wsb6{word-spacing:0.026720pt;}
.wsa5{word-spacing:0.032064pt;}
.ws68{word-spacing:0.037408pt;}
.wsb0{word-spacing:0.042752pt;}
.ws151{word-spacing:0.047821pt;}
.ws9c{word-spacing:0.048096pt;}
.ws10{word-spacing:0.053134pt;}
.ws88{word-spacing:0.069472pt;}
.ws67{word-spacing:0.085504pt;}
.wsed{word-spacing:0.090848pt;}
.ws137{word-spacing:0.095642pt;}
.ws9b{word-spacing:0.105600pt;}
.ws11{word-spacing:0.106268pt;}
.ws73{word-spacing:0.110400pt;}
.ws74{word-spacing:0.115200pt;}
.ws9a{word-spacing:0.134400pt;}
.ws136{word-spacing:0.143462pt;}
.ws13{word-spacing:0.159402pt;}
.ws101{word-spacing:0.177600pt;}
.wsbf{word-spacing:0.184026pt;}
.ws13e{word-spacing:0.191283pt;}
.wsb3{word-spacing:0.196800pt;}
.ws14{word-spacing:0.212535pt;}
.wsf3{word-spacing:0.224448pt;}
.ws6a{word-spacing:0.235136pt;}
.ws12e{word-spacing:0.239104pt;}
.ws98{word-spacing:0.265669pt;}
.ws180{word-spacing:0.286925pt;}
.wsac{word-spacing:0.315296pt;}
.ws4f{word-spacing:0.318803pt;}
.ws103{word-spacing:0.342016pt;}
.ws7{word-spacing:0.371937pt;}
.wsb2{word-spacing:0.408000pt;}
.ws28{word-spacing:0.425071pt;}
.wsfc{word-spacing:0.460800pt;}
.ws29{word-spacing:0.478205pt;}
.ws12d{word-spacing:0.478208pt;}
.wsea{word-spacing:0.526029pt;}
.wseb{word-spacing:0.573850pt;}
.ws12b{word-spacing:0.584473pt;}
.ws172{word-spacing:0.621670pt;}
.ws84{word-spacing:0.646624pt;}
.wsa0{word-spacing:0.651968pt;}
.ws5f{word-spacing:0.678688pt;}
.ws34{word-spacing:0.690740pt;}
.ws85{word-spacing:0.705408pt;}
.ws5e{word-spacing:0.732128pt;}
.ws12c{word-spacing:0.743874pt;}
.wsfb{word-spacing:0.748800pt;}
.wsfa{word-spacing:0.777600pt;}
.ws90{word-spacing:0.797008pt;}
.ws26{word-spacing:0.903276pt;}
.ws114{word-spacing:0.951232pt;}
.ws16b{word-spacing:0.956416pt;}
.ws174{word-spacing:1.004237pt;}
.ws27{word-spacing:1.009543pt;}
.ws16e{word-spacing:1.052058pt;}
.wsad{word-spacing:1.063456pt;}
.ws113{word-spacing:1.197056pt;}
.ws13d{word-spacing:1.243341pt;}
.ws12{word-spacing:1.275213pt;}
.wsc0{word-spacing:1.283773pt;}
.wsa7{word-spacing:1.319968pt;}
.ws1c{word-spacing:1.328347pt;}
.ws30{word-spacing:1.381481pt;}
.wsae{word-spacing:1.432192pt;}
.ws57{word-spacing:1.434614pt;}
.wsa{word-spacing:1.487748pt;}
.ws22{word-spacing:1.594016pt;}
.ws10e{word-spacing:1.651296pt;}
.ws87{word-spacing:1.656640pt;}
.ws108{word-spacing:1.672672pt;}
.ws86{word-spacing:1.683360pt;}
.ws109{word-spacing:1.688704pt;}
.ws125{word-spacing:1.753418pt;}
.wsca{word-spacing:1.806551pt;}
.ws16f{word-spacing:1.817190pt;}
.ws94{word-spacing:1.859685pt;}
.ws16d{word-spacing:1.912832pt;}
.wsc8{word-spacing:1.965953pt;}
.ws14d{word-spacing:2.008474pt;}
.ws35{word-spacing:2.125355pt;}
.wsc2{word-spacing:2.178489pt;}
.ws18{word-spacing:2.231622pt;}
.wsaf{word-spacing:2.276544pt;}
.ws19{word-spacing:2.284756pt;}
.wsa1{word-spacing:2.319296pt;}
.wsa2{word-spacing:2.329984pt;}
.ws13c{word-spacing:2.438861pt;}
.ws96{word-spacing:2.444158pt;}
.ws97{word-spacing:2.459126pt;}
.ws31{word-spacing:2.497292pt;}
.ws122{word-spacing:2.618560pt;}
.ws116{word-spacing:2.629248pt;}
.ws7e{word-spacing:2.639936pt;}
.ws118{word-spacing:2.655968pt;}
.ws51{word-spacing:2.656693pt;}
.ws6e{word-spacing:2.678400pt;}
.ws6f{word-spacing:2.692800pt;}
.ws123{word-spacing:2.709408pt;}
.ws12a{word-spacing:2.709827pt;}
.ws117{word-spacing:2.752160pt;}
.wsd8{word-spacing:2.869229pt;}
.ws82{word-spacing:2.912480pt;}
.ws9{word-spacing:2.922363pt;}
.ws2a{word-spacing:2.975497pt;}
.ws160{word-spacing:3.012710pt;}
.wsc7{word-spacing:3.081764pt;}
.wsa8{word-spacing:3.088832pt;}
.wsc6{word-spacing:3.134898pt;}
.wsec{word-spacing:3.251814pt;}
.ws5a{word-spacing:3.270528pt;}
.ws5b{word-spacing:3.388096pt;}
.wsd6{word-spacing:3.506835pt;}
.ws112{word-spacing:3.543072pt;}
.ws4a{word-spacing:3.613103pt;}
.ws47{word-spacing:3.878772pt;}
.ws10f{word-spacing:3.885088pt;}
.ws7b{word-spacing:3.911808pt;}
.wsc3{word-spacing:3.931906pt;}
.ws177{word-spacing:3.969126pt;}
.ws50{word-spacing:4.091308pt;}
.ws2f{word-spacing:4.144442pt;}
.ws7c{word-spacing:4.205728pt;}
.ws46{word-spacing:4.250709pt;}
.ws10b{word-spacing:4.253824pt;}
.ws10a{word-spacing:4.259168pt;}
.ws24{word-spacing:4.303843pt;}
.ws76{word-spacing:4.510336pt;}
.ws49{word-spacing:4.590212pt;}
.ws3f{word-spacing:4.590797pt;}
.ws75{word-spacing:4.681344pt;}
.ws93{word-spacing:4.728914pt;}
.ws133{word-spacing:4.773845pt;}
.ws148{word-spacing:4.780425pt;}
.ws158{word-spacing:4.780646pt;}
.ws132{word-spacing:4.781175pt;}
.ws23{word-spacing:4.782048pt;}
.ws3{word-spacing:4.782080pt;}
.ws181{word-spacing:4.782652pt;}
.ws143{word-spacing:4.783104pt;}
.ws15e{word-spacing:4.783232pt;}
.ws14a{word-spacing:4.783761pt;}
.ws165{word-spacing:4.785152pt;}
.ws170{word-spacing:4.785655pt;}
.ws1a{word-spacing:4.888316pt;}
.ws11c{word-spacing:4.900448pt;}
.ws3e{word-spacing:4.925542pt;}
.wsa3{word-spacing:5.151616pt;}
.ws11b{word-spacing:5.210400pt;}
.wsa4{word-spacing:5.215744pt;}
.ws2e{word-spacing:5.260253pt;}
.ws16{word-spacing:5.313387pt;}
.ws40{word-spacing:5.355930pt;}
.ws41{word-spacing:5.403750pt;}
.ws129{word-spacing:5.525922pt;}
.ws12f{word-spacing:5.642854pt;}
.ws56{word-spacing:5.738458pt;}
.ws7a{word-spacing:5.814272pt;}
.ws79{word-spacing:5.894432pt;}
.ws78{word-spacing:5.905120pt;}
.ws128{word-spacing:5.950993pt;}
.ws55{word-spacing:6.429198pt;}
.wscf{word-spacing:6.482332pt;}
.wsbc{word-spacing:6.588599pt;}
.ws153{word-spacing:6.694912pt;}
.ws15{word-spacing:6.748001pt;}
.wsd9{word-spacing:6.801135pt;}
.ws100{word-spacing:6.801600pt;}
.wsff{word-spacing:6.892800pt;}
.ws127{word-spacing:6.907403pt;}
.ws126{word-spacing:6.960537pt;}
.ws17b{word-spacing:7.077478pt;}
.ws9f{word-spacing:7.160960pt;}
.ws130{word-spacing:7.603507pt;}
.ws43{word-spacing:7.757545pt;}
.ws59{word-spacing:8.086400pt;}
.wsda{word-spacing:8.554553pt;}
.ws6d{word-spacing:8.764800pt;}
.ws6b{word-spacing:8.774400pt;}
.ws6c{word-spacing:8.788800pt;}
.ws8a{word-spacing:9.026016pt;}
.ws121{word-spacing:9.138240pt;}
.ws167{word-spacing:9.181594pt;}
.ws80{word-spacing:9.319936pt;}
.ws119{word-spacing:9.325280pt;}
.ws11a{word-spacing:9.357344pt;}
.ws81{word-spacing:9.394752pt;}
.ws17{word-spacing:10.201702pt;}
.ws155{word-spacing:10.472755pt;}
.ws1d{word-spacing:10.584023pt;}
.wsb4{word-spacing:11.046048pt;}
.ws2b{word-spacing:11.158112pt;}
.wsce{word-spacing:11.317514pt;}
.ws14c{word-spacing:11.668275pt;}
.ws150{word-spacing:11.833452pt;}
.wsf7{word-spacing:11.874368pt;}
.ws171{word-spacing:11.900407pt;}
.ws17f{word-spacing:11.900723pt;}
.ws14b{word-spacing:11.904085pt;}
.ws140{word-spacing:11.904119pt;}
.ws13b{word-spacing:11.904299pt;}
.ws149{word-spacing:11.904836pt;}
.ws135{word-spacing:11.905186pt;}
.ws17c{word-spacing:11.906253pt;}
.ws13a{word-spacing:11.907379pt;}
.ws83{word-spacing:11.943840pt;}
.ws173{word-spacing:11.955200pt;}
.ws13f{word-spacing:12.098662pt;}
.ws4b{word-spacing:12.539593pt;}
.ws14f{word-spacing:13.098470pt;}
.ws53{word-spacing:13.100702pt;}
.wsc5{word-spacing:13.124065pt;}
.wsc4{word-spacing:13.186320pt;}
.ws33{word-spacing:13.230333pt;}
.ws14e{word-spacing:13.915853pt;}
.ws60{word-spacing:14.460864pt;}
.ws182{word-spacing:15.780864pt;}
.ws178{word-spacing:15.876506pt;}
.ws166{word-spacing:16.682163pt;}
.ws168{word-spacing:16.684791pt;}
.ws144{word-spacing:16.685722pt;}
.ws176{word-spacing:16.685978pt;}
.ws17e{word-spacing:16.686285pt;}
.ws16c{word-spacing:16.686635pt;}
.ws15f{word-spacing:16.687497pt;}
.ws138{word-spacing:16.689289pt;}
.ws146{word-spacing:16.689459pt;}
.ws163{word-spacing:16.737280pt;}
.ws16a{word-spacing:16.832922pt;}
.ws48{word-spacing:16.843436pt;}
.ws15b{word-spacing:16.976384pt;}
.ws159{word-spacing:17.024205pt;}
.ws115{word-spacing:17.319904pt;}
.wsbd{word-spacing:18.041193pt;}
.wse4{word-spacing:18.543719pt;}
.ws161{word-spacing:26.110157pt;}
.wsdd{word-spacing:78.110967pt;}
.wsb5{word-spacing:99.318240pt;}
.wsbb{word-spacing:107.815200pt;}
.wsb7{word-spacing:108.119808pt;}
.wsb9{word-spacing:114.527264pt;}
.wse1{word-spacing:116.634931pt;}
.wsdf{word-spacing:116.682752pt;}
.wsde{word-spacing:144.562278pt;}
.wse3{word-spacing:152.500531pt;}
.ws21{word-spacing:1014.136778pt;}
._29{margin-left:-60.274985pt;}
._1e{margin-left:-54.097312pt;}
._28{margin-left:-48.833481pt;}
._27{margin-left:-47.262345pt;}
._20{margin-left:-42.426025pt;}
._1f{margin-left:-40.854889pt;}
._1d{margin-left:-15.679296pt;}
._2a{margin-left:-14.161600pt;}
._2c{margin-left:-12.964663pt;}
._1{margin-left:-7.077478pt;}
._3a{margin-left:-6.168883pt;}
._2{margin-left:-5.274199pt;}
._0{margin-left:-3.541666pt;}
._17{margin-left:-2.217676pt;}
._5{margin-left:-1.175671pt;}
._6{width:0.969929pt;}
._3{width:2.670359pt;}
._16{width:3.724768pt;}
._3b{width:9.468518pt;}
._38{width:10.424934pt;}
._7{width:12.280650pt;}
._19{width:13.615224pt;}
._37{width:14.671674pt;}
._d{width:15.840619pt;}
._4{width:16.737280pt;}
._b{width:17.859706pt;}
._a{width:18.915657pt;}
._8{width:20.137735pt;}
._c{width:22.156822pt;}
._14{width:23.060098pt;}
._10{width:24.016508pt;}
._e{width:25.826993pt;}
._13{width:27.257674pt;}
._9{width:28.320351pt;}
._12{width:30.126902pt;}
._18{width:31.614651pt;}
._11{width:33.023628pt;}
._1a{width:35.606417pt;}
._24{width:54.380535pt;}
._23{width:79.582839pt;}
._22{width:80.886775pt;}
._21{width:84.686275pt;}
._25{width:100.477888pt;}
._36{width:110.696849pt;}
._2b{width:135.486432pt;}
._26{width:136.886551pt;}
._2f{width:140.545331pt;}
._1b{width:146.281303pt;}
._34{width:152.548352pt;}
._30{width:164.503552pt;}
._1c{width:173.941856pt;}
._32{width:190.948454pt;}
._33{width:200.177869pt;}
._31{width:202.855834pt;}
._2e{width:218.349798pt;}
._35{width:220.167168pt;}
._2d{width:241.973248pt;}
._15{width:1547.102816pt;}
._39{width:1905.426933pt;}
._f{width:1926.680267pt;}
.fs10{font-size:32.000000pt;}
.fs9{font-size:37.193600pt;}
.fsc{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:40.381867pt;}
.fsb{font-size:41.988267pt;}
.fs13{font-size:42.077867pt;}
.fsd{font-size:42.507200pt;}
.fse{font-size:42.560000pt;}
.fsa{font-size:47.820800pt;}
.fs11{font-size:48.000000pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsf{font-size:53.440000pt;}
.fs12{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.fs5{font-size:134.387200pt;}
.ye8{bottom:-586.794267pt;}
.ye7{bottom:-565.514267pt;}
.ye6{bottom:-565.514123pt;}
.y18a{bottom:-547.805536pt;}
.ye5{bottom:-547.514195pt;}
.y189{bottom:-529.805608pt;}
.ye4{bottom:-529.514267pt;}
.ye3{bottom:-529.514195pt;}
.y188{bottom:-511.805680pt;}
.ye2{bottom:-511.514267pt;}
.y187{bottom:-493.885912pt;}
.ye1{bottom:-493.594267pt;}
.y186{bottom:-475.885984pt;}
.ye0{bottom:-474.874267pt;}
.yde{bottom:-465.274979pt;}
.y185{bottom:-457.886056pt;}
.ydb{bottom:-456.234267pt;}
.ydd{bottom:-455.594323pt;}
.ydf{bottom:-447.275051pt;}
.y184{bottom:-439.886128pt;}
.ydc{bottom:-437.594395pt;}
.y183{bottom:-421.886200pt;}
.ya0{bottom:-421.669899pt;}
.yda{bottom:-410.714267pt;}
.y182{bottom:-403.886272pt;}
.y9f{bottom:-403.669971pt;}
.y181{bottom:-385.966504pt;}
.y9e{bottom:-385.670043pt;}
.yd9{bottom:-376.952707pt;}
.y180{bottom:-367.966576pt;}
.y9d{bottom:-359.670147pt;}
.yd8{bottom:-358.952779pt;}
.y17f{bottom:-349.966648pt;}
.yd7{bottom:-340.952851pt;}
.y17e{bottom:-331.966720pt;}
.y9c{bottom:-325.670283pt;}
.yd6{bottom:-322.952923pt;}
.y17d{bottom:-313.966792pt;}
.y9b{bottom:-307.750515pt;}
.yd5{bottom:-304.952995pt;}
.y17c{bottom:-295.966864pt;}
.y9a{bottom:-289.750587pt;}
.yd4{bottom:-287.033227pt;}
.y17b{bottom:-277.966936pt;}
.y99{bottom:-271.750659pt;}
.yd3{bottom:-269.033299pt;}
.y17a{bottom:-260.047168pt;}
.y98{bottom:-253.750731pt;}
.yd2{bottom:-243.033403pt;}
.y179{bottom:-242.047240pt;}
.y97{bottom:-235.750803pt;}
.y178{bottom:-224.047312pt;}
.y96{bottom:-217.750875pt;}
.yd1{bottom:-209.033539pt;}
.y177{bottom:-206.047384pt;}
.y95{bottom:-199.750947pt;}
.y176{bottom:-188.047456pt;}
.y94{bottom:-181.831179pt;}
.yd0{bottom:-175.033675pt;}
.y175{bottom:-170.047528pt;}
.y93{bottom:-163.831251pt;}
.ycf{bottom:-157.033747pt;}
.y174{bottom:-152.047336pt;}
.y92{bottom:-145.831323pt;}
.yce{bottom:-139.033819pt;}
.y91{bottom:-127.831395pt;}
.y173{bottom:-126.127600pt;}
.ycd{bottom:-121.114051pt;}
.y90{bottom:-109.831467pt;}
.ycc{bottom:-103.114123pt;}
.y172{bottom:-92.528400pt;}
.ycb{bottom:-85.114195pt;}
.y8f{bottom:-76.312800pt;}
.y171{bottom:-75.168000pt;}
.yca{bottom:-67.114267pt;}
.y8e{bottom:-58.952400pt;}
.y170{bottom:-57.807600pt;}
.y8d{bottom:-41.592000pt;}
.y16f{bottom:-40.527600pt;}
.yc9{bottom:-33.514267pt;}
.y8c{bottom:-24.231600pt;}
.y16e{bottom:-9.087600pt;}
.yc8{bottom:-2.474267pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:3.044747pt;}
.y8b{bottom:4.648400pt;}
.y2f{bottom:12.578910pt;}
.y23{bottom:13.168350pt;}
.y52{bottom:56.693333pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y51{bottom:97.881333pt;}
.y19d{bottom:107.320000pt;}
.y12b{bottom:112.998667pt;}
.y217{bottom:114.066667pt;}
.y50{bottom:115.894667pt;}
.y1b1{bottom:117.265333pt;}
.ybf{bottom:122.766667pt;}
.y1e4{bottom:123.205333pt;}
.y21{bottom:123.790666pt;}
.y19c{bottom:125.332000pt;}
.yfe{bottom:130.624000pt;}
.y12a{bottom:131.010667pt;}
.y216{bottom:131.281333pt;}
.y4f{bottom:133.906667pt;}
.y1b0{bottom:138.745333pt;}
.y1e3{bottom:140.421333pt;}
.ybe{bottom:140.778667pt;}
.y19b{bottom:143.345333pt;}
.y82{bottom:147.645333pt;}
.y215{bottom:148.497333pt;}
.yfd{bottom:148.637333pt;}
.y129{bottom:149.022667pt;}
.y4e{bottom:151.920000pt;}
.y1e2{bottom:157.636000pt;}
.ybd{bottom:158.790667pt;}
.y1af{bottom:160.225333pt;}
.y19a{bottom:161.357333pt;}
.y81{bottom:165.657333pt;}
.y214{bottom:165.713333pt;}
.yfc{bottom:166.649333pt;}
.y128{bottom:167.036000pt;}
.y4d{bottom:169.932000pt;}
.y1e1{bottom:174.852000pt;}
.y18{bottom:175.052000pt;}
.ybc{bottom:176.804000pt;}
.y199{bottom:179.370667pt;}
.y1ae{bottom:181.704000pt;}
.y213{bottom:182.928000pt;}
.y80{bottom:183.670667pt;}
.yfb{bottom:184.662667pt;}
.y127{bottom:185.048000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y4c{bottom:187.944000pt;}
.y1e0{bottom:192.068000pt;}
.ybb{bottom:194.816000pt;}
.y1ad{bottom:195.213333pt;}
.y198{bottom:197.382667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y212{bottom:200.144000pt;}
.y7f{bottom:201.682667pt;}
.yfa{bottom:202.674667pt;}
.y126{bottom:203.061333pt;}
.y4b{bottom:205.957333pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1ac{bottom:208.722667pt;}
.y1df{bottom:209.282667pt;}
.y16d{bottom:210.512832pt;}
.yba{bottom:212.829333pt;}
.y197{bottom:215.394667pt;}
.y211{bottom:217.358667pt;}
.y7e{bottom:219.696000pt;}
.yf9{bottom:220.686667pt;}
.y125{bottom:221.073333pt;}
.y1ab{bottom:222.232000pt;}
.y4a{bottom:223.969333pt;}
.y1de{bottom:226.498667pt;}
.y16c{bottom:228.512760pt;}
.yb9{bottom:230.841333pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y196{bottom:233.408000pt;}
.y210{bottom:234.574667pt;}
.y7d{bottom:237.708000pt;}
.yf8{bottom:238.700000pt;}
.y124{bottom:239.085333pt;}
.y49{bottom:241.982667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y1aa{bottom:243.712000pt;}
.y1dd{bottom:243.713333pt;}
.y16b{bottom:246.512688pt;}
.y14c{bottom:248.604000pt;}
.yb8{bottom:248.853333pt;}
.y195{bottom:251.420000pt;}
.y20f{bottom:251.790667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y7c{bottom:255.720000pt;}
.yf7{bottom:256.712000pt;}
.y123{bottom:257.098667pt;}
.y1a9{bottom:257.221333pt;}
.y48{bottom:259.994667pt;}
.y1dc{bottom:260.929333pt;}
.y16a{bottom:264.512616pt;}
.y14b{bottom:266.617333pt;}
.yb7{bottom:266.866667pt;}
.y20e{bottom:269.005333pt;}
.y194{bottom:269.433333pt;}
.y7b{bottom:273.733333pt;}
.yf6{bottom:274.725333pt;}
.y122{bottom:275.110667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y47{bottom:278.006667pt;}
.y1db{bottom:278.145333pt;}
.y169{bottom:282.512544pt;}
.y14a{bottom:284.629333pt;}
.yb6{bottom:284.878667pt;}
.y20d{bottom:286.221333pt;}
.y1a8{bottom:286.670667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y193{bottom:287.445333pt;}
.y79{bottom:291.745333pt;}
.yf5{bottom:292.737333pt;}
.y121{bottom:293.124000pt;}
.y1da{bottom:295.360000pt;}
.y46{bottom:296.020000pt;}
.y7a{bottom:296.568000pt;}
.y168{bottom:300.512472pt;}
.y149{bottom:302.641333pt;}
.yb5{bottom:302.892000pt;}
.y20c{bottom:303.437333pt;}
.y1a7{bottom:304.684000pt;}
.y192{bottom:305.457333pt;}
.yf{bottom:309.452000pt;}
.y78{bottom:309.758667pt;}
.yf4{bottom:310.749333pt;}
.y120{bottom:311.136000pt;}
.y1d9{bottom:312.576000pt;}
.y45{bottom:314.032000pt;}
.y167{bottom:318.512472pt;}
.y20b{bottom:320.652000pt;}
.y148{bottom:320.654667pt;}
.yb4{bottom:320.904000pt;}
.y1a6{bottom:322.696000pt;}
.y190{bottom:323.470667pt;}
.y191{bottom:328.292000pt;}
.yf2{bottom:328.762667pt;}
.y11f{bottom:329.148000pt;}
.y1d8{bottom:329.790667pt;}
.yf3{bottom:333.584000pt;}
.y77{bottom:335.741333pt;}
.y166{bottom:336.512736pt;}
.y20a{bottom:337.868000pt;}
.y147{bottom:338.666667pt;}
.yb3{bottom:338.916000pt;}
.y44{bottom:340.014667pt;}
.y1a5{bottom:340.709333pt;}
.ye{bottom:343.809333pt;}
.yf1{bottom:346.774667pt;}
.y1d7{bottom:347.006667pt;}
.y11e{bottom:347.161333pt;}
.y18f{bottom:349.453333pt;}
.y165{bottom:354.432504pt;}
.y209{bottom:355.082667pt;}
.yc7{bottom:355.125733pt;}
.y146{bottom:356.680000pt;}
.yb2{bottom:356.929333pt;}
.y1a4{bottom:358.721333pt;}
.yd{bottom:362.706666pt;}
.y1d6{bottom:364.222667pt;}
.yf0{bottom:364.788000pt;}
.y11d{bottom:365.173333pt;}
.y76{bottom:366.692000pt;}
.y208{bottom:372.298667pt;}
.yb1{bottom:374.941333pt;}
.y1a3{bottom:376.733333pt;}
.y18e{bottom:377.562667pt;}
.y164{bottom:380.432400pt;}
.y1d5{bottom:381.437333pt;}
.y145{bottom:382.662667pt;}
.yef{bottom:382.800000pt;}
.y11c{bottom:383.186667pt;}
.y207{bottom:389.514667pt;}
.yb0{bottom:392.954667pt;}
.y18d{bottom:394.658667pt;}
.y1a2{bottom:394.746667pt;}
.y75{bottom:397.642667pt;}
.y1d4{bottom:398.653333pt;}
.yee{bottom:400.812000pt;}
.y11b{bottom:401.198667pt;}
.y206{bottom:406.729333pt;}
.y43{bottom:407.940000pt;}
.yaf{bottom:410.966667pt;}
.y18c{bottom:411.754667pt;}
.y1a1{bottom:412.758667pt;}
.y144{bottom:413.613333pt;}
.y163{bottom:413.632400pt;}
.y8a{bottom:414.408616pt;}
.y74{bottom:415.654667pt;}
.y1d3{bottom:415.868000pt;}
.yed{bottom:418.825333pt;}
.y205{bottom:423.945333pt;}
.y42{bottom:425.952000pt;}
.y11a{bottom:427.181333pt;}
.y18b{bottom:428.849333pt;}
.yad{bottom:428.978667pt;}
.y1a0{bottom:430.772000pt;}
.y89{bottom:432.408544pt;}
.y1d2{bottom:433.084000pt;}
.y73{bottom:433.666667pt;}
.yae{bottom:433.801333pt;}
.yec{bottom:436.837333pt;}
.y204{bottom:441.160000pt;}
.y143{bottom:444.564000pt;}
.yc{bottom:446.990669pt;}
.yab{bottom:446.992000pt;}
.y19f{bottom:448.784000pt;}
.y162{bottom:448.786667pt;}
.y1d1{bottom:450.300000pt;}
.y88{bottom:450.408472pt;}
.y72{bottom:451.680000pt;}
.yac{bottom:451.813333pt;}
.yeb{bottom:454.850667pt;}
.y119{bottom:458.132000pt;}
.y203{bottom:458.376000pt;}
.y41{bottom:459.905333pt;}
.y142{bottom:462.576000pt;}
.yb{bottom:462.990669pt;}
.ya9{bottom:465.004000pt;}
.y1d0{bottom:467.514667pt;}
.y87{bottom:468.408632pt;}
.y71{bottom:469.692000pt;}
.yaa{bottom:469.826667pt;}
.yea{bottom:472.862667pt;}
.y19e{bottom:474.766667pt;}
.y202{bottom:475.592000pt;}
.y118{bottom:476.144000pt;}
.y40{bottom:477.917333pt;}
.ya{bottom:478.990666pt;}
.y141{bottom:480.588000pt;}
.ya7{bottom:483.017333pt;}
.y1cf{bottom:484.730667pt;}
.y86{bottom:486.328472pt;}
.y70{bottom:487.704000pt;}
.ya8{bottom:487.838667pt;}
.y21c{bottom:492.624000pt;}
.y201{bottom:492.806667pt;}
.y117{bottom:494.157333pt;}
.y9{bottom:494.990666pt;}
.y3f{bottom:495.930667pt;}
.y140{bottom:498.601333pt;}
.ya5{bottom:501.029333pt;}
.y1ce{bottom:501.945333pt;}
.ye9{bottom:503.974667pt;}
.y85{bottom:504.328400pt;}
.y6f{bottom:505.717333pt;}
.ya6{bottom:505.850667pt;}
.y21b{bottom:509.840000pt;}
.y200{bottom:510.022667pt;}
.y116{bottom:512.169333pt;}
.y3e{bottom:513.942667pt;}
.y13f{bottom:516.613333pt;}
.y1cd{bottom:519.161333pt;}
.y6e{bottom:523.729333pt;}
.yc6{bottom:523.910667pt;}
.y21a{bottom:527.054667pt;}
.y1ff{bottom:527.237333pt;}
.y115{bottom:530.182667pt;}
.y3d{bottom:531.956000pt;}
.ya4{bottom:532.140000pt;}
.y13e{bottom:534.626667pt;}
.y1cc{bottom:536.377333pt;}
.y84{bottom:537.528400pt;}
.y6d{bottom:541.742667pt;}
.y1fe{bottom:544.453333pt;}
.y114{bottom:548.194667pt;}
.ya3{bottom:549.236000pt;}
.y3c{bottom:549.968000pt;}
.y13d{bottom:552.638667pt;}
.y219{bottom:553.141333pt;}
.y1cb{bottom:553.592000pt;}
.y6c{bottom:559.754667pt;}
.y1fd{bottom:561.669333pt;}
.y113{bottom:566.206667pt;}
.ya2{bottom:566.332000pt;}
.y218{bottom:566.650667pt;}
.y3b{bottom:567.980000pt;}
.y1ca{bottom:570.808000pt;}
.y8{bottom:573.786667pt;}
.y6b{bottom:577.766667pt;}
.y13c{bottom:578.478667pt;}
.y1fc{bottom:578.884000pt;}
.ya1{bottom:583.428000pt;}
.y3a{bottom:585.993333pt;}
.y13b{bottom:587.590667pt;}
.y1c9{bottom:588.024000pt;}
.y112{bottom:592.189333pt;}
.y7{bottom:592.685334pt;}
.y6a{bottom:595.780000pt;}
.y1fb{bottom:596.100000pt;}
.y83{bottom:603.365333pt;}
.y38{bottom:604.005333pt;}
.y1c8{bottom:605.238667pt;}
.y39{bottom:608.828000pt;}
.y1fa{bottom:613.314667pt;}
.y69{bottom:613.792000pt;}
.y37{bottom:622.018667pt;}
.y1c7{bottom:622.454667pt;}
.y111{bottom:623.140000pt;}
.y13a{bottom:626.013333pt;}
.y1f9{bottom:630.530667pt;}
.y68{bottom:631.805333pt;}
.y1c6{bottom:639.669333pt;}
.y36{bottom:640.030667pt;}
.y110{bottom:641.153333pt;}
.y139{bottom:644.026667pt;}
.y6{bottom:645.598667pt;}
.y1f8{bottom:647.746667pt;}
.y67{bottom:649.817333pt;}
.y1c5{bottom:656.885333pt;}
.y35{bottom:658.042667pt;}
.y10f{bottom:659.165333pt;}
.y138{bottom:662.038667pt;}
.y1f7{bottom:664.961333pt;}
.y66{bottom:667.829333pt;}
.y161{bottom:668.730667pt;}
.y3{bottom:668.977329pt;}
.y1c4{bottom:674.101333pt;}
.y34{bottom:676.056000pt;}
.y10e{bottom:677.178667pt;}
.y137{bottom:680.050667pt;}
.y1f6{bottom:682.177333pt;}
.y65{bottom:685.842667pt;}
.y160{bottom:686.742667pt;}
.y1c3{bottom:691.316000pt;}
.y33{bottom:694.068000pt;}
.y10d{bottom:695.190667pt;}
.y1f5{bottom:699.392000pt;}
.y64{bottom:703.854667pt;}
.y15f{bottom:704.756000pt;}
.y136{bottom:706.033333pt;}
.y1c2{bottom:708.532000pt;}
.y32{bottom:712.081333pt;}
.y1f4{bottom:716.608000pt;}
.y63{bottom:721.868000pt;}
.y10c{bottom:722.361333pt;}
.y15e{bottom:722.768000pt;}
.y1c1{bottom:725.746667pt;}
.y109{bottom:729.713333pt;}
.y31{bottom:730.093333pt;}
.y1f3{bottom:733.824000pt;}
.y135{bottom:736.984000pt;}
.y108{bottom:738.825333pt;}
.y62{bottom:739.880000pt;}
.y15d{bottom:740.780000pt;}
.y1c0{bottom:742.962667pt;}
.y1f2{bottom:751.038667pt;}
.y10b{bottom:753.138667pt;}
.y134{bottom:754.997333pt;}
.y10a{bottom:755.794667pt;}
.y61{bottom:757.892000pt;}
.y15c{bottom:758.793333pt;}
.y1bf{bottom:760.178667pt;}
.y2e{bottom:761.589301pt;}
.y2d{bottom:762.270667pt;}
.y1f1{bottom:768.254667pt;}
.y133{bottom:773.009333pt;}
.y60{bottom:775.905333pt;}
.y15a{bottom:776.805333pt;}
.y1be{bottom:777.393333pt;}
.y15b{bottom:781.628000pt;}
.y2{bottom:781.661334pt;}
.y107{bottom:782.085333pt;}
.y1f0{bottom:785.469333pt;}
.y131{bottom:791.021333pt;}
.y5f{bottom:793.917333pt;}
.y1bd{bottom:794.609333pt;}
.y158{bottom:794.818667pt;}
.y132{bottom:795.844000pt;}
.y2c{bottom:796.941333pt;}
.y106{bottom:798.105333pt;}
.y159{bottom:799.640000pt;}
.y105{bottom:800.098667pt;}
.y1ef{bottom:802.685333pt;}
.y130{bottom:809.034667pt;}
.y1bc{bottom:811.824000pt;}
.y5e{bottom:811.930667pt;}
.y157{bottom:812.830667pt;}
.y2b{bottom:813.081333pt;}
.y104{bottom:816.118667pt;}
.y103{bottom:818.110667pt;}
.y1ee{bottom:819.901333pt;}
.y12f{bottom:827.046667pt;}
.y1bb{bottom:829.040000pt;}
.y5d{bottom:829.942667pt;}
.y2a{bottom:833.561333pt;}
.y1ed{bottom:837.116000pt;}
.y156{bottom:838.813333pt;}
.y12e{bottom:845.060000pt;}
.y29{bottom:845.360000pt;}
.y101{bottom:846.089333pt;}
.y1ba{bottom:846.256000pt;}
.y5c{bottom:847.954667pt;}
.y1ec{bottom:854.332000pt;}
.yff{bottom:855.201333pt;}
.y1{bottom:859.312000pt;}
.y12d{bottom:863.072000pt;}
.y1b9{bottom:863.470667pt;}
.y100{bottom:864.194667pt;}
.y28{bottom:865.840000pt;}
.y5b{bottom:865.968000pt;}
.y1eb{bottom:871.546667pt;}
.y102{bottom:873.932000pt;}
.yc5{bottom:876.010667pt;}
.y155{bottom:877.814667pt;}
.y1b8{bottom:880.686667pt;}
.y5a{bottom:883.980000pt;}
.y27{bottom:885.609333pt;}
.y1ea{bottom:888.762667pt;}
.y12c{bottom:889.054667pt;}
.y154{bottom:892.744000pt;}
.yc4{bottom:894.022667pt;}
.y1b7{bottom:897.901333pt;}
.y59{bottom:901.993333pt;}
.y1e9{bottom:905.978667pt;}
.y153{bottom:907.673333pt;}
.yc3{bottom:912.034667pt;}
.y1b6{bottom:915.117333pt;}
.y58{bottom:920.005333pt;}
.y152{bottom:922.602667pt;}
.y1e8{bottom:923.193333pt;}
.y26{bottom:925.198667pt;}
.yc2{bottom:930.048000pt;}
.y1b5{bottom:932.333333pt;}
.y57{bottom:938.017333pt;}
.y1e7{bottom:940.409333pt;}
.y151{bottom:943.934667pt;}
.yc1{bottom:948.060000pt;}
.y1b4{bottom:949.548000pt;}
.y25{bottom:952.217333pt;}
.y14e{bottom:952.949333pt;}
.y150{bottom:953.105333pt;}
.y56{bottom:956.030667pt;}
.y1e6{bottom:957.624000pt;}
.y14f{bottom:965.265333pt;}
.yc0{bottom:966.073333pt;}
.y1b3{bottom:966.764000pt;}
.y55{bottom:974.042667pt;}
.y1e5{bottom:974.840000pt;}
.y24{bottom:977.906667pt;}
.y1b2{bottom:991.949333pt;}
.y54{bottom:992.056000pt;}
.y14d{bottom:993.372000pt;}
.y22{bottom:1011.514667pt;}
.y53{bottom:1038.548000pt;}
.h2a{height:0.903276pt;}
.h1f{height:22.088881pt;}
.h10{height:22.673858pt;}
.h25{height:23.265625pt;}
.he{height:27.076941pt;}
.h7{height:28.560000pt;}
.h15{height:29.064225pt;}
.h16{height:29.397999pt;}
.h12{height:29.433775pt;}
.h2b{height:29.599908pt;}
.h11{height:30.399505pt;}
.h19{height:31.067969pt;}
.h17{height:31.157778pt;}
.h2e{height:31.558400pt;}
.h35{height:33.713664pt;}
.h1e{height:34.430976pt;}
.hf{height:34.813542pt;}
.h33{height:34.898438pt;}
.h1c{height:35.039062pt;}
.h34{height:35.052646pt;}
.h13{height:38.256384pt;}
.h1d{height:38.462187pt;}
.h14{height:38.681455pt;}
.h1a{height:38.853594pt;}
.hb{height:38.947124pt;}
.h22{height:39.010156pt;}
.h30{height:40.217643pt;}
.h6{height:40.800000pt;}
.h24{height:41.462969pt;}
.h27{height:42.656250pt;}
.h3{height:42.840000pt;}
.h9{height:45.271688pt;}
.h1b{height:46.531250pt;}
.h32{height:46.718750pt;}
.hd{height:48.365611pt;}
.h20{height:48.683332pt;}
.h2{height:48.960000pt;}
.h2d{height:65.512225pt;}
.hc{height:68.861952pt;}
.h5{height:69.360000pt;}
.h2c{height:74.654788pt;}
.h26{height:74.695802pt;}
.h29{height:74.920458pt;}
.h23{height:75.167660pt;}
.h28{height:75.825942pt;}
.ha{height:91.114522pt;}
.h2f{height:92.368666pt;}
.h4{height:105.826671pt;}
.h31{height:198.922667pt;}
.h21{height:331.078667pt;}
.h18{height:401.974667pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:115.043002pt;}
.w8{width:554.091333pt;}
.w2{width:566.928019pt;}
.w7{width:569.922667pt;}
.w6{width:580.247867pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x79{left:-9.426667pt;}
.xc4{left:-8.050000pt;}
.x4f{left:-6.673467pt;}
.x0{left:0.000000pt;}
.x7b{left:18.893333pt;}
.xc5{left:20.270528pt;}
.x51{left:21.646533pt;}
.xb{left:26.021437pt;}
.x6{left:51.612412pt;}
.x84{left:76.253333pt;}
.x81{left:82.253333pt;}
.x85{left:83.853474pt;}
.x88{left:86.013926pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x89{left:99.933333pt;}
.x5{left:102.046667pt;}
.x8a{left:103.933333pt;}
.x4e{left:106.726800pt;}
.x9{left:108.542667pt;}
.x7{left:109.606667pt;}
.x78{left:111.889333pt;}
.x63{left:115.490667pt;}
.x8b{left:117.613333pt;}
.xc3{left:119.806000pt;}
.x64{left:121.434667pt;}
.x8{left:129.929333pt;}
.x56{left:134.012000pt;}
.xc2{left:135.936000pt;}
.x57{left:139.320000pt;}
.xd{left:141.330667pt;}
.x86{left:142.573333pt;}
.x82{left:144.253333pt;}
.x87{left:146.573333pt;}
.x83{left:148.173333pt;}
.x29{left:152.558667pt;}
.xad{left:155.142667pt;}
.x3a{left:156.269333pt;}
.x65{left:159.390667pt;}
.xca{left:160.289333pt;}
.x7a{left:161.853333pt;}
.x2a{left:165.842667pt;}
.xc{left:167.974667pt;}
.x3b{left:169.552000pt;}
.xbd{left:172.244000pt;}
.xcb{left:173.572000pt;}
.xbc{left:175.936000pt;}
.x66{left:178.777333pt;}
.x4{left:180.874667pt;}
.x17{left:181.948000pt;}
.x80{left:183.853333pt;}
.x52{left:186.660000pt;}
.xae{left:188.390667pt;}
.x7d{left:189.453210pt;}
.x2d{left:193.397333pt;}
.x2e{left:196.652000pt;}
.xaf{left:200.856000pt;}
.xe{left:209.993333pt;}
.x7c{left:214.172698pt;}
.x71{left:221.577333pt;}
.xa3{left:224.012000pt;}
.xd4{left:225.868000pt;}
.x9f{left:232.410667pt;}
.x72{left:234.861333pt;}
.x6f{left:236.760000pt;}
.x73{left:238.248000pt;}
.xa0{left:239.736000pt;}
.xb3{left:244.326667pt;}
.xd0{left:248.694667pt;}
.xf{left:250.020000pt;}
.x74{left:251.532000pt;}
.xb4{left:257.610667pt;}
.x10{left:262.232000pt;}
.xa4{left:267.442667pt;}
.xa5{left:271.468000pt;}
.x8c{left:273.236000pt;}
.xbe{left:276.472000pt;}
.xbf{left:279.984000pt;}
.x3c{left:280.978667pt;}
.xb0{left:286.830667pt;}
.x3d{left:294.262667pt;}
.x70{left:295.400000pt;}
.xb1{left:299.296000pt;}
.x94{left:301.624000pt;}
.x41{left:307.493333pt;}
.x76{left:312.992000pt;}
.x95{left:314.908000pt;}
.x4a{left:320.272000pt;}
.x11{left:325.621333pt;}
.xce{left:331.114667pt;}
.x4b{left:333.556000pt;}
.x4c{left:336.860000pt;}
.x12{left:337.833333pt;}
.x67{left:343.024000pt;}
.xcf{left:344.398667pt;}
.x58{left:345.878667pt;}
.x9b{left:348.845333pt;}
.x4d{left:350.144000pt;}
.x59{left:353.184000pt;}
.xa6{left:354.566667pt;}
.xb5{left:359.137333pt;}
.x48{left:360.864000pt;}
.x97{left:361.790667pt;}
.xcc{left:365.140000pt;}
.xcd{left:371.782667pt;}
.x49{left:374.146667pt;}
.x98{left:375.074667pt;}
.x99{left:378.402667pt;}
.x7e{left:382.892885pt;}
.x6a{left:388.294667pt;}
.x9a{left:391.685333pt;}
.x6b{left:397.181333pt;}
.xa8{left:399.484000pt;}
.xa9{left:400.593333pt;}
.x18{left:403.296000pt;}
.x3{left:404.408000pt;}
.xa7{left:405.929333pt;}
.xb2{left:408.629333pt;}
.x19{left:409.938667pt;}
.x9c{left:412.264000pt;}
.x1a{left:413.265333pt;}
.xb6{left:419.045333pt;}
.x13{left:420.473333pt;}
.x54{left:421.778667pt;}
.x6c{left:423.834667pt;}
.x36{left:425.901333pt;}
.x55{left:429.084000pt;}
.x1d{left:430.645333pt;}
.x14{left:432.686667pt;}
.x1e{left:437.286667pt;}
.xb7{left:438.682667pt;}
.x9d{left:441.614667pt;}
.x1f{left:443.882667pt;}
.x37{left:445.960000pt;}
.x20{left:450.524000pt;}
.x3e{left:452.304000pt;}
.x7f{left:456.652045pt;}
.x96{left:459.662667pt;}
.x3f{left:465.588000pt;}
.x8d{left:468.372000pt;}
.x53{left:471.358667pt;}
.x8e{left:477.258667pt;}
.xc7{left:480.306667pt;}
.xc8{left:487.612000pt;}
.x34{left:502.650667pt;}
.x15{left:506.753333pt;}
.x8f{left:514.117333pt;}
.x35{left:515.934667pt;}
.x16{left:519.220000pt;}
.x25{left:523.425333pt;}
.xb9{left:525.466667pt;}
.xd3{left:527.834667pt;}
.xb8{left:532.133333pt;}
.x26{left:536.709333pt;}
.x32{left:537.730667pt;}
.x27{left:539.964000pt;}
.x5a{left:541.062667pt;}
.x5b{left:547.040000pt;}
.x33{left:551.014667pt;}
.x28{left:553.246667pt;}
.x38{left:559.001333pt;}
.xc6{left:564.830000pt;}
.x50{left:570.206533pt;}
.xaa{left:571.106667pt;}
.x39{left:572.284000pt;}
.x90{left:575.602667pt;}
.x21{left:577.813333pt;}
.x2f{left:579.212000pt;}
.xc0{left:581.366667pt;}
.xab{left:584.384000pt;}
.x91{left:587.806667pt;}
.x22{left:591.096000pt;}
.x30{left:592.494667pt;}
.xc1{left:593.450667pt;}
.x23{left:594.480000pt;}
.x5c{left:597.233333pt;}
.x31{left:599.170667pt;}
.x5d{left:603.469333pt;}
.x75{left:604.552000pt;}
.x24{left:607.764000pt;}
.x1b{left:611.672000pt;}
.xc9{left:612.938667pt;}
.x1c{left:618.313333pt;}
.x5e{left:622.297333pt;}
.xa{left:623.413317pt;}
.x40{left:625.150667pt;}
.x6d{left:626.476000pt;}
.xd1{left:628.316000pt;}
.x42{left:629.438667pt;}
.x92{left:634.696000pt;}
.xba{left:635.794667pt;}
.x6e{left:638.941333pt;}
.x43{left:641.890667pt;}
.x93{left:643.724000pt;}
.xa1{left:647.097333pt;}
.xbb{left:649.798667pt;}
.x5f{left:650.710667pt;}
.x44{left:655.440000pt;}
.x60{left:656.948000pt;}
.x45{left:664.717333pt;}
.xd2{left:666.189333pt;}
.xac{left:667.409333pt;}
.x77{left:669.850667pt;}
.x61{left:671.134667pt;}
.x2b{left:672.796000pt;}
.x68{left:674.376000pt;}
.x9e{left:676.165333pt;}
.x69{left:680.320000pt;}
.x62{left:681.476000pt;}
.x46{left:684.214667pt;}
.x2c{left:686.078667pt;}
.xa2{left:687.628000pt;}
.x47{left:689.926667pt;}
}




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