
    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_f00fe314d911ef3b591e48ba.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_680ee932ccd2f35d472cd795.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b72061e92be33f458d0beafd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_89349f6a02878663df1682f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.747000;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_1d2a982cf8c86e7277330dac.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fb4bea2c57e68dcbc43a6d73.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9bf91848f6da295c378b70b9.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5a8253f4085a9d81de52baaa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.116000;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_37f8eddf4d372206d1557407.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6ed8c3ed47f79eccd5cd7626.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003906;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_f91aaf3398500cf1db0f33ac.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_fb0903c5343095d1b2167e9f.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_cd98ac55dd7a45dde2760464.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.357000;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_a08d8026f840cac26a26d8d6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.059000;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_5abcbd4f97e8e976359b5d66.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_6ed8c3ed47f79eccd5cd7626.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.003906;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_e3c55e87445e3aee533031b9.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_fb0903c5343095d1b2167e9f.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_8e323113876976c53c4afd54.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.651000;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_76c22cc07e6b8cfbd7c799c1.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_e3f05b38f00213f452084063.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.003906;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_3df6217068f9b3dee905cd82.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_cdfbba7458ae8fe21f9bf8c4.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_fab5d3c5ddcdba676e8ca347.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_12c13aa0cd53a7560e7c3f6a.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_566606015fe0dfca0c708f51.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_32034e58e0ec3ae0552f9162.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.003906;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_f863324cab18763e5233cb7b.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_fb0903c5343095d1b2167e9f.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_9224674740f3d0dd75f433d9.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_0580448871cde487b3e031b5.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_78d29dc8d7f2e0157eda35bd.woff2')format("woff");}.ff23{font-family:ff23;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;}
