
    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_2838535b50ed0bbc4a7b6ffe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_65d47cb1c7aa25fac1f74fcb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_80c01b81c1e02b5d97a79375.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.748000;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_2328dcb0acdeca2431d417e3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.748000;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_2328dcb0acdeca2431d417e3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.748000;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_cc2d2f59d59fb8b7b00e037c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.745000;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_b947bccf31ee080151ff6ea0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.927000;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_ea0d3958a1f8cbf1dfe75d70.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.136000;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_77f1522ed865c5129323b83e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.730000;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_80c01b81c1e02b5d97a79375.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.748000;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_b51bdc23c5dafca5825d8c78.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.136000;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_82b76da080108ada3a96a794.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.745000;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_2328dcb0acdeca2431d417e3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.748000;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_4e87d1334634b2f1085699af.woff2')format("woff");}.fff{font-family:fff;line-height:0.941000;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_5e45ced71e89ade16605c1f9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.942000;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_80c01b81c1e02b5d97a79375.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.748000;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_b51bdc23c5dafca5825d8c78.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.136000;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_82b76da080108ada3a96a794.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.745000;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_5e45ced71e89ade16605c1f9.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.942000;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_5e45ced71e89ade16605c1f9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.942000;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_2328dcb0acdeca2431d417e3.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.748000;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_5e45ced71e89ade16605c1f9.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.942000;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_80c01b81c1e02b5d97a79375.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.748000;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_b51bdc23c5dafca5825d8c78.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.136000;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_82b76da080108ada3a96a794.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.745000;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_2328dcb0acdeca2431d417e3.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.748000;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_80c01b81c1e02b5d97a79375.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.748000;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_2328dcb0acdeca2431d417e3.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.748000;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_67cf06ff8f1a92375b7d8af1.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.935000;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_5e45ced71e89ade16605c1f9.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-39.118200px;}
