
    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_b9363849e4239b6ddfd97146.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_6880a18efec882278b6aedb4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.203000;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_ec4531f6964a9c1905f21be8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_20f3874d0a7d00a293338d9b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_9de43eb2464a7b87db00cb3b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;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_cf8432701e00c9dd9f115f01.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.113000;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_416919299631a9f6b1011a11.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.483000;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_2fef55a1f2b5a62bc767f28c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.483000;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_297c0bde39d7169c5a63f92e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.222000;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_36c57130ec95bd482e2ac315.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.882051;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_1fc9cd5597d00b46bd5635ae.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.668000;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_c21d020e6de934266a4e7a32.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.874000;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_cf61ef945237fb1a44e69b09.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.939000;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_d6ddac75e576c63300658a4d.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_216d117f571719a1f1ed64b8.woff2')format("woff");}.fff{font-family:fff;line-height:0.727000;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_883794cb8c1d598d4dd9d858.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938000;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_35c49ee649f5c2601225da5a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.857000;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_ee3aab5c21e088b897a188e2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_aaea179170013073a9f2220d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.857000;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_794a7eedaec86aba3602ddc7.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.727000;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_883794cb8c1d598d4dd9d858.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938000;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_694966103f4a737cbc1c205a.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_1ee4e572752aa20a5472a638.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.874000;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_35c49ee649f5c2601225da5a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.857000;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_cf61ef945237fb1a44e69b09.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.939000;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_fe1bdd3026b2c24044edb67f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.732000;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_694966103f4a737cbc1c205a.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_937289cd4ccd4607307644f3.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.874000;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_4e9270f261147c38f7fd43ff.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.732000;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_694966103f4a737cbc1c205a.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_4dfc059ac19a92c4381880db.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.874000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_35c49ee649f5c2601225da5a.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.857000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_5a3d6a923a1dd239000f5b5e.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.689000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_a326b4e082ac6cd047c6b028.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.386786;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_1122eac637cf2c17b02b5fc9.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.984000;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:ff24;src:url('chunks/assets/font_db0ea2bf414ad56921b00d75.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.972000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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);}
