
    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_f32f42844cff4fc7e762b09d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_26b45df54d181db46d61acf7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056000;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_3fdfb5399f5029a50d203573.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.054000;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_41a0617667c49f0d07fe2842.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003000;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_2b7faf6fb5af6560f4e01aee.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_6be956e9e6c493ee8f24062b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.711426;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_3432b5af31e1c2868ffa6e70.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.927246;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_502c6cc737a5ca6364babf85.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.392000;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_ff6131aba885f5bc645bbf65.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999000;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_b7c7786e3fde1fbb369f6f87.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_912ddbbecd2830d457b13508.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.094000;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_9e534d9629fcab2f880ac225.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.064000;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_13ebf7fba7328d6364ebffe6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.064000;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_c5e3709b21d17c6a61146d73.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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_a681542efb3cca094c35b749.woff2')format("woff");}.fff{font-family:fff;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_57b5a32e3e5411117363c857.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.999000;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_bd67b8fd870e2cc2368b4662.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.998000;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_d52db4e3ad737e889bc27641.woff2')format("woff");}.ff12{font-family:ff12;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;}
@font-face{font-family:ff13;src:url('chunks/assets/font_bb0c4a5eb33405fa04a10026.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.734000;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_ef67539378af101b32557a3a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.947000;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_3f65ded2ec035409900530ab.woff2')format("woff");}.ff15{font-family:ff15;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.m3{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v5{vertical-align:-17.688000px;}
.v3{vertical-align:-7.473600px;}
.v1{vertical-align:-5.778000px;}
.v7{vertical-align:-3.402000px;}
.v2{vertical-align:-1.355400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.343151px;}
.v6{vertical-align:21.758400px;}
.lsa{letter-spacing:-1.263600px;}
.lsf{letter-spacing:-1.200600px;}
.ls42{letter-spacing:-1.200000px;}
.ls13{letter-spacing:-1.199985px;}
.ls46{letter-spacing:-0.959988px;}
.ls2f{letter-spacing:-0.600000px;}
.ls30{letter-spacing:-0.531939px;}
.ls48{letter-spacing:-0.479994px;}
.ls12{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.239997px;}
.ls10{letter-spacing:-0.239400px;}
.lsd{letter-spacing:-0.238497px;}
.lsb{letter-spacing:-0.237600px;}
.ls11{letter-spacing:-0.237598px;}
.ls20{letter-spacing:-0.214367px;}
.lsc{letter-spacing:-0.212372px;}
.ls16{letter-spacing:-0.211976px;}
.lse{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.792000px;}
.ls44{letter-spacing:1.134000px;}
.ls6{letter-spacing:1.703979px;}
.ls3d{letter-spacing:2.808600px;}
.ls41{letter-spacing:2.814600px;}
.ls1a{letter-spacing:2.928600px;}
.ls1b{letter-spacing:2.934600px;}
.ls2c{letter-spacing:2.946324px;}
.ls2b{letter-spacing:2.952324px;}
.ls3f{letter-spacing:3.150600px;}
.ls3c{letter-spacing:3.156600px;}
.ls45{letter-spacing:3.168000px;}
.ls27{letter-spacing:3.174000px;}
.ls2d{letter-spacing:3.288324px;}
.ls1{letter-spacing:3.609600px;}
.ls0{letter-spacing:5.826600px;}
.ls7{letter-spacing:6.465519px;}
.ls2{letter-spacing:7.527600px;}
.ls8{letter-spacing:9.446282px;}
.ls1c{letter-spacing:10.132673px;}
.ls1e{letter-spacing:10.247872px;}
.ls5{letter-spacing:10.387070px;}
.ls47{letter-spacing:10.401470px;}
.ls1f{letter-spacing:10.415870px;}
.ls1d{letter-spacing:10.531068px;}
.ls33{letter-spacing:12.750000px;}
.ls29{letter-spacing:12.756000px;}
.ls3e{letter-spacing:12.822000px;}
.ls3b{letter-spacing:12.840000px;}
.ls37{letter-spacing:12.882000px;}
.ls19{letter-spacing:12.888000px;}
.ls25{letter-spacing:12.900000px;}
.ls14{letter-spacing:12.936000px;}
.ls23{letter-spacing:12.942000px;}
.ls35{letter-spacing:12.990000px;}
.ls17{letter-spacing:13.002000px;}
.ls18{letter-spacing:13.008000px;}
.ls24{letter-spacing:13.020000px;}
.ls38{letter-spacing:13.068000px;}
.ls34{letter-spacing:13.074000px;}
.ls40{letter-spacing:13.128000px;}
.ls39{letter-spacing:13.152000px;}
.ls2e{letter-spacing:13.158000px;}
.ls26{letter-spacing:13.176000px;}
.ls28{letter-spacing:13.230000px;}
.ls15{letter-spacing:13.278000px;}
.ls31{letter-spacing:13.284000px;}
.ls36{letter-spacing:13.290000px;}
.ls22{letter-spacing:13.344000px;}
.ls21{letter-spacing:13.350000px;}
.ls3a{letter-spacing:13.380000px;}
.ls32{letter-spacing:13.386000px;}
.ls2a{letter-spacing:13.578000px;}
.ls3{letter-spacing:20.783740px;}
.ls4{letter-spacing:20.788540px;}
.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;}
}
.ws16d{word-spacing:-42.060000px;}
.ws185{word-spacing:-41.998800px;}
.wsdc{word-spacing:-33.599580px;}
.wse3{word-spacing:-33.598800px;}
.ws1b6{word-spacing:-29.214000px;}
.wsf3{word-spacing:-29.136000px;}
.wsb2{word-spacing:-29.112000px;}
.ws151{word-spacing:-29.070000px;}
.ws155{word-spacing:-29.064000px;}
.wsfb{word-spacing:-29.058000px;}
.ws147{word-spacing:-29.052000px;}
.ws159{word-spacing:-29.034000px;}
.ws149{word-spacing:-29.028000px;}
.ws109{word-spacing:-29.022000px;}
.ws150{word-spacing:-29.016000px;}
.ws145{word-spacing:-29.010000px;}
.ws197{word-spacing:-29.004000px;}
.ws194{word-spacing:-28.998000px;}
.ws8a{word-spacing:-28.992000px;}
.ws143{word-spacing:-28.980000px;}
.wsa3{word-spacing:-28.944000px;}
.ws158{word-spacing:-28.932000px;}
.ws184{word-spacing:-28.914000px;}
.ws195{word-spacing:-28.908000px;}
.ws1a8{word-spacing:-28.902000px;}
.ws157{word-spacing:-28.890000px;}
.ws15b{word-spacing:-28.878000px;}
.ws15a{word-spacing:-28.872000px;}
.ws1b9{word-spacing:-28.866000px;}
.ws1a3{word-spacing:-28.860000px;}
.wsfe{word-spacing:-28.854000px;}
.ws1bd{word-spacing:-28.842000px;}
.ws171{word-spacing:-28.836000px;}
.ws19c{word-spacing:-28.812000px;}
.ws19d{word-spacing:-28.806000px;}
.ws9d{word-spacing:-28.800000px;}
.ws8c{word-spacing:-28.794000px;}
.ws188{word-spacing:-28.776000px;}
.ws19e{word-spacing:-28.752000px;}
.ws198{word-spacing:-28.728000px;}
.ws14a{word-spacing:-28.722000px;}
.ws146{word-spacing:-28.716000px;}
.ws199{word-spacing:-28.704000px;}
.ws19a{word-spacing:-28.698000px;}
.ws1a7{word-spacing:-28.692000px;}
.ws14b{word-spacing:-28.686000px;}
.ws196{word-spacing:-28.680000px;}
.ws148{word-spacing:-28.674000px;}
.ws14c{word-spacing:-28.662000px;}
.ws1b5{word-spacing:-28.626000px;}
.ws1b3{word-spacing:-28.620000px;}
.ws1bc{word-spacing:-28.614000px;}
.ws1b4{word-spacing:-28.560000px;}
.ws1a5{word-spacing:-28.554000px;}
.ws190{word-spacing:-28.548000px;}
.ws1a0{word-spacing:-28.542000px;}
.ws19f{word-spacing:-28.536000px;}
.ws1ab{word-spacing:-28.434000px;}
.ws1ad{word-spacing:-28.428000px;}
.ws152{word-spacing:-28.410000px;}
.ws192{word-spacing:-28.344000px;}
.ws1b0{word-spacing:-28.266000px;}
.ws1af{word-spacing:-28.128000px;}
.ws1c4{word-spacing:-27.918000px;}
.ws1c2{word-spacing:-27.600000px;}
.ws3a{word-spacing:-25.247684px;}
.wsd0{word-spacing:-23.495706px;}
.wscd{word-spacing:-23.399707px;}
.wscf{word-spacing:-23.366108px;}
.ws129{word-spacing:-23.294109px;}
.wsec{word-spacing:-23.265309px;}
.wse7{word-spacing:-23.202910px;}
.wse6{word-spacing:-23.198110px;}
.wscc{word-spacing:-22.991713px;}
.wsd2{word-spacing:-22.876514px;}
.ws1d0{word-spacing:-19.994233px;}
.ws14f{word-spacing:-19.987033px;}
.ws141{word-spacing:-19.979834px;}
.ws18b{word-spacing:-16.632000px;}
.wsf{word-spacing:-14.936400px;}
.ws1d5{word-spacing:-13.740000px;}
.ws17a{word-spacing:-13.500000px;}
.ws24{word-spacing:-13.247834px;}
.ws1c8{word-spacing:-12.540000px;}
.ws45{word-spacing:-10.799865px;}
.ws107{word-spacing:-10.751866px;}
.ws13d{word-spacing:-4.456763px;}
.ws1d1{word-spacing:-4.233565px;}
.ws32{word-spacing:-4.096766px;}
.ws182{word-spacing:-4.082366px;}
.ws21d{word-spacing:-3.662354px;}
.ws20e{word-spacing:-3.575955px;}
.ws235{word-spacing:-3.542356px;}
.ws215{word-spacing:-3.513556px;}
.ws20c{word-spacing:-3.494356px;}
.ws22d{word-spacing:-3.455957px;}
.ws1fc{word-spacing:-3.436757px;}
.ws11{word-spacing:-3.423600px;}
.ws225{word-spacing:-3.422357px;}
.ws232{word-spacing:-3.407957px;}
.ws1ea{word-spacing:-3.388758px;}
.ws210{word-spacing:-3.383958px;}
.ws216{word-spacing:-3.374358px;}
.wsb{word-spacing:-3.369600px;}
.ws21c{word-spacing:-3.369558px;}
.ws22e{word-spacing:-3.359958px;}
.ws22a{word-spacing:-3.355158px;}
.ws202{word-spacing:-3.350358px;}
.ws17{word-spacing:-3.345558px;}
.ws5{word-spacing:-3.342600px;}
.ws1f{word-spacing:-3.340758px;}
.ws207{word-spacing:-3.335958px;}
.ws21b{word-spacing:-3.331158px;}
.ws209{word-spacing:-3.326358px;}
.ws1e2{word-spacing:-3.321558px;}
.ws18{word-spacing:-3.316759px;}
.ws4{word-spacing:-3.315600px;}
.ws229{word-spacing:-3.307159px;}
.ws1fe{word-spacing:-3.302359px;}
.ws219{word-spacing:-3.297559px;}
.ws31{word-spacing:-3.294600px;}
.ws1ed{word-spacing:-3.292759px;}
.ws27{word-spacing:-3.288900px;}
.ws30{word-spacing:-3.283200px;}
.ws1e3{word-spacing:-3.283159px;}
.ws1e0{word-spacing:-3.278359px;}
.ws7{word-spacing:-3.277800px;}
.ws1fb{word-spacing:-3.273559px;}
.wsa{word-spacing:-3.272400px;}
.ws218{word-spacing:-3.263959px;}
.ws13{word-spacing:-3.261600px;}
.ws1d{word-spacing:-3.259159px;}
.ws2f{word-spacing:-3.254700px;}
.ws1f6{word-spacing:-3.254359px;}
.ws200{word-spacing:-3.249559px;}
.ws1c{word-spacing:-3.244759px;}
.ws29{word-spacing:-3.243300px;}
.ws217{word-spacing:-3.239960px;}
.ws1e{word-spacing:-3.235160px;}
.ws1a{word-spacing:-3.230360px;}
.ws214{word-spacing:-3.225560px;}
.wsd{word-spacing:-3.223800px;}
.ws1b{word-spacing:-3.220760px;}
.ws1df{word-spacing:-3.215960px;}
.ws2a{word-spacing:-3.214800px;}
.ws228{word-spacing:-3.211160px;}
.ws2d{word-spacing:-3.209100px;}
.wse{word-spacing:-3.207600px;}
.ws7a{word-spacing:-3.206360px;}
.ws12{word-spacing:-3.202200px;}
.ws234{word-spacing:-3.196760px;}
.ws14{word-spacing:-3.180600px;}
.ws9{word-spacing:-3.175200px;}
.ws1f3{word-spacing:-3.172760px;}
.ws20{word-spacing:-3.167960px;}
.ws6{word-spacing:-3.164400px;}
.ws1f0{word-spacing:-3.163160px;}
.ws224{word-spacing:-3.158361px;}
.ws1e6{word-spacing:-3.153561px;}
.ws2e{word-spacing:-3.152100px;}
.ws23{word-spacing:-3.148761px;}
.ws25{word-spacing:-3.146400px;}
.ws211{word-spacing:-3.139161px;}
.ws10{word-spacing:-3.137400px;}
.wsc{word-spacing:-3.132000px;}
.ws16{word-spacing:-3.129561px;}
.ws37{word-spacing:-3.124761px;}
.ws230{word-spacing:-3.119961px;}
.ws2c{word-spacing:-3.117900px;}
.ws1e5{word-spacing:-3.115161px;}
.ws208{word-spacing:-3.110361px;}
.ws236{word-spacing:-3.105561px;}
.ws226{word-spacing:-3.100761px;}
.ws39{word-spacing:-3.091161px;}
.ws3{word-spacing:-3.088800px;}
.ws204{word-spacing:-3.086361px;}
.ws221{word-spacing:-3.076762px;}
.ws1fd{word-spacing:-3.071962px;}
.ws205{word-spacing:-3.067162px;}
.ws201{word-spacing:-3.062362px;}
.ws1e8{word-spacing:-3.052762px;}
.ws220{word-spacing:-3.023962px;}
.ws1f5{word-spacing:-3.019162px;}
.ws231{word-spacing:-3.004762px;}
.ws1e7{word-spacing:-2.999962px;}
.ws8{word-spacing:-2.997000px;}
.ws20b{word-spacing:-2.985563px;}
.ws2b{word-spacing:-2.981100px;}
.ws21a{word-spacing:-2.975963px;}
.ws19{word-spacing:-2.956763px;}
.ws20f{word-spacing:-2.951963px;}
.ws22f{word-spacing:-2.947163px;}
.ws1ef{word-spacing:-2.937563px;}
.ws21e{word-spacing:-2.923163px;}
.ws1e4{word-spacing:-2.913564px;}
.ws26{word-spacing:-2.912700px;}
.ws1eb{word-spacing:-2.908764px;}
.ws22b{word-spacing:-2.903964px;}
.ws1e9{word-spacing:-2.894364px;}
.ws1ec{word-spacing:-2.889564px;}
.ws21f{word-spacing:-2.879964px;}
.ws1e1{word-spacing:-2.875164px;}
.ws206{word-spacing:-2.870364px;}
.ws2{word-spacing:-2.851200px;}
.ws22{word-spacing:-2.846364px;}
.ws227{word-spacing:-2.841564px;}
.ws223{word-spacing:-2.836765px;}
.ws1ff{word-spacing:-2.831965px;}
.ws21{word-spacing:-2.827165px;}
.ws1ee{word-spacing:-2.812765px;}
.ws1f4{word-spacing:-2.807965px;}
.ws22c{word-spacing:-2.788765px;}
.ws233{word-spacing:-2.783965px;}
.ws203{word-spacing:-2.779165px;}
.ws1{word-spacing:-2.775600px;}
.ws213{word-spacing:-2.769565px;}
.ws1f1{word-spacing:-2.764765px;}
.ws15{word-spacing:-2.750366px;}
.ws212{word-spacing:-2.745566px;}
.ws20d{word-spacing:-2.716766px;}
.ws0{word-spacing:-2.649567px;}
.ws28{word-spacing:-2.565000px;}
.ws1f8{word-spacing:-2.467169px;}
.ws1fa{word-spacing:-2.332771px;}
.ws222{word-spacing:-2.284771px;}
.ws1f7{word-spacing:-2.035175px;}
.ws1f9{word-spacing:-2.030375px;}
.ws4f{word-spacing:-1.055987px;}
.ws58{word-spacing:-0.964788px;}
.ws12e{word-spacing:-0.960000px;}
.ws52{word-spacing:-0.916789px;}
.wsb0{word-spacing:-0.912000px;}
.ws163{word-spacing:-0.900000px;}
.ws16a{word-spacing:-0.894000px;}
.ws4c{word-spacing:-0.892789px;}
.ws1b7{word-spacing:-0.888000px;}
.ws49{word-spacing:-0.878389px;}
.wsb1{word-spacing:-0.870000px;}
.ws80{word-spacing:-0.868789px;}
.ws138{word-spacing:-0.835190px;}
.ws7d{word-spacing:-0.830390px;}
.wsaf{word-spacing:-0.822000px;}
.ws42{word-spacing:-0.815990px;}
.ws59{word-spacing:-0.811190px;}
.ws16b{word-spacing:-0.810000px;}
.ws7f{word-spacing:-0.806390px;}
.wse8{word-spacing:-0.796790px;}
.ws47{word-spacing:-0.791990px;}
.ws57{word-spacing:-0.787190px;}
.ws82{word-spacing:-0.782390px;}
.ws101{word-spacing:-0.777590px;}
.ws1b8{word-spacing:-0.774000px;}
.ws44{word-spacing:-0.767990px;}
.ws113{word-spacing:-0.758391px;}
.wsd4{word-spacing:-0.748791px;}
.ws4b{word-spacing:-0.743991px;}
.ws55{word-spacing:-0.739191px;}
.ws40{word-spacing:-0.734391px;}
.wsdf{word-spacing:-0.729591px;}
.ws4e{word-spacing:-0.724791px;}
.ws124{word-spacing:-0.715191px;}
.ws4a{word-spacing:-0.710391px;}
.ws133{word-spacing:-0.705591px;}
.ws128{word-spacing:-0.700791px;}
.ws180{word-spacing:-0.696000px;}
.ws104{word-spacing:-0.695991px;}
.ws119{word-spacing:-0.686391px;}
.ws84{word-spacing:-0.681591px;}
.ws50{word-spacing:-0.676792px;}
.ws53{word-spacing:-0.671992px;}
.ws127{word-spacing:-0.667192px;}
.ws7e{word-spacing:-0.662392px;}
.ws56{word-spacing:-0.657592px;}
.wsb9{word-spacing:-0.654000px;}
.wsf2{word-spacing:-0.652792px;}
.ws5d{word-spacing:-0.648000px;}
.wseb{word-spacing:-0.647992px;}
.ws12a{word-spacing:-0.643192px;}
.wscb{word-spacing:-0.638392px;}
.ws4d{word-spacing:-0.633592px;}
.ws142{word-spacing:-0.630000px;}
.ws11a{word-spacing:-0.628792px;}
.ws3b{word-spacing:-0.623992px;}
.ws10b{word-spacing:-0.618000px;}
.ws54{word-spacing:-0.609592px;}
.ws3f{word-spacing:-0.604792px;}
.ws134{word-spacing:-0.599992px;}
.ws106{word-spacing:-0.590393px;}
.ws13b{word-spacing:-0.588000px;}
.ws135{word-spacing:-0.585593px;}
.wsae{word-spacing:-0.582000px;}
.ws12b{word-spacing:-0.580793px;}
.wsba{word-spacing:-0.576000px;}
.ws136{word-spacing:-0.575993px;}
.ws46{word-spacing:-0.571193px;}
.ws14e{word-spacing:-0.570000px;}
.ws83{word-spacing:-0.566393px;}
.ws102{word-spacing:-0.561593px;}
.ws17c{word-spacing:-0.558000px;}
.wsdd{word-spacing:-0.556793px;}
.ws5b{word-spacing:-0.551993px;}
.ws3c{word-spacing:-0.547193px;}
.ws170{word-spacing:-0.546000px;}
.ws3d{word-spacing:-0.542393px;}
.wsed{word-spacing:-0.537593px;}
.ws122{word-spacing:-0.534000px;}
.ws7c{word-spacing:-0.532793px;}
.ws66{word-spacing:-0.528000px;}
.ws48{word-spacing:-0.527993px;}
.ws43{word-spacing:-0.523193px;}
.ws13a{word-spacing:-0.522000px;}
.ws74{word-spacing:-0.516000px;}
.ws9b{word-spacing:-0.510000px;}
.ws3e{word-spacing:-0.508794px;}
.ws8b{word-spacing:-0.504000px;}
.ws117{word-spacing:-0.503994px;}
.ws167{word-spacing:-0.498000px;}
.ws7b{word-spacing:-0.494394px;}
.ws108{word-spacing:-0.489594px;}
.ws11c{word-spacing:-0.484794px;}
.ws10e{word-spacing:-0.480000px;}
.wse2{word-spacing:-0.479994px;}
.wsda{word-spacing:-0.475194px;}
.wsc5{word-spacing:-0.474000px;}
.ws51{word-spacing:-0.470394px;}
.ws69{word-spacing:-0.468000px;}
.wsd9{word-spacing:-0.465594px;}
.ws166{word-spacing:-0.462000px;}
.ws76{word-spacing:-0.456000px;}
.wsf0{word-spacing:-0.451194px;}
.ws173{word-spacing:-0.450000px;}
.ws154{word-spacing:-0.444000px;}
.ws126{word-spacing:-0.441594px;}
.wsc4{word-spacing:-0.438000px;}
.wsdb{word-spacing:-0.436795px;}
.ws36{word-spacing:-0.432000px;}
.ws9a{word-spacing:-0.426000px;}
.ws160{word-spacing:-0.420000px;}
.ws11f{word-spacing:-0.417595px;}
.ws10a{word-spacing:-0.414000px;}
.wsad{word-spacing:-0.408000px;}
.ws115{word-spacing:-0.403195px;}
.ws64{word-spacing:-0.402000px;}
.wsde{word-spacing:-0.398395px;}
.ws6f{word-spacing:-0.396000px;}
.ws114{word-spacing:-0.393595px;}
.ws35{word-spacing:-0.390000px;}
.ws139{word-spacing:-0.388795px;}
.wsc2{word-spacing:-0.384000px;}
.ws5f{word-spacing:-0.378000px;}
.ws116{word-spacing:-0.374395px;}
.ws67{word-spacing:-0.372000px;}
.ws87{word-spacing:-0.366000px;}
.wsd1{word-spacing:-0.364795px;}
.ws111{word-spacing:-0.360000px;}
.wsff{word-spacing:-0.359996px;}
.wsc1{word-spacing:-0.354000px;}
.ws81{word-spacing:-0.350396px;}
.ws5e{word-spacing:-0.348000px;}
.ws41{word-spacing:-0.345596px;}
.ws78{word-spacing:-0.342000px;}
.ws65{word-spacing:-0.336000px;}
.wsf7{word-spacing:-0.330000px;}
.wsfd{word-spacing:-0.324000px;}
.ws153{word-spacing:-0.318000px;}
.wsea{word-spacing:-0.316796px;}
.wsc8{word-spacing:-0.312000px;}
.wsd8{word-spacing:-0.311996px;}
.ws5a{word-spacing:-0.307196px;}
.wsac{word-spacing:-0.306000px;}
.ws63{word-spacing:-0.300000px;}
.ws61{word-spacing:-0.294000px;}
.ws33{word-spacing:-0.288000px;}
.wse1{word-spacing:-0.283196px;}
.ws60{word-spacing:-0.282000px;}
.ws8f{word-spacing:-0.276000px;}
.ws105{word-spacing:-0.273597px;}
.ws10d{word-spacing:-0.270000px;}
.ws132{word-spacing:-0.268797px;}
.wsf8{word-spacing:-0.264000px;}
.ws10f{word-spacing:-0.258000px;}
.wsee{word-spacing:-0.254397px;}
.ws6e{word-spacing:-0.252000px;}
.ws125{word-spacing:-0.249597px;}
.ws96{word-spacing:-0.246000px;}
.wsa1{word-spacing:-0.240000px;}
.ws62{word-spacing:-0.234000px;}
.ws9f{word-spacing:-0.228000px;}
.wsa9{word-spacing:-0.222000px;}
.wsc0{word-spacing:-0.216000px;}
.wsb6{word-spacing:-0.210000px;}
.ws8e{word-spacing:-0.204000px;}
.ws6a{word-spacing:-0.198000px;}
.ws34{word-spacing:-0.192000px;}
.wsbe{word-spacing:-0.186000px;}
.wsb5{word-spacing:-0.180000px;}
.ws88{word-spacing:-0.174000px;}
.ws94{word-spacing:-0.168000px;}
.wsd5{word-spacing:-0.167998px;}
.ws120{word-spacing:-0.163198px;}
.ws16f{word-spacing:-0.162000px;}
.wsbd{word-spacing:-0.156000px;}
.wsef{word-spacing:-0.153598px;}
.wsa0{word-spacing:-0.150000px;}
.ws72{word-spacing:-0.144000px;}
.ws86{word-spacing:-0.138000px;}
.wsb8{word-spacing:-0.132000px;}
.wsa5{word-spacing:-0.126000px;}
.ws169{word-spacing:-0.120000px;}
.ws71{word-spacing:-0.114000px;}
.wsa8{word-spacing:-0.108000px;}
.ws91{word-spacing:-0.102000px;}
.ws99{word-spacing:-0.096000px;}
.ws123{word-spacing:-0.091199px;}
.ws9c{word-spacing:-0.090000px;}
.wsb3{word-spacing:-0.084000px;}
.ws79{word-spacing:-0.078000px;}
.ws131{word-spacing:-0.076799px;}
.ws95{word-spacing:-0.072000px;}
.ws6c{word-spacing:-0.066000px;}
.wsaa{word-spacing:-0.060000px;}
.wsca{word-spacing:-0.057599px;}
.wsf9{word-spacing:-0.054000px;}
.wsce{word-spacing:-0.052799px;}
.wsbb{word-spacing:-0.048000px;}
.ws85{word-spacing:-0.042000px;}
.ws6b{word-spacing:-0.036000px;}
.ws100{word-spacing:-0.033600px;}
.ws15e{word-spacing:-0.030000px;}
.wsd7{word-spacing:-0.028800px;}
.wsa7{word-spacing:-0.024000px;}
.wse5{word-spacing:-0.019200px;}
.ws93{word-spacing:-0.018000px;}
.ws156{word-spacing:-0.012000px;}
.wsab{word-spacing:-0.006000px;}
.ws5c{word-spacing:0.000000px;}
.ws130{word-spacing:0.004800px;}
.ws8d{word-spacing:0.006000px;}
.ws89{word-spacing:0.012000px;}
.ws15c{word-spacing:0.018000px;}
.ws14d{word-spacing:0.024000px;}
.wse4{word-spacing:0.028800px;}
.ws10c{word-spacing:0.030000px;}
.ws112{word-spacing:0.033600px;}
.wsa2{word-spacing:0.036000px;}
.wsbc{word-spacing:0.042000px;}
.wsf6{word-spacing:0.048000px;}
.ws75{word-spacing:0.054000px;}
.wsf5{word-spacing:0.060000px;}
.wsd6{word-spacing:0.062399px;}
.ws110{word-spacing:0.066000px;}
.wsb4{word-spacing:0.078000px;}
.ws11e{word-spacing:0.081599px;}
.ws6d{word-spacing:0.084000px;}
.wsb7{word-spacing:0.086399px;}
.ws77{word-spacing:0.090000px;}
.ws11b{word-spacing:0.091199px;}
.wse0{word-spacing:0.095999px;}
.ws18d{word-spacing:0.096000px;}
.ws162{word-spacing:0.100799px;}
.ws68{word-spacing:0.102000px;}
.wsc3{word-spacing:0.108000px;}
.ws12c{word-spacing:0.114000px;}
.ws164{word-spacing:0.120000px;}
.ws15d{word-spacing:0.126000px;}
.wsa4{word-spacing:0.132000px;}
.ws97{word-spacing:0.136799px;}
.ws12d{word-spacing:0.138000px;}
.ws92{word-spacing:0.144000px;}
.ws13f{word-spacing:0.150000px;}
.wsc9{word-spacing:0.162000px;}
.ws19b{word-spacing:0.168000px;}
.ws90{word-spacing:0.174000px;}
.ws1cf{word-spacing:0.180000px;}
.wsbf{word-spacing:0.186000px;}
.wsd3{word-spacing:0.187198px;}
.wsa6{word-spacing:0.192000px;}
.ws191{word-spacing:0.198000px;}
.ws140{word-spacing:0.201598px;}
.ws1cc{word-spacing:0.204000px;}
.wsc6{word-spacing:0.208798px;}
.ws12f{word-spacing:0.210000px;}
.wsf1{word-spacing:0.211197px;}
.ws1bb{word-spacing:0.216000px;}
.ws1b2{word-spacing:0.222000px;}
.wsc7{word-spacing:0.228000px;}
.wsfc{word-spacing:0.234000px;}
.ws137{word-spacing:0.235197px;}
.ws16c{word-spacing:0.240000px;}
.ws144{word-spacing:0.246000px;}
.ws70{word-spacing:0.252000px;}
.wsf4{word-spacing:0.258000px;}
.wsfa{word-spacing:0.259198px;}
.ws1ba{word-spacing:0.264000px;}
.ws98{word-spacing:0.266398px;}
.ws121{word-spacing:0.268797px;}
.ws1cd{word-spacing:0.270000px;}
.ws165{word-spacing:0.273598px;}
.ws13c{word-spacing:0.282000px;}
.ws174{word-spacing:0.295198px;}
.ws103{word-spacing:0.302396px;}
.ws161{word-spacing:0.302397px;}
.ws73{word-spacing:0.306000px;}
.ws118{word-spacing:0.307196px;}
.ws13e{word-spacing:0.316797px;}
.ws11d{word-spacing:0.321596px;}
.ws1ac{word-spacing:0.330000px;}
.wse9{word-spacing:0.335996px;}
.ws1dd{word-spacing:0.342000px;}
.ws18a{word-spacing:0.348000px;}
.ws175{word-spacing:0.354000px;}
.ws18f{word-spacing:0.360000px;}
.ws187{word-spacing:0.366000px;}
.ws15f{word-spacing:0.367197px;}
.ws9e{word-spacing:0.378000px;}
.ws176{word-spacing:0.396000px;}
.ws168{word-spacing:0.403197px;}
.ws183{word-spacing:0.408000px;}
.ws1ae{word-spacing:0.414000px;}
.ws179{word-spacing:0.432000px;}
.ws1c9{word-spacing:0.438000px;}
.ws1a2{word-spacing:0.450000px;}
.ws1aa{word-spacing:0.468000px;}
.ws1d3{word-spacing:0.480000px;}
.ws172{word-spacing:0.482396px;}
.ws189{word-spacing:0.486000px;}
.ws18e{word-spacing:0.498000px;}
.ws186{word-spacing:0.504000px;}
.ws17b{word-spacing:0.516000px;}
.ws17e{word-spacing:0.522000px;}
.ws18c{word-spacing:0.534000px;}
.ws1a4{word-spacing:0.540000px;}
.ws1a6{word-spacing:0.546000px;}
.ws193{word-spacing:0.564000px;}
.ws16e{word-spacing:0.600000px;}
.ws1b1{word-spacing:0.630000px;}
.ws1d4{word-spacing:0.666000px;}
.ws1a1{word-spacing:0.672000px;}
.ws1c7{word-spacing:0.684000px;}
.ws1d8{word-spacing:0.708000px;}
.ws17f{word-spacing:0.726000px;}
.ws1c0{word-spacing:0.732000px;}
.ws1ce{word-spacing:0.756000px;}
.ws1d6{word-spacing:0.762000px;}
.ws1a9{word-spacing:0.840000px;}
.ws1d9{word-spacing:0.846000px;}
.ws1c6{word-spacing:0.852000px;}
.ws1c1{word-spacing:0.858000px;}
.ws1c5{word-spacing:0.870000px;}
.ws1c3{word-spacing:0.900000px;}
.ws177{word-spacing:0.924000px;}
.ws181{word-spacing:0.948000px;}
.ws178{word-spacing:0.966000px;}
.ws1d7{word-spacing:0.978000px;}
.ws1db{word-spacing:1.014000px;}
.ws1dc{word-spacing:1.020000px;}
.ws1da{word-spacing:1.026000px;}
.ws1cb{word-spacing:1.044000px;}
.ws17d{word-spacing:1.122000px;}
.ws1ca{word-spacing:1.146000px;}
.ws1d2{word-spacing:1.158000px;}
.ws1be{word-spacing:1.248000px;}
.ws1bf{word-spacing:1.752000px;}
.ws38{word-spacing:34.458769px;}
.ws1f2{word-spacing:46.842614px;}
.ws20a{word-spacing:46.847414px;}
.ws1de{word-spacing:46.909814px;}
._e{margin-left:-26.335200px;}
._10{margin-left:-23.870400px;}
._7{margin-left:-16.866989px;}
._11{margin-left:-3.972000px;}
._0{margin-left:-1.113586px;}
._d{width:1.046752px;}
._b{width:2.200727px;}
._2{width:4.173600px;}
._3{width:9.398283px;}
._4{width:11.289459px;}
._9{width:12.540000px;}
._5{width:14.044800px;}
._8{width:15.050400px;}
._a{width:16.768660px;}
._1{width:24.969600px;}
._f{width:48.792000px;}
._c{width:1423.691004px;}
._6{width:1449.389882px;}
.fc3{color:transparent;}
.fc2{color:rgb(66,93,177);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.995000px;}
.fsa{font-size:33.598800px;}
.fs3{font-size:35.995200px;}
.fs9{font-size:39.995400px;}
.fsc{font-size:41.998800px;}
.fs4{font-size:44.999400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs7{font-size:71.999400px;}
.fs5{font-size:87.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:54.000000px;}
.yd2{bottom:124.498500px;}
.y1df{bottom:124.498650px;}
.yc2{bottom:124.500000px;}
.y53{bottom:124.500064px;}
.y11a{bottom:124.501500px;}
.y82{bottom:124.503000px;}
.y28e{bottom:126.627000px;}
.y2f{bottom:127.389000px;}
.y38c{bottom:131.561044px;}
.y31a{bottom:131.985000px;}
.y17a{bottom:132.412500px;}
.y14a{bottom:135.468000px;}
.y353{bottom:135.898387px;}
.y2dd{bottom:137.085000px;}
.yfc{bottom:137.339034px;}
.y2fa{bottom:138.616500px;}
.y2bb{bottom:138.619500px;}
.y52{bottom:140.997458px;}
.y214{bottom:141.505500px;}
.y3b7{bottom:142.105312px;}
.y258{bottom:143.971500px;}
.y215{bottom:143.971650px;}
.yd1{bottom:143.973000px;}
.yc1{bottom:143.974500px;}
.y81{bottom:143.976000px;}
.y38b{bottom:145.846866px;}
.y28d{bottom:146.100000px;}
.y2e{bottom:146.949000px;}
.y352{bottom:150.100209px;}
.yfb{bottom:151.540856px;}
.y179{bottom:151.885500px;}
.y149{bottom:154.942500px;}
.y3b6{bottom:156.307135px;}
.y2dc{bottom:156.643500px;}
.y51{bottom:157.494852px;}
.y2f9{bottom:158.089500px;}
.y2ba{bottom:158.092500px;}
.y319{bottom:159.027000px;}
.y38a{bottom:160.048688px;}
.y257{bottom:163.530000px;}
.yd0{bottom:163.531500px;}
.yc0{bottom:163.533000px;}
.y80{bottom:163.534500px;}
.y351{bottom:164.386031px;}
.y28c{bottom:165.574500px;}
.yfa{bottom:165.827878px;}
.y2d{bottom:166.422000px;}
.y3b5{bottom:170.592956px;}
.y178{bottom:171.360000px;}
.y26b{bottom:172.462500px;}
.y50{bottom:173.993445px;}
.y147{bottom:174.415500px;}
.y2db{bottom:176.118000px;}
.y2b9{bottom:177.567000px;}
.y389{bottom:179.607244px;}
.yf9{bottom:180.028500px;}
.y148{bottom:181.134000px;}
.y213{bottom:183.004500px;}
.ybf{bottom:183.006000px;}
.y119{bottom:183.007500px;}
.y7f{bottom:183.009000px;}
.y350{bottom:183.860587px;}
.y28b{bottom:185.133000px;}
.y2c{bottom:185.896500px;}
.y318{bottom:185.985000px;}
.y2f8{bottom:186.577500px;}
.y256{bottom:188.958000px;}
.y3b4{bottom:190.067513px;}
.y4f{bottom:190.490839px;}
.y177{bottom:190.833000px;}
.y26a{bottom:192.021000px;}
.y388{bottom:193.809066px;}
.y146{bottom:193.975500px;}
.y2da{bottom:195.594000px;}
.y2b8{bottom:197.125500px;}
.y34f{bottom:198.146409px;}
.y22e{bottom:200.013000px;}
.ycf{bottom:202.479000px;}
.ybe{bottom:202.480500px;}
.y118{bottom:202.482000px;}
.y7e{bottom:202.483500px;}
.y3b3{bottom:204.354534px;}
.y28a{bottom:204.607500px;}
.y2b{bottom:205.369500px;}
.y2f7{bottom:206.137500px;}
.y4e{bottom:206.988233px;}
.y387{bottom:208.096087px;}
.y212{bottom:208.516500px;}
.y176{bottom:210.393000px;}
.y34e{bottom:212.348231px;}
.y317{bottom:213.027000px;}
.y145{bottom:213.448500px;}
.y2d9{bottom:215.067000px;}
.y2b7{bottom:216.600000px;}
.y3b2{bottom:218.555157px;}
.y269{bottom:220.509000px;}
.yce{bottom:222.037500px;}
.ybd{bottom:222.039000px;}
.y117{bottom:222.040500px;}
.y7d{bottom:222.042000px;}
.y4d{bottom:223.485627px;}
.y289{bottom:224.080500px;}
.y2f6{bottom:225.610500px;}
.y386{bottom:227.569444px;}
.y1fe{bottom:227.991000px;}
.y255{bottom:228.076500px;}
.y175{bottom:229.866000px;}
.y34d{bottom:231.906787px;}
.y2a{bottom:232.413000px;}
.y144{bottom:232.923000px;}
.y2d8{bottom:234.625500px;}
.y2b6{bottom:236.073000px;}
.y3b1{bottom:238.114912px;}
.y4c{bottom:239.983020px;}
.y268{bottom:239.983500px;}
.y316{bottom:239.985000px;}
.ycd{bottom:241.512000px;}
.ybc{bottom:241.513500px;}
.y7c{bottom:241.515000px;}
.y385{bottom:241.856465px;}
.y288{bottom:243.639000px;}
.y254{bottom:245.083500px;}
.y2f5{bottom:245.085000px;}
.y34c{bottom:246.108609px;}
.y253{bottom:247.549500px;}
.y251{bottom:247.551000px;}
.y174{bottom:249.340500px;}
.y211{bottom:251.377500px;}
.y3b0{bottom:252.315535px;}
.y143{bottom:252.396000px;}
.y2d7{bottom:254.100000px;}
.y252{bottom:254.268000px;}
.y2b5{bottom:255.633000px;}
.y34b{bottom:260.395631px;}
.ycc{bottom:260.986500px;}
.ybb{bottom:260.988000px;}
.y7b{bottom:260.989500px;}
.y384{bottom:261.329822px;}
.y287{bottom:263.113500px;}
.y250{bottom:264.558000px;}
.y2f4{bottom:264.643500px;}
.y4b{bottom:265.494701px;}
.y3af{bottom:266.602556px;}
.y22d{bottom:267.024000px;}
.y1fd{bottom:267.025500px;}
.y315{bottom:267.027000px;}
.y267{bottom:268.471500px;}
.y173{bottom:268.899000px;}
.y210{bottom:270.936000px;}
.y2d6{bottom:273.574500px;}
.y24f{bottom:273.741000px;}
.y383{bottom:275.616843px;}
.y34a{bottom:279.868987px;}
.ycb{bottom:280.459500px;}
.yba{bottom:280.461000px;}
.y116{bottom:280.462500px;}
.y7a{bottom:280.464000px;}
.y3ae{bottom:280.804379px;}
.y4a{bottom:281.992095px;}
.y24e{bottom:284.031000px;}
.y2f3{bottom:284.118000px;}
.y2b4{bottom:284.121000px;}
.y152{bottom:284.456925px;}
.y313{bottom:286.500000px;}
.y24d{bottom:286.582500px;}
.y1fc{bottom:286.584000px;}
.y314{bottom:287.266500px;}
.y266{bottom:288.030000px;}
.y172{bottom:288.373500px;}
.y382{bottom:289.818666px;}
.y20f{bottom:290.410500px;}
.y286{bottom:291.601500px;}
.y2d5{bottom:293.133000px;}
.y24c{bottom:293.215500px;}
.y349{bottom:294.156009px;}
.y49{bottom:298.489489px;}
.yca{bottom:300.018000px;}
.yb9{bottom:300.019500px;}
.yec{bottom:300.021000px;}
.y79{bottom:300.022500px;}
.y3ad{bottom:300.362934px;}
.y24b{bottom:303.591000px;}
.y2f2{bottom:303.592500px;}
.y2b3{bottom:303.594000px;}
.y1fb{bottom:306.057000px;}
.y249{bottom:306.058500px;}
.yc9{bottom:306.652500px;}
.y151{bottom:307.673035px;}
.y171{bottom:307.846500px;}
.y348{bottom:308.357831px;}
.y381{bottom:309.292022px;}
.y20e{bottom:309.883500px;}
.y285{bottom:311.076000px;}
.y2d4{bottom:312.607500px;}
.y24a{bottom:312.690000px;}
.y312{bottom:313.543500px;}
.y3ac{bottom:314.564757px;}
.y265{bottom:316.518000px;}
.y29{bottom:317.199075px;}
.yb8{bottom:319.494000px;}
.yeb{bottom:319.495500px;}
.y78{bottom:319.497000px;}
.y22c{bottom:320.089500px;}
.y150{bottom:321.958856px;}
.y347{bottom:322.643653px;}
.y2f1{bottom:323.065500px;}
.y2b2{bottom:323.068500px;}
.y380{bottom:323.579044px;}
.y48{bottom:324.001170px;}
.y186{bottom:325.530000px;}
.y1fa{bottom:325.531500px;}
.y248{bottom:325.533000px;}
.y170{bottom:327.406500px;}
.y3ab{bottom:328.850578px;}
.y20d{bottom:329.442000px;}
.y284{bottom:330.634500px;}
.y2d3{bottom:332.080500px;}
.y264{bottom:335.991000px;}
.y14f{bottom:336.245878px;}
.y37f{bottom:337.864865px;}
.y28{bottom:338.118075px;}
.y139{bottom:338.967000px;}
.yb7{bottom:338.968500px;}
.y77{bottom:338.970000px;}
.y22b{bottom:339.564000px;}
.y47{bottom:340.499764px;}
.y310{bottom:340.500000px;}
.y311{bottom:341.265000px;}
.y346{bottom:342.118209px;}
.y2f0{bottom:342.624000px;}
.y2b1{bottom:342.627000px;}
.y1f9{bottom:345.090000px;}
.y247{bottom:345.091500px;}
.y16f{bottom:346.879500px;}
.y3aa{bottom:348.325135px;}
.y283{bottom:350.109000px;}
.y14e{bottom:350.448356px;}
.y2d2{bottom:351.639000px;}
.y20c{bottom:354.868500px;}
.y345{bottom:356.404031px;}
.y46{bottom:356.997158px;}
.y37e{bottom:357.339422px;}
.y138{bottom:358.525500px;}
.yb6{bottom:358.527000px;}
.y76{bottom:358.528500px;}
.y22a{bottom:359.122500px;}
.y27{bottom:359.122575px;}
.y30f{bottom:359.974500px;}
.y263{bottom:361.501500px;}
.y2ef{bottom:362.098500px;}
.y2b0{bottom:362.101500px;}
.y3a9{bottom:362.610956px;}
.y1f8{bottom:364.564500px;}
.y246{bottom:364.566000px;}
.y14d{bottom:364.735378px;}
.y185{bottom:364.819500px;}
.y16e{bottom:366.354000px;}
.y1b9{bottom:368.391000px;}
.y282{bottom:369.582000px;}
.y344{bottom:370.605853px;}
.y2d1{bottom:371.113500px;}
.y37d{bottom:371.540044px;}
.y45{bottom:373.494551px;}
.y3a8{bottom:376.812778px;}
.yb5{bottom:378.000000px;}
.yea{bottom:378.001500px;}
.y75{bottom:378.003000px;}
.y229{bottom:378.597000px;}
.y14c{bottom:378.936179px;}
.y26{bottom:380.127075px;}
.y1f7{bottom:381.571500px;}
.y2ee{bottom:381.573000px;}
.y2af{bottom:381.574500px;}
.y137{bottom:384.037500px;}
.y245{bottom:384.039000px;}
.y1f6{bottom:384.040500px;}
.y184{bottom:384.294000px;}
.y37c{bottom:385.827066px;}
.y16d{bottom:385.912500px;}
.y30e{bottom:387.016500px;}
.y1b8{bottom:387.865500px;}
.y281{bottom:389.140500px;}
.y44{bottom:389.991945px;}
.y343{bottom:390.164409px;}
.y2d0{bottom:390.588000px;}
.y14b{bottom:393.222000px;}
.y3a7{bottom:396.372534px;}
.yc8{bottom:397.474500px;}
.ye9{bottom:397.476000px;}
.y74{bottom:397.477500px;}
.y20b{bottom:397.815000px;}
.y228{bottom:398.071500px;}
.y2ed{bottom:401.131500px;}
.y25{bottom:401.131575px;}
.y2ae{bottom:401.134500px;}
.yb4{bottom:403.513900px;}
.y244{bottom:403.597500px;}
.y1f5{bottom:403.599000px;}
.y183{bottom:403.768500px;}
.y342{bottom:404.366231px;}
.y37b{bottom:405.301622px;}
.y16c{bottom:405.387000px;}
.y43{bottom:406.489339px;}
.y30c{bottom:406.491000px;}
.y30d{bottom:407.256000px;}
.y1b7{bottom:407.424000px;}
.y280{bottom:408.615000px;}
.y2cf{bottom:410.061000px;}
.y3a6{bottom:410.573156px;}
.yc7{bottom:417.033000px;}
.ye8{bottom:417.034500px;}
.y73{bottom:417.036000px;}
.y20a{bottom:417.289500px;}
.y262{bottom:417.628500px;}
.y227{bottom:417.630000px;}
.y341{bottom:418.653252px;}
.y37a{bottom:419.587444px;}
.y2ec{bottom:420.604500px;}
.y2ea{bottom:420.606000px;}
.y2ad{bottom:420.607500px;}
.y24{bottom:422.137500px;}
.y1f4{bottom:423.072000px;}
.y182{bottom:423.327000px;}
.yb3{bottom:424.517925px;}
.y16b{bottom:424.860000px;}
.y3a5{bottom:424.860178px;}
.y30a{bottom:425.964000px;}
.y30b{bottom:426.814500px;}
.y1b6{bottom:426.898500px;}
.y2eb{bottom:427.237500px;}
.y27f{bottom:428.089500px;}
.y42{bottom:432.001020px;}
.y379{bottom:433.874465px;}
.y1de{bottom:434.041500px;}
.yc6{bottom:436.507500px;}
.ye7{bottom:436.509000px;}
.y72{bottom:436.510500px;}
.y209{bottom:436.762500px;}
.y226{bottom:437.103000px;}
.y340{bottom:438.126609px;}
.y2ce{bottom:438.634500px;}
.y2e9{bottom:440.080500px;}
.y1f3{bottom:442.546500px;}
.y181{bottom:442.800000px;}
.y23{bottom:443.142000px;}
.y3a4{bottom:444.333534px;}
.y16a{bottom:444.334500px;}
.y136{bottom:445.354500px;}
.y309{bottom:445.522500px;}
.y1b5{bottom:446.371500px;}
.y27e{bottom:447.562500px;}
.y2ac{bottom:449.095500px;}
.yb2{bottom:451.474500px;}
.y33f{bottom:452.413630px;}
.y378{bottom:453.347822px;}
.yc5{bottom:455.980500px;}
.ye6{bottom:455.982000px;}
.y71{bottom:455.983500px;}
.y225{bottom:456.577500px;}
.y41{bottom:457.512701px;}
.y2cd{bottom:458.109000px;}
.y3a3{bottom:458.620556px;}
.y2e8{bottom:459.639000px;}
.y243{bottom:462.019500px;}
.y115{bottom:462.019975px;}
.y1f2{bottom:462.021000px;}
.y208{bottom:462.274500px;}
.y169{bottom:463.893000px;}
.y22{bottom:464.146500px;}
.y135{bottom:464.913000px;}
.y1b4{bottom:465.930000px;}
.y33e{bottom:466.614253px;}
.y27d{bottom:467.122500px;}
.y377{bottom:467.549644px;}
.y180{bottom:468.313425px;}
.y2ab{bottom:468.570000px;}
.y308{bottom:472.480500px;}
.y3a2{bottom:472.822378px;}
.ye5{bottom:475.540500px;}
.y70{bottom:475.542000px;}
.y224{bottom:476.136000px;}
.y2cc{bottom:477.582000px;}
.yc4{bottom:481.492975px;}
.y242{bottom:481.578000px;}
.y1f1{bottom:481.579500px;}
.y376{bottom:481.836666px;}
.y1a0{bottom:482.173500px;}
.y114{bottom:483.024000px;}
.y40{bottom:483.024382px;}
.y168{bottom:483.367500px;}
.y134{bottom:484.387500px;}
.y21{bottom:485.151000px;}
.y33d{bottom:486.088809px;}
.y27c{bottom:486.597000px;}
.y2e7{bottom:488.127000px;}
.y2aa{bottom:488.128500px;}
.y241{bottom:488.211000px;}
.y1b3{bottom:491.442000px;}
.y307{bottom:492.039000px;}
.y3a1{bottom:492.295735px;}
.y260{bottom:493.143000px;}
.y19f{bottom:495.013500px;}
.y1dd{bottom:495.015000px;}
.y6f{bottom:495.016500px;}
.y17f{bottom:495.270000px;}
.y261{bottom:495.609000px;}
.y223{bottom:495.610500px;}
.y25f{bottom:495.612000px;}
.yb1{bottom:495.613500px;}
.y2cb{bottom:497.140500px;}
.y33c{bottom:500.375831px;}
.ye4{bottom:500.967000px;}
.y1f0{bottom:501.052500px;}
.y375{bottom:501.310022px;}
.yc3{bottom:502.497000px;}
.y167{bottom:502.840500px;}
.y133{bottom:503.862000px;}
.y207{bottom:505.221000px;}
.y27b{bottom:506.070000px;}
.y20{bottom:506.155500px;}
.y3a0{bottom:506.582756px;}
.y2e6{bottom:507.601500px;}
.y2a9{bottom:507.603000px;}
.y240{bottom:507.685500px;}
.y3f{bottom:508.536063px;}
.y1db{bottom:512.022000px;}
.y221{bottom:512.617500px;}
.y1dc{bottom:514.488000px;}
.y1da{bottom:514.489500px;}
.y6e{bottom:514.491000px;}
.y33b{bottom:514.661652px;}
.y222{bottom:515.083500px;}
.y220{bottom:515.085000px;}
.yb0{bottom:515.088000px;}
.y374{bottom:515.597044px;}
.y2ca{bottom:516.615000px;}
.y305{bottom:518.997000px;}
.y306{bottom:519.762000px;}
.y19e{bottom:520.525500px;}
.y39f{bottom:520.868578px;}
.y166{bottom:522.400500px;}
.y132{bottom:523.420500px;}
.y206{bottom:524.695500px;}
.y3e{bottom:525.033457px;}
.y27a{bottom:525.630000px;}
.y1ef{bottom:526.564500px;}
.y2a8{bottom:527.076000px;}
.y1f{bottom:527.160000px;}
.y23f{bottom:527.244000px;}
.y373{bottom:529.797666px;}
.y1d9{bottom:533.962500px;}
.y6d{bottom:533.964000px;}
.y33a{bottom:534.136209px;}
.y1b2{bottom:534.304500px;}
.y25e{bottom:534.643500px;}
.y21f{bottom:534.645000px;}
.yaf{bottom:534.646500px;}
.y113{bottom:534.900000px;}
.y2c9{bottom:536.089500px;}
.y303{bottom:538.470000px;}
.y304{bottom:539.320500px;}
.y39e{bottom:540.343134px;}
.y165{bottom:541.873500px;}
.y131{bottom:542.893500px;}
.y205{bottom:544.168500px;}
.y279{bottom:545.103000px;}
.y23e{bottom:546.037500px;}
.y2e5{bottom:546.634500px;}
.y2a7{bottom:546.636000px;}
.y1e{bottom:548.164500px;}
.y339{bottom:548.336831px;}
.y372{bottom:549.357422px;}
.y3d{bottom:550.545138px;}
.y1d8{bottom:550.969500px;}
.ye3{bottom:552.334500px;}
.y1d7{bottom:553.521000px;}
.y6c{bottom:553.522500px;}
.y1b1{bottom:553.777500px;}
.y21e{bottom:554.118000px;}
.yae{bottom:554.119500px;}
.y112{bottom:554.374500px;}
.y39d{bottom:554.544957px;}
.y2c8{bottom:555.562500px;}
.y302{bottom:558.030000px;}
.y164{bottom:561.348000px;}
.y130{bottom:562.368000px;}
.y338{bottom:562.623853px;}
.y1ee{bottom:563.130000px;}
.y371{bottom:563.559244px;}
.y204{bottom:563.727000px;}
.y278{bottom:564.577500px;}
.y1ed{bottom:565.597500px;}
.y2e4{bottom:566.107500px;}
.y3c{bottom:567.042532px;}
.y39c{bottom:568.830778px;}
.y1d{bottom:569.169000px;}
.y1d6{bottom:570.529500px;}
.y1b0{bottom:570.784500px;}
.ye2{bottom:571.893000px;}
.y6b{bottom:572.997000px;}
.y1af{bottom:573.336000px;}
.y19d{bottom:573.591000px;}
.y21d{bottom:573.592500px;}
.yad{bottom:573.594000px;}
.y111{bottom:573.933000px;}
.y2c7{bottom:575.121000px;}
.y2a6{bottom:575.124000px;}
.y163{bottom:580.906500px;}
.y2c6{bottom:581.754000px;}
.y12f{bottom:581.926500px;}
.y337{bottom:582.097209px;}
.y1eb{bottom:582.604500px;}
.y370{bottom:583.117800px;}
.y203{bottom:583.201500px;}
.y3b{bottom:583.541126px;}
.y277{bottom:584.136000px;}
.y301{bottom:584.986500px;}
.y1ec{bottom:585.156000px;}
.y1ea{bottom:585.157500px;}
.y23d{bottom:585.159000px;}
.y2e3{bottom:585.582000px;}
.y39b{bottom:588.305335px;}
.y1c{bottom:590.173500px;}
.ye1{bottom:591.366000px;}
.y1d5{bottom:592.470000px;}
.y6a{bottom:592.471500px;}
.y19c{bottom:593.065500px;}
.y21c{bottom:593.067000px;}
.yac{bottom:593.068500px;}
.y110{bottom:593.407500px;}
.y2a5{bottom:594.597000px;}
.y336{bottom:596.384231px;}
.y36f{bottom:597.319622px;}
.y1ae{bottom:598.762500px;}
.y3a{bottom:600.038520px;}
.y162{bottom:600.381000px;}
.y12e{bottom:601.401000px;}
.y39a{bottom:602.591156px;}
.y202{bottom:602.676000px;}
.y276{bottom:603.610500px;}
.y1e9{bottom:604.632000px;}
.y23c{bottom:604.633500px;}
.y2e2{bottom:605.140500px;}
.y25d{bottom:610.072500px;}
.ye0{bottom:610.840500px;}
.y1b{bottom:611.178000px;}
.y36e{bottom:611.605443px;}
.y1d4{bottom:612.028500px;}
.y69{bottom:612.030000px;}
.y19b{bottom:612.624000px;}
.y21b{bottom:612.625500px;}
.yab{bottom:612.627000px;}
.y10f{bottom:612.880500px;}
.y2a4{bottom:614.071500px;}
.y335{bottom:615.858787px;}
.y38{bottom:616.535913px;}
.y39{bottom:616.790310px;}
.y161{bottom:619.854000px;}
.y12d{bottom:620.874000px;}
.y399{bottom:622.065713px;}
.y201{bottom:622.234500px;}
.y275{bottom:623.083500px;}
.y1e8{bottom:624.105000px;}
.y23b{bottom:624.106500px;}
.y334{bottom:630.144609px;}
.ydf{bottom:630.399000px;}
.y36d{bottom:631.080000px;}
.y68{bottom:631.504500px;}
.y19a{bottom:632.098500px;}
.yaa{bottom:632.101500px;}
.y10e{bottom:632.440500px;}
.y37{bottom:633.033307px;}
.y2e1{bottom:633.628500px;}
.y2a3{bottom:633.630000px;}
.y398{bottom:636.351534px;}
.y1d3{bottom:637.540500px;}
.y160{bottom:639.328500px;}
.y273{bottom:640.092000px;}
.y12c{bottom:640.348500px;}
.y1e7{bottom:641.112000px;}
.y1ad{bottom:641.707500px;}
.y274{bottom:642.642000px;}
.y272{bottom:642.646500px;}
.y1e6{bottom:643.663500px;}
.y23a{bottom:643.665000px;}
.y1a{bottom:644.173500px;}
.y36c{bottom:645.365821px;}
.y333{bottom:649.619165px;}
.yde{bottom:649.873500px;}
.y397{bottom:650.553357px;}
.y67{bottom:650.977500px;}
.y199{bottom:651.573000px;}
.ya9{bottom:651.574500px;}
.y10d{bottom:651.913500px;}
.y2e0{bottom:653.103000px;}
.y2a2{bottom:653.104500px;}
.y36{bottom:657.609000px;}
.y15f{bottom:658.887000px;}
.y36b{bottom:659.567644px;}
.y12b{bottom:659.907000px;}
.y1e4{bottom:660.585000px;}
.y1ac{bottom:661.182000px;}
.y271{bottom:662.119500px;}
.y1e5{bottom:663.136500px;}
.y1e3{bottom:663.138000px;}
.y239{bottom:663.139500px;}
.y332{bottom:663.904987px;}
.y200{bottom:667.219500px;}
.ydd{bottom:669.346500px;}
.y396{bottom:670.111912px;}
.y66{bottom:670.536000px;}
.y198{bottom:671.131500px;}
.ya8{bottom:671.133000px;}
.y10c{bottom:671.388000px;}
.y2a1{bottom:672.577500px;}
.y331{bottom:678.106809px;}
.y15e{bottom:678.361500px;}
.y36a{bottom:679.041001px;}
.y12a{bottom:679.381500px;}
.y1ab{bottom:680.740500px;}
.y270{bottom:681.594000px;}
.y1d2{bottom:682.612500px;}
.y238{bottom:682.614000px;}
.y395{bottom:684.313735px;}
.y300{bottom:685.758000px;}
.ydc{bottom:688.906500px;}
.y65{bottom:690.010500px;}
.y197{bottom:690.604500px;}
.y21a{bottom:690.606000px;}
.ya7{bottom:690.607500px;}
.y10b{bottom:690.861000px;}
.y2c5{bottom:692.136000px;}
.y2a0{bottom:692.137500px;}
.y369{bottom:693.328022px;}
.y330{bottom:697.580166px;}
.y1a9{bottom:697.663500px;}
.y15d{bottom:697.834500px;}
.y394{bottom:698.600756px;}
.y129{bottom:698.856000px;}
.y1aa{bottom:700.213500px;}
.y1a8{bottom:700.215000px;}
.y26f{bottom:701.067000px;}
.y1d1{bottom:702.085500px;}
.y237{bottom:702.087000px;}
.y19{bottom:704.467275px;}
.y2ff{bottom:705.316500px;}
.y219{bottom:707.613000px;}
.y368{bottom:707.615043px;}
.ydb{bottom:708.379500px;}
.y64{bottom:709.485000px;}
.y196{bottom:710.079000px;}
.ya6{bottom:710.082000px;}
.y10a{bottom:710.421000px;}
.y29f{bottom:711.610500px;}
.y32f{bottom:711.867187px;}
.y393{bottom:712.802578px;}
.y15c{bottom:717.394500px;}
.y128{bottom:718.414500px;}
.y1a7{bottom:719.689500px;}
.y26e{bottom:720.627000px;}
.y1d0{bottom:721.644000px;}
.y1e2{bottom:721.645500px;}
.y236{bottom:721.647000px;}
.y2fe{bottom:724.791000px;}
.y32e{bottom:726.154209px;}
.y218{bottom:727.086000px;}
.y367{bottom:727.088400px;}
.yda{bottom:727.854000px;}
.y63{bottom:728.958000px;}
.y195{bottom:729.637500px;}
.ya5{bottom:729.640500px;}
.y109{bottom:729.894000px;}
.y2c4{bottom:731.083500px;}
.y2df{bottom:731.085000px;}
.y392{bottom:732.361134px;}
.y18{bottom:734.486100px;}
.y15b{bottom:736.867500px;}
.y127{bottom:737.887500px;}
.y1a6{bottom:739.164000px;}
.y29e{bottom:740.098500px;}
.y26d{bottom:740.100000px;}
.y1cf{bottom:741.118500px;}
.y235{bottom:741.120000px;}
.y366{bottom:741.290222px;}
.y2fd{bottom:744.264000px;}
.y35{bottom:744.520500px;}
.y32d{bottom:745.627565px;}
.y391{bottom:746.562956px;}
.yd9{bottom:747.328500px;}
.y62{bottom:748.516500px;}
.y60{bottom:748.518000px;}
.y194{bottom:749.112000px;}
.ya4{bottom:749.115000px;}
.y108{bottom:749.368500px;}
.y17{bottom:749.452313px;}
.y2c3{bottom:750.643500px;}
.y61{bottom:755.149500px;}
.y15a{bottom:756.342000px;}
.y126{bottom:757.362000px;}
.y1a5{bottom:758.722500px;}
.y29d{bottom:759.573000px;}
.y32c{bottom:759.914587px;}
.y1ce{bottom:760.593000px;}
.y234{bottom:760.594500px;}
.y365{bottom:760.848778px;}
.y34{bottom:761.782500px;}
.y16{bottom:764.419726px;}
.y25c{bottom:766.119000px;}
.yd8{bottom:766.887000px;}
.y5f{bottom:767.991000px;}
.y193{bottom:768.585000px;}
.y191{bottom:768.586500px;}
.ya3{bottom:768.588000px;}
.y107{bottom:768.927000px;}
.y2fc{bottom:769.776000px;}
.y2c2{bottom:770.116500px;}
.y364{bottom:775.050600px;}
.y192{bottom:775.303500px;}
.y1a4{bottom:775.729500px;}
.y159{bottom:775.900500px;}
.y125{bottom:776.920500px;}
.y1a3{bottom:778.195500px;}
.y33{bottom:778.960500px;}
.y29c{bottom:779.131500px;}
.y32b{bottom:779.387943px;}
.y15{bottom:779.471138px;}
.y1cd{bottom:780.151500px;}
.y233{bottom:780.153000px;}
.yd7{bottom:786.360000px;}
.y190{bottom:788.059500px;}
.y18e{bottom:788.061000px;}
.ya2{bottom:788.062500px;}
.y106{bottom:788.401500px;}
.y363{bottom:789.337622px;}
.y2c1{bottom:789.591000px;}
.y5e{bottom:793.501500px;}
.y32a{bottom:793.589766px;}
.y14{bottom:794.438550px;}
.y390{bottom:794.609156px;}
.y18f{bottom:794.778000px;}
.y158{bottom:795.375000px;}
.y32{bottom:796.224000px;}
.y124{bottom:796.395000px;}
.y1cb{bottom:797.158500px;}
.y1a2{bottom:797.668500px;}
.y2de{bottom:798.604500px;}
.y29b{bottom:798.606000px;}
.y1cc{bottom:799.624500px;}
.y1ca{bottom:799.626000px;}
.y232{bottom:799.627500px;}
.yd6{bottom:805.834500px;}
.y93{bottom:806.594592px;}
.y18d{bottom:807.619500px;}
.ya1{bottom:807.621000px;}
.y105{bottom:807.874500px;}
.y362{bottom:808.810978px;}
.y2c0{bottom:809.064000px;}
.y2be{bottom:809.067000px;}
.y13{bottom:809.489962px;}
.y329{bottom:813.148321px;}
.y31{bottom:813.486000px;}
.y157{bottom:814.848000px;}
.y2bf{bottom:815.782500px;}
.y123{bottom:815.868000px;}
.y29a{bottom:818.079000px;}
.y1c9{bottom:819.099000px;}
.y231{bottom:819.100500px;}
.y92{bottom:823.091986px;}
.y361{bottom:823.098000px;}
.y1a1{bottom:823.180500px;}
.y12{bottom:824.457375px;}
.y216{bottom:824.626500px;}
.yd5{bottom:825.393000px;}
.y217{bottom:827.092500px;}
.y18c{bottom:827.094000px;}
.ya0{bottom:827.095500px;}
.y328{bottom:827.350144px;}
.y104{bottom:827.434500px;}
.y2bd{bottom:828.625500px;}
.y156{bottom:834.408000px;}
.y360{bottom:837.298622px;}
.y299{bottom:837.637500px;}
.y1c8{bottom:838.659000px;}
.y11{bottom:839.423588px;}
.y122{bottom:841.380475px;}
.y327{bottom:841.637165px;}
.y38f{bottom:842.571356px;}
.yd4{bottom:844.867500px;}
.y9f{bottom:846.568500px;}
.y103{bottom:846.907500px;}
.y2bc{bottom:848.100000px;}
.y91{bottom:848.603667px;}
.y155{bottom:853.881000px;}
.y10{bottom:854.475000px;}
.y35f{bottom:856.858378px;}
.y298{bottom:857.112000px;}
.y1c7{bottom:858.132000px;}
.y230{bottom:858.133500px;}
.y326{bottom:861.110522px;}
.y121{bottom:862.384500px;}
.yd3{bottom:864.340500px;}
.y90{bottom:865.101061px;}
.y9e{bottom:866.127000px;}
.y26c{bottom:866.128500px;}
.y102{bottom:866.382000px;}
.y5d{bottom:870.040500px;}
.y35e{bottom:871.059000px;}
.y154{bottom:873.355500px;}
.y325{bottom:875.397543px;}
.y297{bottom:876.585000px;}
.y295{bottom:876.588000px;}
.y1c6{bottom:877.606500px;}
.y22f{bottom:877.608000px;}
.ye{bottom:881.433000px;}
.y8f{bottom:881.598455px;}
.y296{bottom:883.303500px;}
.y35d{bottom:885.346022px;}
.y2fb{bottom:885.600000px;}
.y9d{bottom:885.601500px;}
.y101{bottom:885.855000px;}
.yff{bottom:885.856500px;}
.yf{bottom:887.470500px;}
.y5c{bottom:889.513500px;}
.y324{bottom:889.598166px;}
.y38e{bottom:890.618756px;}
.y100{bottom:892.573500px;}
.y153{bottom:892.828500px;}
.y1c4{bottom:894.613500px;}
.y294{bottom:896.061000px;}
.y1c5{bottom:897.079500px;}
.y1e1{bottom:897.081000px;}
.y1c3{bottom:897.082500px;}
.yc{bottom:897.930000px;}
.ya{bottom:897.931500px;}
.y8e{bottom:898.095849px;}
.yd{bottom:898.353900px;}
.y142{bottom:899.972090px;}
.yf8{bottom:899.972569px;}
.y25b{bottom:902.608500px;}
.yb{bottom:903.969000px;}
.y35c{bottom:904.820578px;}
.y18b{bottom:905.074500px;}
.y9c{bottom:905.076000px;}
.yfe{bottom:905.415000px;}
.y5b{bottom:908.988000px;}
.y323{bottom:909.157921px;}
.y7{bottom:914.428500px;}
.y8d{bottom:914.594442px;}
.y8{bottom:914.768700px;}
.y293{bottom:915.621000px;}
.y1c2{bottom:916.641000px;}
.y35b{bottom:919.106400px;}
.y9{bottom:920.466000px;}
.yf7{bottom:923.188679px;}
.y322{bottom:923.359744px;}
.y18a{bottom:924.633000px;}
.y9b{bottom:924.634500px;}
.yfd{bottom:924.888000px;}
.y17e{bottom:928.460090px;}
.y5a{bottom:928.462500px;}
.y4{bottom:930.925500px;}
.y8c{bottom:931.091836px;}
.y6{bottom:931.264350px;}
.y35a{bottom:933.308222px;}
.y1c1{bottom:933.646500px;}
.y292{bottom:935.094000px;}
.y1c0{bottom:936.114000px;}
.y5{bottom:936.964500px;}
.yf6{bottom:937.473534px;}
.y141{bottom:937.474378px;}
.y38d{bottom:938.580956px;}
.y321{bottom:942.833100px;}
.y189{bottom:944.107500px;}
.y9a{bottom:944.109000px;}
.y8b{bottom:947.589230px;}
.y59{bottom:948.021000px;}
.y140{bottom:951.675000px;}
.yf5{bottom:951.675356px;}
.y13e{bottom:951.676679px;}
.y359{bottom:952.866778px;}
.y291{bottom:954.568500px;}
.y1bf{bottom:955.588500px;}
.y13f{bottom:957.033000px;}
.y320{bottom:957.120122px;}
.y99{bottom:963.582000px;}
.y8a{bottom:964.086624px;}
.yf4{bottom:965.962378px;}
.y358{bottom:967.068600px;}
.y58{bottom:967.494000px;}
.y3{bottom:968.430900px;}
.y290{bottom:974.127000px;}
.y1be{bottom:975.147000px;}
.y31f{bottom:976.593478px;}
.yf3{bottom:980.163657px;}
.y13d{bottom:980.164679px;}
.y17d{bottom:980.165035px;}
.y89{bottom:980.584018px;}
.y357{bottom:981.355622px;}
.y120{bottom:982.801069px;}
.y98{bottom:983.140500px;}
.y25a{bottom:983.142000px;}
.y57{bottom:986.968500px;}
.y31e{bottom:990.880500px;}
.y28f{bottom:993.601500px;}
.yf2{bottom:994.450679px;}
.y17c{bottom:994.450856px;}
.y1bd{bottom:994.621500px;}
.y88{bottom:997.081411px;}
.y356{bottom:1000.828978px;}
.y2{bottom:1002.189000px;}
.y188{bottom:1002.613500px;}
.y97{bottom:1002.615000px;}
.y11f{bottom:1006.102378px;}
.y56{bottom:1006.527000px;}
.y13c{bottom:1008.737878px;}
.yf1{bottom:1008.738712px;}
.y31d{bottom:1010.353856px;}
.y87{bottom:1013.578805px;}
.y1bc{bottom:1014.094500px;}
.y355{bottom:1015.116000px;}
.y11e{bottom:1020.303535px;}
.y96{bottom:1022.089500px;}
.y13b{bottom:1022.938679px;}
.y17b{bottom:1022.938856px;}
.yf0{bottom:1022.940535px;}
.y31c{bottom:1024.640878px;}
.y55{bottom:1026.001500px;}
.y187{bottom:1028.806500px;}
.y354{bottom:1029.316622px;}
.y86{bottom:1030.076199px;}
.y1e0{bottom:1031.103000px;}
.y1bb{bottom:1033.653000px;}
.y11d{bottom:1034.589356px;}
.y1{bottom:1035.949500px;}
.y13a{bottom:1037.225878px;}
.yef{bottom:1037.226356px;}
.y31b{bottom:1038.841500px;}
.y259{bottom:1039.096500px;}
.y95{bottom:1041.562500px;}
.y54{bottom:1045.474500px;}
.y85{bottom:1046.574793px;}
.y11c{bottom:1048.791179px;}
.yee{bottom:1051.428179px;}
.y1ff{bottom:1058.569500px;}
.y1ba{bottom:1059.079500px;}
.y94{bottom:1061.121000px;}
.y84{bottom:1063.072186px;}
.y11b{bottom:1063.077000px;}
.yed{bottom:1065.714000px;}
.y83{bottom:1118.692500px;}
.h1b{height:23.996250px;}
.h22{height:26.636936px;}
.h4{height:27.932275px;}
.h12{height:28.476725px;}
.hf{height:29.996550px;}
.hb{height:34.968313px;}
.h13{height:35.999550px;}
.h1{height:37.199535px;}
.h6{height:37.247534px;}
.h5{height:38.416992px;}
.hd{height:39.119511px;}
.hc{height:40.559493px;}
.h3{height:41.904000px;}
.h11{height:42.720000px;}
.h14{height:43.382221px;}
.h1d{height:43.383646px;}
.h1a{height:43.384356px;}
.h19{height:43.385560px;}
.h16{height:43.388936px;}
.h1e{height:43.718931px;}
.h18{height:43.720356px;}
.h15{height:43.724441px;}
.h17{height:43.724931px;}
.h1c{height:43.726356px;}
.h8{height:44.175000px;}
.ha{height:45.000000px;}
.h10{height:53.999550px;}
.h23{height:54.305070px;}
.h1f{height:54.307470px;}
.h21{height:54.311070px;}
.h20{height:54.317070px;}
.h9{height:55.799535px;}
.he{height:55.871534px;}
.h7{height:70.905000px;}
.h2{height:88.020000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x29{left:54.000000px;}
.x2a{left:71.433000px;}
.x33{left:77.725950px;}
.x3d{left:89.121150px;}
.x37{left:110.551050px;}
.x2b{left:122.030368px;}
.x34{left:124.242450px;}
.x1{left:300.018000px;}
.x6b{left:306.991500px;}
.x30{left:309.969000px;}
.x38{left:311.584500px;}
.x28{left:314.985000px;}
.x2c{left:316.431000px;}
.x2e{left:317.964000px;}
.x6e{left:321.108000px;}
.x6c{left:329.527500px;}
.x2d{left:331.569000px;}
.x31{left:334.545000px;}
.x7a{left:336.415500px;}
.x7b{left:347.896500px;}
.x87{left:350.445000px;}
.x7c{left:353.253000px;}
.x3f{left:355.380000px;}
.x32{left:356.569500px;}
.xd{left:365.075100px;}
.x63{left:366.859500px;}
.xe{left:369.156000px;}
.x18{left:372.046500px;}
.xf{left:374.683500px;}
.x19{left:377.574000px;}
.x40{left:379.956000px;}
.x2{left:381.657000px;}
.x81{left:385.653000px;}
.x3{left:387.270000px;}
.x64{left:390.585000px;}
.x7d{left:393.987000px;}
.x61{left:395.773500px;}
.x65{left:399.174000px;}
.x62{left:401.046000px;}
.x48{left:417.118500px;}
.x88{left:425.280000px;}
.x22{left:427.323000px;}
.x23{left:432.850500px;}
.x74{left:433.870500px;}
.x49{left:439.993500px;}
.x6f{left:451.474500px;}
.x58{left:455.980500px;}
.x59{left:464.569500px;}
.x39{left:468.652500px;}
.x1a{left:470.606550px;}
.x10{left:472.564500px;}
.x70{left:474.009000px;}
.x3a{left:480.642000px;}
.x4{left:483.279000px;}
.x11{left:486.510000px;}
.x5{left:497.224500px;}
.x68{left:501.732000px;}
.x45{left:512.446500px;}
.x89{left:520.353000px;}
.x69{left:524.352000px;}
.x1b{left:527.413200px;}
.x35{left:529.285500px;}
.x46{left:535.237500px;}
.x47{left:536.257500px;}
.x6d{left:539.319000px;}
.x73{left:545.868000px;}
.x4a{left:551.565000px;}
.x24{left:552.585000px;}
.x36{left:553.776000px;}
.x25{left:558.112500px;}
.x6{left:560.494500px;}
.x5a{left:562.450500px;}
.x1c{left:565.002000px;}
.x7{left:566.022000px;}
.x1d{left:570.529500px;}
.x4b{left:574.441500px;}
.x86{left:576.481500px;}
.x6a{left:579.288000px;}
.x76{left:584.220000px;}
.x41{left:586.431000px;}
.x77{left:589.578000px;}
.x4f{left:592.554000px;}
.x5f{left:595.615500px;}
.x12{left:597.147000px;}
.x78{left:601.057500px;}
.x60{left:604.290000px;}
.x79{left:606.415500px;}
.x42{left:607.606500px;}
.x43{left:616.024500px;}
.x13{left:619.426500px;}
.x44{left:624.699000px;}
.x80{left:626.145000px;}
.x8{left:635.753550px;}
.x26{left:641.281500px;}
.x52{left:648.424500px;}
.x27{left:655.143000px;}
.x66{left:658.885500px;}
.x1e{left:661.096500px;}
.x2f{left:665.602500px;}
.x75{left:668.835000px;}
.x53{left:671.301000px;}
.x1f{left:674.958000px;}
.x82{left:680.740500px;}
.x9{left:681.760500px;}
.xa{left:687.288000px;}
.x83{left:705.316500px;}
.x84{left:710.589000px;}
.x14{left:711.694500px;}
.x5b{left:714.246000px;}
.x15{left:717.222000px;}
.x5c{left:722.835000px;}
.x3b{left:724.536000px;}
.x3c{left:730.998000px;}
.x85{left:735.079500px;}
.x56{left:749.877000px;}
.x4c{left:751.918500px;}
.x57{left:755.235000px;}
.x7e{left:761.358000px;}
.x71{left:771.136500px;}
.x5d{left:773.347500px;}
.x4d{left:774.708000px;}
.x72{left:776.580000px;}
.x5e{left:778.620000px;}
.x7f{left:783.978000px;}
.xb{left:785.424000px;}
.x20{left:789.420000px;}
.xc{left:790.951500px;}
.x21{left:794.947500px;}
.x67{left:803.962500px;}
.x50{left:812.635500px;}
.x54{left:813.996000px;}
.x55{left:822.585000px;}
.x3e{left:827.092500px;}
.x4e{left:830.919000px;}
.x51{left:835.426500px;}
.x16{left:839.253000px;}
.x17{left:844.866000px;}
@media print{
.v5{vertical-align:-15.722667pt;}
.v3{vertical-align:-6.643200pt;}
.v1{vertical-align:-5.136000pt;}
.v7{vertical-align:-3.024000pt;}
.v2{vertical-align:-1.204800pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.416134pt;}
.v6{vertical-align:19.340800pt;}
.lsa{letter-spacing:-1.123200pt;}
.lsf{letter-spacing:-1.067200pt;}
.ls42{letter-spacing:-1.066667pt;}
.ls13{letter-spacing:-1.066653pt;}
.ls46{letter-spacing:-0.853323pt;}
.ls2f{letter-spacing:-0.533333pt;}
.ls30{letter-spacing:-0.472835pt;}
.ls48{letter-spacing:-0.426661pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.213331pt;}
.ls10{letter-spacing:-0.212800pt;}
.lsd{letter-spacing:-0.211997pt;}
.lsb{letter-spacing:-0.211200pt;}
.ls11{letter-spacing:-0.211198pt;}
.ls20{letter-spacing:-0.190548pt;}
.lsc{letter-spacing:-0.188775pt;}
.ls16{letter-spacing:-0.188423pt;}
.lse{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.704000pt;}
.ls44{letter-spacing:1.008000pt;}
.ls6{letter-spacing:1.514648pt;}
.ls3d{letter-spacing:2.496533pt;}
.ls41{letter-spacing:2.501867pt;}
.ls1a{letter-spacing:2.603200pt;}
.ls1b{letter-spacing:2.608533pt;}
.ls2c{letter-spacing:2.618955pt;}
.ls2b{letter-spacing:2.624288pt;}
.ls3f{letter-spacing:2.800533pt;}
.ls3c{letter-spacing:2.805867pt;}
.ls45{letter-spacing:2.816000pt;}
.ls27{letter-spacing:2.821333pt;}
.ls2d{letter-spacing:2.922955pt;}
.ls1{letter-spacing:3.208533pt;}
.ls0{letter-spacing:5.179200pt;}
.ls7{letter-spacing:5.747128pt;}
.ls2{letter-spacing:6.691200pt;}
.ls8{letter-spacing:8.396695pt;}
.ls1c{letter-spacing:9.006821pt;}
.ls1e{letter-spacing:9.109219pt;}
.ls5{letter-spacing:9.232951pt;}
.ls47{letter-spacing:9.245751pt;}
.ls1f{letter-spacing:9.258551pt;}
.ls1d{letter-spacing:9.360950pt;}
.ls33{letter-spacing:11.333333pt;}
.ls29{letter-spacing:11.338667pt;}
.ls3e{letter-spacing:11.397333pt;}
.ls3b{letter-spacing:11.413333pt;}
.ls37{letter-spacing:11.450667pt;}
.ls19{letter-spacing:11.456000pt;}
.ls25{letter-spacing:11.466667pt;}
.ls14{letter-spacing:11.498667pt;}
.ls23{letter-spacing:11.504000pt;}
.ls35{letter-spacing:11.546667pt;}
.ls17{letter-spacing:11.557333pt;}
.ls18{letter-spacing:11.562667pt;}
.ls24{letter-spacing:11.573333pt;}
.ls38{letter-spacing:11.616000pt;}
.ls34{letter-spacing:11.621333pt;}
.ls40{letter-spacing:11.669333pt;}
.ls39{letter-spacing:11.690667pt;}
.ls2e{letter-spacing:11.696000pt;}
.ls26{letter-spacing:11.712000pt;}
.ls28{letter-spacing:11.760000pt;}
.ls15{letter-spacing:11.802667pt;}
.ls31{letter-spacing:11.808000pt;}
.ls36{letter-spacing:11.813333pt;}
.ls22{letter-spacing:11.861333pt;}
.ls21{letter-spacing:11.866667pt;}
.ls3a{letter-spacing:11.893333pt;}
.ls32{letter-spacing:11.898667pt;}
.ls2a{letter-spacing:12.069333pt;}
.ls3{letter-spacing:18.474436pt;}
.ls4{letter-spacing:18.478702pt;}
.ws16d{word-spacing:-37.386667pt;}
.ws185{word-spacing:-37.332267pt;}
.wsdc{word-spacing:-29.866293pt;}
.wse3{word-spacing:-29.865600pt;}
.ws1b6{word-spacing:-25.968000pt;}
.wsf3{word-spacing:-25.898667pt;}
.wsb2{word-spacing:-25.877333pt;}
.ws151{word-spacing:-25.840000pt;}
.ws155{word-spacing:-25.834667pt;}
.wsfb{word-spacing:-25.829333pt;}
.ws147{word-spacing:-25.824000pt;}
.ws159{word-spacing:-25.808000pt;}
.ws149{word-spacing:-25.802667pt;}
.ws109{word-spacing:-25.797333pt;}
.ws150{word-spacing:-25.792000pt;}
.ws145{word-spacing:-25.786667pt;}
.ws197{word-spacing:-25.781333pt;}
.ws194{word-spacing:-25.776000pt;}
.ws8a{word-spacing:-25.770667pt;}
.ws143{word-spacing:-25.760000pt;}
.wsa3{word-spacing:-25.728000pt;}
.ws158{word-spacing:-25.717333pt;}
.ws184{word-spacing:-25.701333pt;}
.ws195{word-spacing:-25.696000pt;}
.ws1a8{word-spacing:-25.690667pt;}
.ws157{word-spacing:-25.680000pt;}
.ws15b{word-spacing:-25.669333pt;}
.ws15a{word-spacing:-25.664000pt;}
.ws1b9{word-spacing:-25.658667pt;}
.ws1a3{word-spacing:-25.653333pt;}
.wsfe{word-spacing:-25.648000pt;}
.ws1bd{word-spacing:-25.637333pt;}
.ws171{word-spacing:-25.632000pt;}
.ws19c{word-spacing:-25.610667pt;}
.ws19d{word-spacing:-25.605333pt;}
.ws9d{word-spacing:-25.600000pt;}
.ws8c{word-spacing:-25.594667pt;}
.ws188{word-spacing:-25.578667pt;}
.ws19e{word-spacing:-25.557333pt;}
.ws198{word-spacing:-25.536000pt;}
.ws14a{word-spacing:-25.530667pt;}
.ws146{word-spacing:-25.525333pt;}
.ws199{word-spacing:-25.514667pt;}
.ws19a{word-spacing:-25.509333pt;}
.ws1a7{word-spacing:-25.504000pt;}
.ws14b{word-spacing:-25.498667pt;}
.ws196{word-spacing:-25.493333pt;}
.ws148{word-spacing:-25.488000pt;}
.ws14c{word-spacing:-25.477333pt;}
.ws1b5{word-spacing:-25.445333pt;}
.ws1b3{word-spacing:-25.440000pt;}
.ws1bc{word-spacing:-25.434667pt;}
.ws1b4{word-spacing:-25.386667pt;}
.ws1a5{word-spacing:-25.381333pt;}
.ws190{word-spacing:-25.376000pt;}
.ws1a0{word-spacing:-25.370667pt;}
.ws19f{word-spacing:-25.365333pt;}
.ws1ab{word-spacing:-25.274667pt;}
.ws1ad{word-spacing:-25.269333pt;}
.ws152{word-spacing:-25.253333pt;}
.ws192{word-spacing:-25.194667pt;}
.ws1b0{word-spacing:-25.125333pt;}
.ws1af{word-spacing:-25.002667pt;}
.ws1c4{word-spacing:-24.816000pt;}
.ws1c2{word-spacing:-24.533333pt;}
.ws3a{word-spacing:-22.442386pt;}
.wsd0{word-spacing:-20.885072pt;}
.wscd{word-spacing:-20.799740pt;}
.wscf{word-spacing:-20.769874pt;}
.ws129{word-spacing:-20.705875pt;}
.wsec{word-spacing:-20.680275pt;}
.wse7{word-spacing:-20.624809pt;}
.wse6{word-spacing:-20.620542pt;}
.wscc{word-spacing:-20.437078pt;}
.wsd2{word-spacing:-20.334679pt;}
.ws1d0{word-spacing:-17.772652pt;}
.ws14f{word-spacing:-17.766252pt;}
.ws141{word-spacing:-17.759852pt;}
.ws18b{word-spacing:-14.784000pt;}
.wsf{word-spacing:-13.276800pt;}
.ws1d5{word-spacing:-12.213333pt;}
.ws17a{word-spacing:-12.000000pt;}
.ws24{word-spacing:-11.775853pt;}
.ws1c8{word-spacing:-11.146667pt;}
.ws45{word-spacing:-9.599880pt;}
.ws107{word-spacing:-9.557214pt;}
.ws13d{word-spacing:-3.961567pt;}
.ws1d1{word-spacing:-3.763169pt;}
.ws32{word-spacing:-3.641570pt;}
.ws182{word-spacing:-3.628770pt;}
.ws21d{word-spacing:-3.255426pt;}
.ws20e{word-spacing:-3.178627pt;}
.ws235{word-spacing:-3.148761pt;}
.ws215{word-spacing:-3.123161pt;}
.ws20c{word-spacing:-3.106095pt;}
.ws22d{word-spacing:-3.071962pt;}
.ws1fc{word-spacing:-3.054895pt;}
.ws11{word-spacing:-3.043200pt;}
.ws225{word-spacing:-3.042095pt;}
.ws232{word-spacing:-3.029295pt;}
.ws1ea{word-spacing:-3.012229pt;}
.ws210{word-spacing:-3.007962pt;}
.ws216{word-spacing:-2.999429pt;}
.wsb{word-spacing:-2.995200pt;}
.ws21c{word-spacing:-2.995163pt;}
.ws22e{word-spacing:-2.986629pt;}
.ws22a{word-spacing:-2.982363pt;}
.ws202{word-spacing:-2.978096pt;}
.ws17{word-spacing:-2.973829pt;}
.ws5{word-spacing:-2.971200pt;}
.ws1f{word-spacing:-2.969563pt;}
.ws207{word-spacing:-2.965296pt;}
.ws21b{word-spacing:-2.961030pt;}
.ws209{word-spacing:-2.956763pt;}
.ws1e2{word-spacing:-2.952496pt;}
.ws18{word-spacing:-2.948230pt;}
.ws4{word-spacing:-2.947200pt;}
.ws229{word-spacing:-2.939697pt;}
.ws1fe{word-spacing:-2.935430pt;}
.ws219{word-spacing:-2.931163pt;}
.ws31{word-spacing:-2.928533pt;}
.ws1ed{word-spacing:-2.926897pt;}
.ws27{word-spacing:-2.923467pt;}
.ws30{word-spacing:-2.918400pt;}
.ws1e3{word-spacing:-2.918364pt;}
.ws1e0{word-spacing:-2.914097pt;}
.ws7{word-spacing:-2.913600pt;}
.ws1fb{word-spacing:-2.909830pt;}
.wsa{word-spacing:-2.908800pt;}
.ws218{word-spacing:-2.901297pt;}
.ws13{word-spacing:-2.899200pt;}
.ws1d{word-spacing:-2.897030pt;}
.ws2f{word-spacing:-2.893067pt;}
.ws1f6{word-spacing:-2.892764pt;}
.ws200{word-spacing:-2.888497pt;}
.ws1c{word-spacing:-2.884231pt;}
.ws29{word-spacing:-2.882933pt;}
.ws217{word-spacing:-2.879964pt;}
.ws1e{word-spacing:-2.875697pt;}
.ws1a{word-spacing:-2.871431pt;}
.ws214{word-spacing:-2.867164pt;}
.wsd{word-spacing:-2.865600pt;}
.ws1b{word-spacing:-2.862898pt;}
.ws1df{word-spacing:-2.858631pt;}
.ws2a{word-spacing:-2.857600pt;}
.ws228{word-spacing:-2.854364pt;}
.ws2d{word-spacing:-2.852533pt;}
.wse{word-spacing:-2.851200pt;}
.ws7a{word-spacing:-2.850098pt;}
.ws12{word-spacing:-2.846400pt;}
.ws234{word-spacing:-2.841564pt;}
.ws14{word-spacing:-2.827200pt;}
.ws9{word-spacing:-2.822400pt;}
.ws1f3{word-spacing:-2.820231pt;}
.ws20{word-spacing:-2.815965pt;}
.ws6{word-spacing:-2.812800pt;}
.ws1f0{word-spacing:-2.811698pt;}
.ws224{word-spacing:-2.807432pt;}
.ws1e6{word-spacing:-2.803165pt;}
.ws2e{word-spacing:-2.801867pt;}
.ws23{word-spacing:-2.798898pt;}
.ws25{word-spacing:-2.796800pt;}
.ws211{word-spacing:-2.790365pt;}
.ws10{word-spacing:-2.788800pt;}
.wsc{word-spacing:-2.784000pt;}
.ws16{word-spacing:-2.781832pt;}
.ws37{word-spacing:-2.777565pt;}
.ws230{word-spacing:-2.773299pt;}
.ws2c{word-spacing:-2.771467pt;}
.ws1e5{word-spacing:-2.769032pt;}
.ws208{word-spacing:-2.764765pt;}
.ws236{word-spacing:-2.760499pt;}
.ws226{word-spacing:-2.756232pt;}
.ws39{word-spacing:-2.747699pt;}
.ws3{word-spacing:-2.745600pt;}
.ws204{word-spacing:-2.743432pt;}
.ws221{word-spacing:-2.734899pt;}
.ws1fd{word-spacing:-2.730633pt;}
.ws205{word-spacing:-2.726366pt;}
.ws201{word-spacing:-2.722099pt;}
.ws1e8{word-spacing:-2.713566pt;}
.ws220{word-spacing:-2.687966pt;}
.ws1f5{word-spacing:-2.683700pt;}
.ws231{word-spacing:-2.670900pt;}
.ws1e7{word-spacing:-2.666633pt;}
.ws8{word-spacing:-2.664000pt;}
.ws20b{word-spacing:-2.653833pt;}
.ws2b{word-spacing:-2.649867pt;}
.ws21a{word-spacing:-2.645300pt;}
.ws19{word-spacing:-2.628234pt;}
.ws20f{word-spacing:-2.623967pt;}
.ws22f{word-spacing:-2.619701pt;}
.ws1ef{word-spacing:-2.611167pt;}
.ws21e{word-spacing:-2.598368pt;}
.ws1e4{word-spacing:-2.589834pt;}
.ws26{word-spacing:-2.589067pt;}
.ws1eb{word-spacing:-2.585568pt;}
.ws22b{word-spacing:-2.581301pt;}
.ws1e9{word-spacing:-2.572768pt;}
.ws1ec{word-spacing:-2.568501pt;}
.ws21f{word-spacing:-2.559968pt;}
.ws1e1{word-spacing:-2.555701pt;}
.ws206{word-spacing:-2.551435pt;}
.ws2{word-spacing:-2.534400pt;}
.ws22{word-spacing:-2.530102pt;}
.ws227{word-spacing:-2.525835pt;}
.ws223{word-spacing:-2.521568pt;}
.ws1ff{word-spacing:-2.517302pt;}
.ws21{word-spacing:-2.513035pt;}
.ws1ee{word-spacing:-2.500235pt;}
.ws1f4{word-spacing:-2.495969pt;}
.ws22c{word-spacing:-2.478902pt;}
.ws233{word-spacing:-2.474636pt;}
.ws203{word-spacing:-2.470369pt;}
.ws1{word-spacing:-2.467200pt;}
.ws213{word-spacing:-2.461836pt;}
.ws1f1{word-spacing:-2.457569pt;}
.ws15{word-spacing:-2.444769pt;}
.ws212{word-spacing:-2.440503pt;}
.ws20d{word-spacing:-2.414903pt;}
.ws0{word-spacing:-2.355171pt;}
.ws28{word-spacing:-2.280000pt;}
.ws1f8{word-spacing:-2.193039pt;}
.ws1fa{word-spacing:-2.073574pt;}
.ws222{word-spacing:-2.030908pt;}
.ws1f7{word-spacing:-1.809044pt;}
.ws1f9{word-spacing:-1.804777pt;}
.ws4f{word-spacing:-0.938655pt;}
.ws58{word-spacing:-0.857589pt;}
.ws12e{word-spacing:-0.853333pt;}
.ws52{word-spacing:-0.814923pt;}
.wsb0{word-spacing:-0.810667pt;}
.ws163{word-spacing:-0.800000pt;}
.ws16a{word-spacing:-0.794667pt;}
.ws4c{word-spacing:-0.793590pt;}
.ws1b7{word-spacing:-0.789333pt;}
.ws49{word-spacing:-0.780790pt;}
.wsb1{word-spacing:-0.773333pt;}
.ws80{word-spacing:-0.772257pt;}
.ws138{word-spacing:-0.742391pt;}
.ws7d{word-spacing:-0.738124pt;}
.wsaf{word-spacing:-0.730667pt;}
.ws42{word-spacing:-0.725324pt;}
.ws59{word-spacing:-0.721058pt;}
.ws16b{word-spacing:-0.720000pt;}
.ws7f{word-spacing:-0.716791pt;}
.wse8{word-spacing:-0.708258pt;}
.ws47{word-spacing:-0.703991pt;}
.ws57{word-spacing:-0.699725pt;}
.ws82{word-spacing:-0.695458pt;}
.ws101{word-spacing:-0.691191pt;}
.ws1b8{word-spacing:-0.688000pt;}
.ws44{word-spacing:-0.682658pt;}
.ws113{word-spacing:-0.674125pt;}
.wsd4{word-spacing:-0.665592pt;}
.ws4b{word-spacing:-0.661325pt;}
.ws55{word-spacing:-0.657058pt;}
.ws40{word-spacing:-0.652792pt;}
.wsdf{word-spacing:-0.648525pt;}
.ws4e{word-spacing:-0.644259pt;}
.ws124{word-spacing:-0.635725pt;}
.ws4a{word-spacing:-0.631459pt;}
.ws133{word-spacing:-0.627192pt;}
.ws128{word-spacing:-0.622926pt;}
.ws180{word-spacing:-0.618667pt;}
.ws104{word-spacing:-0.618659pt;}
.ws119{word-spacing:-0.610126pt;}
.ws84{word-spacing:-0.605859pt;}
.ws50{word-spacing:-0.601592pt;}
.ws53{word-spacing:-0.597326pt;}
.ws127{word-spacing:-0.593059pt;}
.ws7e{word-spacing:-0.588793pt;}
.ws56{word-spacing:-0.584526pt;}
.wsb9{word-spacing:-0.581333pt;}
.wsf2{word-spacing:-0.580259pt;}
.ws5d{word-spacing:-0.576000pt;}
.wseb{word-spacing:-0.575993pt;}
.ws12a{word-spacing:-0.571726pt;}
.wscb{word-spacing:-0.567460pt;}
.ws4d{word-spacing:-0.563193pt;}
.ws142{word-spacing:-0.560000pt;}
.ws11a{word-spacing:-0.558926pt;}
.ws3b{word-spacing:-0.554660pt;}
.ws10b{word-spacing:-0.549333pt;}
.ws54{word-spacing:-0.541860pt;}
.ws3f{word-spacing:-0.537593pt;}
.ws134{word-spacing:-0.533327pt;}
.ws106{word-spacing:-0.524793pt;}
.ws13b{word-spacing:-0.522667pt;}
.ws135{word-spacing:-0.520527pt;}
.wsae{word-spacing:-0.517333pt;}
.ws12b{word-spacing:-0.516260pt;}
.wsba{word-spacing:-0.512000pt;}
.ws136{word-spacing:-0.511994pt;}
.ws46{word-spacing:-0.507727pt;}
.ws14e{word-spacing:-0.506667pt;}
.ws83{word-spacing:-0.503460pt;}
.ws102{word-spacing:-0.499194pt;}
.ws17c{word-spacing:-0.496000pt;}
.wsdd{word-spacing:-0.494927pt;}
.ws5b{word-spacing:-0.490661pt;}
.ws3c{word-spacing:-0.486394pt;}
.ws170{word-spacing:-0.485333pt;}
.ws3d{word-spacing:-0.482127pt;}
.wsed{word-spacing:-0.477861pt;}
.ws122{word-spacing:-0.474667pt;}
.ws7c{word-spacing:-0.473594pt;}
.ws66{word-spacing:-0.469333pt;}
.ws48{word-spacing:-0.469327pt;}
.ws43{word-spacing:-0.465061pt;}
.ws13a{word-spacing:-0.464000pt;}
.ws74{word-spacing:-0.458667pt;}
.ws9b{word-spacing:-0.453333pt;}
.ws3e{word-spacing:-0.452261pt;}
.ws8b{word-spacing:-0.448000pt;}
.ws117{word-spacing:-0.447994pt;}
.ws167{word-spacing:-0.442667pt;}
.ws7b{word-spacing:-0.439461pt;}
.ws108{word-spacing:-0.435195pt;}
.ws11c{word-spacing:-0.430928pt;}
.ws10e{word-spacing:-0.426667pt;}
.wse2{word-spacing:-0.426661pt;}
.wsda{word-spacing:-0.422395pt;}
.wsc5{word-spacing:-0.421333pt;}
.ws51{word-spacing:-0.418128pt;}
.ws69{word-spacing:-0.416000pt;}
.wsd9{word-spacing:-0.413861pt;}
.ws166{word-spacing:-0.410667pt;}
.ws76{word-spacing:-0.405333pt;}
.wsf0{word-spacing:-0.401062pt;}
.ws173{word-spacing:-0.400000pt;}
.ws154{word-spacing:-0.394667pt;}
.ws126{word-spacing:-0.392528pt;}
.wsc4{word-spacing:-0.389333pt;}
.wsdb{word-spacing:-0.388262pt;}
.ws36{word-spacing:-0.384000pt;}
.ws9a{word-spacing:-0.378667pt;}
.ws160{word-spacing:-0.373333pt;}
.ws11f{word-spacing:-0.371195pt;}
.ws10a{word-spacing:-0.368000pt;}
.wsad{word-spacing:-0.362667pt;}
.ws115{word-spacing:-0.358396pt;}
.ws64{word-spacing:-0.357333pt;}
.wsde{word-spacing:-0.354129pt;}
.ws6f{word-spacing:-0.352000pt;}
.ws114{word-spacing:-0.349862pt;}
.ws35{word-spacing:-0.346667pt;}
.ws139{word-spacing:-0.345596pt;}
.wsc2{word-spacing:-0.341333pt;}
.ws5f{word-spacing:-0.336000pt;}
.ws116{word-spacing:-0.332796pt;}
.ws67{word-spacing:-0.330667pt;}
.ws87{word-spacing:-0.325333pt;}
.wsd1{word-spacing:-0.324263pt;}
.ws111{word-spacing:-0.320000pt;}
.wsff{word-spacing:-0.319996pt;}
.wsc1{word-spacing:-0.314667pt;}
.ws81{word-spacing:-0.311463pt;}
.ws5e{word-spacing:-0.309333pt;}
.ws41{word-spacing:-0.307196pt;}
.ws78{word-spacing:-0.304000pt;}
.ws65{word-spacing:-0.298667pt;}
.wsf7{word-spacing:-0.293333pt;}
.wsfd{word-spacing:-0.288000pt;}
.ws153{word-spacing:-0.282667pt;}
.wsea{word-spacing:-0.281596pt;}
.wsc8{word-spacing:-0.277333pt;}
.wsd8{word-spacing:-0.277330pt;}
.ws5a{word-spacing:-0.273063pt;}
.wsac{word-spacing:-0.272000pt;}
.ws63{word-spacing:-0.266667pt;}
.ws61{word-spacing:-0.261333pt;}
.ws33{word-spacing:-0.256000pt;}
.wse1{word-spacing:-0.251730pt;}
.ws60{word-spacing:-0.250667pt;}
.ws8f{word-spacing:-0.245333pt;}
.ws105{word-spacing:-0.243197pt;}
.ws10d{word-spacing:-0.240000pt;}
.ws132{word-spacing:-0.238930pt;}
.wsf8{word-spacing:-0.234667pt;}
.ws10f{word-spacing:-0.229333pt;}
.wsee{word-spacing:-0.226131pt;}
.ws6e{word-spacing:-0.224000pt;}
.ws125{word-spacing:-0.221864pt;}
.ws96{word-spacing:-0.218667pt;}
.wsa1{word-spacing:-0.213333pt;}
.ws62{word-spacing:-0.208000pt;}
.ws9f{word-spacing:-0.202667pt;}
.wsa9{word-spacing:-0.197333pt;}
.wsc0{word-spacing:-0.192000pt;}
.wsb6{word-spacing:-0.186667pt;}
.ws8e{word-spacing:-0.181333pt;}
.ws6a{word-spacing:-0.176000pt;}
.ws34{word-spacing:-0.170667pt;}
.wsbe{word-spacing:-0.165333pt;}
.wsb5{word-spacing:-0.160000pt;}
.ws88{word-spacing:-0.154667pt;}
.ws94{word-spacing:-0.149333pt;}
.wsd5{word-spacing:-0.149331pt;}
.ws120{word-spacing:-0.145065pt;}
.ws16f{word-spacing:-0.144000pt;}
.wsbd{word-spacing:-0.138667pt;}
.wsef{word-spacing:-0.136532pt;}
.wsa0{word-spacing:-0.133333pt;}
.ws72{word-spacing:-0.128000pt;}
.ws86{word-spacing:-0.122667pt;}
.wsb8{word-spacing:-0.117333pt;}
.wsa5{word-spacing:-0.112000pt;}
.ws169{word-spacing:-0.106667pt;}
.ws71{word-spacing:-0.101333pt;}
.wsa8{word-spacing:-0.096000pt;}
.ws91{word-spacing:-0.090667pt;}
.ws99{word-spacing:-0.085333pt;}
.ws123{word-spacing:-0.081066pt;}
.ws9c{word-spacing:-0.080000pt;}
.wsb3{word-spacing:-0.074667pt;}
.ws79{word-spacing:-0.069333pt;}
.ws131{word-spacing:-0.068266pt;}
.ws95{word-spacing:-0.064000pt;}
.ws6c{word-spacing:-0.058667pt;}
.wsaa{word-spacing:-0.053333pt;}
.wsca{word-spacing:-0.051199pt;}
.wsf9{word-spacing:-0.048000pt;}
.wsce{word-spacing:-0.046933pt;}
.wsbb{word-spacing:-0.042667pt;}
.ws85{word-spacing:-0.037333pt;}
.ws6b{word-spacing:-0.032000pt;}
.ws100{word-spacing:-0.029866pt;}
.ws15e{word-spacing:-0.026667pt;}
.wsd7{word-spacing:-0.025600pt;}
.wsa7{word-spacing:-0.021333pt;}
.wse5{word-spacing:-0.017066pt;}
.ws93{word-spacing:-0.016000pt;}
.ws156{word-spacing:-0.010667pt;}
.wsab{word-spacing:-0.005333pt;}
.ws5c{word-spacing:0.000000pt;}
.ws130{word-spacing:0.004267pt;}
.ws8d{word-spacing:0.005333pt;}
.ws89{word-spacing:0.010667pt;}
.ws15c{word-spacing:0.016000pt;}
.ws14d{word-spacing:0.021333pt;}
.wse4{word-spacing:0.025600pt;}
.ws10c{word-spacing:0.026667pt;}
.ws112{word-spacing:0.029866pt;}
.wsa2{word-spacing:0.032000pt;}
.wsbc{word-spacing:0.037333pt;}
.wsf6{word-spacing:0.042667pt;}
.ws75{word-spacing:0.048000pt;}
.wsf5{word-spacing:0.053333pt;}
.wsd6{word-spacing:0.055466pt;}
.ws110{word-spacing:0.058667pt;}
.wsb4{word-spacing:0.069333pt;}
.ws11e{word-spacing:0.072532pt;}
.ws6d{word-spacing:0.074667pt;}
.wsb7{word-spacing:0.076799pt;}
.ws77{word-spacing:0.080000pt;}
.ws11b{word-spacing:0.081066pt;}
.wse0{word-spacing:0.085332pt;}
.ws18d{word-spacing:0.085333pt;}
.ws162{word-spacing:0.089599pt;}
.ws68{word-spacing:0.090667pt;}
.wsc3{word-spacing:0.096000pt;}
.ws12c{word-spacing:0.101333pt;}
.ws164{word-spacing:0.106667pt;}
.ws15d{word-spacing:0.112000pt;}
.wsa4{word-spacing:0.117333pt;}
.ws97{word-spacing:0.121599pt;}
.ws12d{word-spacing:0.122667pt;}
.ws92{word-spacing:0.128000pt;}
.ws13f{word-spacing:0.133333pt;}
.wsc9{word-spacing:0.144000pt;}
.ws19b{word-spacing:0.149333pt;}
.ws90{word-spacing:0.154667pt;}
.ws1cf{word-spacing:0.160000pt;}
.wsbf{word-spacing:0.165333pt;}
.wsd3{word-spacing:0.166398pt;}
.wsa6{word-spacing:0.170667pt;}
.ws191{word-spacing:0.176000pt;}
.ws140{word-spacing:0.179199pt;}
.ws1cc{word-spacing:0.181333pt;}
.wsc6{word-spacing:0.185598pt;}
.ws12f{word-spacing:0.186667pt;}
.wsf1{word-spacing:0.187731pt;}
.ws1bb{word-spacing:0.192000pt;}
.ws1b2{word-spacing:0.197333pt;}
.wsc7{word-spacing:0.202667pt;}
.wsfc{word-spacing:0.208000pt;}
.ws137{word-spacing:0.209064pt;}
.ws16c{word-spacing:0.213333pt;}
.ws144{word-spacing:0.218667pt;}
.ws70{word-spacing:0.224000pt;}
.wsf4{word-spacing:0.229333pt;}
.wsfa{word-spacing:0.230398pt;}
.ws1ba{word-spacing:0.234667pt;}
.ws98{word-spacing:0.236798pt;}
.ws121{word-spacing:0.238930pt;}
.ws1cd{word-spacing:0.240000pt;}
.ws165{word-spacing:0.243198pt;}
.ws13c{word-spacing:0.250667pt;}
.ws174{word-spacing:0.262398pt;}
.ws103{word-spacing:0.268797pt;}
.ws161{word-spacing:0.268798pt;}
.ws73{word-spacing:0.272000pt;}
.ws118{word-spacing:0.273063pt;}
.ws13e{word-spacing:0.281598pt;}
.ws11d{word-spacing:0.285863pt;}
.ws1ac{word-spacing:0.293333pt;}
.wse9{word-spacing:0.298663pt;}
.ws1dd{word-spacing:0.304000pt;}
.ws18a{word-spacing:0.309333pt;}
.ws175{word-spacing:0.314667pt;}
.ws18f{word-spacing:0.320000pt;}
.ws187{word-spacing:0.325333pt;}
.ws15f{word-spacing:0.326397pt;}
.ws9e{word-spacing:0.336000pt;}
.ws176{word-spacing:0.352000pt;}
.ws168{word-spacing:0.358397pt;}
.ws183{word-spacing:0.362667pt;}
.ws1ae{word-spacing:0.368000pt;}
.ws179{word-spacing:0.384000pt;}
.ws1c9{word-spacing:0.389333pt;}
.ws1a2{word-spacing:0.400000pt;}
.ws1aa{word-spacing:0.416000pt;}
.ws1d3{word-spacing:0.426667pt;}
.ws172{word-spacing:0.428796pt;}
.ws189{word-spacing:0.432000pt;}
.ws18e{word-spacing:0.442667pt;}
.ws186{word-spacing:0.448000pt;}
.ws17b{word-spacing:0.458667pt;}
.ws17e{word-spacing:0.464000pt;}
.ws18c{word-spacing:0.474667pt;}
.ws1a4{word-spacing:0.480000pt;}
.ws1a6{word-spacing:0.485333pt;}
.ws193{word-spacing:0.501333pt;}
.ws16e{word-spacing:0.533333pt;}
.ws1b1{word-spacing:0.560000pt;}
.ws1d4{word-spacing:0.592000pt;}
.ws1a1{word-spacing:0.597333pt;}
.ws1c7{word-spacing:0.608000pt;}
.ws1d8{word-spacing:0.629333pt;}
.ws17f{word-spacing:0.645333pt;}
.ws1c0{word-spacing:0.650667pt;}
.ws1ce{word-spacing:0.672000pt;}
.ws1d6{word-spacing:0.677333pt;}
.ws1a9{word-spacing:0.746667pt;}
.ws1d9{word-spacing:0.752000pt;}
.ws1c6{word-spacing:0.757333pt;}
.ws1c1{word-spacing:0.762667pt;}
.ws1c5{word-spacing:0.773333pt;}
.ws1c3{word-spacing:0.800000pt;}
.ws177{word-spacing:0.821333pt;}
.ws181{word-spacing:0.842667pt;}
.ws178{word-spacing:0.858667pt;}
.ws1d7{word-spacing:0.869333pt;}
.ws1db{word-spacing:0.901333pt;}
.ws1dc{word-spacing:0.906667pt;}
.ws1da{word-spacing:0.912000pt;}
.ws1cb{word-spacing:0.928000pt;}
.ws17d{word-spacing:0.997333pt;}
.ws1ca{word-spacing:1.018667pt;}
.ws1d2{word-spacing:1.029333pt;}
.ws1be{word-spacing:1.109333pt;}
.ws1bf{word-spacing:1.557333pt;}
.ws38{word-spacing:30.630017pt;}
.ws1f2{word-spacing:41.637880pt;}
.ws20a{word-spacing:41.642146pt;}
.ws1de{word-spacing:41.697612pt;}
._e{margin-left:-23.409067pt;}
._10{margin-left:-21.218133pt;}
._7{margin-left:-14.992879pt;}
._11{margin-left:-3.530667pt;}
._0{margin-left:-0.989854pt;}
._d{width:0.930446pt;}
._b{width:1.956202pt;}
._2{width:3.709867pt;}
._3{width:8.354029pt;}
._4{width:10.035075pt;}
._9{width:11.146667pt;}
._5{width:12.484267pt;}
._8{width:13.378133pt;}
._a{width:14.905476pt;}
._1{width:22.195200pt;}
._f{width:43.370667pt;}
._c{width:1265.503114pt;}
._6{width:1288.346562pt;}
.fsb{font-size:28.440000pt;}
.fsa{font-size:29.865600pt;}
.fs3{font-size:31.995733pt;}
.fs9{font-size:35.551467pt;}
.fsc{font-size:37.332267pt;}
.fs4{font-size:39.999467pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs7{font-size:63.999467pt;}
.fs5{font-size:77.333333pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:48.000000pt;}
.yd2{bottom:110.665333pt;}
.y1df{bottom:110.665467pt;}
.yc2{bottom:110.666667pt;}
.y53{bottom:110.666724pt;}
.y11a{bottom:110.668000pt;}
.y82{bottom:110.669333pt;}
.y28e{bottom:112.557333pt;}
.y2f{bottom:113.234667pt;}
.y38c{bottom:116.943150pt;}
.y31a{bottom:117.320000pt;}
.y17a{bottom:117.700000pt;}
.y14a{bottom:120.416000pt;}
.y353{bottom:120.798566pt;}
.y2dd{bottom:121.853333pt;}
.yfc{bottom:122.079141pt;}
.y2fa{bottom:123.214667pt;}
.y2bb{bottom:123.217333pt;}
.y52{bottom:125.331074pt;}
.y214{bottom:125.782667pt;}
.y3b7{bottom:126.315833pt;}
.y258{bottom:127.974667pt;}
.y215{bottom:127.974800pt;}
.yd1{bottom:127.976000pt;}
.yc1{bottom:127.977333pt;}
.y81{bottom:127.978667pt;}
.y38b{bottom:129.641658pt;}
.y28d{bottom:129.866667pt;}
.y2e{bottom:130.621333pt;}
.y352{bottom:133.422408pt;}
.yfb{bottom:134.702983pt;}
.y179{bottom:135.009333pt;}
.y149{bottom:137.726667pt;}
.y3b6{bottom:138.939675pt;}
.y2dc{bottom:139.238667pt;}
.y51{bottom:139.995424pt;}
.y2f9{bottom:140.524000pt;}
.y2ba{bottom:140.526667pt;}
.y319{bottom:141.357333pt;}
.y38a{bottom:142.265500pt;}
.y257{bottom:145.360000pt;}
.yd0{bottom:145.361333pt;}
.yc0{bottom:145.362667pt;}
.y80{bottom:145.364000pt;}
.y351{bottom:146.120916pt;}
.y28c{bottom:147.177333pt;}
.yfa{bottom:147.402558pt;}
.y2d{bottom:147.930667pt;}
.y3b5{bottom:151.638183pt;}
.y178{bottom:152.320000pt;}
.y26b{bottom:153.300000pt;}
.y50{bottom:154.660840pt;}
.y147{bottom:155.036000pt;}
.y2db{bottom:156.549333pt;}
.y2b9{bottom:157.837333pt;}
.y389{bottom:159.650883pt;}
.yf9{bottom:160.025333pt;}
.y148{bottom:161.008000pt;}
.y213{bottom:162.670667pt;}
.ybf{bottom:162.672000pt;}
.y119{bottom:162.673333pt;}
.y7f{bottom:162.674667pt;}
.y350{bottom:163.431633pt;}
.y28b{bottom:164.562667pt;}
.y2c{bottom:165.241333pt;}
.y318{bottom:165.320000pt;}
.y2f8{bottom:165.846667pt;}
.y256{bottom:167.962667pt;}
.y3b4{bottom:168.948900pt;}
.y4f{bottom:169.325190pt;}
.y177{bottom:169.629333pt;}
.y26a{bottom:170.685333pt;}
.y388{bottom:172.274725pt;}
.y146{bottom:172.422667pt;}
.y2da{bottom:173.861333pt;}
.y2b8{bottom:175.222667pt;}
.y34f{bottom:176.130141pt;}
.y22e{bottom:177.789333pt;}
.ycf{bottom:179.981333pt;}
.ybe{bottom:179.982667pt;}
.y118{bottom:179.984000pt;}
.y7e{bottom:179.985333pt;}
.y3b3{bottom:181.648475pt;}
.y28a{bottom:181.873333pt;}
.y2b{bottom:182.550667pt;}
.y2f7{bottom:183.233333pt;}
.y4e{bottom:183.989540pt;}
.y387{bottom:184.974300pt;}
.y212{bottom:185.348000pt;}
.y176{bottom:187.016000pt;}
.y34e{bottom:188.753983pt;}
.y317{bottom:189.357333pt;}
.y145{bottom:189.732000pt;}
.y2d9{bottom:191.170667pt;}
.y2b7{bottom:192.533333pt;}
.y3b2{bottom:194.271250pt;}
.y269{bottom:196.008000pt;}
.yce{bottom:197.366667pt;}
.ybd{bottom:197.368000pt;}
.y117{bottom:197.369333pt;}
.y7d{bottom:197.370667pt;}
.y4d{bottom:198.653890pt;}
.y289{bottom:199.182667pt;}
.y2f6{bottom:200.542667pt;}
.y386{bottom:202.283950pt;}
.y1fe{bottom:202.658667pt;}
.y255{bottom:202.734667pt;}
.y175{bottom:204.325333pt;}
.y34d{bottom:206.139366pt;}
.y2a{bottom:206.589333pt;}
.y144{bottom:207.042667pt;}
.y2d8{bottom:208.556000pt;}
.y2b6{bottom:209.842667pt;}
.y3b1{bottom:211.657700pt;}
.y4c{bottom:213.318240pt;}
.y268{bottom:213.318667pt;}
.y316{bottom:213.320000pt;}
.ycd{bottom:214.677333pt;}
.ybc{bottom:214.678667pt;}
.y7c{bottom:214.680000pt;}
.y385{bottom:214.983525pt;}
.y288{bottom:216.568000pt;}
.y254{bottom:217.852000pt;}
.y2f5{bottom:217.853333pt;}
.y34c{bottom:218.763208pt;}
.y253{bottom:220.044000pt;}
.y251{bottom:220.045333pt;}
.y174{bottom:221.636000pt;}
.y211{bottom:223.446667pt;}
.y3b0{bottom:224.280475pt;}
.y143{bottom:224.352000pt;}
.y2d7{bottom:225.866667pt;}
.y252{bottom:226.016000pt;}
.y2b5{bottom:227.229333pt;}
.y34b{bottom:231.462783pt;}
.ycc{bottom:231.988000pt;}
.ybb{bottom:231.989333pt;}
.y7b{bottom:231.990667pt;}
.y384{bottom:232.293175pt;}
.y287{bottom:233.878667pt;}
.y250{bottom:235.162667pt;}
.y2f4{bottom:235.238667pt;}
.y4b{bottom:235.995290pt;}
.y3af{bottom:236.980050pt;}
.y22d{bottom:237.354667pt;}
.y1fd{bottom:237.356000pt;}
.y315{bottom:237.357333pt;}
.y267{bottom:238.641333pt;}
.y173{bottom:239.021333pt;}
.y210{bottom:240.832000pt;}
.y2d6{bottom:243.177333pt;}
.y24f{bottom:243.325333pt;}
.y383{bottom:244.992750pt;}
.y34a{bottom:248.772433pt;}
.ycb{bottom:249.297333pt;}
.yba{bottom:249.298667pt;}
.y116{bottom:249.300000pt;}
.y7a{bottom:249.301333pt;}
.y3ae{bottom:249.603892pt;}
.y4a{bottom:250.659640pt;}
.y24e{bottom:252.472000pt;}
.y2f3{bottom:252.549333pt;}
.y2b4{bottom:252.552000pt;}
.y152{bottom:252.850600pt;}
.y313{bottom:254.666667pt;}
.y24d{bottom:254.740000pt;}
.y1fc{bottom:254.741333pt;}
.y314{bottom:255.348000pt;}
.y266{bottom:256.026667pt;}
.y172{bottom:256.332000pt;}
.y382{bottom:257.616592pt;}
.y20f{bottom:258.142667pt;}
.y286{bottom:259.201333pt;}
.y2d5{bottom:260.562667pt;}
.y24c{bottom:260.636000pt;}
.y349{bottom:261.472008pt;}
.y49{bottom:265.323990pt;}
.yca{bottom:266.682667pt;}
.yb9{bottom:266.684000pt;}
.yec{bottom:266.685333pt;}
.y79{bottom:266.686667pt;}
.y3ad{bottom:266.989275pt;}
.y24b{bottom:269.858667pt;}
.y2f2{bottom:269.860000pt;}
.y2b3{bottom:269.861333pt;}
.y1fb{bottom:272.050667pt;}
.y249{bottom:272.052000pt;}
.yc9{bottom:272.580000pt;}
.y151{bottom:273.487142pt;}
.y171{bottom:273.641333pt;}
.y348{bottom:274.095850pt;}
.y381{bottom:274.926242pt;}
.y20e{bottom:275.452000pt;}
.y285{bottom:276.512000pt;}
.y2d4{bottom:277.873333pt;}
.y24a{bottom:277.946667pt;}
.y312{bottom:278.705333pt;}
.y3ac{bottom:279.613117pt;}
.y265{bottom:281.349333pt;}
.y29{bottom:281.954733pt;}
.yb8{bottom:283.994667pt;}
.yeb{bottom:283.996000pt;}
.y78{bottom:283.997333pt;}
.y22c{bottom:284.524000pt;}
.y150{bottom:286.185650pt;}
.y347{bottom:286.794358pt;}
.y2f1{bottom:287.169333pt;}
.y2b2{bottom:287.172000pt;}
.y380{bottom:287.625817pt;}
.y48{bottom:288.001040pt;}
.y186{bottom:289.360000pt;}
.y1fa{bottom:289.361333pt;}
.y248{bottom:289.362667pt;}
.y170{bottom:291.028000pt;}
.y3ab{bottom:292.311625pt;}
.y20d{bottom:292.837333pt;}
.y284{bottom:293.897333pt;}
.y2d3{bottom:295.182667pt;}
.y264{bottom:298.658667pt;}
.y14f{bottom:298.885224pt;}
.y37f{bottom:300.324325pt;}
.y28{bottom:300.549400pt;}
.y139{bottom:301.304000pt;}
.yb7{bottom:301.305333pt;}
.y77{bottom:301.306667pt;}
.y22b{bottom:301.834667pt;}
.y47{bottom:302.666457pt;}
.y310{bottom:302.666667pt;}
.y311{bottom:303.346667pt;}
.y346{bottom:304.105075pt;}
.y2f0{bottom:304.554667pt;}
.y2b1{bottom:304.557333pt;}
.y1f9{bottom:306.746667pt;}
.y247{bottom:306.748000pt;}
.y16f{bottom:308.337333pt;}
.y3aa{bottom:309.622342pt;}
.y283{bottom:311.208000pt;}
.y14e{bottom:311.509650pt;}
.y2d2{bottom:312.568000pt;}
.y20c{bottom:315.438667pt;}
.y345{bottom:316.803583pt;}
.y46{bottom:317.330807pt;}
.y37e{bottom:317.635042pt;}
.y138{bottom:318.689333pt;}
.yb6{bottom:318.690667pt;}
.y76{bottom:318.692000pt;}
.y22a{bottom:319.220000pt;}
.y27{bottom:319.220067pt;}
.y30f{bottom:319.977333pt;}
.y263{bottom:321.334667pt;}
.y2ef{bottom:321.865333pt;}
.y2b0{bottom:321.868000pt;}
.y3a9{bottom:322.320850pt;}
.y1f8{bottom:324.057333pt;}
.y246{bottom:324.058667pt;}
.y14d{bottom:324.209224pt;}
.y185{bottom:324.284000pt;}
.y16e{bottom:325.648000pt;}
.y1b9{bottom:327.458667pt;}
.y282{bottom:328.517333pt;}
.y344{bottom:329.427425pt;}
.y2d1{bottom:329.878667pt;}
.y37d{bottom:330.257817pt;}
.y45{bottom:331.995157pt;}
.y3a8{bottom:334.944692pt;}
.yb5{bottom:336.000000pt;}
.yea{bottom:336.001333pt;}
.y75{bottom:336.002667pt;}
.y229{bottom:336.530667pt;}
.y14c{bottom:336.832159pt;}
.y26{bottom:337.890733pt;}
.y1f7{bottom:339.174667pt;}
.y2ee{bottom:339.176000pt;}
.y2af{bottom:339.177333pt;}
.y137{bottom:341.366667pt;}
.y245{bottom:341.368000pt;}
.y1f6{bottom:341.369333pt;}
.y184{bottom:341.594667pt;}
.y37c{bottom:342.957392pt;}
.y16d{bottom:343.033333pt;}
.y30e{bottom:344.014667pt;}
.y1b8{bottom:344.769333pt;}
.y281{bottom:345.902667pt;}
.y44{bottom:346.659507pt;}
.y343{bottom:346.812808pt;}
.y2d0{bottom:347.189333pt;}
.y14b{bottom:349.530667pt;}
.y3a7{bottom:352.331141pt;}
.yc8{bottom:353.310667pt;}
.ye9{bottom:353.312000pt;}
.y74{bottom:353.313333pt;}
.y20b{bottom:353.613333pt;}
.y228{bottom:353.841333pt;}
.y2ed{bottom:356.561333pt;}
.y25{bottom:356.561400pt;}
.y2ae{bottom:356.564000pt;}
.yb4{bottom:358.679022pt;}
.y244{bottom:358.753333pt;}
.y1f5{bottom:358.754667pt;}
.y183{bottom:358.905333pt;}
.y342{bottom:359.436650pt;}
.y37b{bottom:360.268109pt;}
.y16c{bottom:360.344000pt;}
.y43{bottom:361.323857pt;}
.y30c{bottom:361.325333pt;}
.y30d{bottom:362.005333pt;}
.y1b7{bottom:362.154667pt;}
.y280{bottom:363.213333pt;}
.y2cf{bottom:364.498667pt;}
.y3a6{bottom:364.953917pt;}
.yc7{bottom:370.696000pt;}
.ye8{bottom:370.697333pt;}
.y73{bottom:370.698667pt;}
.y20a{bottom:370.924000pt;}
.y262{bottom:371.225333pt;}
.y227{bottom:371.226667pt;}
.y341{bottom:372.136224pt;}
.y37a{bottom:372.966617pt;}
.y2ec{bottom:373.870667pt;}
.y2ea{bottom:373.872000pt;}
.y2ad{bottom:373.873333pt;}
.y24{bottom:375.233333pt;}
.y1f4{bottom:376.064000pt;}
.y182{bottom:376.290667pt;}
.yb3{bottom:377.349266pt;}
.y16b{bottom:377.653333pt;}
.y3a5{bottom:377.653491pt;}
.y30a{bottom:378.634667pt;}
.y30b{bottom:379.390667pt;}
.y1b6{bottom:379.465333pt;}
.y2eb{bottom:379.766667pt;}
.y27f{bottom:380.524000pt;}
.y42{bottom:384.000907pt;}
.y379{bottom:385.666191pt;}
.y1de{bottom:385.814667pt;}
.yc6{bottom:388.006667pt;}
.ye7{bottom:388.008000pt;}
.y72{bottom:388.009333pt;}
.y209{bottom:388.233333pt;}
.y226{bottom:388.536000pt;}
.y340{bottom:389.445875pt;}
.y2ce{bottom:389.897333pt;}
.y2e9{bottom:391.182667pt;}
.y1f3{bottom:393.374667pt;}
.y181{bottom:393.600000pt;}
.y23{bottom:393.904000pt;}
.y3a4{bottom:394.963142pt;}
.y16a{bottom:394.964000pt;}
.y136{bottom:395.870667pt;}
.y309{bottom:396.020000pt;}
.y1b5{bottom:396.774667pt;}
.y27e{bottom:397.833333pt;}
.y2ac{bottom:399.196000pt;}
.yb2{bottom:401.310667pt;}
.y33f{bottom:402.145449pt;}
.y378{bottom:402.975842pt;}
.yc5{bottom:405.316000pt;}
.ye6{bottom:405.317333pt;}
.y71{bottom:405.318667pt;}
.y225{bottom:405.846667pt;}
.y41{bottom:406.677957pt;}
.y2cd{bottom:407.208000pt;}
.y3a3{bottom:407.662716pt;}
.y2e8{bottom:408.568000pt;}
.y243{bottom:410.684000pt;}
.y115{bottom:410.684422pt;}
.y1f2{bottom:410.685333pt;}
.y208{bottom:410.910667pt;}
.y169{bottom:412.349333pt;}
.y22{bottom:412.574667pt;}
.y135{bottom:413.256000pt;}
.y1b4{bottom:414.160000pt;}
.y33e{bottom:414.768225pt;}
.y27d{bottom:415.220000pt;}
.y377{bottom:415.599684pt;}
.y180{bottom:416.278600pt;}
.y2ab{bottom:416.506667pt;}
.y308{bottom:419.982667pt;}
.y3a2{bottom:420.286558pt;}
.ye5{bottom:422.702667pt;}
.y70{bottom:422.704000pt;}
.y224{bottom:423.232000pt;}
.y2cc{bottom:424.517333pt;}
.yc4{bottom:427.993756pt;}
.y242{bottom:428.069333pt;}
.y1f1{bottom:428.070667pt;}
.y376{bottom:428.299258pt;}
.y1a0{bottom:428.598667pt;}
.y114{bottom:429.354667pt;}
.y40{bottom:429.355007pt;}
.y168{bottom:429.660000pt;}
.y134{bottom:430.566667pt;}
.y21{bottom:431.245333pt;}
.y33d{bottom:432.078942pt;}
.y27c{bottom:432.530667pt;}
.y2e7{bottom:433.890667pt;}
.y2aa{bottom:433.892000pt;}
.y241{bottom:433.965333pt;}
.y1b3{bottom:436.837333pt;}
.y307{bottom:437.368000pt;}
.y3a1{bottom:437.596209pt;}
.y260{bottom:438.349333pt;}
.y19f{bottom:440.012000pt;}
.y1dd{bottom:440.013333pt;}
.y6f{bottom:440.014667pt;}
.y17f{bottom:440.240000pt;}
.y261{bottom:440.541333pt;}
.y223{bottom:440.542667pt;}
.y25f{bottom:440.544000pt;}
.yb1{bottom:440.545333pt;}
.y2cb{bottom:441.902667pt;}
.y33c{bottom:444.778516pt;}
.ye4{bottom:445.304000pt;}
.y1f0{bottom:445.380000pt;}
.y375{bottom:445.608909pt;}
.yc3{bottom:446.664000pt;}
.y167{bottom:446.969333pt;}
.y133{bottom:447.877333pt;}
.y207{bottom:449.085333pt;}
.y27b{bottom:449.840000pt;}
.y20{bottom:449.916000pt;}
.y3a0{bottom:450.295783pt;}
.y2e6{bottom:451.201333pt;}
.y2a9{bottom:451.202667pt;}
.y240{bottom:451.276000pt;}
.y3f{bottom:452.032056pt;}
.y1db{bottom:455.130667pt;}
.y221{bottom:455.660000pt;}
.y1dc{bottom:457.322667pt;}
.y1da{bottom:457.324000pt;}
.y6e{bottom:457.325333pt;}
.y33b{bottom:457.477024pt;}
.y222{bottom:457.852000pt;}
.y220{bottom:457.853333pt;}
.yb0{bottom:457.856000pt;}
.y374{bottom:458.308483pt;}
.y2ca{bottom:459.213333pt;}
.y305{bottom:461.330667pt;}
.y306{bottom:462.010667pt;}
.y19e{bottom:462.689333pt;}
.y39f{bottom:462.994291pt;}
.y166{bottom:464.356000pt;}
.y132{bottom:465.262667pt;}
.y206{bottom:466.396000pt;}
.y3e{bottom:466.696406pt;}
.y27a{bottom:467.226667pt;}
.y1ef{bottom:468.057333pt;}
.y2a8{bottom:468.512000pt;}
.y1f{bottom:468.586667pt;}
.y23f{bottom:468.661333pt;}
.y373{bottom:470.931259pt;}
.y1d9{bottom:474.633333pt;}
.y6d{bottom:474.634667pt;}
.y33a{bottom:474.787741pt;}
.y1b2{bottom:474.937333pt;}
.y25e{bottom:475.238667pt;}
.y21f{bottom:475.240000pt;}
.yaf{bottom:475.241333pt;}
.y113{bottom:475.466667pt;}
.y2c9{bottom:476.524000pt;}
.y303{bottom:478.640000pt;}
.y304{bottom:479.396000pt;}
.y39e{bottom:480.305008pt;}
.y165{bottom:481.665333pt;}
.y131{bottom:482.572000pt;}
.y205{bottom:483.705333pt;}
.y279{bottom:484.536000pt;}
.y23e{bottom:485.366667pt;}
.y2e5{bottom:485.897333pt;}
.y2a7{bottom:485.898667pt;}
.y1e{bottom:487.257333pt;}
.y339{bottom:487.410517pt;}
.y372{bottom:488.317708pt;}
.y3d{bottom:489.373456pt;}
.y1d8{bottom:489.750667pt;}
.ye3{bottom:490.964000pt;}
.y1d7{bottom:492.018667pt;}
.y6c{bottom:492.020000pt;}
.y1b1{bottom:492.246667pt;}
.y21e{bottom:492.549333pt;}
.yae{bottom:492.550667pt;}
.y112{bottom:492.777333pt;}
.y39d{bottom:492.928850pt;}
.y2c8{bottom:493.833333pt;}
.y302{bottom:496.026667pt;}
.y164{bottom:498.976000pt;}
.y130{bottom:499.882667pt;}
.y338{bottom:500.110091pt;}
.y1ee{bottom:500.560000pt;}
.y371{bottom:500.941550pt;}
.y204{bottom:501.090667pt;}
.y278{bottom:501.846667pt;}
.y1ed{bottom:502.753333pt;}
.y2e4{bottom:503.206667pt;}
.y3c{bottom:504.037806pt;}
.y39c{bottom:505.627358pt;}
.y1d{bottom:505.928000pt;}
.y1d6{bottom:507.137333pt;}
.y1b0{bottom:507.364000pt;}
.ye2{bottom:508.349333pt;}
.y6b{bottom:509.330667pt;}
.y1af{bottom:509.632000pt;}
.y19d{bottom:509.858667pt;}
.y21d{bottom:509.860000pt;}
.yad{bottom:509.861333pt;}
.y111{bottom:510.162667pt;}
.y2c7{bottom:511.218667pt;}
.y2a6{bottom:511.221333pt;}
.y163{bottom:516.361333pt;}
.y2c6{bottom:517.114667pt;}
.y12f{bottom:517.268000pt;}
.y337{bottom:517.419742pt;}
.y1eb{bottom:517.870667pt;}
.y370{bottom:518.326933pt;}
.y203{bottom:518.401333pt;}
.y3b{bottom:518.703223pt;}
.y277{bottom:519.232000pt;}
.y301{bottom:519.988000pt;}
.y1ec{bottom:520.138667pt;}
.y1ea{bottom:520.140000pt;}
.y23d{bottom:520.141333pt;}
.y2e3{bottom:520.517333pt;}
.y39b{bottom:522.938075pt;}
.y1c{bottom:524.598667pt;}
.ye1{bottom:525.658667pt;}
.y1d5{bottom:526.640000pt;}
.y6a{bottom:526.641333pt;}
.y19c{bottom:527.169333pt;}
.y21c{bottom:527.170667pt;}
.yac{bottom:527.172000pt;}
.y110{bottom:527.473333pt;}
.y2a5{bottom:528.530667pt;}
.y336{bottom:530.119316pt;}
.y36f{bottom:530.950775pt;}
.y1ae{bottom:532.233333pt;}
.y3a{bottom:533.367573pt;}
.y162{bottom:533.672000pt;}
.y12e{bottom:534.578667pt;}
.y39a{bottom:535.636583pt;}
.y202{bottom:535.712000pt;}
.y276{bottom:536.542667pt;}
.y1e9{bottom:537.450667pt;}
.y23c{bottom:537.452000pt;}
.y2e2{bottom:537.902667pt;}
.y25d{bottom:542.286667pt;}
.ye0{bottom:542.969333pt;}
.y1b{bottom:543.269333pt;}
.y36e{bottom:543.649283pt;}
.y1d4{bottom:544.025333pt;}
.y69{bottom:544.026667pt;}
.y19b{bottom:544.554667pt;}
.y21b{bottom:544.556000pt;}
.yab{bottom:544.557333pt;}
.y10f{bottom:544.782667pt;}
.y2a4{bottom:545.841333pt;}
.y335{bottom:547.430033pt;}
.y38{bottom:548.031923pt;}
.y39{bottom:548.258054pt;}
.y161{bottom:550.981333pt;}
.y12d{bottom:551.888000pt;}
.y399{bottom:552.947300pt;}
.y201{bottom:553.097333pt;}
.y275{bottom:553.852000pt;}
.y1e8{bottom:554.760000pt;}
.y23b{bottom:554.761333pt;}
.y334{bottom:560.128541pt;}
.ydf{bottom:560.354667pt;}
.y36d{bottom:560.960000pt;}
.y68{bottom:561.337333pt;}
.y19a{bottom:561.865333pt;}
.yaa{bottom:561.868000pt;}
.y10e{bottom:562.169333pt;}
.y37{bottom:562.696273pt;}
.y2e1{bottom:563.225333pt;}
.y2a3{bottom:563.226667pt;}
.y398{bottom:565.645808pt;}
.y1d3{bottom:566.702667pt;}
.y160{bottom:568.292000pt;}
.y273{bottom:568.970667pt;}
.y12c{bottom:569.198667pt;}
.y1e7{bottom:569.877333pt;}
.y1ad{bottom:570.406667pt;}
.y274{bottom:571.237333pt;}
.y272{bottom:571.241333pt;}
.y1e6{bottom:572.145333pt;}
.y23a{bottom:572.146667pt;}
.y1a{bottom:572.598667pt;}
.y36c{bottom:573.658508pt;}
.y333{bottom:577.439258pt;}
.yde{bottom:577.665333pt;}
.y397{bottom:578.269650pt;}
.y67{bottom:578.646667pt;}
.y199{bottom:579.176000pt;}
.ya9{bottom:579.177333pt;}
.y10d{bottom:579.478667pt;}
.y2e0{bottom:580.536000pt;}
.y2a2{bottom:580.537333pt;}
.y36{bottom:584.541333pt;}
.y15f{bottom:585.677333pt;}
.y36b{bottom:586.282350pt;}
.y12b{bottom:586.584000pt;}
.y1e4{bottom:587.186667pt;}
.y1ac{bottom:587.717333pt;}
.y271{bottom:588.550667pt;}
.y1e5{bottom:589.454667pt;}
.y1e3{bottom:589.456000pt;}
.y239{bottom:589.457333pt;}
.y332{bottom:590.137766pt;}
.y200{bottom:593.084000pt;}
.ydd{bottom:594.974667pt;}
.y396{bottom:595.655033pt;}
.y66{bottom:596.032000pt;}
.y198{bottom:596.561333pt;}
.ya8{bottom:596.562667pt;}
.y10c{bottom:596.789333pt;}
.y2a1{bottom:597.846667pt;}
.y331{bottom:602.761608pt;}
.y15e{bottom:602.988000pt;}
.y36a{bottom:603.592000pt;}
.y12a{bottom:603.894667pt;}
.y1ab{bottom:605.102667pt;}
.y270{bottom:605.861333pt;}
.y1d2{bottom:606.766667pt;}
.y238{bottom:606.768000pt;}
.y395{bottom:608.278875pt;}
.y300{bottom:609.562667pt;}
.ydc{bottom:612.361333pt;}
.y65{bottom:613.342667pt;}
.y197{bottom:613.870667pt;}
.y21a{bottom:613.872000pt;}
.ya7{bottom:613.873333pt;}
.y10b{bottom:614.098667pt;}
.y2c5{bottom:615.232000pt;}
.y2a0{bottom:615.233333pt;}
.y369{bottom:616.291575pt;}
.y330{bottom:620.071259pt;}
.y1a9{bottom:620.145333pt;}
.y15d{bottom:620.297333pt;}
.y394{bottom:620.978450pt;}
.y129{bottom:621.205333pt;}
.y1aa{bottom:622.412000pt;}
.y1a8{bottom:622.413333pt;}
.y26f{bottom:623.170667pt;}
.y1d1{bottom:624.076000pt;}
.y237{bottom:624.077333pt;}
.y19{bottom:626.193133pt;}
.y2ff{bottom:626.948000pt;}
.y219{bottom:628.989333pt;}
.y368{bottom:628.991150pt;}
.ydb{bottom:629.670667pt;}
.y64{bottom:630.653333pt;}
.y196{bottom:631.181333pt;}
.ya6{bottom:631.184000pt;}
.y10a{bottom:631.485333pt;}
.y29f{bottom:632.542667pt;}
.y32f{bottom:632.770833pt;}
.y393{bottom:633.602292pt;}
.y15c{bottom:637.684000pt;}
.y128{bottom:638.590667pt;}
.y1a7{bottom:639.724000pt;}
.y26e{bottom:640.557333pt;}
.y1d0{bottom:641.461333pt;}
.y1e2{bottom:641.462667pt;}
.y236{bottom:641.464000pt;}
.y2fe{bottom:644.258667pt;}
.y32e{bottom:645.470408pt;}
.y218{bottom:646.298667pt;}
.y367{bottom:646.300800pt;}
.yda{bottom:646.981333pt;}
.y63{bottom:647.962667pt;}
.y195{bottom:648.566667pt;}
.ya5{bottom:648.569333pt;}
.y109{bottom:648.794667pt;}
.y2c4{bottom:649.852000pt;}
.y2df{bottom:649.853333pt;}
.y392{bottom:650.987675pt;}
.y18{bottom:652.876533pt;}
.y15b{bottom:654.993333pt;}
.y127{bottom:655.900000pt;}
.y1a6{bottom:657.034667pt;}
.y29e{bottom:657.865333pt;}
.y26d{bottom:657.866667pt;}
.y1cf{bottom:658.772000pt;}
.y235{bottom:658.773333pt;}
.y366{bottom:658.924642pt;}
.y2fd{bottom:661.568000pt;}
.y35{bottom:661.796000pt;}
.y32d{bottom:662.780058pt;}
.y391{bottom:663.611517pt;}
.yd9{bottom:664.292000pt;}
.y62{bottom:665.348000pt;}
.y60{bottom:665.349333pt;}
.y194{bottom:665.877333pt;}
.ya4{bottom:665.880000pt;}
.y108{bottom:666.105333pt;}
.y17{bottom:666.179834pt;}
.y2c3{bottom:667.238667pt;}
.y61{bottom:671.244000pt;}
.y15a{bottom:672.304000pt;}
.y126{bottom:673.210667pt;}
.y1a5{bottom:674.420000pt;}
.y29d{bottom:675.176000pt;}
.y32c{bottom:675.479633pt;}
.y1ce{bottom:676.082667pt;}
.y234{bottom:676.084000pt;}
.y365{bottom:676.310025pt;}
.y34{bottom:677.140000pt;}
.y16{bottom:679.484201pt;}
.y25c{bottom:680.994667pt;}
.yd8{bottom:681.677333pt;}
.y5f{bottom:682.658667pt;}
.y193{bottom:683.186667pt;}
.y191{bottom:683.188000pt;}
.ya3{bottom:683.189333pt;}
.y107{bottom:683.490667pt;}
.y2fc{bottom:684.245333pt;}
.y2c2{bottom:684.548000pt;}
.y364{bottom:688.933867pt;}
.y192{bottom:689.158667pt;}
.y1a4{bottom:689.537333pt;}
.y159{bottom:689.689333pt;}
.y125{bottom:690.596000pt;}
.y1a3{bottom:691.729333pt;}
.y33{bottom:692.409333pt;}
.y29c{bottom:692.561333pt;}
.y32b{bottom:692.789283pt;}
.y15{bottom:692.863233pt;}
.y1cd{bottom:693.468000pt;}
.y233{bottom:693.469333pt;}
.yd7{bottom:698.986667pt;}
.y190{bottom:700.497333pt;}
.y18e{bottom:700.498667pt;}
.ya2{bottom:700.500000pt;}
.y106{bottom:700.801333pt;}
.y363{bottom:701.633442pt;}
.y2c1{bottom:701.858667pt;}
.y5e{bottom:705.334667pt;}
.y32a{bottom:705.413125pt;}
.y14{bottom:706.167600pt;}
.y390{bottom:706.319250pt;}
.y18f{bottom:706.469333pt;}
.y158{bottom:707.000000pt;}
.y32{bottom:707.754667pt;}
.y124{bottom:707.906667pt;}
.y1cb{bottom:708.585333pt;}
.y1a2{bottom:709.038667pt;}
.y2de{bottom:709.870667pt;}
.y29b{bottom:709.872000pt;}
.y1cc{bottom:710.777333pt;}
.y1ca{bottom:710.778667pt;}
.y232{bottom:710.780000pt;}
.yd6{bottom:716.297333pt;}
.y93{bottom:716.972971pt;}
.y18d{bottom:717.884000pt;}
.ya1{bottom:717.885333pt;}
.y105{bottom:718.110667pt;}
.y362{bottom:718.943092pt;}
.y2c0{bottom:719.168000pt;}
.y2be{bottom:719.170667pt;}
.y13{bottom:719.546633pt;}
.y329{bottom:722.798508pt;}
.y31{bottom:723.098667pt;}
.y157{bottom:724.309333pt;}
.y2bf{bottom:725.140000pt;}
.y123{bottom:725.216000pt;}
.y29a{bottom:727.181333pt;}
.y1c9{bottom:728.088000pt;}
.y231{bottom:728.089333pt;}
.y92{bottom:731.637321pt;}
.y361{bottom:731.642666pt;}
.y1a1{bottom:731.716000pt;}
.y12{bottom:732.851000pt;}
.y216{bottom:733.001333pt;}
.yd5{bottom:733.682667pt;}
.y217{bottom:735.193333pt;}
.y18c{bottom:735.194667pt;}
.ya0{bottom:735.196000pt;}
.y328{bottom:735.422350pt;}
.y104{bottom:735.497333pt;}
.y2bd{bottom:736.556000pt;}
.y156{bottom:741.696000pt;}
.y360{bottom:744.265442pt;}
.y299{bottom:744.566667pt;}
.y1c8{bottom:745.474667pt;}
.y11{bottom:746.154301pt;}
.y122{bottom:747.893756pt;}
.y327{bottom:748.121925pt;}
.y38f{bottom:748.952317pt;}
.yd4{bottom:750.993333pt;}
.y9f{bottom:752.505333pt;}
.y103{bottom:752.806667pt;}
.y2bc{bottom:753.866667pt;}
.y91{bottom:754.314371pt;}
.y155{bottom:759.005333pt;}
.y10{bottom:759.533333pt;}
.y35f{bottom:761.651891pt;}
.y298{bottom:761.877333pt;}
.y1c7{bottom:762.784000pt;}
.y230{bottom:762.785333pt;}
.y326{bottom:765.431575pt;}
.y121{bottom:766.564000pt;}
.yd3{bottom:768.302667pt;}
.y90{bottom:768.978721pt;}
.y9e{bottom:769.890667pt;}
.y26c{bottom:769.892000pt;}
.y102{bottom:770.117333pt;}
.y5d{bottom:773.369333pt;}
.y35e{bottom:774.274667pt;}
.y154{bottom:776.316000pt;}
.y325{bottom:778.131149pt;}
.y297{bottom:779.186667pt;}
.y295{bottom:779.189333pt;}
.y1c6{bottom:780.094667pt;}
.y22f{bottom:780.096000pt;}
.ye{bottom:783.496000pt;}
.y8f{bottom:783.643071pt;}
.y296{bottom:785.158667pt;}
.y35d{bottom:786.974241pt;}
.y2fb{bottom:787.200000pt;}
.y9d{bottom:787.201333pt;}
.y101{bottom:787.426667pt;}
.yff{bottom:787.428000pt;}
.yf{bottom:788.862667pt;}
.y5c{bottom:790.678667pt;}
.y324{bottom:790.753925pt;}
.y38e{bottom:791.661116pt;}
.y100{bottom:793.398667pt;}
.y153{bottom:793.625333pt;}
.y1c4{bottom:795.212000pt;}
.y294{bottom:796.498667pt;}
.y1c5{bottom:797.404000pt;}
.y1e1{bottom:797.405333pt;}
.y1c3{bottom:797.406667pt;}
.yc{bottom:798.160000pt;}
.ya{bottom:798.161333pt;}
.y8e{bottom:798.307421pt;}
.yd{bottom:798.536800pt;}
.y142{bottom:799.975191pt;}
.yf8{bottom:799.975617pt;}
.y25b{bottom:802.318667pt;}
.yb{bottom:803.528000pt;}
.y35c{bottom:804.284958pt;}
.y18b{bottom:804.510667pt;}
.y9c{bottom:804.512000pt;}
.yfe{bottom:804.813333pt;}
.y5b{bottom:807.989333pt;}
.y323{bottom:808.140374pt;}
.y7{bottom:812.825333pt;}
.y8d{bottom:812.972838pt;}
.y8{bottom:813.127733pt;}
.y293{bottom:813.885333pt;}
.y1c2{bottom:814.792000pt;}
.y35b{bottom:816.983466pt;}
.y9{bottom:818.192000pt;}
.yf7{bottom:820.612159pt;}
.y322{bottom:820.764216pt;}
.y18a{bottom:821.896000pt;}
.y9b{bottom:821.897333pt;}
.yfd{bottom:822.122667pt;}
.y17e{bottom:825.297858pt;}
.y5a{bottom:825.300000pt;}
.y4{bottom:827.489333pt;}
.y8c{bottom:827.637188pt;}
.y6{bottom:827.790533pt;}
.y35a{bottom:829.607309pt;}
.y1c1{bottom:829.908000pt;}
.y292{bottom:831.194667pt;}
.y1c0{bottom:832.101333pt;}
.y5{bottom:832.857333pt;}
.yf6{bottom:833.309808pt;}
.y141{bottom:833.310558pt;}
.y38d{bottom:834.294183pt;}
.y321{bottom:838.073867pt;}
.y189{bottom:839.206667pt;}
.y9a{bottom:839.208000pt;}
.y8b{bottom:842.301538pt;}
.y59{bottom:842.685333pt;}
.y140{bottom:845.933333pt;}
.yf5{bottom:845.933650pt;}
.y13e{bottom:845.934825pt;}
.y359{bottom:846.992691pt;}
.y291{bottom:848.505333pt;}
.y1bf{bottom:849.412000pt;}
.y13f{bottom:850.696000pt;}
.y320{bottom:850.773441pt;}
.y99{bottom:856.517333pt;}
.y8a{bottom:856.965888pt;}
.yf4{bottom:858.633224pt;}
.y358{bottom:859.616533pt;}
.y58{bottom:859.994667pt;}
.y3{bottom:860.827467pt;}
.y290{bottom:865.890667pt;}
.y1be{bottom:866.797333pt;}
.y31f{bottom:868.083092pt;}
.yf3{bottom:871.256584pt;}
.y13d{bottom:871.257492pt;}
.y17d{bottom:871.257809pt;}
.y89{bottom:871.630238pt;}
.y357{bottom:872.316108pt;}
.y120{bottom:873.600950pt;}
.y98{bottom:873.902667pt;}
.y25a{bottom:873.904000pt;}
.y57{bottom:877.305333pt;}
.y31e{bottom:880.782666pt;}
.y28f{bottom:883.201333pt;}
.yf2{bottom:883.956159pt;}
.y17c{bottom:883.956317pt;}
.y1bd{bottom:884.108000pt;}
.y88{bottom:886.294588pt;}
.y356{bottom:889.625758pt;}
.y2{bottom:890.834667pt;}
.y188{bottom:891.212000pt;}
.y97{bottom:891.213333pt;}
.y11f{bottom:894.313224pt;}
.y56{bottom:894.690667pt;}
.y13c{bottom:896.655891pt;}
.yf1{bottom:896.656633pt;}
.y31d{bottom:898.092317pt;}
.y87{bottom:900.958938pt;}
.y1bc{bottom:901.417333pt;}
.y355{bottom:902.325333pt;}
.y11e{bottom:906.936475pt;}
.y96{bottom:908.524000pt;}
.y13b{bottom:909.278825pt;}
.y17b{bottom:909.278983pt;}
.yf0{bottom:909.280475pt;}
.y31c{bottom:910.791891pt;}
.y55{bottom:912.001333pt;}
.y187{bottom:914.494667pt;}
.y354{bottom:914.948108pt;}
.y86{bottom:915.623288pt;}
.y1e0{bottom:916.536000pt;}
.y1bb{bottom:918.802667pt;}
.y11d{bottom:919.634983pt;}
.y1{bottom:920.844000pt;}
.y13a{bottom:921.978558pt;}
.yef{bottom:921.978983pt;}
.y31b{bottom:923.414667pt;}
.y259{bottom:923.641333pt;}
.y95{bottom:925.833333pt;}
.y54{bottom:929.310667pt;}
.y85{bottom:930.288705pt;}
.y11c{bottom:932.258825pt;}
.yee{bottom:934.602825pt;}
.y1ff{bottom:940.950667pt;}
.y1ba{bottom:941.404000pt;}
.y94{bottom:943.218667pt;}
.y84{bottom:944.953055pt;}
.y11b{bottom:944.957333pt;}
.yed{bottom:947.301333pt;}
.y83{bottom:994.393333pt;}
.h1b{height:21.330000pt;}
.h22{height:23.677277pt;}
.h4{height:24.828689pt;}
.h12{height:25.312644pt;}
.hf{height:26.663600pt;}
.hb{height:31.082945pt;}
.h13{height:31.999600pt;}
.h1{height:33.066253pt;}
.h6{height:33.108919pt;}
.h5{height:34.148438pt;}
.hd{height:34.772899pt;}
.hc{height:36.052883pt;}
.h3{height:37.248000pt;}
.h11{height:37.973333pt;}
.h14{height:38.561974pt;}
.h1d{height:38.563241pt;}
.h1a{height:38.563872pt;}
.h19{height:38.564942pt;}
.h16{height:38.567943pt;}
.h1e{height:38.861272pt;}
.h18{height:38.862538pt;}
.h15{height:38.866170pt;}
.h17{height:38.866606pt;}
.h1c{height:38.867872pt;}
.h8{height:39.266667pt;}
.ha{height:40.000000pt;}
.h10{height:47.999600pt;}
.h23{height:48.271173pt;}
.h1f{height:48.273307pt;}
.h21{height:48.276507pt;}
.h20{height:48.281840pt;}
.h9{height:49.599587pt;}
.he{height:49.663586pt;}
.h7{height:63.026667pt;}
.h2{height:78.240000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x29{left:48.000000pt;}
.x2a{left:63.496000pt;}
.x33{left:69.089733pt;}
.x3d{left:79.218800pt;}
.x37{left:98.267600pt;}
.x2b{left:108.471438pt;}
.x34{left:110.437733pt;}
.x1{left:266.682667pt;}
.x6b{left:272.881333pt;}
.x30{left:275.528000pt;}
.x38{left:276.964000pt;}
.x28{left:279.986667pt;}
.x2c{left:281.272000pt;}
.x2e{left:282.634667pt;}
.x6e{left:285.429333pt;}
.x6c{left:292.913333pt;}
.x2d{left:294.728000pt;}
.x31{left:297.373333pt;}
.x7a{left:299.036000pt;}
.x7b{left:309.241333pt;}
.x87{left:311.506667pt;}
.x7c{left:314.002667pt;}
.x3f{left:315.893333pt;}
.x32{left:316.950667pt;}
.xd{left:324.511200pt;}
.x63{left:326.097333pt;}
.xe{left:328.138667pt;}
.x18{left:330.708000pt;}
.xf{left:333.052000pt;}
.x19{left:335.621333pt;}
.x40{left:337.738667pt;}
.x2{left:339.250667pt;}
.x81{left:342.802667pt;}
.x3{left:344.240000pt;}
.x64{left:347.186667pt;}
.x7d{left:350.210667pt;}
.x61{left:351.798667pt;}
.x65{left:354.821333pt;}
.x62{left:356.485333pt;}
.x48{left:370.772000pt;}
.x88{left:378.026667pt;}
.x22{left:379.842667pt;}
.x23{left:384.756000pt;}
.x74{left:385.662667pt;}
.x49{left:391.105333pt;}
.x6f{left:401.310667pt;}
.x58{left:405.316000pt;}
.x59{left:412.950667pt;}
.x39{left:416.580000pt;}
.x1a{left:418.316933pt;}
.x10{left:420.057333pt;}
.x70{left:421.341333pt;}
.x3a{left:427.237333pt;}
.x4{left:429.581333pt;}
.x11{left:432.453333pt;}
.x5{left:441.977333pt;}
.x68{left:445.984000pt;}
.x45{left:455.508000pt;}
.x89{left:462.536000pt;}
.x69{left:466.090667pt;}
.x1b{left:468.811733pt;}
.x35{left:470.476000pt;}
.x46{left:475.766667pt;}
.x47{left:476.673333pt;}
.x6d{left:479.394667pt;}
.x73{left:485.216000pt;}
.x4a{left:490.280000pt;}
.x24{left:491.186667pt;}
.x36{left:492.245333pt;}
.x25{left:496.100000pt;}
.x6{left:498.217333pt;}
.x5a{left:499.956000pt;}
.x1c{left:502.224000pt;}
.x7{left:503.130667pt;}
.x1d{left:507.137333pt;}
.x4b{left:510.614667pt;}
.x86{left:512.428000pt;}
.x6a{left:514.922667pt;}
.x76{left:519.306667pt;}
.x41{left:521.272000pt;}
.x77{left:524.069333pt;}
.x4f{left:526.714667pt;}
.x5f{left:529.436000pt;}
.x12{left:530.797333pt;}
.x78{left:534.273333pt;}
.x60{left:537.146667pt;}
.x79{left:539.036000pt;}
.x42{left:540.094667pt;}
.x43{left:547.577333pt;}
.x13{left:550.601333pt;}
.x44{left:555.288000pt;}
.x80{left:556.573333pt;}
.x8{left:565.114267pt;}
.x26{left:570.028000pt;}
.x52{left:576.377333pt;}
.x27{left:582.349333pt;}
.x66{left:585.676000pt;}
.x1e{left:587.641333pt;}
.x2f{left:591.646667pt;}
.x75{left:594.520000pt;}
.x53{left:596.712000pt;}
.x1f{left:599.962667pt;}
.x82{left:605.102667pt;}
.x9{left:606.009333pt;}
.xa{left:610.922667pt;}
.x83{left:626.948000pt;}
.x84{left:631.634667pt;}
.x14{left:632.617333pt;}
.x5b{left:634.885333pt;}
.x15{left:637.530667pt;}
.x5c{left:642.520000pt;}
.x3b{left:644.032000pt;}
.x3c{left:649.776000pt;}
.x85{left:653.404000pt;}
.x56{left:666.557333pt;}
.x4c{left:668.372000pt;}
.x57{left:671.320000pt;}
.x7e{left:676.762667pt;}
.x71{left:685.454667pt;}
.x5d{left:687.420000pt;}
.x4d{left:688.629333pt;}
.x72{left:690.293333pt;}
.x5e{left:692.106667pt;}
.x7f{left:696.869333pt;}
.xb{left:698.154667pt;}
.x20{left:701.706667pt;}
.xc{left:703.068000pt;}
.x21{left:706.620000pt;}
.x67{left:714.633333pt;}
.x50{left:722.342667pt;}
.x54{left:723.552000pt;}
.x55{left:731.186667pt;}
.x3e{left:735.193333pt;}
.x4e{left:738.594667pt;}
.x51{left:742.601333pt;}
.x16{left:746.002667pt;}
.x17{left:750.992000pt;}
}




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