
    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_ee21b057a73bcd439d62ba31.woff')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_a068bcdb616e1afe3077d2f1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.918000;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_f5a3931a9c06777a108ee716.woff')format("woff");}.ff3{font-family:ff3;line-height:0.908000;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_97b73524bc50260ed9b02a01.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5fe41b66915ef200d1cab269.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_385ec63331473fc04db42118.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f40c94b4021f56299c51b67c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b9169c6b0c873db2bac24479.woff')format("woff");}.ff8{font-family:ff8;line-height:0.888000;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_af8f755ba2be209c50a25715.woff')format("woff");}.ff9{font-family:ff9;line-height:0.909000;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_3270d84dfb0a5a231f47eebc.woff')format("woff");}.ffa{font-family:ffa;line-height:0.698000;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_cc3c483583cd4bb88bb90dd3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.664000;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_1412d676028a2a69a06901cc.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5152e0d14398f69f93067ddd.woff')format("woff");}.ffd{font-family:ffd;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_076454326d9b0fbe4af7437c.woff')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f933fd56b26c9c33821a0ba1.woff')format("woff");}.fff{font-family:fff;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_be521bfc0f7350dde05de1b6.woff')format("woff");}.ff10{font-family:ff10;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5a0a8a413876d3e3210c93e9.woff')format("woff");}.ff11{font-family:ff11;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_58cff3797f76f40e9968782a.woff')format("woff");}.ff12{font-family:ff12;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_fb16548bc94324597c9b277e.woff')format("woff");}.ff13{font-family:ff13;line-height:0.923000;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);}