.m2{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);}
.m7{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);}
.m8{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);}
.m6{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);}
.m1b{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);}
.m1c{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);}
.mc{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);}
.m9{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);}
.me{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);}
.m27{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);}
.md{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);}
.mb{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);}
.m10{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);}
.m1{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);}
.m21{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);}
.m25{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);}
.m15{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);}
.m1f{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);}
.m12{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);}
.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);}
.m17{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);}
.m13{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);}
.mf{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);}
.m16{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);}
.m24{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);}
.m4{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);}
.m1a{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);}
.m14{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);}
.m20{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);}
.m18{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);}
.m11{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);}
.m5{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);}
.m22{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);}
.m26{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);}
.m23{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);}
.m1e{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);}
.m1d{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);}
.m19{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);}
.m28{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);}
.ma{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);}
.v2{vertical-align:-19.530000px;}
.v4{vertical-align:-15.119400px;}
.v9{vertical-align:-12.867120px;}
.vc{vertical-align:-7.448112px;}
.va{vertical-align:-1.517208px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:11.190000px;}
.v8{vertical-align:12.864577px;}
.v3{vertical-align:15.113376px;}
.v5{vertical-align:19.524000px;}
.v1{vertical-align:21.702000px;}
.vb{vertical-align:26.994480px;}
.v7{vertical-align:28.961994px;}
.ls52{letter-spacing:-0.342684px;}
.lsc2{letter-spacing:-0.252504px;}
.lsc5{letter-spacing:-0.216432px;}
.ls48{letter-spacing:-0.162324px;}
.ls47{letter-spacing:-0.156312px;}
.lsc0{letter-spacing:-0.150300px;}
.ls42{letter-spacing:-0.144288px;}
.ls3c{letter-spacing:-0.138276px;}
.lsc4{letter-spacing:-0.136800px;}
.ls3b{letter-spacing:-0.132264px;}
.ls85{letter-spacing:-0.127905px;}
.ls4a{letter-spacing:-0.126252px;}
.ls44{letter-spacing:-0.120240px;}
.ls45{letter-spacing:-0.114228px;}
.ls51{letter-spacing:-0.108216px;}
.ls39{letter-spacing:-0.108000px;}
.ls8e{letter-spacing:-0.107440px;}
.ls88{letter-spacing:-0.102324px;}
.ls53{letter-spacing:-0.102204px;}
.ls46{letter-spacing:-0.096192px;}
.lsb4{letter-spacing:-0.093716px;}
.ls34{letter-spacing:-0.090972px;}
.ls4b{letter-spacing:-0.090180px;}
.ls8a{letter-spacing:-0.086976px;}
.lsbf{letter-spacing:-0.084168px;}
.ls4f{letter-spacing:-0.078156px;}
.ls7d{letter-spacing:-0.077417px;}
.lsbe{letter-spacing:-0.075600px;}
.ls4c{letter-spacing:-0.072144px;}
.ls8b{letter-spacing:-0.071627px;}
.lsba{letter-spacing:-0.070200px;}
.ls7e{letter-spacing:-0.066511px;}
.ls50{letter-spacing:-0.066132px;}
.ls41{letter-spacing:-0.060120px;}
.lsb6{letter-spacing:-0.059740px;}
.ls86{letter-spacing:-0.056278px;}
.ls4e{letter-spacing:-0.054108px;}
.ls37{letter-spacing:-0.054000px;}
.ls49{letter-spacing:-0.050400px;}
.ls43{letter-spacing:-0.048096px;}
.lsc1{letter-spacing:-0.046800px;}
.ls83{letter-spacing:-0.046046px;}
.lsbb{letter-spacing:-0.043056px;}
.ls84{letter-spacing:-0.042890px;}
.ls4d{letter-spacing:-0.042084px;}
.lsbc{letter-spacing:-0.039744px;}
.ls8d{letter-spacing:-0.036763px;}
.ls3a{letter-spacing:-0.036072px;}
.ls82{letter-spacing:-0.035813px;}
.ls40{letter-spacing:-0.030060px;}
.lsb5{letter-spacing:-0.027572px;}
.lsbd{letter-spacing:-0.027000px;}
.ls80{letter-spacing:-0.025581px;}
.ls3e{letter-spacing:-0.024048px;}
.ls35{letter-spacing:-0.021600px;}
.ls81{letter-spacing:-0.020465px;}
.ls8c{letter-spacing:-0.018382px;}
.lsc3{letter-spacing:-0.018036px;}
.ls36{letter-spacing:-0.016200px;}
.ls3f{letter-spacing:-0.012024px;}
.ls38{letter-spacing:-0.010800px;}
.ls89{letter-spacing:-0.010232px;}
.lsb3{letter-spacing:-0.009191px;}
.ls3d{letter-spacing:-0.006012px;}
.ls87{letter-spacing:-0.005116px;}
.lsb2{letter-spacing:-0.004595px;}
.ls7{letter-spacing:0.000000px;}
.ls9f{letter-spacing:0.000124px;}
.ls99{letter-spacing:0.000154px;}
.ls92{letter-spacing:0.000182px;}
.lsaf{letter-spacing:0.000250px;}
.ls98{letter-spacing:0.000253px;}
.ls59{letter-spacing:0.000309px;}
.lsc8{letter-spacing:0.000366px;}
.lscc{letter-spacing:0.000422px;}
.lscd{letter-spacing:0.000447px;}
.ls66{letter-spacing:0.000990px;}
.ls1a{letter-spacing:0.001518px;}
.ls61{letter-spacing:0.002016px;}
.ls63{letter-spacing:0.002338px;}
.lsb1{letter-spacing:0.002357px;}
.ls67{letter-spacing:0.002573px;}
.ls60{letter-spacing:0.002612px;}
.ls5f{letter-spacing:0.002782px;}
.lsb9{letter-spacing:0.002818px;}
.lsa3{letter-spacing:0.002940px;}
.ls90{letter-spacing:0.003226px;}
.lsca{letter-spacing:0.003307px;}
.ls31{letter-spacing:0.003404px;}
.ls6{letter-spacing:0.003488px;}
.lsb{letter-spacing:0.003494px;}
.ls5e{letter-spacing:0.004088px;}
.ls93{letter-spacing:0.004524px;}
.ls77{letter-spacing:0.004595px;}
.ls70{letter-spacing:0.005116px;}
.lscb{letter-spacing:0.005173px;}
.lsc9{letter-spacing:0.005415px;}
.ls29{letter-spacing:0.006012px;}
.ls22{letter-spacing:0.010800px;}
.ls2f{letter-spacing:0.012024px;}
.lsae{letter-spacing:0.013786px;}
.ls23{letter-spacing:0.016200px;}
.lsaa{letter-spacing:0.016298px;}
.ls2e{letter-spacing:0.018036px;}
.lsad{letter-spacing:0.018382px;}
.ls6d{letter-spacing:0.020465px;}
.ls75{letter-spacing:0.022977px;}
.ls2d{letter-spacing:0.024048px;}
.ls6f{letter-spacing:0.025581px;}
.ls78{letter-spacing:0.027572px;}
.ls6b{letter-spacing:0.028522px;}
.ls28{letter-spacing:0.030060px;}
.ls7b{letter-spacing:0.030697px;}
.ls76{letter-spacing:0.032168px;}
.ls21{letter-spacing:0.032400px;}
.ls1f{letter-spacing:0.033516px;}
.ls6e{letter-spacing:0.035813px;}
.ls2a{letter-spacing:0.036072px;}
.ls71{letter-spacing:0.040930px;}
.ls24{letter-spacing:0.043200px;}
.ls79{letter-spacing:0.045954px;}
.ls7c{letter-spacing:0.046046px;}
.ls27{letter-spacing:0.048096px;}
.ls25{letter-spacing:0.048600px;}
.ls7f{letter-spacing:0.051162px;}
.ls69{letter-spacing:0.052970px;}
.lsb8{letter-spacing:0.054108px;}
.ls72{letter-spacing:0.056278px;}
.lsac{letter-spacing:0.057044px;}
.ls26{letter-spacing:0.060120px;}
.ls73{letter-spacing:0.061395px;}
.ls1d{letter-spacing:0.062244px;}
.ls2b{letter-spacing:0.066132px;}
.ls2c{letter-spacing:0.072144px;}
.ls74{letter-spacing:0.076743px;}
.lsa7{letter-spacing:0.082717px;}
.lsb7{letter-spacing:0.086400px;}
.ls7a{letter-spacing:0.097208px;}
.lsa8{letter-spacing:0.138536px;}
.lsab{letter-spacing:0.142611px;}
.ls6c{letter-spacing:0.146685px;}
.lsa9{letter-spacing:0.153180px;}
.ls6a{letter-spacing:0.154834px;}
.ls20{letter-spacing:0.172368px;}
.ls1e{letter-spacing:0.181944px;}
.lsce{letter-spacing:0.537859px;}
.ls8f{letter-spacing:0.585325px;}
.ls91{letter-spacing:0.598403px;}
.ls8{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.lsb0{letter-spacing:2.453641px;}
.ls0{letter-spacing:2.998354px;}
.ls5{letter-spacing:11.954850px;}
.ls12{letter-spacing:13.090856px;}
.ls5a{letter-spacing:13.210408px;}
.ls65{letter-spacing:13.445338px;}
.ls64{letter-spacing:13.451338px;}
.ls56{letter-spacing:13.927715px;}
.ls57{letter-spacing:13.987490px;}
.ls54{letter-spacing:14.166817px;}
.ls55{letter-spacing:14.226593px;}
.ls4{letter-spacing:14.286368px;}
.ls5d{letter-spacing:14.645022px;}
.ls5c{letter-spacing:14.704798px;}
.ls9c{letter-spacing:14.718088px;}
.ls9d{letter-spacing:14.719870px;}
.ls9e{letter-spacing:14.723988px;}
.ls58{letter-spacing:14.764573px;}
.ls14{letter-spacing:14.824349px;}
.ls17{letter-spacing:14.884124px;}
.lsa2{letter-spacing:14.933201px;}
.lsa0{letter-spacing:14.940124px;}
.ls9a{letter-spacing:14.942282px;}
.lse{letter-spacing:14.943900px;}
.ls95{letter-spacing:14.944200px;}
.ls96{letter-spacing:14.946124px;}
.lsf{letter-spacing:15.003676px;}
.ls9b{letter-spacing:15.005098px;}
.lsc7{letter-spacing:15.063451px;}
.lsa4{letter-spacing:15.104349px;}
.lsa5{letter-spacing:15.110428px;}
.ls15{letter-spacing:15.123227px;}
.lsd{letter-spacing:15.183002px;}
.ls1b{letter-spacing:15.242778px;}
.ls1c{letter-spacing:15.302554px;}
.ls10{letter-spacing:15.900310px;}
.ls11{letter-spacing:15.960085px;}
.ls94{letter-spacing:16.010124px;}
.ls33{letter-spacing:16.199188px;}
.lsc{letter-spacing:16.617617px;}
.ls16{letter-spacing:16.677392px;}
.ls68{letter-spacing:17.036046px;}
.lsa1{letter-spacing:17.394700px;}
.lsc6{letter-spacing:17.633802px;}
.ls3{letter-spacing:17.992456px;}
.ls62{letter-spacing:18.045418px;}
.ls13{letter-spacing:19.008641px;}
.ls19{letter-spacing:19.068416px;}
.ls18{letter-spacing:21.818094px;}
.lsa{letter-spacing:24.089567px;}
.ls9{letter-spacing:24.149342px;}
.ls5b{letter-spacing:24.268894px;}
.ls32{letter-spacing:24.627547px;}
.ls97{letter-spacing:24.806874px;}
.ls1{letter-spacing:70.236600px;}
.lsa6{letter-spacing:267.668003px;}
.ls30{letter-spacing:846.000000px;}
.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;}
}
.ws1c{word-spacing:-17.394700px;}
.ws15b{word-spacing:-15.655334px;}
.ws4e{word-spacing:-15.042024px;}
.ws4d{word-spacing:-15.036012px;}
.ws4c{word-spacing:-15.030000px;}
.ws4a{word-spacing:-15.023988px;}
.ws4b{word-spacing:-15.017976px;}
.ws1da{word-spacing:-14.955955px;}
.ws1e{word-spacing:-14.943900px;}
.ws3{word-spacing:-14.355754px;}
.ws5{word-spacing:-13.449600px;}
.ws47{word-spacing:-12.151944px;}
.ws48{word-spacing:-11.970000px;}
.ws22{word-spacing:-11.955150px;}
.wsef{word-spacing:-11.849098px;}
.ws159{word-spacing:-11.488500px;}
.wsc6{word-spacing:-11.357400px;}
.ws14c{word-spacing:-11.042122px;}
.wsf8{word-spacing:-10.341304px;}
.wsf9{word-spacing:-10.186470px;}
.ws175{word-spacing:-8.953200px;}
.ws49{word-spacing:-8.949600px;}
.ws176{word-spacing:-8.863200px;}
.ws14d{word-spacing:-8.588235px;}
.ws174{word-spacing:-8.240256px;}
.ws173{word-spacing:-8.236944px;}
.wsfa{word-spacing:-7.616110px;}
.ws130{word-spacing:-5.559131px;}
.ws1b1{word-spacing:-4.124516px;}
.ws11{word-spacing:-3.586536px;}
.ws133{word-spacing:-3.466985px;}
.wscf{word-spacing:-3.287658px;}
.ws247{word-spacing:-3.227904px;}
.ws1fa{word-spacing:-3.174106px;}
.ws1b2{word-spacing:-2.988780px;}
.ws36{word-spacing:-2.929004px;}
.ws195{word-spacing:-2.855700px;}
.wsc0{word-spacing:-2.809453px;}
.ws8d{word-spacing:-2.789568px;}
.ws8c{word-spacing:-2.777544px;}
.ws196{word-spacing:-2.765520px;}
.wsbf{word-spacing:-2.749678px;}
.ws1e0{word-spacing:-2.743718px;}
.ws194{word-spacing:-2.699388px;}
.ws11c{word-spacing:-2.637760px;}
.ws248{word-spacing:-2.636122px;}
.wsc{word-spacing:-2.630126px;}
.wsff{word-spacing:-2.614384px;}
.ws11d{word-spacing:-2.610187px;}
.ws224{word-spacing:-2.474726px;}
.ws66{word-spacing:-2.381400px;}
.wsbd{word-spacing:-2.331248px;}
.ws67{word-spacing:-2.322000px;}
.ws68{word-spacing:-2.284200px;}
.wsb4{word-spacing:-2.211697px;}
.ws1b{word-spacing:-2.151922px;}
.ws113{word-spacing:-2.107879px;}
.ws1e1{word-spacing:-2.098138px;}
.ws190{word-spacing:-2.092176px;}
.ws99{word-spacing:-2.074140px;}
.ws18f{word-spacing:-2.032056px;}
.ws53{word-spacing:-1.990541px;}
.ws112{word-spacing:-1.979974px;}
.ws59{word-spacing:-1.972595px;}
.ws18e{word-spacing:-1.971936px;}
.ws191{word-spacing:-1.917828px;}
.ws7{word-spacing:-1.908367px;}
.ws1b4{word-spacing:-1.775347px;}
.wsc3{word-spacing:-1.733492px;}
.ws9a{word-spacing:-1.725444px;}
.ws134{word-spacing:-1.673717px;}
.ws23e{word-spacing:-1.667750px;}
.ws23f{word-spacing:-1.613952px;}
.ws44{word-spacing:-1.613941px;}
.ws23a{word-spacing:-1.560154px;}
.wsd5{word-spacing:-1.554166px;}
.ws235{word-spacing:-1.506355px;}
.ws198{word-spacing:-1.406808px;}
.ws5e{word-spacing:-1.374839px;}
.ws9b{word-spacing:-1.322640px;}
.ws6{word-spacing:-1.322630px;}
.wsd4{word-spacing:-1.315063px;}
.ws9c{word-spacing:-1.310616px;}
.ws9d{word-spacing:-1.298592px;}
.ws9e{word-spacing:-1.274544px;}
.ws193{word-spacing:-1.268532px;}
.ws46{word-spacing:-1.255288px;}
.ws197{word-spacing:-1.238472px;}
.ws217{word-spacing:-1.237363px;}
.ws1d{word-spacing:-1.195512px;}
.wsa{word-spacing:-1.135736px;}
.ws200{word-spacing:-1.129766px;}
.ws11b{word-spacing:-1.093705px;}
.ws16b{word-spacing:-1.089110px;}
.ws208{word-spacing:-1.075968px;}
.wsb1{word-spacing:-1.075961px;}
.ws16c{word-spacing:-1.075324px;}
.ws119{word-spacing:-1.052347px;}
.ws11a{word-spacing:-1.033965px;}
.ws1e8{word-spacing:-1.022170px;}
.wsb0{word-spacing:-1.016185px;}
.ws1ea{word-spacing:-0.968371px;}
.wsb6{word-spacing:-0.956410px;}
.wsb5{word-spacing:-0.896634px;}
.wsae{word-spacing:-0.836858px;}
.ws102{word-spacing:-0.823710px;}
.ws103{word-spacing:-0.808361px;}
.ws249{word-spacing:-0.806976px;}
.wsaf{word-spacing:-0.777083px;}
.ws23b{word-spacing:-0.753178px;}
.wsb2{word-spacing:-0.717307px;}
.ws22d{word-spacing:-0.699379px;}
.ws16{word-spacing:-0.657532px;}
.ws22c{word-spacing:-0.645581px;}
.ws42{word-spacing:-0.597756px;}
.ws129{word-spacing:-0.583248px;}
.ws181{word-spacing:-0.540000px;}
.ws241{word-spacing:-0.537984px;}
.wsb3{word-spacing:-0.537980px;}
.ws182{word-spacing:-0.513000px;}
.ws237{word-spacing:-0.484186px;}
.ws32{word-spacing:-0.478205px;}
.wse{word-spacing:-0.418429px;}
.ws1cf{word-spacing:-0.376589px;}
.ws34{word-spacing:-0.358654px;}
.ws90{word-spacing:-0.342684px;}
.ws187{word-spacing:-0.336672px;}
.ws121{word-spacing:-0.327438px;}
.ws1b8{word-spacing:-0.322790px;}
.ws1a{word-spacing:-0.298878px;}
.ws52{word-spacing:-0.268992px;}
.ws123{word-spacing:-0.266043px;}
.ws125{word-spacing:-0.250694px;}
.ws2c{word-spacing:-0.239102px;}
.ws169{word-spacing:-0.232252px;}
.ws98{word-spacing:-0.222444px;}
.ws168{word-spacing:-0.220028px;}
.ws142{word-spacing:-0.217713px;}
.ws167{word-spacing:-0.215953px;}
.wse9{word-spacing:-0.215194px;}
.ws143{word-spacing:-0.211809px;}
.ws120{word-spacing:-0.202198px;}
.ws97{word-spacing:-0.198396px;}
.ws126{word-spacing:-0.194416px;}
.ws30{word-spacing:-0.179327px;}
.ws23d{word-spacing:-0.174559px;}
.ws1db{word-spacing:-0.164174px;}
.wsda{word-spacing:-0.161395px;}
.ws16a{word-spacing:-0.134461px;}
.ws61{word-spacing:-0.124488px;}
.wsf{word-spacing:-0.119551px;}
.ws1c8{word-spacing:-0.107597px;}
.wsfc{word-spacing:-0.105939px;}
.ws206{word-spacing:-0.100719px;}
.ws1{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws161{word-spacing:-0.044168px;}
.ws24d{word-spacing:-0.039227px;}
.ws148{word-spacing:-0.019168px;}
.ws21c{word-spacing:-0.015139px;}
.ws1c0{word-spacing:-0.013901px;}
.ws236{word-spacing:-0.011261px;}
.ws1bc{word-spacing:-0.011021px;}
.ws1ef{word-spacing:-0.010195px;}
.ws222{word-spacing:-0.009888px;}
.ws21e{word-spacing:-0.009139px;}
.ws1f3{word-spacing:-0.008688px;}
.ws23c{word-spacing:-0.008419px;}
.ws1e7{word-spacing:-0.008294px;}
.ws1cb{word-spacing:-0.007910px;}
.ws1d4{word-spacing:-0.007699px;}
.ws1fe{word-spacing:-0.007651px;}
.ws203{word-spacing:-0.007229px;}
.ws225{word-spacing:-0.006998px;}
.ws1f6{word-spacing:-0.006845px;}
.ws1fd{word-spacing:-0.006384px;}
.ws233{word-spacing:-0.006355px;}
.ws1ca{word-spacing:-0.005683px;}
.ws1d1{word-spacing:-0.005645px;}
.ws1b9{word-spacing:-0.005021px;}
.ws144{word-spacing:-0.004892px;}
.ws1b6{word-spacing:-0.004877px;}
.ws1d0{word-spacing:-0.004666px;}
.ws1dd{word-spacing:-0.004435px;}
.ws240{word-spacing:-0.003466px;}
.ws223{word-spacing:-0.002784px;}
.ws227{word-spacing:-0.002688px;}
.ws1e9{word-spacing:-0.002429px;}
.ws1f5{word-spacing:-0.002419px;}
.ws145{word-spacing:-0.002182px;}
.ws1fc{word-spacing:-0.002006px;}
.ws24b{word-spacing:-0.001910px;}
.ws1f8{word-spacing:-0.001229px;}
.ws1de{word-spacing:-0.001066px;}
.ws146{word-spacing:-0.000900px;}
.ws1f0{word-spacing:-0.000845px;}
.ws214{word-spacing:-0.000806px;}
.ws0{word-spacing:0.000000px;}
.ws21{word-spacing:0.000370px;}
.ws2{word-spacing:0.003608px;}
.ws116{word-spacing:0.015349px;}
.ws24a{word-spacing:0.024755px;}
.ws15a{word-spacing:0.053798px;}
.ws82{word-spacing:0.054108px;}
.ws9{word-spacing:0.059776px;}
.ws1ad{word-spacing:0.060120px;}
.ws141{word-spacing:0.062404px;}
.ws166{word-spacing:0.068931px;}
.wsaa{word-spacing:0.072144px;}
.ws199{word-spacing:0.084168px;}
.wsad{word-spacing:0.090180px;}
.ws1ae{word-spacing:0.096192px;}
.ws108{word-spacing:0.097208px;}
.ws11f{word-spacing:0.105694px;}
.ws1bd{word-spacing:0.107597px;}
.ws25{word-spacing:0.119551px;}
.ws83{word-spacing:0.120240px;}
.ws172{word-spacing:0.128671px;}
.ws6c{word-spacing:0.129600px;}
.ws6b{word-spacing:0.145800px;}
.ws149{word-spacing:0.149285px;}
.ws1ff{word-spacing:0.156152px;}
.ws1f1{word-spacing:0.160008px;}
.ws177{word-spacing:0.161395px;}
.ws19{word-spacing:0.179327px;}
.ws87{word-spacing:0.186372px;}
.ws86{word-spacing:0.204408px;}
.ws109{word-spacing:0.204648px;}
.wsa9{word-spacing:0.210420px;}
.ws51{word-spacing:0.215194px;}
.ws14{word-spacing:0.239102px;}
.ws219{word-spacing:0.239894px;}
.ws186{word-spacing:0.253800px;}
.ws1c3{word-spacing:0.268992px;}
.ws20d{word-spacing:0.297031px;}
.ws17{word-spacing:0.298878px;}
.ws1af{word-spacing:0.306612px;}
.ws117{word-spacing:0.306973px;}
.ws1ba{word-spacing:0.322790px;}
.ws107{word-spacing:0.358135px;}
.ws29{word-spacing:0.358654px;}
.ws10b{word-spacing:0.378600px;}
.ws10a{word-spacing:0.409297px;}
.ws5f{word-spacing:0.418429px;}
.ws92{word-spacing:0.426852px;}
.ws179{word-spacing:0.430387px;}
.ws91{word-spacing:0.450900px;}
.ws71{word-spacing:0.456912px;}
.wse6{word-spacing:0.464001px;}
.wse5{word-spacing:0.464368px;}
.ws72{word-spacing:0.474948px;}
.wsd{word-spacing:0.478205px;}
.ws1df{word-spacing:0.484186px;}
.ws35{word-spacing:0.537980px;}
.ws1c9{word-spacing:0.537984px;}
.ws242{word-spacing:0.591782px;}
.ws132{word-spacing:0.597756px;}
.ws243{word-spacing:0.602913px;}
.ws1cc{word-spacing:0.645581px;}
.ws12f{word-spacing:0.657532px;}
.ws220{word-spacing:0.699379px;}
.ws105{word-spacing:0.711153px;}
.ws5c{word-spacing:0.717307px;}
.ws104{word-spacing:0.736735px;}
.ws85{word-spacing:0.745488px;}
.ws21a{word-spacing:0.753178px;}
.ws10{word-spacing:0.777083px;}
.ws180{word-spacing:0.815400px;}
.ws40{word-spacing:0.836858px;}
.ws226{word-spacing:0.860774px;}
.ws65{word-spacing:0.891000px;}
.ws24{word-spacing:0.896634px;}
.ws17f{word-spacing:0.912600px;}
.ws115{word-spacing:0.941383px;}
.ws37{word-spacing:0.956410px;}
.ws2a{word-spacing:1.016185px;}
.ws230{word-spacing:1.022170px;}
.ws114{word-spacing:1.069288px;}
.ws3e{word-spacing:1.075961px;}
.ws15d{word-spacing:1.075968px;}
.ws1d2{word-spacing:1.129766px;}
.ws3f{word-spacing:1.135736px;}
.wscb{word-spacing:1.195512px;}
.ws1f9{word-spacing:1.237363px;}
.wsce{word-spacing:1.255288px;}
.ws124{word-spacing:1.258588px;}
.ws1f{word-spacing:1.315063px;}
.ws244{word-spacing:1.344960px;}
.ws5b{word-spacing:1.374839px;}
.ws15c{word-spacing:1.398758px;}
.wsc7{word-spacing:1.434614px;}
.ws170{word-spacing:1.438360px;}
.wsba{word-spacing:1.494390px;}
.ws93{word-spacing:1.496988px;}
.wsb8{word-spacing:1.554166px;}
.ws178{word-spacing:1.560154px;}
.ws10f{word-spacing:1.611607px;}
.wsbc{word-spacing:1.613941px;}
.ws185{word-spacing:1.620000px;}
.ws184{word-spacing:1.630800px;}
.ws10e{word-spacing:1.662769px;}
.ws171{word-spacing:1.663535px;}
.ws3d{word-spacing:1.673717px;}
.ws229{word-spacing:1.721549px;}
.wsc2{word-spacing:1.733492px;}
.wsd9{word-spacing:1.775347px;}
.wsd0{word-spacing:1.793268px;}
.wsf5{word-spacing:1.853044px;}
.ws94{word-spacing:1.881756px;}
.ws18{word-spacing:1.912819px;}
.ws1aa{word-spacing:1.971936px;}
.ws13{word-spacing:1.972595px;}
.ws16d{word-spacing:1.976022px;}
.ws1ab{word-spacing:1.977948px;}
.ws16e{word-spacing:1.985213px;}
.ws15e{word-spacing:1.990541px;}
.ws16f{word-spacing:2.017381px;}
.ws84{word-spacing:2.044080px;}
.ws1f4{word-spacing:2.044339px;}
.wsf6{word-spacing:2.092146px;}
.wsd8{word-spacing:2.098138px;}
.ws2b{word-spacing:2.151922px;}
.ws19c{word-spacing:2.200392px;}
.ws1d6{word-spacing:2.205734px;}
.ws60{word-spacing:2.211697px;}
.ws1d7{word-spacing:2.259533px;}
.ws19d{word-spacing:2.284560px;}
.ws228{word-spacing:2.313331px;}
.wsb{word-spacing:2.331248px;}
.ws1c1{word-spacing:2.367130px;}
.wsc1{word-spacing:2.391024px;}
.ws45{word-spacing:2.450800px;}
.ws147{word-spacing:2.510575px;}
.ws201{word-spacing:2.528525px;}
.ws3a{word-spacing:2.570351px;}
.wse8{word-spacing:2.582323px;}
.ws7b{word-spacing:2.603196px;}
.ws163{word-spacing:2.605592px;}
.ws162{word-spacing:2.610187px;}
.ws39{word-spacing:2.630126px;}
.wsa6{word-spacing:2.645280px;}
.wse3{word-spacing:2.689902px;}
.ws80{word-spacing:2.705400px;}
.ws7f{word-spacing:2.723436px;}
.ws21f{word-spacing:2.743718px;}
.ws7c{word-spacing:2.747484px;}
.ws54{word-spacing:2.749678px;}
.ws216{word-spacing:2.851315px;}
.wsc8{word-spacing:2.869229px;}
.wse7{word-spacing:2.905114px;}
.ws13f{word-spacing:2.929004px;}
.wsa8{word-spacing:2.963916px;}
.wsf7{word-spacing:2.988780px;}
.wsa5{word-spacing:3.030048px;}
.wsb7{word-spacing:3.048556px;}
.ws213{word-spacing:3.066509px;}
.ws17d{word-spacing:3.083400px;}
.ws106{word-spacing:3.105541px;}
.ws38{word-spacing:3.108331px;}
.wsd7{word-spacing:3.108850px;}
.ws122{word-spacing:3.110657px;}
.ws1d5{word-spacing:3.120307px;}
.ws17e{word-spacing:3.132000px;}
.ws239{word-spacing:3.174106px;}
.ws1c6{word-spacing:3.227904px;}
.ws88{word-spacing:3.282552px;}
.ws31{word-spacing:3.287658px;}
.wsa7{word-spacing:3.312612px;}
.ws89{word-spacing:3.324636px;}
.wscc{word-spacing:3.347434px;}
.ws3c{word-spacing:3.407209px;}
.ws20c{word-spacing:3.443098px;}
.ws3b{word-spacing:3.466985px;}
.ws50{word-spacing:3.604493px;}
.ws81{word-spacing:3.643272px;}
.wsbe{word-spacing:3.646312px;}
.ws1b0{word-spacing:3.706087px;}
.ws1a2{word-spacing:3.715416px;}
.wsbb{word-spacing:3.765863px;}
.ws164{word-spacing:3.795800px;}
.ws1a1{word-spacing:3.799584px;}
.ws17a{word-spacing:3.825638px;}
.ws165{word-spacing:3.837159px;}
.ws1d8{word-spacing:3.873485px;}
.ws4f{word-spacing:3.927283px;}
.ws24c{word-spacing:4.034880px;}
.ws10c{word-spacing:4.057156px;}
.wsd2{word-spacing:4.064741px;}
.ws111{word-spacing:4.067389px;}
.ws238{word-spacing:4.088678px;}
.wsc9{word-spacing:4.124516px;}
.ws110{word-spacing:4.159480px;}
.ws2f{word-spacing:4.184292px;}
.ws1e5{word-spacing:4.196275px;}
.ws2d{word-spacing:4.244068px;}
.ws2e{word-spacing:4.303843px;}
.ws1ce{word-spacing:4.303872px;}
.ws9f{word-spacing:4.382748px;}
.ws1a7{word-spacing:4.412808px;}
.ws26{word-spacing:4.423394px;}
.wsa0{word-spacing:4.436856px;}
.ws209{word-spacing:4.465267px;}
.wsa1{word-spacing:4.478940px;}
.ws41{word-spacing:4.483170px;}
.ws20a{word-spacing:4.519066px;}
.ws131{word-spacing:4.542946px;}
.ws1e2{word-spacing:4.572864px;}
.ws17b{word-spacing:4.602721px;}
.ws5a{word-spacing:4.662497px;}
.ws10d{word-spacing:4.691566px;}
.ws7a{word-spacing:4.737456px;}
.ws18b{word-spacing:4.749480px;}
.ws18a{word-spacing:4.779540px;}
.ws188{word-spacing:4.809600px;}
.ws189{word-spacing:4.851684px;}
.ws20f{word-spacing:4.895654px;}
.ws210{word-spacing:4.923571px;}
.ws1e4{word-spacing:4.949453px;}
.ws218{word-spacing:5.003251px;}
.wsc4{word-spacing:5.021150px;}
.ws19b{word-spacing:5.092164px;}
.wsa4{word-spacing:5.152284px;}
.ws22a{word-spacing:5.160187px;}
.ws1dc{word-spacing:5.164646px;}
.ws15{word-spacing:5.260253px;}
.ws207{word-spacing:5.272243px;}
.ws1b3{word-spacing:5.320028px;}
.ws245{word-spacing:5.326042px;}
.ws1fb{word-spacing:5.375904px;}
.ws21b{word-spacing:5.376605px;}
.ws1ee{word-spacing:5.379763px;}
.ws1b7{word-spacing:5.379840px;}
.ws1bb{word-spacing:5.381098px;}
.ws202{word-spacing:5.383085px;}
.ws1bf{word-spacing:5.433638px;}
.ws246{word-spacing:5.434730px;}
.ws13c{word-spacing:5.439580px;}
.ws1ac{word-spacing:5.464908px;}
.ws1cd{word-spacing:5.487437px;}
.ws13d{word-spacing:5.499355px;}
.wsab{word-spacing:5.519016px;}
.wsa2{word-spacing:5.525028px;}
.wsd1{word-spacing:5.559131px;}
.wsac{word-spacing:5.591160px;}
.ws1f2{word-spacing:5.595034px;}
.wsa3{word-spacing:5.597172px;}
.wsd3{word-spacing:5.618906px;}
.ws1be{word-spacing:5.648832px;}
.ws215{word-spacing:5.702630px;}
.ws33{word-spacing:5.738458px;}
.ws1e3{word-spacing:5.756429px;}
.ws1e6{word-spacing:5.810227px;}
.ws128{word-spacing:5.842714px;}
.ws5d{word-spacing:5.858009px;}
.ws1eb{word-spacing:5.864026px;}
.ws127{word-spacing:5.873411px;}
.ws6d{word-spacing:5.885748px;}
.wsca{word-spacing:5.917784px;}
.ws1c2{word-spacing:5.917824px;}
.ws183{word-spacing:5.923800px;}
.ws8{word-spacing:5.946101px;}
.wsdb{word-spacing:5.974048px;}
.ws12{word-spacing:5.977560px;}
.wsdd{word-spacing:5.980048px;}
.ws6e{word-spacing:5.981940px;}
.ws27{word-spacing:6.037336px;}
.ws1f7{word-spacing:6.079219px;}
.ws20e{word-spacing:6.133018px;}
.wsc5{word-spacing:6.156887px;}
.wsfb{word-spacing:6.240614px;}
.ws22f{word-spacing:6.294413px;}
.ws55{word-spacing:6.336214px;}
.ws22e{word-spacing:6.348211px;}
.ws56{word-spacing:6.395989px;}
.ws135{word-spacing:6.455765px;}
.ws140{word-spacing:6.573386px;}
.wse1{word-spacing:6.573876px;}
.ws58{word-spacing:6.575316px;}
.wse2{word-spacing:6.576886px;}
.wsf4{word-spacing:6.579386px;}
.ws12e{word-spacing:6.635092px;}
.ws1b5{word-spacing:6.671002px;}
.ws1ed{word-spacing:6.724800px;}
.wsd6{word-spacing:6.874194px;}
.ws221{word-spacing:6.886195px;}
.ws13e{word-spacing:6.933970px;}
.ws21d{word-spacing:6.993792px;}
.ws13a{word-spacing:7.053521px;}
.ws13b{word-spacing:7.113296px;}
.ws137{word-spacing:7.173072px;}
.ws43{word-spacing:7.412174px;}
.wsfd{word-spacing:7.741717px;}
.ws1d3{word-spacing:7.746970px;}
.ws8b{word-spacing:8.001972px;}
.ws57{word-spacing:8.009930px;}
.ws96{word-spacing:8.044056px;}
.ws64{word-spacing:8.067600px;}
.ws95{word-spacing:8.098164px;}
.ws63{word-spacing:8.121600px;}
.ws8a{word-spacing:8.134236px;}
.ws11e{word-spacing:8.395796px;}
.ws136{word-spacing:8.488135px;}
.ws192{word-spacing:8.519004px;}
.ws100{word-spacing:8.605469px;}
.ws101{word-spacing:8.682212px;}
.ws212{word-spacing:8.715341px;}
.ws62{word-spacing:9.097200px;}
.ws18c{word-spacing:9.114192px;}
.ws18d{word-spacing:9.216396px;}
.wsb9{word-spacing:9.265218px;}
.ws12b{word-spacing:9.270576px;}
.ws12c{word-spacing:9.372900px;}
.ws19a{word-spacing:9.402768px;}
.wse4{word-spacing:9.621876px;}
.ws20{word-spacing:9.862974px;}
.ws7d{word-spacing:10.136232px;}
.ws7e{word-spacing:10.142244px;}
.ws138{word-spacing:10.341179px;}
.ws69{word-spacing:10.989000px;}
.wscd{word-spacing:10.998710px;}
.ws6a{word-spacing:11.086200px;}
.ws6f{word-spacing:11.188332px;}
.ws70{word-spacing:11.386728px;}
.ws74{word-spacing:11.561076px;}
.ws73{word-spacing:11.981916px;}
.ws1c7{word-spacing:11.997043px;}
.ws231{word-spacing:12.104640px;}
.ws139{word-spacing:13.031081px;}
.ws1d9{word-spacing:13.288205px;}
.ws205{word-spacing:13.449600px;}
.ws118{word-spacing:13.501683px;}
.ws76{word-spacing:13.827600px;}
.ws75{word-spacing:14.158260px;}
.ws77{word-spacing:14.272488px;}
.ws1a6{word-spacing:14.482908px;}
.ws1a5{word-spacing:14.512968px;}
.ws20b{word-spacing:14.525568px;}
.ws1a0{word-spacing:14.573088px;}
.ws19e{word-spacing:14.633208px;}
.ws19f{word-spacing:14.741424px;}
.wsfe{word-spacing:14.760272px;}
.ws1c5{word-spacing:14.848358px;}
.ws234{word-spacing:15.278746px;}
.ws211{word-spacing:15.386342px;}
.ws22b{word-spacing:15.870528px;}
.ws204{word-spacing:16.838899px;}
.ws1ec{word-spacing:17.323085px;}
.ws8f{word-spacing:18.402732px;}
.ws8e{word-spacing:18.456840px;}
.ws1c4{word-spacing:18.614246px;}
.ws12d{word-spacing:19.008641px;}
.ws17c{word-spacing:20.204153px;}
.ws1a8{word-spacing:20.957832px;}
.ws1a9{word-spacing:20.987892px;}
.ws78{word-spacing:24.258420px;}
.ws79{word-spacing:24.330564px;}
.ws28{word-spacing:24.507996px;}
.ws12a{word-spacing:26.143843px;}
.ws1a4{word-spacing:27.126144px;}
.ws1a3{word-spacing:27.144180px;}
.ws232{word-spacing:28.782144px;}
.ws152{word-spacing:38.573903px;}
.ws14b{word-spacing:53.734447px;}
.ws155{word-spacing:66.952589px;}
.ws154{word-spacing:69.740705px;}
.ws153{word-spacing:76.853166px;}
.wsde{word-spacing:76.877914px;}
.wsec{word-spacing:77.303513px;}
.ws14f{word-spacing:77.471525px;}
.ws151{word-spacing:77.774770px;}
.wsf1{word-spacing:79.057179px;}
.wsf3{word-spacing:83.465043px;}
.wsee{word-spacing:87.398944px;}
.ws14e{word-spacing:92.085041px;}
.ws150{word-spacing:97.488863px;}
.ws15f{word-spacing:106.711063px;}
.ws160{word-spacing:107.127290px;}
.wsea{word-spacing:122.093102px;}
.wsdc{word-spacing:125.457869px;}
.wseb{word-spacing:160.573710px;}
.wsf0{word-spacing:169.364328px;}
.wsed{word-spacing:175.834282px;}
.wsf2{word-spacing:176.288878px;}
.ws158{word-spacing:180.986332px;}
.ws156{word-spacing:208.166076px;}
.wsdf{word-spacing:212.826470px;}
.wse0{word-spacing:239.725670px;}
.ws157{word-spacing:245.585730px;}
.ws23{word-spacing:816.106360px;}
.ws14a{word-spacing:1022.058775px;}
._2{margin-left:-9.683712px;}
._1{margin-left:-7.962163px;}
._e{margin-left:-6.814418px;}
._4{margin-left:-4.960301px;}
._3{margin-left:-3.002203px;}
._6{margin-left:-1.322630px;}
._7{width:1.091170px;}
._1e{width:3.224474px;}
._c{width:4.363619px;}
._15{width:11.006278px;}
._b{width:12.732203px;}
._11{width:14.114609px;}
._17{width:15.913733px;}
._1c{width:17.641821px;}
._5{width:18.829440px;}
._1a{width:19.973380px;}
._8{width:21.041011px;}
._a{width:23.013606px;}
._f{width:25.047721px;}
._1d{width:26.659918px;}
._9{width:28.460753px;}
._16{width:29.536714px;}
._5d{width:30.545332px;}
._13{width:31.561517px;}
._1b{width:32.601928px;}
._12{width:33.661230px;}
._3f{width:35.394722px;}
._d{width:36.402266px;}
._0{width:37.658880px;}
._14{width:38.854140px;}
._19{width:40.415873px;}
._1f{width:41.722295px;}
._5f{width:43.038720px;}
._4c{width:44.704769px;}
._60{width:49.440730px;}
._5e{width:63.804902px;}
._4d{width:75.461370px;}
._2a{width:90.953673px;}
._2b{width:95.361537px;}
._36{width:97.494375px;}
._35{width:103.229338px;}
._38{width:107.210635px;}
._31{width:110.670572px;}
._2c{width:115.125832px;}
._39{width:119.438904px;}
._34{width:128.491614px;}
._50{width:131.499179px;}
._30{width:134.558352px;}
._3c{width:138.918820px;}
._2d{width:146.123072px;}
._2f{width:149.061648px;}
._3a{width:154.654422px;}
._2e{width:157.403413px;}
._33{width:158.730511px;}
._32{width:166.977483px;}
._26{width:168.162393px;}
._47{width:171.859581px;}
._37{width:177.542410px;}
._3b{width:180.223779px;}
._21{width:183.022157px;}
._48{width:184.182588px;}
._58{width:185.438852px;}
._25{width:189.680354px;}
._44{width:193.823369px;}
._5b{width:196.682270px;}
._55{width:198.114199px;}
._27{width:202.429983px;}
._43{width:204.190913px;}
._28{width:206.269091px;}
._5a{width:207.724392px;}
._29{width:210.060802px;}
._57{width:214.145259px;}
._23{width:222.563981px;}
._22{width:226.276070px;}
._24{width:230.006178px;}
._53{width:238.455503px;}
._45{width:240.453240px;}
._51{width:246.007325px;}
._42{width:250.302812px;}
._46{width:255.305902px;}
._4b{width:257.595453px;}
._56{width:263.946028px;}
._59{width:267.393447px;}
._20{width:269.207194px;}
._4e{width:279.229905px;}
._4f{width:288.431935px;}
._54{width:293.851686px;}
._4a{width:312.366065px;}
._52{width:346.865602px;}
._41{width:1047.588160px;}
._49{width:1367.150586px;}
._3d{width:1387.674286px;}
._5c{width:1606.522428px;}
._18{width:1630.639584px;}
._3e{width:2058.579600px;}
._10{width:2082.489600px;}
._40{width:3538.263600px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(49,88,131);}
.fs16{font-size:25.427880px;}
.fs12{font-size:30.636000px;}
.fs17{font-size:33.120000px;}
.fs15{font-size:34.352939px;}
.fsd{font-size:36.000000px;}
.fsf{font-size:40.745880px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs14{font-size:44.168486px;}
.fs3{font-size:45.429600px;}
.fs13{font-size:45.954000px;}
.fs6{font-size:47.236800px;}
.fse{font-size:47.396390px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fs11{font-size:51.162120px;}
.fs5{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fs10{font-size:61.272000px;}
.fsa{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:128.507760px;}
.y82{bottom:-891.293550px;}
.yab{bottom:-832.883400px;}
.yaa{bottom:-810.471744px;}
.ya9{bottom:-790.221825px;}
.ya8{bottom:-769.971906px;}
.ya7{bottom:-749.721987px;}
.ya6{bottom:-729.472068px;}
.ya5{bottom:-709.222149px;}
.ya4{bottom:-688.972230px;}
.ya3{bottom:-668.812491px;}
.y1d5{bottom:-655.985550px;}
.ya2{bottom:-648.562572px;}
.ya1{bottom:-628.312653px;}
.y1f3{bottom:-625.475208px;}
.ya0{bottom:-608.062734px;}
.y1f2{bottom:-605.315469px;}
.y9f{bottom:-587.812815px;}
.y1f1{bottom:-585.064479px;}
.y9e{bottom:-567.562896px;}
.y1f0{bottom:-564.814560px;}
.y9d{bottom:-547.312977px;}
.y1ef{bottom:-544.564641px;}
.y9c{bottom:-527.153238px;}
.y1ee{bottom:-524.314722px;}
.y9b{bottom:-506.903319px;}
.y1ed{bottom:-504.064803px;}
.y9a{bottom:-486.653319px;}
.y1ec{bottom:-483.814884px;}
.y99{bottom:-466.401894px;}
.y1eb{bottom:-463.655145px;}
.y98{bottom:-446.151975px;}
.y1ea{bottom:-443.405226px;}
.y97{bottom:-425.902056px;}
.y1e9{bottom:-423.155307px;}
.y96{bottom:-405.652137px;}
.y1e8{bottom:-402.905388px;}
.y95{bottom:-385.492398px;}
.y1e7{bottom:-382.655469px;}
.y94{bottom:-365.242479px;}
.y1e6{bottom:-362.405139px;}
.y93{bottom:-344.992560px;}
.y1e5{bottom:-342.244995px;}
.y92{bottom:-324.742641px;}
.y1e4{bottom:-321.995076px;}
.y91{bottom:-304.492722px;}
.y1e3{bottom:-301.745157px;}
.y135{bottom:-291.961974px;}
.y90{bottom:-284.242803px;}
.y1e2{bottom:-281.495238px;}
.y8f{bottom:-263.992884px;}
.y1e1{bottom:-261.245319px;}
.y155{bottom:-254.661908px;}
.y1b8{bottom:-248.982510px;}
.y8e{bottom:-243.833145px;}
.y1e0{bottom:-240.995091px;}
.y154{bottom:-237.429227px;}
.y8d{bottom:-223.583226px;}
.y1df{bottom:-220.745172px;}
.y153{bottom:-220.196546px;}
.y8c{bottom:-203.333307px;}
.y152{bottom:-202.963865px;}
.y1de{bottom:-200.585433px;}
.y151{bottom:-185.731184px;}
.y8b{bottom:-183.083388px;}
.y1dd{bottom:-171.335550px;}
.y150{bottom:-168.498503px;}
.y8a{bottom:-162.833469px;}
.y14f{bottom:-151.265822px;}
.y89{bottom:-142.583550px;}
.y14e{bottom:-134.109884px;}
.y1dc{bottom:-133.536900px;}
.y1db{bottom:-114.006450px;}
.y14d{bottom:-109.218234px;}
.y88{bottom:-104.874900px;}
.y1da{bottom:-94.476000px;}
.y87{bottom:-85.344450px;}
.y1c4{bottom:-77.421384px;}
.y14c{bottom:-77.051199px;}
.y1d9{bottom:-75.036000px;}
.y86{bottom:-65.814000px;}
.y1c3{bottom:-60.800971px;}
.y14b{bottom:-60.430786px;}
.y1d8{bottom:-55.506000px;}
.y85{bottom:-46.374000px;}
.y1c2{bottom:-44.180559px;}
.y14a{bottom:-43.887346px;}
.y1d7{bottom:-35.975550px;}
.y1c1{bottom:-27.637119px;}
.y149{bottom:-27.266934px;}
.y84{bottom:-26.843550px;}
.y148{bottom:-6.127966px;}
.y83{bottom:-0.293550px;}
.y1d6{bottom:-0.065550px;}
.y0{bottom:0.000000px;}
.y1c0{bottom:2.003339px;}
.yd{bottom:3.425340px;}
.yc{bottom:14.151273px;}
.y2{bottom:16.582415px;}
.y31{bottom:63.780000px;}
.y30{bottom:108.612000px;}
.y271{bottom:108.957000px;}
.y63{bottom:119.863500px;}
.y7f{bottom:123.121500px;}
.y270{bottom:128.325000px;}
.y2f{bottom:128.875500px;}
.y1a4{bottom:136.063500px;}
.y159{bottom:136.096500px;}
.yd1{bottom:138.081000px;}
.y62{bottom:140.128500px;}
.y7e{bottom:143.386500px;}
.yfa{bottom:145.837500px;}
.y26f{bottom:147.691500px;}
.y185{bottom:148.168500px;}
.y2e{bottom:149.139000px;}
.y202{bottom:154.564500px;}
.y158{bottom:155.329500px;}
.y1a3{bottom:156.328500px;}
.y23d{bottom:157.974000px;}
.yd0{bottom:158.344500px;}
.y61{bottom:160.392000px;}
.y7d{bottom:163.650000px;}
.yf9{bottom:166.101000px;}
.y114{bottom:166.900500px;}
.y26e{bottom:167.059500px;}
.y184{bottom:168.432000px;}
.y2d{bottom:169.404000px;}
.y157{bottom:174.562500px;}
.y1a2{bottom:176.592000px;}
.y23c{bottom:177.340500px;}
.ycf{bottom:178.609500px;}
.y60{bottom:180.657000px;}
.y7c{bottom:183.913500px;}
.yf8{bottom:186.364500px;}
.y26d{bottom:186.427500px;}
.y113{bottom:187.164000px;}
.y183{bottom:188.697000px;}
.y2c{bottom:189.667500px;}
.y156{bottom:193.794000px;}
.y23b{bottom:196.708500px;}
.y1a0{bottom:196.855500px;}
.yce{bottom:198.873000px;}
.y5f{bottom:200.920500px;}
.y1a1{bottom:202.281000px;}
.y7b{bottom:204.178500px;}
.y26c{bottom:205.794000px;}
.yf7{bottom:206.629500px;}
.y112{bottom:207.429000px;}
.y182{bottom:208.960500px;}
.y2b{bottom:209.932500px;}
.y81{bottom:214.806450px;}
.y23a{bottom:216.076500px;}
.y133{bottom:216.223500px;}
.y19f{bottom:217.120500px;}
.ycd{bottom:219.136500px;}
.y5e{bottom:221.184000px;}
.y20b{bottom:222.873000px;}
.y7a{bottom:224.442000px;}
.y26b{bottom:225.162000px;}
.y111{bottom:227.692500px;}
.y181{bottom:229.224000px;}
.y2a{bottom:230.196000px;}
.y239{bottom:235.443000px;}
.yf6{bottom:235.860000px;}
.y19e{bottom:237.384000px;}
.y20a{bottom:238.071000px;}
.ycc{bottom:239.401500px;}
.y5d{bottom:241.449000px;}
.y26a{bottom:244.528500px;}
.y79{bottom:244.707000px;}
.y110{bottom:247.956000px;}
.y180{bottom:249.489000px;}
.y29{bottom:250.459500px;}
.y209{bottom:253.269000px;}
.y238{bottom:254.811000px;}
.y19d{bottom:257.649000px;}
.ycb{bottom:259.665000px;}
.y5c{bottom:261.712500px;}
.y269{bottom:263.896500px;}
.y78{bottom:264.970500px;}
.y10f{bottom:268.221000px;}
.y17f{bottom:269.752500px;}
.yf5{bottom:270.679500px;}
.y28{bottom:270.724500px;}
.y237{bottom:274.177500px;}
.y208{bottom:277.434000px;}
.y19c{bottom:277.912500px;}
.yca{bottom:279.930000px;}
.y5b{bottom:281.977500px;}
.y268{bottom:283.264500px;}
.y77{bottom:285.234000px;}
.y10e{bottom:288.484500px;}
.y17e{bottom:290.017500px;}
.y27{bottom:290.988000px;}
.y207{bottom:292.632000px;}
.y236{bottom:293.545500px;}
.yc9{bottom:300.193500px;}
.y5a{bottom:302.241000px;}
.y267{bottom:302.631000px;}
.y76{bottom:305.499000px;}
.y10d{bottom:305.952000px;}
.y19b{bottom:307.143000px;}
.y10c{bottom:308.748000px;}
.y274{bottom:309.820500px;}
.y17d{bottom:310.281000px;}
.y26{bottom:311.253000px;}
.y235{bottom:312.913500px;}
.yc8{bottom:320.457000px;}
.y266{bottom:321.999000px;}
.y59{bottom:322.504500px;}
.y147{bottom:324.818292px;}
.y75{bottom:325.762500px;}
.y10b{bottom:326.215500px;}
.y10a{bottom:329.013000px;}
.y273{bottom:329.188500px;}
.y17c{bottom:330.544500px;}
.y25{bottom:331.516500px;}
.y234{bottom:332.280000px;}
.yc7{bottom:340.722000px;}
.y265{bottom:341.367000px;}
.y1d2{bottom:341.683176px;}
.y19a{bottom:341.962500px;}
.y146{bottom:342.050973px;}
.y58{bottom:342.769500px;}
.y74{bottom:346.027500px;}
.y1d1{bottom:348.430565px;}
.y272{bottom:348.556500px;}
.y109{bottom:349.276500px;}
.y17b{bottom:350.809500px;}
.y206{bottom:351.451500px;}
.y233{bottom:351.648000px;}
.y24{bottom:351.780000px;}
.y145{bottom:359.206911px;}
.y264{bottom:360.733500px;}
.yc6{bottom:360.985500px;}
.y199{bottom:362.226000px;}
.y57{bottom:363.033000px;}
.y73{bottom:366.291000px;}
.y232{bottom:371.014500px;}
.y17a{bottom:371.073000px;}
.yf4{bottom:371.715000px;}
.y23{bottom:372.045000px;}
.y1d0{bottom:374.880722px;}
.y144{bottom:376.439592px;}
.y201{bottom:377.469000px;}
.y108{bottom:378.507000px;}
.y263{bottom:380.101500px;}
.yc5{bottom:381.250500px;}
.y198{bottom:382.491000px;}
.y56{bottom:383.298000px;}
.y72{bottom:386.554500px;}
.y231{bottom:390.382500px;}
.yf3{bottom:391.980000px;}
.y22{bottom:392.308500px;}
.y143{bottom:393.672273px;}
.y1cf{bottom:394.290393px;}
.y200{bottom:397.734000px;}
.y262{bottom:399.468000px;}
.y179{bottom:400.303500px;}
.y1ce{bottom:401.037781px;}
.yc4{bottom:401.514000px;}
.y197{bottom:402.754500px;}
.y55{bottom:403.561500px;}
.y71{bottom:406.819500px;}
.y230{bottom:409.750500px;}
.y142{bottom:410.904954px;}
.y21{bottom:412.573500px;}
.y261{bottom:418.836000px;}
.yc2{bottom:421.777500px;}
.y107{bottom:422.383500px;}
.y196{bottom:423.019500px;}
.y54{bottom:423.825000px;}
.y70{bottom:427.083000px;}
.y1cd{bottom:427.194841px;}
.yc3{bottom:427.203000px;}
.y141{bottom:428.137635px;}
.y22f{bottom:429.117000px;}
.yf2{bottom:432.508500px;}
.y20{bottom:432.837000px;}
.y1cc{bottom:433.942230px;}
.y178{bottom:435.123000px;}
.y260{bottom:438.204000px;}
.y106{bottom:439.179000px;}
.yc0{bottom:442.042500px;}
.y1b5{bottom:442.728123px;}
.y195{bottom:443.283000px;}
.y53{bottom:444.090000px;}
.y140{bottom:445.370316px;}
.y6f{bottom:447.348000px;}
.yc1{bottom:447.466500px;}
.y22e{bottom:448.485000px;}
.y1d4{bottom:450.114450px;}
.y1f{bottom:453.100500px;}
.y177{bottom:455.388000px;}
.y105{bottom:455.974500px;}
.y25f{bottom:457.570500px;}
.ybf{bottom:462.306000px;}
.y1b4{bottom:462.430892px;}
.y13f{bottom:462.602997px;}
.y52{bottom:464.353500px;}
.y6e{bottom:467.611500px;}
.y22d{bottom:467.851500px;}
.y1cb{bottom:469.288500px;}
.y194{bottom:472.513500px;}
.y104{bottom:472.770000px;}
.yf1{bottom:473.035500px;}
.y1e{bottom:473.365500px;}
.y176{bottom:475.651500px;}
.y25e{bottom:476.938500px;}
.y13e{bottom:479.758935px;}
.y1b3{bottom:482.133660px;}
.ybe{bottom:482.569500px;}
.y51{bottom:484.618500px;}
.y22c{bottom:487.219500px;}
.y6d{bottom:487.875000px;}
.y1ca{bottom:488.521500px;}
.yf0{bottom:493.300500px;}
.y1d{bottom:493.629000px;}
.y175{bottom:495.915000px;}
.y25d{bottom:496.305000px;}
.y103{bottom:496.768500px;}
.y13d{bottom:496.992252px;}
.y1ff{bottom:499.054500px;}
.y1b2{bottom:501.835197px;}
.ybd{bottom:502.834500px;}
.y50{bottom:504.882000px;}
.y22b{bottom:506.587500px;}
.y193{bottom:507.333000px;}
.y1c9{bottom:507.753000px;}
.y6c{bottom:508.140000px;}
.y1fe{bottom:513.894000px;}
.y13c{bottom:514.224933px;}
.y25c{bottom:515.673000px;}
.y174{bottom:516.180000px;}
.y102{bottom:520.410000px;}
.y1b1{bottom:521.537965px;}
.y1c{bottom:522.859500px;}
.ybc{bottom:523.098000px;}
.y4f{bottom:525.145500px;}
.y22a{bottom:525.954000px;}
.y192{bottom:527.596500px;}
.y6b{bottom:528.403500px;}
.y13b{bottom:531.457614px;}
.yee{bottom:534.112500px;}
.y1fd{bottom:534.157500px;}
.y25b{bottom:535.041000px;}
.y173{bottom:536.443500px;}
.y1c8{bottom:537.447000px;}
.y1b0{bottom:541.239502px;}
.ybb{bottom:543.363000px;}
.y229{bottom:545.322000px;}
.y4e{bottom:545.410500px;}
.y132{bottom:545.701500px;}
.y190{bottom:547.861500px;}
.y6a{bottom:548.667000px;}
.y13a{bottom:548.690295px;}
.y101{bottom:552.951000px;}
.y191{bottom:553.285500px;}
.y1bf{bottom:553.834161px;}
.y25a{bottom:554.407500px;}
.y1c7{bottom:556.680000px;}
.y172{bottom:556.708500px;}
.y1af{bottom:560.942271px;}
.y1fc{bottom:563.388000px;}
.yba{bottom:563.626500px;}
.y228{bottom:564.688500px;}
.y4d{bottom:565.674000px;}
.y139{bottom:565.922976px;}
.y131{bottom:565.965000px;}
.y18f{bottom:568.125000px;}
.y1be{bottom:568.233081px;}
.y69{bottom:568.932000px;}
.y100{bottom:572.184000px;}
.y259{bottom:573.775500px;}
.y1c6{bottom:575.913000px;}
.y1ae{bottom:580.645039px;}
.y1bd{bottom:582.632001px;}
.y138{bottom:583.155657px;}
.yb9{bottom:583.890000px;}
.y227{bottom:584.056500px;}
.y4c{bottom:585.939000px;}
.y130{bottom:586.230000px;}
.y18e{bottom:588.390000px;}
.y68{bottom:589.195500px;}
.yff{bottom:591.417000px;}
.y1fb{bottom:593.026500px;}
.y258{bottom:593.142000px;}
.yed{bottom:594.621000px;}
.y1c5{bottom:595.146000px;}
.y1bc{bottom:597.107511px;}
.y1b{bottom:599.275500px;}
.y137{bottom:600.311595px;}
.y1ad{bottom:600.346577px;}
.y226{bottom:603.424500px;}
.yb8{bottom:604.155000px;}
.y4b{bottom:606.202500px;}
.y12f{bottom:606.493500px;}
.y18d{bottom:608.653500px;}
.y67{bottom:609.460500px;}
.yfe{bottom:610.650000px;}
.y1fa{bottom:612.258000px;}
.y257{bottom:612.510000px;}
.y136{bottom:617.544276px;}
.y1b6{bottom:617.575500px;}
.y1ac{bottom:620.049345px;}
.y1bb{bottom:620.160719px;}
.y171{bottom:620.758500px;}
.y225{bottom:622.791000px;}
.yb7{bottom:624.418500px;}
.y4a{bottom:626.466000px;}
.y12e{bottom:626.758500px;}
.y18c{bottom:628.917000px;}
.y66{bottom:629.724000px;}
.yfd{bottom:629.883000px;}
.y1f9{bottom:631.491000px;}
.y256{bottom:631.878000px;}
.y1ba{bottom:636.781131px;}
.y1a{bottom:637.473000px;}
.y1ab{bottom:639.750882px;}
.y170{bottom:641.022000px;}
.y224{bottom:642.159000px;}
.yb6{bottom:644.683500px;}
.ye6{bottom:646.731000px;}
.y12d{bottom:647.022000px;}
.y134{bottom:649.329126px;}
.y65{bottom:649.987500px;}
.y1f8{bottom:650.724000px;}
.y255{bottom:651.244500px;}
.y1b9{bottom:653.324571px;}
.y49{bottom:655.696500px;}
.y19{bottom:657.736500px;}
.y18b{bottom:658.147500px;}
.y1aa{bottom:659.453651px;}
.y16f{bottom:661.285500px;}
.y223{bottom:661.527000px;}
.yb5{bottom:664.947000px;}
.ye5{bottom:666.994500px;}
.y12c{bottom:667.285500px;}
.y1f6{bottom:669.957000px;}
.y64{bottom:670.252500px;}
.y254{bottom:670.612500px;}
.y1f7{bottom:674.839500px;}
.yec{bottom:675.676500px;}
.y18{bottom:678.000000px;}
.y1a9{bottom:679.156419px;}
.y222{bottom:680.893500px;}
.y16e{bottom:681.550500px;}
.yb4{bottom:685.210500px;}
.ye4{bottom:687.258000px;}
.y12b{bottom:687.550500px;}
.y1f4{bottom:689.190000px;}
.y253{bottom:689.979000px;}
.y48{bottom:690.516000px;}
.y1b7{bottom:692.538651px;}
.y18a{bottom:692.967000px;}
.y1f5{bottom:694.072500px;}
.y17{bottom:698.265000px;}
.y1a8{bottom:698.944161px;}
.y221{bottom:700.261500px;}
.y16d{bottom:701.814000px;}
.yb3{bottom:705.475500px;}
.ye3{bottom:707.523000px;}
.y12a{bottom:707.814000px;}
.y252{bottom:709.347000px;}
.y47{bottom:710.781000px;}
.y1d3{bottom:711.619500px;}
.yef{bottom:716.205000px;}
.y16{bottom:718.528500px;}
.y1a7{bottom:719.025000px;}
.y220{bottom:719.628000px;}
.y16c{bottom:722.077500px;}
.yb2{bottom:725.739000px;}
.ye2{bottom:727.786500px;}
.y129{bottom:728.079000px;}
.y251{bottom:728.715000px;}
.y46{bottom:731.044500px;}
.y205{bottom:736.470000px;}
.y15{bottom:738.793500px;}
.y21f{bottom:738.996000px;}
.y16b{bottom:742.342500px;}
.yb1{bottom:746.004000px;}
.y1a6{bottom:747.622500px;}
.ye1{bottom:748.051500px;}
.y250{bottom:748.081500px;}
.y128{bottom:748.342500px;}
.y45{bottom:751.308000px;}
.y204{bottom:756.733500px;}
.y21e{bottom:758.364000px;}
.y14{bottom:759.057000px;}
.y16a{bottom:762.606000px;}
.y24f{bottom:767.449500px;}
.ye0{bottom:768.315000px;}
.y127{bottom:768.606000px;}
.y44{bottom:771.573000px;}
.yeb{bottom:776.997000px;}
.y21d{bottom:777.730500px;}
.y13{bottom:779.320500px;}
.yb0{bottom:781.003500px;}
.y169{bottom:782.871000px;}
.y24e{bottom:786.816000px;}
.ydf{bottom:788.578500px;}
.y126{bottom:788.871000px;}
.y43{bottom:791.836500px;}
.y21c{bottom:797.098500px;}
.yea{bottom:797.262000px;}
.y1a5{bottom:798.445500px;}
.y11{bottom:799.585500px;}
.yaf{bottom:800.236500px;}
.y168{bottom:803.134500px;}
.y12{bottom:805.009500px;}
.y24d{bottom:806.184000px;}
.yde{bottom:808.843500px;}
.y125{bottom:809.134500px;}
.y42{bottom:812.101500px;}
.y189{bottom:814.267500px;}
.y21b{bottom:816.465000px;}
.yae{bottom:819.469500px;}
.y10{bottom:819.849000px;}
.y167{bottom:823.398000px;}
.y24c{bottom:825.552000px;}
.ydd{bottom:829.107000px;}
.y124{bottom:829.399500px;}
.y41{bottom:832.365000px;}
.y188{bottom:834.532500px;}
.y21a{bottom:835.833000px;}
.yfc{bottom:838.074000px;}
.yad{bottom:838.702500px;}
.yf{bottom:840.114000px;}
.y166{bottom:843.663000px;}
.y24b{bottom:844.918500px;}
.ydc{bottom:849.372000px;}
.y123{bottom:849.663000px;}
.y40{bottom:852.628500px;}
.y187{bottom:854.796000px;}
.y219{bottom:855.201000px;}
.yac{bottom:857.935500px;}
.ye{bottom:860.377500px;}
.y165{bottom:863.926500px;}
.y24a{bottom:864.286500px;}
.ydb{bottom:869.635500px;}
.y122{bottom:869.926500px;}
.y3f{bottom:872.893500px;}
.y218{bottom:874.567500px;}
.y186{bottom:875.061000px;}
.y80{bottom:880.365000px;}
.y249{bottom:883.653000px;}
.y164{bottom:884.191500px;}
.yda{bottom:889.899000px;}
.y121{bottom:890.191500px;}
.y3e{bottom:893.157000px;}
.y217{bottom:893.935500px;}
.yb{bottom:895.384464px;}
.ya{bottom:896.151000px;}
.ye9{bottom:898.582500px;}
.y248{bottom:903.021000px;}
.y163{bottom:904.455000px;}
.yd9{bottom:910.164000px;}
.y216{bottom:913.302000px;}
.y3d{bottom:913.422000px;}
.y247{bottom:922.389000px;}
.y162{bottom:924.718500px;}
.yd8{bottom:930.427500px;}
.y215{bottom:932.670000px;}
.y3c{bottom:933.685500px;}
.y9{bottom:935.157000px;}
.y11f{bottom:936.052540px;}
.y246{bottom:941.755500px;}
.y120{bottom:943.293039px;}
.y161{bottom:944.983500px;}
.y11e{bottom:950.534859px;}
.yd7{bottom:950.692500px;}
.y214{bottom:952.038000px;}
.y3b{bottom:953.949000px;}
.y8{bottom:958.195500px;}
.ye8{bottom:959.374500px;}
.y245{bottom:961.123500px;}
.y11d{bottom:965.017178px;}
.y160{bottom:965.247000px;}
.yd6{bottom:970.956000px;}
.y213{bottom:971.404500px;}
.y3a{bottom:974.214000px;}
.y7{bottom:976.353000px;}
.y11c{bottom:979.499496px;}
.y244{bottom:980.490000px;}
.y15f{bottom:985.512000px;}
.y212{bottom:990.772500px;}
.yd5{bottom:991.219500px;}
.y11b{bottom:994.296331px;}
.y39{bottom:994.477500px;}
.y6{bottom:998.167500px;}
.y243{bottom:999.858000px;}
.y15e{bottom:1005.775500px;}
.y11a{bottom:1009.093167px;}
.y211{bottom:1010.139000px;}
.yd4{bottom:1011.484500px;}
.y38{bottom:1014.742500px;}
.y242{bottom:1019.226000px;}
.y15d{bottom:1026.039000px;}
.y210{bottom:1029.507000px;}
.y119{bottom:1030.234524px;}
.yd3{bottom:1031.748000px;}
.y37{bottom:1035.006000px;}
.y241{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y15c{bottom:1046.304000px;}
.y20f{bottom:1048.875000px;}
.y36{bottom:1055.269500px;}
.y240{bottom:1057.960500px;}
.y118{bottom:1059.844500px;}
.ye7{bottom:1060.695000px;}
.yd2{bottom:1060.978500px;}
.y15b{bottom:1066.567500px;}
.y20e{bottom:1068.241500px;}
.y4{bottom:1071.244500px;}
.y35{bottom:1075.534500px;}
.y23f{bottom:1077.327000px;}
.y117{bottom:1079.077500px;}
.y203{bottom:1080.958500px;}
.y15a{bottom:1086.832500px;}
.y20d{bottom:1087.609500px;}
.y34{bottom:1095.798000px;}
.y23e{bottom:1096.695000px;}
.y116{bottom:1098.310500px;}
.y3{bottom:1100.145000px;}
.yfb{bottom:1101.223500px;}
.y20c{bottom:1115.943000px;}
.y33{bottom:1116.063000px;}
.y115{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y32{bottom:1168.366500px;}
.hf{height:6.635092px;}
.h28{height:17.932680px;}
.h9{height:25.508090px;}
.h7{height:30.461558px;}
.h2f{height:31.613869px;}
.h2b{height:31.933816px;}
.h2d{height:32.154658px;}
.hd{height:33.072749px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.h1b{height:34.267590px;}
.h1d{height:34.504572px;}
.h1c{height:34.741554px;}
.h10{height:35.052500px;}
.h27{height:35.626258px;}
.h26{height:36.822737px;}
.h21{height:37.681981px;}
.h38{height:37.927872px;}
.h18{height:38.896243px;}
.h8{height:39.165235px;}
.h2c{height:39.354097px;}
.h30{height:39.434227px;}
.h22{height:40.838027px;}
.h25{height:42.498475px;}
.he{height:43.217759px;}
.hc{height:43.516637px;}
.h4{height:43.815515px;}
.h36{height:44.091914px;}
.h13{height:44.279648px;}
.h23{height:47.314968px;}
.h14{height:47.988281px;}
.h37{height:49.117939px;}
.h1a{height:49.776344px;}
.h16{height:49.939453px;}
.h35{height:49.941253px;}
.h2{height:50.930649px;}
.h6{height:54.547601px;}
.h11{height:54.575123px;}
.h1f{height:54.768749px;}
.h19{height:54.774749px;}
.h17{height:55.599258px;}
.h24{height:56.664633px;}
.h32{height:58.923370px;}
.h31{height:58.928296px;}
.h33{height:59.149138px;}
.h1e{height:63.703548px;}
.h15{height:66.585938px;}
.h5{height:77.792486px;}
.h3{height:87.128261px;}
.h12{height:191.785500px;}
.h20{height:305.830253px;}
.h34{height:419.388000px;}
.h2e{height:513.433830px;}
.h29{height:892.914000px;}
.h2a{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:192.551870px;}
.w4{width:368.818500px;}
.w5{width:409.279089px;}
.w8{width:513.434724px;}
.w9{width:604.381050px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w6{width:1262.835000px;}
.w7{width:1263.000000px;}
.x17{left:-147.168000px;}
.x19{left:-115.308000px;}
.x4b{left:-87.075171px;}
.x4c{left:-59.962311px;}
.x7a{left:-33.364950px;}
.x6d{left:-24.815543px;}
.x70{left:-16.314053px;}
.x6f{left:-2.681033px;}
.x7c{left:-1.504950px;}
.x0{left:0.000000px;}
.x6e{left:2.297317px;}
.x71{left:9.496777px;}
.x6{left:29.274117px;}
.x2{left:56.875456px;}
.x1{left:114.802500px;}
.x3{left:123.307500px;}
.x1d{left:132.699000px;}
.x96{left:142.929000px;}
.x79{left:144.267450px;}
.x4{left:146.170500px;}
.x69{left:155.232175px;}
.x25{left:158.760000px;}
.x6b{left:161.168005px;}
.x1e{left:162.643500px;}
.x74{left:170.882938px;}
.x6a{left:174.975583px;}
.x4a{left:178.580225px;}
.x26{left:185.527500px;}
.x30{left:188.526000px;}
.x6c{left:189.740106px;}
.x46{left:191.228301px;}
.x47{left:193.172227px;}
.x48{left:195.114833px;}
.x37{left:200.112000px;}
.x9{left:201.543000px;}
.x4d{left:204.465000px;}
.x1a{left:208.413000px;}
.x57{left:213.985500px;}
.x31{left:215.293500px;}
.xc{left:219.288000px;}
.x90{left:220.611000px;}
.x91{left:227.337000px;}
.x9b{left:234.279000px;}
.xd{left:241.708500px;}
.x8a{left:243.897000px;}
.x8b{left:250.948500px;}
.x77{left:254.035050px;}
.x8c{left:259.057500px;}
.x16{left:262.048500px;}
.x58{left:264.454500px;}
.x52{left:265.705500px;}
.x9e{left:267.256500px;}
.x3b{left:271.056000px;}
.x78{left:274.296920px;}
.x3c{left:277.578000px;}
.x3d{left:282.615000px;}
.x59{left:291.222000px;}
.x3a{left:292.594500px;}
.x9c{left:294.100500px;}
.xe{left:295.635000px;}
.x1f{left:297.934500px;}
.x75{left:301.366521px;}
.xf{left:303.106500px;}
.x7{left:305.065500px;}
.x2a{left:311.398500px;}
.x50{left:317.670000px;}
.x20{left:324.700500px;}
.x21{left:326.106000px;}
.x9d{left:328.951500px;}
.x82{left:330.463500px;}
.x8{left:331.833000px;}
.x97{left:334.779000px;}
.x2b{left:338.164500px;}
.x98{left:341.221500px;}
.x68{left:343.734000px;}
.x10{left:345.177000px;}
.x53{left:348.409500px;}
.x11{left:352.335000px;}
.x22{left:356.596500px;}
.x7e{left:359.841000px;}
.x18{left:367.812000px;}
.x39{left:369.232500px;}
.x5a{left:372.364500px;}
.x38{left:375.306000px;}
.x44{left:377.949000px;}
.x92{left:381.879000px;}
.x67{left:385.387500px;}
.x93{left:388.320000px;}
.x3e{left:390.928500px;}
.x8d{left:392.614500px;}
.x99{left:394.281000px;}
.x9a{left:401.007000px;}
.x32{left:403.497000px;}
.x86{left:405.430500px;}
.x94{left:409.567500px;}
.x95{left:420.031500px;}
.x3f{left:429.760500px;}
.x33{left:434.020500px;}
.x76{left:436.047056px;}
.x1b{left:438.294000px;}
.x73{left:441.601120px;}
.x40{left:445.461000px;}
.x34{left:447.450000px;}
.x45{left:449.785500px;}
.x2c{left:451.515000px;}
.x5b{left:457.047000px;}
.x5d{left:461.511000px;}
.x54{left:462.672000px;}
.x1c{left:465.061500px;}
.x81{left:467.305500px;}
.x2d{left:478.281000px;}
.x41{left:479.454000px;}
.x5c{left:483.814500px;}
.x55{left:489.438000px;}
.x42{left:496.807500px;}
.x72{left:512.693077px;}
.x43{left:513.931500px;}
.x5e{left:515.131500px;}
.x5f{left:520.083000px;}
.x63{left:537.123000px;}
.x64{left:563.889000px;}
.x60{left:574.105500px;}
.x28{left:581.203500px;}
.x65{left:586.662000px;}
.x35{left:594.211500px;}
.x8e{left:597.204000px;}
.x8f{left:601.063500px;}
.x7b{left:604.285050px;}
.x29{left:611.712000px;}
.x66{left:617.169000px;}
.xa{left:621.883500px;}
.x36{left:624.699000px;}
.x85{left:637.419000px;}
.x4e{left:642.078000px;}
.xb{left:644.298000px;}
.x12{left:646.252500px;}
.x13{left:650.542500px;}
.x2e{left:653.823000px;}
.x4f{left:656.157000px;}
.x56{left:659.887500px;}
.x7f{left:665.698500px;}
.x51{left:668.764500px;}
.x2f{left:680.589000px;}
.x49{left:681.827247px;}
.x61{left:687.027000px;}
.x14{left:691.983000px;}
.x80{left:693.775500px;}
.x15{left:700.143000px;}
.x5{left:701.339982px;}
.x88{left:715.092000px;}
.x62{left:717.526500px;}
.x7d{left:721.507500px;}
.x83{left:722.703000px;}
.x87{left:727.119000px;}
.x89{left:746.025000px;}
.x23{left:747.762000px;}
.x27{left:751.344000px;}
.x84{left:753.214500px;}
.x24{left:774.529500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v4{vertical-align:-13.439467pt;}
.v9{vertical-align:-11.437440pt;}
.vc{vertical-align:-6.620544pt;}
.va{vertical-align:-1.348629pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.946667pt;}
.v8{vertical-align:11.435180pt;}
.v3{vertical-align:13.434112pt;}
.v5{vertical-align:17.354667pt;}
.v1{vertical-align:19.290667pt;}
.vb{vertical-align:23.995093pt;}
.v7{vertical-align:25.743995pt;}
.ls52{letter-spacing:-0.304608pt;}
.lsc2{letter-spacing:-0.224448pt;}
.lsc5{letter-spacing:-0.192384pt;}
.ls48{letter-spacing:-0.144288pt;}
.ls47{letter-spacing:-0.138944pt;}
.lsc0{letter-spacing:-0.133600pt;}
.ls42{letter-spacing:-0.128256pt;}
.ls3c{letter-spacing:-0.122912pt;}
.lsc4{letter-spacing:-0.121600pt;}
.ls3b{letter-spacing:-0.117568pt;}
.ls85{letter-spacing:-0.113694pt;}
.ls4a{letter-spacing:-0.112224pt;}
.ls44{letter-spacing:-0.106880pt;}
.ls45{letter-spacing:-0.101536pt;}
.ls51{letter-spacing:-0.096192pt;}
.ls39{letter-spacing:-0.096000pt;}
.ls8e{letter-spacing:-0.095503pt;}
.ls88{letter-spacing:-0.090955pt;}
.ls53{letter-spacing:-0.090848pt;}
.ls46{letter-spacing:-0.085504pt;}
.lsb4{letter-spacing:-0.083303pt;}
.ls34{letter-spacing:-0.080864pt;}
.ls4b{letter-spacing:-0.080160pt;}
.ls8a{letter-spacing:-0.077312pt;}
.lsbf{letter-spacing:-0.074816pt;}
.ls4f{letter-spacing:-0.069472pt;}
.ls7d{letter-spacing:-0.068815pt;}
.lsbe{letter-spacing:-0.067200pt;}
.ls4c{letter-spacing:-0.064128pt;}
.ls8b{letter-spacing:-0.063668pt;}
.lsba{letter-spacing:-0.062400pt;}
.ls7e{letter-spacing:-0.059121pt;}
.ls50{letter-spacing:-0.058784pt;}
.ls41{letter-spacing:-0.053440pt;}
.lsb6{letter-spacing:-0.053102pt;}
.ls86{letter-spacing:-0.050025pt;}
.ls4e{letter-spacing:-0.048096pt;}
.ls37{letter-spacing:-0.048000pt;}
.ls49{letter-spacing:-0.044800pt;}
.ls43{letter-spacing:-0.042752pt;}
.lsc1{letter-spacing:-0.041600pt;}
.ls83{letter-spacing:-0.040930pt;}
.lsbb{letter-spacing:-0.038272pt;}
.ls84{letter-spacing:-0.038125pt;}
.ls4d{letter-spacing:-0.037408pt;}
.lsbc{letter-spacing:-0.035328pt;}
.ls8d{letter-spacing:-0.032678pt;}
.ls3a{letter-spacing:-0.032064pt;}
.ls82{letter-spacing:-0.031834pt;}
.ls40{letter-spacing:-0.026720pt;}
.lsb5{letter-spacing:-0.024509pt;}
.lsbd{letter-spacing:-0.024000pt;}
.ls80{letter-spacing:-0.022739pt;}
.ls3e{letter-spacing:-0.021376pt;}
.ls35{letter-spacing:-0.019200pt;}
.ls81{letter-spacing:-0.018191pt;}
.ls8c{letter-spacing:-0.016339pt;}
.lsc3{letter-spacing:-0.016032pt;}
.ls36{letter-spacing:-0.014400pt;}
.ls3f{letter-spacing:-0.010688pt;}
.ls38{letter-spacing:-0.009600pt;}
.ls89{letter-spacing:-0.009095pt;}
.lsb3{letter-spacing:-0.008170pt;}
.ls3d{letter-spacing:-0.005344pt;}
.ls87{letter-spacing:-0.004548pt;}
.lsb2{letter-spacing:-0.004085pt;}
.ls7{letter-spacing:0.000000pt;}
.ls9f{letter-spacing:0.000110pt;}
.ls99{letter-spacing:0.000137pt;}
.ls92{letter-spacing:0.000162pt;}
.lsaf{letter-spacing:0.000222pt;}
.ls98{letter-spacing:0.000225pt;}
.ls59{letter-spacing:0.000274pt;}
.lsc8{letter-spacing:0.000325pt;}
.lscc{letter-spacing:0.000375pt;}
.lscd{letter-spacing:0.000397pt;}
.ls66{letter-spacing:0.000880pt;}
.ls1a{letter-spacing:0.001349pt;}
.ls61{letter-spacing:0.001792pt;}
.ls63{letter-spacing:0.002078pt;}
.lsb1{letter-spacing:0.002095pt;}
.ls67{letter-spacing:0.002287pt;}
.ls60{letter-spacing:0.002322pt;}
.ls5f{letter-spacing:0.002473pt;}
.lsb9{letter-spacing:0.002505pt;}
.lsa3{letter-spacing:0.002613pt;}
.ls90{letter-spacing:0.002868pt;}
.lsca{letter-spacing:0.002940pt;}
.ls31{letter-spacing:0.003026pt;}
.ls6{letter-spacing:0.003100pt;}
.lsb{letter-spacing:0.003106pt;}
.ls5e{letter-spacing:0.003633pt;}
.ls93{letter-spacing:0.004021pt;}
.ls77{letter-spacing:0.004085pt;}
.ls70{letter-spacing:0.004548pt;}
.lscb{letter-spacing:0.004598pt;}
.lsc9{letter-spacing:0.004813pt;}
.ls29{letter-spacing:0.005344pt;}
.ls22{letter-spacing:0.009600pt;}
.ls2f{letter-spacing:0.010688pt;}
.lsae{letter-spacing:0.012254pt;}
.ls23{letter-spacing:0.014400pt;}
.lsaa{letter-spacing:0.014487pt;}
.ls2e{letter-spacing:0.016032pt;}
.lsad{letter-spacing:0.016339pt;}
.ls6d{letter-spacing:0.018191pt;}
.ls75{letter-spacing:0.020424pt;}
.ls2d{letter-spacing:0.021376pt;}
.ls6f{letter-spacing:0.022739pt;}
.ls78{letter-spacing:0.024509pt;}
.ls6b{letter-spacing:0.025353pt;}
.ls28{letter-spacing:0.026720pt;}
.ls7b{letter-spacing:0.027286pt;}
.ls76{letter-spacing:0.028594pt;}
.ls21{letter-spacing:0.028800pt;}
.ls1f{letter-spacing:0.029792pt;}
.ls6e{letter-spacing:0.031834pt;}
.ls2a{letter-spacing:0.032064pt;}
.ls71{letter-spacing:0.036382pt;}
.ls24{letter-spacing:0.038400pt;}
.ls79{letter-spacing:0.040848pt;}
.ls7c{letter-spacing:0.040930pt;}
.ls27{letter-spacing:0.042752pt;}
.ls25{letter-spacing:0.043200pt;}
.ls7f{letter-spacing:0.045477pt;}
.ls69{letter-spacing:0.047084pt;}
.lsb8{letter-spacing:0.048096pt;}
.ls72{letter-spacing:0.050025pt;}
.lsac{letter-spacing:0.050706pt;}
.ls26{letter-spacing:0.053440pt;}
.ls73{letter-spacing:0.054573pt;}
.ls1d{letter-spacing:0.055328pt;}
.ls2b{letter-spacing:0.058784pt;}
.ls2c{letter-spacing:0.064128pt;}
.ls74{letter-spacing:0.068216pt;}
.lsa7{letter-spacing:0.073526pt;}
.lsb7{letter-spacing:0.076800pt;}
.ls7a{letter-spacing:0.086407pt;}
.lsa8{letter-spacing:0.123143pt;}
.lsab{letter-spacing:0.126765pt;}
.ls6c{letter-spacing:0.130387pt;}
.lsa9{letter-spacing:0.136160pt;}
.ls6a{letter-spacing:0.137631pt;}
.ls20{letter-spacing:0.153216pt;}
.ls1e{letter-spacing:0.161728pt;}
.lsce{letter-spacing:0.478097pt;}
.ls8f{letter-spacing:0.520289pt;}
.ls91{letter-spacing:0.531914pt;}
.ls8{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.lsb0{letter-spacing:2.181014pt;}
.ls0{letter-spacing:2.665203pt;}
.ls5{letter-spacing:10.626533pt;}
.ls12{letter-spacing:11.636317pt;}
.ls5a{letter-spacing:11.742585pt;}
.ls65{letter-spacing:11.951411pt;}
.ls64{letter-spacing:11.956745pt;}
.ls56{letter-spacing:12.380191pt;}
.ls57{letter-spacing:12.433325pt;}
.ls54{letter-spacing:12.592726pt;}
.ls55{letter-spacing:12.645860pt;}
.ls4{letter-spacing:12.698994pt;}
.ls5d{letter-spacing:13.017797pt;}
.ls5c{letter-spacing:13.070931pt;}
.ls9c{letter-spacing:13.082745pt;}
.ls9d{letter-spacing:13.084329pt;}
.ls9e{letter-spacing:13.087989pt;}
.ls58{letter-spacing:13.124065pt;}
.ls14{letter-spacing:13.177199pt;}
.ls17{letter-spacing:13.230333pt;}
.lsa2{letter-spacing:13.273956pt;}
.lsa0{letter-spacing:13.280110pt;}
.ls9a{letter-spacing:13.282029pt;}
.lse{letter-spacing:13.283467pt;}
.ls95{letter-spacing:13.283733pt;}
.ls96{letter-spacing:13.285443pt;}
.lsf{letter-spacing:13.336601pt;}
.ls9b{letter-spacing:13.337865pt;}
.lsc7{letter-spacing:13.389734pt;}
.lsa4{letter-spacing:13.426088pt;}
.lsa5{letter-spacing:13.431491pt;}
.ls15{letter-spacing:13.442868pt;}
.lsd{letter-spacing:13.496002pt;}
.ls1b{letter-spacing:13.549136pt;}
.ls1c{letter-spacing:13.602270pt;}
.ls10{letter-spacing:14.133609pt;}
.ls11{letter-spacing:14.186742pt;}
.ls94{letter-spacing:14.231221pt;}
.ls33{letter-spacing:14.399278pt;}
.lsc{letter-spacing:14.771215pt;}
.ls16{letter-spacing:14.824349pt;}
.ls68{letter-spacing:15.143152pt;}
.lsa1{letter-spacing:15.461955pt;}
.lsc6{letter-spacing:15.674491pt;}
.ls3{letter-spacing:15.993294pt;}
.ls62{letter-spacing:16.040371pt;}
.ls13{letter-spacing:16.896570pt;}
.ls19{letter-spacing:16.949703pt;}
.ls18{letter-spacing:19.393861pt;}
.lsa{letter-spacing:21.412948pt;}
.ls9{letter-spacing:21.466082pt;}
.ls5b{letter-spacing:21.572350pt;}
.ls32{letter-spacing:21.891153pt;}
.ls97{letter-spacing:22.050555pt;}
.ls1{letter-spacing:62.432533pt;}
.lsa6{letter-spacing:237.927114pt;}
.ls30{letter-spacing:752.000000pt;}
.ws1c{word-spacing:-15.461955pt;}
.ws15b{word-spacing:-13.915853pt;}
.ws4e{word-spacing:-13.370688pt;}
.ws4d{word-spacing:-13.365344pt;}
.ws4c{word-spacing:-13.360000pt;}
.ws4a{word-spacing:-13.354656pt;}
.ws4b{word-spacing:-13.349312pt;}
.ws1da{word-spacing:-13.294182pt;}
.ws1e{word-spacing:-13.283467pt;}
.ws3{word-spacing:-12.760670pt;}
.ws5{word-spacing:-11.955200pt;}
.ws47{word-spacing:-10.801728pt;}
.ws48{word-spacing:-10.640000pt;}
.ws22{word-spacing:-10.626800pt;}
.wsef{word-spacing:-10.532531pt;}
.ws159{word-spacing:-10.212000pt;}
.wsc6{word-spacing:-10.095467pt;}
.ws14c{word-spacing:-9.815219pt;}
.wsf8{word-spacing:-9.192271pt;}
.wsf9{word-spacing:-9.054640pt;}
.ws175{word-spacing:-7.958400pt;}
.ws49{word-spacing:-7.955200pt;}
.ws176{word-spacing:-7.878400pt;}
.ws14d{word-spacing:-7.633986pt;}
.ws174{word-spacing:-7.324672pt;}
.ws173{word-spacing:-7.321728pt;}
.wsfa{word-spacing:-6.769875pt;}
.ws130{word-spacing:-4.941450pt;}
.ws1b1{word-spacing:-3.666237pt;}
.ws11{word-spacing:-3.188032pt;}
.ws133{word-spacing:-3.081764pt;}
.wscf{word-spacing:-2.922363pt;}
.ws247{word-spacing:-2.869248pt;}
.ws1fa{word-spacing:-2.821427pt;}
.ws1b2{word-spacing:-2.656693pt;}
.ws36{word-spacing:-2.603559pt;}
.ws195{word-spacing:-2.538400pt;}
.wsc0{word-spacing:-2.497292pt;}
.ws8d{word-spacing:-2.479616pt;}
.ws8c{word-spacing:-2.468928pt;}
.ws196{word-spacing:-2.458240pt;}
.wsbf{word-spacing:-2.444158pt;}
.ws1e0{word-spacing:-2.438861pt;}
.ws194{word-spacing:-2.399456pt;}
.ws11c{word-spacing:-2.344675pt;}
.ws248{word-spacing:-2.343219pt;}
.wsc{word-spacing:-2.337890pt;}
.wsff{word-spacing:-2.323897pt;}
.ws11d{word-spacing:-2.320166pt;}
.ws224{word-spacing:-2.199757pt;}
.ws66{word-spacing:-2.116800pt;}
.wsbd{word-spacing:-2.072221pt;}
.ws67{word-spacing:-2.064000pt;}
.ws68{word-spacing:-2.030400pt;}
.wsb4{word-spacing:-1.965953pt;}
.ws1b{word-spacing:-1.912819pt;}
.ws113{word-spacing:-1.873671pt;}
.ws1e1{word-spacing:-1.865011pt;}
.ws190{word-spacing:-1.859712pt;}
.ws99{word-spacing:-1.843680pt;}
.ws18f{word-spacing:-1.806272pt;}
.ws53{word-spacing:-1.769370pt;}
.ws112{word-spacing:-1.759977pt;}
.ws59{word-spacing:-1.753418pt;}
.ws18e{word-spacing:-1.752832pt;}
.ws191{word-spacing:-1.704736pt;}
.ws7{word-spacing:-1.696326pt;}
.ws1b4{word-spacing:-1.578086pt;}
.wsc3{word-spacing:-1.540882pt;}
.ws9a{word-spacing:-1.533728pt;}
.ws134{word-spacing:-1.487748pt;}
.ws23e{word-spacing:-1.482445pt;}
.ws23f{word-spacing:-1.434624pt;}
.ws44{word-spacing:-1.434614pt;}
.ws23a{word-spacing:-1.386803pt;}
.wsd5{word-spacing:-1.381481pt;}
.ws235{word-spacing:-1.338982pt;}
.ws198{word-spacing:-1.250496pt;}
.ws5e{word-spacing:-1.222079pt;}
.ws9b{word-spacing:-1.175680pt;}
.ws6{word-spacing:-1.175671pt;}
.wsd4{word-spacing:-1.168945pt;}
.ws9c{word-spacing:-1.164992pt;}
.ws9d{word-spacing:-1.154304pt;}
.ws9e{word-spacing:-1.132928pt;}
.ws193{word-spacing:-1.127584pt;}
.ws46{word-spacing:-1.115811pt;}
.ws197{word-spacing:-1.100864pt;}
.ws217{word-spacing:-1.099878pt;}
.ws1d{word-spacing:-1.062677pt;}
.wsa{word-spacing:-1.009543pt;}
.ws200{word-spacing:-1.004237pt;}
.ws11b{word-spacing:-0.972182pt;}
.ws16b{word-spacing:-0.968098pt;}
.ws208{word-spacing:-0.956416pt;}
.wsb1{word-spacing:-0.956410pt;}
.ws16c{word-spacing:-0.955843pt;}
.ws119{word-spacing:-0.935419pt;}
.ws11a{word-spacing:-0.919080pt;}
.ws1e8{word-spacing:-0.908595pt;}
.wsb0{word-spacing:-0.903276pt;}
.ws1ea{word-spacing:-0.860774pt;}
.wsb6{word-spacing:-0.850142pt;}
.wsb5{word-spacing:-0.797008pt;}
.wsae{word-spacing:-0.743874pt;}
.ws102{word-spacing:-0.732187pt;}
.ws103{word-spacing:-0.718544pt;}
.ws249{word-spacing:-0.717312pt;}
.wsaf{word-spacing:-0.690740pt;}
.ws23b{word-spacing:-0.669491pt;}
.wsb2{word-spacing:-0.637606pt;}
.ws22d{word-spacing:-0.621670pt;}
.ws16{word-spacing:-0.584473pt;}
.ws22c{word-spacing:-0.573850pt;}
.ws42{word-spacing:-0.531339pt;}
.ws129{word-spacing:-0.518443pt;}
.ws181{word-spacing:-0.480000pt;}
.ws241{word-spacing:-0.478208pt;}
.wsb3{word-spacing:-0.478205pt;}
.ws182{word-spacing:-0.456000pt;}
.ws237{word-spacing:-0.430387pt;}
.ws32{word-spacing:-0.425071pt;}
.wse{word-spacing:-0.371937pt;}
.ws1cf{word-spacing:-0.334746pt;}
.ws34{word-spacing:-0.318803pt;}
.ws90{word-spacing:-0.304608pt;}
.ws187{word-spacing:-0.299264pt;}
.ws121{word-spacing:-0.291056pt;}
.ws1b8{word-spacing:-0.286925pt;}
.ws1a{word-spacing:-0.265669pt;}
.ws52{word-spacing:-0.239104pt;}
.ws123{word-spacing:-0.236483pt;}
.ws125{word-spacing:-0.222839pt;}
.ws2c{word-spacing:-0.212535pt;}
.ws169{word-spacing:-0.206446pt;}
.ws98{word-spacing:-0.197728pt;}
.ws168{word-spacing:-0.195580pt;}
.ws142{word-spacing:-0.193523pt;}
.ws167{word-spacing:-0.191958pt;}
.wse9{word-spacing:-0.191283pt;}
.ws143{word-spacing:-0.188274pt;}
.ws120{word-spacing:-0.179731pt;}
.ws97{word-spacing:-0.176352pt;}
.ws126{word-spacing:-0.172814pt;}
.ws30{word-spacing:-0.159402pt;}
.ws23d{word-spacing:-0.155164pt;}
.ws1db{word-spacing:-0.145932pt;}
.wsda{word-spacing:-0.143462pt;}
.ws16a{word-spacing:-0.119521pt;}
.ws61{word-spacing:-0.110656pt;}
.wsf{word-spacing:-0.106268pt;}
.ws1c8{word-spacing:-0.095642pt;}
.wsfc{word-spacing:-0.094168pt;}
.ws206{word-spacing:-0.089528pt;}
.ws1{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws161{word-spacing:-0.039261pt;}
.ws24d{word-spacing:-0.034869pt;}
.ws148{word-spacing:-0.017039pt;}
.ws21c{word-spacing:-0.013457pt;}
.ws1c0{word-spacing:-0.012356pt;}
.ws236{word-spacing:-0.010010pt;}
.ws1bc{word-spacing:-0.009796pt;}
.ws1ef{word-spacing:-0.009062pt;}
.ws222{word-spacing:-0.008789pt;}
.ws21e{word-spacing:-0.008124pt;}
.ws1f3{word-spacing:-0.007723pt;}
.ws23c{word-spacing:-0.007484pt;}
.ws1e7{word-spacing:-0.007373pt;}
.ws1cb{word-spacing:-0.007031pt;}
.ws1d4{word-spacing:-0.006844pt;}
.ws1fe{word-spacing:-0.006801pt;}
.ws203{word-spacing:-0.006426pt;}
.ws225{word-spacing:-0.006221pt;}
.ws1f6{word-spacing:-0.006084pt;}
.ws1fd{word-spacing:-0.005675pt;}
.ws233{word-spacing:-0.005649pt;}
.ws1ca{word-spacing:-0.005052pt;}
.ws1d1{word-spacing:-0.005018pt;}
.ws1b9{word-spacing:-0.004463pt;}
.ws144{word-spacing:-0.004349pt;}
.ws1b6{word-spacing:-0.004335pt;}
.ws1d0{word-spacing:-0.004147pt;}
.ws1dd{word-spacing:-0.003942pt;}
.ws240{word-spacing:-0.003081pt;}
.ws223{word-spacing:-0.002475pt;}
.ws227{word-spacing:-0.002389pt;}
.ws1e9{word-spacing:-0.002159pt;}
.ws1f5{word-spacing:-0.002150pt;}
.ws145{word-spacing:-0.001939pt;}
.ws1fc{word-spacing:-0.001783pt;}
.ws24b{word-spacing:-0.001698pt;}
.ws1f8{word-spacing:-0.001092pt;}
.ws1de{word-spacing:-0.000947pt;}
.ws146{word-spacing:-0.000800pt;}
.ws1f0{word-spacing:-0.000751pt;}
.ws214{word-spacing:-0.000717pt;}
.ws0{word-spacing:0.000000pt;}
.ws21{word-spacing:0.000329pt;}
.ws2{word-spacing:0.003207pt;}
.ws116{word-spacing:0.013643pt;}
.ws24a{word-spacing:0.022005pt;}
.ws15a{word-spacing:0.047821pt;}
.ws82{word-spacing:0.048096pt;}
.ws9{word-spacing:0.053134pt;}
.ws1ad{word-spacing:0.053440pt;}
.ws141{word-spacing:0.055470pt;}
.ws166{word-spacing:0.061272pt;}
.wsaa{word-spacing:0.064128pt;}
.ws199{word-spacing:0.074816pt;}
.wsad{word-spacing:0.080160pt;}
.ws1ae{word-spacing:0.085504pt;}
.ws108{word-spacing:0.086407pt;}
.ws11f{word-spacing:0.093950pt;}
.ws1bd{word-spacing:0.095642pt;}
.ws25{word-spacing:0.106268pt;}
.ws83{word-spacing:0.106880pt;}
.ws172{word-spacing:0.114374pt;}
.ws6c{word-spacing:0.115200pt;}
.ws6b{word-spacing:0.129600pt;}
.ws149{word-spacing:0.132698pt;}
.ws1ff{word-spacing:0.138802pt;}
.ws1f1{word-spacing:0.142230pt;}
.ws177{word-spacing:0.143462pt;}
.ws19{word-spacing:0.159402pt;}
.ws87{word-spacing:0.165664pt;}
.ws86{word-spacing:0.181696pt;}
.ws109{word-spacing:0.181910pt;}
.wsa9{word-spacing:0.187040pt;}
.ws51{word-spacing:0.191283pt;}
.ws14{word-spacing:0.212535pt;}
.ws219{word-spacing:0.213239pt;}
.ws186{word-spacing:0.225600pt;}
.ws1c3{word-spacing:0.239104pt;}
.ws20d{word-spacing:0.264027pt;}
.ws17{word-spacing:0.265669pt;}
.ws1af{word-spacing:0.272544pt;}
.ws117{word-spacing:0.272865pt;}
.ws1ba{word-spacing:0.286925pt;}
.ws107{word-spacing:0.318342pt;}
.ws29{word-spacing:0.318803pt;}
.ws10b{word-spacing:0.336533pt;}
.ws10a{word-spacing:0.363820pt;}
.ws5f{word-spacing:0.371937pt;}
.ws92{word-spacing:0.379424pt;}
.ws179{word-spacing:0.382566pt;}
.ws91{word-spacing:0.400800pt;}
.ws71{word-spacing:0.406144pt;}
.wse6{word-spacing:0.412445pt;}
.wse5{word-spacing:0.412772pt;}
.ws72{word-spacing:0.422176pt;}
.wsd{word-spacing:0.425071pt;}
.ws1df{word-spacing:0.430387pt;}
.ws35{word-spacing:0.478205pt;}
.ws1c9{word-spacing:0.478208pt;}
.ws242{word-spacing:0.526029pt;}
.ws132{word-spacing:0.531339pt;}
.ws243{word-spacing:0.535923pt;}
.ws1cc{word-spacing:0.573850pt;}
.ws12f{word-spacing:0.584473pt;}
.ws220{word-spacing:0.621670pt;}
.ws105{word-spacing:0.632136pt;}
.ws5c{word-spacing:0.637606pt;}
.ws104{word-spacing:0.654875pt;}
.ws85{word-spacing:0.662656pt;}
.ws21a{word-spacing:0.669491pt;}
.ws10{word-spacing:0.690740pt;}
.ws180{word-spacing:0.724800pt;}
.ws40{word-spacing:0.743874pt;}
.ws226{word-spacing:0.765133pt;}
.ws65{word-spacing:0.792000pt;}
.ws24{word-spacing:0.797008pt;}
.ws17f{word-spacing:0.811200pt;}
.ws115{word-spacing:0.836785pt;}
.ws37{word-spacing:0.850142pt;}
.ws2a{word-spacing:0.903276pt;}
.ws230{word-spacing:0.908595pt;}
.ws114{word-spacing:0.950478pt;}
.ws3e{word-spacing:0.956410pt;}
.ws15d{word-spacing:0.956416pt;}
.ws1d2{word-spacing:1.004237pt;}
.ws3f{word-spacing:1.009543pt;}
.wscb{word-spacing:1.062677pt;}
.ws1f9{word-spacing:1.099878pt;}
.wsce{word-spacing:1.115811pt;}
.ws124{word-spacing:1.118745pt;}
.ws1f{word-spacing:1.168945pt;}
.ws244{word-spacing:1.195520pt;}
.ws5b{word-spacing:1.222079pt;}
.ws15c{word-spacing:1.243341pt;}
.wsc7{word-spacing:1.275213pt;}
.ws170{word-spacing:1.278542pt;}
.wsba{word-spacing:1.328347pt;}
.ws93{word-spacing:1.330656pt;}
.wsb8{word-spacing:1.381481pt;}
.ws178{word-spacing:1.386803pt;}
.ws10f{word-spacing:1.432539pt;}
.wsbc{word-spacing:1.434614pt;}
.ws185{word-spacing:1.440000pt;}
.ws184{word-spacing:1.449600pt;}
.ws10e{word-spacing:1.478017pt;}
.ws171{word-spacing:1.478698pt;}
.ws3d{word-spacing:1.487748pt;}
.ws229{word-spacing:1.530266pt;}
.wsc2{word-spacing:1.540882pt;}
.wsd9{word-spacing:1.578086pt;}
.wsd0{word-spacing:1.594016pt;}
.wsf5{word-spacing:1.647150pt;}
.ws94{word-spacing:1.672672pt;}
.ws18{word-spacing:1.700284pt;}
.ws1aa{word-spacing:1.752832pt;}
.ws13{word-spacing:1.753418pt;}
.ws16d{word-spacing:1.756464pt;}
.ws1ab{word-spacing:1.758176pt;}
.ws16e{word-spacing:1.764634pt;}
.ws15e{word-spacing:1.769370pt;}
.ws16f{word-spacing:1.793227pt;}
.ws84{word-spacing:1.816960pt;}
.ws1f4{word-spacing:1.817190pt;}
.wsf6{word-spacing:1.859685pt;}
.wsd8{word-spacing:1.865011pt;}
.ws2b{word-spacing:1.912819pt;}
.ws19c{word-spacing:1.955904pt;}
.ws1d6{word-spacing:1.960653pt;}
.ws60{word-spacing:1.965953pt;}
.ws1d7{word-spacing:2.008474pt;}
.ws19d{word-spacing:2.030720pt;}
.ws228{word-spacing:2.056294pt;}
.wsb{word-spacing:2.072221pt;}
.ws1c1{word-spacing:2.104115pt;}
.wsc1{word-spacing:2.125355pt;}
.ws45{word-spacing:2.178489pt;}
.ws147{word-spacing:2.231622pt;}
.ws201{word-spacing:2.247578pt;}
.ws3a{word-spacing:2.284756pt;}
.wse8{word-spacing:2.295398pt;}
.ws7b{word-spacing:2.313952pt;}
.ws163{word-spacing:2.316082pt;}
.ws162{word-spacing:2.320166pt;}
.ws39{word-spacing:2.337890pt;}
.wsa6{word-spacing:2.351360pt;}
.wse3{word-spacing:2.391024pt;}
.ws80{word-spacing:2.404800pt;}
.ws7f{word-spacing:2.420832pt;}
.ws21f{word-spacing:2.438861pt;}
.ws7c{word-spacing:2.442208pt;}
.ws54{word-spacing:2.444158pt;}
.ws216{word-spacing:2.534502pt;}
.wsc8{word-spacing:2.550426pt;}
.wse7{word-spacing:2.582323pt;}
.ws13f{word-spacing:2.603559pt;}
.wsa8{word-spacing:2.634592pt;}
.wsf7{word-spacing:2.656693pt;}
.wsa5{word-spacing:2.693376pt;}
.wsb7{word-spacing:2.709827pt;}
.ws213{word-spacing:2.725786pt;}
.ws17d{word-spacing:2.740800pt;}
.ws106{word-spacing:2.760481pt;}
.ws38{word-spacing:2.762961pt;}
.wsd7{word-spacing:2.763422pt;}
.ws122{word-spacing:2.765028pt;}
.ws1d5{word-spacing:2.773606pt;}
.ws17e{word-spacing:2.784000pt;}
.ws239{word-spacing:2.821427pt;}
.ws1c6{word-spacing:2.869248pt;}
.ws88{word-spacing:2.917824pt;}
.ws31{word-spacing:2.922363pt;}
.wsa7{word-spacing:2.944544pt;}
.ws89{word-spacing:2.955232pt;}
.wscc{word-spacing:2.975497pt;}
.ws3c{word-spacing:3.028630pt;}
.ws20c{word-spacing:3.060531pt;}
.ws3b{word-spacing:3.081764pt;}
.ws50{word-spacing:3.203994pt;}
.ws81{word-spacing:3.238464pt;}
.wsbe{word-spacing:3.241166pt;}
.ws1b0{word-spacing:3.294300pt;}
.ws1a2{word-spacing:3.302592pt;}
.wsbb{word-spacing:3.347434pt;}
.ws164{word-spacing:3.374045pt;}
.ws1a1{word-spacing:3.377408pt;}
.ws17a{word-spacing:3.400567pt;}
.ws165{word-spacing:3.410808pt;}
.ws1d8{word-spacing:3.443098pt;}
.ws4f{word-spacing:3.490918pt;}
.ws24c{word-spacing:3.586560pt;}
.ws10c{word-spacing:3.606361pt;}
.wsd2{word-spacing:3.613103pt;}
.ws111{word-spacing:3.615456pt;}
.ws238{word-spacing:3.634381pt;}
.wsc9{word-spacing:3.666237pt;}
.ws110{word-spacing:3.697316pt;}
.ws2f{word-spacing:3.719371pt;}
.ws1e5{word-spacing:3.730022pt;}
.ws2d{word-spacing:3.772505pt;}
.ws2e{word-spacing:3.825638pt;}
.ws1ce{word-spacing:3.825664pt;}
.ws9f{word-spacing:3.895776pt;}
.ws1a7{word-spacing:3.922496pt;}
.ws26{word-spacing:3.931906pt;}
.wsa0{word-spacing:3.943872pt;}
.ws209{word-spacing:3.969126pt;}
.wsa1{word-spacing:3.981280pt;}
.ws41{word-spacing:3.985040pt;}
.ws20a{word-spacing:4.016947pt;}
.ws131{word-spacing:4.038174pt;}
.ws1e2{word-spacing:4.064768pt;}
.ws17b{word-spacing:4.091308pt;}
.ws5a{word-spacing:4.144442pt;}
.ws10d{word-spacing:4.170281pt;}
.ws7a{word-spacing:4.211072pt;}
.ws18b{word-spacing:4.221760pt;}
.ws18a{word-spacing:4.248480pt;}
.ws188{word-spacing:4.275200pt;}
.ws189{word-spacing:4.312608pt;}
.ws20f{word-spacing:4.351693pt;}
.ws210{word-spacing:4.376508pt;}
.ws1e4{word-spacing:4.399514pt;}
.ws218{word-spacing:4.447334pt;}
.wsc4{word-spacing:4.463245pt;}
.ws19b{word-spacing:4.526368pt;}
.wsa4{word-spacing:4.579808pt;}
.ws22a{word-spacing:4.586833pt;}
.ws1dc{word-spacing:4.590797pt;}
.ws15{word-spacing:4.675780pt;}
.ws207{word-spacing:4.686438pt;}
.ws1b3{word-spacing:4.728914pt;}
.ws245{word-spacing:4.734259pt;}
.ws1fb{word-spacing:4.778581pt;}
.ws21b{word-spacing:4.779204pt;}
.ws1ee{word-spacing:4.782012pt;}
.ws1b7{word-spacing:4.782080pt;}
.ws1bb{word-spacing:4.783198pt;}
.ws202{word-spacing:4.784964pt;}
.ws1bf{word-spacing:4.829901pt;}
.ws246{word-spacing:4.830871pt;}
.ws13c{word-spacing:4.835182pt;}
.ws1ac{word-spacing:4.857696pt;}
.ws1cd{word-spacing:4.877722pt;}
.ws13d{word-spacing:4.888316pt;}
.wsab{word-spacing:4.905792pt;}
.wsa2{word-spacing:4.911136pt;}
.wsd1{word-spacing:4.941450pt;}
.wsac{word-spacing:4.969920pt;}
.ws1f2{word-spacing:4.973363pt;}
.wsa3{word-spacing:4.975264pt;}
.wsd3{word-spacing:4.994583pt;}
.ws1be{word-spacing:5.021184pt;}
.ws215{word-spacing:5.069005pt;}
.ws33{word-spacing:5.100851pt;}
.ws1e3{word-spacing:5.116826pt;}
.ws1e6{word-spacing:5.164646pt;}
.ws128{word-spacing:5.193524pt;}
.ws5d{word-spacing:5.207119pt;}
.ws1eb{word-spacing:5.212467pt;}
.ws127{word-spacing:5.220810pt;}
.ws6d{word-spacing:5.231776pt;}
.wsca{word-spacing:5.260253pt;}
.ws1c2{word-spacing:5.260288pt;}
.ws183{word-spacing:5.265600pt;}
.ws8{word-spacing:5.285423pt;}
.wsdb{word-spacing:5.310265pt;}
.ws12{word-spacing:5.313387pt;}
.wsdd{word-spacing:5.315598pt;}
.ws6e{word-spacing:5.317280pt;}
.ws27{word-spacing:5.366521pt;}
.ws1f7{word-spacing:5.403750pt;}
.ws20e{word-spacing:5.451571pt;}
.wsc5{word-spacing:5.472788pt;}
.wsfb{word-spacing:5.547213pt;}
.ws22f{word-spacing:5.595034pt;}
.ws55{word-spacing:5.632190pt;}
.ws22e{word-spacing:5.642854pt;}
.ws56{word-spacing:5.685324pt;}
.ws135{word-spacing:5.738458pt;}
.ws140{word-spacing:5.843010pt;}
.wse1{word-spacing:5.843445pt;}
.ws58{word-spacing:5.844725pt;}
.wse2{word-spacing:5.846121pt;}
.wsf4{word-spacing:5.848343pt;}
.ws12e{word-spacing:5.897859pt;}
.ws1b5{word-spacing:5.929779pt;}
.ws1ed{word-spacing:5.977600pt;}
.wsd6{word-spacing:6.110395pt;}
.ws221{word-spacing:6.121062pt;}
.ws13e{word-spacing:6.163529pt;}
.ws21d{word-spacing:6.216704pt;}
.ws13a{word-spacing:6.269796pt;}
.ws13b{word-spacing:6.322930pt;}
.ws137{word-spacing:6.376064pt;}
.ws43{word-spacing:6.588599pt;}
.wsfd{word-spacing:6.881526pt;}
.ws1d3{word-spacing:6.886195pt;}
.ws8b{word-spacing:7.112864pt;}
.ws57{word-spacing:7.119938pt;}
.ws96{word-spacing:7.150272pt;}
.ws64{word-spacing:7.171200pt;}
.ws95{word-spacing:7.198368pt;}
.ws63{word-spacing:7.219200pt;}
.ws8a{word-spacing:7.230432pt;}
.ws11e{word-spacing:7.462930pt;}
.ws136{word-spacing:7.545009pt;}
.ws192{word-spacing:7.572448pt;}
.ws100{word-spacing:7.649305pt;}
.ws101{word-spacing:7.717522pt;}
.ws212{word-spacing:7.746970pt;}
.ws62{word-spacing:8.086400pt;}
.ws18c{word-spacing:8.101504pt;}
.ws18d{word-spacing:8.192352pt;}
.wsb9{word-spacing:8.235749pt;}
.ws12b{word-spacing:8.240512pt;}
.ws12c{word-spacing:8.331467pt;}
.ws19a{word-spacing:8.358016pt;}
.wse4{word-spacing:8.552779pt;}
.ws20{word-spacing:8.767088pt;}
.ws7d{word-spacing:9.009984pt;}
.ws7e{word-spacing:9.015328pt;}
.ws138{word-spacing:9.192159pt;}
.ws69{word-spacing:9.768000pt;}
.wscd{word-spacing:9.776631pt;}
.ws6a{word-spacing:9.854400pt;}
.ws6f{word-spacing:9.945184pt;}
.ws70{word-spacing:10.121536pt;}
.ws74{word-spacing:10.276512pt;}
.ws73{word-spacing:10.650592pt;}
.ws1c7{word-spacing:10.664038pt;}
.ws231{word-spacing:10.759680pt;}
.ws139{word-spacing:11.583183pt;}
.ws1d9{word-spacing:11.811738pt;}
.ws205{word-spacing:11.955200pt;}
.ws118{word-spacing:12.001496pt;}
.ws76{word-spacing:12.291200pt;}
.ws75{word-spacing:12.585120pt;}
.ws77{word-spacing:12.686656pt;}
.ws1a6{word-spacing:12.873696pt;}
.ws1a5{word-spacing:12.900416pt;}
.ws20b{word-spacing:12.911616pt;}
.ws1a0{word-spacing:12.953856pt;}
.ws19e{word-spacing:13.007296pt;}
.ws19f{word-spacing:13.103488pt;}
.wsfe{word-spacing:13.120241pt;}
.ws1c5{word-spacing:13.198541pt;}
.ws234{word-spacing:13.581107pt;}
.ws211{word-spacing:13.676749pt;}
.ws22b{word-spacing:14.107136pt;}
.ws204{word-spacing:14.967910pt;}
.ws1ec{word-spacing:15.398298pt;}
.ws8f{word-spacing:16.357984pt;}
.ws8e{word-spacing:16.406080pt;}
.ws1c4{word-spacing:16.545997pt;}
.ws12d{word-spacing:16.896570pt;}
.ws17c{word-spacing:17.959247pt;}
.ws1a8{word-spacing:18.629184pt;}
.ws1a9{word-spacing:18.655904pt;}
.ws78{word-spacing:21.563040pt;}
.ws79{word-spacing:21.627168pt;}
.ws28{word-spacing:21.784885pt;}
.ws12a{word-spacing:23.238972pt;}
.ws1a4{word-spacing:24.112128pt;}
.ws1a3{word-spacing:24.128160pt;}
.ws232{word-spacing:25.584128pt;}
.ws152{word-spacing:34.287914pt;}
.ws14b{word-spacing:47.763953pt;}
.ws155{word-spacing:59.513413pt;}
.ws154{word-spacing:61.991738pt;}
.ws153{word-spacing:68.313926pt;}
.wsde{word-spacing:68.335923pt;}
.wsec{word-spacing:68.714234pt;}
.ws14f{word-spacing:68.863578pt;}
.ws151{word-spacing:69.133129pt;}
.wsf1{word-spacing:70.273048pt;}
.wsf3{word-spacing:74.191150pt;}
.wsee{word-spacing:77.687950pt;}
.ws14e{word-spacing:81.853370pt;}
.ws150{word-spacing:86.656767pt;}
.ws15f{word-spacing:94.854278pt;}
.ws160{word-spacing:95.224258pt;}
.wsea{word-spacing:108.527201pt;}
.wsdc{word-spacing:111.518106pt;}
.wseb{word-spacing:142.732187pt;}
.wsf0{word-spacing:150.546069pt;}
.wsed{word-spacing:156.297140pt;}
.wsf2{word-spacing:156.701225pt;}
.ws158{word-spacing:160.876739pt;}
.ws156{word-spacing:185.036512pt;}
.wsdf{word-spacing:189.179085pt;}
.wse0{word-spacing:213.089485pt;}
.ws157{word-spacing:218.298427pt;}
.ws23{word-spacing:725.427875pt;}
.ws14a{word-spacing:908.496689pt;}
._2{margin-left:-8.607744pt;}
._1{margin-left:-7.077478pt;}
._e{margin-left:-6.057261pt;}
._4{margin-left:-4.409156pt;}
._3{margin-left:-2.668625pt;}
._6{margin-left:-1.175671pt;}
._7{width:0.969929pt;}
._1e{width:2.866199pt;}
._c{width:3.878772pt;}
._15{width:9.783358pt;}
._b{width:11.317514pt;}
._11{width:12.546319pt;}
._17{width:14.145540pt;}
._1c{width:15.681618pt;}
._5{width:16.737280pt;}
._1a{width:17.754115pt;}
._8{width:18.703121pt;}
._a{width:20.456539pt;}
._f{width:22.264641pt;}
._1d{width:23.697705pt;}
._9{width:25.298447pt;}
._16{width:26.254857pt;}
._5d{width:27.151406pt;}
._13{width:28.054682pt;}
._1b{width:28.979491pt;}
._12{width:29.921093pt;}
._3f{width:31.461975pt;}
._d{width:32.357570pt;}
._0{width:33.474560pt;}
._14{width:34.537013pt;}
._19{width:35.925220pt;}
._1f{width:37.086484pt;}
._5f{width:38.256640pt;}
._4c{width:39.737572pt;}
._60{width:43.947315pt;}
._5e{width:56.715469pt;}
._4d{width:67.076773pt;}
._2a{width:80.847709pt;}
._2b{width:84.765811pt;}
._36{width:86.661667pt;}
._35{width:91.759412pt;}
._38{width:95.298342pt;}
._31{width:98.373841pt;}
._2c{width:102.334073pt;}
._39{width:106.167914pt;}
._34{width:114.214768pt;}
._50{width:116.888159pt;}
._30{width:119.607424pt;}
._3c{width:123.483396pt;}
._2d{width:129.887175pt;}
._2f{width:132.499242pt;}
._3a{width:137.470597pt;}
._2e{width:139.914144pt;}
._33{width:141.093788pt;}
._32{width:148.424430pt;}
._26{width:149.477683pt;}
._47{width:152.764072pt;}
._37{width:157.815475pt;}
._3b{width:160.198915pt;}
._21{width:162.686362pt;}
._48{width:163.717856pt;}
._58{width:164.834535pt;}
._25{width:168.604759pt;}
._44{width:172.287439pt;}
._5b{width:174.828684pt;}
._55{width:176.101510pt;}
._27{width:179.937763pt;}
._43{width:181.503033pt;}
._28{width:183.350303pt;}
._5a{width:184.643904pt;}
._29{width:186.720713pt;}
._57{width:190.351341pt;}
._23{width:197.834650pt;}
._22{width:201.134285pt;}
._24{width:204.449936pt;}
._53{width:211.960447pt;}
._45{width:213.736213pt;}
._51{width:218.673178pt;}
._42{width:222.491389pt;}
._46{width:226.938580pt;}
._4b{width:228.973736pt;}
._56{width:234.618691pt;}
._59{width:237.683064pt;}
._20{width:239.295283pt;}
._4e{width:248.204360pt;}
._4f{width:256.383943pt;}
._54{width:261.201499pt;}
._4a{width:277.658725pt;}
._52{width:308.324979pt;}
._41{width:931.189476pt;}
._49{width:1215.244966pt;}
._3d{width:1233.488254pt;}
._5c{width:1428.019936pt;}
._18{width:1449.457408pt;}
._3e{width:1829.848533pt;}
._10{width:1851.101867pt;}
._40{width:3145.123200pt;}
.fs16{font-size:22.602560pt;}
.fs12{font-size:27.232000pt;}
.fs17{font-size:29.440000pt;}
.fs15{font-size:30.535946pt;}
.fsd{font-size:32.000000pt;}
.fsf{font-size:36.218560pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs14{font-size:39.260877pt;}
.fs3{font-size:40.381867pt;}
.fs13{font-size:40.848000pt;}
.fs6{font-size:41.988267pt;}
.fse{font-size:42.130125pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fs11{font-size:45.477440pt;}
.fs5{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fs10{font-size:54.464000pt;}
.fsa{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:114.229120pt;}
.y82{bottom:-792.260933pt;}
.yab{bottom:-740.340800pt;}
.yaa{bottom:-720.419328pt;}
.ya9{bottom:-702.419400pt;}
.ya8{bottom:-684.419472pt;}
.ya7{bottom:-666.419544pt;}
.ya6{bottom:-648.419616pt;}
.ya5{bottom:-630.419688pt;}
.ya4{bottom:-612.419760pt;}
.ya3{bottom:-594.499992pt;}
.y1d5{bottom:-583.098267pt;}
.ya2{bottom:-576.500064pt;}
.ya1{bottom:-558.500136pt;}
.y1f3{bottom:-555.977963pt;}
.ya0{bottom:-540.500208pt;}
.y1f2{bottom:-538.058195pt;}
.y9f{bottom:-522.500280pt;}
.y1f1{bottom:-520.057315pt;}
.y9e{bottom:-504.500352pt;}
.y1f0{bottom:-502.057387pt;}
.y9d{bottom:-486.500424pt;}
.y1ef{bottom:-484.057459pt;}
.y9c{bottom:-468.580656pt;}
.y1ee{bottom:-466.057531pt;}
.y9b{bottom:-450.580728pt;}
.y1ed{bottom:-448.057603pt;}
.y9a{bottom:-432.580728pt;}
.y1ec{bottom:-430.057675pt;}
.y99{bottom:-414.579461pt;}
.y1eb{bottom:-412.137907pt;}
.y98{bottom:-396.579533pt;}
.y1ea{bottom:-394.137979pt;}
.y97{bottom:-378.579605pt;}
.y1e9{bottom:-376.138051pt;}
.y96{bottom:-360.579677pt;}
.y1e8{bottom:-358.138123pt;}
.y95{bottom:-342.659909pt;}
.y1e7{bottom:-340.138195pt;}
.y94{bottom:-324.659981pt;}
.y1e6{bottom:-322.137901pt;}
.y93{bottom:-306.660053pt;}
.y1e5{bottom:-304.217773pt;}
.y92{bottom:-288.660125pt;}
.y1e4{bottom:-286.217845pt;}
.y91{bottom:-270.660197pt;}
.y1e3{bottom:-268.217917pt;}
.y135{bottom:-259.521754pt;}
.y90{bottom:-252.660269pt;}
.y1e2{bottom:-250.217989pt;}
.y8f{bottom:-234.660341pt;}
.y1e1{bottom:-232.218061pt;}
.y155{bottom:-226.366141pt;}
.y1b8{bottom:-221.317786pt;}
.y8e{bottom:-216.740573pt;}
.y1e0{bottom:-214.217859pt;}
.y154{bottom:-211.048202pt;}
.y8d{bottom:-198.740645pt;}
.y1df{bottom:-196.217931pt;}
.y153{bottom:-195.730263pt;}
.y8c{bottom:-180.740717pt;}
.y152{bottom:-180.412325pt;}
.y1de{bottom:-178.298163pt;}
.y151{bottom:-165.094386pt;}
.y8b{bottom:-162.740789pt;}
.y1dd{bottom:-152.298267pt;}
.y150{bottom:-149.776447pt;}
.y8a{bottom:-144.740861pt;}
.y14f{bottom:-134.458508pt;}
.y89{bottom:-126.740933pt;}
.y14e{bottom:-119.208786pt;}
.y1dc{bottom:-118.699467pt;}
.y1db{bottom:-101.339067pt;}
.y14d{bottom:-97.082874pt;}
.y88{bottom:-93.222133pt;}
.y1da{bottom:-83.978667pt;}
.y87{bottom:-75.861733pt;}
.y1c4{bottom:-68.819008pt;}
.y14c{bottom:-68.489955pt;}
.y1d9{bottom:-66.698667pt;}
.y86{bottom:-58.501333pt;}
.y1c3{bottom:-54.045308pt;}
.y14b{bottom:-53.716255pt;}
.y1d8{bottom:-49.338667pt;}
.y85{bottom:-41.221333pt;}
.y1c2{bottom:-39.271608pt;}
.y14a{bottom:-39.010975pt;}
.y1d7{bottom:-31.978267pt;}
.y1c1{bottom:-24.566328pt;}
.y149{bottom:-24.237274pt;}
.y84{bottom:-23.860933pt;}
.y148{bottom:-5.447081pt;}
.y83{bottom:-0.260933pt;}
.y1d6{bottom:-0.058267pt;}
.y0{bottom:0.000000pt;}
.y1c0{bottom:1.780746pt;}
.yd{bottom:3.044747pt;}
.yc{bottom:12.578910pt;}
.y2{bottom:14.739924pt;}
.y31{bottom:56.693333pt;}
.y30{bottom:96.544000pt;}
.y271{bottom:96.850667pt;}
.y63{bottom:106.545333pt;}
.y7f{bottom:109.441333pt;}
.y270{bottom:114.066667pt;}
.y2f{bottom:114.556000pt;}
.y1a4{bottom:120.945333pt;}
.y159{bottom:120.974667pt;}
.yd1{bottom:122.738667pt;}
.y62{bottom:124.558667pt;}
.y7e{bottom:127.454667pt;}
.yfa{bottom:129.633333pt;}
.y26f{bottom:131.281333pt;}
.y185{bottom:131.705333pt;}
.y2e{bottom:132.568000pt;}
.y202{bottom:137.390667pt;}
.y158{bottom:138.070667pt;}
.y1a3{bottom:138.958667pt;}
.y23d{bottom:140.421333pt;}
.yd0{bottom:140.750667pt;}
.y61{bottom:142.570667pt;}
.y7d{bottom:145.466667pt;}
.yf9{bottom:147.645333pt;}
.y114{bottom:148.356000pt;}
.y26e{bottom:148.497333pt;}
.y184{bottom:149.717333pt;}
.y2d{bottom:150.581333pt;}
.y157{bottom:155.166667pt;}
.y1a2{bottom:156.970667pt;}
.y23c{bottom:157.636000pt;}
.ycf{bottom:158.764000pt;}
.y60{bottom:160.584000pt;}
.y7c{bottom:163.478667pt;}
.yf8{bottom:165.657333pt;}
.y26d{bottom:165.713333pt;}
.y113{bottom:166.368000pt;}
.y183{bottom:167.730667pt;}
.y2c{bottom:168.593333pt;}
.y156{bottom:172.261333pt;}
.y23b{bottom:174.852000pt;}
.y1a0{bottom:174.982667pt;}
.yce{bottom:176.776000pt;}
.y5f{bottom:178.596000pt;}
.y1a1{bottom:179.805333pt;}
.y7b{bottom:181.492000pt;}
.y26c{bottom:182.928000pt;}
.yf7{bottom:183.670667pt;}
.y112{bottom:184.381333pt;}
.y182{bottom:185.742667pt;}
.y2b{bottom:186.606667pt;}
.y81{bottom:190.939067pt;}
.y23a{bottom:192.068000pt;}
.y133{bottom:192.198667pt;}
.y19f{bottom:192.996000pt;}
.ycd{bottom:194.788000pt;}
.y5e{bottom:196.608000pt;}
.y20b{bottom:198.109333pt;}
.y7a{bottom:199.504000pt;}
.y26b{bottom:200.144000pt;}
.y111{bottom:202.393333pt;}
.y181{bottom:203.754667pt;}
.y2a{bottom:204.618667pt;}
.y239{bottom:209.282667pt;}
.yf6{bottom:209.653333pt;}
.y19e{bottom:211.008000pt;}
.y20a{bottom:211.618667pt;}
.ycc{bottom:212.801333pt;}
.y5d{bottom:214.621333pt;}
.y26a{bottom:217.358667pt;}
.y79{bottom:217.517333pt;}
.y110{bottom:220.405333pt;}
.y180{bottom:221.768000pt;}
.y29{bottom:222.630667pt;}
.y209{bottom:225.128000pt;}
.y238{bottom:226.498667pt;}
.y19d{bottom:229.021333pt;}
.ycb{bottom:230.813333pt;}
.y5c{bottom:232.633333pt;}
.y269{bottom:234.574667pt;}
.y78{bottom:235.529333pt;}
.y10f{bottom:238.418667pt;}
.y17f{bottom:239.780000pt;}
.yf5{bottom:240.604000pt;}
.y28{bottom:240.644000pt;}
.y237{bottom:243.713333pt;}
.y208{bottom:246.608000pt;}
.y19c{bottom:247.033333pt;}
.yca{bottom:248.826667pt;}
.y5b{bottom:250.646667pt;}
.y268{bottom:251.790667pt;}
.y77{bottom:253.541333pt;}
.y10e{bottom:256.430667pt;}
.y17e{bottom:257.793333pt;}
.y27{bottom:258.656000pt;}
.y207{bottom:260.117333pt;}
.y236{bottom:260.929333pt;}
.yc9{bottom:266.838667pt;}
.y5a{bottom:268.658667pt;}
.y267{bottom:269.005333pt;}
.y76{bottom:271.554667pt;}
.y10d{bottom:271.957333pt;}
.y19b{bottom:273.016000pt;}
.y10c{bottom:274.442667pt;}
.y274{bottom:275.396000pt;}
.y17d{bottom:275.805333pt;}
.y26{bottom:276.669333pt;}
.y235{bottom:278.145333pt;}
.yc8{bottom:284.850667pt;}
.y266{bottom:286.221333pt;}
.y59{bottom:286.670667pt;}
.y147{bottom:288.727371pt;}
.y75{bottom:289.566667pt;}
.y10b{bottom:289.969333pt;}
.y10a{bottom:292.456000pt;}
.y273{bottom:292.612000pt;}
.y17c{bottom:293.817333pt;}
.y25{bottom:294.681333pt;}
.y234{bottom:295.360000pt;}
.yc7{bottom:302.864000pt;}
.y265{bottom:303.437333pt;}
.y1d2{bottom:303.718379pt;}
.y19a{bottom:303.966667pt;}
.y146{bottom:304.045310pt;}
.y58{bottom:304.684000pt;}
.y74{bottom:307.580000pt;}
.y1d1{bottom:309.716057pt;}
.y272{bottom:309.828000pt;}
.y109{bottom:310.468000pt;}
.y17b{bottom:311.830667pt;}
.y206{bottom:312.401333pt;}
.y233{bottom:312.576000pt;}
.y24{bottom:312.693333pt;}
.y145{bottom:319.295032pt;}
.y264{bottom:320.652000pt;}
.yc6{bottom:320.876000pt;}
.y199{bottom:321.978667pt;}
.y57{bottom:322.696000pt;}
.y73{bottom:325.592000pt;}
.y232{bottom:329.790667pt;}
.y17a{bottom:329.842667pt;}
.yf4{bottom:330.413333pt;}
.y23{bottom:330.706667pt;}
.y1d0{bottom:333.227308pt;}
.y144{bottom:334.612971pt;}
.y201{bottom:335.528000pt;}
.y108{bottom:336.450667pt;}
.y263{bottom:337.868000pt;}
.yc5{bottom:338.889333pt;}
.y198{bottom:339.992000pt;}
.y56{bottom:340.709333pt;}
.y72{bottom:343.604000pt;}
.y231{bottom:347.006667pt;}
.yf3{bottom:348.426667pt;}
.y22{bottom:348.718667pt;}
.y143{bottom:349.930910pt;}
.y1cf{bottom:350.480349pt;}
.y200{bottom:353.541333pt;}
.y262{bottom:355.082667pt;}
.y179{bottom:355.825333pt;}
.y1ce{bottom:356.478028pt;}
.yc4{bottom:356.901333pt;}
.y197{bottom:358.004000pt;}
.y55{bottom:358.721333pt;}
.y71{bottom:361.617333pt;}
.y230{bottom:364.222667pt;}
.y142{bottom:365.248848pt;}
.y21{bottom:366.732000pt;}
.y261{bottom:372.298667pt;}
.yc2{bottom:374.913333pt;}
.y107{bottom:375.452000pt;}
.y196{bottom:376.017333pt;}
.y54{bottom:376.733333pt;}
.y70{bottom:379.629333pt;}
.y1cd{bottom:379.728748pt;}
.yc3{bottom:379.736000pt;}
.y141{bottom:380.566787pt;}
.y22f{bottom:381.437333pt;}
.yf2{bottom:384.452000pt;}
.y20{bottom:384.744000pt;}
.y1cc{bottom:385.726427pt;}
.y178{bottom:386.776000pt;}
.y260{bottom:389.514667pt;}
.y106{bottom:390.381333pt;}
.yc0{bottom:392.926667pt;}
.y1b5{bottom:393.536109pt;}
.y195{bottom:394.029333pt;}
.y53{bottom:394.746667pt;}
.y140{bottom:395.884726pt;}
.y6f{bottom:397.642667pt;}
.yc1{bottom:397.748000pt;}
.y22e{bottom:398.653333pt;}
.y1d4{bottom:400.101733pt;}
.y1f{bottom:402.756000pt;}
.y177{bottom:404.789333pt;}
.y105{bottom:405.310667pt;}
.y25f{bottom:406.729333pt;}
.ybf{bottom:410.938667pt;}
.y1b4{bottom:411.049681pt;}
.y13f{bottom:411.202664pt;}
.y52{bottom:412.758667pt;}
.y6e{bottom:415.654667pt;}
.y22d{bottom:415.868000pt;}
.y1cb{bottom:417.145333pt;}
.y194{bottom:420.012000pt;}
.y104{bottom:420.240000pt;}
.yf1{bottom:420.476000pt;}
.y1e{bottom:420.769333pt;}
.y176{bottom:422.801333pt;}
.y25e{bottom:423.945333pt;}
.y13e{bottom:426.452387pt;}
.y1b3{bottom:428.563253pt;}
.ybe{bottom:428.950667pt;}
.y51{bottom:430.772000pt;}
.y22c{bottom:433.084000pt;}
.y6d{bottom:433.666667pt;}
.y1ca{bottom:434.241333pt;}
.yf0{bottom:438.489333pt;}
.y1d{bottom:438.781333pt;}
.y175{bottom:440.813333pt;}
.y25d{bottom:441.160000pt;}
.y103{bottom:441.572000pt;}
.y13d{bottom:441.770891pt;}
.y1ff{bottom:443.604000pt;}
.y1b2{bottom:446.075731pt;}
.ybd{bottom:446.964000pt;}
.y50{bottom:448.784000pt;}
.y22b{bottom:450.300000pt;}
.y193{bottom:450.962667pt;}
.y1c9{bottom:451.336000pt;}
.y6c{bottom:451.680000pt;}
.y1fe{bottom:456.794667pt;}
.y13c{bottom:457.088830pt;}
.y25c{bottom:458.376000pt;}
.y174{bottom:458.826667pt;}
.y102{bottom:462.586667pt;}
.y1b1{bottom:463.589303pt;}
.y1c{bottom:464.764000pt;}
.ybc{bottom:464.976000pt;}
.y4f{bottom:466.796000pt;}
.y22a{bottom:467.514667pt;}
.y192{bottom:468.974667pt;}
.y6b{bottom:469.692000pt;}
.y13b{bottom:472.406768pt;}
.yee{bottom:474.766667pt;}
.y1fd{bottom:474.806667pt;}
.y25b{bottom:475.592000pt;}
.y173{bottom:476.838667pt;}
.y1c8{bottom:477.730667pt;}
.y1b0{bottom:481.101780pt;}
.ybb{bottom:482.989333pt;}
.y229{bottom:484.730667pt;}
.y4e{bottom:484.809333pt;}
.y132{bottom:485.068000pt;}
.y190{bottom:486.988000pt;}
.y6a{bottom:487.704000pt;}
.y13a{bottom:487.724707pt;}
.y101{bottom:491.512000pt;}
.y191{bottom:491.809333pt;}
.y1bf{bottom:492.297032pt;}
.y25a{bottom:492.806667pt;}
.y1c7{bottom:494.826667pt;}
.y172{bottom:494.852000pt;}
.y1af{bottom:498.615352pt;}
.y1fc{bottom:500.789333pt;}
.yba{bottom:501.001333pt;}
.y228{bottom:501.945333pt;}
.y4d{bottom:502.821333pt;}
.y139{bottom:503.042646pt;}
.y131{bottom:503.080000pt;}
.y18f{bottom:505.000000pt;}
.y1be{bottom:505.096072pt;}
.y69{bottom:505.717333pt;}
.y100{bottom:508.608000pt;}
.y259{bottom:510.022667pt;}
.y1c6{bottom:511.922667pt;}
.y1ae{bottom:516.128924pt;}
.y1bd{bottom:517.895112pt;}
.y138{bottom:518.360584pt;}
.yb9{bottom:519.013333pt;}
.y227{bottom:519.161333pt;}
.y4c{bottom:520.834667pt;}
.y130{bottom:521.093333pt;}
.y18e{bottom:523.013333pt;}
.y68{bottom:523.729333pt;}
.yff{bottom:525.704000pt;}
.y1fb{bottom:527.134667pt;}
.y258{bottom:527.237333pt;}
.yed{bottom:528.552000pt;}
.y1c5{bottom:529.018667pt;}
.y1bc{bottom:530.762232pt;}
.y1b{bottom:532.689333pt;}
.y137{bottom:533.610307pt;}
.y1ad{bottom:533.641401pt;}
.y226{bottom:536.377333pt;}
.yb8{bottom:537.026667pt;}
.y4b{bottom:538.846667pt;}
.y12f{bottom:539.105333pt;}
.y18d{bottom:541.025333pt;}
.y67{bottom:541.742667pt;}
.yfe{bottom:542.800000pt;}
.y1fa{bottom:544.229333pt;}
.y257{bottom:544.453333pt;}
.y136{bottom:548.928246pt;}
.y1b6{bottom:548.956000pt;}
.y1ac{bottom:551.154973pt;}
.y1bb{bottom:551.253972pt;}
.y171{bottom:551.785333pt;}
.y225{bottom:553.592000pt;}
.yb7{bottom:555.038667pt;}
.y4a{bottom:556.858667pt;}
.y12e{bottom:557.118667pt;}
.y18c{bottom:559.037333pt;}
.y66{bottom:559.754667pt;}
.yfd{bottom:559.896000pt;}
.y1f9{bottom:561.325333pt;}
.y256{bottom:561.669333pt;}
.y1ba{bottom:566.027672pt;}
.y1a{bottom:566.642667pt;}
.y1ab{bottom:568.667451pt;}
.y170{bottom:569.797333pt;}
.y224{bottom:570.808000pt;}
.yb6{bottom:573.052000pt;}
.ye6{bottom:574.872000pt;}
.y12d{bottom:575.130667pt;}
.y134{bottom:577.181446pt;}
.y65{bottom:577.766667pt;}
.y1f8{bottom:578.421333pt;}
.y255{bottom:578.884000pt;}
.y1b9{bottom:580.732952pt;}
.y49{bottom:582.841333pt;}
.y19{bottom:584.654667pt;}
.y18b{bottom:585.020000pt;}
.y1aa{bottom:586.181023pt;}
.y16f{bottom:587.809333pt;}
.y223{bottom:588.024000pt;}
.yb5{bottom:591.064000pt;}
.ye5{bottom:592.884000pt;}
.y12c{bottom:593.142667pt;}
.y1f6{bottom:595.517333pt;}
.y64{bottom:595.780000pt;}
.y254{bottom:596.100000pt;}
.y1f7{bottom:599.857333pt;}
.yec{bottom:600.601333pt;}
.y18{bottom:602.666667pt;}
.y1a9{bottom:603.694595pt;}
.y222{bottom:605.238667pt;}
.y16e{bottom:605.822667pt;}
.yb4{bottom:609.076000pt;}
.ye4{bottom:610.896000pt;}
.y12b{bottom:611.156000pt;}
.y1f4{bottom:612.613333pt;}
.y253{bottom:613.314667pt;}
.y48{bottom:613.792000pt;}
.y1b7{bottom:615.589912pt;}
.y18a{bottom:615.970667pt;}
.y1f5{bottom:616.953333pt;}
.y17{bottom:620.680000pt;}
.y1a8{bottom:621.283699pt;}
.y221{bottom:622.454667pt;}
.y16d{bottom:623.834667pt;}
.yb3{bottom:627.089333pt;}
.ye3{bottom:628.909333pt;}
.y12a{bottom:629.168000pt;}
.y252{bottom:630.530667pt;}
.y47{bottom:631.805333pt;}
.y1d3{bottom:632.550667pt;}
.yef{bottom:636.626667pt;}
.y16{bottom:638.692000pt;}
.y1a7{bottom:639.133333pt;}
.y220{bottom:639.669333pt;}
.y16c{bottom:641.846667pt;}
.yb2{bottom:645.101333pt;}
.ye2{bottom:646.921333pt;}
.y129{bottom:647.181333pt;}
.y251{bottom:647.746667pt;}
.y46{bottom:649.817333pt;}
.y205{bottom:654.640000pt;}
.y15{bottom:656.705333pt;}
.y21f{bottom:656.885333pt;}
.y16b{bottom:659.860000pt;}
.yb1{bottom:663.114667pt;}
.y1a6{bottom:664.553333pt;}
.ye1{bottom:664.934667pt;}
.y250{bottom:664.961333pt;}
.y128{bottom:665.193333pt;}
.y45{bottom:667.829333pt;}
.y204{bottom:672.652000pt;}
.y21e{bottom:674.101333pt;}
.y14{bottom:674.717333pt;}
.y16a{bottom:677.872000pt;}
.y24f{bottom:682.177333pt;}
.ye0{bottom:682.946667pt;}
.y127{bottom:683.205333pt;}
.y44{bottom:685.842667pt;}
.yeb{bottom:690.664000pt;}
.y21d{bottom:691.316000pt;}
.y13{bottom:692.729333pt;}
.yb0{bottom:694.225333pt;}
.y169{bottom:695.885333pt;}
.y24e{bottom:699.392000pt;}
.ydf{bottom:700.958667pt;}
.y126{bottom:701.218667pt;}
.y43{bottom:703.854667pt;}
.y21c{bottom:708.532000pt;}
.yea{bottom:708.677333pt;}
.y1a5{bottom:709.729333pt;}
.y11{bottom:710.742667pt;}
.yaf{bottom:711.321333pt;}
.y168{bottom:713.897333pt;}
.y12{bottom:715.564000pt;}
.y24d{bottom:716.608000pt;}
.yde{bottom:718.972000pt;}
.y125{bottom:719.230667pt;}
.y42{bottom:721.868000pt;}
.y189{bottom:723.793333pt;}
.y21b{bottom:725.746667pt;}
.yae{bottom:728.417333pt;}
.y10{bottom:728.754667pt;}
.y167{bottom:731.909333pt;}
.y24c{bottom:733.824000pt;}
.ydd{bottom:736.984000pt;}
.y124{bottom:737.244000pt;}
.y41{bottom:739.880000pt;}
.y188{bottom:741.806667pt;}
.y21a{bottom:742.962667pt;}
.yfc{bottom:744.954667pt;}
.yad{bottom:745.513333pt;}
.yf{bottom:746.768000pt;}
.y166{bottom:749.922667pt;}
.y24b{bottom:751.038667pt;}
.ydc{bottom:754.997333pt;}
.y123{bottom:755.256000pt;}
.y40{bottom:757.892000pt;}
.y187{bottom:759.818667pt;}
.y219{bottom:760.178667pt;}
.yac{bottom:762.609333pt;}
.ye{bottom:764.780000pt;}
.y165{bottom:767.934667pt;}
.y24a{bottom:768.254667pt;}
.ydb{bottom:773.009333pt;}
.y122{bottom:773.268000pt;}
.y3f{bottom:775.905333pt;}
.y218{bottom:777.393333pt;}
.y186{bottom:777.832000pt;}
.y80{bottom:782.546667pt;}
.y249{bottom:785.469333pt;}
.y164{bottom:785.948000pt;}
.yda{bottom:791.021333pt;}
.y121{bottom:791.281333pt;}
.y3e{bottom:793.917333pt;}
.y217{bottom:794.609333pt;}
.yb{bottom:795.897301pt;}
.ya{bottom:796.578667pt;}
.ye9{bottom:798.740000pt;}
.y248{bottom:802.685333pt;}
.y163{bottom:803.960000pt;}
.yd9{bottom:809.034667pt;}
.y216{bottom:811.824000pt;}
.y3d{bottom:811.930667pt;}
.y247{bottom:819.901333pt;}
.y162{bottom:821.972000pt;}
.yd8{bottom:827.046667pt;}
.y215{bottom:829.040000pt;}
.y3c{bottom:829.942667pt;}
.y9{bottom:831.250667pt;}
.y11f{bottom:832.046703pt;}
.y246{bottom:837.116000pt;}
.y120{bottom:838.482701pt;}
.y161{bottom:839.985333pt;}
.y11e{bottom:844.919875pt;}
.yd7{bottom:845.060000pt;}
.y214{bottom:846.256000pt;}
.y3b{bottom:847.954667pt;}
.y8{bottom:851.729333pt;}
.ye8{bottom:852.777333pt;}
.y245{bottom:854.332000pt;}
.y11d{bottom:857.793047pt;}
.y160{bottom:857.997333pt;}
.yd6{bottom:863.072000pt;}
.y213{bottom:863.470667pt;}
.y3a{bottom:865.968000pt;}
.y7{bottom:867.869333pt;}
.y11c{bottom:870.666219pt;}
.y244{bottom:871.546667pt;}
.y15f{bottom:876.010667pt;}
.y212{bottom:880.686667pt;}
.yd5{bottom:881.084000pt;}
.y11b{bottom:883.818961pt;}
.y39{bottom:883.980000pt;}
.y6{bottom:887.260000pt;}
.y243{bottom:888.762667pt;}
.y15e{bottom:894.022667pt;}
.y11a{bottom:896.971704pt;}
.y211{bottom:897.901333pt;}
.yd4{bottom:899.097333pt;}
.y38{bottom:901.993333pt;}
.y242{bottom:905.978667pt;}
.y15d{bottom:912.034667pt;}
.y210{bottom:915.117333pt;}
.y119{bottom:915.764021pt;}
.yd3{bottom:917.109333pt;}
.y37{bottom:920.005333pt;}
.y241{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y15c{bottom:930.048000pt;}
.y20f{bottom:932.333333pt;}
.y36{bottom:938.017333pt;}
.y240{bottom:940.409333pt;}
.y118{bottom:942.084000pt;}
.ye7{bottom:942.840000pt;}
.yd2{bottom:943.092000pt;}
.y15b{bottom:948.060000pt;}
.y20e{bottom:949.548000pt;}
.y4{bottom:952.217333pt;}
.y35{bottom:956.030667pt;}
.y23f{bottom:957.624000pt;}
.y117{bottom:959.180000pt;}
.y203{bottom:960.852000pt;}
.y15a{bottom:966.073333pt;}
.y20d{bottom:966.764000pt;}
.y34{bottom:974.042667pt;}
.y23e{bottom:974.840000pt;}
.y116{bottom:976.276000pt;}
.y3{bottom:977.906667pt;}
.yfb{bottom:978.865333pt;}
.y20c{bottom:991.949333pt;}
.y33{bottom:992.056000pt;}
.y115{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y32{bottom:1038.548000pt;}
.hf{height:5.897859pt;}
.h28{height:15.940160pt;}
.h9{height:22.673858pt;}
.h7{height:27.076941pt;}
.h2f{height:28.101217pt;}
.h2b{height:28.385614pt;}
.h2d{height:28.581918pt;}
.hd{height:29.397999pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.h1b{height:30.460080pt;}
.h1d{height:30.670731pt;}
.h1c{height:30.881381pt;}
.h10{height:31.157778pt;}
.h27{height:31.667785pt;}
.h26{height:32.731322pt;}
.h21{height:33.495094pt;}
.h38{height:33.713664pt;}
.h18{height:34.574438pt;}
.h8{height:34.813542pt;}
.h2c{height:34.981419pt;}
.h30{height:35.052646pt;}
.h22{height:36.300469pt;}
.h25{height:37.776422pt;}
.he{height:38.415786pt;}
.hc{height:38.681455pt;}
.h4{height:38.947124pt;}
.h36{height:39.192812pt;}
.h13{height:39.359687pt;}
.h23{height:42.057750pt;}
.h14{height:42.656250pt;}
.h37{height:43.660390pt;}
.h1a{height:44.245639pt;}
.h16{height:44.390625pt;}
.h35{height:44.392225pt;}
.h2{height:45.271688pt;}
.h6{height:48.486756pt;}
.h11{height:48.511220pt;}
.h1f{height:48.683332pt;}
.h19{height:48.688666pt;}
.h17{height:49.421563pt;}
.h24{height:50.368562pt;}
.h32{height:52.376329pt;}
.h31{height:52.380707pt;}
.h33{height:52.577012pt;}
.h1e{height:56.625376pt;}
.h15{height:59.187500pt;}
.h5{height:69.148877pt;}
.h3{height:77.447343pt;}
.h12{height:170.476000pt;}
.h20{height:271.849113pt;}
.h34{height:372.789333pt;}
.h2e{height:456.385627pt;}
.h29{height:793.701333pt;}
.h2a{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:171.157218pt;}
.w4{width:327.838667pt;}
.w5{width:363.803635pt;}
.w8{width:456.386421pt;}
.w9{width:537.227600pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w6{width:1122.520000pt;}
.w7{width:1122.666667pt;}
.x17{left:-130.816000pt;}
.x19{left:-102.496000pt;}
.x4b{left:-77.400152pt;}
.x4c{left:-53.299832pt;}
.x7a{left:-29.657733pt;}
.x6d{left:-22.058260pt;}
.x70{left:-14.501380pt;}
.x6f{left:-2.383140pt;}
.x7c{left:-1.337733pt;}
.x0{left:0.000000pt;}
.x6e{left:2.042060pt;}
.x71{left:8.441580pt;}
.x6{left:26.021437pt;}
.x2{left:50.555961pt;}
.x1{left:102.046667pt;}
.x3{left:109.606667pt;}
.x1d{left:117.954667pt;}
.x96{left:127.048000pt;}
.x79{left:128.237733pt;}
.x4{left:129.929333pt;}
.x69{left:137.984156pt;}
.x25{left:141.120000pt;}
.x6b{left:143.260449pt;}
.x1e{left:144.572000pt;}
.x74{left:151.895945pt;}
.x6a{left:155.533852pt;}
.x4a{left:158.737977pt;}
.x26{left:164.913333pt;}
.x30{left:167.578667pt;}
.x6c{left:168.657872pt;}
.x46{left:169.980712pt;}
.x47{left:171.708647pt;}
.x48{left:173.435407pt;}
.x37{left:177.877333pt;}
.x9{left:179.149333pt;}
.x4d{left:181.746667pt;}
.x1a{left:185.256000pt;}
.x57{left:190.209333pt;}
.x31{left:191.372000pt;}
.xc{left:194.922667pt;}
.x90{left:196.098667pt;}
.x91{left:202.077333pt;}
.x9b{left:208.248000pt;}
.xd{left:214.852000pt;}
.x8a{left:216.797333pt;}
.x8b{left:223.065333pt;}
.x77{left:225.808933pt;}
.x8c{left:230.273333pt;}
.x16{left:232.932000pt;}
.x58{left:235.070667pt;}
.x52{left:236.182667pt;}
.x9e{left:237.561333pt;}
.x3b{left:240.938667pt;}
.x78{left:243.819484pt;}
.x3c{left:246.736000pt;}
.x3d{left:251.213333pt;}
.x59{left:258.864000pt;}
.x3a{left:260.084000pt;}
.x9c{left:261.422667pt;}
.xe{left:262.786667pt;}
.x1f{left:264.830667pt;}
.x75{left:267.881352pt;}
.xf{left:269.428000pt;}
.x7{left:271.169333pt;}
.x2a{left:276.798667pt;}
.x50{left:282.373333pt;}
.x20{left:288.622667pt;}
.x21{left:289.872000pt;}
.x9d{left:292.401333pt;}
.x82{left:293.745333pt;}
.x8{left:294.962667pt;}
.x97{left:297.581333pt;}
.x2b{left:300.590667pt;}
.x98{left:303.308000pt;}
.x68{left:305.541333pt;}
.x10{left:306.824000pt;}
.x53{left:309.697333pt;}
.x11{left:313.186667pt;}
.x22{left:316.974667pt;}
.x7e{left:319.858667pt;}
.x18{left:326.944000pt;}
.x39{left:328.206667pt;}
.x5a{left:330.990667pt;}
.x38{left:333.605333pt;}
.x44{left:335.954667pt;}
.x92{left:339.448000pt;}
.x67{left:342.566667pt;}
.x93{left:345.173333pt;}
.x3e{left:347.492000pt;}
.x8d{left:348.990667pt;}
.x99{left:350.472000pt;}
.x9a{left:356.450667pt;}
.x32{left:358.664000pt;}
.x86{left:360.382667pt;}
.x94{left:364.060000pt;}
.x95{left:373.361333pt;}
.x3f{left:382.009333pt;}
.x33{left:385.796000pt;}
.x76{left:387.597383pt;}
.x1b{left:389.594667pt;}
.x73{left:392.534329pt;}
.x40{left:395.965333pt;}
.x34{left:397.733333pt;}
.x45{left:399.809333pt;}
.x2c{left:401.346667pt;}
.x5b{left:406.264000pt;}
.x5d{left:410.232000pt;}
.x54{left:411.264000pt;}
.x1c{left:413.388000pt;}
.x81{left:415.382667pt;}
.x2d{left:425.138667pt;}
.x41{left:426.181333pt;}
.x5c{left:430.057333pt;}
.x55{left:435.056000pt;}
.x42{left:441.606667pt;}
.x72{left:455.727180pt;}
.x43{left:456.828000pt;}
.x5e{left:457.894667pt;}
.x5f{left:462.296000pt;}
.x63{left:477.442667pt;}
.x64{left:501.234667pt;}
.x60{left:510.316000pt;}
.x28{left:516.625333pt;}
.x65{left:521.477333pt;}
.x35{left:528.188000pt;}
.x8e{left:530.848000pt;}
.x8f{left:534.278667pt;}
.x7b{left:537.142267pt;}
.x29{left:543.744000pt;}
.x66{left:548.594667pt;}
.xa{left:552.785333pt;}
.x36{left:555.288000pt;}
.x85{left:566.594667pt;}
.x4e{left:570.736000pt;}
.xb{left:572.709333pt;}
.x12{left:574.446667pt;}
.x13{left:578.260000pt;}
.x2e{left:581.176000pt;}
.x4f{left:583.250667pt;}
.x56{left:586.566667pt;}
.x7f{left:591.732000pt;}
.x51{left:594.457333pt;}
.x2f{left:604.968000pt;}
.x49{left:606.068664pt;}
.x61{left:610.690667pt;}
.x14{left:615.096000pt;}
.x80{left:616.689333pt;}
.x15{left:622.349333pt;}
.x5{left:623.413317pt;}
.x88{left:635.637333pt;}
.x62{left:637.801333pt;}
.x7d{left:641.340000pt;}
.x83{left:642.402667pt;}
.x87{left:646.328000pt;}
.x89{left:663.133333pt;}
.x23{left:664.677333pt;}
.x27{left:667.861333pt;}
.x84{left:669.524000pt;}
.x24{left:688.470667pt;}
}




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