
    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_d4ff8ff74b98c19aa29f73ca.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_f4324c54bba8943e7bedf0bd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6b09dd79a538b71d1e8f1466.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.044000;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_5f9d65bf06e7b40b7e5be2a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_13d03c6dd13acf2019e54faa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.930000;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_ddc9269ec6e7f8572542e952.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.969000;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_265045e55bf04e143b567c0d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.510000;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_b1505aef01e748e4555616ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.932000;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_d7c388173860b5d7a3a65b7b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.131000;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_1f88c0e815e3076f6388538c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.949000;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_a0d043cbfe9342bbd5d49fa7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.685000;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_c596508faf0561331482bd1b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.040000;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_346696b0204e8e81737e0977.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.457000;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_a07a1d1791d05772d1584efc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.078000;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_f2098fa9e391a9e898230a34.woff2')format("woff");}.fff{font-family:fff;line-height:0.478000;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_d64e35dd3cfb6f2b46609c60.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.716000;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_89e83b7929b26f2c8fa90e8a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.279000;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.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v0{vertical-align:0.000000px;}
.ls85{letter-spacing:-1.624478px;}
.ls86{letter-spacing:-1.534480px;}
.ls88{letter-spacing:-1.502980px;}
.ls87{letter-spacing:-1.493980px;}
.ls77{letter-spacing:-1.322987px;}
.ls74{letter-spacing:-1.252427px;}
.ls6c{letter-spacing:-1.246547px;}
.ls82{letter-spacing:-1.241983px;}
.ls94{letter-spacing:-1.187984px;}
.ls8{letter-spacing:-1.182012px;}
.ls91{letter-spacing:-1.178984px;}
.ls69{letter-spacing:-1.170108px;}
.ls92{letter-spacing:-1.169984px;}
.ls60{letter-spacing:-1.164228px;}
.ls84{letter-spacing:-1.142985px;}
.ls78{letter-spacing:-1.140708px;}
.ls83{letter-spacing:-1.138485px;}
.ls7{letter-spacing:-1.134011px;}
.ls80{letter-spacing:-1.117189px;}
.ls93{letter-spacing:-1.111485px;}
.ls5f{letter-spacing:-1.105429px;}
.ls68{letter-spacing:-1.099549px;}
.ls72{letter-spacing:-1.093663px;}
.ls5a{letter-spacing:-1.087789px;}
.ls5e{letter-spacing:-1.081909px;}
.ls5b{letter-spacing:-1.076029px;}
.ls65{letter-spacing:-1.070149px;}
.ls6d{letter-spacing:-1.064269px;}
.ls63{letter-spacing:-1.058389px;}
.ls62{letter-spacing:-1.052509px;}
.ls66{letter-spacing:-1.046629px;}
.ls59{letter-spacing:-1.040749px;}
.ls61{letter-spacing:-1.034869px;}
.ls6f{letter-spacing:-1.028990px;}
.ls64{letter-spacing:-1.023110px;}
.ls5d{letter-spacing:-1.017230px;}
.ls76{letter-spacing:-1.011350px;}
.ls5c{letter-spacing:-1.005470px;}
.ls67{letter-spacing:-0.999590px;}
.ls71{letter-spacing:-0.993704px;}
.ls75{letter-spacing:-0.981950px;}
.ls70{letter-spacing:-0.970190px;}
.ls79{letter-spacing:-0.964310px;}
.ls6a{letter-spacing:-0.946670px;}
.ls6b{letter-spacing:-0.917271px;}
.ls73{letter-spacing:-0.905511px;}
.ls6e{letter-spacing:-0.899631px;}
.ls7a{letter-spacing:-0.887871px;}
.ls9{letter-spacing:-0.864351px;}
.ls5{letter-spacing:-0.834008px;}
.ls33{letter-spacing:-0.829072px;}
.ls6{letter-spacing:-0.762008px;}
.ls54{letter-spacing:-0.752632px;}
.ls34{letter-spacing:-0.676193px;}
.ls4{letter-spacing:0.000000px;}
.ls7d{letter-spacing:0.044968px;}
.ls7e{letter-spacing:0.045032px;}
.ls4c{letter-spacing:0.117613px;}
.ls8d{letter-spacing:0.135032px;}
.ls4f{letter-spacing:0.176400px;}
.ls1b{letter-spacing:0.176402px;}
.ls7b{letter-spacing:0.315040px;}
.ls2e{letter-spacing:0.352798px;}
.ls30{letter-spacing:0.352838px;}
.ls8c{letter-spacing:0.391453px;}
.ls7f{letter-spacing:0.404969px;}
.ls90{letter-spacing:0.450000px;}
.ls1d{letter-spacing:0.452755px;}
.ls38{letter-spacing:0.529202px;}
.ls1e{letter-spacing:0.535075px;}
.ls95{letter-spacing:0.535493px;}
.ls3c{letter-spacing:0.540954px;}
.ls1a{letter-spacing:0.552714px;}
.ls89{letter-spacing:0.557993px;}
.ls45{letter-spacing:0.570354px;}
.ls8a{letter-spacing:0.575992px;}
.ls22{letter-spacing:0.582114px;}
.lsd{letter-spacing:0.587994px;}
.ls39{letter-spacing:0.593874px;}
.ls16{letter-spacing:0.599754px;}
.ls37{letter-spacing:0.605634px;}
.lsf{letter-spacing:0.611514px;}
.lsc{letter-spacing:0.617394px;}
.ls12{letter-spacing:0.623274px;}
.lsb{letter-spacing:0.629154px;}
.ls8e{letter-spacing:0.629992px;}
.lse{letter-spacing:0.635034px;}
.ls17{letter-spacing:0.640913px;}
.ls8b{letter-spacing:0.643491px;}
.ls3b{letter-spacing:0.646780px;}
.ls10{letter-spacing:0.646793px;}
.ls18{letter-spacing:0.646798px;}
.ls8f{letter-spacing:0.647991px;}
.ls44{letter-spacing:0.652673px;}
.ls3a{letter-spacing:0.658553px;}
.ls36{letter-spacing:0.664433px;}
.ls96{letter-spacing:0.665991px;}
.ls11{letter-spacing:0.676193px;}
.ls21{letter-spacing:0.693833px;}
.ls3d{letter-spacing:0.823213px;}
.ls20{letter-spacing:0.876111px;}
.ls42{letter-spacing:9.647876px;}
.ls47{letter-spacing:10.960208px;}
.ls40{letter-spacing:11.407105px;}
.ls3e{letter-spacing:12.289065px;}
.ls7c{letter-spacing:13.499777px;}
.ls49{letter-spacing:13.900138px;}
.ls41{letter-spacing:14.111820px;}
.ls53{letter-spacing:14.159800px;}
.ls4a{letter-spacing:14.288278px;}
.ls55{letter-spacing:14.746871px;}
.ls3{letter-spacing:15.052691px;}
.ls2{letter-spacing:15.405431px;}
.ls2a{letter-spacing:16.287418px;}
.ls57{letter-spacing:16.875422px;}
.ls35{letter-spacing:16.993018px;}
.ls58{letter-spacing:17.051858px;}
.ls28{letter-spacing:17.110631px;}
.ls27{letter-spacing:17.698618px;}
.ls81{letter-spacing:18.515280px;}
.lsa{letter-spacing:18.815831px;}
.ls3f{letter-spacing:19.697818px;}
.ls4d{letter-spacing:20.168171px;}
.ls4e{letter-spacing:20.520971px;}
.ls56{letter-spacing:20.873771px;}
.ls32{letter-spacing:21.050218px;}
.ls4b{letter-spacing:21.285422px;}
.ls26{letter-spacing:21.755818px;}
.ls2c{letter-spacing:22.108558px;}
.ls23{letter-spacing:22.567210px;}
.ls2b{letter-spacing:23.108158px;}
.ls29{letter-spacing:24.107758px;}
.ls0{letter-spacing:24.284111px;}
.ls1{letter-spacing:24.284171px;}
.ls46{letter-spacing:26.036374px;}
.ls24{letter-spacing:28.870498px;}
.ls19{letter-spacing:31.634038px;}
.ls52{letter-spacing:31.751651px;}
.ls2f{letter-spacing:31.986838px;}
.ls51{letter-spacing:31.986898px;}
.ls1c{letter-spacing:32.163240px;}
.ls2d{letter-spacing:32.986438px;}
.ls50{letter-spacing:33.456851px;}
.ls31{letter-spacing:33.986038px;}
.ls48{letter-spacing:35.361958px;}
.ls43{letter-spacing:36.849584px;}
.ls25{letter-spacing:38.572391px;}
.ls13{letter-spacing:42.617831px;}
.ls14{letter-spacing:42.629531px;}
.ls15{letter-spacing:42.629591px;}
.ls1f{letter-spacing:42.829483px;}
.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;}
}
.ws7e{word-spacing:-42.888282px;}
.wsf0{word-spacing:-36.908383px;}
.ws118{word-spacing:-26.095174px;}
.ws8e{word-spacing:-22.626009px;}
.ws1e5{word-spacing:-18.577080px;}
.ws7f{word-spacing:-0.934910px;}
.ws10c{word-spacing:-0.723233px;}
.ws201{word-spacing:-0.710991px;}
.ws1f9{word-spacing:-0.688491px;}
.ws85{word-spacing:-0.658553px;}
.ws72{word-spacing:-0.646793px;}
.ws87{word-spacing:-0.640913px;}
.ws7b{word-spacing:-0.593874px;}
.ws15{word-spacing:-0.061800px;}
.ws19{word-spacing:-0.058799px;}
.ws4b{word-spacing:-0.047999px;}
.ws3d{word-spacing:-0.044999px;}
.ws45{word-spacing:-0.041999px;}
.ws4c{word-spacing:0.000000px;}
.ws146{word-spacing:0.693833px;}
.ws18a{word-spacing:0.770272px;}
.ws1c5{word-spacing:0.981950px;}
.ws1c4{word-spacing:1.081909px;}
.ws1f5{word-spacing:1.093485px;}
.ws1ec{word-spacing:1.097985px;}
.ws173{word-spacing:1.105429px;}
.ws18e{word-spacing:1.111309px;}
.ws1fc{word-spacing:1.142985px;}
.wsb8{word-spacing:10.525093px;}
.ws1e6{word-spacing:10.754857px;}
.ws1f4{word-spacing:10.799856px;}
.ws1e7{word-spacing:10.934854px;}
.ws14a{word-spacing:10.995488px;}
.ws1db{word-spacing:11.069852px;}
.ws1dd{word-spacing:11.114852px;}
.ws133{word-spacing:11.230685px;}
.ws1e1{word-spacing:11.474847px;}
.ws1e2{word-spacing:11.519846px;}
.ws1dc{word-spacing:11.744843px;}
.ws3c{word-spacing:11.879842px;}
.ws46{word-spacing:12.305824px;}
.ws41{word-spacing:12.431822px;}
.ws47{word-spacing:12.515821px;}
.ws48{word-spacing:12.599820px;}
.ws44{word-spacing:12.683819px;}
.ws43{word-spacing:12.809817px;}
.ws42{word-spacing:12.893816px;}
.ws202{word-spacing:12.914921px;}
.ws1eb{word-spacing:12.928328px;}
.ws1fb{word-spacing:12.991327px;}
.ws1f6{word-spacing:13.184824px;}
.ws1e9{word-spacing:13.229824px;}
.ws1ea{word-spacing:13.256823px;}
.ws1de{word-spacing:13.274823px;}
.ws40{word-spacing:13.319822px;}
.ws1fa{word-spacing:13.328822px;}
.ws1e0{word-spacing:13.364822px;}
.ws1e3{word-spacing:13.409821px;}
.ws1ef{word-spacing:13.418821px;}
.ws136{word-spacing:13.446000px;}
.ws1d7{word-spacing:13.454821px;}
.ws1d9{word-spacing:13.499820px;}
.ws3f{word-spacing:13.544819px;}
.ws1df{word-spacing:13.589819px;}
.ws135{word-spacing:13.608000px;}
.ws1d8{word-spacing:13.634794px;}
.ws3e{word-spacing:13.634818px;}
.ws1ed{word-spacing:13.639318px;}
.ws1da{word-spacing:13.679818px;}
.ws1e8{word-spacing:13.814816px;}
.wsbe{word-spacing:13.817859px;}
.ws13b{word-spacing:13.823827px;}
.ws49{word-spacing:13.823833px;}
.ws1e4{word-spacing:13.859815px;}
.ws1ee{word-spacing:13.864315px;}
.ws91{word-spacing:13.871827px;}
.ws13c{word-spacing:13.919826px;}
.ws137{word-spacing:13.932000px;}
.ws4a{word-spacing:14.063824px;}
.ws164{word-spacing:14.111824px;}
.ws165{word-spacing:14.159823px;}
.ws90{word-spacing:14.207822px;}
.ws13e{word-spacing:14.207852px;}
.ws92{word-spacing:14.255822px;}
.ws139{word-spacing:14.303810px;}
.ws138{word-spacing:14.351821px;}
.ws1d3{word-spacing:14.405853px;}
.ws19b{word-spacing:14.699850px;}
.ws14b{word-spacing:14.758649px;}
.ws21{word-spacing:14.817449px;}
.ws35{word-spacing:14.876248px;}
.ws19a{word-spacing:14.935048px;}
.ws3a{word-spacing:14.993847px;}
.ws11{word-spacing:15.000150px;}
.ws2d{word-spacing:15.052646px;}
.wse{word-spacing:15.060151px;}
.ws2e{word-spacing:15.111446px;}
.ws8{word-spacing:15.120151px;}
.ws51{word-spacing:15.170245px;}
.wsd{word-spacing:15.180152px;}
.wsa{word-spacing:15.240152px;}
.ws5f{word-spacing:15.287844px;}
.wsb6{word-spacing:15.346643px;}
.ws9{word-spacing:15.360154px;}
.wsf{word-spacing:15.360170px;}
.ws10{word-spacing:15.420154px;}
.ws39{word-spacing:15.464242px;}
.ws141{word-spacing:15.523042px;}
.wsbf{word-spacing:15.699440px;}
.ws7{word-spacing:15.780158px;}
.ws143{word-spacing:15.817039px;}
.wsb{word-spacing:15.840158px;}
.ws36{word-spacing:15.875838px;}
.ws132{word-spacing:15.934637px;}
.wsba{word-spacing:15.993437px;}
.ws1a4{word-spacing:16.075756px;}
.ws134{word-spacing:16.092000px;}
.ws1a5{word-spacing:16.145456px;}
.ws1a{word-spacing:16.169835px;}
.ws1a6{word-spacing:16.199235px;}
.ws53{word-spacing:16.228634px;}
.ws17c{word-spacing:16.299194px;}
.ws79{word-spacing:16.310954px;}
.ws16c{word-spacing:16.316834px;}
.ws94{word-spacing:16.346233px;}
.ws1bf{word-spacing:16.375633px;}
.ws12{word-spacing:16.440195px;}
.ws191{word-spacing:16.522631px;}
.ws1d4{word-spacing:16.581431px;}
.ws1a1{word-spacing:16.675510px;}
.ws1d5{word-spacing:16.781349px;}
.ws1bc{word-spacing:16.840148px;}
.ws1c8{word-spacing:16.846028px;}
.ws1b5{word-spacing:16.851902px;}
.wse8{word-spacing:16.875428px;}
.wsaf{word-spacing:16.934227px;}
.ws200{word-spacing:16.946774px;}
.ws67{word-spacing:16.993027px;}
.ws99{word-spacing:17.110625px;}
.ws18d{word-spacing:17.163545px;}
.wsa2{word-spacing:17.169425px;}
.ws185{word-spacing:17.287024px;}
.ws186{word-spacing:17.316423px;}
.wsec{word-spacing:17.345823px;}
.ws13{word-spacing:17.394174px;}
.ws1f1{word-spacing:17.396768px;}
.wsc{word-spacing:17.406179px;}
.ws1fe{word-spacing:17.419268px;}
.wsd1{word-spacing:17.463422px;}
.ws1fd{word-spacing:17.464267px;}
.ws1f2{word-spacing:17.468767px;}
.ws14{word-spacing:17.502175px;}
.ws34{word-spacing:17.522221px;}
.ws5a{word-spacing:17.581021px;}
.wsb0{word-spacing:17.639820px;}
.ws1b9{word-spacing:17.669220px;}
.ws131{word-spacing:17.675100px;}
.wsb2{word-spacing:17.698619px;}
.ws1ff{word-spacing:17.729764px;}
.ws144{word-spacing:17.757419px;}
.ws60{word-spacing:17.816218px;}
.wsc5{word-spacing:17.875018px;}
.ws179{word-spacing:17.898537px;}
.wsa3{word-spacing:17.933817px;}
.wsab{word-spacing:17.992616px;}
.ws6{word-spacing:18.000180px;}
.ws32{word-spacing:18.051416px;}
.wsb9{word-spacing:18.057296px;}
.wse3{word-spacing:18.110215px;}
.ws129{word-spacing:18.169015px;}
.ws31{word-spacing:18.227814px;}
.ws1f7{word-spacing:18.314756px;}
.ws82{word-spacing:18.321893px;}
.ws57{word-spacing:18.345413px;}
.ws1c0{word-spacing:18.351293px;}
.ws1c1{word-spacing:18.368933px;}
.ws58{word-spacing:18.404212px;}
.ws169{word-spacing:18.463012px;}
.ws1d6{word-spacing:18.478200px;}
.ws9f{word-spacing:18.521811px;}
.ws1f8{word-spacing:18.539753px;}
.ws59{word-spacing:18.580610px;}
.ws5{word-spacing:18.600220px;}
.ws1f0{word-spacing:18.629752px;}
.wsf2{word-spacing:18.639410px;}
.ws1cb{word-spacing:18.645290px;}
.wsed{word-spacing:18.698209px;}
.ws65{word-spacing:18.815808px;}
.wsc3{word-spacing:18.874607px;}
.ws1c3{word-spacing:18.886367px;}
.ws16f{word-spacing:18.892247px;}
.ws1c2{word-spacing:18.915767px;}
.ws30{word-spacing:18.933407px;}
.ws17{word-spacing:18.992206px;}
.ws1c6{word-spacing:19.015726px;}
.ws17e{word-spacing:19.021606px;}
.ws29{word-spacing:19.051006px;}
.ws18{word-spacing:19.109805px;}
.ws1c7{word-spacing:19.162724px;}
.wscc{word-spacing:19.168604px;}
.ws26{word-spacing:19.227404px;}
.ws168{word-spacing:19.286203px;}
.ws17b{word-spacing:19.444962px;}
.ws175{word-spacing:19.456721px;}
.ws16{word-spacing:19.462601px;}
.ws2c{word-spacing:19.521401px;}
.ws142{word-spacing:19.580189px;}
.ws5e{word-spacing:19.580200px;}
.ws1c9{word-spacing:19.597840px;}
.ws4{word-spacing:19.602178px;}
.wsf4{word-spacing:19.639000px;}
.ws3{word-spacing:19.800180px;}
.wsf7{word-spacing:19.874197px;}
.ws17f{word-spacing:19.950636px;}
.ws17a{word-spacing:19.974156px;}
.ws55{word-spacing:19.991796px;}
.ws15e{word-spacing:20.168194px;}
.ws3b{word-spacing:20.226994px;}
.ws6c{word-spacing:20.285793px;}
.ws8f{word-spacing:20.344592px;}
.ws14f{word-spacing:20.520991px;}
.ws1d{word-spacing:20.579790px;}
.ws23{word-spacing:20.638589px;}
.ws170{word-spacing:20.662109px;}
.ws24{word-spacing:20.756188px;}
.wsaa{word-spacing:20.814988px;}
.ws14e{word-spacing:20.873787px;}
.ws140{word-spacing:20.932586px;}
.ws17d{word-spacing:20.979626px;}
.ws1cc{word-spacing:20.985506px;}
.ws1be{word-spacing:21.032545px;}
.wsf6{word-spacing:21.050185px;}
.ws171{word-spacing:21.097225px;}
.ws2a{word-spacing:21.108985px;}
.ws1af{word-spacing:21.132504px;}
.ws25{word-spacing:21.167784px;}
.ws1cd{word-spacing:21.197184px;}
.wsa9{word-spacing:21.226583px;}
.ws54{word-spacing:21.285383px;}
.ws19e{word-spacing:21.291263px;}
.ws6b{word-spacing:21.344182px;}
.ws16a{word-spacing:21.402982px;}
.wsc4{word-spacing:21.579380px;}
.ws7d{word-spacing:21.585260px;}
.ws7a{word-spacing:21.597020px;}
.wsa8{word-spacing:21.638179px;}
.ws1f{word-spacing:21.696979px;}
.ws187{word-spacing:21.761658px;}
.ws1d0{word-spacing:21.802818px;}
.ws1cf{word-spacing:21.826337px;}
.wsfa{word-spacing:21.873377px;}
.ws6a{word-spacing:21.873421px;}
.wsa7{word-spacing:21.932171px;}
.ws62{word-spacing:21.932176px;}
.ws188{word-spacing:21.949816px;}
.ws61{word-spacing:21.990976px;}
.ws8c{word-spacing:22.049775px;}
.wsa0{word-spacing:22.108574px;}
.ws183{word-spacing:22.161494px;}
.ws12b{word-spacing:22.167374px;}
.ws69{word-spacing:22.226146px;}
.ws8d{word-spacing:22.226173px;}
.wsd2{word-spacing:22.226222px;}
.ws182{word-spacing:22.267333px;}
.ws5b{word-spacing:22.284973px;}
.wsbb{word-spacing:22.343772px;}
.ws1ac{word-spacing:22.443731px;}
.ws12d{word-spacing:22.461371px;}
.wsfc{word-spacing:22.467251px;}
.ws1ab{word-spacing:22.526050px;}
.wsbd{word-spacing:22.578970px;}
.ws1c{word-spacing:22.637769px;}
.ws126{word-spacing:22.643649px;}
.ws106{word-spacing:22.655409px;}
.ws1b8{word-spacing:22.667169px;}
.ws74{word-spacing:22.720088px;}
.ws81{word-spacing:22.731848px;}
.wsd0{word-spacing:22.755368px;}
.ws10d{word-spacing:22.784768px;}
.ws38{word-spacing:22.814167px;}
.ws177{word-spacing:22.855327px;}
.wsd6{word-spacing:22.872967px;}
.ws120{word-spacing:22.902366px;}
.ws152{word-spacing:22.931766px;}
.ws181{word-spacing:22.972926px;}
.wsae{word-spacing:22.990565px;}
.ws199{word-spacing:23.049365px;}
.wsda{word-spacing:23.108164px;}
.ws1b0{word-spacing:23.214003px;}
.ws198{word-spacing:23.225763px;}
.ws20{word-spacing:23.284562px;}
.ws153{word-spacing:23.343362px;}
.wsdc{word-spacing:23.402161px;}
.wsa6{word-spacing:23.460961px;}
.wse5{word-spacing:23.519760px;}
.wscd{word-spacing:23.578559px;}
.ws70{word-spacing:23.607959px;}
.ws0{word-spacing:23.634000px;}
.ws28{word-spacing:23.637359px;}
.wsb1{word-spacing:23.696158px;}
.ws27{word-spacing:23.754958px;}
.wsee{word-spacing:23.813757px;}
.wsb7{word-spacing:23.872556px;}
.ws6f{word-spacing:23.948996px;}
.wsbc{word-spacing:23.960756px;}
.wsce{word-spacing:23.990155px;}
.ws7c{word-spacing:24.013675px;}
.ws4f{word-spacing:24.048955px;}
.ws195{word-spacing:24.054835px;}
.ws52{word-spacing:24.166553px;}
.ws33{word-spacing:24.225353px;}
.ws50{word-spacing:24.284152px;}
.ws18f{word-spacing:24.342952px;}
.ws107{word-spacing:24.395871px;}
.ws154{word-spacing:24.401751px;}
.ws1a0{word-spacing:24.425271px;}
.ws9e{word-spacing:24.460550px;}
.wsfd{word-spacing:24.501710px;}
.ws194{word-spacing:24.595789px;}
.ws14c{word-spacing:24.695748px;}
.ws109{word-spacing:24.772187px;}
.ws71{word-spacing:24.813347px;}
.ws1b2{word-spacing:24.866260px;}
.ws5c{word-spacing:24.872146px;}
.ws119{word-spacing:24.919186px;}
.ws1b1{word-spacing:24.942705px;}
.ws110{word-spacing:24.960345px;}
.ws5d{word-spacing:24.989745px;}
.wsb3{word-spacing:25.048544px;}
.ws1ce{word-spacing:25.060304px;}
.ws68{word-spacing:25.107344px;}
.ws157{word-spacing:25.166143px;}
.wse7{word-spacing:25.283742px;}
.ws176{word-spacing:25.330782px;}
.ws156{word-spacing:25.342541px;}
.ws111{word-spacing:25.389581px;}
.wsc1{word-spacing:25.401341px;}
.ws150{word-spacing:25.460140px;}
.ws6d{word-spacing:25.636538px;}
.wsc0{word-spacing:25.695338px;}
.wsa5{word-spacing:25.754137px;}
.ws11e{word-spacing:25.765897px;}
.wsac{word-spacing:26.048134px;}
.ws1ae{word-spacing:26.071654px;}
.wsa1{word-spacing:26.283332px;}
.ws159{word-spacing:26.342131px;}
.ws1ca{word-spacing:26.348011px;}
.ws37{word-spacing:26.400931px;}
.ws1a2{word-spacing:26.418570px;}
.ws1ad{word-spacing:26.489130px;}
.ws10f{word-spacing:26.518529px;}
.ws56{word-spacing:26.636128px;}
.ws101{word-spacing:26.677288px;}
.wseb{word-spacing:26.694928px;}
.ws189{word-spacing:26.789007px;}
.ws77{word-spacing:26.812526px;}
.ws19c{word-spacing:26.871326px;}
.ws167{word-spacing:26.930125px;}
.wse4{word-spacing:27.047724px;}
.ws83{word-spacing:27.094764px;}
.ws22{word-spacing:27.106523px;}
.ws18c{word-spacing:27.112403px;}
.ws174{word-spacing:27.259402px;}
.wsd8{word-spacing:27.282922px;}
.ws18b{word-spacing:27.294681px;}
.wsfe{word-spacing:27.335841px;}
.ws172{word-spacing:27.371121px;}
.ws14d{word-spacing:27.400520px;}
.ws12a{word-spacing:27.518119px;}
.ws4d{word-spacing:27.576919px;}
.ws1aa{word-spacing:27.606318px;}
.ws1d2{word-spacing:27.741557px;}
.ws12c{word-spacing:27.753317px;}
.ws1a9{word-spacing:27.753326px;}
.wsdd{word-spacing:27.812116px;}
.ws1d1{word-spacing:27.823876px;}
.ws96{word-spacing:27.870916px;}
.ws4e{word-spacing:27.929715px;}
.wsea{word-spacing:28.106113px;}
.ws1bd{word-spacing:28.123753px;}
.ws117{word-spacing:28.135513px;}
.ws115{word-spacing:28.270752px;}
.ws89{word-spacing:28.282511px;}
.ws2b{word-spacing:28.400110px;}
.ws11d{word-spacing:28.458910px;}
.wsff{word-spacing:28.635308px;}
.ws116{word-spacing:28.829346px;}
.ws166{word-spacing:28.870505px;}
.ws93{word-spacing:28.929305px;}
.wsc6{word-spacing:28.988104px;}
.ws16e{word-spacing:28.993984px;}
.ws1b4{word-spacing:29.035144px;}
.ws73{word-spacing:29.058663px;}
.wsf9{word-spacing:29.105703px;}
.ws16b{word-spacing:29.146863px;}
.ws88{word-spacing:29.164502px;}
.ws15d{word-spacing:29.223302px;}
.ws12e{word-spacing:29.340913px;}
.ws1b3{word-spacing:29.352660px;}
.ws16d{word-spacing:29.358540px;}
.wsde{word-spacing:29.399700px;}
.ws193{word-spacing:29.458499px;}
.wsad{word-spacing:29.517299px;}
.wsdb{word-spacing:29.576098px;}
.ws95{word-spacing:29.634898px;}
.ws12f{word-spacing:29.811296px;}
.wsf8{word-spacing:29.870095px;}
.ws1bb{word-spacing:29.899495px;}
.ws98{word-spacing:29.928895px;}
.ws86{word-spacing:29.964174px;}
.wse9{word-spacing:30.046493px;}
.ws84{word-spacing:30.111173px;}
.ws178{word-spacing:30.152332px;}
.ws10e{word-spacing:30.269931px;}
.ws155{word-spacing:30.340490px;}
.ws1ba{word-spacing:30.358130px;}
.ws114{word-spacing:30.416930px;}
.wsd4{word-spacing:30.458089px;}
.ws180{word-spacing:30.511009px;}
.wsc7{word-spacing:30.634487px;}
.wsd3{word-spacing:30.752065px;}
.ws2f{word-spacing:30.810886px;}
.ws64{word-spacing:30.928484px;}
.ws75{word-spacing:30.963764px;}
.ws161{word-spacing:31.046083px;}
.ws19d{word-spacing:31.104883px;}
.ws151{word-spacing:31.163682px;}
.wsb4{word-spacing:31.222481px;}
.wsd9{word-spacing:31.281281px;}
.ws97{word-spacing:31.340080px;}
.wsd5{word-spacing:31.398880px;}
.ws1b6{word-spacing:31.404760px;}
.ws1b7{word-spacing:31.422399px;}
.ws1b{word-spacing:31.516478px;}
.wsc8{word-spacing:31.751676px;}
.ws8a{word-spacing:31.751677px;}
.ws104{word-spacing:31.763436px;}
.ws8b{word-spacing:31.810475px;}
.ws15f{word-spacing:31.986874px;}
.ws160{word-spacing:32.045673px;}
.wsca{word-spacing:32.104472px;}
.wsc9{word-spacing:32.163272px;}
.ws148{word-spacing:32.222071px;}
.ws15a{word-spacing:32.280871px;}
.ws63{word-spacing:32.339670px;}
.wsd7{word-spacing:32.457269px;}
.ws127{word-spacing:32.457307px;}
.ws76{word-spacing:32.516068px;}
.ws128{word-spacing:32.574868px;}
.ws149{word-spacing:32.692466px;}
.wsb5{word-spacing:32.810065px;}
.ws184{word-spacing:32.845345px;}
.wsf1{word-spacing:32.927664px;}
.ws15c{word-spacing:33.045263px;}
.wscf{word-spacing:33.104062px;}
.ws15b{word-spacing:33.280460px;}
.ws13f{word-spacing:33.339260px;}
.ws162{word-spacing:33.574457px;}
.wsf5{word-spacing:33.633257px;}
.ws11a{word-spacing:34.138932px;}
.wse2{word-spacing:34.162451px;}
.wscb{word-spacing:34.280050px;}
.wsa4{word-spacing:34.338850px;}
.ws158{word-spacing:34.750445px;}
.ws102{word-spacing:34.850404px;}
.ws6e{word-spacing:34.985643px;}
.wse0{word-spacing:35.044442px;}
.ws108{word-spacing:35.126762px;}
.ws112{word-spacing:35.561877px;}
.wse1{word-spacing:35.691236px;}
.wsc2{word-spacing:35.926433px;}
.ws103{word-spacing:35.949953px;}
.ws100{word-spacing:36.161631px;}
.ws78{word-spacing:36.191031px;}
.ws105{word-spacing:36.614386px;}
.wsef{word-spacing:36.808424px;}
.ws145{word-spacing:37.455218px;}
.ws124{word-spacing:37.737455px;}
.ws9c{word-spacing:37.866799px;}
.ws19f{word-spacing:37.955013px;}
.ws9d{word-spacing:37.984412px;}
.ws9b{word-spacing:38.101993px;}
.ws121{word-spacing:38.102011px;}
.ws11f{word-spacing:38.290169px;}
.ws11c{word-spacing:38.301929px;}
.ws1a3{word-spacing:38.548887px;}
.ws9a{word-spacing:38.572406px;}
.wse6{word-spacing:38.631206px;}
.ws147{word-spacing:38.748805px;}
.ws125{word-spacing:38.795844px;}
.wsdf{word-spacing:38.925203px;}
.ws130{word-spacing:39.101601px;}
.ws1a7{word-spacing:39.942432px;}
.ws196{word-spacing:40.571586px;}
.wsf3{word-spacing:40.689185px;}
.ws197{word-spacing:40.983182px;}
.ws11b{word-spacing:41.136060px;}
.ws80{word-spacing:41.171340px;}
.ws10b{word-spacing:41.277179px;}
.ws123{word-spacing:41.794614px;}
.ws1e{word-spacing:41.906332px;}
.ws122{word-spacing:42.112130px;}
.ws1a8{word-spacing:42.635445px;}
.ws1{word-spacing:42.912179px;}
.wsfb{word-spacing:43.158760px;}
.ws2{word-spacing:43.344181px;}
.ws163{word-spacing:44.040751px;}
.ws1f3{word-spacing:44.145047px;}
.ws113{word-spacing:45.534255px;}
.ws192{word-spacing:48.568304px;}
.ws190{word-spacing:48.803502px;}
.ws66{word-spacing:52.037469px;}
.ws10a{word-spacing:53.178177px;}
.ws13d{word-spacing:59.135252px;}
.ws13a{word-spacing:100.366730px;}
._15{margin-left:-42.217969px;}
._20{margin-left:-37.139362px;}
._23{margin-left:-25.518940px;}
._24{margin-left:-24.284152px;}
._17{margin-left:-22.974008px;}
._34{margin-left:-17.922000px;}
._26{margin-left:-11.685364px;}
._25{margin-left:-10.062893px;}
._2f{margin-left:-6.609281px;}
._10{margin-left:-5.330266px;}
._b{margin-left:-3.696132px;}
._5{margin-left:-1.980020px;}
._8{width:1.680017px;}
._1c{width:2.982976px;}
._0{width:8.970000px;}
._33{width:10.034866px;}
._19{width:11.389244px;}
._11{width:13.565796px;}
._6{width:14.760148px;}
._13{width:15.778719px;}
._7{width:16.800168px;}
._d{width:18.051416px;}
._4{width:19.080191px;}
._f{width:20.189994px;}
._a{width:21.638179px;}
._30{width:22.674776px;}
._9{width:23.738438px;}
._1a{width:24.933586px;}
._c{width:26.146573px;}
._16{width:27.263762px;}
._1d{width:28.400110px;}
._e{width:29.500779px;}
._12{width:31.381040px;}
._1{width:32.682000px;}
._1b{width:34.085812px;}
._1f{width:35.300120px;}
._14{width:36.320189px;}
._21{width:38.754811px;}
._1e{width:40.537952px;}
._32{width:42.042924px;}
._3{width:44.064184px;}
._36{width:45.824311px;}
._22{width:47.692319px;}
._31{width:50.080569px;}
._35{width:65.879122px;}
._2e{width:96.190798px;}
._2b{width:100.414729px;}
._29{width:160.173998px;}
._27{width:167.277909px;}
._2d{width:270.044636px;}
._2c{width:309.884138px;}
._2a{width:362.347463px;}
._28{width:383.899193px;}
._18{width:1469.981638px;}
._2{width:1602.275940px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(19,20,19);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:29.995200px;}
.fs9{font-size:41.999400px;}
.fs3{font-size:43.996200px;}
.fs7{font-size:44.999400px;}
.fsa{font-size:47.999400px;}
.fsb{font-size:54.000000px;}
.fs6{font-size:58.799400px;}
.fs5{font-size:60.000600px;}
.fs4{font-size:61.800000px;}
.fs2{font-size:66.000600px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y47{bottom:65.394090px;}
.y46{bottom:77.384925px;}
.y1ca{bottom:89.279730px;}
.y183{bottom:89.290230px;}
.y147{bottom:89.327400px;}
.ye5{bottom:89.329635px;}
.y45{bottom:89.375745px;}
.y11a{bottom:89.409270px;}
.y9f{bottom:89.418900px;}
.yd2{bottom:97.061130px;}
.y86{bottom:98.645505px;}
.y44{bottom:101.366580px;}
.y1c9{bottom:102.802035px;}
.y182{bottom:102.812550px;}
.y146{bottom:107.349420px;}
.ye4{bottom:107.351655px;}
.y119{bottom:107.431275px;}
.y9e{bottom:107.440905px;}
.y43{bottom:113.357400px;}
.y1c8{bottom:116.324355px;}
.y181{bottom:116.333700px;}
.yd1{bottom:118.060860px;}
.y145{bottom:125.297925px;}
.ye3{bottom:125.373675px;}
.y118{bottom:125.379795px;}
.y9d{bottom:125.462925px;}
.y1c7{bottom:130.105425px;}
.y42{bottom:138.782184px;}
.yd0{bottom:139.060605px;}
.y144{bottom:143.319945px;}
.ye2{bottom:143.322195px;}
.y117{bottom:143.401815px;}
.y9c{bottom:143.411445px;}
.y1c6{bottom:143.627745px;}
.y41{bottom:152.304504px;}
.y1c5{bottom:157.150065px;}
.y180{bottom:158.340105px;}
.ycf{bottom:160.060335px;}
.y143{bottom:161.341965px;}
.ye1{bottom:161.344200px;}
.y116{bottom:161.423835px;}
.y9b{bottom:161.433450px;}
.y40{bottom:165.826824px;}
.y3f{bottom:170.844174px;}
.y1c4{bottom:170.931135px;}
.y3a{bottom:171.598389px;}
.y20a{bottom:179.263635px;}
.y142{bottom:179.290485px;}
.y3e{bottom:179.351904px;}
.ye0{bottom:179.366220px;}
.y115{bottom:179.372340px;}
.y9a{bottom:179.455470px;}
.yce{bottom:181.060065px;}
.y1c3{bottom:184.453455px;}
.y17f{bottom:185.384745px;}
.y39{bottom:189.546909px;}
.y3d{bottom:192.784224px;}
.y209{bottom:192.785955px;}
.y141{bottom:197.312490px;}
.ydf{bottom:197.314740px;}
.y114{bottom:197.394360px;}
.y99{bottom:197.403990px;}
.y3c{bottom:197.801589px;}
.y1c2{bottom:198.313275px;}
.y17e{bottom:198.907065px;}
.ycd{bottom:202.059810px;}
.y17d{bottom:203.839350px;}
.y3b{bottom:206.305524px;}
.y208{bottom:206.308275px;}
.y38{bottom:207.568929px;}
.y1c1{bottom:211.745595px;}
.y17c{bottom:212.342115px;}
.y140{bottom:215.334510px;}
.yde{bottom:215.336745px;}
.y113{bottom:215.416380px;}
.y98{bottom:215.426010px;}
.y207{bottom:219.841215px;}
.ycc{bottom:223.059540px;}
.y1c0{bottom:225.267915px;}
.y37{bottom:225.590934px;}
.y179{bottom:225.862425px;}
.y17b{bottom:225.864435px;}
.y17a{bottom:230.881800px;}
.y206{bottom:233.273535px;}
.y13f{bottom:233.283030px;}
.ydd{bottom:233.358765px;}
.y112{bottom:233.364885px;}
.y97{bottom:233.448015px;}
.y1bf{bottom:239.127720px;}
.y178{bottom:239.384745px;}
.ycb{bottom:242.787300px;}
.y26{bottom:243.510039px;}
.y36{bottom:243.539454px;}
.y205{bottom:246.795855px;}
.y13e{bottom:251.305035px;}
.ydc{bottom:251.307285px;}
.y111{bottom:251.386905px;}
.y96{bottom:251.396535px;}
.y1be{bottom:252.560040px;}
.y177{bottom:252.907065px;}
.y175{bottom:252.910830px;}
.y176{bottom:257.839350px;}
.y204{bottom:260.318175px;}
.y25{bottom:261.532044px;}
.y35{bottom:261.561474px;}
.yca{bottom:262.518300px;}
.y1bd{bottom:266.082360px;}
.y172{bottom:266.341110px;}
.y174{bottom:266.343150px;}
.y13d{bottom:269.327055px;}
.ydb{bottom:269.329305px;}
.y110{bottom:269.408925px;}
.y95{bottom:269.418555px;}
.y173{bottom:271.360500px;}
.y203{bottom:273.840495px;}
.yc9{bottom:279.015300px;}
.y24{bottom:279.554064px;}
.y1bc{bottom:279.581475px;}
.y34{bottom:279.583479px;}
.y171{bottom:279.863430px;}
.y202{bottom:287.272815px;}
.y13c{bottom:287.275575px;}
.yda{bottom:287.351310px;}
.y10f{bottom:287.357445px;}
.y94{bottom:287.440560px;}
.y1bb{bottom:293.362545px;}
.y170{bottom:293.385750px;}
.y16e{bottom:293.388510px;}
.yc8{bottom:295.512300px;}
.y23{bottom:297.502584px;}
.y33{bottom:297.531999px;}
.y16f{bottom:298.403085px;}
.y201{bottom:300.795135px;}
.y13b{bottom:305.297580px;}
.yd9{bottom:305.299830px;}
.y10e{bottom:305.379450px;}
.y93{bottom:305.389080px;}
.y1ba{bottom:306.884865px;}
.y16d{bottom:306.910830px;}
.yc7{bottom:312.009300px;}
.y200{bottom:314.317455px;}
.y22{bottom:315.524604px;}
.y32{bottom:315.554019px;}
.y16a{bottom:320.342115px;}
.y16c{bottom:320.343150px;}
.y1b9{bottom:320.407185px;}
.y13a{bottom:323.319600px;}
.yd8{bottom:323.321850px;}
.y10d{bottom:323.401470px;}
.y92{bottom:323.411100px;}
.y16b{bottom:325.360500px;}
.y1ff{bottom:327.839775px;}
.y21{bottom:333.546609px;}
.y31{bottom:333.576039px;}
.y169{bottom:333.864435px;}
.y1b8{bottom:334.188240px;}
.y168{bottom:338.881800px;}
.y139{bottom:341.262915px;}
.yd7{bottom:341.270355px;}
.y1fe{bottom:341.272095px;}
.yc6{bottom:341.320260px;}
.y10c{bottom:341.349990px;}
.y91{bottom:341.359620px;}
.y167{bottom:347.387475px;}
.y1b7{bottom:347.710560px;}
.y20{bottom:351.495129px;}
.y30{bottom:351.524544px;}
.y1fd{bottom:354.794415px;}
.yd6{bottom:359.292375px;}
.yc5{bottom:359.342280px;}
.y10b{bottom:359.371995px;}
.y90{bottom:359.381625px;}
.y1b6{bottom:361.232880px;}
.y1fc{bottom:368.316735px;}
.y1f{bottom:369.517149px;}
.y2f{bottom:369.546564px;}
.y166{bottom:374.342115px;}
.y1b5{bottom:375.013950px;}
.yd5{bottom:377.314395px;}
.y138{bottom:377.357970px;}
.yc4{bottom:377.364300px;}
.y10a{bottom:377.394015px;}
.y8f{bottom:377.403645px;}
.y1fb{bottom:381.839055px;}
.y1e{bottom:387.539154px;}
.y2e{bottom:387.568584px;}
.y165{bottom:387.864435px;}
.y1b4{bottom:388.536270px;}
.yd4{bottom:395.262915px;}
.y1fa{bottom:395.271375px;}
.y137{bottom:395.306490px;}
.yc3{bottom:395.312820px;}
.y109{bottom:395.342535px;}
.y8e{bottom:395.352165px;}
.y164{bottom:401.385780px;}
.y1b3{bottom:402.396090px;}
.y1d{bottom:405.487674px;}
.y2d{bottom:405.517089px;}
.y1f9{bottom:408.793695px;}
.y136{bottom:413.328510px;}
.yc2{bottom:413.334825px;}
.y108{bottom:413.364555px;}
.y8d{bottom:413.374170px;}
.y1b2{bottom:415.828410px;}
.y1f8{bottom:422.316015px;}
.y1c{bottom:423.509694px;}
.y2c{bottom:423.539109px;}
.y1b1{bottom:429.688230px;}
.y135{bottom:431.350530px;}
.yc1{bottom:431.356845px;}
.y107{bottom:431.386560px;}
.y8c{bottom:431.396190px;}
.y1f7{bottom:435.838335px;}
.y122{bottom:437.126025px;}
.y163{bottom:438.972585px;}
.y1b{bottom:441.531714px;}
.y2b{bottom:441.561129px;}
.y1b0{bottom:443.210550px;}
.y1f6{bottom:449.270655px;}
.y134{bottom:449.299035px;}
.yc0{bottom:449.305365px;}
.y106{bottom:449.335080px;}
.y8b{bottom:449.344710px;}
.y121{bottom:452.089845px;}
.y162{bottom:452.404905px;}
.y1af{bottom:456.991605px;}
.y1a{bottom:459.480219px;}
.y2a{bottom:459.509649px;}
.y1f5{bottom:462.792975px;}
.y120{bottom:467.053650px;}
.y133{bottom:467.321055px;}
.ybf{bottom:467.327370px;}
.y105{bottom:467.357100px;}
.y8a{bottom:467.366730px;}
.y1ae{bottom:470.513925px;}
.y1f4{bottom:476.315295px;}
.y19{bottom:477.502239px;}
.y29{bottom:477.531654px;}
.y161{bottom:480.979530px;}
.y11f{bottom:482.101470px;}
.y1ad{bottom:484.036245px;}
.y132{bottom:485.343075px;}
.ybe{bottom:485.349390px;}
.y104{bottom:485.379105px;}
.y89{bottom:485.388735px;}
.y1f3{bottom:489.837615px;}
.y160{bottom:494.501850px;}
.y18{bottom:495.524259px;}
.y28{bottom:495.553674px;}
.y11e{bottom:497.065275px;}
.y1ac{bottom:497.817315px;}
.y1f2{bottom:503.269935px;}
.y85{bottom:503.290455px;}
.y131{bottom:503.291595px;}
.ybd{bottom:503.297910px;}
.y103{bottom:503.327625px;}
.y88{bottom:503.337255px;}
.y1ab{bottom:511.339635px;}
.y11d{bottom:512.113080px;}
.y17{bottom:513.467589px;}
.y27{bottom:513.502194px;}
.y1f1{bottom:516.792255px;}
.y84{bottom:521.312475px;}
.y130{bottom:521.313600px;}
.ybc{bottom:521.319930px;}
.y102{bottom:521.349645px;}
.y67{bottom:521.359275px;}
.y15f{bottom:523.076460px;}
.y1aa{bottom:525.199455px;}
.y11c{bottom:527.076900px;}
.y1f0{bottom:530.314575px;}
.y15e{bottom:536.598780px;}
.y1a9{bottom:538.631775px;}
.y83{bottom:539.334480px;}
.y12f{bottom:539.335620px;}
.ybb{bottom:539.341935px;}
.y101{bottom:539.371665px;}
.y66{bottom:539.381280px;}
.y11b{bottom:542.040705px;}
.y1ef{bottom:543.836895px;}
.y15d{bottom:550.031100px;}
.y1a8{bottom:552.491580px;}
.y1ee{bottom:557.269215px;}
.y82{bottom:557.283000px;}
.y12e{bottom:557.284140px;}
.yba{bottom:557.290455px;}
.y100{bottom:557.320170px;}
.y65{bottom:557.329800px;}
.y16{bottom:559.202124px;}
.y1a7{bottom:566.013900px;}
.y1ed{bottom:570.791535px;}
.y81{bottom:575.305020px;}
.y12d{bottom:575.306145px;}
.yb9{bottom:575.312475px;}
.yff{bottom:575.342190px;}
.y64{bottom:575.351820px;}
.y15c{bottom:578.605725px;}
.y1a6{bottom:579.794970px;}
.y1ec{bottom:584.313855px;}
.y15{bottom:584.627379px;}
.y15b{bottom:592.128045px;}
.y1a5{bottom:593.317290px;}
.y80{bottom:593.327040px;}
.y12c{bottom:593.328165px;}
.yb8{bottom:593.334480px;}
.yfe{bottom:593.364210px;}
.y63{bottom:593.373840px;}
.y1eb{bottom:597.836175px;}
.y14{bottom:602.657559px;}
.y15a{bottom:605.650365px;}
.y1a4{bottom:607.098360px;}
.y1ea{bottom:611.268495px;}
.y7f{bottom:611.275545px;}
.y12b{bottom:611.276685px;}
.yb7{bottom:611.283000px;}
.yfd{bottom:611.312715px;}
.y62{bottom:611.322345px;}
.y159{bottom:619.172685px;}
.y1a3{bottom:620.620680px;}
.y13{bottom:620.687739px;}
.y1e9{bottom:624.790815px;}
.y7e{bottom:629.297565px;}
.y12a{bottom:629.298690px;}
.yb6{bottom:629.305020px;}
.yfc{bottom:629.334735px;}
.y61{bottom:629.344365px;}
.y1a2{bottom:634.143000px;}
.y1e8{bottom:638.313135px;}
.y12{bottom:643.142964px;}
.y7d{bottom:647.319585px;}
.y129{bottom:647.320710px;}
.yb5{bottom:647.327040px;}
.yfb{bottom:647.356755px;}
.y60{bottom:647.366385px;}
.y158{bottom:647.747295px;}
.y1a1{bottom:647.924055px;}
.y1e7{bottom:651.835455px;}
.y11{bottom:661.173144px;}
.y157{bottom:661.179615px;}
.y1a0{bottom:661.783875px;}
.y7c{bottom:665.262765px;}
.y1e6{bottom:665.267775px;}
.y128{bottom:665.269230px;}
.yb4{bottom:665.275545px;}
.yfa{bottom:665.305275px;}
.y5f{bottom:665.314890px;}
.y156{bottom:674.701935px;}
.y19f{bottom:675.306195px;}
.y1e5{bottom:678.790095px;}
.y10{bottom:679.203324px;}
.yb3{bottom:683.297565px;}
.yf9{bottom:683.327280px;}
.y5e{bottom:683.336910px;}
.y127{bottom:683.410500px;}
.y19e{bottom:688.738515px;}
.y1e4{bottom:692.312400px;}
.yb2{bottom:701.319585px;}
.yf8{bottom:701.349300px;}
.y5d{bottom:701.358930px;}
.y7b{bottom:701.432430px;}
.y126{bottom:701.476620px;}
.yf{bottom:701.658549px;}
.y19d{bottom:702.260835px;}
.y155{bottom:703.276560px;}
.y1e3{bottom:705.834720px;}
.y19c{bottom:716.120655px;}
.y154{bottom:716.798880px;}
.yb1{bottom:719.262765px;}
.y1e2{bottom:719.267055px;}
.yf7{bottom:719.297820px;}
.y5c{bottom:719.307450px;}
.y7a{bottom:719.380950px;}
.y125{bottom:719.425140px;}
.ye{bottom:719.688729px;}
.y19b{bottom:729.552975px;}
.y153{bottom:730.231200px;}
.y1e1{bottom:732.789360px;}
.yf6{bottom:737.319825px;}
.y5b{bottom:737.329455px;}
.y79{bottom:737.402970px;}
.y124{bottom:737.447145px;}
.yd{bottom:737.718909px;}
.y19a{bottom:743.075295px;}
.y152{bottom:743.753520px;}
.y1e0{bottom:746.311680px;}
.yf5{bottom:755.341845px;}
.y5a{bottom:755.351475px;}
.y78{bottom:755.424975px;}
.yb0{bottom:755.469165px;}
.yc{bottom:755.659089px;}
.y199{bottom:756.935100px;}
.y1df{bottom:759.834000px;}
.y198{bottom:770.367435px;}
.y151{bottom:772.328130px;}
.y1de{bottom:773.266320px;}
.yf4{bottom:773.290365px;}
.y59{bottom:773.299995px;}
.y77{bottom:773.373495px;}
.yaf{bottom:773.417685px;}
.yb{bottom:773.689269px;}
.y197{bottom:783.889740px;}
.y150{bottom:785.850450px;}
.y1dd{bottom:786.788640px;}
.yf3{bottom:791.312385px;}
.y58{bottom:791.322000px;}
.y76{bottom:791.395515px;}
.yae{bottom:791.439705px;}
.ya{bottom:791.719449px;}
.y196{bottom:797.749560px;}
.y14f{bottom:799.372770px;}
.y1dc{bottom:800.310960px;}
.yf2{bottom:809.334390px;}
.y57{bottom:809.344020px;}
.y75{bottom:809.417520px;}
.yad{bottom:809.461710px;}
.y9{bottom:809.659629px;}
.y195{bottom:811.181880px;}
.y14e{bottom:812.805090px;}
.y1db{bottom:813.833280px;}
.y194{bottom:824.704200px;}
.y1da{bottom:827.265600px;}
.yf1{bottom:827.282910px;}
.y56{bottom:827.292540px;}
.y74{bottom:827.366040px;}
.yac{bottom:827.410230px;}
.y8{bottom:836.702109px;}
.y193{bottom:838.564020px;}
.y1d9{bottom:840.787920px;}
.y14d{bottom:841.379715px;}
.yf0{bottom:845.304930px;}
.y55{bottom:845.314560px;}
.y73{bottom:845.388060px;}
.yab{bottom:845.432250px;}
.y192{bottom:852.345090px;}
.y1d8{bottom:854.310240px;}
.y14c{bottom:854.902035px;}
.yef{bottom:863.326935px;}
.y54{bottom:863.336565px;}
.y72{bottom:863.410065px;}
.yaa{bottom:863.454255px;}
.y191{bottom:865.867410px;}
.y1d7{bottom:867.832560px;}
.y14b{bottom:868.424355px;}
.y190{bottom:879.389730px;}
.y6{bottom:880.922694px;}
.y1d6{bottom:881.264880px;}
.yee{bottom:881.275455px;}
.y53{bottom:881.285085px;}
.y71{bottom:881.358585px;}
.ya9{bottom:881.402775px;}
.y14a{bottom:881.946675px;}
.y7{bottom:888.235959px;}
.y18f{bottom:893.170785px;}
.y1d5{bottom:894.787200px;}
.yed{bottom:899.297475px;}
.y52{bottom:899.307105px;}
.y70{bottom:899.380605px;}
.ya8{bottom:899.424795px;}
.y4{bottom:901.927389px;}
.y18e{bottom:906.693105px;}
.y1d4{bottom:908.309520px;}
.y5{bottom:909.240804px;}
.yec{bottom:917.319495px;}
.y51{bottom:917.329110px;}
.y6f{bottom:917.402625px;}
.ya7{bottom:917.446815px;}
.y149{bottom:918.339930px;}
.y18d{bottom:920.552925px;}
.y1d3{bottom:921.831840px;}
.y18c{bottom:933.985245px;}
.yeb{bottom:935.262720px;}
.y1d2{bottom:935.264160px;}
.y50{bottom:935.277630px;}
.y6e{bottom:935.351130px;}
.ya6{bottom:935.395320px;}
.y3{bottom:937.907904px;}
.y18b{bottom:947.845065px;}
.y1d1{bottom:948.786480px;}
.y148{bottom:951.760530px;}
.y4f{bottom:953.299650px;}
.y6d{bottom:953.373150px;}
.ya5{bottom:953.417340px;}
.y18a{bottom:961.367385px;}
.y1d0{bottom:962.308800px;}
.y4e{bottom:971.321655px;}
.yea{bottom:971.350110px;}
.y6c{bottom:971.395170px;}
.ya4{bottom:971.439360px;}
.y189{bottom:975.148440px;}
.y1cf{bottom:975.831120px;}
.y2{bottom:976.932054px;}
.y188{bottom:988.670760px;}
.y1ce{bottom:989.263440px;}
.y4d{bottom:989.270175px;}
.ye9{bottom:989.298615px;}
.y6b{bottom:989.343690px;}
.ya3{bottom:989.387865px;}
.y187{bottom:1002.451830px;}
.y1cd{bottom:1002.785760px;}
.y4c{bottom:1007.292195px;}
.ye8{bottom:1007.320635px;}
.y6a{bottom:1007.365695px;}
.ya2{bottom:1007.409885px;}
.y186{bottom:1015.974150px;}
.y1cc{bottom:1016.308080px;}
.y4b{bottom:1025.314215px;}
.ye7{bottom:1025.342655px;}
.y69{bottom:1025.387715px;}
.ya1{bottom:1025.431905px;}
.y1cb{bottom:1029.830400px;}
.y185{bottom:1029.833970px;}
.y1{bottom:1033.908360px;}
.y4a{bottom:1043.262720px;}
.y184{bottom:1043.266290px;}
.ye6{bottom:1043.291160px;}
.y68{bottom:1043.336235px;}
.ya0{bottom:1043.380425px;}
.y49{bottom:1112.827995px;}
.y87{bottom:1127.788635px;}
.y20b{bottom:1127.791811px;}
.y48{bottom:1127.791815px;}
.yd3{bottom:1127.812260px;}
.y123{bottom:1127.813370px;}
.ha{height:24.686050px;}
.h10{height:32.444567px;}
.hb{height:34.565506px;}
.hd{height:34.607567px;}
.h5{height:36.208873px;}
.h9{height:37.034506px;}
.h11{height:37.127326px;}
.he{height:39.503506px;}
.hc{height:42.287471px;}
.h8{height:42.570766px;}
.hf{height:44.442000px;}
.h6{height:44.557800px;}
.h7{height:49.380494px;}
.h4{height:54.318494px;}
.h2{height:56.238000px;}
.h3{height:103.824433px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039395px;}
.x12{left:89.036295px;}
.x1{left:91.077180px;}
.x15{left:92.947965px;}
.xe{left:94.818945px;}
.xf{left:97.034475px;}
.x1f{left:107.578995px;}
.x16{left:123.222015px;}
.x17{left:127.303965px;}
.x1d{left:145.162215px;}
.x1e{left:149.158965px;}
.x1c{left:168.462915px;}
.x3{left:171.694545px;}
.xd{left:191.763795px;}
.x4{left:202.733895px;}
.x1a{left:213.789015px;}
.x1b{left:217.785780px;}
.x13{left:270.510150px;}
.x5{left:367.880280px;}
.x6{left:381.146445px;}
.x18{left:383.697615px;}
.x19{left:387.779400px;}
.x10{left:457.092600px;}
.x11{left:469.102410px;}
.x20{left:479.627010px;}
.x7{left:504.113295px;}
.x8{left:509.811030px;}
.x14{left:538.301430px;}
.x9{left:636.519660px;}
.xa{left:649.785645px;}
.xb{left:746.985630px;}
.xc{left:757.360380px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls85{letter-spacing:-1.443981pt;}
.ls86{letter-spacing:-1.363982pt;}
.ls88{letter-spacing:-1.335982pt;}
.ls87{letter-spacing:-1.327982pt;}
.ls77{letter-spacing:-1.175988pt;}
.ls74{letter-spacing:-1.113269pt;}
.ls6c{letter-spacing:-1.108042pt;}
.ls82{letter-spacing:-1.103985pt;}
.ls94{letter-spacing:-1.055986pt;}
.ls8{letter-spacing:-1.050677pt;}
.ls91{letter-spacing:-1.047986pt;}
.ls69{letter-spacing:-1.040096pt;}
.ls92{letter-spacing:-1.039986pt;}
.ls60{letter-spacing:-1.034869pt;}
.ls84{letter-spacing:-1.015986pt;}
.ls78{letter-spacing:-1.013963pt;}
.ls83{letter-spacing:-1.011987pt;}
.ls7{letter-spacing:-1.008010pt;}
.ls80{letter-spacing:-0.993057pt;}
.ls93{letter-spacing:-0.987987pt;}
.ls5f{letter-spacing:-0.982603pt;}
.ls68{letter-spacing:-0.977377pt;}
.ls72{letter-spacing:-0.972145pt;}
.ls5a{letter-spacing:-0.966923pt;}
.ls5e{letter-spacing:-0.961697pt;}
.ls5b{letter-spacing:-0.956470pt;}
.ls65{letter-spacing:-0.951244pt;}
.ls6d{letter-spacing:-0.946017pt;}
.ls63{letter-spacing:-0.940790pt;}
.ls62{letter-spacing:-0.935564pt;}
.ls66{letter-spacing:-0.930337pt;}
.ls59{letter-spacing:-0.925111pt;}
.ls61{letter-spacing:-0.919884pt;}
.ls6f{letter-spacing:-0.914657pt;}
.ls64{letter-spacing:-0.909431pt;}
.ls5d{letter-spacing:-0.904204pt;}
.ls76{letter-spacing:-0.898977pt;}
.ls5c{letter-spacing:-0.893751pt;}
.ls67{letter-spacing:-0.888524pt;}
.ls71{letter-spacing:-0.883292pt;}
.ls75{letter-spacing:-0.872844pt;}
.ls70{letter-spacing:-0.862391pt;}
.ls79{letter-spacing:-0.857165pt;}
.ls6a{letter-spacing:-0.841485pt;}
.ls6b{letter-spacing:-0.815352pt;}
.ls73{letter-spacing:-0.804898pt;}
.ls6e{letter-spacing:-0.799672pt;}
.ls7a{letter-spacing:-0.789219pt;}
.ls9{letter-spacing:-0.768312pt;}
.ls5{letter-spacing:-0.741341pt;}
.ls33{letter-spacing:-0.736952pt;}
.ls6{letter-spacing:-0.677340pt;}
.ls54{letter-spacing:-0.669007pt;}
.ls34{letter-spacing:-0.601061pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7d{letter-spacing:0.039972pt;}
.ls7e{letter-spacing:0.040028pt;}
.ls4c{letter-spacing:0.104545pt;}
.ls8d{letter-spacing:0.120028pt;}
.ls4f{letter-spacing:0.156800pt;}
.ls1b{letter-spacing:0.156802pt;}
.ls7b{letter-spacing:0.280035pt;}
.ls2e{letter-spacing:0.313598pt;}
.ls30{letter-spacing:0.313634pt;}
.ls8c{letter-spacing:0.347958pt;}
.ls7f{letter-spacing:0.359972pt;}
.ls90{letter-spacing:0.400000pt;}
.ls1d{letter-spacing:0.402449pt;}
.ls38{letter-spacing:0.470402pt;}
.ls1e{letter-spacing:0.475622pt;}
.ls95{letter-spacing:0.475994pt;}
.ls3c{letter-spacing:0.480848pt;}
.ls1a{letter-spacing:0.491302pt;}
.ls89{letter-spacing:0.495993pt;}
.ls45{letter-spacing:0.506981pt;}
.ls8a{letter-spacing:0.511993pt;}
.ls22{letter-spacing:0.517435pt;}
.lsd{letter-spacing:0.522661pt;}
.ls39{letter-spacing:0.527888pt;}
.ls16{letter-spacing:0.533115pt;}
.ls37{letter-spacing:0.538341pt;}
.lsf{letter-spacing:0.543568pt;}
.lsc{letter-spacing:0.548794pt;}
.ls12{letter-spacing:0.554021pt;}
.lsb{letter-spacing:0.559248pt;}
.ls8e{letter-spacing:0.559993pt;}
.lse{letter-spacing:0.564474pt;}
.ls17{letter-spacing:0.569701pt;}
.ls8b{letter-spacing:0.571992pt;}
.ls3b{letter-spacing:0.574915pt;}
.ls10{letter-spacing:0.574927pt;}
.ls18{letter-spacing:0.574932pt;}
.ls8f{letter-spacing:0.575992pt;}
.ls44{letter-spacing:0.580154pt;}
.ls3a{letter-spacing:0.585381pt;}
.ls36{letter-spacing:0.590607pt;}
.ls96{letter-spacing:0.591992pt;}
.ls11{letter-spacing:0.601061pt;}
.ls21{letter-spacing:0.616740pt;}
.ls3d{letter-spacing:0.731745pt;}
.ls20{letter-spacing:0.778765pt;}
.ls42{letter-spacing:8.575890pt;}
.ls47{letter-spacing:9.742407pt;}
.ls40{letter-spacing:10.139649pt;}
.ls3e{letter-spacing:10.923613pt;}
.ls7c{letter-spacing:11.999802pt;}
.ls49{letter-spacing:12.355678pt;}
.ls41{letter-spacing:12.543840pt;}
.ls53{letter-spacing:12.586489pt;}
.ls4a{letter-spacing:12.700692pt;}
.ls55{letter-spacing:13.108330pt;}
.ls3{letter-spacing:13.380170pt;}
.ls2{letter-spacing:13.693716pt;}
.ls2a{letter-spacing:14.477705pt;}
.ls57{letter-spacing:15.000375pt;}
.ls35{letter-spacing:15.104905pt;}
.ls58{letter-spacing:15.157207pt;}
.ls28{letter-spacing:15.209450pt;}
.ls27{letter-spacing:15.732105pt;}
.ls81{letter-spacing:16.458027pt;}
.lsa{letter-spacing:16.725183pt;}
.ls3f{letter-spacing:17.509172pt;}
.ls4d{letter-spacing:17.927263pt;}
.ls4e{letter-spacing:18.240863pt;}
.ls56{letter-spacing:18.554463pt;}
.ls32{letter-spacing:18.711305pt;}
.ls4b{letter-spacing:18.920375pt;}
.ls26{letter-spacing:19.338505pt;}
.ls2c{letter-spacing:19.652052pt;}
.ls23{letter-spacing:20.059742pt;}
.ls2b{letter-spacing:20.540585pt;}
.ls29{letter-spacing:21.429118pt;}
.ls0{letter-spacing:21.585876pt;}
.ls1{letter-spacing:21.585930pt;}
.ls46{letter-spacing:23.143444pt;}
.ls24{letter-spacing:25.662665pt;}
.ls19{letter-spacing:28.119145pt;}
.ls52{letter-spacing:28.223690pt;}
.ls2f{letter-spacing:28.432745pt;}
.ls51{letter-spacing:28.432798pt;}
.ls1c{letter-spacing:28.589547pt;}
.ls2d{letter-spacing:29.321278pt;}
.ls50{letter-spacing:29.739423pt;}
.ls31{letter-spacing:30.209812pt;}
.ls48{letter-spacing:31.432852pt;}
.ls43{letter-spacing:32.755186pt;}
.ls25{letter-spacing:34.286570pt;}
.ls13{letter-spacing:37.882516pt;}
.ls14{letter-spacing:37.892916pt;}
.ls15{letter-spacing:37.892970pt;}
.ls1f{letter-spacing:38.070652pt;}
.ws7e{word-spacing:-38.122918pt;}
.wsf0{word-spacing:-32.807452pt;}
.ws118{word-spacing:-23.195710pt;}
.ws8e{word-spacing:-20.112008pt;}
.ws1e5{word-spacing:-16.512960pt;}
.ws7f{word-spacing:-0.831032pt;}
.ws10c{word-spacing:-0.642873pt;}
.ws201{word-spacing:-0.631992pt;}
.ws1f9{word-spacing:-0.611992pt;}
.ws85{word-spacing:-0.585381pt;}
.ws72{word-spacing:-0.574927pt;}
.ws87{word-spacing:-0.569701pt;}
.ws7b{word-spacing:-0.527888pt;}
.ws15{word-spacing:-0.054933pt;}
.ws19{word-spacing:-0.052266pt;}
.ws4b{word-spacing:-0.042666pt;}
.ws3d{word-spacing:-0.039999pt;}
.ws45{word-spacing:-0.037333pt;}
.ws4c{word-spacing:0.000000pt;}
.ws146{word-spacing:0.616740pt;}
.ws18a{word-spacing:0.684686pt;}
.ws1c5{word-spacing:0.872844pt;}
.ws1c4{word-spacing:0.961697pt;}
.ws1f5{word-spacing:0.971987pt;}
.ws1ec{word-spacing:0.975987pt;}
.ws173{word-spacing:0.982603pt;}
.ws18e{word-spacing:0.987830pt;}
.ws1fc{word-spacing:1.015986pt;}
.wsb8{word-spacing:9.355638pt;}
.ws1e6{word-spacing:9.559873pt;}
.ws1f4{word-spacing:9.599872pt;}
.ws1e7{word-spacing:9.719870pt;}
.ws14a{word-spacing:9.773767pt;}
.ws1db{word-spacing:9.839869pt;}
.ws1dd{word-spacing:9.879868pt;}
.ws133{word-spacing:9.982831pt;}
.ws1e1{word-spacing:10.199864pt;}
.ws1e2{word-spacing:10.239863pt;}
.ws1dc{word-spacing:10.439861pt;}
.ws3c{word-spacing:10.559859pt;}
.ws46{word-spacing:10.938510pt;}
.ws41{word-spacing:11.050509pt;}
.ws47{word-spacing:11.125174pt;}
.ws48{word-spacing:11.199840pt;}
.ws44{word-spacing:11.274506pt;}
.ws43{word-spacing:11.386504pt;}
.ws42{word-spacing:11.461170pt;}
.ws202{word-spacing:11.479929pt;}
.ws1eb{word-spacing:11.491847pt;}
.ws1fb{word-spacing:11.547846pt;}
.ws1f6{word-spacing:11.719844pt;}
.ws1e9{word-spacing:11.759843pt;}
.ws1ea{word-spacing:11.783843pt;}
.ws1de{word-spacing:11.799843pt;}
.ws40{word-spacing:11.839842pt;}
.ws1fa{word-spacing:11.847842pt;}
.ws1e0{word-spacing:11.879842pt;}
.ws1e3{word-spacing:11.919841pt;}
.ws1ef{word-spacing:11.927841pt;}
.ws136{word-spacing:11.952000pt;}
.ws1d7{word-spacing:11.959841pt;}
.ws1d9{word-spacing:11.999840pt;}
.ws3f{word-spacing:12.039839pt;}
.ws1df{word-spacing:12.079839pt;}
.ws135{word-spacing:12.096000pt;}
.ws1d8{word-spacing:12.119817pt;}
.ws3e{word-spacing:12.119838pt;}
.ws1ed{word-spacing:12.123838pt;}
.ws1da{word-spacing:12.159838pt;}
.ws1e8{word-spacing:12.279836pt;}
.wsbe{word-spacing:12.282541pt;}
.ws13b{word-spacing:12.287846pt;}
.ws49{word-spacing:12.287852pt;}
.ws1e4{word-spacing:12.319836pt;}
.ws1ee{word-spacing:12.323836pt;}
.ws91{word-spacing:12.330513pt;}
.ws13c{word-spacing:12.373179pt;}
.ws137{word-spacing:12.384000pt;}
.ws4a{word-spacing:12.501177pt;}
.ws164{word-spacing:12.543843pt;}
.ws165{word-spacing:12.586509pt;}
.ws90{word-spacing:12.629175pt;}
.ws13e{word-spacing:12.629202pt;}
.ws92{word-spacing:12.671842pt;}
.ws139{word-spacing:12.714498pt;}
.ws138{word-spacing:12.757174pt;}
.ws1d3{word-spacing:12.805203pt;}
.ws19b{word-spacing:13.066533pt;}
.ws14b{word-spacing:13.118799pt;}
.ws21{word-spacing:13.171066pt;}
.ws35{word-spacing:13.223332pt;}
.ws19a{word-spacing:13.275598pt;}
.ws3a{word-spacing:13.327864pt;}
.ws11{word-spacing:13.333467pt;}
.ws2d{word-spacing:13.380130pt;}
.wse{word-spacing:13.386801pt;}
.ws2e{word-spacing:13.432396pt;}
.ws8{word-spacing:13.440134pt;}
.ws51{word-spacing:13.484662pt;}
.wsd{word-spacing:13.493468pt;}
.wsa{word-spacing:13.546802pt;}
.ws5f{word-spacing:13.589195pt;}
.wsb6{word-spacing:13.641461pt;}
.ws9{word-spacing:13.653470pt;}
.wsf{word-spacing:13.653484pt;}
.ws10{word-spacing:13.706804pt;}
.ws39{word-spacing:13.745993pt;}
.ws141{word-spacing:13.798259pt;}
.wsbf{word-spacing:13.955058pt;}
.ws7{word-spacing:14.026807pt;}
.ws143{word-spacing:14.059590pt;}
.wsb{word-spacing:14.080141pt;}
.ws36{word-spacing:14.111856pt;}
.ws132{word-spacing:14.164122pt;}
.wsba{word-spacing:14.216388pt;}
.ws1a4{word-spacing:14.289561pt;}
.ws134{word-spacing:14.304000pt;}
.ws1a5{word-spacing:14.351516pt;}
.ws1a{word-spacing:14.373187pt;}
.ws1a6{word-spacing:14.399320pt;}
.ws53{word-spacing:14.425453pt;}
.ws17c{word-spacing:14.488172pt;}
.ws79{word-spacing:14.498625pt;}
.ws16c{word-spacing:14.503852pt;}
.ws94{word-spacing:14.529985pt;}
.ws1bf{word-spacing:14.556118pt;}
.ws12{word-spacing:14.613507pt;}
.ws191{word-spacing:14.686783pt;}
.ws1d4{word-spacing:14.739050pt;}
.ws1a1{word-spacing:14.822675pt;}
.ws1d5{word-spacing:14.916754pt;}
.ws1bc{word-spacing:14.969021pt;}
.ws1c8{word-spacing:14.974247pt;}
.ws1b5{word-spacing:14.979469pt;}
.wse8{word-spacing:15.000380pt;}
.wsaf{word-spacing:15.052646pt;}
.ws200{word-spacing:15.063799pt;}
.ws67{word-spacing:15.104913pt;}
.ws99{word-spacing:15.209445pt;}
.ws18d{word-spacing:15.256484pt;}
.wsa2{word-spacing:15.261711pt;}
.ws185{word-spacing:15.366243pt;}
.ws186{word-spacing:15.392376pt;}
.wsec{word-spacing:15.418509pt;}
.ws13{word-spacing:15.461488pt;}
.ws1f1{word-spacing:15.463794pt;}
.wsc{word-spacing:15.472159pt;}
.ws1fe{word-spacing:15.483794pt;}
.wsd1{word-spacing:15.523042pt;}
.ws1fd{word-spacing:15.523793pt;}
.ws1f2{word-spacing:15.527793pt;}
.ws14{word-spacing:15.557489pt;}
.ws34{word-spacing:15.575308pt;}
.ws5a{word-spacing:15.627574pt;}
.wsb0{word-spacing:15.679840pt;}
.ws1b9{word-spacing:15.705973pt;}
.ws131{word-spacing:15.711200pt;}
.wsb2{word-spacing:15.732106pt;}
.ws1ff{word-spacing:15.759790pt;}
.ws144{word-spacing:15.784372pt;}
.ws60{word-spacing:15.836638pt;}
.wsc5{word-spacing:15.888905pt;}
.ws179{word-spacing:15.909811pt;}
.wsa3{word-spacing:15.941171pt;}
.wsab{word-spacing:15.993437pt;}
.ws6{word-spacing:16.000160pt;}
.ws32{word-spacing:16.045703pt;}
.wsb9{word-spacing:16.050930pt;}
.wse3{word-spacing:16.097969pt;}
.ws129{word-spacing:16.150235pt;}
.ws31{word-spacing:16.202501pt;}
.ws1f7{word-spacing:16.279783pt;}
.ws82{word-spacing:16.286127pt;}
.ws57{word-spacing:16.307034pt;}
.ws1c0{word-spacing:16.312260pt;}
.ws1c1{word-spacing:16.327940pt;}
.ws58{word-spacing:16.359300pt;}
.ws169{word-spacing:16.411566pt;}
.ws1d6{word-spacing:16.425067pt;}
.ws9f{word-spacing:16.463832pt;}
.ws1f8{word-spacing:16.479780pt;}
.ws59{word-spacing:16.516098pt;}
.ws5{word-spacing:16.533529pt;}
.ws1f0{word-spacing:16.559779pt;}
.wsf2{word-spacing:16.568364pt;}
.ws1cb{word-spacing:16.573591pt;}
.wsed{word-spacing:16.620630pt;}
.ws65{word-spacing:16.725163pt;}
.wsc3{word-spacing:16.777429pt;}
.ws1c3{word-spacing:16.787882pt;}
.ws16f{word-spacing:16.793109pt;}
.ws1c2{word-spacing:16.814015pt;}
.ws30{word-spacing:16.829695pt;}
.ws17{word-spacing:16.881961pt;}
.ws1c6{word-spacing:16.902868pt;}
.ws17e{word-spacing:16.908094pt;}
.ws29{word-spacing:16.934227pt;}
.ws18{word-spacing:16.986493pt;}
.ws1c7{word-spacing:17.033533pt;}
.wscc{word-spacing:17.038759pt;}
.ws26{word-spacing:17.091026pt;}
.ws168{word-spacing:17.143292pt;}
.ws17b{word-spacing:17.284410pt;}
.ws175{word-spacing:17.294864pt;}
.ws16{word-spacing:17.300090pt;}
.ws2c{word-spacing:17.352356pt;}
.ws142{word-spacing:17.404612pt;}
.ws5e{word-spacing:17.404622pt;}
.ws1c9{word-spacing:17.420302pt;}
.ws4{word-spacing:17.424158pt;}
.wsf4{word-spacing:17.456889pt;}
.ws3{word-spacing:17.600160pt;}
.wsf7{word-spacing:17.665953pt;}
.ws17f{word-spacing:17.733899pt;}
.ws17a{word-spacing:17.754805pt;}
.ws55{word-spacing:17.770485pt;}
.ws15e{word-spacing:17.927284pt;}
.ws3b{word-spacing:17.979550pt;}
.ws6c{word-spacing:18.031816pt;}
.ws8f{word-spacing:18.084082pt;}
.ws14f{word-spacing:18.240881pt;}
.ws1d{word-spacing:18.293147pt;}
.ws23{word-spacing:18.345413pt;}
.ws170{word-spacing:18.366319pt;}
.ws24{word-spacing:18.449945pt;}
.wsaa{word-spacing:18.502211pt;}
.ws14e{word-spacing:18.554477pt;}
.ws140{word-spacing:18.606743pt;}
.ws17d{word-spacing:18.648556pt;}
.ws1cc{word-spacing:18.653783pt;}
.ws1be{word-spacing:18.695596pt;}
.wsf6{word-spacing:18.711276pt;}
.ws171{word-spacing:18.753089pt;}
.ws2a{word-spacing:18.763542pt;}
.ws1af{word-spacing:18.784448pt;}
.ws25{word-spacing:18.815808pt;}
.ws1cd{word-spacing:18.841941pt;}
.wsa9{word-spacing:18.868074pt;}
.ws54{word-spacing:18.920340pt;}
.ws19e{word-spacing:18.925567pt;}
.ws6b{word-spacing:18.972606pt;}
.ws16a{word-spacing:19.024873pt;}
.wsc4{word-spacing:19.181671pt;}
.ws7d{word-spacing:19.186898pt;}
.ws7a{word-spacing:19.197351pt;}
.wsa8{word-spacing:19.233937pt;}
.ws1f{word-spacing:19.286203pt;}
.ws187{word-spacing:19.343696pt;}
.ws1d0{word-spacing:19.380282pt;}
.ws1cf{word-spacing:19.401189pt;}
.wsfa{word-spacing:19.443002pt;}
.ws6a{word-spacing:19.443041pt;}
.wsa7{word-spacing:19.495263pt;}
.ws62{word-spacing:19.495268pt;}
.ws188{word-spacing:19.510948pt;}
.ws61{word-spacing:19.547534pt;}
.ws8c{word-spacing:19.599800pt;}
.wsa0{word-spacing:19.652066pt;}
.ws183{word-spacing:19.699106pt;}
.ws12b{word-spacing:19.704332pt;}
.ws69{word-spacing:19.756574pt;}
.ws8d{word-spacing:19.756598pt;}
.wsd2{word-spacing:19.756642pt;}
.ws182{word-spacing:19.793185pt;}
.ws5b{word-spacing:19.808865pt;}
.wsbb{word-spacing:19.861131pt;}
.ws1ac{word-spacing:19.949983pt;}
.ws12d{word-spacing:19.965663pt;}
.wsfc{word-spacing:19.970890pt;}
.ws1ab{word-spacing:20.023156pt;}
.wsbd{word-spacing:20.070195pt;}
.ws1c{word-spacing:20.122461pt;}
.ws126{word-spacing:20.127688pt;}
.ws106{word-spacing:20.138141pt;}
.ws1b8{word-spacing:20.148594pt;}
.ws74{word-spacing:20.195634pt;}
.ws81{word-spacing:20.206087pt;}
.wsd0{word-spacing:20.226994pt;}
.ws10d{word-spacing:20.253127pt;}
.ws38{word-spacing:20.279260pt;}
.ws177{word-spacing:20.315846pt;}
.wsd6{word-spacing:20.331526pt;}
.ws120{word-spacing:20.357659pt;}
.ws152{word-spacing:20.383792pt;}
.ws181{word-spacing:20.420378pt;}
.wsae{word-spacing:20.436058pt;}
.ws199{word-spacing:20.488324pt;}
.wsda{word-spacing:20.540590pt;}
.ws1b0{word-spacing:20.634669pt;}
.ws198{word-spacing:20.645123pt;}
.ws20{word-spacing:20.697389pt;}
.ws153{word-spacing:20.749655pt;}
.wsdc{word-spacing:20.801921pt;}
.wsa6{word-spacing:20.854187pt;}
.wse5{word-spacing:20.906453pt;}
.wscd{word-spacing:20.958719pt;}
.ws70{word-spacing:20.984853pt;}
.ws0{word-spacing:21.008000pt;}
.ws28{word-spacing:21.010986pt;}
.wsb1{word-spacing:21.063252pt;}
.ws27{word-spacing:21.115518pt;}
.wsee{word-spacing:21.167784pt;}
.wsb7{word-spacing:21.220050pt;}
.ws6f{word-spacing:21.287996pt;}
.wsbc{word-spacing:21.298449pt;}
.wsce{word-spacing:21.324582pt;}
.ws7c{word-spacing:21.345489pt;}
.ws4f{word-spacing:21.376849pt;}
.ws195{word-spacing:21.382075pt;}
.ws52{word-spacing:21.481381pt;}
.ws33{word-spacing:21.533647pt;}
.ws50{word-spacing:21.585913pt;}
.ws18f{word-spacing:21.638179pt;}
.ws107{word-spacing:21.685219pt;}
.ws154{word-spacing:21.690445pt;}
.ws1a0{word-spacing:21.711352pt;}
.ws9e{word-spacing:21.742711pt;}
.wsfd{word-spacing:21.779298pt;}
.ws194{word-spacing:21.862924pt;}
.ws14c{word-spacing:21.951776pt;}
.ws109{word-spacing:22.019722pt;}
.ws71{word-spacing:22.056308pt;}
.ws1b2{word-spacing:22.103343pt;}
.ws5c{word-spacing:22.108574pt;}
.ws119{word-spacing:22.150387pt;}
.ws1b1{word-spacing:22.171294pt;}
.ws110{word-spacing:22.186974pt;}
.ws5d{word-spacing:22.213107pt;}
.wsb3{word-spacing:22.265373pt;}
.ws1ce{word-spacing:22.275826pt;}
.ws68{word-spacing:22.317639pt;}
.ws157{word-spacing:22.369905pt;}
.wse7{word-spacing:22.474437pt;}
.ws176{word-spacing:22.516250pt;}
.ws156{word-spacing:22.526703pt;}
.ws111{word-spacing:22.568516pt;}
.wsc1{word-spacing:22.578970pt;}
.ws150{word-spacing:22.631236pt;}
.ws6d{word-spacing:22.788034pt;}
.wsc0{word-spacing:22.840300pt;}
.wsa5{word-spacing:22.892566pt;}
.ws11e{word-spacing:22.903020pt;}
.wsac{word-spacing:23.153897pt;}
.ws1ae{word-spacing:23.174804pt;}
.wsa1{word-spacing:23.362962pt;}
.ws159{word-spacing:23.415228pt;}
.ws1ca{word-spacing:23.420454pt;}
.ws37{word-spacing:23.467494pt;}
.ws1a2{word-spacing:23.483174pt;}
.ws1ad{word-spacing:23.545893pt;}
.ws10f{word-spacing:23.572026pt;}
.ws56{word-spacing:23.676558pt;}
.ws101{word-spacing:23.713145pt;}
.wseb{word-spacing:23.728825pt;}
.ws189{word-spacing:23.812450pt;}
.ws77{word-spacing:23.833357pt;}
.ws19c{word-spacing:23.885623pt;}
.ws167{word-spacing:23.937889pt;}
.wse4{word-spacing:24.042421pt;}
.ws83{word-spacing:24.084234pt;}
.ws22{word-spacing:24.094687pt;}
.ws18c{word-spacing:24.099914pt;}
.ws174{word-spacing:24.230579pt;}
.wsd8{word-spacing:24.251486pt;}
.ws18b{word-spacing:24.261939pt;}
.wsfe{word-spacing:24.298525pt;}
.ws172{word-spacing:24.329885pt;}
.ws14d{word-spacing:24.356018pt;}
.ws12a{word-spacing:24.460550pt;}
.ws4d{word-spacing:24.512817pt;}
.ws1aa{word-spacing:24.538950pt;}
.ws1d2{word-spacing:24.659162pt;}
.ws12c{word-spacing:24.669615pt;}
.ws1a9{word-spacing:24.669623pt;}
.wsdd{word-spacing:24.721881pt;}
.ws1d1{word-spacing:24.732334pt;}
.ws96{word-spacing:24.774147pt;}
.ws4e{word-spacing:24.826413pt;}
.wsea{word-spacing:24.983212pt;}
.ws1bd{word-spacing:24.998892pt;}
.ws117{word-spacing:25.009345pt;}
.ws115{word-spacing:25.129557pt;}
.ws89{word-spacing:25.140010pt;}
.ws2b{word-spacing:25.244542pt;}
.ws11d{word-spacing:25.296809pt;}
.wsff{word-spacing:25.453607pt;}
.ws116{word-spacing:25.626085pt;}
.ws166{word-spacing:25.662671pt;}
.ws93{word-spacing:25.714938pt;}
.wsc6{word-spacing:25.767204pt;}
.ws16e{word-spacing:25.772430pt;}
.ws1b4{word-spacing:25.809017pt;}
.ws73{word-spacing:25.829923pt;}
.wsf9{word-spacing:25.871736pt;}
.ws16b{word-spacing:25.908322pt;}
.ws88{word-spacing:25.924002pt;}
.ws15d{word-spacing:25.976268pt;}
.ws12e{word-spacing:26.080812pt;}
.ws1b3{word-spacing:26.091254pt;}
.ws16d{word-spacing:26.096480pt;}
.wsde{word-spacing:26.133067pt;}
.ws193{word-spacing:26.185333pt;}
.wsad{word-spacing:26.237599pt;}
.wsdb{word-spacing:26.289865pt;}
.ws95{word-spacing:26.342131pt;}
.ws12f{word-spacing:26.498930pt;}
.wsf8{word-spacing:26.551196pt;}
.ws1bb{word-spacing:26.577329pt;}
.ws98{word-spacing:26.603462pt;}
.ws86{word-spacing:26.634822pt;}
.wse9{word-spacing:26.707994pt;}
.ws84{word-spacing:26.765487pt;}
.ws178{word-spacing:26.802073pt;}
.ws10e{word-spacing:26.906605pt;}
.ws155{word-spacing:26.969325pt;}
.ws1ba{word-spacing:26.985005pt;}
.ws114{word-spacing:27.037271pt;}
.wsd4{word-spacing:27.073857pt;}
.ws180{word-spacing:27.120897pt;}
.wsc7{word-spacing:27.230655pt;}
.wsd3{word-spacing:27.335169pt;}
.ws2f{word-spacing:27.387454pt;}
.ws64{word-spacing:27.491986pt;}
.ws75{word-spacing:27.523346pt;}
.ws161{word-spacing:27.596518pt;}
.ws19d{word-spacing:27.648785pt;}
.ws151{word-spacing:27.701051pt;}
.wsb4{word-spacing:27.753317pt;}
.wsd9{word-spacing:27.805583pt;}
.ws97{word-spacing:27.857849pt;}
.wsd5{word-spacing:27.910115pt;}
.ws1b6{word-spacing:27.915342pt;}
.ws1b7{word-spacing:27.931022pt;}
.ws1b{word-spacing:28.014647pt;}
.wsc8{word-spacing:28.223712pt;}
.ws8a{word-spacing:28.223713pt;}
.ws104{word-spacing:28.234165pt;}
.ws8b{word-spacing:28.275978pt;}
.ws15f{word-spacing:28.432777pt;}
.ws160{word-spacing:28.485043pt;}
.wsca{word-spacing:28.537309pt;}
.wsc9{word-spacing:28.589575pt;}
.ws148{word-spacing:28.641841pt;}
.ws15a{word-spacing:28.694107pt;}
.ws63{word-spacing:28.746373pt;}
.wsd7{word-spacing:28.850906pt;}
.ws127{word-spacing:28.850939pt;}
.ws76{word-spacing:28.903172pt;}
.ws128{word-spacing:28.955438pt;}
.ws149{word-spacing:29.059970pt;}
.wsb5{word-spacing:29.164502pt;}
.ws184{word-spacing:29.195862pt;}
.wsf1{word-spacing:29.269035pt;}
.ws15c{word-spacing:29.373567pt;}
.wscf{word-spacing:29.425833pt;}
.ws15b{word-spacing:29.582631pt;}
.ws13f{word-spacing:29.634898pt;}
.ws162{word-spacing:29.843962pt;}
.wsf5{word-spacing:29.896228pt;}
.ws11a{word-spacing:30.345717pt;}
.wse2{word-spacing:30.366623pt;}
.wscb{word-spacing:30.471156pt;}
.wsa4{word-spacing:30.523422pt;}
.ws158{word-spacing:30.889285pt;}
.ws102{word-spacing:30.978137pt;}
.ws6e{word-spacing:31.098349pt;}
.wse0{word-spacing:31.150615pt;}
.ws108{word-spacing:31.223788pt;}
.ws112{word-spacing:31.610557pt;}
.wse1{word-spacing:31.725543pt;}
.wsc2{word-spacing:31.934607pt;}
.ws103{word-spacing:31.955514pt;}
.ws100{word-spacing:32.143672pt;}
.ws78{word-spacing:32.169805pt;}
.ws105{word-spacing:32.546121pt;}
.wsef{word-spacing:32.718599pt;}
.ws145{word-spacing:33.293527pt;}
.ws124{word-spacing:33.544404pt;}
.ws9c{word-spacing:33.659377pt;}
.ws19f{word-spacing:33.737789pt;}
.ws9d{word-spacing:33.763922pt;}
.ws9b{word-spacing:33.868438pt;}
.ws121{word-spacing:33.868454pt;}
.ws11f{word-spacing:34.035706pt;}
.ws11c{word-spacing:34.046159pt;}
.ws1a3{word-spacing:34.265677pt;}
.ws9a{word-spacing:34.286583pt;}
.wse6{word-spacing:34.338850pt;}
.ws147{word-spacing:34.443382pt;}
.ws125{word-spacing:34.485195pt;}
.wsdf{word-spacing:34.600180pt;}
.ws130{word-spacing:34.756979pt;}
.ws1a7{word-spacing:35.504384pt;}
.ws196{word-spacing:36.063632pt;}
.wsf3{word-spacing:36.168164pt;}
.ws197{word-spacing:36.429495pt;}
.ws11b{word-spacing:36.565387pt;}
.ws80{word-spacing:36.596747pt;}
.ws10b{word-spacing:36.690826pt;}
.ws123{word-spacing:37.150768pt;}
.ws1e{word-spacing:37.250073pt;}
.ws122{word-spacing:37.433005pt;}
.ws1a8{word-spacing:37.898173pt;}
.ws1{word-spacing:38.144159pt;}
.wsfb{word-spacing:38.363342pt;}
.ws2{word-spacing:38.528161pt;}
.ws163{word-spacing:39.147334pt;}
.ws1f3{word-spacing:39.240042pt;}
.ws113{word-spacing:40.474894pt;}
.ws192{word-spacing:43.171826pt;}
.ws190{word-spacing:43.380891pt;}
.ws66{word-spacing:46.255528pt;}
.ws10a{word-spacing:47.269491pt;}
.ws13d{word-spacing:52.564669pt;}
.ws13a{word-spacing:89.214871pt;}
._15{margin-left:-37.527084pt;}
._20{margin-left:-33.012766pt;}
._23{margin-left:-22.683502pt;}
._24{margin-left:-21.585913pt;}
._17{margin-left:-20.421341pt;}
._34{margin-left:-15.930667pt;}
._26{margin-left:-10.386990pt;}
._25{margin-left:-8.944794pt;}
._2f{margin-left:-5.874916pt;}
._10{margin-left:-4.738014pt;}
._b{margin-left:-3.285451pt;}
._5{margin-left:-1.760018pt;}
._8{width:1.493348pt;}
._1c{width:2.651534pt;}
._0{width:7.973333pt;}
._33{width:8.919881pt;}
._19{width:10.123772pt;}
._11{width:12.058485pt;}
._6{width:13.120131pt;}
._13{width:14.025528pt;}
._7{width:14.933483pt;}
._d{width:16.045703pt;}
._4{width:16.960170pt;}
._f{width:17.946661pt;}
._a{width:19.233937pt;}
._30{width:20.155356pt;}
._9{width:21.100834pt;}
._1a{width:22.163187pt;}
._c{width:23.241398pt;}
._16{width:24.234455pt;}
._1d{width:25.244542pt;}
._e{width:26.222915pt;}
._12{width:27.894258pt;}
._1{width:29.050667pt;}
._1b{width:30.298500pt;}
._1f{width:31.377884pt;}
._14{width:32.284613pt;}
._21{width:34.448721pt;}
._1e{width:36.033735pt;}
._32{width:37.371488pt;}
._3{width:39.168163pt;}
._36{width:40.732721pt;}
._22{width:42.393173pt;}
._31{width:44.516061pt;}
._35{width:58.559219pt;}
._2e{width:85.502931pt;}
._2b{width:89.257537pt;}
._29{width:142.376887pt;}
._27{width:148.691475pt;}
._2d{width:240.039676pt;}
._2c{width:275.452567pt;}
._2a{width:322.086634pt;}
._28{width:341.243727pt;}
._18{width:1306.650345pt;}
._2{width:1424.245280pt;}
.fs8{font-size:26.662400pt;}
.fs9{font-size:37.332800pt;}
.fs3{font-size:39.107733pt;}
.fs7{font-size:39.999467pt;}
.fsa{font-size:42.666133pt;}
.fsb{font-size:48.000000pt;}
.fs6{font-size:52.266133pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933333pt;}
.fs2{font-size:58.667200pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:58.128080pt;}
.y46{bottom:68.786600pt;}
.y1ca{bottom:79.359760pt;}
.y183{bottom:79.369093pt;}
.y147{bottom:79.402133pt;}
.ye5{bottom:79.404120pt;}
.y45{bottom:79.445107pt;}
.y11a{bottom:79.474907pt;}
.y9f{bottom:79.483467pt;}
.yd2{bottom:86.276560pt;}
.y86{bottom:87.684893pt;}
.y44{bottom:90.103627pt;}
.y1c9{bottom:91.379587pt;}
.y182{bottom:91.388933pt;}
.y146{bottom:95.421707pt;}
.ye4{bottom:95.423693pt;}
.y119{bottom:95.494467pt;}
.y9e{bottom:95.503027pt;}
.y43{bottom:100.762133pt;}
.y1c8{bottom:103.399427pt;}
.y181{bottom:103.407733pt;}
.yd1{bottom:104.942987pt;}
.y145{bottom:111.375933pt;}
.ye3{bottom:111.443267pt;}
.y118{bottom:111.448707pt;}
.y9d{bottom:111.522600pt;}
.y1c7{bottom:115.649267pt;}
.y42{bottom:123.361941pt;}
.yd0{bottom:123.609427pt;}
.y144{bottom:127.395507pt;}
.ye2{bottom:127.397507pt;}
.y117{bottom:127.468280pt;}
.y9c{bottom:127.476840pt;}
.y1c6{bottom:127.669107pt;}
.y41{bottom:135.381781pt;}
.y1c5{bottom:139.688947pt;}
.y180{bottom:140.746760pt;}
.ycf{bottom:142.275853pt;}
.y143{bottom:143.415080pt;}
.ye1{bottom:143.417067pt;}
.y116{bottom:143.487853pt;}
.y9b{bottom:143.496400pt;}
.y40{bottom:147.401621pt;}
.y3f{bottom:151.861488pt;}
.y1c4{bottom:151.938787pt;}
.y3a{bottom:152.531901pt;}
.y20a{bottom:159.345453pt;}
.y142{bottom:159.369320pt;}
.y3e{bottom:159.423914pt;}
.ye0{bottom:159.436640pt;}
.y115{bottom:159.442080pt;}
.y9a{bottom:159.515973pt;}
.yce{bottom:160.942280pt;}
.y1c3{bottom:163.958627pt;}
.y17f{bottom:164.786440pt;}
.y39{bottom:168.486141pt;}
.y3d{bottom:171.363754pt;}
.y209{bottom:171.365293pt;}
.y141{bottom:175.388880pt;}
.ydf{bottom:175.390880pt;}
.y114{bottom:175.461653pt;}
.y99{bottom:175.470213pt;}
.y3c{bottom:175.823634pt;}
.y1c2{bottom:176.278467pt;}
.y17e{bottom:176.806280pt;}
.ycd{bottom:179.608720pt;}
.y17d{bottom:181.190533pt;}
.y3b{bottom:183.382688pt;}
.y208{bottom:183.385133pt;}
.y38{bottom:184.505714pt;}
.y1c1{bottom:188.218307pt;}
.y17c{bottom:188.748547pt;}
.y140{bottom:191.408453pt;}
.yde{bottom:191.410440pt;}
.y113{bottom:191.481227pt;}
.y98{bottom:191.489787pt;}
.y207{bottom:195.414413pt;}
.ycc{bottom:198.275147pt;}
.y1c0{bottom:200.238147pt;}
.y37{bottom:200.525274pt;}
.y179{bottom:200.766600pt;}
.y17b{bottom:200.768387pt;}
.y17a{bottom:205.228267pt;}
.y206{bottom:207.354253pt;}
.y13f{bottom:207.362693pt;}
.ydd{bottom:207.430013pt;}
.y112{bottom:207.435453pt;}
.y97{bottom:207.509347pt;}
.y1bf{bottom:212.557973pt;}
.y178{bottom:212.786440pt;}
.ycb{bottom:215.810933pt;}
.y26{bottom:216.453368pt;}
.y36{bottom:216.479514pt;}
.y205{bottom:219.374093pt;}
.y13e{bottom:223.382253pt;}
.ydc{bottom:223.384253pt;}
.y111{bottom:223.455027pt;}
.y96{bottom:223.463587pt;}
.y1be{bottom:224.497813pt;}
.y177{bottom:224.806280pt;}
.y175{bottom:224.809627pt;}
.y176{bottom:229.190533pt;}
.y204{bottom:231.393933pt;}
.y25{bottom:232.472928pt;}
.y35{bottom:232.499088pt;}
.yca{bottom:233.349600pt;}
.y1bd{bottom:236.517653pt;}
.y172{bottom:236.747653pt;}
.y174{bottom:236.749467pt;}
.y13d{bottom:239.401827pt;}
.ydb{bottom:239.403827pt;}
.y110{bottom:239.474600pt;}
.y95{bottom:239.483160pt;}
.y173{bottom:241.209333pt;}
.y203{bottom:243.413773pt;}
.yc9{bottom:248.013600pt;}
.y24{bottom:248.492501pt;}
.y1bc{bottom:248.516867pt;}
.y34{bottom:248.518648pt;}
.y171{bottom:248.767493pt;}
.y202{bottom:255.353613pt;}
.y13c{bottom:255.356067pt;}
.yda{bottom:255.423387pt;}
.y10f{bottom:255.428840pt;}
.y94{bottom:255.502720pt;}
.y1bb{bottom:260.766707pt;}
.y170{bottom:260.787333pt;}
.y16e{bottom:260.789787pt;}
.yc8{bottom:262.677600pt;}
.y23{bottom:264.446741pt;}
.y33{bottom:264.472888pt;}
.y16f{bottom:265.247187pt;}
.y201{bottom:267.373453pt;}
.y13b{bottom:271.375627pt;}
.yd9{bottom:271.377627pt;}
.y10e{bottom:271.448400pt;}
.y93{bottom:271.456960pt;}
.y1ba{bottom:272.786547pt;}
.y16d{bottom:272.809627pt;}
.yc7{bottom:277.341600pt;}
.y200{bottom:279.393293pt;}
.y22{bottom:280.466314pt;}
.y32{bottom:280.492461pt;}
.y16a{bottom:284.748547pt;}
.y16c{bottom:284.749467pt;}
.y1b9{bottom:284.806387pt;}
.y13a{bottom:287.395200pt;}
.yd8{bottom:287.397200pt;}
.y10d{bottom:287.467973pt;}
.y92{bottom:287.476533pt;}
.y16b{bottom:289.209333pt;}
.y1ff{bottom:291.413133pt;}
.y21{bottom:296.485874pt;}
.y31{bottom:296.512034pt;}
.y169{bottom:296.768387pt;}
.y1b8{bottom:297.056213pt;}
.y168{bottom:301.228267pt;}
.y139{bottom:303.344813pt;}
.yd7{bottom:303.351427pt;}
.y1fe{bottom:303.352973pt;}
.yc6{bottom:303.395787pt;}
.y10c{bottom:303.422213pt;}
.y91{bottom:303.430773pt;}
.y167{bottom:308.788867pt;}
.y1b7{bottom:309.076053pt;}
.y20{bottom:312.440114pt;}
.y30{bottom:312.466261pt;}
.y1fd{bottom:315.372813pt;}
.yd6{bottom:319.371000pt;}
.yc5{bottom:319.415360pt;}
.y10b{bottom:319.441773pt;}
.y90{bottom:319.450333pt;}
.y1b6{bottom:321.095893pt;}
.y1fc{bottom:327.392653pt;}
.y1f{bottom:328.459688pt;}
.y2f{bottom:328.485834pt;}
.y166{bottom:332.748547pt;}
.y1b5{bottom:333.345733pt;}
.yd5{bottom:335.390573pt;}
.y138{bottom:335.429307pt;}
.yc4{bottom:335.434933pt;}
.y10a{bottom:335.461347pt;}
.y8f{bottom:335.469907pt;}
.y1fb{bottom:339.412493pt;}
.y1e{bottom:344.479248pt;}
.y2e{bottom:344.505408pt;}
.y165{bottom:344.768387pt;}
.y1b4{bottom:345.365573pt;}
.yd4{bottom:351.344813pt;}
.y1fa{bottom:351.352333pt;}
.y137{bottom:351.383547pt;}
.yc3{bottom:351.389173pt;}
.y109{bottom:351.415587pt;}
.y8e{bottom:351.424147pt;}
.y164{bottom:356.787360pt;}
.y1b3{bottom:357.685413pt;}
.y1d{bottom:360.433488pt;}
.y2d{bottom:360.459634pt;}
.y1f9{bottom:363.372173pt;}
.y136{bottom:367.403120pt;}
.yc2{bottom:367.408733pt;}
.y108{bottom:367.435160pt;}
.y8d{bottom:367.443707pt;}
.y1b2{bottom:369.625253pt;}
.y1f8{bottom:375.392013pt;}
.y1c{bottom:376.453061pt;}
.y2c{bottom:376.479208pt;}
.y1b1{bottom:381.945093pt;}
.y135{bottom:383.422693pt;}
.yc1{bottom:383.428307pt;}
.y107{bottom:383.454720pt;}
.y8c{bottom:383.463280pt;}
.y1f7{bottom:387.411853pt;}
.y122{bottom:388.556467pt;}
.y163{bottom:390.197853pt;}
.y1b{bottom:392.472634pt;}
.y2b{bottom:392.498781pt;}
.y1b0{bottom:393.964933pt;}
.y1f6{bottom:399.351693pt;}
.y134{bottom:399.376920pt;}
.yc0{bottom:399.382547pt;}
.y106{bottom:399.408960pt;}
.y8b{bottom:399.417520pt;}
.y121{bottom:401.857640pt;}
.y162{bottom:402.137693pt;}
.y1af{bottom:406.214760pt;}
.y1a{bottom:408.426861pt;}
.y2a{bottom:408.453021pt;}
.y1f5{bottom:411.371533pt;}
.y120{bottom:415.158800pt;}
.y133{bottom:415.396493pt;}
.ybf{bottom:415.402107pt;}
.y105{bottom:415.428533pt;}
.y8a{bottom:415.437093pt;}
.y1ae{bottom:418.234600pt;}
.y1f4{bottom:423.391373pt;}
.y19{bottom:424.446434pt;}
.y29{bottom:424.472581pt;}
.y161{bottom:427.537360pt;}
.y11f{bottom:428.534640pt;}
.y1ad{bottom:430.254440pt;}
.y132{bottom:431.416067pt;}
.ybe{bottom:431.421680pt;}
.y104{bottom:431.448093pt;}
.y89{bottom:431.456653pt;}
.y1f3{bottom:435.411213pt;}
.y160{bottom:439.557200pt;}
.y18{bottom:440.466008pt;}
.y28{bottom:440.492154pt;}
.y11e{bottom:441.835800pt;}
.y1ac{bottom:442.504280pt;}
.y1f2{bottom:447.351053pt;}
.y85{bottom:447.369293pt;}
.y131{bottom:447.370307pt;}
.ybd{bottom:447.375920pt;}
.y103{bottom:447.402333pt;}
.y88{bottom:447.410893pt;}
.y1ab{bottom:454.524120pt;}
.y11d{bottom:455.211627pt;}
.y17{bottom:456.415634pt;}
.y27{bottom:456.446394pt;}
.y1f1{bottom:459.370893pt;}
.y84{bottom:463.388867pt;}
.y130{bottom:463.389867pt;}
.ybc{bottom:463.395493pt;}
.y102{bottom:463.421907pt;}
.y67{bottom:463.430467pt;}
.y15f{bottom:464.956853pt;}
.y1aa{bottom:466.843960pt;}
.y11c{bottom:468.512800pt;}
.y1f0{bottom:471.390733pt;}
.y15e{bottom:476.976693pt;}
.y1a9{bottom:478.783800pt;}
.y83{bottom:479.408427pt;}
.y12f{bottom:479.409440pt;}
.ybb{bottom:479.415053pt;}
.y101{bottom:479.441480pt;}
.y66{bottom:479.450027pt;}
.y11b{bottom:481.813960pt;}
.y1ef{bottom:483.410573pt;}
.y15d{bottom:488.916533pt;}
.y1a8{bottom:491.103627pt;}
.y1ee{bottom:495.350413pt;}
.y82{bottom:495.362667pt;}
.y12e{bottom:495.363680pt;}
.yba{bottom:495.369293pt;}
.y100{bottom:495.395707pt;}
.y65{bottom:495.404267pt;}
.y16{bottom:497.068554pt;}
.y1a7{bottom:503.123467pt;}
.y1ed{bottom:507.370253pt;}
.y81{bottom:511.382240pt;}
.y12d{bottom:511.383240pt;}
.yb9{bottom:511.388867pt;}
.yff{bottom:511.415280pt;}
.y64{bottom:511.423840pt;}
.y15c{bottom:514.316200pt;}
.y1a6{bottom:515.373307pt;}
.y1ec{bottom:519.390093pt;}
.y15{bottom:519.668781pt;}
.y15b{bottom:526.336040pt;}
.y1a5{bottom:527.393147pt;}
.y80{bottom:527.401813pt;}
.y12c{bottom:527.402813pt;}
.yb8{bottom:527.408427pt;}
.yfe{bottom:527.434853pt;}
.y63{bottom:527.443413pt;}
.y1eb{bottom:531.409933pt;}
.y14{bottom:535.695608pt;}
.y15a{bottom:538.355880pt;}
.y1a4{bottom:539.642987pt;}
.y1ea{bottom:543.349773pt;}
.y7f{bottom:543.356040pt;}
.y12b{bottom:543.357053pt;}
.yb7{bottom:543.362667pt;}
.yfd{bottom:543.389080pt;}
.y62{bottom:543.397640pt;}
.y159{bottom:550.375720pt;}
.y1a3{bottom:551.662827pt;}
.y13{bottom:551.722434pt;}
.y1e9{bottom:555.369613pt;}
.y7e{bottom:559.375613pt;}
.y12a{bottom:559.376613pt;}
.yb6{bottom:559.382240pt;}
.yfc{bottom:559.408653pt;}
.y61{bottom:559.417213pt;}
.y1a2{bottom:563.682667pt;}
.y1e8{bottom:567.389453pt;}
.y12{bottom:571.682634pt;}
.y7d{bottom:575.395187pt;}
.y129{bottom:575.396187pt;}
.yb5{bottom:575.401813pt;}
.yfb{bottom:575.428227pt;}
.y60{bottom:575.436787pt;}
.y158{bottom:575.775373pt;}
.y1a1{bottom:575.932493pt;}
.y1e7{bottom:579.409293pt;}
.y11{bottom:587.709461pt;}
.y157{bottom:587.715213pt;}
.y1a0{bottom:588.252333pt;}
.y7c{bottom:591.344680pt;}
.y1e6{bottom:591.349133pt;}
.y128{bottom:591.350427pt;}
.yb4{bottom:591.356040pt;}
.yfa{bottom:591.382467pt;}
.y5f{bottom:591.391013pt;}
.y156{bottom:599.735053pt;}
.y19f{bottom:600.272173pt;}
.y1e5{bottom:603.368973pt;}
.y10{bottom:603.736288pt;}
.yb3{bottom:607.375613pt;}
.yf9{bottom:607.402027pt;}
.y5e{bottom:607.410587pt;}
.y127{bottom:607.476000pt;}
.y19e{bottom:612.212013pt;}
.y1e4{bottom:615.388800pt;}
.yb2{bottom:623.395187pt;}
.yf8{bottom:623.421600pt;}
.y5d{bottom:623.430160pt;}
.y7b{bottom:623.495493pt;}
.y126{bottom:623.534773pt;}
.yf{bottom:623.696488pt;}
.y19d{bottom:624.231853pt;}
.y155{bottom:625.134720pt;}
.y1e3{bottom:627.408640pt;}
.y19c{bottom:636.551693pt;}
.y154{bottom:637.154560pt;}
.yb1{bottom:639.344680pt;}
.y1e2{bottom:639.348493pt;}
.yf7{bottom:639.375840pt;}
.y5c{bottom:639.384400pt;}
.y7a{bottom:639.449733pt;}
.y125{bottom:639.489013pt;}
.ye{bottom:639.723314pt;}
.y19b{bottom:648.491533pt;}
.y153{bottom:649.094400pt;}
.y1e1{bottom:651.368320pt;}
.yf6{bottom:655.395400pt;}
.y5b{bottom:655.403960pt;}
.y79{bottom:655.469307pt;}
.y124{bottom:655.508573pt;}
.yd{bottom:655.750141pt;}
.y19a{bottom:660.511373pt;}
.y152{bottom:661.114240pt;}
.y1e0{bottom:663.388160pt;}
.yf5{bottom:671.414973pt;}
.y5a{bottom:671.423533pt;}
.y78{bottom:671.488867pt;}
.yb0{bottom:671.528147pt;}
.yc{bottom:671.696968pt;}
.y199{bottom:672.831200pt;}
.y1df{bottom:675.408000pt;}
.y198{bottom:684.771053pt;}
.y151{bottom:686.513893pt;}
.y1de{bottom:687.347840pt;}
.yf4{bottom:687.369213pt;}
.y59{bottom:687.377773pt;}
.y77{bottom:687.443107pt;}
.yaf{bottom:687.482387pt;}
.yb{bottom:687.723794pt;}
.y197{bottom:696.790880pt;}
.y150{bottom:698.533733pt;}
.y1dd{bottom:699.367680pt;}
.yf3{bottom:703.388787pt;}
.y58{bottom:703.397333pt;}
.y76{bottom:703.462680pt;}
.yae{bottom:703.501960pt;}
.ya{bottom:703.750621pt;}
.y196{bottom:709.110720pt;}
.y14f{bottom:710.553573pt;}
.y1dc{bottom:711.387520pt;}
.yf2{bottom:719.408347pt;}
.y57{bottom:719.416907pt;}
.y75{bottom:719.482240pt;}
.yad{bottom:719.521520pt;}
.y9{bottom:719.697448pt;}
.y195{bottom:721.050560pt;}
.y14e{bottom:722.493413pt;}
.y1db{bottom:723.407360pt;}
.y194{bottom:733.070400pt;}
.y1da{bottom:735.347200pt;}
.yf1{bottom:735.362587pt;}
.y56{bottom:735.371147pt;}
.y74{bottom:735.436480pt;}
.yac{bottom:735.475760pt;}
.y8{bottom:743.735208pt;}
.y193{bottom:745.390240pt;}
.y1d9{bottom:747.367040pt;}
.y14d{bottom:747.893080pt;}
.yf0{bottom:751.382160pt;}
.y55{bottom:751.390720pt;}
.y73{bottom:751.456053pt;}
.yab{bottom:751.495333pt;}
.y192{bottom:757.640080pt;}
.y1d8{bottom:759.386880pt;}
.y14c{bottom:759.912920pt;}
.yef{bottom:767.401720pt;}
.y54{bottom:767.410280pt;}
.y72{bottom:767.475613pt;}
.yaa{bottom:767.514893pt;}
.y191{bottom:769.659920pt;}
.y1d7{bottom:771.406720pt;}
.y14b{bottom:771.932760pt;}
.y190{bottom:781.679760pt;}
.y6{bottom:783.042394pt;}
.y1d6{bottom:783.346560pt;}
.yee{bottom:783.355960pt;}
.y53{bottom:783.364520pt;}
.y71{bottom:783.429853pt;}
.ya9{bottom:783.469133pt;}
.y14a{bottom:783.952600pt;}
.y7{bottom:789.543074pt;}
.y18f{bottom:793.929587pt;}
.y1d5{bottom:795.366400pt;}
.yed{bottom:799.375533pt;}
.y52{bottom:799.384093pt;}
.y70{bottom:799.449427pt;}
.ya8{bottom:799.488707pt;}
.y4{bottom:801.713234pt;}
.y18e{bottom:805.949427pt;}
.y1d4{bottom:807.386240pt;}
.y5{bottom:808.214048pt;}
.yec{bottom:815.395107pt;}
.y51{bottom:815.403653pt;}
.y6f{bottom:815.469000pt;}
.ya7{bottom:815.508280pt;}
.y149{bottom:816.302160pt;}
.y18d{bottom:818.269267pt;}
.y1d3{bottom:819.406080pt;}
.y18c{bottom:830.209107pt;}
.yeb{bottom:831.344640pt;}
.y1d2{bottom:831.345920pt;}
.y50{bottom:831.357893pt;}
.y6e{bottom:831.423227pt;}
.ya6{bottom:831.462507pt;}
.y3{bottom:833.695914pt;}
.y18b{bottom:842.528947pt;}
.y1d1{bottom:843.365760pt;}
.y148{bottom:846.009360pt;}
.y4f{bottom:847.377467pt;}
.y6d{bottom:847.442800pt;}
.ya5{bottom:847.482080pt;}
.y18a{bottom:854.548787pt;}
.y1d0{bottom:855.385600pt;}
.y4e{bottom:863.397027pt;}
.yea{bottom:863.422320pt;}
.y6c{bottom:863.462373pt;}
.ya4{bottom:863.501653pt;}
.y189{bottom:866.798613pt;}
.y1cf{bottom:867.405440pt;}
.y2{bottom:868.384048pt;}
.y188{bottom:878.818453pt;}
.y1ce{bottom:879.345280pt;}
.y4d{bottom:879.351267pt;}
.ye9{bottom:879.376547pt;}
.y6b{bottom:879.416613pt;}
.ya3{bottom:879.455880pt;}
.y187{bottom:891.068293pt;}
.y1cd{bottom:891.365120pt;}
.y4c{bottom:895.370840pt;}
.ye8{bottom:895.396120pt;}
.y6a{bottom:895.436173pt;}
.ya2{bottom:895.475453pt;}
.y186{bottom:903.088133pt;}
.y1cc{bottom:903.384960pt;}
.y4b{bottom:911.390413pt;}
.ye7{bottom:911.415693pt;}
.y69{bottom:911.455747pt;}
.ya1{bottom:911.495027pt;}
.y1cb{bottom:915.404800pt;}
.y185{bottom:915.407973pt;}
.y1{bottom:919.029653pt;}
.y4a{bottom:927.344640pt;}
.y184{bottom:927.347813pt;}
.ye6{bottom:927.369920pt;}
.y68{bottom:927.409987pt;}
.ya0{bottom:927.449267pt;}
.y49{bottom:989.180440pt;}
.y87{bottom:1002.478787pt;}
.y20b{bottom:1002.481610pt;}
.y48{bottom:1002.481613pt;}
.yd3{bottom:1002.499787pt;}
.y123{bottom:1002.500773pt;}
.ha{height:21.943155pt;}
.h10{height:28.839615pt;}
.hb{height:30.724894pt;}
.hd{height:30.762282pt;}
.h5{height:32.185665pt;}
.h9{height:32.919561pt;}
.h11{height:33.002068pt;}
.he{height:35.114228pt;}
.hc{height:37.588863pt;}
.h8{height:37.840681pt;}
.hf{height:39.504000pt;}
.h6{height:39.606933pt;}
.h7{height:43.893772pt;}
.h4{height:48.283106pt;}
.h2{height:49.989333pt;}
.h3{height:92.288385pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590573pt;}
.x12{left:79.143373pt;}
.x1{left:80.957493pt;}
.x15{left:82.620413pt;}
.xe{left:84.283507pt;}
.xf{left:86.252867pt;}
.x1f{left:95.625773pt;}
.x16{left:109.530680pt;}
.x17{left:113.159080pt;}
.x1d{left:129.033080pt;}
.x1e{left:132.585747pt;}
.x1c{left:149.744813pt;}
.x3{left:152.617373pt;}
.xd{left:170.456707pt;}
.x4{left:180.207907pt;}
.x1a{left:190.034680pt;}
.x1b{left:193.587360pt;}
.x13{left:240.453467pt;}
.x5{left:327.004693pt;}
.x6{left:338.796840pt;}
.x18{left:341.064547pt;}
.x19{left:344.692800pt;}
.x10{left:406.304533pt;}
.x11{left:416.979920pt;}
.x20{left:426.335120pt;}
.x7{left:448.100707pt;}
.x8{left:453.165360pt;}
.x14{left:478.490160pt;}
.x9{left:565.795253pt;}
.xa{left:577.587240pt;}
.xb{left:663.987227pt;}
.xc{left:673.209227pt;}
}




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