.v6{vertical-align:-17.820000px;}
.v4{vertical-align:-13.860000px;}
.v2{vertical-align:-6.072600px;}
.v7{vertical-align:-3.612000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:12.000000px;}
.v3{vertical-align:13.860000px;}
.v5{vertical-align:17.820000px;}
.ls55{letter-spacing:-4.440000px;}
.ls40{letter-spacing:-3.948000px;}
.ls20{letter-spacing:-3.834000px;}
.ls2f{letter-spacing:-3.318000px;}
.ls4a{letter-spacing:-3.234000px;}
.ls44{letter-spacing:-3.066000px;}
.ls2d{letter-spacing:-2.520000px;}
.ls56{letter-spacing:-2.184000px;}
.ls59{letter-spacing:-2.100000px;}
.ls39{letter-spacing:-2.016000px;}
.ls31{letter-spacing:-1.890000px;}
.ls5f{letter-spacing:-1.764000px;}
.ls57{letter-spacing:-1.680000px;}
.ls64{letter-spacing:-1.638000px;}
.ls58{letter-spacing:-1.596000px;}
.ls51{letter-spacing:-1.554000px;}
.ls5e{letter-spacing:-1.470000px;}
.ls35{letter-spacing:-1.386000px;}
.ls61{letter-spacing:-1.344000px;}
.ls63{letter-spacing:-1.302000px;}
.ls53{letter-spacing:-1.026000px;}
.ls37{letter-spacing:-1.008000px;}
.ls29{letter-spacing:-0.966000px;}
.ls4d{letter-spacing:-0.960000px;}
.ls2c{letter-spacing:-0.900000px;}
.ls5d{letter-spacing:-0.882000px;}
.ls50{letter-spacing:-0.840000px;}
.ls38{letter-spacing:-0.798000px;}
.ls3d{letter-spacing:-0.672000px;}
.ls3b{letter-spacing:-0.588000px;}
.lsb{letter-spacing:-0.540000px;}
.ls3e{letter-spacing:-0.504000px;}
.ls1b{letter-spacing:-0.486000px;}
.ls41{letter-spacing:-0.462000px;}
.ls33{letter-spacing:-0.420000px;}
.ls32{letter-spacing:-0.378000px;}
.ls52{letter-spacing:-0.336000px;}
.ls62{letter-spacing:-0.294000px;}
.ls12{letter-spacing:-0.270000px;}
.ls4e{letter-spacing:-0.252000px;}
.lsd{letter-spacing:-0.216000px;}
.ls3f{letter-spacing:-0.210000px;}
.ls4f{letter-spacing:-0.126000px;}
.lsc{letter-spacing:-0.108000px;}
.ls30{letter-spacing:-0.084000px;}
.ls14{letter-spacing:-0.054000px;}
.ls5b{letter-spacing:-0.042000px;}
.ls0{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000240px;}
.ls4c{letter-spacing:0.000480px;}
.ls60{letter-spacing:0.001800px;}
.ls22{letter-spacing:0.042000px;}
.ls11{letter-spacing:0.054000px;}
.ls3a{letter-spacing:0.084000px;}
.ls15{letter-spacing:0.108000px;}
.ls65{letter-spacing:0.126000px;}
.ls10{letter-spacing:0.162000px;}
.ls25{letter-spacing:0.168000px;}
.ls4{letter-spacing:0.198000px;}
.ls13{letter-spacing:0.216000px;}
.ls36{letter-spacing:0.252000px;}
.lsf{letter-spacing:0.270000px;}
.ls42{letter-spacing:0.294000px;}
.ls1d{letter-spacing:0.324000px;}
.ls45{letter-spacing:0.331800px;}
.ls5c{letter-spacing:0.336000px;}
.ls2e{letter-spacing:0.378000px;}
.ls4b{letter-spacing:0.420000px;}
.lsa{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.450000px;}
.ls28{letter-spacing:0.462000px;}
.ls1e{letter-spacing:0.486000px;}
.ls18{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.540000px;}
.ls43{letter-spacing:0.546000px;}
.ls23{letter-spacing:0.588000px;}
.ls1a{letter-spacing:0.594000px;}
.ls3{letter-spacing:0.600000px;}
.ls21{letter-spacing:0.630000px;}
.ls1c{letter-spacing:0.648000px;}
.ls27{letter-spacing:0.672000px;}
.ls19{letter-spacing:0.702000px;}
.ls26{letter-spacing:0.714000px;}
.ls7{letter-spacing:0.756000px;}
.ls6{letter-spacing:0.798000px;}
.ls48{letter-spacing:0.810000px;}
.ls8{letter-spacing:0.840000px;}
.lse{letter-spacing:0.864000px;}
.ls24{letter-spacing:0.882000px;}
.ls2b{letter-spacing:0.924000px;}
.ls49{letter-spacing:0.966000px;}
.ls17{letter-spacing:0.972000px;}
.ls5a{letter-spacing:1.008000px;}
.ls47{letter-spacing:1.026000px;}
.ls54{letter-spacing:1.042200px;}
.ls3c{letter-spacing:1.050000px;}
.ls66{letter-spacing:1.080000px;}
.ls46{letter-spacing:1.134000px;}
.ls16{letter-spacing:1.188000px;}
.ls34{letter-spacing:1.302000px;}
.ls9{letter-spacing:1.350000px;}
.ls2{letter-spacing:14.087400px;}
.ls2a{letter-spacing:129.718800px;}
.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;}
}
.ws4{word-spacing:-16.362000px;}
.ws1ba{word-spacing:-16.092000px;}
.ws163{word-spacing:-15.984000px;}
.ws146{word-spacing:-15.552000px;}
.ws135{word-spacing:-15.336000px;}
.ws58{word-spacing:-15.174000px;}
.ws5{word-spacing:-14.796000px;}
.ws18b{word-spacing:-12.726000px;}
.ws17c{word-spacing:-12.684000px;}
.ws16c{word-spacing:-12.642000px;}
.wsbc{word-spacing:-12.600000px;}
.ws80{word-spacing:-12.558000px;}
.wsab{word-spacing:-12.516000px;}
.ws2{word-spacing:-12.474000px;}
.wsac{word-spacing:-12.432000px;}
.ws84{word-spacing:-12.390000px;}
.wsad{word-spacing:-12.348000px;}
.ws85{word-spacing:-12.306000px;}
.ws1af{word-spacing:-12.264000px;}
.wsa8{word-spacing:-12.180000px;}
.ws1b4{word-spacing:-12.096000px;}
.ws1b3{word-spacing:-12.054000px;}
.ws1b2{word-spacing:-11.970000px;}
.wsc2{word-spacing:-11.844000px;}
.ws1b9{word-spacing:-11.802000px;}
.wsc9{word-spacing:-11.760000px;}
.ws191{word-spacing:-11.718000px;}
.ws56{word-spacing:-11.676000px;}
.wse3{word-spacing:-11.592000px;}
.ws1a2{word-spacing:-11.466000px;}
.ws1b5{word-spacing:-11.382000px;}
.ws1b8{word-spacing:-11.256000px;}
.wsd0{word-spacing:-11.004000px;}
.ws1b1{word-spacing:-10.332000px;}
.ws1b7{word-spacing:-10.038000px;}
.ws55{word-spacing:-10.008000px;}
.ws1b0{word-spacing:-9.576000px;}
.ws57{word-spacing:-9.174000px;}
.wsae{word-spacing:-9.156000px;}
.ws1b6{word-spacing:-8.442000px;}
.wsb5{word-spacing:-8.358000px;}
.ws82{word-spacing:-6.772080px;}
.ws52{word-spacing:-3.942000px;}
.ws3b{word-spacing:-3.618000px;}
.ws46{word-spacing:-3.456000px;}
.ws140{word-spacing:-3.186000px;}
.ws1e{word-spacing:-3.132000px;}
.ws7a{word-spacing:-3.024000px;}
.ws7{word-spacing:-2.970000px;}
.ws39{word-spacing:-2.916000px;}
.ws24{word-spacing:-2.862000px;}
.ws151{word-spacing:-2.808000px;}
.wsf{word-spacing:-2.754000px;}
.ws5d{word-spacing:-2.646000px;}
.wsfc{word-spacing:-2.538000px;}
.ws32{word-spacing:-2.484000px;}
.ws10b{word-spacing:-2.430000px;}
.ws2e{word-spacing:-2.376000px;}
.ws10e{word-spacing:-2.322000px;}
.ws17{word-spacing:-2.268000px;}
.ws15f{word-spacing:-2.214000px;}
.ws51{word-spacing:-2.160000px;}
.ws1d2{word-spacing:-2.142000px;}
.ws70{word-spacing:-2.106000px;}
.ws113{word-spacing:-2.100000px;}
.ws111{word-spacing:-2.058000px;}
.ws3d{word-spacing:-2.052000px;}
.ws6{word-spacing:-2.046000px;}
.wsd{word-spacing:-2.016000px;}
.ws40{word-spacing:-1.998000px;}
.ws10f{word-spacing:-1.974000px;}
.ws1d{word-spacing:-1.944000px;}
.wsb{word-spacing:-1.932000px;}
.ws2f{word-spacing:-1.890000px;}
.ws1cb{word-spacing:-1.848000px;}
.ws43{word-spacing:-1.836000px;}
.wsa2{word-spacing:-1.806000px;}
.ws87{word-spacing:-1.782000px;}
.wsa0{word-spacing:-1.728000px;}
.ws1e3{word-spacing:-1.722000px;}
.ws59{word-spacing:-1.680000px;}
.ws53{word-spacing:-1.674000px;}
.wsa5{word-spacing:-1.638000px;}
.ws13c{word-spacing:-1.620000px;}
.ws1ec{word-spacing:-1.596000px;}
.ws47{word-spacing:-1.566000px;}
.ws2d{word-spacing:-1.512000px;}
.ws16{word-spacing:-1.458000px;}
.ws8f{word-spacing:-1.404000px;}
.ws1e9{word-spacing:-1.386000px;}
.ws15{word-spacing:-1.350000px;}
.wsa3{word-spacing:-1.344000px;}
.ws22{word-spacing:-1.296000px;}
.ws112{word-spacing:-1.260000px;}
.ws74{word-spacing:-1.242000px;}
.wsc{word-spacing:-1.176000px;}
.ws26{word-spacing:-1.134000px;}
.ws106{word-spacing:-1.080000px;}
.ws14{word-spacing:-1.026000px;}
.ws110{word-spacing:-0.966000px;}
.ws1e2{word-spacing:-0.924000px;}
.ws3a{word-spacing:-0.918000px;}
.wsf0{word-spacing:-0.882000px;}
.ws10{word-spacing:-0.864000px;}
.ws1ad{word-spacing:-0.840000px;}
.wsfe{word-spacing:-0.810000px;}
.ws1d5{word-spacing:-0.798000px;}
.ws8{word-spacing:-0.756000px;}
.ws138{word-spacing:-0.714000px;}
.ws7c{word-spacing:-0.702000px;}
.wsa4{word-spacing:-0.672000px;}
.ws1{word-spacing:-0.660000px;}
.ws109{word-spacing:-0.648000px;}
.ws137{word-spacing:-0.630000px;}
.ws54{word-spacing:-0.600000px;}
.ws30{word-spacing:-0.594000px;}
.ws36{word-spacing:-0.540000px;}
.ws1e7{word-spacing:-0.504000px;}
.ws66{word-spacing:-0.486000px;}
.ws136{word-spacing:-0.462000px;}
.ws102{word-spacing:-0.432000px;}
.ws145{word-spacing:-0.420000px;}
.ws31{word-spacing:-0.324000px;}
.ws1ae{word-spacing:-0.294000px;}
.ws9d{word-spacing:-0.270000px;}
.ws1dc{word-spacing:-0.252000px;}
.ws4e{word-spacing:-0.216000px;}
.wsa6{word-spacing:-0.210000px;}
.ws69{word-spacing:-0.162000px;}
.wsff{word-spacing:-0.108000px;}
.ws33{word-spacing:-0.054000px;}
.ws3{word-spacing:-0.042000px;}
.ws0{word-spacing:0.000000px;}
.ws6e{word-spacing:0.054000px;}
.ws155{word-spacing:0.108000px;}
.ws1e4{word-spacing:0.126000px;}
.ws1d1{word-spacing:0.168000px;}
.ws2c{word-spacing:0.216000px;}
.ws1d4{word-spacing:0.252000px;}
.ws35{word-spacing:0.270000px;}
.ws1bf{word-spacing:0.324000px;}
.ws8a{word-spacing:0.378000px;}
.ws4c{word-spacing:0.432000px;}
.ws72{word-spacing:0.486000px;}
.ws1ca{word-spacing:0.504000px;}
.ws25{word-spacing:0.540000px;}
.ws1db{word-spacing:0.546000px;}
.ws1e8{word-spacing:0.588000px;}
.ws28{word-spacing:0.594000px;}
.ws100{word-spacing:0.648000px;}
.ws1c1{word-spacing:0.702000px;}
.ws10c{word-spacing:0.756000px;}
.ws8e{word-spacing:0.810000px;}
.wsa7{word-spacing:0.840000px;}
.ws23{word-spacing:0.864000px;}
.ws114{word-spacing:0.900000px;}
.ws1cd{word-spacing:0.924000px;}
.ws15b{word-spacing:1.026000px;}
.ws10d{word-spacing:1.188000px;}
.ws3c{word-spacing:1.242000px;}
.ws143{word-spacing:1.296000px;}
.wsa{word-spacing:1.302000px;}
.ws1d3{word-spacing:1.344000px;}
.ws19{word-spacing:1.350000px;}
.ws1bd{word-spacing:1.404000px;}
.ws21{word-spacing:1.512000px;}
.ws1cf{word-spacing:1.554000px;}
.ws75{word-spacing:1.620000px;}
.ws92{word-spacing:1.674000px;}
.ws37{word-spacing:1.782000px;}
.ws96{word-spacing:1.836000px;}
.ws13f{word-spacing:1.890000px;}
.ws45{word-spacing:1.944000px;}
.ws1e6{word-spacing:1.974000px;}
.wsfd{word-spacing:1.998000px;}
.ws105{word-spacing:2.052000px;}
.ws9{word-spacing:2.100000px;}
.ws2b{word-spacing:2.106000px;}
.ws7b{word-spacing:2.214000px;}
.ws1c9{word-spacing:2.226000px;}
.ws44{word-spacing:2.268000px;}
.ws98{word-spacing:2.322000px;}
.ws3f{word-spacing:2.376000px;}
.ws29{word-spacing:2.430000px;}
.ws79{word-spacing:2.538000px;}
.ws103{word-spacing:2.592000px;}
.ws1ef{word-spacing:2.604000px;}
.ws4a{word-spacing:2.646000px;}
.ws1de{word-spacing:2.688000px;}
.ws27{word-spacing:2.700000px;}
.ws5c{word-spacing:2.754000px;}
.ws64{word-spacing:2.808000px;}
.ws4b{word-spacing:2.862000px;}
.ws1cc{word-spacing:2.898000px;}
.ws1f{word-spacing:2.970000px;}
.ws34{word-spacing:3.078000px;}
.ws1c8{word-spacing:3.108000px;}
.ws6a{word-spacing:3.294000px;}
.ws38{word-spacing:3.348000px;}
.ws1ce{word-spacing:3.360000px;}
.ws88{word-spacing:3.402000px;}
.ws1c{word-spacing:3.510000px;}
.ws4f{word-spacing:3.618000px;}
.ws6d{word-spacing:3.672000px;}
.ws2a{word-spacing:3.726000px;}
.ws95{word-spacing:3.780000px;}
.ws1bb{word-spacing:3.888000px;}
.ws15d{word-spacing:3.942000px;}
.ws1df{word-spacing:3.948000px;}
.ws153{word-spacing:3.996000px;}
.ws104{word-spacing:4.050000px;}
.ws93{word-spacing:4.104000px;}
.ws1ea{word-spacing:4.200000px;}
.ws8d{word-spacing:4.212000px;}
.ws71{word-spacing:4.266000px;}
.ws1ee{word-spacing:4.284000px;}
.ws13b{word-spacing:4.320000px;}
.ws5e{word-spacing:4.374000px;}
.ws162{word-spacing:4.380000px;}
.ws108{word-spacing:4.428000px;}
.ws148{word-spacing:4.482000px;}
.ws1ed{word-spacing:4.494000px;}
.ws9b{word-spacing:4.536000px;}
.ws14e{word-spacing:4.590000px;}
.ws13e{word-spacing:4.698000px;}
.ws1e0{word-spacing:4.788000px;}
.ws149{word-spacing:4.914000px;}
.ws8c{word-spacing:5.022000px;}
.ws142{word-spacing:5.130000px;}
.ws15a{word-spacing:5.238000px;}
.ws1ab{word-spacing:5.292000px;}
.ws9c{word-spacing:5.400000px;}
.ws3e{word-spacing:5.508000px;}
.ws101{word-spacing:5.562000px;}
.ws1b{word-spacing:5.616000px;}
.ws97{word-spacing:5.670000px;}
.ws12{word-spacing:5.724000px;}
.ws41{word-spacing:5.940000px;}
.ws5b{word-spacing:5.994000px;}
.ws1c0{word-spacing:6.048000px;}
.ws13{word-spacing:6.156000px;}
.ws147{word-spacing:6.264000px;}
.ws18{word-spacing:6.318000px;}
.ws62{word-spacing:6.372000px;}
.ws65{word-spacing:6.480000px;}
.ws1eb{word-spacing:6.552000px;}
.ws20{word-spacing:6.588000px;}
.ws154{word-spacing:6.642000px;}
.ws8b{word-spacing:6.696000px;}
.ws1c6{word-spacing:6.804000px;}
.ws49{word-spacing:6.858000px;}
.ws152{word-spacing:6.966000px;}
.ws159{word-spacing:7.074000px;}
.ws141{word-spacing:7.182000px;}
.ws60{word-spacing:7.236000px;}
.ws50{word-spacing:7.290000px;}
.ws99{word-spacing:7.344000px;}
.ws1d0{word-spacing:7.350000px;}
.ws14c{word-spacing:7.506000px;}
.ws1c3{word-spacing:7.560000px;}
.ws14d{word-spacing:7.614000px;}
.ws1c7{word-spacing:7.668000px;}
.ws5a{word-spacing:7.722000px;}
.ws1e5{word-spacing:7.854000px;}
.wsa1{word-spacing:7.938000px;}
.ws15e{word-spacing:8.046000px;}
.ws13d{word-spacing:8.208000px;}
.ws1c4{word-spacing:8.262000px;}
.ws9e{word-spacing:8.316000px;}
.ws139{word-spacing:8.370000px;}
.ws73{word-spacing:8.748000px;}
.ws13a{word-spacing:8.802000px;}
.ws156{word-spacing:8.910000px;}
.ws1ac{word-spacing:8.964000px;}
.ws6c{word-spacing:9.018000px;}
.ws1dd{word-spacing:9.072000px;}
.ws144{word-spacing:9.234000px;}
.ws1c5{word-spacing:9.288000px;}
.ws1c2{word-spacing:9.342000px;}
.ws10a{word-spacing:9.558000px;}
.ws157{word-spacing:9.612000px;}
.ws89{word-spacing:9.720000px;}
.ws11{word-spacing:9.774000px;}
.ws6b{word-spacing:9.882000px;}
.ws48{word-spacing:9.936000px;}
.ws42{word-spacing:9.990000px;}
.ws94{word-spacing:10.206000px;}
.ws9a{word-spacing:10.314000px;}
.ws9f{word-spacing:10.368000px;}
.ws107{word-spacing:10.422000px;}
.ws5f{word-spacing:10.584000px;}
.ws15c{word-spacing:10.854000px;}
.ws1d6{word-spacing:10.920000px;}
.ws4d{word-spacing:11.070000px;}
.ws1a{word-spacing:11.124000px;}
.ws91{word-spacing:11.286000px;}
.ws67{word-spacing:11.556000px;}
.ws160{word-spacing:11.772000px;}
.ws14b{word-spacing:11.880000px;}
.ws14f{word-spacing:11.934000px;}
.ws77{word-spacing:11.988000px;}
.ws6f{word-spacing:12.150000px;}
.ws1be{word-spacing:12.258000px;}
.ws78{word-spacing:12.474000px;}
.ws76{word-spacing:12.636000px;}
.ws1bc{word-spacing:12.798000px;}
.ws14a{word-spacing:13.176000px;}
.wse{word-spacing:13.554000px;}
.ws61{word-spacing:13.824000px;}
.ws68{word-spacing:13.932000px;}
.ws90{word-spacing:16.146000px;}
.ws150{word-spacing:16.200000px;}
.ws63{word-spacing:17.064000px;}
.ws1d9{word-spacing:17.220000px;}
.ws1da{word-spacing:17.430000px;}
.ws1d8{word-spacing:18.060000px;}
.ws158{word-spacing:18.738000px;}
.ws161{word-spacing:19.602000px;}
.ws1e1{word-spacing:38.136000px;}
.wsa9{word-spacing:41.380200px;}
.ws81{word-spacing:47.176800px;}
.ws1d7{word-spacing:91.938000px;}
.ws11e{word-spacing:97.605600px;}
.wsea{word-spacing:98.848800px;}
.ws130{word-spacing:99.428400px;}
.ws11d{word-spacing:101.452800px;}
.ws132{word-spacing:102.318000px;}
.ws128{word-spacing:102.633000px;}
.ws11b{word-spacing:102.801000px;}
.ws11c{word-spacing:102.931200px;}
.ws12c{word-spacing:103.351200px;}
.ws12e{word-spacing:111.516000px;}
.wsaa{word-spacing:127.862400px;}
.wsd7{word-spacing:131.352600px;}
.wseb{word-spacing:135.611400px;}
.wsdd{word-spacing:139.063800px;}
.wsd1{word-spacing:139.156200px;}
.ws166{word-spacing:139.201200px;}
.wsb6{word-spacing:139.685400px;}
.wsaf{word-spacing:140.126400px;}
.wsca{word-spacing:141.302400px;}
.wsc3{word-spacing:142.491000px;}
.ws1a1{word-spacing:142.691400px;}
.ws165{word-spacing:144.870000px;}
.ws115{word-spacing:145.401600px;}
.ws11f{word-spacing:145.880400px;}
.ws134{word-spacing:145.884600px;}
.ws12d{word-spacing:145.951800px;}
.ws133{word-spacing:145.956000px;}
.ws121{word-spacing:145.998000px;}
.ws126{word-spacing:146.355000px;}
.ws12f{word-spacing:147.216000px;}
.ws119{word-spacing:147.531000px;}
.ws18d{word-spacing:147.667200px;}
.wse4{word-spacing:148.005600px;}
.wsbd{word-spacing:148.140000px;}
.ws131{word-spacing:148.707000px;}
.ws171{word-spacing:149.386200px;}
.ws198{word-spacing:149.604600px;}
.ws18c{word-spacing:149.926800px;}
.ws124{word-spacing:149.950200px;}
.ws117{word-spacing:150.580200px;}
.ws122{word-spacing:152.083800px;}
.ws19c{word-spacing:153.086400px;}
.ws12a{word-spacing:153.138000px;}
.ws19b{word-spacing:153.829800px;}
.ws16b{word-spacing:153.955800px;}
.wsf6{word-spacing:154.298400px;}
.ws17b{word-spacing:154.892400px;}
.ws17f{word-spacing:155.790000px;}
.ws18a{word-spacing:155.903400px;}
.wsfb{word-spacing:156.121200px;}
.ws16f{word-spacing:156.134400px;}
.ws1a3{word-spacing:156.604800px;}
.ws116{word-spacing:156.989400px;}
.ws189{word-spacing:157.230600px;}
.ws187{word-spacing:157.554000px;}
.wsf5{word-spacing:158.145600px;}
.wsf8{word-spacing:159.010800px;}
.wsf7{word-spacing:159.325800px;}
.ws181{word-spacing:159.344400px;}
.ws184{word-spacing:159.444000px;}
.ws176{word-spacing:159.478800px;}
.wsf3{word-spacing:159.493800px;}
.wsf4{word-spacing:159.624000px;}
.wsf9{word-spacing:160.044000px;}
.ws1a8{word-spacing:160.082400px;}
.ws193{word-spacing:160.779600px;}
.ws18e{word-spacing:161.980800px;}
.ws1a9{word-spacing:162.959400px;}
.ws174{word-spacing:163.295400px;}
.ws179{word-spacing:164.807400px;}
.ws19f{word-spacing:167.398800px;}
.ws83{word-spacing:167.536200px;}
.ws199{word-spacing:167.747400px;}
.wsfa{word-spacing:168.208800px;}
.ws196{word-spacing:168.826800px;}
.ws169{word-spacing:169.091400px;}
.ws192{word-spacing:170.511000px;}
.wsf1{word-spacing:171.360000px;}
.ws1aa{word-spacing:171.968400px;}
.ws190{word-spacing:172.023000px;}
.ws1a4{word-spacing:172.956600px;}
.ws164{word-spacing:178.886400px;}
.ws17d{word-spacing:183.707400px;}
.ws18f{word-spacing:183.959400px;}
.ws182{word-spacing:188.953200px;}
.ws185{word-spacing:189.066600px;}
.ws177{word-spacing:190.057800px;}
.ws172{word-spacing:191.317800px;}
.ws19d{word-spacing:192.325800px;}
.ws194{word-spacing:192.582000px;}
.ws120{word-spacing:194.306400px;}
.ws125{word-spacing:195.545400px;}
.ws129{word-spacing:196.503000px;}
.ws11a{word-spacing:197.406000px;}
.ws16d{word-spacing:197.563200px;}
.ws118{word-spacing:197.763000px;}
.ws12b{word-spacing:198.015000px;}
.ws1a7{word-spacing:199.163400px;}
.ws123{word-spacing:199.199400px;}
.ws188{word-spacing:200.032800px;}
.ws167{word-spacing:202.225200px;}
.ws1a5{word-spacing:213.439200px;}
.wsba{word-spacing:250.417800px;}
.wsbb{word-spacing:270.049200px;}
.wsbe{word-spacing:270.330600px;}
.wse9{word-spacing:271.208400px;}
.wsc5{word-spacing:271.237200px;}
.wsda{word-spacing:272.304600px;}
.wsb9{word-spacing:272.741400px;}
.wsc1{word-spacing:273.089400px;}
.wsb8{word-spacing:273.111000px;}
.wsb2{word-spacing:273.442200px;}
.ws7d{word-spacing:273.865800px;}
.wsd9{word-spacing:273.929400px;}
.wsb3{word-spacing:274.135800px;}
.wsbf{word-spacing:274.413000px;}
.wscc{word-spacing:275.617800px;}
.wsc0{word-spacing:275.651400px;}
.wscd{word-spacing:276.206400px;}
.wsc8{word-spacing:276.475200px;}
.wse8{word-spacing:276.546000px;}
.wsc6{word-spacing:276.550800px;}
.wsce{word-spacing:276.592200px;}
.wsd3{word-spacing:277.311000px;}
.wse0{word-spacing:277.638600px;}
.wscf{word-spacing:277.709400px;}
.wsdb{word-spacing:277.713600px;}
.wsd6{word-spacing:277.928400px;}
.wsdf{word-spacing:279.159000px;}
.wsb1{word-spacing:279.377400px;}
.wsd5{word-spacing:279.536400px;}
.wse1{word-spacing:279.544800px;}
.wsed{word-spacing:280.053600px;}
.wse2{word-spacing:280.233600px;}
.wsd4{word-spacing:280.557600px;}
.wsc7{word-spacing:281.817000px;}
.wse6{word-spacing:282.401400px;}
.wse7{word-spacing:283.426200px;}
.wsee{word-spacing:284.136000px;}
.wsb4{word-spacing:284.778000px;}
.wsef{word-spacing:286.319400px;}
.wsdc{word-spacing:290.293200px;}
.ws16a{word-spacing:376.117200px;}
.wse5{word-spacing:400.381200px;}
.wsb0{word-spacing:407.156400px;}
.ws86{word-spacing:408.795000px;}
.wsb7{word-spacing:432.032400px;}
.wsec{word-spacing:439.886400px;}
.wsde{word-spacing:440.529000px;}
.ws170{word-spacing:445.450800px;}
.ws19a{word-spacing:456.391800px;}
.wscb{word-spacing:458.556000px;}
.ws180{word-spacing:478.635000px;}
.wsd2{word-spacing:479.849400px;}
.wsc4{word-spacing:484.407000px;}
.ws17a{word-spacing:487.929600px;}
.ws175{word-spacing:506.863200px;}
.ws197{word-spacing:515.154000px;}
.ws1a6{word-spacing:548.231400px;}
.ws1a0{word-spacing:583.433400px;}
.wsd8{word-spacing:605.392200px;}
.ws173{word-spacing:635.293200px;}
.ws178{word-spacing:636.578400px;}
.ws183{word-spacing:643.437000px;}
.ws19e{word-spacing:659.052600px;}
.ws186{word-spacing:677.604000px;}
.ws16e{word-spacing:703.505400px;}
.ws17e{word-spacing:710.721000px;}
.ws168{word-spacing:716.428800px;}
.ws195{word-spacing:776.493000px;}
.wsf2{word-spacing:801.760200px;}
.ws7f{word-spacing:866.266800px;}
.ws7e{word-spacing:932.635800px;}
.ws127{word-spacing:959.875200px;}
._9{margin-left:-937.741200px;}
._a{margin-left:-905.898000px;}
._7{margin-left:-6.183000px;}
._21{margin-left:-5.038200px;}
._3{margin-left:-3.508200px;}
._0{margin-left:-1.630800px;}
._2{width:1.681200px;}
._4{width:3.420000px;}
._c{width:4.444200px;}
._1e{width:5.465400px;}
._5{width:23.520000px;}
._3e{width:33.432000px;}
._11{width:39.707400px;}
._37{width:45.256800px;}
._13{width:47.527800px;}
._3b{width:53.662800px;}
._6{width:55.062000px;}
._8{width:63.608400px;}
._22{width:65.977800px;}
._2c{width:79.000200px;}
._36{width:85.947600px;}
._47{width:90.212400px;}
._3c{width:99.891000px;}
._23{width:127.693800px;}
._1c{width:135.769800px;}
._26{width:149.828400px;}
._1b{width:174.828600px;}
._18{width:180.989400px;}
._27{width:185.656800px;}
._3f{width:195.762000px;}
._f{width:201.911400px;}
._20{width:211.932000px;}
._1a{width:213.252600px;}
._2d{width:219.057000px;}
._d{width:220.769400px;}
._39{width:226.525800px;}
._2b{width:237.418800px;}
._12{width:239.311800px;}
._15{width:253.445400px;}
._3a{width:261.636600px;}
._2f{width:273.799800px;}
._e{width:278.562600px;}
._19{width:292.117800px;}
._1f{width:296.413200px;}
._34{width:299.934600px;}
._17{width:304.257000px;}
._28{width:305.925000px;}
._33{width:335.175600px;}
._46{width:339.024000px;}
._16{width:361.782600px;}
._14{width:389.686200px;}
._3d{width:395.768400px;}
._44{width:407.277000px;}
._29{width:419.396400px;}
._42{width:425.244600px;}
._1d{width:434.220000px;}
._35{width:447.232200px;}
._25{width:470.770200px;}
._2a{width:473.762400px;}
._24{width:501.430200px;}
._2e{width:504.159000px;}
._43{width:518.679000px;}
._10{width:636.735000px;}
._41{width:646.347000px;}
._45{width:657.019200px;}
._38{width:660.255600px;}
._31{width:736.033800px;}
._32{width:788.323200px;}
._30{width:819.861000px;}
._b{width:1174.606800px;}
._40{width:1322.671200px;}
._1{width:1862.607600px;}
.fc4{color:transparent;}
.fc3{color:rgb(24,116,95);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:24.360000px;}
.fs8{font-size:30.000000px;}
.fsc{font-size:31.320000px;}
.fs9{font-size:33.000000px;}
.fsa{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:20.196900px;}
.y1f{bottom:29.763750px;}
.y5{bottom:66.525004px;}
.yac{bottom:95.244000px;}
.y7d{bottom:95.244150px;}
.y13c{bottom:95.244300px;}
.y4{bottom:97.125005px;}
.y106{bottom:97.337700px;}
.yc3{bottom:98.837700px;}
.y13b{bottom:108.744300px;}
.y1a9{bottom:110.303250px;}
.y2b{bottom:113.244000px;}
.y7c{bottom:113.244150px;}
.y1a8{bottom:123.803250px;}
.ycf{bottom:123.920100px;}
.y11c{bottom:127.176750px;}
.y2a{bottom:131.244000px;}
.y7b{bottom:131.244150px;}
.y1a7{bottom:137.303250px;}
.y1e{bottom:139.264499px;}
.yce{bottom:139.920900px;}
.y11b{bottom:140.676750px;}
.yab{bottom:149.244000px;}
.ya3{bottom:149.244150px;}
.y1a6{bottom:150.803250px;}
.ycd{bottom:155.921700px;}
.y11a{bottom:156.677550px;}
.y1a5{bottom:164.303250px;}
.yaa{bottom:167.244000px;}
.y7a{bottom:167.244150px;}
.y119{bottom:170.177550px;}
.ycc{bottom:171.922500px;}
.y27{bottom:175.951950px;}
.y1a4{bottom:177.803250px;}
.y13a{bottom:185.244000px;}
.ya2{bottom:185.244150px;}
.y118{bottom:186.178500px;}
.ycb{bottom:187.923300px;}
.y26{bottom:189.451950px;}
.y1a3{bottom:191.303250px;}
.y15{bottom:196.933500px;}
.y117{bottom:199.678500px;}
.y1b5{bottom:202.101300px;}
.ya9{bottom:203.244000px;}
.y79{bottom:203.244150px;}
.yca{bottom:203.924250px;}
.y1a2{bottom:204.803250px;}
.y1d{bottom:209.518500px;}
.y14{bottom:209.533503px;}
.y25{bottom:210.392850px;}
.y116{bottom:215.679300px;}
.y16f{bottom:215.861400px;}
.y1a1{bottom:218.303250px;}
.yc9{bottom:219.925050px;}
.ya8{bottom:221.244000px;}
.y78{bottom:221.244150px;}
.y1c{bottom:222.118502px;}
.y13{bottom:222.133505px;}
.y24{bottom:223.892850px;}
.y115{bottom:229.179300px;}
.y1a0{bottom:231.803250px;}
.y100{bottom:233.489850px;}
.y1b{bottom:234.718504px;}
.y12{bottom:234.733496px;}
.yc8{bottom:235.925850px;}
.y23{bottom:237.392850px;}
.ya7{bottom:239.244000px;}
.y77{bottom:239.244150px;}
.y114{bottom:245.180100px;}
.y19f{bottom:245.303250px;}
.y16e{bottom:247.955250px;}
.yc7{bottom:251.926650px;}
.y50{bottom:257.244000px;}
.y76{bottom:257.244150px;}
.y113{bottom:258.680100px;}
.y19e{bottom:258.803250px;}
.y1a{bottom:259.918497px;}
.y11{bottom:259.933500px;}
.y16d{bottom:266.507250px;}
.yc6{bottom:267.927450px;}
.y19d{bottom:272.303250px;}
.y19{bottom:272.518500px;}
.y10{bottom:272.533503px;}
.y112{bottom:274.680900px;}
.y4f{bottom:275.244000px;}
.y75{bottom:275.244150px;}
.yc4{bottom:283.928250px;}
.y16c{bottom:285.059250px;}
.y18{bottom:285.118502px;}
.yf{bottom:285.133499px;}
.y19c{bottom:285.803250px;}
.y111{bottom:288.180900px;}
.y4e{bottom:293.244000px;}
.y74{bottom:293.244150px;}
.yc5{bottom:297.428250px;}
.y19b{bottom:299.303250px;}
.y110{bottom:301.680900px;}
.y16b{bottom:303.611250px;}
.y17{bottom:310.318501px;}
.ye{bottom:310.333501px;}
.ya6{bottom:311.244000px;}
.y73{bottom:311.244150px;}
.y19a{bottom:312.803250px;}
.y10f{bottom:317.681700px;}
.y16a{bottom:322.163250px;}
.y16{bottom:322.918500px;}
.yd{bottom:322.933500px;}
.y199{bottom:326.303250px;}
.y4d{bottom:329.244000px;}
.y72{bottom:329.244150px;}
.y10e{bottom:331.181700px;}
.y198{bottom:339.803250px;}
.y169{bottom:340.715250px;}
.y10d{bottom:344.681700px;}
.ya5{bottom:347.244000px;}
.ya1{bottom:347.244150px;}
.yc{bottom:348.133500px;}
.y197{bottom:353.303250px;}
.y10c{bottom:358.181700px;}
.y168{bottom:359.267250px;}
.y4c{bottom:365.244000px;}
.y71{bottom:365.244150px;}
.y196{bottom:366.803250px;}
.y10b{bottom:374.182500px;}
.y167{bottom:377.819250px;}
.y195{bottom:380.303250px;}
.y4b{bottom:383.244000px;}
.y70{bottom:383.244150px;}
.yb{bottom:386.785499px;}
.y10a{bottom:387.682500px;}
.y194{bottom:393.803250px;}
.y166{bottom:396.371250px;}
.y4a{bottom:401.244000px;}
.y6f{bottom:401.244150px;}
.y109{bottom:403.683450px;}
.y193{bottom:407.303250px;}
.ya{bottom:408.044999px;}
.y165{bottom:414.923250px;}
.yd0{bottom:415.904700px;}
.y108{bottom:417.183450px;}
.y49{bottom:419.244000px;}
.y6e{bottom:419.244150px;}
.y192{bottom:420.803250px;}
.y107{bottom:433.184250px;}
.y164{bottom:433.475400px;}
.y191{bottom:434.303250px;}
.y48{bottom:437.244000px;}
.y6d{bottom:437.244150px;}
.y139{bottom:443.211750px;}
.y190{bottom:447.803250px;}
.y163{bottom:452.027250px;}
.y47{bottom:455.244000px;}
.y6c{bottom:455.244150px;}
.y18f{bottom:461.303250px;}
.y138{bottom:469.025850px;}
.y162{bottom:470.579250px;}
.ya4{bottom:473.244000px;}
.y6b{bottom:473.244150px;}
.y18e{bottom:474.803250px;}
.y18d{bottom:488.303250px;}
.y161{bottom:489.131400px;}
.y137{bottom:489.278700px;}
.y46{bottom:491.244000px;}
.y6a{bottom:491.244150px;}
.y18c{bottom:501.803250px;}
.y160{bottom:507.683400px;}
.y45{bottom:509.244000px;}
.y69{bottom:509.244150px;}
.y136{bottom:509.531400px;}
.y18b{bottom:515.303250px;}
.y9{bottom:520.864502px;}
.y15f{bottom:526.235250px;}
.y44{bottom:527.244000px;}
.y68{bottom:527.244150px;}
.y18a{bottom:528.803250px;}
.y135{bottom:529.784250px;}
.y8{bottom:538.864499px;}
.y189{bottom:542.303250px;}
.y15e{bottom:544.787400px;}
.y43{bottom:545.244000px;}
.y67{bottom:545.244150px;}
.y134{bottom:550.036950px;}
.y188{bottom:555.803250px;}
.y7{bottom:556.864499px;}
.y42{bottom:563.244000px;}
.y66{bottom:563.244150px;}
.y15d{bottom:563.339400px;}
.y187{bottom:569.303250px;}
.y133{bottom:570.289800px;}
.y15c{bottom:576.839400px;}
.y41{bottom:581.244000px;}
.y65{bottom:581.244150px;}
.y186{bottom:582.803250px;}
.y132{bottom:590.542650px;}
.y15b{bottom:595.391400px;}
.y185{bottom:596.303250px;}
.y40{bottom:599.244000px;}
.y64{bottom:599.244150px;}
.y131{bottom:604.042650px;}
.y184{bottom:609.803250px;}
.y15a{bottom:613.943400px;}
.y3f{bottom:617.244000px;}
.y103{bottom:617.244150px;}
.y183{bottom:623.303250px;}
.y130{bottom:624.295350px;}
.y81{bottom:624.794400px;}
.y159{bottom:632.495400px;}
.ye8{bottom:634.773300px;}
.y3e{bottom:635.244000px;}
.y63{bottom:635.244150px;}
.ydc{bottom:635.675700px;}
.y182{bottom:636.803250px;}
.y12f{bottom:644.548200px;}
.ye7{bottom:647.331300px;}
.ydb{bottom:648.233700px;}
.y181{bottom:650.303250px;}
.yad{bottom:650.318100px;}
.y158{bottom:651.047400px;}
.y3d{bottom:653.244000px;}
.y62{bottom:653.244150px;}
.ye6{bottom:659.889300px;}
.yda{bottom:660.791700px;}
.y180{bottom:663.803250px;}
.y12e{bottom:664.801050px;}
.y96{bottom:666.817800px;}
.y157{bottom:669.599400px;}
.y3c{bottom:671.244000px;}
.y61{bottom:671.244150px;}
.ye5{bottom:672.447300px;}
.y94{bottom:672.876300px;}
.yc2{bottom:673.056300px;}
.yd9{bottom:673.349700px;}
.y17f{bottom:677.303250px;}
.y95{bottom:678.934800px;}
.ye4{bottom:685.005300px;}
.y12d{bottom:685.053750px;}
.yd8{bottom:685.907700px;}
.yc1{bottom:686.556300px;}
.y156{bottom:688.151400px;}
.y3b{bottom:689.244000px;}
.y60{bottom:689.244150px;}
.y17e{bottom:690.803250px;}
.y13d{bottom:701.164500px;}
.ye3{bottom:702.520500px;}
.yd7{bottom:703.422750px;}
.y17d{bottom:704.303250px;}
.y12c{bottom:705.306600px;}
.y155{bottom:706.703400px;}
.yc0{bottom:706.809000px;}
.y170{bottom:707.244000px;}
.y5f{bottom:707.244150px;}
.y17c{bottom:717.803250px;}
.ybf{bottom:720.309000px;}
.y3a{bottom:725.244000px;}
.y5e{bottom:725.244150px;}
.y154{bottom:725.255400px;}
.y12b{bottom:725.559300px;}
.y6{bottom:726.298500px;}
.ybe{bottom:727.061850px;}
.y17b{bottom:731.303250px;}
.yea{bottom:737.554350px;}
.ybd{bottom:740.561850px;}
.y39{bottom:743.244000px;}
.y5d{bottom:743.244150px;}
.y153{bottom:743.807400px;}
.y17a{bottom:744.803250px;}
.y12a{bottom:745.812150px;}
.y9c{bottom:747.909300px;}
.y3{bottom:752.599495px;}
.ybc{bottom:754.061850px;}
.yff{bottom:754.249500px;}
.y90{bottom:755.959800px;}
.y8a{bottom:756.046200px;}
.y179{bottom:758.303250px;}
.y101{bottom:758.776200px;}
.y38{bottom:761.244000px;}
.y5c{bottom:761.244150px;}
.y152{bottom:762.359400px;}
.y89{bottom:763.966200px;}
.y129{bottom:766.065000px;}
.y8f{bottom:766.879800px;}
.y1aa{bottom:769.172400px;}
.y178{bottom:771.803250px;}
.ybb{bottom:774.314550px;}
.yfe{bottom:776.101500px;}
.y9b{bottom:777.466800px;}
.y37{bottom:779.244000px;}
.y105{bottom:779.244150px;}
.y151{bottom:780.911400px;}
.y8e{bottom:781.991400px;}
.y1b4{bottom:785.220000px;}
.y177{bottom:785.303250px;}
.y128{bottom:786.317850px;}
.yf5{bottom:787.546500px;}
.yba{bottom:787.814550px;}
.y1b3{bottom:789.747600px;}
.y36{bottom:797.244000px;}
.y5b{bottom:797.244150px;}
.y176{bottom:798.803250px;}
.y150{bottom:799.463400px;}
.y86{bottom:801.065250px;}
.ya0{bottom:802.271100px;}
.y127{bottom:806.570550px;}
.y9a{bottom:807.024300px;}
.yb9{bottom:808.067400px;}
.y85{bottom:808.985250px;}
.y1b2{bottom:809.132400px;}
.yf6{bottom:810.835500px;}
.y9f{bottom:811.412100px;}
.y175{bottom:812.303250px;}
.y35{bottom:815.244000px;}
.y5a{bottom:815.244150px;}
.y14f{bottom:818.015400px;}
.y1ab{bottom:820.545900px;}
.y174{bottom:825.803250px;}
.y9e{bottom:826.270350px;}
.y126{bottom:826.823400px;}
.yb8{bottom:828.320100px;}
.y34{bottom:833.244000px;}
.y59{bottom:833.244150px;}
.y8d{bottom:833.912400px;}
.yf7{bottom:834.124500px;}
.y87{bottom:835.418250px;}
.y14e{bottom:836.567400px;}
.y99{bottom:836.581800px;}
.y173{bottom:839.303250px;}
.yb7{bottom:841.820100px;}
.y8b{bottom:845.229900px;}
.y1ac{bottom:846.092400px;}
.y88{bottom:846.384900px;}
.y125{bottom:847.076100px;}
.y8c{bottom:849.156900px;}
.y33{bottom:851.244000px;}
.y58{bottom:851.244150px;}
.y172{bottom:852.803250px;}
.y14d{bottom:855.119400px;}
.yf8{bottom:857.392500px;}
.yb6{bottom:862.072950px;}
.y98{bottom:866.139300px;}
.y171{bottom:866.303250px;}
.y124{bottom:867.328950px;}
.y84{bottom:867.811950px;}
.y32{bottom:869.244000px;}
.y57{bottom:869.244150px;}
.y1ad{bottom:871.659900px;}
.y14c{bottom:873.671400px;}
.y2{bottom:879.369000px;}
.yf9{bottom:880.681500px;}
.yb5{bottom:882.325800px;}
.y93{bottom:882.369900px;}
.y31{bottom:887.244000px;}
.y56{bottom:887.244150px;}
.y123{bottom:887.581650px;}
.y92{bottom:891.651300px;}
.y14b{bottom:892.223400px;}
.y82{bottom:893.853900px;}
.y1ae{bottom:897.206400px;}
.y9d{bottom:899.340300px;}
.yb4{bottom:902.578650px;}
.yfa{bottom:903.949500px;}
.y30{bottom:905.244000px;}
.y55{bottom:905.244150px;}
.y83{bottom:907.085850px;}
.y122{bottom:907.834500px;}
.y14a{bottom:910.775550px;}
.yf0{bottom:919.799100px;}
.y1af{bottom:922.763400px;}
.yb3{bottom:922.831350px;}
.y2f{bottom:923.244000px;}
.y54{bottom:923.244150px;}
.yfb{bottom:927.238500px;}
.y121{bottom:928.087350px;}
.y149{bottom:929.327400px;}
.yed{bottom:930.869100px;}
.yf4{bottom:931.337100px;}
.ye2{bottom:933.875400px;}
.yd6{bottom:934.776300px;}
.yeb{bottom:935.207100px;}
.yf3{bottom:935.414100px;}
.yef{bottom:936.701100px;}
.y102{bottom:939.195150px;}
.y2e{bottom:941.244000px;}
.y53{bottom:941.244150px;}
.yec{bottom:942.407100px;}
.yb2{bottom:943.084200px;}
.ye1{bottom:946.433400px;}
.y140{bottom:946.578900px;}
.y143{bottom:947.176500px;}
.yd5{bottom:947.334300px;}
.y148{bottom:947.879400px;}
.y1b0{bottom:948.309900px;}
.y120{bottom:948.340050px;}
.yfc{bottom:950.517000px;}
.yf1{bottom:954.350100px;}
.yee{bottom:954.431100px;}
.yb1{bottom:956.584200px;}
.ye0{bottom:958.991400px;}
.y13f{bottom:959.136900px;}
.y2d{bottom:959.244000px;}
.y52{bottom:959.244150px;}
.y142{bottom:959.734500px;}
.yd4{bottom:959.892300px;}
.y147{bottom:961.379400px;}
.yf2{bottom:964.304100px;}
.y1{bottom:966.726000px;}
.y11f{bottom:968.592900px;}
.y97{bottom:970.939800px;}
.ydf{bottom:971.549400px;}
.y13e{bottom:971.694900px;}
.y141{bottom:972.292500px;}
.yd3{bottom:972.450300px;}
.yfd{bottom:973.795500px;}
.y1b1{bottom:973.856400px;}
.yb0{bottom:976.836900px;}
.y2c{bottom:977.244000px;}
.y51{bottom:977.244150px;}
.y146{bottom:981.632250px;}
.yde{bottom:984.107400px;}
.yd2{bottom:985.008300px;}
.y11e{bottom:988.845750px;}
.yaf{bottom:990.336900px;}
.y144{bottom:991.817400px;}
.y104{bottom:995.244150px;}
.ydd{bottom:1001.620950px;}
.y145{bottom:1001.884950px;}
.y11d{bottom:1002.345750px;}
.yd1{bottom:1002.523350px;}
.y91{bottom:1003.570800px;}
.yae{bottom:1010.589750px;}
.ye9{bottom:1013.244150px;}
.y22{bottom:1016.492100px;}
.y80{bottom:1031.244150px;}
.y21{bottom:1049.244150px;}
.y29{bottom:1098.259950px;}
.y28{bottom:1116.756000px;}
.y7f{bottom:1143.070950px;}
.y20{bottom:1143.779550px;}
.h14{height:21.930000px;}
.h15{height:24.123000px;}
.h16{height:26.352000px;}
.h18{height:30.618000px;}
.h12{height:30.702000px;}
.h13{height:30.744000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h1a{height:33.960000px;}
.h10{height:38.724000px;}
.hc{height:39.474000px;}
.hd{height:43.860000px;}
.h7{height:45.960000px;}
.he{height:48.180000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h11{height:49.788000px;}
.h2{height:55.152000px;}
.hf{height:65.790000px;}
.h5{height:78.132000px;}
.h4{height:119.055004px;}
.h19{height:213.244500px;}
.h17{height:242.460000px;}
.hb{height:1177.500000px;}
.ha{height:1177.795500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:345.730500px;}
.w4{width:348.661500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x43{left:3.349650px;}
.xc{left:34.015800px;}
.x5{left:63.779550px;}
.x42{left:68.079000px;}
.x41{left:73.917000px;}
.x56{left:76.267200px;}
.x7{left:80.787450px;}
.x40{left:85.320900px;}
.x3d{left:88.344900px;}
.xd{left:97.795200px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x52{left:109.373700px;}
.x4c{left:120.310350px;}
.x26{left:125.433000px;}
.x31{left:127.679400px;}
.x33{left:129.154500px;}
.x3f{left:131.292900px;}
.x4b{left:132.778500px;}
.x3e{left:142.533900px;}
.x4a{left:143.980500px;}
.x32{left:149.337150px;}
.x34{left:150.812250px;}
.x47{left:161.574900px;}
.x3a{left:169.533900px;}
.x38{left:186.048900px;}
.x39{left:197.487900px;}
.x4{left:203.484001px;}
.x3c{left:205.938900px;}
.x19{left:208.630650px;}
.x1e{left:219.801750px;}
.x1f{left:223.980750px;}
.x20{left:229.850250px;}
.x1c{left:239.762250px;}
.x37{left:244.971900px;}
.x51{left:281.195550px;}
.x49{left:283.113300px;}
.x24{left:284.881950px;}
.x1a{left:326.036250px;}
.x3b{left:343.962900px;}
.x18{left:351.976650px;}
.x28{left:354.669450px;}
.x27{left:363.754950px;}
.x44{left:365.669250px;}
.x14{left:384.745050px;}
.x50{left:399.685050px;}
.xf{left:403.752000px;}
.x15{left:409.503000px;}
.x1d{left:415.574250px;}
.x4e{left:417.948150px;}
.x22{left:438.444600px;}
.x4d{left:441.555150px;}
.xa{left:446.456700px;}
.x2a{left:452.637000px;}
.x3{left:454.959000px;}
.x55{left:463.464600px;}
.x48{left:465.834150px;}
.x46{left:474.094500px;}
.x29{left:476.683200px;}
.x23{left:480.472350px;}
.xe{left:492.818250px;}
.x21{left:494.313750px;}
.x10{left:497.308650px;}
.x35{left:506.659500px;}
.x36{left:528.317850px;}
.x2c{left:548.586450px;}
.x45{left:549.921300px;}
.x11{left:561.003600px;}
.x2b{left:567.987450px;}
.x13{left:570.206550px;}
.x16{left:576.498150px;}
.x1b{left:578.786250px;}
.x17{left:590.494650px;}
.x8{left:621.317700px;}
.x53{left:641.128350px;}
.x2d{left:658.017000px;}
.x2e{left:669.234000px;}
.x4f{left:671.433900px;}
.x12{left:674.155650px;}
.xb{left:681.093900px;}
.x25{left:682.440900px;}
.x54{left:700.102050px;}
.x9{left:703.951050px;}
.x6{left:741.452850px;}
.x30{left:752.850300px;}
.x2f{left:767.254650px;}
@media print{
.v1{vertical-align:-34.771733pt;}
.v6{vertical-align:-15.840000pt;}
.v4{vertical-align:-12.320000pt;}
.v2{vertical-align:-5.397867pt;}
.v7{vertical-align:-3.210667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:10.666667pt;}
.v3{vertical-align:12.320000pt;}
.v5{vertical-align:15.840000pt;}
.ls55{letter-spacing:-3.946667pt;}
.ls40{letter-spacing:-3.509333pt;}
.ls20{letter-spacing:-3.408000pt;}
.ls2f{letter-spacing:-2.949333pt;}
.ls4a{letter-spacing:-2.874667pt;}
.ls44{letter-spacing:-2.725333pt;}
.ls2d{letter-spacing:-2.240000pt;}
.ls56{letter-spacing:-1.941333pt;}
.ls59{letter-spacing:-1.866667pt;}
.ls39{letter-spacing:-1.792000pt;}
.ls31{letter-spacing:-1.680000pt;}
.ls5f{letter-spacing:-1.568000pt;}
.ls57{letter-spacing:-1.493333pt;}
.ls64{letter-spacing:-1.456000pt;}
.ls58{letter-spacing:-1.418667pt;}
.ls51{letter-spacing:-1.381333pt;}
.ls5e{letter-spacing:-1.306667pt;}
.ls35{letter-spacing:-1.232000pt;}
.ls61{letter-spacing:-1.194667pt;}
.ls63{letter-spacing:-1.157333pt;}
.ls53{letter-spacing:-0.912000pt;}
.ls37{letter-spacing:-0.896000pt;}
.ls29{letter-spacing:-0.858667pt;}
.ls4d{letter-spacing:-0.853333pt;}
.ls2c{letter-spacing:-0.800000pt;}
.ls5d{letter-spacing:-0.784000pt;}
.ls50{letter-spacing:-0.746667pt;}
.ls38{letter-spacing:-0.709333pt;}
.ls3d{letter-spacing:-0.597333pt;}
.ls3b{letter-spacing:-0.522667pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls3e{letter-spacing:-0.448000pt;}
.ls1b{letter-spacing:-0.432000pt;}
.ls41{letter-spacing:-0.410667pt;}
.ls33{letter-spacing:-0.373333pt;}
.ls32{letter-spacing:-0.336000pt;}
.ls52{letter-spacing:-0.298667pt;}
.ls62{letter-spacing:-0.261333pt;}
.ls12{letter-spacing:-0.240000pt;}
.ls4e{letter-spacing:-0.224000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls3f{letter-spacing:-0.186667pt;}
.ls4f{letter-spacing:-0.112000pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls30{letter-spacing:-0.074667pt;}
.ls14{letter-spacing:-0.048000pt;}
.ls5b{letter-spacing:-0.037333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000213pt;}
.ls4c{letter-spacing:0.000427pt;}
.ls60{letter-spacing:0.001600pt;}
.ls22{letter-spacing:0.037333pt;}
.ls11{letter-spacing:0.048000pt;}
.ls3a{letter-spacing:0.074667pt;}
.ls15{letter-spacing:0.096000pt;}
.ls65{letter-spacing:0.112000pt;}
.ls10{letter-spacing:0.144000pt;}
.ls25{letter-spacing:0.149333pt;}
.ls4{letter-spacing:0.176000pt;}
.ls13{letter-spacing:0.192000pt;}
.ls36{letter-spacing:0.224000pt;}
.lsf{letter-spacing:0.240000pt;}
.ls42{letter-spacing:0.261333pt;}
.ls1d{letter-spacing:0.288000pt;}
.ls45{letter-spacing:0.294933pt;}
.ls5c{letter-spacing:0.298667pt;}
.ls2e{letter-spacing:0.336000pt;}
.ls4b{letter-spacing:0.373333pt;}
.lsa{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.400000pt;}
.ls28{letter-spacing:0.410667pt;}
.ls1e{letter-spacing:0.432000pt;}
.ls18{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.480000pt;}
.ls43{letter-spacing:0.485333pt;}
.ls23{letter-spacing:0.522667pt;}
.ls1a{letter-spacing:0.528000pt;}
.ls3{letter-spacing:0.533333pt;}
.ls21{letter-spacing:0.560000pt;}
.ls1c{letter-spacing:0.576000pt;}
.ls27{letter-spacing:0.597333pt;}
.ls19{letter-spacing:0.624000pt;}
.ls26{letter-spacing:0.634667pt;}
.ls7{letter-spacing:0.672000pt;}
.ls6{letter-spacing:0.709333pt;}
.ls48{letter-spacing:0.720000pt;}
.ls8{letter-spacing:0.746667pt;}
.lse{letter-spacing:0.768000pt;}
.ls24{letter-spacing:0.784000pt;}
.ls2b{letter-spacing:0.821333pt;}
.ls49{letter-spacing:0.858667pt;}
.ls17{letter-spacing:0.864000pt;}
.ls5a{letter-spacing:0.896000pt;}
.ls47{letter-spacing:0.912000pt;}
.ls54{letter-spacing:0.926400pt;}
.ls3c{letter-spacing:0.933333pt;}
.ls66{letter-spacing:0.960000pt;}
.ls46{letter-spacing:1.008000pt;}
.ls16{letter-spacing:1.056000pt;}
.ls34{letter-spacing:1.157333pt;}
.ls9{letter-spacing:1.200000pt;}
.ls2{letter-spacing:12.522133pt;}
.ls2a{letter-spacing:115.305600pt;}
.ws4{word-spacing:-14.544000pt;}
.ws1ba{word-spacing:-14.304000pt;}
.ws163{word-spacing:-14.208000pt;}
.ws146{word-spacing:-13.824000pt;}
.ws135{word-spacing:-13.632000pt;}
.ws58{word-spacing:-13.488000pt;}
.ws5{word-spacing:-13.152000pt;}
.ws18b{word-spacing:-11.312000pt;}
.ws17c{word-spacing:-11.274667pt;}
.ws16c{word-spacing:-11.237333pt;}
.wsbc{word-spacing:-11.200000pt;}
.ws80{word-spacing:-11.162667pt;}
.wsab{word-spacing:-11.125333pt;}
.ws2{word-spacing:-11.088000pt;}
.wsac{word-spacing:-11.050667pt;}
.ws84{word-spacing:-11.013333pt;}
.wsad{word-spacing:-10.976000pt;}
.ws85{word-spacing:-10.938667pt;}
.ws1af{word-spacing:-10.901333pt;}
.wsa8{word-spacing:-10.826667pt;}
.ws1b4{word-spacing:-10.752000pt;}
.ws1b3{word-spacing:-10.714667pt;}
.ws1b2{word-spacing:-10.640000pt;}
.wsc2{word-spacing:-10.528000pt;}
.ws1b9{word-spacing:-10.490667pt;}
.wsc9{word-spacing:-10.453333pt;}
.ws191{word-spacing:-10.416000pt;}
.ws56{word-spacing:-10.378667pt;}
.wse3{word-spacing:-10.304000pt;}
.ws1a2{word-spacing:-10.192000pt;}
.ws1b5{word-spacing:-10.117333pt;}
.ws1b8{word-spacing:-10.005333pt;}
.wsd0{word-spacing:-9.781333pt;}
.ws1b1{word-spacing:-9.184000pt;}
.ws1b7{word-spacing:-8.922667pt;}
.ws55{word-spacing:-8.896000pt;}
.ws1b0{word-spacing:-8.512000pt;}
.ws57{word-spacing:-8.154667pt;}
.wsae{word-spacing:-8.138667pt;}
.ws1b6{word-spacing:-7.504000pt;}
.wsb5{word-spacing:-7.429333pt;}
.ws82{word-spacing:-6.019627pt;}
.ws52{word-spacing:-3.504000pt;}
.ws3b{word-spacing:-3.216000pt;}
.ws46{word-spacing:-3.072000pt;}
.ws140{word-spacing:-2.832000pt;}
.ws1e{word-spacing:-2.784000pt;}
.ws7a{word-spacing:-2.688000pt;}
.ws7{word-spacing:-2.640000pt;}
.ws39{word-spacing:-2.592000pt;}
.ws24{word-spacing:-2.544000pt;}
.ws151{word-spacing:-2.496000pt;}
.wsf{word-spacing:-2.448000pt;}
.ws5d{word-spacing:-2.352000pt;}
.wsfc{word-spacing:-2.256000pt;}
.ws32{word-spacing:-2.208000pt;}
.ws10b{word-spacing:-2.160000pt;}
.ws2e{word-spacing:-2.112000pt;}
.ws10e{word-spacing:-2.064000pt;}
.ws17{word-spacing:-2.016000pt;}
.ws15f{word-spacing:-1.968000pt;}
.ws51{word-spacing:-1.920000pt;}
.ws1d2{word-spacing:-1.904000pt;}
.ws70{word-spacing:-1.872000pt;}
.ws113{word-spacing:-1.866667pt;}
.ws111{word-spacing:-1.829333pt;}
.ws3d{word-spacing:-1.824000pt;}
.ws6{word-spacing:-1.818667pt;}
.wsd{word-spacing:-1.792000pt;}
.ws40{word-spacing:-1.776000pt;}
.ws10f{word-spacing:-1.754667pt;}
.ws1d{word-spacing:-1.728000pt;}
.wsb{word-spacing:-1.717333pt;}
.ws2f{word-spacing:-1.680000pt;}
.ws1cb{word-spacing:-1.642667pt;}
.ws43{word-spacing:-1.632000pt;}
.wsa2{word-spacing:-1.605333pt;}
.ws87{word-spacing:-1.584000pt;}
.wsa0{word-spacing:-1.536000pt;}
.ws1e3{word-spacing:-1.530667pt;}
.ws59{word-spacing:-1.493333pt;}
.ws53{word-spacing:-1.488000pt;}
.wsa5{word-spacing:-1.456000pt;}
.ws13c{word-spacing:-1.440000pt;}
.ws1ec{word-spacing:-1.418667pt;}
.ws47{word-spacing:-1.392000pt;}
.ws2d{word-spacing:-1.344000pt;}
.ws16{word-spacing:-1.296000pt;}
.ws8f{word-spacing:-1.248000pt;}
.ws1e9{word-spacing:-1.232000pt;}
.ws15{word-spacing:-1.200000pt;}
.wsa3{word-spacing:-1.194667pt;}
.ws22{word-spacing:-1.152000pt;}
.ws112{word-spacing:-1.120000pt;}
.ws74{word-spacing:-1.104000pt;}
.wsc{word-spacing:-1.045333pt;}
.ws26{word-spacing:-1.008000pt;}
.ws106{word-spacing:-0.960000pt;}
.ws14{word-spacing:-0.912000pt;}
.ws110{word-spacing:-0.858667pt;}
.ws1e2{word-spacing:-0.821333pt;}
.ws3a{word-spacing:-0.816000pt;}
.wsf0{word-spacing:-0.784000pt;}
.ws10{word-spacing:-0.768000pt;}
.ws1ad{word-spacing:-0.746667pt;}
.wsfe{word-spacing:-0.720000pt;}
.ws1d5{word-spacing:-0.709333pt;}
.ws8{word-spacing:-0.672000pt;}
.ws138{word-spacing:-0.634667pt;}
.ws7c{word-spacing:-0.624000pt;}
.wsa4{word-spacing:-0.597333pt;}
.ws1{word-spacing:-0.586667pt;}
.ws109{word-spacing:-0.576000pt;}
.ws137{word-spacing:-0.560000pt;}
.ws54{word-spacing:-0.533333pt;}
.ws30{word-spacing:-0.528000pt;}
.ws36{word-spacing:-0.480000pt;}
.ws1e7{word-spacing:-0.448000pt;}
.ws66{word-spacing:-0.432000pt;}
.ws136{word-spacing:-0.410667pt;}
.ws102{word-spacing:-0.384000pt;}
.ws145{word-spacing:-0.373333pt;}
.ws31{word-spacing:-0.288000pt;}
.ws1ae{word-spacing:-0.261333pt;}
.ws9d{word-spacing:-0.240000pt;}
.ws1dc{word-spacing:-0.224000pt;}
.ws4e{word-spacing:-0.192000pt;}
.wsa6{word-spacing:-0.186667pt;}
.ws69{word-spacing:-0.144000pt;}
.wsff{word-spacing:-0.096000pt;}
.ws33{word-spacing:-0.048000pt;}
.ws3{word-spacing:-0.037333pt;}
.ws0{word-spacing:0.000000pt;}
.ws6e{word-spacing:0.048000pt;}
.ws155{word-spacing:0.096000pt;}
.ws1e4{word-spacing:0.112000pt;}
.ws1d1{word-spacing:0.149333pt;}
.ws2c{word-spacing:0.192000pt;}
.ws1d4{word-spacing:0.224000pt;}
.ws35{word-spacing:0.240000pt;}
.ws1bf{word-spacing:0.288000pt;}
.ws8a{word-spacing:0.336000pt;}
.ws4c{word-spacing:0.384000pt;}
.ws72{word-spacing:0.432000pt;}
.ws1ca{word-spacing:0.448000pt;}
.ws25{word-spacing:0.480000pt;}
.ws1db{word-spacing:0.485333pt;}
.ws1e8{word-spacing:0.522667pt;}
.ws28{word-spacing:0.528000pt;}
.ws100{word-spacing:0.576000pt;}
.ws1c1{word-spacing:0.624000pt;}
.ws10c{word-spacing:0.672000pt;}
.ws8e{word-spacing:0.720000pt;}
.wsa7{word-spacing:0.746667pt;}
.ws23{word-spacing:0.768000pt;}
.ws114{word-spacing:0.800000pt;}
.ws1cd{word-spacing:0.821333pt;}
.ws15b{word-spacing:0.912000pt;}
.ws10d{word-spacing:1.056000pt;}
.ws3c{word-spacing:1.104000pt;}
.ws143{word-spacing:1.152000pt;}
.wsa{word-spacing:1.157333pt;}
.ws1d3{word-spacing:1.194667pt;}
.ws19{word-spacing:1.200000pt;}
.ws1bd{word-spacing:1.248000pt;}
.ws21{word-spacing:1.344000pt;}
.ws1cf{word-spacing:1.381333pt;}
.ws75{word-spacing:1.440000pt;}
.ws92{word-spacing:1.488000pt;}
.ws37{word-spacing:1.584000pt;}
.ws96{word-spacing:1.632000pt;}
.ws13f{word-spacing:1.680000pt;}
.ws45{word-spacing:1.728000pt;}
.ws1e6{word-spacing:1.754667pt;}
.wsfd{word-spacing:1.776000pt;}
.ws105{word-spacing:1.824000pt;}
.ws9{word-spacing:1.866667pt;}
.ws2b{word-spacing:1.872000pt;}
.ws7b{word-spacing:1.968000pt;}
.ws1c9{word-spacing:1.978667pt;}
.ws44{word-spacing:2.016000pt;}
.ws98{word-spacing:2.064000pt;}
.ws3f{word-spacing:2.112000pt;}
.ws29{word-spacing:2.160000pt;}
.ws79{word-spacing:2.256000pt;}
.ws103{word-spacing:2.304000pt;}
.ws1ef{word-spacing:2.314667pt;}
.ws4a{word-spacing:2.352000pt;}
.ws1de{word-spacing:2.389333pt;}
.ws27{word-spacing:2.400000pt;}
.ws5c{word-spacing:2.448000pt;}
.ws64{word-spacing:2.496000pt;}
.ws4b{word-spacing:2.544000pt;}
.ws1cc{word-spacing:2.576000pt;}
.ws1f{word-spacing:2.640000pt;}
.ws34{word-spacing:2.736000pt;}
.ws1c8{word-spacing:2.762667pt;}
.ws6a{word-spacing:2.928000pt;}
.ws38{word-spacing:2.976000pt;}
.ws1ce{word-spacing:2.986667pt;}
.ws88{word-spacing:3.024000pt;}
.ws1c{word-spacing:3.120000pt;}
.ws4f{word-spacing:3.216000pt;}
.ws6d{word-spacing:3.264000pt;}
.ws2a{word-spacing:3.312000pt;}
.ws95{word-spacing:3.360000pt;}
.ws1bb{word-spacing:3.456000pt;}
.ws15d{word-spacing:3.504000pt;}
.ws1df{word-spacing:3.509333pt;}
.ws153{word-spacing:3.552000pt;}
.ws104{word-spacing:3.600000pt;}
.ws93{word-spacing:3.648000pt;}
.ws1ea{word-spacing:3.733333pt;}
.ws8d{word-spacing:3.744000pt;}
.ws71{word-spacing:3.792000pt;}
.ws1ee{word-spacing:3.808000pt;}
.ws13b{word-spacing:3.840000pt;}
.ws5e{word-spacing:3.888000pt;}
.ws162{word-spacing:3.893333pt;}
.ws108{word-spacing:3.936000pt;}
.ws148{word-spacing:3.984000pt;}
.ws1ed{word-spacing:3.994667pt;}
.ws9b{word-spacing:4.032000pt;}
.ws14e{word-spacing:4.080000pt;}
.ws13e{word-spacing:4.176000pt;}
.ws1e0{word-spacing:4.256000pt;}
.ws149{word-spacing:4.368000pt;}
.ws8c{word-spacing:4.464000pt;}
.ws142{word-spacing:4.560000pt;}
.ws15a{word-spacing:4.656000pt;}
.ws1ab{word-spacing:4.704000pt;}
.ws9c{word-spacing:4.800000pt;}
.ws3e{word-spacing:4.896000pt;}
.ws101{word-spacing:4.944000pt;}
.ws1b{word-spacing:4.992000pt;}
.ws97{word-spacing:5.040000pt;}
.ws12{word-spacing:5.088000pt;}
.ws41{word-spacing:5.280000pt;}
.ws5b{word-spacing:5.328000pt;}
.ws1c0{word-spacing:5.376000pt;}
.ws13{word-spacing:5.472000pt;}
.ws147{word-spacing:5.568000pt;}
.ws18{word-spacing:5.616000pt;}
.ws62{word-spacing:5.664000pt;}
.ws65{word-spacing:5.760000pt;}
.ws1eb{word-spacing:5.824000pt;}
.ws20{word-spacing:5.856000pt;}
.ws154{word-spacing:5.904000pt;}
.ws8b{word-spacing:5.952000pt;}
.ws1c6{word-spacing:6.048000pt;}
.ws49{word-spacing:6.096000pt;}
.ws152{word-spacing:6.192000pt;}
.ws159{word-spacing:6.288000pt;}
.ws141{word-spacing:6.384000pt;}
.ws60{word-spacing:6.432000pt;}
.ws50{word-spacing:6.480000pt;}
.ws99{word-spacing:6.528000pt;}
.ws1d0{word-spacing:6.533333pt;}
.ws14c{word-spacing:6.672000pt;}
.ws1c3{word-spacing:6.720000pt;}
.ws14d{word-spacing:6.768000pt;}
.ws1c7{word-spacing:6.816000pt;}
.ws5a{word-spacing:6.864000pt;}
.ws1e5{word-spacing:6.981333pt;}
.wsa1{word-spacing:7.056000pt;}
.ws15e{word-spacing:7.152000pt;}
.ws13d{word-spacing:7.296000pt;}
.ws1c4{word-spacing:7.344000pt;}
.ws9e{word-spacing:7.392000pt;}
.ws139{word-spacing:7.440000pt;}
.ws73{word-spacing:7.776000pt;}
.ws13a{word-spacing:7.824000pt;}
.ws156{word-spacing:7.920000pt;}
.ws1ac{word-spacing:7.968000pt;}
.ws6c{word-spacing:8.016000pt;}
.ws1dd{word-spacing:8.064000pt;}
.ws144{word-spacing:8.208000pt;}
.ws1c5{word-spacing:8.256000pt;}
.ws1c2{word-spacing:8.304000pt;}
.ws10a{word-spacing:8.496000pt;}
.ws157{word-spacing:8.544000pt;}
.ws89{word-spacing:8.640000pt;}
.ws11{word-spacing:8.688000pt;}
.ws6b{word-spacing:8.784000pt;}
.ws48{word-spacing:8.832000pt;}
.ws42{word-spacing:8.880000pt;}
.ws94{word-spacing:9.072000pt;}
.ws9a{word-spacing:9.168000pt;}
.ws9f{word-spacing:9.216000pt;}
.ws107{word-spacing:9.264000pt;}
.ws5f{word-spacing:9.408000pt;}
.ws15c{word-spacing:9.648000pt;}
.ws1d6{word-spacing:9.706667pt;}
.ws4d{word-spacing:9.840000pt;}
.ws1a{word-spacing:9.888000pt;}
.ws91{word-spacing:10.032000pt;}
.ws67{word-spacing:10.272000pt;}
.ws160{word-spacing:10.464000pt;}
.ws14b{word-spacing:10.560000pt;}
.ws14f{word-spacing:10.608000pt;}
.ws77{word-spacing:10.656000pt;}
.ws6f{word-spacing:10.800000pt;}
.ws1be{word-spacing:10.896000pt;}
.ws78{word-spacing:11.088000pt;}
.ws76{word-spacing:11.232000pt;}
.ws1bc{word-spacing:11.376000pt;}
.ws14a{word-spacing:11.712000pt;}
.wse{word-spacing:12.048000pt;}
.ws61{word-spacing:12.288000pt;}
.ws68{word-spacing:12.384000pt;}
.ws90{word-spacing:14.352000pt;}
.ws150{word-spacing:14.400000pt;}
.ws63{word-spacing:15.168000pt;}
.ws1d9{word-spacing:15.306667pt;}
.ws1da{word-spacing:15.493333pt;}
.ws1d8{word-spacing:16.053333pt;}
.ws158{word-spacing:16.656000pt;}
.ws161{word-spacing:17.424000pt;}
.ws1e1{word-spacing:33.898667pt;}
.wsa9{word-spacing:36.782400pt;}
.ws81{word-spacing:41.934933pt;}
.ws1d7{word-spacing:81.722667pt;}
.ws11e{word-spacing:86.760533pt;}
.wsea{word-spacing:87.865600pt;}
.ws130{word-spacing:88.380800pt;}
.ws11d{word-spacing:90.180267pt;}
.ws132{word-spacing:90.949333pt;}
.ws128{word-spacing:91.229333pt;}
.ws11b{word-spacing:91.378667pt;}
.ws11c{word-spacing:91.494400pt;}
.ws12c{word-spacing:91.867733pt;}
.ws12e{word-spacing:99.125333pt;}
.wsaa{word-spacing:113.655467pt;}
.wsd7{word-spacing:116.757867pt;}
.wseb{word-spacing:120.543467pt;}
.wsdd{word-spacing:123.612267pt;}
.wsd1{word-spacing:123.694400pt;}
.ws166{word-spacing:123.734400pt;}
.wsb6{word-spacing:124.164800pt;}
.wsaf{word-spacing:124.556800pt;}
.wsca{word-spacing:125.602133pt;}
.wsc3{word-spacing:126.658667pt;}
.ws1a1{word-spacing:126.836800pt;}
.ws165{word-spacing:128.773333pt;}
.ws115{word-spacing:129.245867pt;}
.ws11f{word-spacing:129.671467pt;}
.ws134{word-spacing:129.675200pt;}
.ws12d{word-spacing:129.734933pt;}
.ws133{word-spacing:129.738667pt;}
.ws121{word-spacing:129.776000pt;}
.ws126{word-spacing:130.093333pt;}
.ws12f{word-spacing:130.858667pt;}
.ws119{word-spacing:131.138667pt;}
.ws18d{word-spacing:131.259733pt;}
.wse4{word-spacing:131.560533pt;}
.wsbd{word-spacing:131.680000pt;}
.ws131{word-spacing:132.184000pt;}
.ws171{word-spacing:132.787733pt;}
.ws198{word-spacing:132.981867pt;}
.ws18c{word-spacing:133.268267pt;}
.ws124{word-spacing:133.289067pt;}
.ws117{word-spacing:133.849067pt;}
.ws122{word-spacing:135.185600pt;}
.ws19c{word-spacing:136.076800pt;}
.ws12a{word-spacing:136.122667pt;}
.ws19b{word-spacing:136.737600pt;}
.ws16b{word-spacing:136.849600pt;}
.wsf6{word-spacing:137.154133pt;}
.ws17b{word-spacing:137.682133pt;}
.ws17f{word-spacing:138.480000pt;}
.ws18a{word-spacing:138.580800pt;}
.wsfb{word-spacing:138.774400pt;}
.ws16f{word-spacing:138.786133pt;}
.ws1a3{word-spacing:139.204267pt;}
.ws116{word-spacing:139.546133pt;}
.ws189{word-spacing:139.760533pt;}
.ws187{word-spacing:140.048000pt;}
.wsf5{word-spacing:140.573867pt;}
.wsf8{word-spacing:141.342933pt;}
.wsf7{word-spacing:141.622933pt;}
.ws181{word-spacing:141.639467pt;}
.ws184{word-spacing:141.728000pt;}
.ws176{word-spacing:141.758933pt;}
.wsf3{word-spacing:141.772267pt;}
.wsf4{word-spacing:141.888000pt;}
.wsf9{word-spacing:142.261333pt;}
.ws1a8{word-spacing:142.295467pt;}
.ws193{word-spacing:142.915200pt;}
.ws18e{word-spacing:143.982933pt;}
.ws1a9{word-spacing:144.852800pt;}
.ws174{word-spacing:145.151467pt;}
.ws179{word-spacing:146.495467pt;}
.ws19f{word-spacing:148.798933pt;}
.ws83{word-spacing:148.921067pt;}
.ws199{word-spacing:149.108800pt;}
.wsfa{word-spacing:149.518933pt;}
.ws196{word-spacing:150.068267pt;}
.ws169{word-spacing:150.303467pt;}
.ws192{word-spacing:151.565333pt;}
.wsf1{word-spacing:152.320000pt;}
.ws1aa{word-spacing:152.860800pt;}
.ws190{word-spacing:152.909333pt;}
.ws1a4{word-spacing:153.739200pt;}
.ws164{word-spacing:159.010133pt;}
.ws17d{word-spacing:163.295467pt;}
.ws18f{word-spacing:163.519467pt;}
.ws182{word-spacing:167.958400pt;}
.ws185{word-spacing:168.059200pt;}
.ws177{word-spacing:168.940267pt;}
.ws172{word-spacing:170.060267pt;}
.ws19d{word-spacing:170.956267pt;}
.ws194{word-spacing:171.184000pt;}
.ws120{word-spacing:172.716800pt;}
.ws125{word-spacing:173.818133pt;}
.ws129{word-spacing:174.669333pt;}
.ws11a{word-spacing:175.472000pt;}
.ws16d{word-spacing:175.611733pt;}
.ws118{word-spacing:175.789333pt;}
.ws12b{word-spacing:176.013333pt;}
.ws1a7{word-spacing:177.034133pt;}
.ws123{word-spacing:177.066133pt;}
.ws188{word-spacing:177.806933pt;}
.ws167{word-spacing:179.755733pt;}
.ws1a5{word-spacing:189.723733pt;}
.wsba{word-spacing:222.593600pt;}
.wsbb{word-spacing:240.043733pt;}
.wsbe{word-spacing:240.293867pt;}
.wse9{word-spacing:241.074133pt;}
.wsc5{word-spacing:241.099733pt;}
.wsda{word-spacing:242.048533pt;}
.wsb9{word-spacing:242.436800pt;}
.wsc1{word-spacing:242.746133pt;}
.wsb8{word-spacing:242.765333pt;}
.wsb2{word-spacing:243.059733pt;}
.ws7d{word-spacing:243.436267pt;}
.wsd9{word-spacing:243.492800pt;}
.wsb3{word-spacing:243.676267pt;}
.wsbf{word-spacing:243.922667pt;}
.wscc{word-spacing:244.993600pt;}
.wsc0{word-spacing:245.023467pt;}
.wscd{word-spacing:245.516800pt;}
.wsc8{word-spacing:245.755733pt;}
.wse8{word-spacing:245.818667pt;}
.wsc6{word-spacing:245.822933pt;}
.wsce{word-spacing:245.859733pt;}
.wsd3{word-spacing:246.498667pt;}
.wse0{word-spacing:246.789867pt;}
.wscf{word-spacing:246.852800pt;}
.wsdb{word-spacing:246.856533pt;}
.wsd6{word-spacing:247.047467pt;}
.wsdf{word-spacing:248.141333pt;}
.wsb1{word-spacing:248.335467pt;}
.wsd5{word-spacing:248.476800pt;}
.wse1{word-spacing:248.484267pt;}
.wsed{word-spacing:248.936533pt;}
.wse2{word-spacing:249.096533pt;}
.wsd4{word-spacing:249.384533pt;}
.wsc7{word-spacing:250.504000pt;}
.wse6{word-spacing:251.023467pt;}
.wse7{word-spacing:251.934400pt;}
.wsee{word-spacing:252.565333pt;}
.wsb4{word-spacing:253.136000pt;}
.wsef{word-spacing:254.506133pt;}
.wsdc{word-spacing:258.038400pt;}
.ws16a{word-spacing:334.326400pt;}
.wse5{word-spacing:355.894400pt;}
.wsb0{word-spacing:361.916800pt;}
.ws86{word-spacing:363.373333pt;}
.wsb7{word-spacing:384.028800pt;}
.wsec{word-spacing:391.010133pt;}
.wsde{word-spacing:391.581333pt;}
.ws170{word-spacing:395.956267pt;}
.ws19a{word-spacing:405.681600pt;}
.wscb{word-spacing:407.605333pt;}
.ws180{word-spacing:425.453333pt;}
.wsd2{word-spacing:426.532800pt;}
.wsc4{word-spacing:430.584000pt;}
.ws17a{word-spacing:433.715200pt;}
.ws175{word-spacing:450.545067pt;}
.ws197{word-spacing:457.914667pt;}
.ws1a6{word-spacing:487.316800pt;}
.ws1a0{word-spacing:518.607467pt;}
.wsd8{word-spacing:538.126400pt;}
.ws173{word-spacing:564.705067pt;}
.ws178{word-spacing:565.847467pt;}
.ws183{word-spacing:571.944000pt;}
.ws19e{word-spacing:585.824533pt;}
.ws186{word-spacing:602.314667pt;}
.ws16e{word-spacing:625.338133pt;}
.ws17e{word-spacing:631.752000pt;}
.ws168{word-spacing:636.825600pt;}
.ws195{word-spacing:690.216000pt;}
.wsf2{word-spacing:712.675733pt;}
.ws7f{word-spacing:770.014933pt;}
.ws7e{word-spacing:829.009600pt;}
.ws127{word-spacing:853.222400pt;}
._9{margin-left:-833.547733pt;}
._a{margin-left:-805.242667pt;}
._7{margin-left:-5.496000pt;}
._21{margin-left:-4.478400pt;}
._3{margin-left:-3.118400pt;}
._0{margin-left:-1.449600pt;}
._2{width:1.494400pt;}
._4{width:3.040000pt;}
._c{width:3.950400pt;}
._1e{width:4.858133pt;}
._5{width:20.906667pt;}
._3e{width:29.717333pt;}
._11{width:35.295467pt;}
._37{width:40.228267pt;}
._13{width:42.246933pt;}
._3b{width:47.700267pt;}
._6{width:48.944000pt;}
._8{width:56.540800pt;}
._22{width:58.646933pt;}
._2c{width:70.222400pt;}
._36{width:76.397867pt;}
._47{width:80.188800pt;}
._3c{width:88.792000pt;}
._23{width:113.505600pt;}
._1c{width:120.684267pt;}
._26{width:133.180800pt;}
._1b{width:155.403200pt;}
._18{width:160.879467pt;}
._27{width:165.028267pt;}
._3f{width:174.010667pt;}
._f{width:179.476800pt;}
._20{width:188.384000pt;}
._1a{width:189.557867pt;}
._2d{width:194.717333pt;}
._d{width:196.239467pt;}
._39{width:201.356267pt;}
._2b{width:211.038933pt;}
._12{width:212.721600pt;}
._15{width:225.284800pt;}
._3a{width:232.565867pt;}
._2f{width:243.377600pt;}
._e{width:247.611200pt;}
._19{width:259.660267pt;}
._1f{width:263.478400pt;}
._34{width:266.608533pt;}
._17{width:270.450667pt;}
._28{width:271.933333pt;}
._33{width:297.933867pt;}
._46{width:301.354667pt;}
._16{width:321.584533pt;}
._14{width:346.387733pt;}
._3d{width:351.794133pt;}
._44{width:362.024000pt;}
._29{width:372.796800pt;}
._42{width:377.995200pt;}
._1d{width:385.973333pt;}
._35{width:397.539733pt;}
._25{width:418.462400pt;}
._2a{width:421.122133pt;}
._24{width:445.715733pt;}
._2e{width:448.141333pt;}
._43{width:461.048000pt;}
._10{width:565.986667pt;}
._41{width:574.530667pt;}
._45{width:584.017067pt;}
._38{width:586.893867pt;}
._31{width:654.252267pt;}
._32{width:700.731733pt;}
._30{width:728.765333pt;}
._b{width:1044.094933pt;}
._40{width:1175.707733pt;}
._1{width:1655.651200pt;}
.fsb{font-size:21.653333pt;}
.fs8{font-size:26.666667pt;}
.fsc{font-size:27.840000pt;}
.fs9{font-size:29.333333pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:17.952800pt;}
.y1f{bottom:26.456667pt;}
.y5{bottom:59.133337pt;}
.yac{bottom:84.661333pt;}
.y7d{bottom:84.661467pt;}
.y13c{bottom:84.661600pt;}
.y4{bottom:86.333337pt;}
.y106{bottom:86.522400pt;}
.yc3{bottom:87.855733pt;}
.y13b{bottom:96.661600pt;}
.y1a9{bottom:98.047333pt;}
.y2b{bottom:100.661333pt;}
.y7c{bottom:100.661467pt;}
.y1a8{bottom:110.047333pt;}
.ycf{bottom:110.151200pt;}
.y11c{bottom:113.046000pt;}
.y2a{bottom:116.661333pt;}
.y7b{bottom:116.661467pt;}
.y1a7{bottom:122.047333pt;}
.y1e{bottom:123.790666pt;}
.yce{bottom:124.374133pt;}
.y11b{bottom:125.046000pt;}
.yab{bottom:132.661333pt;}
.ya3{bottom:132.661467pt;}
.y1a6{bottom:134.047333pt;}
.ycd{bottom:138.597067pt;}
.y11a{bottom:139.268933pt;}
.y1a5{bottom:146.047333pt;}
.yaa{bottom:148.661333pt;}
.y7a{bottom:148.661467pt;}
.y119{bottom:151.268933pt;}
.ycc{bottom:152.820000pt;}
.y27{bottom:156.401733pt;}
.y1a4{bottom:158.047333pt;}
.y13a{bottom:164.661333pt;}
.ya2{bottom:164.661467pt;}
.y118{bottom:165.492000pt;}
.ycb{bottom:167.042933pt;}
.y26{bottom:168.401733pt;}
.y1a3{bottom:170.047333pt;}
.y15{bottom:175.052000pt;}
.y117{bottom:177.492000pt;}
.y1b5{bottom:179.645600pt;}
.ya9{bottom:180.661333pt;}
.y79{bottom:180.661467pt;}
.yca{bottom:181.266000pt;}
.y1a2{bottom:182.047333pt;}
.y1d{bottom:186.238666pt;}
.y14{bottom:186.252002pt;}
.y25{bottom:187.015867pt;}
.y116{bottom:191.714933pt;}
.y16f{bottom:191.876800pt;}
.y1a1{bottom:194.047333pt;}
.yc9{bottom:195.488933pt;}
.ya8{bottom:196.661333pt;}
.y78{bottom:196.661467pt;}
.y1c{bottom:197.438668pt;}
.y13{bottom:197.452004pt;}
.y24{bottom:199.015867pt;}
.y115{bottom:203.714933pt;}
.y1a0{bottom:206.047333pt;}
.y100{bottom:207.546533pt;}
.y1b{bottom:208.638670pt;}
.y12{bottom:208.651996pt;}
.yc8{bottom:209.711867pt;}
.y23{bottom:211.015867pt;}
.ya7{bottom:212.661333pt;}
.y77{bottom:212.661467pt;}
.y114{bottom:217.937867pt;}
.y19f{bottom:218.047333pt;}
.y16e{bottom:220.404667pt;}
.yc7{bottom:223.934800pt;}
.y50{bottom:228.661333pt;}
.y76{bottom:228.661467pt;}
.y113{bottom:229.937867pt;}
.y19e{bottom:230.047333pt;}
.y1a{bottom:231.038664pt;}
.y11{bottom:231.052000pt;}
.y16d{bottom:236.895333pt;}
.yc6{bottom:238.157733pt;}
.y19d{bottom:242.047333pt;}
.y19{bottom:242.238666pt;}
.y10{bottom:242.252002pt;}
.y112{bottom:244.160800pt;}
.y4f{bottom:244.661333pt;}
.y75{bottom:244.661467pt;}
.yc4{bottom:252.380667pt;}
.y16c{bottom:253.386000pt;}
.y18{bottom:253.438668pt;}
.yf{bottom:253.451999pt;}
.y19c{bottom:254.047333pt;}
.y111{bottom:256.160800pt;}
.y4e{bottom:260.661333pt;}
.y74{bottom:260.661467pt;}
.yc5{bottom:264.380667pt;}
.y19b{bottom:266.047333pt;}
.y110{bottom:268.160800pt;}
.y16b{bottom:269.876667pt;}
.y17{bottom:275.838667pt;}
.ye{bottom:275.852001pt;}
.ya6{bottom:276.661333pt;}
.y73{bottom:276.661467pt;}
.y19a{bottom:278.047333pt;}
.y10f{bottom:282.383733pt;}
.y16a{bottom:286.367333pt;}
.y16{bottom:287.038667pt;}
.yd{bottom:287.052000pt;}
.y199{bottom:290.047333pt;}
.y4d{bottom:292.661333pt;}
.y72{bottom:292.661467pt;}
.y10e{bottom:294.383733pt;}
.y198{bottom:302.047333pt;}
.y169{bottom:302.858000pt;}
.y10d{bottom:306.383733pt;}
.ya5{bottom:308.661333pt;}
.ya1{bottom:308.661467pt;}
.yc{bottom:309.452000pt;}
.y197{bottom:314.047333pt;}
.y10c{bottom:318.383733pt;}
.y168{bottom:319.348667pt;}
.y4c{bottom:324.661333pt;}
.y71{bottom:324.661467pt;}
.y196{bottom:326.047333pt;}
.y10b{bottom:332.606667pt;}
.y167{bottom:335.839333pt;}
.y195{bottom:338.047333pt;}
.y4b{bottom:340.661333pt;}
.y70{bottom:340.661467pt;}
.yb{bottom:343.809333pt;}
.y10a{bottom:344.606667pt;}
.y194{bottom:350.047333pt;}
.y166{bottom:352.330000pt;}
.y4a{bottom:356.661333pt;}
.y6f{bottom:356.661467pt;}
.y109{bottom:358.829733pt;}
.y193{bottom:362.047333pt;}
.ya{bottom:362.706666pt;}
.y165{bottom:368.820667pt;}
.yd0{bottom:369.693067pt;}
.y108{bottom:370.829733pt;}
.y49{bottom:372.661333pt;}
.y6e{bottom:372.661467pt;}
.y192{bottom:374.047333pt;}
.y107{bottom:385.052667pt;}
.y164{bottom:385.311467pt;}
.y191{bottom:386.047333pt;}
.y48{bottom:388.661333pt;}
.y6d{bottom:388.661467pt;}
.y139{bottom:393.966000pt;}
.y190{bottom:398.047333pt;}
.y163{bottom:401.802000pt;}
.y47{bottom:404.661333pt;}
.y6c{bottom:404.661467pt;}
.y18f{bottom:410.047333pt;}
.y138{bottom:416.911867pt;}
.y162{bottom:418.292667pt;}
.ya4{bottom:420.661333pt;}
.y6b{bottom:420.661467pt;}
.y18e{bottom:422.047333pt;}
.y18d{bottom:434.047333pt;}
.y161{bottom:434.783467pt;}
.y137{bottom:434.914400pt;}
.y46{bottom:436.661333pt;}
.y6a{bottom:436.661467pt;}
.y18c{bottom:446.047333pt;}
.y160{bottom:451.274133pt;}
.y45{bottom:452.661333pt;}
.y69{bottom:452.661467pt;}
.y136{bottom:452.916800pt;}
.y18b{bottom:458.047333pt;}
.y9{bottom:462.990669pt;}
.y15f{bottom:467.764667pt;}
.y44{bottom:468.661333pt;}
.y68{bottom:468.661467pt;}
.y18a{bottom:470.047333pt;}
.y135{bottom:470.919333pt;}
.y8{bottom:478.990666pt;}
.y189{bottom:482.047333pt;}
.y15e{bottom:484.255467pt;}
.y43{bottom:484.661333pt;}
.y67{bottom:484.661467pt;}
.y134{bottom:488.921733pt;}
.y188{bottom:494.047333pt;}
.y7{bottom:494.990666pt;}
.y42{bottom:500.661333pt;}
.y66{bottom:500.661467pt;}
.y15d{bottom:500.746133pt;}
.y187{bottom:506.047333pt;}
.y133{bottom:506.924267pt;}
.y15c{bottom:512.746133pt;}
.y41{bottom:516.661333pt;}
.y65{bottom:516.661467pt;}
.y186{bottom:518.047333pt;}
.y132{bottom:524.926800pt;}
.y15b{bottom:529.236800pt;}
.y185{bottom:530.047333pt;}
.y40{bottom:532.661333pt;}
.y64{bottom:532.661467pt;}
.y131{bottom:536.926800pt;}
.y184{bottom:542.047333pt;}
.y15a{bottom:545.727467pt;}
.y3f{bottom:548.661333pt;}
.y103{bottom:548.661467pt;}
.y183{bottom:554.047333pt;}
.y130{bottom:554.929200pt;}
.y81{bottom:555.372800pt;}
.y159{bottom:562.218133pt;}
.ye8{bottom:564.242933pt;}
.y3e{bottom:564.661333pt;}
.y63{bottom:564.661467pt;}
.ydc{bottom:565.045067pt;}
.y182{bottom:566.047333pt;}
.y12f{bottom:572.931733pt;}
.ye7{bottom:575.405600pt;}
.ydb{bottom:576.207733pt;}
.y181{bottom:578.047333pt;}
.yad{bottom:578.060533pt;}
.y158{bottom:578.708800pt;}
.y3d{bottom:580.661333pt;}
.y62{bottom:580.661467pt;}
.ye6{bottom:586.568267pt;}
.yda{bottom:587.370400pt;}
.y180{bottom:590.047333pt;}
.y12e{bottom:590.934267pt;}
.y96{bottom:592.726933pt;}
.y157{bottom:595.199467pt;}
.y3c{bottom:596.661333pt;}
.y61{bottom:596.661467pt;}
.ye5{bottom:597.730933pt;}
.y94{bottom:598.112267pt;}
.yc2{bottom:598.272267pt;}
.yd9{bottom:598.533067pt;}
.y17f{bottom:602.047333pt;}
.y95{bottom:603.497600pt;}
.ye4{bottom:608.893600pt;}
.y12d{bottom:608.936667pt;}
.yd8{bottom:609.695733pt;}
.yc1{bottom:610.272267pt;}
.y156{bottom:611.690133pt;}
.y3b{bottom:612.661333pt;}
.y60{bottom:612.661467pt;}
.y17e{bottom:614.047333pt;}
.y13d{bottom:623.257333pt;}
.ye3{bottom:624.462667pt;}
.yd7{bottom:625.264667pt;}
.y17d{bottom:626.047333pt;}
.y12c{bottom:626.939200pt;}
.y155{bottom:628.180800pt;}
.yc0{bottom:628.274667pt;}
.y170{bottom:628.661333pt;}
.y5f{bottom:628.661467pt;}
.y17c{bottom:638.047333pt;}
.ybf{bottom:640.274667pt;}
.y3a{bottom:644.661333pt;}
.y5e{bottom:644.661467pt;}
.y154{bottom:644.671467pt;}
.y12b{bottom:644.941600pt;}
.y6{bottom:645.598667pt;}
.ybe{bottom:646.277200pt;}
.y17b{bottom:650.047333pt;}
.yea{bottom:655.603867pt;}
.ybd{bottom:658.277200pt;}
.y39{bottom:660.661333pt;}
.y5d{bottom:660.661467pt;}
.y153{bottom:661.162133pt;}
.y17a{bottom:662.047333pt;}
.y12a{bottom:662.944133pt;}
.y9c{bottom:664.808267pt;}
.y3{bottom:668.977329pt;}
.ybc{bottom:670.277200pt;}
.yff{bottom:670.444000pt;}
.y90{bottom:671.964267pt;}
.y8a{bottom:672.041067pt;}
.y179{bottom:674.047333pt;}
.y101{bottom:674.467733pt;}
.y38{bottom:676.661333pt;}
.y5c{bottom:676.661467pt;}
.y152{bottom:677.652800pt;}
.y89{bottom:679.081067pt;}
.y129{bottom:680.946667pt;}
.y8f{bottom:681.670933pt;}
.y1aa{bottom:683.708800pt;}
.y178{bottom:686.047333pt;}
.ybb{bottom:688.279600pt;}
.yfe{bottom:689.868000pt;}
.y9b{bottom:691.081600pt;}
.y37{bottom:692.661333pt;}
.y105{bottom:692.661467pt;}
.y151{bottom:694.143467pt;}
.y8e{bottom:695.103467pt;}
.y1b4{bottom:697.973333pt;}
.y177{bottom:698.047333pt;}
.y128{bottom:698.949200pt;}
.yf5{bottom:700.041333pt;}
.yba{bottom:700.279600pt;}
.y1b3{bottom:701.997867pt;}
.y36{bottom:708.661333pt;}
.y5b{bottom:708.661467pt;}
.y176{bottom:710.047333pt;}
.y150{bottom:710.634133pt;}
.y86{bottom:712.058000pt;}
.ya0{bottom:713.129867pt;}
.y127{bottom:716.951600pt;}
.y9a{bottom:717.354933pt;}
.yb9{bottom:718.282133pt;}
.y85{bottom:719.098000pt;}
.y1b2{bottom:719.228800pt;}
.yf6{bottom:720.742667pt;}
.y9f{bottom:721.255200pt;}
.y175{bottom:722.047333pt;}
.y35{bottom:724.661333pt;}
.y5a{bottom:724.661467pt;}
.y14f{bottom:727.124800pt;}
.y1ab{bottom:729.374133pt;}
.y174{bottom:734.047333pt;}
.y9e{bottom:734.462533pt;}
.y126{bottom:734.954133pt;}
.yb8{bottom:736.284533pt;}
.y34{bottom:740.661333pt;}
.y59{bottom:740.661467pt;}
.y8d{bottom:741.255467pt;}
.yf7{bottom:741.444000pt;}
.y87{bottom:742.594000pt;}
.y14e{bottom:743.615467pt;}
.y99{bottom:743.628267pt;}
.y173{bottom:746.047333pt;}
.yb7{bottom:748.284533pt;}
.y8b{bottom:751.315467pt;}
.y1ac{bottom:752.082133pt;}
.y88{bottom:752.342133pt;}
.y125{bottom:752.956533pt;}
.y8c{bottom:754.806133pt;}
.y33{bottom:756.661333pt;}
.y58{bottom:756.661467pt;}
.y172{bottom:758.047333pt;}
.y14d{bottom:760.106133pt;}
.yf8{bottom:762.126667pt;}
.yb6{bottom:766.287067pt;}
.y98{bottom:769.901600pt;}
.y171{bottom:770.047333pt;}
.y124{bottom:770.959067pt;}
.y84{bottom:771.388400pt;}
.y32{bottom:772.661333pt;}
.y57{bottom:772.661467pt;}
.y1ad{bottom:774.808800pt;}
.y14c{bottom:776.596800pt;}
.y2{bottom:781.661334pt;}
.yf9{bottom:782.828000pt;}
.yb5{bottom:784.289600pt;}
.y93{bottom:784.328800pt;}
.y31{bottom:788.661333pt;}
.y56{bottom:788.661467pt;}
.y123{bottom:788.961467pt;}
.y92{bottom:792.578933pt;}
.y14b{bottom:793.087467pt;}
.y82{bottom:794.536800pt;}
.y1ae{bottom:797.516800pt;}
.y9d{bottom:799.413600pt;}
.yb4{bottom:802.292133pt;}
.yfa{bottom:803.510667pt;}
.y30{bottom:804.661333pt;}
.y55{bottom:804.661467pt;}
.y83{bottom:806.298533pt;}
.y122{bottom:806.964000pt;}
.y14a{bottom:809.578267pt;}
.yf0{bottom:817.599200pt;}
.y1af{bottom:820.234133pt;}
.yb3{bottom:820.294533pt;}
.y2f{bottom:820.661333pt;}
.y54{bottom:820.661467pt;}
.yfb{bottom:824.212000pt;}
.y121{bottom:824.966533pt;}
.y149{bottom:826.068800pt;}
.yed{bottom:827.439200pt;}
.yf4{bottom:827.855200pt;}
.ye2{bottom:830.111467pt;}
.yd6{bottom:830.912267pt;}
.yeb{bottom:831.295200pt;}
.yf3{bottom:831.479200pt;}
.yef{bottom:832.623200pt;}
.y102{bottom:834.840133pt;}
.y2e{bottom:836.661333pt;}
.y53{bottom:836.661467pt;}
.yec{bottom:837.695200pt;}
.yb2{bottom:838.297067pt;}
.ye1{bottom:841.274133pt;}
.y140{bottom:841.403467pt;}
.y143{bottom:841.934667pt;}
.yd5{bottom:842.074933pt;}
.y148{bottom:842.559467pt;}
.y1b0{bottom:842.942133pt;}
.y120{bottom:842.968933pt;}
.yfc{bottom:844.904000pt;}
.yf1{bottom:848.311200pt;}
.yee{bottom:848.383200pt;}
.yb1{bottom:850.297067pt;}
.ye0{bottom:852.436800pt;}
.y13f{bottom:852.566133pt;}
.y2d{bottom:852.661333pt;}
.y52{bottom:852.661467pt;}
.y142{bottom:853.097333pt;}
.yd4{bottom:853.237600pt;}
.y147{bottom:854.559467pt;}
.yf2{bottom:857.159200pt;}
.y1{bottom:859.312000pt;}
.y11f{bottom:860.971467pt;}
.y97{bottom:863.057600pt;}
.ydf{bottom:863.599467pt;}
.y13e{bottom:863.728800pt;}
.y141{bottom:864.260000pt;}
.yd3{bottom:864.400267pt;}
.yfd{bottom:865.596000pt;}
.y1b1{bottom:865.650133pt;}
.yb0{bottom:868.299467pt;}
.y2c{bottom:868.661333pt;}
.y51{bottom:868.661467pt;}
.y146{bottom:872.562000pt;}
.yde{bottom:874.762133pt;}
.yd2{bottom:875.562933pt;}
.y11e{bottom:878.974000pt;}
.yaf{bottom:880.299467pt;}
.y144{bottom:881.615467pt;}
.y104{bottom:884.661467pt;}
.ydd{bottom:890.329733pt;}
.y145{bottom:890.564400pt;}
.y11d{bottom:890.974000pt;}
.yd1{bottom:891.131867pt;}
.y91{bottom:892.062933pt;}
.yae{bottom:898.302000pt;}
.ye9{bottom:900.661467pt;}
.y22{bottom:903.548533pt;}
.y80{bottom:916.661467pt;}
.y21{bottom:932.661467pt;}
.y29{bottom:976.231067pt;}
.y28{bottom:992.672000pt;}
.y7f{bottom:1016.063067pt;}
.y20{bottom:1016.692933pt;}
.h14{height:19.493333pt;}
.h15{height:21.442667pt;}
.h16{height:23.424000pt;}
.h18{height:27.216000pt;}
.h12{height:27.290667pt;}
.h13{height:27.328000pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h1a{height:30.186667pt;}
.h10{height:34.421333pt;}
.hc{height:35.088000pt;}
.hd{height:38.986667pt;}
.h7{height:40.853333pt;}
.he{height:42.826667pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h11{height:44.256000pt;}
.h2{height:49.024000pt;}
.hf{height:58.480000pt;}
.h5{height:69.450667pt;}
.h4{height:105.826671pt;}
.h19{height:189.550667pt;}
.h17{height:215.520000pt;}
.hb{height:1046.666667pt;}
.ha{height:1046.929333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:307.316000pt;}
.w4{width:309.921333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x43{left:2.977467pt;}
.xc{left:30.236267pt;}
.x5{left:56.692933pt;}
.x42{left:60.514667pt;}
.x41{left:65.704000pt;}
.x56{left:67.793067pt;}
.x7{left:71.811067pt;}
.x40{left:75.840800pt;}
.x3d{left:78.528800pt;}
.xd{left:86.929067pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x52{left:97.221067pt;}
.x4c{left:106.942533pt;}
.x26{left:111.496000pt;}
.x31{left:113.492800pt;}
.x33{left:114.804000pt;}
.x3f{left:116.704800pt;}
.x4b{left:118.025333pt;}
.x3e{left:126.696800pt;}
.x4a{left:127.982667pt;}
.x32{left:132.744133pt;}
.x34{left:134.055333pt;}
.x47{left:143.622133pt;}
.x3a{left:150.696800pt;}
.x38{left:165.376800pt;}
.x39{left:175.544800pt;}
.x4{left:180.874667pt;}
.x3c{left:183.056800pt;}
.x19{left:185.449467pt;}
.x1e{left:195.379333pt;}
.x1f{left:199.094000pt;}
.x20{left:204.311333pt;}
.x1c{left:213.122000pt;}
.x37{left:217.752800pt;}
.x51{left:249.951600pt;}
.x49{left:251.656267pt;}
.x24{left:253.228400pt;}
.x1a{left:289.810000pt;}
.x3b{left:305.744800pt;}
.x18{left:312.868133pt;}
.x28{left:315.261733pt;}
.x27{left:323.337733pt;}
.x44{left:325.039333pt;}
.x14{left:341.995600pt;}
.x50{left:355.275600pt;}
.xf{left:358.890667pt;}
.x15{left:364.002667pt;}
.x1d{left:369.399333pt;}
.x4e{left:371.509467pt;}
.x22{left:389.728533pt;}
.x4d{left:392.493467pt;}
.xa{left:396.850400pt;}
.x2a{left:402.344000pt;}
.x3{left:404.408000pt;}
.x55{left:411.968533pt;}
.x48{left:414.074800pt;}
.x46{left:421.417333pt;}
.x29{left:423.718400pt;}
.x23{left:427.086533pt;}
.xe{left:438.060667pt;}
.x21{left:439.390000pt;}
.x10{left:442.052133pt;}
.x35{left:450.364000pt;}
.x36{left:469.615867pt;}
.x2c{left:487.632400pt;}
.x45{left:488.818933pt;}
.x11{left:498.669867pt;}
.x2b{left:504.877733pt;}
.x13{left:506.850267pt;}
.x16{left:512.442800pt;}
.x1b{left:514.476667pt;}
.x17{left:524.884133pt;}
.x8{left:552.282400pt;}
.x53{left:569.891867pt;}
.x2d{left:584.904000pt;}
.x2e{left:594.874667pt;}
.x4f{left:596.830133pt;}
.x12{left:599.249467pt;}
.xb{left:605.416800pt;}
.x25{left:606.614133pt;}
.x54{left:622.312933pt;}
.x9{left:625.734267pt;}
.x6{left:659.069200pt;}
.x30{left:669.200267pt;}
.x2f{left:682.004133pt;}
}




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