
    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_f47d040e9589101c2bf10f78.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1b4893a5445b345bd9b57c36.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.996000;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_49c5909d88b584a8842128dc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_42f918c8ee4a6772030b7eec.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.051000;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_fbb8772eedd1623d942ad3f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.705000;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_b239fa28dadf82be94f204e7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.699000;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_3b7cd73781f07f51d2d717b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_ad246d0c9069db8270844338.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.674000;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_172009a8b8d4fa96d6b8b571.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.962000;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_e6a8560bd8185845551b80bc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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_8f67ec2b8b3ce212904af7bf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.978000;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_8f497e3c39d29de2160dcbf1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.742000;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_b97d719e621eb98d76358dd3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.648000;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_ecd2ae6a6591d112c7f3d1d3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.737000;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_8b1bb86ea38353c0f733730b.woff2')format("woff");}.fff{font-family:fff;line-height:0.957000;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_4ca6c15da139c0a7d80f3635.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.919000;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_96690b674554d9ff3e39c73c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.877000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_89ae1987d7791c27e6828927.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.718000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_13679c89dde89af2fee7dfba.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.674000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_0b7cc3942fb5a4397aa6f3df.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.066000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_3514f97de76d561f33133595.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.676000;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;}
.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);}
.m2{transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);}
.m5{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;}
.ls5c{letter-spacing:-1.468386px;}
.ls2a{letter-spacing:-1.253489px;}
.ls5b{letter-spacing:-1.219421px;}
.ls57{letter-spacing:-1.199097px;}
.ls5f{letter-spacing:-1.082236px;}
.ls58{letter-spacing:-1.046670px;}
.ls5e{letter-spacing:-0.950132px;}
.ls60{letter-spacing:-0.939970px;}
.ls59{letter-spacing:-0.914566px;}
.ls5d{letter-spacing:-0.889161px;}
.ls56{letter-spacing:-0.868837px;}
.ls55{letter-spacing:-0.858675px;}
.ls28{letter-spacing:-0.774688px;}
.ls2c{letter-spacing:-0.747789px;}
.ls2f{letter-spacing:-0.737030px;}
.ls4d{letter-spacing:-0.731650px;}
.ls62{letter-spacing:-0.716410px;}
.ls4e{letter-spacing:-0.715511px;}
.ls2b{letter-spacing:-0.704751px;}
.ls2d{letter-spacing:-0.693992px;}
.ls19{letter-spacing:-0.602461px;}
.ls18{letter-spacing:-0.297645px;}
.ls54{letter-spacing:-0.007172px;}
.lsf{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.003586px;}
.ls3c{letter-spacing:0.003885px;}
.lsd{letter-spacing:0.004483px;}
.ls0{letter-spacing:0.008966px;}
.ls3b{letter-spacing:0.017932px;}
.ls49{letter-spacing:0.035865px;}
.lse{letter-spacing:0.085179px;}
.ls3{letter-spacing:0.106699px;}
.ls53{letter-spacing:0.147347px;}
.ls3e{letter-spacing:0.151531px;}
.lsa{letter-spacing:0.156014px;}
.ls1e{letter-spacing:0.177533px;}
.ls2{letter-spacing:0.187994px;}
.ls41{letter-spacing:0.192772px;}
.ls4{letter-spacing:0.223560px;}
.ls15{letter-spacing:0.236710px;}
.ls45{letter-spacing:0.264502px;}
.ls46{letter-spacing:0.265314px;}
.ls14{letter-spacing:0.289617px;}
.ls10{letter-spacing:0.304817px;}
.ls42{letter-spacing:0.345197px;}
.ls6{letter-spacing:8.353032px;}
.ls7{letter-spacing:8.459732px;}
.ls9{letter-spacing:8.693454px;}
.ls21{letter-spacing:8.817459px;}
.ls22{letter-spacing:8.822839px;}
.ls20{letter-spacing:9.027271px;}
.ls25{letter-spacing:9.161765px;}
.ls48{letter-spacing:9.643612px;}
.ls29{letter-spacing:10.517470px;}
.ls17{letter-spacing:10.856396px;}
.ls63{letter-spacing:11.447313px;}
.ls8{letter-spacing:12.011295px;}
.ls5{letter-spacing:12.163722px;}
.ls30{letter-spacing:12.561786px;}
.ls3f{letter-spacing:12.569334px;}
.ls40{letter-spacing:12.880167px;}
.ls1c{letter-spacing:12.900712px;}
.ls47{letter-spacing:12.907365px;}
.ls3d{letter-spacing:13.043355px;}
.ls1a{letter-spacing:13.449450px;}
.ls4c{letter-spacing:14.065220px;}
.ls26{letter-spacing:14.600723px;}
.lsc{letter-spacing:14.664155px;}
.ls32{letter-spacing:14.973487px;}
.ls3a{letter-spacing:14.991420px;}
.ls1{letter-spacing:15.000386px;}
.ls23{letter-spacing:15.278575px;}
.ls61{letter-spacing:15.872794px;}
.ls31{letter-spacing:15.961807px;}
.ls64{letter-spacing:16.213216px;}
.ls4f{letter-spacing:16.300733px;}
.ls65{letter-spacing:16.888978px;}
.ls2e{letter-spacing:17.166878px;}
.ls12{letter-spacing:17.989984px;}
.ls52{letter-spacing:19.361828px;}
.ls5a{letter-spacing:19.917206px;}
.ls13{letter-spacing:21.605196px;}
.ls27{letter-spacing:24.122934px;}
.ls1f{letter-spacing:24.666291px;}
.ls16{letter-spacing:25.010597px;}
.ls24{letter-spacing:30.793861px;}
.ls1d{letter-spacing:36.372693px;}
.ls1b{letter-spacing:40.660377px;}
.lsb{letter-spacing:41.338230px;}
.ls51{letter-spacing:42.150576px;}
.ls50{letter-spacing:42.155956px;}
.ls38{letter-spacing:224.579893px;}
.ls36{letter-spacing:224.920607px;}
.ls39{letter-spacing:236.415224px;}
.ls37{letter-spacing:251.379745px;}
.ls35{letter-spacing:251.720459px;}
.ls44{letter-spacing:334.110503px;}
.ls4a{letter-spacing:350.025437px;}
.ls43{letter-spacing:354.185735px;}
.ls4b{letter-spacing:374.516503px;}
.ls34{letter-spacing:716.113750px;}
.ls33{letter-spacing:731.418985px;}
.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;}
}
.ws157{word-spacing:-17.220676px;}
.ws2ab{word-spacing:-16.939787px;}
.ws24f{word-spacing:-16.264025px;}
.ws248{word-spacing:-15.923603px;}
.ws24b{word-spacing:-11.498122px;}
.ws6f{word-spacing:-10.910194px;}
.ws5f{word-spacing:-9.360000px;}
.ws2f{word-spacing:-0.340678px;}
.ws96{word-spacing:-0.056788px;}
.ws3b{word-spacing:-0.053798px;}
.ws1c{word-spacing:-0.050809px;}
.ws189{word-spacing:-0.049314px;}
.ws166{word-spacing:-0.044831px;}
.ws1a3{word-spacing:-0.042740px;}
.ws95{word-spacing:-0.039447px;}
.ws17c{word-spacing:-0.038854px;}
.ws94{word-spacing:-0.035861px;}
.ws1e2{word-spacing:-0.028689px;}
.ws60{word-spacing:0.000000px;}
.ws7a{word-spacing:0.261784px;}
.ws93{word-spacing:0.566601px;}
.ws15f{word-spacing:0.640194px;}
.ws15b{word-spacing:0.650953px;}
.ws20e{word-spacing:0.995860px;}
.ws22f{word-spacing:1.168612px;}
.ws230{word-spacing:1.417577px;}
.ws17d{word-spacing:7.397840px;}
.ws1ba{word-spacing:7.739757px;}
.ws1b{word-spacing:8.327628px;}
.ws1e{word-spacing:8.515622px;}
.ws169{word-spacing:8.616480px;}
.ws167{word-spacing:8.625446px;}
.ws1b6{word-spacing:8.784935px;}
.ws141{word-spacing:8.849738px;}
.ws16a{word-spacing:8.957194px;}
.ws188{word-spacing:8.966160px;}
.ws19d{word-spacing:9.138508px;}
.ws19e{word-spacing:9.426029px;}
.ws1b8{word-spacing:9.511508px;}
.ws1b5{word-spacing:9.744633px;}
.ws1b9{word-spacing:9.760175px;}
.ws27{word-spacing:9.923037px;}
.ws1d{word-spacing:10.024655px;}
.ws25{word-spacing:10.263458px;}
.ws1cc{word-spacing:10.409874px;}
.ws8c{word-spacing:10.436773px;}
.ws40{word-spacing:10.463672px;}
.ws87{word-spacing:10.469052px;}
.ws249{word-spacing:10.802036px;}
.ws41{word-spacing:10.802598px;}
.wse{word-spacing:11.481168px;}
.ws14f{word-spacing:11.534248px;}
.wse6{word-spacing:11.658346px;}
.ws20{word-spacing:11.701359px;}
.ws23{word-spacing:11.782653px;}
.ws1a2{word-spacing:11.784479px;}
.ws159{word-spacing:11.851655px;}
.ws22{word-spacing:11.863948px;}
.ws1f{word-spacing:11.924919px;}
.ws15e{word-spacing:11.926972px;}
.ws282{word-spacing:11.970648px;}
.ws25a{word-spacing:12.036699px;}
.ws23a{word-spacing:12.041780px;}
.ws15{word-spacing:12.067185px;}
.ws19{word-spacing:12.153561px;}
.ws238{word-spacing:12.163722px;}
.ws18{word-spacing:12.199289px;}
.ws17{word-spacing:12.209451px;}
.ws26d{word-spacing:12.214532px;}
.ws28b{word-spacing:12.219613px;}
.ws16{word-spacing:12.234855px;}
.ws21{word-spacing:12.239936px;}
.ws10{word-spacing:12.250098px;}
.ws14{word-spacing:12.346636px;}
.ws26e{word-spacing:12.361878px;}
.ws184{word-spacing:12.394490px;}
.ws180{word-spacing:12.410031px;}
.ws239{word-spacing:12.448254px;}
.ws182{word-spacing:12.487740px;}
.ws1a4{word-spacing:12.495511px;}
.ws181{word-spacing:12.518823px;}
.ws1d0{word-spacing:12.529508px;}
.ws17a{word-spacing:12.546021px;}
.ws17b{word-spacing:12.557677px;}
.ws19c{word-spacing:12.573219px;}
.ws86{word-spacing:12.577926px;}
.ws19a{word-spacing:12.584875px;}
.ws1b4{word-spacing:12.612073px;}
.ws1bf{word-spacing:12.658622px;}
.ws185{word-spacing:12.658698px;}
.ws10b{word-spacing:12.760838px;}
.ws1db{word-spacing:12.793117px;}
.ws1a6{word-spacing:12.803676px;}
.ws17e{word-spacing:12.821886px;}
.ws29e{word-spacing:12.844566px;}
.wsb7{word-spacing:12.868434px;}
.ws183{word-spacing:12.884053px;}
.ws1a0{word-spacing:12.895709px;}
.ws19f{word-spacing:12.899594px;}
.ws10c{word-spacing:12.927611px;}
.ws24a{word-spacing:12.956346px;}
.wse4{word-spacing:12.959890px;}
.ws1d9{word-spacing:12.970650px;}
.wsd1{word-spacing:13.089005px;}
.ws278{word-spacing:13.093531px;}
.ws279{word-spacing:13.098612px;}
.ws102{word-spacing:13.105144px;}
.ws21f{word-spacing:13.129097px;}
.wsb3{word-spacing:13.137423px;}
.wsc1{word-spacing:13.180461px;}
.ws221{word-spacing:13.200230px;}
.ws98{word-spacing:13.212740px;}
.ws21e{word-spacing:13.220554px;}
.ws275{word-spacing:13.225635px;}
.ws1a1{word-spacing:13.225970px;}
.ws68{word-spacing:13.266537px;}
.ws220{word-spacing:13.271363px;}
.ws12{word-spacing:13.286606px;}
.ws73{word-spacing:13.298816px;}
.ws1a5{word-spacing:13.310265px;}
.ws29a{word-spacing:13.383143px;}
.ws4e{word-spacing:13.395652px;}
.ws22e{word-spacing:13.398386px;}
.wse5{word-spacing:13.449450px;}
.wsd6{word-spacing:13.481729px;}
.ws13{word-spacing:13.505085px;}
.ws111{word-spacing:13.551666px;}
.ws1e6{word-spacing:13.680781px;}
.ws235{word-spacing:13.698160px;}
.wse7{word-spacing:13.707679px;}
.ws43{word-spacing:13.718439px;}
.ws1c5{word-spacing:13.729199px;}
.wsdf{word-spacing:13.734578px;}
.ws1f2{word-spacing:13.782996px;}
.wsa7{word-spacing:13.815275px;}
.ws1b7{word-spacing:13.843751px;}
.ws19b{word-spacing:13.855408px;}
.ws241{word-spacing:13.901397px;}
.ws20c{word-spacing:13.926802px;}
.ws1f7{word-spacing:13.939010px;}
.ws1c3{word-spacing:13.944390px;}
.wsa6{word-spacing:14.041226px;}
.ws242{word-spacing:14.079229px;}
.ws240{word-spacing:14.089391px;}
.ws9c{word-spacing:14.100403px;}
.ws4b{word-spacing:14.105783px;}
.ws145{word-spacing:14.202619px;}
.ws20f{word-spacing:14.246900px;}
.ws144{word-spacing:14.315595px;}
.ws4a{word-spacing:14.353253px;}
.wsb2{word-spacing:14.358633px;}
.ws132{word-spacing:14.364013px;}
.wsc0{word-spacing:14.396291px;}
.ws1ef{word-spacing:14.401671px;}
.wsf2{word-spacing:14.428570px;}
.wsba{word-spacing:14.450089px;}
.ws292{word-spacing:14.460298px;}
.ws1f9{word-spacing:14.460849px;}
.ws61{word-spacing:14.471608px;}
.wsfe{word-spacing:14.482368px;}
.ws108{word-spacing:14.487748px;}
.ws291{word-spacing:14.490784px;}
.ws7d{word-spacing:14.546925px;}
.ws1ff{word-spacing:14.573824px;}
.wsbf{word-spacing:14.606103px;}
.ws28e{word-spacing:14.643211px;}
.ws28f{word-spacing:14.648292px;}
.ws186{word-spacing:14.673121px;}
.ws190{word-spacing:14.691053px;}
.ws20d{word-spacing:14.694021px;}
.ws122{word-spacing:14.697559px;}
.ws5a{word-spacing:14.700019px;}
.ws28{word-spacing:14.709263px;}
.ws1ae{word-spacing:14.713469px;}
.ws29{word-spacing:14.714344px;}
.ws24{word-spacing:14.719425px;}
.ws109{word-spacing:14.729838px;}
.wsf1{word-spacing:14.789015px;}
.ws137{word-spacing:14.794395px;}
.ws290{word-spacing:14.795639px;}
.ws59{word-spacing:14.816579px;}
.ws187{word-spacing:14.830029px;}
.ws26{word-spacing:14.831205px;}
.ws56{word-spacing:14.865893px;}
.ws16e{word-spacing:14.874859px;}
.ws175{word-spacing:14.879343px;}
.ws66{word-spacing:14.885851px;}
.ws197{word-spacing:14.888309px;}
.ws138{word-spacing:14.907370px;}
.ws1af{word-spacing:14.915207px;}
.wsd{word-spacing:14.951072px;}
.ws1b3{word-spacing:14.955555px;}
.ws1e9{word-spacing:14.966548px;}
.ws2a{word-spacing:14.978552px;}
.ws294{word-spacing:14.988714px;}
.wsf{word-spacing:15.000386px;}
.ws177{word-spacing:15.009352px;}
.ws164{word-spacing:15.013835px;}
.ws57{word-spacing:15.022801px;}
.ws16b{word-spacing:15.054183px;}
.ws165{word-spacing:15.063149px;}
.ws295{word-spacing:15.095413px;}
.ws284{word-spacing:15.105575px;}
.ws8f{word-spacing:15.122562px;}
.ws1a8{word-spacing:15.125912px;}
.ws168{word-spacing:15.134878px;}
.ws296{word-spacing:15.141142px;}
.ws172{word-spacing:15.215574px;}
.ws1b1{word-spacing:15.220057px;}
.ws101{word-spacing:15.224777px;}
.ws3d{word-spacing:15.235537px;}
.ws118{word-spacing:15.257056px;}
.ws193{word-spacing:15.296269px;}
.ws18c{word-spacing:15.300752px;}
.wsa0{word-spacing:15.305474px;}
.ws1ab{word-spacing:15.318684px;}
.ws58{word-spacing:15.403863px;}
.ws23f{word-spacing:15.420592px;}
.ws21d{word-spacing:15.435835px;}
.ws20b{word-spacing:15.461240px;}
.ws1e8{word-spacing:15.461488px;}
.ws139{word-spacing:15.483007px;}
.ws9b{word-spacing:15.509906px;}
.ws231{word-spacing:15.537453px;}
.wsbe{word-spacing:15.563704px;}
.ws129{word-spacing:15.569083px;}
.ws21c{word-spacing:15.618748px;}
.ws24e{word-spacing:15.639072px;}
.ws148{word-spacing:15.649780px;}
.ws1e4{word-spacing:15.671299px;}
.ws1e1{word-spacing:15.676679px;}
.ws1fb{word-spacing:15.714337px;}
.ws206{word-spacing:15.730477px;}
.ws1bd{word-spacing:15.735856px;}
.ws253{word-spacing:15.750852px;}
.ws234{word-spacing:15.761014px;}
.wsa{word-spacing:15.798310px;}
.ws1f8{word-spacing:15.805794px;}
.ws203{word-spacing:15.832693px;}
.ws12f{word-spacing:15.838072px;}
.ws233{word-spacing:15.852470px;}
.ws9a{word-spacing:15.854212px;}
.ws149{word-spacing:15.864971px;}
.ws24d{word-spacing:15.888037px;}
.ws23c{word-spacing:15.928684px;}
.ws205{word-spacing:15.929529px;}
.ws6c{word-spacing:15.934908px;}
.ws14a{word-spacing:15.956427px;}
.ws1d3{word-spacing:15.988706px;}
.ws23b{word-spacing:16.004898px;}
.ws1cd{word-spacing:16.053264px;}
.ws130{word-spacing:16.058643px;}
.ws6d{word-spacing:16.064023px;}
.ws80{word-spacing:16.080162px;}
.wsa3{word-spacing:16.085542px;}
.ws21a{word-spacing:16.086193px;}
.ws232{word-spacing:16.106516px;}
.ws24c{word-spacing:16.121759px;}
.ws128{word-spacing:16.160859px;}
.ws26a{word-spacing:16.162407px;}
.ws268{word-spacing:16.172568px;}
.ws269{word-spacing:16.192892px;}
.ws54{word-spacing:16.193138px;}
.wsd8{word-spacing:16.214657px;}
.ws152{word-spacing:16.311493px;}
.ws27f{word-spacing:16.314834px;}
.ws281{word-spacing:16.330077px;}
.ws1c2{word-spacing:16.354531px;}
.ws21b{word-spacing:16.370724px;}
.wsfd{word-spacing:16.424468px;}
.ws31{word-spacing:16.429848px;}
.ws2e{word-spacing:16.467507px;}
.ws91{word-spacing:16.515925px;}
.ws280{word-spacing:16.533314px;}
.ws1df{word-spacing:16.585862px;}
.ws163{word-spacing:16.607381px;}
.ws5e{word-spacing:16.609527px;}
.ws155{word-spacing:16.623520px;}
.ws276{word-spacing:16.645094px;}
.ws29c{word-spacing:16.660337px;}
.ws204{word-spacing:16.666558px;}
.ws2b{word-spacing:16.685741px;}
.ws283{word-spacing:16.690822px;}
.ws28d{word-spacing:16.721308px;}
.wseb{word-spacing:16.736235px;}
.ws266{word-spacing:16.746712px;}
.ws2c{word-spacing:16.751793px;}
.wsee{word-spacing:16.752635px;}
.ws158{word-spacing:16.763394px;}
.ws215{word-spacing:16.772117px;}
.ws14c{word-spacing:16.795673px;}
.wsd4{word-spacing:16.797522px;}
.ws222{word-spacing:16.802602px;}
.ws23d{word-spacing:16.807683px;}
.ws299{word-spacing:16.822926px;}
.ws30{word-spacing:16.827952px;}
.ws2aa{word-spacing:16.828007px;}
.ws5c{word-spacing:16.838169px;}
.ws216{word-spacing:16.843250px;}
.ws2d{word-spacing:16.848331px;}
.ws267{word-spacing:16.853412px;}
.ws28c{word-spacing:16.858493px;}
.ws2b0{word-spacing:16.909302px;}
.ws277{word-spacing:16.919464px;}
.ws22c{word-spacing:16.924545px;}
.ws74{word-spacing:16.930168px;}
.ws23e{word-spacing:16.944868px;}
.ws92{word-spacing:16.951687px;}
.ws223{word-spacing:16.960111px;}
.ws26c{word-spacing:16.985516px;}
.ws45{word-spacing:17.005485px;}
.ws255{word-spacing:17.005839px;}
.ws5b{word-spacing:17.010920px;}
.ws150{word-spacing:17.027004px;}
.ws151{word-spacing:17.037763px;}
.ws160{word-spacing:17.053903px;}
.ws1f4{word-spacing:17.086181px;}
.ws27d{word-spacing:17.097296px;}
.ws44{word-spacing:17.102321px;}
.ws156{word-spacing:17.134599px;}
.ws123{word-spacing:17.145359px;}
.ws14b{word-spacing:17.150739px;}
.ws1fc{word-spacing:17.166878px;}
.ws261{word-spacing:17.178591px;}
.wse1{word-spacing:17.193777px;}
.wsd5{word-spacing:17.214157px;}
.ws1e0{word-spacing:17.247575px;}
.ws1fd{word-spacing:17.252954px;}
.wsab{word-spacing:17.290613px;}
.ws244{word-spacing:17.381827px;}
.ws7e{word-spacing:17.408968px;}
.wsa8{word-spacing:17.511184px;}
.ws243{word-spacing:17.539336px;}
.ws1d8{word-spacing:17.554222px;}
.ws11f{word-spacing:17.564982px;}
.ws3a{word-spacing:17.570361px;}
.ws1c4{word-spacing:17.597260px;}
.ws1ea{word-spacing:17.602640px;}
.ws120{word-spacing:17.618779px;}
.wsc4{word-spacing:17.640299px;}
.ws247{word-spacing:17.646035px;}
.wsb9{word-spacing:17.656438px;}
.ws207{word-spacing:17.677957px;}
.wscd{word-spacing:17.688717px;}
.wscf{word-spacing:17.710236px;}
.ws110{word-spacing:17.715616px;}
.ws8d{word-spacing:17.720995px;}
.ws143{word-spacing:17.737135px;}
.ws27a{word-spacing:17.742573px;}
.ws4d{word-spacing:17.747894px;}
.ws136{word-spacing:17.758654px;}
.ws6e{word-spacing:17.780173px;}
.wsdc{word-spacing:17.790932px;}
.ws289{word-spacing:17.803544px;}
.ws13b{word-spacing:17.807072px;}
.ws200{word-spacing:17.812452px;}
.ws287{word-spacing:17.818786px;}
.ws142{word-spacing:17.850110px;}
.wsdb{word-spacing:17.855490px;}
.wsfc{word-spacing:17.860870px;}
.ws1ee{word-spacing:17.866249px;}
.ws246{word-spacing:17.869596px;}
.ws115{word-spacing:17.877009px;}
.ws1c1{word-spacing:17.882389px;}
.ws288{word-spacing:17.889919px;}
.wsad{word-spacing:17.898528px;}
.ws121{word-spacing:17.903908px;}
.ws208{word-spacing:17.920047px;}
.ws70{word-spacing:17.925427px;}
.ws83{word-spacing:17.941566px;}
.ws3c{word-spacing:17.946946px;}
.ws126{word-spacing:18.016883px;}
.wsc2{word-spacing:18.027643px;}
.ws76{word-spacing:18.033023px;}
.ws214{word-spacing:18.037266px;}
.ws10d{word-spacing:18.189036px;}
.ws20a{word-spacing:18.199796px;}
.ws114{word-spacing:18.361189px;}
.ws7c{word-spacing:18.522583px;}
.wsea{word-spacing:18.554861px;}
.ws22d{word-spacing:18.611410px;}
.ws90{word-spacing:18.630178px;}
.wsc{word-spacing:18.632012px;}
.wsa2{word-spacing:18.678596px;}
.ws11{word-spacing:18.682543px;}
.ws8e{word-spacing:18.683120px;}
.ws77{word-spacing:18.694478px;}
.ws9{word-spacing:18.728550px;}
.ws7f{word-spacing:18.762623px;}
.ws8{word-spacing:18.791017px;}
.ws1d6{word-spacing:18.802331px;}
.wsb{word-spacing:18.870519px;}
.ws7{word-spacing:18.915950px;}
.wsdd{word-spacing:18.938665px;}
.wsa1{word-spacing:18.963725px;}
.ws1d2{word-spacing:19.033662px;}
.wsc3{word-spacing:19.057919px;}
.ws88{word-spacing:19.125118px;}
.ws153{word-spacing:19.189675px;}
.wsce{word-spacing:19.205566px;}
.ws1bc{word-spacing:19.211194px;}
.ws1eb{word-spacing:19.221954px;}
.ws154{word-spacing:19.308030px;}
.ws1dc{word-spacing:19.388727px;}
.ws260{word-spacing:19.490409px;}
.wsf8{word-spacing:19.517842px;}
.wsef{word-spacing:19.587779px;}
.wsca{word-spacing:19.598539px;}
.ws9f{word-spacing:19.620058px;}
.ws112{word-spacing:19.646957px;}
.ws84{word-spacing:19.663096px;}
.wsf0{word-spacing:19.673855px;}
.ws2a4{word-spacing:19.708889px;}
.ws85{word-spacing:19.722273px;}
.ws12d{word-spacing:19.749172px;}
.ws39{word-spacing:19.754552px;}
.ws12c{word-spacing:19.819110px;}
.ws1be{word-spacing:19.829869px;}
.ws259{word-spacing:19.846074px;}
.wsd0{word-spacing:19.883667px;}
.ws257{word-spacing:19.901964px;}
.ws9e{word-spacing:19.905186px;}
.ws258{word-spacing:19.932449px;}
.ws2a3{word-spacing:19.978177px;}
.ws2a5{word-spacing:20.003582px;}
.ws209{word-spacing:20.007402px;}
.ws26b{word-spacing:20.049310px;}
.ws2ac{word-spacing:20.069634px;}
.ws2ad{word-spacing:20.089958px;}
.ws13d{word-spacing:20.233353px;}
.ws273{word-spacing:20.272871px;}
.ws272{word-spacing:20.394813px;}
.ws15a{word-spacing:20.491582px;}
.wsb6{word-spacing:20.513101px;}
.wsf5{word-spacing:20.523861px;}
.wsaa{word-spacing:20.550760px;}
.wsb5{word-spacing:20.572279px;}
.ws274{word-spacing:20.582807px;}
.ws17f{word-spacing:20.631580px;}
.ws7b{word-spacing:20.636836px;}
.ws297{word-spacing:20.659021px;}
.wsac{word-spacing:20.690634px;}
.ws12a{word-spacing:20.749811px;}
.ws25d{word-spacing:20.750477px;}
.ws29f{word-spacing:20.852096px;}
.ws25f{word-spacing:20.867338px;}
.ws201{word-spacing:20.905825px;}
.wsd7{word-spacing:20.921964px;}
.ws25e{word-spacing:20.953714px;}
.ws1a7{word-spacing:20.953916px;}
.ws38{word-spacing:21.185574px;}
.ws237{word-spacing:21.217922px;}
.ws89{word-spacing:21.244751px;}
.ws37{word-spacing:21.266270px;}
.ws9d{word-spacing:21.287789px;}
.ws2a0{word-spacing:21.294136px;}
.ws8a{word-spacing:21.298549px;}
.ws1d5{word-spacing:21.373866px;}
.ws236{word-spacing:21.446563px;}
.wsc5{word-spacing:21.486841px;}
.wsc9{word-spacing:21.712792px;}
.ws3{word-spacing:21.763907px;}
.ws5{word-spacing:21.860147px;}
.ws4{word-spacing:21.867021px;}
.ws67{word-spacing:21.922604px;}
.ws2{word-spacing:22.004506px;}
.wsfb{word-spacing:22.272289px;}
.wsb1{word-spacing:22.379885px;}
.wsb0{word-spacing:22.439062px;}
.ws1e7{word-spacing:22.482101px;}
.ws42{word-spacing:22.552038px;}
.wsc8{word-spacing:22.627355px;}
.ws1de{word-spacing:22.638114px;}
.ws6{word-spacing:22.753801px;}
.ws15c{word-spacing:22.826407px;}
.ws4c{word-spacing:22.864065px;}
.ws13a{word-spacing:22.869445px;}
.ws75{word-spacing:23.030838px;}
.wsbd{word-spacing:23.073876px;}
.ws22a{word-spacing:23.108024px;}
.wsc6{word-spacing:23.235270px;}
.ws1d4{word-spacing:23.353625px;}
.wscc{word-spacing:23.385904px;}
.wsc7{word-spacing:23.471980px;}
.ws49{word-spacing:23.547297px;}
.ws104{word-spacing:23.633374px;}
.ws1ec{word-spacing:23.810906px;}
.ws25b{word-spacing:23.915890px;}
.ws147{word-spacing:23.972300px;}
.ws146{word-spacing:23.983059px;}
.ws1ca{word-spacing:24.015338px;}
.ws14d{word-spacing:24.069136px;}
.ws25c{word-spacing:24.078480px;}
.ws13c{word-spacing:24.149832px;}
.ws1da{word-spacing:24.209010px;}
.ws131{word-spacing:24.214390px;}
.wsb4{word-spacing:24.445720px;}
.ws125{word-spacing:24.521037px;}
.ws2a6{word-spacing:24.545925px;}
.wscb{word-spacing:24.655532px;}
.ws1f0{word-spacing:24.682431px;}
.wsff{word-spacing:24.730849px;}
.ws100{word-spacing:24.773887px;}
.ws1f5{word-spacing:24.859963px;}
.ws1dd{word-spacing:24.919141px;}
.ws1cf{word-spacing:24.994458px;}
.ws113{word-spacing:25.064395px;}
.ws1c0{word-spacing:25.085914px;}
.ws2ae{word-spacing:25.089583px;}
.ws161{word-spacing:25.091294px;}
.ws298{word-spacing:25.140392px;}
.ws69{word-spacing:25.333384px;}
.ws211{word-spacing:25.501137px;}
.ws213{word-spacing:25.628160px;}
.ws134{word-spacing:25.634652px;}
.ws229{word-spacing:25.643403px;}
.ws228{word-spacing:25.694212px;}
.wsf6{word-spacing:25.704589px;}
.ws212{word-spacing:25.714536px;}
.ws1a{word-spacing:25.861883px;}
.ws1fa{word-spacing:25.865982px;}
.ws36{word-spacing:25.876742px;}
.ws64{word-spacing:26.011236px;}
.ws106{word-spacing:26.151111px;}
.wsa5{word-spacing:26.215668px;}
.ws250{word-spacing:26.232790px;}
.ws51{word-spacing:26.264086px;}
.ws252{word-spacing:26.309004px;}
.ws55{word-spacing:26.366302px;}
.ws251{word-spacing:26.395379px;}
.ws65{word-spacing:26.414720px;}
.wsa4{word-spacing:26.446998px;}
.ws162{word-spacing:26.522315px;}
.wsda{word-spacing:26.694468px;}
.ws263{word-spacing:26.735801px;}
.ws262{word-spacing:26.751044px;}
.ws1c9{word-spacing:26.947318px;}
.ws35{word-spacing:27.178649px;}
.ws103{word-spacing:27.377700px;}
.ws2a7{word-spacing:27.569072px;}
.ws10a{word-spacing:27.786564px;}
.ws293{word-spacing:27.807875px;}
.ws105{word-spacing:27.899539px;}
.wsde{word-spacing:28.346061px;}
.wsbb{word-spacing:28.464416px;}
.ws63{word-spacing:28.604290px;}
.ws11b{word-spacing:28.652708px;}
.ws1fe{word-spacing:28.824861px;}
.ws46{word-spacing:28.910938px;}
.ws264{word-spacing:29.027296px;}
.ws8b{word-spacing:29.077711px;}
.ws127{word-spacing:29.255244px;}
.ws1f6{word-spacing:29.314421px;}
.ws32{word-spacing:29.416637px;}
.ws33{word-spacing:29.470435px;}
.ws29b{word-spacing:29.525226px;}
.wsd9{word-spacing:29.803981px;}
.ws1{word-spacing:29.885011px;}
.ws1cb{word-spacing:29.916957px;}
.wsf4{word-spacing:29.938476px;}
.wsaf{word-spacing:30.035312px;}
.wsf3{word-spacing:30.105249px;}
.ws202{word-spacing:30.110629px;}
.ws0{word-spacing:30.127104px;}
.ws2a8{word-spacing:30.200988px;}
.ws2a9{word-spacing:30.297526px;}
.wsb8{word-spacing:30.530252px;}
.ws140{word-spacing:30.562530px;}
.ws13f{word-spacing:30.589429px;}
.ws13e{word-spacing:30.691645px;}
.ws15d{word-spacing:30.896077px;}
.ws11d{word-spacing:31.116648px;}
.ws2a2{word-spacing:31.267982px;}
.wsae{word-spacing:31.301325px;}
.ws6a{word-spacing:31.342598px;}
.ws12b{word-spacing:31.358738px;}
.ws119{word-spacing:31.374877px;}
.ws11a{word-spacing:31.391016px;}
.ws271{word-spacing:31.425490px;}
.ws270{word-spacing:31.450895px;}
.ws1ed{word-spacing:31.455574px;}
.ws245{word-spacing:31.506785px;}
.ws71{word-spacing:31.552410px;}
.ws2a1{word-spacing:31.593161px;}
.ws285{word-spacing:31.613484px;}
.ws6b{word-spacing:31.627727px;}
.ws3f{word-spacing:31.638486px;}
.ws217{word-spacing:31.654132px;}
.ws219{word-spacing:31.750669px;}
.ws218{word-spacing:31.837045px;}
.ws14e{word-spacing:31.837538px;}
.ws72{word-spacing:32.015071px;}
.ws12e{word-spacing:32.138806px;}
.ws1f1{word-spacing:32.203363px;}
.ws1ce{word-spacing:32.300199px;}
.wsbc{word-spacing:32.316338px;}
.ws1f3{word-spacing:32.472352px;}
.ws227{word-spacing:32.644911px;}
.ws78{word-spacing:32.735961px;}
.wse3{word-spacing:32.838177px;}
.ws62{word-spacing:32.994191px;}
.ws135{word-spacing:33.677423px;}
.ws1bb{word-spacing:34.247679px;}
.ws286{word-spacing:34.255563px;}
.wse2{word-spacing:34.597365px;}
.ws224{word-spacing:34.865273px;}
.ws226{word-spacing:34.870354px;}
.ws225{word-spacing:34.900839px;}
.ws28a{word-spacing:35.236180px;}
.wsd2{word-spacing:35.441991px;}
.ws81{word-spacing:35.877753px;}
.wse8{word-spacing:36.001488px;}
.ws10e{word-spacing:36.087564px;}
.ws11c{word-spacing:36.130602px;}
.ws82{word-spacing:36.157501px;}
.ws34{word-spacing:36.173641px;}
.ws99{word-spacing:36.474908px;}
.ws10f{word-spacing:36.566365px;}
.wse0{word-spacing:37.174280px;}
.ws52{word-spacing:37.362572px;}
.ws53{word-spacing:37.577763px;}
.ws1d1{word-spacing:37.900550px;}
.ws22b{word-spacing:38.254247px;}
.ws2af{word-spacing:38.279651px;}
.ws3e{word-spacing:38.777454px;}
.ws79{word-spacing:38.933468px;}
.wse9{word-spacing:40.079361px;}
.wsf7{word-spacing:40.186957px;}
.ws26f{word-spacing:41.058915px;}
.ws50{word-spacing:41.128418px;}
.ws4f{word-spacing:41.273672px;}
.ws1e5{word-spacing:41.332850px;}
.ws1c8{word-spacing:41.838549px;}
.ws27b{word-spacing:41.917590px;}
.ws1c7{word-spacing:41.999942px;}
.ws1c6{word-spacing:42.016082px;}
.ws27c{word-spacing:42.202122px;}
.ws107{word-spacing:42.607858px;}
.ws29d{word-spacing:45.215107px;}
.ws117{word-spacing:45.523698px;}
.ws116{word-spacing:45.593636px;}
.ws1e3{word-spacing:46.083195px;}
.ws133{word-spacing:46.228450px;}
.wsa9{word-spacing:46.723389px;}
.ws97{word-spacing:48.036631px;}
.ws47{word-spacing:48.116752px;}
.ws48{word-spacing:48.192069px;}
.ws11e{word-spacing:49.112012px;}
.ws1d7{word-spacing:49.241126px;}
.ws256{word-spacing:50.047062px;}
.ws210{word-spacing:50.280784px;}
.ws27e{word-spacing:50.387484px;}
.ws254{word-spacing:51.383344px;}
.wsf9{word-spacing:53.319000px;}
.wsfa{word-spacing:53.491153px;}
.wsec{word-spacing:61.383290px;}
.wsed{word-spacing:61.646899px;}
.ws265{word-spacing:62.088842px;}
.ws124{word-spacing:62.577601px;}
.wsd3{word-spacing:63.432986px;}
.ws16f{word-spacing:147.058473px;}
.ws176{word-spacing:147.067439px;}
.ws173{word-spacing:147.071922px;}
.ws174{word-spacing:154.540734px;}
.ws171{word-spacing:154.554183px;}
.ws178{word-spacing:154.581081px;}
.ws16d{word-spacing:154.881448px;}
.ws170{word-spacing:154.894897px;}
.ws16c{word-spacing:169.715960px;}
.ws179{word-spacing:184.819456px;}
.ws192{word-spacing:232.855658px;}
.ws195{word-spacing:232.860141px;}
.ws194{word-spacing:232.873591px;}
.ws191{word-spacing:232.985668px;}
.ws1aa{word-spacing:253.186426px;}
.ws1b0{word-spacing:253.199875px;}
.ws196{word-spacing:257.620192px;}
.ws18e{word-spacing:263.134381px;}
.ws18b{word-spacing:263.475095px;}
.ws18f{word-spacing:263.488544px;}
.ws199{word-spacing:277.888197px;}
.ws1ad{word-spacing:278.018206px;}
.ws1a9{word-spacing:283.474115px;}
.ws18d{word-spacing:293.749334px;}
.ws18a{word-spacing:377.986407px;}
.ws198{word-spacing:422.884453px;}
.ws1b2{word-spacing:625.497254px;}
.ws1ac{word-spacing:652.749897px;}
.ws5d{word-spacing:1252.045387px;}
._23{margin-left:-18.323531px;}
._22{margin-left:-17.166878px;}
._32{margin-left:-16.030020px;}
._33{margin-left:-13.243162px;}
._14{margin-left:-10.851016px;}
._25{margin-left:-3.272648px;}
._17{margin-left:-2.168051px;}
._16{margin-left:-1.006019px;}
._0{width:1.049069px;}
._21{width:2.055064px;}
._13{width:7.057064px;}
._30{width:8.749405px;}
._10{width:10.727281px;}
._19{width:11.787098px;}
._4{width:13.444114px;}
._3{width:14.693165px;}
._7{width:15.872794px;}
._2{width:17.087389px;}
._8{width:18.128468px;}
._1{width:19.807515px;}
._a{width:20.986522px;}
._d{width:22.003300px;}
._e{width:23.219130px;}
._6{width:25.343629px;}
._5{width:27.020333px;}
._1c{width:28.082452px;}
._18{width:29.088470px;}
._f{width:30.374238px;}
._c{width:32.063477px;}
._15{width:33.263180px;}
._1d{width:36.087564px;}
._9{width:37.314154px;}
._12{width:38.551503px;}
._b{width:39.891069px;}
._11{width:42.247412px;}
._1e{width:43.689193px;}
._1f{width:46.755668px;}
._20{width:50.209487px;}
._31{width:52.048944px;}
._1a{width:64.993122px;}
._27{width:214.607411px;}
._26{width:229.912646px;}
._2c{width:284.431734px;}
._2d{width:288.921057px;}
._2b{width:350.668889px;}
._29{width:364.275036px;}
._2e{width:401.504645px;}
._2f{width:458.036256px;}
._2a{width:670.000789px;}
._24{width:1012.403541px;}
._28{width:1106.693129px;}
._1b{width:1244.271580px;}
.fc2{color:rgb(1,114,207);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(71,63,149);}
.fsb{font-size:29.883000px;}
.fs7{font-size:33.869400px;}
.fs9{font-size:35.860800px;}
.fsa{font-size:36.000000px;}
.fs3{font-size:37.854600px;}
.fsc{font-size:38.854200px;}
.fs5{font-size:44.830800px;}
.fs2{font-size:45.822600px;}
.fs6{font-size:50.809200px;}
.fs8{font-size:53.797800px;}
.fs4{font-size:56.787600px;}
.fs1{font-size:68.742600px;}
.fs0{font-size:89.664000px;}
.y0{bottom:0.000000px;}
.y50{bottom:23.774414px;}
.y51{bottom:35.661621px;}
.y4c{bottom:100.261350px;}
.y142{bottom:100.261712px;}
.yc7{bottom:100.262437px;}
.y88{bottom:100.262650px;}
.y106{bottom:100.272784px;}
.y1e8{bottom:100.344830px;}
.y1b3{bottom:100.349442px;}
.y145{bottom:100.432175px;}
.y148{bottom:100.433520px;}
.y1e7{bottom:115.311950px;}
.y141{bottom:117.439350px;}
.yc6{bottom:117.440075px;}
.y87{bottom:117.440287px;}
.y105{bottom:117.450421px;}
.y144{bottom:117.609812px;}
.y147{bottom:117.611157px;}
.y1b2{bottom:117.613156px;}
.y4d{bottom:122.626800px;}
.y1e6{bottom:130.279070px;}
.y140{bottom:134.617350px;}
.yc5{bottom:134.617712px;}
.y86{bottom:134.617925px;}
.y13e{bottom:134.619225px;}
.y104{bottom:134.628059px;}
.y143{bottom:134.787450px;}
.y146{bottom:134.788795px;}
.y1b1{bottom:134.790793px;}
.y13f{bottom:140.570100px;}
.y1e5{bottom:145.246190px;}
.yc4{bottom:151.795350px;}
.y85{bottom:151.795562px;}
.y13d{bottom:151.796862px;}
.y103{bottom:151.805697px;}
.y1b0{bottom:151.968431px;}
.yc3{bottom:157.748100px;}
.y1e4{bottom:160.128205px;}
.y3e{bottom:167.612912px;}
.y4b{bottom:167.613973px;}
.y84{bottom:168.973200px;}
.y13c{bottom:168.974500px;}
.y102{bottom:168.983334px;}
.y1af{bottom:169.146068px;}
.y1e3{bottom:175.095325px;}
.y3d{bottom:184.790550px;}
.y3b{bottom:184.790673px;}
.y4a{bottom:184.791611px;}
.y13b{bottom:186.152137px;}
.y101{bottom:186.160972px;}
.y1ae{bottom:186.323706px;}
.y17f{bottom:188.874078px;}
.y1e2{bottom:190.062445px;}
.y3c{bottom:190.828350px;}
.yc2{bottom:194.399850px;}
.y17e{bottom:200.779005px;}
.y3a{bottom:201.968311px;}
.y49{bottom:201.969248px;}
.y13a{bottom:203.329775px;}
.y100{bottom:203.338609px;}
.y1ad{bottom:203.501343px;}
.y1e1{bottom:205.029565px;}
.y83{bottom:209.111700px;}
.y81{bottom:209.113000px;}
.y17d{bottom:212.769411px;}
.y82{bottom:215.064450px;}
.y39{bottom:219.232025px;}
.y48{bottom:219.232962px;}
.y1e0{bottom:219.911580px;}
.y139{bottom:220.507412px;}
.yff{bottom:220.516247px;}
.y1ac{bottom:220.678981px;}
.y17c{bottom:224.759817px;}
.y80{bottom:226.290637px;}
.y1df{bottom:234.878700px;}
.y38{bottom:236.409662px;}
.y47{bottom:236.410600px;}
.yc1{bottom:236.579550px;}
.ybf{bottom:236.580611px;}
.y17b{bottom:236.664744px;}
.y138{bottom:237.685050px;}
.y136{bottom:237.686881px;}
.yfe{bottom:237.693884px;}
.y1ab{bottom:237.856618px;}
.yc0{bottom:242.617200px;}
.y7f{bottom:243.468275px;}
.y137{bottom:243.722850px;}
.y17a{bottom:248.655150px;}
.y37{bottom:253.587300px;}
.y35{bottom:253.588025px;}
.y46{bottom:253.588237px;}
.ybe{bottom:253.758248px;}
.y135{bottom:254.949250px;}
.yfd{bottom:254.956253px;}
.y1aa{bottom:255.034256px;}
.y1de{bottom:258.774750px;}
.y36{bottom:259.540200px;}
.y7e{bottom:260.645912px;}
.y34{bottom:270.765662px;}
.y45{bottom:270.765875px;}
.ybd{bottom:270.935886px;}
.y134{bottom:272.126887px;}
.yfc{bottom:272.133891px;}
.y1a9{bottom:272.211893px;}
.y179{bottom:273.316959px;}
.y7d{bottom:277.823550px;}
.y178{bottom:286.756343px;}
.y33{bottom:287.943300px;}
.y44{bottom:287.943512px;}
.y31{bottom:287.943875px;}
.ybc{bottom:288.113523px;}
.y133{bottom:289.304525px;}
.yfb{bottom:289.311528px;}
.y1a8{bottom:289.389531px;}
.y32{bottom:293.896050px;}
.y177{bottom:300.192134px;}
.y7c{bottom:303.250350px;}
.y1dd{bottom:303.591081px;}
.y43{bottom:305.121150px;}
.y30{bottom:305.121512px;}
.ybb{bottom:305.377237px;}
.y132{bottom:306.482162px;}
.yfa{bottom:306.489166px;}
.y1a7{bottom:306.651900px;}
.y1a5{bottom:306.652837px;}
.y42{bottom:311.073900px;}
.y1a6{bottom:312.604650px;}
.y176{bottom:313.627925px;}
.y1dc{bottom:320.853450px;}
.y2f{bottom:322.299150px;}
.y41{bottom:322.299636px;}
.y2d{bottom:322.299875px;}
.yba{bottom:322.554875px;}
.y131{bottom:323.659800px;}
.yf9{bottom:323.666803px;}
.y1a4{bottom:323.830475px;}
.y175{bottom:327.063715px;}
.y2e{bottom:328.251900px;}
.y24d{bottom:331.990295px;}
.y21a{bottom:331.992200px;}
.y40{bottom:339.477273px;}
.y2c{bottom:339.477512px;}
.yb9{bottom:339.732512px;}
.y174{bottom:340.584685px;}
.yf8{bottom:340.844441px;}
.y1a3{bottom:341.008112px;}
.y1db{bottom:346.195200px;}
.y24c{bottom:346.957415px;}
.y219{bottom:346.959320px;}
.y130{bottom:349.086600px;}
.y7b{bottom:350.449036px;}
.y29{bottom:356.654911px;}
.y2b{bottom:356.655150px;}
.yb8{bottom:356.910150px;}
.yb6{bottom:356.910875px;}
.yf7{bottom:358.022079px;}
.y1a2{bottom:358.185750px;}
.y1a0{bottom:358.187898px;}
.y24b{bottom:361.924536px;}
.y218{bottom:361.926440px;}
.y2a{bottom:362.692800px;}
.yb7{bottom:362.862900px;}
.y173{bottom:363.800314px;}
.y1a1{bottom:364.138500px;}
.y7a{bottom:367.626673px;}
.y28{bottom:373.832548px;}
.yb5{bottom:374.088512px;}
.yf6{bottom:375.199716px;}
.y19f{bottom:375.365536px;}
.y24a{bottom:376.891656px;}
.y217{bottom:376.893560px;}
.y79{bottom:384.804311px;}
.y172{bottom:390.417481px;}
.y27{bottom:391.010186px;}
.yb4{bottom:391.266150px;}
.y249{bottom:391.773670px;}
.y216{bottom:391.775575px;}
.yf5{bottom:392.377354px;}
.y19e{bottom:392.543173px;}
.y1da{bottom:392.544323px;}
.y12f{bottom:400.792548px;}
.y78{bottom:401.981948px;}
.y248{bottom:406.740790px;}
.y215{bottom:406.742695px;}
.y25{bottom:408.273900px;}
.y3f{bottom:408.274681px;}
.yf4{bottom:409.554991px;}
.y19d{bottom:409.720811px;}
.y1d9{bottom:409.721961px;}
.y26{bottom:414.226650px;}
.yb3{bottom:416.692800px;}
.y12e{bottom:417.970186px;}
.y77{bottom:419.159586px;}
.y171{bottom:420.180649px;}
.y247{bottom:421.707910px;}
.y214{bottom:421.709815px;}
.yf3{bottom:426.732629px;}
.y19c{bottom:426.898448px;}
.y1d8{bottom:426.899598px;}
.y170{bottom:433.616440px;}
.y12d{bottom:435.147823px;}
.y76{bottom:436.337223px;}
.y246{bottom:436.589925px;}
.y213{bottom:436.591830px;}
.yf2{bottom:443.994998px;}
.y19b{bottom:444.076086px;}
.y1d7{bottom:444.077236px;}
.y16f{bottom:447.052231px;}
.y212{bottom:451.551516px;}
.y245{bottom:451.557045px;}
.y12c{bottom:452.325461px;}
.y75{bottom:453.514861px;}
.yb2{bottom:458.872925px;}
.y16e{bottom:460.573200px;}
.yf1{bottom:461.172635px;}
.y19a{bottom:461.253723px;}
.y1d6{bottom:461.254873px;}
.y211{bottom:466.518636px;}
.y244{bottom:466.524165px;}
.y12b{bottom:469.503098px;}
.y74{bottom:470.692498px;}
.y24{bottom:471.712922px;}
.yb1{bottom:476.050562px;}
.yf0{bottom:478.350273px;}
.y199{bottom:478.431361px;}
.y1d5{bottom:478.432511px;}
.y210{bottom:481.485756px;}
.y243{bottom:481.491285px;}
.y12a{bottom:486.680736px;}
.y73{bottom:487.870136px;}
.yb0{bottom:493.228200px;}
.yae{bottom:493.229048px;}
.yef{bottom:495.527910px;}
.y198{bottom:495.695075px;}
.y1d4{bottom:495.696225px;}
.y20f{bottom:496.367771px;}
.y242{bottom:496.373300px;}
.y157{bottom:498.161250px;}
.yaf{bottom:499.266000px;}
.y129{bottom:503.858373px;}
.y23{bottom:504.623311px;}
.y72{bottom:505.133850px;}
.y70{bottom:505.134062px;}
.y156{bottom:510.151657px;}
.yad{bottom:510.406686px;}
.y71{bottom:511.086600px;}
.y20e{bottom:511.334891px;}
.y241{bottom:511.340420px;}
.yee{bottom:512.705548px;}
.y197{bottom:512.872712px;}
.y1d3{bottom:512.873862px;}
.y22{bottom:521.035953px;}
.y128{bottom:521.036011px;}
.y155{bottom:522.142063px;}
.y6f{bottom:522.311700px;}
.y20d{bottom:526.302011px;}
.y240{bottom:526.307540px;}
.yac{bottom:527.670400px;}
.yed{bottom:529.883185px;}
.y196{bottom:530.050350px;}
.y194{bottom:530.050925px;}
.y1d2{bottom:530.051500px;}
.y154{bottom:534.046990px;}
.y195{bottom:536.003100px;}
.y1f{bottom:537.533213px;}
.y21{bottom:537.533700px;}
.y127{bottom:538.213648px;}
.y20c{bottom:541.269131px;}
.y23f{bottom:541.274660px;}
.y20{bottom:543.146400px;}
.yab{bottom:544.848037px;}
.y153{bottom:546.037396px;}
.yec{bottom:547.060823px;}
.y193{bottom:547.228562px;}
.y1d1{bottom:547.229137px;}
.y6e{bottom:547.653450px;}
.y1e{bottom:553.945855px;}
.y126{bottom:555.391286px;}
.y20b{bottom:556.151146px;}
.y23e{bottom:556.156675px;}
.y152{bottom:557.943294px;}
.yaa{bottom:562.025675px;}
.yeb{bottom:564.238461px;}
.y192{bottom:564.406200px;}
.y1d0{bottom:564.406775px;}
.y190{bottom:564.408561px;}
.y151{bottom:569.933700px;}
.y1d{bottom:570.358496px;}
.y191{bottom:570.358950px;}
.y20a{bottom:571.118266px;}
.y23d{bottom:571.123795px;}
.y125{bottom:572.655000px;}
.y123{bottom:572.661746px;}
.y124{bottom:578.607750px;}
.ya9{bottom:579.203312px;}
.yea{bottom:581.416098px;}
.y1cf{bottom:581.584412px;}
.y18f{bottom:581.586198px;}
.y209{bottom:586.085386px;}
.y23c{bottom:586.090915px;}
.y1c{bottom:586.856244px;}
.y122{bottom:589.839383px;}
.y150{bottom:594.595200px;}
.y14e{bottom:594.596775px;}
.y6d{bottom:594.936187px;}
.ya8{bottom:596.380950px;}
.ye9{bottom:598.593736px;}
.y1ce{bottom:598.762050px;}
.y18e{bottom:598.763836px;}
.y14f{bottom:599.527500px;}
.y208{bottom:600.967400px;}
.y23b{bottom:600.972930px;}
.y1b{bottom:603.268885px;}
.y121{bottom:607.017021px;}
.y14d{bottom:608.032566px;}
.y6c{bottom:612.113825px;}
.ye8{bottom:615.771373px;}
.y23a{bottom:615.931793px;}
.y207{bottom:615.934520px;}
.y18d{bottom:615.941473px;}
.y1a{bottom:619.681527px;}
.ya7{bottom:621.807750px;}
.y1cd{bottom:624.188850px;}
.y120{bottom:624.194659px;}
.y6b{bottom:629.291462px;}
.y239{bottom:630.898913px;}
.y206{bottom:630.901641px;}
.y14c{bottom:631.248196px;}
.ye7{bottom:633.035087px;}
.y18c{bottom:633.119111px;}
.y19{bottom:636.094169px;}
.y11f{bottom:641.372296px;}
.y238{bottom:645.866033px;}
.y205{bottom:645.868761px;}
.y6a{bottom:646.469100px;}
.y68{bottom:646.469825px;}
.ye6{bottom:650.212725px;}
.y18b{bottom:650.296748px;}
.y69{bottom:652.421850px;}
.y18{bottom:652.591916px;}
.y14b{bottom:657.865363px;}
.y11e{bottom:658.549934px;}
.y237{bottom:660.748048px;}
.y204{bottom:660.750775px;}
.y67{bottom:663.647462px;}
.ya6{bottom:663.988237px;}
.ye5{bottom:667.390362px;}
.y18a{bottom:667.474386px;}
.y1cc{bottom:667.484504px;}
.y17{bottom:669.004558px;}
.y236{bottom:675.715168px;}
.y203{bottom:675.717895px;}
.y11d{bottom:675.727571px;}
.y66{bottom:680.825100px;}
.ya5{bottom:681.165875px;}
.ye4{bottom:684.568000px;}
.y189{bottom:684.738100px;}
.y1cb{bottom:684.748218px;}
.y16{bottom:685.417200px;}
.y14a{bottom:687.713709px;}
.y235{bottom:690.682288px;}
.y202{bottom:690.685016px;}
.y11c{bottom:692.905209px;}
.ya4{bottom:698.343512px;}
.y149{bottom:701.149500px;}
.ye3{bottom:701.745637px;}
.y188{bottom:701.915737px;}
.y1ca{bottom:701.925856px;}
.y234{bottom:705.649408px;}
.y201{bottom:705.652136px;}
.y65{bottom:706.251900px;}
.y11b{bottom:710.082846px;}
.ya3{bottom:715.521150px;}
.ya1{bottom:715.521273px;}
.ye2{bottom:718.923275px;}
.y187{bottom:719.093375px;}
.y1c9{bottom:719.103493px;}
.y233{bottom:720.531423px;}
.y200{bottom:720.534150px;}
.ya2{bottom:721.558950px;}
.y11a{bottom:727.260484px;}
.ya0{bottom:732.698911px;}
.y232{bottom:735.498543px;}
.y1ff{bottom:735.501270px;}
.ye1{bottom:736.100912px;}
.y186{bottom:736.271012px;}
.y1c8{bottom:736.281131px;}
.y16d{bottom:743.245866px;}
.y119{bottom:744.438121px;}
.y15{bottom:745.199850px;}
.y9f{bottom:749.876548px;}
.y231{bottom:750.465663px;}
.y1fe{bottom:750.468390px;}
.ye0{bottom:753.278550px;}
.yde{bottom:753.279275px;}
.y185{bottom:753.448650px;}
.y183{bottom:753.449012px;}
.y64{bottom:753.452673px;}
.y1c7{bottom:753.458768px;}
.y16c{bottom:755.236272px;}
.ydf{bottom:759.231300px;}
.y184{bottom:759.401400px;}
.y118{bottom:761.701835px;}
.y230{bottom:765.347678px;}
.y1fd{bottom:765.350405px;}
.y9e{bottom:767.140262px;}
.y16b{bottom:767.226678px;}
.ydd{bottom:770.456912px;}
.y182{bottom:770.626650px;}
.y63{bottom:770.630310px;}
.y1c6{bottom:770.636406px;}
.y14{bottom:772.157250px;}
.y181{bottom:776.579400px;}
.y13{bottom:778.450200px;}
.y117{bottom:778.879473px;}
.y16a{bottom:779.131605px;}
.y22f{bottom:780.314798px;}
.y1fc{bottom:780.317525px;}
.y9d{bottom:784.317900px;}
.y9b{bottom:784.318262px;}
.ydb{bottom:785.423400px;}
.yda{bottom:787.634461px;}
.ydc{bottom:787.634550px;}
.y62{bottom:787.807948px;}
.y1c5{bottom:787.814043px;}
.y12{bottom:790.015488px;}
.y9c{bottom:790.270800px;}
.y169{bottom:791.122011px;}
.y22e{bottom:795.281918px;}
.y1fb{bottom:795.284645px;}
.y116{bottom:796.057110px;}
.y9a{bottom:801.495900px;}
.y168{bottom:803.026938px;}
.yd9{bottom:804.812098px;}
.y61{bottom:804.985586px;}
.y1c4{bottom:804.991681px;}
.y11{bottom:807.958950px;}
.y22d{bottom:810.249038px;}
.y1fa{bottom:810.251765px;}
.y115{bottom:813.234748px;}
.y10{bottom:814.336800px;}
.y167{bottom:815.017344px;}
.yd8{bottom:822.075812px;}
.y60{bottom:822.163223px;}
.y1c3{bottom:822.169318px;}
.y22c{bottom:825.131053px;}
.y1f9{bottom:825.133780px;}
.yf{bottom:825.902100px;}
.y166{bottom:827.007750px;}
.y114{bottom:830.412386px;}
.ye{bottom:832.195200px;}
.yd6{bottom:836.957400px;}
.yd7{bottom:839.253450px;}
.yd5{bottom:839.254962px;}
.y5f{bottom:839.340861px;}
.y99{bottom:839.341073px;}
.y1c2{bottom:839.346956px;}
.y22b{bottom:840.098173px;}
.y1f8{bottom:840.100900px;}
.yd{bottom:843.845550px;}
.y113{bottom:847.590023px;}
.yc{bottom:850.138350px;}
.y165{bottom:851.585299px;}
.y22a{bottom:855.065293px;}
.y1f7{bottom:855.068020px;}
.yd4{bottom:856.432600px;}
.y5e{bottom:856.518498px;}
.y98{bottom:856.518711px;}
.y1c1{bottom:856.524594px;}
.yb{bottom:861.788850px;}
.y112{bottom:864.767661px;}
.y164{bottom:865.106268px;}
.ya{bottom:868.081650px;}
.y229{bottom:870.032413px;}
.y1f6{bottom:870.035140px;}
.yd3{bottom:873.610237px;}
.y5d{bottom:873.782212px;}
.y97{bottom:873.782425px;}
.y1c0{bottom:873.788308px;}
.y163{bottom:878.542059px;}
.y9{bottom:879.731988px;}
.y111{bottom:881.945298px;}
.y228{bottom:884.914427px;}
.y1f5{bottom:884.917155px;}
.yd2{bottom:890.787875px;}
.y5c{bottom:890.959850px;}
.y96{bottom:890.960062px;}
.y1bf{bottom:890.965945px;}
.y162{bottom:891.981752px;}
.y8{bottom:897.675450px;}
.y110{bottom:899.122936px;}
.y227{bottom:899.881548px;}
.y1f4{bottom:899.884275px;}
.y7{bottom:903.968250px;}
.y161{bottom:905.417543px;}
.yd1{bottom:907.965512px;}
.y5b{bottom:908.137487px;}
.y95{bottom:908.137700px;}
.y1be{bottom:908.143583px;}
.y226{bottom:914.848668px;}
.y1f3{bottom:914.851395px;}
.y10f{bottom:916.300573px;}
.y160{bottom:918.853334px;}
.y5{bottom:920.040750px;}
.yd0{bottom:925.143150px;}
.y5a{bottom:925.315125px;}
.y94{bottom:925.315337px;}
.y1bd{bottom:925.321220px;}
.y6{bottom:927.694200px;}
.y225{bottom:929.815788px;}
.y1f2{bottom:929.818515px;}
.y15f{bottom:932.289125px;}
.y10e{bottom:933.478211px;}
.y3{bottom:940.960350px;}
.y59{bottom:942.492762px;}
.y93{bottom:942.492975px;}
.y1bc{bottom:942.498858px;}
.y224{bottom:944.697802px;}
.y1f1{bottom:944.700530px;}
.y15e{bottom:945.810094px;}
.y4{bottom:948.613950px;}
.ycf{bottom:950.569950px;}
.y10d{bottom:950.741925px;}
.y15d{bottom:959.245885px;}
.y223{bottom:959.664923px;}
.y1f0{bottom:959.667650px;}
.y58{bottom:959.670400px;}
.y92{bottom:959.670612px;}
.y1bb{bottom:959.676495px;}
.y10c{bottom:967.919562px;}
.y15c{bottom:972.681675px;}
.y222{bottom:974.632043px;}
.y1ef{bottom:974.634770px;}
.y57{bottom:976.848037px;}
.y91{bottom:976.848250px;}
.y1ba{bottom:976.854133px;}
.y10b{bottom:985.097200px;}
.y221{bottom:989.514057px;}
.y1ee{bottom:989.516785px;}
.yce{bottom:994.025586px;}
.y56{bottom:994.025675px;}
.y90{bottom:994.025887px;}
.y1b9{bottom:994.031770px;}
.y15b{bottom:995.897305px;}
.y2{bottom:999.297649px;}
.y10a{bottom:1002.274837px;}
.y220{bottom:1004.481177px;}
.y1ed{bottom:1004.483905px;}
.ycd{bottom:1011.203223px;}
.y55{bottom:1011.203312px;}
.y8f{bottom:1011.203525px;}
.y1b8{bottom:1011.209408px;}
.y21f{bottom:1019.448297px;}
.y1ec{bottom:1019.451025px;}
.y109{bottom:1019.452475px;}
.y15a{bottom:1022.514472px;}
.y1{bottom:1026.169950px;}
.ycc{bottom:1028.380861px;}
.y54{bottom:1028.380950px;}
.y8e{bottom:1028.381162px;}
.y1b7{bottom:1028.387045px;}
.y21e{bottom:1034.415418px;}
.y1eb{bottom:1034.418145px;}
.y180{bottom:1034.418600px;}
.y108{bottom:1036.630112px;}
.ycb{bottom:1045.558498px;}
.y8d{bottom:1045.558800px;}
.y8b{bottom:1045.563968px;}
.y1b6{bottom:1045.564683px;}
.y21d{bottom:1049.297432px;}
.y1ea{bottom:1049.300160px;}
.y8c{bottom:1051.596750px;}
.y159{bottom:1052.362818px;}
.y107{bottom:1053.807750px;}
.y53{bottom:1053.807752px;}
.yca{bottom:1062.822212px;}
.y8a{bottom:1062.827682px;}
.y1b5{bottom:1062.828397px;}
.y21c{bottom:1064.264552px;}
.y1e9{bottom:1064.267280px;}
.y158{bottom:1065.798609px;}
.y21b{bottom:1079.231672px;}
.y52{bottom:1079.234400px;}
.yc9{bottom:1079.999850px;}
.y89{bottom:1080.005319px;}
.y1b4{bottom:1080.006035px;}
.y4f{bottom:1100.749507px;}
.y4e{bottom:1115.291100px;}
.yc8{bottom:1116.141600px;}
.h12{height:22.023771px;}
.ha{height:25.368181px;}
.hc{height:26.859739px;}
.he{height:27.544922px;}
.h5{height:28.353095px;}
.h13{height:28.635545px;}
.h7{height:31.426391px;}
.h11{height:33.040300px;}
.hd{height:33.578269px;}
.h4{height:34.321127px;}
.h9{height:38.056091px;}
.h14{height:38.085828px;}
.h15{height:38.089119px;}
.h8{height:38.513374px;}
.h6{height:39.808108px;}
.hb{height:40.294552px;}
.h10{height:42.136399px;}
.hf{height:43.045001px;}
.h3{height:51.488207px;}
.h2{height:67.965312px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:25.740000px;}
.x1{left:68.031450px;}
.xc{left:73.303950px;}
.x55{left:74.324400px;}
.x47{left:78.491001px;}
.x17{left:81.467257px;}
.x4a{left:90.481594px;}
.x56{left:96.435294px;}
.x25{left:122.201550px;}
.x45{left:129.770100px;}
.x46{left:134.447250px;}
.x3c{left:139.549500px;}
.x3d{left:148.989000px;}
.x26{left:151.369950px;}
.x4e{left:154.771650px;}
.x4b{left:157.662900px;}
.x4d{left:168.122451px;}
.x2{left:191.933850px;}
.x44{left:193.209131px;}
.x15{left:205.114950px;}
.x3{left:208.006200px;}
.xb{left:211.833000px;}
.x16{left:217.360500px;}
.x3a{left:222.292800px;}
.x51{left:226.800000px;}
.x50{left:231.817200px;}
.x49{left:248.653622px;}
.x43{left:253.841667px;}
.x13{left:257.839350px;}
.x52{left:264.302250px;}
.x14{left:269.999850px;}
.x38{left:288.028200px;}
.x3b{left:293.555850px;}
.x18{left:305.631450px;}
.x19{left:317.792100px;}
.x11{left:335.735250px;}
.x42{left:339.902250px;}
.x48{left:346.874543px;}
.x4{left:347.980950px;}
.x39{left:351.637650px;}
.x4c{left:355.296119px;}
.x5{left:364.053450px;}
.x27{left:381.656550px;}
.x28{left:393.902250px;}
.x29{left:401.300700px;}
.xf{left:404.957400px;}
.x4f{left:407.508600px;}
.x12{left:412.610850px;}
.x10{left:424.771500px;}
.x1a{left:463.975517px;}
.x53{left:470.352600px;}
.x23{left:477.495883px;}
.x6{left:479.111700px;}
.x54{left:492.462223px;}
.x7{left:495.184050px;}
.xd{left:500.031300px;}
.x32{left:504.368400px;}
.xe{left:508.535250px;}
.x33{left:521.631300px;}
.x1f{left:530.985600px;}
.x36{left:541.190400px;}
.x20{left:552.670650px;}
.x2a{left:564.321150px;}
.x37{left:576.141600px;}
.x2b{left:581.584050px;}
.x30{left:596.551050px;}
.x31{left:601.568400px;}
.x2c{left:615.514800px;}
.x2d{left:632.777850px;}
.x2e{left:652.932150px;}
.x21{left:659.735250px;}
.x8{left:672.406200px;}
.x22{left:676.998300px;}
.x2f{left:682.866000px;}
.x9{left:688.563600px;}
.x40{left:696.132150px;}
.x1b{left:704.125800px;}
.x35{left:705.826650px;}
.x41{left:712.799850px;}
.x1c{left:716.371500px;}
.x3e{left:773.858100px;}
.x3f{left:782.787300px;}
.x1d{left:795.968250px;}
.x34{left:803.536800px;}
.xa{left:808.043850px;}
.x1e{left:820.799700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5c{letter-spacing:-1.305232pt;}
.ls2a{letter-spacing:-1.114212pt;}
.ls5b{letter-spacing:-1.083930pt;}
.ls57{letter-spacing:-1.065864pt;}
.ls5f{letter-spacing:-0.961988pt;}
.ls58{letter-spacing:-0.930373pt;}
.ls5e{letter-spacing:-0.844562pt;}
.ls60{letter-spacing:-0.835529pt;}
.ls59{letter-spacing:-0.812947pt;}
.ls5d{letter-spacing:-0.790365pt;}
.ls56{letter-spacing:-0.772300pt;}
.ls55{letter-spacing:-0.763267pt;}
.ls28{letter-spacing:-0.688612pt;}
.ls2c{letter-spacing:-0.664702pt;}
.ls2f{letter-spacing:-0.655138pt;}
.ls4d{letter-spacing:-0.650356pt;}
.ls62{letter-spacing:-0.636809pt;}
.ls4e{letter-spacing:-0.636010pt;}
.ls2b{letter-spacing:-0.626445pt;}
.ls2d{letter-spacing:-0.616881pt;}
.ls19{letter-spacing:-0.535521pt;}
.ls18{letter-spacing:-0.264573pt;}
.ls54{letter-spacing:-0.006375pt;}
.lsf{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.003188pt;}
.ls3c{letter-spacing:0.003454pt;}
.lsd{letter-spacing:0.003985pt;}
.ls0{letter-spacing:0.007970pt;}
.ls3b{letter-spacing:0.015940pt;}
.ls49{letter-spacing:0.031880pt;}
.lse{letter-spacing:0.075714pt;}
.ls3{letter-spacing:0.094844pt;}
.ls53{letter-spacing:0.130975pt;}
.ls3e{letter-spacing:0.134695pt;}
.lsa{letter-spacing:0.138679pt;}
.ls1e{letter-spacing:0.157807pt;}
.ls2{letter-spacing:0.167106pt;}
.ls41{letter-spacing:0.171353pt;}
.ls4{letter-spacing:0.198720pt;}
.ls15{letter-spacing:0.210409pt;}
.ls45{letter-spacing:0.235113pt;}
.ls46{letter-spacing:0.235835pt;}
.ls14{letter-spacing:0.257437pt;}
.ls10{letter-spacing:0.270948pt;}
.ls42{letter-spacing:0.306842pt;}
.ls6{letter-spacing:7.424918pt;}
.ls7{letter-spacing:7.519762pt;}
.ls9{letter-spacing:7.727515pt;}
.ls21{letter-spacing:7.837742pt;}
.ls22{letter-spacing:7.842524pt;}
.ls20{letter-spacing:8.024241pt;}
.ls25{letter-spacing:8.143791pt;}
.ls48{letter-spacing:8.572100pt;}
.ls29{letter-spacing:9.348862pt;}
.ls17{letter-spacing:9.650130pt;}
.ls63{letter-spacing:10.175389pt;}
.ls8{letter-spacing:10.676707pt;}
.ls5{letter-spacing:10.812198pt;}
.ls30{letter-spacing:11.166032pt;}
.ls3f{letter-spacing:11.172741pt;}
.ls40{letter-spacing:11.449038pt;}
.ls1c{letter-spacing:11.467300pt;}
.ls47{letter-spacing:11.473214pt;}
.ls3d{letter-spacing:11.594093pt;}
.ls1a{letter-spacing:11.955067pt;}
.ls4c{letter-spacing:12.502418pt;}
.ls26{letter-spacing:12.978420pt;}
.lsc{letter-spacing:13.034804pt;}
.ls32{letter-spacing:13.309766pt;}
.ls3a{letter-spacing:13.325706pt;}
.ls1{letter-spacing:13.333676pt;}
.ls23{letter-spacing:13.580956pt;}
.ls61{letter-spacing:14.109150pt;}
.ls31{letter-spacing:14.188273pt;}
.ls64{letter-spacing:14.411747pt;}
.ls4f{letter-spacing:14.489541pt;}
.ls65{letter-spacing:15.012425pt;}
.ls2e{letter-spacing:15.259447pt;}
.ls12{letter-spacing:15.991097pt;}
.ls52{letter-spacing:17.210514pt;}
.ls5a{letter-spacing:17.704183pt;}
.ls13{letter-spacing:19.204619pt;}
.ls27{letter-spacing:21.442608pt;}
.ls1f{letter-spacing:21.925592pt;}
.ls16{letter-spacing:22.231642pt;}
.ls24{letter-spacing:27.372321pt;}
.ls1d{letter-spacing:32.331282pt;}
.ls1b{letter-spacing:36.142558pt;}
.lsb{letter-spacing:36.745093pt;}
.ls51{letter-spacing:37.467179pt;}
.ls50{letter-spacing:37.471961pt;}
.ls38{letter-spacing:199.626571pt;}
.ls36{letter-spacing:199.929428pt;}
.ls39{letter-spacing:210.146866pt;}
.ls37{letter-spacing:223.448662pt;}
.ls35{letter-spacing:223.751519pt;}
.ls44{letter-spacing:296.987114pt;}
.ls4a{letter-spacing:311.133722pt;}
.ls43{letter-spacing:314.831765pt;}
.ls4b{letter-spacing:332.903558pt;}
.ls34{letter-spacing:636.545556pt;}
.ls33{letter-spacing:650.150209pt;}
.ws157{word-spacing:-15.307267pt;}
.ws2ab{word-spacing:-15.057589pt;}
.ws24f{word-spacing:-14.456911pt;}
.ws248{word-spacing:-14.154314pt;}
.ws24b{word-spacing:-10.220553pt;}
.ws6f{word-spacing:-9.697950pt;}
.ws5f{word-spacing:-8.320000pt;}
.ws2f{word-spacing:-0.302825pt;}
.ws96{word-spacing:-0.050478pt;}
.ws3b{word-spacing:-0.047820pt;}
.ws1c{word-spacing:-0.045164pt;}
.ws189{word-spacing:-0.043835pt;}
.ws166{word-spacing:-0.039850pt;}
.ws1a3{word-spacing:-0.037991pt;}
.ws95{word-spacing:-0.035064pt;}
.ws17c{word-spacing:-0.034537pt;}
.ws94{word-spacing:-0.031876pt;}
.ws1e2{word-spacing:-0.025501pt;}
.ws60{word-spacing:0.000000pt;}
.ws7a{word-spacing:0.232697pt;}
.ws93{word-spacing:0.503645pt;}
.ws15f{word-spacing:0.569061pt;}
.ws15b{word-spacing:0.578625pt;}
.ws20e{word-spacing:0.885209pt;}
.ws22f{word-spacing:1.038766pt;}
.ws230{word-spacing:1.260068pt;}
.ws17d{word-spacing:6.575857pt;}
.ws1ba{word-spacing:6.879784pt;}
.ws1b{word-spacing:7.402336pt;}
.ws1e{word-spacing:7.569442pt;}
.ws169{word-spacing:7.659093pt;}
.ws167{word-spacing:7.667063pt;}
.ws1b6{word-spacing:7.808831pt;}
.ws141{word-spacing:7.866434pt;}
.ws16a{word-spacing:7.961950pt;}
.ws188{word-spacing:7.969920pt;}
.ws19d{word-spacing:8.123118pt;}
.ws19e{word-spacing:8.378692pt;}
.ws1b8{word-spacing:8.454674pt;}
.ws1b5{word-spacing:8.661896pt;}
.ws1b9{word-spacing:8.675711pt;}
.ws27{word-spacing:8.820477pt;}
.ws1d{word-spacing:8.910805pt;}
.ws25{word-spacing:9.123074pt;}
.ws1cc{word-spacing:9.253222pt;}
.ws8c{word-spacing:9.277132pt;}
.ws40{word-spacing:9.301042pt;}
.ws87{word-spacing:9.305824pt;}
.ws249{word-spacing:9.601810pt;}
.ws41{word-spacing:9.602310pt;}
.wse{word-spacing:10.205483pt;}
.ws14f{word-spacing:10.252665pt;}
.wse6{word-spacing:10.362974pt;}
.ws20{word-spacing:10.401208pt;}
.ws23{word-spacing:10.473470pt;}
.ws1a2{word-spacing:10.475092pt;}
.ws159{word-spacing:10.534805pt;}
.ws22{word-spacing:10.545732pt;}
.ws1f{word-spacing:10.599928pt;}
.ws15e{word-spacing:10.601753pt;}
.ws282{word-spacing:10.640576pt;}
.ws25a{word-spacing:10.699288pt;}
.ws23a{word-spacing:10.703805pt;}
.ws15{word-spacing:10.726387pt;}
.ws19{word-spacing:10.803165pt;}
.ws238{word-spacing:10.812198pt;}
.ws18{word-spacing:10.843812pt;}
.ws17{word-spacing:10.852845pt;}
.ws26d{word-spacing:10.857361pt;}
.ws28b{word-spacing:10.861878pt;}
.ws16{word-spacing:10.875427pt;}
.ws21{word-spacing:10.879943pt;}
.ws10{word-spacing:10.888976pt;}
.ws14{word-spacing:10.974787pt;}
.ws26e{word-spacing:10.988336pt;}
.ws184{word-spacing:11.017324pt;}
.ws180{word-spacing:11.031139pt;}
.ws239{word-spacing:11.065115pt;}
.ws182{word-spacing:11.100213pt;}
.ws1a4{word-spacing:11.107121pt;}
.ws181{word-spacing:11.127843pt;}
.ws1d0{word-spacing:11.137340pt;}
.ws17a{word-spacing:11.152019pt;}
.ws17b{word-spacing:11.162380pt;}
.ws19c{word-spacing:11.176195pt;}
.ws86{word-spacing:11.180378pt;}
.ws19a{word-spacing:11.186556pt;}
.ws1b4{word-spacing:11.210732pt;}
.ws1bf{word-spacing:11.252109pt;}
.ws185{word-spacing:11.252176pt;}
.ws10b{word-spacing:11.342967pt;}
.ws1db{word-spacing:11.371659pt;}
.ws1a6{word-spacing:11.381046pt;}
.ws17e{word-spacing:11.397232pt;}
.ws29e{word-spacing:11.417392pt;}
.wsb7{word-spacing:11.438608pt;}
.ws183{word-spacing:11.452491pt;}
.ws1a0{word-spacing:11.462852pt;}
.ws19f{word-spacing:11.466306pt;}
.ws10c{word-spacing:11.491210pt;}
.ws24a{word-spacing:11.516752pt;}
.wse4{word-spacing:11.519902pt;}
.ws1d9{word-spacing:11.529466pt;}
.wsd1{word-spacing:11.634671pt;}
.ws278{word-spacing:11.638694pt;}
.ws279{word-spacing:11.643210pt;}
.ws102{word-spacing:11.649017pt;}
.ws21f{word-spacing:11.670309pt;}
.wsb3{word-spacing:11.677709pt;}
.wsc1{word-spacing:11.715965pt;}
.ws221{word-spacing:11.733538pt;}
.ws98{word-spacing:11.744657pt;}
.ws21e{word-spacing:11.751603pt;}
.ws275{word-spacing:11.756120pt;}
.ws1a1{word-spacing:11.756417pt;}
.ws68{word-spacing:11.792478pt;}
.ws220{word-spacing:11.796767pt;}
.ws12{word-spacing:11.810316pt;}
.ws73{word-spacing:11.821170pt;}
.ws1a5{word-spacing:11.831346pt;}
.ws29a{word-spacing:11.896127pt;}
.ws4e{word-spacing:11.907246pt;}
.ws22e{word-spacing:11.909676pt;}
.wse5{word-spacing:11.955067pt;}
.wsd6{word-spacing:11.983759pt;}
.ws13{word-spacing:12.004520pt;}
.ws111{word-spacing:12.045925pt;}
.ws1e6{word-spacing:12.160694pt;}
.ws235{word-spacing:12.176143pt;}
.wse7{word-spacing:12.184604pt;}
.ws43{word-spacing:12.194168pt;}
.ws1c5{word-spacing:12.203732pt;}
.wsdf{word-spacing:12.208514pt;}
.ws1f2{word-spacing:12.251552pt;}
.wsa7{word-spacing:12.280244pt;}
.ws1b7{word-spacing:12.305557pt;}
.ws19b{word-spacing:12.315918pt;}
.ws241{word-spacing:12.356797pt;}
.ws20c{word-spacing:12.379379pt;}
.ws1f7{word-spacing:12.390231pt;}
.ws1c3{word-spacing:12.395013pt;}
.wsa6{word-spacing:12.481090pt;}
.ws242{word-spacing:12.514871pt;}
.ws240{word-spacing:12.523903pt;}
.ws9c{word-spacing:12.533692pt;}
.ws4b{word-spacing:12.538474pt;}
.ws145{word-spacing:12.624550pt;}
.ws20f{word-spacing:12.663911pt;}
.ws144{word-spacing:12.724973pt;}
.ws4a{word-spacing:12.758447pt;}
.wsb2{word-spacing:12.763229pt;}
.ws132{word-spacing:12.768011pt;}
.wsc0{word-spacing:12.796703pt;}
.ws1ef{word-spacing:12.801485pt;}
.wsf2{word-spacing:12.825396pt;}
.wsba{word-spacing:12.844524pt;}
.ws292{word-spacing:12.853599pt;}
.ws1f9{word-spacing:12.854088pt;}
.ws61{word-spacing:12.863652pt;}
.wsfe{word-spacing:12.873216pt;}
.ws108{word-spacing:12.877998pt;}
.ws291{word-spacing:12.880697pt;}
.ws7d{word-spacing:12.930600pt;}
.ws1ff{word-spacing:12.954510pt;}
.wsbf{word-spacing:12.983202pt;}
.ws28e{word-spacing:13.016188pt;}
.ws28f{word-spacing:13.020704pt;}
.ws186{word-spacing:13.042774pt;}
.ws190{word-spacing:13.058714pt;}
.ws20d{word-spacing:13.061352pt;}
.ws122{word-spacing:13.064497pt;}
.ws5a{word-spacing:13.066684pt;}
.ws28{word-spacing:13.074901pt;}
.ws1ae{word-spacing:13.078639pt;}
.ws29{word-spacing:13.079417pt;}
.ws24{word-spacing:13.083934pt;}
.ws109{word-spacing:13.093189pt;}
.wsf1{word-spacing:13.145791pt;}
.ws137{word-spacing:13.150573pt;}
.ws290{word-spacing:13.151679pt;}
.ws59{word-spacing:13.170293pt;}
.ws187{word-spacing:13.182248pt;}
.ws26{word-spacing:13.183294pt;}
.ws56{word-spacing:13.214127pt;}
.ws16e{word-spacing:13.222097pt;}
.ws175{word-spacing:13.226082pt;}
.ws66{word-spacing:13.231868pt;}
.ws197{word-spacing:13.234052pt;}
.ws138{word-spacing:13.250996pt;}
.ws1af{word-spacing:13.257962pt;}
.wsd{word-spacing:13.289842pt;}
.ws1b3{word-spacing:13.293827pt;}
.ws1e9{word-spacing:13.303598pt;}
.ws2a{word-spacing:13.314269pt;}
.ws294{word-spacing:13.323301pt;}
.wsf{word-spacing:13.333676pt;}
.ws177{word-spacing:13.341646pt;}
.ws164{word-spacing:13.345631pt;}
.ws57{word-spacing:13.353601pt;}
.ws16b{word-spacing:13.381496pt;}
.ws165{word-spacing:13.389466pt;}
.ws295{word-spacing:13.418145pt;}
.ws284{word-spacing:13.427178pt;}
.ws8f{word-spacing:13.442277pt;}
.ws1a8{word-spacing:13.445255pt;}
.ws168{word-spacing:13.453225pt;}
.ws296{word-spacing:13.458793pt;}
.ws172{word-spacing:13.524954pt;}
.ws1b1{word-spacing:13.528939pt;}
.ws101{word-spacing:13.533135pt;}
.ws3d{word-spacing:13.542700pt;}
.ws118{word-spacing:13.561828pt;}
.ws193{word-spacing:13.596684pt;}
.ws18c{word-spacing:13.600668pt;}
.wsa0{word-spacing:13.604866pt;}
.ws1ab{word-spacing:13.616608pt;}
.ws58{word-spacing:13.692323pt;}
.ws23f{word-spacing:13.707193pt;}
.ws21d{word-spacing:13.720742pt;}
.ws20b{word-spacing:13.743324pt;}
.ws1e8{word-spacing:13.743545pt;}
.ws139{word-spacing:13.762673pt;}
.ws9b{word-spacing:13.786583pt;}
.ws231{word-spacing:13.811070pt;}
.wsbe{word-spacing:13.834403pt;}
.ws129{word-spacing:13.839185pt;}
.ws21c{word-spacing:13.883332pt;}
.ws24e{word-spacing:13.901397pt;}
.ws148{word-spacing:13.910916pt;}
.ws1e4{word-spacing:13.930044pt;}
.ws1e1{word-spacing:13.934826pt;}
.ws1fb{word-spacing:13.968300pt;}
.ws206{word-spacing:13.982646pt;}
.ws1bd{word-spacing:13.987428pt;}
.ws253{word-spacing:14.000757pt;}
.ws234{word-spacing:14.009790pt;}
.wsa{word-spacing:14.042943pt;}
.ws1f8{word-spacing:14.049594pt;}
.ws203{word-spacing:14.073504pt;}
.ws12f{word-spacing:14.078287pt;}
.ws233{word-spacing:14.091085pt;}
.ws9a{word-spacing:14.092633pt;}
.ws149{word-spacing:14.102197pt;}
.ws24d{word-spacing:14.122699pt;}
.ws23c{word-spacing:14.158830pt;}
.ws205{word-spacing:14.159581pt;}
.ws6c{word-spacing:14.164363pt;}
.ws14a{word-spacing:14.183491pt;}
.ws1d3{word-spacing:14.212183pt;}
.ws23b{word-spacing:14.226576pt;}
.ws1cd{word-spacing:14.269568pt;}
.ws130{word-spacing:14.274350pt;}
.ws6d{word-spacing:14.279132pt;}
.ws80{word-spacing:14.293478pt;}
.wsa3{word-spacing:14.298260pt;}
.ws21a{word-spacing:14.298838pt;}
.ws232{word-spacing:14.316903pt;}
.ws24c{word-spacing:14.330453pt;}
.ws128{word-spacing:14.365208pt;}
.ws26a{word-spacing:14.366584pt;}
.ws268{word-spacing:14.375616pt;}
.ws269{word-spacing:14.393682pt;}
.ws54{word-spacing:14.393900pt;}
.wsd8{word-spacing:14.413028pt;}
.ws152{word-spacing:14.499105pt;}
.ws27f{word-spacing:14.502075pt;}
.ws281{word-spacing:14.515624pt;}
.ws1c2{word-spacing:14.537361pt;}
.ws21b{word-spacing:14.551755pt;}
.wsfd{word-spacing:14.599527pt;}
.ws31{word-spacing:14.604309pt;}
.ws2e{word-spacing:14.637784pt;}
.ws91{word-spacing:14.680822pt;}
.ws280{word-spacing:14.696279pt;}
.ws1df{word-spacing:14.742988pt;}
.ws163{word-spacing:14.762116pt;}
.ws5e{word-spacing:14.764024pt;}
.ws155{word-spacing:14.776462pt;}
.ws276{word-spacing:14.795639pt;}
.ws29c{word-spacing:14.809188pt;}
.ws204{word-spacing:14.814719pt;}
.ws2b{word-spacing:14.831770pt;}
.ws283{word-spacing:14.836286pt;}
.ws28d{word-spacing:14.863385pt;}
.wseb{word-spacing:14.876654pt;}
.ws266{word-spacing:14.885967pt;}
.ws2c{word-spacing:14.890483pt;}
.wsee{word-spacing:14.891231pt;}
.ws158{word-spacing:14.900795pt;}
.ws215{word-spacing:14.908548pt;}
.ws14c{word-spacing:14.929487pt;}
.wsd4{word-spacing:14.931130pt;}
.ws222{word-spacing:14.935647pt;}
.ws23d{word-spacing:14.940163pt;}
.ws299{word-spacing:14.953712pt;}
.ws30{word-spacing:14.958179pt;}
.ws2aa{word-spacing:14.958228pt;}
.ws5c{word-spacing:14.967261pt;}
.ws216{word-spacing:14.971778pt;}
.ws2d{word-spacing:14.976294pt;}
.ws267{word-spacing:14.980810pt;}
.ws28c{word-spacing:14.985327pt;}
.ws2b0{word-spacing:15.030490pt;}
.ws277{word-spacing:15.039523pt;}
.ws22c{word-spacing:15.044040pt;}
.ws74{word-spacing:15.049038pt;}
.ws23e{word-spacing:15.062105pt;}
.ws92{word-spacing:15.068166pt;}
.ws223{word-spacing:15.075654pt;}
.ws26c{word-spacing:15.098236pt;}
.ws45{word-spacing:15.115986pt;}
.ws255{word-spacing:15.116302pt;}
.ws5b{word-spacing:15.120818pt;}
.ws150{word-spacing:15.135114pt;}
.ws151{word-spacing:15.144678pt;}
.ws160{word-spacing:15.159025pt;}
.ws1f4{word-spacing:15.187717pt;}
.ws27d{word-spacing:15.197596pt;}
.ws44{word-spacing:15.202063pt;}
.ws156{word-spacing:15.230755pt;}
.ws123{word-spacing:15.240319pt;}
.ws14b{word-spacing:15.245101pt;}
.ws1fc{word-spacing:15.259447pt;}
.ws261{word-spacing:15.269858pt;}
.wse1{word-spacing:15.283357pt;}
.wsd5{word-spacing:15.301473pt;}
.ws1e0{word-spacing:15.331177pt;}
.ws1fd{word-spacing:15.335960pt;}
.wsab{word-spacing:15.369434pt;}
.ws244{word-spacing:15.450513pt;}
.ws7e{word-spacing:15.474638pt;}
.wsa8{word-spacing:15.565497pt;}
.ws243{word-spacing:15.590521pt;}
.ws1d8{word-spacing:15.603753pt;}
.ws11f{word-spacing:15.613317pt;}
.ws3a{word-spacing:15.618099pt;}
.ws1c4{word-spacing:15.642009pt;}
.ws1ea{word-spacing:15.646791pt;}
.ws120{word-spacing:15.661137pt;}
.wsc4{word-spacing:15.680265pt;}
.ws247{word-spacing:15.685365pt;}
.wsb9{word-spacing:15.694612pt;}
.ws207{word-spacing:15.713740pt;}
.wscd{word-spacing:15.723304pt;}
.wscf{word-spacing:15.742432pt;}
.ws110{word-spacing:15.747214pt;}
.ws8d{word-spacing:15.751996pt;}
.ws143{word-spacing:15.766342pt;}
.ws27a{word-spacing:15.771176pt;}
.ws4d{word-spacing:15.775906pt;}
.ws136{word-spacing:15.785470pt;}
.ws6e{word-spacing:15.804598pt;}
.wsdc{word-spacing:15.814162pt;}
.ws289{word-spacing:15.825372pt;}
.ws13b{word-spacing:15.828508pt;}
.ws200{word-spacing:15.833290pt;}
.ws287{word-spacing:15.838921pt;}
.ws142{word-spacing:15.866764pt;}
.wsdb{word-spacing:15.871547pt;}
.wsfc{word-spacing:15.876329pt;}
.ws1ee{word-spacing:15.881111pt;}
.ws246{word-spacing:15.884085pt;}
.ws115{word-spacing:15.890675pt;}
.ws1c1{word-spacing:15.895457pt;}
.ws288{word-spacing:15.902151pt;}
.wsad{word-spacing:15.909803pt;}
.ws121{word-spacing:15.914585pt;}
.ws208{word-spacing:15.928931pt;}
.ws70{word-spacing:15.933713pt;}
.ws83{word-spacing:15.948059pt;}
.ws3c{word-spacing:15.952841pt;}
.ws126{word-spacing:16.015007pt;}
.wsc2{word-spacing:16.024571pt;}
.ws76{word-spacing:16.029353pt;}
.ws214{word-spacing:16.033125pt;}
.ws10d{word-spacing:16.168032pt;}
.ws20a{word-spacing:16.177596pt;}
.ws114{word-spacing:16.321057pt;}
.ws7c{word-spacing:16.464518pt;}
.wsea{word-spacing:16.493210pt;}
.ws22d{word-spacing:16.543476pt;}
.ws90{word-spacing:16.560158pt;}
.wsc{word-spacing:16.561788pt;}
.wsa2{word-spacing:16.603197pt;}
.ws11{word-spacing:16.606705pt;}
.ws8e{word-spacing:16.607218pt;}
.ws77{word-spacing:16.617314pt;}
.ws9{word-spacing:16.647600pt;}
.ws7f{word-spacing:16.677887pt;}
.ws8{word-spacing:16.703126pt;}
.ws1d6{word-spacing:16.713183pt;}
.wsb{word-spacing:16.773795pt;}
.ws7{word-spacing:16.814177pt;}
.wsdd{word-spacing:16.834369pt;}
.wsa1{word-spacing:16.856644pt;}
.ws1d2{word-spacing:16.918810pt;}
.wsc3{word-spacing:16.940372pt;}
.ws88{word-spacing:17.000105pt;}
.ws153{word-spacing:17.057489pt;}
.wsce{word-spacing:17.071615pt;}
.ws1bc{word-spacing:17.076617pt;}
.ws1eb{word-spacing:17.086181pt;}
.ws154{word-spacing:17.162694pt;}
.ws1dc{word-spacing:17.234424pt;}
.ws260{word-spacing:17.324808pt;}
.wsf8{word-spacing:17.349193pt;}
.wsef{word-spacing:17.411359pt;}
.wsca{word-spacing:17.420923pt;}
.ws9f{word-spacing:17.440051pt;}
.ws112{word-spacing:17.463961pt;}
.ws84{word-spacing:17.478307pt;}
.wsf0{word-spacing:17.487872pt;}
.ws2a4{word-spacing:17.519012pt;}
.ws85{word-spacing:17.530910pt;}
.ws12d{word-spacing:17.554820pt;}
.ws39{word-spacing:17.559602pt;}
.ws12c{word-spacing:17.616986pt;}
.ws1be{word-spacing:17.626550pt;}
.ws259{word-spacing:17.640954pt;}
.wsd0{word-spacing:17.674371pt;}
.ws257{word-spacing:17.690634pt;}
.ws9e{word-spacing:17.693499pt;}
.ws258{word-spacing:17.717733pt;}
.ws2a3{word-spacing:17.758380pt;}
.ws2a5{word-spacing:17.780962pt;}
.ws209{word-spacing:17.784357pt;}
.ws26b{word-spacing:17.821609pt;}
.ws2ac{word-spacing:17.839675pt;}
.ws2ad{word-spacing:17.857740pt;}
.ws13d{word-spacing:17.985202pt;}
.ws273{word-spacing:18.020330pt;}
.ws272{word-spacing:18.128723pt;}
.ws15a{word-spacing:18.214740pt;}
.wsb6{word-spacing:18.233868pt;}
.wsf5{word-spacing:18.243432pt;}
.wsaa{word-spacing:18.267342pt;}
.wsb5{word-spacing:18.286470pt;}
.ws274{word-spacing:18.295828pt;}
.ws17f{word-spacing:18.339182pt;}
.ws7b{word-spacing:18.343854pt;}
.ws297{word-spacing:18.363574pt;}
.wsac{word-spacing:18.391675pt;}
.ws12a{word-spacing:18.444277pt;}
.ws25d{word-spacing:18.444869pt;}
.ws29f{word-spacing:18.535196pt;}
.ws25f{word-spacing:18.548745pt;}
.ws201{word-spacing:18.582956pt;}
.wsd7{word-spacing:18.597302pt;}
.ws25e{word-spacing:18.625524pt;}
.ws1a7{word-spacing:18.625703pt;}
.ws38{word-spacing:18.831621pt;}
.ws237{word-spacing:18.860375pt;}
.ws89{word-spacing:18.884223pt;}
.ws37{word-spacing:18.903351pt;}
.ws9d{word-spacing:18.922480pt;}
.ws2a0{word-spacing:18.928121pt;}
.ws8a{word-spacing:18.932044pt;}
.ws1d5{word-spacing:18.998992pt;}
.ws236{word-spacing:19.063612pt;}
.wsc5{word-spacing:19.099415pt;}
.wsc9{word-spacing:19.300260pt;}
.ws3{word-spacing:19.345695pt;}
.ws5{word-spacing:19.431242pt;}
.ws4{word-spacing:19.437352pt;}
.ws67{word-spacing:19.486759pt;}
.ws2{word-spacing:19.559561pt;}
.wsfb{word-spacing:19.797590pt;}
.wsb1{word-spacing:19.893231pt;}
.wsb0{word-spacing:19.945833pt;}
.ws1e7{word-spacing:19.984089pt;}
.ws42{word-spacing:20.046256pt;}
.wsc8{word-spacing:20.113204pt;}
.ws1de{word-spacing:20.122768pt;}
.ws6{word-spacing:20.225601pt;}
.ws15c{word-spacing:20.290139pt;}
.ws4c{word-spacing:20.323613pt;}
.ws13a{word-spacing:20.328395pt;}
.ws75{word-spacing:20.471856pt;}
.wsbd{word-spacing:20.510112pt;}
.ws22a{word-spacing:20.540466pt;}
.wsc6{word-spacing:20.653573pt;}
.ws1d4{word-spacing:20.758778pt;}
.wscc{word-spacing:20.787470pt;}
.wsc7{word-spacing:20.863982pt;}
.ws49{word-spacing:20.930931pt;}
.ws104{word-spacing:21.007443pt;}
.ws1ec{word-spacing:21.165250pt;}
.ws25b{word-spacing:21.258569pt;}
.ws147{word-spacing:21.308711pt;}
.ws146{word-spacing:21.318275pt;}
.ws1ca{word-spacing:21.346967pt;}
.ws14d{word-spacing:21.394787pt;}
.ws25c{word-spacing:21.403093pt;}
.ws13c{word-spacing:21.466518pt;}
.ws1da{word-spacing:21.519120pt;}
.ws131{word-spacing:21.523902pt;}
.wsb4{word-spacing:21.729529pt;}
.ws125{word-spacing:21.796478pt;}
.ws2a6{word-spacing:21.818600pt;}
.wscb{word-spacing:21.916028pt;}
.ws1f0{word-spacing:21.939938pt;}
.wsff{word-spacing:21.982977pt;}
.ws100{word-spacing:22.021233pt;}
.ws1f5{word-spacing:22.097745pt;}
.ws1dd{word-spacing:22.150348pt;}
.ws1cf{word-spacing:22.217296pt;}
.ws113{word-spacing:22.279462pt;}
.ws1c0{word-spacing:22.298590pt;}
.ws2ae{word-spacing:22.301852pt;}
.ws161{word-spacing:22.303372pt;}
.ws298{word-spacing:22.347015pt;}
.ws69{word-spacing:22.518564pt;}
.ws211{word-spacing:22.667678pt;}
.ws213{word-spacing:22.780587pt;}
.ws134{word-spacing:22.786357pt;}
.ws229{word-spacing:22.794136pt;}
.ws228{word-spacing:22.839300pt;}
.wsf6{word-spacing:22.848523pt;}
.ws212{word-spacing:22.857365pt;}
.ws1a{word-spacing:22.988340pt;}
.ws1fa{word-spacing:22.991984pt;}
.ws36{word-spacing:23.001548pt;}
.ws64{word-spacing:23.121099pt;}
.ws106{word-spacing:23.245432pt;}
.wsa5{word-spacing:23.302816pt;}
.ws250{word-spacing:23.318036pt;}
.ws51{word-spacing:23.345854pt;}
.ws252{word-spacing:23.385781pt;}
.ws55{word-spacing:23.436713pt;}
.ws251{word-spacing:23.462559pt;}
.ws65{word-spacing:23.479751pt;}
.wsa4{word-spacing:23.508443pt;}
.ws162{word-spacing:23.575391pt;}
.wsda{word-spacing:23.728416pt;}
.ws263{word-spacing:23.765156pt;}
.ws262{word-spacing:23.778706pt;}
.ws1c9{word-spacing:23.953172pt;}
.ws35{word-spacing:24.158799pt;}
.ws103{word-spacing:24.335734pt;}
.ws2a7{word-spacing:24.505842pt;}
.ws10a{word-spacing:24.699168pt;}
.ws293{word-spacing:24.718111pt;}
.ws105{word-spacing:24.799590pt;}
.wsde{word-spacing:25.196499pt;}
.wsbb{word-spacing:25.301703pt;}
.ws63{word-spacing:25.426036pt;}
.ws11b{word-spacing:25.469074pt;}
.ws1fe{word-spacing:25.622099pt;}
.ws46{word-spacing:25.698611pt;}
.ws264{word-spacing:25.802041pt;}
.ws8b{word-spacing:25.846854pt;}
.ws127{word-spacing:26.004661pt;}
.ws1f6{word-spacing:26.057263pt;}
.ws32{word-spacing:26.148122pt;}
.ws33{word-spacing:26.195942pt;}
.ws29b{word-spacing:26.244645pt;}
.wsd9{word-spacing:26.492428pt;}
.ws1{word-spacing:26.564454pt;}
.ws1cb{word-spacing:26.592850pt;}
.wsf4{word-spacing:26.611978pt;}
.wsaf{word-spacing:26.698055pt;}
.wsf3{word-spacing:26.760221pt;}
.ws202{word-spacing:26.765003pt;}
.ws0{word-spacing:26.779648pt;}
.ws2a8{word-spacing:26.845323pt;}
.ws2a9{word-spacing:26.931134pt;}
.wsb8{word-spacing:27.138001pt;}
.ws140{word-spacing:27.166693pt;}
.ws13f{word-spacing:27.190604pt;}
.ws13e{word-spacing:27.281462pt;}
.ws15d{word-spacing:27.463179pt;}
.ws11d{word-spacing:27.659242pt;}
.ws2a2{word-spacing:27.793761pt;}
.wsae{word-spacing:27.823400pt;}
.ws6a{word-spacing:27.860087pt;}
.ws12b{word-spacing:27.874433pt;}
.ws119{word-spacing:27.888780pt;}
.ws11a{word-spacing:27.903126pt;}
.ws271{word-spacing:27.933769pt;}
.ws270{word-spacing:27.956351pt;}
.ws1ed{word-spacing:27.960510pt;}
.ws245{word-spacing:28.006031pt;}
.ws71{word-spacing:28.046586pt;}
.ws2a1{word-spacing:28.082809pt;}
.ws285{word-spacing:28.100875pt;}
.ws6b{word-spacing:28.113535pt;}
.ws3f{word-spacing:28.123099pt;}
.ws217{word-spacing:28.137006pt;}
.ws219{word-spacing:28.222817pt;}
.ws218{word-spacing:28.299595pt;}
.ws14e{word-spacing:28.300034pt;}
.ws72{word-spacing:28.457841pt;}
.ws12e{word-spacing:28.567827pt;}
.ws1f1{word-spacing:28.625212pt;}
.ws1ce{word-spacing:28.711288pt;}
.wsbc{word-spacing:28.725634pt;}
.ws1f3{word-spacing:28.864313pt;}
.ws227{word-spacing:29.017699pt;}
.ws78{word-spacing:29.098632pt;}
.wse3{word-spacing:29.189491pt;}
.ws62{word-spacing:29.328170pt;}
.ws135{word-spacing:29.935487pt;}
.ws1bb{word-spacing:30.442382pt;}
.ws286{word-spacing:30.449389pt;}
.wse2{word-spacing:30.753213pt;}
.ws224{word-spacing:30.991354pt;}
.ws226{word-spacing:30.995870pt;}
.ws225{word-spacing:31.022968pt;}
.ws28a{word-spacing:31.321049pt;}
.wsd2{word-spacing:31.503992pt;}
.ws81{word-spacing:31.891336pt;}
.wse8{word-spacing:32.001322pt;}
.ws10e{word-spacing:32.077835pt;}
.ws11c{word-spacing:32.116091pt;}
.ws82{word-spacing:32.140001pt;}
.ws34{word-spacing:32.154347pt;}
.ws99{word-spacing:32.422141pt;}
.ws10f{word-spacing:32.503435pt;}
.wse0{word-spacing:33.043804pt;}
.ws52{word-spacing:33.211175pt;}
.ws53{word-spacing:33.402456pt;}
.ws1d1{word-spacing:33.689378pt;}
.ws22b{word-spacing:34.003775pt;}
.ws2af{word-spacing:34.026357pt;}
.ws3e{word-spacing:34.468848pt;}
.ws79{word-spacing:34.607527pt;}
.wse9{word-spacing:35.626099pt;}
.wsf7{word-spacing:35.721739pt;}
.ws26f{word-spacing:36.496813pt;}
.ws50{word-spacing:36.558594pt;}
.ws4f{word-spacing:36.687709pt;}
.ws1e5{word-spacing:36.740311pt;}
.ws1c8{word-spacing:37.189821pt;}
.ws27b{word-spacing:37.260080pt;}
.ws1c7{word-spacing:37.333282pt;}
.ws1c6{word-spacing:37.347628pt;}
.ws27c{word-spacing:37.512997pt;}
.ws107{word-spacing:37.873651pt;}
.ws29d{word-spacing:40.191206pt;}
.ws117{word-spacing:40.465510pt;}
.ws116{word-spacing:40.527676pt;}
.ws1e3{word-spacing:40.962840pt;}
.ws133{word-spacing:41.091955pt;}
.wsa9{word-spacing:41.531902pt;}
.ws97{word-spacing:42.699227pt;}
.ws47{word-spacing:42.770447pt;}
.ws48{word-spacing:42.837395pt;}
.ws11e{word-spacing:43.655121pt;}
.ws1d7{word-spacing:43.769890pt;}
.ws256{word-spacing:44.486277pt;}
.ws210{word-spacing:44.694031pt;}
.ws27e{word-spacing:44.788874pt;}
.ws254{word-spacing:45.674084pt;}
.wsf9{word-spacing:47.394666pt;}
.wsfa{word-spacing:47.547691pt;}
.wsec{word-spacing:54.562924pt;}
.wsed{word-spacing:54.797244pt;}
.ws265{word-spacing:55.190082pt;}
.ws124{word-spacing:55.624534pt;}
.wsd3{word-spacing:56.384876pt;}
.ws16f{word-spacing:130.718643pt;}
.ws176{word-spacing:130.726613pt;}
.ws173{word-spacing:130.730598pt;}
.ws174{word-spacing:137.369541pt;}
.ws171{word-spacing:137.381496pt;}
.ws178{word-spacing:137.405406pt;}
.ws16d{word-spacing:137.672398pt;}
.ws170{word-spacing:137.684353pt;}
.ws16c{word-spacing:150.858631pt;}
.ws179{word-spacing:164.283961pt;}
.ws192{word-spacing:206.982807pt;}
.ws195{word-spacing:206.986792pt;}
.ws194{word-spacing:206.998747pt;}
.ws191{word-spacing:207.098371pt;}
.ws1aa{word-spacing:225.054601pt;}
.ws1b0{word-spacing:225.066556pt;}
.ws196{word-spacing:228.995726pt;}
.ws18e{word-spacing:233.897227pt;}
.ws18b{word-spacing:234.200084pt;}
.ws18f{word-spacing:234.212039pt;}
.ws199{word-spacing:247.011731pt;}
.ws1ad{word-spacing:247.127294pt;}
.ws1a9{word-spacing:251.976991pt;}
.ws18d{word-spacing:261.110519pt;}
.ws18a{word-spacing:335.987917pt;}
.ws198{word-spacing:375.897292pt;}
.ws1b2{word-spacing:555.997559pt;}
.ws1ac{word-spacing:580.222131pt;}
.ws5d{word-spacing:1112.929233pt;}
._23{margin-left:-16.287583pt;}
._22{margin-left:-15.259447pt;}
._32{margin-left:-14.248907pt;}
._33{margin-left:-11.771699pt;}
._14{margin-left:-9.645348pt;}
._25{margin-left:-2.909021pt;}
._17{margin-left:-1.927157pt;}
._16{margin-left:-0.894239pt;}
._0{width:0.932506pt;}
._21{width:1.826724pt;}
._13{width:6.272946pt;}
._30{width:7.777249pt;}
._10{width:9.535361pt;}
._19{width:10.477420pt;}
._4{width:11.950324pt;}
._3{width:13.060591pt;}
._7{width:14.109150pt;}
._2{width:15.188790pt;}
._8{width:16.114193pt;}
._1{width:17.606680pt;}
._a{width:18.654686pt;}
._d{width:19.558489pt;}
._e{width:20.639227pt;}
._6{width:22.527670pt;}
._5{width:24.018073pt;}
._1c{width:24.962179pt;}
._18{width:25.856418pt;}
._f{width:26.999323pt;}
._c{width:28.500869pt;}
._15{width:29.567271pt;}
._1d{width:32.077835pt;}
._9{width:33.168137pt;}
._12{width:34.268003pt;}
._b{width:35.458728pt;}
._11{width:37.553255pt;}
._1e{width:38.834839pt;}
._1f{width:41.560594pt;}
._20{width:44.630655pt;}
._31{width:46.265728pt;}
._1a{width:57.771664pt;}
._27{width:190.762143pt;}
._26{width:204.366796pt;}
._2c{width:252.828208pt;}
._2d{width:256.818717pt;}
._2b{width:311.705679pt;}
._29{width:323.800032pt;}
._2e{width:356.893018pt;}
._2f{width:407.143338pt;}
._2a{width:595.556257pt;}
._24{width:899.914258pt;}
._28{width:983.727226pt;}
._1b{width:1106.019182pt;}
.fsb{font-size:26.562667pt;}
.fs7{font-size:30.106133pt;}
.fs9{font-size:31.876267pt;}
.fsa{font-size:32.000000pt;}
.fs3{font-size:33.648533pt;}
.fsc{font-size:34.537067pt;}
.fs5{font-size:39.849600pt;}
.fs2{font-size:40.731200pt;}
.fs6{font-size:45.163733pt;}
.fs8{font-size:47.820267pt;}
.fs4{font-size:50.477867pt;}
.fs1{font-size:61.104533pt;}
.fs0{font-size:79.701333pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:21.132813pt;}
.y51{bottom:31.699219pt;}
.y4c{bottom:89.121200pt;}
.y142{bottom:89.121522pt;}
.yc7{bottom:89.122167pt;}
.y88{bottom:89.122355pt;}
.y106{bottom:89.131363pt;}
.y1e8{bottom:89.195404pt;}
.y1b3{bottom:89.199504pt;}
.y145{bottom:89.273044pt;}
.y148{bottom:89.274240pt;}
.y1e7{bottom:102.499511pt;}
.y141{bottom:104.390533pt;}
.yc6{bottom:104.391178pt;}
.y87{bottom:104.391367pt;}
.y105{bottom:104.400375pt;}
.y144{bottom:104.542056pt;}
.y147{bottom:104.543251pt;}
.y1b2{bottom:104.545027pt;}
.y4d{bottom:109.001600pt;}
.y1e6{bottom:115.803618pt;}
.y140{bottom:119.659867pt;}
.yc5{bottom:119.660189pt;}
.y86{bottom:119.660378pt;}
.y13e{bottom:119.661533pt;}
.y104{bottom:119.669386pt;}
.y143{bottom:119.811067pt;}
.y146{bottom:119.812262pt;}
.y1b1{bottom:119.814038pt;}
.y13f{bottom:124.951200pt;}
.y1e5{bottom:129.107725pt;}
.yc4{bottom:134.929200pt;}
.y85{bottom:134.929389pt;}
.y13d{bottom:134.930544pt;}
.y103{bottom:134.938397pt;}
.y1b0{bottom:135.083049pt;}
.yc3{bottom:140.220533pt;}
.y1e4{bottom:142.336182pt;}
.y3e{bottom:148.989256pt;}
.y4b{bottom:148.990198pt;}
.y84{bottom:150.198400pt;}
.y13c{bottom:150.199555pt;}
.y102{bottom:150.207408pt;}
.y1af{bottom:150.352061pt;}
.y1e3{bottom:155.640289pt;}
.y3d{bottom:164.258267pt;}
.y3b{bottom:164.258376pt;}
.y4a{bottom:164.259210pt;}
.y13b{bottom:165.468567pt;}
.y101{bottom:165.476419pt;}
.y1ae{bottom:165.621072pt;}
.y17f{bottom:167.888069pt;}
.y1e2{bottom:168.944396pt;}
.y3c{bottom:169.625200pt;}
.yc2{bottom:172.799867pt;}
.y17e{bottom:178.470226pt;}
.y3a{bottom:179.527387pt;}
.y49{bottom:179.528221pt;}
.y13a{bottom:180.737578pt;}
.y100{bottom:180.745430pt;}
.y1ad{bottom:180.890083pt;}
.y1e1{bottom:182.248502pt;}
.y83{bottom:185.877067pt;}
.y81{bottom:185.878222pt;}
.y17d{bottom:189.128365pt;}
.y82{bottom:191.168400pt;}
.y39{bottom:194.872911pt;}
.y48{bottom:194.873744pt;}
.y1e0{bottom:195.476960pt;}
.y139{bottom:196.006589pt;}
.yff{bottom:196.014442pt;}
.y1ac{bottom:196.159094pt;}
.y17c{bottom:199.786504pt;}
.y80{bottom:201.147233pt;}
.y1df{bottom:208.781067pt;}
.y38{bottom:210.141922pt;}
.y47{bottom:210.142755pt;}
.yc1{bottom:210.292933pt;}
.ybf{bottom:210.293876pt;}
.y17b{bottom:210.368661pt;}
.y138{bottom:211.275600pt;}
.y136{bottom:211.277227pt;}
.yfe{bottom:211.283453pt;}
.y1ab{bottom:211.428105pt;}
.yc0{bottom:215.659733pt;}
.y7f{bottom:216.416244pt;}
.y137{bottom:216.642533pt;}
.y17a{bottom:221.026800pt;}
.y37{bottom:225.410933pt;}
.y35{bottom:225.411578pt;}
.y46{bottom:225.411767pt;}
.ybe{bottom:225.562887pt;}
.y135{bottom:226.621555pt;}
.yfd{bottom:226.627781pt;}
.y1aa{bottom:226.697116pt;}
.y1de{bottom:230.022000pt;}
.y36{bottom:230.702400pt;}
.y7e{bottom:231.685256pt;}
.y34{bottom:240.680589pt;}
.y45{bottom:240.680778pt;}
.ybd{bottom:240.831899pt;}
.y134{bottom:241.890567pt;}
.yfc{bottom:241.896792pt;}
.y1a9{bottom:241.966127pt;}
.y179{bottom:242.948408pt;}
.y7d{bottom:246.954267pt;}
.y178{bottom:254.894527pt;}
.y33{bottom:255.949600pt;}
.y44{bottom:255.949789pt;}
.y31{bottom:255.950111pt;}
.ybc{bottom:256.100910pt;}
.y133{bottom:257.159578pt;}
.yfb{bottom:257.165803pt;}
.y1a8{bottom:257.235139pt;}
.y32{bottom:261.240933pt;}
.y177{bottom:266.837452pt;}
.y7c{bottom:269.555867pt;}
.y1dd{bottom:269.858739pt;}
.y43{bottom:271.218800pt;}
.y30{bottom:271.219122pt;}
.ybb{bottom:271.446433pt;}
.y132{bottom:272.428589pt;}
.yfa{bottom:272.434814pt;}
.y1a7{bottom:272.579467pt;}
.y1a5{bottom:272.580300pt;}
.y42{bottom:276.510133pt;}
.y1a6{bottom:277.870800pt;}
.y176{bottom:278.780377pt;}
.y1dc{bottom:285.203067pt;}
.y2f{bottom:286.488133pt;}
.y41{bottom:286.488565pt;}
.y2d{bottom:286.488778pt;}
.yba{bottom:286.715444pt;}
.y131{bottom:287.697600pt;}
.yf9{bottom:287.703825pt;}
.y1a4{bottom:287.849311pt;}
.y175{bottom:290.723302pt;}
.y2e{bottom:291.779467pt;}
.y24d{bottom:295.102485pt;}
.y21a{bottom:295.104178pt;}
.y40{bottom:301.757576pt;}
.y2c{bottom:301.757789pt;}
.yb9{bottom:301.984456pt;}
.y174{bottom:302.741942pt;}
.yf8{bottom:302.972836pt;}
.y1a3{bottom:303.118322pt;}
.y1db{bottom:307.729067pt;}
.y24c{bottom:308.406591pt;}
.y219{bottom:308.408285pt;}
.y130{bottom:310.299200pt;}
.y7b{bottom:311.510254pt;}
.y29{bottom:317.026587pt;}
.y2b{bottom:317.026800pt;}
.yb8{bottom:317.253467pt;}
.yb6{bottom:317.254111pt;}
.yf7{bottom:318.241848pt;}
.y1a2{bottom:318.387333pt;}
.y1a0{bottom:318.389243pt;}
.y24b{bottom:321.710698pt;}
.y218{bottom:321.712391pt;}
.y2a{bottom:322.393600pt;}
.yb7{bottom:322.544800pt;}
.y173{bottom:323.378057pt;}
.y1a1{bottom:323.678667pt;}
.y7a{bottom:326.779265pt;}
.y28{bottom:332.295599pt;}
.yb5{bottom:332.523122pt;}
.yf6{bottom:333.510859pt;}
.y19f{bottom:333.658254pt;}
.y24a{bottom:335.014805pt;}
.y217{bottom:335.016498pt;}
.y79{bottom:342.048276pt;}
.y172{bottom:347.037761pt;}
.y27{bottom:347.564610pt;}
.yb4{bottom:347.792133pt;}
.y249{bottom:348.243262pt;}
.y216{bottom:348.244956pt;}
.yf5{bottom:348.779870pt;}
.y19e{bottom:348.927265pt;}
.y1da{bottom:348.928287pt;}
.y12f{bottom:356.260043pt;}
.y78{bottom:357.317287pt;}
.y248{bottom:361.547369pt;}
.y215{bottom:361.549062pt;}
.y25{bottom:362.910133pt;}
.y3f{bottom:362.910827pt;}
.yf4{bottom:364.048881pt;}
.y19d{bottom:364.196276pt;}
.y1d9{bottom:364.197298pt;}
.y26{bottom:368.201467pt;}
.yb3{bottom:370.393600pt;}
.y12e{bottom:371.529054pt;}
.y77{bottom:372.586299pt;}
.y171{bottom:373.493910pt;}
.y247{bottom:374.851476pt;}
.y214{bottom:374.853169pt;}
.yf3{bottom:379.317892pt;}
.y19c{bottom:379.465287pt;}
.y1d8{bottom:379.466309pt;}
.y170{bottom:385.436836pt;}
.y12d{bottom:386.798065pt;}
.y76{bottom:387.855310pt;}
.y246{bottom:388.079933pt;}
.y213{bottom:388.081627pt;}
.yf2{bottom:394.662220pt;}
.y19b{bottom:394.734299pt;}
.y1d7{bottom:394.735321pt;}
.y16f{bottom:397.379761pt;}
.y212{bottom:401.379125pt;}
.y245{bottom:401.384040pt;}
.y12c{bottom:402.067076pt;}
.y75{bottom:403.124321pt;}
.yb2{bottom:407.887044pt;}
.y16e{bottom:409.398400pt;}
.yf1{bottom:409.931231pt;}
.y19a{bottom:410.003310pt;}
.y1d6{bottom:410.004332pt;}
.y211{bottom:414.683232pt;}
.y244{bottom:414.688147pt;}
.y12b{bottom:417.336087pt;}
.y74{bottom:418.393332pt;}
.y24{bottom:419.300375pt;}
.yb1{bottom:423.156056pt;}
.yf0{bottom:425.200243pt;}
.y199{bottom:425.272321pt;}
.y1d5{bottom:425.273343pt;}
.y210{bottom:427.987339pt;}
.y243{bottom:427.992254pt;}
.y12a{bottom:432.605099pt;}
.y73{bottom:433.662343pt;}
.yb0{bottom:438.425067pt;}
.yae{bottom:438.425821pt;}
.yef{bottom:440.469254pt;}
.y198{bottom:440.617844pt;}
.y1d4{bottom:440.618866pt;}
.y20f{bottom:441.215796pt;}
.y242{bottom:441.220711pt;}
.y157{bottom:442.810000pt;}
.yaf{bottom:443.792000pt;}
.y129{bottom:447.874110pt;}
.y23{bottom:448.554054pt;}
.y72{bottom:449.007867pt;}
.y70{bottom:449.008056pt;}
.y156{bottom:453.468139pt;}
.yad{bottom:453.694832pt;}
.y71{bottom:454.299200pt;}
.y20e{bottom:454.519903pt;}
.y241{bottom:454.524818pt;}
.yee{bottom:455.738265pt;}
.y197{bottom:455.886856pt;}
.y1d3{bottom:455.887878pt;}
.y22{bottom:463.143069pt;}
.y128{bottom:463.143121pt;}
.y155{bottom:464.126278pt;}
.y6f{bottom:464.277067pt;}
.y20d{bottom:467.824010pt;}
.y240{bottom:467.828925pt;}
.yac{bottom:469.040355pt;}
.yed{bottom:471.007276pt;}
.y196{bottom:471.155867pt;}
.y194{bottom:471.156378pt;}
.y1d2{bottom:471.156889pt;}
.y154{bottom:474.708435pt;}
.y195{bottom:476.447200pt;}
.y1f{bottom:477.807300pt;}
.y21{bottom:477.807733pt;}
.y127{bottom:478.412132pt;}
.y20c{bottom:481.128116pt;}
.y23f{bottom:481.133031pt;}
.y20{bottom:482.796800pt;}
.yab{bottom:484.309367pt;}
.y153{bottom:485.366574pt;}
.yec{bottom:486.276287pt;}
.y193{bottom:486.425389pt;}
.y1d1{bottom:486.425900pt;}
.y6e{bottom:486.803067pt;}
.y1e{bottom:492.396315pt;}
.y126{bottom:493.681143pt;}
.y20b{bottom:494.356574pt;}
.y23e{bottom:494.361489pt;}
.y152{bottom:495.949595pt;}
.yaa{bottom:499.578378pt;}
.yeb{bottom:501.545298pt;}
.y192{bottom:501.694400pt;}
.y1d0{bottom:501.694911pt;}
.y190{bottom:501.696498pt;}
.y151{bottom:506.607733pt;}
.y1d{bottom:506.985330pt;}
.y191{bottom:506.985733pt;}
.y20a{bottom:507.660681pt;}
.y23d{bottom:507.665596pt;}
.y125{bottom:509.026667pt;}
.y123{bottom:509.032663pt;}
.y124{bottom:514.318000pt;}
.ya9{bottom:514.847389pt;}
.yea{bottom:516.814309pt;}
.y1cf{bottom:516.963922pt;}
.y18f{bottom:516.965509pt;}
.y209{bottom:520.964787pt;}
.y23c{bottom:520.969702pt;}
.y1c{bottom:521.649994pt;}
.y122{bottom:524.301674pt;}
.y150{bottom:528.529067pt;}
.y14e{bottom:528.530467pt;}
.y6d{bottom:528.832167pt;}
.ya8{bottom:530.116400pt;}
.ye9{bottom:532.083321pt;}
.y1ce{bottom:532.232933pt;}
.y18e{bottom:532.234521pt;}
.y14f{bottom:532.913333pt;}
.y208{bottom:534.193245pt;}
.y23b{bottom:534.198160pt;}
.y1b{bottom:536.239009pt;}
.y121{bottom:539.570685pt;}
.y14d{bottom:540.473392pt;}
.y6c{bottom:544.101178pt;}
.ye8{bottom:547.352332pt;}
.y23a{bottom:547.494927pt;}
.y207{bottom:547.497352pt;}
.y18d{bottom:547.503532pt;}
.y1a{bottom:550.828024pt;}
.ya7{bottom:552.718000pt;}
.y1cd{bottom:554.834533pt;}
.y120{bottom:554.839696pt;}
.y6b{bottom:559.370189pt;}
.y239{bottom:560.799034pt;}
.y206{bottom:560.801458pt;}
.y14c{bottom:561.109507pt;}
.ye7{bottom:562.697855pt;}
.y18c{bottom:562.772543pt;}
.y19{bottom:565.417039pt;}
.y11f{bottom:570.108708pt;}
.y238{bottom:574.103141pt;}
.y205{bottom:574.105565pt;}
.y6a{bottom:574.639200pt;}
.y68{bottom:574.639844pt;}
.ye6{bottom:577.966866pt;}
.y18b{bottom:578.041554pt;}
.y69{bottom:579.930533pt;}
.y18{bottom:580.081703pt;}
.y14b{bottom:584.769211pt;}
.y11e{bottom:585.377719pt;}
.y237{bottom:587.331598pt;}
.y204{bottom:587.334023pt;}
.y67{bottom:589.908856pt;}
.ya6{bottom:590.211767pt;}
.ye5{bottom:593.235878pt;}
.y18a{bottom:593.310565pt;}
.y1cc{bottom:593.319559pt;}
.y17{bottom:594.670718pt;}
.y236{bottom:600.635705pt;}
.y203{bottom:600.638129pt;}
.y11d{bottom:600.646730pt;}
.y66{bottom:605.177867pt;}
.ya5{bottom:605.480778pt;}
.ye4{bottom:608.504889pt;}
.y189{bottom:608.656089pt;}
.y1cb{bottom:608.665083pt;}
.y16{bottom:609.259733pt;}
.y14a{bottom:611.301075pt;}
.y235{bottom:613.939812pt;}
.y202{bottom:613.942236pt;}
.y11c{bottom:615.915741pt;}
.ya4{bottom:620.749789pt;}
.y149{bottom:623.244000pt;}
.ye3{bottom:623.773900pt;}
.y188{bottom:623.925100pt;}
.y1ca{bottom:623.934094pt;}
.y234{bottom:627.243918pt;}
.y201{bottom:627.246343pt;}
.y65{bottom:627.779467pt;}
.y11b{bottom:631.184752pt;}
.ya3{bottom:636.018800pt;}
.ya1{bottom:636.018910pt;}
.ye2{bottom:639.042911pt;}
.y187{bottom:639.194111pt;}
.y1c9{bottom:639.203105pt;}
.y233{bottom:640.472376pt;}
.y200{bottom:640.474800pt;}
.ya2{bottom:641.385733pt;}
.y11a{bottom:646.453763pt;}
.ya0{bottom:651.287921pt;}
.y232{bottom:653.776483pt;}
.y1ff{bottom:653.778907pt;}
.ye1{bottom:654.311922pt;}
.y186{bottom:654.463122pt;}
.y1c8{bottom:654.472116pt;}
.y16d{bottom:660.662992pt;}
.y119{bottom:661.722775pt;}
.y15{bottom:662.399867pt;}
.y9f{bottom:666.556932pt;}
.y231{bottom:667.080589pt;}
.y1fe{bottom:667.083014pt;}
.ye0{bottom:669.580933pt;}
.yde{bottom:669.581578pt;}
.y185{bottom:669.732133pt;}
.y183{bottom:669.732456pt;}
.y64{bottom:669.735709pt;}
.y1c7{bottom:669.741127pt;}
.y16c{bottom:671.321130pt;}
.ydf{bottom:674.872267pt;}
.y184{bottom:675.023467pt;}
.y118{bottom:677.068298pt;}
.y230{bottom:680.309047pt;}
.y1fd{bottom:680.311471pt;}
.y9e{bottom:681.902456pt;}
.y16b{bottom:681.979269pt;}
.ydd{bottom:684.850589pt;}
.y182{bottom:685.001467pt;}
.y63{bottom:685.004720pt;}
.y1c6{bottom:685.010139pt;}
.y14{bottom:686.362000pt;}
.y181{bottom:690.292800pt;}
.y13{bottom:691.955733pt;}
.y117{bottom:692.337309pt;}
.y16a{bottom:692.561426pt;}
.y22f{bottom:693.613153pt;}
.y1fc{bottom:693.615578pt;}
.y9d{bottom:697.171467pt;}
.y9b{bottom:697.171789pt;}
.ydb{bottom:698.154133pt;}
.yda{bottom:700.119521pt;}
.ydc{bottom:700.119600pt;}
.y62{bottom:700.273732pt;}
.y1c5{bottom:700.279150pt;}
.y12{bottom:702.235989pt;}
.y9c{bottom:702.462933pt;}
.y169{bottom:703.219565pt;}
.y22e{bottom:706.917260pt;}
.y1fb{bottom:706.919685pt;}
.y116{bottom:707.606320pt;}
.y9a{bottom:712.440800pt;}
.y168{bottom:713.801722pt;}
.yd9{bottom:715.388532pt;}
.y61{bottom:715.542743pt;}
.y1c4{bottom:715.548161pt;}
.y11{bottom:718.185733pt;}
.y22d{bottom:720.221367pt;}
.y1fa{bottom:720.223791pt;}
.y115{bottom:722.875332pt;}
.y10{bottom:723.854933pt;}
.y167{bottom:724.459861pt;}
.yd8{bottom:730.734056pt;}
.y60{bottom:730.811754pt;}
.y1c3{bottom:730.817172pt;}
.y22c{bottom:733.449824pt;}
.y1f9{bottom:733.452249pt;}
.yf{bottom:734.135200pt;}
.y166{bottom:735.118000pt;}
.y114{bottom:738.144343pt;}
.ye{bottom:739.729067pt;}
.yd6{bottom:743.962133pt;}
.yd7{bottom:746.003067pt;}
.yd5{bottom:746.004411pt;}
.y5f{bottom:746.080765pt;}
.y99{bottom:746.080954pt;}
.y1c2{bottom:746.086183pt;}
.y22b{bottom:746.753931pt;}
.y1f8{bottom:746.756356pt;}
.yd{bottom:750.084933pt;}
.y113{bottom:753.413354pt;}
.yc{bottom:755.678533pt;}
.y165{bottom:756.964710pt;}
.y22a{bottom:760.058038pt;}
.y1f7{bottom:760.060462pt;}
.yd4{bottom:761.273422pt;}
.y5e{bottom:761.349776pt;}
.y98{bottom:761.349965pt;}
.y1c1{bottom:761.355194pt;}
.yb{bottom:766.034533pt;}
.y112{bottom:768.682365pt;}
.y164{bottom:768.983350pt;}
.ya{bottom:771.628133pt;}
.y229{bottom:773.362145pt;}
.y1f6{bottom:773.364569pt;}
.yd3{bottom:776.542433pt;}
.y5d{bottom:776.695300pt;}
.y97{bottom:776.695489pt;}
.y1c0{bottom:776.700718pt;}
.y163{bottom:780.926275pt;}
.y9{bottom:781.983989pt;}
.y111{bottom:783.951376pt;}
.y228{bottom:786.590602pt;}
.y1f5{bottom:786.593027pt;}
.yd2{bottom:791.811444pt;}
.y5c{bottom:791.964311pt;}
.y96{bottom:791.964500pt;}
.y1bf{bottom:791.969729pt;}
.y162{bottom:792.872669pt;}
.y8{bottom:797.933733pt;}
.y110{bottom:799.220387pt;}
.y227{bottom:799.894709pt;}
.y1f4{bottom:799.897133pt;}
.y7{bottom:803.527333pt;}
.y161{bottom:804.815594pt;}
.yd1{bottom:807.080456pt;}
.y5b{bottom:807.233322pt;}
.y95{bottom:807.233511pt;}
.y1be{bottom:807.238740pt;}
.y226{bottom:813.198816pt;}
.y1f3{bottom:813.201240pt;}
.y10f{bottom:814.489398pt;}
.y160{bottom:816.758519pt;}
.y5{bottom:817.814000pt;}
.yd0{bottom:822.349467pt;}
.y5a{bottom:822.502333pt;}
.y94{bottom:822.502522pt;}
.y1bd{bottom:822.507751pt;}
.y6{bottom:824.617067pt;}
.y225{bottom:826.502922pt;}
.y1f2{bottom:826.505347pt;}
.y15f{bottom:828.701444pt;}
.y10e{bottom:829.758410pt;}
.y3{bottom:836.409200pt;}
.y59{bottom:837.771344pt;}
.y93{bottom:837.771533pt;}
.y1bc{bottom:837.776762pt;}
.y224{bottom:839.731380pt;}
.y1f1{bottom:839.733804pt;}
.y15e{bottom:840.720083pt;}
.y4{bottom:843.212400pt;}
.ycf{bottom:844.951067pt;}
.y10d{bottom:845.103933pt;}
.y15d{bottom:852.663009pt;}
.y223{bottom:853.035487pt;}
.y1f0{bottom:853.037911pt;}
.y58{bottom:853.040355pt;}
.y92{bottom:853.040544pt;}
.y1bb{bottom:853.045774pt;}
.y10c{bottom:860.372944pt;}
.y15c{bottom:864.605934pt;}
.y222{bottom:866.339593pt;}
.y1ef{bottom:866.342018pt;}
.y57{bottom:868.309367pt;}
.y91{bottom:868.309555pt;}
.y1ba{bottom:868.314785pt;}
.y10b{bottom:875.641955pt;}
.y221{bottom:879.568051pt;}
.y1ee{bottom:879.570475pt;}
.yce{bottom:883.578299pt;}
.y56{bottom:883.578378pt;}
.y90{bottom:883.578567pt;}
.y1b9{bottom:883.583796pt;}
.y15b{bottom:885.242049pt;}
.y2{bottom:888.264577pt;}
.y10a{bottom:890.910967pt;}
.y220{bottom:892.872158pt;}
.y1ed{bottom:892.874582pt;}
.ycd{bottom:898.847310pt;}
.y55{bottom:898.847389pt;}
.y8f{bottom:898.847578pt;}
.y1b8{bottom:898.852807pt;}
.y21f{bottom:906.176264pt;}
.y1ec{bottom:906.178689pt;}
.y109{bottom:906.179978pt;}
.y15a{bottom:908.901753pt;}
.y1{bottom:912.151067pt;}
.ycc{bottom:914.116321pt;}
.y54{bottom:914.116400pt;}
.y8e{bottom:914.116589pt;}
.y1b7{bottom:914.121818pt;}
.y21e{bottom:919.480371pt;}
.y1eb{bottom:919.482796pt;}
.y180{bottom:919.483200pt;}
.y108{bottom:921.448989pt;}
.ycb{bottom:929.385332pt;}
.y8d{bottom:929.385600pt;}
.y8b{bottom:929.390194pt;}
.y1b6{bottom:929.390829pt;}
.y21d{bottom:932.708829pt;}
.y1ea{bottom:932.711253pt;}
.y8c{bottom:934.752667pt;}
.y159{bottom:935.433616pt;}
.y107{bottom:936.718000pt;}
.y53{bottom:936.718002pt;}
.yca{bottom:944.730856pt;}
.y8a{bottom:944.735717pt;}
.y1b5{bottom:944.736353pt;}
.y21c{bottom:946.012935pt;}
.y1e9{bottom:946.015360pt;}
.y158{bottom:947.376542pt;}
.y21b{bottom:959.317042pt;}
.y52{bottom:959.319467pt;}
.yc9{bottom:959.999867pt;}
.y89{bottom:960.004728pt;}
.y1b4{bottom:960.005364pt;}
.y4f{bottom:978.444006pt;}
.y4e{bottom:991.369867pt;}
.yc8{bottom:992.125867pt;}
.h12{height:19.576685pt;}
.ha{height:22.549494pt;}
.hc{height:23.875324pt;}
.he{height:24.484375pt;}
.h5{height:25.202751pt;}
.h13{height:25.453818pt;}
.h7{height:27.934570pt;}
.h11{height:29.369155pt;}
.hd{height:29.847350pt;}
.h4{height:30.507669pt;}
.h9{height:33.827636pt;}
.h14{height:33.854069pt;}
.h15{height:33.856995pt;}
.h8{height:34.234110pt;}
.h6{height:35.384985pt;}
.hb{height:35.817380pt;}
.h10{height:37.454577pt;}
.hf{height:38.262223pt;}
.h3{height:45.767295pt;}
.h2{height:60.413611pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:22.880000pt;}
.x1{left:60.472400pt;}
.xc{left:65.159067pt;}
.x55{left:66.066133pt;}
.x47{left:69.769778pt;}
.x17{left:72.415340pt;}
.x4a{left:80.428083pt;}
.x56{left:85.720261pt;}
.x25{left:108.623600pt;}
.x45{left:115.351200pt;}
.x46{left:119.508667pt;}
.x3c{left:124.044000pt;}
.x3d{left:132.434667pt;}
.x26{left:134.551067pt;}
.x4e{left:137.574800pt;}
.x4b{left:140.144800pt;}
.x4d{left:149.442178pt;}
.x2{left:170.607867pt;}
.x44{left:171.741449pt;}
.x15{left:182.324400pt;}
.x3{left:184.894400pt;}
.xb{left:188.296000pt;}
.x16{left:193.209333pt;}
.x3a{left:197.593600pt;}
.x51{left:201.600000pt;}
.x50{left:206.059733pt;}
.x49{left:221.025442pt;}
.x43{left:225.637037pt;}
.x13{left:229.190533pt;}
.x52{left:234.935333pt;}
.x14{left:239.999867pt;}
.x38{left:256.025067pt;}
.x3b{left:260.938533pt;}
.x18{left:271.672400pt;}
.x19{left:282.481867pt;}
.x11{left:298.431333pt;}
.x42{left:302.135333pt;}
.x48{left:308.332927pt;}
.x4{left:309.316400pt;}
.x39{left:312.566800pt;}
.x4c{left:315.818773pt;}
.x5{left:323.603067pt;}
.x27{left:339.250267pt;}
.x28{left:350.135333pt;}
.x29{left:356.711733pt;}
.xf{left:359.962133pt;}
.x4f{left:362.229867pt;}
.x12{left:366.765200pt;}
.x10{left:377.574667pt;}
.x1a{left:412.422682pt;}
.x53{left:418.091200pt;}
.x23{left:424.440785pt;}
.x6{left:425.877067pt;}
.x54{left:437.744199pt;}
.x7{left:440.163600pt;}
.xd{left:444.472267pt;}
.x32{left:448.327467pt;}
.xe{left:452.031333pt;}
.x33{left:463.672267pt;}
.x1f{left:471.987200pt;}
.x36{left:481.058133pt;}
.x20{left:491.262800pt;}
.x2a{left:501.618800pt;}
.x37{left:512.125867pt;}
.x2b{left:516.963600pt;}
.x30{left:530.267600pt;}
.x31{left:534.727467pt;}
.x2c{left:547.124267pt;}
.x2d{left:562.469200pt;}
.x2e{left:580.384133pt;}
.x21{left:586.431333pt;}
.x8{left:597.694400pt;}
.x22{left:601.776267pt;}
.x2f{left:606.992000pt;}
.x9{left:612.056533pt;}
.x40{left:618.784133pt;}
.x1b{left:625.889600pt;}
.x35{left:627.401467pt;}
.x41{left:633.599867pt;}
.x1c{left:636.774667pt;}
.x3e{left:687.873867pt;}
.x3f{left:695.810933pt;}
.x1d{left:707.527333pt;}
.x34{left:714.254933pt;}
.xa{left:718.261200pt;}
.x1e{left:729.599733pt;}
}




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