
    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_e733f3de5a5ff32636e33028.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121582;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_4917f98d8ea8c15c44c148ef.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.885000;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_a6e9f14cd34f48fad405c3f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_20863c83eccfab29c16d1d57.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.135000;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_c24192e7cf00517d5a0fde23.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_542b7bdd5336b2787aa87fa5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.119286;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_88920a196baacc85002025f2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.138184;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_d8c3930ce883303e94761e97.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_ac91d8029e30c6f0872cd5de.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.705078;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_582763715f36f53e94fd1206.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.075195;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_dfc135b8a29f0aaeb7766be8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.915000;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_3ebf157b9dbad9e968723a0f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_432e669b4ca83bbaf25a055f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.929133;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;}
.m1{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.350000px;}
.v2{vertical-align:-15.750000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.490000px;}
.v1{vertical-align:19.284000px;}
.ls9b{letter-spacing:-1.170000px;}
.ls42{letter-spacing:-1.050000px;}
.ls4{letter-spacing:-0.840000px;}
.ls1c{letter-spacing:-0.645000px;}
.ls91{letter-spacing:-0.585000px;}
.ls45{letter-spacing:-0.580500px;}
.ls41{letter-spacing:-0.546000px;}
.ls3b{letter-spacing:-0.525000px;}
.ls4d{letter-spacing:-0.516000px;}
.ls5{letter-spacing:-0.480000px;}
.ls1d{letter-spacing:-0.451500px;}
.ls1f{letter-spacing:-0.419250px;}
.ls4e{letter-spacing:-0.387000px;}
.ls3a{letter-spacing:-0.341250px;}
.ls1e{letter-spacing:-0.293475px;}
.ls20{letter-spacing:-0.292500px;}
.ls4c{letter-spacing:-0.258000px;}
.ls2a{letter-spacing:-0.234000px;}
.ls21{letter-spacing:-0.190125px;}
.ls63{letter-spacing:-0.117000px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000300px;}
.ls98{letter-spacing:0.000900px;}
.ls97{letter-spacing:0.007650px;}
.ls73{letter-spacing:0.008400px;}
.ls62{letter-spacing:0.009000px;}
.ls54{letter-spacing:0.009300px;}
.ls50{letter-spacing:0.009600px;}
.ls95{letter-spacing:0.009900px;}
.ls6c{letter-spacing:0.010200px;}
.ls57{letter-spacing:0.019500px;}
.ls55{letter-spacing:0.028500px;}
.ls56{letter-spacing:0.029400px;}
.ls4f{letter-spacing:0.041925px;}
.ls4a{letter-spacing:0.058500px;}
.ls94{letter-spacing:0.060600px;}
.ls10{letter-spacing:0.064500px;}
.ls93{letter-spacing:0.070500px;}
.ls16{letter-spacing:0.083850px;}
.ls43{letter-spacing:0.102375px;}
.ls48{letter-spacing:0.105000px;}
.lsac{letter-spacing:0.107700px;}
.lsab{letter-spacing:0.108000px;}
.ls29{letter-spacing:0.117000px;}
.lsaa{letter-spacing:0.117600px;}
.ls12{letter-spacing:0.120300px;}
.ls40{letter-spacing:0.125775px;}
.ls3f{letter-spacing:0.126000px;}
.lsf{letter-spacing:0.129000px;}
.ls30{letter-spacing:0.136500px;}
.ls26{letter-spacing:0.157500px;}
.ls2c{letter-spacing:0.167700px;}
.ls9f{letter-spacing:0.169800px;}
.ls27{letter-spacing:0.175500px;}
.ls9e{letter-spacing:0.176850px;}
.ls9c{letter-spacing:0.178200px;}
.ls2e{letter-spacing:0.178500px;}
.ls17{letter-spacing:0.193500px;}
.lsb{letter-spacing:0.209100px;}
.ls2f{letter-spacing:0.209625px;}
.lsa{letter-spacing:0.209700px;}
.ls13{letter-spacing:0.210000px;}
.ls8c{letter-spacing:0.216000px;}
.ls8b{letter-spacing:0.216900px;}
.ls8d{letter-spacing:0.225000px;}
.lsa9{letter-spacing:0.227400px;}
.ls28{letter-spacing:0.234000px;}
.ls7f{letter-spacing:0.237300px;}
.lsa8{letter-spacing:0.237600px;}
.ls3c{letter-spacing:0.238875px;}
.ls65{letter-spacing:0.243300px;}
.ls66{letter-spacing:0.243600px;}
.ls80{letter-spacing:0.245700px;}
.ls7e{letter-spacing:0.246600px;}
.ls67{letter-spacing:0.253800px;}
.ls14{letter-spacing:0.258000px;}
.ls9a{letter-spacing:0.261000px;}
.lsad{letter-spacing:0.262500px;}
.ls99{letter-spacing:0.270000px;}
.ls6b{letter-spacing:0.283200px;}
.ls7c{letter-spacing:0.292500px;}
.lsa4{letter-spacing:0.292800px;}
.ls46{letter-spacing:0.293475px;}
.lsa3{letter-spacing:0.301800px;}
.ls9{letter-spacing:0.322500px;}
.ls76{letter-spacing:0.335100px;}
.ls1b{letter-spacing:0.335400px;}
.ls24{letter-spacing:0.341250px;}
.ls7b{letter-spacing:0.342600px;}
.ls74{letter-spacing:0.345000px;}
.ls75{letter-spacing:0.351000px;}
.ls7a{letter-spacing:0.352200px;}
.ls3d{letter-spacing:0.367500px;}
.ls84{letter-spacing:0.369300px;}
.ls83{letter-spacing:0.369900px;}
.ls35{letter-spacing:0.375375px;}
.ls82{letter-spacing:0.381600px;}
.lsc{letter-spacing:0.387000px;}
.ls81{letter-spacing:0.391200px;}
.ls23{letter-spacing:0.409500px;}
.ls88{letter-spacing:0.419400px;}
.ls87{letter-spacing:0.429000px;}
.ls5e{letter-spacing:0.439500px;}
.ls5f{letter-spacing:0.439800px;}
.ls78{letter-spacing:0.441600px;}
.ls2d{letter-spacing:0.443625px;}
.ls61{letter-spacing:0.448800px;}
.ls60{letter-spacing:0.450000px;}
.ls79{letter-spacing:0.450600px;}
.ls77{letter-spacing:0.451200px;}
.ls2b{letter-spacing:0.451500px;}
.ls64{letter-spacing:0.468000px;}
.ls86{letter-spacing:0.472200px;}
.ls85{letter-spacing:0.481800px;}
.ls6{letter-spacing:0.516000px;}
.ls8a{letter-spacing:0.519600px;}
.ls89{letter-spacing:0.519900px;}
.ls19{letter-spacing:0.525000px;}
.ls92{letter-spacing:0.526500px;}
.ls34{letter-spacing:0.577500px;}
.lsd{letter-spacing:0.580500px;}
.ls90{letter-spacing:0.584700px;}
.ls7d{letter-spacing:0.585000px;}
.ls8f{letter-spacing:0.585600px;}
.ls8e{letter-spacing:0.585900px;}
.ls5b{letter-spacing:0.626100px;}
.ls5c{letter-spacing:0.627000px;}
.ls39{letter-spacing:0.630000px;}
.ls5d{letter-spacing:0.643500px;}
.ls18{letter-spacing:0.645000px;}
.ls1a{letter-spacing:0.682500px;}
.ls59{letter-spacing:0.689100px;}
.ls5a{letter-spacing:0.699600px;}
.ls58{letter-spacing:0.702000px;}
.ls8{letter-spacing:0.709500px;}
.ls32{letter-spacing:0.774000px;}
.ls53{letter-spacing:0.819000px;}
.ls52{letter-spacing:0.831600px;}
.ls37{letter-spacing:0.838500px;}
.ls51{letter-spacing:0.841200px;}
.ls68{letter-spacing:0.863700px;}
.ls69{letter-spacing:0.864600px;}
.ls6a{letter-spacing:0.877500px;}
.ls4b{letter-spacing:0.903000px;}
.lse{letter-spacing:0.967500px;}
.ls31{letter-spacing:1.032000px;}
.ls44{letter-spacing:1.096500px;}
.lsaf{letter-spacing:1.155000px;}
.ls7{letter-spacing:1.225500px;}
.ls49{letter-spacing:1.287000px;}
.ls6e{letter-spacing:1.326600px;}
.ls6d{letter-spacing:1.336800px;}
.ls6f{letter-spacing:1.345500px;}
.lsa6{letter-spacing:1.388400px;}
.lsa5{letter-spacing:1.397400px;}
.lsa7{letter-spacing:1.404000px;}
.ls71{letter-spacing:1.689000px;}
.ls72{letter-spacing:1.696500px;}
.ls70{letter-spacing:1.699200px;}
.ls96{letter-spacing:1.727400px;}
.ls47{letter-spacing:1.806000px;}
.lsa1{letter-spacing:2.095800px;}
.lsa0{letter-spacing:2.104200px;}
.lsa2{letter-spacing:2.106000px;}
.ls22{letter-spacing:3.255000px;}
.lsae{letter-spacing:3.622500px;}
.ls36{letter-spacing:4.257000px;}
.ls9d{letter-spacing:7.482600px;}
.ls25{letter-spacing:8.256000px;}
.ls0{letter-spacing:10.836000px;}
.ls1{letter-spacing:11.718000px;}
.ls2{letter-spacing:12.510000px;}
.ls38{letter-spacing:12.600000px;}
.ls15{letter-spacing:13.125000px;}
.ls3e{letter-spacing:13.282500px;}
.ls33{letter-spacing:13.702500px;}
.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;}
}
.wse8{word-spacing:-16.705500px;}
.ws3b{word-spacing:-16.125000px;}
.ws98{word-spacing:-14.625000px;}
.wsde{word-spacing:-13.303500px;}
.wsfd{word-spacing:-13.251000px;}
.wsf8{word-spacing:-13.125000px;}
.ws3a{word-spacing:-12.750000px;}
.ws1b{word-spacing:-12.093750px;}
.ws12d{word-spacing:-11.214450px;}
.ws11a{word-spacing:-10.968750px;}
.ws78{word-spacing:-10.816650px;}
.ws107{word-spacing:-10.774725px;}
.wsdc{word-spacing:-10.690875px;}
.wsd2{word-spacing:-10.648950px;}
.wsfb{word-spacing:-10.607025px;}
.ws67{word-spacing:-10.565100px;}
.ws117{word-spacing:-10.523175px;}
.ws54{word-spacing:-10.481250px;}
.ws79{word-spacing:-10.187775px;}
.ws109{word-spacing:-10.062000px;}
.ws1d{word-spacing:-9.843750px;}
.wsd3{word-spacing:-8.974875px;}
.wsf1{word-spacing:-8.940750px;}
.wse9{word-spacing:-8.906625px;}
.ws99{word-spacing:-8.872500px;}
.wsf7{word-spacing:-8.770125px;}
.wsdd{word-spacing:-8.667750px;}
.wsfc{word-spacing:-8.633625px;}
.ws1c{word-spacing:-8.531250px;}
.wsf0{word-spacing:-8.190000px;}
.wsf6{word-spacing:-0.630000px;}
.ws12b{word-spacing:-0.585000px;}
.wseb{word-spacing:-0.577500px;}
.ws28{word-spacing:-0.322500px;}
.wse6{word-spacing:-0.209625px;}
.ws3{word-spacing:-0.084000px;}
.ws1{word-spacing:0.000000px;}
.ws56{word-spacing:0.064500px;}
.ws36{word-spacing:0.105000px;}
.wsa3{word-spacing:0.117000px;}
.wsb3{word-spacing:0.129000px;}
.wsc{word-spacing:0.144000px;}
.ws96{word-spacing:0.190125px;}
.ws5e{word-spacing:0.193500px;}
.ws10c{word-spacing:0.210000px;}
.ws10{word-spacing:0.240000px;}
.wse2{word-spacing:0.258000px;}
.ws9e{word-spacing:0.292500px;}
.wsc6{word-spacing:0.315000px;}
.wsca{word-spacing:0.322500px;}
.ws34{word-spacing:0.367500px;}
.ws81{word-spacing:0.387000px;}
.ws125{word-spacing:0.409500px;}
.ws80{word-spacing:0.419250px;}
.ws48{word-spacing:0.451500px;}
.wsa{word-spacing:0.480000px;}
.wse5{word-spacing:0.516000px;}
.wsf3{word-spacing:0.525000px;}
.ws13c{word-spacing:0.526500px;}
.ws101{word-spacing:0.546000px;}
.ws6d{word-spacing:0.580500px;}
.ws123{word-spacing:0.585000px;}
.ws95{word-spacing:0.643500px;}
.ws42{word-spacing:0.645000px;}
.ws13{word-spacing:0.672000px;}
.wsb9{word-spacing:0.682500px;}
.ws13a{word-spacing:0.702000px;}
.ws77{word-spacing:0.735000px;}
.ws8a{word-spacing:0.774000px;}
.wsd9{word-spacing:0.787500px;}
.ws9b{word-spacing:0.838500px;}
.ws4{word-spacing:0.840000px;}
.ws6{word-spacing:0.882000px;}
.wsaa{word-spacing:0.892500px;}
.ws112{word-spacing:0.903000px;}
.ws11f{word-spacing:0.936000px;}
.ws7c{word-spacing:0.967500px;}
.ws8b{word-spacing:1.032000px;}
.wsf4{word-spacing:1.050000px;}
.ws90{word-spacing:1.053000px;}
.ws6b{word-spacing:1.096500px;}
.ws9d{word-spacing:1.111500px;}
.ws35{word-spacing:1.155000px;}
.ws5c{word-spacing:1.161000px;}
.wse4{word-spacing:1.207500px;}
.wsaf{word-spacing:1.225500px;}
.wsee{word-spacing:1.260000px;}
.ws11c{word-spacing:1.287000px;}
.wsd7{word-spacing:1.290000px;}
.ws88{word-spacing:1.312500px;}
.ws130{word-spacing:1.345500px;}
.ws47{word-spacing:1.354500px;}
.ws50{word-spacing:1.365000px;}
.ws94{word-spacing:1.404000px;}
.ws26{word-spacing:1.419000px;}
.ws9{word-spacing:1.440000px;}
.ws92{word-spacing:1.462500px;}
.wsd6{word-spacing:1.483500px;}
.ws11{word-spacing:1.488000px;}
.wsc8{word-spacing:1.521000px;}
.wsae{word-spacing:1.522500px;}
.ws3d{word-spacing:1.548000px;}
.ws132{word-spacing:1.579500px;}
.ws24{word-spacing:1.612500px;}
.ws40{word-spacing:1.677000px;}
.ws51{word-spacing:1.680000px;}
.ws10e{word-spacing:1.696500px;}
.ws7e{word-spacing:1.741500px;}
.ws11e{word-spacing:1.755000px;}
.ws15{word-spacing:1.776000px;}
.ws49{word-spacing:1.806000px;}
.wsef{word-spacing:1.837500px;}
.ws82{word-spacing:1.870500px;}
.ws18{word-spacing:1.872000px;}
.ws37{word-spacing:1.890000px;}
.ws129{word-spacing:1.930500px;}
.wsea{word-spacing:1.935000px;}
.ws102{word-spacing:1.942500px;}
.wsd{word-spacing:1.968000px;}
.ws12c{word-spacing:1.989000px;}
.ws104{word-spacing:1.995000px;}
.ws59{word-spacing:1.999500px;}
.ws14{word-spacing:2.016000px;}
.ws127{word-spacing:2.047500px;}
.ws7d{word-spacing:2.064000px;}
.wscf{word-spacing:2.106000px;}
.ws20{word-spacing:2.128500px;}
.wsc9{word-spacing:2.164500px;}
.ws9a{word-spacing:2.193000px;}
.ws13d{word-spacing:2.223000px;}
.ws32{word-spacing:2.257500px;}
.ws1a{word-spacing:2.304000px;}
.wsf5{word-spacing:2.310000px;}
.ws100{word-spacing:2.322000px;}
.ws16{word-spacing:2.352000px;}
.ws116{word-spacing:2.362500px;}
.wsd0{word-spacing:2.386500px;}
.wsa5{word-spacing:2.398500px;}
.wsab{word-spacing:2.415000px;}
.ws64{word-spacing:2.451000px;}
.ws8f{word-spacing:2.457000px;}
.wsa9{word-spacing:2.515500px;}
.ws83{word-spacing:2.572500px;}
.ws11d{word-spacing:2.574000px;}
.ws10f{word-spacing:2.632500px;}
.wse{word-spacing:2.640000px;}
.wsd4{word-spacing:2.644500px;}
.ws5{word-spacing:2.646000px;}
.wsfa{word-spacing:2.677500px;}
.wsa0{word-spacing:2.691000px;}
.ws4b{word-spacing:2.709000px;}
.ws38{word-spacing:2.730000px;}
.ws72{word-spacing:2.773500px;}
.ws126{word-spacing:2.808000px;}
.ws8d{word-spacing:2.838000px;}
.wsc0{word-spacing:2.866500px;}
.ws17{word-spacing:2.880000px;}
.ws4d{word-spacing:2.902500px;}
.ws9c{word-spacing:2.925000px;}
.ws45{word-spacing:2.967000px;}
.wsc4{word-spacing:2.983500px;}
.ws19{word-spacing:3.024000px;}
.wsd1{word-spacing:3.031500px;}
.ws39{word-spacing:3.045000px;}
.wsf9{word-spacing:3.096000px;}
.ws142{word-spacing:3.097500px;}
.ws11b{word-spacing:3.100500px;}
.wsc7{word-spacing:3.159000px;}
.ws55{word-spacing:3.160500px;}
.ws12{word-spacing:3.216000px;}
.wsa4{word-spacing:3.217500px;}
.ws62{word-spacing:3.225000px;}
.wsad{word-spacing:3.255000px;}
.wsf{word-spacing:3.264000px;}
.wsa7{word-spacing:3.276000px;}
.wsb8{word-spacing:3.289500px;}
.wsb{word-spacing:3.312000px;}
.ws124{word-spacing:3.334500px;}
.ws7f{word-spacing:3.354000px;}
.ws143{word-spacing:3.360000px;}
.wsc1{word-spacing:3.393000px;}
.ws4e{word-spacing:3.412500px;}
.ws44{word-spacing:3.418500px;}
.wsed{word-spacing:3.465000px;}
.ws5a{word-spacing:3.483000px;}
.wsbf{word-spacing:3.510000px;}
.wsb6{word-spacing:3.547500px;}
.ws133{word-spacing:3.568500px;}
.ws4c{word-spacing:3.612000px;}
.ws52{word-spacing:3.622500px;}
.wsd8{word-spacing:3.675000px;}
.wse3{word-spacing:3.676500px;}
.ws93{word-spacing:3.685500px;}
.ws2{word-spacing:3.696000px;}
.ws105{word-spacing:3.727500px;}
.wsfe{word-spacing:3.741000px;}
.wscb{word-spacing:3.744000px;}
.ws91{word-spacing:3.802500px;}
.ws2d{word-spacing:3.805500px;}
.ws8c{word-spacing:3.870000px;}
.wsbc{word-spacing:3.885000px;}
.ws122{word-spacing:3.919500px;}
.wse1{word-spacing:3.934500px;}
.wscd{word-spacing:3.978000px;}
.ws2f{word-spacing:3.999000px;}
.wsc2{word-spacing:4.036500px;}
.ws75{word-spacing:4.063500px;}
.ws30{word-spacing:4.128000px;}
.wsdb{word-spacing:4.147500px;}
.ws70{word-spacing:4.192500px;}
.ws134{word-spacing:4.212000px;}
.ws4f{word-spacing:4.252500px;}
.wsf2{word-spacing:4.257000px;}
.wsb0{word-spacing:4.321500px;}
.ws53{word-spacing:4.357500px;}
.ws6e{word-spacing:4.386000px;}
.ws120{word-spacing:4.387500px;}
.ws12f{word-spacing:4.446000px;}
.ws5d{word-spacing:4.450500px;}
.ws65{word-spacing:4.515000px;}
.wsa2{word-spacing:4.563000px;}
.wsb5{word-spacing:4.579500px;}
.wsc3{word-spacing:4.621500px;}
.wsb1{word-spacing:4.644000px;}
.ws137{word-spacing:4.680000px;}
.ws89{word-spacing:4.708500px;}
.ws10d{word-spacing:4.738500px;}
.ws41{word-spacing:4.773000px;}
.ws12e{word-spacing:4.797000px;}
.wsda{word-spacing:4.830000px;}
.ws5f{word-spacing:4.837500px;}
.ws86{word-spacing:4.882500px;}
.ws46{word-spacing:4.902000px;}
.wsbe{word-spacing:4.914000px;}
.ws103{word-spacing:4.935000px;}
.ws111{word-spacing:4.966500px;}
.wse7{word-spacing:5.031000px;}
.ws97{word-spacing:5.040000px;}
.ws106{word-spacing:5.092500px;}
.ws71{word-spacing:5.095500px;}
.wsec{word-spacing:5.145000px;}
.ws9f{word-spacing:5.148000px;}
.ws2c{word-spacing:5.160000px;}
.wsbd{word-spacing:5.206500px;}
.ws25{word-spacing:5.224500px;}
.wsce{word-spacing:5.265000px;}
.wsff{word-spacing:5.289000px;}
.wsa1{word-spacing:5.323500px;}
.ws114{word-spacing:5.353500px;}
.ws128{word-spacing:5.382000px;}
.ws84{word-spacing:5.407500px;}
.ws6a{word-spacing:5.418000px;}
.ws140{word-spacing:5.460000px;}
.ws61{word-spacing:5.482500px;}
.wsbb{word-spacing:5.512500px;}
.ws5b{word-spacing:5.547000px;}
.wsac{word-spacing:5.565000px;}
.ws57{word-spacing:5.611500px;}
.ws113{word-spacing:5.617500px;}
.wsa6{word-spacing:5.674500px;}
.ws76{word-spacing:5.676000px;}
.ws85{word-spacing:5.722500px;}
.ws138{word-spacing:5.733000px;}
.ws6f{word-spacing:5.740500px;}
.ws135{word-spacing:5.791500px;}
.ws69{word-spacing:5.805000px;}
.wsc5{word-spacing:5.827500px;}
.ws12a{word-spacing:5.850000px;}
.ws7b{word-spacing:5.869500px;}
.ws108{word-spacing:5.932500px;}
.ws63{word-spacing:5.934000px;}
.wsba{word-spacing:5.985000px;}
.wsd5{word-spacing:5.998500px;}
.ws110{word-spacing:6.025500px;}
.wsb4{word-spacing:6.063000px;}
.ws115{word-spacing:6.127500px;}
.ws13e{word-spacing:6.142500px;}
.ws21{word-spacing:6.192000px;}
.ws119{word-spacing:6.195000px;}
.ws43{word-spacing:6.256500px;}
.ws10b{word-spacing:6.321000px;}
.ws3f{word-spacing:6.385500px;}
.ws58{word-spacing:6.450000px;}
.ws6c{word-spacing:6.514500px;}
.ws66{word-spacing:6.562500px;}
.ws68{word-spacing:6.579000px;}
.wsb7{word-spacing:6.643500px;}
.ws136{word-spacing:6.669000px;}
.ws27{word-spacing:6.708000px;}
.ws22{word-spacing:6.772500px;}
.wscc{word-spacing:6.786000px;}
.ws60{word-spacing:6.837000px;}
.ws131{word-spacing:6.844500px;}
.ws2a{word-spacing:6.901500px;}
.ws13b{word-spacing:6.961500px;}
.ws33{word-spacing:6.966000px;}
.wsdf{word-spacing:7.030500px;}
.ws139{word-spacing:7.078500px;}
.ws74{word-spacing:7.159500px;}
.ws8e{word-spacing:7.195500px;}
.ws31{word-spacing:7.224000px;}
.ws121{word-spacing:7.254000px;}
.wse0{word-spacing:7.288500px;}
.ws13f{word-spacing:7.297500px;}
.wsa8{word-spacing:7.312500px;}
.ws3e{word-spacing:7.353000px;}
.ws2e{word-spacing:7.417500px;}
.wsb2{word-spacing:7.482000px;}
.ws4a{word-spacing:7.546500px;}
.ws23{word-spacing:7.611000px;}
.ws2b{word-spacing:7.675500px;}
.ws7a{word-spacing:7.804500px;}
.ws73{word-spacing:7.869000px;}
.ws10a{word-spacing:7.933500px;}
.ws29{word-spacing:7.998000px;}
.ws1f{word-spacing:8.062500px;}
.ws118{word-spacing:8.127000px;}
.ws8{word-spacing:10.656000px;}
.ws141{word-spacing:12.127500px;}
.ws1e{word-spacing:12.750000px;}
.ws87{word-spacing:13.125000px;}
.ws7{word-spacing:13.344000px;}
.ws3c{word-spacing:1149.576000px;}
.ws0{word-spacing:1818.756000px;}
._c{margin-left:-26.251500px;}
._a{margin-left:-13.177500px;}
._2{margin-left:-9.324000px;}
._f{margin-left:-3.622500px;}
._e{margin-left:-2.133075px;}
._5{margin-left:-1.032000px;}
._6{width:1.122300px;}
._d{width:2.144625px;}
._b{width:3.255000px;}
._9{width:4.744500px;}
._8{width:6.562500px;}
._0{width:7.980000px;}
._7{width:9.712500px;}
._1{width:11.676000px;}
._3{width:13.344000px;}
._4{width:869.585400px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:34.125000px;}
.fse{font-size:38.025000px;}
.fsc{font-size:39.375000px;}
.fs9{font-size:41.925000px;}
.fs2{font-size:42.000000px;}
.fsf{font-size:43.875000px;}
.fs3{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs8{font-size:48.375000px;}
.fs6{font-size:51.000000px;}
.fsb{font-size:52.500000px;}
.fs0{font-size:57.000000px;}
.fsd{font-size:58.500000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:64.500000px;}
.fs1{font-size:171.052800px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.647450px;}
.yb{bottom:98.452050px;}
.ya{bottom:110.453550px;}
.y7a{bottom:124.554525px;}
.y1a3{bottom:124.565775px;}
.ye4{bottom:124.571400px;}
.ycd{bottom:124.577025px;}
.y285{bottom:124.585500px;}
.y22e{bottom:125.003700px;}
.y21d{bottom:125.061450px;}
.y2ae{bottom:125.656200px;}
.y2d8{bottom:125.657700px;}
.y9{bottom:126.703950px;}
.y56{bottom:128.520150px;}
.y79{bottom:138.952650px;}
.y1d7{bottom:138.958275px;}
.y1a2{bottom:138.963900px;}
.y94{bottom:138.969525px;}
.y8{bottom:140.826450px;}
.y284{bottom:141.287250px;}
.y2ad{bottom:141.977700px;}
.y2d7{bottom:141.979200px;}
.y22d{bottom:142.596075px;}
.y21c{bottom:142.653825px;}
.y55{bottom:142.912650px;}
.y54{bottom:153.333900px;}
.y78{bottom:153.350775px;}
.y12b{bottom:153.356400px;}
.ycc{bottom:153.362025px;}
.y7{bottom:157.080450px;}
.y93{bottom:157.305150px;}
.y283{bottom:157.994550px;}
.y2d6{bottom:158.297700px;}
.y2ac{bottom:158.299200px;}
.y22c{bottom:160.188450px;}
.y21b{bottom:160.246200px;}
.yf9{bottom:167.726400px;}
.y53{bottom:167.732025px;}
.y77{bottom:167.748900px;}
.y12a{bottom:167.754525px;}
.y6{bottom:168.262950px;}
.y92{bottom:171.697650px;}
.y2ab{bottom:174.617700px;}
.y2d5{bottom:174.619200px;}
.y282{bottom:174.699150px;}
.y22b{bottom:177.780825px;}
.y21a{bottom:177.838575px;}
.y5{bottom:179.445450px;}
.yf8{bottom:182.124525px;}
.y52{bottom:182.130150px;}
.y1bc{bottom:182.141400px;}
.y76{bottom:182.147025px;}
.y25e{bottom:182.527950px;}
.ycb{bottom:186.090150px;}
.y2d4{bottom:190.937850px;}
.y2aa{bottom:190.939200px;}
.y281{bottom:191.400900px;}
.y4{bottom:194.877000px;}
.y14d{bottom:195.139275px;}
.y22a{bottom:195.398100px;}
.y24e{bottom:195.402075px;}
.y219{bottom:195.430950px;}
.y18d{bottom:195.435075px;}
.y210{bottom:195.435450px;}
.y244{bottom:195.505200px;}
.yf7{bottom:196.522650px;}
.y51{bottom:196.528275px;}
.y75{bottom:196.539525px;}
.y25d{bottom:198.849450px;}
.yca{bottom:200.482650px;}
.y3{bottom:206.059500px;}
.y2a9{bottom:207.257850px;}
.y2d3{bottom:207.259350px;}
.y280{bottom:208.110900px;}
.ye3{bottom:209.875650px;}
.yc9{bottom:210.903900px;}
.yf6{bottom:210.920775px;}
.y50{bottom:210.926400px;}
.y1a1{bottom:210.932025px;}
.y14c{bottom:212.731650px;}
.y229{bottom:212.990475px;}
.y24d{bottom:212.994450px;}
.y91{bottom:212.995875px;}
.yb1{bottom:212.998575px;}
.y218{bottom:213.023325px;}
.y18c{bottom:213.027450px;}
.y20f{bottom:213.027825px;}
.y243{bottom:213.097575px;}
.y1fe{bottom:214.233525px;}
.y74{bottom:214.875150px;}
.y25c{bottom:215.170950px;}
.y2de{bottom:223.576200px;}
.y2d2{bottom:223.577700px;}
.y2a8{bottom:223.579350px;}
.y27f{bottom:224.812650px;}
.yc8{bottom:225.302025px;}
.yf5{bottom:225.318900px;}
.y4f{bottom:225.324525px;}
.ye2{bottom:225.860775px;}
.y73{bottom:229.267650px;}
.y14b{bottom:230.324025px;}
.y228{bottom:230.582850px;}
.y24c{bottom:230.586825px;}
.y90{bottom:230.588250px;}
.yb0{bottom:230.590950px;}
.y217{bottom:230.615700px;}
.y18b{bottom:230.619825px;}
.y20e{bottom:230.620200px;}
.y129{bottom:230.683500px;}
.y242{bottom:230.689950px;}
.y1fd{bottom:231.825900px;}
.yc7{bottom:239.700150px;}
.y4e{bottom:239.717025px;}
.y2a7{bottom:239.897700px;}
.y2c9{bottom:239.899200px;}
.y27e{bottom:241.514400px;}
.ye1{bottom:241.845900px;}
.y10e{bottom:243.660150px;}
.y128{bottom:246.668625px;}
.y14a{bottom:247.916400px;}
.y227{bottom:248.175225px;}
.y24b{bottom:248.179200px;}
.y8f{bottom:248.180625px;}
.yaf{bottom:248.183325px;}
.y1b9{bottom:248.191200px;}
.y216{bottom:248.208075px;}
.y1d6{bottom:248.209650px;}
.y18a{bottom:248.212200px;}
.y20d{bottom:248.212575px;}
.y1e7{bottom:248.220450px;}
.y1c4{bottom:248.224725px;}
.y241{bottom:248.282325px;}
.y25b{bottom:249.085650px;}
.y1fc{bottom:249.418275px;}
.y2f{bottom:252.215100px;}
.yc6{bottom:254.098275px;}
.y19b{bottom:254.109525px;}
.yf4{bottom:254.115150px;}
.y2d1{bottom:256.216200px;}
.y2c8{bottom:256.217700px;}
.y2a6{bottom:256.219200px;}
.ye0{bottom:257.831025px;}
.y4d{bottom:258.052650px;}
.y27d{bottom:258.221700px;}
.y127{bottom:262.653750px;}
.y149{bottom:265.508775px;}
.y226{bottom:265.767600px;}
.y24a{bottom:265.771575px;}
.y8e{bottom:265.773000px;}
.yae{bottom:265.775700px;}
.y1b8{bottom:265.783575px;}
.y215{bottom:265.800450px;}
.y1d5{bottom:265.802025px;}
.y189{bottom:265.804575px;}
.y1e6{bottom:265.812825px;}
.y1c3{bottom:265.817100px;}
.y240{bottom:265.874700px;}
.y1fb{bottom:267.010650px;}
.yc5{bottom:268.496400px;}
.y1bb{bottom:268.507650px;}
.y2e{bottom:271.343100px;}
.y19a{bottom:272.445150px;}
.y2a5{bottom:272.537700px;}
.y2c7{bottom:272.539200px;}
.ydf{bottom:273.816150px;}
.y27c{bottom:274.923450px;}
.yc4{bottom:282.894525px;}
.y148{bottom:283.101150px;}
.y72{bottom:283.359975px;}
.y249{bottom:283.363950px;}
.y8d{bottom:283.365375px;}
.yad{bottom:283.368075px;}
.y15d{bottom:283.373775px;}
.y1b7{bottom:283.375950px;}
.y10d{bottom:283.392825px;}
.y1d4{bottom:283.394400px;}
.y188{bottom:283.396950px;}
.y20c{bottom:283.397325px;}
.y1e5{bottom:283.405200px;}
.y1c2{bottom:283.409475px;}
.y23f{bottom:283.467075px;}
.y2d{bottom:284.087100px;}
.y1fa{bottom:284.603025px;}
.y2c6{bottom:288.857850px;}
.y2a4{bottom:288.859200px;}
.yde{bottom:289.801275px;}
.y27b{bottom:291.633600px;}
.y126{bottom:296.256075px;}
.y25a{bottom:296.438400px;}
.y2c{bottom:296.831100px;}
.y147{bottom:300.693525px;}
.y248{bottom:300.956325px;}
.yac{bottom:300.960450px;}
.y15c{bottom:300.966150px;}
.y1b6{bottom:300.968325px;}
.y71{bottom:300.968700px;}
.y173{bottom:300.972975px;}
.y8c{bottom:300.974400px;}
.y10c{bottom:300.985200px;}
.y1d3{bottom:300.986775px;}
.y187{bottom:300.989325px;}
.y1e4{bottom:300.997575px;}
.y4c{bottom:300.999525px;}
.y1c1{bottom:301.001850px;}
.y23e{bottom:301.059450px;}
.y225{bottom:301.067700px;}
.yc3{bottom:301.230150px;}
.y1f9{bottom:302.195400px;}
.y2a3{bottom:305.177850px;}
.y2c5{bottom:305.179350px;}
.ydd{bottom:305.786400px;}
.yf3{bottom:307.526400px;}
.y27a{bottom:308.335350px;}
.y2b{bottom:309.575100px;}
.y259{bottom:312.759900px;}
.y125{bottom:313.848450px;}
.y146{bottom:318.285900px;}
.yab{bottom:318.552825px;}
.y15b{bottom:318.558525px;}
.y1b5{bottom:318.560700px;}
.y70{bottom:318.561075px;}
.y172{bottom:318.565350px;}
.y8b{bottom:318.566775px;}
.y10b{bottom:318.577575px;}
.y1d2{bottom:318.579150px;}
.y186{bottom:318.581700px;}
.y1e3{bottom:318.589950px;}
.y4b{bottom:318.591900px;}
.y1c0{bottom:318.594225px;}
.y23d{bottom:318.651825px;}
.y224{bottom:318.660075px;}
.y1f8{bottom:319.787775px;}
.y2c4{bottom:321.497700px;}
.y2a2{bottom:321.499350px;}
.ydc{bottom:321.771525px;}
.y2a{bottom:322.319100px;}
.yf2{bottom:323.511525px;}
.y279{bottom:325.037100px;}
.y258{bottom:329.081400px;}
.y124{bottom:331.440825px;}
.y29{bottom:335.063100px;}
.y15a{bottom:336.150900px;}
.y6f{bottom:336.153450px;}
.y171{bottom:336.157725px;}
.y8a{bottom:336.159150px;}
.y10a{bottom:336.169950px;}
.y1d1{bottom:336.171525px;}
.y185{bottom:336.174075px;}
.y1e2{bottom:336.182325px;}
.y4a{bottom:336.184275px;}
.y1bf{bottom:336.186600px;}
.y20b{bottom:336.190575px;}
.yaa{bottom:336.194700px;}
.y23c{bottom:336.244200px;}
.y223{bottom:336.252450px;}
.y1f7{bottom:337.437900px;}
.ydb{bottom:337.756650px;}
.y2d0{bottom:337.816200px;}
.y2a1{bottom:337.817700px;}
.y2c3{bottom:337.819200px;}
.yf1{bottom:339.496650px;}
.y278{bottom:341.744400px;}
.y257{bottom:345.402900px;}
.y28{bottom:347.807100px;}
.y123{bottom:349.033200px;}
.y145{bottom:353.495700px;}
.y1b4{bottom:353.745450px;}
.y6e{bottom:353.745825px;}
.y170{bottom:353.750100px;}
.y89{bottom:353.751525px;}
.yc2{bottom:353.754075px;}
.y109{bottom:353.762325px;}
.y1d0{bottom:353.763900px;}
.y184{bottom:353.766450px;}
.y159{bottom:353.768025px;}
.y1e1{bottom:353.774700px;}
.y49{bottom:353.776650px;}
.y1be{bottom:353.778975px;}
.y20a{bottom:353.782950px;}
.ya9{bottom:353.787075px;}
.y23b{bottom:353.836575px;}
.y222{bottom:353.844825px;}
.y2c2{bottom:354.137700px;}
.y2a0{bottom:354.139200px;}
.y1f6{bottom:355.030275px;}
.yf0{bottom:355.481775px;}
.y277{bottom:358.446150px;}
.y27{bottom:360.551100px;}
.y256{bottom:361.724400px;}
.y122{bottom:366.625575px;}
.y144{bottom:369.480825px;}
.y29f{bottom:370.457700px;}
.y2c1{bottom:370.459200px;}
.y1a0{bottom:371.338200px;}
.y16f{bottom:371.342475px;}
.yc1{bottom:371.346450px;}
.y88{bottom:371.352150px;}
.y108{bottom:371.354700px;}
.y1cf{bottom:371.356275px;}
.y183{bottom:371.358825px;}
.y158{bottom:371.360400px;}
.y6d{bottom:371.362950px;}
.y1e0{bottom:371.367075px;}
.y48{bottom:371.369025px;}
.y1bd{bottom:371.371350px;}
.y209{bottom:371.375325px;}
.ya8{bottom:371.379450px;}
.yda{bottom:371.383725px;}
.y23a{bottom:371.428950px;}
.y221{bottom:371.437200px;}
.yef{bottom:371.466900px;}
.y1f5{bottom:372.622650px;}
.y26{bottom:373.295100px;}
.y276{bottom:375.153450px;}
.y255{bottom:378.045900px;}
.y121{bottom:384.217950px;}
.y143{bottom:385.465950px;}
.y25{bottom:386.039100px;}
.y2c0{bottom:386.777700px;}
.y29e{bottom:386.779200px;}
.yee{bottom:387.452025px;}
.yc0{bottom:388.938825px;}
.y87{bottom:388.944525px;}
.y107{bottom:388.947075px;}
.y1ce{bottom:388.948650px;}
.y182{bottom:388.951200px;}
.y157{bottom:388.952775px;}
.y6c{bottom:388.955325px;}
.y1df{bottom:388.959450px;}
.y47{bottom:388.961400px;}
.y16e{bottom:388.963725px;}
.y208{bottom:388.967700px;}
.ya7{bottom:388.971825px;}
.yd9{bottom:388.976100px;}
.y239{bottom:389.021325px;}
.y220{bottom:389.029575px;}
.y1f4{bottom:390.215025px;}
.y275{bottom:391.858050px;}
.y24{bottom:398.783100px;}
.y142{bottom:401.451075px;}
.y120{bottom:401.851575px;}
.y29d{bottom:403.097850px;}
.y2bf{bottom:403.099200px;}
.yed{bottom:403.437150px;}
.ybf{bottom:406.535325px;}
.y106{bottom:406.539450px;}
.y1cd{bottom:406.541025px;}
.y181{bottom:406.543575px;}
.y156{bottom:406.545150px;}
.y86{bottom:406.547325px;}
.y6b{bottom:406.547700px;}
.y1de{bottom:406.551825px;}
.y46{bottom:406.553775px;}
.y16d{bottom:406.556100px;}
.y207{bottom:406.560075px;}
.ya6{bottom:406.564200px;}
.yd8{bottom:406.568475px;}
.y1b3{bottom:406.572450px;}
.y238{bottom:406.613700px;}
.y21f{bottom:406.621950px;}
.y1f3{bottom:407.807400px;}
.y274{bottom:408.559800px;}
.y254{bottom:412.007100px;}
.y141{bottom:417.436200px;}
.y2cf{bottom:419.417850px;}
.y29c{bottom:419.419350px;}
.yec{bottom:419.422275px;}
.y11f{bottom:419.443950px;}
.ybe{bottom:424.127700px;}
.y105{bottom:424.131825px;}
.y180{bottom:424.135950px;}
.y155{bottom:424.137525px;}
.y85{bottom:424.139700px;}
.y6a{bottom:424.140075px;}
.y1dd{bottom:424.144200px;}
.y45{bottom:424.146150px;}
.y16c{bottom:424.148475px;}
.y206{bottom:424.152450px;}
.ya5{bottom:424.156575px;}
.yd7{bottom:424.160850px;}
.y1cc{bottom:424.164450px;}
.y1b2{bottom:424.164825px;}
.y237{bottom:424.206075px;}
.y21e{bottom:424.214325px;}
.y23{bottom:424.283100px;}
.y273{bottom:425.267100px;}
.y1f2{bottom:425.399775px;}
.y140{bottom:433.421325px;}
.yeb{bottom:435.407400px;}
.y29b{bottom:435.737850px;}
.y2be{bottom:435.739350px;}
.y11e{bottom:437.036325px;}
.y17f{bottom:441.728325px;}
.y69{bottom:441.732450px;}
.ybd{bottom:441.736575px;}
.y44{bottom:441.738525px;}
.y16b{bottom:441.740850px;}
.y205{bottom:441.744825px;}
.ya4{bottom:441.748950px;}
.yd6{bottom:441.753225px;}
.y1cb{bottom:441.756825px;}
.y1b1{bottom:441.757200px;}
.y154{bottom:441.774075px;}
.y236{bottom:441.798450px;}
.y214{bottom:441.806700px;}
.y272{bottom:441.968850px;}
.y1f1{bottom:442.992150px;}
.y22{bottom:443.411100px;}
.y13f{bottom:449.406450px;}
.yea{bottom:451.392525px;}
.y2bd{bottom:452.057700px;}
.y29a{bottom:452.059350px;}
.y11d{bottom:454.628700px;}
.y21{bottom:456.155100px;}
.y271{bottom:458.679000px;}
.y84{bottom:459.324450px;}
.y68{bottom:459.324825px;}
.ybc{bottom:459.328950px;}
.y43{bottom:459.330900px;}
.y16a{bottom:459.333225px;}
.y204{bottom:459.337200px;}
.ya3{bottom:459.341325px;}
.yd5{bottom:459.345600px;}
.y1ca{bottom:459.349200px;}
.y1b0{bottom:459.349575px;}
.y253{bottom:459.366225px;}
.y153{bottom:459.366450px;}
.y17e{bottom:459.378450px;}
.y235{bottom:459.390825px;}
.y213{bottom:459.399075px;}
.y1f0{bottom:460.584525px;}
.y2ea{bottom:461.862450px;}
.y13e{bottom:465.391575px;}
.ye9{bottom:467.377650px;}
.y2bc{bottom:468.377700px;}
.y299{bottom:468.379200px;}
.y20{bottom:468.899100px;}
.y11c{bottom:472.221075px;}
.y270{bottom:475.380750px;}
.y2e9{bottom:476.260575px;}
.ybb{bottom:476.921325px;}
.y42{bottom:476.923275px;}
.y169{bottom:476.925600px;}
.y203{bottom:476.929575px;}
.ya2{bottom:476.933700px;}
.yd4{bottom:476.937975px;}
.y1c9{bottom:476.941575px;}
.y1af{bottom:476.941950px;}
.y252{bottom:476.958600px;}
.y152{bottom:476.958825px;}
.y67{bottom:476.962575px;}
.y17d{bottom:476.970825px;}
.y234{bottom:476.983200px;}
.y212{bottom:476.991450px;}
.y1ef{bottom:478.176900px;}
.y13d{bottom:481.376700px;}
.y1f{bottom:481.643100px;}
.ye8{bottom:483.362775px;}
.y298{bottom:484.697700px;}
.y2bb{bottom:484.699200px;}
.y11b{bottom:489.813450px;}
.y2e8{bottom:490.658700px;}
.y26f{bottom:492.082500px;}
.y1e{bottom:494.387100px;}
.y1dc{bottom:494.513700px;}
.y168{bottom:494.517975px;}
.y202{bottom:494.521950px;}
.ya1{bottom:494.526075px;}
.yd3{bottom:494.530350px;}
.y41{bottom:494.532150px;}
.y1c8{bottom:494.533950px;}
.y1ae{bottom:494.534325px;}
.y104{bottom:494.546700px;}
.y251{bottom:494.550975px;}
.y151{bottom:494.551200px;}
.y66{bottom:494.554950px;}
.y17c{bottom:494.563200px;}
.yba{bottom:494.567325px;}
.y247{bottom:494.571600px;}
.y233{bottom:494.575575px;}
.y211{bottom:494.583825px;}
.y1ee{bottom:495.769275px;}
.y13c{bottom:497.361825px;}
.ye7{bottom:499.347900px;}
.y2ba{bottom:501.017700px;}
.y297{bottom:501.019200px;}
.y2e7{bottom:505.056825px;}
.y1d{bottom:507.131100px;}
.y11a{bottom:507.405825px;}
.y26e{bottom:508.789800px;}
.y201{bottom:512.114325px;}
.ya0{bottom:512.118450px;}
.yd2{bottom:512.122725px;}
.y40{bottom:512.124525px;}
.y1c7{bottom:512.126325px;}
.y19f{bottom:512.126700px;}
.y167{bottom:512.130825px;}
.y103{bottom:512.139075px;}
.y250{bottom:512.143350px;}
.y150{bottom:512.143575px;}
.y65{bottom:512.147325px;}
.y17b{bottom:512.155575px;}
.yb9{bottom:512.159700px;}
.y246{bottom:512.163975px;}
.y232{bottom:512.167950px;}
.y83{bottom:512.176200px;}
.y13b{bottom:513.346950px;}
.y1ed{bottom:513.361650px;}
.ye6{bottom:515.333025px;}
.y296{bottom:517.337700px;}
.y2ce{bottom:517.339200px;}
.y2e6{bottom:519.454950px;}
.y1c{bottom:519.875100px;}
.y119{bottom:524.998200px;}
.y26d{bottom:525.491550px;}
.y200{bottom:529.706700px;}
.y9f{bottom:529.710825px;}
.yd1{bottom:529.715100px;}
.y3f{bottom:529.716900px;}
.y1c6{bottom:529.718700px;}
.y19e{bottom:529.719075px;}
.y166{bottom:529.723200px;}
.y102{bottom:529.731450px;}
.y24f{bottom:529.735725px;}
.y64{bottom:529.739700px;}
.y17a{bottom:529.747950px;}
.yb8{bottom:529.752075px;}
.y245{bottom:529.756350px;}
.y231{bottom:529.760325px;}
.y82{bottom:529.768575px;}
.y1ec{bottom:530.954025px;}
.ye5{bottom:531.318150px;}
.y1b{bottom:532.619100px;}
.y2dd{bottom:533.654700px;}
.y2cd{bottom:533.657700px;}
.y295{bottom:533.659200px;}
.y2e5{bottom:533.853075px;}
.y26c{bottom:542.198850px;}
.y118{bottom:542.590575px;}
.y1a{bottom:545.363100px;}
.y13a{bottom:546.941025px;}
.yd0{bottom:547.307475px;}
.y3e{bottom:547.309275px;}
.y19d{bottom:547.311450px;}
.y165{bottom:547.315575px;}
.y101{bottom:547.323825px;}
.y9e{bottom:547.328100px;}
.y14f{bottom:547.328325px;}
.y63{bottom:547.332075px;}
.y179{bottom:547.340325px;}
.yb7{bottom:547.344450px;}
.y199{bottom:547.348725px;}
.y230{bottom:547.352700px;}
.y81{bottom:547.360950px;}
.y2e4{bottom:548.251200px;}
.y1eb{bottom:548.546400px;}
.y2dc{bottom:549.976200px;}
.y294{bottom:549.977700px;}
.y2cc{bottom:549.979200px;}
.y19{bottom:558.107100px;}
.y26b{bottom:558.900600px;}
.y117{bottom:560.182950px;}
.y2e3{bottom:562.649325px;}
.y139{bottom:564.533400px;}
.y1c5{bottom:564.903450px;}
.y19c{bottom:564.903825px;}
.y3d{bottom:564.905775px;}
.ycf{bottom:564.907950px;}
.y100{bottom:564.916200px;}
.y9d{bottom:564.920475px;}
.y14e{bottom:564.920700px;}
.y62{bottom:564.924450px;}
.y1db{bottom:564.928725px;}
.y178{bottom:564.932700px;}
.yb6{bottom:564.936825px;}
.y198{bottom:564.941100px;}
.y22f{bottom:564.945075px;}
.y80{bottom:564.953325px;}
.y1ea{bottom:566.138775px;}
.y2b9{bottom:566.297700px;}
.y293{bottom:566.299200px;}
.y18{bottom:570.851100px;}
.y26a{bottom:575.605200px;}
.y2e2{bottom:577.047450px;}
.y138{bottom:582.125775px;}
.yce{bottom:582.500325px;}
.y3c{bottom:582.502275px;}
.yff{bottom:582.508575px;}
.y9c{bottom:582.512850px;}
.y61{bottom:582.516825px;}
.y1da{bottom:582.521100px;}
.y177{bottom:582.525075px;}
.yb5{bottom:582.529200px;}
.y197{bottom:582.533475px;}
.y1ad{bottom:582.537450px;}
.y7f{bottom:582.545700px;}
.y292{bottom:582.617700px;}
.y2b8{bottom:582.619200px;}
.y17{bottom:583.595100px;}
.y1e9{bottom:583.731150px;}
.y2e1{bottom:591.445575px;}
.y269{bottom:592.309650px;}
.y116{bottom:595.387275px;}
.y2b7{bottom:598.937850px;}
.y291{bottom:598.939200px;}
.y137{bottom:599.718150px;}
.yfe{bottom:600.100950px;}
.y3b{bottom:600.102900px;}
.y9b{bottom:600.105225px;}
.y60{bottom:600.109200px;}
.y1d9{bottom:600.113475px;}
.y164{bottom:600.117450px;}
.yb4{bottom:600.121575px;}
.y196{bottom:600.125850px;}
.y1ac{bottom:600.129825px;}
.y7e{bottom:600.138075px;}
.y268{bottom:609.014250px;}
.y115{bottom:611.372400px;}
.y2e0{bottom:614.637450px;}
.y290{bottom:615.257850px;}
.y2b6{bottom:615.259350px;}
.yfd{bottom:617.693325px;}
.y3a{bottom:617.695275px;}
.y9a{bottom:617.697600px;}
.y5f{bottom:617.701575px;}
.y1d8{bottom:617.705850px;}
.y163{bottom:617.709825px;}
.yb3{bottom:617.713950px;}
.y195{bottom:617.718225px;}
.y1ab{bottom:617.722200px;}
.y7d{bottom:617.730450px;}
.y1e8{bottom:618.942825px;}
.y267{bottom:625.724400px;}
.y114{bottom:627.357525px;}
.y2b5{bottom:631.577850px;}
.y28f{bottom:631.579350px;}
.y136{bottom:634.927950px;}
.y99{bottom:635.289975px;}
.y5e{bottom:635.293950px;}
.y39{bottom:635.295900px;}
.yfc{bottom:635.298225px;}
.y162{bottom:635.302200px;}
.yb2{bottom:635.306325px;}
.y194{bottom:635.310600px;}
.y1aa{bottom:635.314575px;}
.y7c{bottom:635.322825px;}
.y16{bottom:640.331100px;}
.y266{bottom:642.426150px;}
.y113{bottom:643.342650px;}
.y28e{bottom:647.897700px;}
.y2b4{bottom:647.899350px;}
.y135{bottom:650.913075px;}
.y5d{bottom:652.886325px;}
.y38{bottom:652.888275px;}
.yfb{bottom:652.890600px;}
.y161{bottom:652.894575px;}
.y98{bottom:652.898700px;}
.y193{bottom:652.902975px;}
.y1a9{bottom:652.906950px;}
.y7b{bottom:652.915200px;}
.y15{bottom:654.742950px;}
.y265{bottom:659.127900px;}
.y112{bottom:659.327775px;}
.y2db{bottom:664.217700px;}
.y28d{bottom:664.219200px;}
.y134{bottom:666.898200px;}
.yfa{bottom:670.482975px;}
.y37{bottom:670.484775px;}
.y160{bottom:670.486950px;}
.y97{bottom:670.491075px;}
.y192{bottom:670.495350px;}
.y1a8{bottom:670.499325px;}
.y5c{bottom:670.507575px;}
.y111{bottom:675.312900px;}
.y264{bottom:675.840750px;}
.y14{bottom:678.712950px;}
.y2b3{bottom:680.537700px;}
.y28c{bottom:680.539200px;}
.y133{bottom:682.883325px;}
.y15f{bottom:688.079325px;}
.y96{bottom:688.083450px;}
.y191{bottom:688.087725px;}
.y1a7{bottom:688.091700px;}
.y36{bottom:688.093650px;}
.y5b{bottom:688.099950px;}
.y110{bottom:691.298025px;}
.y263{bottom:692.542500px;}
.y2df{bottom:696.857850px;}
.y28b{bottom:696.859200px;}
.y13{bottom:697.897950px;}
.y132{bottom:698.868450px;}
.y15e{bottom:705.671700px;}
.y95{bottom:705.675825px;}
.y190{bottom:705.680100px;}
.y1a6{bottom:705.684075px;}
.y35{bottom:705.686025px;}
.y5a{bottom:705.692325px;}
.y10f{bottom:707.283150px;}
.y262{bottom:709.244250px;}
.y28a{bottom:713.174700px;}
.y2b2{bottom:713.176200px;}
.y2da{bottom:713.177850px;}
.y2cb{bottom:713.179350px;}
.y131{bottom:714.853575px;}
.y12{bottom:717.082950px;}
.y1ba{bottom:723.268200px;}
.y18f{bottom:723.272475px;}
.y1a5{bottom:723.276450px;}
.y34{bottom:723.278400px;}
.y176{bottom:723.280575px;}
.y59{bottom:723.284700px;}
.y261{bottom:725.946000px;}
.y289{bottom:729.496200px;}
.y2b1{bottom:729.497700px;}
.y2d9{bottom:729.499350px;}
.y130{bottom:730.838700px;}
.y18e{bottom:740.864850px;}
.y1a4{bottom:740.868825px;}
.y33{bottom:740.870775px;}
.y175{bottom:740.872950px;}
.y58{bottom:740.877075px;}
.y260{bottom:742.653300px;}
.y288{bottom:745.817700px;}
.y2b0{bottom:745.819200px;}
.y12f{bottom:746.823825px;}
.y11{bottom:756.127950px;}
.y1ff{bottom:758.461200px;}
.y174{bottom:758.465325px;}
.y32{bottom:758.469450px;}
.y25f{bottom:759.355050px;}
.y2ca{bottom:762.136200px;}
.y2af{bottom:762.137700px;}
.y287{bottom:762.139200px;}
.y12e{bottom:762.808950px;}
.y10{bottom:775.312950px;}
.y57{bottom:776.061825px;}
.y286{bottom:778.457700px;}
.y12d{bottom:778.794075px;}
.y31{bottom:793.654200px;}
.yf{bottom:794.497950px;}
.y12c{bottom:794.779200px;}
.y30{bottom:832.327200px;}
.yc{bottom:835.327800px;}
.y2{bottom:855.702900px;}
.ye{bottom:867.883800px;}
.yd{bottom:881.383800px;}
.h18{height:30.609192px;}
.h6{height:30.912000px;}
.h12{height:31.341064px;}
.h8{height:35.328000px;}
.h1f{height:37.957500px;}
.h4{height:38.388000px;}
.h5{height:41.130000px;}
.he{height:42.539062px;}
.hc{height:43.054688px;}
.h7{height:44.496000px;}
.hd{height:44.671875px;}
.hf{height:45.745605px;}
.h14{height:47.091064px;}
.h13{height:47.113564px;}
.h16{height:47.136064px;}
.h20{height:48.667500px;}
.h2{height:51.127441px;}
.h19{height:51.844482px;}
.h1a{height:52.461500px;}
.h15{height:52.472900px;}
.h1c{height:52.478300px;}
.h1b{height:52.478900px;}
.h1d{height:52.479500px;}
.h1e{height:52.484900px;}
.ha{height:53.173828px;}
.hb{height:53.818359px;}
.h9{height:55.839844px;}
.h17{height:57.161865px;}
.h11{height:57.854736px;}
.h10{height:60.027832px;}
.h3{height:148.644883px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x10{left:93.543300px;}
.x1{left:107.148450px;}
.x13{left:114.803250px;}
.x12{left:119.053050px;}
.x18{left:122.985900px;}
.xf{left:124.154100px;}
.x14{left:128.409450px;}
.x3{left:132.652890px;}
.x19{left:136.908600px;}
.x8{left:146.732700px;}
.x17{left:151.093050px;}
.xb{left:160.937700px;}
.x16{left:164.699400px;}
.x4{left:167.305950px;}
.x5{left:172.930950px;}
.x15{left:185.964150px;}
.x7{left:219.227700px;}
.x9{left:221.327700px;}
.xa{left:243.437700px;}
.xc{left:301.382700px;}
.xd{left:408.497700px;}
.x6{left:415.535250px;}
.xe{left:421.502100px;}
.x11{left:428.002200px;}
.x2{left:520.665750px;}
@media print{
.v3{vertical-align:-17.200000pt;}
.v2{vertical-align:-14.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.546667pt;}
.v1{vertical-align:17.141333pt;}
.ls9b{letter-spacing:-1.040000pt;}
.ls42{letter-spacing:-0.933333pt;}
.ls4{letter-spacing:-0.746667pt;}
.ls1c{letter-spacing:-0.573333pt;}
.ls91{letter-spacing:-0.520000pt;}
.ls45{letter-spacing:-0.516000pt;}
.ls41{letter-spacing:-0.485333pt;}
.ls3b{letter-spacing:-0.466667pt;}
.ls4d{letter-spacing:-0.458667pt;}
.ls5{letter-spacing:-0.426667pt;}
.ls1d{letter-spacing:-0.401333pt;}
.ls1f{letter-spacing:-0.372667pt;}
.ls4e{letter-spacing:-0.344000pt;}
.ls3a{letter-spacing:-0.303333pt;}
.ls1e{letter-spacing:-0.260867pt;}
.ls20{letter-spacing:-0.260000pt;}
.ls4c{letter-spacing:-0.229333pt;}
.ls2a{letter-spacing:-0.208000pt;}
.ls21{letter-spacing:-0.169000pt;}
.ls63{letter-spacing:-0.104000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000267pt;}
.ls98{letter-spacing:0.000800pt;}
.ls97{letter-spacing:0.006800pt;}
.ls73{letter-spacing:0.007467pt;}
.ls62{letter-spacing:0.008000pt;}
.ls54{letter-spacing:0.008267pt;}
.ls50{letter-spacing:0.008533pt;}
.ls95{letter-spacing:0.008800pt;}
.ls6c{letter-spacing:0.009067pt;}
.ls57{letter-spacing:0.017333pt;}
.ls55{letter-spacing:0.025333pt;}
.ls56{letter-spacing:0.026133pt;}
.ls4f{letter-spacing:0.037267pt;}
.ls4a{letter-spacing:0.052000pt;}
.ls94{letter-spacing:0.053867pt;}
.ls10{letter-spacing:0.057333pt;}
.ls93{letter-spacing:0.062667pt;}
.ls16{letter-spacing:0.074533pt;}
.ls43{letter-spacing:0.091000pt;}
.ls48{letter-spacing:0.093333pt;}
.lsac{letter-spacing:0.095733pt;}
.lsab{letter-spacing:0.096000pt;}
.ls29{letter-spacing:0.104000pt;}
.lsaa{letter-spacing:0.104533pt;}
.ls12{letter-spacing:0.106933pt;}
.ls40{letter-spacing:0.111800pt;}
.ls3f{letter-spacing:0.112000pt;}
.lsf{letter-spacing:0.114667pt;}
.ls30{letter-spacing:0.121333pt;}
.ls26{letter-spacing:0.140000pt;}
.ls2c{letter-spacing:0.149067pt;}
.ls9f{letter-spacing:0.150933pt;}
.ls27{letter-spacing:0.156000pt;}
.ls9e{letter-spacing:0.157200pt;}
.ls9c{letter-spacing:0.158400pt;}
.ls2e{letter-spacing:0.158667pt;}
.ls17{letter-spacing:0.172000pt;}
.lsb{letter-spacing:0.185867pt;}
.ls2f{letter-spacing:0.186333pt;}
.lsa{letter-spacing:0.186400pt;}
.ls13{letter-spacing:0.186667pt;}
.ls8c{letter-spacing:0.192000pt;}
.ls8b{letter-spacing:0.192800pt;}
.ls8d{letter-spacing:0.200000pt;}
.lsa9{letter-spacing:0.202133pt;}
.ls28{letter-spacing:0.208000pt;}
.ls7f{letter-spacing:0.210933pt;}
.lsa8{letter-spacing:0.211200pt;}
.ls3c{letter-spacing:0.212333pt;}
.ls65{letter-spacing:0.216267pt;}
.ls66{letter-spacing:0.216533pt;}
.ls80{letter-spacing:0.218400pt;}
.ls7e{letter-spacing:0.219200pt;}
.ls67{letter-spacing:0.225600pt;}
.ls14{letter-spacing:0.229333pt;}
.ls9a{letter-spacing:0.232000pt;}
.lsad{letter-spacing:0.233333pt;}
.ls99{letter-spacing:0.240000pt;}
.ls6b{letter-spacing:0.251733pt;}
.ls7c{letter-spacing:0.260000pt;}
.lsa4{letter-spacing:0.260267pt;}
.ls46{letter-spacing:0.260867pt;}
.lsa3{letter-spacing:0.268267pt;}
.ls9{letter-spacing:0.286667pt;}
.ls76{letter-spacing:0.297867pt;}
.ls1b{letter-spacing:0.298133pt;}
.ls24{letter-spacing:0.303333pt;}
.ls7b{letter-spacing:0.304533pt;}
.ls74{letter-spacing:0.306667pt;}
.ls75{letter-spacing:0.312000pt;}
.ls7a{letter-spacing:0.313067pt;}
.ls3d{letter-spacing:0.326667pt;}
.ls84{letter-spacing:0.328267pt;}
.ls83{letter-spacing:0.328800pt;}
.ls35{letter-spacing:0.333667pt;}
.ls82{letter-spacing:0.339200pt;}
.lsc{letter-spacing:0.344000pt;}
.ls81{letter-spacing:0.347733pt;}
.ls23{letter-spacing:0.364000pt;}
.ls88{letter-spacing:0.372800pt;}
.ls87{letter-spacing:0.381333pt;}
.ls5e{letter-spacing:0.390667pt;}
.ls5f{letter-spacing:0.390933pt;}
.ls78{letter-spacing:0.392533pt;}
.ls2d{letter-spacing:0.394333pt;}
.ls61{letter-spacing:0.398933pt;}
.ls60{letter-spacing:0.400000pt;}
.ls79{letter-spacing:0.400533pt;}
.ls77{letter-spacing:0.401067pt;}
.ls2b{letter-spacing:0.401333pt;}
.ls64{letter-spacing:0.416000pt;}
.ls86{letter-spacing:0.419733pt;}
.ls85{letter-spacing:0.428267pt;}
.ls6{letter-spacing:0.458667pt;}
.ls8a{letter-spacing:0.461867pt;}
.ls89{letter-spacing:0.462133pt;}
.ls19{letter-spacing:0.466667pt;}
.ls92{letter-spacing:0.468000pt;}
.ls34{letter-spacing:0.513333pt;}
.lsd{letter-spacing:0.516000pt;}
.ls90{letter-spacing:0.519733pt;}
.ls7d{letter-spacing:0.520000pt;}
.ls8f{letter-spacing:0.520533pt;}
.ls8e{letter-spacing:0.520800pt;}
.ls5b{letter-spacing:0.556533pt;}
.ls5c{letter-spacing:0.557333pt;}
.ls39{letter-spacing:0.560000pt;}
.ls5d{letter-spacing:0.572000pt;}
.ls18{letter-spacing:0.573333pt;}
.ls1a{letter-spacing:0.606667pt;}
.ls59{letter-spacing:0.612533pt;}
.ls5a{letter-spacing:0.621867pt;}
.ls58{letter-spacing:0.624000pt;}
.ls8{letter-spacing:0.630667pt;}
.ls32{letter-spacing:0.688000pt;}
.ls53{letter-spacing:0.728000pt;}
.ls52{letter-spacing:0.739200pt;}
.ls37{letter-spacing:0.745333pt;}
.ls51{letter-spacing:0.747733pt;}
.ls68{letter-spacing:0.767733pt;}
.ls69{letter-spacing:0.768533pt;}
.ls6a{letter-spacing:0.780000pt;}
.ls4b{letter-spacing:0.802667pt;}
.lse{letter-spacing:0.860000pt;}
.ls31{letter-spacing:0.917333pt;}
.ls44{letter-spacing:0.974667pt;}
.lsaf{letter-spacing:1.026667pt;}
.ls7{letter-spacing:1.089333pt;}
.ls49{letter-spacing:1.144000pt;}
.ls6e{letter-spacing:1.179200pt;}
.ls6d{letter-spacing:1.188267pt;}
.ls6f{letter-spacing:1.196000pt;}
.lsa6{letter-spacing:1.234133pt;}
.lsa5{letter-spacing:1.242133pt;}
.lsa7{letter-spacing:1.248000pt;}
.ls71{letter-spacing:1.501333pt;}
.ls72{letter-spacing:1.508000pt;}
.ls70{letter-spacing:1.510400pt;}
.ls96{letter-spacing:1.535467pt;}
.ls47{letter-spacing:1.605333pt;}
.lsa1{letter-spacing:1.862933pt;}
.lsa0{letter-spacing:1.870400pt;}
.lsa2{letter-spacing:1.872000pt;}
.ls22{letter-spacing:2.893333pt;}
.lsae{letter-spacing:3.220000pt;}
.ls36{letter-spacing:3.784000pt;}
.ls9d{letter-spacing:6.651200pt;}
.ls25{letter-spacing:7.338667pt;}
.ls0{letter-spacing:9.632000pt;}
.ls1{letter-spacing:10.416000pt;}
.ls2{letter-spacing:11.120000pt;}
.ls38{letter-spacing:11.200000pt;}
.ls15{letter-spacing:11.666667pt;}
.ls3e{letter-spacing:11.806667pt;}
.ls33{letter-spacing:12.180000pt;}
.wse8{word-spacing:-14.849333pt;}
.ws3b{word-spacing:-14.333333pt;}
.ws98{word-spacing:-13.000000pt;}
.wsde{word-spacing:-11.825333pt;}
.wsfd{word-spacing:-11.778667pt;}
.wsf8{word-spacing:-11.666667pt;}
.ws3a{word-spacing:-11.333333pt;}
.ws1b{word-spacing:-10.750000pt;}
.ws12d{word-spacing:-9.968400pt;}
.ws11a{word-spacing:-9.750000pt;}
.ws78{word-spacing:-9.614800pt;}
.ws107{word-spacing:-9.577533pt;}
.wsdc{word-spacing:-9.503000pt;}
.wsd2{word-spacing:-9.465733pt;}
.wsfb{word-spacing:-9.428467pt;}
.ws67{word-spacing:-9.391200pt;}
.ws117{word-spacing:-9.353933pt;}
.ws54{word-spacing:-9.316667pt;}
.ws79{word-spacing:-9.055800pt;}
.ws109{word-spacing:-8.944000pt;}
.ws1d{word-spacing:-8.750000pt;}
.wsd3{word-spacing:-7.977667pt;}
.wsf1{word-spacing:-7.947333pt;}
.wse9{word-spacing:-7.917000pt;}
.ws99{word-spacing:-7.886667pt;}
.wsf7{word-spacing:-7.795667pt;}
.wsdd{word-spacing:-7.704667pt;}
.wsfc{word-spacing:-7.674333pt;}
.ws1c{word-spacing:-7.583333pt;}
.wsf0{word-spacing:-7.280000pt;}
.wsf6{word-spacing:-0.560000pt;}
.ws12b{word-spacing:-0.520000pt;}
.wseb{word-spacing:-0.513333pt;}
.ws28{word-spacing:-0.286667pt;}
.wse6{word-spacing:-0.186333pt;}
.ws3{word-spacing:-0.074667pt;}
.ws1{word-spacing:0.000000pt;}
.ws56{word-spacing:0.057333pt;}
.ws36{word-spacing:0.093333pt;}
.wsa3{word-spacing:0.104000pt;}
.wsb3{word-spacing:0.114667pt;}
.wsc{word-spacing:0.128000pt;}
.ws96{word-spacing:0.169000pt;}
.ws5e{word-spacing:0.172000pt;}
.ws10c{word-spacing:0.186667pt;}
.ws10{word-spacing:0.213333pt;}
.wse2{word-spacing:0.229333pt;}
.ws9e{word-spacing:0.260000pt;}
.wsc6{word-spacing:0.280000pt;}
.wsca{word-spacing:0.286667pt;}
.ws34{word-spacing:0.326667pt;}
.ws81{word-spacing:0.344000pt;}
.ws125{word-spacing:0.364000pt;}
.ws80{word-spacing:0.372667pt;}
.ws48{word-spacing:0.401333pt;}
.wsa{word-spacing:0.426667pt;}
.wse5{word-spacing:0.458667pt;}
.wsf3{word-spacing:0.466667pt;}
.ws13c{word-spacing:0.468000pt;}
.ws101{word-spacing:0.485333pt;}
.ws6d{word-spacing:0.516000pt;}
.ws123{word-spacing:0.520000pt;}
.ws95{word-spacing:0.572000pt;}
.ws42{word-spacing:0.573333pt;}
.ws13{word-spacing:0.597333pt;}
.wsb9{word-spacing:0.606667pt;}
.ws13a{word-spacing:0.624000pt;}
.ws77{word-spacing:0.653333pt;}
.ws8a{word-spacing:0.688000pt;}
.wsd9{word-spacing:0.700000pt;}
.ws9b{word-spacing:0.745333pt;}
.ws4{word-spacing:0.746667pt;}
.ws6{word-spacing:0.784000pt;}
.wsaa{word-spacing:0.793333pt;}
.ws112{word-spacing:0.802667pt;}
.ws11f{word-spacing:0.832000pt;}
.ws7c{word-spacing:0.860000pt;}
.ws8b{word-spacing:0.917333pt;}
.wsf4{word-spacing:0.933333pt;}
.ws90{word-spacing:0.936000pt;}
.ws6b{word-spacing:0.974667pt;}
.ws9d{word-spacing:0.988000pt;}
.ws35{word-spacing:1.026667pt;}
.ws5c{word-spacing:1.032000pt;}
.wse4{word-spacing:1.073333pt;}
.wsaf{word-spacing:1.089333pt;}
.wsee{word-spacing:1.120000pt;}
.ws11c{word-spacing:1.144000pt;}
.wsd7{word-spacing:1.146667pt;}
.ws88{word-spacing:1.166667pt;}
.ws130{word-spacing:1.196000pt;}
.ws47{word-spacing:1.204000pt;}
.ws50{word-spacing:1.213333pt;}
.ws94{word-spacing:1.248000pt;}
.ws26{word-spacing:1.261333pt;}
.ws9{word-spacing:1.280000pt;}
.ws92{word-spacing:1.300000pt;}
.wsd6{word-spacing:1.318667pt;}
.ws11{word-spacing:1.322667pt;}
.wsc8{word-spacing:1.352000pt;}
.wsae{word-spacing:1.353333pt;}
.ws3d{word-spacing:1.376000pt;}
.ws132{word-spacing:1.404000pt;}
.ws24{word-spacing:1.433333pt;}
.ws40{word-spacing:1.490667pt;}
.ws51{word-spacing:1.493333pt;}
.ws10e{word-spacing:1.508000pt;}
.ws7e{word-spacing:1.548000pt;}
.ws11e{word-spacing:1.560000pt;}
.ws15{word-spacing:1.578667pt;}
.ws49{word-spacing:1.605333pt;}
.wsef{word-spacing:1.633333pt;}
.ws82{word-spacing:1.662667pt;}
.ws18{word-spacing:1.664000pt;}
.ws37{word-spacing:1.680000pt;}
.ws129{word-spacing:1.716000pt;}
.wsea{word-spacing:1.720000pt;}
.ws102{word-spacing:1.726667pt;}
.wsd{word-spacing:1.749333pt;}
.ws12c{word-spacing:1.768000pt;}
.ws104{word-spacing:1.773333pt;}
.ws59{word-spacing:1.777333pt;}
.ws14{word-spacing:1.792000pt;}
.ws127{word-spacing:1.820000pt;}
.ws7d{word-spacing:1.834667pt;}
.wscf{word-spacing:1.872000pt;}
.ws20{word-spacing:1.892000pt;}
.wsc9{word-spacing:1.924000pt;}
.ws9a{word-spacing:1.949333pt;}
.ws13d{word-spacing:1.976000pt;}
.ws32{word-spacing:2.006667pt;}
.ws1a{word-spacing:2.048000pt;}
.wsf5{word-spacing:2.053333pt;}
.ws100{word-spacing:2.064000pt;}
.ws16{word-spacing:2.090667pt;}
.ws116{word-spacing:2.100000pt;}
.wsd0{word-spacing:2.121333pt;}
.wsa5{word-spacing:2.132000pt;}
.wsab{word-spacing:2.146667pt;}
.ws64{word-spacing:2.178667pt;}
.ws8f{word-spacing:2.184000pt;}
.wsa9{word-spacing:2.236000pt;}
.ws83{word-spacing:2.286667pt;}
.ws11d{word-spacing:2.288000pt;}
.ws10f{word-spacing:2.340000pt;}
.wse{word-spacing:2.346667pt;}
.wsd4{word-spacing:2.350667pt;}
.ws5{word-spacing:2.352000pt;}
.wsfa{word-spacing:2.380000pt;}
.wsa0{word-spacing:2.392000pt;}
.ws4b{word-spacing:2.408000pt;}
.ws38{word-spacing:2.426667pt;}
.ws72{word-spacing:2.465333pt;}
.ws126{word-spacing:2.496000pt;}
.ws8d{word-spacing:2.522667pt;}
.wsc0{word-spacing:2.548000pt;}
.ws17{word-spacing:2.560000pt;}
.ws4d{word-spacing:2.580000pt;}
.ws9c{word-spacing:2.600000pt;}
.ws45{word-spacing:2.637333pt;}
.wsc4{word-spacing:2.652000pt;}
.ws19{word-spacing:2.688000pt;}
.wsd1{word-spacing:2.694667pt;}
.ws39{word-spacing:2.706667pt;}
.wsf9{word-spacing:2.752000pt;}
.ws142{word-spacing:2.753333pt;}
.ws11b{word-spacing:2.756000pt;}
.wsc7{word-spacing:2.808000pt;}
.ws55{word-spacing:2.809333pt;}
.ws12{word-spacing:2.858667pt;}
.wsa4{word-spacing:2.860000pt;}
.ws62{word-spacing:2.866667pt;}
.wsad{word-spacing:2.893333pt;}
.wsf{word-spacing:2.901333pt;}
.wsa7{word-spacing:2.912000pt;}
.wsb8{word-spacing:2.924000pt;}
.wsb{word-spacing:2.944000pt;}
.ws124{word-spacing:2.964000pt;}
.ws7f{word-spacing:2.981333pt;}
.ws143{word-spacing:2.986667pt;}
.wsc1{word-spacing:3.016000pt;}
.ws4e{word-spacing:3.033333pt;}
.ws44{word-spacing:3.038667pt;}
.wsed{word-spacing:3.080000pt;}
.ws5a{word-spacing:3.096000pt;}
.wsbf{word-spacing:3.120000pt;}
.wsb6{word-spacing:3.153333pt;}
.ws133{word-spacing:3.172000pt;}
.ws4c{word-spacing:3.210667pt;}
.ws52{word-spacing:3.220000pt;}
.wsd8{word-spacing:3.266667pt;}
.wse3{word-spacing:3.268000pt;}
.ws93{word-spacing:3.276000pt;}
.ws2{word-spacing:3.285333pt;}
.ws105{word-spacing:3.313333pt;}
.wsfe{word-spacing:3.325333pt;}
.wscb{word-spacing:3.328000pt;}
.ws91{word-spacing:3.380000pt;}
.ws2d{word-spacing:3.382667pt;}
.ws8c{word-spacing:3.440000pt;}
.wsbc{word-spacing:3.453333pt;}
.ws122{word-spacing:3.484000pt;}
.wse1{word-spacing:3.497333pt;}
.wscd{word-spacing:3.536000pt;}
.ws2f{word-spacing:3.554667pt;}
.wsc2{word-spacing:3.588000pt;}
.ws75{word-spacing:3.612000pt;}
.ws30{word-spacing:3.669333pt;}
.wsdb{word-spacing:3.686667pt;}
.ws70{word-spacing:3.726667pt;}
.ws134{word-spacing:3.744000pt;}
.ws4f{word-spacing:3.780000pt;}
.wsf2{word-spacing:3.784000pt;}
.wsb0{word-spacing:3.841333pt;}
.ws53{word-spacing:3.873333pt;}
.ws6e{word-spacing:3.898667pt;}
.ws120{word-spacing:3.900000pt;}
.ws12f{word-spacing:3.952000pt;}
.ws5d{word-spacing:3.956000pt;}
.ws65{word-spacing:4.013333pt;}
.wsa2{word-spacing:4.056000pt;}
.wsb5{word-spacing:4.070667pt;}
.wsc3{word-spacing:4.108000pt;}
.wsb1{word-spacing:4.128000pt;}
.ws137{word-spacing:4.160000pt;}
.ws89{word-spacing:4.185333pt;}
.ws10d{word-spacing:4.212000pt;}
.ws41{word-spacing:4.242667pt;}
.ws12e{word-spacing:4.264000pt;}
.wsda{word-spacing:4.293333pt;}
.ws5f{word-spacing:4.300000pt;}
.ws86{word-spacing:4.340000pt;}
.ws46{word-spacing:4.357333pt;}
.wsbe{word-spacing:4.368000pt;}
.ws103{word-spacing:4.386667pt;}
.ws111{word-spacing:4.414667pt;}
.wse7{word-spacing:4.472000pt;}
.ws97{word-spacing:4.480000pt;}
.ws106{word-spacing:4.526667pt;}
.ws71{word-spacing:4.529333pt;}
.wsec{word-spacing:4.573333pt;}
.ws9f{word-spacing:4.576000pt;}
.ws2c{word-spacing:4.586667pt;}
.wsbd{word-spacing:4.628000pt;}
.ws25{word-spacing:4.644000pt;}
.wsce{word-spacing:4.680000pt;}
.wsff{word-spacing:4.701333pt;}
.wsa1{word-spacing:4.732000pt;}
.ws114{word-spacing:4.758667pt;}
.ws128{word-spacing:4.784000pt;}
.ws84{word-spacing:4.806667pt;}
.ws6a{word-spacing:4.816000pt;}
.ws140{word-spacing:4.853333pt;}
.ws61{word-spacing:4.873333pt;}
.wsbb{word-spacing:4.900000pt;}
.ws5b{word-spacing:4.930667pt;}
.wsac{word-spacing:4.946667pt;}
.ws57{word-spacing:4.988000pt;}
.ws113{word-spacing:4.993333pt;}
.wsa6{word-spacing:5.044000pt;}
.ws76{word-spacing:5.045333pt;}
.ws85{word-spacing:5.086667pt;}
.ws138{word-spacing:5.096000pt;}
.ws6f{word-spacing:5.102667pt;}
.ws135{word-spacing:5.148000pt;}
.ws69{word-spacing:5.160000pt;}
.wsc5{word-spacing:5.180000pt;}
.ws12a{word-spacing:5.200000pt;}
.ws7b{word-spacing:5.217333pt;}
.ws108{word-spacing:5.273333pt;}
.ws63{word-spacing:5.274667pt;}
.wsba{word-spacing:5.320000pt;}
.wsd5{word-spacing:5.332000pt;}
.ws110{word-spacing:5.356000pt;}
.wsb4{word-spacing:5.389333pt;}
.ws115{word-spacing:5.446667pt;}
.ws13e{word-spacing:5.460000pt;}
.ws21{word-spacing:5.504000pt;}
.ws119{word-spacing:5.506667pt;}
.ws43{word-spacing:5.561333pt;}
.ws10b{word-spacing:5.618667pt;}
.ws3f{word-spacing:5.676000pt;}
.ws58{word-spacing:5.733333pt;}
.ws6c{word-spacing:5.790667pt;}
.ws66{word-spacing:5.833333pt;}
.ws68{word-spacing:5.848000pt;}
.wsb7{word-spacing:5.905333pt;}
.ws136{word-spacing:5.928000pt;}
.ws27{word-spacing:5.962667pt;}
.ws22{word-spacing:6.020000pt;}
.wscc{word-spacing:6.032000pt;}
.ws60{word-spacing:6.077333pt;}
.ws131{word-spacing:6.084000pt;}
.ws2a{word-spacing:6.134667pt;}
.ws13b{word-spacing:6.188000pt;}
.ws33{word-spacing:6.192000pt;}
.wsdf{word-spacing:6.249333pt;}
.ws139{word-spacing:6.292000pt;}
.ws74{word-spacing:6.364000pt;}
.ws8e{word-spacing:6.396000pt;}
.ws31{word-spacing:6.421333pt;}
.ws121{word-spacing:6.448000pt;}
.wse0{word-spacing:6.478667pt;}
.ws13f{word-spacing:6.486667pt;}
.wsa8{word-spacing:6.500000pt;}
.ws3e{word-spacing:6.536000pt;}
.ws2e{word-spacing:6.593333pt;}
.wsb2{word-spacing:6.650667pt;}
.ws4a{word-spacing:6.708000pt;}
.ws23{word-spacing:6.765333pt;}
.ws2b{word-spacing:6.822667pt;}
.ws7a{word-spacing:6.937333pt;}
.ws73{word-spacing:6.994667pt;}
.ws10a{word-spacing:7.052000pt;}
.ws29{word-spacing:7.109333pt;}
.ws1f{word-spacing:7.166667pt;}
.ws118{word-spacing:7.224000pt;}
.ws8{word-spacing:9.472000pt;}
.ws141{word-spacing:10.780000pt;}
.ws1e{word-spacing:11.333333pt;}
.ws87{word-spacing:11.666667pt;}
.ws7{word-spacing:11.861333pt;}
.ws3c{word-spacing:1021.845333pt;}
.ws0{word-spacing:1616.672000pt;}
._c{margin-left:-23.334667pt;}
._a{margin-left:-11.713333pt;}
._2{margin-left:-8.288000pt;}
._f{margin-left:-3.220000pt;}
._e{margin-left:-1.896067pt;}
._5{margin-left:-0.917333pt;}
._6{width:0.997600pt;}
._d{width:1.906333pt;}
._b{width:2.893333pt;}
._9{width:4.217333pt;}
._8{width:5.833333pt;}
._0{width:7.093333pt;}
._7{width:8.633333pt;}
._1{width:10.378667pt;}
._3{width:11.861333pt;}
._4{width:772.964800pt;}
.fsa{font-size:30.333333pt;}
.fse{font-size:33.800000pt;}
.fsc{font-size:35.000000pt;}
.fs9{font-size:37.266667pt;}
.fs2{font-size:37.333333pt;}
.fsf{font-size:39.000000pt;}
.fs3{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs8{font-size:43.000000pt;}
.fs6{font-size:45.333333pt;}
.fsb{font-size:46.666667pt;}
.fs0{font-size:50.666667pt;}
.fsd{font-size:52.000000pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:57.333333pt;}
.fs1{font-size:152.046933pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:76.131067pt;}
.yb{bottom:87.512933pt;}
.ya{bottom:98.180933pt;}
.y7a{bottom:110.715133pt;}
.y1a3{bottom:110.725133pt;}
.ye4{bottom:110.730133pt;}
.ycd{bottom:110.735133pt;}
.y285{bottom:110.742667pt;}
.y22e{bottom:111.114400pt;}
.y21d{bottom:111.165733pt;}
.y2ae{bottom:111.694400pt;}
.y2d8{bottom:111.695733pt;}
.y9{bottom:112.625733pt;}
.y56{bottom:114.240133pt;}
.y79{bottom:123.513467pt;}
.y1d7{bottom:123.518467pt;}
.y1a2{bottom:123.523467pt;}
.y94{bottom:123.528467pt;}
.y8{bottom:125.179067pt;}
.y284{bottom:125.588667pt;}
.y2ad{bottom:126.202400pt;}
.y2d7{bottom:126.203733pt;}
.y22d{bottom:126.752067pt;}
.y21c{bottom:126.803400pt;}
.y55{bottom:127.033467pt;}
.y54{bottom:136.296800pt;}
.y78{bottom:136.311800pt;}
.y12b{bottom:136.316800pt;}
.ycc{bottom:136.321800pt;}
.y7{bottom:139.627067pt;}
.y93{bottom:139.826800pt;}
.y283{bottom:140.439600pt;}
.y2d6{bottom:140.709067pt;}
.y2ac{bottom:140.710400pt;}
.y22c{bottom:142.389733pt;}
.y21b{bottom:142.441067pt;}
.yf9{bottom:149.090133pt;}
.y53{bottom:149.095133pt;}
.y77{bottom:149.110133pt;}
.y12a{bottom:149.115133pt;}
.y6{bottom:149.567067pt;}
.y92{bottom:152.620133pt;}
.y2ab{bottom:155.215733pt;}
.y2d5{bottom:155.217067pt;}
.y282{bottom:155.288133pt;}
.y22b{bottom:158.027400pt;}
.y21a{bottom:158.078733pt;}
.y5{bottom:159.507067pt;}
.yf8{bottom:161.888467pt;}
.y52{bottom:161.893467pt;}
.y1bc{bottom:161.903467pt;}
.y76{bottom:161.908467pt;}
.y25e{bottom:162.247067pt;}
.ycb{bottom:165.413467pt;}
.y2d4{bottom:169.722533pt;}
.y2aa{bottom:169.723733pt;}
.y281{bottom:170.134133pt;}
.y4{bottom:173.224000pt;}
.y14d{bottom:173.457133pt;}
.y22a{bottom:173.687200pt;}
.y24e{bottom:173.690733pt;}
.y219{bottom:173.716400pt;}
.y18d{bottom:173.720067pt;}
.y210{bottom:173.720400pt;}
.y244{bottom:173.782400pt;}
.yf7{bottom:174.686800pt;}
.y51{bottom:174.691800pt;}
.y75{bottom:174.701800pt;}
.y25d{bottom:176.755067pt;}
.yca{bottom:178.206800pt;}
.y3{bottom:183.164000pt;}
.y2a9{bottom:184.229200pt;}
.y2d3{bottom:184.230533pt;}
.y280{bottom:184.987467pt;}
.ye3{bottom:186.556133pt;}
.yc9{bottom:187.470133pt;}
.yf6{bottom:187.485133pt;}
.y50{bottom:187.490133pt;}
.y1a1{bottom:187.495133pt;}
.y14c{bottom:189.094800pt;}
.y229{bottom:189.324867pt;}
.y24d{bottom:189.328400pt;}
.y91{bottom:189.329667pt;}
.yb1{bottom:189.332067pt;}
.y218{bottom:189.354067pt;}
.y18c{bottom:189.357733pt;}
.y20f{bottom:189.358067pt;}
.y243{bottom:189.420067pt;}
.y1fe{bottom:190.429800pt;}
.y74{bottom:191.000133pt;}
.y25c{bottom:191.263067pt;}
.y2de{bottom:198.734400pt;}
.y2d2{bottom:198.735733pt;}
.y2a8{bottom:198.737200pt;}
.y27f{bottom:199.833467pt;}
.yc8{bottom:200.268467pt;}
.yf5{bottom:200.283467pt;}
.y4f{bottom:200.288467pt;}
.ye2{bottom:200.765133pt;}
.y73{bottom:203.793467pt;}
.y14b{bottom:204.732467pt;}
.y228{bottom:204.962533pt;}
.y24c{bottom:204.966067pt;}
.y90{bottom:204.967333pt;}
.yb0{bottom:204.969733pt;}
.y217{bottom:204.991733pt;}
.y18b{bottom:204.995400pt;}
.y20e{bottom:204.995733pt;}
.y129{bottom:205.052000pt;}
.y242{bottom:205.057733pt;}
.y1fd{bottom:206.067467pt;}
.yc7{bottom:213.066800pt;}
.y4e{bottom:213.081800pt;}
.y2a7{bottom:213.242400pt;}
.y2c9{bottom:213.243733pt;}
.y27e{bottom:214.679467pt;}
.ye1{bottom:214.974133pt;}
.y10e{bottom:216.586800pt;}
.y128{bottom:219.261000pt;}
.y14a{bottom:220.370133pt;}
.y227{bottom:220.600200pt;}
.y24b{bottom:220.603733pt;}
.y8f{bottom:220.605000pt;}
.yaf{bottom:220.607400pt;}
.y1b9{bottom:220.614400pt;}
.y216{bottom:220.629400pt;}
.y1d6{bottom:220.630800pt;}
.y18a{bottom:220.633067pt;}
.y20d{bottom:220.633400pt;}
.y1e7{bottom:220.640400pt;}
.y1c4{bottom:220.644200pt;}
.y241{bottom:220.695400pt;}
.y25b{bottom:221.409467pt;}
.y1fc{bottom:221.705133pt;}
.y2f{bottom:224.191200pt;}
.yc6{bottom:225.865133pt;}
.y19b{bottom:225.875133pt;}
.yf4{bottom:225.880133pt;}
.y2d1{bottom:227.747733pt;}
.y2c8{bottom:227.749067pt;}
.y2a6{bottom:227.750400pt;}
.ye0{bottom:229.183133pt;}
.y4d{bottom:229.380133pt;}
.y27d{bottom:229.530400pt;}
.y127{bottom:233.470000pt;}
.y149{bottom:236.007800pt;}
.y226{bottom:236.237867pt;}
.y24a{bottom:236.241400pt;}
.y8e{bottom:236.242667pt;}
.yae{bottom:236.245067pt;}
.y1b8{bottom:236.252067pt;}
.y215{bottom:236.267067pt;}
.y1d5{bottom:236.268467pt;}
.y189{bottom:236.270733pt;}
.y1e6{bottom:236.278067pt;}
.y1c3{bottom:236.281867pt;}
.y240{bottom:236.333067pt;}
.y1fb{bottom:237.342800pt;}
.yc5{bottom:238.663467pt;}
.y1bb{bottom:238.673467pt;}
.y2e{bottom:241.193867pt;}
.y19a{bottom:242.173467pt;}
.y2a5{bottom:242.255733pt;}
.y2c7{bottom:242.257067pt;}
.ydf{bottom:243.392133pt;}
.y27c{bottom:244.376400pt;}
.yc4{bottom:251.461800pt;}
.y148{bottom:251.645467pt;}
.y72{bottom:251.875533pt;}
.y249{bottom:251.879067pt;}
.y8d{bottom:251.880333pt;}
.yad{bottom:251.882733pt;}
.y15d{bottom:251.887800pt;}
.y1b7{bottom:251.889733pt;}
.y10d{bottom:251.904733pt;}
.y1d4{bottom:251.906133pt;}
.y188{bottom:251.908400pt;}
.y20c{bottom:251.908733pt;}
.y1e5{bottom:251.915733pt;}
.y1c2{bottom:251.919533pt;}
.y23f{bottom:251.970733pt;}
.y2d{bottom:252.521867pt;}
.y1fa{bottom:252.980467pt;}
.y2c6{bottom:256.762533pt;}
.y2a4{bottom:256.763733pt;}
.yde{bottom:257.601133pt;}
.y27b{bottom:259.229867pt;}
.y126{bottom:263.338733pt;}
.y25a{bottom:263.500800pt;}
.y2c{bottom:263.849867pt;}
.y147{bottom:267.283133pt;}
.y248{bottom:267.516733pt;}
.yac{bottom:267.520400pt;}
.y15c{bottom:267.525467pt;}
.y1b6{bottom:267.527400pt;}
.y71{bottom:267.527733pt;}
.y173{bottom:267.531533pt;}
.y8c{bottom:267.532800pt;}
.y10c{bottom:267.542400pt;}
.y1d3{bottom:267.543800pt;}
.y187{bottom:267.546067pt;}
.y1e4{bottom:267.553400pt;}
.y4c{bottom:267.555133pt;}
.y1c1{bottom:267.557200pt;}
.y23e{bottom:267.608400pt;}
.y225{bottom:267.615733pt;}
.yc3{bottom:267.760133pt;}
.y1f9{bottom:268.618133pt;}
.y2a3{bottom:271.269200pt;}
.y2c5{bottom:271.270533pt;}
.ydd{bottom:271.810133pt;}
.yf3{bottom:273.356800pt;}
.y27a{bottom:274.075867pt;}
.y2b{bottom:275.177867pt;}
.y259{bottom:278.008800pt;}
.y125{bottom:278.976400pt;}
.y146{bottom:282.920800pt;}
.yab{bottom:283.158067pt;}
.y15b{bottom:283.163133pt;}
.y1b5{bottom:283.165067pt;}
.y70{bottom:283.165400pt;}
.y172{bottom:283.169200pt;}
.y8b{bottom:283.170467pt;}
.y10b{bottom:283.180067pt;}
.y1d2{bottom:283.181467pt;}
.y186{bottom:283.183733pt;}
.y1e3{bottom:283.191067pt;}
.y4b{bottom:283.192800pt;}
.y1c0{bottom:283.194867pt;}
.y23d{bottom:283.246067pt;}
.y224{bottom:283.253400pt;}
.y1f8{bottom:284.255800pt;}
.y2c4{bottom:285.775733pt;}
.y2a2{bottom:285.777200pt;}
.ydc{bottom:286.019133pt;}
.y2a{bottom:286.505867pt;}
.yf2{bottom:287.565800pt;}
.y279{bottom:288.921867pt;}
.y258{bottom:292.516800pt;}
.y124{bottom:294.614067pt;}
.y29{bottom:297.833867pt;}
.y15a{bottom:298.800800pt;}
.y6f{bottom:298.803067pt;}
.y171{bottom:298.806867pt;}
.y8a{bottom:298.808133pt;}
.y10a{bottom:298.817733pt;}
.y1d1{bottom:298.819133pt;}
.y185{bottom:298.821400pt;}
.y1e2{bottom:298.828733pt;}
.y4a{bottom:298.830467pt;}
.y1bf{bottom:298.832533pt;}
.y20b{bottom:298.836067pt;}
.yaa{bottom:298.839733pt;}
.y23c{bottom:298.883733pt;}
.y223{bottom:298.891067pt;}
.y1f7{bottom:299.944800pt;}
.ydb{bottom:300.228133pt;}
.y2d0{bottom:300.281067pt;}
.y2a1{bottom:300.282400pt;}
.y2c3{bottom:300.283733pt;}
.yf1{bottom:301.774800pt;}
.y278{bottom:303.772800pt;}
.y257{bottom:307.024800pt;}
.y28{bottom:309.161867pt;}
.y123{bottom:310.251733pt;}
.y145{bottom:314.218400pt;}
.y1b4{bottom:314.440400pt;}
.y6e{bottom:314.440733pt;}
.y170{bottom:314.444533pt;}
.y89{bottom:314.445800pt;}
.yc2{bottom:314.448067pt;}
.y109{bottom:314.455400pt;}
.y1d0{bottom:314.456800pt;}
.y184{bottom:314.459067pt;}
.y159{bottom:314.460467pt;}
.y1e1{bottom:314.466400pt;}
.y49{bottom:314.468133pt;}
.y1be{bottom:314.470200pt;}
.y20a{bottom:314.473733pt;}
.ya9{bottom:314.477400pt;}
.y23b{bottom:314.521400pt;}
.y222{bottom:314.528733pt;}
.y2c2{bottom:314.789067pt;}
.y2a0{bottom:314.790400pt;}
.y1f6{bottom:315.582467pt;}
.yf0{bottom:315.983800pt;}
.y277{bottom:318.618800pt;}
.y27{bottom:320.489867pt;}
.y256{bottom:321.532800pt;}
.y122{bottom:325.889400pt;}
.y144{bottom:328.427400pt;}
.y29f{bottom:329.295733pt;}
.y2c1{bottom:329.297067pt;}
.y1a0{bottom:330.078400pt;}
.y16f{bottom:330.082200pt;}
.yc1{bottom:330.085733pt;}
.y88{bottom:330.090800pt;}
.y108{bottom:330.093067pt;}
.y1cf{bottom:330.094467pt;}
.y183{bottom:330.096733pt;}
.y158{bottom:330.098133pt;}
.y6d{bottom:330.100400pt;}
.y1e0{bottom:330.104067pt;}
.y48{bottom:330.105800pt;}
.y1bd{bottom:330.107867pt;}
.y209{bottom:330.111400pt;}
.ya8{bottom:330.115067pt;}
.yda{bottom:330.118867pt;}
.y23a{bottom:330.159067pt;}
.y221{bottom:330.166400pt;}
.yef{bottom:330.192800pt;}
.y1f5{bottom:331.220133pt;}
.y26{bottom:331.817867pt;}
.y276{bottom:333.469733pt;}
.y255{bottom:336.040800pt;}
.y121{bottom:341.527067pt;}
.y143{bottom:342.636400pt;}
.y25{bottom:343.145867pt;}
.y2c0{bottom:343.802400pt;}
.y29e{bottom:343.803733pt;}
.yee{bottom:344.401800pt;}
.yc0{bottom:345.723400pt;}
.y87{bottom:345.728467pt;}
.y107{bottom:345.730733pt;}
.y1ce{bottom:345.732133pt;}
.y182{bottom:345.734400pt;}
.y157{bottom:345.735800pt;}
.y6c{bottom:345.738067pt;}
.y1df{bottom:345.741733pt;}
.y47{bottom:345.743467pt;}
.y16e{bottom:345.745533pt;}
.y208{bottom:345.749067pt;}
.ya7{bottom:345.752733pt;}
.yd9{bottom:345.756533pt;}
.y239{bottom:345.796733pt;}
.y220{bottom:345.804067pt;}
.y1f4{bottom:346.857800pt;}
.y275{bottom:348.318267pt;}
.y24{bottom:354.473867pt;}
.y142{bottom:356.845400pt;}
.y120{bottom:357.201400pt;}
.y29d{bottom:358.309200pt;}
.y2bf{bottom:358.310400pt;}
.yed{bottom:358.610800pt;}
.ybf{bottom:361.364733pt;}
.y106{bottom:361.368400pt;}
.y1cd{bottom:361.369800pt;}
.y181{bottom:361.372067pt;}
.y156{bottom:361.373467pt;}
.y86{bottom:361.375400pt;}
.y6b{bottom:361.375733pt;}
.y1de{bottom:361.379400pt;}
.y46{bottom:361.381133pt;}
.y16d{bottom:361.383200pt;}
.y207{bottom:361.386733pt;}
.ya6{bottom:361.390400pt;}
.yd8{bottom:361.394200pt;}
.y1b3{bottom:361.397733pt;}
.y238{bottom:361.434400pt;}
.y21f{bottom:361.441733pt;}
.y1f3{bottom:362.495467pt;}
.y274{bottom:363.164267pt;}
.y254{bottom:366.228533pt;}
.y141{bottom:371.054400pt;}
.y2cf{bottom:372.815867pt;}
.y29c{bottom:372.817200pt;}
.yec{bottom:372.819800pt;}
.y11f{bottom:372.839067pt;}
.ybe{bottom:377.002400pt;}
.y105{bottom:377.006067pt;}
.y180{bottom:377.009733pt;}
.y155{bottom:377.011133pt;}
.y85{bottom:377.013067pt;}
.y6a{bottom:377.013400pt;}
.y1dd{bottom:377.017067pt;}
.y45{bottom:377.018800pt;}
.y16c{bottom:377.020867pt;}
.y206{bottom:377.024400pt;}
.ya5{bottom:377.028067pt;}
.yd7{bottom:377.031867pt;}
.y1cc{bottom:377.035067pt;}
.y1b2{bottom:377.035400pt;}
.y237{bottom:377.072067pt;}
.y21e{bottom:377.079400pt;}
.y23{bottom:377.140533pt;}
.y273{bottom:378.015200pt;}
.y1f2{bottom:378.133133pt;}
.y140{bottom:385.263400pt;}
.yeb{bottom:387.028800pt;}
.y29b{bottom:387.322533pt;}
.y2be{bottom:387.323867pt;}
.y11e{bottom:388.476733pt;}
.y17f{bottom:392.647400pt;}
.y69{bottom:392.651067pt;}
.ybd{bottom:392.654733pt;}
.y44{bottom:392.656467pt;}
.y16b{bottom:392.658533pt;}
.y205{bottom:392.662067pt;}
.ya4{bottom:392.665733pt;}
.yd6{bottom:392.669533pt;}
.y1cb{bottom:392.672733pt;}
.y1b1{bottom:392.673067pt;}
.y154{bottom:392.688067pt;}
.y236{bottom:392.709733pt;}
.y214{bottom:392.717067pt;}
.y272{bottom:392.861200pt;}
.y1f1{bottom:393.770800pt;}
.y22{bottom:394.143200pt;}
.y13f{bottom:399.472400pt;}
.yea{bottom:401.237800pt;}
.y2bd{bottom:401.829067pt;}
.y29a{bottom:401.830533pt;}
.y11d{bottom:404.114400pt;}
.y21{bottom:405.471200pt;}
.y271{bottom:407.714667pt;}
.y84{bottom:408.288400pt;}
.y68{bottom:408.288733pt;}
.ybc{bottom:408.292400pt;}
.y43{bottom:408.294133pt;}
.y16a{bottom:408.296200pt;}
.y204{bottom:408.299733pt;}
.ya3{bottom:408.303400pt;}
.yd5{bottom:408.307200pt;}
.y1ca{bottom:408.310400pt;}
.y1b0{bottom:408.310733pt;}
.y253{bottom:408.325533pt;}
.y153{bottom:408.325733pt;}
.y17e{bottom:408.336400pt;}
.y235{bottom:408.347400pt;}
.y213{bottom:408.354733pt;}
.y1f0{bottom:409.408467pt;}
.y2ea{bottom:410.544400pt;}
.y13e{bottom:413.681400pt;}
.ye9{bottom:415.446800pt;}
.y2bc{bottom:416.335733pt;}
.y299{bottom:416.337067pt;}
.y20{bottom:416.799200pt;}
.y11c{bottom:419.752067pt;}
.y270{bottom:422.560667pt;}
.y2e9{bottom:423.342733pt;}
.ybb{bottom:423.930067pt;}
.y42{bottom:423.931800pt;}
.y169{bottom:423.933867pt;}
.y203{bottom:423.937400pt;}
.ya2{bottom:423.941067pt;}
.yd4{bottom:423.944867pt;}
.y1c9{bottom:423.948067pt;}
.y1af{bottom:423.948400pt;}
.y252{bottom:423.963200pt;}
.y152{bottom:423.963400pt;}
.y67{bottom:423.966733pt;}
.y17d{bottom:423.974067pt;}
.y234{bottom:423.985067pt;}
.y212{bottom:423.992400pt;}
.y1ef{bottom:425.046133pt;}
.y13d{bottom:427.890400pt;}
.y1f{bottom:428.127200pt;}
.ye8{bottom:429.655800pt;}
.y298{bottom:430.842400pt;}
.y2bb{bottom:430.843733pt;}
.y11b{bottom:435.389733pt;}
.y2e8{bottom:436.141067pt;}
.y26f{bottom:437.406667pt;}
.y1e{bottom:439.455200pt;}
.y1dc{bottom:439.567733pt;}
.y168{bottom:439.571533pt;}
.y202{bottom:439.575067pt;}
.ya1{bottom:439.578733pt;}
.yd3{bottom:439.582533pt;}
.y41{bottom:439.584133pt;}
.y1c8{bottom:439.585733pt;}
.y1ae{bottom:439.586067pt;}
.y104{bottom:439.597067pt;}
.y251{bottom:439.600867pt;}
.y151{bottom:439.601067pt;}
.y66{bottom:439.604400pt;}
.y17c{bottom:439.611733pt;}
.yba{bottom:439.615400pt;}
.y247{bottom:439.619200pt;}
.y233{bottom:439.622733pt;}
.y211{bottom:439.630067pt;}
.y1ee{bottom:440.683800pt;}
.y13c{bottom:442.099400pt;}
.ye7{bottom:443.864800pt;}
.y2ba{bottom:445.349067pt;}
.y297{bottom:445.350400pt;}
.y2e7{bottom:448.939400pt;}
.y1d{bottom:450.783200pt;}
.y11a{bottom:451.027400pt;}
.y26e{bottom:452.257600pt;}
.y201{bottom:455.212733pt;}
.ya0{bottom:455.216400pt;}
.yd2{bottom:455.220200pt;}
.y40{bottom:455.221800pt;}
.y1c7{bottom:455.223400pt;}
.y19f{bottom:455.223733pt;}
.y167{bottom:455.227400pt;}
.y103{bottom:455.234733pt;}
.y250{bottom:455.238533pt;}
.y150{bottom:455.238733pt;}
.y65{bottom:455.242067pt;}
.y17b{bottom:455.249400pt;}
.yb9{bottom:455.253067pt;}
.y246{bottom:455.256867pt;}
.y232{bottom:455.260400pt;}
.y83{bottom:455.267733pt;}
.y13b{bottom:456.308400pt;}
.y1ed{bottom:456.321467pt;}
.ye6{bottom:458.073800pt;}
.y296{bottom:459.855733pt;}
.y2ce{bottom:459.857067pt;}
.y2e6{bottom:461.737733pt;}
.y1c{bottom:462.111200pt;}
.y119{bottom:466.665067pt;}
.y26d{bottom:467.103600pt;}
.y200{bottom:470.850400pt;}
.y9f{bottom:470.854067pt;}
.yd1{bottom:470.857867pt;}
.y3f{bottom:470.859467pt;}
.y1c6{bottom:470.861067pt;}
.y19e{bottom:470.861400pt;}
.y166{bottom:470.865067pt;}
.y102{bottom:470.872400pt;}
.y24f{bottom:470.876200pt;}
.y64{bottom:470.879733pt;}
.y17a{bottom:470.887067pt;}
.yb8{bottom:470.890733pt;}
.y245{bottom:470.894533pt;}
.y231{bottom:470.898067pt;}
.y82{bottom:470.905400pt;}
.y1ec{bottom:471.959133pt;}
.ye5{bottom:472.282800pt;}
.y1b{bottom:473.439200pt;}
.y2dd{bottom:474.359733pt;}
.y2cd{bottom:474.362400pt;}
.y295{bottom:474.363733pt;}
.y2e5{bottom:474.536067pt;}
.y26c{bottom:481.954533pt;}
.y118{bottom:482.302733pt;}
.y1a{bottom:484.767200pt;}
.y13a{bottom:486.169800pt;}
.yd0{bottom:486.495533pt;}
.y3e{bottom:486.497133pt;}
.y19d{bottom:486.499067pt;}
.y165{bottom:486.502733pt;}
.y101{bottom:486.510067pt;}
.y9e{bottom:486.513867pt;}
.y14f{bottom:486.514067pt;}
.y63{bottom:486.517400pt;}
.y179{bottom:486.524733pt;}
.yb7{bottom:486.528400pt;}
.y199{bottom:486.532200pt;}
.y230{bottom:486.535733pt;}
.y81{bottom:486.543067pt;}
.y2e4{bottom:487.334400pt;}
.y1eb{bottom:487.596800pt;}
.y2dc{bottom:488.867733pt;}
.y294{bottom:488.869067pt;}
.y2cc{bottom:488.870400pt;}
.y19{bottom:496.095200pt;}
.y26b{bottom:496.800533pt;}
.y117{bottom:497.940400pt;}
.y2e3{bottom:500.132733pt;}
.y139{bottom:501.807467pt;}
.y1c5{bottom:502.136400pt;}
.y19c{bottom:502.136733pt;}
.y3d{bottom:502.138467pt;}
.ycf{bottom:502.140400pt;}
.y100{bottom:502.147733pt;}
.y9d{bottom:502.151533pt;}
.y14e{bottom:502.151733pt;}
.y62{bottom:502.155067pt;}
.y1db{bottom:502.158867pt;}
.y178{bottom:502.162400pt;}
.yb6{bottom:502.166067pt;}
.y198{bottom:502.169867pt;}
.y22f{bottom:502.173400pt;}
.y80{bottom:502.180733pt;}
.y1ea{bottom:503.234467pt;}
.y2b9{bottom:503.375733pt;}
.y293{bottom:503.377067pt;}
.y18{bottom:507.423200pt;}
.y26a{bottom:511.649067pt;}
.y2e2{bottom:512.931067pt;}
.y138{bottom:517.445133pt;}
.yce{bottom:517.778067pt;}
.y3c{bottom:517.779800pt;}
.yff{bottom:517.785400pt;}
.y9c{bottom:517.789200pt;}
.y61{bottom:517.792733pt;}
.y1da{bottom:517.796533pt;}
.y177{bottom:517.800067pt;}
.yb5{bottom:517.803733pt;}
.y197{bottom:517.807533pt;}
.y1ad{bottom:517.811067pt;}
.y7f{bottom:517.818400pt;}
.y292{bottom:517.882400pt;}
.y2b8{bottom:517.883733pt;}
.y17{bottom:518.751200pt;}
.y1e9{bottom:518.872133pt;}
.y2e1{bottom:525.729400pt;}
.y269{bottom:526.497467pt;}
.y116{bottom:529.233133pt;}
.y2b7{bottom:532.389200pt;}
.y291{bottom:532.390400pt;}
.y137{bottom:533.082800pt;}
.yfe{bottom:533.423067pt;}
.y3b{bottom:533.424800pt;}
.y9b{bottom:533.426867pt;}
.y60{bottom:533.430400pt;}
.y1d9{bottom:533.434200pt;}
.y164{bottom:533.437733pt;}
.yb4{bottom:533.441400pt;}
.y196{bottom:533.445200pt;}
.y1ac{bottom:533.448733pt;}
.y7e{bottom:533.456067pt;}
.y268{bottom:541.346000pt;}
.y115{bottom:543.442133pt;}
.y2e0{bottom:546.344400pt;}
.y290{bottom:546.895867pt;}
.y2b6{bottom:546.897200pt;}
.yfd{bottom:549.060733pt;}
.y3a{bottom:549.062467pt;}
.y9a{bottom:549.064533pt;}
.y5f{bottom:549.068067pt;}
.y1d8{bottom:549.071867pt;}
.y163{bottom:549.075400pt;}
.yb3{bottom:549.079067pt;}
.y195{bottom:549.082867pt;}
.y1ab{bottom:549.086400pt;}
.y7d{bottom:549.093733pt;}
.y1e8{bottom:550.171400pt;}
.y267{bottom:556.199467pt;}
.y114{bottom:557.651133pt;}
.y2b5{bottom:561.402533pt;}
.y28f{bottom:561.403867pt;}
.y136{bottom:564.380400pt;}
.y99{bottom:564.702200pt;}
.y5e{bottom:564.705733pt;}
.y39{bottom:564.707467pt;}
.yfc{bottom:564.709533pt;}
.y162{bottom:564.713067pt;}
.yb2{bottom:564.716733pt;}
.y194{bottom:564.720533pt;}
.y1aa{bottom:564.724067pt;}
.y7c{bottom:564.731400pt;}
.y16{bottom:569.183200pt;}
.y266{bottom:571.045467pt;}
.y113{bottom:571.860133pt;}
.y28e{bottom:575.909067pt;}
.y2b4{bottom:575.910533pt;}
.y135{bottom:578.589400pt;}
.y5d{bottom:580.343400pt;}
.y38{bottom:580.345133pt;}
.yfb{bottom:580.347200pt;}
.y161{bottom:580.350733pt;}
.y98{bottom:580.354400pt;}
.y193{bottom:580.358200pt;}
.y1a9{bottom:580.361733pt;}
.y7b{bottom:580.369067pt;}
.y15{bottom:581.993733pt;}
.y265{bottom:585.891467pt;}
.y112{bottom:586.069133pt;}
.y2db{bottom:590.415733pt;}
.y28d{bottom:590.417067pt;}
.y134{bottom:592.798400pt;}
.yfa{bottom:595.984867pt;}
.y37{bottom:595.986467pt;}
.y160{bottom:595.988400pt;}
.y97{bottom:595.992067pt;}
.y192{bottom:595.995867pt;}
.y1a8{bottom:595.999400pt;}
.y5c{bottom:596.006733pt;}
.y111{bottom:600.278133pt;}
.y264{bottom:600.747333pt;}
.y14{bottom:603.300400pt;}
.y2b3{bottom:604.922400pt;}
.y28c{bottom:604.923733pt;}
.y133{bottom:607.007400pt;}
.y15f{bottom:611.626067pt;}
.y96{bottom:611.629733pt;}
.y191{bottom:611.633533pt;}
.y1a7{bottom:611.637067pt;}
.y36{bottom:611.638800pt;}
.y5b{bottom:611.644400pt;}
.y110{bottom:614.487133pt;}
.y263{bottom:615.593333pt;}
.y2df{bottom:619.429200pt;}
.y28b{bottom:619.430400pt;}
.y13{bottom:620.353733pt;}
.y132{bottom:621.216400pt;}
.y15e{bottom:627.263733pt;}
.y95{bottom:627.267400pt;}
.y190{bottom:627.271200pt;}
.y1a6{bottom:627.274733pt;}
.y35{bottom:627.276467pt;}
.y5a{bottom:627.282067pt;}
.y10f{bottom:628.696133pt;}
.y262{bottom:630.439333pt;}
.y28a{bottom:633.933067pt;}
.y2b2{bottom:633.934400pt;}
.y2da{bottom:633.935867pt;}
.y2cb{bottom:633.937200pt;}
.y131{bottom:635.425400pt;}
.y12{bottom:637.407067pt;}
.y1ba{bottom:642.905067pt;}
.y18f{bottom:642.908867pt;}
.y1a5{bottom:642.912400pt;}
.y34{bottom:642.914133pt;}
.y176{bottom:642.916067pt;}
.y59{bottom:642.919733pt;}
.y261{bottom:645.285333pt;}
.y289{bottom:648.441067pt;}
.y2b1{bottom:648.442400pt;}
.y2d9{bottom:648.443867pt;}
.y130{bottom:649.634400pt;}
.y18e{bottom:658.546533pt;}
.y1a4{bottom:658.550067pt;}
.y33{bottom:658.551800pt;}
.y175{bottom:658.553733pt;}
.y58{bottom:658.557400pt;}
.y260{bottom:660.136267pt;}
.y288{bottom:662.949067pt;}
.y2b0{bottom:662.950400pt;}
.y12f{bottom:663.843400pt;}
.y11{bottom:672.113733pt;}
.y1ff{bottom:674.187733pt;}
.y174{bottom:674.191400pt;}
.y32{bottom:674.195067pt;}
.y25f{bottom:674.982267pt;}
.y2ca{bottom:677.454400pt;}
.y2af{bottom:677.455733pt;}
.y287{bottom:677.457067pt;}
.y12e{bottom:678.052400pt;}
.y10{bottom:689.167067pt;}
.y57{bottom:689.832733pt;}
.y286{bottom:691.962400pt;}
.y12d{bottom:692.261400pt;}
.y31{bottom:705.470400pt;}
.yf{bottom:706.220400pt;}
.y12c{bottom:706.470400pt;}
.y30{bottom:739.846400pt;}
.yc{bottom:742.513600pt;}
.y2{bottom:760.624800pt;}
.ye{bottom:771.452267pt;}
.yd{bottom:783.452267pt;}
.h18{height:27.208171pt;}
.h6{height:27.477333pt;}
.h12{height:27.858724pt;}
.h8{height:31.402667pt;}
.h1f{height:33.740000pt;}
.h4{height:34.122667pt;}
.h5{height:36.560000pt;}
.he{height:37.812500pt;}
.hc{height:38.270833pt;}
.h7{height:39.552000pt;}
.hd{height:39.708333pt;}
.hf{height:40.662760pt;}
.h14{height:41.858724pt;}
.h13{height:41.878724pt;}
.h16{height:41.898724pt;}
.h20{height:43.260000pt;}
.h2{height:45.446615pt;}
.h19{height:46.083984pt;}
.h1a{height:46.632445pt;}
.h15{height:46.642578pt;}
.h1c{height:46.647378pt;}
.h1b{height:46.647911pt;}
.h1d{height:46.648445pt;}
.h1e{height:46.653245pt;}
.ha{height:47.265625pt;}
.hb{height:47.838542pt;}
.h9{height:49.635417pt;}
.h17{height:50.810547pt;}
.h11{height:51.426432pt;}
.h10{height:53.358073pt;}
.h3{height:132.128785pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x10{left:83.149600pt;}
.x1{left:95.243067pt;}
.x13{left:102.047333pt;}
.x12{left:105.824933pt;}
.x18{left:109.320800pt;}
.xf{left:110.359200pt;}
.x14{left:114.141733pt;}
.x3{left:117.913680pt;}
.x19{left:121.696533pt;}
.x8{left:130.429067pt;}
.x17{left:134.304933pt;}
.xb{left:143.055733pt;}
.x16{left:146.399467pt;}
.x4{left:148.716400pt;}
.x5{left:153.716400pt;}
.x15{left:165.301467pt;}
.x7{left:194.869067pt;}
.x9{left:196.735733pt;}
.xa{left:216.389067pt;}
.xc{left:267.895733pt;}
.xd{left:363.109067pt;}
.x6{left:369.364667pt;}
.xe{left:374.668533pt;}
.x11{left:380.446400pt;}
.x2{left:462.814000pt;}
}




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