
    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_2527fa6d799b1db7405bef05.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_3202982a5622d2336e06b9a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107910;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_eb30423018ca704f3b77b059.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.922000;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_3b566e7c92558c4c233d2be4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.905000;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_e53a2de190f3c8c1b3d4889e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107910;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_d32bcb32b930415d52792545.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.109863;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_626d66b1d0d0f2c2e6267387.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.022949;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_ba9ef38c267e274f329297f3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.229980;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_b336a3cd2b9e4951e6285ecb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.870000;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_c5ac0ff8cfb8d81538db8ced.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.385000;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_a097996089948d72dfb4aadb.woff2')format("woff");}.ffb{font-family:ffb;line-height:2.343000;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_1b5d7d66781501525616242f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.712000;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(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);}
.v3{vertical-align:-28.152000px;}
.v5{vertical-align:-15.060000px;}
.v4{vertical-align:-13.392000px;}
.v6{vertical-align:-11.952000px;}
.vb{vertical-align:-9.564000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.976000px;}
.v8{vertical-align:16.734000px;}
.v7{vertical-align:19.128000px;}
.v1{vertical-align:22.176000px;}
.va{vertical-align:27.738000px;}
.v9{vertical-align:79.524000px;}
.ls9{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000002px;}
.ls7{letter-spacing:0.000022px;}
.lsa{letter-spacing:0.000037px;}
.lsd{letter-spacing:0.000039px;}
.ls3a{letter-spacing:0.000059px;}
.ls78{letter-spacing:0.000318px;}
.ls14{letter-spacing:0.000616px;}
.ls39{letter-spacing:0.000845px;}
.ls20{letter-spacing:0.000936px;}
.ls4f{letter-spacing:0.001055px;}
.ls11{letter-spacing:0.001235px;}
.ls3f{letter-spacing:0.001295px;}
.ls54{letter-spacing:0.001454px;}
.ls30{letter-spacing:0.001514px;}
.ls26{letter-spacing:0.001833px;}
.ls21{letter-spacing:0.002152px;}
.ls66{letter-spacing:0.002229px;}
.ls94{letter-spacing:0.002610px;}
.ls19{letter-spacing:0.002669px;}
.ls64{letter-spacing:0.002850px;}
.ls4b{letter-spacing:0.002889px;}
.ls61{letter-spacing:0.003408px;}
.ls7e{letter-spacing:0.003567px;}
.ls17{letter-spacing:0.003726px;}
.ls31{letter-spacing:0.005162px;}
.ls18{letter-spacing:0.005740px;}
.ls6e{letter-spacing:0.953321px;}
.ls68{letter-spacing:0.959321px;}
.ls3c{letter-spacing:1.913062px;}
.ls86{letter-spacing:1.918265px;}
.ls79{letter-spacing:2.390451px;}
.ls7a{letter-spacing:2.873441px;}
.ls4c{letter-spacing:2.986291px;}
.ls0{letter-spacing:2.986384px;}
.ls56{letter-spacing:2.987722px;}
.ls60{letter-spacing:2.988067px;}
.ls3b{letter-spacing:2.988845px;}
.ls2{letter-spacing:2.988877px;}
.ls1a{letter-spacing:2.989200px;}
.ls2b{letter-spacing:2.991696px;}
.ls4d{letter-spacing:2.992291px;}
.ls1{letter-spacing:2.992384px;}
.ls9d{letter-spacing:3.062471px;}
.ls38{letter-spacing:3.222374px;}
.ls72{letter-spacing:3.350610px;}
.ls8d{letter-spacing:3.704650px;}
.ls6d{letter-spacing:4.298669px;}
.ls25{letter-spacing:4.300583px;}
.ls67{letter-spacing:4.302297px;}
.ls57{letter-spacing:4.304669px;}
.ls73{letter-spacing:5.739567px;}
.ls32{letter-spacing:5.856182px;}
.ls5e{letter-spacing:7.292592px;}
.ls4{letter-spacing:9.366188px;}
.ls3{letter-spacing:9.366743px;}
.ls10{letter-spacing:9.563979px;}
.ls3e{letter-spacing:10.622889px;}
.ls16{letter-spacing:10.623308px;}
.ls12{letter-spacing:10.625740px;}
.ls23{letter-spacing:10.628152px;}
.ls24{letter-spacing:10.628889px;}
.ls13{letter-spacing:10.629308px;}
.ls6a{letter-spacing:11.433308px;}
.ls2f{letter-spacing:11.835308px;}
.ls22{letter-spacing:12.538006px;}
.ls15{letter-spacing:12.538524px;}
.ls48{letter-spacing:13.277740px;}
.ls5d{letter-spacing:13.280889px;}
.ls49{letter-spacing:13.283380px;}
.ls76{letter-spacing:13.283700px;}
.ls96{letter-spacing:13.286889px;}
.ls8e{letter-spacing:13.294127px;}
.ls8b{letter-spacing:13.614662px;}
.ls2e{letter-spacing:13.750524px;}
.ls50{letter-spacing:13.800816px;}
.ls3d{letter-spacing:13.975295px;}
.ls44{letter-spacing:14.479235px;}
.ls6f{letter-spacing:14.928297px;}
.ls63{letter-spacing:14.930669px;}
.lse{letter-spacing:15.063503px;}
.ls98{letter-spacing:15.096318px;}
.ls52{letter-spacing:15.142291px;}
.lsc{letter-spacing:15.159142px;}
.ls6b{letter-spacing:15.354067px;}
.ls9a{letter-spacing:15.394265px;}
.ls69{letter-spacing:15.734669px;}
.ls99{letter-spacing:15.872451px;}
.ls2a{letter-spacing:15.895713px;}
.ls2d{letter-spacing:15.933696px;}
.ls95{letter-spacing:15.941700px;}
.ls74{letter-spacing:15.942059px;}
.ls45{letter-spacing:16.267200px;}
.ls5c{letter-spacing:16.272067px;}
.ls83{letter-spacing:16.374059px;}
.ls51{letter-spacing:16.662816px;}
.ls91{letter-spacing:16.810176px;}
.ls4e{letter-spacing:17.140291px;}
.ls8c{letter-spacing:17.560752px;}
.ls62{letter-spacing:17.588669px;}
.ls28{letter-spacing:17.812006px;}
.ls70{letter-spacing:18.251722px;}
.ls6{letter-spacing:18.345254px;}
.ls42{letter-spacing:18.768845px;}
.ls6c{letter-spacing:18.773722px;}
.ls75{letter-spacing:18.809441px;}
.ls80{letter-spacing:18.925833px;}
.ls5f{letter-spacing:18.929722px;}
.ls7f{letter-spacing:18.930318px;}
.ls5{letter-spacing:18.990835px;}
.ls87{letter-spacing:19.023567px;}
.ls84{letter-spacing:19.241441px;}
.ls41{letter-spacing:20.084669px;}
.ls29{letter-spacing:20.206583px;}
.lsa0{letter-spacing:20.265567px;}
.ls1c{letter-spacing:20.447740px;}
.ls1f{letter-spacing:20.611200px;}
.ls1e{letter-spacing:20.860524px;}
.ls90{letter-spacing:21.080650px;}
.ls1d{letter-spacing:21.161740px;}
.ls53{letter-spacing:21.703920px;}
.ls9f{letter-spacing:22.779567px;}
.ls34{letter-spacing:23.016182px;}
.ls37{letter-spacing:23.100182px;}
.ls43{letter-spacing:23.496845px;}
.lsb{letter-spacing:23.907385px;}
.ls9e{letter-spacing:23.913385px;}
.ls8f{letter-spacing:24.304752px;}
.ls71{letter-spacing:24.651567px;}
.ls7b{letter-spacing:25.369833px;}
.ls77{letter-spacing:25.379797px;}
.ls85{letter-spacing:26.150451px;}
.ls82{letter-spacing:26.494265px;}
.ls8{letter-spacing:26.896216px;}
.ls81{letter-spacing:26.978451px;}
.ls7c{letter-spacing:27.280265px;}
.ls36{letter-spacing:28.218182px;}
.ls65{letter-spacing:29.222152px;}
.ls35{letter-spacing:29.430182px;}
.ls5a{letter-spacing:29.462669px;}
.ls7d{letter-spacing:31.107567px;}
.ls55{letter-spacing:32.058662px;}
.ls5b{letter-spacing:32.564592px;}
.ls9c{letter-spacing:33.039567px;}
.ls59{letter-spacing:34.226889px;}
.ls88{letter-spacing:34.971567px;}
.ls89{letter-spacing:38.271567px;}
.ls8a{letter-spacing:40.980662px;}
.ls58{letter-spacing:41.522592px;}
.ls9b{letter-spacing:41.733567px;}
.ls92{letter-spacing:41.973308px;}
.ls97{letter-spacing:59.774850px;}
.ls1b{letter-spacing:177.794850px;}
.ls33{letter-spacing:593.288850px;}
.ls93{letter-spacing:821.228850px;}
.ls4a{letter-spacing:853.238850px;}
.ls40{letter-spacing:898.094850px;}
.ls27{letter-spacing:935.432850px;}
.ls46{letter-spacing:939.302850px;}
.ls2c{letter-spacing:1094.222850px;}
.ls47{letter-spacing:1101.392850px;}
.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;}
}
.ws192{word-spacing:-46.481623px;}
.ws12{word-spacing:-34.108186px;}
.ws97{word-spacing:-33.187496px;}
.ws99{word-spacing:-31.609417px;}
.ws9{word-spacing:-30.781121px;}
.ws144{word-spacing:-26.550080px;}
.ws199{word-spacing:-26.021845px;}
.ws1ae{word-spacing:-25.287613px;}
.ws2{word-spacing:-24.230394px;}
.wsab{word-spacing:-23.707162px;}
.ws128{word-spacing:-23.671197px;}
.wsc4{word-spacing:-23.623376px;}
.ws9b{word-spacing:-22.571323px;}
.ws1d6{word-spacing:-20.754643px;}
.ws1d7{word-spacing:-20.754140px;}
.wsaa{word-spacing:-19.916994px;}
.wsb5{word-spacing:-19.916057px;}
.ws98{word-spacing:-19.910994px;}
.wsc5{word-spacing:-19.893370px;}
.wsc9{word-spacing:-18.697855px;}
.ws1da{word-spacing:-18.650034px;}
.ws9a{word-spacing:-18.506650px;}
.ws1a4{word-spacing:-18.337559px;}
.ws177{word-spacing:-18.331559px;}
.wsd3{word-spacing:-18.315290px;}
.ws9c{word-spacing:-18.211728px;}
.wsd0{word-spacing:-18.207178px;}
.wsd4{word-spacing:-18.206736px;}
.ws9d{word-spacing:-18.205728px;}
.ws129{word-spacing:-17.486467px;}
.ws1bb{word-spacing:-17.263237px;}
.ws19a{word-spacing:-17.252096px;}
.ws193{word-spacing:-17.246396px;}
.wsb2{word-spacing:-16.880672px;}
.ws1d9{word-spacing:-16.163363px;}
.ws174{word-spacing:-14.787616px;}
.ws13e{word-spacing:-14.585283px;}
.ws11d{word-spacing:-14.489642px;}
.ws13f{word-spacing:-14.376603px;}
.ws21{word-spacing:-14.011436px;}
.ws169{word-spacing:-13.628871px;}
.ws1{word-spacing:-13.212666px;}
.ws8{word-spacing:-12.995488px;}
.ws178{word-spacing:-12.594473px;}
.ws1a5{word-spacing:-12.594102px;}
.ws0{word-spacing:-11.620260px;}
.ws1ab{word-spacing:-11.094379px;}
.ws18a{word-spacing:-10.233608px;}
.ws131{word-spacing:-10.092749px;}
.ws4c{word-spacing:-10.061328px;}
.ws13b{word-spacing:-10.042326px;}
.ws1cc{word-spacing:-9.277196px;}
.ws18e{word-spacing:-8.751170px;}
.ws6{word-spacing:-8.024232px;}
.wsb{word-spacing:-8.000440px;}
.wse{word-spacing:-7.997545px;}
.wsa{word-spacing:-7.991044px;}
.ws7{word-spacing:-7.987860px;}
.wsd{word-spacing:-7.979529px;}
.ws5{word-spacing:-7.666272px;}
.ws191{word-spacing:-7.436150px;}
.ws176{word-spacing:-7.435142px;}
.ws130{word-spacing:-7.434749px;}
.ws1a9{word-spacing:-7.268731px;}
.wscb{word-spacing:-5.431728px;}
.ws19d{word-spacing:-4.783142px;}
.ws19c{word-spacing:-4.780349px;}
.ws11e{word-spacing:-4.112572px;}
.ws140{word-spacing:-3.969110px;}
.ws2d{word-spacing:-2.869236px;}
.ws55{word-spacing:-2.821415px;}
.ws1ca{word-spacing:-2.773595px;}
.ws43{word-spacing:-2.725774px;}
.wscd{word-spacing:-2.677954px;}
.ws80{word-spacing:-2.630133px;}
.wsc{word-spacing:-2.597858px;}
.ws1f{word-spacing:-2.582312px;}
.ws74{word-spacing:-2.486671px;}
.wsfe{word-spacing:-2.438851px;}
.ws61{word-spacing:-2.391030px;}
.ws113{word-spacing:-2.343209px;}
.ws114{word-spacing:-2.295389px;}
.ws73{word-spacing:-2.247568px;}
.ws19f{word-spacing:-2.199748px;}
.ws1a0{word-spacing:-2.151927px;}
.wsc2{word-spacing:-2.056286px;}
.ws42{word-spacing:-2.008465px;}
.ws172{word-spacing:-1.912824px;}
.ws10f{word-spacing:-1.865003px;}
.ws14a{word-spacing:-1.769362px;}
.ws59{word-spacing:-1.721542px;}
.wsf8{word-spacing:-1.673721px;}
.ws11{word-spacing:-1.645034px;}
.wsed{word-spacing:-1.625900px;}
.ws51{word-spacing:-1.578080px;}
.ws16f{word-spacing:-1.530259px;}
.ws8e{word-spacing:-1.482439px;}
.ws85{word-spacing:-1.386797px;}
.wsbe{word-spacing:-1.338977px;}
.wscc{word-spacing:-1.243336px;}
.wsca{word-spacing:-1.234874px;}
.ws91{word-spacing:-1.195515px;}
.ws22{word-spacing:-1.147694px;}
.ws23{word-spacing:-1.099874px;}
.wsae{word-spacing:-1.061074px;}
.wsaf{word-spacing:-1.052053px;}
.ws8b{word-spacing:-1.004233px;}
.ws92{word-spacing:-0.956412px;}
.ws1b4{word-spacing:-0.860771px;}
.ws103{word-spacing:-0.812950px;}
.wsa7{word-spacing:-0.765130px;}
.wsf5{word-spacing:-0.717309px;}
.ws1d2{word-spacing:-0.669488px;}
.ws1b6{word-spacing:-0.621668px;}
.ws53{word-spacing:-0.573847px;}
.ws1a7{word-spacing:-0.538874px;}
.ws138{word-spacing:-0.526065px;}
.wsf6{word-spacing:-0.526027px;}
.wsf1{word-spacing:-0.478206px;}
.wsb0{word-spacing:-0.382565px;}
.wsda{word-spacing:-0.355728px;}
.ws39{word-spacing:-0.286924px;}
.ws1c4{word-spacing:-0.239103px;}
.ws100{word-spacing:-0.199953px;}
.wsff{word-spacing:-0.191282px;}
.wsad{word-spacing:-0.143462px;}
.wsf0{word-spacing:-0.047821px;}
.ws46{word-spacing:0.000000px;}
.ws13{word-spacing:0.043039px;}
.ws1ce{word-spacing:0.095641px;}
.wsfd{word-spacing:0.143462px;}
.ws23c{word-spacing:0.191283px;}
.ws242{word-spacing:0.229540px;}
.ws161{word-spacing:0.239103px;}
.ws258{word-spacing:0.267796px;}
.ws7e{word-spacing:0.286924px;}
.ws1c5{word-spacing:0.334744px;}
.wsbd{word-spacing:0.382565px;}
.ws255{word-spacing:0.382566px;}
.ws137{word-spacing:0.430385px;}
.ws155{word-spacing:0.478206px;}
.ws1c9{word-spacing:0.526027px;}
.wseb{word-spacing:0.573847px;}
.ws1f9{word-spacing:0.650362px;}
.wsc3{word-spacing:0.669488px;}
.wsd1{word-spacing:0.692822px;}
.wse6{word-spacing:0.717309px;}
.ws1a1{word-spacing:0.729606px;}
.ws75{word-spacing:0.765130px;}
.ws22d{word-spacing:0.765132px;}
.ws24{word-spacing:0.812950px;}
.wsb3{word-spacing:0.860771px;}
.ws167{word-spacing:0.908591px;}
.ws263{word-spacing:0.918158px;}
.wse0{word-spacing:0.956412px;}
.ws60{word-spacing:1.004233px;}
.wsdd{word-spacing:1.030272px;}
.ws8c{word-spacing:1.052053px;}
.ws22f{word-spacing:1.071185px;}
.ws1a6{word-spacing:1.087126px;}
.ws35{word-spacing:1.099874px;}
.ws244{word-spacing:1.109441px;}
.ws89{word-spacing:1.147692px;}
.ws8a{word-spacing:1.147694px;}
.ws11a{word-spacing:1.147698px;}
.ws21b{word-spacing:1.185955px;}
.ws1db{word-spacing:1.195515px;}
.ws1f0{word-spacing:1.224211px;}
.ws1af{word-spacing:1.230552px;}
.ws7b{word-spacing:1.243336px;}
.ws184{word-spacing:1.291156px;}
.ws1a2{word-spacing:1.338977px;}
.ws1cf{word-spacing:1.386797px;}
.ws16{word-spacing:1.420274px;}
.ws15a{word-spacing:1.434616px;}
.ws152{word-spacing:1.434618px;}
.ws8d{word-spacing:1.482439px;}
.ws160{word-spacing:1.530259px;}
.ws15f{word-spacing:1.530271px;}
.wsa5{word-spacing:1.578080px;}
.ws24a{word-spacing:1.606777px;}
.ws1d4{word-spacing:1.625900px;}
.ws210{word-spacing:1.645034px;}
.ws25{word-spacing:1.673721px;}
.ws22b{word-spacing:1.721547px;}
.ws227{word-spacing:1.759804px;}
.wsc7{word-spacing:1.769362px;}
.wsc6{word-spacing:1.776926px;}
.ws29{word-spacing:1.817183px;}
.ws2a{word-spacing:1.865003px;}
.wsac{word-spacing:1.896926px;}
.ws1bd{word-spacing:1.908154px;}
.ws19b{word-spacing:1.912111px;}
.ws3{word-spacing:1.912824px;}
.ws1bc{word-spacing:1.921126px;}
.wsd2{word-spacing:1.927126px;}
.ws17{word-spacing:1.936737px;}
.ws14b{word-spacing:1.960627px;}
.ws64{word-spacing:1.960645px;}
.ws17f{word-spacing:1.978858px;}
.ws17d{word-spacing:1.981651px;}
.wsf4{word-spacing:2.008465px;}
.ws7f{word-spacing:2.056286px;}
.wsb4{word-spacing:2.104106px;}
.ws19e{word-spacing:2.151927px;}
.ws5f{word-spacing:2.199748px;}
.wsc0{word-spacing:2.247568px;}
.wsc1{word-spacing:2.295389px;}
.wse1{word-spacing:2.341126px;}
.ws79{word-spacing:2.343209px;}
.ws182{word-spacing:2.348396px;}
.ws183{word-spacing:2.365126px;}
.ws6f{word-spacing:2.391030px;}
.ws14{word-spacing:2.410162px;}
.wsc8{word-spacing:2.438851px;}
.ws52{word-spacing:2.486671px;}
.ws156{word-spacing:2.534492px;}
.wse7{word-spacing:2.582312px;}
.ws1f8{word-spacing:2.601449px;}
.wse4{word-spacing:2.630133px;}
.ws101{word-spacing:2.647571px;}
.ws154{word-spacing:2.677954px;}
.ws111{word-spacing:2.725774px;}
.wse2{word-spacing:2.773595px;}
.ws153{word-spacing:2.816974px;}
.ws65{word-spacing:2.821415px;}
.ws16b{word-spacing:2.830988px;}
.ws69{word-spacing:2.869236px;}
.wsa4{word-spacing:2.870996px;}
.ws215{word-spacing:2.907502px;}
.ws83{word-spacing:2.917057px;}
.ws30{word-spacing:3.012698px;}
.ws1b{word-spacing:3.012702px;}
.ws213{word-spacing:3.060528px;}
.ws253{word-spacing:3.098785px;}
.ws1b1{word-spacing:3.100637px;}
.ws94{word-spacing:3.108339px;}
.ws19{word-spacing:3.141818px;}
.ws15d{word-spacing:3.156136px;}
.ws3c{word-spacing:3.156160px;}
.ws15e{word-spacing:3.156196px;}
.wsb6{word-spacing:3.156926px;}
.ws22c{word-spacing:3.175298px;}
.wsbc{word-spacing:3.203980px;}
.ws21e{word-spacing:3.213554px;}
.wsbb{word-spacing:3.237476px;}
.wsb1{word-spacing:3.251801px;}
.ws10{word-spacing:3.281702px;}
.ws21f{word-spacing:3.290068px;}
.ws36{word-spacing:3.299621px;}
.ws1c{word-spacing:3.313972px;}
.ws197{word-spacing:3.347442px;}
.ws34{word-spacing:3.356986px;}
.ws32{word-spacing:3.357011px;}
.ws196{word-spacing:3.361126px;}
.ws195{word-spacing:3.366926px;}
.ws20{word-spacing:3.443083px;}
.ws264{word-spacing:3.481351px;}
.ws2c{word-spacing:3.490904px;}
.ws1b8{word-spacing:3.538724px;}
.ws1d8{word-spacing:3.582268px;}
.ws5a{word-spacing:3.586545px;}
.ws25f{word-spacing:3.596120px;}
.ws118{word-spacing:3.672634px;}
.ws15c{word-spacing:3.682155px;}
.ws108{word-spacing:3.682186px;}
.ws15b{word-spacing:3.682215px;}
.ws238{word-spacing:3.710890px;}
.ws84{word-spacing:3.730007px;}
.ws225{word-spacing:3.749147px;}
.wsf7{word-spacing:3.777827px;}
.ws86{word-spacing:3.825648px;}
.wsd9{word-spacing:3.841126px;}
.ws1ef{word-spacing:3.902173px;}
.ws6e{word-spacing:3.921289px;}
.ws232{word-spacing:3.940430px;}
.ws66{word-spacing:3.969110px;}
.ws3e{word-spacing:4.016930px;}
.ws24e{word-spacing:4.055200px;}
.wsa8{word-spacing:4.064751px;}
.ws112{word-spacing:4.112572px;}
.ws1a{word-spacing:4.131706px;}
.ws254{word-spacing:4.131713px;}
.ws81{word-spacing:4.160392px;}
.ws117{word-spacing:4.169969px;}
.ws82{word-spacing:4.208213px;}
.ws187{word-spacing:4.256033px;}
.ws8f{word-spacing:4.303854px;}
.wsf3{word-spacing:4.351675px;}
.ws44{word-spacing:4.399495px;}
.ws45{word-spacing:4.447316px;}
.ws78{word-spacing:4.495136px;}
.ws37{word-spacing:4.542957px;}
.ws212{word-spacing:4.552535px;}
.ws13d{word-spacing:4.590778px;}
.ws1f1{word-spacing:4.629049px;}
.wse3{word-spacing:4.638598px;}
.ws15{word-spacing:4.648169px;}
.ws7c{word-spacing:4.686419px;}
.ws4f{word-spacing:4.705562px;}
.ws147{word-spacing:4.723492px;}
.ws148{word-spacing:4.725026px;}
.ws145{word-spacing:4.728154px;}
.ws146{word-spacing:4.729492px;}
.ws149{word-spacing:4.731026px;}
.wsf9{word-spacing:4.743818px;}
.ws190{word-spacing:4.782060px;}
.ws208{word-spacing:4.782075px;}
.wse8{word-spacing:4.829881px;}
.ws3b{word-spacing:4.877701px;}
.ws180{word-spacing:4.915126px;}
.wsa3{word-spacing:4.925522px;}
.ws209{word-spacing:4.935101px;}
.ws10d{word-spacing:4.973342px;}
.ws162{word-spacing:5.021163px;}
.ws157{word-spacing:5.068984px;}
.ws143{word-spacing:5.126384px;}
.ws28{word-spacing:5.164625px;}
.ws1ee{word-spacing:5.164641px;}
.ws1fa{word-spacing:5.202898px;}
.wsde{word-spacing:5.212445px;}
.wsdc{word-spacing:5.221126px;}
.wsdb{word-spacing:5.232926px;}
.ws1f4{word-spacing:5.241154px;}
.ws54{word-spacing:5.260266px;}
.ws20c{word-spacing:5.279411px;}
.wsdf{word-spacing:5.308087px;}
.ws102{word-spacing:5.355907px;}
.ws5c{word-spacing:5.403728px;}
.ws20d{word-spacing:5.432437px;}
.ws168{word-spacing:5.547190px;}
.ws20b{word-spacing:5.547207px;}
.ws10b{word-spacing:5.595010px;}
.ws214{word-spacing:5.623720px;}
.ws173{word-spacing:5.690651px;}
.ws226{word-spacing:5.700233px;}
.ws18b{word-spacing:5.738472px;}
.ws18c{word-spacing:5.786293px;}
.ws1d1{word-spacing:5.834113px;}
.wsfb{word-spacing:5.853260px;}
.ws139{word-spacing:5.881934px;}
.wsea{word-spacing:5.929754px;}
.ws259{word-spacing:5.929773px;}
.ws1c8{word-spacing:5.977575px;}
.ws1f3{word-spacing:6.044543px;}
.ws68{word-spacing:6.073216px;}
.ws47{word-spacing:6.121037px;}
.ws1fb{word-spacing:6.121056px;}
.ws24f{word-spacing:6.159313px;}
.wsd8{word-spacing:6.168857px;}
.ws21a{word-spacing:6.197569px;}
.wscf{word-spacing:6.216678px;}
.ws216{word-spacing:6.235826px;}
.wsa9{word-spacing:6.264499px;}
.ws218{word-spacing:6.274082px;}
.ws219{word-spacing:6.312339px;}
.ws247{word-spacing:6.350596px;}
.wsa0{word-spacing:6.407960px;}
.ws9f{word-spacing:6.439126px;}
.ws9e{word-spacing:6.444926px;}
.ws63{word-spacing:6.455781px;}
.ws62{word-spacing:6.503602px;}
.ws260{word-spacing:6.503622px;}
.ws1b9{word-spacing:6.551422px;}
.ws1dd{word-spacing:6.599243px;}
.ws205{word-spacing:6.618392px;}
.ws3f{word-spacing:6.647063px;}
.ws188{word-spacing:6.694884px;}
.ws1be{word-spacing:6.742705px;}
.ws243{word-spacing:6.771418px;}
.ws217{word-spacing:6.809675px;}
.ws3a{word-spacing:6.838346px;}
.ws71{word-spacing:6.886166px;}
.ws1f7{word-spacing:6.886188px;}
.ws21d{word-spacing:6.924445px;}
.ws76{word-spacing:6.933987px;}
.ws1ff{word-spacing:6.962701px;}
.ws121{word-spacing:6.981808px;}
.ws164{word-spacing:7.029612px;}
.ws163{word-spacing:7.029628px;}
.ws257{word-spacing:7.077471px;}
.wsa1{word-spacing:7.125269px;}
.wsa2{word-spacing:7.153126px;}
.ws123{word-spacing:7.173086px;}
.ws122{word-spacing:7.173090px;}
.ws27{word-spacing:7.220911px;}
.ws234{word-spacing:7.268754px;}
.ws87{word-spacing:7.316552px;}
.ws70{word-spacing:7.364372px;}
.ws20e{word-spacing:7.383524px;}
.ws170{word-spacing:7.412193px;}
.ws141{word-spacing:7.507826px;}
.ws151{word-spacing:7.507834px;}
.ws6d{word-spacing:7.555655px;}
.ws224{word-spacing:7.574807px;}
.wsce{word-spacing:7.603475px;}
.ws50{word-spacing:7.651296px;}
.ws245{word-spacing:7.689577px;}
.ws1d5{word-spacing:7.699117px;}
.wsbf{word-spacing:7.890399px;}
.ws23e{word-spacing:7.919116px;}
.ws1ec{word-spacing:7.938220px;}
.wsef{word-spacing:7.986040px;}
.ws1b5{word-spacing:8.033861px;}
.ws20f{word-spacing:8.072143px;}
.ws10a{word-spacing:8.081681px;}
.ws6a{word-spacing:8.129502px;}
.ws109{word-spacing:8.129536px;}
.ws24c{word-spacing:8.148656px;}
.ws198{word-spacing:8.177323px;}
.ws3d{word-spacing:8.225143px;}
.ws248{word-spacing:8.263426px;}
.ws5b{word-spacing:8.272964px;}
.ws136{word-spacing:8.320784px;}
.wsb9{word-spacing:8.333834px;}
.ws11c{word-spacing:8.368571px;}
.wsba{word-spacing:8.368605px;}
.wsec{word-spacing:8.416426px;}
.ws200{word-spacing:8.454709px;}
.ws41{word-spacing:8.464246px;}
.ws23d{word-spacing:8.492965px;}
.ws4a{word-spacing:8.512035px;}
.ws48{word-spacing:8.512067px;}
.ws104{word-spacing:8.559856px;}
.ws40{word-spacing:8.559887px;}
.ws49{word-spacing:8.559893px;}
.ws1ad{word-spacing:8.607708px;}
.ws207{word-spacing:8.645992px;}
.ws17e{word-spacing:8.683126px;}
.ws262{word-spacing:8.684248px;}
.ws17c{word-spacing:8.703349px;}
.ws228{word-spacing:8.722505px;}
.ws1e3{word-spacing:8.751170px;}
.ws249{word-spacing:8.760761px;}
.wsf2{word-spacing:8.798990px;}
.ws236{word-spacing:8.837275px;}
.ws1ba{word-spacing:8.846811px;}
.ws11f{word-spacing:8.894632px;}
.ws189{word-spacing:8.926120px;}
.ws96{word-spacing:8.942452px;}
.ws18{word-spacing:8.952029px;}
.ws159{word-spacing:8.990273px;}
.ws241{word-spacing:8.990301px;}
.ws67{word-spacing:9.038093px;}
.ws6c{word-spacing:9.085914px;}
.ws13a{word-spacing:9.133735px;}
.ws13c{word-spacing:9.157126px;}
.ws239{word-spacing:9.181584px;}
.ws72{word-spacing:9.229376px;}
.ws4e{word-spacing:9.258097px;}
.ws20a{word-spacing:9.334610px;}
.ws16d{word-spacing:9.372838px;}
.ws134{word-spacing:9.420658px;}
.ws14f{word-spacing:9.468479px;}
.ws1fd{word-spacing:9.487637px;}
.ws14e{word-spacing:9.488543px;}
.ws25a{word-spacing:9.525893px;}
.wsb8{word-spacing:9.564120px;}
.ws1f5{word-spacing:9.564150px;}
.wsb7{word-spacing:9.567976px;}
.ws56{word-spacing:9.611941px;}
.ws10e{word-spacing:9.611956px;}
.ws110{word-spacing:9.659761px;}
.ws57{word-spacing:9.659776px;}
.wsd6{word-spacing:9.686822px;}
.ws14c{word-spacing:9.707582px;}
.ws186{word-spacing:9.745126px;}
.ws185{word-spacing:9.751444px;}
.ws16c{word-spacing:9.755402px;}
.ws252{word-spacing:9.755433px;}
.ws1cd{word-spacing:9.851044px;}
.ws1cb{word-spacing:9.898864px;}
.ws211{word-spacing:9.984973px;}
.ws93{word-spacing:9.994505px;}
.ws26{word-spacing:10.042326px;}
.ws14d{word-spacing:10.090147px;}
.ws250{word-spacing:10.176256px;}
.ws95{word-spacing:10.185788px;}
.ws10c{word-spacing:10.233608px;}
.ws230{word-spacing:10.367539px;}
.ws2b{word-spacing:10.377070px;}
.ws18d{word-spacing:10.424891px;}
.ws58{word-spacing:10.472711px;}
.ws23f{word-spacing:10.558822px;}
.ws31{word-spacing:10.568353px;}
.ws181{word-spacing:10.573126px;}
.ws261{word-spacing:10.597078px;}
.ws25b{word-spacing:10.635335px;}
.ws1ac{word-spacing:10.663994px;}
.ws220{word-spacing:10.673591px;}
.ws38{word-spacing:10.759635px;}
.ws206{word-spacing:10.788361px;}
.wse5{word-spacing:10.807456px;}
.ws237{word-spacing:10.826618px;}
.ws1d3{word-spacing:10.903097px;}
.ws23a{word-spacing:10.903131px;}
.ws7a{word-spacing:10.950917px;}
.ws6b{word-spacing:10.998738px;}
.ws5d{word-spacing:11.094379px;}
.ws12a{word-spacing:11.142200px;}
.ws1e{word-spacing:11.190020px;}
.ws12d{word-spacing:11.237841px;}
.ws1f2{word-spacing:11.247440px;}
.ws12c{word-spacing:11.258645px;}
.ws124{word-spacing:11.296759px;}
.ws133{word-spacing:11.300027px;}
.ws88{word-spacing:11.333482px;}
.ws17b{word-spacing:11.359126px;}
.ws17a{word-spacing:11.364926px;}
.ws229{word-spacing:11.400467px;}
.ws231{word-spacing:11.438723px;}
.ws126{word-spacing:11.516603px;}
.ws166{word-spacing:11.524765px;}
.ws251{word-spacing:11.553493px;}
.ws165{word-spacing:11.572585px;}
.wse9{word-spacing:11.668226px;}
.ws21c{word-spacing:11.668263px;}
.ws256{word-spacing:11.706520px;}
.ws1b3{word-spacing:11.763868px;}
.ws222{word-spacing:11.859546px;}
.ws240{word-spacing:11.897803px;}
.ws1a8{word-spacing:11.907329px;}
.ws77{word-spacing:12.002971px;}
.ws1fc{word-spacing:12.050829px;}
.ws1d0{word-spacing:12.098612px;}
.ws120{word-spacing:12.194253px;}
.ws1dc{word-spacing:12.242074px;}
.ws119{word-spacing:12.318625px;}
.ws171{word-spacing:12.337715px;}
.ws158{word-spacing:12.385535px;}
.ws4b{word-spacing:12.433356px;}
.ws16e{word-spacing:12.481177px;}
.ws223{word-spacing:12.509908px;}
.ws1aa{word-spacing:12.528997px;}
.ws25c{word-spacing:12.701191px;}
.ws11b{word-spacing:12.720280px;}
.ws235{word-spacing:12.739448px;}
.ws18f{word-spacing:12.815921px;}
.wsee{word-spacing:12.863741px;}
.ws115{word-spacing:12.911562px;}
.ws22a{word-spacing:12.930731px;}
.ws150{word-spacing:12.959383px;}
.ws7d{word-spacing:13.055024px;}
.ws203{word-spacing:13.122014px;}
.wsa6{word-spacing:13.150665px;}
.ws1b7{word-spacing:13.198486px;}
.ws5e{word-spacing:13.341947px;}
.ws24b{word-spacing:13.389810px;}
.ws246{word-spacing:13.848889px;}
.wsd5{word-spacing:13.865487px;}
.wsd7{word-spacing:13.867974px;}
.ws16a{word-spacing:14.001916px;}
.ws90{word-spacing:14.059256px;}
.ws1c6{word-spacing:14.154898px;}
.ws1f6{word-spacing:14.154942px;}
.ws1fe{word-spacing:14.193199px;}
.ws24d{word-spacing:14.269712px;}
.ws135{word-spacing:14.489642px;}
.ws23b{word-spacing:14.652278px;}
.ws201{word-spacing:14.690534px;}
.ws202{word-spacing:15.149614px;}
.ws22e{word-spacing:15.226127px;}
.ws2f{word-spacing:15.302592px;}
.ws116{word-spacing:15.340897px;}
.ws221{word-spacing:15.455666px;}
.ws1c7{word-spacing:15.732977px;}
.ws4{word-spacing:15.876439px;}
.ws33{word-spacing:15.881243px;}
.ws12e{word-spacing:15.892872px;}
.ws125{word-spacing:15.896603px;}
.wsf{word-spacing:15.914746px;}
.ws2e{word-spacing:16.019901px;}
.ws204{word-spacing:16.144285px;}
.ws233{word-spacing:16.182542px;}
.ws1e9{word-spacing:16.211183px;}
.ws142{word-spacing:16.297312px;}
.ws25e{word-spacing:16.488595px;}
.wsfa{word-spacing:17.024187px;}
.wsfc{word-spacing:17.712806px;}
.ws1ea{word-spacing:17.882866px;}
.ws1de{word-spacing:17.884904px;}
.ws25d{word-spacing:18.248398px;}
.ws1ed{word-spacing:18.669221px;}
.ws4d{word-spacing:20.429024px;}
.ws1e2{word-spacing:22.045297px;}
.ws1e4{word-spacing:22.714785px;}
.ws1eb{word-spacing:22.810426px;}
.ws1e0{word-spacing:23.001709px;}
.ws1d{word-spacing:23.862479px;}
.ws127{word-spacing:25.136603px;}
.ws12b{word-spacing:25.259276px;}
.ws179{word-spacing:28.164874px;}
.ws1e8{word-spacing:30.174799px;}
.ws1e7{word-spacing:32.661470px;}
.ws1e5{word-spacing:32.813810px;}
.ws1e1{word-spacing:36.056732px;}
.ws1df{word-spacing:36.917503px;}
.ws1e6{word-spacing:46.625085px;}
.ws1a3{word-spacing:60.923444px;}
.ws175{word-spacing:67.235764px;}
.ws12f{word-spacing:83.026759px;}
.ws132{word-spacing:83.030027px;}
.ws1b0{word-spacing:252.529885px;}
.ws1b2{word-spacing:252.531817px;}
.ws194{word-spacing:301.747986px;}
.ws1c0{word-spacing:398.633772px;}
.ws1bf{word-spacing:436.278266px;}
.ws1c3{word-spacing:487.656880px;}
.ws1c1{word-spacing:502.729981px;}
.ws1c2{word-spacing:529.892167px;}
.ws107{word-spacing:659.696810px;}
.ws106{word-spacing:702.735485px;}
.ws105{word-spacing:724.273951px;}
._4{margin-left:-18.829440px;}
._2{margin-left:-2.990748px;}
._8{width:2.034788px;}
._a{width:3.329997px;}
._16{width:5.192761px;}
._17{width:6.284183px;}
._7{width:8.084851px;}
._3{width:11.198100px;}
._18{width:13.296196px;}
._1{width:15.215808px;}
._0{width:16.311402px;}
._b{width:18.262167px;}
._1e{width:19.955550px;}
._9{width:22.357893px;}
._6{width:23.901597px;}
._23{width:27.357700px;}
._20{width:29.298872px;}
._5{width:31.900328px;}
._22{width:36.179858px;}
._1f{width:288.022954px;}
._1b{width:291.859601px;}
._19{width:312.212113px;}
._25{width:315.272641px;}
._24{width:326.099258px;}
._26{width:336.811106px;}
._1d{width:348.135060px;}
._1c{width:369.673526px;}
._2b{width:425.948984px;}
._27{width:437.578991px;}
._29{width:442.169783px;}
._2a{width:448.902944px;}
._2c{width:454.297125px;}
._21{width:464.050583px;}
._28{width:473.310655px;}
._13{width:482.262700px;}
._1a{width:498.981593px;}
._15{width:591.753089px;}
._14{width:649.941377px;}
._11{width:656.177203px;}
._d{width:658.166546px;}
._12{width:675.917609px;}
._f{width:692.406203px;}
._e{width:725.536419px;}
._10{width:742.292810px;}
._c{width:766.011902px;}
.fc2{color:rgb(0,128,172);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fs7{font-size:26.779200px;}
.fsc{font-size:35.865600px;}
.fsb{font-size:38.256000px;}
.fs8{font-size:38.256600px;}
.fs5{font-size:41.842800px;}
.fs0{font-size:43.038000px;}
.fsa{font-size:43.038600px;}
.fs6{font-size:44.353200px;}
.fs1{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs4{font-size:63.362400px;}
.fs3{font-size:80.697600px;}
.fs2{font-size:83.686200px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000732px;}
.y56{bottom:47.430000px;}
.y5{bottom:76.980000px;}
.y7d{bottom:80.236500px;}
.y4{bottom:91.320000px;}
.y370{bottom:93.088500px;}
.y13c{bottom:95.410500px;}
.y1d2{bottom:95.547000px;}
.y7c{bottom:95.760000px;}
.y2cd{bottom:95.775000px;}
.y12e{bottom:95.796000px;}
.y2fe{bottom:95.806500px;}
.yb9{bottom:95.838000px;}
.y1a2{bottom:95.854500px;}
.y291{bottom:95.857500px;}
.y223{bottom:95.886000px;}
.yf3{bottom:95.916000px;}
.y256{bottom:95.979000px;}
.y1f2{bottom:96.015000px;}
.y169{bottom:96.132000px;}
.y17b{bottom:96.195000px;}
.y324{bottom:96.451500px;}
.y3{bottom:105.630000px;}
.y36f{bottom:105.940500px;}
.y13b{bottom:110.584500px;}
.y1d1{bottom:110.857500px;}
.y7b{bottom:111.283500px;}
.y2cc{bottom:111.313500px;}
.y12d{bottom:111.355500px;}
.y2fd{bottom:111.378000px;}
.yb8{bottom:111.438000px;}
.y1a1{bottom:111.472500px;}
.y290{bottom:111.478500px;}
.y222{bottom:111.537000px;}
.yf2{bottom:111.597000px;}
.y255{bottom:111.720000px;}
.y1f1{bottom:111.793500px;}
.y168{bottom:112.029000px;}
.y17a{bottom:112.152000px;}
.y323{bottom:112.668000px;}
.y3bc{bottom:118.792500px;}
.y36e{bottom:119.274000px;}
.y54{bottom:119.718000px;}
.y13a{bottom:125.758500px;}
.y1d0{bottom:126.168000px;}
.y7a{bottom:126.807000px;}
.y2cb{bottom:126.852000px;}
.y12c{bottom:126.913500px;}
.y2fc{bottom:126.948000px;}
.yb7{bottom:127.039500px;}
.y1a0{bottom:127.089000px;}
.y221{bottom:127.188000px;}
.yf1{bottom:127.276500px;}
.y254{bottom:127.462500px;}
.y1f0{bottom:127.572000px;}
.y167{bottom:127.924500px;}
.y179{bottom:128.110500px;}
.y322{bottom:128.883000px;}
.y36d{bottom:132.126000px;}
.y3bb{bottom:132.313500px;}
.y53{bottom:134.064000px;}
.y139{bottom:140.932500px;}
.y1cf{bottom:141.480000px;}
.y79{bottom:142.330500px;}
.y2ca{bottom:142.392000px;}
.y12b{bottom:142.473000px;}
.y2fb{bottom:142.519500px;}
.yb6{bottom:142.639500px;}
.y28f{bottom:142.650000px;}
.y19f{bottom:142.707000px;}
.y220{bottom:142.839000px;}
.yf0{bottom:142.957500px;}
.y253{bottom:143.205000px;}
.y1ef{bottom:143.349000px;}
.y166{bottom:143.821500px;}
.y178{bottom:144.069000px;}
.y36c{bottom:144.978000px;}
.y321{bottom:145.099500px;}
.y3ba{bottom:145.164000px;}
.y138{bottom:156.106500px;}
.y1ce{bottom:156.790500px;}
.y36b{bottom:157.830000px;}
.y78{bottom:157.854000px;}
.y2c9{bottom:157.930500px;}
.y3b9{bottom:158.016000px;}
.y12a{bottom:158.032500px;}
.y2fa{bottom:158.089500px;}
.yb5{bottom:158.241000px;}
.y19e{bottom:158.325000px;}
.y21f{bottom:158.490000px;}
.yef{bottom:158.637000px;}
.y252{bottom:158.947500px;}
.y1ee{bottom:159.127500px;}
.y3e{bottom:159.289500px;}
.y165{bottom:159.718500px;}
.y177{bottom:160.561500px;}
.y320{bottom:161.314500px;}
.y3b8{bottom:170.868000px;}
.y36a{bottom:171.163500px;}
.y137{bottom:171.280500px;}
.y1cd{bottom:172.101000px;}
.y77{bottom:173.377500px;}
.y2c8{bottom:173.469000px;}
.y129{bottom:173.592000px;}
.y28e{bottom:173.610000px;}
.y2f9{bottom:173.659500px;}
.yb4{bottom:173.841000px;}
.y19d{bottom:173.943000px;}
.y21e{bottom:174.141000px;}
.yee{bottom:174.318000px;}
.y251{bottom:174.690000px;}
.y1ed{bottom:174.906000px;}
.y164{bottom:175.614000px;}
.y176{bottom:176.520000px;}
.y3d{bottom:177.297000px;}
.y31f{bottom:177.531000px;}
.y369{bottom:184.015500px;}
.y3b7{bottom:184.389000px;}
.y136{bottom:186.454500px;}
.y1cc{bottom:187.411500px;}
.y76{bottom:188.901000px;}
.y2c7{bottom:189.007500px;}
.y128{bottom:189.151500px;}
.y28d{bottom:189.231000px;}
.yb3{bottom:189.442500px;}
.y19c{bottom:189.561000px;}
.y21d{bottom:189.790500px;}
.y250{bottom:190.432500px;}
.y1ec{bottom:190.684500px;}
.y163{bottom:191.511000px;}
.y175{bottom:192.478500px;}
.yed{bottom:192.981000px;}
.y368{bottom:196.867500px;}
.y3b6{bottom:197.241000px;}
.y135{bottom:201.628500px;}
.y1cb{bottom:202.722000px;}
.y75{bottom:204.424500px;}
.y2c6{bottom:204.546000px;}
.y127{bottom:204.711000px;}
.y2f8{bottom:204.801000px;}
.y28c{bottom:204.852000px;}
.y19b{bottom:205.179000px;}
.y21c{bottom:205.441500px;}
.y24f{bottom:206.277000px;}
.y1eb{bottom:206.463000px;}
.yea{bottom:206.700000px;}
.y162{bottom:207.817500px;}
.y174{bottom:208.437000px;}
.y367{bottom:209.718000px;}
.y3b5{bottom:210.091500px;}
.y31e{bottom:213.634500px;}
.y134{bottom:216.802500px;}
.yec{bottom:217.600500px;}
.y1ca{bottom:218.034000px;}
.y3c{bottom:218.848500px;}
.y74{bottom:219.948000px;}
.y2c5{bottom:220.084500px;}
.y126{bottom:220.270500px;}
.y2f7{bottom:220.372500px;}
.y28b{bottom:220.473000px;}
.yb2{bottom:220.552500px;}
.y19a{bottom:220.797000px;}
.y21b{bottom:221.092500px;}
.yeb{bottom:221.976000px;}
.y24e{bottom:222.019500px;}
.y1ea{bottom:222.241500px;}
.y366{bottom:223.053000px;}
.y3b4{bottom:223.612500px;}
.y161{bottom:223.713000px;}
.y173{bottom:224.394000px;}
.y52{bottom:229.530000px;}
.y133{bottom:231.976500px;}
.y1c9{bottom:233.344500px;}
.y3b{bottom:234.577500px;}
.y73{bottom:235.471500px;}
.y2c4{bottom:235.623000px;}
.y125{bottom:235.828500px;}
.y365{bottom:235.905000px;}
.y2f6{bottom:235.942500px;}
.y28a{bottom:236.094000px;}
.y199{bottom:236.415000px;}
.y3b3{bottom:236.464500px;}
.y21a{bottom:236.743500px;}
.y24d{bottom:237.762000px;}
.y1e9{bottom:238.194000px;}
.y160{bottom:239.610000px;}
.y172{bottom:240.352500px;}
.ye9{bottom:241.048500px;}
.y51{bottom:245.521500px;}
.y1c8{bottom:248.655000px;}
.y364{bottom:248.755500px;}
.y3b2{bottom:249.316500px;}
.y3a{bottom:250.308000px;}
.y72{bottom:250.995000px;}
.y2c3{bottom:251.161500px;}
.y124{bottom:251.388000px;}
.y2f5{bottom:251.514000px;}
.yb1{bottom:251.574000px;}
.y289{bottom:251.715000px;}
.y198{bottom:252.033000px;}
.y31d{bottom:252.363000px;}
.y219{bottom:252.394500px;}
.y24c{bottom:253.504500px;}
.y1e8{bottom:253.972500px;}
.y15f{bottom:255.505500px;}
.y171{bottom:256.311000px;}
.ye8{bottom:256.728000px;}
.y50{bottom:261.513000px;}
.y363{bottom:262.090500px;}
.y3b1{bottom:262.167000px;}
.y1c7{bottom:263.965500px;}
.y39{bottom:266.037000px;}
.y71{bottom:266.518500px;}
.y2c2{bottom:266.701500px;}
.y123{bottom:266.947500px;}
.y2f4{bottom:267.084000px;}
.yb0{bottom:267.174000px;}
.y288{bottom:267.336000px;}
.y197{bottom:267.651000px;}
.y218{bottom:268.044000px;}
.y1e7{bottom:269.751000px;}
.y15e{bottom:271.402500px;}
.y170{bottom:272.269500px;}
.ye7{bottom:272.409000px;}
.y248{bottom:274.081500px;}
.y362{bottom:274.942500px;}
.y3b0{bottom:275.688000px;}
.y4f{bottom:277.503000px;}
.y1c6{bottom:279.276000px;}
.y24b{bottom:279.963000px;}
.y38{bottom:281.766000px;}
.y70{bottom:282.042000px;}
.y2c1{bottom:282.240000px;}
.y132{bottom:282.373500px;}
.y122{bottom:282.507000px;}
.y247{bottom:282.510000px;}
.y2f3{bottom:282.655500px;}
.yaf{bottom:282.775500px;}
.y287{bottom:282.957000px;}
.y217{bottom:283.695000px;}
.y1e6{bottom:285.529500px;}
.y15d{bottom:287.298000px;}
.ye6{bottom:288.088500px;}
.y16f{bottom:288.228000px;}
.y361{bottom:288.276000px;}
.y31c{bottom:288.466500px;}
.y3af{bottom:288.540000px;}
.y246{bottom:293.364000px;}
.y4e{bottom:293.494500px;}
.y1c5{bottom:294.588000px;}
.y131{bottom:295.224000px;}
.y24a{bottom:295.654500px;}
.y244{bottom:295.803000px;}
.y37{bottom:297.495000px;}
.y6f{bottom:297.565500px;}
.y2c0{bottom:297.778500px;}
.y121{bottom:298.066500px;}
.y2f2{bottom:298.225500px;}
.yae{bottom:298.377000px;}
.y286{bottom:298.578000px;}
.y196{bottom:298.813500px;}
.y360{bottom:301.128000px;}
.y1e5{bottom:301.308000px;}
.y3ae{bottom:301.392000px;}
.y15c{bottom:303.195000px;}
.ye5{bottom:303.769500px;}
.y213{bottom:303.987000px;}
.y245{bottom:304.219500px;}
.y130{bottom:308.076000px;}
.y4d{bottom:309.486000px;}
.y216{bottom:309.868500px;}
.y1c4{bottom:309.898500px;}
.y249{bottom:311.346000px;}
.y212{bottom:312.415500px;}
.y6e{bottom:313.089000px;}
.y36{bottom:313.224000px;}
.y2bf{bottom:313.317000px;}
.y120{bottom:313.626000px;}
.y2f1{bottom:313.795500px;}
.y35f{bottom:313.980000px;}
.y285{bottom:314.199000px;}
.y3ad{bottom:314.242500px;}
.y1e4{bottom:317.086500px;}
.y15b{bottom:319.090500px;}
.y211{bottom:323.271000px;}
.y1c3{bottom:325.209000px;}
.y4c{bottom:325.476000px;}
.y215{bottom:325.560000px;}
.y20f{bottom:325.710000px;}
.y35e{bottom:326.830500px;}
.y31b{bottom:327.193500px;}
.y3ac{bottom:327.763500px;}
.y6d{bottom:328.612500px;}
.y2be{bottom:328.855500px;}
.y35{bottom:328.953000px;}
.y11f{bottom:329.185500px;}
.y2f0{bottom:329.367000px;}
.yad{bottom:329.487000px;}
.y284{bottom:329.820000px;}
.y195{bottom:329.902500px;}
.y1e3{bottom:332.865000px;}
.y210{bottom:334.126500px;}
.y240{bottom:334.248000px;}
.y15a{bottom:334.987500px;}
.ye4{bottom:335.119500px;}
.y16e{bottom:336.583500px;}
.y243{bottom:340.129500px;}
.y35d{bottom:340.165500px;}
.y1c2{bottom:340.519500px;}
.y3ab{bottom:340.615500px;}
.y214{bottom:341.251500px;}
.y4b{bottom:341.467500px;}
.y23f{bottom:342.676500px;}
.y31a{bottom:343.410000px;}
.y6c{bottom:344.136000px;}
.y2bd{bottom:344.394000px;}
.y34{bottom:344.682000px;}
.y11e{bottom:344.743500px;}
.y2ef{bottom:344.937000px;}
.y283{bottom:345.441000px;}
.y194{bottom:345.520500px;}
.y1e2{bottom:348.643500px;}
.y16d{bottom:349.435500px;}
.y159{bottom:350.884500px;}
.y35c{bottom:353.017500px;}
.y3aa{bottom:353.467500px;}
.y23e{bottom:353.530500px;}
.y242{bottom:355.821000px;}
.y1c1{bottom:355.830000px;}
.y23c{bottom:355.969500px;}
.y4a{bottom:357.459000px;}
.y319{bottom:359.625000px;}
.y6b{bottom:359.659500px;}
.y2bc{bottom:359.932500px;}
.y11d{bottom:360.303000px;}
.yac{bottom:360.327000px;}
.y33{bottom:360.411000px;}
.y2ee{bottom:360.508500px;}
.y282{bottom:361.062000px;}
.y193{bottom:361.138500px;}
.y23d{bottom:364.386000px;}
.y1e1{bottom:364.422000px;}
.y20e{bottom:365.440500px;}
.y35b{bottom:365.868000px;}
.ye3{bottom:366.457500px;}
.y158{bottom:366.780000px;}
.y3a9{bottom:366.987000px;}
.y1c0{bottom:371.142000px;}
.y241{bottom:371.511000px;}
.y49{bottom:373.449000px;}
.y6a{bottom:375.183000px;}
.y2bb{bottom:375.471000px;}
.y11c{bottom:375.862500px;}
.yab{bottom:375.928500px;}
.y2ed{bottom:376.078500px;}
.y32{bottom:376.140000px;}
.y281{bottom:376.683000px;}
.y192{bottom:376.756500px;}
.y35a{bottom:378.720000px;}
.y3a8{bottom:379.839000px;}
.y1e0{bottom:380.199000px;}
.y20d{bottom:381.091500px;}
.ye2{bottom:382.138500px;}
.y157{bottom:383.086500px;}
.y1bf{bottom:386.452500px;}
.y48{bottom:389.440500px;}
.y69{bottom:390.706500px;}
.y2ba{bottom:391.011000px;}
.y11b{bottom:391.422000px;}
.yaa{bottom:391.528500px;}
.y2ec{bottom:391.650000px;}
.y31{bottom:391.869000px;}
.y359{bottom:392.053500px;}
.y280{bottom:392.304000px;}
.y3a7{bottom:392.691000px;}
.y318{bottom:395.730000px;}
.y1df{bottom:395.977500px;}
.y20c{bottom:396.742500px;}
.ye1{bottom:397.818000px;}
.y23b{bottom:398.434500px;}
.y156{bottom:398.983500px;}
.y1be{bottom:401.763000px;}
.y358{bottom:404.905500px;}
.y47{bottom:405.432000px;}
.y3a6{bottom:406.210500px;}
.y68{bottom:406.230000px;}
.y2b9{bottom:406.549500px;}
.y11a{bottom:406.981500px;}
.ya9{bottom:407.130000px;}
.y2eb{bottom:407.220000px;}
.y30{bottom:407.599500px;}
.y191{bottom:407.919000px;}
.y27f{bottom:407.925000px;}
.y1de{bottom:411.931500px;}
.y20b{bottom:412.392000px;}
.ye0{bottom:413.499000px;}
.y23a{bottom:414.177000px;}
.y155{bottom:414.879000px;}
.y1bd{bottom:417.073500px;}
.y357{bottom:417.757500px;}
.y3a5{bottom:419.062500px;}
.y46{bottom:421.423500px;}
.y67{bottom:421.753500px;}
.y2b8{bottom:422.088000px;}
.y119{bottom:422.541000px;}
.ya8{bottom:422.730000px;}
.y2ea{bottom:422.791500px;}
.y2f{bottom:423.328500px;}
.y27e{bottom:423.546000px;}
.y1dd{bottom:427.708500px;}
.y20a{bottom:428.043000px;}
.ydf{bottom:429.178500px;}
.y239{bottom:429.918000px;}
.y356{bottom:430.609500px;}
.y154{bottom:430.776000px;}
.y3a4{bottom:431.914500px;}
.y1bc{bottom:432.384000px;}
.y317{bottom:434.457000px;}
.y66{bottom:437.277000px;}
.y45{bottom:437.413500px;}
.y2b7{bottom:437.626500px;}
.y118{bottom:438.100500px;}
.ya7{bottom:438.331500px;}
.y2e9{bottom:438.361500px;}
.y190{bottom:438.862500px;}
.y2e{bottom:439.057500px;}
.y27d{bottom:439.167000px;}
.y1dc{bottom:443.487000px;}
.y209{bottom:443.694000px;}
.y355{bottom:443.943000px;}
.yde{bottom:444.859500px;}
.y3a3{bottom:445.435500px;}
.y238{bottom:445.660500px;}
.y153{bottom:446.671500px;}
.y1bb{bottom:447.696000px;}
.y316{bottom:450.673500px;}
.y65{bottom:452.800500px;}
.y2b6{bottom:453.165000px;}
.y44{bottom:453.405000px;}
.y117{bottom:453.658500px;}
.ya6{bottom:453.931500px;}
.y2e8{bottom:453.933000px;}
.y18f{bottom:454.480500px;}
.y2d{bottom:454.786500px;}
.y27c{bottom:454.788000px;}
.y354{bottom:456.795000px;}
.y3a2{bottom:458.286000px;}
.y1db{bottom:459.265500px;}
.y208{bottom:459.345000px;}
.ydd{bottom:460.539000px;}
.y237{bottom:461.403000px;}
.y152{bottom:462.568500px;}
.y1ba{bottom:463.006500px;}
.y315{bottom:466.888500px;}
.y64{bottom:468.324000px;}
.y2b5{bottom:468.703500px;}
.y116{bottom:469.218000px;}
.y43{bottom:469.396500px;}
.y2e7{bottom:469.503000px;}
.y353{bottom:469.647000px;}
.y18e{bottom:470.098500px;}
.y27b{bottom:470.409000px;}
.y2c{bottom:470.515500px;}
.y3a1{bottom:471.138000px;}
.y207{bottom:474.996000px;}
.y1da{bottom:475.044000px;}
.ydc{bottom:476.220000px;}
.y236{bottom:477.145500px;}
.y1b9{bottom:478.317000px;}
.y151{bottom:478.464000px;}
.ya5{bottom:478.500000px;}
.y352{bottom:482.980500px;}
.y314{bottom:483.105000px;}
.y63{bottom:483.847500px;}
.y3a0{bottom:483.990000px;}
.y2b4{bottom:484.242000px;}
.y115{bottom:484.777500px;}
.y42{bottom:485.386500px;}
.y18d{bottom:485.716500px;}
.y27a{bottom:486.030000px;}
.y2b{bottom:486.244500px;}
.y206{bottom:490.647000px;}
.y1d9{bottom:490.822500px;}
.ydb{bottom:491.899500px;}
.y235{bottom:492.888000px;}
.y1b8{bottom:493.627500px;}
.ya4{bottom:494.100000px;}
.y150{bottom:494.361000px;}
.y351{bottom:495.832500px;}
.y39f{bottom:497.511000px;}
.y313{bottom:499.320000px;}
.y62{bottom:499.371000px;}
.y2b3{bottom:499.780500px;}
.y114{bottom:500.337000px;}
.y2e6{bottom:500.524500px;}
.y18c{bottom:501.334500px;}
.y41{bottom:501.378000px;}
.y279{bottom:501.651000px;}
.y2a{bottom:501.973500px;}
.y205{bottom:506.296500px;}
.y1d8{bottom:506.601000px;}
.yda{bottom:507.580500px;}
.y234{bottom:508.630500px;}
.y350{bottom:508.684500px;}
.y1b7{bottom:508.938000px;}
.ya3{bottom:509.701500px;}
.y39e{bottom:510.361500px;}
.y14f{bottom:510.667500px;}
.y61{bottom:514.894500px;}
.y2b2{bottom:515.320500px;}
.y312{bottom:515.536500px;}
.y113{bottom:515.896500px;}
.y18b{bottom:516.952500px;}
.y278{bottom:517.272000px;}
.y40{bottom:517.369500px;}
.y29{bottom:517.702500px;}
.y34f{bottom:521.536500px;}
.y204{bottom:521.947500px;}
.y1d7{bottom:522.379500px;}
.y39d{bottom:523.213500px;}
.yd9{bottom:523.260000px;}
.y1b6{bottom:524.250000px;}
.y233{bottom:524.475000px;}
.ya2{bottom:525.301500px;}
.y14e{bottom:526.564500px;}
.y60{bottom:530.418000px;}
.y2b1{bottom:530.859000px;}
.y2e5{bottom:531.183000px;}
.y112{bottom:531.456000px;}
.y311{bottom:531.751500px;}
.y277{bottom:532.891500px;}
.y3f{bottom:533.359500px;}
.y34e{bottom:534.870000px;}
.y39c{bottom:536.065500px;}
.y203{bottom:537.598500px;}
.y1d6{bottom:538.158000px;}
.yd8{bottom:538.941000px;}
.y1b5{bottom:539.560500px;}
.y232{bottom:540.217500px;}
.ya1{bottom:541.470000px;}
.y14d{bottom:542.460000px;}
.y5f{bottom:545.941500px;}
.y2b0{bottom:546.397500px;}
.y2e4{bottom:546.754500px;}
.y111{bottom:547.014000px;}
.y34d{bottom:547.722000px;}
.y276{bottom:548.512500px;}
.y28{bottom:549.351000px;}
.y39b{bottom:549.586500px;}
.y202{bottom:553.249500px;}
.y1d5{bottom:553.936500px;}
.yd7{bottom:554.620500px;}
.y1b4{bottom:554.871000px;}
.ya0{bottom:557.638500px;}
.y34c{bottom:560.574000px;}
.y230{bottom:560.799000px;}
.y5e{bottom:561.465000px;}
.y2af{bottom:561.936000px;}
.y2e3{bottom:562.324500px;}
.y39a{bottom:562.438500px;}
.y110{bottom:562.573500px;}
.y275{bottom:564.133500px;}
.y310{bottom:567.856500px;}
.y201{bottom:568.900500px;}
.y22f{bottom:569.166000px;}
.y231{bottom:569.167500px;}
.y1d4{bottom:569.715000px;}
.y1b3{bottom:570.181500px;}
.yd6{bottom:570.301500px;}
.y18a{bottom:572.796000px;}
.y9f{bottom:573.238500px;}
.y34b{bottom:573.907500px;}
.y399{bottom:575.289000px;}
.y5d{bottom:576.988500px;}
.y2ae{bottom:577.474500px;}
.y2e2{bottom:577.896000px;}
.y10f{bottom:578.133000px;}
.y274{bottom:579.754500px;}
.y200{bottom:584.550000px;}
.y1b2{bottom:585.492000px;}
.y1d3{bottom:585.493500px;}
.y34a{bottom:586.759500px;}
.y398{bottom:588.141000px;}
.y189{bottom:588.487500px;}
.y9e{bottom:589.291500px;}
.y5c{bottom:592.512000px;}
.y2ad{bottom:593.013000px;}
.y2e1{bottom:593.466000px;}
.y10e{bottom:593.692500px;}
.yd5{bottom:594.925500px;}
.y273{bottom:595.375500px;}
.y22e{bottom:596.172000px;}
.y1c{bottom:596.656500px;}
.y14c{bottom:597.193500px;}
.y349{bottom:599.611500px;}
.y397{bottom:601.662000px;}
.y188{bottom:604.179000px;}
.y9d{bottom:604.893000px;}
.y30f{bottom:606.583500px;}
.y5b{bottom:608.035500px;}
.y2ac{bottom:608.551500px;}
.y2e0{bottom:609.036000px;}
.y10d{bottom:609.252000px;}
.y1b{bottom:609.508500px;}
.y14b{bottom:610.045500px;}
.y272{bottom:610.996500px;}
.y22d{bottom:611.914500px;}
.y348{bottom:612.945000px;}
.y396{bottom:614.514000px;}
.y1ff{bottom:615.811500px;}
.yd4{bottom:619.551000px;}
.y187{bottom:619.870500px;}
.y27{bottom:621.210000px;}
.y1a{bottom:622.360500px;}
.y30e{bottom:622.800000px;}
.y14a{bottom:622.897500px;}
.y5a{bottom:623.559000px;}
.y1b1{bottom:623.787000px;}
.y2ab{bottom:624.090000px;}
.y2df{bottom:624.607500px;}
.y10c{bottom:624.811500px;}
.y347{bottom:625.797000px;}
.y271{bottom:626.617500px;}
.y22c{bottom:627.657000px;}
.y395{bottom:628.033500px;}
.y9c{bottom:630.027000px;}
.y19{bottom:635.212500px;}
.yd3{bottom:635.232000px;}
.y26{bottom:635.557500px;}
.y186{bottom:635.562000px;}
.y149{bottom:635.748000px;}
.y1b0{bottom:636.639000px;}
.y346{bottom:638.649000px;}
.y30d{bottom:639.015000px;}
.y2aa{bottom:639.630000px;}
.y10b{bottom:640.371000px;}
.y2de{bottom:640.776000px;}
.y394{bottom:640.885500px;}
.y270{bottom:642.238500px;}
.y9b{bottom:645.627000px;}
.y1fe{bottom:647.032500px;}
.y18{bottom:648.064500px;}
.y148{bottom:648.600000px;}
.y1af{bottom:649.491000px;}
.y25{bottom:649.903500px;}
.yd2{bottom:650.911500px;}
.y185{bottom:651.252000px;}
.y345{bottom:651.982500px;}
.y22b{bottom:652.468500px;}
.y393{bottom:653.737500px;}
.y2a9{bottom:655.168500px;}
.y30c{bottom:655.231500px;}
.y2dd{bottom:656.346000px;}
.y26f{bottom:657.859500px;}
.y17{bottom:660.916500px;}
.y9a{bottom:661.228500px;}
.y147{bottom:661.452000px;}
.y1fd{bottom:662.683500px;}
.y24{bottom:664.249500px;}
.y344{bottom:664.834500px;}
.y392{bottom:666.589500px;}
.yd1{bottom:666.592500px;}
.y184{bottom:666.943500px;}
.y1ae{bottom:667.314000px;}
.y16c{bottom:668.472000px;}
.y2a8{bottom:670.707000px;}
.y10a{bottom:671.356500px;}
.y30b{bottom:671.446500px;}
.y26e{bottom:673.480500px;}
.y16{bottom:673.768500px;}
.y146{bottom:674.304000px;}
.y99{bottom:676.830000px;}
.y22a{bottom:677.590500px;}
.y343{bottom:677.686500px;}
.y1fc{bottom:678.334500px;}
.y23{bottom:678.595500px;}
.y391{bottom:680.109000px;}
.y1ad{bottom:680.166000px;}
.y2dc{bottom:680.883000px;}
.y16b{bottom:681.324000px;}
.yd0{bottom:682.272000px;}
.y183{bottom:682.635000px;}
.y2a7{bottom:686.245500px;}
.y15{bottom:686.619000px;}
.y145{bottom:687.156000px;}
.y30a{bottom:687.663000px;}
.y26d{bottom:689.101500px;}
.y342{bottom:691.020000px;}
.y98{bottom:692.430000px;}
.y22{bottom:692.941500px;}
.y390{bottom:692.961000px;}
.y229{bottom:693.333000px;}
.y1fb{bottom:693.984000px;}
.y16a{bottom:694.174500px;}
.y59{bottom:694.332000px;}
.y2db{bottom:696.454500px;}
.ycf{bottom:697.953000px;}
.y1ac{bottom:697.990500px;}
.y182{bottom:698.326500px;}
.y14{bottom:699.471000px;}
.y144{bottom:700.008000px;}
.y2a6{bottom:701.784000px;}
.y109{bottom:701.947500px;}
.y341{bottom:703.872000px;}
.y309{bottom:703.878000px;}
.y26c{bottom:704.722500px;}
.y38f{bottom:705.813000px;}
.y58{bottom:707.182500px;}
.y21{bottom:707.287500px;}
.y97{bottom:708.031500px;}
.y228{bottom:709.075500px;}
.y1fa{bottom:709.635000px;}
.y1ab{bottom:710.842500px;}
.y2da{bottom:712.024500px;}
.y13{bottom:712.323000px;}
.y143{bottom:712.860000px;}
.y181{bottom:714.016500px;}
.y340{bottom:716.724000px;}
.y2a5{bottom:717.322500px;}
.y108{bottom:717.507000px;}
.y38e{bottom:719.332500px;}
.y308{bottom:720.094500px;}
.y20{bottom:721.633500px;}
.yce{bottom:722.577000px;}
.y96{bottom:723.631500px;}
.y1aa{bottom:723.693000px;}
.y227{bottom:724.920000px;}
.y12{bottom:725.175000px;}
.y1f9{bottom:725.286000px;}
.y3db{bottom:725.347500px;}
.y142{bottom:725.710500px;}
.y2d9{bottom:727.594500px;}
.y180{bottom:729.708000px;}
.y33f{bottom:730.057500px;}
.y38d{bottom:732.184500px;}
.y2a4{bottom:732.861000px;}
.y107{bottom:733.066500px;}
.y26b{bottom:735.894000px;}
.y1f{bottom:735.981000px;}
.y307{bottom:737.359500px;}
.y11{bottom:738.027000px;}
.y3d7{bottom:738.199500px;}
.y141{bottom:738.562500px;}
.y95{bottom:739.233000px;}
.y226{bottom:740.661000px;}
.y1f8{bottom:740.937000px;}
.y1a9{bottom:741.517500px;}
.y33e{bottom:742.909500px;}
.y2d8{bottom:743.166000px;}
.y17f{bottom:745.399500px;}
.y38c{bottom:745.705500px;}
.ycd{bottom:747.690000px;}
.y2a3{bottom:748.399500px;}
.y106{bottom:748.626000px;}
.y1e{bottom:750.327000px;}
.y10{bottom:750.879000px;}
.y3d6{bottom:751.051500px;}
.y306{bottom:753.576000px;}
.y1a8{bottom:754.369500px;}
.y94{bottom:754.833000px;}
.y33d{bottom:755.761500px;}
.y140{bottom:756.387000px;}
.y225{bottom:756.403500px;}
.y1f7{bottom:756.588000px;}
.y38b{bottom:758.557500px;}
.y2d7{bottom:758.736000px;}
.y17e{bottom:761.091000px;}
.ycc{bottom:763.371000px;}
.y3d5{bottom:763.903500px;}
.y2a2{bottom:763.939500px;}
.y105{bottom:764.185500px;}
.y26a{bottom:766.995000px;}
.y33c{bottom:769.095000px;}
.y305{bottom:769.791000px;}
.y93{bottom:770.434500px;}
.y38a{bottom:772.077000px;}
.y224{bottom:772.146000px;}
.y1a7{bottom:772.192500px;}
.y1f6{bottom:772.237500px;}
.y13f{bottom:772.530000px;}
.y2d6{bottom:774.307500px;}
.y3d4{bottom:776.755500px;}
.yf{bottom:778.879500px;}
.y1d{bottom:778.924500px;}
.ycb{bottom:779.050500px;}
.y2a1{bottom:779.478000px;}
.y104{bottom:779.745000px;}
.y17d{bottom:781.287000px;}
.y33b{bottom:781.947000px;}
.y269{bottom:782.616000px;}
.y389{bottom:784.929000px;}
.y13e{bottom:785.382000px;}
.y304{bottom:786.007500px;}
.y92{bottom:786.034500px;}
.y1f5{bottom:787.888500px;}
.y1a6{bottom:788.335500px;}
.y3d3{bottom:789.606000px;}
.y3da{bottom:789.607500px;}
.y2d5{bottom:789.877500px;}
.y2a0{bottom:795.016500px;}
.y33a{bottom:795.280500px;}
.y103{bottom:795.304500px;}
.y388{bottom:797.781000px;}
.y13d{bottom:798.232500px;}
.y268{bottom:798.237000px;}
.y1a5{bottom:801.187500px;}
.y91{bottom:801.636000px;}
.y303{bottom:802.222500px;}
.y3d2{bottom:802.458000px;}
.yca{bottom:803.676000px;}
.y2d4{bottom:805.449000px;}
.y339{bottom:808.132500px;}
.y29f{bottom:810.555000px;}
.y387{bottom:811.300500px;}
.y267{bottom:813.858000px;}
.y3d1{bottom:815.310000px;}
.y90{bottom:817.236000px;}
.y302{bottom:818.439000px;}
.y17c{bottom:818.542500px;}
.y102{bottom:819.565500px;}
.y338{bottom:820.984500px;}
.y2d3{bottom:821.019000px;}
.y1f4{bottom:821.754000px;}
.y386{bottom:824.152500px;}
.ye{bottom:824.742000px;}
.y29e{bottom:826.093500px;}
.y3d0{bottom:828.162000px;}
.yc9{bottom:828.789000px;}
.y266{bottom:829.479000px;}
.y12f{bottom:830.182500px;}
.y1a4{bottom:832.156500px;}
.y8f{bottom:832.837500px;}
.y337{bottom:834.318000px;}
.y1f3{bottom:834.606000px;}
.y301{bottom:834.654000px;}
.y2d2{bottom:836.590500px;}
.y385{bottom:837.004500px;}
.yd{bottom:837.594000px;}
.y3cf{bottom:841.014000px;}
.y29d{bottom:841.632000px;}
.y101{bottom:844.437000px;}
.yc8{bottom:844.468500px;}
.y1a3{bottom:845.008500px;}
.y265{bottom:845.100000px;}
.y336{bottom:847.170000px;}
.y8e{bottom:848.437500px;}
.y384{bottom:850.524000px;}
.y300{bottom:850.870500px;}
.y2d1{bottom:852.160500px;}
.yc{bottom:853.075500px;}
.y3ce{bottom:853.866000px;}
.y29c{bottom:857.170500px;}
.y100{bottom:859.995000px;}
.y335{bottom:860.022000px;}
.yc7{bottom:860.149500px;}
.y264{bottom:860.721000px;}
.y383{bottom:863.376000px;}
.y8d{bottom:864.039000px;}
.y3cd{bottom:866.718000px;}
.y2ff{bottom:867.085500px;}
.y2d0{bottom:867.732000px;}
.yb{bottom:872.503500px;}
.y334{bottom:873.355500px;}
.yff{bottom:875.554500px;}
.yc6{bottom:875.829000px;}
.y382{bottom:876.228000px;}
.y263{bottom:876.342000px;}
.y3cc{bottom:879.570000px;}
.y8c{bottom:879.639000px;}
.y2cf{bottom:883.302000px;}
.y333{bottom:886.207500px;}
.y381{bottom:889.749000px;}
.yc5{bottom:891.510000px;}
.y262{bottom:891.963000px;}
.y3cb{bottom:892.420500px;}
.y3d9{bottom:892.422000px;}
.y8b{bottom:895.240500px;}
.ya{bottom:899.011500px;}
.y332{bottom:899.059500px;}
.yfe{bottom:899.817000px;}
.y380{bottom:902.599500px;}
.y3ca{bottom:905.272500px;}
.yc4{bottom:907.189500px;}
.y261{bottom:907.584000px;}
.y8a{bottom:910.840500px;}
.y29b{bottom:911.904000px;}
.y331{bottom:912.393000px;}
.y37f{bottom:915.451500px;}
.y2ce{bottom:917.293500px;}
.y3c9{bottom:918.124500px;}
.yc3{bottom:922.870500px;}
.y260{bottom:923.205000px;}
.yfd{bottom:924.079500px;}
.y29a{bottom:924.756000px;}
.y9{bottom:924.865500px;}
.y330{bottom:925.245000px;}
.y89{bottom:926.442000px;}
.y37e{bottom:928.972500px;}
.y3c8{bottom:930.976500px;}
.y299{bottom:937.608000px;}
.y32f{bottom:938.097000px;}
.yc2{bottom:938.550000px;}
.y25f{bottom:938.826000px;}
.yfc{bottom:939.637500px;}
.y37d{bottom:941.824500px;}
.y88{bottom:942.042000px;}
.y3c7{bottom:943.828500px;}
.y298{bottom:950.460000px;}
.y32e{bottom:951.430500px;}
.yc1{bottom:954.231000px;}
.y25e{bottom:954.447000px;}
.y37c{bottom:954.675000px;}
.yfb{bottom:955.197000px;}
.y3c6{bottom:956.680500px;}
.y87{bottom:957.643500px;}
.y297{bottom:963.310500px;}
.y32d{bottom:964.282500px;}
.y37b{bottom:967.527000px;}
.y3c5{bottom:969.532500px;}
.yc0{bottom:969.910500px;}
.y25d{bottom:970.068000px;}
.yfa{bottom:970.756500px;}
.y86{bottom:973.243500px;}
.y296{bottom:976.162500px;}
.y32c{bottom:977.134500px;}
.y37a{bottom:981.048000px;}
.y3c4{bottom:982.384500px;}
.ybf{bottom:985.591500px;}
.y25c{bottom:985.689000px;}
.y85{bottom:988.845000px;}
.y295{bottom:989.014500px;}
.y32b{bottom:990.468000px;}
.y379{bottom:993.900000px;}
.yf9{bottom:995.019000px;}
.y3c3{bottom:995.235000px;}
.y3d8{bottom:995.236500px;}
.ybe{bottom:1001.271000px;}
.y294{bottom:1001.866500px;}
.y32a{bottom:1003.320000px;}
.y84{bottom:1004.445000px;}
.y8{bottom:1004.473500px;}
.y378{bottom:1006.752000px;}
.y3c2{bottom:1008.087000px;}
.y293{bottom:1014.718500px;}
.y329{bottom:1016.653500px;}
.ybd{bottom:1016.952000px;}
.y83{bottom:1020.046500px;}
.yf8{bottom:1020.253500px;}
.y377{bottom:1020.271500px;}
.y3c1{bottom:1020.939000px;}
.y292{bottom:1027.570500px;}
.y328{bottom:1029.505500px;}
.ybc{bottom:1032.631500px;}
.y376{bottom:1033.123500px;}
.y3c0{bottom:1033.791000px;}
.y82{bottom:1035.646500px;}
.yf7{bottom:1035.813000px;}
.y25b{bottom:1040.422500px;}
.y7{bottom:1042.213500px;}
.y327{bottom:1042.357500px;}
.y375{bottom:1045.975500px;}
.y3bf{bottom:1046.643000px;}
.y81{bottom:1051.248000px;}
.yf6{bottom:1051.372500px;}
.y25a{bottom:1053.273000px;}
.y326{bottom:1055.691000px;}
.ybb{bottom:1057.257000px;}
.y374{bottom:1058.827500px;}
.y3be{bottom:1059.495000px;}
.y80{bottom:1066.848000px;}
.yf5{bottom:1066.932000px;}
.y325{bottom:1068.543000px;}
.y259{bottom:1071.097500px;}
.y373{bottom:1072.347000px;}
.yba{bottom:1082.370000px;}
.y7f{bottom:1082.449500px;}
.yf4{bottom:1082.491500px;}
.y3bd{bottom:1085.197500px;}
.y372{bottom:1085.199000px;}
.y6{bottom:1086.802500px;}
.y258{bottom:1087.240500px;}
.y7e{bottom:1098.049500px;}
.y371{bottom:1098.051000px;}
.y257{bottom:1100.092500px;}
.y2{bottom:1127.505000px;}
.y55{bottom:1128.630000px;}
.y57{bottom:1128.849000px;}
.ha{height:23.536406px;}
.h14{height:24.675533px;}
.he{height:28.787846px;}
.h19{height:32.661470px;}
.h13{height:32.900573px;}
.hf{height:33.623438px;}
.hc{height:33.623965px;}
.h6{height:34.478653px;}
.h3{height:37.826367px;}
.hd{height:37.826895px;}
.h4{height:42.029824px;}
.h10{height:43.624205px;}
.h11{height:43.803533px;}
.h12{height:43.809533px;}
.h15{height:45.859955px;}
.hb{height:47.283750px;}
.h9{height:58.957898px;}
.h18{height:60.632573px;}
.h17{height:60.638573px;}
.h8{height:61.158305px;}
.h7{height:70.925625px;}
.h5{height:73.552324px;}
.h16{height:125.383955px;}
.h1a{height:125.389955px;}
.h1{height:1190.250000px;}
.h2{height:1190.550018px;}
.h0{height:1190.551484px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:56.276979px;}
.x2c{left:58.491000px;}
.x26{left:63.180000px;}
.x8{left:66.601500px;}
.x7{left:74.314500px;}
.x28{left:76.707000px;}
.x9{left:78.796500px;}
.x2b{left:84.820500px;}
.x29{left:86.269500px;}
.x1d{left:95.851500px;}
.x10{left:100.917000px;}
.x11{left:102.724500px;}
.x1e{left:110.974500px;}
.x12{left:121.971000px;}
.x27{left:135.832500px;}
.x25{left:153.951000px;}
.x18{left:173.404500px;}
.x13{left:178.549500px;}
.x1a{left:180.204000px;}
.x19{left:278.005500px;}
.x5{left:279.852000px;}
.x6{left:302.995500px;}
.x3{left:341.316000px;}
.x1{left:365.621979px;}
.x1b{left:375.805500px;}
.x4{left:385.128000px;}
.x1f{left:417.286500px;}
.x2a{left:441.626979px;}
.xd{left:444.311979px;}
.xa{left:459.906000px;}
.x2d{left:462.016500px;}
.x17{left:465.184500px;}
.x16{left:470.559000px;}
.xb{left:477.838500px;}
.xe{left:480.232500px;}
.x2e{left:488.346000px;}
.xf{left:489.793500px;}
.x20{left:499.320000px;}
.x21{left:509.748000px;}
.x14{left:511.690500px;}
.x15{left:518.490000px;}
.x23{left:526.671000px;}
.x22{left:540.795000px;}
.x1c{left:563.269500px;}
.xc{left:698.696979px;}
.x24{left:814.081500px;}
@media print{
.v3{vertical-align:-25.024000pt;}
.v5{vertical-align:-13.386667pt;}
.v4{vertical-align:-11.904000pt;}
.v6{vertical-align:-10.624000pt;}
.vb{vertical-align:-8.501333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.312000pt;}
.v8{vertical-align:14.874667pt;}
.v7{vertical-align:17.002667pt;}
.v1{vertical-align:19.712000pt;}
.va{vertical-align:24.656000pt;}
.v9{vertical-align:70.688000pt;}
.ls9{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000002pt;}
.ls7{letter-spacing:0.000020pt;}
.lsa{letter-spacing:0.000033pt;}
.lsd{letter-spacing:0.000035pt;}
.ls3a{letter-spacing:0.000052pt;}
.ls78{letter-spacing:0.000283pt;}
.ls14{letter-spacing:0.000548pt;}
.ls39{letter-spacing:0.000751pt;}
.ls20{letter-spacing:0.000832pt;}
.ls4f{letter-spacing:0.000938pt;}
.ls11{letter-spacing:0.001098pt;}
.ls3f{letter-spacing:0.001151pt;}
.ls54{letter-spacing:0.001293pt;}
.ls30{letter-spacing:0.001346pt;}
.ls26{letter-spacing:0.001629pt;}
.ls21{letter-spacing:0.001913pt;}
.ls66{letter-spacing:0.001981pt;}
.ls94{letter-spacing:0.002320pt;}
.ls19{letter-spacing:0.002373pt;}
.ls64{letter-spacing:0.002533pt;}
.ls4b{letter-spacing:0.002568pt;}
.ls61{letter-spacing:0.003029pt;}
.ls7e{letter-spacing:0.003171pt;}
.ls17{letter-spacing:0.003312pt;}
.ls31{letter-spacing:0.004588pt;}
.ls18{letter-spacing:0.005102pt;}
.ls6e{letter-spacing:0.847396pt;}
.ls68{letter-spacing:0.852730pt;}
.ls3c{letter-spacing:1.700500pt;}
.ls86{letter-spacing:1.705124pt;}
.ls79{letter-spacing:2.124845pt;}
.ls7a{letter-spacing:2.554170pt;}
.ls4c{letter-spacing:2.654481pt;}
.ls0{letter-spacing:2.654563pt;}
.ls56{letter-spacing:2.655753pt;}
.ls60{letter-spacing:2.656060pt;}
.ls3b{letter-spacing:2.656751pt;}
.ls2{letter-spacing:2.656780pt;}
.ls1a{letter-spacing:2.657067pt;}
.ls2b{letter-spacing:2.659285pt;}
.ls4d{letter-spacing:2.659814pt;}
.ls1{letter-spacing:2.659897pt;}
.ls9d{letter-spacing:2.722196pt;}
.ls38{letter-spacing:2.864333pt;}
.ls72{letter-spacing:2.978320pt;}
.ls8d{letter-spacing:3.293022pt;}
.ls6d{letter-spacing:3.821039pt;}
.ls25{letter-spacing:3.822741pt;}
.ls67{letter-spacing:3.824264pt;}
.ls57{letter-spacing:3.826373pt;}
.ls73{letter-spacing:5.101837pt;}
.ls32{letter-spacing:5.205495pt;}
.ls5e{letter-spacing:6.482304pt;}
.ls4{letter-spacing:8.325500pt;}
.ls3{letter-spacing:8.325994pt;}
.ls10{letter-spacing:8.501315pt;}
.ls3e{letter-spacing:9.442568pt;}
.ls16{letter-spacing:9.442941pt;}
.ls12{letter-spacing:9.445102pt;}
.ls23{letter-spacing:9.447246pt;}
.ls24{letter-spacing:9.447901pt;}
.ls13{letter-spacing:9.448274pt;}
.ls6a{letter-spacing:10.162941pt;}
.ls2f{letter-spacing:10.520274pt;}
.ls22{letter-spacing:11.144894pt;}
.ls15{letter-spacing:11.145355pt;}
.ls48{letter-spacing:11.802436pt;}
.ls5d{letter-spacing:11.805235pt;}
.ls49{letter-spacing:11.807449pt;}
.ls76{letter-spacing:11.807733pt;}
.ls96{letter-spacing:11.810568pt;}
.ls8e{letter-spacing:11.817002pt;}
.ls8b{letter-spacing:12.101922pt;}
.ls2e{letter-spacing:12.222688pt;}
.ls50{letter-spacing:12.267392pt;}
.ls3d{letter-spacing:12.422484pt;}
.ls44{letter-spacing:12.870431pt;}
.ls6f{letter-spacing:13.269597pt;}
.ls63{letter-spacing:13.271706pt;}
.lse{letter-spacing:13.389780pt;}
.ls98{letter-spacing:13.418949pt;}
.ls52{letter-spacing:13.459814pt;}
.lsc{letter-spacing:13.474793pt;}
.ls6b{letter-spacing:13.648060pt;}
.ls9a{letter-spacing:13.683791pt;}
.ls69{letter-spacing:13.986373pt;}
.ls99{letter-spacing:14.108845pt;}
.ls2a{letter-spacing:14.129523pt;}
.ls2d{letter-spacing:14.163285pt;}
.ls95{letter-spacing:14.170400pt;}
.ls74{letter-spacing:14.170719pt;}
.ls45{letter-spacing:14.459733pt;}
.ls5c{letter-spacing:14.464060pt;}
.ls83{letter-spacing:14.554719pt;}
.ls51{letter-spacing:14.811392pt;}
.ls91{letter-spacing:14.942379pt;}
.ls4e{letter-spacing:15.235814pt;}
.ls8c{letter-spacing:15.609557pt;}
.ls62{letter-spacing:15.634373pt;}
.ls28{letter-spacing:15.832894pt;}
.ls70{letter-spacing:16.223753pt;}
.ls6{letter-spacing:16.306893pt;}
.ls42{letter-spacing:16.683418pt;}
.ls6c{letter-spacing:16.687753pt;}
.ls75{letter-spacing:16.719503pt;}
.ls80{letter-spacing:16.822963pt;}
.ls5f{letter-spacing:16.826419pt;}
.ls7f{letter-spacing:16.826949pt;}
.ls5{letter-spacing:16.880742pt;}
.ls87{letter-spacing:16.909837pt;}
.ls84{letter-spacing:17.103503pt;}
.ls41{letter-spacing:17.853039pt;}
.ls29{letter-spacing:17.961407pt;}
.lsa0{letter-spacing:18.013837pt;}
.ls1c{letter-spacing:18.175769pt;}
.ls1f{letter-spacing:18.321067pt;}
.ls1e{letter-spacing:18.542688pt;}
.ls90{letter-spacing:18.738355pt;}
.ls1d{letter-spacing:18.810436pt;}
.ls53{letter-spacing:19.292373pt;}
.ls9f{letter-spacing:20.248504pt;}
.ls34{letter-spacing:20.458829pt;}
.ls37{letter-spacing:20.533495pt;}
.ls43{letter-spacing:20.886084pt;}
.lsb{letter-spacing:21.251009pt;}
.ls9e{letter-spacing:21.256342pt;}
.ls8f{letter-spacing:21.604224pt;}
.ls71{letter-spacing:21.912504pt;}
.ls7b{letter-spacing:22.550963pt;}
.ls77{letter-spacing:22.559819pt;}
.ls85{letter-spacing:23.244845pt;}
.ls82{letter-spacing:23.550458pt;}
.ls8{letter-spacing:23.907747pt;}
.ls81{letter-spacing:23.980845pt;}
.ls7c{letter-spacing:24.249124pt;}
.ls36{letter-spacing:25.082829pt;}
.ls65{letter-spacing:25.975246pt;}
.ls35{letter-spacing:26.160162pt;}
.ls5a{letter-spacing:26.189039pt;}
.ls7d{letter-spacing:27.651171pt;}
.ls55{letter-spacing:28.496589pt;}
.ls5b{letter-spacing:28.946304pt;}
.ls9c{letter-spacing:29.368504pt;}
.ls59{letter-spacing:30.423901pt;}
.ls88{letter-spacing:31.085837pt;}
.ls89{letter-spacing:34.019171pt;}
.ls8a{letter-spacing:36.427255pt;}
.ls58{letter-spacing:36.908971pt;}
.ls9b{letter-spacing:37.096504pt;}
.ls92{letter-spacing:37.309607pt;}
.ls97{letter-spacing:53.133200pt;}
.ls1b{letter-spacing:158.039867pt;}
.ls33{letter-spacing:527.367867pt;}
.ls93{letter-spacing:729.981200pt;}
.ls4a{letter-spacing:758.434533pt;}
.ls40{letter-spacing:798.306533pt;}
.ls27{letter-spacing:831.495867pt;}
.ls46{letter-spacing:834.935867pt;}
.ls2c{letter-spacing:972.642533pt;}
.ls47{letter-spacing:979.015867pt;}
.ws192{word-spacing:-41.316998pt;}
.ws12{word-spacing:-30.318387pt;}
.ws97{word-spacing:-29.499997pt;}
.ws99{word-spacing:-28.097259pt;}
.ws9{word-spacing:-27.360996pt;}
.ws144{word-spacing:-23.600071pt;}
.ws199{word-spacing:-23.130529pt;}
.ws1ae{word-spacing:-22.477878pt;}
.ws2{word-spacing:-21.538128pt;}
.wsab{word-spacing:-21.073033pt;}
.ws128{word-spacing:-21.041064pt;}
.wsc4{word-spacing:-20.998557pt;}
.ws9b{word-spacing:-20.063398pt;}
.ws1d6{word-spacing:-18.448571pt;}
.ws1d7{word-spacing:-18.448125pt;}
.wsaa{word-spacing:-17.703995pt;}
.wsb5{word-spacing:-17.703162pt;}
.ws98{word-spacing:-17.698661pt;}
.wsc5{word-spacing:-17.682995pt;}
.wsc9{word-spacing:-16.620315pt;}
.ws1da{word-spacing:-16.577808pt;}
.ws9a{word-spacing:-16.450355pt;}
.ws1a4{word-spacing:-16.300053pt;}
.ws177{word-spacing:-16.294719pt;}
.wsd3{word-spacing:-16.280258pt;}
.ws9c{word-spacing:-16.188203pt;}
.wsd0{word-spacing:-16.184158pt;}
.wsd4{word-spacing:-16.183765pt;}
.ws9d{word-spacing:-16.182869pt;}
.ws129{word-spacing:-15.543526pt;}
.ws1bb{word-spacing:-15.345099pt;}
.ws19a{word-spacing:-15.335197pt;}
.ws193{word-spacing:-15.330130pt;}
.wsb2{word-spacing:-15.005042pt;}
.ws1d9{word-spacing:-14.367434pt;}
.ws174{word-spacing:-13.144547pt;}
.ws13e{word-spacing:-12.964696pt;}
.ws11d{word-spacing:-12.879682pt;}
.ws13f{word-spacing:-12.779203pt;}
.ws21{word-spacing:-12.454610pt;}
.ws169{word-spacing:-12.114552pt;}
.ws1{word-spacing:-11.744592pt;}
.ws8{word-spacing:-11.551545pt;}
.ws178{word-spacing:-11.195087pt;}
.ws1a5{word-spacing:-11.194757pt;}
.ws0{word-spacing:-10.329120pt;}
.ws1ab{word-spacing:-9.861670pt;}
.ws18a{word-spacing:-9.096541pt;}
.ws131{word-spacing:-8.971332pt;}
.ws4c{word-spacing:-8.943403pt;}
.ws13b{word-spacing:-8.926512pt;}
.ws1cc{word-spacing:-8.246397pt;}
.ws18e{word-spacing:-7.778818pt;}
.ws6{word-spacing:-7.132651pt;}
.wsb{word-spacing:-7.111502pt;}
.wse{word-spacing:-7.108929pt;}
.wsa{word-spacing:-7.103150pt;}
.ws7{word-spacing:-7.100320pt;}
.wsd{word-spacing:-7.092914pt;}
.ws5{word-spacing:-6.814464pt;}
.ws191{word-spacing:-6.609911pt;}
.ws176{word-spacing:-6.609015pt;}
.ws130{word-spacing:-6.608666pt;}
.ws1a9{word-spacing:-6.461094pt;}
.wscb{word-spacing:-4.828203pt;}
.ws19d{word-spacing:-4.251682pt;}
.ws19c{word-spacing:-4.249199pt;}
.ws11e{word-spacing:-3.655619pt;}
.ws140{word-spacing:-3.528098pt;}
.ws2d{word-spacing:-2.550432pt;}
.ws55{word-spacing:-2.507925pt;}
.ws1ca{word-spacing:-2.465418pt;}
.ws43{word-spacing:-2.422910pt;}
.wscd{word-spacing:-2.380403pt;}
.ws80{word-spacing:-2.337896pt;}
.wsc{word-spacing:-2.309207pt;}
.ws1f{word-spacing:-2.295389pt;}
.ws74{word-spacing:-2.210374pt;}
.wsfe{word-spacing:-2.167867pt;}
.ws61{word-spacing:-2.125360pt;}
.ws113{word-spacing:-2.082853pt;}
.ws114{word-spacing:-2.040346pt;}
.ws73{word-spacing:-1.997838pt;}
.ws19f{word-spacing:-1.955331pt;}
.ws1a0{word-spacing:-1.912824pt;}
.wsc2{word-spacing:-1.827810pt;}
.ws42{word-spacing:-1.785302pt;}
.ws172{word-spacing:-1.700288pt;}
.ws10f{word-spacing:-1.657781pt;}
.ws14a{word-spacing:-1.572766pt;}
.ws59{word-spacing:-1.530259pt;}
.wsf8{word-spacing:-1.487752pt;}
.ws11{word-spacing:-1.462252pt;}
.wsed{word-spacing:-1.445245pt;}
.ws51{word-spacing:-1.402738pt;}
.ws16f{word-spacing:-1.360230pt;}
.ws8e{word-spacing:-1.317723pt;}
.ws85{word-spacing:-1.232709pt;}
.wsbe{word-spacing:-1.190202pt;}
.wscc{word-spacing:-1.105187pt;}
.wsca{word-spacing:-1.097666pt;}
.ws91{word-spacing:-1.062680pt;}
.ws22{word-spacing:-1.020173pt;}
.ws23{word-spacing:-0.977666pt;}
.wsae{word-spacing:-0.943177pt;}
.wsaf{word-spacing:-0.935158pt;}
.ws8b{word-spacing:-0.892651pt;}
.ws92{word-spacing:-0.850144pt;}
.ws1b4{word-spacing:-0.765130pt;}
.ws103{word-spacing:-0.722622pt;}
.wsa7{word-spacing:-0.680115pt;}
.wsf5{word-spacing:-0.637608pt;}
.ws1d2{word-spacing:-0.595101pt;}
.ws1b6{word-spacing:-0.552594pt;}
.ws53{word-spacing:-0.510086pt;}
.ws1a7{word-spacing:-0.478999pt;}
.ws138{word-spacing:-0.467613pt;}
.wsf6{word-spacing:-0.467579pt;}
.wsf1{word-spacing:-0.425072pt;}
.wsb0{word-spacing:-0.340058pt;}
.wsda{word-spacing:-0.316203pt;}
.ws39{word-spacing:-0.255043pt;}
.ws1c4{word-spacing:-0.212536pt;}
.ws100{word-spacing:-0.177736pt;}
.wsff{word-spacing:-0.170029pt;}
.wsad{word-spacing:-0.127522pt;}
.wsf0{word-spacing:-0.042507pt;}
.ws46{word-spacing:0.000000pt;}
.ws13{word-spacing:0.038257pt;}
.ws1ce{word-spacing:0.085014pt;}
.wsfd{word-spacing:0.127522pt;}
.ws23c{word-spacing:0.170029pt;}
.ws242{word-spacing:0.204035pt;}
.ws161{word-spacing:0.212536pt;}
.ws258{word-spacing:0.238041pt;}
.ws7e{word-spacing:0.255043pt;}
.ws1c5{word-spacing:0.297550pt;}
.wsbd{word-spacing:0.340058pt;}
.ws255{word-spacing:0.340059pt;}
.ws137{word-spacing:0.382565pt;}
.ws155{word-spacing:0.425072pt;}
.ws1c9{word-spacing:0.467579pt;}
.wseb{word-spacing:0.510086pt;}
.ws1f9{word-spacing:0.578100pt;}
.wsc3{word-spacing:0.595101pt;}
.wsd1{word-spacing:0.615842pt;}
.wse6{word-spacing:0.637608pt;}
.ws1a1{word-spacing:0.648539pt;}
.ws75{word-spacing:0.680115pt;}
.ws22d{word-spacing:0.680117pt;}
.ws24{word-spacing:0.722622pt;}
.wsb3{word-spacing:0.765130pt;}
.ws167{word-spacing:0.807637pt;}
.ws263{word-spacing:0.816141pt;}
.wse0{word-spacing:0.850144pt;}
.ws60{word-spacing:0.892651pt;}
.wsdd{word-spacing:0.915797pt;}
.ws8c{word-spacing:0.935158pt;}
.ws22f{word-spacing:0.952164pt;}
.ws1a6{word-spacing:0.966334pt;}
.ws35{word-spacing:0.977666pt;}
.ws244{word-spacing:0.986170pt;}
.ws89{word-spacing:1.020171pt;}
.ws8a{word-spacing:1.020173pt;}
.ws11a{word-spacing:1.020176pt;}
.ws21b{word-spacing:1.054182pt;}
.ws1db{word-spacing:1.062680pt;}
.ws1f0{word-spacing:1.088188pt;}
.ws1af{word-spacing:1.093824pt;}
.ws7b{word-spacing:1.105187pt;}
.ws184{word-spacing:1.147694pt;}
.ws1a2{word-spacing:1.190202pt;}
.ws1cf{word-spacing:1.232709pt;}
.ws16{word-spacing:1.262466pt;}
.ws15a{word-spacing:1.275214pt;}
.ws152{word-spacing:1.275216pt;}
.ws8d{word-spacing:1.317723pt;}
.ws160{word-spacing:1.360230pt;}
.ws15f{word-spacing:1.360241pt;}
.wsa5{word-spacing:1.402738pt;}
.ws24a{word-spacing:1.428246pt;}
.ws1d4{word-spacing:1.445245pt;}
.ws210{word-spacing:1.462252pt;}
.ws25{word-spacing:1.487752pt;}
.ws22b{word-spacing:1.530264pt;}
.ws227{word-spacing:1.564270pt;}
.wsc7{word-spacing:1.572766pt;}
.wsc6{word-spacing:1.579490pt;}
.ws29{word-spacing:1.615274pt;}
.ws2a{word-spacing:1.657781pt;}
.wsac{word-spacing:1.686157pt;}
.ws1bd{word-spacing:1.696136pt;}
.ws19b{word-spacing:1.699654pt;}
.ws3{word-spacing:1.700288pt;}
.ws1bc{word-spacing:1.707667pt;}
.wsd2{word-spacing:1.713001pt;}
.ws17{word-spacing:1.721544pt;}
.ws14b{word-spacing:1.742779pt;}
.ws64{word-spacing:1.742795pt;}
.ws17f{word-spacing:1.758985pt;}
.ws17d{word-spacing:1.761468pt;}
.wsf4{word-spacing:1.785302pt;}
.ws7f{word-spacing:1.827810pt;}
.wsb4{word-spacing:1.870317pt;}
.ws19e{word-spacing:1.912824pt;}
.ws5f{word-spacing:1.955331pt;}
.wsc0{word-spacing:1.997838pt;}
.wsc1{word-spacing:2.040346pt;}
.wse1{word-spacing:2.081001pt;}
.ws79{word-spacing:2.082853pt;}
.ws182{word-spacing:2.087463pt;}
.ws183{word-spacing:2.102334pt;}
.ws6f{word-spacing:2.125360pt;}
.ws14{word-spacing:2.142366pt;}
.wsc8{word-spacing:2.167867pt;}
.ws52{word-spacing:2.210374pt;}
.ws156{word-spacing:2.252882pt;}
.wse7{word-spacing:2.295389pt;}
.ws1f8{word-spacing:2.312399pt;}
.wse4{word-spacing:2.337896pt;}
.ws101{word-spacing:2.353396pt;}
.ws154{word-spacing:2.380403pt;}
.ws111{word-spacing:2.422910pt;}
.wse2{word-spacing:2.465418pt;}
.ws153{word-spacing:2.503977pt;}
.ws65{word-spacing:2.507925pt;}
.ws16b{word-spacing:2.516434pt;}
.ws69{word-spacing:2.550432pt;}
.wsa4{word-spacing:2.551997pt;}
.ws215{word-spacing:2.584446pt;}
.ws83{word-spacing:2.592939pt;}
.ws30{word-spacing:2.677954pt;}
.ws1b{word-spacing:2.677957pt;}
.ws213{word-spacing:2.720469pt;}
.ws253{word-spacing:2.754475pt;}
.ws1b1{word-spacing:2.756122pt;}
.ws94{word-spacing:2.762968pt;}
.ws19{word-spacing:2.792727pt;}
.ws15d{word-spacing:2.805454pt;}
.ws3c{word-spacing:2.805475pt;}
.ws15e{word-spacing:2.805507pt;}
.wsb6{word-spacing:2.806157pt;}
.ws22c{word-spacing:2.822487pt;}
.wsbc{word-spacing:2.847982pt;}
.ws21e{word-spacing:2.856493pt;}
.wsbb{word-spacing:2.877756pt;}
.wsb1{word-spacing:2.890490pt;}
.ws10{word-spacing:2.917069pt;}
.ws21f{word-spacing:2.924505pt;}
.ws36{word-spacing:2.932997pt;}
.ws1c{word-spacing:2.945753pt;}
.ws197{word-spacing:2.975504pt;}
.ws34{word-spacing:2.983988pt;}
.ws32{word-spacing:2.984010pt;}
.ws196{word-spacing:2.987667pt;}
.ws195{word-spacing:2.992823pt;}
.ws20{word-spacing:3.060518pt;}
.ws264{word-spacing:3.094534pt;}
.ws2c{word-spacing:3.103026pt;}
.ws1b8{word-spacing:3.145533pt;}
.ws1d8{word-spacing:3.184238pt;}
.ws5a{word-spacing:3.188040pt;}
.ws25f{word-spacing:3.196551pt;}
.ws118{word-spacing:3.264563pt;}
.ws15c{word-spacing:3.273027pt;}
.ws108{word-spacing:3.273054pt;}
.ws15b{word-spacing:3.273080pt;}
.ws238{word-spacing:3.298569pt;}
.ws84{word-spacing:3.315562pt;}
.ws225{word-spacing:3.332575pt;}
.wsf7{word-spacing:3.358069pt;}
.ws86{word-spacing:3.400576pt;}
.wsd9{word-spacing:3.414334pt;}
.ws1ef{word-spacing:3.468598pt;}
.ws6e{word-spacing:3.485590pt;}
.ws232{word-spacing:3.502604pt;}
.ws66{word-spacing:3.528098pt;}
.ws3e{word-spacing:3.570605pt;}
.ws24e{word-spacing:3.604622pt;}
.wsa8{word-spacing:3.613112pt;}
.ws112{word-spacing:3.655619pt;}
.ws1a{word-spacing:3.672627pt;}
.ws254{word-spacing:3.672634pt;}
.ws81{word-spacing:3.698126pt;}
.ws117{word-spacing:3.706639pt;}
.ws82{word-spacing:3.740634pt;}
.ws187{word-spacing:3.783141pt;}
.ws8f{word-spacing:3.825648pt;}
.wsf3{word-spacing:3.868155pt;}
.ws44{word-spacing:3.910662pt;}
.ws45{word-spacing:3.953170pt;}
.ws78{word-spacing:3.995677pt;}
.ws37{word-spacing:4.038184pt;}
.ws212{word-spacing:4.046698pt;}
.ws13d{word-spacing:4.080691pt;}
.ws1f1{word-spacing:4.114710pt;}
.wse3{word-spacing:4.123198pt;}
.ws15{word-spacing:4.131706pt;}
.ws7c{word-spacing:4.165706pt;}
.ws4f{word-spacing:4.182722pt;}
.ws147{word-spacing:4.198660pt;}
.ws148{word-spacing:4.200023pt;}
.ws145{word-spacing:4.202804pt;}
.ws146{word-spacing:4.203993pt;}
.ws149{word-spacing:4.205357pt;}
.wsf9{word-spacing:4.216727pt;}
.ws190{word-spacing:4.250720pt;}
.ws208{word-spacing:4.250733pt;}
.wse8{word-spacing:4.293227pt;}
.ws3b{word-spacing:4.335734pt;}
.ws180{word-spacing:4.369001pt;}
.wsa3{word-spacing:4.378242pt;}
.ws209{word-spacing:4.386757pt;}
.ws10d{word-spacing:4.420749pt;}
.ws162{word-spacing:4.463256pt;}
.ws157{word-spacing:4.505763pt;}
.ws143{word-spacing:4.556786pt;}
.ws28{word-spacing:4.590778pt;}
.ws1ee{word-spacing:4.590792pt;}
.ws1fa{word-spacing:4.624798pt;}
.wsde{word-spacing:4.633285pt;}
.wsdc{word-spacing:4.641001pt;}
.wsdb{word-spacing:4.651490pt;}
.ws1f4{word-spacing:4.658804pt;}
.ws54{word-spacing:4.675792pt;}
.ws20c{word-spacing:4.692810pt;}
.wsdf{word-spacing:4.718299pt;}
.ws102{word-spacing:4.760806pt;}
.ws5c{word-spacing:4.803314pt;}
.ws20d{word-spacing:4.828833pt;}
.ws168{word-spacing:4.930835pt;}
.ws20b{word-spacing:4.930851pt;}
.ws10b{word-spacing:4.973342pt;}
.ws214{word-spacing:4.998862pt;}
.ws173{word-spacing:5.058357pt;}
.ws226{word-spacing:5.066874pt;}
.ws18b{word-spacing:5.100864pt;}
.ws18c{word-spacing:5.143371pt;}
.ws1d1{word-spacing:5.185878pt;}
.wsfb{word-spacing:5.202898pt;}
.ws139{word-spacing:5.228386pt;}
.wsea{word-spacing:5.270893pt;}
.ws259{word-spacing:5.270909pt;}
.ws1c8{word-spacing:5.313400pt;}
.ws1f3{word-spacing:5.372927pt;}
.ws68{word-spacing:5.398414pt;}
.ws47{word-spacing:5.440922pt;}
.ws1fb{word-spacing:5.440939pt;}
.ws24f{word-spacing:5.474945pt;}
.wsd8{word-spacing:5.483429pt;}
.ws21a{word-spacing:5.508950pt;}
.wscf{word-spacing:5.525936pt;}
.ws216{word-spacing:5.542956pt;}
.wsa9{word-spacing:5.568443pt;}
.ws218{word-spacing:5.576962pt;}
.ws219{word-spacing:5.610968pt;}
.ws247{word-spacing:5.644974pt;}
.wsa0{word-spacing:5.695965pt;}
.ws9f{word-spacing:5.723667pt;}
.ws9e{word-spacing:5.728823pt;}
.ws63{word-spacing:5.738472pt;}
.ws62{word-spacing:5.780979pt;}
.ws260{word-spacing:5.780997pt;}
.ws1b9{word-spacing:5.823486pt;}
.ws1dd{word-spacing:5.865994pt;}
.ws205{word-spacing:5.883015pt;}
.ws3f{word-spacing:5.908501pt;}
.ws188{word-spacing:5.951008pt;}
.ws1be{word-spacing:5.993515pt;}
.ws243{word-spacing:6.019038pt;}
.ws217{word-spacing:6.053044pt;}
.ws3a{word-spacing:6.078530pt;}
.ws71{word-spacing:6.121037pt;}
.ws1f7{word-spacing:6.121056pt;}
.ws21d{word-spacing:6.155062pt;}
.ws76{word-spacing:6.163544pt;}
.ws1ff{word-spacing:6.189068pt;}
.ws121{word-spacing:6.206051pt;}
.ws164{word-spacing:6.248544pt;}
.ws163{word-spacing:6.248558pt;}
.ws257{word-spacing:6.291085pt;}
.wsa1{word-spacing:6.333573pt;}
.wsa2{word-spacing:6.358334pt;}
.ws123{word-spacing:6.376077pt;}
.ws122{word-spacing:6.376080pt;}
.ws27{word-spacing:6.418587pt;}
.ws234{word-spacing:6.461115pt;}
.ws87{word-spacing:6.503602pt;}
.ws70{word-spacing:6.546109pt;}
.ws20e{word-spacing:6.563132pt;}
.ws170{word-spacing:6.588616pt;}
.ws141{word-spacing:6.673623pt;}
.ws151{word-spacing:6.673630pt;}
.ws6d{word-spacing:6.716138pt;}
.ws224{word-spacing:6.733162pt;}
.wsce{word-spacing:6.758645pt;}
.ws50{word-spacing:6.801152pt;}
.ws245{word-spacing:6.835179pt;}
.ws1d5{word-spacing:6.843659pt;}
.wsbf{word-spacing:7.013688pt;}
.ws23e{word-spacing:7.039214pt;}
.ws1ec{word-spacing:7.056195pt;}
.wsef{word-spacing:7.098702pt;}
.ws1b5{word-spacing:7.141210pt;}
.ws20f{word-spacing:7.175238pt;}
.ws10a{word-spacing:7.183717pt;}
.ws6a{word-spacing:7.226224pt;}
.ws109{word-spacing:7.226254pt;}
.ws24c{word-spacing:7.243250pt;}
.ws198{word-spacing:7.268731pt;}
.ws3d{word-spacing:7.311238pt;}
.ws248{word-spacing:7.345267pt;}
.ws5b{word-spacing:7.353746pt;}
.ws136{word-spacing:7.396253pt;}
.wsb9{word-spacing:7.407852pt;}
.ws11c{word-spacing:7.438730pt;}
.wsba{word-spacing:7.438760pt;}
.wsec{word-spacing:7.481267pt;}
.ws200{word-spacing:7.515297pt;}
.ws41{word-spacing:7.523774pt;}
.ws23d{word-spacing:7.549302pt;}
.ws4a{word-spacing:7.566253pt;}
.ws48{word-spacing:7.566282pt;}
.ws104{word-spacing:7.608761pt;}
.ws40{word-spacing:7.608789pt;}
.ws49{word-spacing:7.608793pt;}
.ws1ad{word-spacing:7.651296pt;}
.ws207{word-spacing:7.685326pt;}
.ws17e{word-spacing:7.718334pt;}
.ws262{word-spacing:7.719332pt;}
.ws17c{word-spacing:7.736310pt;}
.ws228{word-spacing:7.753338pt;}
.ws1e3{word-spacing:7.778818pt;}
.ws249{word-spacing:7.787343pt;}
.wsf2{word-spacing:7.821325pt;}
.ws236{word-spacing:7.855355pt;}
.ws1ba{word-spacing:7.863832pt;}
.ws11f{word-spacing:7.906339pt;}
.ws189{word-spacing:7.934329pt;}
.ws96{word-spacing:7.948846pt;}
.ws18{word-spacing:7.957359pt;}
.ws159{word-spacing:7.991354pt;}
.ws241{word-spacing:7.991379pt;}
.ws67{word-spacing:8.033861pt;}
.ws6c{word-spacing:8.076368pt;}
.ws13a{word-spacing:8.118875pt;}
.ws13c{word-spacing:8.139667pt;}
.ws239{word-spacing:8.161408pt;}
.ws72{word-spacing:8.203890pt;}
.ws4e{word-spacing:8.229420pt;}
.ws20a{word-spacing:8.297431pt;}
.ws16d{word-spacing:8.331411pt;}
.ws134{word-spacing:8.373918pt;}
.ws14f{word-spacing:8.416426pt;}
.ws1fd{word-spacing:8.433455pt;}
.ws14e{word-spacing:8.434261pt;}
.ws25a{word-spacing:8.467461pt;}
.wsb8{word-spacing:8.501440pt;}
.ws1f5{word-spacing:8.501467pt;}
.wsb7{word-spacing:8.504867pt;}
.ws56{word-spacing:8.543947pt;}
.ws10e{word-spacing:8.543961pt;}
.ws110{word-spacing:8.586454pt;}
.ws57{word-spacing:8.586467pt;}
.wsd6{word-spacing:8.610509pt;}
.ws14c{word-spacing:8.628962pt;}
.ws186{word-spacing:8.662334pt;}
.ws185{word-spacing:8.667950pt;}
.ws16c{word-spacing:8.671469pt;}
.ws252{word-spacing:8.671496pt;}
.ws1cd{word-spacing:8.756483pt;}
.ws1cb{word-spacing:8.798990pt;}
.ws211{word-spacing:8.875531pt;}
.ws93{word-spacing:8.884005pt;}
.ws26{word-spacing:8.926512pt;}
.ws14d{word-spacing:8.969019pt;}
.ws250{word-spacing:9.045561pt;}
.ws95{word-spacing:9.054034pt;}
.ws10c{word-spacing:9.096541pt;}
.ws230{word-spacing:9.215590pt;}
.ws2b{word-spacing:9.224062pt;}
.ws18d{word-spacing:9.266570pt;}
.ws58{word-spacing:9.309077pt;}
.ws23f{word-spacing:9.385619pt;}
.ws31{word-spacing:9.394091pt;}
.ws181{word-spacing:9.398334pt;}
.ws261{word-spacing:9.419625pt;}
.ws25b{word-spacing:9.453631pt;}
.ws1ac{word-spacing:9.479106pt;}
.ws220{word-spacing:9.487637pt;}
.ws38{word-spacing:9.564120pt;}
.ws206{word-spacing:9.589654pt;}
.wse5{word-spacing:9.606627pt;}
.ws237{word-spacing:9.623660pt;}
.ws1d3{word-spacing:9.691642pt;}
.ws23a{word-spacing:9.691672pt;}
.ws7a{word-spacing:9.734149pt;}
.ws6b{word-spacing:9.776656pt;}
.ws5d{word-spacing:9.861670pt;}
.ws12a{word-spacing:9.904178pt;}
.ws1e{word-spacing:9.946685pt;}
.ws12d{word-spacing:9.989192pt;}
.ws1f2{word-spacing:9.997725pt;}
.ws12c{word-spacing:10.007685pt;}
.ws124{word-spacing:10.041563pt;}
.ws133{word-spacing:10.044468pt;}
.ws88{word-spacing:10.074206pt;}
.ws17b{word-spacing:10.097001pt;}
.ws17a{word-spacing:10.102157pt;}
.ws229{word-spacing:10.133748pt;}
.ws231{word-spacing:10.167754pt;}
.ws126{word-spacing:10.236980pt;}
.ws166{word-spacing:10.244235pt;}
.ws251{word-spacing:10.269772pt;}
.ws165{word-spacing:10.286742pt;}
.wse9{word-spacing:10.371757pt;}
.ws21c{word-spacing:10.371789pt;}
.ws256{word-spacing:10.405795pt;}
.ws1b3{word-spacing:10.456771pt;}
.ws222{word-spacing:10.541819pt;}
.ws240{word-spacing:10.575825pt;}
.ws1a8{word-spacing:10.584293pt;}
.ws77{word-spacing:10.669307pt;}
.ws1fc{word-spacing:10.711848pt;}
.ws1d0{word-spacing:10.754322pt;}
.ws120{word-spacing:10.839336pt;}
.ws1dc{word-spacing:10.881843pt;}
.ws119{word-spacing:10.949889pt;}
.ws171{word-spacing:10.966858pt;}
.ws158{word-spacing:11.009365pt;}
.ws4b{word-spacing:11.051872pt;}
.ws16e{word-spacing:11.094379pt;}
.ws223{word-spacing:11.119918pt;}
.ws1aa{word-spacing:11.136886pt;}
.ws25c{word-spacing:11.289948pt;}
.ws11b{word-spacing:11.306915pt;}
.ws235{word-spacing:11.323954pt;}
.ws18f{word-spacing:11.391930pt;}
.wsee{word-spacing:11.434437pt;}
.ws115{word-spacing:11.476944pt;}
.ws22a{word-spacing:11.493983pt;}
.ws150{word-spacing:11.519451pt;}
.ws7d{word-spacing:11.604466pt;}
.ws203{word-spacing:11.664012pt;}
.wsa6{word-spacing:11.689480pt;}
.ws1b7{word-spacing:11.731987pt;}
.ws5e{word-spacing:11.859509pt;}
.ws24b{word-spacing:11.902053pt;}
.ws246{word-spacing:12.310124pt;}
.wsd5{word-spacing:12.324877pt;}
.wsd7{word-spacing:12.327088pt;}
.ws16a{word-spacing:12.446147pt;}
.ws90{word-spacing:12.497117pt;}
.ws1c6{word-spacing:12.582131pt;}
.ws1f6{word-spacing:12.582171pt;}
.ws1fe{word-spacing:12.616177pt;}
.ws24d{word-spacing:12.684188pt;}
.ws135{word-spacing:12.879682pt;}
.ws23b{word-spacing:13.024247pt;}
.ws201{word-spacing:13.058253pt;}
.ws202{word-spacing:13.466323pt;}
.ws22e{word-spacing:13.534335pt;}
.ws2f{word-spacing:13.602304pt;}
.ws116{word-spacing:13.636353pt;}
.ws221{word-spacing:13.738370pt;}
.ws1c7{word-spacing:13.984869pt;}
.ws4{word-spacing:14.112390pt;}
.ws33{word-spacing:14.116661pt;}
.ws12e{word-spacing:14.126997pt;}
.ws125{word-spacing:14.130313pt;}
.wsf{word-spacing:14.146441pt;}
.ws2e{word-spacing:14.239912pt;}
.ws204{word-spacing:14.350476pt;}
.ws233{word-spacing:14.384482pt;}
.ws1e9{word-spacing:14.409941pt;}
.ws142{word-spacing:14.486499pt;}
.ws25e{word-spacing:14.656529pt;}
.wsfa{word-spacing:15.132611pt;}
.wsfc{word-spacing:15.744716pt;}
.ws1ea{word-spacing:15.895881pt;}
.ws1de{word-spacing:15.897693pt;}
.ws25d{word-spacing:16.220798pt;}
.ws1ed{word-spacing:16.594863pt;}
.ws4d{word-spacing:18.159133pt;}
.ws1e2{word-spacing:19.595819pt;}
.ws1e4{word-spacing:20.190920pt;}
.ws1eb{word-spacing:20.275934pt;}
.ws1e0{word-spacing:20.445963pt;}
.ws1d{word-spacing:21.211093pt;}
.ws127{word-spacing:22.343647pt;}
.ws12b{word-spacing:22.452690pt;}
.ws179{word-spacing:25.035444pt;}
.ws1e8{word-spacing:26.822043pt;}
.ws1e7{word-spacing:29.032418pt;}
.ws1e5{word-spacing:29.167831pt;}
.ws1e1{word-spacing:32.050429pt;}
.ws1df{word-spacing:32.815558pt;}
.ws1e6{word-spacing:41.444520pt;}
.ws1a3{word-spacing:54.154173pt;}
.ws175{word-spacing:59.765123pt;}
.ws12f{word-spacing:73.801563pt;}
.ws132{word-spacing:73.804468pt;}
.ws1b0{word-spacing:224.471009pt;}
.ws1b2{word-spacing:224.472726pt;}
.ws194{word-spacing:268.220432pt;}
.ws1c0{word-spacing:354.341131pt;}
.ws1bf{word-spacing:387.802903pt;}
.ws1c3{word-spacing:433.472782pt;}
.ws1c1{word-spacing:446.871094pt;}
.ws1c2{word-spacing:471.015259pt;}
.ws107{word-spacing:586.397165pt;}
.ws106{word-spacing:624.653765pt;}
.ws105{word-spacing:643.799068pt;}
._4{margin-left:-16.737280pt;}
._2{margin-left:-2.658443pt;}
._8{width:1.808700pt;}
._a{width:2.959997pt;}
._16{width:4.615787pt;}
._17{width:5.585941pt;}
._7{width:7.186534pt;}
._3{width:9.953867pt;}
._18{width:11.818841pt;}
._1{width:13.525163pt;}
._0{width:14.499024pt;}
._b{width:16.233037pt;}
._1e{width:17.738267pt;}
._9{width:19.873683pt;}
._6{width:21.245864pt;}
._23{width:24.317956pt;}
._20{width:26.043441pt;}
._5{width:28.355847pt;}
._22{width:32.159874pt;}
._1f{width:256.020404pt;}
._1b{width:259.430757pt;}
._19{width:277.521878pt;}
._25{width:280.242347pt;}
._24{width:289.866007pt;}
._26{width:299.387650pt;}
._1d{width:309.453387pt;}
._1c{width:328.598690pt;}
._2b{width:378.621319pt;}
._27{width:388.959103pt;}
._29{width:393.039807pt;}
._2a{width:399.024839pt;}
._2c{width:403.819667pt;}
._21{width:412.489407pt;}
._28{width:420.720582pt;}
._13{width:428.677955pt;}
._1a{width:443.539193pt;}
._15{width:526.002746pt;}
._14{width:577.725669pt;}
._11{width:583.268625pt;}
._d{width:585.036930pt;}
._12{width:600.815652pt;}
._f{width:615.472181pt;}
._e{width:644.921261pt;}
._10{width:659.815831pt;}
._c{width:680.899468pt;}
.fs7{font-size:23.803733pt;}
.fsc{font-size:31.880533pt;}
.fsb{font-size:34.005333pt;}
.fs8{font-size:34.005867pt;}
.fs5{font-size:37.193600pt;}
.fs0{font-size:38.256000pt;}
.fsa{font-size:38.256533pt;}
.fs6{font-size:39.425067pt;}
.fs1{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs4{font-size:56.322133pt;}
.fs3{font-size:71.731200pt;}
.fs2{font-size:74.387733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000651pt;}
.y56{bottom:42.160000pt;}
.y5{bottom:68.426667pt;}
.y7d{bottom:71.321333pt;}
.y4{bottom:81.173333pt;}
.y370{bottom:82.745333pt;}
.y13c{bottom:84.809333pt;}
.y1d2{bottom:84.930667pt;}
.y7c{bottom:85.120000pt;}
.y2cd{bottom:85.133333pt;}
.y12e{bottom:85.152000pt;}
.y2fe{bottom:85.161333pt;}
.yb9{bottom:85.189333pt;}
.y1a2{bottom:85.204000pt;}
.y291{bottom:85.206667pt;}
.y223{bottom:85.232000pt;}
.yf3{bottom:85.258667pt;}
.y256{bottom:85.314667pt;}
.y1f2{bottom:85.346667pt;}
.y169{bottom:85.450667pt;}
.y17b{bottom:85.506667pt;}
.y324{bottom:85.734667pt;}
.y3{bottom:93.893333pt;}
.y36f{bottom:94.169333pt;}
.y13b{bottom:98.297333pt;}
.y1d1{bottom:98.540000pt;}
.y7b{bottom:98.918667pt;}
.y2cc{bottom:98.945333pt;}
.y12d{bottom:98.982667pt;}
.y2fd{bottom:99.002667pt;}
.yb8{bottom:99.056000pt;}
.y1a1{bottom:99.086667pt;}
.y290{bottom:99.092000pt;}
.y222{bottom:99.144000pt;}
.yf2{bottom:99.197333pt;}
.y255{bottom:99.306667pt;}
.y1f1{bottom:99.372000pt;}
.y168{bottom:99.581333pt;}
.y17a{bottom:99.690667pt;}
.y323{bottom:100.149333pt;}
.y3bc{bottom:105.593333pt;}
.y36e{bottom:106.021333pt;}
.y54{bottom:106.416000pt;}
.y13a{bottom:111.785333pt;}
.y1d0{bottom:112.149333pt;}
.y7a{bottom:112.717333pt;}
.y2cb{bottom:112.757333pt;}
.y12c{bottom:112.812000pt;}
.y2fc{bottom:112.842667pt;}
.yb7{bottom:112.924000pt;}
.y1a0{bottom:112.968000pt;}
.y221{bottom:113.056000pt;}
.yf1{bottom:113.134667pt;}
.y254{bottom:113.300000pt;}
.y1f0{bottom:113.397333pt;}
.y167{bottom:113.710667pt;}
.y179{bottom:113.876000pt;}
.y322{bottom:114.562667pt;}
.y36d{bottom:117.445333pt;}
.y3bb{bottom:117.612000pt;}
.y53{bottom:119.168000pt;}
.y139{bottom:125.273333pt;}
.y1cf{bottom:125.760000pt;}
.y79{bottom:126.516000pt;}
.y2ca{bottom:126.570667pt;}
.y12b{bottom:126.642667pt;}
.y2fb{bottom:126.684000pt;}
.yb6{bottom:126.790667pt;}
.y28f{bottom:126.800000pt;}
.y19f{bottom:126.850667pt;}
.y220{bottom:126.968000pt;}
.yf0{bottom:127.073333pt;}
.y253{bottom:127.293333pt;}
.y1ef{bottom:127.421333pt;}
.y166{bottom:127.841333pt;}
.y178{bottom:128.061333pt;}
.y36c{bottom:128.869333pt;}
.y321{bottom:128.977333pt;}
.y3ba{bottom:129.034667pt;}
.y138{bottom:138.761333pt;}
.y1ce{bottom:139.369333pt;}
.y36b{bottom:140.293333pt;}
.y78{bottom:140.314667pt;}
.y2c9{bottom:140.382667pt;}
.y3b9{bottom:140.458667pt;}
.y12a{bottom:140.473333pt;}
.y2fa{bottom:140.524000pt;}
.yb5{bottom:140.658667pt;}
.y19e{bottom:140.733333pt;}
.y21f{bottom:140.880000pt;}
.yef{bottom:141.010667pt;}
.y252{bottom:141.286667pt;}
.y1ee{bottom:141.446667pt;}
.y3e{bottom:141.590667pt;}
.y165{bottom:141.972000pt;}
.y177{bottom:142.721333pt;}
.y320{bottom:143.390667pt;}
.y3b8{bottom:151.882667pt;}
.y36a{bottom:152.145333pt;}
.y137{bottom:152.249333pt;}
.y1cd{bottom:152.978667pt;}
.y77{bottom:154.113333pt;}
.y2c8{bottom:154.194667pt;}
.y129{bottom:154.304000pt;}
.y28e{bottom:154.320000pt;}
.y2f9{bottom:154.364000pt;}
.yb4{bottom:154.525333pt;}
.y19d{bottom:154.616000pt;}
.y21e{bottom:154.792000pt;}
.yee{bottom:154.949333pt;}
.y251{bottom:155.280000pt;}
.y1ed{bottom:155.472000pt;}
.y164{bottom:156.101333pt;}
.y176{bottom:156.906667pt;}
.y3d{bottom:157.597333pt;}
.y31f{bottom:157.805333pt;}
.y369{bottom:163.569333pt;}
.y3b7{bottom:163.901333pt;}
.y136{bottom:165.737333pt;}
.y1cc{bottom:166.588000pt;}
.y76{bottom:167.912000pt;}
.y2c7{bottom:168.006667pt;}
.y128{bottom:168.134667pt;}
.y28d{bottom:168.205333pt;}
.yb3{bottom:168.393333pt;}
.y19c{bottom:168.498667pt;}
.y21d{bottom:168.702667pt;}
.y250{bottom:169.273333pt;}
.y1ec{bottom:169.497333pt;}
.y163{bottom:170.232000pt;}
.y175{bottom:171.092000pt;}
.yed{bottom:171.538667pt;}
.y368{bottom:174.993333pt;}
.y3b6{bottom:175.325333pt;}
.y135{bottom:179.225333pt;}
.y1cb{bottom:180.197333pt;}
.y75{bottom:181.710667pt;}
.y2c6{bottom:181.818667pt;}
.y127{bottom:181.965333pt;}
.y2f8{bottom:182.045333pt;}
.y28c{bottom:182.090667pt;}
.y19b{bottom:182.381333pt;}
.y21c{bottom:182.614667pt;}
.y24f{bottom:183.357333pt;}
.y1eb{bottom:183.522667pt;}
.yea{bottom:183.733333pt;}
.y162{bottom:184.726667pt;}
.y174{bottom:185.277333pt;}
.y367{bottom:186.416000pt;}
.y3b5{bottom:186.748000pt;}
.y31e{bottom:189.897333pt;}
.y134{bottom:192.713333pt;}
.yec{bottom:193.422667pt;}
.y1ca{bottom:193.808000pt;}
.y3c{bottom:194.532000pt;}
.y74{bottom:195.509333pt;}
.y2c5{bottom:195.630667pt;}
.y126{bottom:195.796000pt;}
.y2f7{bottom:195.886667pt;}
.y28b{bottom:195.976000pt;}
.yb2{bottom:196.046667pt;}
.y19a{bottom:196.264000pt;}
.y21b{bottom:196.526667pt;}
.yeb{bottom:197.312000pt;}
.y24e{bottom:197.350667pt;}
.y1ea{bottom:197.548000pt;}
.y366{bottom:198.269333pt;}
.y3b4{bottom:198.766667pt;}
.y161{bottom:198.856000pt;}
.y173{bottom:199.461333pt;}
.y52{bottom:204.026667pt;}
.y133{bottom:206.201333pt;}
.y1c9{bottom:207.417333pt;}
.y3b{bottom:208.513333pt;}
.y73{bottom:209.308000pt;}
.y2c4{bottom:209.442667pt;}
.y125{bottom:209.625333pt;}
.y365{bottom:209.693333pt;}
.y2f6{bottom:209.726667pt;}
.y28a{bottom:209.861333pt;}
.y199{bottom:210.146667pt;}
.y3b3{bottom:210.190667pt;}
.y21a{bottom:210.438667pt;}
.y24d{bottom:211.344000pt;}
.y1e9{bottom:211.728000pt;}
.y160{bottom:212.986667pt;}
.y172{bottom:213.646667pt;}
.ye9{bottom:214.265333pt;}
.y51{bottom:218.241333pt;}
.y1c8{bottom:221.026667pt;}
.y364{bottom:221.116000pt;}
.y3b2{bottom:221.614667pt;}
.y3a{bottom:222.496000pt;}
.y72{bottom:223.106667pt;}
.y2c3{bottom:223.254667pt;}
.y124{bottom:223.456000pt;}
.y2f5{bottom:223.568000pt;}
.yb1{bottom:223.621333pt;}
.y289{bottom:223.746667pt;}
.y198{bottom:224.029333pt;}
.y31d{bottom:224.322667pt;}
.y219{bottom:224.350667pt;}
.y24c{bottom:225.337333pt;}
.y1e8{bottom:225.753333pt;}
.y15f{bottom:227.116000pt;}
.y171{bottom:227.832000pt;}
.ye8{bottom:228.202667pt;}
.y50{bottom:232.456000pt;}
.y363{bottom:232.969333pt;}
.y3b1{bottom:233.037333pt;}
.y1c7{bottom:234.636000pt;}
.y39{bottom:236.477333pt;}
.y71{bottom:236.905333pt;}
.y2c2{bottom:237.068000pt;}
.y123{bottom:237.286667pt;}
.y2f4{bottom:237.408000pt;}
.yb0{bottom:237.488000pt;}
.y288{bottom:237.632000pt;}
.y197{bottom:237.912000pt;}
.y218{bottom:238.261333pt;}
.y1e7{bottom:239.778667pt;}
.y15e{bottom:241.246667pt;}
.y170{bottom:242.017333pt;}
.ye7{bottom:242.141333pt;}
.y248{bottom:243.628000pt;}
.y362{bottom:244.393333pt;}
.y3b0{bottom:245.056000pt;}
.y4f{bottom:246.669333pt;}
.y1c6{bottom:248.245333pt;}
.y24b{bottom:248.856000pt;}
.y38{bottom:250.458667pt;}
.y70{bottom:250.704000pt;}
.y2c1{bottom:250.880000pt;}
.y132{bottom:250.998667pt;}
.y122{bottom:251.117333pt;}
.y247{bottom:251.120000pt;}
.y2f3{bottom:251.249333pt;}
.yaf{bottom:251.356000pt;}
.y287{bottom:251.517333pt;}
.y217{bottom:252.173333pt;}
.y1e6{bottom:253.804000pt;}
.y15d{bottom:255.376000pt;}
.ye6{bottom:256.078667pt;}
.y16f{bottom:256.202667pt;}
.y361{bottom:256.245333pt;}
.y31c{bottom:256.414667pt;}
.y3af{bottom:256.480000pt;}
.y246{bottom:260.768000pt;}
.y4e{bottom:260.884000pt;}
.y1c5{bottom:261.856000pt;}
.y131{bottom:262.421333pt;}
.y24a{bottom:262.804000pt;}
.y244{bottom:262.936000pt;}
.y37{bottom:264.440000pt;}
.y6f{bottom:264.502667pt;}
.y2c0{bottom:264.692000pt;}
.y121{bottom:264.948000pt;}
.y2f2{bottom:265.089333pt;}
.yae{bottom:265.224000pt;}
.y286{bottom:265.402667pt;}
.y196{bottom:265.612000pt;}
.y360{bottom:267.669333pt;}
.y1e5{bottom:267.829333pt;}
.y3ae{bottom:267.904000pt;}
.y15c{bottom:269.506667pt;}
.ye5{bottom:270.017333pt;}
.y213{bottom:270.210667pt;}
.y245{bottom:270.417333pt;}
.y130{bottom:273.845333pt;}
.y4d{bottom:275.098667pt;}
.y216{bottom:275.438667pt;}
.y1c4{bottom:275.465333pt;}
.y249{bottom:276.752000pt;}
.y212{bottom:277.702667pt;}
.y6e{bottom:278.301333pt;}
.y36{bottom:278.421333pt;}
.y2bf{bottom:278.504000pt;}
.y120{bottom:278.778667pt;}
.y2f1{bottom:278.929333pt;}
.y35f{bottom:279.093333pt;}
.y285{bottom:279.288000pt;}
.y3ad{bottom:279.326667pt;}
.y1e4{bottom:281.854667pt;}
.y15b{bottom:283.636000pt;}
.y211{bottom:287.352000pt;}
.y1c3{bottom:289.074667pt;}
.y4c{bottom:289.312000pt;}
.y215{bottom:289.386667pt;}
.y20f{bottom:289.520000pt;}
.y35e{bottom:290.516000pt;}
.y31b{bottom:290.838667pt;}
.y3ac{bottom:291.345333pt;}
.y6d{bottom:292.100000pt;}
.y2be{bottom:292.316000pt;}
.y35{bottom:292.402667pt;}
.y11f{bottom:292.609333pt;}
.y2f0{bottom:292.770667pt;}
.yad{bottom:292.877333pt;}
.y284{bottom:293.173333pt;}
.y195{bottom:293.246667pt;}
.y1e3{bottom:295.880000pt;}
.y210{bottom:297.001333pt;}
.y240{bottom:297.109333pt;}
.y15a{bottom:297.766667pt;}
.ye4{bottom:297.884000pt;}
.y16e{bottom:299.185333pt;}
.y243{bottom:302.337333pt;}
.y35d{bottom:302.369333pt;}
.y1c2{bottom:302.684000pt;}
.y3ab{bottom:302.769333pt;}
.y214{bottom:303.334667pt;}
.y4b{bottom:303.526667pt;}
.y23f{bottom:304.601333pt;}
.y31a{bottom:305.253333pt;}
.y6c{bottom:305.898667pt;}
.y2bd{bottom:306.128000pt;}
.y34{bottom:306.384000pt;}
.y11e{bottom:306.438667pt;}
.y2ef{bottom:306.610667pt;}
.y283{bottom:307.058667pt;}
.y194{bottom:307.129333pt;}
.y1e2{bottom:309.905333pt;}
.y16d{bottom:310.609333pt;}
.y159{bottom:311.897333pt;}
.y35c{bottom:313.793333pt;}
.y3aa{bottom:314.193333pt;}
.y23e{bottom:314.249333pt;}
.y242{bottom:316.285333pt;}
.y1c1{bottom:316.293333pt;}
.y23c{bottom:316.417333pt;}
.y4a{bottom:317.741333pt;}
.y319{bottom:319.666667pt;}
.y6b{bottom:319.697333pt;}
.y2bc{bottom:319.940000pt;}
.y11d{bottom:320.269333pt;}
.yac{bottom:320.290667pt;}
.y33{bottom:320.365333pt;}
.y2ee{bottom:320.452000pt;}
.y282{bottom:320.944000pt;}
.y193{bottom:321.012000pt;}
.y23d{bottom:323.898667pt;}
.y1e1{bottom:323.930667pt;}
.y20e{bottom:324.836000pt;}
.y35b{bottom:325.216000pt;}
.ye3{bottom:325.740000pt;}
.y158{bottom:326.026667pt;}
.y3a9{bottom:326.210667pt;}
.y1c0{bottom:329.904000pt;}
.y241{bottom:330.232000pt;}
.y49{bottom:331.954667pt;}
.y6a{bottom:333.496000pt;}
.y2bb{bottom:333.752000pt;}
.y11c{bottom:334.100000pt;}
.yab{bottom:334.158667pt;}
.y2ed{bottom:334.292000pt;}
.y32{bottom:334.346667pt;}
.y281{bottom:334.829333pt;}
.y192{bottom:334.894667pt;}
.y35a{bottom:336.640000pt;}
.y3a8{bottom:337.634667pt;}
.y1e0{bottom:337.954667pt;}
.y20d{bottom:338.748000pt;}
.ye2{bottom:339.678667pt;}
.y157{bottom:340.521333pt;}
.y1bf{bottom:343.513333pt;}
.y48{bottom:346.169333pt;}
.y69{bottom:347.294667pt;}
.y2ba{bottom:347.565333pt;}
.y11b{bottom:347.930667pt;}
.yaa{bottom:348.025333pt;}
.y2ec{bottom:348.133333pt;}
.y31{bottom:348.328000pt;}
.y359{bottom:348.492000pt;}
.y280{bottom:348.714667pt;}
.y3a7{bottom:349.058667pt;}
.y318{bottom:351.760000pt;}
.y1df{bottom:351.980000pt;}
.y20c{bottom:352.660000pt;}
.ye1{bottom:353.616000pt;}
.y23b{bottom:354.164000pt;}
.y156{bottom:354.652000pt;}
.y1be{bottom:357.122667pt;}
.y358{bottom:359.916000pt;}
.y47{bottom:360.384000pt;}
.y3a6{bottom:361.076000pt;}
.y68{bottom:361.093333pt;}
.y2b9{bottom:361.377333pt;}
.y11a{bottom:361.761333pt;}
.ya9{bottom:361.893333pt;}
.y2eb{bottom:361.973333pt;}
.y30{bottom:362.310667pt;}
.y191{bottom:362.594667pt;}
.y27f{bottom:362.600000pt;}
.y1de{bottom:366.161333pt;}
.y20b{bottom:366.570667pt;}
.ye0{bottom:367.554667pt;}
.y23a{bottom:368.157333pt;}
.y155{bottom:368.781333pt;}
.y1bd{bottom:370.732000pt;}
.y357{bottom:371.340000pt;}
.y3a5{bottom:372.500000pt;}
.y46{bottom:374.598667pt;}
.y67{bottom:374.892000pt;}
.y2b8{bottom:375.189333pt;}
.y119{bottom:375.592000pt;}
.ya8{bottom:375.760000pt;}
.y2ea{bottom:375.814667pt;}
.y2f{bottom:376.292000pt;}
.y27e{bottom:376.485333pt;}
.y1dd{bottom:380.185333pt;}
.y20a{bottom:380.482667pt;}
.ydf{bottom:381.492000pt;}
.y239{bottom:382.149333pt;}
.y356{bottom:382.764000pt;}
.y154{bottom:382.912000pt;}
.y3a4{bottom:383.924000pt;}
.y1bc{bottom:384.341333pt;}
.y317{bottom:386.184000pt;}
.y66{bottom:388.690667pt;}
.y45{bottom:388.812000pt;}
.y2b7{bottom:389.001333pt;}
.y118{bottom:389.422667pt;}
.ya7{bottom:389.628000pt;}
.y2e9{bottom:389.654667pt;}
.y190{bottom:390.100000pt;}
.y2e{bottom:390.273333pt;}
.y27d{bottom:390.370667pt;}
.y1dc{bottom:394.210667pt;}
.y209{bottom:394.394667pt;}
.y355{bottom:394.616000pt;}
.yde{bottom:395.430667pt;}
.y3a3{bottom:395.942667pt;}
.y238{bottom:396.142667pt;}
.y153{bottom:397.041333pt;}
.y1bb{bottom:397.952000pt;}
.y316{bottom:400.598667pt;}
.y65{bottom:402.489333pt;}
.y2b6{bottom:402.813333pt;}
.y44{bottom:403.026667pt;}
.y117{bottom:403.252000pt;}
.ya6{bottom:403.494667pt;}
.y2e8{bottom:403.496000pt;}
.y18f{bottom:403.982667pt;}
.y2d{bottom:404.254667pt;}
.y27c{bottom:404.256000pt;}
.y354{bottom:406.040000pt;}
.y3a2{bottom:407.365333pt;}
.y1db{bottom:408.236000pt;}
.y208{bottom:408.306667pt;}
.ydd{bottom:409.368000pt;}
.y237{bottom:410.136000pt;}
.y152{bottom:411.172000pt;}
.y1ba{bottom:411.561333pt;}
.y315{bottom:415.012000pt;}
.y64{bottom:416.288000pt;}
.y2b5{bottom:416.625333pt;}
.y116{bottom:417.082667pt;}
.y43{bottom:417.241333pt;}
.y2e7{bottom:417.336000pt;}
.y353{bottom:417.464000pt;}
.y18e{bottom:417.865333pt;}
.y27b{bottom:418.141333pt;}
.y2c{bottom:418.236000pt;}
.y3a1{bottom:418.789333pt;}
.y207{bottom:422.218667pt;}
.y1da{bottom:422.261333pt;}
.ydc{bottom:423.306667pt;}
.y236{bottom:424.129333pt;}
.y1b9{bottom:425.170667pt;}
.y151{bottom:425.301333pt;}
.ya5{bottom:425.333333pt;}
.y352{bottom:429.316000pt;}
.y314{bottom:429.426667pt;}
.y63{bottom:430.086667pt;}
.y3a0{bottom:430.213333pt;}
.y2b4{bottom:430.437333pt;}
.y115{bottom:430.913333pt;}
.y42{bottom:431.454667pt;}
.y18d{bottom:431.748000pt;}
.y27a{bottom:432.026667pt;}
.y2b{bottom:432.217333pt;}
.y206{bottom:436.130667pt;}
.y1d9{bottom:436.286667pt;}
.ydb{bottom:437.244000pt;}
.y235{bottom:438.122667pt;}
.y1b8{bottom:438.780000pt;}
.ya4{bottom:439.200000pt;}
.y150{bottom:439.432000pt;}
.y351{bottom:440.740000pt;}
.y39f{bottom:442.232000pt;}
.y313{bottom:443.840000pt;}
.y62{bottom:443.885333pt;}
.y2b3{bottom:444.249333pt;}
.y114{bottom:444.744000pt;}
.y2e6{bottom:444.910667pt;}
.y18c{bottom:445.630667pt;}
.y41{bottom:445.669333pt;}
.y279{bottom:445.912000pt;}
.y2a{bottom:446.198667pt;}
.y205{bottom:450.041333pt;}
.y1d8{bottom:450.312000pt;}
.yda{bottom:451.182667pt;}
.y234{bottom:452.116000pt;}
.y350{bottom:452.164000pt;}
.y1b7{bottom:452.389333pt;}
.ya3{bottom:453.068000pt;}
.y39e{bottom:453.654667pt;}
.y14f{bottom:453.926667pt;}
.y61{bottom:457.684000pt;}
.y2b2{bottom:458.062667pt;}
.y312{bottom:458.254667pt;}
.y113{bottom:458.574667pt;}
.y18b{bottom:459.513333pt;}
.y278{bottom:459.797333pt;}
.y40{bottom:459.884000pt;}
.y29{bottom:460.180000pt;}
.y34f{bottom:463.588000pt;}
.y204{bottom:463.953333pt;}
.y1d7{bottom:464.337333pt;}
.y39d{bottom:465.078667pt;}
.yd9{bottom:465.120000pt;}
.y1b6{bottom:466.000000pt;}
.y233{bottom:466.200000pt;}
.ya2{bottom:466.934667pt;}
.y14e{bottom:468.057333pt;}
.y60{bottom:471.482667pt;}
.y2b1{bottom:471.874667pt;}
.y2e5{bottom:472.162667pt;}
.y112{bottom:472.405333pt;}
.y311{bottom:472.668000pt;}
.y277{bottom:473.681333pt;}
.y3f{bottom:474.097333pt;}
.y34e{bottom:475.440000pt;}
.y39c{bottom:476.502667pt;}
.y203{bottom:477.865333pt;}
.y1d6{bottom:478.362667pt;}
.yd8{bottom:479.058667pt;}
.y1b5{bottom:479.609333pt;}
.y232{bottom:480.193333pt;}
.ya1{bottom:481.306667pt;}
.y14d{bottom:482.186667pt;}
.y5f{bottom:485.281333pt;}
.y2b0{bottom:485.686667pt;}
.y2e4{bottom:486.004000pt;}
.y111{bottom:486.234667pt;}
.y34d{bottom:486.864000pt;}
.y276{bottom:487.566667pt;}
.y28{bottom:488.312000pt;}
.y39b{bottom:488.521333pt;}
.y202{bottom:491.777333pt;}
.y1d5{bottom:492.388000pt;}
.yd7{bottom:492.996000pt;}
.y1b4{bottom:493.218667pt;}
.ya0{bottom:495.678667pt;}
.y34c{bottom:498.288000pt;}
.y230{bottom:498.488000pt;}
.y5e{bottom:499.080000pt;}
.y2af{bottom:499.498667pt;}
.y2e3{bottom:499.844000pt;}
.y39a{bottom:499.945333pt;}
.y110{bottom:500.065333pt;}
.y275{bottom:501.452000pt;}
.y310{bottom:504.761333pt;}
.y201{bottom:505.689333pt;}
.y22f{bottom:505.925333pt;}
.y231{bottom:505.926667pt;}
.y1d4{bottom:506.413333pt;}
.y1b3{bottom:506.828000pt;}
.yd6{bottom:506.934667pt;}
.y18a{bottom:509.152000pt;}
.y9f{bottom:509.545333pt;}
.y34b{bottom:510.140000pt;}
.y399{bottom:511.368000pt;}
.y5d{bottom:512.878667pt;}
.y2ae{bottom:513.310667pt;}
.y2e2{bottom:513.685333pt;}
.y10f{bottom:513.896000pt;}
.y274{bottom:515.337333pt;}
.y200{bottom:519.600000pt;}
.y1b2{bottom:520.437333pt;}
.y1d3{bottom:520.438667pt;}
.y34a{bottom:521.564000pt;}
.y398{bottom:522.792000pt;}
.y189{bottom:523.100000pt;}
.y9e{bottom:523.814667pt;}
.y5c{bottom:526.677333pt;}
.y2ad{bottom:527.122667pt;}
.y2e1{bottom:527.525333pt;}
.y10e{bottom:527.726667pt;}
.yd5{bottom:528.822667pt;}
.y273{bottom:529.222667pt;}
.y22e{bottom:529.930667pt;}
.y1c{bottom:530.361333pt;}
.y14c{bottom:530.838667pt;}
.y349{bottom:532.988000pt;}
.y397{bottom:534.810667pt;}
.y188{bottom:537.048000pt;}
.y9d{bottom:537.682667pt;}
.y30f{bottom:539.185333pt;}
.y5b{bottom:540.476000pt;}
.y2ac{bottom:540.934667pt;}
.y2e0{bottom:541.365333pt;}
.y10d{bottom:541.557333pt;}
.y1b{bottom:541.785333pt;}
.y14b{bottom:542.262667pt;}
.y272{bottom:543.108000pt;}
.y22d{bottom:543.924000pt;}
.y348{bottom:544.840000pt;}
.y396{bottom:546.234667pt;}
.y1ff{bottom:547.388000pt;}
.yd4{bottom:550.712000pt;}
.y187{bottom:550.996000pt;}
.y27{bottom:552.186667pt;}
.y1a{bottom:553.209333pt;}
.y30e{bottom:553.600000pt;}
.y14a{bottom:553.686667pt;}
.y5a{bottom:554.274667pt;}
.y1b1{bottom:554.477333pt;}
.y2ab{bottom:554.746667pt;}
.y2df{bottom:555.206667pt;}
.y10c{bottom:555.388000pt;}
.y347{bottom:556.264000pt;}
.y271{bottom:556.993333pt;}
.y22c{bottom:557.917333pt;}
.y395{bottom:558.252000pt;}
.y9c{bottom:560.024000pt;}
.y19{bottom:564.633333pt;}
.yd3{bottom:564.650667pt;}
.y26{bottom:564.940000pt;}
.y186{bottom:564.944000pt;}
.y149{bottom:565.109333pt;}
.y1b0{bottom:565.901333pt;}
.y346{bottom:567.688000pt;}
.y30d{bottom:568.013333pt;}
.y2aa{bottom:568.560000pt;}
.y10b{bottom:569.218667pt;}
.y2de{bottom:569.578667pt;}
.y394{bottom:569.676000pt;}
.y270{bottom:570.878667pt;}
.y9b{bottom:573.890667pt;}
.y1fe{bottom:575.140000pt;}
.y18{bottom:576.057333pt;}
.y148{bottom:576.533333pt;}
.y1af{bottom:577.325333pt;}
.y25{bottom:577.692000pt;}
.yd2{bottom:578.588000pt;}
.y185{bottom:578.890667pt;}
.y345{bottom:579.540000pt;}
.y22b{bottom:579.972000pt;}
.y393{bottom:581.100000pt;}
.y2a9{bottom:582.372000pt;}
.y30c{bottom:582.428000pt;}
.y2dd{bottom:583.418667pt;}
.y26f{bottom:584.764000pt;}
.y17{bottom:587.481333pt;}
.y9a{bottom:587.758667pt;}
.y147{bottom:587.957333pt;}
.y1fd{bottom:589.052000pt;}
.y24{bottom:590.444000pt;}
.y344{bottom:590.964000pt;}
.y392{bottom:592.524000pt;}
.yd1{bottom:592.526667pt;}
.y184{bottom:592.838667pt;}
.y1ae{bottom:593.168000pt;}
.y16c{bottom:594.197333pt;}
.y2a8{bottom:596.184000pt;}
.y10a{bottom:596.761333pt;}
.y30b{bottom:596.841333pt;}
.y26e{bottom:598.649333pt;}
.y16{bottom:598.905333pt;}
.y146{bottom:599.381333pt;}
.y99{bottom:601.626667pt;}
.y22a{bottom:602.302667pt;}
.y343{bottom:602.388000pt;}
.y1fc{bottom:602.964000pt;}
.y23{bottom:603.196000pt;}
.y391{bottom:604.541333pt;}
.y1ad{bottom:604.592000pt;}
.y2dc{bottom:605.229333pt;}
.y16b{bottom:605.621333pt;}
.yd0{bottom:606.464000pt;}
.y183{bottom:606.786667pt;}
.y2a7{bottom:609.996000pt;}
.y15{bottom:610.328000pt;}
.y145{bottom:610.805333pt;}
.y30a{bottom:611.256000pt;}
.y26d{bottom:612.534667pt;}
.y342{bottom:614.240000pt;}
.y98{bottom:615.493333pt;}
.y22{bottom:615.948000pt;}
.y390{bottom:615.965333pt;}
.y229{bottom:616.296000pt;}
.y1fb{bottom:616.874667pt;}
.y16a{bottom:617.044000pt;}
.y59{bottom:617.184000pt;}
.y2db{bottom:619.070667pt;}
.ycf{bottom:620.402667pt;}
.y1ac{bottom:620.436000pt;}
.y182{bottom:620.734667pt;}
.y14{bottom:621.752000pt;}
.y144{bottom:622.229333pt;}
.y2a6{bottom:623.808000pt;}
.y109{bottom:623.953333pt;}
.y341{bottom:625.664000pt;}
.y309{bottom:625.669333pt;}
.y26c{bottom:626.420000pt;}
.y38f{bottom:627.389333pt;}
.y58{bottom:628.606667pt;}
.y21{bottom:628.700000pt;}
.y97{bottom:629.361333pt;}
.y228{bottom:630.289333pt;}
.y1fa{bottom:630.786667pt;}
.y1ab{bottom:631.860000pt;}
.y2da{bottom:632.910667pt;}
.y13{bottom:633.176000pt;}
.y143{bottom:633.653333pt;}
.y181{bottom:634.681333pt;}
.y340{bottom:637.088000pt;}
.y2a5{bottom:637.620000pt;}
.y108{bottom:637.784000pt;}
.y38e{bottom:639.406667pt;}
.y308{bottom:640.084000pt;}
.y20{bottom:641.452000pt;}
.yce{bottom:642.290667pt;}
.y96{bottom:643.228000pt;}
.y1aa{bottom:643.282667pt;}
.y227{bottom:644.373333pt;}
.y12{bottom:644.600000pt;}
.y1f9{bottom:644.698667pt;}
.y3db{bottom:644.753333pt;}
.y142{bottom:645.076000pt;}
.y2d9{bottom:646.750667pt;}
.y180{bottom:648.629333pt;}
.y33f{bottom:648.940000pt;}
.y38d{bottom:650.830667pt;}
.y2a4{bottom:651.432000pt;}
.y107{bottom:651.614667pt;}
.y26b{bottom:654.128000pt;}
.y1f{bottom:654.205333pt;}
.y307{bottom:655.430667pt;}
.y11{bottom:656.024000pt;}
.y3d7{bottom:656.177333pt;}
.y141{bottom:656.500000pt;}
.y95{bottom:657.096000pt;}
.y226{bottom:658.365333pt;}
.y1f8{bottom:658.610667pt;}
.y1a9{bottom:659.126667pt;}
.y33e{bottom:660.364000pt;}
.y2d8{bottom:660.592000pt;}
.y17f{bottom:662.577333pt;}
.y38c{bottom:662.849333pt;}
.ycd{bottom:664.613333pt;}
.y2a3{bottom:665.244000pt;}
.y106{bottom:665.445333pt;}
.y1e{bottom:666.957333pt;}
.y10{bottom:667.448000pt;}
.y3d6{bottom:667.601333pt;}
.y306{bottom:669.845333pt;}
.y1a8{bottom:670.550667pt;}
.y94{bottom:670.962667pt;}
.y33d{bottom:671.788000pt;}
.y140{bottom:672.344000pt;}
.y225{bottom:672.358667pt;}
.y1f7{bottom:672.522667pt;}
.y38b{bottom:674.273333pt;}
.y2d7{bottom:674.432000pt;}
.y17e{bottom:676.525333pt;}
.ycc{bottom:678.552000pt;}
.y3d5{bottom:679.025333pt;}
.y2a2{bottom:679.057333pt;}
.y105{bottom:679.276000pt;}
.y26a{bottom:681.773333pt;}
.y33c{bottom:683.640000pt;}
.y305{bottom:684.258667pt;}
.y93{bottom:684.830667pt;}
.y38a{bottom:686.290667pt;}
.y224{bottom:686.352000pt;}
.y1a7{bottom:686.393333pt;}
.y1f6{bottom:686.433333pt;}
.y13f{bottom:686.693333pt;}
.y2d6{bottom:688.273333pt;}
.y3d4{bottom:690.449333pt;}
.yf{bottom:692.337333pt;}
.y1d{bottom:692.377333pt;}
.ycb{bottom:692.489333pt;}
.y2a1{bottom:692.869333pt;}
.y104{bottom:693.106667pt;}
.y17d{bottom:694.477333pt;}
.y33b{bottom:695.064000pt;}
.y269{bottom:695.658667pt;}
.y389{bottom:697.714667pt;}
.y13e{bottom:698.117333pt;}
.y304{bottom:698.673333pt;}
.y92{bottom:698.697333pt;}
.y1f5{bottom:700.345333pt;}
.y1a6{bottom:700.742667pt;}
.y3d3{bottom:701.872000pt;}
.y3da{bottom:701.873333pt;}
.y2d5{bottom:702.113333pt;}
.y2a0{bottom:706.681333pt;}
.y33a{bottom:706.916000pt;}
.y103{bottom:706.937333pt;}
.y388{bottom:709.138667pt;}
.y13d{bottom:709.540000pt;}
.y268{bottom:709.544000pt;}
.y1a5{bottom:712.166667pt;}
.y91{bottom:712.565333pt;}
.y303{bottom:713.086667pt;}
.y3d2{bottom:713.296000pt;}
.yca{bottom:714.378667pt;}
.y2d4{bottom:715.954667pt;}
.y339{bottom:718.340000pt;}
.y29f{bottom:720.493333pt;}
.y387{bottom:721.156000pt;}
.y267{bottom:723.429333pt;}
.y3d1{bottom:724.720000pt;}
.y90{bottom:726.432000pt;}
.y302{bottom:727.501333pt;}
.y17c{bottom:727.593333pt;}
.y102{bottom:728.502667pt;}
.y338{bottom:729.764000pt;}
.y2d3{bottom:729.794667pt;}
.y1f4{bottom:730.448000pt;}
.y386{bottom:732.580000pt;}
.ye{bottom:733.104000pt;}
.y29e{bottom:734.305333pt;}
.y3d0{bottom:736.144000pt;}
.yc9{bottom:736.701333pt;}
.y266{bottom:737.314667pt;}
.y12f{bottom:737.940000pt;}
.y1a4{bottom:739.694667pt;}
.y8f{bottom:740.300000pt;}
.y337{bottom:741.616000pt;}
.y1f3{bottom:741.872000pt;}
.y301{bottom:741.914667pt;}
.y2d2{bottom:743.636000pt;}
.y385{bottom:744.004000pt;}
.yd{bottom:744.528000pt;}
.y3cf{bottom:747.568000pt;}
.y29d{bottom:748.117333pt;}
.y101{bottom:750.610667pt;}
.yc8{bottom:750.638667pt;}
.y1a3{bottom:751.118667pt;}
.y265{bottom:751.200000pt;}
.y336{bottom:753.040000pt;}
.y8e{bottom:754.166667pt;}
.y384{bottom:756.021333pt;}
.y300{bottom:756.329333pt;}
.y2d1{bottom:757.476000pt;}
.yc{bottom:758.289333pt;}
.y3ce{bottom:758.992000pt;}
.y29c{bottom:761.929333pt;}
.y100{bottom:764.440000pt;}
.y335{bottom:764.464000pt;}
.yc7{bottom:764.577333pt;}
.y264{bottom:765.085333pt;}
.y383{bottom:767.445333pt;}
.y8d{bottom:768.034667pt;}
.y3cd{bottom:770.416000pt;}
.y2ff{bottom:770.742667pt;}
.y2d0{bottom:771.317333pt;}
.yb{bottom:775.558667pt;}
.y334{bottom:776.316000pt;}
.yff{bottom:778.270667pt;}
.yc6{bottom:778.514667pt;}
.y382{bottom:778.869333pt;}
.y263{bottom:778.970667pt;}
.y3cc{bottom:781.840000pt;}
.y8c{bottom:781.901333pt;}
.y2cf{bottom:785.157333pt;}
.y333{bottom:787.740000pt;}
.y381{bottom:790.888000pt;}
.yc5{bottom:792.453333pt;}
.y262{bottom:792.856000pt;}
.y3cb{bottom:793.262667pt;}
.y3d9{bottom:793.264000pt;}
.y8b{bottom:795.769333pt;}
.ya{bottom:799.121333pt;}
.y332{bottom:799.164000pt;}
.yfe{bottom:799.837333pt;}
.y380{bottom:802.310667pt;}
.y3ca{bottom:804.686667pt;}
.yc4{bottom:806.390667pt;}
.y261{bottom:806.741333pt;}
.y8a{bottom:809.636000pt;}
.y29b{bottom:810.581333pt;}
.y331{bottom:811.016000pt;}
.y37f{bottom:813.734667pt;}
.y2ce{bottom:815.372000pt;}
.y3c9{bottom:816.110667pt;}
.yc3{bottom:820.329333pt;}
.y260{bottom:820.626667pt;}
.yfd{bottom:821.404000pt;}
.y29a{bottom:822.005333pt;}
.y9{bottom:822.102667pt;}
.y330{bottom:822.440000pt;}
.y89{bottom:823.504000pt;}
.y37e{bottom:825.753333pt;}
.y3c8{bottom:827.534667pt;}
.y299{bottom:833.429333pt;}
.y32f{bottom:833.864000pt;}
.yc2{bottom:834.266667pt;}
.y25f{bottom:834.512000pt;}
.yfc{bottom:835.233333pt;}
.y37d{bottom:837.177333pt;}
.y88{bottom:837.370667pt;}
.y3c7{bottom:838.958667pt;}
.y298{bottom:844.853333pt;}
.y32e{bottom:845.716000pt;}
.yc1{bottom:848.205333pt;}
.y25e{bottom:848.397333pt;}
.y37c{bottom:848.600000pt;}
.yfb{bottom:849.064000pt;}
.y3c6{bottom:850.382667pt;}
.y87{bottom:851.238667pt;}
.y297{bottom:856.276000pt;}
.y32d{bottom:857.140000pt;}
.y37b{bottom:860.024000pt;}
.y3c5{bottom:861.806667pt;}
.yc0{bottom:862.142667pt;}
.y25d{bottom:862.282667pt;}
.yfa{bottom:862.894667pt;}
.y86{bottom:865.105333pt;}
.y296{bottom:867.700000pt;}
.y32c{bottom:868.564000pt;}
.y37a{bottom:872.042667pt;}
.y3c4{bottom:873.230667pt;}
.ybf{bottom:876.081333pt;}
.y25c{bottom:876.168000pt;}
.y85{bottom:878.973333pt;}
.y295{bottom:879.124000pt;}
.y32b{bottom:880.416000pt;}
.y379{bottom:883.466667pt;}
.yf9{bottom:884.461333pt;}
.y3c3{bottom:884.653333pt;}
.y3d8{bottom:884.654667pt;}
.ybe{bottom:890.018667pt;}
.y294{bottom:890.548000pt;}
.y32a{bottom:891.840000pt;}
.y84{bottom:892.840000pt;}
.y8{bottom:892.865333pt;}
.y378{bottom:894.890667pt;}
.y3c2{bottom:896.077333pt;}
.y293{bottom:901.972000pt;}
.y329{bottom:903.692000pt;}
.ybd{bottom:903.957333pt;}
.y83{bottom:906.708000pt;}
.yf8{bottom:906.892000pt;}
.y377{bottom:906.908000pt;}
.y3c1{bottom:907.501333pt;}
.y292{bottom:913.396000pt;}
.y328{bottom:915.116000pt;}
.ybc{bottom:917.894667pt;}
.y376{bottom:918.332000pt;}
.y3c0{bottom:918.925333pt;}
.y82{bottom:920.574667pt;}
.yf7{bottom:920.722667pt;}
.y25b{bottom:924.820000pt;}
.y7{bottom:926.412000pt;}
.y327{bottom:926.540000pt;}
.y375{bottom:929.756000pt;}
.y3bf{bottom:930.349333pt;}
.y81{bottom:934.442667pt;}
.yf6{bottom:934.553333pt;}
.y25a{bottom:936.242667pt;}
.y326{bottom:938.392000pt;}
.ybb{bottom:939.784000pt;}
.y374{bottom:941.180000pt;}
.y3be{bottom:941.773333pt;}
.y80{bottom:948.309333pt;}
.yf5{bottom:948.384000pt;}
.y325{bottom:949.816000pt;}
.y259{bottom:952.086667pt;}
.y373{bottom:953.197333pt;}
.yba{bottom:962.106667pt;}
.y7f{bottom:962.177333pt;}
.yf4{bottom:962.214667pt;}
.y3bd{bottom:964.620000pt;}
.y372{bottom:964.621333pt;}
.y6{bottom:966.046667pt;}
.y258{bottom:966.436000pt;}
.y7e{bottom:976.044000pt;}
.y371{bottom:976.045333pt;}
.y257{bottom:977.860000pt;}
.y2{bottom:1002.226667pt;}
.y55{bottom:1003.226667pt;}
.y57{bottom:1003.421333pt;}
.ha{height:20.921250pt;}
.h14{height:21.933807pt;}
.he{height:25.589197pt;}
.h19{height:29.032418pt;}
.h13{height:29.244954pt;}
.hf{height:29.887500pt;}
.hc{height:29.887969pt;}
.h6{height:30.647691pt;}
.h3{height:33.623437pt;}
.hd{height:33.623906pt;}
.h4{height:37.359844pt;}
.h10{height:38.777071pt;}
.h11{height:38.936474pt;}
.h12{height:38.941807pt;}
.h15{height:40.764405pt;}
.hb{height:42.030000pt;}
.h9{height:52.407021pt;}
.h18{height:53.895620pt;}
.h17{height:53.900954pt;}
.h8{height:54.362937pt;}
.h7{height:63.045000pt;}
.h5{height:65.379844pt;}
.h16{height:111.452405pt;}
.h1a{height:111.457738pt;}
.h1{height:1058.000000pt;}
.h2{height:1058.266683pt;}
.h0{height:1058.267985pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:50.023981pt;}
.x2c{left:51.992000pt;}
.x26{left:56.160000pt;}
.x8{left:59.201333pt;}
.x7{left:66.057333pt;}
.x28{left:68.184000pt;}
.x9{left:70.041333pt;}
.x2b{left:75.396000pt;}
.x29{left:76.684000pt;}
.x1d{left:85.201333pt;}
.x10{left:89.704000pt;}
.x11{left:91.310667pt;}
.x1e{left:98.644000pt;}
.x12{left:108.418667pt;}
.x27{left:120.740000pt;}
.x25{left:136.845333pt;}
.x18{left:154.137333pt;}
.x13{left:158.710667pt;}
.x1a{left:160.181333pt;}
.x19{left:247.116000pt;}
.x5{left:248.757333pt;}
.x6{left:269.329333pt;}
.x3{left:303.392000pt;}
.x1{left:324.997314pt;}
.x1b{left:334.049333pt;}
.x4{left:342.336000pt;}
.x1f{left:370.921333pt;}
.x2a{left:392.557314pt;}
.xd{left:394.943981pt;}
.xa{left:408.805333pt;}
.x2d{left:410.681333pt;}
.x17{left:413.497333pt;}
.x16{left:418.274667pt;}
.xb{left:424.745333pt;}
.xe{left:426.873333pt;}
.x2e{left:434.085333pt;}
.xf{left:435.372000pt;}
.x20{left:443.840000pt;}
.x21{left:453.109333pt;}
.x14{left:454.836000pt;}
.x15{left:460.880000pt;}
.x23{left:468.152000pt;}
.x22{left:480.706667pt;}
.x1c{left:500.684000pt;}
.xc{left:621.063981pt;}
.x24{left:723.628000pt;}
}




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