.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);}
.v6{vertical-align:-23.154407px;}
.v3{vertical-align:-18.000000px;}
.v4{vertical-align:-14.902046px;}
.v7{vertical-align:-10.335937px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.487915px;}
.v8{vertical-align:14.759994px;}
.v9{vertical-align:18.000003px;}
.v5{vertical-align:23.491188px;}
.v2{vertical-align:26.400147px;}
.ls1c{letter-spacing:-6.468000px;}
.ls32{letter-spacing:-2.523245px;}
.ls3d{letter-spacing:-1.017830px;}
.ls69{letter-spacing:-0.999600px;}
.ls6e{letter-spacing:-0.900000px;}
.ls41{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.600000px;}
.ls3b{letter-spacing:-0.592007px;}
.ls58{letter-spacing:-0.588000px;}
.ls3a{letter-spacing:-0.549721px;}
.ls1e{letter-spacing:-0.470400px;}
.ls66{letter-spacing:-0.411600px;}
.ls1d{letter-spacing:-0.352800px;}
.ls1f{letter-spacing:-0.331200px;}
.ls5e{letter-spacing:-0.269006px;}
.ls62{letter-spacing:-0.224172px;}
.ls40{letter-spacing:-0.210586px;}
.ls5f{letter-spacing:-0.179338px;}
.ls3f{letter-spacing:-0.175488px;}
.ls3c{letter-spacing:-0.169145px;}
.ls60{letter-spacing:-0.134503px;}
.ls31{letter-spacing:-0.112482px;}
.ls36{letter-spacing:-0.105293px;}
.ls30{letter-spacing:-0.098951px;}
.ls61{letter-spacing:-0.089669px;}
.ls35{letter-spacing:-0.070195px;}
.ls5d{letter-spacing:-0.055541px;}
.ls33{letter-spacing:-0.049475px;}
.ls54{letter-spacing:-0.049300px;}
.ls4e{letter-spacing:-0.047083px;}
.ls4f{letter-spacing:-0.044841px;}
.ls63{letter-spacing:-0.044834px;}
.ls34{letter-spacing:-0.035098px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000002px;}
.lse{letter-spacing:0.000007px;}
.ls65{letter-spacing:0.000030px;}
.ls45{letter-spacing:0.000155px;}
.ls25{letter-spacing:0.000491px;}
.ls18{letter-spacing:0.005521px;}
.ls21{letter-spacing:0.010186px;}
.ls24{letter-spacing:0.024533px;}
.ls2f{letter-spacing:0.031715px;}
.ls29{letter-spacing:0.035098px;}
.ls2b{letter-spacing:0.042286px;}
.ls64{letter-spacing:0.044834px;}
.ls4d{letter-spacing:0.047083px;}
.ls2d{letter-spacing:0.063430px;}
.ls27{letter-spacing:0.070195px;}
.ls43{letter-spacing:0.083806px;}
.ls44{letter-spacing:0.084044px;}
.ls2c{letter-spacing:0.084572px;}
.ls48{letter-spacing:0.084976px;}
.ls56{letter-spacing:0.089669px;}
.ls49{letter-spacing:0.089682px;}
.ls42{letter-spacing:0.093305px;}
.ls53{letter-spacing:0.093905px;}
.ls2e{letter-spacing:0.095144px;}
.ls26{letter-spacing:0.098951px;}
.ls39{letter-spacing:0.105293px;}
.ls55{letter-spacing:0.111083px;}
.ls46{letter-spacing:0.111742px;}
.lsa{letter-spacing:0.129345px;}
.ls38{letter-spacing:0.140390px;}
.ls6{letter-spacing:0.241066px;}
.lsc{letter-spacing:0.270480px;}
.ls5c{letter-spacing:0.277707px;}
.ls3{letter-spacing:0.293983px;}
.lsd{letter-spacing:0.293994px;}
.ls2{letter-spacing:0.294000px;}
.lsb{letter-spacing:0.299874px;}
.ls9{letter-spacing:0.305764px;}
.ls57{letter-spacing:0.313841px;}
.ls3e{letter-spacing:0.350976px;}
.ls20{letter-spacing:0.352800px;}
.ls5{letter-spacing:0.358803px;}
.ls37{letter-spacing:0.386074px;}
.ls22{letter-spacing:0.588000px;}
.ls28{letter-spacing:0.807245px;}
.ls6c{letter-spacing:0.829039px;}
.ls6a{letter-spacing:0.882000px;}
.ls6b{letter-spacing:0.946659px;}
.ls1a{letter-spacing:1.293600px;}
.ls1b{letter-spacing:1.293601px;}
.ls12{letter-spacing:2.175601px;}
.ls6d{letter-spacing:2.940000px;}
.ls68{letter-spacing:3.645600px;}
.ls23{letter-spacing:4.057200px;}
.ls19{letter-spacing:5.115600px;}
.ls0{letter-spacing:5.460000px;}
.ls16{letter-spacing:6.232800px;}
.ls17{letter-spacing:6.232802px;}
.ls10{letter-spacing:6.997200px;}
.ls13{letter-spacing:8.937600px;}
.ls14{letter-spacing:8.937603px;}
.ls11{letter-spacing:10.001824px;}
.ls15{letter-spacing:11.995196px;}
.lsf{letter-spacing:11.995201px;}
.ls67{letter-spacing:13.053600px;}
.ls47{letter-spacing:13.487997px;}
.ls1{letter-spacing:16.860000px;}
.ls51{letter-spacing:108.156486px;}
.ls52{letter-spacing:108.201334px;}
.ls4b{letter-spacing:110.308858px;}
.ls4c{letter-spacing:110.353696px;}
.ls50{letter-spacing:119.680621px;}
.ls4a{letter-spacing:121.832993px;}
.ls59{letter-spacing:162.791840px;}
.ls5a{letter-spacing:177.399228px;}
.ls5b{letter-spacing:191.562278px;}
.ls2a{letter-spacing:596.508271px;}
.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;}
}
.ws120{word-spacing:-204.114635px;}
.ws11f{word-spacing:-189.951585px;}
.ws11e{word-spacing:-175.344197px;}
.wse4{word-spacing:-131.967059px;}
.wse9{word-spacing:-129.814687px;}
.wse5{word-spacing:-120.442923px;}
.wsea{word-spacing:-118.290551px;}
.wsf4{word-spacing:-110.353696px;}
.wsf5{word-spacing:-110.308858px;}
.wsfa{word-spacing:-108.201334px;}
.wsfb{word-spacing:-108.156486px;}
.ws160{word-spacing:-26.871601px;}
.ws73{word-spacing:-19.580400px;}
.ws161{word-spacing:-17.463600px;}
.ws180{word-spacing:-16.758000px;}
.wsb3{word-spacing:-13.853112px;}
.ws1a{word-spacing:-13.818000px;}
.ws72{word-spacing:-13.465200px;}
.ws162{word-spacing:-12.818400px;}
.ws122{word-spacing:-12.663439px;}
.wsb1{word-spacing:-12.597984px;}
.ws11d{word-spacing:-12.552356px;}
.ws2{word-spacing:-12.483600px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-11.820000px;}
.wsb2{word-spacing:-11.230916px;}
.ws4{word-spacing:-10.800000px;}
.wsfe{word-spacing:-10.611242px;}
.ws19b{word-spacing:-10.508400px;}
.ws128{word-spacing:-10.446415px;}
.wse6{word-spacing:-10.223748px;}
.ws125{word-spacing:-10.222243px;}
.ws6{word-spacing:-10.200000px;}
.ws0{word-spacing:-10.176000px;}
.wsb5{word-spacing:-10.143206px;}
.ws123{word-spacing:-10.132575px;}
.ws1{word-spacing:-10.117800px;}
.wsbc{word-spacing:-10.108108px;}
.ws124{word-spacing:-9.998071px;}
.ws127{word-spacing:-9.953237px;}
.ws126{word-spacing:-9.908403px;}
.ws182{word-spacing:-9.855000px;}
.wsbd{word-spacing:-9.757132px;}
.wsc2{word-spacing:-9.696000px;}
.ws19{word-spacing:-9.672600px;}
.wsb4{word-spacing:-9.651840px;}
.wsb7{word-spacing:-9.598967px;}
.wsbe{word-spacing:-9.581645px;}
.wsc1{word-spacing:-9.546547px;}
.ws181{word-spacing:-9.315000px;}
.ws7{word-spacing:-9.198000px;}
.wsb6{word-spacing:-9.006960px;}
.wsb8{word-spacing:-8.964674px;}
.wsbb{word-spacing:-8.739302px;}
.wsc3{word-spacing:-8.640000px;}
.ws199{word-spacing:-8.100000px;}
.wsc0{word-spacing:-7.967155px;}
.wsba{word-spacing:-7.932057px;}
.wsbf{word-spacing:-7.896960px;}
.wse2{word-spacing:-7.877783px;}
.wse1{word-spacing:-7.849847px;}
.wsfd{word-spacing:-7.405658px;}
.ws19a{word-spacing:-6.898500px;}
.wsa{word-spacing:-2.772000px;}
.wsf2{word-spacing:-2.016000px;}
.ws168{word-spacing:-1.528800px;}
.ws112{word-spacing:-1.411200px;}
.ws174{word-spacing:-1.058400px;}
.ws179{word-spacing:-0.999600px;}
.ws190{word-spacing:-0.940800px;}
.ws197{word-spacing:-0.882000px;}
.ws15a{word-spacing:-0.823200px;}
.ws9{word-spacing:-0.780000px;}
.ws16d{word-spacing:-0.705600px;}
.ws56{word-spacing:-0.646800px;}
.ws194{word-spacing:-0.588000px;}
.wsc9{word-spacing:-0.529200px;}
.ws149{word-spacing:-0.411600px;}
.ws18c{word-spacing:-0.352800px;}
.wse{word-spacing:-0.294000px;}
.ws13d{word-spacing:-0.277707px;}
.ws3d{word-spacing:-0.235200px;}
.ws147{word-spacing:-0.176400px;}
.wsd4{word-spacing:-0.140390px;}
.wsdd{word-spacing:-0.127463px;}
.ws14d{word-spacing:-0.117600px;}
.wsd7{word-spacing:-0.105293px;}
.wsd9{word-spacing:-0.095144px;}
.wsf6{word-spacing:-0.089682px;}
.ws13f{word-spacing:-0.089669px;}
.wsf3{word-spacing:-0.084976px;}
.wsd3{word-spacing:-0.070195px;}
.wsd8{word-spacing:-0.063430px;}
.wsf7{word-spacing:-0.047083px;}
.wsdf{word-spacing:-0.046652px;}
.wse0{word-spacing:-0.041903px;}
.wsd6{word-spacing:-0.035098px;}
.wsda{word-spacing:-0.031715px;}
.ws8{word-spacing:0.000000px;}
.wsd2{word-spacing:0.035098px;}
.ws142{word-spacing:0.044834px;}
.wsf9{word-spacing:0.044841px;}
.wsf8{word-spacing:0.047083px;}
.ws11c{word-spacing:0.049300px;}
.ws18d{word-spacing:0.058800px;}
.wsd5{word-spacing:0.070195px;}
.wsd1{word-spacing:0.098951px;}
.wsdb{word-spacing:0.105293px;}
.ws115{word-spacing:0.117600px;}
.ws141{word-spacing:0.179338px;}
.ws140{word-spacing:0.224172px;}
.ws116{word-spacing:0.235200px;}
.ws13e{word-spacing:0.269006px;}
.wsce{word-spacing:0.294000px;}
.wsa1{word-spacing:0.331200px;}
.ws85{word-spacing:0.352800px;}
.ws15d{word-spacing:0.411600px;}
.ws9b{word-spacing:0.470400px;}
.ws4d{word-spacing:0.529200px;}
.wsc5{word-spacing:0.588000px;}
.wsb{word-spacing:0.600000px;}
.wsb9{word-spacing:0.634293px;}
.wsca{word-spacing:0.646800px;}
.ws99{word-spacing:0.705600px;}
.wsdc{word-spacing:0.720000px;}
.ws7c{word-spacing:0.764400px;}
.ws9c{word-spacing:0.823200px;}
.wscf{word-spacing:0.882000px;}
.ws198{word-spacing:0.900000px;}
.ws2b{word-spacing:0.940800px;}
.ws134{word-spacing:0.999600px;}
.ws6b{word-spacing:1.058400px;}
.ws12e{word-spacing:1.117200px;}
.ws30{word-spacing:1.234800px;}
.ws70{word-spacing:1.293600px;}
.ws4e{word-spacing:1.352400px;}
.ws16c{word-spacing:1.411200px;}
.wsc7{word-spacing:1.470000px;}
.ws7e{word-spacing:1.528800px;}
.ws105{word-spacing:1.587600px;}
.ws87{word-spacing:1.646400px;}
.ws137{word-spacing:1.705200px;}
.ws7b{word-spacing:1.764000px;}
.wsaf{word-spacing:1.822800px;}
.ws188{word-spacing:1.881600px;}
.ws28{word-spacing:1.940400px;}
.ws166{word-spacing:1.999200px;}
.ws16a{word-spacing:2.058000px;}
.wsae{word-spacing:2.116800px;}
.ws2a{word-spacing:2.175600px;}
.ws79{word-spacing:2.234400px;}
.ws169{word-spacing:2.293200px;}
.ws13a{word-spacing:2.352000px;}
.ws113{word-spacing:2.410800px;}
.wsec{word-spacing:2.469600px;}
.ws11a{word-spacing:2.528400px;}
.ws12b{word-spacing:2.587200px;}
.ws195{word-spacing:2.646000px;}
.ws11b{word-spacing:2.704800px;}
.ws18a{word-spacing:2.822400px;}
.ws46{word-spacing:2.881200px;}
.ws186{word-spacing:2.940000px;}
.ws71{word-spacing:2.998800px;}
.wscd{word-spacing:3.057600px;}
.ws8f{word-spacing:3.116400px;}
.ws150{word-spacing:3.175200px;}
.ws146{word-spacing:3.234000px;}
.wsc6{word-spacing:3.292800px;}
.ws108{word-spacing:3.351600px;}
.ws2e{word-spacing:3.410400px;}
.wsf0{word-spacing:3.469200px;}
.ws98{word-spacing:3.528000px;}
.ws114{word-spacing:3.586800px;}
.ws64{word-spacing:3.645600px;}
.ws61{word-spacing:3.704400px;}
.ws12c{word-spacing:3.763200px;}
.ws81{word-spacing:3.939600px;}
.ws12d{word-spacing:3.998400px;}
.wsc8{word-spacing:4.057200px;}
.ws32{word-spacing:4.116000px;}
.ws33{word-spacing:4.174800px;}
.ws10{word-spacing:4.233600px;}
.ws2d{word-spacing:4.292400px;}
.ws53{word-spacing:4.351200px;}
.ws17c{word-spacing:4.410000px;}
.ws131{word-spacing:4.468800px;}
.ws101{word-spacing:4.527600px;}
.ws16f{word-spacing:4.586400px;}
.ws16e{word-spacing:4.645200px;}
.ws10a{word-spacing:4.704000px;}
.ws13b{word-spacing:4.762800px;}
.ws68{word-spacing:4.821600px;}
.ws133{word-spacing:4.880400px;}
.ws60{word-spacing:4.939200px;}
.ws92{word-spacing:4.998000px;}
.ws117{word-spacing:5.056800px;}
.wsac{word-spacing:5.115600px;}
.ws15e{word-spacing:5.174400px;}
.wscc{word-spacing:5.292000px;}
.ws109{word-spacing:5.350800px;}
.ws5b{word-spacing:5.468400px;}
.ws9a{word-spacing:5.527200px;}
.ws14e{word-spacing:5.586000px;}
.ws164{word-spacing:5.644800px;}
.ws44{word-spacing:5.762400px;}
.ws29{word-spacing:5.821200px;}
.ws21{word-spacing:5.880000px;}
.ws6c{word-spacing:5.938800px;}
.ws3a{word-spacing:5.997600px;}
.ws9e{word-spacing:6.056400px;}
.ws39{word-spacing:6.115200px;}
.ws3b{word-spacing:6.174000px;}
.ws50{word-spacing:6.232800px;}
.ws178{word-spacing:6.291600px;}
.ws102{word-spacing:6.350400px;}
.ws59{word-spacing:6.409200px;}
.ws8b{word-spacing:6.468000px;}
.ws132{word-spacing:6.526800px;}
.ws54{word-spacing:6.585600px;}
.ws26{word-spacing:6.644400px;}
.ws103{word-spacing:6.762000px;}
.ws69{word-spacing:6.820800px;}
.ws45{word-spacing:6.879600px;}
.ws104{word-spacing:6.938400px;}
.wsc{word-spacing:6.997200px;}
.ws3c{word-spacing:7.056000px;}
.ws8c{word-spacing:7.114800px;}
.ws5d{word-spacing:7.173600px;}
.wsad{word-spacing:7.232400px;}
.ws55{word-spacing:7.291200px;}
.wsa9{word-spacing:7.350000px;}
.ws2c{word-spacing:7.408800px;}
.ws12a{word-spacing:7.467600px;}
.ws96{word-spacing:7.526400px;}
.ws7d{word-spacing:7.585200px;}
.ws37{word-spacing:7.644000px;}
.wsa8{word-spacing:7.702800px;}
.ws97{word-spacing:7.761600px;}
.ws100{word-spacing:7.820400px;}
.ws24{word-spacing:7.879200px;}
.ws86{word-spacing:7.938000px;}
.ws110{word-spacing:7.996800px;}
.ws1f{word-spacing:8.114400px;}
.ws67{word-spacing:8.173200px;}
.ws7f{word-spacing:8.232000px;}
.ws7a{word-spacing:8.290800px;}
.ws144{word-spacing:8.349600px;}
.ws172{word-spacing:8.408400px;}
.ws82{word-spacing:8.467200px;}
.ws9d{word-spacing:8.526000px;}
.ws5a{word-spacing:8.584800px;}
.ws4c{word-spacing:8.643600px;}
.ws36{word-spacing:8.702400px;}
.ws22{word-spacing:8.820000px;}
.ws15b{word-spacing:8.878800px;}
.ws1b{word-spacing:8.937600px;}
.ws152{word-spacing:8.996400px;}
.ws16b{word-spacing:9.055200px;}
.wsd{word-spacing:9.172800px;}
.ws2f{word-spacing:9.290400px;}
.ws6f{word-spacing:9.349200px;}
.ws13c{word-spacing:9.408000px;}
.ws196{word-spacing:9.466800px;}
.ws1d{word-spacing:9.525600px;}
.wsa3{word-spacing:9.584400px;}
.ws14b{word-spacing:9.643200px;}
.ws12{word-spacing:9.702000px;}
.wsa7{word-spacing:9.878400px;}
.wsab{word-spacing:9.937200px;}
.ws4a{word-spacing:10.054800px;}
.ws89{word-spacing:10.113600px;}
.ws90{word-spacing:10.172400px;}
.ws10c{word-spacing:10.231200px;}
.wscb{word-spacing:10.290000px;}
.ws6a{word-spacing:10.348800px;}
.ws51{word-spacing:10.407600px;}
.ws183{word-spacing:10.584000px;}
.ws20{word-spacing:10.642800px;}
.ws106{word-spacing:10.701600px;}
.ws6d{word-spacing:10.760400px;}
.ws17{word-spacing:10.819200px;}
.ws91{word-spacing:10.878000px;}
.ws170{word-spacing:10.936800px;}
.wsc4{word-spacing:10.995600px;}
.ws17b{word-spacing:11.054400px;}
.ws88{word-spacing:11.172000px;}
.ws84{word-spacing:11.230800px;}
.ws14c{word-spacing:11.466000px;}
.ws66{word-spacing:11.524800px;}
.ws35{word-spacing:11.583600px;}
.ws156{word-spacing:11.642400px;}
.ws153{word-spacing:11.701200px;}
.ws8e{word-spacing:11.760000px;}
.ws189{word-spacing:11.818800px;}
.ws175{word-spacing:11.877600px;}
.wsa2{word-spacing:11.995200px;}
.ws118{word-spacing:12.054000px;}
.ws138{word-spacing:12.112800px;}
.wsf1{word-spacing:12.171600px;}
.ws184{word-spacing:12.289200px;}
.ws10d{word-spacing:12.348000px;}
.wsa4{word-spacing:12.406800px;}
.ws38{word-spacing:12.465600px;}
.ws3e{word-spacing:12.524400px;}
.ws177{word-spacing:12.583200px;}
.ws65{word-spacing:12.642000px;}
.wsa0{word-spacing:12.700800px;}
.ws5f{word-spacing:12.759600px;}
.ws165{word-spacing:12.818400px;}
.ws4f{word-spacing:12.936000px;}
.wsaa{word-spacing:12.994800px;}
.ws167{word-spacing:13.053600px;}
.ws58{word-spacing:13.112400px;}
.ws62{word-spacing:13.230000px;}
.ws43{word-spacing:13.288800px;}
.wsee{word-spacing:13.347600px;}
.ws130{word-spacing:13.465200px;}
.ws159{word-spacing:13.524000px;}
.ws27{word-spacing:13.582800px;}
.ws151{word-spacing:13.641600px;}
.ws16{word-spacing:13.759200px;}
.ws74{word-spacing:13.876800px;}
.ws5c{word-spacing:13.935600px;}
.ws171{word-spacing:13.994400px;}
.ws8d{word-spacing:14.053200px;}
.ws13{word-spacing:14.112000px;}
.ws187{word-spacing:14.229600px;}
.ws49{word-spacing:14.347200px;}
.ws80{word-spacing:14.406000px;}
.ws17d{word-spacing:14.523600px;}
.ws31{word-spacing:14.582400px;}
.ws6e{word-spacing:14.641200px;}
.ws176{word-spacing:14.758799px;}
.wsf{word-spacing:14.935200px;}
.ws18b{word-spacing:14.994000px;}
.ws143{word-spacing:15.052801px;}
.ws136{word-spacing:15.111600px;}
.ws75{word-spacing:15.229200px;}
.ws94{word-spacing:15.405600px;}
.ws25{word-spacing:15.464401px;}
.ws139{word-spacing:15.523200px;}
.ws12f{word-spacing:15.581999px;}
.ws148{word-spacing:15.640800px;}
.ws15f{word-spacing:15.758400px;}
.ws14{word-spacing:15.817200px;}
.ws191{word-spacing:15.876001px;}
.wsa5{word-spacing:16.111199px;}
.wsef{word-spacing:16.346400px;}
.ws15c{word-spacing:16.405201px;}
.ws52{word-spacing:16.699200px;}
.ws1c{word-spacing:16.758000px;}
.ws18f{word-spacing:16.875600px;}
.ws158{word-spacing:16.993200px;}
.ws5e{word-spacing:17.052000px;}
.ws107{word-spacing:17.110800px;}
.ws14a{word-spacing:17.228401px;}
.ws34{word-spacing:17.287200px;}
.ws10e{word-spacing:17.404800px;}
.ws15{word-spacing:17.522400px;}
.ws23{word-spacing:17.581200px;}
.ws193{word-spacing:17.875200px;}
.ws119{word-spacing:18.110400px;}
.wsb0{word-spacing:18.169199px;}
.ws111{word-spacing:18.345600px;}
.ws8a{word-spacing:18.404400px;}
.ws48{word-spacing:18.463201px;}
.ws17f{word-spacing:18.698399px;}
.ws135{word-spacing:18.757200px;}
.ws63{word-spacing:18.874800px;}
.ws185{word-spacing:18.933600px;}
.wsa6{word-spacing:18.992400px;}
.ws17a{word-spacing:19.227600px;}
.ws18e{word-spacing:19.286400px;}
.ws154{word-spacing:19.345200px;}
.ws93{word-spacing:19.815600px;}
.ws17e{word-spacing:20.109600px;}
.ws83{word-spacing:20.227200px;}
.ws77{word-spacing:20.286000px;}
.ws4b{word-spacing:20.462399px;}
.ws41{word-spacing:20.873999px;}
.ws10b{word-spacing:21.226800px;}
.ws1e{word-spacing:21.285599px;}
.ws155{word-spacing:21.403200px;}
.ws3f{word-spacing:22.638000px;}
.ws192{word-spacing:23.461199px;}
.ws95{word-spacing:23.696400px;}
.ws18{word-spacing:24.108000px;}
.ws145{word-spacing:24.519601px;}
.ws47{word-spacing:25.401601px;}
.ws57{word-spacing:25.636799px;}
.wsed{word-spacing:25.872001px;}
.ws40{word-spacing:28.400401px;}
.ws11{word-spacing:29.870401px;}
.ws9f{word-spacing:30.517201px;}
.ws76{word-spacing:30.634801px;}
.ws42{word-spacing:32.046001px;}
.ws78{word-spacing:32.398801px;}
.ws157{word-spacing:32.751599px;}
.ws14f{word-spacing:33.045599px;}
.ws173{word-spacing:38.749199px;}
.ws10f{word-spacing:39.102001px;}
.ws163{word-spacing:42.277199px;}
.wse8{word-spacing:97.887896px;}
.wse3{word-spacing:100.040268px;}
.ws121{word-spacing:164.846882px;}
.wsd0{word-spacing:240.936435px;}
.wse7{word-spacing:268.471692px;}
.wseb{word-spacing:280.515455px;}
.wsfc{word-spacing:322.750805px;}
.wsde{word-spacing:325.260559px;}
.wsff{word-spacing:328.291190px;}
.ws129{word-spacing:345.897401px;}
._18{margin-left:-1039.169702px;}
._15{margin-left:-617.963393px;}
._12{margin-left:-240.936409px;}
._22{margin-left:-177.399219px;}
._21{margin-left:-162.180891px;}
._1c{margin-left:-121.743310px;}
._1f{margin-left:-119.590938px;}
._1d{margin-left:-110.219174px;}
._20{margin-left:-108.066802px;}
._17{margin-left:-34.887013px;}
._25{margin-left:-12.288475px;}
._7{margin-left:-7.304410px;}
._e{margin-left:-5.527220px;}
._5{margin-left:-3.520829px;}
._2{margin-left:-2.303978px;}
._0{margin-left:-1.060807px;}
._1{width:1.348829px;}
._6{width:2.405978px;}
._3{width:3.441600px;}
._9{width:5.119188px;}
._b{width:6.291617px;}
._c{width:8.246261px;}
._a{width:10.178396px;}
._f{width:11.303912px;}
._10{width:12.487056px;}
._11{width:13.488515px;}
._8{width:15.229219px;}
._4{width:16.900820px;}
._d{width:20.583568px;}
._27{width:22.060828px;}
._26{width:44.020828px;}
._1e{width:119.411579px;}
._1b{width:121.563952px;}
._1a{width:153.271222px;}
._23{width:163.180635px;}
._19{width:213.182813px;}
._16{width:233.188451px;}
._14{width:314.509574px;}
._24{width:345.897401px;}
._13{width:351.886649px;}
.fc3{color:rgb(84,126,171);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:27.935400px;}
.fsa{font-size:31.500000px;}
.fs11{font-size:31.714800px;}
.fs1e{font-size:32.768400px;}
.fsf{font-size:35.097599px;}
.fs26{font-size:37.800001px;}
.fs25{font-size:40.800001px;}
.fsb{font-size:41.160001px;}
.fs15{font-size:41.903400px;}
.fs7{font-size:42.000000px;}
.fs10{font-size:42.286200px;}
.fs12{font-size:42.487799px;}
.fs1b{font-size:42.953399px;}
.fs22{font-size:44.834401px;}
.fs17{font-size:44.840999px;}
.fs9{font-size:45.000000px;}
.fs4{font-size:46.199999px;}
.fs13{font-size:46.652401px;}
.fs1c{font-size:46.952399px;}
.fs18{font-size:47.083199px;}
.fs0{font-size:48.000000px;}
.fs14{font-size:48.985199px;}
.fs1a{font-size:49.136999px;}
.fs1d{font-size:49.300198px;}
.fse{font-size:49.475401px;}
.fs1f{font-size:51.451200px;}
.fs24{font-size:53.349003px;}
.fs19{font-size:53.701801px;}
.fsc{font-size:55.199999px;}
.fs21{font-size:55.541399px;}
.fsd{font-size:56.240999px;}
.fs8{font-size:58.800001px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800001px;}
.fs3{font-size:66.000000px;}
.fs23{font-size:66.917398px;}
.fs20{font-size:67.498798px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y183{bottom:3.603310px;}
.y1d8{bottom:3.604340px;}
.y160{bottom:3.748627px;}
.y217{bottom:4.250839px;}
.y17d{bottom:20.619301px;}
.y1d9{bottom:44.144852px;}
.y25{bottom:77.317200px;}
.y24{bottom:89.318699px;}
.y23{bottom:101.320198px;}
.y38a{bottom:102.117382px;}
.y343{bottom:103.613692px;}
.y304{bottom:104.246838px;}
.y2d7{bottom:104.246853px;}
.y1a2{bottom:105.746853px;}
.y1fb{bottom:105.768454px;}
.y214{bottom:107.213245px;}
.y6f{bottom:108.746853px;}
.yca{bottom:108.754053px;}
.yee{bottom:108.761253px;}
.y264{bottom:108.768454px;}
.y2aa{bottom:108.782843px;}
.y252{bottom:108.790043px;}
.y299{bottom:109.280397px;}
.y22{bottom:113.321697px;}
.y3c1{bottom:115.358548px;}
.y389{bottom:115.617383px;}
.y150{bottom:116.246853px;}
.y342{bottom:117.113693px;}
.y303{bottom:117.746838px;}
.y101{bottom:119.254053px;}
.y112{bottom:119.963245px;}
.y18f{bottom:121.945793px;}
.y2d6{bottom:122.275642px;}
.y1fa{bottom:123.761253px;}
.y1a1{bottom:123.768454px;}
.y213{bottom:125.206045px;}
.y21{bottom:125.323196px;}
.y3c0{bottom:125.857498px;}
.yc9{bottom:126.746853px;}
.yed{bottom:126.754053px;}
.y263{bottom:126.761253px;}
.ya0{bottom:126.775642px;}
.y6e{bottom:126.782843px;}
.y298{bottom:127.273197px;}
.y388{bottom:129.117383px;}
.y341{bottom:130.613693px;}
.y302{bottom:131.246839px;}
.y14f{bottom:134.261253px;}
.y18e{bottom:136.945793px;}
.y100{bottom:137.246853px;}
.y111{bottom:137.956045px;}
.y2d5{bottom:140.268442px;}
.y1f9{bottom:141.754053px;}
.y1a0{bottom:141.761253px;}
.y387{bottom:142.617383px;}
.y212{bottom:143.198845px;}
.y340{bottom:144.113693px;}
.y301{bottom:144.746839px;}
.yec{bottom:144.746853px;}
.y262{bottom:144.754053px;}
.y9f{bottom:144.768442px;}
.y6d{bottom:144.775642px;}
.yc8{bottom:144.782843px;}
.y1c3{bottom:144.790043px;}
.y297{bottom:145.265997px;}
.y18d{bottom:151.945793px;}
.y14e{bottom:152.254053px;}
.yff{bottom:155.246853px;}
.y110{bottom:155.948845px;}
.y386{bottom:156.117384px;}
.y33f{bottom:157.613694px;}
.y300{bottom:158.246839px;}
.y2d4{bottom:158.261242px;}
.y3bf{bottom:158.391907px;}
.y2f{bottom:158.587521px;}
.y1f8{bottom:159.746853px;}
.y19f{bottom:159.754053px;}
.y211{bottom:161.198845px;}
.y38{bottom:161.658302px;}
.y261{bottom:162.746853px;}
.yeb{bottom:162.754053px;}
.y9e{bottom:162.761242px;}
.y6c{bottom:162.768442px;}
.yc7{bottom:162.775642px;}
.y1c2{bottom:162.782843px;}
.y296{bottom:163.258797px;}
.y18c{bottom:166.945793px;}
.y385{bottom:169.617384px;}
.y14d{bottom:170.246853px;}
.y33e{bottom:171.113694px;}
.y2ff{bottom:171.746840px;}
.y2e{bottom:172.087521px;}
.yfe{bottom:173.246853px;}
.y10f{bottom:173.956045px;}
.y2d3{bottom:176.254042px;}
.y3be{bottom:177.006908px;}
.y19e{bottom:177.746853px;}
.y1f7{bottom:177.775642px;}
.y210{bottom:179.198845px;}
.y37{bottom:179.651104px;}
.yea{bottom:180.746853px;}
.y9d{bottom:180.754042px;}
.y6b{bottom:180.761242px;}
.yc6{bottom:180.768442px;}
.y1c1{bottom:180.775642px;}
.y295{bottom:181.251596px;}
.y18b{bottom:181.945793px;}
.y384{bottom:183.117384px;}
.y33d{bottom:184.613694px;}
.y2fe{bottom:185.246840px;}
.y2d{bottom:185.587521px;}
.y15d{bottom:187.041412px;}
.y14c{bottom:188.246853px;}
.yfd{bottom:191.246853px;}
.y10e{bottom:191.948845px;}
.y2d2{bottom:194.246841px;}
.y3bd{bottom:195.621909px;}
.y19d{bottom:195.768442px;}
.y383{bottom:196.617385px;}
.y18a{bottom:196.945793px;}
.y36{bottom:197.643906px;}
.y33c{bottom:198.113695px;}
.y9c{bottom:198.746841px;}
.y6a{bottom:198.754042px;}
.yc5{bottom:198.761242px;}
.ye9{bottom:198.768442px;}
.y294{bottom:199.244396px;}
.y2c{bottom:203.587509px;}
.y14b{bottom:206.261242px;}
.y10d{bottom:209.970446px;}
.y382{bottom:210.117385px;}
.y33b{bottom:211.613695px;}
.y189{bottom:211.945793px;}
.y2d1{bottom:212.246841px;}
.y2b{bottom:212.587509px;}
.y19c{bottom:213.761242px;}
.y3bc{bottom:214.236910px;}
.y20f{bottom:215.242046px;}
.y35{bottom:215.636696px;}
.y69{bottom:216.746841px;}
.yc4{bottom:216.754042px;}
.ye8{bottom:216.761242px;}
.y2a9{bottom:216.768442px;}
.y9b{bottom:216.811804px;}
.y293{bottom:217.237196px;}
.y381{bottom:223.617385px;}
.y14a{bottom:224.254042px;}
.y33a{bottom:225.113695px;}
.y2fd{bottom:225.746841px;}
.y188{bottom:226.945793px;}
.yfc{bottom:227.261242px;}
.y10c{bottom:227.963245px;}
.y2d0{bottom:230.297403px;}
.y19b{bottom:231.754042px;}
.y3bb{bottom:232.851910px;}
.y20e{bottom:233.234846px;}
.y34{bottom:233.651093px;}
.yc3{bottom:234.746841px;}
.ye7{bottom:234.754042px;}
.y68{bottom:234.761242px;}
.y251{bottom:234.797403px;}
.y9a{bottom:234.804603px;}
.y292{bottom:235.229996px;}
.y380{bottom:237.117386px;}
.y339{bottom:238.613696px;}
.y16d{bottom:241.945496px;}
.y149{bottom:242.246841px;}
.yfb{bottom:245.254042px;}
.y10b{bottom:245.956045px;}
.y2cf{bottom:248.290203px;}
.y19a{bottom:249.746841px;}
.y37f{bottom:250.617386px;}
.y29{bottom:250.867950px;}
.y20d{bottom:251.227646px;}
.y3ba{bottom:251.466911px;}
.y33{bottom:251.643906px;}
.y338{bottom:252.113696px;}
.y1c0{bottom:252.746841px;}
.yc2{bottom:252.751642px;}
.y67{bottom:252.754042px;}
.y250{bottom:252.790203px;}
.y99{bottom:252.797403px;}
.y291{bottom:253.222795px;}
.y148{bottom:260.290203px;}
.y17c{bottom:262.564796px;}
.y16e{bottom:262.810959px;}
.yfa{bottom:263.246841px;}
.y10a{bottom:263.948845px;}
.y37e{bottom:264.117386px;}
.y337{bottom:265.613696px;}
.y2ce{bottom:266.283003px;}
.y1f6{bottom:267.768602px;}
.y199{bottom:267.783003px;}
.y28{bottom:268.860741px;}
.y20c{bottom:269.220446px;}
.y32{bottom:269.636696px;}
.y66{bottom:270.746841px;}
.y24f{bottom:270.783003px;}
.y98{bottom:270.790203px;}
.y2fc{bottom:270.811781px;}
.y290{bottom:271.215595px;}
.y37d{bottom:277.617387px;}
.y147{bottom:278.283003px;}
.y336{bottom:279.113697px;}
.yf9{bottom:281.268602px;}
.y109{bottom:281.953645px;}
.y3b9{bottom:282.857092px;}
.y2cd{bottom:284.275803px;}
.y1f5{bottom:285.761402px;}
.y198{bottom:285.775803px;}
.y27{bottom:286.853554px;}
.y20b{bottom:287.213245px;}
.y31{bottom:287.643906px;}
.y65{bottom:288.747002px;}
.y1bf{bottom:288.751802px;}
.y2a8{bottom:288.761402px;}
.y24e{bottom:288.775803px;}
.y97{bottom:288.783003px;}
.y2fb{bottom:288.804581px;}
.y28f{bottom:289.208395px;}
.y37c{bottom:291.117387px;}
.y335{bottom:292.613697px;}
.y17e{bottom:294.177700px;}
.y146{bottom:296.275803px;}
.y3b8{bottom:298.861793px;}
.yf8{bottom:299.261402px;}
.y108{bottom:299.948845px;}
.y2cc{bottom:302.268602px;}
.y1f4{bottom:303.754202px;}
.y197{bottom:303.768602px;}
.y37b{bottom:304.617387px;}
.y26{bottom:304.853554px;}
.y20a{bottom:305.206045px;}
.y30{bottom:305.636696px;}
.y334{bottom:306.113697px;}
.y1be{bottom:306.747002px;}
.y64{bottom:306.754202px;}
.y24d{bottom:306.768602px;}
.y96{bottom:306.775803px;}
.y2fa{bottom:306.797380px;}
.y28e{bottom:307.201195px;}
.y145{bottom:314.268602px;}
.yf7{bottom:317.254202px;}
.y37a{bottom:318.117388px;}
.y333{bottom:319.613698px;}
.y2cb{bottom:320.261402px;}
.y1f3{bottom:321.747002px;}
.y196{bottom:321.761402px;}
.y209{bottom:323.198845px;}
.y63{bottom:324.747002px;}
.yc1{bottom:324.761402px;}
.y95{bottom:324.768602px;}
.y2f9{bottom:324.790180px;}
.ye6{bottom:324.811781px;}
.y28d{bottom:325.237219px;}
.y17f{bottom:328.301699px;}
.y379{bottom:331.617388px;}
.y144{bottom:332.261402px;}
.y332{bottom:333.113698px;}
.yf6{bottom:335.247002px;}
.y107{bottom:335.963245px;}
.y2ca{bottom:338.254202px;}
.y195{bottom:339.754202px;}
.y208{bottom:341.234869px;}
.yc0{bottom:342.754202px;}
.y62{bottom:342.761402px;}
.y1bd{bottom:342.775780px;}
.y2f8{bottom:342.782980px;}
.ye5{bottom:342.804581px;}
.y28c{bottom:343.230019px;}
.y378{bottom:345.117388px;}
.y331{bottom:346.613698px;}
.y143{bottom:350.254202px;}
.y20{bottom:352.441040px;}
.yf5{bottom:353.254202px;}
.y106{bottom:353.956045px;}
.y2c9{bottom:356.247002px;}
.y194{bottom:357.747002px;}
.y377{bottom:358.617389px;}
.y207{bottom:359.227669px;}
.y330{bottom:360.113699px;}
.ybf{bottom:360.747002px;}
.y61{bottom:360.754202px;}
.y260{bottom:360.761379px;}
.y1bc{bottom:360.768579px;}
.y2f7{bottom:360.775780px;}
.ye4{bottom:360.797380px;}
.y28b{bottom:361.222818px;}
.y180{bottom:362.425698px;}
.y142{bottom:368.247002px;}
.yf4{bottom:371.247002px;}
.y105{bottom:371.948845px;}
.y376{bottom:372.117389px;}
.y32f{bottom:373.613699px;}
.y2c8{bottom:374.311781px;}
.y1f{bottom:374.941040px;}
.y1f2{bottom:375.747002px;}
.y193{bottom:375.754179px;}
.y206{bottom:377.220468px;}
.y60{bottom:378.747002px;}
.ybe{bottom:378.754179px;}
.y1bb{bottom:378.761379px;}
.y2f6{bottom:378.768579px;}
.ye3{bottom:378.790180px;}
.y28a{bottom:379.215618px;}
.y375{bottom:385.617389px;}
.y32e{bottom:387.113699px;}
.yf3{bottom:389.261379px;}
.y104{bottom:389.956068px;}
.y2c7{bottom:392.304581px;}
.y1e{bottom:392.941040px;}
.y192{bottom:393.746979px;}
.y1f1{bottom:393.811781px;}
.y205{bottom:395.213268px;}
.y181{bottom:396.549697px;}
.ybd{bottom:396.746979px;}
.y1ba{bottom:396.754179px;}
.y2f5{bottom:396.761379px;}
.y94{bottom:396.768579px;}
.y5f{bottom:396.782980px;}
.y289{bottom:397.208418px;}
.y374{bottom:399.117390px;}
.y32d{bottom:400.613700px;}
.yf2{bottom:407.254179px;}
.y103{bottom:407.948868px;}
.y2c6{bottom:410.297380px;}
.y1d{bottom:410.941040px;}
.y191{bottom:411.754179px;}
.y1f0{bottom:411.804581px;}
.y373{bottom:412.617390px;}
.y204{bottom:413.206068px;}
.y125{bottom:413.600098px;}
.y32c{bottom:414.113700px;}
.ybc{bottom:414.746979px;}
.y24c{bottom:414.754179px;}
.y93{bottom:414.761379px;}
.y5e{bottom:414.775780px;}
.y288{bottom:415.215618px;}
.y1de{bottom:417.794128px;}
.y156{bottom:424.823685px;}
.yf1{bottom:425.246979px;}
.y102{bottom:425.954864px;}
.y372{bottom:426.117390px;}
.y32b{bottom:427.613700px;}
.y2c5{bottom:428.290180px;}
.y1c{bottom:428.941040px;}
.y190{bottom:429.746979px;}
.y1ef{bottom:429.797380px;}
.y182{bottom:430.673695px;}
.y203{bottom:431.198868px;}
.y24b{bottom:432.746979px;}
.y92{bottom:432.754179px;}
.ybb{bottom:432.761379px;}
.y5d{bottom:432.768579px;}
.y287{bottom:433.208418px;}
.y371{bottom:439.617391px;}
.y155{bottom:439.823685px;}
.y32a{bottom:441.113701px;}
.y2c4{bottom:446.282980px;}
.y1b{bottom:446.941040px;}
.y1ee{bottom:447.790180px;}
.y202{bottom:449.234869px;}
.y91{bottom:450.746979px;}
.yba{bottom:450.754179px;}
.y5c{bottom:450.761379px;}
.y2f4{bottom:450.797380px;}
.y286{bottom:451.222818px;}
.y176{bottom:452.721176px;}
.y186{bottom:452.885239px;}
.y187{bottom:453.019821px;}
.y370{bottom:453.117391px;}
.y185{bottom:454.468780px;}
.y329{bottom:454.613701px;}
.y154{bottom:454.823685px;}
.y175{bottom:456.069763px;}
.y184{bottom:457.816818px;}
.y2c3{bottom:464.275780px;}
.y1a{bottom:464.941040px;}
.y1ed{bottom:465.782980px;}
.y36f{bottom:466.617391px;}
.y201{bottom:467.227669px;}
.y328{bottom:468.113701px;}
.y90{bottom:468.746979px;}
.y5b{bottom:468.754179px;}
.y2f3{bottom:468.790180px;}
.y24a{bottom:468.811781px;}
.y285{bottom:469.215618px;}
.y153{bottom:469.823685px;}
.y1e7{bottom:479.074356px;}
.y36e{bottom:480.117392px;}
.y327{bottom:481.613702px;}
.y2c2{bottom:482.268579px;}
.y19{bottom:482.941040px;}
.y1ec{bottom:483.775780px;}
.y152{bottom:484.823685px;}
.y200{bottom:485.220468px;}
.y141{bottom:485.699844px;}
.y5a{bottom:486.746979px;}
.y1b9{bottom:486.754179px;}
.y25f{bottom:486.761379px;}
.y8f{bottom:486.768579px;}
.y2f2{bottom:486.782980px;}
.y2a7{bottom:486.790180px;}
.y249{bottom:486.804581px;}
.yb9{bottom:486.847782px;}
.y284{bottom:487.208418px;}
.y174{bottom:487.759781px;}
.y36d{bottom:493.617392px;}
.y1e6{bottom:494.074356px;}
.y326{bottom:495.113702px;}
.y151{bottom:499.823685px;}
.y2c1{bottom:500.261379px;}
.y140{bottom:500.699844px;}
.y1eb{bottom:501.768579px;}
.y1ff{bottom:503.213268px;}
.y1b8{bottom:504.746979px;}
.y25e{bottom:504.754179px;}
.y16c{bottom:504.756454px;}
.y8e{bottom:504.761379px;}
.y2f1{bottom:504.775780px;}
.y2a6{bottom:504.782980px;}
.ye2{bottom:504.790180px;}
.y248{bottom:504.797380px;}
.y59{bottom:504.804581px;}
.yb8{bottom:504.840582px;}
.y283{bottom:505.215618px;}
.y18{bottom:505.441040px;}
.y36c{bottom:507.117392px;}
.y325{bottom:508.613702px;}
.y1e5{bottom:509.074356px;}
.y13f{bottom:515.699844px;}
.y2c0{bottom:518.254179px;}
.y1ea{bottom:519.761379px;}
.y36b{bottom:520.617393px;}
.y1fe{bottom:521.206068px;}
.y324{bottom:522.113703px;}
.y25d{bottom:522.746979px;}
.y8d{bottom:522.754179px;}
.y1b7{bottom:522.761379px;}
.y2f0{bottom:522.768579px;}
.y2a5{bottom:522.775780px;}
.ye1{bottom:522.782980px;}
.y247{bottom:522.790180px;}
.y58{bottom:522.797380px;}
.yb7{bottom:522.833381px;}
.y282{bottom:523.208418px;}
.y17{bottom:523.441040px;}
.y1e4{bottom:524.074356px;}
.y17b{bottom:529.210260px;}
.y13e{bottom:530.699844px;}
.y16f{bottom:532.916602px;}
.y36a{bottom:534.117393px;}
.y323{bottom:535.613703px;}
.y2bf{bottom:536.246979px;}
.y1e9{bottom:537.754179px;}
.y1e3{bottom:539.074356px;}
.y1fd{bottom:539.198868px;}
.y25c{bottom:540.746979px;}
.y1b6{bottom:540.754179px;}
.y2ef{bottom:540.761379px;}
.y2a4{bottom:540.768579px;}
.ye0{bottom:540.775780px;}
.y246{bottom:540.782980px;}
.y57{bottom:540.790180px;}
.y8c{bottom:540.797380px;}
.yb6{bottom:540.826181px;}
.y281{bottom:541.201218px;}
.y16{bottom:541.441040px;}
.y13d{bottom:545.699844px;}
.y369{bottom:547.617393px;}
.y322{bottom:549.113703px;}
.y1e2{bottom:554.074356px;}
.y2be{bottom:554.290180px;}
.y1e8{bottom:555.746979px;}
.y1fc{bottom:557.220169px;}
.y1b5{bottom:558.746979px;}
.y2ee{bottom:558.754179px;}
.y2a3{bottom:558.761379px;}
.ydf{bottom:558.768579px;}
.y245{bottom:558.775780px;}
.y56{bottom:558.782980px;}
.y8b{bottom:558.790180px;}
.yb5{bottom:558.818981px;}
.y280{bottom:559.208418px;}
.y15{bottom:559.441040px;}
.y13c{bottom:560.699844px;}
.y368{bottom:561.117394px;}
.y321{bottom:562.613704px;}
.y17a{bottom:563.372758px;}
.y170{bottom:565.258173px;}
.y1e1{bottom:569.074356px;}
.y2bd{bottom:572.282980px;}
.y367{bottom:574.617394px;}
.y13b{bottom:575.699844px;}
.y320{bottom:576.113704px;}
.y2ed{bottom:576.746979px;}
.y2a2{bottom:576.754179px;}
.yde{bottom:576.761379px;}
.y244{bottom:576.768579px;}
.y55{bottom:576.775780px;}
.y8a{bottom:576.782980px;}
.yb4{bottom:576.811781px;}
.y27f{bottom:577.215618px;}
.y14{bottom:577.441040px;}
.y1e0{bottom:584.074356px;}
.y366{bottom:588.117394px;}
.y31f{bottom:589.613704px;}
.y2bc{bottom:590.275780px;}
.y13a{bottom:590.699844px;}
.y2a1{bottom:594.746979px;}
.ydd{bottom:594.754179px;}
.y243{bottom:594.761379px;}
.y54{bottom:594.768579px;}
.y89{bottom:594.775780px;}
.y179{bottom:594.783583px;}
.yb3{bottom:594.804581px;}
.y27e{bottom:595.208418px;}
.y171{bottom:597.599743px;}
.y1df{bottom:599.074356px;}
.y13{bottom:599.941040px;}
.y365{bottom:601.617395px;}
.y31e{bottom:603.113705px;}
.y139{bottom:605.699844px;}
.y2bb{bottom:608.268579px;}
.ydc{bottom:612.746979px;}
.y242{bottom:612.754179px;}
.y53{bottom:612.761379px;}
.y88{bottom:612.768579px;}
.yb2{bottom:612.797380px;}
.y27d{bottom:613.208418px;}
.y1d7{bottom:614.074493px;}
.y364{bottom:615.117395px;}
.y31d{bottom:616.613705px;}
.y12{bottom:617.941040px;}
.y124{bottom:620.699982px;}
.y237{bottom:621.976364px;}
.y178{bottom:626.194409px;}
.y2ba{bottom:626.261379px;}
.y363{bottom:628.617395px;}
.y172{bottom:629.941313px;}
.y31c{bottom:630.113705px;}
.y1b4{bottom:630.746979px;}
.y52{bottom:630.754179px;}
.y87{bottom:630.761379px;}
.yb1{bottom:630.790180px;}
.y27c{bottom:631.201218px;}
.y1cf{bottom:632.866333px;}
.y11{bottom:635.941040px;}
.y236{bottom:636.976364px;}
.y133{bottom:640.200836px;}
.y39d{bottom:642.113698px;}
.y362{bottom:642.117396px;}
.y31b{bottom:643.613706px;}
.y2b9{bottom:644.254179px;}
.y136{bottom:644.873421px;}
.y132{bottom:644.877591px;}
.y51{bottom:648.746979px;}
.y86{bottom:648.754179px;}
.y241{bottom:648.761379px;}
.y1b3{bottom:648.768579px;}
.yb0{bottom:648.782980px;}
.y27b{bottom:649.215618px;}
.y235{bottom:651.976364px;}
.y10{bottom:653.941040px;}
.y39c{bottom:655.613699px;}
.y361{bottom:655.617396px;}
.y31a{bottom:657.113706px;}
.y1d0{bottom:658.359176px;}
.y177{bottom:660.295486px;}
.y2b8{bottom:662.246979px;}
.y173{bottom:662.282883px;}
.y85{bottom:666.746979px;}
.ydb{bottom:666.754179px;}
.y1b2{bottom:666.761379px;}
.y50{bottom:666.768579px;}
.yaf{bottom:666.775780px;}
.y234{bottom:666.976364px;}
.y27a{bottom:667.208418px;}
.y39b{bottom:669.113699px;}
.y360{bottom:669.117396px;}
.y319{bottom:670.613706px;}
.yf{bottom:671.941040px;}
.y2b7{bottom:680.254179px;}
.y233{bottom:681.976364px;}
.y39a{bottom:682.613699px;}
.y35f{bottom:682.617397px;}
.y1d1{bottom:683.852019px;}
.y318{bottom:684.113707px;}
.y240{bottom:684.746979px;}
.yda{bottom:684.754179px;}
.y4f{bottom:684.761379px;}
.yae{bottom:684.768579px;}
.y84{bottom:684.775780px;}
.y2ec{bottom:684.896870px;}
.y279{bottom:685.201218px;}
.y131{bottom:689.828842px;}
.ye{bottom:689.941040px;}
.y399{bottom:696.113700px;}
.y35e{bottom:696.117397px;}
.y232{bottom:696.976364px;}
.y317{bottom:697.613707px;}
.y2b6{bottom:698.246979px;}
.y134{bottom:700.138759px;}
.y1dc{bottom:702.349365px;}
.yd9{bottom:702.746979px;}
.y4e{bottom:702.754179px;}
.yad{bottom:702.761379px;}
.y83{bottom:702.768579px;}
.y23f{bottom:702.775688px;}
.y2eb{bottom:702.889669px;}
.y278{bottom:703.229973px;}
.yd{bottom:707.941040px;}
.y1d2{bottom:709.344862px;}
.y398{bottom:709.613700px;}
.y3b7{bottom:709.613708px;}
.y35d{bottom:709.617397px;}
.y316{bottom:711.113707px;}
.y216{bottom:711.976501px;}
.y2b5{bottom:716.246979px;}
.y4d{bottom:720.746979px;}
.yac{bottom:720.754179px;}
.y82{bottom:720.761379px;}
.y23e{bottom:720.768488px;}
.y1b1{bottom:720.775688px;}
.y2ea{bottom:720.882469px;}
.y277{bottom:721.222773px;}
.y3b6{bottom:723.113690px;}
.y397{bottom:723.113700px;}
.y35c{bottom:723.117398px;}
.y315{bottom:724.613708px;}
.y123{bottom:725.638367px;}
.yc{bottom:725.941040px;}
.y1d3{bottom:734.837704px;}
.y3b5{bottom:736.613691px;}
.y396{bottom:736.613701px;}
.y35b{bottom:736.617398px;}
.y215{bottom:737.509369px;}
.y314{bottom:738.113708px;}
.yab{bottom:738.746979px;}
.y81{bottom:738.754179px;}
.yd8{bottom:738.761288px;}
.y1b0{bottom:738.768488px;}
.y4c{bottom:738.775688px;}
.y2e9{bottom:738.875269px;}
.y276{bottom:739.215572px;}
.yb{bottom:743.941040px;}
.y3b4{bottom:750.113691px;}
.y395{bottom:750.113701px;}
.y35a{bottom:750.117398px;}
.y313{bottom:751.613708px;}
.y122{bottom:754.181943px;}
.y80{bottom:756.746979px;}
.yaa{bottom:756.754087px;}
.y1af{bottom:756.761288px;}
.y4b{bottom:756.768488px;}
.y2b4{bottom:756.826090px;}
.y2e8{bottom:756.868069px;}
.y275{bottom:757.208372px;}
.y229{bottom:758.284870px;}
.y1d4{bottom:760.330547px;}
.y16b{bottom:760.656189px;}
.ya{bottom:761.941040px;}
.y3b3{bottom:763.613691px;}
.y394{bottom:763.613701px;}
.y359{bottom:763.617399px;}
.y121{bottom:764.755095px;}
.y115{bottom:765.098831px;}
.y228{bottom:771.836068px;}
.ya9{bottom:774.746887px;}
.yd7{bottom:774.754087px;}
.y4a{bottom:774.761288px;}
.y2a0{bottom:774.775688px;}
.y7f{bottom:774.797289px;}
.y2b3{bottom:774.818889px;}
.y2e7{bottom:774.860869px;}
.y274{bottom:775.201172px;}
.y16a{bottom:775.656189px;}
.y231{bottom:776.769380px;}
.y3b2{bottom:777.113692px;}
.y393{bottom:777.113702px;}
.y358{bottom:777.117399px;}
.y21d{bottom:777.440370px;}
.y1db{bottom:777.877533px;}
.y9{bottom:779.941040px;}
.y227{bottom:785.555394px;}
.y1d5{bottom:785.823390px;}
.y3b1{bottom:790.613692px;}
.y392{bottom:790.613702px;}
.y357{bottom:790.617399px;}
.y169{bottom:790.656189px;}
.yd6{bottom:792.746887px;}
.y49{bottom:792.754087px;}
.ya8{bottom:792.761288px;}
.y29f{bottom:792.768488px;}
.y7e{bottom:792.790089px;}
.y2b2{bottom:792.811689px;}
.y2e6{bottom:792.853668px;}
.y273{bottom:793.222773px;}
.y1da{bottom:794.809387px;}
.y126{bottom:800.035309px;}
.y8{bottom:802.441040px;}
.y3b0{bottom:804.113692px;}
.y391{bottom:804.113702px;}
.y356{bottom:804.117400px;}
.y168{bottom:805.656189px;}
.y226{bottom:805.966255px;}
.y135{bottom:810.025177px;}
.y1dd{bottom:810.464813px;}
.y48{bottom:810.746887px;}
.ya7{bottom:810.754087px;}
.y29e{bottom:810.761288px;}
.y7d{bottom:810.782888px;}
.y2b1{bottom:810.804489px;}
.y2e5{bottom:810.846468px;}
.y272{bottom:811.215572px;}
.y1d6{bottom:811.316233px;}
.y3af{bottom:817.613693px;}
.y312{bottom:817.613702px;}
.y355{bottom:817.617400px;}
.y225{bottom:819.517453px;}
.y167{bottom:820.656189px;}
.y230{bottom:824.450768px;}
.y21c{bottom:825.121758px;}
.ya6{bottom:828.746887px;}
.y47{bottom:828.754087px;}
.y7c{bottom:828.775688px;}
.y2b0{bottom:828.797289px;}
.y2e4{bottom:828.839268px;}
.y271{bottom:829.208372px;}
.y3ae{bottom:831.113693px;}
.y390{bottom:831.113703px;}
.y354{bottom:831.117400px;}
.y224{bottom:833.068650px;}
.y137{bottom:835.005894px;}
.y166{bottom:835.656189px;}
.y1ca{bottom:839.987823px;}
.y3ad{bottom:844.613693px;}
.y311{bottom:844.613703px;}
.y353{bottom:844.617401px;}
.y46{bottom:846.746887px;}
.ya5{bottom:846.754087px;}
.y7b{bottom:846.768488px;}
.y25b{bottom:846.775688px;}
.y2af{bottom:846.790089px;}
.y2e3{bottom:846.832068px;}
.y1ae{bottom:846.832650px;}
.y270{bottom:847.201172px;}
.y12f{bottom:849.986847px;}
.y15c{bottom:850.656006px;}
.y1c4{bottom:855.224854px;}
.y3ac{bottom:858.113694px;}
.y310{bottom:858.113703px;}
.y352{bottom:858.117401px;}
.y120{bottom:859.062344px;}
.y12b{bottom:859.069472px;}
.y138{bottom:864.068848px;}
.y223{bottom:864.688113px;}
.ya4{bottom:864.746887px;}
.y45{bottom:864.754087px;}
.y7a{bottom:864.761288px;}
.y25a{bottom:864.768488px;}
.yd5{bottom:864.775688px;}
.y2ae{bottom:864.782888px;}
.y23d{bottom:864.811689px;}
.y2e2{bottom:864.824867px;}
.y1ad{bottom:864.825450px;}
.y26f{bottom:865.201172px;}
.y7{bottom:866.678558px;}
.y11f{bottom:869.635496px;}
.y12a{bottom:869.642624px;}
.y12e{bottom:869.649190px;}
.y15e{bottom:871.249695px;}
.y3ab{bottom:871.613694px;}
.y38f{bottom:871.613704px;}
.y351{bottom:871.617401px;}
.y22f{bottom:872.132155px;}
.y21b{bottom:872.803145px;}
.y130{bottom:874.642910px;}
.y222{bottom:878.239311px;}
.y44{bottom:882.746887px;}
.y79{bottom:882.754087px;}
.ya3{bottom:882.761288px;}
.yd4{bottom:882.768488px;}
.y2ad{bottom:882.775688px;}
.y23c{bottom:882.804489px;}
.y2e1{bottom:882.817667px;}
.y1ac{bottom:882.818250px;}
.y26e{bottom:883.215572px;}
.y157{bottom:885.087158px;}
.y3aa{bottom:885.113694px;}
.y30f{bottom:885.113705px;}
.y350{bottom:885.117402px;}
.y1ce{bottom:890.480804px;}
.y1c5{bottom:890.833221px;}
.y129{bottom:894.035455px;}
.y12d{bottom:894.042021px;}
.y3a9{bottom:898.613695px;}
.y38e{bottom:898.613705px;}
.y34f{bottom:898.617402px;}
.y78{bottom:900.746887px;}
.y43{bottom:900.754087px;}
.yd3{bottom:900.761288px;}
.y2ac{bottom:900.768488px;}
.y23b{bottom:900.797289px;}
.y2e0{bottom:900.810467px;}
.y1ab{bottom:900.811049px;}
.y26d{bottom:901.208372px;}
.y6{bottom:902.703461px;}
.y128{bottom:904.608607px;}
.y12c{bottom:904.615173px;}
.y113{bottom:904.958130px;}
.y15f{bottom:909.211029px;}
.y1cb{bottom:911.054718px;}
.y3a8{bottom:912.113695px;}
.y30e{bottom:912.113706px;}
.y34e{bottom:912.117402px;}
.y221{bottom:912.201369px;}
.y22b{bottom:915.298284px;}
.y158{bottom:915.604019px;}
.y42{bottom:918.746887px;}
.yd2{bottom:918.754087px;}
.y77{bottom:918.761288px;}
.ya2{bottom:918.768488px;}
.y23a{bottom:918.790089px;}
.y2df{bottom:918.803267px;}
.y1aa{bottom:918.803849px;}
.y26c{bottom:919.201172px;}
.y22e{bottom:923.153704px;}
.y21a{bottom:923.824694px;}
.y3a7{bottom:925.613695px;}
.y30d{bottom:925.613706px;}
.y34d{bottom:925.617403px;}
.y220{bottom:925.920695px;}
.y1c6{bottom:926.452325px;}
.yd1{bottom:936.746887px;}
.y76{bottom:936.754087px;}
.y41{bottom:936.761288px;}
.y259{bottom:936.768488px;}
.y239{bottom:936.782888px;}
.y2de{bottom:936.796067px;}
.y1a9{bottom:936.796649px;}
.y26b{bottom:937.237173px;}
.y3a6{bottom:939.113696px;}
.y30c{bottom:939.113706px;}
.y34c{bottom:939.117403px;}
.y5{bottom:941.691467px;}
.y165{bottom:942.240589px;}
.y159{bottom:946.131503px;}
.y11b{bottom:947.815401px;}
.y3a5{bottom:952.613696px;}
.y30b{bottom:952.613707px;}
.y34b{bottom:952.617403px;}
.y164{bottom:954.315896px;}
.y75{bottom:954.746887px;}
.y40{bottom:954.754087px;}
.y258{bottom:954.761288px;}
.y238{bottom:954.775688px;}
.yd0{bottom:954.783178px;}
.y2dd{bottom:954.788866px;}
.y1a8{bottom:954.789449px;}
.y26a{bottom:955.229973px;}
.y11e{bottom:958.379778px;}
.y11a{bottom:958.388553px;}
.y117{bottom:958.976439px;}
.y1c7{bottom:962.060693px;}
.y22a{bottom:962.976929px;}
.y3a4{bottom:966.113696px;}
.y30a{bottom:966.113707px;}
.y34a{bottom:966.117404px;}
.y163{bottom:966.331696px;}
.y11d{bottom:968.952930px;}
.y119{bottom:968.961705px;}
.y116{bottom:969.549591px;}
.y21f{bottom:970.082581px;}
.y22d{bottom:970.835092px;}
.y219{bottom:971.506082px;}
.y3f{bottom:972.746887px;}
.y257{bottom:972.754087px;}
.y29d{bottom:972.761288px;}
.y74{bottom:972.768488px;}
.y2ab{bottom:972.775688px;}
.ycf{bottom:972.775978px;}
.y2dc{bottom:972.781666px;}
.y1a7{bottom:972.782248px;}
.y269{bottom:973.222773px;}
.y15a{bottom:976.648363px;}
.y11c{bottom:979.526082px;}
.y118{bottom:979.534857px;}
.y3a3{bottom:979.613697px;}
.y38d{bottom:979.613707px;}
.y349{bottom:979.617404px;}
.y4{bottom:980.679474px;}
.y127{bottom:989.527251px;}
.y256{bottom:990.746887px;}
.y29c{bottom:990.754087px;}
.y73{bottom:990.761288px;}
.y3e{bottom:990.768488px;}
.yce{bottom:990.768778px;}
.y2db{bottom:990.774466px;}
.y1a6{bottom:990.775048px;}
.y268{bottom:991.215572px;}
.y3a2{bottom:993.113697px;}
.y38c{bottom:993.113707px;}
.y309{bottom:993.113708px;}
.y348{bottom:993.117404px;}
.y1c8{bottom:997.679797px;}
.y1cd{bottom:1001.179779px;}
.y162{bottom:1002.643616px;}
.y3a1{bottom:1006.613697px;}
.y308{bottom:1006.613708px;}
.y347{bottom:1006.617405px;}
.y15b{bottom:1007.165223px;}
.y29b{bottom:1008.746887px;}
.y72{bottom:1008.754087px;}
.y3d{bottom:1008.761288px;}
.ycd{bottom:1008.761577px;}
.y2da{bottom:1008.767266px;}
.y1a5{bottom:1008.767848px;}
.y255{bottom:1008.797567px;}
.y267{bottom:1009.208372px;}
.y114{bottom:1009.853394px;}
.y1cc{bottom:1017.096313px;}
.y21e{bottom:1017.763968px;}
.y22c{bottom:1018.516479px;}
.y218{bottom:1019.187469px;}
.y3a0{bottom:1020.113698px;}
.y307{bottom:1020.113708px;}
.y346{bottom:1020.117405px;}
.y161{bottom:1023.056213px;}
.y71{bottom:1026.746887px;}
.y3c{bottom:1026.754087px;}
.ycc{bottom:1026.754377px;}
.y2d9{bottom:1026.760066px;}
.y1a4{bottom:1026.760648px;}
.y254{bottom:1026.790367px;}
.y266{bottom:1027.201172px;}
.y1c9{bottom:1033.288165px;}
.y39f{bottom:1033.613698px;}
.y38b{bottom:1033.613708px;}
.y345{bottom:1033.617406px;}
.y3{bottom:1035.488708px;}
.y2a{bottom:1037.876221px;}
.y306{bottom:1038.113708px;}
.y70{bottom:1044.739977px;}
.y3b{bottom:1044.746887px;}
.ycb{bottom:1044.747177px;}
.y2d8{bottom:1044.752865px;}
.y1a3{bottom:1044.753448px;}
.y253{bottom:1044.783167px;}
.y29a{bottom:1044.832539px;}
.y265{bottom:1045.201172px;}
.y39e{bottom:1047.113698px;}
.y305{bottom:1047.113708px;}
.y344{bottom:1047.117406px;}
.y2{bottom:1114.423004px;}
.y39{bottom:1128.650574px;}
.yef{bottom:1128.650665px;}
.y3a{bottom:1129.046574px;}
.yf0{bottom:1129.046665px;}
.y1{bottom:1129.051025px;}
.ya1{bottom:1129.051208px;}
.h19{height:23.088374px;}
.h1c{height:24.427929px;}
.h17{height:25.129881px;}
.h18{height:25.551052px;}
.h1d{height:25.586150px;}
.hd{height:27.814500px;}
.h46{height:28.350001px;}
.h20{height:29.359069px;}
.h2d{height:29.680798px;}
.h26{height:30.491805px;}
.h24{height:30.505675px;}
.h25{height:30.519069px;}
.h37{height:30.980571px;}
.h27{height:30.985130px;}
.h45{height:31.089601px;}
.h22{height:32.236809px;}
.h2e{height:32.444108px;}
.h29{height:32.769907px;}
.h23{height:33.309935px;}
.h2b{height:33.953666px;}
.h32{height:34.312938px;}
.h30{height:35.552780px;}
.ha{height:37.086000px;}
.h2f{height:37.566801px;}
.h34{height:38.379107px;}
.h36{height:38.656814px;}
.h16{height:39.143735px;}
.h2a{height:39.148613px;}
.hc{height:39.735000px;}
.h43{height:39.735073px;}
.h44{height:40.651940px;}
.h1b{height:40.999688px;}
.h1f{height:42.384000px;}
.h42{height:42.840000px;}
.h40{height:43.785000px;}
.h3{height:45.696000px;}
.h41{height:45.814503px;}
.h38{height:46.574509px;}
.h2{height:47.231915px;}
.he{height:47.232000px;}
.h2c{height:47.388000px;}
.h1e{height:47.472000px;}
.h33{height:48.464137px;}
.h9{height:52.980000px;}
.h11{height:53.654399px;}
.h10{height:53.709599px;}
.hb{height:55.860001px;}
.hf{height:55.887643px;}
.h8{height:58.380000px;}
.h7{height:61.120201px;}
.h3d{height:62.279291px;}
.h3f{height:62.506695px;}
.h3c{height:62.535496px;}
.h3b{height:62.564296px;}
.h15{height:62.564388px;}
.h39{height:62.564479px;}
.h3e{height:62.593097px;}
.h12{height:62.593189px;}
.h13{height:62.621990px;}
.h14{height:62.622081px;}
.h3a{height:62.622264px;}
.h6{height:67.194745px;}
.h4{height:77.142000px;}
.h5{height:137.088000px;}
.h21{height:195.706490px;}
.h35{height:334.387505px;}
.h1a{height:425.662491px;}
.h31{height:432.289490px;}
.h28{height:467.058014px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w3{width:350.787003px;}
.w4{width:350.788490px;}
.w2{width:722.835022px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x34{left:17.605637px;}
.x2d{left:35.164810px;}
.x41{left:49.619099px;}
.x3d{left:58.778103px;}
.x20{left:71.424728px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x3{left:94.683151px;}
.x8{left:97.049244px;}
.x47{left:107.539352px;}
.x31{left:125.340454px;}
.x3c{left:131.032940px;}
.x40{left:133.918053px;}
.x38{left:143.225098px;}
.x36{left:153.998846px;}
.x3b{left:159.626095px;}
.x35{left:162.149254px;}
.x23{left:166.668137px;}
.x44{left:189.399605px;}
.xa{left:195.743546px;}
.x42{left:199.574409px;}
.x13{left:200.731863px;}
.x3e{left:203.594261px;}
.x39{left:206.014801px;}
.x3a{left:217.273499px;}
.x37{left:218.526009px;}
.x3f{left:222.823791px;}
.x10{left:230.396404px;}
.xb{left:250.340401px;}
.x11{left:260.678558px;}
.x4{left:270.817497px;}
.x43{left:289.775104px;}
.x2f{left:291.201279px;}
.x28{left:292.323303px;}
.xf{left:320.618408px;}
.x14{left:330.601750px;}
.x12{left:340.595797px;}
.x1c{left:360.578658px;}
.xc{left:365.574303px;}
.x45{left:392.243088px;}
.x16{left:445.490481px;}
.x6{left:457.086594px;}
.x26{left:466.274094px;}
.x9{left:469.081794px;}
.x27{left:471.093292px;}
.x2e{left:473.696228px;}
.x17{left:480.459320px;}
.x49{left:483.244034px;}
.x48{left:484.307556px;}
.x33{left:492.439819px;}
.x22{left:514.891342px;}
.xd{left:520.416129px;}
.x1f{left:528.696828px;}
.x1e{left:534.050291px;}
.x1d{left:539.456863px;}
.x15{left:545.395798px;}
.x32{left:561.367218px;}
.x24{left:574.924347px;}
.x2c{left:582.145340px;}
.x25{left:583.413162px;}
.x2a{left:591.037678px;}
.x21{left:593.875030px;}
.x18{left:605.327802px;}
.x2b{left:610.745297px;}
.x1b{left:615.325790px;}
.x1a{left:625.316260px;}
.x19{left:629.650818px;}
.xe{left:645.284612px;}
.x5{left:694.929886px;}
.x46{left:741.068390px;}
.x7{left:747.224258px;}
.x30{left:786.901794px;}
.x29{left:788.562286px;}
@media print{
.v6{vertical-align:-20.581695pt;}
.v3{vertical-align:-16.000000pt;}
.v4{vertical-align:-13.246263pt;}
.v7{vertical-align:-9.187500pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322591pt;}
.v8{vertical-align:13.119995pt;}
.v9{vertical-align:16.000002pt;}
.v5{vertical-align:20.881056pt;}
.v2{vertical-align:23.466797pt;}
.ls1c{letter-spacing:-5.749333pt;}
.ls32{letter-spacing:-2.242885pt;}
.ls3d{letter-spacing:-0.904738pt;}
.ls69{letter-spacing:-0.888533pt;}
.ls6e{letter-spacing:-0.800000pt;}
.ls41{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.533333pt;}
.ls3b{letter-spacing:-0.526228pt;}
.ls58{letter-spacing:-0.522667pt;}
.ls3a{letter-spacing:-0.488641pt;}
.ls1e{letter-spacing:-0.418133pt;}
.ls66{letter-spacing:-0.365867pt;}
.ls1d{letter-spacing:-0.313600pt;}
.ls1f{letter-spacing:-0.294400pt;}
.ls5e{letter-spacing:-0.239117pt;}
.ls62{letter-spacing:-0.199264pt;}
.ls40{letter-spacing:-0.187187pt;}
.ls5f{letter-spacing:-0.159411pt;}
.ls3f{letter-spacing:-0.155989pt;}
.ls3c{letter-spacing:-0.150351pt;}
.ls60{letter-spacing:-0.119558pt;}
.ls31{letter-spacing:-0.099984pt;}
.ls36{letter-spacing:-0.093594pt;}
.ls30{letter-spacing:-0.087956pt;}
.ls61{letter-spacing:-0.079706pt;}
.ls35{letter-spacing:-0.062396pt;}
.ls5d{letter-spacing:-0.049370pt;}
.ls33{letter-spacing:-0.043978pt;}
.ls54{letter-spacing:-0.043822pt;}
.ls4e{letter-spacing:-0.041852pt;}
.ls4f{letter-spacing:-0.039859pt;}
.ls63{letter-spacing:-0.039853pt;}
.ls34{letter-spacing:-0.031198pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000001pt;}
.lse{letter-spacing:0.000007pt;}
.ls65{letter-spacing:0.000027pt;}
.ls45{letter-spacing:0.000138pt;}
.ls25{letter-spacing:0.000436pt;}
.ls18{letter-spacing:0.004907pt;}
.ls21{letter-spacing:0.009055pt;}
.ls24{letter-spacing:0.021807pt;}
.ls2f{letter-spacing:0.028191pt;}
.ls29{letter-spacing:0.031198pt;}
.ls2b{letter-spacing:0.037588pt;}
.ls64{letter-spacing:0.039853pt;}
.ls4d{letter-spacing:0.041852pt;}
.ls2d{letter-spacing:0.056382pt;}
.ls27{letter-spacing:0.062396pt;}
.ls43{letter-spacing:0.074494pt;}
.ls44{letter-spacing:0.074706pt;}
.ls2c{letter-spacing:0.075175pt;}
.ls48{letter-spacing:0.075534pt;}
.ls56{letter-spacing:0.079706pt;}
.ls49{letter-spacing:0.079717pt;}
.ls42{letter-spacing:0.082938pt;}
.ls53{letter-spacing:0.083471pt;}
.ls2e{letter-spacing:0.084573pt;}
.ls26{letter-spacing:0.087956pt;}
.ls39{letter-spacing:0.093594pt;}
.ls55{letter-spacing:0.098740pt;}
.ls46{letter-spacing:0.099326pt;}
.lsa{letter-spacing:0.114973pt;}
.ls38{letter-spacing:0.124791pt;}
.ls6{letter-spacing:0.214281pt;}
.lsc{letter-spacing:0.240427pt;}
.ls5c{letter-spacing:0.246851pt;}
.ls3{letter-spacing:0.261319pt;}
.lsd{letter-spacing:0.261328pt;}
.ls2{letter-spacing:0.261333pt;}
.lsb{letter-spacing:0.266555pt;}
.ls9{letter-spacing:0.271790pt;}
.ls57{letter-spacing:0.278970pt;}
.ls3e{letter-spacing:0.311979pt;}
.ls20{letter-spacing:0.313600pt;}
.ls5{letter-spacing:0.318936pt;}
.ls37{letter-spacing:0.343177pt;}
.ls22{letter-spacing:0.522667pt;}
.ls28{letter-spacing:0.717551pt;}
.ls6c{letter-spacing:0.736923pt;}
.ls6a{letter-spacing:0.784000pt;}
.ls6b{letter-spacing:0.841475pt;}
.ls1a{letter-spacing:1.149867pt;}
.ls1b{letter-spacing:1.149868pt;}
.ls12{letter-spacing:1.933867pt;}
.ls6d{letter-spacing:2.613333pt;}
.ls68{letter-spacing:3.240533pt;}
.ls23{letter-spacing:3.606400pt;}
.ls19{letter-spacing:4.547200pt;}
.ls0{letter-spacing:4.853333pt;}
.ls16{letter-spacing:5.540267pt;}
.ls17{letter-spacing:5.540269pt;}
.ls10{letter-spacing:6.219733pt;}
.ls13{letter-spacing:7.944533pt;}
.ls14{letter-spacing:7.944536pt;}
.ls11{letter-spacing:8.890510pt;}
.ls15{letter-spacing:10.662397pt;}
.lsf{letter-spacing:10.662401pt;}
.ls67{letter-spacing:11.603200pt;}
.ls47{letter-spacing:11.989331pt;}
.ls1{letter-spacing:14.986667pt;}
.ls51{letter-spacing:96.139098pt;}
.ls52{letter-spacing:96.178964pt;}
.ls4b{letter-spacing:98.052318pt;}
.ls4c{letter-spacing:98.092174pt;}
.ls50{letter-spacing:106.382774pt;}
.ls4a{letter-spacing:108.295994pt;}
.ls59{letter-spacing:144.703858pt;}
.ls5a{letter-spacing:157.688203pt;}
.ls5b{letter-spacing:170.277581pt;}
.ls2a{letter-spacing:530.229575pt;}
.ws120{word-spacing:-181.435231pt;}
.ws11f{word-spacing:-168.845853pt;}
.ws11e{word-spacing:-155.861508pt;}
.wse4{word-spacing:-117.304052pt;}
.wse9{word-spacing:-115.390833pt;}
.wse5{word-spacing:-107.060376pt;}
.wsea{word-spacing:-105.147157pt;}
.wsf4{word-spacing:-98.092174pt;}
.wsf5{word-spacing:-98.052318pt;}
.wsfa{word-spacing:-96.178964pt;}
.wsfb{word-spacing:-96.139098pt;}
.ws160{word-spacing:-23.885867pt;}
.ws73{word-spacing:-17.404800pt;}
.ws161{word-spacing:-15.523200pt;}
.ws180{word-spacing:-14.896000pt;}
.wsb3{word-spacing:-12.313878pt;}
.ws1a{word-spacing:-12.282667pt;}
.ws72{word-spacing:-11.969067pt;}
.ws162{word-spacing:-11.394134pt;}
.ws122{word-spacing:-11.256390pt;}
.wsb1{word-spacing:-11.198208pt;}
.ws11d{word-spacing:-11.157650pt;}
.ws2{word-spacing:-11.096534pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.506667pt;}
.wsb2{word-spacing:-9.983036pt;}
.ws4{word-spacing:-9.600000pt;}
.wsfe{word-spacing:-9.432215pt;}
.ws19b{word-spacing:-9.340800pt;}
.ws128{word-spacing:-9.285703pt;}
.wse6{word-spacing:-9.087776pt;}
.ws125{word-spacing:-9.086439pt;}
.ws6{word-spacing:-9.066667pt;}
.ws0{word-spacing:-9.045333pt;}
.wsb5{word-spacing:-9.016183pt;}
.ws123{word-spacing:-9.006733pt;}
.ws1{word-spacing:-8.993600pt;}
.wsbc{word-spacing:-8.984985pt;}
.ws124{word-spacing:-8.887175pt;}
.ws127{word-spacing:-8.847322pt;}
.ws126{word-spacing:-8.807469pt;}
.ws182{word-spacing:-8.760000pt;}
.wsbd{word-spacing:-8.673007pt;}
.wsc2{word-spacing:-8.618667pt;}
.ws19{word-spacing:-8.597867pt;}
.wsb4{word-spacing:-8.579413pt;}
.wsb7{word-spacing:-8.532415pt;}
.wsbe{word-spacing:-8.517017pt;}
.wsc1{word-spacing:-8.485819pt;}
.ws181{word-spacing:-8.280000pt;}
.ws7{word-spacing:-8.176000pt;}
.wsb6{word-spacing:-8.006187pt;}
.wsb8{word-spacing:-7.968599pt;}
.wsbb{word-spacing:-7.768269pt;}
.wsc3{word-spacing:-7.680000pt;}
.ws199{word-spacing:-7.200000pt;}
.wsc0{word-spacing:-7.081916pt;}
.wsba{word-spacing:-7.050718pt;}
.wsbf{word-spacing:-7.019520pt;}
.wse2{word-spacing:-7.002474pt;}
.wse1{word-spacing:-6.977642pt;}
.wsfd{word-spacing:-6.582808pt;}
.ws19a{word-spacing:-6.132000pt;}
.wsa{word-spacing:-2.464000pt;}
.wsf2{word-spacing:-1.792000pt;}
.ws168{word-spacing:-1.358933pt;}
.ws112{word-spacing:-1.254400pt;}
.ws174{word-spacing:-0.940800pt;}
.ws179{word-spacing:-0.888533pt;}
.ws190{word-spacing:-0.836267pt;}
.ws197{word-spacing:-0.784000pt;}
.ws15a{word-spacing:-0.731733pt;}
.ws9{word-spacing:-0.693333pt;}
.ws16d{word-spacing:-0.627200pt;}
.ws56{word-spacing:-0.574933pt;}
.ws194{word-spacing:-0.522667pt;}
.wsc9{word-spacing:-0.470400pt;}
.ws149{word-spacing:-0.365867pt;}
.ws18c{word-spacing:-0.313600pt;}
.wse{word-spacing:-0.261333pt;}
.ws13d{word-spacing:-0.246851pt;}
.ws3d{word-spacing:-0.209067pt;}
.ws147{word-spacing:-0.156800pt;}
.wsd4{word-spacing:-0.124791pt;}
.wsdd{word-spacing:-0.113301pt;}
.ws14d{word-spacing:-0.104533pt;}
.wsd7{word-spacing:-0.093594pt;}
.wsd9{word-spacing:-0.084573pt;}
.wsf6{word-spacing:-0.079717pt;}
.ws13f{word-spacing:-0.079706pt;}
.wsf3{word-spacing:-0.075534pt;}
.wsd3{word-spacing:-0.062396pt;}
.wsd8{word-spacing:-0.056382pt;}
.wsf7{word-spacing:-0.041852pt;}
.wsdf{word-spacing:-0.041469pt;}
.wse0{word-spacing:-0.037247pt;}
.wsd6{word-spacing:-0.031198pt;}
.wsda{word-spacing:-0.028191pt;}
.ws8{word-spacing:0.000000pt;}
.wsd2{word-spacing:0.031198pt;}
.ws142{word-spacing:0.039853pt;}
.wsf9{word-spacing:0.039859pt;}
.wsf8{word-spacing:0.041852pt;}
.ws11c{word-spacing:0.043822pt;}
.ws18d{word-spacing:0.052267pt;}
.wsd5{word-spacing:0.062396pt;}
.wsd1{word-spacing:0.087956pt;}
.wsdb{word-spacing:0.093594pt;}
.ws115{word-spacing:0.104533pt;}
.ws141{word-spacing:0.159411pt;}
.ws140{word-spacing:0.199264pt;}
.ws116{word-spacing:0.209067pt;}
.ws13e{word-spacing:0.239117pt;}
.wsce{word-spacing:0.261333pt;}
.wsa1{word-spacing:0.294400pt;}
.ws85{word-spacing:0.313600pt;}
.ws15d{word-spacing:0.365867pt;}
.ws9b{word-spacing:0.418133pt;}
.ws4d{word-spacing:0.470400pt;}
.wsc5{word-spacing:0.522667pt;}
.wsb{word-spacing:0.533333pt;}
.wsb9{word-spacing:0.563816pt;}
.wsca{word-spacing:0.574933pt;}
.ws99{word-spacing:0.627200pt;}
.wsdc{word-spacing:0.640000pt;}
.ws7c{word-spacing:0.679467pt;}
.ws9c{word-spacing:0.731733pt;}
.wscf{word-spacing:0.784000pt;}
.ws198{word-spacing:0.800000pt;}
.ws2b{word-spacing:0.836267pt;}
.ws134{word-spacing:0.888533pt;}
.ws6b{word-spacing:0.940800pt;}
.ws12e{word-spacing:0.993067pt;}
.ws30{word-spacing:1.097600pt;}
.ws70{word-spacing:1.149867pt;}
.ws4e{word-spacing:1.202133pt;}
.ws16c{word-spacing:1.254400pt;}
.wsc7{word-spacing:1.306667pt;}
.ws7e{word-spacing:1.358933pt;}
.ws105{word-spacing:1.411200pt;}
.ws87{word-spacing:1.463467pt;}
.ws137{word-spacing:1.515733pt;}
.ws7b{word-spacing:1.568000pt;}
.wsaf{word-spacing:1.620267pt;}
.ws188{word-spacing:1.672533pt;}
.ws28{word-spacing:1.724800pt;}
.ws166{word-spacing:1.777067pt;}
.ws16a{word-spacing:1.829333pt;}
.wsae{word-spacing:1.881600pt;}
.ws2a{word-spacing:1.933867pt;}
.ws79{word-spacing:1.986133pt;}
.ws169{word-spacing:2.038400pt;}
.ws13a{word-spacing:2.090667pt;}
.ws113{word-spacing:2.142933pt;}
.wsec{word-spacing:2.195200pt;}
.ws11a{word-spacing:2.247467pt;}
.ws12b{word-spacing:2.299733pt;}
.ws195{word-spacing:2.352000pt;}
.ws11b{word-spacing:2.404267pt;}
.ws18a{word-spacing:2.508800pt;}
.ws46{word-spacing:2.561067pt;}
.ws186{word-spacing:2.613333pt;}
.ws71{word-spacing:2.665600pt;}
.wscd{word-spacing:2.717867pt;}
.ws8f{word-spacing:2.770133pt;}
.ws150{word-spacing:2.822400pt;}
.ws146{word-spacing:2.874667pt;}
.wsc6{word-spacing:2.926933pt;}
.ws108{word-spacing:2.979200pt;}
.ws2e{word-spacing:3.031467pt;}
.wsf0{word-spacing:3.083733pt;}
.ws98{word-spacing:3.136000pt;}
.ws114{word-spacing:3.188267pt;}
.ws64{word-spacing:3.240533pt;}
.ws61{word-spacing:3.292800pt;}
.ws12c{word-spacing:3.345067pt;}
.ws81{word-spacing:3.501867pt;}
.ws12d{word-spacing:3.554133pt;}
.wsc8{word-spacing:3.606400pt;}
.ws32{word-spacing:3.658667pt;}
.ws33{word-spacing:3.710933pt;}
.ws10{word-spacing:3.763200pt;}
.ws2d{word-spacing:3.815467pt;}
.ws53{word-spacing:3.867733pt;}
.ws17c{word-spacing:3.920000pt;}
.ws131{word-spacing:3.972267pt;}
.ws101{word-spacing:4.024533pt;}
.ws16f{word-spacing:4.076800pt;}
.ws16e{word-spacing:4.129067pt;}
.ws10a{word-spacing:4.181333pt;}
.ws13b{word-spacing:4.233600pt;}
.ws68{word-spacing:4.285867pt;}
.ws133{word-spacing:4.338133pt;}
.ws60{word-spacing:4.390400pt;}
.ws92{word-spacing:4.442667pt;}
.ws117{word-spacing:4.494933pt;}
.wsac{word-spacing:4.547200pt;}
.ws15e{word-spacing:4.599467pt;}
.wscc{word-spacing:4.704000pt;}
.ws109{word-spacing:4.756267pt;}
.ws5b{word-spacing:4.860800pt;}
.ws9a{word-spacing:4.913067pt;}
.ws14e{word-spacing:4.965333pt;}
.ws164{word-spacing:5.017600pt;}
.ws44{word-spacing:5.122133pt;}
.ws29{word-spacing:5.174400pt;}
.ws21{word-spacing:5.226667pt;}
.ws6c{word-spacing:5.278933pt;}
.ws3a{word-spacing:5.331200pt;}
.ws9e{word-spacing:5.383467pt;}
.ws39{word-spacing:5.435733pt;}
.ws3b{word-spacing:5.488000pt;}
.ws50{word-spacing:5.540267pt;}
.ws178{word-spacing:5.592533pt;}
.ws102{word-spacing:5.644800pt;}
.ws59{word-spacing:5.697067pt;}
.ws8b{word-spacing:5.749333pt;}
.ws132{word-spacing:5.801600pt;}
.ws54{word-spacing:5.853867pt;}
.ws26{word-spacing:5.906133pt;}
.ws103{word-spacing:6.010667pt;}
.ws69{word-spacing:6.062933pt;}
.ws45{word-spacing:6.115200pt;}
.ws104{word-spacing:6.167467pt;}
.wsc{word-spacing:6.219733pt;}
.ws3c{word-spacing:6.272000pt;}
.ws8c{word-spacing:6.324267pt;}
.ws5d{word-spacing:6.376533pt;}
.wsad{word-spacing:6.428800pt;}
.ws55{word-spacing:6.481067pt;}
.wsa9{word-spacing:6.533333pt;}
.ws2c{word-spacing:6.585600pt;}
.ws12a{word-spacing:6.637867pt;}
.ws96{word-spacing:6.690133pt;}
.ws7d{word-spacing:6.742400pt;}
.ws37{word-spacing:6.794667pt;}
.wsa8{word-spacing:6.846933pt;}
.ws97{word-spacing:6.899200pt;}
.ws100{word-spacing:6.951467pt;}
.ws24{word-spacing:7.003733pt;}
.ws86{word-spacing:7.056000pt;}
.ws110{word-spacing:7.108267pt;}
.ws1f{word-spacing:7.212800pt;}
.ws67{word-spacing:7.265067pt;}
.ws7f{word-spacing:7.317333pt;}
.ws7a{word-spacing:7.369600pt;}
.ws144{word-spacing:7.421867pt;}
.ws172{word-spacing:7.474133pt;}
.ws82{word-spacing:7.526400pt;}
.ws9d{word-spacing:7.578667pt;}
.ws5a{word-spacing:7.630933pt;}
.ws4c{word-spacing:7.683200pt;}
.ws36{word-spacing:7.735467pt;}
.ws22{word-spacing:7.840000pt;}
.ws15b{word-spacing:7.892267pt;}
.ws1b{word-spacing:7.944533pt;}
.ws152{word-spacing:7.996800pt;}
.ws16b{word-spacing:8.049067pt;}
.wsd{word-spacing:8.153600pt;}
.ws2f{word-spacing:8.258134pt;}
.ws6f{word-spacing:8.310400pt;}
.ws13c{word-spacing:8.362667pt;}
.ws196{word-spacing:8.414934pt;}
.ws1d{word-spacing:8.467200pt;}
.wsa3{word-spacing:8.519467pt;}
.ws14b{word-spacing:8.571734pt;}
.ws12{word-spacing:8.624000pt;}
.wsa7{word-spacing:8.780800pt;}
.wsab{word-spacing:8.833067pt;}
.ws4a{word-spacing:8.937600pt;}
.ws89{word-spacing:8.989867pt;}
.ws90{word-spacing:9.042134pt;}
.ws10c{word-spacing:9.094400pt;}
.wscb{word-spacing:9.146667pt;}
.ws6a{word-spacing:9.198934pt;}
.ws51{word-spacing:9.251200pt;}
.ws183{word-spacing:9.408000pt;}
.ws20{word-spacing:9.460267pt;}
.ws106{word-spacing:9.512534pt;}
.ws6d{word-spacing:9.564800pt;}
.ws17{word-spacing:9.617067pt;}
.ws91{word-spacing:9.669334pt;}
.ws170{word-spacing:9.721600pt;}
.wsc4{word-spacing:9.773867pt;}
.ws17b{word-spacing:9.826134pt;}
.ws88{word-spacing:9.930667pt;}
.ws84{word-spacing:9.982934pt;}
.ws14c{word-spacing:10.192000pt;}
.ws66{word-spacing:10.244267pt;}
.ws35{word-spacing:10.296534pt;}
.ws156{word-spacing:10.348800pt;}
.ws153{word-spacing:10.401067pt;}
.ws8e{word-spacing:10.453334pt;}
.ws189{word-spacing:10.505600pt;}
.ws175{word-spacing:10.557867pt;}
.wsa2{word-spacing:10.662400pt;}
.ws118{word-spacing:10.714667pt;}
.ws138{word-spacing:10.766934pt;}
.wsf1{word-spacing:10.819200pt;}
.ws184{word-spacing:10.923734pt;}
.ws10d{word-spacing:10.976000pt;}
.wsa4{word-spacing:11.028267pt;}
.ws38{word-spacing:11.080534pt;}
.ws3e{word-spacing:11.132800pt;}
.ws177{word-spacing:11.185067pt;}
.ws65{word-spacing:11.237334pt;}
.wsa0{word-spacing:11.289600pt;}
.ws5f{word-spacing:11.341867pt;}
.ws165{word-spacing:11.394134pt;}
.ws4f{word-spacing:11.498667pt;}
.wsaa{word-spacing:11.550934pt;}
.ws167{word-spacing:11.603200pt;}
.ws58{word-spacing:11.655467pt;}
.ws62{word-spacing:11.760000pt;}
.ws43{word-spacing:11.812267pt;}
.wsee{word-spacing:11.864534pt;}
.ws130{word-spacing:11.969067pt;}
.ws159{word-spacing:12.021334pt;}
.ws27{word-spacing:12.073600pt;}
.ws151{word-spacing:12.125867pt;}
.ws16{word-spacing:12.230400pt;}
.ws74{word-spacing:12.334934pt;}
.ws5c{word-spacing:12.387200pt;}
.ws171{word-spacing:12.439467pt;}
.ws8d{word-spacing:12.491734pt;}
.ws13{word-spacing:12.544000pt;}
.ws187{word-spacing:12.648534pt;}
.ws49{word-spacing:12.753067pt;}
.ws80{word-spacing:12.805334pt;}
.ws17d{word-spacing:12.909867pt;}
.ws31{word-spacing:12.962134pt;}
.ws6e{word-spacing:13.014400pt;}
.ws176{word-spacing:13.118933pt;}
.wsf{word-spacing:13.275734pt;}
.ws18b{word-spacing:13.328000pt;}
.ws143{word-spacing:13.380268pt;}
.ws136{word-spacing:13.432534pt;}
.ws75{word-spacing:13.537067pt;}
.ws94{word-spacing:13.693867pt;}
.ws25{word-spacing:13.746134pt;}
.ws139{word-spacing:13.798400pt;}
.ws12f{word-spacing:13.850666pt;}
.ws148{word-spacing:13.902934pt;}
.ws15f{word-spacing:14.007467pt;}
.ws14{word-spacing:14.059734pt;}
.ws191{word-spacing:14.112001pt;}
.wsa5{word-spacing:14.321066pt;}
.wsef{word-spacing:14.530134pt;}
.ws15c{word-spacing:14.582401pt;}
.ws52{word-spacing:14.843734pt;}
.ws1c{word-spacing:14.896000pt;}
.ws18f{word-spacing:15.000534pt;}
.ws158{word-spacing:15.105067pt;}
.ws5e{word-spacing:15.157334pt;}
.ws107{word-spacing:15.209600pt;}
.ws14a{word-spacing:15.314134pt;}
.ws34{word-spacing:15.366400pt;}
.ws10e{word-spacing:15.470934pt;}
.ws15{word-spacing:15.575467pt;}
.ws23{word-spacing:15.627734pt;}
.ws193{word-spacing:15.889067pt;}
.ws119{word-spacing:16.098134pt;}
.wsb0{word-spacing:16.150399pt;}
.ws111{word-spacing:16.307200pt;}
.ws8a{word-spacing:16.359467pt;}
.ws48{word-spacing:16.411734pt;}
.ws17f{word-spacing:16.620799pt;}
.ws135{word-spacing:16.673067pt;}
.ws63{word-spacing:16.777600pt;}
.ws185{word-spacing:16.829867pt;}
.wsa6{word-spacing:16.882134pt;}
.ws17a{word-spacing:17.091200pt;}
.ws18e{word-spacing:17.143467pt;}
.ws154{word-spacing:17.195734pt;}
.ws93{word-spacing:17.613867pt;}
.ws17e{word-spacing:17.875200pt;}
.ws83{word-spacing:17.979734pt;}
.ws77{word-spacing:18.032000pt;}
.ws4b{word-spacing:18.188799pt;}
.ws41{word-spacing:18.554666pt;}
.ws10b{word-spacing:18.868267pt;}
.ws1e{word-spacing:18.920533pt;}
.ws155{word-spacing:19.025067pt;}
.ws3f{word-spacing:20.122667pt;}
.ws192{word-spacing:20.854399pt;}
.ws95{word-spacing:21.063467pt;}
.ws18{word-spacing:21.429334pt;}
.ws145{word-spacing:21.795200pt;}
.ws47{word-spacing:22.579201pt;}
.ws57{word-spacing:22.788266pt;}
.wsed{word-spacing:22.997334pt;}
.ws40{word-spacing:25.244801pt;}
.ws11{word-spacing:26.551468pt;}
.ws9f{word-spacing:27.126401pt;}
.ws76{word-spacing:27.230934pt;}
.ws42{word-spacing:28.485334pt;}
.ws78{word-spacing:28.798934pt;}
.ws157{word-spacing:29.112533pt;}
.ws14f{word-spacing:29.373866pt;}
.ws173{word-spacing:34.443732pt;}
.ws10f{word-spacing:34.757335pt;}
.ws163{word-spacing:37.579733pt;}
.wse8{word-spacing:87.011463pt;}
.wse3{word-spacing:88.924683pt;}
.ws121{word-spacing:146.530561pt;}
.wsd0{word-spacing:214.165720pt;}
.wse7{word-spacing:238.641504pt;}
.wseb{word-spacing:249.347071pt;}
.wsfc{word-spacing:286.889605pt;}
.wsde{word-spacing:289.120497pt;}
.wsff{word-spacing:291.814391pt;}
.ws129{word-spacing:307.464356pt;}
._18{margin-left:-923.706402pt;}
._15{margin-left:-549.300794pt;}
._12{margin-left:-214.165697pt;}
._22{margin-left:-157.688195pt;}
._21{margin-left:-144.160792pt;}
._1c{margin-left:-108.216275pt;}
._1f{margin-left:-106.303056pt;}
._1d{margin-left:-97.972599pt;}
._20{margin-left:-96.059379pt;}
._17{margin-left:-31.010678pt;}
._25{margin-left:-10.923089pt;}
._7{margin-left:-6.492808pt;}
._e{margin-left:-4.913085pt;}
._5{margin-left:-3.129626pt;}
._2{margin-left:-2.047980pt;}
._0{margin-left:-0.942940pt;}
._1{width:1.198959pt;}
._6{width:2.138647pt;}
._3{width:3.059200pt;}
._9{width:4.550390pt;}
._b{width:5.592548pt;}
._c{width:7.330010pt;}
._a{width:9.047463pt;}
._f{width:10.047922pt;}
._10{width:11.099606pt;}
._11{width:11.989791pt;}
._8{width:13.537084pt;}
._4{width:15.022951pt;}
._d{width:18.296505pt;}
._27{width:19.609625pt;}
._26{width:39.129625pt;}
._1e{width:106.143626pt;}
._1b{width:108.056846pt;}
._1a{width:136.241086pt;}
._23{width:145.049453pt;}
._19{width:189.495834pt;}
._16{width:207.278623pt;}
._14{width:279.564066pt;}
._24{width:307.464356pt;}
._13{width:312.788133pt;}
.fs16{font-size:24.831467pt;}
.fsa{font-size:28.000000pt;}
.fs11{font-size:28.190933pt;}
.fs1e{font-size:29.127467pt;}
.fsf{font-size:31.197866pt;}
.fs26{font-size:33.600001pt;}
.fs25{font-size:36.266668pt;}
.fsb{font-size:36.586667pt;}
.fs15{font-size:37.247467pt;}
.fs7{font-size:37.333333pt;}
.fs10{font-size:37.587733pt;}
.fs12{font-size:37.766932pt;}
.fs1b{font-size:38.180799pt;}
.fs22{font-size:39.852801pt;}
.fs17{font-size:39.858665pt;}
.fs9{font-size:40.000000pt;}
.fs4{font-size:41.066666pt;}
.fs13{font-size:41.468801pt;}
.fs1c{font-size:41.735466pt;}
.fs18{font-size:41.851733pt;}
.fs0{font-size:42.666667pt;}
.fs14{font-size:43.542399pt;}
.fs1a{font-size:43.677333pt;}
.fs1d{font-size:43.822398pt;}
.fse{font-size:43.978134pt;}
.fs1f{font-size:45.734400pt;}
.fs24{font-size:47.421336pt;}
.fs19{font-size:47.734934pt;}
.fsc{font-size:49.066666pt;}
.fs21{font-size:49.370132pt;}
.fsd{font-size:49.991999pt;}
.fs8{font-size:52.266668pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933334pt;}
.fs3{font-size:58.666667pt;}
.fs23{font-size:59.482132pt;}
.fs20{font-size:59.998932pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y183{bottom:3.202942pt;}
.y1d8{bottom:3.203857pt;}
.y160{bottom:3.332113pt;}
.y217{bottom:3.778524pt;}
.y17d{bottom:18.328267pt;}
.y1d9{bottom:39.239868pt;}
.y25{bottom:68.726400pt;}
.y24{bottom:79.394399pt;}
.y23{bottom:90.062398pt;}
.y38a{bottom:90.771006pt;}
.y343{bottom:92.101060pt;}
.y304{bottom:92.663856pt;}
.y2d7{bottom:92.663869pt;}
.y1a2{bottom:93.997203pt;}
.y1fb{bottom:94.016403pt;}
.y214{bottom:95.300663pt;}
.y6f{bottom:96.663869pt;}
.yca{bottom:96.670269pt;}
.yee{bottom:96.676670pt;}
.y264{bottom:96.683070pt;}
.y2aa{bottom:96.695860pt;}
.y252{bottom:96.702260pt;}
.y299{bottom:97.138131pt;}
.y22{bottom:100.730398pt;}
.y3c1{bottom:102.540932pt;}
.y389{bottom:102.771007pt;}
.y150{bottom:103.330536pt;}
.y342{bottom:104.101060pt;}
.y303{bottom:104.663856pt;}
.y101{bottom:106.003603pt;}
.y112{bottom:106.633996pt;}
.y18f{bottom:108.396261pt;}
.y2d6{bottom:108.689460pt;}
.y1fa{bottom:110.010003pt;}
.y1a1{bottom:110.016403pt;}
.y213{bottom:111.294262pt;}
.y21{bottom:111.398397pt;}
.y3c0{bottom:111.873332pt;}
.yc9{bottom:112.663869pt;}
.yed{bottom:112.670269pt;}
.y263{bottom:112.676670pt;}
.ya0{bottom:112.689460pt;}
.y6e{bottom:112.695860pt;}
.y298{bottom:113.131731pt;}
.y388{bottom:114.771007pt;}
.y341{bottom:116.101060pt;}
.y302{bottom:116.663857pt;}
.y14f{bottom:119.343336pt;}
.y18e{bottom:121.729594pt;}
.y100{bottom:121.997203pt;}
.y111{bottom:122.627596pt;}
.y2d5{bottom:124.683060pt;}
.y1f9{bottom:126.003603pt;}
.y1a0{bottom:126.010003pt;}
.y387{bottom:126.771007pt;}
.y212{bottom:127.287862pt;}
.y340{bottom:128.101061pt;}
.y301{bottom:128.663857pt;}
.yec{bottom:128.663869pt;}
.y262{bottom:128.670269pt;}
.y9f{bottom:128.683060pt;}
.y6d{bottom:128.689460pt;}
.yc8{bottom:128.695860pt;}
.y1c3{bottom:128.702260pt;}
.y297{bottom:129.125330pt;}
.y18d{bottom:135.062927pt;}
.y14e{bottom:135.336936pt;}
.yff{bottom:137.997203pt;}
.y110{bottom:138.621195pt;}
.y386{bottom:138.771008pt;}
.y33f{bottom:140.101061pt;}
.y300{bottom:140.663857pt;}
.y2d4{bottom:140.676659pt;}
.y3bf{bottom:140.792806pt;}
.y2f{bottom:140.966685pt;}
.y1f8{bottom:141.997203pt;}
.y19f{bottom:142.003603pt;}
.y211{bottom:143.287862pt;}
.y38{bottom:143.696269pt;}
.y261{bottom:144.663869pt;}
.yeb{bottom:144.670269pt;}
.y9e{bottom:144.676659pt;}
.y6c{bottom:144.683060pt;}
.yc7{bottom:144.689460pt;}
.y1c2{bottom:144.695860pt;}
.y296{bottom:145.118930pt;}
.y18c{bottom:148.396261pt;}
.y385{bottom:150.771008pt;}
.y14d{bottom:151.330536pt;}
.y33e{bottom:152.101061pt;}
.y2ff{bottom:152.663857pt;}
.y2e{bottom:152.966685pt;}
.yfe{bottom:153.997203pt;}
.y10f{bottom:154.627596pt;}
.y2d3{bottom:156.670259pt;}
.y3be{bottom:157.339474pt;}
.y19e{bottom:157.997203pt;}
.y1f7{bottom:158.022793pt;}
.y210{bottom:159.287862pt;}
.y37{bottom:159.689870pt;}
.yea{bottom:160.663869pt;}
.y9d{bottom:160.670259pt;}
.y6b{bottom:160.676659pt;}
.yc6{bottom:160.683060pt;}
.y1c1{bottom:160.689460pt;}
.y295{bottom:161.112530pt;}
.y18b{bottom:161.729594pt;}
.y384{bottom:162.771008pt;}
.y33d{bottom:164.101062pt;}
.y2fe{bottom:164.663858pt;}
.y2d{bottom:164.966685pt;}
.y15d{bottom:166.259033pt;}
.y14c{bottom:167.330536pt;}
.yfd{bottom:169.997203pt;}
.y10e{bottom:170.621195pt;}
.y2d2{bottom:172.663859pt;}
.y3bd{bottom:173.886141pt;}
.y19d{bottom:174.016393pt;}
.y383{bottom:174.771009pt;}
.y18a{bottom:175.062927pt;}
.y36{bottom:175.683472pt;}
.y33c{bottom:176.101062pt;}
.y9c{bottom:176.663859pt;}
.y6a{bottom:176.670259pt;}
.yc5{bottom:176.676659pt;}
.ye9{bottom:176.683060pt;}
.y294{bottom:177.106130pt;}
.y2c{bottom:180.966675pt;}
.y14b{bottom:183.343326pt;}
.y10d{bottom:186.640396pt;}
.y382{bottom:186.771009pt;}
.y33b{bottom:188.101062pt;}
.y189{bottom:188.396261pt;}
.y2d1{bottom:188.663859pt;}
.y2b{bottom:188.966675pt;}
.y19c{bottom:190.009993pt;}
.y3bc{bottom:190.432809pt;}
.y20f{bottom:191.326263pt;}
.y35{bottom:191.677063pt;}
.y69{bottom:192.663859pt;}
.yc4{bottom:192.670259pt;}
.ye8{bottom:192.676659pt;}
.y2a9{bottom:192.683060pt;}
.y9b{bottom:192.721603pt;}
.y293{bottom:193.099730pt;}
.y381{bottom:198.771009pt;}
.y14a{bottom:199.336926pt;}
.y33a{bottom:200.101063pt;}
.y2fd{bottom:200.663859pt;}
.y188{bottom:201.729594pt;}
.yfc{bottom:202.009993pt;}
.y10c{bottom:202.633996pt;}
.y2d0{bottom:204.708803pt;}
.y19b{bottom:206.003593pt;}
.y3bb{bottom:206.979476pt;}
.y20e{bottom:207.319863pt;}
.y34{bottom:207.689860pt;}
.yc3{bottom:208.663859pt;}
.ye7{bottom:208.670259pt;}
.y68{bottom:208.676659pt;}
.y251{bottom:208.708803pt;}
.y9a{bottom:208.715203pt;}
.y292{bottom:209.093329pt;}
.y380{bottom:210.771009pt;}
.y339{bottom:212.101063pt;}
.y16d{bottom:215.062663pt;}
.y149{bottom:215.330526pt;}
.yfb{bottom:218.003593pt;}
.y10b{bottom:218.627596pt;}
.y2cf{bottom:220.702403pt;}
.y19a{bottom:221.997192pt;}
.y37f{bottom:222.771010pt;}
.y29{bottom:222.993734pt;}
.y20d{bottom:223.313463pt;}
.y3ba{bottom:223.526143pt;}
.y33{bottom:223.683472pt;}
.y338{bottom:224.101063pt;}
.y1c0{bottom:224.663859pt;}
.yc2{bottom:224.668126pt;}
.y67{bottom:224.670259pt;}
.y250{bottom:224.702403pt;}
.y99{bottom:224.708803pt;}
.y291{bottom:225.086929pt;}
.y148{bottom:231.369069pt;}
.y17c{bottom:233.390930pt;}
.y16e{bottom:233.609741pt;}
.yfa{bottom:233.997192pt;}
.y10a{bottom:234.621195pt;}
.y37e{bottom:234.771010pt;}
.y337{bottom:236.101063pt;}
.y2ce{bottom:236.696002pt;}
.y1f6{bottom:238.016535pt;}
.y199{bottom:238.029336pt;}
.y28{bottom:238.987325pt;}
.y20c{bottom:239.307063pt;}
.y32{bottom:239.677063pt;}
.y66{bottom:240.663859pt;}
.y24f{bottom:240.696002pt;}
.y98{bottom:240.702403pt;}
.y2fc{bottom:240.721583pt;}
.y290{bottom:241.080529pt;}
.y37d{bottom:246.771010pt;}
.y147{bottom:247.362669pt;}
.y336{bottom:248.101064pt;}
.yf9{bottom:250.016535pt;}
.y109{bottom:250.625462pt;}
.y3b9{bottom:251.428526pt;}
.y2cd{bottom:252.689602pt;}
.y1f5{bottom:254.010135pt;}
.y198{bottom:254.022936pt;}
.y27{bottom:254.980937pt;}
.y20b{bottom:255.300663pt;}
.y31{bottom:255.683472pt;}
.y65{bottom:256.664001pt;}
.y1bf{bottom:256.668268pt;}
.y2a8{bottom:256.676802pt;}
.y24e{bottom:256.689602pt;}
.y97{bottom:256.696002pt;}
.y2fb{bottom:256.715183pt;}
.y28f{bottom:257.074129pt;}
.y37c{bottom:258.771011pt;}
.y335{bottom:260.101064pt;}
.y17e{bottom:261.491289pt;}
.y146{bottom:263.356269pt;}
.y3b8{bottom:265.654928pt;}
.yf8{bottom:266.010135pt;}
.y108{bottom:266.621195pt;}
.y2cc{bottom:268.683202pt;}
.y1f4{bottom:270.003735pt;}
.y197{bottom:270.016535pt;}
.y37b{bottom:270.771011pt;}
.y26{bottom:270.980937pt;}
.y20a{bottom:271.294262pt;}
.y30{bottom:271.677063pt;}
.y334{bottom:272.101064pt;}
.y1be{bottom:272.664001pt;}
.y64{bottom:272.670402pt;}
.y24d{bottom:272.683202pt;}
.y96{bottom:272.689602pt;}
.y2fa{bottom:272.708782pt;}
.y28e{bottom:273.067729pt;}
.y145{bottom:279.349869pt;}
.yf7{bottom:282.003735pt;}
.y37a{bottom:282.771011pt;}
.y333{bottom:284.101065pt;}
.y2cb{bottom:284.676802pt;}
.y1f3{bottom:285.997335pt;}
.y196{bottom:286.010135pt;}
.y209{bottom:287.287862pt;}
.y63{bottom:288.664001pt;}
.yc1{bottom:288.676802pt;}
.y95{bottom:288.683202pt;}
.y2f9{bottom:288.702382pt;}
.ye6{bottom:288.721583pt;}
.y28d{bottom:289.099750pt;}
.y17f{bottom:291.823732pt;}
.y379{bottom:294.771012pt;}
.y144{bottom:295.343469pt;}
.y332{bottom:296.101065pt;}
.yf6{bottom:297.997335pt;}
.y107{bottom:298.633996pt;}
.y2ca{bottom:300.670402pt;}
.y195{bottom:302.003735pt;}
.y208{bottom:303.319883pt;}
.yc0{bottom:304.670402pt;}
.y62{bottom:304.676802pt;}
.y1bd{bottom:304.689582pt;}
.y2f8{bottom:304.695982pt;}
.ye5{bottom:304.715183pt;}
.y28c{bottom:305.093350pt;}
.y378{bottom:306.771012pt;}
.y331{bottom:308.101065pt;}
.y143{bottom:311.337068pt;}
.y20{bottom:313.280924pt;}
.yf5{bottom:314.003735pt;}
.y106{bottom:314.627596pt;}
.y2c9{bottom:316.664001pt;}
.y194{bottom:317.997335pt;}
.y377{bottom:318.771012pt;}
.y207{bottom:319.313483pt;}
.y330{bottom:320.101066pt;}
.ybf{bottom:320.664001pt;}
.y61{bottom:320.670402pt;}
.y260{bottom:320.676781pt;}
.y1bc{bottom:320.683182pt;}
.y2f7{bottom:320.689582pt;}
.ye4{bottom:320.708782pt;}
.y28b{bottom:321.086950pt;}
.y180{bottom:322.156176pt;}
.y142{bottom:327.330668pt;}
.yf4{bottom:329.997335pt;}
.y105{bottom:330.621195pt;}
.y376{bottom:330.771012pt;}
.y32f{bottom:332.101066pt;}
.y2c8{bottom:332.721583pt;}
.y1f{bottom:333.280924pt;}
.y1f2{bottom:333.997335pt;}
.y193{bottom:334.003715pt;}
.y206{bottom:335.307083pt;}
.y60{bottom:336.664001pt;}
.ybe{bottom:336.670381pt;}
.y1bb{bottom:336.676781pt;}
.y2f6{bottom:336.683182pt;}
.ye3{bottom:336.702382pt;}
.y28a{bottom:337.080549pt;}
.y375{bottom:342.771013pt;}
.y32e{bottom:344.101066pt;}
.yf3{bottom:346.010115pt;}
.y104{bottom:346.627616pt;}
.y2c7{bottom:348.715183pt;}
.y1e{bottom:349.280924pt;}
.y192{bottom:349.997314pt;}
.y1f1{bottom:350.054916pt;}
.y205{bottom:351.300683pt;}
.y181{bottom:352.488619pt;}
.ybd{bottom:352.663981pt;}
.y1ba{bottom:352.670381pt;}
.y2f5{bottom:352.676781pt;}
.y94{bottom:352.683182pt;}
.y5f{bottom:352.695982pt;}
.y289{bottom:353.074149pt;}
.y374{bottom:354.771013pt;}
.y32d{bottom:356.101066pt;}
.yf2{bottom:362.003715pt;}
.y103{bottom:362.621216pt;}
.y2c6{bottom:364.708782pt;}
.y1d{bottom:365.280924pt;}
.y191{bottom:366.003715pt;}
.y1f0{bottom:366.048516pt;}
.y373{bottom:366.771013pt;}
.y204{bottom:367.294283pt;}
.y125{bottom:367.644531pt;}
.y32c{bottom:368.101067pt;}
.ybc{bottom:368.663981pt;}
.y24c{bottom:368.670381pt;}
.y93{bottom:368.676781pt;}
.y5e{bottom:368.689582pt;}
.y288{bottom:369.080549pt;}
.y1de{bottom:371.372559pt;}
.y156{bottom:377.621053pt;}
.yf1{bottom:377.997314pt;}
.y102{bottom:378.626546pt;}
.y372{bottom:378.771014pt;}
.y32b{bottom:380.101067pt;}
.y2c5{bottom:380.702382pt;}
.y1c{bottom:381.280924pt;}
.y190{bottom:381.997314pt;}
.y1ef{bottom:382.042116pt;}
.y182{bottom:382.821063pt;}
.y203{bottom:383.287882pt;}
.y24b{bottom:384.663981pt;}
.y92{bottom:384.670381pt;}
.ybb{bottom:384.676781pt;}
.y5d{bottom:384.683182pt;}
.y287{bottom:385.074149pt;}
.y371{bottom:390.771014pt;}
.y155{bottom:390.954386pt;}
.y32a{bottom:392.101067pt;}
.y2c4{bottom:396.695982pt;}
.y1b{bottom:397.280924pt;}
.y1ee{bottom:398.035716pt;}
.y202{bottom:399.319883pt;}
.y91{bottom:400.663981pt;}
.yba{bottom:400.670381pt;}
.y5c{bottom:400.676781pt;}
.y2f4{bottom:400.708782pt;}
.y286{bottom:401.086950pt;}
.y176{bottom:402.418823pt;}
.y186{bottom:402.564657pt;}
.y187{bottom:402.684285pt;}
.y370{bottom:402.771014pt;}
.y185{bottom:403.972249pt;}
.y329{bottom:404.101068pt;}
.y154{bottom:404.287720pt;}
.y175{bottom:405.395345pt;}
.y184{bottom:406.948283pt;}
.y2c3{bottom:412.689582pt;}
.y1a{bottom:413.280924pt;}
.y1ed{bottom:414.029315pt;}
.y36f{bottom:414.771015pt;}
.y201{bottom:415.313483pt;}
.y328{bottom:416.101068pt;}
.y90{bottom:416.663981pt;}
.y5b{bottom:416.670381pt;}
.y2f3{bottom:416.702382pt;}
.y24a{bottom:416.721583pt;}
.y285{bottom:417.080549pt;}
.y153{bottom:417.621053pt;}
.y1e7{bottom:425.843872pt;}
.y36e{bottom:426.771015pt;}
.y327{bottom:428.101068pt;}
.y2c2{bottom:428.683182pt;}
.y19{bottom:429.280924pt;}
.y1ec{bottom:430.022915pt;}
.y152{bottom:430.954386pt;}
.y200{bottom:431.307083pt;}
.y141{bottom:431.733195pt;}
.y5a{bottom:432.663981pt;}
.y1b9{bottom:432.670381pt;}
.y25f{bottom:432.676781pt;}
.y8f{bottom:432.683182pt;}
.y2f2{bottom:432.695982pt;}
.y2a7{bottom:432.702382pt;}
.y249{bottom:432.715183pt;}
.yb9{bottom:432.753584pt;}
.y284{bottom:433.074149pt;}
.y174{bottom:433.564250pt;}
.y36d{bottom:438.771015pt;}
.y1e6{bottom:439.177205pt;}
.y326{bottom:440.101069pt;}
.y151{bottom:444.287720pt;}
.y2c1{bottom:444.676781pt;}
.y140{bottom:445.066528pt;}
.y1eb{bottom:446.016515pt;}
.y1ff{bottom:447.300683pt;}
.y1b8{bottom:448.663981pt;}
.y25e{bottom:448.670381pt;}
.y16c{bottom:448.672404pt;}
.y8e{bottom:448.676781pt;}
.y2f1{bottom:448.689582pt;}
.y2a6{bottom:448.695982pt;}
.ye2{bottom:448.702382pt;}
.y248{bottom:448.708782pt;}
.y59{bottom:448.715183pt;}
.yb8{bottom:448.747184pt;}
.y283{bottom:449.080549pt;}
.y18{bottom:449.280924pt;}
.y36c{bottom:450.771015pt;}
.y325{bottom:452.101069pt;}
.y1e5{bottom:452.510539pt;}
.y13f{bottom:458.399862pt;}
.y2c0{bottom:460.670381pt;}
.y1ea{bottom:462.010115pt;}
.y36b{bottom:462.771016pt;}
.y1fe{bottom:463.294283pt;}
.y324{bottom:464.101069pt;}
.y25d{bottom:464.663981pt;}
.y8d{bottom:464.670381pt;}
.y1b7{bottom:464.676781pt;}
.y2f0{bottom:464.683182pt;}
.y2a5{bottom:464.689582pt;}
.ye1{bottom:464.695982pt;}
.y247{bottom:464.702382pt;}
.y58{bottom:464.708782pt;}
.yb7{bottom:464.740783pt;}
.y282{bottom:465.074149pt;}
.y17{bottom:465.280924pt;}
.y1e4{bottom:465.843872pt;}
.y17b{bottom:470.409120pt;}
.y13e{bottom:471.733195pt;}
.y16f{bottom:473.703647pt;}
.y36a{bottom:474.771016pt;}
.y323{bottom:476.101069pt;}
.y2bf{bottom:476.663981pt;}
.y1e9{bottom:478.003715pt;}
.y1e3{bottom:479.177205pt;}
.y1fd{bottom:479.287882pt;}
.y25c{bottom:480.663981pt;}
.y1b6{bottom:480.670381pt;}
.y2ef{bottom:480.676781pt;}
.y2a4{bottom:480.683182pt;}
.ye0{bottom:480.689582pt;}
.y246{bottom:480.695982pt;}
.y57{bottom:480.702382pt;}
.y8c{bottom:480.708782pt;}
.yb6{bottom:480.734383pt;}
.y281{bottom:481.067749pt;}
.y16{bottom:481.280924pt;}
.y13d{bottom:485.066528pt;}
.y369{bottom:486.771016pt;}
.y322{bottom:488.101070pt;}
.y1e2{bottom:492.510539pt;}
.y2be{bottom:492.702382pt;}
.y1e8{bottom:493.997314pt;}
.y1fc{bottom:495.306817pt;}
.y1b5{bottom:496.663981pt;}
.y2ee{bottom:496.670381pt;}
.y2a3{bottom:496.676781pt;}
.ydf{bottom:496.683182pt;}
.y245{bottom:496.689582pt;}
.y56{bottom:496.695982pt;}
.y8b{bottom:496.702382pt;}
.yb5{bottom:496.727983pt;}
.y280{bottom:497.074149pt;}
.y15{bottom:497.280924pt;}
.y13c{bottom:498.399862pt;}
.y368{bottom:498.771017pt;}
.y321{bottom:500.101070pt;}
.y17a{bottom:500.775785pt;}
.y170{bottom:502.451709pt;}
.y1e1{bottom:505.843872pt;}
.y2bd{bottom:508.695982pt;}
.y367{bottom:510.771017pt;}
.y13b{bottom:511.733195pt;}
.y320{bottom:512.101070pt;}
.y2ed{bottom:512.663981pt;}
.y2a2{bottom:512.670381pt;}
.yde{bottom:512.676781pt;}
.y244{bottom:512.683182pt;}
.y55{bottom:512.689582pt;}
.y8a{bottom:512.695982pt;}
.yb4{bottom:512.721583pt;}
.y27f{bottom:513.080549pt;}
.y14{bottom:513.280924pt;}
.y1e0{bottom:519.177205pt;}
.y366{bottom:522.771017pt;}
.y31f{bottom:524.101071pt;}
.y2bc{bottom:524.689582pt;}
.y13a{bottom:525.066528pt;}
.y2a1{bottom:528.663981pt;}
.ydd{bottom:528.670381pt;}
.y243{bottom:528.676781pt;}
.y54{bottom:528.683182pt;}
.y89{bottom:528.689582pt;}
.y179{bottom:528.696518pt;}
.yb3{bottom:528.715183pt;}
.y27e{bottom:529.074149pt;}
.y171{bottom:531.199771pt;}
.y1df{bottom:532.510539pt;}
.y13{bottom:533.280924pt;}
.y365{bottom:534.771018pt;}
.y31e{bottom:536.101071pt;}
.y139{bottom:538.399862pt;}
.y2bb{bottom:540.683182pt;}
.ydc{bottom:544.663981pt;}
.y242{bottom:544.670381pt;}
.y53{bottom:544.676781pt;}
.y88{bottom:544.683182pt;}
.yb2{bottom:544.708782pt;}
.y27d{bottom:545.074149pt;}
.y1d7{bottom:545.843994pt;}
.y364{bottom:546.771018pt;}
.y31d{bottom:548.101071pt;}
.y12{bottom:549.280924pt;}
.y124{bottom:551.733317pt;}
.y237{bottom:552.867879pt;}
.y178{bottom:556.617252pt;}
.y2ba{bottom:556.676781pt;}
.y363{bottom:558.771018pt;}
.y172{bottom:559.947834pt;}
.y31c{bottom:560.101072pt;}
.y1b4{bottom:560.663981pt;}
.y52{bottom:560.670381pt;}
.y87{bottom:560.676781pt;}
.yb1{bottom:560.702382pt;}
.y27c{bottom:561.067749pt;}
.y1cf{bottom:562.547852pt;}
.y11{bottom:565.280924pt;}
.y236{bottom:566.201213pt;}
.y133{bottom:569.067410pt;}
.y39d{bottom:570.767732pt;}
.y362{bottom:570.771018pt;}
.y31b{bottom:572.101072pt;}
.y2b9{bottom:572.670381pt;}
.y136{bottom:573.220819pt;}
.y132{bottom:573.224525pt;}
.y51{bottom:576.663981pt;}
.y86{bottom:576.670381pt;}
.y241{bottom:576.676781pt;}
.y1b3{bottom:576.683182pt;}
.yb0{bottom:576.695982pt;}
.y27b{bottom:577.080549pt;}
.y235{bottom:579.534546pt;}
.y10{bottom:581.280924pt;}
.y39c{bottom:582.767732pt;}
.y361{bottom:582.771019pt;}
.y31a{bottom:584.101072pt;}
.y1d0{bottom:585.208156pt;}
.y177{bottom:586.929321pt;}
.y2b8{bottom:588.663981pt;}
.y173{bottom:588.695896pt;}
.y85{bottom:592.663981pt;}
.ydb{bottom:592.670381pt;}
.y1b2{bottom:592.676781pt;}
.y50{bottom:592.683182pt;}
.yaf{bottom:592.689582pt;}
.y234{bottom:592.867879pt;}
.y27a{bottom:593.074149pt;}
.y39b{bottom:594.767732pt;}
.y360{bottom:594.771019pt;}
.y319{bottom:596.101072pt;}
.yf{bottom:597.280924pt;}
.y2b7{bottom:604.670381pt;}
.y233{bottom:606.201213pt;}
.y39a{bottom:606.767733pt;}
.y35f{bottom:606.771019pt;}
.y1d1{bottom:607.868461pt;}
.y318{bottom:608.101073pt;}
.y240{bottom:608.663981pt;}
.yda{bottom:608.670381pt;}
.y4f{bottom:608.676781pt;}
.yae{bottom:608.683182pt;}
.y84{bottom:608.689582pt;}
.y2ec{bottom:608.797218pt;}
.y279{bottom:609.067749pt;}
.y131{bottom:613.181193pt;}
.ye{bottom:613.280924pt;}
.y399{bottom:618.767733pt;}
.y35e{bottom:618.771020pt;}
.y232{bottom:619.534546pt;}
.y317{bottom:620.101073pt;}
.y2b6{bottom:620.663981pt;}
.y134{bottom:622.345564pt;}
.y1dc{bottom:624.310547pt;}
.yd9{bottom:624.663981pt;}
.y4e{bottom:624.670381pt;}
.yad{bottom:624.676781pt;}
.y83{bottom:624.683182pt;}
.y23f{bottom:624.689501pt;}
.y2eb{bottom:624.790817pt;}
.y278{bottom:625.093309pt;}
.yd{bottom:629.280924pt;}
.y1d2{bottom:630.528766pt;}
.y398{bottom:630.767733pt;}
.y3b7{bottom:630.767741pt;}
.y35d{bottom:630.771020pt;}
.y316{bottom:632.101073pt;}
.y216{bottom:632.868001pt;}
.y2b5{bottom:636.663981pt;}
.y4d{bottom:640.663981pt;}
.yac{bottom:640.670381pt;}
.y82{bottom:640.676781pt;}
.y23e{bottom:640.683100pt;}
.y1b1{bottom:640.689501pt;}
.y2ea{bottom:640.784417pt;}
.y277{bottom:641.086909pt;}
.y3b6{bottom:642.767725pt;}
.y397{bottom:642.767734pt;}
.y35c{bottom:642.771020pt;}
.y315{bottom:644.101074pt;}
.y123{bottom:645.011882pt;}
.yc{bottom:645.280924pt;}
.y1d3{bottom:653.189071pt;}
.y3b5{bottom:654.767725pt;}
.y396{bottom:654.767734pt;}
.y35b{bottom:654.771021pt;}
.y215{bottom:655.563883pt;}
.y314{bottom:656.101074pt;}
.yab{bottom:656.663981pt;}
.y81{bottom:656.670381pt;}
.yd8{bottom:656.676700pt;}
.y1b0{bottom:656.683100pt;}
.y4c{bottom:656.689501pt;}
.y2e9{bottom:656.778017pt;}
.y276{bottom:657.080509pt;}
.yb{bottom:661.280924pt;}
.y3b4{bottom:666.767725pt;}
.y395{bottom:666.767734pt;}
.y35a{bottom:666.771021pt;}
.y313{bottom:668.101074pt;}
.y122{bottom:670.383949pt;}
.y80{bottom:672.663981pt;}
.yaa{bottom:672.670300pt;}
.y1af{bottom:672.676700pt;}
.y4b{bottom:672.683100pt;}
.y2b4{bottom:672.734302pt;}
.y2e8{bottom:672.771617pt;}
.y275{bottom:673.074109pt;}
.y229{bottom:674.030996pt;}
.y1d4{bottom:675.849375pt;}
.y16b{bottom:676.138835pt;}
.ya{bottom:677.280924pt;}
.y3b3{bottom:678.767726pt;}
.y394{bottom:678.767735pt;}
.y359{bottom:678.771021pt;}
.y121{bottom:679.782306pt;}
.y115{bottom:680.087850pt;}
.y228{bottom:686.076505pt;}
.ya9{bottom:688.663900pt;}
.yd7{bottom:688.670300pt;}
.y4a{bottom:688.676700pt;}
.y2a0{bottom:688.689501pt;}
.y7f{bottom:688.708701pt;}
.y2b3{bottom:688.727902pt;}
.y2e7{bottom:688.765217pt;}
.y274{bottom:689.067708pt;}
.y16a{bottom:689.472168pt;}
.y231{bottom:690.461671pt;}
.y3b2{bottom:690.767726pt;}
.y393{bottom:690.767735pt;}
.y358{bottom:690.771021pt;}
.y21d{bottom:691.058107pt;}
.y1db{bottom:691.446696pt;}
.y9{bottom:693.280924pt;}
.y227{bottom:698.271462pt;}
.y1d5{bottom:698.509680pt;}
.y3b1{bottom:702.767726pt;}
.y392{bottom:702.767735pt;}
.y357{bottom:702.771022pt;}
.y169{bottom:702.805501pt;}
.yd6{bottom:704.663900pt;}
.y49{bottom:704.670300pt;}
.ya8{bottom:704.676700pt;}
.y29f{bottom:704.683100pt;}
.y7e{bottom:704.702301pt;}
.y2b2{bottom:704.721501pt;}
.y2e6{bottom:704.758816pt;}
.y273{bottom:705.086909pt;}
.y1da{bottom:706.497233pt;}
.y126{bottom:711.142497pt;}
.y8{bottom:713.280924pt;}
.y3b0{bottom:714.767726pt;}
.y391{bottom:714.767735pt;}
.y356{bottom:714.771022pt;}
.y168{bottom:716.138835pt;}
.y226{bottom:716.414449pt;}
.y135{bottom:720.022380pt;}
.y1dd{bottom:720.413167pt;}
.y48{bottom:720.663900pt;}
.ya7{bottom:720.670300pt;}
.y29e{bottom:720.676700pt;}
.y7d{bottom:720.695901pt;}
.y2b1{bottom:720.715101pt;}
.y2e5{bottom:720.752416pt;}
.y272{bottom:721.080509pt;}
.y1d6{bottom:721.169985pt;}
.y3af{bottom:726.767727pt;}
.y312{bottom:726.767735pt;}
.y355{bottom:726.771022pt;}
.y225{bottom:728.459958pt;}
.y167{bottom:729.472168pt;}
.y230{bottom:732.845127pt;}
.y21c{bottom:733.441563pt;}
.ya6{bottom:736.663900pt;}
.y47{bottom:736.670300pt;}
.y7c{bottom:736.689501pt;}
.y2b0{bottom:736.708701pt;}
.y2e4{bottom:736.746016pt;}
.y271{bottom:737.074109pt;}
.y3ae{bottom:738.767727pt;}
.y390{bottom:738.767736pt;}
.y354{bottom:738.771023pt;}
.y224{bottom:740.505467pt;}
.y137{bottom:742.227461pt;}
.y166{bottom:742.805501pt;}
.y1ca{bottom:746.655843pt;}
.y3ad{bottom:750.767727pt;}
.y311{bottom:750.767736pt;}
.y353{bottom:750.771023pt;}
.y46{bottom:752.663900pt;}
.ya5{bottom:752.670300pt;}
.y7b{bottom:752.683100pt;}
.y25b{bottom:752.689501pt;}
.y2af{bottom:752.702301pt;}
.y2e3{bottom:752.739616pt;}
.y1ae{bottom:752.740133pt;}
.y270{bottom:753.067708pt;}
.y12f{bottom:755.543864pt;}
.y15c{bottom:756.138672pt;}
.y1c4{bottom:760.199870pt;}
.y3ac{bottom:762.767728pt;}
.y310{bottom:762.767736pt;}
.y352{bottom:762.771023pt;}
.y120{bottom:763.610973pt;}
.y12b{bottom:763.617308pt;}
.y138{bottom:768.061198pt;}
.y223{bottom:768.611656pt;}
.ya4{bottom:768.663900pt;}
.y45{bottom:768.670300pt;}
.y7a{bottom:768.676700pt;}
.y25a{bottom:768.683100pt;}
.yd5{bottom:768.689501pt;}
.y2ae{bottom:768.695901pt;}
.y23d{bottom:768.721501pt;}
.y2e2{bottom:768.733216pt;}
.y1ad{bottom:768.733733pt;}
.y26f{bottom:769.067708pt;}
.y7{bottom:770.380941pt;}
.y11f{bottom:773.009330pt;}
.y12a{bottom:773.015666pt;}
.y12e{bottom:773.021503pt;}
.y15e{bottom:774.444173pt;}
.y3ab{bottom:774.767728pt;}
.y38f{bottom:774.767737pt;}
.y351{bottom:774.771024pt;}
.y22f{bottom:775.228583pt;}
.y21b{bottom:775.825018pt;}
.y130{bottom:777.460364pt;}
.y222{bottom:780.657165pt;}
.y44{bottom:784.663900pt;}
.y79{bottom:784.670300pt;}
.ya3{bottom:784.676700pt;}
.yd4{bottom:784.683100pt;}
.y2ad{bottom:784.689501pt;}
.y23c{bottom:784.715101pt;}
.y2e1{bottom:784.726815pt;}
.y1ac{bottom:784.727333pt;}
.y26e{bottom:785.080509pt;}
.y157{bottom:786.744141pt;}
.y3aa{bottom:786.767728pt;}
.y30f{bottom:786.767737pt;}
.y350{bottom:786.771024pt;}
.y1ce{bottom:791.538493pt;}
.y1c5{bottom:791.851752pt;}
.y129{bottom:794.698182pt;}
.y12d{bottom:794.704019pt;}
.y3a9{bottom:798.767729pt;}
.y38e{bottom:798.767738pt;}
.y34f{bottom:798.771024pt;}
.y78{bottom:800.663900pt;}
.y43{bottom:800.670300pt;}
.yd3{bottom:800.676700pt;}
.y2ac{bottom:800.683100pt;}
.y23b{bottom:800.708701pt;}
.y2e0{bottom:800.720415pt;}
.y1ab{bottom:800.720933pt;}
.y26d{bottom:801.074109pt;}
.y6{bottom:802.403076pt;}
.y128{bottom:804.096539pt;}
.y12c{bottom:804.102376pt;}
.y113{bottom:804.407227pt;}
.y15f{bottom:808.187581pt;}
.y1cb{bottom:809.826416pt;}
.y3a8{bottom:810.767729pt;}
.y30e{bottom:810.767738pt;}
.y34e{bottom:810.771024pt;}
.y221{bottom:810.845661pt;}
.y22b{bottom:813.598475pt;}
.y158{bottom:813.870239pt;}
.y42{bottom:816.663900pt;}
.yd2{bottom:816.670300pt;}
.y77{bottom:816.676700pt;}
.ya2{bottom:816.683100pt;}
.y23a{bottom:816.702301pt;}
.y2df{bottom:816.714015pt;}
.y1aa{bottom:816.714533pt;}
.y26c{bottom:817.067708pt;}
.y22e{bottom:820.581071pt;}
.y21a{bottom:821.177506pt;}
.y3a7{bottom:822.767729pt;}
.y30d{bottom:822.767739pt;}
.y34d{bottom:822.771025pt;}
.y220{bottom:823.040618pt;}
.y1c6{bottom:823.513178pt;}
.yd1{bottom:832.663900pt;}
.y76{bottom:832.670300pt;}
.y41{bottom:832.676700pt;}
.y259{bottom:832.683100pt;}
.y239{bottom:832.695901pt;}
.y2de{bottom:832.707615pt;}
.y1a9{bottom:832.708132pt;}
.y26b{bottom:833.099709pt;}
.y3a6{bottom:834.767729pt;}
.y30c{bottom:834.767739pt;}
.y34c{bottom:834.771025pt;}
.y5{bottom:837.059082pt;}
.y165{bottom:837.547190pt;}
.y159{bottom:841.005780pt;}
.y11b{bottom:842.502579pt;}
.y3a5{bottom:846.767730pt;}
.y30b{bottom:846.767739pt;}
.y34b{bottom:846.771025pt;}
.y164{bottom:848.280796pt;}
.y75{bottom:848.663900pt;}
.y40{bottom:848.670300pt;}
.y258{bottom:848.676700pt;}
.y238{bottom:848.689501pt;}
.yd0{bottom:848.696158pt;}
.y2dd{bottom:848.701215pt;}
.y1a8{bottom:848.701732pt;}
.y26a{bottom:849.093309pt;}
.y11e{bottom:851.893136pt;}
.y11a{bottom:851.900936pt;}
.y117{bottom:852.423501pt;}
.y1c7{bottom:855.165060pt;}
.y22a{bottom:855.979492pt;}
.y3a4{bottom:858.767730pt;}
.y30a{bottom:858.767740pt;}
.y34a{bottom:858.771026pt;}
.y163{bottom:858.961507pt;}
.y11d{bottom:861.291493pt;}
.y119{bottom:861.299293pt;}
.y116{bottom:861.821859pt;}
.y21f{bottom:862.295627pt;}
.y22d{bottom:862.964526pt;}
.y219{bottom:863.560962pt;}
.y3f{bottom:864.663900pt;}
.y257{bottom:864.670300pt;}
.y29d{bottom:864.676700pt;}
.y74{bottom:864.683100pt;}
.y2ab{bottom:864.689501pt;}
.ycf{bottom:864.689758pt;}
.y2dc{bottom:864.694814pt;}
.y1a7{bottom:864.695332pt;}
.y269{bottom:865.086909pt;}
.y15a{bottom:868.131878pt;}
.y11c{bottom:870.689851pt;}
.y118{bottom:870.697651pt;}
.y3a3{bottom:870.767730pt;}
.y38d{bottom:870.767739pt;}
.y349{bottom:870.771026pt;}
.y4{bottom:871.715088pt;}
.y127{bottom:879.579779pt;}
.y256{bottom:880.663900pt;}
.y29c{bottom:880.670300pt;}
.y73{bottom:880.676700pt;}
.y3e{bottom:880.683100pt;}
.yce{bottom:880.683358pt;}
.y2db{bottom:880.688414pt;}
.y1a6{bottom:880.688932pt;}
.y268{bottom:881.080509pt;}
.y3a2{bottom:882.767731pt;}
.y38c{bottom:882.767740pt;}
.y309{bottom:882.767741pt;}
.y348{bottom:882.771026pt;}
.y1c8{bottom:886.826487pt;}
.y1cd{bottom:889.937581pt;}
.y162{bottom:891.238770pt;}
.y3a1{bottom:894.767731pt;}
.y308{bottom:894.767740pt;}
.y347{bottom:894.771027pt;}
.y15b{bottom:895.257976pt;}
.y29b{bottom:896.663900pt;}
.y72{bottom:896.670300pt;}
.y3d{bottom:896.676700pt;}
.ycd{bottom:896.676958pt;}
.y2da{bottom:896.682014pt;}
.y1a5{bottom:896.682532pt;}
.y255{bottom:896.708949pt;}
.y267{bottom:897.074109pt;}
.y114{bottom:897.647461pt;}
.y1cc{bottom:904.085612pt;}
.y21e{bottom:904.679083pt;}
.y22c{bottom:905.347982pt;}
.y218{bottom:905.944417pt;}
.y3a0{bottom:906.767731pt;}
.y307{bottom:906.767741pt;}
.y346{bottom:906.771027pt;}
.y161{bottom:909.383301pt;}
.y71{bottom:912.663900pt;}
.y3c{bottom:912.670300pt;}
.ycc{bottom:912.670558pt;}
.y2d9{bottom:912.675614pt;}
.y1a4{bottom:912.676131pt;}
.y254{bottom:912.702548pt;}
.y266{bottom:913.067708pt;}
.y1c9{bottom:918.478369pt;}
.y39f{bottom:918.767732pt;}
.y38b{bottom:918.767741pt;}
.y345{bottom:918.771027pt;}
.y3{bottom:920.434408pt;}
.y2a{bottom:922.556641pt;}
.y306{bottom:922.767741pt;}
.y70{bottom:928.657757pt;}
.y3b{bottom:928.663900pt;}
.ycb{bottom:928.664157pt;}
.y2d8{bottom:928.669214pt;}
.y1a3{bottom:928.669731pt;}
.y253{bottom:928.696148pt;}
.y29a{bottom:928.740035pt;}
.y265{bottom:929.067708pt;}
.y39e{bottom:930.767732pt;}
.y305{bottom:930.767741pt;}
.y344{bottom:930.771027pt;}
.y2{bottom:990.598226pt;}
.y39{bottom:1003.244954pt;}
.yef{bottom:1003.245036pt;}
.y3a{bottom:1003.596954pt;}
.yf0{bottom:1003.597036pt;}
.y1{bottom:1003.600911pt;}
.ya1{bottom:1003.601074pt;}
.h19{height:20.522999pt;}
.h1c{height:21.713715pt;}
.h17{height:22.337672pt;}
.h18{height:22.712046pt;}
.h1d{height:22.743244pt;}
.hd{height:24.724000pt;}
.h46{height:25.200001pt;}
.h20{height:26.096950pt;}
.h2d{height:26.382932pt;}
.h26{height:27.103827pt;}
.h24{height:27.116156pt;}
.h25{height:27.128061pt;}
.h37{height:27.538285pt;}
.h27{height:27.542338pt;}
.h45{height:27.635201pt;}
.h22{height:28.654941pt;}
.h2e{height:28.839207pt;}
.h29{height:29.128806pt;}
.h23{height:29.608831pt;}
.h2b{height:30.181037pt;}
.h32{height:30.500389pt;}
.h30{height:31.602471pt;}
.ha{height:32.965333pt;}
.h2f{height:33.392712pt;}
.h34{height:34.114762pt;}
.h36{height:34.361612pt;}
.h16{height:34.794431pt;}
.h2a{height:34.798767pt;}
.hc{height:35.320000pt;}
.h43{height:35.320065pt;}
.h44{height:36.135058pt;}
.h1b{height:36.444167pt;}
.h1f{height:37.674667pt;}
.h42{height:38.080000pt;}
.h40{height:38.920000pt;}
.h3{height:40.618667pt;}
.h41{height:40.724002pt;}
.h38{height:41.399564pt;}
.h2{height:41.983924pt;}
.he{height:41.984000pt;}
.h2c{height:42.122667pt;}
.h1e{height:42.197333pt;}
.h33{height:43.079233pt;}
.h9{height:47.093333pt;}
.h11{height:47.692799pt;}
.h10{height:47.741866pt;}
.hb{height:49.653334pt;}
.hf{height:49.677905pt;}
.h8{height:51.893333pt;}
.h7{height:54.329068pt;}
.h3d{height:55.359370pt;}
.h3f{height:55.561506pt;}
.h3c{height:55.587107pt;}
.h3b{height:55.612708pt;}
.h15{height:55.612789pt;}
.h39{height:55.612871pt;}
.h3e{height:55.638309pt;}
.h12{height:55.638390pt;}
.h13{height:55.663991pt;}
.h14{height:55.664072pt;}
.h3a{height:55.664235pt;}
.h6{height:59.728663pt;}
.h4{height:68.570667pt;}
.h5{height:121.856000pt;}
.h21{height:173.961324pt;}
.h35{height:297.233337pt;}
.h1a{height:378.366659pt;}
.h31{height:384.257324pt;}
.h28{height:415.162679pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w3{width:311.810669pt;}
.w4{width:311.811991pt;}
.w2{width:642.520020pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x34{left:15.649455pt;}
.x2d{left:31.257609pt;}
.x41{left:44.105865pt;}
.x3d{left:52.247203pt;}
.x20{left:63.488647pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x3{left:84.162801pt;}
.x8{left:86.265995pt;}
.x47{left:95.590535pt;}
.x31{left:111.413737pt;}
.x3c{left:116.473724pt;}
.x40{left:119.038269pt;}
.x38{left:127.311198pt;}
.x36{left:136.887864pt;}
.x3b{left:141.889862pt;}
.x35{left:144.132670pt;}
.x23{left:148.149455pt;}
.x44{left:168.355204pt;}
.xa{left:173.994263pt;}
.x42{left:177.399475pt;}
.x13{left:178.428322pt;}
.x3e{left:180.972677pt;}
.x39{left:183.124268pt;}
.x3a{left:193.131999pt;}
.x37{left:194.245341pt;}
.x3f{left:198.065592pt;}
.x10{left:204.796804pt;}
.xb{left:222.524801pt;}
.x11{left:231.714274pt;}
.x4{left:240.726664pt;}
.x43{left:257.577871pt;}
.x2f{left:258.845581pt;}
.x28{left:259.842936pt;}
.xf{left:284.994141pt;}
.x14{left:293.868222pt;}
.x12{left:302.751820pt;}
.x1c{left:320.514363pt;}
.xc{left:324.954936pt;}
.x45{left:348.660522pt;}
.x16{left:395.991538pt;}
.x6{left:406.299194pt;}
.x26{left:414.465861pt;}
.x9{left:416.961594pt;}
.x27{left:418.749593pt;}
.x2e{left:421.063314pt;}
.x17{left:427.074951pt;}
.x49{left:429.550252pt;}
.x48{left:430.495605pt;}
.x33{left:437.724284pt;}
.x22{left:457.681193pt;}
.xd{left:462.592115pt;}
.x1f{left:469.952736pt;}
.x1e{left:474.711370pt;}
.x1d{left:479.517212pt;}
.x15{left:484.796265pt;}
.x32{left:498.993083pt;}
.x24{left:511.043864pt;}
.x2c{left:517.462524pt;}
.x25{left:518.589478pt;}
.x2a{left:525.366825pt;}
.x21{left:527.888916pt;}
.x18{left:538.069157pt;}
.x2b{left:542.884709pt;}
.x1b{left:546.956258pt;}
.x1a{left:555.836676pt;}
.x19{left:559.689616pt;}
.xe{left:573.586322pt;}
.x5{left:617.715454pt;}
.x46{left:658.727458pt;}
.x7{left:664.199341pt;}
.x30{left:699.468262pt;}
.x29{left:700.944255pt;}
}




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