.vf{vertical-align:-18.930000px;}
.v1d{vertical-align:-15.714000px;}
.v7{vertical-align:-10.134000px;}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v15{vertical-align:8.436000px;}
.v6{vertical-align:10.470000px;}
.v9{vertical-align:16.182000px;}
.v3{vertical-align:19.926000px;}
.v5{vertical-align:21.132000px;}
.v2{vertical-align:23.754000px;}
.v8{vertical-align:27.024000px;}
.v4{vertical-align:31.848000px;}
.v17{vertical-align:33.618000px;}
.v19{vertical-align:35.082000px;}
.v10{vertical-align:38.262000px;}
.v12{vertical-align:44.280000px;}
.v1a{vertical-align:49.092000px;}
.v18{vertical-align:52.728000px;}
.v14{vertical-align:59.598000px;}
.v16{vertical-align:63.492000px;}
.v11{vertical-align:65.178000px;}
.v13{vertical-align:68.034000px;}
.vd{vertical-align:72.654000px;}
.ve{vertical-align:75.696000px;}
.v1b{vertical-align:92.292000px;}
.vc{vertical-align:114.894000px;}
.vb{vertical-align:117.168000px;}
.v1c{vertical-align:137.190000px;}
.va{vertical-align:140.730000px;}
.ls8{letter-spacing:0.000000px;}
.lsbe{letter-spacing:0.000509px;}
.ls2e{letter-spacing:0.000513px;}
.lsd1{letter-spacing:0.000653px;}
.ls2a{letter-spacing:0.001597px;}
.ls6c{letter-spacing:0.001612px;}
.ls26{letter-spacing:0.002131px;}
.ls4f{letter-spacing:0.002137px;}
.ls84{letter-spacing:0.002156px;}
.lsbc{letter-spacing:0.002532px;}
.lse6{letter-spacing:0.002569px;}
.ls44{letter-spacing:0.002696px;}
.ls3e{letter-spacing:0.002783px;}
.ls60{letter-spacing:0.003507px;}
.lscb{letter-spacing:0.003566px;}
.ls3a{letter-spacing:0.003718px;}
.ls13{letter-spacing:0.004150px;}
.ls22{letter-spacing:0.004332px;}
.lsd2{letter-spacing:0.005379px;}
.ls27{letter-spacing:0.005419px;}
.ls1d{letter-spacing:0.005425px;}
.ls91{letter-spacing:0.005690px;}
.ls80{letter-spacing:0.005814px;}
.ls4c{letter-spacing:0.006594px;}
.ls5d{letter-spacing:0.006858px;}
.ls6e{letter-spacing:0.007295px;}
.lsb6{letter-spacing:0.008071px;}
.ls94{letter-spacing:0.008619px;}
.ls6f{letter-spacing:0.009071px;}
.ls87{letter-spacing:0.009420px;}
.lsbf{letter-spacing:0.009740px;}
.ls30{letter-spacing:0.010291px;}
.lsc8{letter-spacing:0.010513px;}
.ls86{letter-spacing:0.011097px;}
.ls81{letter-spacing:0.011100px;}
.lsa2{letter-spacing:0.011576px;}
.ls4b{letter-spacing:0.011725px;}
.ls64{letter-spacing:0.013066px;}
.lsb0{letter-spacing:0.013603px;}
.lsa9{letter-spacing:0.014564px;}
.ls7a{letter-spacing:0.014624px;}
.ls4d{letter-spacing:0.014628px;}
.lsc7{letter-spacing:0.014638px;}
.ls7c{letter-spacing:0.014640px;}
.lsdb{letter-spacing:0.015095px;}
.ls71{letter-spacing:0.016719px;}
.lsa3{letter-spacing:0.016823px;}
.lsae{letter-spacing:0.016826px;}
.lsdc{letter-spacing:0.018678px;}
.lse1{letter-spacing:0.018786px;}
.lsbd{letter-spacing:0.019716px;}
.lse0{letter-spacing:0.019996px;}
.lsdd{letter-spacing:0.022141px;}
.lsd4{letter-spacing:0.022659px;}
.lsaf{letter-spacing:0.022670px;}
.ls76{letter-spacing:0.023633px;}
.lsda{letter-spacing:0.023770px;}
.lse8{letter-spacing:0.024005px;}
.ls98{letter-spacing:0.024174px;}
.lse4{letter-spacing:0.024179px;}
.ls99{letter-spacing:0.024826px;}
.lsb5{letter-spacing:0.025006px;}
.lsa6{letter-spacing:0.026926px;}
.ls3{letter-spacing:0.027659px;}
.ls69{letter-spacing:0.027958px;}
.ls95{letter-spacing:0.028459px;}
.ls9a{letter-spacing:0.029091px;}
.lsd9{letter-spacing:0.029759px;}
.lsb3{letter-spacing:0.029834px;}
.ls7d{letter-spacing:0.029888px;}
.ls7f{letter-spacing:0.031478px;}
.ls48{letter-spacing:0.032559px;}
.ls54{letter-spacing:0.065455px;}
.lse3{letter-spacing:0.196364px;}
.ls62{letter-spacing:0.261818px;}
.ls89{letter-spacing:0.458182px;}
.ls88{letter-spacing:0.523637px;}
.ls97{letter-spacing:1.767274px;}
.ls33{letter-spacing:1.807529px;}
.ls3b{letter-spacing:1.816884px;}
.ls2d{letter-spacing:1.820137px;}
.ls10{letter-spacing:1.830263px;}
.ls37{letter-spacing:1.832729px;}
.ls73{letter-spacing:1.837979px;}
.lse{letter-spacing:1.838460px;}
.ls39{letter-spacing:2.350878px;}
.ls28{letter-spacing:2.356366px;}
.ls78{letter-spacing:2.773595px;}
.ls15{letter-spacing:2.984915px;}
.ls61{letter-spacing:2.988103px;}
.ls2f{letter-spacing:2.989289px;}
.ls52{letter-spacing:2.990915px;}
.ls25{letter-spacing:2.993214px;}
.ls3f{letter-spacing:2.995289px;}
.ls36{letter-spacing:3.010912px;}
.ls55{letter-spacing:3.141821px;}
.ls1c{letter-spacing:3.272730px;}
.ls9e{letter-spacing:3.338185px;}
.lsde{letter-spacing:3.730912px;}
.ls79{letter-spacing:5.301823px;}
.ls1b{letter-spacing:5.344571px;}
.ls1f{letter-spacing:5.350571px;}
.lsb{letter-spacing:7.396370px;}
.ls1e{letter-spacing:8.508587px;}
.ls1a{letter-spacing:8.514587px;}
.ls5c{letter-spacing:9.098189px;}
.ls5{letter-spacing:10.472736px;}
.lsc3{letter-spacing:10.865464px;}
.ls8d{letter-spacing:10.904124px;}
.ls59{letter-spacing:10.930918px;}
.ls4{letter-spacing:13.748388px;}
.ls45{letter-spacing:14.530921px;}
.ls47{letter-spacing:14.596376px;}
.ls46{letter-spacing:14.792740px;}
.lsa5{letter-spacing:15.643649px;}
.lsed{letter-spacing:15.840013px;}
.ls16{letter-spacing:16.429105px;}
.lse5{letter-spacing:16.560014px;}
.lsb9{letter-spacing:16.821832px;}
.lsac{letter-spacing:17.528915px;}
.ls77{letter-spacing:17.533289px;}
.ls21{letter-spacing:18.130924px;}
.ls9{letter-spacing:18.196379px;}
.lsa1{letter-spacing:19.309107px;}
.lsd6{letter-spacing:19.570925px;}
.ls68{letter-spacing:19.832744px;}
.ls2c{letter-spacing:19.962587px;}
.ls67{letter-spacing:20.029108px;}
.lseb{letter-spacing:20.094562px;}
.ls7b{letter-spacing:20.287488px;}
.lsc{letter-spacing:20.421835px;}
.lsef{letter-spacing:20.487290px;}
.ls20{letter-spacing:20.552744px;}
.lsc1{letter-spacing:21.141836px;}
.ls82{letter-spacing:21.164915px;}
.ls5a{letter-spacing:21.168103px;}
.ls23{letter-spacing:21.169289px;}
.ls74{letter-spacing:21.169739px;}
.ls2{letter-spacing:21.339889px;}
.ls8e{letter-spacing:21.665473px;}
.ls24{letter-spacing:21.796382px;}
.ls19{letter-spacing:21.861836px;}
.ls6d{letter-spacing:21.992746px;}
.ls49{letter-spacing:22.058200px;}
.lsec{letter-spacing:22.123655px;}
.lsc6{letter-spacing:22.189109px;}
.ls9d{letter-spacing:22.328915px;}
.ls6b{letter-spacing:22.450928px;}
.lscc{letter-spacing:22.647292px;}
.ls85{letter-spacing:22.712746px;}
.ls14{letter-spacing:22.909110px;}
.ls63{letter-spacing:23.236383px;}
.lscf{letter-spacing:23.301838px;}
.ls66{letter-spacing:23.498201px;}
.lsad{letter-spacing:23.629111px;}
.ls58{letter-spacing:23.638338px;}
.ls72{letter-spacing:23.646103px;}
.lsb4{letter-spacing:23.825474px;}
.lsb7{letter-spacing:23.890929px;}
.ls4e{letter-spacing:23.978915px;}
.lsd3{letter-spacing:24.152747px;}
.lsb8{letter-spacing:24.218202px;}
.ls34{letter-spacing:24.480020px;}
.ls57{letter-spacing:24.539962px;}
.lsf2{letter-spacing:24.545475px;}
.lsab{letter-spacing:24.800915px;}
.ls70{letter-spacing:24.804103px;}
.ls7e{letter-spacing:24.811289px;}
.lse7{letter-spacing:24.872748px;}
.ls8c{letter-spacing:25.003657px;}
.ls9b{letter-spacing:25.064915px;}
.ls18{letter-spacing:25.069112px;}
.lsbb{letter-spacing:25.134566px;}
.ls92{letter-spacing:25.200021px;}
.lsa7{letter-spacing:25.330930px;}
.ls51{letter-spacing:25.349412px;}
.ls5b{letter-spacing:25.355412px;}
.lsc0{letter-spacing:25.396385px;}
.ls6a{letter-spacing:25.441739px;}
.lse9{letter-spacing:25.461839px;}
.lsa8{letter-spacing:25.592749px;}
.ls0{letter-spacing:25.763284px;}
.lsa4{letter-spacing:25.854567px;}
.ls65{letter-spacing:26.202103px;}
.lsea{letter-spacing:26.312749px;}
.ls9f{letter-spacing:26.378204px;}
.ls2b{letter-spacing:26.694587px;}
.lsc2{letter-spacing:26.901841px;}
.ls96{letter-spacing:26.967295px;}
.lsc9{letter-spacing:27.032750px;}
.ls9c{letter-spacing:27.149971px;}
.lsd7{letter-spacing:27.425477px;}
.lsd8{letter-spacing:27.490932px;}
.lscd{letter-spacing:27.497971px;}
.lsca{letter-spacing:27.752750px;}
.lsba{letter-spacing:28.208746px;}
.lsee{letter-spacing:28.472751px;}
.lsd5{letter-spacing:28.669115px;}
.ls29{letter-spacing:28.930933px;}
.lsb1{letter-spacing:28.996388px;}
.lsdf{letter-spacing:29.127297px;}
.ls17{letter-spacing:29.192752px;}
.lsd0{letter-spacing:29.258206px;}
.lse2{letter-spacing:29.323661px;}
.lsf{letter-spacing:29.520025px;}
.ls1{letter-spacing:29.588922px;}
.lsa0{letter-spacing:29.717971px;}
.lsc5{letter-spacing:29.912752px;}
.ls42{letter-spacing:29.978207px;}
.lsce{letter-spacing:30.043661px;}
.lsc4{letter-spacing:30.047971px;}
.lsa{letter-spacing:30.240025px;}
.ls4a{letter-spacing:30.567298px;}
.ls43{letter-spacing:30.698207px;}
.lsf0{letter-spacing:31.156390px;}
.lsd{letter-spacing:31.287299px;}
.ls35{letter-spacing:31.941845px;}
.ls7{letter-spacing:32.727300px;}
.ls12{letter-spacing:32.923664px;}
.ls41{letter-spacing:32.971289px;}
.ls11{letter-spacing:32.989118px;}
.ls93{letter-spacing:33.447301px;}
.ls56{letter-spacing:33.643664px;}
.ls8b{letter-spacing:33.774574px;}
.ls6{letter-spacing:34.036392px;}
.lsb2{letter-spacing:35.410939px;}
.lsf1{letter-spacing:35.934575px;}
.lsaa{letter-spacing:36.000030px;}
.ls75{letter-spacing:36.589121px;}
.ls50{letter-spacing:36.779580px;}
.ls83{letter-spacing:52.205412px;}
.ls31{letter-spacing:67.430915px;}
.ls8f{letter-spacing:86.441412px;}
.ls38{letter-spacing:126.605412px;}
.ls3d{letter-spacing:128.123412px;}
.ls5e{letter-spacing:139.334712px;}
.ls90{letter-spacing:614.752869px;}
.ls53{letter-spacing:641.716898px;}
.ls32{letter-spacing:780.677014px;}
.ls40{letter-spacing:831.011602px;}
.ls3c{letter-spacing:878.400732px;}
.ls5f{letter-spacing:966.698987px;}
.ls8a{letter-spacing:1004.662655px;}
.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;}
}
.ws6e{word-spacing:-65.454600px;}
.ws7d{word-spacing:-51.820407px;}
.ws6f{word-spacing:-45.909856px;}
.ws34{word-spacing:-42.637126px;}
.ws7{word-spacing:-38.937826px;}
.wsa1{word-spacing:-33.211407px;}
.ws6d{word-spacing:-31.771663px;}
.ws79{word-spacing:-24.440748px;}
.ws11c{word-spacing:-19.204380px;}
.ws147{word-spacing:-19.008016px;}
.ws23{word-spacing:-18.183288px;}
.ws123{word-spacing:-17.437105px;}
.ws3a{word-spacing:-16.730196px;}
.ws15a{word-spacing:-15.080740px;}
.ws50{word-spacing:-14.111859px;}
.ws4a{word-spacing:-13.444375px;}
.ws113{word-spacing:-12.986193px;}
.ws1a1{word-spacing:-9.320735px;}
.ws111{word-spacing:-9.286630px;}
.ws11f{word-spacing:-7.273977px;}
.ws106{word-spacing:-5.644630px;}
.ws116{word-spacing:-4.900630px;}
.ws8e{word-spacing:-4.149822px;}
.ws11b{word-spacing:-4.042630px;}
.ws120{word-spacing:-3.947578px;}
.ws1b5{word-spacing:-3.822549px;}
.wsa3{word-spacing:-3.652367px;}
.ws1eb{word-spacing:-3.521457px;}
.ws1f5{word-spacing:-3.456003px;}
.ws134{word-spacing:-3.390548px;}
.wsdc{word-spacing:-3.364366px;}
.ws1b6{word-spacing:-3.325094px;}
.ws26{word-spacing:-3.259639px;}
.wscf{word-spacing:-3.233457px;}
.ws13e{word-spacing:-3.168003px;}
.wse0{word-spacing:-3.128730px;}
.wsc8{word-spacing:-2.971639px;}
.wsdd{word-spacing:-2.932366px;}
.ws10{word-spacing:-2.857274px;}
.ws98{word-spacing:-2.840730px;}
.wsd0{word-spacing:-2.801457px;}
.ws13f{word-spacing:-2.736002px;}
.ws16e{word-spacing:-2.709820px;}
.ws1de{word-spacing:-2.670548px;}
.ws91{word-spacing:-2.605093px;}
.ws17c{word-spacing:-2.578911px;}
.ws1c1{word-spacing:-2.539638px;}
.ws97{word-spacing:-2.474184px;}
.ws16f{word-spacing:-2.408729px;}
.ws43{word-spacing:-2.343275px;}
.ws18{word-spacing:-2.295383px;}
.ws17d{word-spacing:-2.277820px;}
.wsf7{word-spacing:-2.251638px;}
.ws1a8{word-spacing:-2.186184px;}
.wsd1{word-spacing:-2.081456px;}
.ws17{word-spacing:-2.020415px;}
.wsf8{word-spacing:-2.016002px;}
.ws199{word-spacing:-1.885092px;}
.ws19b{word-spacing:-1.819638px;}
.wse5{word-spacing:-1.754183px;}
.ws18c{word-spacing:-1.662547px;}
.ws10f{word-spacing:-1.623274px;}
.wsf{word-spacing:-1.542210px;}
.ws189{word-spacing:-1.466183px;}
.ws18d{word-spacing:-1.426910px;}
.ws8f{word-spacing:-1.361456px;}
.ws18a{word-spacing:-1.230546px;}
.ws167{word-spacing:-1.034183px;}
.ws1fd{word-spacing:-0.968728px;}
.ws1fb{word-spacing:-0.903273px;}
.ws2f{word-spacing:-0.837819px;}
.wsff{word-spacing:-0.680728px;}
.ws2e{word-spacing:-0.576000px;}
.ws7e{word-spacing:-0.214599px;}
.ws95{word-spacing:-0.183273px;}
.ws1b7{word-spacing:-0.117818px;}
.ws3{word-spacing:-0.071731px;}
.wsae{word-spacing:-0.065455px;}
.wsd2{word-spacing:-0.052364px;}
.wsa2{word-spacing:-0.035866px;}
.ws25{word-spacing:0.000000px;}
.ws7c{word-spacing:0.013091px;}
.ws1bc{word-spacing:0.078546px;}
.wsd8{word-spacing:0.144000px;}
.ws1fa{word-spacing:0.157091px;}
.ws1a2{word-spacing:0.170182px;}
.ws8a{word-spacing:0.209455px;}
.ws27{word-spacing:0.353455px;}
.ws40{word-spacing:0.471273px;}
.ws3f{word-spacing:0.536728px;}
.ws104{word-spacing:0.542098px;}
.ws10a{word-spacing:0.602182px;}
.ws197{word-spacing:0.628364px;}
.ws92{word-spacing:0.667637px;}
.ws109{word-spacing:0.693819px;}
.ws16{word-spacing:0.729262px;}
.ws16c{word-spacing:0.733092px;}
.ws196{word-spacing:0.746182px;}
.ws13c{word-spacing:0.798546px;}
.wsab{word-spacing:0.864001px;}
.ws1df{word-spacing:0.877092px;}
.ws6c{word-spacing:0.890183px;}
.ws146{word-spacing:0.929455px;}
.ws148{word-spacing:0.994910px;}
.ws1d9{word-spacing:1.060365px;}
.ws127{word-spacing:1.125819px;}
.ws10d{word-spacing:1.191274px;}
.ws13d{word-spacing:1.256728px;}
.ws39{word-spacing:1.322183px;}
.wse{word-spacing:1.446570px;}
.ws71{word-spacing:1.518547px;}
.ws28{word-spacing:1.531638px;}
.ws21{word-spacing:1.584001px;}
.ws1be{word-spacing:1.649456px;}
.ws1cb{word-spacing:1.714911px;}
.wsc6{word-spacing:1.741092px;}
.ws65{word-spacing:1.780365px;}
.wsfd{word-spacing:1.845820px;}
.ws1bd{word-spacing:1.937456px;}
.ws1d6{word-spacing:1.976729px;}
.ws1c4{word-spacing:2.042184px;}
.ws11e{word-spacing:2.107638px;}
.ws16b{word-spacing:2.173093px;}
.ws60{word-spacing:2.199275px;}
.wsac{word-spacing:2.238547px;}
.wsd{word-spacing:2.283428px;}
.wsc5{word-spacing:2.304002px;}
.ws18e{word-spacing:2.369457px;}
.ws11d{word-spacing:2.395638px;}
.ws53{word-spacing:2.434911px;}
.ws188{word-spacing:2.461093px;}
.wsf2{word-spacing:2.500366px;}
.ws5a{word-spacing:2.631275px;}
.wsc4{word-spacing:2.657457px;}
.wsb1{word-spacing:2.696730px;}
.ws12e{word-spacing:2.762184px;}
.ws14{word-spacing:2.821408px;}
.wscb{word-spacing:2.827639px;}
.ws1a6{word-spacing:2.958548px;}
.ws1b{word-spacing:3.024003px;}
.ws1c7{word-spacing:3.050184px;}
.wsdb{word-spacing:3.089457px;}
.ws1e5{word-spacing:3.154912px;}
.ws1d5{word-spacing:3.168003px;}
.ws6b{word-spacing:3.220366px;}
.ws2d{word-spacing:3.351276px;}
.ws19a{word-spacing:3.364366px;}
.ws14c{word-spacing:3.412960px;}
.ws152{word-spacing:3.416730px;}
.ws138{word-spacing:3.418046px;}
.wsc9{word-spacing:3.423168px;}
.ws165{word-spacing:3.424046px;}
.ws12a{word-spacing:3.429821px;}
.ws16d{word-spacing:3.482185px;}
.ws1b2{word-spacing:3.547639px;}
.ws1e{word-spacing:3.613094px;}
.ws44{word-spacing:3.678549px;}
.ws1ab{word-spacing:3.744003px;}
.ws19{word-spacing:3.801728px;}
.ws36{word-spacing:3.809458px;}
.ws3e{word-spacing:3.822549px;}
.ws2c{word-spacing:3.874912px;}
.ws132{word-spacing:3.940367px;}
.ws93{word-spacing:3.953458px;}
.ws13b{word-spacing:4.005822px;}
.ws1da{word-spacing:4.071276px;}
.ws87{word-spacing:4.162913px;}
.ws185{word-spacing:4.202185px;}
.wsd9{word-spacing:4.228367px;}
.ws54{word-spacing:4.333095px;}
.ws1aa{word-spacing:4.359276px;}
.ws117{word-spacing:4.398549px;}
.ws179{word-spacing:4.464004px;}
.ws20{word-spacing:4.483200px;}
.ws1c3{word-spacing:4.490186px;}
.ws115{word-spacing:4.529458px;}
.ws141{word-spacing:4.594913px;}
.ws1e8{word-spacing:4.608004px;}
.wsa9{word-spacing:4.660368px;}
.ws162{word-spacing:4.725822px;}
.wsda{word-spacing:4.791277px;}
.ws198{word-spacing:4.856731px;}
.ws1b9{word-spacing:4.882913px;}
.ws61{word-spacing:4.922186px;}
.ws33{word-spacing:4.987641px;}
.wsd4{word-spacing:5.053095px;}
.ws73{word-spacing:5.118550px;}
.ws2a{word-spacing:5.184004px;}
.ws114{word-spacing:5.210186px;}
.ws161{word-spacing:5.249459px;}
.ws1f{word-spacing:5.379825px;}
.ws96{word-spacing:5.380368px;}
.ws1af{word-spacing:5.443894px;}
.ws18f{word-spacing:5.445823px;}
.ws1fc{word-spacing:5.458914px;}
.wsb3{word-spacing:5.511277px;}
.ws10e{word-spacing:5.537459px;}
.ws182{word-spacing:5.576732px;}
.ws1c9{word-spacing:5.642187px;}
.ws76{word-spacing:5.707641px;}
.ws62{word-spacing:5.773096px;}
.ws2b{word-spacing:5.838550px;}
.ws166{word-spacing:5.864732px;}
.wse1{word-spacing:5.904005px;}
.wsb{word-spacing:5.929740px;}
.wsa4{word-spacing:5.939107px;}
.wsc3{word-spacing:5.969460px;}
.wsa5{word-spacing:6.034914px;}
.wsbb{word-spacing:6.100369px;}
.ws30{word-spacing:6.165823px;}
.ws6{word-spacing:6.168842px;}
.wsdf{word-spacing:6.231278px;}
.ws177{word-spacing:6.296733px;}
.wsf6{word-spacing:6.309823px;}
.ws31{word-spacing:6.362187px;}
.ws59{word-spacing:6.427642px;}
.ws0{word-spacing:6.455775px;}
.ws56{word-spacing:6.493096px;}
.ws83{word-spacing:6.558551px;}
.ws75{word-spacing:6.584733px;}
.wsd6{word-spacing:6.624006px;}
.ws14a{word-spacing:6.637096px;}
.wsd5{word-spacing:6.689460px;}
.ws110{word-spacing:6.702551px;}
.ws11a{word-spacing:6.754915px;}
.wsaa{word-spacing:6.781097px;}
.ws9e{word-spacing:6.820369px;}
.ws125{word-spacing:6.846551px;}
.ws108{word-spacing:6.885824px;}
.ws15d{word-spacing:6.951279px;}
.ws1f4{word-spacing:6.964369px;}
.ws67{word-spacing:7.016733px;}
.ws163{word-spacing:7.034748px;}
.ws1c8{word-spacing:7.042915px;}
.wsa6{word-spacing:7.052021px;}
.ws139{word-spacing:7.054555px;}
.ws164{word-spacing:7.054668px;}
.ws78{word-spacing:7.055122px;}
.wsb2{word-spacing:7.056140px;}
.ws128{word-spacing:7.056422px;}
.wsa0{word-spacing:7.057894px;}
.ws137{word-spacing:7.058943px;}
.ws135{word-spacing:7.060046px;}
.ws136{word-spacing:7.060555px;}
.ws112{word-spacing:7.062422px;}
.ws15b{word-spacing:7.082188px;}
.ws5{word-spacing:7.089386px;}
.wsde{word-spacing:7.108370px;}
.ws58{word-spacing:7.147642px;}
.wsd7{word-spacing:7.213097px;}
.ws176{word-spacing:7.239279px;}
.ws17e{word-spacing:7.278552px;}
.ws1bf{word-spacing:7.304733px;}
.ws37{word-spacing:7.344006px;}
.ws80{word-spacing:7.409461px;}
.ws5b{word-spacing:7.435643px;}
.wsd3{word-spacing:7.474915px;}
.wsc1{word-spacing:7.540370px;}
.ws142{word-spacing:7.553461px;}
.ws102{word-spacing:7.605825px;}
.ws52{word-spacing:7.632006px;}
.ws1a0{word-spacing:7.671279px;}
.ws170{word-spacing:7.736734px;}
.ws1dc{word-spacing:7.749825px;}
.ws171{word-spacing:7.762916px;}
.ws1b3{word-spacing:7.782422px;}
.ws1bb{word-spacing:7.802188px;}
.ws140{word-spacing:7.828370px;}
.ws121{word-spacing:7.867643px;}
.ws1a{word-spacing:7.893825px;}
.wsc{word-spacing:7.902334px;}
.ws8d{word-spacing:7.933098px;}
.ws15c{word-spacing:8.024734px;}
.ws4d{word-spacing:8.064007px;}
.ws74{word-spacing:8.077098px;}
.ws158{word-spacing:8.090189px;}
.ws133{word-spacing:8.129461px;}
.ws1d3{word-spacing:8.142552px;}
.ws48{word-spacing:8.155643px;}
.wsbe{word-spacing:8.194916px;}
.ws4b{word-spacing:8.221098px;}
.ws1e6{word-spacing:8.260371px;}
.ws57{word-spacing:8.286552px;}
.ws168{word-spacing:8.325825px;}
.ws100{word-spacing:8.391280px;}
.ws169{word-spacing:8.417462px;}
.wse3{word-spacing:8.456734px;}
.ws12d{word-spacing:8.522189px;}
.ws172{word-spacing:8.587644px;}
.wsed{word-spacing:8.643168px;}
.ws130{word-spacing:8.653098px;}
.ws63{word-spacing:8.666189px;}
.ws14f{word-spacing:8.718553px;}
.ws3d{word-spacing:8.731644px;}
.ws12{word-spacing:8.739193px;}
.ws101{word-spacing:8.744735px;}
.ws66{word-spacing:8.784007px;}
.ws1f3{word-spacing:8.797098px;}
.ws68{word-spacing:8.849462px;}
.wsfa{word-spacing:8.914917px;}
.ws191{word-spacing:8.928007px;}
.wsbc{word-spacing:8.993462px;}
.ws1ba{word-spacing:9.006553px;}
.ws8{word-spacing:9.038071px;}
.ws29{word-spacing:9.045826px;}
.ws9a{word-spacing:9.111280px;}
.ws150{word-spacing:9.176735px;}
.ws35{word-spacing:9.242190px;}
.wsb5{word-spacing:9.307644px;}
.ws1cc{word-spacing:9.373099px;}
.ws13a{word-spacing:9.464735px;}
.ws1c{word-spacing:9.504008px;}
.ws90{word-spacing:9.569463px;}
.ws15{word-spacing:9.576051px;}
.ws10c{word-spacing:9.634917px;}
.ws1d4{word-spacing:9.648008px;}
.ws145{word-spacing:9.700372px;}
.ws1f9{word-spacing:9.713463px;}
.wse2{word-spacing:9.726554px;}
.ws32{word-spacing:9.765826px;}
.ws9d{word-spacing:9.778917px;}
.ws46{word-spacing:9.831281px;}
.ws5f{word-spacing:9.896736px;}
.wsb7{word-spacing:9.909826px;}
.ws1a7{word-spacing:9.962190px;}
.ws1ce{word-spacing:9.975281px;}
.ws10b{word-spacing:10.027645px;}
.ws1e3{word-spacing:10.040736px;}
.ws184{word-spacing:10.053827px;}
.ws156{word-spacing:10.093099px;}
.ws38{word-spacing:10.106190px;}
.wse9{word-spacing:10.158554px;}
.ws1cf{word-spacing:10.237099px;}
.ws12b{word-spacing:10.289463px;}
.wsf9{word-spacing:10.315645px;}
.ws8b{word-spacing:10.354918px;}
.ws143{word-spacing:10.420372px;}
.ws1d0{word-spacing:10.433463px;}
.ws9{word-spacing:10.436820px;}
.ws99{word-spacing:10.446554px;}
.wsc0{word-spacing:10.485827px;}
.ws86{word-spacing:10.551282px;}
.ws124{word-spacing:10.564372px;}
.ws1b1{word-spacing:10.584422px;}
.ws84{word-spacing:10.616736px;}
.wsa8{word-spacing:10.682191px;}
.wsca{word-spacing:10.692140px;}
.ws9f{word-spacing:10.695168px;}
.ws190{word-spacing:10.695282px;}
.ws160{word-spacing:10.696046px;}
.wsc7{word-spacing:10.698140px;}
.ws187{word-spacing:10.698422px;}
.ws19d{word-spacing:10.701422px;}
.wsb4{word-spacing:10.708373px;}
.wsa7{word-spacing:10.747645px;}
.ws1ae{word-spacing:10.813100px;}
.ws19c{word-spacing:10.878555px;}
.ws12f{word-spacing:10.904736px;}
.ws1e9{word-spacing:10.944009px;}
.ws17a{word-spacing:10.950422px;}
.ws1e7{word-spacing:10.957100px;}
.ws17b{word-spacing:10.970191px;}
.ws1e4{word-spacing:11.022555px;}
.ws14e{word-spacing:11.140373px;}
.ws149{word-spacing:11.166555px;}
.ws103{word-spacing:11.205828px;}
.ws6a{word-spacing:11.271282px;}
.ws19f{word-spacing:11.284373px;}
.ws186{word-spacing:11.292422px;}
.ws69{word-spacing:11.336737px;}
.ws1d7{word-spacing:11.349828px;}
.ws47{word-spacing:11.402191px;}
.ws1f2{word-spacing:11.480737px;}
.ws178{word-spacing:11.537630px;}
.ws1c0{word-spacing:11.559282px;}
.ws18b{word-spacing:11.611646px;}
.ws9c{word-spacing:11.664010px;}
.ws154{word-spacing:11.690192px;}
.ws1d2{word-spacing:11.729464px;}
.ws13{word-spacing:11.787748px;}
.wscd{word-spacing:11.794919px;}
.ws1a9{word-spacing:11.808010px;}
.ws153{word-spacing:11.860374px;}
.ws1dd{word-spacing:11.873464px;}
.ws89{word-spacing:11.925828px;}
.ws1cd{word-spacing:11.938919px;}
.ws1e1{word-spacing:11.991283px;}
.ws1ac{word-spacing:12.017465px;}
.ws4{word-spacing:12.026851px;}
.ws3c{word-spacing:12.056737px;}
.wsbf{word-spacing:12.082919px;}
.ws5d{word-spacing:12.122192px;}
.ws181{word-spacing:12.148374px;}
.ws41{word-spacing:12.187647px;}
.ws1a5{word-spacing:12.318556px;}
.ws1e0{word-spacing:12.384010px;}
.ws1ad{word-spacing:12.410192px;}
.ws12c{word-spacing:12.449465px;}
.ws1ec{word-spacing:12.462556px;}
.ws51{word-spacing:12.514920px;}
.ws174{word-spacing:12.580374px;}
.ws15e{word-spacing:12.590748px;}
.ws15f{word-spacing:12.610668px;}
.wsa{word-spacing:12.648517px;}
.ws159{word-spacing:12.738422px;}
.ws194{word-spacing:12.776738px;}
.wsba{word-spacing:12.973102px;}
.ws126{word-spacing:13.038422px;}
.ws22{word-spacing:13.104011px;}
.ws1c5{word-spacing:13.130193px;}
.ws131{word-spacing:13.169466px;}
.ws16a{word-spacing:13.182556px;}
.ws193{word-spacing:13.234920px;}
.ws175{word-spacing:13.261102px;}
.ws1b4{word-spacing:13.300375px;}
.ws81{word-spacing:13.332196px;}
.ws77{word-spacing:13.378920px;}
.ws183{word-spacing:13.431284px;}
.ws1ea{word-spacing:13.444375px;}
.ws9b{word-spacing:13.457466px;}
.wsb8{word-spacing:13.496739px;}
.ws42{word-spacing:13.627648px;}
.ws88{word-spacing:13.719284px;}
.ws5c{word-spacing:13.824012px;}
.ws3b{word-spacing:13.850193px;}
.ws1a3{word-spacing:13.889466px;}
.ws55{word-spacing:13.915648px;}
.ws1ca{word-spacing:13.954921px;}
.ws94{word-spacing:13.981103px;}
.ws122{word-spacing:14.098046px;}
.ws129{word-spacing:14.151285px;}
.ws1d8{word-spacing:14.164375px;}
.ws1a4{word-spacing:14.177466px;}
.ws17f{word-spacing:14.216739px;}
.ws118{word-spacing:14.282194px;}
.ws1ed{word-spacing:14.360739px;}
.wsfb{word-spacing:14.373830px;}
.ws1e2{word-spacing:14.426194px;}
.ws1f8{word-spacing:14.478558px;}
.ws5e{word-spacing:14.491648px;}
.ws1b0{word-spacing:14.544012px;}
.wsc2{word-spacing:14.601168px;}
.ws1f7{word-spacing:14.688012px;}
.wsfc{word-spacing:14.884376px;}
.wsb9{word-spacing:14.897467px;}
.ws1b8{word-spacing:15.028376px;}
.ws192{word-spacing:15.224740px;}
.wsee{word-spacing:15.394922px;}
.wsf3{word-spacing:15.591286px;}
.ws7f{word-spacing:15.748377px;}
.wsbd{word-spacing:16.049468px;}
.ws1d1{word-spacing:16.062559px;}
.ws1c2{word-spacing:16.337468px;}
.wsb6{word-spacing:16.354139px;}
.ws151{word-spacing:16.455286px;}
.ws85{word-spacing:17.044378px;}
.ws4c{word-spacing:17.057469px;}
.ws1f6{word-spacing:17.162196px;}
.ws1db{word-spacing:17.633469px;}
.ws1f1{word-spacing:17.751288px;}
.ws157{word-spacing:17.866046px;}
.ws155{word-spacing:17.868422px;}
.ws195{word-spacing:18.026197px;}
.ws144{word-spacing:18.382046px;}
.ws8c{word-spacing:18.615288px;}
.wscc{word-spacing:18.834140px;}
.ws11{word-spacing:19.549191px;}
.ws119{word-spacing:19.662562px;}
.ws1f0{word-spacing:19.728016px;}
.ws1c6{word-spacing:20.002046px;}
.ws24{word-spacing:20.195971px;}
.ws1d{word-spacing:20.304017px;}
.ws45{word-spacing:20.526563px;}
.wsce{word-spacing:21.368112px;}
.wsef{word-spacing:22.482140px;}
.ws1{word-spacing:23.312640px;}
.ws2{word-spacing:25.034189px;}
.ws4e{word-spacing:25.893840px;}
.ws173{word-spacing:26.155658px;}
.wse7{word-spacing:26.325840px;}
.wsf0{word-spacing:26.653113px;}
.ws180{word-spacing:26.666204px;}
.wsb0{word-spacing:26.831107px;}
.wsaf{word-spacing:27.761107px;}
.wse8{word-spacing:29.991298px;}
.ws1ee{word-spacing:32.347663px;}
.ws1ef{word-spacing:33.080755px;}
.wsf1{word-spacing:33.394937px;}
.wsea{word-spacing:43.998582px;}
.ws7b{word-spacing:48.844046px;}
.ws49{word-spacing:48.850046px;}
.wse6{word-spacing:54.405864px;}
.wse4{word-spacing:58.267685px;}
.ws64{word-spacing:58.281600px;}
.wsf4{word-spacing:62.260416px;}
.ws19e{word-spacing:69.937725px;}
.ws14b{word-spacing:69.992098px;}
.wseb{word-spacing:70.049513px;}
.ws82{word-spacing:73.306046px;}
.wsec{word-spacing:78.754975px;}
.wsf5{word-spacing:79.278612px;}
.wsfe{word-spacing:79.612046px;}
.ws4f{word-spacing:79.618046px;}
.ws14d{word-spacing:460.617111px;}
.ws107{word-spacing:710.719138px;}
.wsad{word-spacing:749.206443px;}
.ws105{word-spacing:751.955536px;}
.ws72{word-spacing:967.261897px;}
.ws70{word-spacing:1062.367431px;}
.ws7a{word-spacing:1105.410376px;}
._33{margin-left:-2925.857770px;}
._40{margin-left:-2924.812145px;}
._16{margin-left:-2905.694288px;}
._8c{margin-left:-2903.667071px;}
._86{margin-left:-2840.363355px;}
._76{margin-left:-2827.058555px;}
._43{margin-left:-2808.728411px;}
._7a{margin-left:-2771.877181px;}
._48{margin-left:-2746.786291px;}
._5c{margin-left:-2695.579746px;}
._81{margin-left:-2624.711490px;}
._6c{margin-left:-2549.731105px;}
._35{margin-left:-2487.706749px;}
._82{margin-left:-2380.044168px;}
._80{margin-left:-2318.727303px;}
._85{margin-left:-2296.736006px;}
._5d{margin-left:-2234.213609px;}
._72{margin-left:-2228.687664px;}
._6a{margin-left:-2200.802743px;}
._88{margin-left:-2151.054324px;}
._5a{margin-left:-2121.030443px;}
._66{margin-left:-2059.269624px;}
._61{margin-left:-2053.261414px;}
._25{margin-left:-2034.586428px;}
._68{margin-left:-2032.144884px;}
._36{margin-left:-1979.393860px;}
._65{margin-left:-1970.837531px;}
._3e{margin-left:-1910.579736px;}
._7b{margin-left:-1904.099730px;}
._74{margin-left:-1778.649021px;}
._8b{margin-left:-1763.485260px;}
._3b{margin-left:-1694.240425px;}
._2f{margin-left:-1655.624579px;}
._6b{margin-left:-1582.562087px;}
._69{margin-left:-1558.297002px;}
._71{margin-left:-1547.329370px;}
._5f{margin-left:-1541.199078px;}
._32{margin-left:-1525.909888px;}
._67{margin-left:-1517.685300px;}
._1f{margin-left:-1493.236899px;}
._64{margin-left:-1455.938207px;}
._87{margin-left:-1419.848610px;}
._8f{margin-left:-1385.484945px;}
._7e{margin-left:-1367.181769px;}
._2c{margin-left:-1351.902050px;}
._57{margin-left:-1307.065352px;}
._38{margin-left:-1295.141432px;}
._79{margin-left:-1235.390241px;}
._41{margin-left:-1230.812942px;}
._8a{margin-left:-1213.666620px;}
._70{margin-left:-1135.250260px;}
._2a{margin-left:-1086.691814px;}
._23{margin-left:-1065.540970px;}
._60{margin-left:-1056.036586px;}
._5e{margin-left:-1050.300784px;}
._84{margin-left:-1041.182681px;}
._3d{margin-left:-1017.979601px;}
._59{margin-left:-1010.986704px;}
._5b{margin-left:-959.411077px;}
._2d{margin-left:-945.603886px;}
._83{margin-left:-940.904427px;}
._8e{margin-left:-904.386970px;}
._1b{margin-left:-892.019614px;}
._6e{margin-left:-817.135825px;}
._15{margin-left:-805.749403px;}
._7d{margin-left:-773.800320px;}
._6f{margin-left:-741.240632px;}
._30{margin-left:-666.562176px;}
._28{margin-left:-617.569766px;}
._42{margin-left:-539.131699px;}
._1e{margin-left:-518.586987px;}
._17{margin-left:-516.608102px;}
._7c{margin-left:-431.463168px;}
._39{margin-left:-391.903411px;}
._45{margin-left:-185.930854px;}
._89{margin-left:-32.487753px;}
._77{margin-left:-8.091257px;}
._3a{margin-left:-6.990826px;}
._2{margin-left:-5.810227px;}
._4{margin-left:-4.355551px;}
._1{margin-left:-3.202064px;}
._5{margin-left:-1.936742px;}
._3{width:1.936742px;}
._0{width:3.202064px;}
._2b{width:4.300414px;}
._58{width:5.746933px;}
._1d{width:6.864220px;}
._2e{width:7.955554px;}
._12{width:9.562824px;}
._73{width:10.865464px;}
._44{width:14.548949px;}
._78{width:15.682208px;}
._b{width:16.808938px;}
._18{width:18.928043px;}
._21{width:20.534717px;}
._e{width:22.210794px;}
._a{width:24.603624px;}
._46{width:25.631308px;}
._9{width:26.791463px;}
._19{width:27.951910px;}
._f{width:29.061842px;}
._27{width:30.093884px;}
._34{width:31.260403px;}
._6{width:32.422298px;}
._14{width:33.946882px;}
._8{width:35.243746px;}
._1a{width:36.797149px;}
._75{width:38.589043px;}
._20{width:39.891601px;}
._37{width:41.144048px;}
._c{width:42.655855px;}
._7{width:43.994842px;}
._d{width:45.369680px;}
._47{width:46.404516px;}
._1c{width:47.427689px;}
._6d{width:48.533965px;}
._3c{width:50.156263px;}
._29{width:52.271330px;}
._26{width:53.598061px;}
._22{width:54.814417px;}
._13{width:57.600048px;}
._3f{width:58.739672px;}
._24{width:60.580495px;}
._7f{width:69.905513px;}
._51{width:71.738242px;}
._31{width:75.272790px;}
._11{width:80.697600px;}
._8d{width:83.107954px;}
._10{width:96.836850px;}
._53{width:102.698267px;}
._56{width:116.378279px;}
._4d{width:123.840103px;}
._4b{width:145.942073px;}
._4f{width:171.279456px;}
._4c{width:194.661980px;}
._4e{width:214.336919px;}
._52{width:286.059929px;}
._55{width:306.131164px;}
._50{width:317.808979px;}
._54{width:319.342972px;}
._49{width:333.936553px;}
._4a{width:498.044051px;}
._63{width:715.903149px;}
._62{width:856.211623px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y25{bottom:63.168000px;}
.y104{bottom:103.872000px;}
.y73{bottom:108.000000px;}
.y1d9{bottom:111.540000px;}
.y19b{bottom:111.576000px;}
.y103{bottom:115.096500px;}
.y263{bottom:116.646000px;}
.yb9{bottom:118.413000px;}
.y2f6{bottom:123.288000px;}
.y24{bottom:123.645000px;}
.y72{bottom:128.323500px;}
.y2de{bottom:129.298500px;}
.y14c{bottom:130.752000px;}
.y19a{bottom:131.899500px;}
.y2a3{bottom:132.238500px;}
.y2ff{bottom:136.737000px;}
.y262{bottom:136.971000px;}
.y1fd{bottom:141.138000px;}
.y102{bottom:143.115000px;}
.y2f5{bottom:143.611500px;}
.y1d8{bottom:145.312500px;}
.y176{bottom:148.647000px;}
.y93{bottom:149.571000px;}
.y2dd{bottom:149.622000px;}
.y14b{bottom:151.075500px;}
.yb8{bottom:152.187000px;}
.y199{bottom:152.223000px;}
.y2a2{bottom:152.562000px;}
.y92{bottom:153.616500px;}
.yde{bottom:156.187500px;}
.y122{bottom:157.060500px;}
.y261{bottom:157.294500px;}
.y23{bottom:157.417500px;}
.y71{bottom:159.216000px;}
.y1bc{bottom:161.817000px;}
.y101{bottom:163.438500px;}
.y2f4{bottom:163.935000px;}
.y175{bottom:168.972000px;}
.y14a{bottom:171.399000px;}
.yb7{bottom:172.510500px;}
.y198{bottom:172.546500px;}
.y23f{bottom:172.638000px;}
.y2a1{bottom:172.885500px;}
.y1fc{bottom:174.276000px;}
.y281{bottom:176.796000px;}
.y121{bottom:177.384000px;}
.y260{bottom:177.618000px;}
.y1d7{bottom:179.086500px;}
.y4a{bottom:183.081000px;}
.y2dc{bottom:183.394500px;}
.y100{bottom:183.763500px;}
.y174{bottom:184.011000px;}
.y220{bottom:185.176500px;}
.y173{bottom:189.295500px;}
.ydd{bottom:189.961500px;}
.y91{bottom:190.378500px;}
.y22{bottom:191.191500px;}
.y149{bottom:191.724000px;}
.yb6{bottom:192.834000px;}
.y197{bottom:192.871500px;}
.y23e{bottom:192.961500px;}
.y1bb{bottom:195.309000px;}
.y280{bottom:197.119500px;}
.y120{bottom:197.709000px;}
.y25f{bottom:197.941500px;}
.y1d6{bottom:199.410000px;}
.y70{bottom:202.396500px;}
.y2db{bottom:203.719500px;}
.yff{bottom:204.087000px;}
.y1fb{bottom:206.460000px;}
.y2a0{bottom:209.413500px;}
.y172{bottom:209.619000px;}
.ydc{bottom:210.285000px;}
.y2fe{bottom:211.158000px;}
.y21{bottom:211.515000px;}
.y148{bottom:212.047500px;}
.yb5{bottom:213.157500px;}
.y196{bottom:213.195000px;}
.y23d{bottom:213.285000px;}
.y49{bottom:213.972000px;}
.y27f{bottom:217.443000px;}
.y11f{bottom:218.032500px;}
.y25e{bottom:218.265000px;}
.y1d5{bottom:219.733500px;}
.y90{bottom:221.271000px;}
.y6f{bottom:222.720000px;}
.y2da{bottom:224.043000px;}
.yfe{bottom:224.410500px;}
.y1fa{bottom:226.783500px;}
.y1ba{bottom:228.381000px;}
.y2bf{bottom:229.942500px;}
.y2fd{bottom:231.481500px;}
.y20{bottom:231.838500px;}
.y147{bottom:232.371000px;}
.y171{bottom:233.196000px;}
.yb4{bottom:233.482500px;}
.y195{bottom:233.518500px;}
.y23c{bottom:233.608500px;}
.y21f{bottom:236.569500px;}
.y27e{bottom:237.766500px;}
.y11e{bottom:238.356000px;}
.y170{bottom:238.480500px;}
.y1d4{bottom:240.057000px;}
.y6e{bottom:243.043500px;}
.ydb{bottom:244.059000px;}
.yfd{bottom:244.734000px;}
.y1f9{bottom:247.107000px;}
.y1b9{bottom:248.706000px;}
.y25d{bottom:249.157500px;}
.y2be{bottom:250.266000px;}
.y2f3{bottom:251.805000px;}
.y146{bottom:252.694500px;}
.yb3{bottom:253.806000px;}
.y23b{bottom:253.932000px;}
.y21e{bottom:256.893000px;}
.y48{bottom:257.791500px;}
.y2d9{bottom:257.815500px;}
.y27d{bottom:258.091500px;}
.y11d{bottom:258.679500px;}
.y16f{bottom:258.804000px;}
.y1d3{bottom:260.380500px;}
.y29f{bottom:260.971500px;}
.y1f{bottom:262.731000px;}
.y6d{bottom:263.367000px;}
.y194{bottom:264.411000px;}
.yfc{bottom:265.057500px;}
.y8f{bottom:265.090500px;}
.y1f8{bottom:267.432000px;}
.y1b8{bottom:269.029500px;}
.y2bd{bottom:270.591000px;}
.y2f2{bottom:272.130000px;}
.y145{bottom:273.018000px;}
.yb2{bottom:274.129500px;}
.y23a{bottom:274.257000px;}
.y21d{bottom:277.216500px;}
.yda{bottom:277.831500px;}
.y47{bottom:278.115000px;}
.y2d8{bottom:278.140500px;}
.y27c{bottom:278.415000px;}
.y11c{bottom:279.003000px;}
.y16e{bottom:279.127500px;}
.y6c{bottom:283.690500px;}
.y8e{bottom:285.414000px;}
.y2fc{bottom:285.579000px;}
.y25c{bottom:286.284000px;}
.y1f7{bottom:287.755500px;}
.yfb{bottom:289.858500px;}
.y1d2{bottom:290.586000px;}
.y2bc{bottom:290.914500px;}
.y2f1{bottom:292.453500px;}
.yb1{bottom:294.453000px;}
.y239{bottom:294.580500px;}
.y29e{bottom:294.745500px;}
.y21c{bottom:297.540000px;}
.y46{bottom:298.440000px;}
.y2d7{bottom:298.464000px;}
.y27b{bottom:298.738500px;}
.y11b{bottom:299.328000px;}
.y16d{bottom:299.452500px;}
.y1e{bottom:299.857500px;}
.yfa{bottom:301.083000px;}
.y193{bottom:301.536000px;}
.y1b7{bottom:302.101500px;}
.y6b{bottom:304.014000px;}
.y8d{bottom:305.737500px;}
.y2fb{bottom:305.902500px;}
.y144{bottom:305.991000px;}
.yd9{bottom:307.869000px;}
.y2bb{bottom:311.238000px;}
.y143{bottom:311.275500px;}
.y1d1{bottom:312.882000px;}
.y238{bottom:314.904000px;}
.y21b{bottom:317.863500px;}
.y45{bottom:318.763500px;}
.y27a{bottom:319.062000px;}
.y11a{bottom:319.651500px;}
.y16c{bottom:319.776000px;}
.y1f6{bottom:319.939500px;}
.yb0{bottom:325.345500px;}
.y8c{bottom:326.061000px;}
.y2f0{bottom:326.226000px;}
.y29d{bottom:328.518000px;}
.yf9{bottom:331.381500px;}
.y2ba{bottom:331.561500px;}
.y142{bottom:331.599000px;}
.y2d6{bottom:332.236500px;}
.y6a{bottom:334.398000px;}
.y237{bottom:335.227500px;}
.y1b6{bottom:335.593500px;}
.y25b{bottom:337.842000px;}
.y21a{bottom:338.188500px;}
.y44{bottom:339.087000px;}
.y279{bottom:339.385500px;}
.y16b{bottom:340.099500px;}
.y1d0{bottom:346.269000px;}
.y8b{bottom:346.384500px;}
.y2ef{bottom:346.551000px;}
.yd8{bottom:348.516000px;}
.y1d{bottom:351.415500px;}
.yf8{bottom:351.705000px;}
.y2b9{bottom:351.885000px;}
.y141{bottom:351.922500px;}
.y1f5{bottom:353.077500px;}
.y192{bottom:353.094000px;}
.y119{bottom:353.424000px;}
.y236{bottom:355.551000px;}
.y219{bottom:358.512000px;}
.y43{bottom:359.410500px;}
.y278{bottom:359.709000px;}
.y2fa{bottom:360.000000px;}
.y16a{bottom:360.423000px;}
.y29c{bottom:362.292000px;}
.y2d5{bottom:366.010500px;}
.y1cf{bottom:366.592500px;}
.y8a{bottom:366.709500px;}
.y69{bottom:366.816000px;}
.y2ee{bottom:366.874500px;}
.yaf{bottom:368.566500px;}
.yd7{bottom:368.841000px;}
.y1b5{bottom:369.087000px;}
.y25a{bottom:371.614500px;}
.y1c{bottom:371.739000px;}
.yf7{bottom:372.028500px;}
.y191{bottom:373.419000px;}
.y235{bottom:375.876000px;}
.y218{bottom:378.835500px;}
.y42{bottom:379.734000px;}
.y277{bottom:380.034000px;}
.y2f9{bottom:380.323500px;}
.y29b{bottom:382.615500px;}
.y2b8{bottom:383.805000px;}
.y140{bottom:385.696500px;}
.y1f4{bottom:386.215500px;}
.y2d4{bottom:386.334000px;}
.y1ce{bottom:386.916000px;}
.y118{bottom:387.198000px;}
.yae{bottom:388.890000px;}
.yd6{bottom:389.164500px;}
.y169{bottom:390.549000px;}
.y1b{bottom:392.062500px;}
.yf6{bottom:392.352000px;}
.y190{bottom:393.742500px;}
.y234{bottom:396.199500px;}
.y89{bottom:396.747000px;}
.y217{bottom:399.159000px;}
.y68{bottom:399.234000px;}
.y41{bottom:400.059000px;}
.y2ed{bottom:400.647000px;}
.y168{bottom:401.775000px;}
.y1b4{bottom:402.159000px;}
.y29a{bottom:402.939000px;}
.y259{bottom:405.388500px;}
.y13f{bottom:406.020000px;}
.yd5{bottom:409.488000px;}
.y1a{bottom:412.386000px;}
.y276{bottom:413.806500px;}
.y18f{bottom:414.066000px;}
.y233{bottom:416.523000px;}
.y2b7{bottom:416.836500px;}
.y88{bottom:417.070500px;}
.y1cd{bottom:417.808500px;}
.y1f3{bottom:418.399500px;}
.y216{bottom:419.482500px;}
.y2d3{bottom:420.108000px;}
.y40{bottom:420.382500px;}
.y117{bottom:420.972000px;}
.yf5{bottom:421.522500px;}
.y1b3{bottom:422.482500px;}
.yad{bottom:422.664000px;}
.y299{bottom:423.264000px;}
.yd4{bottom:429.811500px;}
.y67{bottom:431.652000px;}
.y18e{bottom:434.389500px;}
.y2f8{bottom:434.421000px;}
.y232{bottom:436.846500px;}
.y87{bottom:437.394000px;}
.y1f2{bottom:438.723000px;}
.y258{bottom:439.162500px;}
.y13e{bottom:439.792500px;}
.y215{bottom:439.807500px;}
.y2d2{bottom:440.431500px;}
.y3f{bottom:440.706000px;}
.yf4{bottom:441.846000px;}
.y1b2{bottom:442.806000px;}
.y298{bottom:443.587500px;}
.y167{bottom:443.749500px;}
.y19{bottom:446.160000px;}
.y275{bottom:447.580500px;}
.y2b6{bottom:449.868000px;}
.yd3{bottom:450.135000px;}
.y18d{bottom:454.713000px;}
.y116{bottom:454.744500px;}
.yac{bottom:456.436500px;}
.y231{bottom:457.170000px;}
.y1f1{bottom:459.046500px;}
.y13d{bottom:460.117500px;}
.y214{bottom:460.131000px;}
.y3e{bottom:461.029500px;}
.y1cc{bottom:461.628000px;}
.y66{bottom:462.034500px;}
.y1b1{bottom:463.131000px;}
.y297{bottom:463.911000px;}
.y166{bottom:464.074500px;}
.y18{bottom:464.092500px;}
.yd2{bottom:470.460000px;}
.y257{bottom:472.935000px;}
.yf3{bottom:473.779500px;}
.y86{bottom:474.156000px;}
.y2d1{bottom:474.204000px;}
.y18c{bottom:475.038000px;}
.y2ec{bottom:475.068000px;}
.y230{bottom:477.495000px;}
.y1f0{bottom:479.371500px;}
.y213{bottom:480.454500px;}
.y274{bottom:481.353000px;}
.y1cb{bottom:481.951500px;}
.y17{bottom:482.025000px;}
.y65{bottom:482.359500px;}
.y2b5{bottom:482.899500px;}
.y1b0{bottom:483.454500px;}
.y296{bottom:484.234500px;}
.y115{bottom:488.518500px;}
.yab{bottom:490.210500px;}
.yf2{bottom:494.103000px;}
.y2d0{bottom:494.529000px;}
.yd1{bottom:494.667000px;}
.y3d{bottom:494.803500px;}
.y165{bottom:494.965500px;}
.y18b{bottom:495.361500px;}
.y2eb{bottom:495.391500px;}
.y22f{bottom:497.818500px;}
.y13c{bottom:498.373500px;}
.y1ef{bottom:499.695000px;}
.y16{bottom:499.957500px;}
.y212{bottom:500.778000px;}
.y64{bottom:502.683000px;}
.yce{bottom:503.073000px;}
.y1af{bottom:503.778000px;}
.y295{bottom:504.558000px;}
.y256{bottom:506.709000px;}
.y2f7{bottom:508.842000px;}
.y85{bottom:510.918000px;}
.ycd{bottom:514.297500px;}
.y2b4{bottom:514.819500px;}
.y2cf{bottom:514.852500px;}
.y273{bottom:515.127000px;}
.y18a{bottom:515.685000px;}
.y1ca{bottom:515.724000px;}
.y15{bottom:517.890000px;}
.y22e{bottom:518.142000px;}
.y1ee{bottom:520.018500px;}
.y211{bottom:521.101500px;}
.y114{bottom:522.291000px;}
.yf1{bottom:523.273500px;}
.yaa{bottom:523.984500px;}
.y294{bottom:524.883000px;}
.y3c{bottom:528.576000px;}
.y2ea{bottom:529.165500px;}
.y13b{bottom:529.266000px;}
.yd0{bottom:529.843500px;}
.y63{bottom:533.574000px;}
.y2b3{bottom:535.143000px;}
.y272{bottom:535.450500px;}
.y14{bottom:535.824000px;}
.y189{bottom:536.008500px;}
.y1c9{bottom:536.049000px;}
.ycf{bottom:537.150000px;}
.y164{bottom:538.416000px;}
.y22d{bottom:538.465500px;}
.y1ae{bottom:539.698500px;}
.y1ed{bottom:540.342000px;}
.y255{bottom:540.481500px;}
.y210{bottom:541.425000px;}
.yf0{bottom:543.597000px;}
.y84{bottom:544.692000px;}
.y293{bottom:545.206500px;}
.y2ce{bottom:548.625000px;}
.y2e9{bottom:549.489000px;}
.ycc{bottom:551.632500px;}
.y13{bottom:553.756500px;}
.y2b2{bottom:555.466500px;}
.y271{bottom:555.774000px;}
.y113{bottom:556.065000px;}
.ya9{bottom:557.757000px;}
.y163{bottom:558.739500px;}
.y22c{bottom:558.789000px;}
.y20f{bottom:561.750000px;}
.y3b{bottom:562.350000px;}
.yef{bottom:563.920500px;}
.y292{bottom:565.530000px;}
.y188{bottom:566.901000px;}
.y2cd{bottom:568.950000px;}
.y1c8{bottom:569.821500px;}
.y1ec{bottom:571.234500px;}
.y12{bottom:571.689000px;}
.ycb{bottom:571.956000px;}
.y254{bottom:574.255500px;}
.y1ad{bottom:575.619000px;}
.y2b1{bottom:575.790000px;}
.y270{bottom:576.099000px;}
.y62{bottom:576.754500px;}
.ya8{bottom:578.080500px;}
.y83{bottom:578.464500px;}
.y162{bottom:579.063000px;}
.y20e{bottom:582.073500px;}
.y13a{bottom:582.286500px;}
.y2e8{bottom:583.263000px;}
.yee{bottom:584.244000px;}
.y291{bottom:585.853500px;}
.y11{bottom:589.621500px;}
.y112{bottom:589.837500px;}
.yca{bottom:592.279500px;}
.y1ac{bottom:595.942500px;}
.y2b0{bottom:596.115000px;}
.y3a{bottom:596.122500px;}
.y26f{bottom:596.422500px;}
.y61{bottom:597.078000px;}
.ya7{bottom:598.405500px;}
.y161{bottom:599.386500px;}
.y20d{bottom:602.397000px;}
.y139{bottom:602.610000px;}
.y22b{bottom:603.051000px;}
.y2e7{bottom:603.586500px;}
.y1c7{bottom:603.595500px;}
.yed{bottom:604.567500px;}
.y253{bottom:605.146500px;}
.y2cc{bottom:605.478000px;}
.y290{bottom:606.177000px;}
.y10{bottom:607.554000px;}
.y1eb{bottom:608.361000px;}
.y111{bottom:610.162500px;}
.y187{bottom:610.720500px;}
.y82{bottom:612.238500px;}
.y2af{bottom:616.438500px;}
.y26e{bottom:616.746000px;}
.y60{bottom:617.403000px;}
.ya6{bottom:618.729000px;}
.y160{bottom:619.710000px;}
.y20c{bottom:622.720500px;}
.y138{bottom:622.933500px;}
.y22a{bottom:623.374500px;}
.yec{bottom:624.892500px;}
.yf{bottom:625.488000px;}
.yc9{bottom:625.666500px;}
.y28f{bottom:626.502000px;}
.y39{bottom:629.896500px;}
.y186{bottom:631.044000px;}
.y1ab{bottom:631.863000px;}
.y2ae{bottom:636.762000px;}
.yc8{bottom:636.892500px;}
.y26d{bottom:637.069500px;}
.y2e6{bottom:637.360500px;}
.y1c6{bottom:637.368000px;}
.y5f{bottom:637.726500px;}
.ya5{bottom:639.052500px;}
.y15f{bottom:640.035000px;}
.y20b{bottom:643.044000px;}
.y81{bottom:643.129500px;}
.ye{bottom:643.420500px;}
.y229{bottom:643.698000px;}
.y137{bottom:643.855500px;}
.y110{bottom:643.935000px;}
.yeb{bottom:645.216000px;}
.y38{bottom:650.220000px;}
.y185{bottom:651.367500px;}
.y2cb{bottom:657.036000px;}
.y2ad{bottom:657.085500px;}
.y28e{bottom:657.393000px;}
.y2e5{bottom:657.684000px;}
.ya4{bottom:659.376000px;}
.y1ea{bottom:659.619000px;}
.y15e{bottom:660.358500px;}
.y252{bottom:660.933000px;}
.yd{bottom:661.353000px;}
.y20a{bottom:663.369000px;}
.y228{bottom:664.021500px;}
.y136{bottom:664.179000px;}
.y10f{bottom:664.258500px;}
.y1aa{bottom:667.783500px;}
.y37{bottom:670.543500px;}
.y26c{bottom:670.843500px;}
.y1c5{bottom:671.142000px;}
.y184{bottom:671.691000px;}
.yea{bottom:674.386500px;}
.y2ca{bottom:677.359500px;}
.y2ac{bottom:677.409000px;}
.yc{bottom:679.285500px;}
.ya3{bottom:679.699500px;}
.y1e9{bottom:679.942500px;}
.y5e{bottom:680.178000px;}
.y251{bottom:681.256500px;}
.y227{bottom:684.345000px;}
.y10e{bottom:684.583500px;}
.yc7{bottom:684.891000px;}
.y135{bottom:685.101000px;}
.y80{bottom:686.949000px;}
.y36{bottom:690.868500px;}
.y2e4{bottom:691.456500px;}
.y183{bottom:692.014500px;}
.y15d{bottom:692.172000px;}
.y209{bottom:694.260000px;}
.yb{bottom:697.218000px;}
.y2c9{bottom:697.683000px;}
.y2ab{bottom:697.734000px;}
.ya2{bottom:700.024500px;}
.y1e8{bottom:700.266000px;}
.y5d{bottom:700.501500px;}
.y1a9{bottom:700.855500px;}
.y28d{bottom:701.212500px;}
.y250{bottom:701.580000px;}
.y26b{bottom:704.616000px;}
.y226{bottom:704.670000px;}
.y10d{bottom:704.907000px;}
.y1c4{bottom:704.914500px;}
.yc6{bottom:705.214500px;}
.y134{bottom:705.424500px;}
.ye9{bottom:706.318500px;}
.y7f{bottom:707.272500px;}
.y35{bottom:711.192000px;}
.y2e3{bottom:711.781500px;}
.y182{bottom:712.338000px;}
.y15c{bottom:712.495500px;}
.ya{bottom:715.150500px;}
.y2c8{bottom:718.006500px;}
.y2aa{bottom:718.057500px;}
.y1e7{bottom:720.589500px;}
.y5c{bottom:720.826500px;}
.y28c{bottom:721.536000px;}
.y24f{bottom:721.903500px;}
.y225{bottom:724.993500px;}
.y10c{bottom:725.230500px;}
.yc5{bottom:725.538000px;}
.y133{bottom:725.748000px;}
.ye8{bottom:726.642000px;}
.ya1{bottom:730.915500px;}
.y208{bottom:731.386500px;}
.y34{bottom:731.515500px;}
.y301{bottom:732.105000px;}
.y15b{bottom:732.819000px;}
.y1a8{bottom:734.349000px;}
.y2a9{bottom:738.381000px;}
.y26a{bottom:738.390000px;}
.y1c3{bottom:738.688500px;}
.y1e6{bottom:740.914500px;}
.y7e{bottom:741.046500px;}
.y5b{bottom:741.150000px;}
.y28b{bottom:741.859500px;}
.y24e{bottom:742.228500px;}
.y9{bottom:742.423500px;}
.y224{bottom:745.317000px;}
.y10b{bottom:745.554000px;}
.yc4{bottom:745.861500px;}
.y132{bottom:746.670000px;}
.y181{bottom:749.101500px;}
.y300{bottom:752.428500px;}
.y2c7{bottom:754.536000px;}
.ye7{bottom:758.574000px;}
.y2a8{bottom:758.704500px;}
.y1e5{bottom:761.238000px;}
.y5a{bottom:761.473500px;}
.y33{bottom:762.408000px;}
.y24d{bottom:762.552000px;}
.y10a{bottom:765.877500px;}
.yc3{bottom:766.185000px;}
.y131{bottom:766.993500px;}
.y15a{bottom:767.229000px;}
.y1a7{bottom:767.841000px;}
.y269{bottom:772.162500px;}
.y1c2{bottom:772.462500px;}
.ya0{bottom:774.136500px;}
.y7d{bottom:774.820500px;}
.y28a{bottom:775.633500px;}
.ye6{bottom:778.897500px;}
.y223{bottom:778.996500px;}
.y2a7{bottom:779.028000px;}
.y1e4{bottom:781.561500px;}
.y59{bottom:781.797000px;}
.y207{bottom:782.779500px;}
.y180{bottom:782.874000px;}
.y24c{bottom:782.875500px;}
.y109{bottom:786.201000px;}
.yc2{bottom:786.510000px;}
.y130{bottom:787.915500px;}
.y9f{bottom:794.461500px;}
.y289{bottom:795.957000px;}
.y58{bottom:796.837500px;}
.y2a6{bottom:799.353000px;}
.y1a6{bottom:800.913000px;}
.y159{bottom:801.640500px;}
.y1e3{bottom:801.885000px;}
.y57{bottom:802.120500px;}
.y8{bottom:803.050500px;}
.y206{bottom:803.103000px;}
.y24b{bottom:803.199000px;}
.y1c1{bottom:803.353500px;}
.y268{bottom:805.936500px;}
.y2c6{bottom:806.094000px;}
.y32{bottom:806.226000px;}
.y108{bottom:806.526000px;}
.yc1{bottom:806.833500px;}
.y12f{bottom:808.239000px;}
.y7c{bottom:808.593000px;}
.ye5{bottom:810.829500px;}
.y222{bottom:812.287500px;}
.y17f{bottom:816.648000px;}
.y2a5{bottom:819.676500px;}
.y2e2{bottom:819.975000px;}
.y1a5{bottom:821.238000px;}
.y1e2{bottom:822.208500px;}
.y56{bottom:822.445500px;}
.y205{bottom:823.426500px;}
.y24a{bottom:823.522500px;}
.y7{bottom:823.972500px;}
.y9e{bottom:825.352500px;}
.y267{bottom:826.260000px;}
.y2c5{bottom:826.417500px;}
.y31{bottom:826.551000px;}
.y107{bottom:826.849500px;}
.yc0{bottom:827.157000px;}
.y12e{bottom:828.562500px;}
.y288{bottom:829.731000px;}
.ye4{bottom:831.153000px;}
.y158{bottom:834.630000px;}
.y2a4{bottom:840.000000px;}
.y2e1{bottom:840.298500px;}
.y1a4{bottom:841.561500px;}
.y7b{bottom:842.367000px;}
.y204{bottom:843.751500px;}
.y249{bottom:843.847500px;}
.y6{bottom:844.894500px;}
.y266{bottom:846.583500px;}
.y30{bottom:846.874500px;}
.y1c0{bottom:847.173000px;}
.ybf{bottom:847.480500px;}
.y221{bottom:849.412500px;}
.y12d{bottom:849.484500px;}
.y287{bottom:850.054500px;}
.y17e{bottom:850.420500px;}
.y1e1{bottom:853.101000px;}
.y55{bottom:857.032500px;}
.ye3{bottom:860.323500px;}
.y106{bottom:860.622000px;}
.y1a3{bottom:861.885000px;}
.y9d{bottom:862.479000px;}
.y2c4{bottom:862.945500px;}
.y248{bottom:864.171000px;}
.y5{bottom:865.815000px;}
.y265{bottom:866.908500px;}
.y2f{bottom:867.198000px;}
.y1bf{bottom:867.496500px;}
.y157{bottom:867.619500px;}
.y12c{bottom:869.808000px;}
.y7a{bottom:873.258000px;}
.y2e0{bottom:874.072500px;}
.y203{bottom:876.648000px;}
.ybe{bottom:878.373000px;}
.ye2{bottom:880.647000px;}
.y1a2{bottom:882.208500px;}
.y286{bottom:883.828500px;}
.y17d{bottom:884.194500px;}
.y247{bottom:884.494500px;}
.y54{bottom:885.846000px;}
.y4{bottom:886.737000px;}
.y2e{bottom:887.521500px;}
.y12b{bottom:890.131500px;}
.y105{bottom:894.396000px;}
.y1e0{bottom:896.620500px;}
.y264{bottom:897.799500px;}
.y156{bottom:900.609000px;}
.ye1{bottom:900.972000px;}
.y1be{bottom:901.270500px;}
.y1a1{bottom:902.532000px;}
.y53{bottom:903.909000px;}
.y285{bottom:904.152000px;}
.y246{bottom:904.818000px;}
.y2d{bottom:907.845000px;}
.y202{bottom:910.071000px;}
.y79{bottom:910.384500px;}
.y12a{bottom:911.053500px;}
.y9c{bottom:914.037000px;}
.y2c3{bottom:914.503500px;}
.y2df{bottom:914.719500px;}
.y17c{bottom:915.085500px;}
.y1df{bottom:916.944000px;}
.ye0{bottom:921.295500px;}
.ybd{bottom:921.594000px;}
.y1a0{bottom:922.857000px;}
.y52{bottom:924.232500px;}
.y245{bottom:925.141500px;}
.y2c{bottom:928.170000px;}
.y129{bottom:931.377000px;}
.y3{bottom:932.203500px;}
.y155{bottom:932.422500px;}
.y9b{bottom:934.360500px;}
.y2c2{bottom:934.827000px;}
.y1bd{bottom:935.043000px;}
.y1de{bottom:937.267500px;}
.y284{bottom:937.924500px;}
.ydf{bottom:941.619000px;}
.ybc{bottom:941.917500px;}
.y19f{bottom:943.180500px;}
.y201{bottom:943.494000px;}
.y51{bottom:944.557500px;}
.y244{bottom:945.466500px;}
.y2b{bottom:948.493500px;}
.y9a{bottom:949.702500px;}
.y128{bottom:951.700500px;}
.y99{bottom:954.685500px;}
.y2c1{bottom:955.152000px;}
.y1dd{bottom:957.592500px;}
.y153{bottom:957.778500px;}
.y283{bottom:958.248000px;}
.y17b{bottom:958.905000px;}
.y78{bottom:961.942500px;}
.ybb{bottom:962.241000px;}
.y50{bottom:964.881000px;}
.y2{bottom:965.080500px;}
.y243{bottom:965.790000px;}
.y150{bottom:966.184500px;}
.y2a{bottom:968.817000px;}
.y127{bottom:972.622500px;}
.y19e{bottom:976.252500px;}
.y200{bottom:976.917000px;}
.y154{bottom:977.409000px;}
.y1dc{bottom:977.916000px;}
.y17a{bottom:979.230000px;}
.y4f{bottom:980.223000px;}
.y77{bottom:982.266000px;}
.y98{bottom:984.889500px;}
.y4e{bottom:985.204500px;}
.y242{bottom:986.113500px;}
.y14f{bottom:988.479000px;}
.y29{bottom:989.140500px;}
.y2c0{bottom:991.680000px;}
.y282{bottom:992.022000px;}
.y126{bottom:992.946000px;}
.y152{bottom:992.955000px;}
.yba{bottom:996.015000px;}
.y1ff{bottom:997.240500px;}
.y151{bottom:997.864500px;}
.y1{bottom:997.957500px;}
.y1db{bottom:998.239500px;}
.y95{bottom:999.474000px;}
.y97{bottom:1002.001500px;}
.y76{bottom:1002.591000px;}
.y94{bottom:1003.638000px;}
.y4d{bottom:1005.528000px;}
.y241{bottom:1006.437000px;}
.y179{bottom:1006.791000px;}
.y28{bottom:1009.464000px;}
.y19d{bottom:1009.744500px;}
.y14e{bottom:1012.345500px;}
.y178{bottom:1012.732500px;}
.y125{bottom:1013.271000px;}
.y96{bottom:1015.818000px;}
.y177{bottom:1018.015500px;}
.y75{bottom:1022.914500px;}
.y4c{bottom:1025.851500px;}
.y240{bottom:1026.760500px;}
.y27{bottom:1029.789000px;}
.y19c{bottom:1030.069500px;}
.y1da{bottom:1030.423500px;}
.y1fe{bottom:1030.663500px;}
.y14d{bottom:1032.669000px;}
.y124{bottom:1034.191500px;}
.y74{bottom:1043.238000px;}
.y123{bottom:1053.693000px;}
.y4b{bottom:1061.349000px;}
.y26{bottom:1063.561500px;}
.h18{height:2.618184px;}
.h12{height:16.935450px;}
.ha{height:24.281011px;}
.h17{height:35.865450px;}
.h4{height:44.831700px;}
.h28{height:45.425492px;}
.h5{height:49.090950px;}
.h3{height:50.498765px;}
.h2{height:51.216077px;}
.h24{height:51.710184px;}
.h7{height:53.798400px;}
.h1e{height:55.346184px;}
.h21{height:56.935496px;}
.h20{height:56.941496px;}
.h14{height:57.413702px;}
.h8{height:57.419702px;}
.h19{height:59.613450px;}
.h1a{height:59.619450px;}
.hd{height:60.211496px;}
.hf{height:60.689702px;}
.h6{height:64.557900px;}
.he{height:65.272950px;}
.h22{height:65.507702px;}
.hb{height:65.513702px;}
.h29{height:65.638950px;}
.h9{height:69.016950px;}
.hc{height:70.222950px;}
.h23{height:70.228950px;}
.h1{height:77.469300px;}
.h1b{height:93.370950px;}
.h1f{height:93.988950px;}
.h27{height:93.994950px;}
.h1c{height:101.699702px;}
.h15{height:103.899450px;}
.h1d{height:105.587702px;}
.h16{height:107.793450px;}
.h11{height:109.361702px;}
.h25{height:116.042184px;}
.h13{height:124.084950px;}
.h26{height:139.808184px;}
.h10{height:160.004184px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3b{left:78.765000px;}
.x11{left:83.529000px;}
.xd{left:108.000000px;}
.x2{left:115.585500px;}
.x32{left:121.548000px;}
.x37{left:127.999500px;}
.xf{left:131.386500px;}
.xc{left:133.405500px;}
.x3c{left:141.636000px;}
.xb{left:148.909500px;}
.x28{left:164.689500px;}
.xa{left:171.325500px;}
.x1{left:190.932000px;}
.x2b{left:209.730000px;}
.x10{left:211.591500px;}
.x12{left:216.024000px;}
.x39{left:258.582000px;}
.x3a{left:280.399500px;}
.x22{left:289.345500px;}
.x34{left:290.779500px;}
.x35{left:304.327500px;}
.x29{left:310.180500px;}
.x38{left:316.143000px;}
.x21{left:320.749500px;}
.x17{left:322.233000px;}
.x3{left:323.865000px;}
.x2c{left:331.423500px;}
.x3d{left:333.783000px;}
.x18{left:335.781000px;}
.x1c{left:348.502500px;}
.x8{left:351.159000px;}
.x6{left:360.916500px;}
.x7{left:365.313000px;}
.x26{left:370.588500px;}
.x5{left:371.751000px;}
.x14{left:379.542000px;}
.x30{left:388.246500px;}
.x31{left:401.794500px;}
.x13{left:404.562000px;}
.x15{left:409.812000px;}
.x1d{left:412.752000px;}
.x2d{left:414.421500px;}
.x1a{left:419.692500px;}
.x23{left:421.593000px;}
.x4{left:423.642000px;}
.x9{left:426.123000px;}
.x19{left:436.965000px;}
.x27{left:439.950000px;}
.x33{left:450.817500px;}
.xe{left:454.909500px;}
.x24{left:474.054000px;}
.x2e{left:480.697500px;}
.x16{left:493.014000px;}
.x25{left:496.668000px;}
.x1e{left:522.739500px;}
.x1f{left:531.720000px;}
.x2a{left:540.712500px;}
.x20{left:564.339000px;}
.x36{left:570.196500px;}
.x1b{left:647.443500px;}
.x2f{left:780.909000px;}
@media print{
.vf{vertical-align:-16.826667pt;}
.v1d{vertical-align:-13.968000pt;}
.v7{vertical-align:-9.008000pt;}
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v15{vertical-align:7.498667pt;}
.v6{vertical-align:9.306667pt;}
.v9{vertical-align:14.384000pt;}
.v3{vertical-align:17.712000pt;}
.v5{vertical-align:18.784000pt;}
.v2{vertical-align:21.114667pt;}
.v8{vertical-align:24.021333pt;}
.v4{vertical-align:28.309333pt;}
.v17{vertical-align:29.882667pt;}
.v19{vertical-align:31.184000pt;}
.v10{vertical-align:34.010667pt;}
.v12{vertical-align:39.360000pt;}
.v1a{vertical-align:43.637333pt;}
.v18{vertical-align:46.869333pt;}
.v14{vertical-align:52.976000pt;}
.v16{vertical-align:56.437333pt;}
.v11{vertical-align:57.936000pt;}
.v13{vertical-align:60.474667pt;}
.vd{vertical-align:64.581333pt;}
.ve{vertical-align:67.285333pt;}
.v1b{vertical-align:82.037333pt;}
.vc{vertical-align:102.128000pt;}
.vb{vertical-align:104.149333pt;}
.v1c{vertical-align:121.946667pt;}
.va{vertical-align:125.093333pt;}
.ls8{letter-spacing:0.000000pt;}
.lsbe{letter-spacing:0.000452pt;}
.ls2e{letter-spacing:0.000456pt;}
.lsd1{letter-spacing:0.000580pt;}
.ls2a{letter-spacing:0.001420pt;}
.ls6c{letter-spacing:0.001433pt;}
.ls26{letter-spacing:0.001894pt;}
.ls4f{letter-spacing:0.001899pt;}
.ls84{letter-spacing:0.001916pt;}
.lsbc{letter-spacing:0.002251pt;}
.lse6{letter-spacing:0.002284pt;}
.ls44{letter-spacing:0.002397pt;}
.ls3e{letter-spacing:0.002474pt;}
.ls60{letter-spacing:0.003118pt;}
.lscb{letter-spacing:0.003170pt;}
.ls3a{letter-spacing:0.003305pt;}
.ls13{letter-spacing:0.003689pt;}
.ls22{letter-spacing:0.003851pt;}
.lsd2{letter-spacing:0.004781pt;}
.ls27{letter-spacing:0.004817pt;}
.ls1d{letter-spacing:0.004822pt;}
.ls91{letter-spacing:0.005057pt;}
.ls80{letter-spacing:0.005168pt;}
.ls4c{letter-spacing:0.005861pt;}
.ls5d{letter-spacing:0.006096pt;}
.ls6e{letter-spacing:0.006484pt;}
.lsb6{letter-spacing:0.007174pt;}
.ls94{letter-spacing:0.007662pt;}
.ls6f{letter-spacing:0.008063pt;}
.ls87{letter-spacing:0.008373pt;}
.lsbf{letter-spacing:0.008658pt;}
.ls30{letter-spacing:0.009148pt;}
.lsc8{letter-spacing:0.009345pt;}
.ls86{letter-spacing:0.009864pt;}
.ls81{letter-spacing:0.009867pt;}
.lsa2{letter-spacing:0.010289pt;}
.ls4b{letter-spacing:0.010422pt;}
.ls64{letter-spacing:0.011614pt;}
.lsb0{letter-spacing:0.012092pt;}
.lsa9{letter-spacing:0.012946pt;}
.ls7a{letter-spacing:0.012999pt;}
.ls4d{letter-spacing:0.013002pt;}
.lsc7{letter-spacing:0.013012pt;}
.ls7c{letter-spacing:0.013014pt;}
.lsdb{letter-spacing:0.013418pt;}
.ls71{letter-spacing:0.014862pt;}
.lsa3{letter-spacing:0.014953pt;}
.lsae{letter-spacing:0.014957pt;}
.lsdc{letter-spacing:0.016602pt;}
.lse1{letter-spacing:0.016698pt;}
.lsbd{letter-spacing:0.017526pt;}
.lse0{letter-spacing:0.017774pt;}
.lsdd{letter-spacing:0.019681pt;}
.lsd4{letter-spacing:0.020141pt;}
.lsaf{letter-spacing:0.020151pt;}
.ls76{letter-spacing:0.021007pt;}
.lsda{letter-spacing:0.021129pt;}
.lse8{letter-spacing:0.021338pt;}
.ls98{letter-spacing:0.021488pt;}
.lse4{letter-spacing:0.021492pt;}
.ls99{letter-spacing:0.022068pt;}
.lsb5{letter-spacing:0.022227pt;}
.lsa6{letter-spacing:0.023934pt;}
.ls3{letter-spacing:0.024585pt;}
.ls69{letter-spacing:0.024852pt;}
.ls95{letter-spacing:0.025297pt;}
.ls9a{letter-spacing:0.025858pt;}
.lsd9{letter-spacing:0.026452pt;}
.lsb3{letter-spacing:0.026519pt;}
.ls7d{letter-spacing:0.026567pt;}
.ls7f{letter-spacing:0.027980pt;}
.ls48{letter-spacing:0.028941pt;}
.ls54{letter-spacing:0.058182pt;}
.lse3{letter-spacing:0.174546pt;}
.ls62{letter-spacing:0.232727pt;}
.ls89{letter-spacing:0.407273pt;}
.ls88{letter-spacing:0.465455pt;}
.ls97{letter-spacing:1.570910pt;}
.ls33{letter-spacing:1.606692pt;}
.ls3b{letter-spacing:1.615008pt;}
.ls2d{letter-spacing:1.617899pt;}
.ls10{letter-spacing:1.626901pt;}
.ls37{letter-spacing:1.629092pt;}
.ls73{letter-spacing:1.633759pt;}
.lse{letter-spacing:1.634187pt;}
.ls39{letter-spacing:2.089669pt;}
.ls28{letter-spacing:2.094547pt;}
.ls78{letter-spacing:2.465418pt;}
.ls15{letter-spacing:2.653258pt;}
.ls61{letter-spacing:2.656092pt;}
.ls2f{letter-spacing:2.657146pt;}
.ls52{letter-spacing:2.658591pt;}
.ls25{letter-spacing:2.660634pt;}
.ls3f{letter-spacing:2.662479pt;}
.ls36{letter-spacing:2.676366pt;}
.ls55{letter-spacing:2.792730pt;}
.ls1c{letter-spacing:2.909093pt;}
.ls9e{letter-spacing:2.967275pt;}
.lsde{letter-spacing:3.316366pt;}
.ls79{letter-spacing:4.712731pt;}
.ls1b{letter-spacing:4.750730pt;}
.ls1f{letter-spacing:4.756063pt;}
.lsb{letter-spacing:6.574551pt;}
.ls1e{letter-spacing:7.563189pt;}
.ls1a{letter-spacing:7.568522pt;}
.ls5c{letter-spacing:8.087279pt;}
.ls5{letter-spacing:9.309099pt;}
.lsc3{letter-spacing:9.658190pt;}
.ls8d{letter-spacing:9.692555pt;}
.ls59{letter-spacing:9.716372pt;}
.ls4{letter-spacing:12.220789pt;}
.ls45{letter-spacing:12.916374pt;}
.ls47{letter-spacing:12.974556pt;}
.ls46{letter-spacing:13.149102pt;}
.lsa5{letter-spacing:13.905466pt;}
.lsed{letter-spacing:14.080012pt;}
.ls16{letter-spacing:14.603649pt;}
.lse5{letter-spacing:14.720012pt;}
.lsb9{letter-spacing:14.952740pt;}
.lsac{letter-spacing:15.581258pt;}
.ls77{letter-spacing:15.585146pt;}
.ls21{letter-spacing:16.116377pt;}
.ls9{letter-spacing:16.174559pt;}
.lsa1{letter-spacing:17.163651pt;}
.lsd6{letter-spacing:17.396378pt;}
.ls68{letter-spacing:17.629106pt;}
.ls2c{letter-spacing:17.744522pt;}
.ls67{letter-spacing:17.803651pt;}
.lseb{letter-spacing:17.861833pt;}
.ls7b{letter-spacing:18.033323pt;}
.lsc{letter-spacing:18.152742pt;}
.lsef{letter-spacing:18.210924pt;}
.ls20{letter-spacing:18.269106pt;}
.lsc1{letter-spacing:18.792743pt;}
.ls82{letter-spacing:18.813258pt;}
.ls5a{letter-spacing:18.816092pt;}
.ls23{letter-spacing:18.817146pt;}
.ls74{letter-spacing:18.817546pt;}
.ls2{letter-spacing:18.968790pt;}
.ls8e{letter-spacing:19.258198pt;}
.ls24{letter-spacing:19.374562pt;}
.ls19{letter-spacing:19.432743pt;}
.ls6d{letter-spacing:19.549107pt;}
.ls49{letter-spacing:19.607289pt;}
.lsec{letter-spacing:19.665471pt;}
.lsc6{letter-spacing:19.723653pt;}
.ls9d{letter-spacing:19.847925pt;}
.ls6b{letter-spacing:19.956380pt;}
.lscc{letter-spacing:20.130926pt;}
.ls85{letter-spacing:20.189108pt;}
.ls14{letter-spacing:20.363653pt;}
.ls63{letter-spacing:20.654563pt;}
.lscf{letter-spacing:20.712745pt;}
.ls66{letter-spacing:20.887290pt;}
.lsad{letter-spacing:21.003654pt;}
.ls58{letter-spacing:21.011856pt;}
.ls72{letter-spacing:21.018758pt;}
.lsb4{letter-spacing:21.178199pt;}
.lsb7{letter-spacing:21.236381pt;}
.ls4e{letter-spacing:21.314591pt;}
.lsd3{letter-spacing:21.469109pt;}
.lsb8{letter-spacing:21.527291pt;}
.ls34{letter-spacing:21.760018pt;}
.ls57{letter-spacing:21.813299pt;}
.lsf2{letter-spacing:21.818200pt;}
.lsab{letter-spacing:22.045258pt;}
.ls70{letter-spacing:22.048092pt;}
.ls7e{letter-spacing:22.054479pt;}
.lse7{letter-spacing:22.109109pt;}
.ls8c{letter-spacing:22.225473pt;}
.ls9b{letter-spacing:22.279925pt;}
.ls18{letter-spacing:22.283655pt;}
.lsbb{letter-spacing:22.341837pt;}
.ls92{letter-spacing:22.400019pt;}
.lsa7{letter-spacing:22.516382pt;}
.ls51{letter-spacing:22.532811pt;}
.ls5b{letter-spacing:22.538144pt;}
.lsc0{letter-spacing:22.574564pt;}
.ls6a{letter-spacing:22.614879pt;}
.lse9{letter-spacing:22.632746pt;}
.lsa8{letter-spacing:22.749110pt;}
.ls0{letter-spacing:22.900697pt;}
.lsa4{letter-spacing:22.981837pt;}
.ls65{letter-spacing:23.290758pt;}
.lsea{letter-spacing:23.389110pt;}
.ls9f{letter-spacing:23.447292pt;}
.ls2b{letter-spacing:23.728522pt;}
.lsc2{letter-spacing:23.912747pt;}
.ls96{letter-spacing:23.970929pt;}
.lsc9{letter-spacing:24.029111pt;}
.ls9c{letter-spacing:24.133308pt;}
.lsd7{letter-spacing:24.378202pt;}
.lsd8{letter-spacing:24.436384pt;}
.lscd{letter-spacing:24.442641pt;}
.lsca{letter-spacing:24.669111pt;}
.lsba{letter-spacing:25.074441pt;}
.lsee{letter-spacing:25.309112pt;}
.lsd5{letter-spacing:25.483658pt;}
.ls29{letter-spacing:25.716385pt;}
.lsb1{letter-spacing:25.774567pt;}
.lsdf{letter-spacing:25.890931pt;}
.ls17{letter-spacing:25.949113pt;}
.lsd0{letter-spacing:26.007294pt;}
.lse2{letter-spacing:26.065476pt;}
.lsf{letter-spacing:26.240022pt;}
.ls1{letter-spacing:26.301264pt;}
.lsa0{letter-spacing:26.415975pt;}
.lsc5{letter-spacing:26.589113pt;}
.ls42{letter-spacing:26.647295pt;}
.lsce{letter-spacing:26.705477pt;}
.lsc4{letter-spacing:26.709308pt;}
.lsa{letter-spacing:26.880022pt;}
.ls4a{letter-spacing:27.170932pt;}
.ls43{letter-spacing:27.287295pt;}
.lsf0{letter-spacing:27.694569pt;}
.lsd{letter-spacing:27.810932pt;}
.ls35{letter-spacing:28.392751pt;}
.ls7{letter-spacing:29.090933pt;}
.ls12{letter-spacing:29.265479pt;}
.ls41{letter-spacing:29.307812pt;}
.ls11{letter-spacing:29.323661pt;}
.ls93{letter-spacing:29.730934pt;}
.ls56{letter-spacing:29.905479pt;}
.ls8b{letter-spacing:30.021843pt;}
.ls6{letter-spacing:30.254571pt;}
.lsb2{letter-spacing:31.476390pt;}
.lsf1{letter-spacing:31.941845pt;}
.lsaa{letter-spacing:32.000027pt;}
.ls75{letter-spacing:32.523663pt;}
.ls50{letter-spacing:32.692960pt;}
.ls83{letter-spacing:46.404811pt;}
.ls31{letter-spacing:59.938591pt;}
.ls8f{letter-spacing:76.836811pt;}
.ls38{letter-spacing:112.538144pt;}
.ls3d{letter-spacing:113.887477pt;}
.ls5e{letter-spacing:123.853077pt;}
.ls90{letter-spacing:546.446995pt;}
.ls53{letter-spacing:570.415021pt;}
.ls32{letter-spacing:693.935124pt;}
.ls40{letter-spacing:738.676979pt;}
.ls3c{letter-spacing:780.800651pt;}
.ls5f{letter-spacing:859.287989pt;}
.ls8a{letter-spacing:893.033471pt;}
.ws6e{word-spacing:-58.181867pt;}
.ws7d{word-spacing:-46.062584pt;}
.ws6f{word-spacing:-40.808761pt;}
.ws34{word-spacing:-37.899668pt;}
.ws7{word-spacing:-34.611401pt;}
.wsa1{word-spacing:-29.521250pt;}
.ws6d{word-spacing:-28.241478pt;}
.ws79{word-spacing:-21.725109pt;}
.ws11c{word-spacing:-17.070560pt;}
.ws147{word-spacing:-16.896014pt;}
.ws23{word-spacing:-16.162923pt;}
.ws123{word-spacing:-15.499649pt;}
.ws3a{word-spacing:-14.871285pt;}
.ws15a{word-spacing:-13.405102pt;}
.ws50{word-spacing:-12.543875pt;}
.ws4a{word-spacing:-11.950555pt;}
.ws113{word-spacing:-11.543282pt;}
.ws1a1{word-spacing:-8.285098pt;}
.ws111{word-spacing:-8.254782pt;}
.ws11f{word-spacing:-6.465757pt;}
.ws106{word-spacing:-5.017448pt;}
.ws116{word-spacing:-4.356115pt;}
.ws8e{word-spacing:-3.688730pt;}
.ws11b{word-spacing:-3.593448pt;}
.ws120{word-spacing:-3.508958pt;}
.ws1b5{word-spacing:-3.397821pt;}
.wsa3{word-spacing:-3.246548pt;}
.ws1eb{word-spacing:-3.130184pt;}
.ws1f5{word-spacing:-3.072003pt;}
.ws134{word-spacing:-3.013821pt;}
.wsdc{word-spacing:-2.990548pt;}
.ws1b6{word-spacing:-2.955639pt;}
.ws26{word-spacing:-2.897457pt;}
.wscf{word-spacing:-2.874184pt;}
.ws13e{word-spacing:-2.816002pt;}
.wse0{word-spacing:-2.781093pt;}
.wsc8{word-spacing:-2.641457pt;}
.wsdd{word-spacing:-2.606548pt;}
.ws10{word-spacing:-2.539799pt;}
.ws98{word-spacing:-2.525093pt;}
.wsd0{word-spacing:-2.490184pt;}
.ws13f{word-spacing:-2.432002pt;}
.ws16e{word-spacing:-2.408729pt;}
.ws1de{word-spacing:-2.373820pt;}
.ws91{word-spacing:-2.315638pt;}
.ws17c{word-spacing:-2.292366pt;}
.ws1c1{word-spacing:-2.257456pt;}
.ws97{word-spacing:-2.199275pt;}
.ws16f{word-spacing:-2.141093pt;}
.ws43{word-spacing:-2.082911pt;}
.ws18{word-spacing:-2.040340pt;}
.ws17d{word-spacing:-2.024729pt;}
.wsf7{word-spacing:-2.001456pt;}
.ws1a8{word-spacing:-1.943274pt;}
.wsd1{word-spacing:-1.850183pt;}
.ws17{word-spacing:-1.795925pt;}
.wsf8{word-spacing:-1.792001pt;}
.ws199{word-spacing:-1.675638pt;}
.ws19b{word-spacing:-1.617456pt;}
.wse5{word-spacing:-1.559274pt;}
.ws18c{word-spacing:-1.477819pt;}
.ws10f{word-spacing:-1.442910pt;}
.wsf{word-spacing:-1.370854pt;}
.ws189{word-spacing:-1.303274pt;}
.ws18d{word-spacing:-1.268365pt;}
.ws8f{word-spacing:-1.210183pt;}
.ws18a{word-spacing:-1.093819pt;}
.ws167{word-spacing:-0.919273pt;}
.ws1fd{word-spacing:-0.861092pt;}
.ws1fb{word-spacing:-0.802910pt;}
.ws2f{word-spacing:-0.744728pt;}
.wsff{word-spacing:-0.605091pt;}
.ws2e{word-spacing:-0.512000pt;}
.ws7e{word-spacing:-0.190754pt;}
.ws95{word-spacing:-0.162909pt;}
.ws1b7{word-spacing:-0.104727pt;}
.ws3{word-spacing:-0.063761pt;}
.wsae{word-spacing:-0.058182pt;}
.wsd2{word-spacing:-0.046545pt;}
.wsa2{word-spacing:-0.031881pt;}
.ws25{word-spacing:0.000000pt;}
.ws7c{word-spacing:0.011636pt;}
.ws1bc{word-spacing:0.069818pt;}
.wsd8{word-spacing:0.128000pt;}
.ws1fa{word-spacing:0.139636pt;}
.ws1a2{word-spacing:0.151273pt;}
.ws8a{word-spacing:0.186182pt;}
.ws27{word-spacing:0.314182pt;}
.ws40{word-spacing:0.418909pt;}
.ws3f{word-spacing:0.477091pt;}
.ws104{word-spacing:0.481865pt;}
.ws10a{word-spacing:0.535273pt;}
.ws197{word-spacing:0.558546pt;}
.ws92{word-spacing:0.593455pt;}
.ws109{word-spacing:0.616728pt;}
.ws16{word-spacing:0.648233pt;}
.ws16c{word-spacing:0.651637pt;}
.ws196{word-spacing:0.663273pt;}
.ws13c{word-spacing:0.709819pt;}
.wsab{word-spacing:0.768001pt;}
.ws1df{word-spacing:0.779637pt;}
.ws6c{word-spacing:0.791273pt;}
.ws146{word-spacing:0.826183pt;}
.ws148{word-spacing:0.884364pt;}
.ws1d9{word-spacing:0.942546pt;}
.ws127{word-spacing:1.000728pt;}
.ws10d{word-spacing:1.058910pt;}
.ws13d{word-spacing:1.117092pt;}
.ws39{word-spacing:1.175274pt;}
.wse{word-spacing:1.285840pt;}
.ws71{word-spacing:1.349819pt;}
.ws28{word-spacing:1.361456pt;}
.ws21{word-spacing:1.408001pt;}
.ws1be{word-spacing:1.466183pt;}
.ws1cb{word-spacing:1.524365pt;}
.wsc6{word-spacing:1.547638pt;}
.ws65{word-spacing:1.582547pt;}
.wsfd{word-spacing:1.640729pt;}
.ws1bd{word-spacing:1.722183pt;}
.ws1d6{word-spacing:1.757092pt;}
.ws1c4{word-spacing:1.815274pt;}
.ws11e{word-spacing:1.873456pt;}
.ws16b{word-spacing:1.931638pt;}
.ws60{word-spacing:1.954911pt;}
.wsac{word-spacing:1.989820pt;}
.wsd{word-spacing:2.029714pt;}
.wsc5{word-spacing:2.048002pt;}
.ws18e{word-spacing:2.106184pt;}
.ws11d{word-spacing:2.129456pt;}
.ws53{word-spacing:2.164365pt;}
.ws188{word-spacing:2.187638pt;}
.wsf2{word-spacing:2.222547pt;}
.ws5a{word-spacing:2.338911pt;}
.wsc4{word-spacing:2.362184pt;}
.wsb1{word-spacing:2.397093pt;}
.ws12e{word-spacing:2.455275pt;}
.ws14{word-spacing:2.507919pt;}
.wscb{word-spacing:2.513457pt;}
.ws1a6{word-spacing:2.629820pt;}
.ws1b{word-spacing:2.688002pt;}
.ws1c7{word-spacing:2.711275pt;}
.wsdb{word-spacing:2.746184pt;}
.ws1e5{word-spacing:2.804366pt;}
.ws1d5{word-spacing:2.816002pt;}
.ws6b{word-spacing:2.862548pt;}
.ws2d{word-spacing:2.978912pt;}
.ws19a{word-spacing:2.990548pt;}
.ws14c{word-spacing:3.033742pt;}
.ws152{word-spacing:3.037093pt;}
.ws138{word-spacing:3.038263pt;}
.wsc9{word-spacing:3.042816pt;}
.ws165{word-spacing:3.043596pt;}
.ws12a{word-spacing:3.048730pt;}
.ws16d{word-spacing:3.095275pt;}
.ws1b2{word-spacing:3.153457pt;}
.ws1e{word-spacing:3.211639pt;}
.ws44{word-spacing:3.269821pt;}
.ws1ab{word-spacing:3.328003pt;}
.ws19{word-spacing:3.379314pt;}
.ws36{word-spacing:3.386185pt;}
.ws3e{word-spacing:3.397821pt;}
.ws2c{word-spacing:3.444367pt;}
.ws132{word-spacing:3.502548pt;}
.ws93{word-spacing:3.514185pt;}
.ws13b{word-spacing:3.560730pt;}
.ws1da{word-spacing:3.618912pt;}
.ws87{word-spacing:3.700367pt;}
.ws185{word-spacing:3.735276pt;}
.wsd9{word-spacing:3.758549pt;}
.ws54{word-spacing:3.851640pt;}
.ws1aa{word-spacing:3.874912pt;}
.ws117{word-spacing:3.909821pt;}
.ws179{word-spacing:3.968003pt;}
.ws20{word-spacing:3.985067pt;}
.ws1c3{word-spacing:3.991276pt;}
.ws115{word-spacing:4.026185pt;}
.ws141{word-spacing:4.084367pt;}
.ws1e8{word-spacing:4.096003pt;}
.wsa9{word-spacing:4.142549pt;}
.ws162{word-spacing:4.200731pt;}
.wsda{word-spacing:4.258913pt;}
.ws198{word-spacing:4.317095pt;}
.ws1b9{word-spacing:4.340367pt;}
.ws61{word-spacing:4.375276pt;}
.ws33{word-spacing:4.433458pt;}
.wsd4{word-spacing:4.491640pt;}
.ws73{word-spacing:4.549822pt;}
.ws2a{word-spacing:4.608004pt;}
.ws114{word-spacing:4.631277pt;}
.ws161{word-spacing:4.666186pt;}
.ws1f{word-spacing:4.782067pt;}
.ws96{word-spacing:4.782549pt;}
.ws1af{word-spacing:4.839017pt;}
.ws18f{word-spacing:4.840731pt;}
.ws1fc{word-spacing:4.852368pt;}
.wsb3{word-spacing:4.898913pt;}
.ws10e{word-spacing:4.922186pt;}
.ws182{word-spacing:4.957095pt;}
.ws1c9{word-spacing:5.015277pt;}
.ws76{word-spacing:5.073459pt;}
.ws62{word-spacing:5.131641pt;}
.ws2b{word-spacing:5.189823pt;}
.ws166{word-spacing:5.213095pt;}
.wse1{word-spacing:5.248004pt;}
.wsb{word-spacing:5.270880pt;}
.wsa4{word-spacing:5.279206pt;}
.wsc3{word-spacing:5.306186pt;}
.wsa5{word-spacing:5.364368pt;}
.wsbb{word-spacing:5.422550pt;}
.ws30{word-spacing:5.480732pt;}
.ws6{word-spacing:5.483415pt;}
.wsdf{word-spacing:5.538914pt;}
.ws177{word-spacing:5.597096pt;}
.wsf6{word-spacing:5.608732pt;}
.ws31{word-spacing:5.655277pt;}
.ws59{word-spacing:5.713459pt;}
.ws0{word-spacing:5.738467pt;}
.ws56{word-spacing:5.771641pt;}
.ws83{word-spacing:5.829823pt;}
.ws75{word-spacing:5.853096pt;}
.wsd6{word-spacing:5.888005pt;}
.ws14a{word-spacing:5.899641pt;}
.wsd5{word-spacing:5.946187pt;}
.ws110{word-spacing:5.957823pt;}
.ws11a{word-spacing:6.004369pt;}
.wsaa{word-spacing:6.027641pt;}
.ws9e{word-spacing:6.062551pt;}
.ws125{word-spacing:6.085823pt;}
.ws108{word-spacing:6.120732pt;}
.ws15d{word-spacing:6.178914pt;}
.ws1f4{word-spacing:6.190551pt;}
.ws67{word-spacing:6.237096pt;}
.ws163{word-spacing:6.253109pt;}
.ws1c8{word-spacing:6.260369pt;}
.wsa6{word-spacing:6.268463pt;}
.ws139{word-spacing:6.270716pt;}
.ws164{word-spacing:6.270816pt;}
.ws78{word-spacing:6.271219pt;}
.wsb2{word-spacing:6.272124pt;}
.ws128{word-spacing:6.272375pt;}
.wsa0{word-spacing:6.273684pt;}
.ws137{word-spacing:6.274616pt;}
.ws135{word-spacing:6.275596pt;}
.ws136{word-spacing:6.276049pt;}
.ws112{word-spacing:6.277709pt;}
.ws15b{word-spacing:6.295278pt;}
.ws5{word-spacing:6.301677pt;}
.wsde{word-spacing:6.318551pt;}
.ws58{word-spacing:6.353460pt;}
.wsd7{word-spacing:6.411642pt;}
.ws176{word-spacing:6.434914pt;}
.ws17e{word-spacing:6.469824pt;}
.ws1bf{word-spacing:6.493096pt;}
.ws37{word-spacing:6.528005pt;}
.ws80{word-spacing:6.586187pt;}
.ws5b{word-spacing:6.609460pt;}
.wsd3{word-spacing:6.644369pt;}
.wsc1{word-spacing:6.702551pt;}
.ws142{word-spacing:6.714187pt;}
.ws102{word-spacing:6.760733pt;}
.ws52{word-spacing:6.784006pt;}
.ws1a0{word-spacing:6.818915pt;}
.ws170{word-spacing:6.877097pt;}
.ws1dc{word-spacing:6.888733pt;}
.ws171{word-spacing:6.900369pt;}
.ws1b3{word-spacing:6.917709pt;}
.ws1bb{word-spacing:6.935279pt;}
.ws140{word-spacing:6.958551pt;}
.ws121{word-spacing:6.993460pt;}
.ws1a{word-spacing:7.016733pt;}
.wsc{word-spacing:7.024297pt;}
.ws8d{word-spacing:7.051642pt;}
.ws15c{word-spacing:7.133097pt;}
.ws4d{word-spacing:7.168006pt;}
.ws74{word-spacing:7.179642pt;}
.ws158{word-spacing:7.191279pt;}
.ws133{word-spacing:7.226188pt;}
.ws1d3{word-spacing:7.237824pt;}
.ws48{word-spacing:7.249461pt;}
.wsbe{word-spacing:7.284370pt;}
.ws4b{word-spacing:7.307642pt;}
.ws1e6{word-spacing:7.342552pt;}
.ws57{word-spacing:7.365824pt;}
.ws168{word-spacing:7.400733pt;}
.ws100{word-spacing:7.458915pt;}
.ws169{word-spacing:7.482188pt;}
.wse3{word-spacing:7.517097pt;}
.ws12d{word-spacing:7.575279pt;}
.ws172{word-spacing:7.633461pt;}
.wsed{word-spacing:7.682816pt;}
.ws130{word-spacing:7.691643pt;}
.ws63{word-spacing:7.703279pt;}
.ws14f{word-spacing:7.749825pt;}
.ws3d{word-spacing:7.761461pt;}
.ws12{word-spacing:7.768171pt;}
.ws101{word-spacing:7.773097pt;}
.ws66{word-spacing:7.808007pt;}
.ws1f3{word-spacing:7.819643pt;}
.ws68{word-spacing:7.866188pt;}
.wsfa{word-spacing:7.924370pt;}
.ws191{word-spacing:7.936007pt;}
.wsbc{word-spacing:7.994188pt;}
.ws1ba{word-spacing:8.005825pt;}
.ws8{word-spacing:8.033841pt;}
.ws29{word-spacing:8.040734pt;}
.ws9a{word-spacing:8.098916pt;}
.ws150{word-spacing:8.157098pt;}
.ws35{word-spacing:8.215280pt;}
.wsb5{word-spacing:8.273461pt;}
.ws1cc{word-spacing:8.331643pt;}
.ws13a{word-spacing:8.413098pt;}
.ws1c{word-spacing:8.448007pt;}
.ws90{word-spacing:8.506189pt;}
.ws15{word-spacing:8.512045pt;}
.ws10c{word-spacing:8.564371pt;}
.ws1d4{word-spacing:8.576007pt;}
.ws145{word-spacing:8.622553pt;}
.ws1f9{word-spacing:8.634189pt;}
.wse2{word-spacing:8.645825pt;}
.ws32{word-spacing:8.680735pt;}
.ws9d{word-spacing:8.692371pt;}
.ws46{word-spacing:8.738916pt;}
.ws5f{word-spacing:8.797098pt;}
.wsb7{word-spacing:8.808735pt;}
.ws1a7{word-spacing:8.855280pt;}
.ws1ce{word-spacing:8.866916pt;}
.ws10b{word-spacing:8.913462pt;}
.ws1e3{word-spacing:8.925098pt;}
.ws184{word-spacing:8.936735pt;}
.ws156{word-spacing:8.971644pt;}
.ws38{word-spacing:8.983280pt;}
.wse9{word-spacing:9.029826pt;}
.ws1cf{word-spacing:9.099644pt;}
.ws12b{word-spacing:9.146189pt;}
.wsf9{word-spacing:9.169462pt;}
.ws8b{word-spacing:9.204371pt;}
.ws143{word-spacing:9.262553pt;}
.ws1d0{word-spacing:9.274190pt;}
.ws9{word-spacing:9.277173pt;}
.ws99{word-spacing:9.285826pt;}
.wsc0{word-spacing:9.320735pt;}
.ws86{word-spacing:9.378917pt;}
.ws124{word-spacing:9.390553pt;}
.ws1b1{word-spacing:9.408375pt;}
.ws84{word-spacing:9.437099pt;}
.wsa8{word-spacing:9.495281pt;}
.wsca{word-spacing:9.504124pt;}
.ws9f{word-spacing:9.506816pt;}
.ws190{word-spacing:9.506917pt;}
.ws160{word-spacing:9.507596pt;}
.wsc7{word-spacing:9.509457pt;}
.ws187{word-spacing:9.509709pt;}
.ws19d{word-spacing:9.512376pt;}
.wsb4{word-spacing:9.518553pt;}
.wsa7{word-spacing:9.553463pt;}
.ws1ae{word-spacing:9.611644pt;}
.ws19c{word-spacing:9.669826pt;}
.ws12f{word-spacing:9.693099pt;}
.ws1e9{word-spacing:9.728008pt;}
.ws17a{word-spacing:9.733709pt;}
.ws1e7{word-spacing:9.739644pt;}
.ws17b{word-spacing:9.751281pt;}
.ws1e4{word-spacing:9.797826pt;}
.ws14e{word-spacing:9.902554pt;}
.ws149{word-spacing:9.925826pt;}
.ws103{word-spacing:9.960736pt;}
.ws6a{word-spacing:10.018917pt;}
.ws19f{word-spacing:10.030554pt;}
.ws186{word-spacing:10.037709pt;}
.ws69{word-spacing:10.077099pt;}
.ws1d7{word-spacing:10.088736pt;}
.ws47{word-spacing:10.135281pt;}
.ws1f2{word-spacing:10.205099pt;}
.ws178{word-spacing:10.255671pt;}
.ws1c0{word-spacing:10.274918pt;}
.ws18b{word-spacing:10.321463pt;}
.ws9c{word-spacing:10.368009pt;}
.ws154{word-spacing:10.391281pt;}
.ws1d2{word-spacing:10.426191pt;}
.ws13{word-spacing:10.477999pt;}
.wscd{word-spacing:10.484372pt;}
.ws1a9{word-spacing:10.496009pt;}
.ws153{word-spacing:10.542554pt;}
.ws1dd{word-spacing:10.554191pt;}
.ws89{word-spacing:10.600736pt;}
.ws1cd{word-spacing:10.612372pt;}
.ws1e1{word-spacing:10.658918pt;}
.ws1ac{word-spacing:10.682191pt;}
.ws4{word-spacing:10.690534pt;}
.ws3c{word-spacing:10.717100pt;}
.wsbf{word-spacing:10.740373pt;}
.ws5d{word-spacing:10.775282pt;}
.ws181{word-spacing:10.798554pt;}
.ws41{word-spacing:10.833464pt;}
.ws1a5{word-spacing:10.949827pt;}
.ws1e0{word-spacing:11.008009pt;}
.ws1ad{word-spacing:11.031282pt;}
.ws12c{word-spacing:11.066191pt;}
.ws1ec{word-spacing:11.077827pt;}
.ws51{word-spacing:11.124373pt;}
.ws174{word-spacing:11.182555pt;}
.ws15e{word-spacing:11.191776pt;}
.ws15f{word-spacing:11.209483pt;}
.wsa{word-spacing:11.243126pt;}
.ws159{word-spacing:11.323042pt;}
.ws194{word-spacing:11.357100pt;}
.wsba{word-spacing:11.531646pt;}
.ws126{word-spacing:11.589709pt;}
.ws22{word-spacing:11.648010pt;}
.ws1c5{word-spacing:11.671282pt;}
.ws131{word-spacing:11.706192pt;}
.ws16a{word-spacing:11.717828pt;}
.ws193{word-spacing:11.764373pt;}
.ws175{word-spacing:11.787646pt;}
.ws1b4{word-spacing:11.822555pt;}
.ws81{word-spacing:11.850841pt;}
.ws77{word-spacing:11.892374pt;}
.ws183{word-spacing:11.938919pt;}
.ws1ea{word-spacing:11.950555pt;}
.ws9b{word-spacing:11.962192pt;}
.wsb8{word-spacing:11.997101pt;}
.ws42{word-spacing:12.113465pt;}
.ws88{word-spacing:12.194919pt;}
.ws5c{word-spacing:12.288010pt;}
.ws3b{word-spacing:12.311283pt;}
.ws1a3{word-spacing:12.346192pt;}
.ws55{word-spacing:12.369465pt;}
.ws1ca{word-spacing:12.404374pt;}
.ws94{word-spacing:12.427647pt;}
.ws122{word-spacing:12.531596pt;}
.ws129{word-spacing:12.578920pt;}
.ws1d8{word-spacing:12.590556pt;}
.ws1a4{word-spacing:12.602192pt;}
.ws17f{word-spacing:12.637101pt;}
.ws118{word-spacing:12.695283pt;}
.ws1ed{word-spacing:12.765102pt;}
.wsfb{word-spacing:12.776738pt;}
.ws1e2{word-spacing:12.823283pt;}
.ws1f8{word-spacing:12.869829pt;}
.ws5e{word-spacing:12.881465pt;}
.ws1b0{word-spacing:12.928011pt;}
.wsc2{word-spacing:12.978816pt;}
.ws1f7{word-spacing:13.056011pt;}
.wsfc{word-spacing:13.230556pt;}
.wsb9{word-spacing:13.242193pt;}
.ws1b8{word-spacing:13.358557pt;}
.ws192{word-spacing:13.533102pt;}
.wsee{word-spacing:13.684375pt;}
.wsf3{word-spacing:13.858921pt;}
.ws7f{word-spacing:13.998557pt;}
.wsbd{word-spacing:14.266194pt;}
.ws1d1{word-spacing:14.277830pt;}
.ws1c2{word-spacing:14.522194pt;}
.wsb6{word-spacing:14.537012pt;}
.ws151{word-spacing:14.626921pt;}
.ws85{word-spacing:15.150558pt;}
.ws4c{word-spacing:15.162194pt;}
.ws1f6{word-spacing:15.255285pt;}
.ws1db{word-spacing:15.674195pt;}
.ws1f1{word-spacing:15.778922pt;}
.ws157{word-spacing:15.880930pt;}
.ws155{word-spacing:15.883042pt;}
.ws195{word-spacing:16.023286pt;}
.ws144{word-spacing:16.339596pt;}
.ws8c{word-spacing:16.546923pt;}
.wscc{word-spacing:16.741457pt;}
.ws11{word-spacing:17.377059pt;}
.ws119{word-spacing:17.477833pt;}
.ws1f0{word-spacing:17.536015pt;}
.ws1c6{word-spacing:17.779596pt;}
.ws24{word-spacing:17.951975pt;}
.ws1d{word-spacing:18.048015pt;}
.ws45{word-spacing:18.245833pt;}
.wsce{word-spacing:18.993877pt;}
.wsef{word-spacing:19.984124pt;}
.ws1{word-spacing:20.722347pt;}
.ws2{word-spacing:22.252612pt;}
.ws4e{word-spacing:23.016746pt;}
.ws173{word-spacing:23.249474pt;}
.wse7{word-spacing:23.400747pt;}
.wsf0{word-spacing:23.691656pt;}
.ws180{word-spacing:23.703292pt;}
.wsb0{word-spacing:23.849873pt;}
.wsaf{word-spacing:24.676540pt;}
.wse8{word-spacing:26.658931pt;}
.ws1ee{word-spacing:28.753479pt;}
.ws1ef{word-spacing:29.405115pt;}
.wsf1{word-spacing:29.684388pt;}
.wsea{word-spacing:39.109851pt;}
.ws7b{word-spacing:43.416930pt;}
.ws49{word-spacing:43.422263pt;}
.wse6{word-spacing:48.360768pt;}
.wse4{word-spacing:51.793498pt;}
.ws64{word-spacing:51.805867pt;}
.wsf4{word-spacing:55.342592pt;}
.ws19e{word-spacing:62.166867pt;}
.ws14b{word-spacing:62.215198pt;}
.wseb{word-spacing:62.266234pt;}
.ws82{word-spacing:65.160930pt;}
.wsec{word-spacing:70.004422pt;}
.wsf5{word-spacing:70.469877pt;}
.wsfe{word-spacing:70.766263pt;}
.ws4f{word-spacing:70.771596pt;}
.ws14d{word-spacing:409.437432pt;}
.ws107{word-spacing:631.750345pt;}
.wsad{word-spacing:665.961282pt;}
.ws105{word-spacing:668.404921pt;}
.ws72{word-spacing:859.788353pt;}
.ws70{word-spacing:944.326605pt;}
.ws7a{word-spacing:982.587001pt;}
._33{margin-left:-2600.762462pt;}
._40{margin-left:-2599.833017pt;}
._16{margin-left:-2582.839367pt;}
._8c{margin-left:-2581.037396pt;}
._86{margin-left:-2524.767427pt;}
._76{margin-left:-2512.940937pt;}
._43{margin-left:-2496.647477pt;}
._7a{margin-left:-2463.890827pt;}
._48{margin-left:-2441.587815pt;}
._5c{margin-left:-2396.070886pt;}
._81{margin-left:-2333.076880pt;}
._6c{margin-left:-2266.427649pt;}
._35{margin-left:-2211.294888pt;}
._82{margin-left:-2115.594816pt;}
._80{margin-left:-2061.090936pt;}
._85{margin-left:-2041.543117pt;}
._5d{margin-left:-1985.967652pt;}
._72{margin-left:-1981.055702pt;}
._6a{margin-left:-1956.269105pt;}
._88{margin-left:-1912.048288pt;}
._5a{margin-left:-1885.360394pt;}
._66{margin-left:-1830.461888pt;}
._61{margin-left:-1825.121257pt;}
._25{margin-left:-1808.521269pt;}
._68{margin-left:-1806.351008pt;}
._36{margin-left:-1759.461209pt;}
._65{margin-left:-1751.855583pt;}
._3e{margin-left:-1698.293099pt;}
._7b{margin-left:-1692.533094pt;}
._74{margin-left:-1581.021352pt;}
._8b{margin-left:-1567.542453pt;}
._3b{margin-left:-1505.991489pt;}
._2f{margin-left:-1471.666292pt;}
._6b{margin-left:-1406.721855pt;}
._69{margin-left:-1385.152890pt;}
._71{margin-left:-1375.403884pt;}
._5f{margin-left:-1369.954736pt;}
._32{margin-left:-1356.364345pt;}
._67{margin-left:-1349.053600pt;}
._1f{margin-left:-1327.321688pt;}
._64{margin-left:-1294.167295pt;}
._87{margin-left:-1262.087653pt;}
._8f{margin-left:-1231.542173pt;}
._7e{margin-left:-1215.272684pt;}
._2c{margin-left:-1201.690711pt;}
._57{margin-left:-1161.835868pt;}
._38{margin-left:-1151.236828pt;}
._79{margin-left:-1098.124659pt;}
._41{margin-left:-1094.055948pt;}
._8a{margin-left:-1078.814773pt;}
._70{margin-left:-1009.111342pt;}
._2a{margin-left:-965.948279pt;}
._23{margin-left:-947.147529pt;}
._60{margin-left:-938.699188pt;}
._5e{margin-left:-933.600697pt;}
._84{margin-left:-925.495716pt;}
._3d{margin-left:-904.870757pt;}
._59{margin-left:-898.654848pt;}
._5b{margin-left:-852.809846pt;}
._2d{margin-left:-840.536788pt;}
._83{margin-left:-836.359491pt;}
._8e{margin-left:-803.899529pt;}
._1b{margin-left:-792.906324pt;}
._6e{margin-left:-726.342955pt;}
._15{margin-left:-716.221692pt;}
._7d{margin-left:-687.822507pt;}
._6f{margin-left:-658.880562pt;}
._30{margin-left:-592.499712pt;}
._28{margin-left:-548.950903pt;}
._42{margin-left:-479.228177pt;}
._1e{margin-left:-460.966211pt;}
._17{margin-left:-459.207202pt;}
._7c{margin-left:-383.522816pt;}
._39{margin-left:-348.358588pt;}
._45{margin-left:-165.271870pt;}
._89{margin-left:-28.878003pt;}
._77{margin-left:-7.192228pt;}
._3a{margin-left:-6.214067pt;}
._2{margin-left:-5.164646pt;}
._4{margin-left:-3.871601pt;}
._1{margin-left:-2.846279pt;}
._5{margin-left:-1.721549pt;}
._3{width:1.721549pt;}
._0{width:2.846279pt;}
._2b{width:3.822590pt;}
._58{width:5.108385pt;}
._1d{width:6.101529pt;}
._2e{width:7.071604pt;}
._12{width:8.500288pt;}
._73{width:9.658190pt;}
._44{width:12.932399pt;}
._78{width:13.939741pt;}
._b{width:14.941278pt;}
._18{width:16.824927pt;}
._21{width:18.253082pt;}
._e{width:19.742928pt;}
._a{width:21.869888pt;}
._46{width:22.783385pt;}
._9{width:23.814634pt;}
._19{width:24.846142pt;}
._f{width:25.832749pt;}
._27{width:26.750119pt;}
._34{width:27.787025pt;}
._6{width:28.819821pt;}
._14{width:30.175006pt;}
._8{width:31.327774pt;}
._1a{width:32.708577pt;}
._75{width:34.301372pt;}
._20{width:35.459201pt;}
._37{width:36.572487pt;}
._c{width:37.916316pt;}
._7{width:39.106526pt;}
._d{width:40.328605pt;}
._47{width:41.248459pt;}
._1c{width:42.157946pt;}
._6d{width:43.141302pt;}
._3c{width:44.583345pt;}
._29{width:46.463404pt;}
._26{width:47.642721pt;}
._22{width:48.723926pt;}
._13{width:51.200043pt;}
._3f{width:52.213042pt;}
._24{width:53.849329pt;}
._7f{width:62.138234pt;}
._51{width:63.767326pt;}
._31{width:66.909147pt;}
._11{width:71.731200pt;}
._8d{width:73.873737pt;}
._10{width:86.077200pt;}
._53{width:91.287349pt;}
._56{width:103.447359pt;}
._4d{width:110.080092pt;}
._4b{width:129.726287pt;}
._4f{width:152.248405pt;}
._4c{width:173.032871pt;}
._4e{width:190.521706pt;}
._52{width:254.275492pt;}
._55{width:272.116590pt;}
._50{width:282.496870pt;}
._54{width:283.860420pt;}
._49{width:296.832491pt;}
._4a{width:442.705823pt;}
._63{width:636.358355pt;}
._62{width:761.076998pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:56.149333pt;}
.y104{bottom:92.330667pt;}
.y73{bottom:96.000000pt;}
.y1d9{bottom:99.146667pt;}
.y19b{bottom:99.178667pt;}
.y103{bottom:102.308000pt;}
.y263{bottom:103.685333pt;}
.yb9{bottom:105.256000pt;}
.y2f6{bottom:109.589333pt;}
.y24{bottom:109.906667pt;}
.y72{bottom:114.065333pt;}
.y2de{bottom:114.932000pt;}
.y14c{bottom:116.224000pt;}
.y19a{bottom:117.244000pt;}
.y2a3{bottom:117.545333pt;}
.y2ff{bottom:121.544000pt;}
.y262{bottom:121.752000pt;}
.y1fd{bottom:125.456000pt;}
.y102{bottom:127.213333pt;}
.y2f5{bottom:127.654667pt;}
.y1d8{bottom:129.166667pt;}
.y176{bottom:132.130667pt;}
.y93{bottom:132.952000pt;}
.y2dd{bottom:132.997333pt;}
.y14b{bottom:134.289333pt;}
.yb8{bottom:135.277333pt;}
.y199{bottom:135.309333pt;}
.y2a2{bottom:135.610667pt;}
.y92{bottom:136.548000pt;}
.yde{bottom:138.833333pt;}
.y122{bottom:139.609333pt;}
.y261{bottom:139.817333pt;}
.y23{bottom:139.926667pt;}
.y71{bottom:141.525333pt;}
.y1bc{bottom:143.837333pt;}
.y101{bottom:145.278667pt;}
.y2f4{bottom:145.720000pt;}
.y175{bottom:150.197333pt;}
.y14a{bottom:152.354667pt;}
.yb7{bottom:153.342667pt;}
.y198{bottom:153.374667pt;}
.y23f{bottom:153.456000pt;}
.y2a1{bottom:153.676000pt;}
.y1fc{bottom:154.912000pt;}
.y281{bottom:157.152000pt;}
.y121{bottom:157.674667pt;}
.y260{bottom:157.882667pt;}
.y1d7{bottom:159.188000pt;}
.y4a{bottom:162.738667pt;}
.y2dc{bottom:163.017333pt;}
.y100{bottom:163.345333pt;}
.y174{bottom:163.565333pt;}
.y220{bottom:164.601333pt;}
.y173{bottom:168.262667pt;}
.ydd{bottom:168.854667pt;}
.y91{bottom:169.225333pt;}
.y22{bottom:169.948000pt;}
.y149{bottom:170.421333pt;}
.yb6{bottom:171.408000pt;}
.y197{bottom:171.441333pt;}
.y23e{bottom:171.521333pt;}
.y1bb{bottom:173.608000pt;}
.y280{bottom:175.217333pt;}
.y120{bottom:175.741333pt;}
.y25f{bottom:175.948000pt;}
.y1d6{bottom:177.253333pt;}
.y70{bottom:179.908000pt;}
.y2db{bottom:181.084000pt;}
.yff{bottom:181.410667pt;}
.y1fb{bottom:183.520000pt;}
.y2a0{bottom:186.145333pt;}
.y172{bottom:186.328000pt;}
.ydc{bottom:186.920000pt;}
.y2fe{bottom:187.696000pt;}
.y21{bottom:188.013333pt;}
.y148{bottom:188.486667pt;}
.yb5{bottom:189.473333pt;}
.y196{bottom:189.506667pt;}
.y23d{bottom:189.586667pt;}
.y49{bottom:190.197333pt;}
.y27f{bottom:193.282667pt;}
.y11f{bottom:193.806667pt;}
.y25e{bottom:194.013333pt;}
.y1d5{bottom:195.318667pt;}
.y90{bottom:196.685333pt;}
.y6f{bottom:197.973333pt;}
.y2da{bottom:199.149333pt;}
.yfe{bottom:199.476000pt;}
.y1fa{bottom:201.585333pt;}
.y1ba{bottom:203.005333pt;}
.y2bf{bottom:204.393333pt;}
.y2fd{bottom:205.761333pt;}
.y20{bottom:206.078667pt;}
.y147{bottom:206.552000pt;}
.y171{bottom:207.285333pt;}
.yb4{bottom:207.540000pt;}
.y195{bottom:207.572000pt;}
.y23c{bottom:207.652000pt;}
.y21f{bottom:210.284000pt;}
.y27e{bottom:211.348000pt;}
.y11e{bottom:211.872000pt;}
.y170{bottom:211.982667pt;}
.y1d4{bottom:213.384000pt;}
.y6e{bottom:216.038667pt;}
.ydb{bottom:216.941333pt;}
.yfd{bottom:217.541333pt;}
.y1f9{bottom:219.650667pt;}
.y1b9{bottom:221.072000pt;}
.y25d{bottom:221.473333pt;}
.y2be{bottom:222.458667pt;}
.y2f3{bottom:223.826667pt;}
.y146{bottom:224.617333pt;}
.yb3{bottom:225.605333pt;}
.y23b{bottom:225.717333pt;}
.y21e{bottom:228.349333pt;}
.y48{bottom:229.148000pt;}
.y2d9{bottom:229.169333pt;}
.y27d{bottom:229.414667pt;}
.y11d{bottom:229.937333pt;}
.y16f{bottom:230.048000pt;}
.y1d3{bottom:231.449333pt;}
.y29f{bottom:231.974667pt;}
.y1f{bottom:233.538667pt;}
.y6d{bottom:234.104000pt;}
.y194{bottom:235.032000pt;}
.yfc{bottom:235.606667pt;}
.y8f{bottom:235.636000pt;}
.y1f8{bottom:237.717333pt;}
.y1b8{bottom:239.137333pt;}
.y2bd{bottom:240.525333pt;}
.y2f2{bottom:241.893333pt;}
.y145{bottom:242.682667pt;}
.yb2{bottom:243.670667pt;}
.y23a{bottom:243.784000pt;}
.y21d{bottom:246.414667pt;}
.yda{bottom:246.961333pt;}
.y47{bottom:247.213333pt;}
.y2d8{bottom:247.236000pt;}
.y27c{bottom:247.480000pt;}
.y11c{bottom:248.002667pt;}
.y16e{bottom:248.113333pt;}
.y6c{bottom:252.169333pt;}
.y8e{bottom:253.701333pt;}
.y2fc{bottom:253.848000pt;}
.y25c{bottom:254.474667pt;}
.y1f7{bottom:255.782667pt;}
.yfb{bottom:257.652000pt;}
.y1d2{bottom:258.298667pt;}
.y2bc{bottom:258.590667pt;}
.y2f1{bottom:259.958667pt;}
.yb1{bottom:261.736000pt;}
.y239{bottom:261.849333pt;}
.y29e{bottom:261.996000pt;}
.y21c{bottom:264.480000pt;}
.y46{bottom:265.280000pt;}
.y2d7{bottom:265.301333pt;}
.y27b{bottom:265.545333pt;}
.y11b{bottom:266.069333pt;}
.y16d{bottom:266.180000pt;}
.y1e{bottom:266.540000pt;}
.yfa{bottom:267.629333pt;}
.y193{bottom:268.032000pt;}
.y1b7{bottom:268.534667pt;}
.y6b{bottom:270.234667pt;}
.y8d{bottom:271.766667pt;}
.y2fb{bottom:271.913333pt;}
.y144{bottom:271.992000pt;}
.yd9{bottom:273.661333pt;}
.y2bb{bottom:276.656000pt;}
.y143{bottom:276.689333pt;}
.y1d1{bottom:278.117333pt;}
.y238{bottom:279.914667pt;}
.y21b{bottom:282.545333pt;}
.y45{bottom:283.345333pt;}
.y27a{bottom:283.610667pt;}
.y11a{bottom:284.134667pt;}
.y16c{bottom:284.245333pt;}
.y1f6{bottom:284.390667pt;}
.yb0{bottom:289.196000pt;}
.y8c{bottom:289.832000pt;}
.y2f0{bottom:289.978667pt;}
.y29d{bottom:292.016000pt;}
.yf9{bottom:294.561333pt;}
.y2ba{bottom:294.721333pt;}
.y142{bottom:294.754667pt;}
.y2d6{bottom:295.321333pt;}
.y6a{bottom:297.242667pt;}
.y237{bottom:297.980000pt;}
.y1b6{bottom:298.305333pt;}
.y25b{bottom:300.304000pt;}
.y21a{bottom:300.612000pt;}
.y44{bottom:301.410667pt;}
.y279{bottom:301.676000pt;}
.y16b{bottom:302.310667pt;}
.y1d0{bottom:307.794667pt;}
.y8b{bottom:307.897333pt;}
.y2ef{bottom:308.045333pt;}
.yd8{bottom:309.792000pt;}
.y1d{bottom:312.369333pt;}
.yf8{bottom:312.626667pt;}
.y2b9{bottom:312.786667pt;}
.y141{bottom:312.820000pt;}
.y1f5{bottom:313.846667pt;}
.y192{bottom:313.861333pt;}
.y119{bottom:314.154667pt;}
.y236{bottom:316.045333pt;}
.y219{bottom:318.677333pt;}
.y43{bottom:319.476000pt;}
.y278{bottom:319.741333pt;}
.y2fa{bottom:320.000000pt;}
.y16a{bottom:320.376000pt;}
.y29c{bottom:322.037333pt;}
.y2d5{bottom:325.342667pt;}
.y1cf{bottom:325.860000pt;}
.y8a{bottom:325.964000pt;}
.y69{bottom:326.058667pt;}
.y2ee{bottom:326.110667pt;}
.yaf{bottom:327.614667pt;}
.yd7{bottom:327.858667pt;}
.y1b5{bottom:328.077333pt;}
.y25a{bottom:330.324000pt;}
.y1c{bottom:330.434667pt;}
.yf7{bottom:330.692000pt;}
.y191{bottom:331.928000pt;}
.y235{bottom:334.112000pt;}
.y218{bottom:336.742667pt;}
.y42{bottom:337.541333pt;}
.y277{bottom:337.808000pt;}
.y2f9{bottom:338.065333pt;}
.y29b{bottom:340.102667pt;}
.y2b8{bottom:341.160000pt;}
.y140{bottom:342.841333pt;}
.y1f4{bottom:343.302667pt;}
.y2d4{bottom:343.408000pt;}
.y1ce{bottom:343.925333pt;}
.y118{bottom:344.176000pt;}
.yae{bottom:345.680000pt;}
.yd6{bottom:345.924000pt;}
.y169{bottom:347.154667pt;}
.y1b{bottom:348.500000pt;}
.yf6{bottom:348.757333pt;}
.y190{bottom:349.993333pt;}
.y234{bottom:352.177333pt;}
.y89{bottom:352.664000pt;}
.y217{bottom:354.808000pt;}
.y68{bottom:354.874667pt;}
.y41{bottom:355.608000pt;}
.y2ed{bottom:356.130667pt;}
.y168{bottom:357.133333pt;}
.y1b4{bottom:357.474667pt;}
.y29a{bottom:358.168000pt;}
.y259{bottom:360.345333pt;}
.y13f{bottom:360.906667pt;}
.yd5{bottom:363.989333pt;}
.y1a{bottom:366.565333pt;}
.y276{bottom:367.828000pt;}
.y18f{bottom:368.058667pt;}
.y233{bottom:370.242667pt;}
.y2b7{bottom:370.521333pt;}
.y88{bottom:370.729333pt;}
.y1cd{bottom:371.385333pt;}
.y1f3{bottom:371.910667pt;}
.y216{bottom:372.873333pt;}
.y2d3{bottom:373.429333pt;}
.y40{bottom:373.673333pt;}
.y117{bottom:374.197333pt;}
.yf5{bottom:374.686667pt;}
.y1b3{bottom:375.540000pt;}
.yad{bottom:375.701333pt;}
.y299{bottom:376.234667pt;}
.yd4{bottom:382.054667pt;}
.y67{bottom:383.690667pt;}
.y18e{bottom:386.124000pt;}
.y2f8{bottom:386.152000pt;}
.y232{bottom:388.308000pt;}
.y87{bottom:388.794667pt;}
.y1f2{bottom:389.976000pt;}
.y258{bottom:390.366667pt;}
.y13e{bottom:390.926667pt;}
.y215{bottom:390.940000pt;}
.y2d2{bottom:391.494667pt;}
.y3f{bottom:391.738667pt;}
.yf4{bottom:392.752000pt;}
.y1b2{bottom:393.605333pt;}
.y298{bottom:394.300000pt;}
.y167{bottom:394.444000pt;}
.y19{bottom:396.586667pt;}
.y275{bottom:397.849333pt;}
.y2b6{bottom:399.882667pt;}
.yd3{bottom:400.120000pt;}
.y18d{bottom:404.189333pt;}
.y116{bottom:404.217333pt;}
.yac{bottom:405.721333pt;}
.y231{bottom:406.373333pt;}
.y1f1{bottom:408.041333pt;}
.y13d{bottom:408.993333pt;}
.y214{bottom:409.005333pt;}
.y3e{bottom:409.804000pt;}
.y1cc{bottom:410.336000pt;}
.y66{bottom:410.697333pt;}
.y1b1{bottom:411.672000pt;}
.y297{bottom:412.365333pt;}
.y166{bottom:412.510667pt;}
.y18{bottom:412.526667pt;}
.yd2{bottom:418.186667pt;}
.y257{bottom:420.386667pt;}
.yf3{bottom:421.137333pt;}
.y86{bottom:421.472000pt;}
.y2d1{bottom:421.514667pt;}
.y18c{bottom:422.256000pt;}
.y2ec{bottom:422.282667pt;}
.y230{bottom:424.440000pt;}
.y1f0{bottom:426.108000pt;}
.y213{bottom:427.070667pt;}
.y274{bottom:427.869333pt;}
.y1cb{bottom:428.401333pt;}
.y17{bottom:428.466667pt;}
.y65{bottom:428.764000pt;}
.y2b5{bottom:429.244000pt;}
.y1b0{bottom:429.737333pt;}
.y296{bottom:430.430667pt;}
.y115{bottom:434.238667pt;}
.yab{bottom:435.742667pt;}
.yf2{bottom:439.202667pt;}
.y2d0{bottom:439.581333pt;}
.yd1{bottom:439.704000pt;}
.y3d{bottom:439.825333pt;}
.y165{bottom:439.969333pt;}
.y18b{bottom:440.321333pt;}
.y2eb{bottom:440.348000pt;}
.y22f{bottom:442.505333pt;}
.y13c{bottom:442.998667pt;}
.y1ef{bottom:444.173333pt;}
.y16{bottom:444.406667pt;}
.y212{bottom:445.136000pt;}
.y64{bottom:446.829333pt;}
.yce{bottom:447.176000pt;}
.y1af{bottom:447.802667pt;}
.y295{bottom:448.496000pt;}
.y256{bottom:450.408000pt;}
.y2f7{bottom:452.304000pt;}
.y85{bottom:454.149333pt;}
.ycd{bottom:457.153333pt;}
.y2b4{bottom:457.617333pt;}
.y2cf{bottom:457.646667pt;}
.y273{bottom:457.890667pt;}
.y18a{bottom:458.386667pt;}
.y1ca{bottom:458.421333pt;}
.y15{bottom:460.346667pt;}
.y22e{bottom:460.570667pt;}
.y1ee{bottom:462.238667pt;}
.y211{bottom:463.201333pt;}
.y114{bottom:464.258667pt;}
.yf1{bottom:465.132000pt;}
.yaa{bottom:465.764000pt;}
.y294{bottom:466.562667pt;}
.y3c{bottom:469.845333pt;}
.y2ea{bottom:470.369333pt;}
.y13b{bottom:470.458667pt;}
.yd0{bottom:470.972000pt;}
.y63{bottom:474.288000pt;}
.y2b3{bottom:475.682667pt;}
.y272{bottom:475.956000pt;}
.y14{bottom:476.288000pt;}
.y189{bottom:476.452000pt;}
.y1c9{bottom:476.488000pt;}
.ycf{bottom:477.466667pt;}
.y164{bottom:478.592000pt;}
.y22d{bottom:478.636000pt;}
.y1ae{bottom:479.732000pt;}
.y1ed{bottom:480.304000pt;}
.y255{bottom:480.428000pt;}
.y210{bottom:481.266667pt;}
.yf0{bottom:483.197333pt;}
.y84{bottom:484.170667pt;}
.y293{bottom:484.628000pt;}
.y2ce{bottom:487.666667pt;}
.y2e9{bottom:488.434667pt;}
.ycc{bottom:490.340000pt;}
.y13{bottom:492.228000pt;}
.y2b2{bottom:493.748000pt;}
.y271{bottom:494.021333pt;}
.y113{bottom:494.280000pt;}
.ya9{bottom:495.784000pt;}
.y163{bottom:496.657333pt;}
.y22c{bottom:496.701333pt;}
.y20f{bottom:499.333333pt;}
.y3b{bottom:499.866667pt;}
.yef{bottom:501.262667pt;}
.y292{bottom:502.693333pt;}
.y188{bottom:503.912000pt;}
.y2cd{bottom:505.733333pt;}
.y1c8{bottom:506.508000pt;}
.y1ec{bottom:507.764000pt;}
.y12{bottom:508.168000pt;}
.ycb{bottom:508.405333pt;}
.y254{bottom:510.449333pt;}
.y1ad{bottom:511.661333pt;}
.y2b1{bottom:511.813333pt;}
.y270{bottom:512.088000pt;}
.y62{bottom:512.670667pt;}
.ya8{bottom:513.849333pt;}
.y83{bottom:514.190667pt;}
.y162{bottom:514.722667pt;}
.y20e{bottom:517.398667pt;}
.y13a{bottom:517.588000pt;}
.y2e8{bottom:518.456000pt;}
.yee{bottom:519.328000pt;}
.y291{bottom:520.758667pt;}
.y11{bottom:524.108000pt;}
.y112{bottom:524.300000pt;}
.yca{bottom:526.470667pt;}
.y1ac{bottom:529.726667pt;}
.y2b0{bottom:529.880000pt;}
.y3a{bottom:529.886667pt;}
.y26f{bottom:530.153333pt;}
.y61{bottom:530.736000pt;}
.ya7{bottom:531.916000pt;}
.y161{bottom:532.788000pt;}
.y20d{bottom:535.464000pt;}
.y139{bottom:535.653333pt;}
.y22b{bottom:536.045333pt;}
.y2e7{bottom:536.521333pt;}
.y1c7{bottom:536.529333pt;}
.yed{bottom:537.393333pt;}
.y253{bottom:537.908000pt;}
.y2cc{bottom:538.202667pt;}
.y290{bottom:538.824000pt;}
.y10{bottom:540.048000pt;}
.y1eb{bottom:540.765333pt;}
.y111{bottom:542.366667pt;}
.y187{bottom:542.862667pt;}
.y82{bottom:544.212000pt;}
.y2af{bottom:547.945333pt;}
.y26e{bottom:548.218667pt;}
.y60{bottom:548.802667pt;}
.ya6{bottom:549.981333pt;}
.y160{bottom:550.853333pt;}
.y20c{bottom:553.529333pt;}
.y138{bottom:553.718667pt;}
.y22a{bottom:554.110667pt;}
.yec{bottom:555.460000pt;}
.yf{bottom:555.989333pt;}
.yc9{bottom:556.148000pt;}
.y28f{bottom:556.890667pt;}
.y39{bottom:559.908000pt;}
.y186{bottom:560.928000pt;}
.y1ab{bottom:561.656000pt;}
.y2ae{bottom:566.010667pt;}
.yc8{bottom:566.126667pt;}
.y26d{bottom:566.284000pt;}
.y2e6{bottom:566.542667pt;}
.y1c6{bottom:566.549333pt;}
.y5f{bottom:566.868000pt;}
.ya5{bottom:568.046667pt;}
.y15f{bottom:568.920000pt;}
.y20b{bottom:571.594667pt;}
.y81{bottom:571.670667pt;}
.ye{bottom:571.929333pt;}
.y229{bottom:572.176000pt;}
.y137{bottom:572.316000pt;}
.y110{bottom:572.386667pt;}
.yeb{bottom:573.525333pt;}
.y38{bottom:577.973333pt;}
.y185{bottom:578.993333pt;}
.y2cb{bottom:584.032000pt;}
.y2ad{bottom:584.076000pt;}
.y28e{bottom:584.349333pt;}
.y2e5{bottom:584.608000pt;}
.ya4{bottom:586.112000pt;}
.y1ea{bottom:586.328000pt;}
.y15e{bottom:586.985333pt;}
.y252{bottom:587.496000pt;}
.yd{bottom:587.869333pt;}
.y20a{bottom:589.661333pt;}
.y228{bottom:590.241333pt;}
.y136{bottom:590.381333pt;}
.y10f{bottom:590.452000pt;}
.y1aa{bottom:593.585333pt;}
.y37{bottom:596.038667pt;}
.y26c{bottom:596.305333pt;}
.y1c5{bottom:596.570667pt;}
.y184{bottom:597.058667pt;}
.yea{bottom:599.454667pt;}
.y2ca{bottom:602.097333pt;}
.y2ac{bottom:602.141333pt;}
.yc{bottom:603.809333pt;}
.ya3{bottom:604.177333pt;}
.y1e9{bottom:604.393333pt;}
.y5e{bottom:604.602667pt;}
.y251{bottom:605.561333pt;}
.y227{bottom:608.306667pt;}
.y10e{bottom:608.518667pt;}
.yc7{bottom:608.792000pt;}
.y135{bottom:608.978667pt;}
.y80{bottom:610.621333pt;}
.y36{bottom:614.105333pt;}
.y2e4{bottom:614.628000pt;}
.y183{bottom:615.124000pt;}
.y15d{bottom:615.264000pt;}
.y209{bottom:617.120000pt;}
.yb{bottom:619.749333pt;}
.y2c9{bottom:620.162667pt;}
.y2ab{bottom:620.208000pt;}
.ya2{bottom:622.244000pt;}
.y1e8{bottom:622.458667pt;}
.y5d{bottom:622.668000pt;}
.y1a9{bottom:622.982667pt;}
.y28d{bottom:623.300000pt;}
.y250{bottom:623.626667pt;}
.y26b{bottom:626.325333pt;}
.y226{bottom:626.373333pt;}
.y10d{bottom:626.584000pt;}
.y1c4{bottom:626.590667pt;}
.yc6{bottom:626.857333pt;}
.y134{bottom:627.044000pt;}
.ye9{bottom:627.838667pt;}
.y7f{bottom:628.686667pt;}
.y35{bottom:632.170667pt;}
.y2e3{bottom:632.694667pt;}
.y182{bottom:633.189333pt;}
.y15c{bottom:633.329333pt;}
.ya{bottom:635.689333pt;}
.y2c8{bottom:638.228000pt;}
.y2aa{bottom:638.273333pt;}
.y1e7{bottom:640.524000pt;}
.y5c{bottom:640.734667pt;}
.y28c{bottom:641.365333pt;}
.y24f{bottom:641.692000pt;}
.y225{bottom:644.438667pt;}
.y10c{bottom:644.649333pt;}
.yc5{bottom:644.922667pt;}
.y133{bottom:645.109333pt;}
.ye8{bottom:645.904000pt;}
.ya1{bottom:649.702667pt;}
.y208{bottom:650.121333pt;}
.y34{bottom:650.236000pt;}
.y301{bottom:650.760000pt;}
.y15b{bottom:651.394667pt;}
.y1a8{bottom:652.754667pt;}
.y2a9{bottom:656.338667pt;}
.y26a{bottom:656.346667pt;}
.y1c3{bottom:656.612000pt;}
.y1e6{bottom:658.590667pt;}
.y7e{bottom:658.708000pt;}
.y5b{bottom:658.800000pt;}
.y28b{bottom:659.430667pt;}
.y24e{bottom:659.758667pt;}
.y9{bottom:659.932000pt;}
.y224{bottom:662.504000pt;}
.y10b{bottom:662.714667pt;}
.yc4{bottom:662.988000pt;}
.y132{bottom:663.706667pt;}
.y181{bottom:665.868000pt;}
.y300{bottom:668.825333pt;}
.y2c7{bottom:670.698667pt;}
.ye7{bottom:674.288000pt;}
.y2a8{bottom:674.404000pt;}
.y1e5{bottom:676.656000pt;}
.y5a{bottom:676.865333pt;}
.y33{bottom:677.696000pt;}
.y24d{bottom:677.824000pt;}
.y10a{bottom:680.780000pt;}
.yc3{bottom:681.053333pt;}
.y131{bottom:681.772000pt;}
.y15a{bottom:681.981333pt;}
.y1a7{bottom:682.525333pt;}
.y269{bottom:686.366667pt;}
.y1c2{bottom:686.633333pt;}
.ya0{bottom:688.121333pt;}
.y7d{bottom:688.729333pt;}
.y28a{bottom:689.452000pt;}
.ye6{bottom:692.353333pt;}
.y223{bottom:692.441333pt;}
.y2a7{bottom:692.469333pt;}
.y1e4{bottom:694.721333pt;}
.y59{bottom:694.930667pt;}
.y207{bottom:695.804000pt;}
.y180{bottom:695.888000pt;}
.y24c{bottom:695.889333pt;}
.y109{bottom:698.845333pt;}
.yc2{bottom:699.120000pt;}
.y130{bottom:700.369333pt;}
.y9f{bottom:706.188000pt;}
.y289{bottom:707.517333pt;}
.y58{bottom:708.300000pt;}
.y2a6{bottom:710.536000pt;}
.y1a6{bottom:711.922667pt;}
.y159{bottom:712.569333pt;}
.y1e3{bottom:712.786667pt;}
.y57{bottom:712.996000pt;}
.y8{bottom:713.822667pt;}
.y206{bottom:713.869333pt;}
.y24b{bottom:713.954667pt;}
.y1c1{bottom:714.092000pt;}
.y268{bottom:716.388000pt;}
.y2c6{bottom:716.528000pt;}
.y32{bottom:716.645333pt;}
.y108{bottom:716.912000pt;}
.yc1{bottom:717.185333pt;}
.y12f{bottom:718.434667pt;}
.y7c{bottom:718.749333pt;}
.ye5{bottom:720.737333pt;}
.y222{bottom:722.033333pt;}
.y17f{bottom:725.909333pt;}
.y2a5{bottom:728.601333pt;}
.y2e2{bottom:728.866667pt;}
.y1a5{bottom:729.989333pt;}
.y1e2{bottom:730.852000pt;}
.y56{bottom:731.062667pt;}
.y205{bottom:731.934667pt;}
.y24a{bottom:732.020000pt;}
.y7{bottom:732.420000pt;}
.y9e{bottom:733.646667pt;}
.y267{bottom:734.453333pt;}
.y2c5{bottom:734.593333pt;}
.y31{bottom:734.712000pt;}
.y107{bottom:734.977333pt;}
.yc0{bottom:735.250667pt;}
.y12e{bottom:736.500000pt;}
.y288{bottom:737.538667pt;}
.ye4{bottom:738.802667pt;}
.y158{bottom:741.893333pt;}
.y2a4{bottom:746.666667pt;}
.y2e1{bottom:746.932000pt;}
.y1a4{bottom:748.054667pt;}
.y7b{bottom:748.770667pt;}
.y204{bottom:750.001333pt;}
.y249{bottom:750.086667pt;}
.y6{bottom:751.017333pt;}
.y266{bottom:752.518667pt;}
.y30{bottom:752.777333pt;}
.y1c0{bottom:753.042667pt;}
.ybf{bottom:753.316000pt;}
.y221{bottom:755.033333pt;}
.y12d{bottom:755.097333pt;}
.y287{bottom:755.604000pt;}
.y17e{bottom:755.929333pt;}
.y1e1{bottom:758.312000pt;}
.y55{bottom:761.806667pt;}
.ye3{bottom:764.732000pt;}
.y106{bottom:764.997333pt;}
.y1a3{bottom:766.120000pt;}
.y9d{bottom:766.648000pt;}
.y2c4{bottom:767.062667pt;}
.y248{bottom:768.152000pt;}
.y5{bottom:769.613333pt;}
.y265{bottom:770.585333pt;}
.y2f{bottom:770.842667pt;}
.y1bf{bottom:771.108000pt;}
.y157{bottom:771.217333pt;}
.y12c{bottom:773.162667pt;}
.y7a{bottom:776.229333pt;}
.y2e0{bottom:776.953333pt;}
.y203{bottom:779.242667pt;}
.ybe{bottom:780.776000pt;}
.ye2{bottom:782.797333pt;}
.y1a2{bottom:784.185333pt;}
.y286{bottom:785.625333pt;}
.y17d{bottom:785.950667pt;}
.y247{bottom:786.217333pt;}
.y54{bottom:787.418667pt;}
.y4{bottom:788.210667pt;}
.y2e{bottom:788.908000pt;}
.y12b{bottom:791.228000pt;}
.y105{bottom:795.018667pt;}
.y1e0{bottom:796.996000pt;}
.y264{bottom:798.044000pt;}
.y156{bottom:800.541333pt;}
.ye1{bottom:800.864000pt;}
.y1be{bottom:801.129333pt;}
.y1a1{bottom:802.250667pt;}
.y53{bottom:803.474667pt;}
.y285{bottom:803.690667pt;}
.y246{bottom:804.282667pt;}
.y2d{bottom:806.973333pt;}
.y202{bottom:808.952000pt;}
.y79{bottom:809.230667pt;}
.y12a{bottom:809.825333pt;}
.y9c{bottom:812.477333pt;}
.y2c3{bottom:812.892000pt;}
.y2df{bottom:813.084000pt;}
.y17c{bottom:813.409333pt;}
.y1df{bottom:815.061333pt;}
.ye0{bottom:818.929333pt;}
.ybd{bottom:819.194667pt;}
.y1a0{bottom:820.317333pt;}
.y52{bottom:821.540000pt;}
.y245{bottom:822.348000pt;}
.y2c{bottom:825.040000pt;}
.y129{bottom:827.890667pt;}
.y3{bottom:828.625333pt;}
.y155{bottom:828.820000pt;}
.y9b{bottom:830.542667pt;}
.y2c2{bottom:830.957333pt;}
.y1bd{bottom:831.149333pt;}
.y1de{bottom:833.126667pt;}
.y284{bottom:833.710667pt;}
.ydf{bottom:836.994667pt;}
.ybc{bottom:837.260000pt;}
.y19f{bottom:838.382667pt;}
.y201{bottom:838.661333pt;}
.y51{bottom:839.606667pt;}
.y244{bottom:840.414667pt;}
.y2b{bottom:843.105333pt;}
.y9a{bottom:844.180000pt;}
.y128{bottom:845.956000pt;}
.y99{bottom:848.609333pt;}
.y2c1{bottom:849.024000pt;}
.y1dd{bottom:851.193333pt;}
.y153{bottom:851.358667pt;}
.y283{bottom:851.776000pt;}
.y17b{bottom:852.360000pt;}
.y78{bottom:855.060000pt;}
.ybb{bottom:855.325333pt;}
.y50{bottom:857.672000pt;}
.y2{bottom:857.849333pt;}
.y243{bottom:858.480000pt;}
.y150{bottom:858.830667pt;}
.y2a{bottom:861.170667pt;}
.y127{bottom:864.553333pt;}
.y19e{bottom:867.780000pt;}
.y200{bottom:868.370667pt;}
.y154{bottom:868.808000pt;}
.y1dc{bottom:869.258667pt;}
.y17a{bottom:870.426667pt;}
.y4f{bottom:871.309333pt;}
.y77{bottom:873.125333pt;}
.y98{bottom:875.457333pt;}
.y4e{bottom:875.737333pt;}
.y242{bottom:876.545333pt;}
.y14f{bottom:878.648000pt;}
.y29{bottom:879.236000pt;}
.y2c0{bottom:881.493333pt;}
.y282{bottom:881.797333pt;}
.y126{bottom:882.618667pt;}
.y152{bottom:882.626667pt;}
.yba{bottom:885.346667pt;}
.y1ff{bottom:886.436000pt;}
.y151{bottom:886.990667pt;}
.y1{bottom:887.073333pt;}
.y1db{bottom:887.324000pt;}
.y95{bottom:888.421333pt;}
.y97{bottom:890.668000pt;}
.y76{bottom:891.192000pt;}
.y94{bottom:892.122667pt;}
.y4d{bottom:893.802667pt;}
.y241{bottom:894.610667pt;}
.y179{bottom:894.925333pt;}
.y28{bottom:897.301333pt;}
.y19d{bottom:897.550667pt;}
.y14e{bottom:899.862667pt;}
.y178{bottom:900.206667pt;}
.y125{bottom:900.685333pt;}
.y96{bottom:902.949333pt;}
.y177{bottom:904.902667pt;}
.y75{bottom:909.257333pt;}
.y4c{bottom:911.868000pt;}
.y240{bottom:912.676000pt;}
.y27{bottom:915.368000pt;}
.y19c{bottom:915.617333pt;}
.y1da{bottom:915.932000pt;}
.y1fe{bottom:916.145333pt;}
.y14d{bottom:917.928000pt;}
.y124{bottom:919.281333pt;}
.y74{bottom:927.322667pt;}
.y123{bottom:936.616000pt;}
.y4b{bottom:943.421333pt;}
.y26{bottom:945.388000pt;}
.h18{height:2.327275pt;}
.h12{height:15.053733pt;}
.ha{height:21.583121pt;}
.h17{height:31.880400pt;}
.h4{height:39.850400pt;}
.h28{height:40.378215pt;}
.h5{height:43.636400pt;}
.h3{height:44.887791pt;}
.h2{height:45.525402pt;}
.h24{height:45.964608pt;}
.h7{height:47.820800pt;}
.h1e{height:49.196608pt;}
.h21{height:50.609330pt;}
.h20{height:50.614663pt;}
.h14{height:51.034402pt;}
.h8{height:51.039735pt;}
.h19{height:52.989733pt;}
.h1a{height:52.995067pt;}
.hd{height:53.521330pt;}
.hf{height:53.946402pt;}
.h6{height:57.384800pt;}
.he{height:58.020400pt;}
.h22{height:58.229069pt;}
.hb{height:58.234402pt;}
.h29{height:58.345733pt;}
.h9{height:61.348400pt;}
.hc{height:62.420400pt;}
.h23{height:62.425733pt;}
.h1{height:68.861600pt;}
.h1b{height:82.996400pt;}
.h1f{height:83.545733pt;}
.h27{height:83.551067pt;}
.h1c{height:90.399735pt;}
.h15{height:92.355067pt;}
.h1d{height:93.855735pt;}
.h16{height:95.816400pt;}
.h11{height:97.210402pt;}
.h25{height:103.148608pt;}
.h13{height:110.297733pt;}
.h26{height:124.273941pt;}
.h10{height:142.225941pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:70.013333pt;}
.x11{left:74.248000pt;}
.xd{left:96.000000pt;}
.x2{left:102.742667pt;}
.x32{left:108.042667pt;}
.x37{left:113.777333pt;}
.xf{left:116.788000pt;}
.xc{left:118.582667pt;}
.x3c{left:125.898667pt;}
.xb{left:132.364000pt;}
.x28{left:146.390667pt;}
.xa{left:152.289333pt;}
.x1{left:169.717333pt;}
.x2b{left:186.426667pt;}
.x10{left:188.081333pt;}
.x12{left:192.021333pt;}
.x39{left:229.850667pt;}
.x3a{left:249.244000pt;}
.x22{left:257.196000pt;}
.x34{left:258.470667pt;}
.x35{left:270.513333pt;}
.x29{left:275.716000pt;}
.x38{left:281.016000pt;}
.x21{left:285.110667pt;}
.x17{left:286.429333pt;}
.x3{left:287.880000pt;}
.x2c{left:294.598667pt;}
.x3d{left:296.696000pt;}
.x18{left:298.472000pt;}
.x1c{left:309.780000pt;}
.x8{left:312.141333pt;}
.x6{left:320.814667pt;}
.x7{left:324.722667pt;}
.x26{left:329.412000pt;}
.x5{left:330.445333pt;}
.x14{left:337.370667pt;}
.x30{left:345.108000pt;}
.x31{left:357.150667pt;}
.x13{left:359.610667pt;}
.x15{left:364.277333pt;}
.x1d{left:366.890667pt;}
.x2d{left:368.374667pt;}
.x1a{left:373.060000pt;}
.x23{left:374.749333pt;}
.x4{left:376.570667pt;}
.x9{left:378.776000pt;}
.x19{left:388.413333pt;}
.x27{left:391.066667pt;}
.x33{left:400.726667pt;}
.xe{left:404.364000pt;}
.x24{left:421.381333pt;}
.x2e{left:427.286667pt;}
.x16{left:438.234667pt;}
.x25{left:441.482667pt;}
.x1e{left:464.657333pt;}
.x1f{left:472.640000pt;}
.x2a{left:480.633333pt;}
.x20{left:501.634667pt;}
.x36{left:506.841333pt;}
.x1b{left:575.505333pt;}
.x2f{left:694.141333pt;}
}




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