
    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_3cb1e07fd85b1204c5ada18d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fc4864f21f80185f30721e3f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_6a6ac94dde6883c29ebbdfe7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.203000;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_11f948d5ab6234c61e159acb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_6ad522a13d7d22ed5c779a49.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d01c3212b1a4d37376f4574f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_1283891fa29746a0994ee1c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.268000;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_f47329cce88a15dfd68e431c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.719000;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_147111102afee8b0aebe81ac.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.349000;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_80e3d0baa9d32787818ea538.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.200885;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_41ca034976ee25b323915639.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.362000;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_9c61e87a7e9edc1c190439d0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.384000;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_83aa317acb134c87d1f79bbd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_154b15e207135cf392a9fb4e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.399963px;}
.v8{vertical-align:-18.359985px;}
.v6{vertical-align:-17.339996px;}
.va{vertical-align:-15.299927px;}
.v4{vertical-align:-10.800018px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:15.194930px;}
.v7{vertical-align:17.291996px;}
.v3{vertical-align:18.299985px;}
.v1{vertical-align:20.399963px;}
.v5{vertical-align:29.168098px;}
.lsdc{letter-spacing:-2.520000px;}
.lsc4{letter-spacing:-2.106000px;}
.ls72{letter-spacing:-1.512000px;}
.lsf9{letter-spacing:-1.440000px;}
.ls67{letter-spacing:-1.350000px;}
.lsfa{letter-spacing:-1.305000px;}
.ls31{letter-spacing:-1.260000px;}
.ls73{letter-spacing:-1.188000px;}
.ls90{letter-spacing:-1.080000px;}
.ls6a{letter-spacing:-1.026000px;}
.lsa4{letter-spacing:-0.972000px;}
.lsa5{letter-spacing:-0.918000px;}
.ls4f{letter-spacing:-0.864000px;}
.ls55{letter-spacing:-0.810000px;}
.ls8d{letter-spacing:-0.756000px;}
.lsf6{letter-spacing:-0.720000px;}
.ls35{letter-spacing:-0.702000px;}
.lse0{letter-spacing:-0.675000px;}
.lsda{letter-spacing:-0.630000px;}
.ls7d{letter-spacing:-0.594000px;}
.lsf8{letter-spacing:-0.585000px;}
.ls6b{letter-spacing:-0.540000px;}
.lsd9{letter-spacing:-0.495000px;}
.ls37{letter-spacing:-0.486000px;}
.lse1{letter-spacing:-0.450000px;}
.lsf1{letter-spacing:-0.405000px;}
.ls56{letter-spacing:-0.378000px;}
.lsde{letter-spacing:-0.360000px;}
.lsc2{letter-spacing:-0.351000px;}
.ls68{letter-spacing:-0.324000px;}
.lsdb{letter-spacing:-0.315000px;}
.ls6e{letter-spacing:-0.270000px;}
.ls8e{letter-spacing:-0.245700px;}
.lsa6{letter-spacing:-0.240000px;}
.lsf7{letter-spacing:-0.225000px;}
.ls51{letter-spacing:-0.216000px;}
.ls69{letter-spacing:-0.210600px;}
.ls93{letter-spacing:-0.180000px;}
.ls91{letter-spacing:-0.175500px;}
.ls34{letter-spacing:-0.162000px;}
.ls50{letter-spacing:-0.140400px;}
.lsf4{letter-spacing:-0.135000px;}
.lsd7{letter-spacing:-0.120000px;}
.ls32{letter-spacing:-0.108000px;}
.ls4e{letter-spacing:-0.105300px;}
.lsf5{letter-spacing:-0.090000px;}
.ls63{letter-spacing:-0.070200px;}
.ls6c{letter-spacing:-0.060000px;}
.ls36{letter-spacing:-0.054000px;}
.lsf3{letter-spacing:-0.045000px;}
.ls4d{letter-spacing:-0.035100px;}
.ls30{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.000085px;}
.lseb{letter-spacing:0.000192px;}
.ls7{letter-spacing:0.011700px;}
.ls4{letter-spacing:0.013040px;}
.ls3{letter-spacing:0.013223px;}
.ls2{letter-spacing:0.013772px;}
.ls6{letter-spacing:0.013956px;}
.lsad{letter-spacing:0.014549px;}
.ls5{letter-spacing:0.022858px;}
.lscc{letter-spacing:0.029250px;}
.ls2c{letter-spacing:0.031647px;}
.ls83{letter-spacing:0.032410px;}
.ls4a{letter-spacing:0.034874px;}
.ls47{letter-spacing:0.035100px;}
.lsba{letter-spacing:0.036304px;}
.lsbb{letter-spacing:0.036762px;}
.lsb4{letter-spacing:0.037753px;}
.lscd{letter-spacing:0.041895px;}
.lscb{letter-spacing:0.045000px;}
.ls2e{letter-spacing:0.049775px;}
.ls2b{letter-spacing:0.051000px;}
.ls9a{letter-spacing:0.053999px;}
.ls33{letter-spacing:0.054000px;}
.lse2{letter-spacing:0.058500px;}
.ls48{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.062453px;}
.lsb{letter-spacing:0.068931px;}
.lsc9{letter-spacing:0.069023px;}
.ls3d{letter-spacing:0.070198px;}
.ls9{letter-spacing:0.070200px;}
.ls3e{letter-spacing:0.073805px;}
.ls2a{letter-spacing:0.075593px;}
.lsc{letter-spacing:0.075636px;}
.ls8c{letter-spacing:0.079835px;}
.lse3{letter-spacing:0.083416px;}
.lse4{letter-spacing:0.090000px;}
.ls27{letter-spacing:0.090158px;}
.lsb3{letter-spacing:0.091796px;}
.ls8b{letter-spacing:0.095347px;}
.lsc8{letter-spacing:0.097014px;}
.ls2d{letter-spacing:0.102000px;}
.ls19{letter-spacing:0.105300px;}
.lsc7{letter-spacing:0.107999px;}
.ls8{letter-spacing:0.108000px;}
.ls84{letter-spacing:0.108001px;}
.ls80{letter-spacing:0.110666px;}
.lsab{letter-spacing:0.120000px;}
.lse5{letter-spacing:0.121520px;}
.ls71{letter-spacing:0.124779px;}
.ls1a{letter-spacing:0.126870px;}
.ls1c{letter-spacing:0.127511px;}
.ls42{letter-spacing:0.127891px;}
.ls74{letter-spacing:0.128717px;}
.lsd3{letter-spacing:0.135000px;}
.ls65{letter-spacing:0.140400px;}
.lsd0{letter-spacing:0.146250px;}
.ls70{letter-spacing:0.148866px;}
.ls6f{letter-spacing:0.149415px;}
.lsd1{letter-spacing:0.150939px;}
.ls28{letter-spacing:0.151032px;}
.ls38{letter-spacing:0.153000px;}
.ls1b{letter-spacing:0.162000px;}
.lsc6{letter-spacing:0.167400px;}
.lsbf{letter-spacing:0.171287px;}
.lsbe{letter-spacing:0.171471px;}
.lsbc{letter-spacing:0.171654px;}
.lsbd{letter-spacing:0.172203px;}
.lsd{letter-spacing:0.175500px;}
.lsd6{letter-spacing:0.180000px;}
.lsee{letter-spacing:0.180063px;}
.ls7f{letter-spacing:0.186858px;}
.ls10{letter-spacing:0.187950px;}
.ls79{letter-spacing:0.196899px;}
.lsed{letter-spacing:0.196993px;}
.ls77{letter-spacing:0.203303px;}
.lsec{letter-spacing:0.204749px;}
.ls1e{letter-spacing:0.210600px;}
.lse{letter-spacing:0.211766px;}
.ls11{letter-spacing:0.212407px;}
.ls43{letter-spacing:0.216000px;}
.lsd4{letter-spacing:0.218552px;}
.lsaa{letter-spacing:0.221381px;}
.lsd2{letter-spacing:0.225000px;}
.ls49{letter-spacing:0.230403px;}
.ls66{letter-spacing:0.235254px;}
.ls8a{letter-spacing:0.237122px;}
.ls96{letter-spacing:0.238304px;}
.lsa0{letter-spacing:0.238770px;}
.lsb0{letter-spacing:0.240000px;}
.ls53{letter-spacing:0.245700px;}
.ls1f{letter-spacing:0.250910px;}
.ls29{letter-spacing:0.255000px;}
.ls9c{letter-spacing:0.261009px;}
.ls41{letter-spacing:0.269981px;}
.lsf{letter-spacing:0.270000px;}
.lsc0{letter-spacing:0.275402px;}
.ls13{letter-spacing:0.280800px;}
.ls16{letter-spacing:0.288085px;}
.ls7e{letter-spacing:0.296250px;}
.ls9b{letter-spacing:0.300000px;}
.ls78{letter-spacing:0.302373px;}
.ls2f{letter-spacing:0.306000px;}
.lsdf{letter-spacing:0.315000px;}
.ls60{letter-spacing:0.315900px;}
.lsb2{letter-spacing:0.320518px;}
.ls1d{letter-spacing:0.324000px;}
.ls14{letter-spacing:0.324448px;}
.ls17{letter-spacing:0.324631px;}
.ls5f{letter-spacing:0.333450px;}
.ls4b{letter-spacing:0.336533px;}
.ls20{letter-spacing:0.337163px;}
.lsa9{letter-spacing:0.345561px;}
.ls4c{letter-spacing:0.351000px;}
.lsdd{letter-spacing:0.360000px;}
.lsef{letter-spacing:0.364493px;}
.ls45{letter-spacing:0.378000px;}
.lsb9{letter-spacing:0.386098px;}
.ls21{letter-spacing:0.386100px;}
.ls25{letter-spacing:0.396484px;}
.lsa1{letter-spacing:0.399606px;}
.ls7a{letter-spacing:0.403153px;}
.lse6{letter-spacing:0.405000px;}
.ls76{letter-spacing:0.411226px;}
.ls75{letter-spacing:0.411317px;}
.ls3a{letter-spacing:0.421200px;}
.ls86{letter-spacing:0.421226px;}
.ls81{letter-spacing:0.424156px;}
.ls12{letter-spacing:0.432000px;}
.lsac{letter-spacing:0.432001px;}
.ls7b{letter-spacing:0.439072px;}
.ls3c{letter-spacing:0.440945px;}
.ls3b{letter-spacing:0.441677px;}
.ls15{letter-spacing:0.442815px;}
.ls23{letter-spacing:0.448396px;}
.ls22{letter-spacing:0.448579px;}
.lsf2{letter-spacing:0.450000px;}
.ls62{letter-spacing:0.456300px;}
.lsae{letter-spacing:0.469808px;}
.ls82{letter-spacing:0.480000px;}
.ls40{letter-spacing:0.486000px;}
.lsb8{letter-spacing:0.489501px;}
.lsb5{letter-spacing:0.491399px;}
.lsd8{letter-spacing:0.495000px;}
.ls99{letter-spacing:0.523803px;}
.lsaf{letter-spacing:0.523813px;}
.lsb6{letter-spacing:0.537006px;}
.ls87{letter-spacing:0.539999px;}
.ls3f{letter-spacing:0.540000px;}
.ls54{letter-spacing:0.561600px;}
.lse9{letter-spacing:0.585000px;}
.lsc5{letter-spacing:0.593998px;}
.ls26{letter-spacing:0.594000px;}
.ls5e{letter-spacing:0.600000px;}
.ls24{letter-spacing:0.610906px;}
.lsfb{letter-spacing:0.630000px;}
.ls9e{letter-spacing:0.637203px;}
.ls18{letter-spacing:0.648000px;}
.ls85{letter-spacing:0.660000px;}
.ls98{letter-spacing:0.664245px;}
.lsce{letter-spacing:0.675000px;}
.lsd5{letter-spacing:0.679537px;}
.ls52{letter-spacing:0.702000px;}
.lsb7{letter-spacing:0.752446px;}
.ls5a{letter-spacing:0.756000px;}
.lsea{letter-spacing:0.765000px;}
.lsb1{letter-spacing:0.772191px;}
.lsc3{letter-spacing:0.780000px;}
.ls8f{letter-spacing:0.807300px;}
.lsca{letter-spacing:0.809999px;}
.ls58{letter-spacing:0.810000px;}
.ls95{letter-spacing:0.863998px;}
.ls46{letter-spacing:0.864000px;}
.ls88{letter-spacing:0.864001px;}
.ls9f{letter-spacing:0.885648px;}
.ls89{letter-spacing:0.891000px;}
.ls57{letter-spacing:0.918000px;}
.lse8{letter-spacing:0.945000px;}
.ls9d{letter-spacing:0.972000px;}
.lse7{letter-spacing:0.985505px;}
.ls6d{letter-spacing:1.026000px;}
.ls5c{letter-spacing:1.080000px;}
.ls5b{letter-spacing:1.134000px;}
.lsc1{letter-spacing:1.188000px;}
.ls64{letter-spacing:1.242000px;}
.lsa8{letter-spacing:1.350000px;}
.lsa2{letter-spacing:1.355382px;}
.ls59{letter-spacing:1.380000px;}
.lscf{letter-spacing:1.394999px;}
.ls61{letter-spacing:1.404000px;}
.lsa7{letter-spacing:1.447271px;}
.ls5d{letter-spacing:1.512000px;}
.ls97{letter-spacing:1.863000px;}
.ls94{letter-spacing:1.890000px;}
.lsa3{letter-spacing:1.920000px;}
.ls0{letter-spacing:2.592000px;}
.ls39{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls92{letter-spacing:4.620000px;}
.lsf0{letter-spacing:4.920000px;}
.ls7c{letter-spacing:6.120000px;}
.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;}
}
.ws1{word-spacing:-15.067500px;}
.ws23{word-spacing:-14.700000px;}
.ws2d{word-spacing:-13.596000px;}
.ws2e{word-spacing:-13.500000px;}
.ws2f{word-spacing:-13.176000px;}
.ws96{word-spacing:-13.014000px;}
.ws84{word-spacing:-12.960000px;}
.ws7d{word-spacing:-12.690000px;}
.ws87{word-spacing:-12.636000px;}
.ws5{word-spacing:-12.582000px;}
.ws30{word-spacing:-12.528000px;}
.ws0{word-spacing:-12.480000px;}
.ws67{word-spacing:-12.474000px;}
.ws7b{word-spacing:-12.420000px;}
.ws76{word-spacing:-12.366000px;}
.ws2{word-spacing:-12.360000px;}
.ws68{word-spacing:-12.312000px;}
.ws7{word-spacing:-12.258000px;}
.wsd8{word-spacing:-12.204000px;}
.ws63{word-spacing:-12.150000px;}
.ws4a{word-spacing:-12.096000px;}
.ws94{word-spacing:-12.042000px;}
.ws78{word-spacing:-11.988000px;}
.ws85{word-spacing:-11.880000px;}
.ws65{word-spacing:-11.826000px;}
.ws9{word-spacing:-11.772000px;}
.wsd9{word-spacing:-11.718000px;}
.ws7a{word-spacing:-11.610000px;}
.ws9f{word-spacing:-11.502000px;}
.ws86{word-spacing:-11.448000px;}
.ws28{word-spacing:-11.394000px;}
.ws79{word-spacing:-11.286000px;}
.ws70{word-spacing:-11.178000px;}
.ws61{word-spacing:-10.908000px;}
.wsa3{word-spacing:-10.440000px;}
.wsc8{word-spacing:-10.350000px;}
.wsc2{word-spacing:-10.305000px;}
.wsa1{word-spacing:-10.215000px;}
.wsbf{word-spacing:-10.170000px;}
.wsa5{word-spacing:-10.125000px;}
.wsa4{word-spacing:-9.990000px;}
.wsa6{word-spacing:-9.900000px;}
.wsbb{word-spacing:-9.855000px;}
.wsbe{word-spacing:-9.765000px;}
.wsce{word-spacing:-9.720000px;}
.wsa2{word-spacing:-9.675000px;}
.wsbc{word-spacing:-9.630000px;}
.wsbd{word-spacing:-9.585000px;}
.wsc1{word-spacing:-9.225000px;}
.wsc0{word-spacing:-9.000000px;}
.wsc3{word-spacing:-8.955000px;}
.ws6{word-spacing:-8.775000px;}
.ws2c{word-spacing:-8.529300px;}
.ws4b{word-spacing:-8.424000px;}
.ws51{word-spacing:-8.388900px;}
.ws2a{word-spacing:-8.353800px;}
.ws25{word-spacing:-8.318700px;}
.ws4e{word-spacing:-8.301150px;}
.ws4d{word-spacing:-8.283600px;}
.ws4f{word-spacing:-8.248500px;}
.ws2b{word-spacing:-8.213400px;}
.ws8{word-spacing:-8.178300px;}
.ws50{word-spacing:-8.143200px;}
.ws64{word-spacing:-8.108100px;}
.wsa{word-spacing:-8.073000px;}
.ws24{word-spacing:-8.037900px;}
.ws3{word-spacing:-8.034000px;}
.ws66{word-spacing:-8.002800px;}
.ws4{word-spacing:-7.967700px;}
.ws26{word-spacing:-7.932600px;}
.ws4c{word-spacing:-7.897500px;}
.ws27{word-spacing:-7.862400px;}
.ws29{word-spacing:-7.827300px;}
.ws7c{word-spacing:-7.792200px;}
.ws62{word-spacing:-7.757100px;}
.ws77{word-spacing:-7.722000px;}
.ws95{word-spacing:-7.616700px;}
.wsa0{word-spacing:-7.312500px;}
.wsb{word-spacing:-6.630000px;}
.ws72{word-spacing:-6.120000px;}
.ws45{word-spacing:-5.508000px;}
.wsc4{word-spacing:-4.920000px;}
.ws82{word-spacing:-4.620000px;}
.ws8b{word-spacing:-2.160000px;}
.ws69{word-spacing:-1.998000px;}
.ws88{word-spacing:-1.920000px;}
.ws8a{word-spacing:-1.890000px;}
.ws10{word-spacing:-1.836000px;}
.ws57{word-spacing:-1.782000px;}
.ws44{word-spacing:-1.728000px;}
.ws6a{word-spacing:-1.674000px;}
.ws5a{word-spacing:-1.620000px;}
.wsd6{word-spacing:-1.575000px;}
.ws3c{word-spacing:-1.566000px;}
.wsb2{word-spacing:-1.530000px;}
.wsd1{word-spacing:-1.485000px;}
.ws73{word-spacing:-1.458000px;}
.ws49{word-spacing:-1.404000px;}
.ws52{word-spacing:-1.380000px;}
.ws74{word-spacing:-1.350000px;}
.ws36{word-spacing:-1.296000px;}
.wsa9{word-spacing:-1.275000px;}
.ws31{word-spacing:-1.242000px;}
.ws16{word-spacing:-1.188000px;}
.wsf{word-spacing:-1.134000px;}
.wscc{word-spacing:-1.125000px;}
.ws3b{word-spacing:-1.080000px;}
.wsad{word-spacing:-1.035000px;}
.ws3e{word-spacing:-1.026000px;}
.wscf{word-spacing:-0.990000px;}
.ws47{word-spacing:-0.972000px;}
.wsd{word-spacing:-0.960000px;}
.wsd0{word-spacing:-0.945000px;}
.ws48{word-spacing:-0.918000px;}
.ws6f{word-spacing:-0.864000px;}
.wsb0{word-spacing:-0.855000px;}
.ws6d{word-spacing:-0.810000px;}
.ws9c{word-spacing:-0.780000px;}
.ws15{word-spacing:-0.756000px;}
.wsd7{word-spacing:-0.720000px;}
.ws93{word-spacing:-0.702000px;}
.wsb1{word-spacing:-0.675000px;}
.ws7f{word-spacing:-0.660000px;}
.ws11{word-spacing:-0.648000px;}
.ws5e{word-spacing:-0.600000px;}
.ws12{word-spacing:-0.594000px;}
.ws38{word-spacing:-0.540000px;}
.ws20{word-spacing:-0.510000px;}
.wsaf{word-spacing:-0.495000px;}
.ws13{word-spacing:-0.486000px;}
.ws7e{word-spacing:-0.480000px;}
.wsb8{word-spacing:-0.450000px;}
.ws1c{word-spacing:-0.432000px;}
.ws1d{word-spacing:-0.408000px;}
.wsc5{word-spacing:-0.405000px;}
.ws9d{word-spacing:-0.386100px;}
.ws19{word-spacing:-0.378000px;}
.wsb4{word-spacing:-0.360000px;}
.ws42{word-spacing:-0.324000px;}
.ws5f{word-spacing:-0.315900px;}
.wsb7{word-spacing:-0.315000px;}
.ws22{word-spacing:-0.306000px;}
.ws8e{word-spacing:-0.300000px;}
.ws14{word-spacing:-0.270000px;}
.ws9b{word-spacing:-0.240000px;}
.wsb5{word-spacing:-0.225000px;}
.ws3a{word-spacing:-0.216000px;}
.wsa8{word-spacing:-0.180000px;}
.ws41{word-spacing:-0.162000px;}
.ws1e{word-spacing:-0.153000px;}
.ws9a{word-spacing:-0.120000px;}
.ws17{word-spacing:-0.108000px;}
.ws21{word-spacing:-0.102000px;}
.ws32{word-spacing:-0.070200px;}
.ws43{word-spacing:-0.060000px;}
.ws34{word-spacing:-0.054000px;}
.ws1f{word-spacing:-0.051000px;}
.wsb9{word-spacing:-0.045000px;}
.wsc{word-spacing:0.000000px;}
.ws35{word-spacing:0.035100px;}
.wsba{word-spacing:0.045000px;}
.ws5b{word-spacing:0.054000px;}
.ws6b{word-spacing:0.060000px;}
.wsc6{word-spacing:0.090000px;}
.ws37{word-spacing:0.105300px;}
.ws33{word-spacing:0.108000px;}
.wsa7{word-spacing:0.120000px;}
.wsae{word-spacing:0.135000px;}
.ws3f{word-spacing:0.162000px;}
.ws83{word-spacing:0.180000px;}
.ws5c{word-spacing:0.216000px;}
.ws92{word-spacing:0.240000px;}
.ws39{word-spacing:0.270000px;}
.wsab{word-spacing:0.315000px;}
.ws1b{word-spacing:0.324000px;}
.wsac{word-spacing:0.360000px;}
.ws18{word-spacing:0.378000px;}
.wsca{word-spacing:0.405000px;}
.ws54{word-spacing:0.432000px;}
.wsd4{word-spacing:0.450000px;}
.ws9e{word-spacing:0.480000px;}
.ws75{word-spacing:0.486000px;}
.wsd3{word-spacing:0.495000px;}
.ws58{word-spacing:0.540000px;}
.ws3d{word-spacing:0.594000px;}
.ws91{word-spacing:0.648000px;}
.wsd2{word-spacing:0.675000px;}
.ws55{word-spacing:0.702000px;}
.wsb3{word-spacing:0.720000px;}
.ws81{word-spacing:0.756000px;}
.wsd5{word-spacing:0.765000px;}
.ws46{word-spacing:0.810000px;}
.ws6c{word-spacing:0.864000px;}
.wscd{word-spacing:0.900000px;}
.ws40{word-spacing:0.918000px;}
.wsaa{word-spacing:0.945000px;}
.ws1a{word-spacing:0.972000px;}
.ws98{word-spacing:1.026000px;}
.ws90{word-spacing:1.080000px;}
.ws8f{word-spacing:1.134000px;}
.ws8d{word-spacing:1.188000px;}
.wsc9{word-spacing:1.215000px;}
.wsda{word-spacing:1.242000px;}
.wse{word-spacing:1.260000px;}
.wsc7{word-spacing:1.395000px;}
.ws6e{word-spacing:1.404000px;}
.wscb{word-spacing:1.440000px;}
.ws59{word-spacing:1.458000px;}
.ws97{word-spacing:1.566000px;}
.ws56{word-spacing:1.674000px;}
.ws60{word-spacing:1.782000px;}
.ws80{word-spacing:1.890000px;}
.ws99{word-spacing:2.160000px;}
.ws53{word-spacing:2.214000px;}
.wsb6{word-spacing:2.430000px;}
.ws5d{word-spacing:2.538000px;}
.ws8c{word-spacing:3.402000px;}
.ws89{word-spacing:3.456000px;}
.ws71{word-spacing:16.254000px;}
._15{margin-left:-12.015000px;}
._16{margin-left:-10.665000px;}
._1{margin-left:-9.237583px;}
._3{margin-left:-7.851565px;}
._8{margin-left:-6.526334px;}
._6{margin-left:-5.340000px;}
._2{margin-left:-4.162817px;}
._4{margin-left:-3.013127px;}
._0{margin-left:-1.776017px;}
._7{width:1.599056px;}
._c{width:2.950670px;}
._a{width:4.056665px;}
._f{width:5.232000px;}
._e{width:6.239335px;}
._12{width:8.145000px;}
._10{width:10.170000px;}
._11{width:12.375000px;}
._13{width:13.455000px;}
._b{width:15.281992px;}
._14{width:17.460001px;}
._5{width:43.085930px;}
._9{width:47.587820px;}
._d{width:49.028360px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(245,130,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(206,221,228);}
.fsc{font-size:29.250000px;}
.fs7{font-size:33.150001px;}
.fs6{font-size:35.099999px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y115{bottom:66.546298px;}
.y1b2{bottom:67.829849px;}
.y30{bottom:68.307899px;}
.y76{bottom:68.572508px;}
.y1c0{bottom:69.550801px;}
.y140{bottom:70.983449px;}
.y15e{bottom:71.044803px;}
.y2d4{bottom:71.062046px;}
.y12b{bottom:73.055999px;}
.y10a{bottom:77.387117px;}
.y209{bottom:77.651704px;}
.yc0{bottom:80.053052px;}
.y243{bottom:80.650203px;}
.y283{bottom:80.819546px;}
.y114{bottom:81.544798px;}
.yd1{bottom:82.756962px;}
.y1b1{bottom:82.829855px;}
.y179{bottom:82.995467px;}
.y2f{bottom:83.313899px;}
.y84{bottom:83.418467px;}
.y75{bottom:83.571007px;}
.y2d3{bottom:83.808296px;}
.y1bf{bottom:84.549300px;}
.y13f{bottom:85.981948px;}
.y15d{bottom:86.044798px;}
.y12a{bottom:88.054498px;}
.y109{bottom:92.385616px;}
.y208{bottom:92.650203px;}
.y282{bottom:93.565796px;}
.ybf{bottom:95.051551px;}
.y242{bottom:95.648702px;}
.y113{bottom:96.543297px;}
.y2d2{bottom:96.554546px;}
.yd0{bottom:97.755462px;}
.y1b0{bottom:97.838860px;}
.y178{bottom:97.993966px;}
.y2e{bottom:98.307899px;}
.y83{bottom:98.416966px;}
.y74{bottom:98.569506px;}
.y1be{bottom:99.547799px;}
.y13e{bottom:100.980448px;}
.y15c{bottom:101.044798px;}
.y129{bottom:103.052997px;}
.y281{bottom:106.312046px;}
.y108{bottom:107.384115px;}
.y207{bottom:107.648702px;}
.y2d1{bottom:109.300797px;}
.ybe{bottom:110.050050px;}
.y241{bottom:110.651704px;}
.ycf{bottom:112.753961px;}
.y1af{bottom:112.837359px;}
.y177{bottom:112.992465px;}
.y2d{bottom:113.307899px;}
.y82{bottom:113.415465px;}
.y73{bottom:113.568005px;}
.y1bd{bottom:114.546298px;}
.y13d{bottom:115.992465px;}
.y15b{bottom:116.044798px;}
.y128{bottom:118.051496px;}
.y280{bottom:119.058296px;}
.y2d0{bottom:122.047047px;}
.y107{bottom:122.382614px;}
.y206{bottom:122.647202px;}
.ybd{bottom:125.050050px;}
.y240{bottom:125.650203px;}
.yce{bottom:127.752460px;}
.y1ae{bottom:127.835858px;}
.y176{bottom:127.990965px;}
.y2c{bottom:128.307899px;}
.y81{bottom:128.413964px;}
.y72{bottom:128.566504px;}
.y1bc{bottom:129.544798px;}
.y13c{bottom:130.990965px;}
.y15a{bottom:131.044798px;}
.y27f{bottom:131.804546px;}
.y127{bottom:133.051496px;}
.y2cf{bottom:134.864545px;}
.y106{bottom:137.381113px;}
.ybc{bottom:140.051551px;}
.y23f{bottom:140.648702px;}
.ycd{bottom:142.750959px;}
.y1ad{bottom:142.834357px;}
.y175{bottom:142.989464px;}
.y2b{bottom:143.307899px;}
.y80{bottom:143.412464px;}
.y71{bottom:143.565004px;}
.y1bb{bottom:144.544798px;}
.y27e{bottom:144.550797px;}
.y13b{bottom:145.989464px;}
.y159{bottom:146.044798px;}
.y2ce{bottom:147.610795px;}
.y126{bottom:148.051496px;}
.y205{bottom:149.715464px;}
.y120{bottom:149.821956px;}
.y105{bottom:152.379612px;}
.ybb{bottom:155.050050px;}
.y23e{bottom:155.647202px;}
.y27d{bottom:157.297047px;}
.ycc{bottom:157.749458px;}
.y1ac{bottom:157.832856px;}
.y174{bottom:157.987963px;}
.y7f{bottom:158.410963px;}
.y70{bottom:158.563503px;}
.y1ba{bottom:159.543297px;}
.y2cd{bottom:160.357045px;}
.y13a{bottom:160.987963px;}
.y158{bottom:161.044798px;}
.y2a{bottom:162.636898px;}
.y125{bottom:163.049995px;}
.y204{bottom:164.713963px;}
.y11f{bottom:164.820455px;}
.y104{bottom:167.378112px;}
.yba{bottom:170.051563px;}
.y27c{bottom:170.088295px;}
.ycb{bottom:172.747957px;}
.y1ab{bottom:172.831355px;}
.y173{bottom:172.986462px;}
.y2cc{bottom:173.103295px;}
.y7e{bottom:173.409462px;}
.y6f{bottom:173.562002px;}
.y139{bottom:175.986462px;}
.y157{bottom:176.046298px;}
.y124{bottom:178.049995px;}
.y203{bottom:179.712462px;}
.y11e{bottom:179.827959px;}
.y103{bottom:182.376611px;}
.y27b{bottom:182.834546px;}
.yb9{bottom:185.050062px;}
.y2cb{bottom:185.849545px;}
.yca{bottom:187.746457px;}
.y1aa{bottom:187.829855px;}
.y172{bottom:187.984961px;}
.y7d{bottom:188.407961px;}
.y6e{bottom:188.560501px;}
.y23d{bottom:188.648702px;}
.y138{bottom:190.984961px;}
.y156{bottom:191.044798px;}
.y202{bottom:194.710961px;}
.y11d{bottom:194.826459px;}
.y27a{bottom:195.580796px;}
.y102{bottom:197.375110px;}
.y2ca{bottom:198.595795px;}
.yb8{bottom:200.051563px;}
.yc9{bottom:202.744956px;}
.y1a9{bottom:202.828354px;}
.y171{bottom:202.983461px;}
.y7c{bottom:203.406460px;}
.y6d{bottom:203.559000px;}
.y23c{bottom:203.648702px;}
.y137{bottom:205.983461px;}
.y155{bottom:206.044798px;}
.y29{bottom:207.687313px;}
.y123{bottom:208.296298px;}
.y279{bottom:208.327046px;}
.y201{bottom:209.709461px;}
.y11c{bottom:209.824958px;}
.y1cc{bottom:210.781955px;}
.y2c9{bottom:211.342045px;}
.y101{bottom:212.373609px;}
.yb7{bottom:215.050062px;}
.yc8{bottom:217.743455px;}
.y170{bottom:217.981960px;}
.y7b{bottom:218.404960px;}
.y6c{bottom:218.557499px;}
.y23b{bottom:218.648702px;}
.y136{bottom:220.981960px;}
.y154{bottom:221.044798px;}
.y278{bottom:221.073296px;}
.y28{bottom:222.685812px;}
.y122{bottom:223.294798px;}
.y2c8{bottom:224.088295px;}
.y200{bottom:224.707960px;}
.y11b{bottom:224.823457px;}
.y1cb{bottom:225.780454px;}
.y100{bottom:227.372108px;}
.y1a8{bottom:229.887611px;}
.yb6{bottom:230.050062px;}
.yc7{bottom:232.741954px;}
.y16f{bottom:232.980459px;}
.y7a{bottom:233.403459px;}
.y6b{bottom:233.555999px;}
.y23a{bottom:233.651704px;}
.y277{bottom:233.819546px;}
.y135{bottom:235.980459px;}
.y153{bottom:236.044798px;}
.y2c7{bottom:236.834546px;}
.y27{bottom:237.685812px;}
.y121{bottom:238.293297px;}
.y1ff{bottom:239.706459px;}
.y11a{bottom:239.821956px;}
.y1ca{bottom:240.783456px;}
.yff{bottom:242.370608px;}
.y1a7{bottom:244.886111px;}
.yb5{bottom:245.054564px;}
.y276{bottom:246.565796px;}
.yc6{bottom:247.740453px;}
.y16e{bottom:247.978958px;}
.y79{bottom:248.401958px;}
.y6a{bottom:248.554498px;}
.y239{bottom:248.650203px;}
.y2c6{bottom:249.580796px;}
.y134{bottom:250.980459px;}
.y152{bottom:251.044798px;}
.y26{bottom:252.685812px;}
.y1fe{bottom:254.704958px;}
.y119{bottom:254.820455px;}
.y1c9{bottom:255.781955px;}
.yfe{bottom:257.369107px;}
.y275{bottom:259.312046px;}
.y1a6{bottom:259.884610px;}
.yb4{bottom:260.053064px;}
.y2c5{bottom:262.327046px;}
.yc5{bottom:262.738953px;}
.y78{bottom:263.400457px;}
.y69{bottom:263.552997px;}
.y238{bottom:263.648702px;}
.y133{bottom:265.978958px;}
.y151{bottom:266.044798px;}
.y25{bottom:267.687313px;}
.y1fd{bottom:269.703457px;}
.y118{bottom:269.821956px;}
.y1c8{bottom:270.780454px;}
.y274{bottom:272.058296px;}
.yfd{bottom:272.367606px;}
.y1a5{bottom:274.883109px;}
.yb3{bottom:275.051563px;}
.y2c4{bottom:275.073296px;}
.y77{bottom:278.398956px;}
.y68{bottom:278.551496px;}
.y237{bottom:278.648702px;}
.y150{bottom:281.047799px;}
.y24{bottom:282.685812px;}
.y1fc{bottom:284.701957px;}
.y273{bottom:284.804546px;}
.y117{bottom:284.820455px;}
.y1c7{bottom:285.787958px;}
.yfc{bottom:287.366105px;}
.y2c3{bottom:287.819546px;}
.y1a4{bottom:289.881608px;}
.yb2{bottom:290.050062px;}
.y67{bottom:293.557499px;}
.y236{bottom:293.647202px;}
.y14f{bottom:296.046298px;}
.y132{bottom:297.486462px;}
.y272{bottom:297.550797px;}
.y23{bottom:297.685812px;}
.y1fb{bottom:299.700456px;}
.y116{bottom:299.818954px;}
.y2c2{bottom:300.565796px;}
.y1c6{bottom:300.786458px;}
.yfb{bottom:302.364604px;}
.y1a3{bottom:304.880107px;}
.yb1{bottom:305.054564px;}
.y66{bottom:308.555999px;}
.y271{bottom:310.297047px;}
.y14e{bottom:311.044798px;}
.y131{bottom:312.484961px;}
.y22{bottom:312.685812px;}
.y2c1{bottom:313.312046px;}
.y1fa{bottom:314.698955px;}
.y1c5{bottom:315.784957px;}
.yfa{bottom:317.363104px;}
.y1a2{bottom:319.878607px;}
.yb0{bottom:320.053064px;}
.y270{bottom:323.065819px;}
.y65{bottom:323.554498px;}
.y14d{bottom:326.049323px;}
.y2c0{bottom:326.058296px;}
.y235{bottom:326.650340px;}
.y130{bottom:327.483461px;}
.y21{bottom:327.685812px;}
.y1f9{bottom:329.697454px;}
.y1c4{bottom:330.783456px;}
.yf9{bottom:332.376611px;}
.y1a1{bottom:334.878607px;}
.yaf{bottom:335.051563px;}
.y26f{bottom:335.812069px;}
.y64{bottom:338.552997px;}
.y2bf{bottom:338.804546px;}
.y14c{bottom:341.047822px;}
.y234{bottom:341.648840px;}
.y12f{bottom:342.481960px;}
.y20{bottom:342.685812px;}
.y1f8{bottom:344.713963px;}
.y1c3{bottom:345.781955px;}
.yf8{bottom:347.375110px;}
.y26e{bottom:348.558319px;}
.y1a0{bottom:349.878607px;}
.yae{bottom:350.050062px;}
.y2be{bottom:351.550797px;}
.y63{bottom:353.551496px;}
.y14b{bottom:356.046321px;}
.y233{bottom:356.653342px;}
.y12e{bottom:357.480459px;}
.y1f{bottom:357.685812px;}
.y1f7{bottom:359.712462px;}
.y1c2{bottom:360.780454px;}
.y26d{bottom:361.304569px;}
.yf7{bottom:362.373609px;}
.y2bd{bottom:364.297047px;}
.y19f{bottom:364.883109px;}
.yad{bottom:365.051540px;}
.y62{bottom:368.553020px;}
.y14a{bottom:371.044821px;}
.y232{bottom:371.651841px;}
.y12d{bottom:372.480459px;}
.y1e{bottom:372.685812px;}
.y26c{bottom:374.050819px;}
.y1f6{bottom:374.710961px;}
.y1c1{bottom:375.778954px;}
.y2bc{bottom:377.050819px;}
.yf6{bottom:377.372108px;}
.y19e{bottom:379.881608px;}
.yac{bottom:380.050039px;}
.y61{bottom:383.551519px;}
.y149{bottom:386.055326px;}
.y231{bottom:386.650340px;}
.y26b{bottom:386.797070px;}
.y12c{bottom:387.478958px;}
.y1d{bottom:387.688812px;}
.y1f5{bottom:389.709461px;}
.y2bb{bottom:389.797070px;}
.yf5{bottom:392.370608px;}
.y19d{bottom:394.880107px;}
.yab{bottom:395.051540px;}
.y60{bottom:398.551519px;}
.y26a{bottom:399.550819px;}
.y148{bottom:401.053825px;}
.y230{bottom:401.648840px;}
.y1c{bottom:402.687311px;}
.y2ba{bottom:402.723269px;}
.y1f4{bottom:404.707960px;}
.yf4{bottom:407.369107px;}
.y19c{bottom:409.878607px;}
.yaa{bottom:410.050039px;}
.y269{bottom:412.297070px;}
.y5f{bottom:413.551519px;}
.y2b9{bottom:415.469519px;}
.y147{bottom:416.052325px;}
.y22f{bottom:416.648840px;}
.y1f3{bottom:419.706459px;}
.yf3{bottom:422.367606px;}
.y19b{bottom:424.878607px;}
.ya9{bottom:425.051540px;}
.y268{bottom:425.058319px;}
.y2b8{bottom:428.215769px;}
.y5e{bottom:428.551519px;}
.y146{bottom:431.050824px;}
.y22e{bottom:431.647339px;}
.y1f2{bottom:434.704958px;}
.yf2{bottom:437.366105px;}
.y267{bottom:437.804569px;}
.y19a{bottom:439.878607px;}
.ya8{bottom:440.050039px;}
.y2b7{bottom:440.962019px;}
.y5d{bottom:443.550018px;}
.y145{bottom:446.049323px;}
.y1f1{bottom:449.703457px;}
.y1b{bottom:449.937311px;}
.y266{bottom:450.550819px;}
.yf1{bottom:452.364604px;}
.y2b6{bottom:453.708269px;}
.y199{bottom:454.877106px;}
.ya7{bottom:455.050039px;}
.y2f7{bottom:456.313526px;}
.y5c{bottom:458.550018px;}
.y144{bottom:461.047822px;}
.y265{bottom:463.297070px;}
.y22d{bottom:464.654843px;}
.y1f0{bottom:464.701957px;}
.y2b5{bottom:466.454519px;}
.y1a{bottom:466.455311px;}
.yf0{bottom:467.363104px;}
.ya6{bottom:470.050039px;}
.y2f6{bottom:471.312025px;}
.y143{bottom:476.046321px;}
.y264{bottom:476.069569px;}
.y2b4{bottom:479.200769px;}
.y22c{bottom:479.653342px;}
.y1ef{bottom:479.700456px;}
.y198{bottom:481.927221px;}
.yef{bottom:482.361603px;}
.y19{bottom:482.952311px;}
.ya5{bottom:485.050039px;}
.y2f5{bottom:486.310524px;}
.y5b{bottom:488.805326px;}
.y263{bottom:488.815819px;}
.y142{bottom:491.044821px;}
.y2b3{bottom:491.947019px;}
.y22b{bottom:494.651841px;}
.y1ee{bottom:494.698955px;}
.y197{bottom:496.931723px;}
.y18{bottom:499.449311px;}
.ya4{bottom:500.050039px;}
.y2f4{bottom:501.309023px;}
.y262{bottom:501.562069px;}
.y5a{bottom:503.803825px;}
.y2b2{bottom:504.693269px;}
.y141{bottom:506.043320px;}
.y22a{bottom:509.650340px;}
.y1ed{bottom:509.697454px;}
.y196{bottom:511.930223px;}
.y261{bottom:514.308319px;}
.yee{bottom:514.857906px;}
.ya3{bottom:515.048538px;}
.y17{bottom:515.946311px;}
.y2f3{bottom:516.307522px;}
.y2b1{bottom:517.439520px;}
.y59{bottom:518.802325px;}
.y229{bottom:524.648840px;}
.y1ec{bottom:524.697454px;}
.y195{bottom:526.928722px;}
.y260{bottom:527.054569px;}
.yed{bottom:529.856405px;}
.y2b0{bottom:530.185770px;}
.y2f2{bottom:531.306022px;}
.y16{bottom:532.443311px;}
.y58{bottom:533.800824px;}
.y228{bottom:539.648840px;}
.y1eb{bottom:539.695953px;}
.y25f{bottom:539.800819px;}
.y194{bottom:541.927221px;}
.y2af{bottom:542.932020px;}
.yec{bottom:544.857906px;}
.ya2{bottom:545.185220px;}
.y2f1{bottom:546.304521px;}
.y57{bottom:548.799323px;}
.y15{bottom:548.940311px;}
.y25e{bottom:552.547070px;}
.y227{bottom:554.648840px;}
.y2ae{bottom:555.678270px;}
.y193{bottom:556.925720px;}
.yeb{bottom:559.856405px;}
.ya1{bottom:560.183719px;}
.y2f0{bottom:561.303020px;}
.y56{bottom:563.797822px;}
.y25d{bottom:565.293320px;}
.y14{bottom:565.437311px;}
.y16d{bottom:566.659927px;}
.y1ea{bottom:566.762578px;}
.y2ad{bottom:568.424520px;}
.y226{bottom:569.647339px;}
.y192{bottom:571.925720px;}
.yea{bottom:574.871413px;}
.ya0{bottom:575.182218px;}
.y2ef{bottom:576.301519px;}
.y25c{bottom:578.043320px;}
.y55{bottom:578.796321px;}
.y2ac{bottom:581.170770px;}
.y16c{bottom:581.658427px;}
.y1e9{bottom:581.761077px;}
.y13{bottom:581.949311px;}
.ye9{bottom:589.869912px;}
.y9f{bottom:590.180717px;}
.y2ee{bottom:591.300018px;}
.y54{bottom:593.794821px;}
.y2ab{bottom:593.917020px;}
.y16b{bottom:596.656926px;}
.y1e8{bottom:596.759576px;}
.y12{bottom:598.446311px;}
.y191{bottom:598.934725px;}
.y225{bottom:602.660846px;}
.ye8{bottom:604.868411px;}
.y9e{bottom:605.179217px;}
.y2aa{bottom:606.663270px;}
.y53{bottom:608.794821px;}
.y25b{bottom:611.049320px;}
.y16a{bottom:611.655425px;}
.y1e7{bottom:611.758075px;}
.y2ed{bottom:613.056022px;}
.y190{bottom:613.933224px;}
.y11{bottom:614.943311px;}
.y224{bottom:617.659345px;}
.y2a9{bottom:619.409520px;}
.ye7{bottom:619.866911px;}
.y9d{bottom:620.177716px;}
.y52{bottom:623.797822px;}
.y25a{bottom:626.043320px;}
.y169{bottom:626.653924px;}
.y1e6{bottom:626.756574px;}
.y2ec{bottom:628.054521px;}
.y18f{bottom:628.931723px;}
.y10{bottom:631.440311px;}
.y2a8{bottom:632.155771px;}
.y223{bottom:632.657845px;}
.ye6{bottom:634.865410px;}
.y9c{bottom:635.176215px;}
.y51{bottom:638.796321px;}
.y168{bottom:641.652423px;}
.y1e5{bottom:641.755074px;}
.y18e{bottom:643.930223px;}
.y2a7{bottom:644.902021px;}
.y222{bottom:647.656344px;}
.yf{bottom:647.937311px;}
.y2eb{bottom:649.803020px;}
.ye5{bottom:649.863909px;}
.y9b{bottom:650.174714px;}
.y50{bottom:653.794821px;}
.y259{bottom:653.796321px;}
.y167{bottom:656.650922px;}
.y1e4{bottom:656.753573px;}
.y2a6{bottom:657.648271px;}
.y18d{bottom:658.928722px;}
.y221{bottom:662.654843px;}
.ye{bottom:664.434311px;}
.ye4{bottom:664.862408px;}
.y9a{bottom:665.173213px;}
.y4f{bottom:668.794821px;}
.y2a5{bottom:670.394521px;}
.y2ea{bottom:671.551519px;}
.y166{bottom:671.649422px;}
.y1e3{bottom:671.752072px;}
.y18c{bottom:673.927221px;}
.y220{bottom:677.653342px;}
.ye3{bottom:679.860907px;}
.y99{bottom:680.171713px;}
.y2a4{bottom:683.140771px;}
.y258{bottom:683.793320px;}
.y4e{bottom:683.794821px;}
.y165{bottom:686.647921px;}
.y1e2{bottom:686.750571px;}
.y18b{bottom:688.927221px;}
.y21f{bottom:692.651841px;}
.y2e9{bottom:693.300018px;}
.yc{bottom:694.434310px;}
.ye2{bottom:694.859407px;}
.y98{bottom:695.192678px;}
.y2a3{bottom:695.887021px;}
.y4d{bottom:698.794821px;}
.yd{bottom:699.534302px;}
.y164{bottom:701.646420px;}
.y1e1{bottom:701.749070px;}
.y18a{bottom:703.927221px;}
.y21e{bottom:707.650340px;}
.y2e8{bottom:708.300018px;}
.y2a2{bottom:708.633271px;}
.ye1{bottom:709.857906px;}
.y97{bottom:710.191177px;}
.y257{bottom:710.803780px;}
.ya{bottom:712.434310px;}
.y4c{bottom:713.794821px;}
.y163{bottom:716.644919px;}
.y1e0{bottom:716.747569px;}
.yb{bottom:717.534302px;}
.y189{bottom:718.934725px;}
.y2a1{bottom:721.379521px;}
.y21d{bottom:722.648840px;}
.ye0{bottom:724.856405px;}
.y96{bottom:725.189677px;}
.y256{bottom:725.802279px;}
.y4b{bottom:728.796321px;}
.y9{bottom:730.434310px;}
.y162{bottom:731.643418px;}
.y1df{bottom:731.746069px;}
.y188{bottom:733.933224px;}
.y2a0{bottom:734.125771px;}
.y21c{bottom:737.647339px;}
.ydf{bottom:739.857860px;}
.y95{bottom:740.188176px;}
.y255{bottom:740.800778px;}
.y4a{bottom:743.794821px;}
.y2e7{bottom:744.360764px;}
.y161{bottom:746.641918px;}
.y1de{bottom:746.758075px;}
.y29f{bottom:746.872022px;}
.y8{bottom:748.434311px;}
.y187{bottom:748.931723px;}
.yde{bottom:754.856359px;}
.y94{bottom:755.186675px;}
.y254{bottom:755.799277px;}
.y49{bottom:758.794775px;}
.y2e6{bottom:759.360764px;}
.y29e{bottom:759.618272px;}
.y160{bottom:761.640417px;}
.y1dd{bottom:761.756574px;}
.y186{bottom:763.930223px;}
.y21b{bottom:764.707960px;}
.ydd{bottom:769.857860px;}
.y93{bottom:770.185174px;}
.y253{bottom:770.797776px;}
.y29d{bottom:772.364522px;}
.y48{bottom:773.796276px;}
.y15f{bottom:776.638916px;}
.y1dc{bottom:776.755074px;}
.y185{bottom:778.928722px;}
.y21a{bottom:779.706459px;}
.y7{bottom:781.416260px;}
.ydc{bottom:784.856359px;}
.y29c{bottom:785.110772px;}
.y92{bottom:785.183673px;}
.y252{bottom:785.796276px;}
.y2e5{bottom:788.677695px;}
.y47{bottom:788.794775px;}
.y1db{bottom:791.753573px;}
.y184{bottom:793.927221px;}
.y219{bottom:794.704958px;}
.y29b{bottom:797.857022px;}
.ydb{bottom:799.856359px;}
.y91{bottom:800.182172px;}
.y251{bottom:800.794775px;}
.y2e4{bottom:803.676194px;}
.y46{bottom:803.794775px;}
.y1da{bottom:806.752072px;}
.y183{bottom:808.927221px;}
.y218{bottom:809.703457px;}
.y29a{bottom:810.603272px;}
.yda{bottom:814.859361px;}
.y90{bottom:815.180672px;}
.y250{bottom:815.803780px;}
.y2e3{bottom:818.674694px;}
.y45{bottom:818.794775px;}
.y1d9{bottom:821.750571px;}
.y299{bottom:823.349522px;}
.y182{bottom:823.927221px;}
.y217{bottom:824.701957px;}
.y6{bottom:826.422262px;}
.yd9{bottom:829.857860px;}
.y8f{bottom:830.179171px;}
.y24f{bottom:830.802279px;}
.y2e2{bottom:833.673193px;}
.y44{bottom:833.794775px;}
.y298{bottom:836.095772px;}
.y1d8{bottom:836.749070px;}
.y181{bottom:838.927221px;}
.y216{bottom:839.700456px;}
.yd8{bottom:844.856359px;}
.y8e{bottom:845.177670px;}
.y24e{bottom:845.800778px;}
.y2e1{bottom:848.671692px;}
.y43{bottom:848.794775px;}
.y297{bottom:848.842022px;}
.y1d7{bottom:851.747569px;}
.y180{bottom:853.927221px;}
.y215{bottom:854.698955px;}
.yd7{bottom:859.862362px;}
.y8d{bottom:860.176169px;}
.y24d{bottom:860.799277px;}
.y296{bottom:861.588273px;}
.y2e0{bottom:863.671692px;}
.y42{bottom:863.794775px;}
.y1d6{bottom:866.746069px;}
.y17f{bottom:868.931723px;}
.y214{bottom:869.697454px;}
.y5{bottom:871.428264px;}
.y295{bottom:874.334523px;}
.yd6{bottom:874.860862px;}
.y8c{bottom:875.174668px;}
.y24c{bottom:875.797776px;}
.y41{bottom:878.794775px;}
.y1d5{bottom:881.746069px;}
.y17e{bottom:883.930223px;}
.y213{bottom:884.695953px;}
.y294{bottom:887.080773px;}
.yd5{bottom:889.859361px;}
.y8b{bottom:890.173168px;}
.y24b{bottom:890.796276px;}
.y2df{bottom:892.991579px;}
.y40{bottom:893.799277px;}
.y1d4{bottom:896.746069px;}
.y17d{bottom:898.928722px;}
.y293{bottom:899.827023px;}
.yd4{bottom:904.857860px;}
.y8a{bottom:905.171667px;}
.y24a{bottom:905.794775px;}
.y2de{bottom:907.990078px;}
.y3f{bottom:908.797776px;}
.y1d3{bottom:911.744568px;}
.y212{bottom:911.753573px;}
.y292{bottom:912.573273px;}
.y17c{bottom:913.927221px;}
.y4{bottom:916.434265px;}
.yd3{bottom:919.856359px;}
.y89{bottom:920.171667px;}
.y249{bottom:920.793274px;}
.y2dd{bottom:922.988578px;}
.y3e{bottom:923.796276px;}
.y291{bottom:925.319523px;}
.y31{bottom:926.409576px;}
.y211{bottom:926.752072px;}
.y17b{bottom:928.927221px;}
.yd2{bottom:934.854858px;}
.y88{bottom:935.170166px;}
.y2dc{bottom:937.987077px;}
.y290{bottom:938.065773px;}
.y3d{bottom:938.794775px;}
.y1d2{bottom:938.797776px;}
.y210{bottom:941.750571px;}
.y17a{bottom:943.925720px;}
.y28f{bottom:950.812023px;}
.y2db{bottom:952.985576px;}
.y3c{bottom:953.794775px;}
.y1d1{bottom:953.796276px;}
.y248{bottom:953.805280px;}
.y20f{bottom:956.749070px;}
.y28e{bottom:963.558273px;}
.y87{bottom:965.295024px;}
.y2da{bottom:967.984075px;}
.y3b{bottom:968.794775px;}
.y247{bottom:968.803780px;}
.y20e{bottom:971.747569px;}
.y28d{bottom:976.304524px;}
.y86{bottom:980.293524px;}
.y2d9{bottom:982.982574px;}
.y3a{bottom:983.794775px;}
.y1d0{bottom:983.797776px;}
.y246{bottom:983.802279px;}
.y20d{bottom:986.746069px;}
.y112{bottom:988.859361px;}
.y28c{bottom:989.050774px;}
.y85{bottom:995.292023px;}
.y2d8{bottom:997.982574px;}
.y39{bottom:998.796276px;}
.y245{bottom:998.800778px;}
.y20c{bottom:1001.744568px;}
.y28b{bottom:1001.797024px;}
.y111{bottom:1003.857860px;}
.y1b9{bottom:1003.934817px;}
.y38{bottom:1013.794775px;}
.y244{bottom:1013.799277px;}
.y28a{bottom:1014.558273px;}
.y110{bottom:1018.856359px;}
.y1b8{bottom:1018.933316px;}
.y289{bottom:1027.304524px;}
.y2d7{bottom:1027.312023px;}
.y37{bottom:1028.794775px;}
.y1cf{bottom:1028.797776px;}
.y20b{bottom:1028.799277px;}
.y10f{bottom:1033.860862px;}
.y1b7{bottom:1033.931815px;}
.y288{bottom:1040.050774px;}
.y2d6{bottom:1040.058273px;}
.y36{bottom:1043.794775px;}
.y1ce{bottom:1043.796276px;}
.y20a{bottom:1043.797776px;}
.yc4{bottom:1047.796525px;}
.y10e{bottom:1048.859361px;}
.y1b6{bottom:1048.930314px;}
.y287{bottom:1052.797024px;}
.y2d5{bottom:1052.804524px;}
.y1cd{bottom:1058.794775px;}
.y35{bottom:1058.796276px;}
.yc3{bottom:1062.795024px;}
.y10d{bottom:1063.857860px;}
.y1b5{bottom:1063.928813px;}
.y286{bottom:1065.550774px;}
.y34{bottom:1073.794775px;}
.yc2{bottom:1077.793524px;}
.y285{bottom:1078.297024px;}
.y10c{bottom:1078.856359px;}
.y1b4{bottom:1078.927313px;}
.y33{bottom:1088.793274px;}
.y284{bottom:1091.043274px;}
.yc1{bottom:1092.792023px;}
.y10b{bottom:1093.854858px;}
.y1b3{bottom:1093.925812px;}
.y32{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.he{height:23.842749px;}
.h8{height:28.050293px;}
.h18{height:35.394000px;}
.h10{height:36.681152px;}
.ha{height:38.838867px;}
.h11{height:41.134746px;}
.hf{height:41.158746px;}
.h2{height:43.140000px;}
.h9{height:43.154297px;}
.h4{height:44.218500px;}
.h19{height:44.505000px;}
.h1a{height:45.090000px;}
.h3{height:45.744000px;}
.h1e{height:45.795009px;}
.h1c{height:45.989911px;}
.h1d{height:46.020002px;}
.h1b{height:46.080000px;}
.h14{height:47.469727px;}
.h6{height:48.450256px;}
.h7{height:48.450259px;}
.hc{height:51.971985px;}
.hb{height:51.995985px;}
.hd{height:53.406000px;}
.h17{height:54.053971px;}
.h16{height:54.101997px;}
.h13{height:54.108000px;}
.h15{height:55.296000px;}
.h12{height:76.356000px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x7{left:140.952747px;}
.x4{left:233.456406px;}
.x8{left:251.452500px;}
.xc{left:300.594452px;}
.x6{left:451.270340px;}
.x5{left:508.550079px;}
.x3{left:584.586594px;}
.xa{left:816.003571px;}
.xb{left:817.278168px;}
.x9{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v2{vertical-align:-18.133301pt;}
.v8{vertical-align:-16.319987pt;}
.v6{vertical-align:-15.413330pt;}
.va{vertical-align:-13.599935pt;}
.v4{vertical-align:-9.600016pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:13.506604pt;}
.v7{vertical-align:15.370663pt;}
.v3{vertical-align:16.266654pt;}
.v1{vertical-align:18.133301pt;}
.v5{vertical-align:25.927199pt;}
.lsdc{letter-spacing:-2.240000pt;}
.lsc4{letter-spacing:-1.872000pt;}
.ls72{letter-spacing:-1.344000pt;}
.lsf9{letter-spacing:-1.280000pt;}
.ls67{letter-spacing:-1.200000pt;}
.lsfa{letter-spacing:-1.160000pt;}
.ls31{letter-spacing:-1.120000pt;}
.ls73{letter-spacing:-1.056000pt;}
.ls90{letter-spacing:-0.960000pt;}
.ls6a{letter-spacing:-0.912000pt;}
.lsa4{letter-spacing:-0.864000pt;}
.lsa5{letter-spacing:-0.816000pt;}
.ls4f{letter-spacing:-0.768000pt;}
.ls55{letter-spacing:-0.720000pt;}
.ls8d{letter-spacing:-0.672000pt;}
.lsf6{letter-spacing:-0.640000pt;}
.ls35{letter-spacing:-0.624000pt;}
.lse0{letter-spacing:-0.600000pt;}
.lsda{letter-spacing:-0.560000pt;}
.ls7d{letter-spacing:-0.528000pt;}
.lsf8{letter-spacing:-0.520000pt;}
.ls6b{letter-spacing:-0.480000pt;}
.lsd9{letter-spacing:-0.440000pt;}
.ls37{letter-spacing:-0.432000pt;}
.lse1{letter-spacing:-0.400000pt;}
.lsf1{letter-spacing:-0.360000pt;}
.ls56{letter-spacing:-0.336000pt;}
.lsde{letter-spacing:-0.320000pt;}
.lsc2{letter-spacing:-0.312000pt;}
.ls68{letter-spacing:-0.288000pt;}
.lsdb{letter-spacing:-0.280000pt;}
.ls6e{letter-spacing:-0.240000pt;}
.ls8e{letter-spacing:-0.218400pt;}
.lsa6{letter-spacing:-0.213333pt;}
.lsf7{letter-spacing:-0.200000pt;}
.ls51{letter-spacing:-0.192000pt;}
.ls69{letter-spacing:-0.187200pt;}
.ls93{letter-spacing:-0.160000pt;}
.ls91{letter-spacing:-0.156000pt;}
.ls34{letter-spacing:-0.144000pt;}
.ls50{letter-spacing:-0.124800pt;}
.lsf4{letter-spacing:-0.120000pt;}
.lsd7{letter-spacing:-0.106667pt;}
.ls32{letter-spacing:-0.096000pt;}
.ls4e{letter-spacing:-0.093600pt;}
.lsf5{letter-spacing:-0.080000pt;}
.ls63{letter-spacing:-0.062400pt;}
.ls6c{letter-spacing:-0.053333pt;}
.ls36{letter-spacing:-0.048000pt;}
.lsf3{letter-spacing:-0.040000pt;}
.ls4d{letter-spacing:-0.031200pt;}
.ls30{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.000075pt;}
.lseb{letter-spacing:0.000171pt;}
.ls7{letter-spacing:0.010400pt;}
.ls4{letter-spacing:0.011591pt;}
.ls3{letter-spacing:0.011754pt;}
.ls2{letter-spacing:0.012242pt;}
.ls6{letter-spacing:0.012405pt;}
.lsad{letter-spacing:0.012933pt;}
.ls5{letter-spacing:0.020318pt;}
.lscc{letter-spacing:0.026000pt;}
.ls2c{letter-spacing:0.028131pt;}
.ls83{letter-spacing:0.028809pt;}
.ls4a{letter-spacing:0.030999pt;}
.ls47{letter-spacing:0.031200pt;}
.lsba{letter-spacing:0.032270pt;}
.lsbb{letter-spacing:0.032677pt;}
.lsb4{letter-spacing:0.033559pt;}
.lscd{letter-spacing:0.037240pt;}
.lscb{letter-spacing:0.040000pt;}
.ls2e{letter-spacing:0.044244pt;}
.ls2b{letter-spacing:0.045333pt;}
.ls9a{letter-spacing:0.047999pt;}
.ls33{letter-spacing:0.048000pt;}
.lse2{letter-spacing:0.052000pt;}
.ls48{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.055514pt;}
.lsb{letter-spacing:0.061272pt;}
.lsc9{letter-spacing:0.061354pt;}
.ls3d{letter-spacing:0.062398pt;}
.ls9{letter-spacing:0.062400pt;}
.ls3e{letter-spacing:0.065605pt;}
.ls2a{letter-spacing:0.067193pt;}
.lsc{letter-spacing:0.067232pt;}
.ls8c{letter-spacing:0.070964pt;}
.lse3{letter-spacing:0.074147pt;}
.lse4{letter-spacing:0.080000pt;}
.ls27{letter-spacing:0.080140pt;}
.lsb3{letter-spacing:0.081596pt;}
.ls8b{letter-spacing:0.084753pt;}
.lsc8{letter-spacing:0.086234pt;}
.ls2d{letter-spacing:0.090667pt;}
.ls19{letter-spacing:0.093600pt;}
.lsc7{letter-spacing:0.095999pt;}
.ls8{letter-spacing:0.096000pt;}
.ls84{letter-spacing:0.096001pt;}
.ls80{letter-spacing:0.098369pt;}
.lsab{letter-spacing:0.106667pt;}
.lse5{letter-spacing:0.108018pt;}
.ls71{letter-spacing:0.110914pt;}
.ls1a{letter-spacing:0.112774pt;}
.ls1c{letter-spacing:0.113343pt;}
.ls42{letter-spacing:0.113681pt;}
.ls74{letter-spacing:0.114415pt;}
.lsd3{letter-spacing:0.120000pt;}
.ls65{letter-spacing:0.124800pt;}
.lsd0{letter-spacing:0.130000pt;}
.ls70{letter-spacing:0.132325pt;}
.ls6f{letter-spacing:0.132813pt;}
.lsd1{letter-spacing:0.134168pt;}
.ls28{letter-spacing:0.134251pt;}
.ls38{letter-spacing:0.136000pt;}
.ls1b{letter-spacing:0.144000pt;}
.lsc6{letter-spacing:0.148800pt;}
.lsbf{letter-spacing:0.152255pt;}
.lsbe{letter-spacing:0.152418pt;}
.lsbc{letter-spacing:0.152581pt;}
.lsbd{letter-spacing:0.153069pt;}
.lsd{letter-spacing:0.156000pt;}
.lsd6{letter-spacing:0.160000pt;}
.lsee{letter-spacing:0.160056pt;}
.ls7f{letter-spacing:0.166096pt;}
.ls10{letter-spacing:0.167067pt;}
.ls79{letter-spacing:0.175021pt;}
.lsed{letter-spacing:0.175105pt;}
.ls77{letter-spacing:0.180714pt;}
.lsec{letter-spacing:0.181999pt;}
.ls1e{letter-spacing:0.187200pt;}
.lse{letter-spacing:0.188237pt;}
.ls11{letter-spacing:0.188807pt;}
.ls43{letter-spacing:0.192000pt;}
.lsd4{letter-spacing:0.194268pt;}
.lsaa{letter-spacing:0.196783pt;}
.lsd2{letter-spacing:0.200000pt;}
.ls49{letter-spacing:0.204802pt;}
.ls66{letter-spacing:0.209115pt;}
.ls8a{letter-spacing:0.210775pt;}
.ls96{letter-spacing:0.211826pt;}
.lsa0{letter-spacing:0.212240pt;}
.lsb0{letter-spacing:0.213333pt;}
.ls53{letter-spacing:0.218400pt;}
.ls1f{letter-spacing:0.223031pt;}
.ls29{letter-spacing:0.226667pt;}
.ls9c{letter-spacing:0.232008pt;}
.ls41{letter-spacing:0.239983pt;}
.lsf{letter-spacing:0.240000pt;}
.lsc0{letter-spacing:0.244802pt;}
.ls13{letter-spacing:0.249600pt;}
.ls16{letter-spacing:0.256076pt;}
.ls7e{letter-spacing:0.263333pt;}
.ls9b{letter-spacing:0.266667pt;}
.ls78{letter-spacing:0.268776pt;}
.ls2f{letter-spacing:0.272000pt;}
.lsdf{letter-spacing:0.280000pt;}
.ls60{letter-spacing:0.280800pt;}
.lsb2{letter-spacing:0.284905pt;}
.ls1d{letter-spacing:0.288000pt;}
.ls14{letter-spacing:0.288398pt;}
.ls17{letter-spacing:0.288561pt;}
.ls5f{letter-spacing:0.296400pt;}
.ls4b{letter-spacing:0.299141pt;}
.ls20{letter-spacing:0.299701pt;}
.lsa9{letter-spacing:0.307165pt;}
.ls4c{letter-spacing:0.312000pt;}
.lsdd{letter-spacing:0.320000pt;}
.lsef{letter-spacing:0.323994pt;}
.ls45{letter-spacing:0.336000pt;}
.lsb9{letter-spacing:0.343198pt;}
.ls21{letter-spacing:0.343200pt;}
.ls25{letter-spacing:0.352430pt;}
.lsa1{letter-spacing:0.355206pt;}
.ls7a{letter-spacing:0.358358pt;}
.lse6{letter-spacing:0.360000pt;}
.ls76{letter-spacing:0.365534pt;}
.ls75{letter-spacing:0.365615pt;}
.ls3a{letter-spacing:0.374400pt;}
.ls86{letter-spacing:0.374423pt;}
.ls81{letter-spacing:0.377028pt;}
.ls12{letter-spacing:0.384000pt;}
.lsac{letter-spacing:0.384001pt;}
.ls7b{letter-spacing:0.390286pt;}
.ls3c{letter-spacing:0.391951pt;}
.ls3b{letter-spacing:0.392602pt;}
.ls15{letter-spacing:0.393613pt;}
.ls23{letter-spacing:0.398574pt;}
.ls22{letter-spacing:0.398737pt;}
.lsf2{letter-spacing:0.400000pt;}
.ls62{letter-spacing:0.405600pt;}
.lsae{letter-spacing:0.417607pt;}
.ls82{letter-spacing:0.426667pt;}
.ls40{letter-spacing:0.432000pt;}
.lsb8{letter-spacing:0.435112pt;}
.lsb5{letter-spacing:0.436799pt;}
.lsd8{letter-spacing:0.440000pt;}
.ls99{letter-spacing:0.465603pt;}
.lsaf{letter-spacing:0.465611pt;}
.lsb6{letter-spacing:0.477338pt;}
.ls87{letter-spacing:0.479999pt;}
.ls3f{letter-spacing:0.480000pt;}
.ls54{letter-spacing:0.499200pt;}
.lse9{letter-spacing:0.520000pt;}
.lsc5{letter-spacing:0.527999pt;}
.ls26{letter-spacing:0.528000pt;}
.ls5e{letter-spacing:0.533333pt;}
.ls24{letter-spacing:0.543027pt;}
.lsfb{letter-spacing:0.560000pt;}
.ls9e{letter-spacing:0.566402pt;}
.ls18{letter-spacing:0.576000pt;}
.ls85{letter-spacing:0.586667pt;}
.ls98{letter-spacing:0.590440pt;}
.lsce{letter-spacing:0.600000pt;}
.lsd5{letter-spacing:0.604033pt;}
.ls52{letter-spacing:0.624000pt;}
.lsb7{letter-spacing:0.668841pt;}
.ls5a{letter-spacing:0.672000pt;}
.lsea{letter-spacing:0.680000pt;}
.lsb1{letter-spacing:0.686392pt;}
.lsc3{letter-spacing:0.693333pt;}
.ls8f{letter-spacing:0.717600pt;}
.lsca{letter-spacing:0.719999pt;}
.ls58{letter-spacing:0.720000pt;}
.ls95{letter-spacing:0.767999pt;}
.ls46{letter-spacing:0.768000pt;}
.ls88{letter-spacing:0.768001pt;}
.ls9f{letter-spacing:0.787242pt;}
.ls89{letter-spacing:0.792000pt;}
.ls57{letter-spacing:0.816000pt;}
.lse8{letter-spacing:0.840000pt;}
.ls9d{letter-spacing:0.864000pt;}
.lse7{letter-spacing:0.876004pt;}
.ls6d{letter-spacing:0.912000pt;}
.ls5c{letter-spacing:0.960000pt;}
.ls5b{letter-spacing:1.008000pt;}
.lsc1{letter-spacing:1.056000pt;}
.ls64{letter-spacing:1.104000pt;}
.lsa8{letter-spacing:1.200000pt;}
.lsa2{letter-spacing:1.204784pt;}
.ls59{letter-spacing:1.226667pt;}
.lscf{letter-spacing:1.239999pt;}
.ls61{letter-spacing:1.248000pt;}
.lsa7{letter-spacing:1.286463pt;}
.ls5d{letter-spacing:1.344000pt;}
.ls97{letter-spacing:1.656000pt;}
.ls94{letter-spacing:1.680000pt;}
.lsa3{letter-spacing:1.706667pt;}
.ls0{letter-spacing:2.304000pt;}
.ls39{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls92{letter-spacing:4.106667pt;}
.lsf0{letter-spacing:4.373333pt;}
.ls7c{letter-spacing:5.440000pt;}
.ws1{word-spacing:-13.393333pt;}
.ws23{word-spacing:-13.066667pt;}
.ws2d{word-spacing:-12.085333pt;}
.ws2e{word-spacing:-12.000000pt;}
.ws2f{word-spacing:-11.712000pt;}
.ws96{word-spacing:-11.568000pt;}
.ws84{word-spacing:-11.520000pt;}
.ws7d{word-spacing:-11.280000pt;}
.ws87{word-spacing:-11.232000pt;}
.ws5{word-spacing:-11.184000pt;}
.ws30{word-spacing:-11.136000pt;}
.ws0{word-spacing:-11.093333pt;}
.ws67{word-spacing:-11.088000pt;}
.ws7b{word-spacing:-11.040000pt;}
.ws76{word-spacing:-10.992000pt;}
.ws2{word-spacing:-10.986667pt;}
.ws68{word-spacing:-10.944000pt;}
.ws7{word-spacing:-10.896000pt;}
.wsd8{word-spacing:-10.848000pt;}
.ws63{word-spacing:-10.800000pt;}
.ws4a{word-spacing:-10.752000pt;}
.ws94{word-spacing:-10.704000pt;}
.ws78{word-spacing:-10.656000pt;}
.ws85{word-spacing:-10.560000pt;}
.ws65{word-spacing:-10.512000pt;}
.ws9{word-spacing:-10.464000pt;}
.wsd9{word-spacing:-10.416000pt;}
.ws7a{word-spacing:-10.320000pt;}
.ws9f{word-spacing:-10.224000pt;}
.ws86{word-spacing:-10.176000pt;}
.ws28{word-spacing:-10.128000pt;}
.ws79{word-spacing:-10.032000pt;}
.ws70{word-spacing:-9.936000pt;}
.ws61{word-spacing:-9.696000pt;}
.wsa3{word-spacing:-9.280000pt;}
.wsc8{word-spacing:-9.200000pt;}
.wsc2{word-spacing:-9.160000pt;}
.wsa1{word-spacing:-9.080000pt;}
.wsbf{word-spacing:-9.040000pt;}
.wsa5{word-spacing:-9.000000pt;}
.wsa4{word-spacing:-8.880000pt;}
.wsa6{word-spacing:-8.800000pt;}
.wsbb{word-spacing:-8.760000pt;}
.wsbe{word-spacing:-8.680000pt;}
.wsce{word-spacing:-8.640000pt;}
.wsa2{word-spacing:-8.600000pt;}
.wsbc{word-spacing:-8.560000pt;}
.wsbd{word-spacing:-8.520000pt;}
.wsc1{word-spacing:-8.200000pt;}
.wsc0{word-spacing:-8.000000pt;}
.wsc3{word-spacing:-7.960000pt;}
.ws6{word-spacing:-7.800000pt;}
.ws2c{word-spacing:-7.581600pt;}
.ws4b{word-spacing:-7.488000pt;}
.ws51{word-spacing:-7.456800pt;}
.ws2a{word-spacing:-7.425600pt;}
.ws25{word-spacing:-7.394400pt;}
.ws4e{word-spacing:-7.378800pt;}
.ws4d{word-spacing:-7.363200pt;}
.ws4f{word-spacing:-7.332000pt;}
.ws2b{word-spacing:-7.300800pt;}
.ws8{word-spacing:-7.269600pt;}
.ws50{word-spacing:-7.238400pt;}
.ws64{word-spacing:-7.207200pt;}
.wsa{word-spacing:-7.176000pt;}
.ws24{word-spacing:-7.144800pt;}
.ws3{word-spacing:-7.141333pt;}
.ws66{word-spacing:-7.113600pt;}
.ws4{word-spacing:-7.082400pt;}
.ws26{word-spacing:-7.051200pt;}
.ws4c{word-spacing:-7.020000pt;}
.ws27{word-spacing:-6.988800pt;}
.ws29{word-spacing:-6.957600pt;}
.ws7c{word-spacing:-6.926400pt;}
.ws62{word-spacing:-6.895200pt;}
.ws77{word-spacing:-6.864000pt;}
.ws95{word-spacing:-6.770400pt;}
.wsa0{word-spacing:-6.500000pt;}
.wsb{word-spacing:-5.893333pt;}
.ws72{word-spacing:-5.440000pt;}
.ws45{word-spacing:-4.896000pt;}
.wsc4{word-spacing:-4.373333pt;}
.ws82{word-spacing:-4.106667pt;}
.ws8b{word-spacing:-1.920000pt;}
.ws69{word-spacing:-1.776000pt;}
.ws88{word-spacing:-1.706667pt;}
.ws8a{word-spacing:-1.680000pt;}
.ws10{word-spacing:-1.632000pt;}
.ws57{word-spacing:-1.584000pt;}
.ws44{word-spacing:-1.536000pt;}
.ws6a{word-spacing:-1.488000pt;}
.ws5a{word-spacing:-1.440000pt;}
.wsd6{word-spacing:-1.400000pt;}
.ws3c{word-spacing:-1.392000pt;}
.wsb2{word-spacing:-1.360000pt;}
.wsd1{word-spacing:-1.320000pt;}
.ws73{word-spacing:-1.296000pt;}
.ws49{word-spacing:-1.248000pt;}
.ws52{word-spacing:-1.226667pt;}
.ws74{word-spacing:-1.200000pt;}
.ws36{word-spacing:-1.152000pt;}
.wsa9{word-spacing:-1.133333pt;}
.ws31{word-spacing:-1.104000pt;}
.ws16{word-spacing:-1.056000pt;}
.wsf{word-spacing:-1.008000pt;}
.wscc{word-spacing:-1.000000pt;}
.ws3b{word-spacing:-0.960000pt;}
.wsad{word-spacing:-0.920000pt;}
.ws3e{word-spacing:-0.912000pt;}
.wscf{word-spacing:-0.880000pt;}
.ws47{word-spacing:-0.864000pt;}
.wsd{word-spacing:-0.853333pt;}
.wsd0{word-spacing:-0.840000pt;}
.ws48{word-spacing:-0.816000pt;}
.ws6f{word-spacing:-0.768000pt;}
.wsb0{word-spacing:-0.760000pt;}
.ws6d{word-spacing:-0.720000pt;}
.ws9c{word-spacing:-0.693333pt;}
.ws15{word-spacing:-0.672000pt;}
.wsd7{word-spacing:-0.640000pt;}
.ws93{word-spacing:-0.624000pt;}
.wsb1{word-spacing:-0.600000pt;}
.ws7f{word-spacing:-0.586667pt;}
.ws11{word-spacing:-0.576000pt;}
.ws5e{word-spacing:-0.533333pt;}
.ws12{word-spacing:-0.528000pt;}
.ws38{word-spacing:-0.480000pt;}
.ws20{word-spacing:-0.453333pt;}
.wsaf{word-spacing:-0.440000pt;}
.ws13{word-spacing:-0.432000pt;}
.ws7e{word-spacing:-0.426667pt;}
.wsb8{word-spacing:-0.400000pt;}
.ws1c{word-spacing:-0.384000pt;}
.ws1d{word-spacing:-0.362667pt;}
.wsc5{word-spacing:-0.360000pt;}
.ws9d{word-spacing:-0.343200pt;}
.ws19{word-spacing:-0.336000pt;}
.wsb4{word-spacing:-0.320000pt;}
.ws42{word-spacing:-0.288000pt;}
.ws5f{word-spacing:-0.280800pt;}
.wsb7{word-spacing:-0.280000pt;}
.ws22{word-spacing:-0.272000pt;}
.ws8e{word-spacing:-0.266667pt;}
.ws14{word-spacing:-0.240000pt;}
.ws9b{word-spacing:-0.213333pt;}
.wsb5{word-spacing:-0.200000pt;}
.ws3a{word-spacing:-0.192000pt;}
.wsa8{word-spacing:-0.160000pt;}
.ws41{word-spacing:-0.144000pt;}
.ws1e{word-spacing:-0.136000pt;}
.ws9a{word-spacing:-0.106667pt;}
.ws17{word-spacing:-0.096000pt;}
.ws21{word-spacing:-0.090667pt;}
.ws32{word-spacing:-0.062400pt;}
.ws43{word-spacing:-0.053333pt;}
.ws34{word-spacing:-0.048000pt;}
.ws1f{word-spacing:-0.045333pt;}
.wsb9{word-spacing:-0.040000pt;}
.wsc{word-spacing:0.000000pt;}
.ws35{word-spacing:0.031200pt;}
.wsba{word-spacing:0.040000pt;}
.ws5b{word-spacing:0.048000pt;}
.ws6b{word-spacing:0.053333pt;}
.wsc6{word-spacing:0.080000pt;}
.ws37{word-spacing:0.093600pt;}
.ws33{word-spacing:0.096000pt;}
.wsa7{word-spacing:0.106667pt;}
.wsae{word-spacing:0.120000pt;}
.ws3f{word-spacing:0.144000pt;}
.ws83{word-spacing:0.160000pt;}
.ws5c{word-spacing:0.192000pt;}
.ws92{word-spacing:0.213333pt;}
.ws39{word-spacing:0.240000pt;}
.wsab{word-spacing:0.280000pt;}
.ws1b{word-spacing:0.288000pt;}
.wsac{word-spacing:0.320000pt;}
.ws18{word-spacing:0.336000pt;}
.wsca{word-spacing:0.360000pt;}
.ws54{word-spacing:0.384000pt;}
.wsd4{word-spacing:0.400000pt;}
.ws9e{word-spacing:0.426667pt;}
.ws75{word-spacing:0.432000pt;}
.wsd3{word-spacing:0.440000pt;}
.ws58{word-spacing:0.480000pt;}
.ws3d{word-spacing:0.528000pt;}
.ws91{word-spacing:0.576000pt;}
.wsd2{word-spacing:0.600000pt;}
.ws55{word-spacing:0.624000pt;}
.wsb3{word-spacing:0.640000pt;}
.ws81{word-spacing:0.672000pt;}
.wsd5{word-spacing:0.680000pt;}
.ws46{word-spacing:0.720000pt;}
.ws6c{word-spacing:0.768000pt;}
.wscd{word-spacing:0.800000pt;}
.ws40{word-spacing:0.816000pt;}
.wsaa{word-spacing:0.840000pt;}
.ws1a{word-spacing:0.864000pt;}
.ws98{word-spacing:0.912000pt;}
.ws90{word-spacing:0.960000pt;}
.ws8f{word-spacing:1.008000pt;}
.ws8d{word-spacing:1.056000pt;}
.wsc9{word-spacing:1.080000pt;}
.wsda{word-spacing:1.104000pt;}
.wse{word-spacing:1.120000pt;}
.wsc7{word-spacing:1.240000pt;}
.ws6e{word-spacing:1.248000pt;}
.wscb{word-spacing:1.280000pt;}
.ws59{word-spacing:1.296000pt;}
.ws97{word-spacing:1.392000pt;}
.ws56{word-spacing:1.488000pt;}
.ws60{word-spacing:1.584000pt;}
.ws80{word-spacing:1.680000pt;}
.ws99{word-spacing:1.920000pt;}
.ws53{word-spacing:1.968000pt;}
.wsb6{word-spacing:2.160000pt;}
.ws5d{word-spacing:2.256000pt;}
.ws8c{word-spacing:3.024000pt;}
.ws89{word-spacing:3.072000pt;}
.ws71{word-spacing:14.448000pt;}
._15{margin-left:-10.680000pt;}
._16{margin-left:-9.480000pt;}
._1{margin-left:-8.211185pt;}
._3{margin-left:-6.979169pt;}
._8{margin-left:-5.801186pt;}
._6{margin-left:-4.746667pt;}
._2{margin-left:-3.700282pt;}
._4{margin-left:-2.678335pt;}
._0{margin-left:-1.578682pt;}
._7{width:1.421383pt;}
._c{width:2.622818pt;}
._a{width:3.605924pt;}
._f{width:4.650667pt;}
._e{width:5.546076pt;}
._12{width:7.240000pt;}
._10{width:9.040000pt;}
._11{width:11.000000pt;}
._13{width:11.960000pt;}
._b{width:13.583993pt;}
._14{width:15.520001pt;}
._5{width:38.298604pt;}
._9{width:42.300284pt;}
._d{width:43.580765pt;}
.fsc{font-size:26.000000pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.199999pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y115{bottom:59.152265pt;}
.y1b2{bottom:60.293199pt;}
.y30{bottom:60.718132pt;}
.y76{bottom:60.953340pt;}
.y1c0{bottom:61.822934pt;}
.y140{bottom:63.096399pt;}
.y15e{bottom:63.150936pt;}
.y2d4{bottom:63.166263pt;}
.y12b{bottom:64.938665pt;}
.y10a{bottom:68.788548pt;}
.y209{bottom:69.023737pt;}
.yc0{bottom:71.158269pt;}
.y243{bottom:71.689069pt;}
.y283{bottom:71.839596pt;}
.y114{bottom:72.484265pt;}
.yd1{bottom:73.561744pt;}
.y1b1{bottom:73.626537pt;}
.y179{bottom:73.773748pt;}
.y2f{bottom:74.056799pt;}
.y84{bottom:74.149748pt;}
.y75{bottom:74.285339pt;}
.y2d3{bottom:74.496263pt;}
.y1bf{bottom:75.154933pt;}
.y13f{bottom:76.428399pt;}
.y15d{bottom:76.484265pt;}
.y12a{bottom:78.270665pt;}
.y109{bottom:82.120547pt;}
.y208{bottom:82.355736pt;}
.y282{bottom:83.169597pt;}
.ybf{bottom:84.490268pt;}
.y242{bottom:85.021069pt;}
.y113{bottom:85.816264pt;}
.y2d2{bottom:85.826264pt;}
.yd0{bottom:86.893744pt;}
.y1b0{bottom:86.967875pt;}
.y178{bottom:87.105748pt;}
.y2e{bottom:87.384799pt;}
.y83{bottom:87.481748pt;}
.y74{bottom:87.617339pt;}
.y1be{bottom:88.486933pt;}
.y13e{bottom:89.760398pt;}
.y15c{bottom:89.817598pt;}
.y129{bottom:91.602664pt;}
.y281{bottom:94.499597pt;}
.y108{bottom:95.452547pt;}
.y207{bottom:95.687735pt;}
.y2d1{bottom:97.156264pt;}
.ybe{bottom:97.822267pt;}
.y241{bottom:98.357070pt;}
.ycf{bottom:100.225743pt;}
.y1af{bottom:100.299874pt;}
.y177{bottom:100.437747pt;}
.y2d{bottom:100.718132pt;}
.y82{bottom:100.813747pt;}
.y73{bottom:100.949338pt;}
.y1bd{bottom:101.818932pt;}
.y13d{bottom:103.104414pt;}
.y15b{bottom:103.150931pt;}
.y128{bottom:104.934663pt;}
.y280{bottom:105.829597pt;}
.y2d0{bottom:108.486264pt;}
.y107{bottom:108.784546pt;}
.y206{bottom:109.019735pt;}
.ybd{bottom:111.155600pt;}
.y240{bottom:111.689069pt;}
.yce{bottom:113.557742pt;}
.y1ae{bottom:113.631874pt;}
.y176{bottom:113.769746pt;}
.y2c{bottom:114.051466pt;}
.y81{bottom:114.145746pt;}
.y72{bottom:114.281337pt;}
.y1bc{bottom:115.150931pt;}
.y13c{bottom:116.436413pt;}
.y15a{bottom:116.484265pt;}
.y27f{bottom:117.159597pt;}
.y127{bottom:118.267997pt;}
.y2cf{bottom:119.879595pt;}
.y106{bottom:122.116545pt;}
.ybc{bottom:124.490268pt;}
.y23f{bottom:125.021069pt;}
.ycd{bottom:126.889741pt;}
.y1ad{bottom:126.963873pt;}
.y175{bottom:127.101746pt;}
.y2b{bottom:127.384799pt;}
.y80{bottom:127.477745pt;}
.y71{bottom:127.613336pt;}
.y1bb{bottom:128.484265pt;}
.y27e{bottom:128.489597pt;}
.y13b{bottom:129.768412pt;}
.y159{bottom:129.817598pt;}
.y2ce{bottom:131.209595pt;}
.y126{bottom:131.601330pt;}
.y205{bottom:133.080412pt;}
.y120{bottom:133.175072pt;}
.y105{bottom:135.448544pt;}
.ybb{bottom:137.822267pt;}
.y23e{bottom:138.353068pt;}
.y27d{bottom:139.819597pt;}
.ycc{bottom:140.221741pt;}
.y1ac{bottom:140.295872pt;}
.y174{bottom:140.433745pt;}
.y7f{bottom:140.809745pt;}
.y70{bottom:140.945336pt;}
.y1ba{bottom:141.816264pt;}
.y2cd{bottom:142.539595pt;}
.y13a{bottom:143.100412pt;}
.y158{bottom:143.150931pt;}
.y2a{bottom:144.566132pt;}
.y125{bottom:144.933329pt;}
.y204{bottom:146.412412pt;}
.y11f{bottom:146.507071pt;}
.y104{bottom:148.780544pt;}
.yba{bottom:151.156945pt;}
.y27c{bottom:151.189596pt;}
.ycb{bottom:153.553740pt;}
.y1ab{bottom:153.627872pt;}
.y173{bottom:153.765744pt;}
.y2cc{bottom:153.869596pt;}
.y7e{bottom:154.141744pt;}
.y6f{bottom:154.277335pt;}
.y139{bottom:156.432411pt;}
.y157{bottom:156.485599pt;}
.y124{bottom:158.266663pt;}
.y203{bottom:159.744411pt;}
.y11e{bottom:159.847075pt;}
.y103{bottom:162.112543pt;}
.y27b{bottom:162.519596pt;}
.yb9{bottom:164.488944pt;}
.y2cb{bottom:165.199596pt;}
.yca{bottom:166.885739pt;}
.y1aa{bottom:166.959871pt;}
.y172{bottom:167.097743pt;}
.y7d{bottom:167.473743pt;}
.y6e{bottom:167.609334pt;}
.y23d{bottom:167.687735pt;}
.y138{bottom:169.764410pt;}
.y156{bottom:169.817598pt;}
.y202{bottom:173.076410pt;}
.y11d{bottom:173.179074pt;}
.y27a{bottom:173.849596pt;}
.y102{bottom:175.444542pt;}
.y2ca{bottom:176.529596pt;}
.yb8{bottom:177.823611pt;}
.yc9{bottom:180.217739pt;}
.y1a9{bottom:180.291870pt;}
.y171{bottom:180.429743pt;}
.y7c{bottom:180.805743pt;}
.y6d{bottom:180.941334pt;}
.y23c{bottom:181.021069pt;}
.y137{bottom:183.096409pt;}
.y155{bottom:183.150931pt;}
.y29{bottom:184.610944pt;}
.y123{bottom:185.152265pt;}
.y279{bottom:185.179596pt;}
.y201{bottom:186.408409pt;}
.y11c{bottom:186.511074pt;}
.y1cc{bottom:187.361738pt;}
.y2c9{bottom:187.859596pt;}
.y101{bottom:188.776542pt;}
.yb7{bottom:191.155611pt;}
.yc8{bottom:193.549738pt;}
.y170{bottom:193.761742pt;}
.y7b{bottom:194.137742pt;}
.y6c{bottom:194.273333pt;}
.y23b{bottom:194.354402pt;}
.y136{bottom:196.428409pt;}
.y154{bottom:196.484265pt;}
.y278{bottom:196.509596pt;}
.y28{bottom:197.942944pt;}
.y122{bottom:198.484265pt;}
.y2c8{bottom:199.189596pt;}
.y200{bottom:199.740409pt;}
.y11b{bottom:199.843073pt;}
.y1cb{bottom:200.693737pt;}
.y100{bottom:202.108541pt;}
.y1a8{bottom:204.344543pt;}
.yb6{bottom:204.488944pt;}
.yc7{bottom:206.881737pt;}
.y16f{bottom:207.093741pt;}
.y7a{bottom:207.469741pt;}
.y6b{bottom:207.605332pt;}
.y23a{bottom:207.690404pt;}
.y277{bottom:207.839596pt;}
.y135{bottom:209.760408pt;}
.y153{bottom:209.817598pt;}
.y2c7{bottom:210.519596pt;}
.y27{bottom:211.276277pt;}
.y121{bottom:211.816264pt;}
.y1ff{bottom:213.072408pt;}
.y11a{bottom:213.175072pt;}
.y1ca{bottom:214.029739pt;}
.yff{bottom:215.440540pt;}
.y1a7{bottom:217.676543pt;}
.yb5{bottom:217.826279pt;}
.y276{bottom:219.169597pt;}
.yc6{bottom:220.213736pt;}
.y16e{bottom:220.425741pt;}
.y79{bottom:220.801740pt;}
.y6a{bottom:220.937331pt;}
.y239{bottom:221.022403pt;}
.y2c6{bottom:221.849596pt;}
.y134{bottom:223.093741pt;}
.y152{bottom:223.150931pt;}
.y26{bottom:224.609610pt;}
.y1fe{bottom:226.404407pt;}
.y119{bottom:226.507071pt;}
.y1c9{bottom:227.361738pt;}
.yfe{bottom:228.772539pt;}
.y275{bottom:230.499597pt;}
.y1a6{bottom:231.008542pt;}
.yb4{bottom:231.158279pt;}
.y2c5{bottom:233.179596pt;}
.yc5{bottom:233.545736pt;}
.y78{bottom:234.133740pt;}
.y69{bottom:234.269331pt;}
.y238{bottom:234.354402pt;}
.y133{bottom:236.425741pt;}
.y151{bottom:236.484265pt;}
.y25{bottom:237.944278pt;}
.y1fd{bottom:239.736407pt;}
.y118{bottom:239.841739pt;}
.y1c8{bottom:240.693737pt;}
.y274{bottom:241.829597pt;}
.yfd{bottom:242.104539pt;}
.y1a5{bottom:244.340541pt;}
.yb3{bottom:244.490278pt;}
.y2c4{bottom:244.509596pt;}
.y77{bottom:247.465739pt;}
.y68{bottom:247.601330pt;}
.y237{bottom:247.687735pt;}
.y150{bottom:249.820266pt;}
.y24{bottom:251.276277pt;}
.y1fc{bottom:253.068406pt;}
.y273{bottom:253.159597pt;}
.y117{bottom:253.173738pt;}
.y1c7{bottom:254.033741pt;}
.yfc{bottom:255.436538pt;}
.y2c3{bottom:255.839596pt;}
.y1a4{bottom:257.672541pt;}
.yb2{bottom:257.822277pt;}
.y67{bottom:260.940000pt;}
.y236{bottom:261.019735pt;}
.y14f{bottom:263.152265pt;}
.y132{bottom:264.432411pt;}
.y272{bottom:264.489597pt;}
.y23{bottom:264.609610pt;}
.y1fb{bottom:266.400405pt;}
.y116{bottom:266.505737pt;}
.y2c2{bottom:267.169597pt;}
.y1c6{bottom:267.365740pt;}
.yfb{bottom:268.768537pt;}
.y1a3{bottom:271.004540pt;}
.yb1{bottom:271.159613pt;}
.y66{bottom:274.271999pt;}
.y271{bottom:275.819597pt;}
.y14e{bottom:276.484265pt;}
.y131{bottom:277.764410pt;}
.y22{bottom:277.942944pt;}
.y2c1{bottom:278.499597pt;}
.y1fa{bottom:279.732404pt;}
.y1c5{bottom:280.697739pt;}
.yfa{bottom:282.100537pt;}
.y1a2{bottom:284.336539pt;}
.yb0{bottom:284.491612pt;}
.y270{bottom:287.169617pt;}
.y65{bottom:287.603998pt;}
.y14d{bottom:289.821620pt;}
.y2c0{bottom:289.829597pt;}
.y235{bottom:290.355858pt;}
.y130{bottom:291.096409pt;}
.y21{bottom:291.276277pt;}
.y1f9{bottom:293.064404pt;}
.y1c4{bottom:294.029739pt;}
.yf9{bottom:295.445876pt;}
.y1a1{bottom:297.669872pt;}
.yaf{bottom:297.823611pt;}
.y26f{bottom:298.499617pt;}
.y64{bottom:300.935997pt;}
.y2bf{bottom:301.159597pt;}
.y14c{bottom:303.153620pt;}
.y234{bottom:303.687857pt;}
.y12f{bottom:304.428409pt;}
.y20{bottom:304.609610pt;}
.y1f8{bottom:306.412412pt;}
.y1c3{bottom:307.361738pt;}
.yf8{bottom:308.777876pt;}
.y26e{bottom:309.829617pt;}
.y1a0{bottom:311.003206pt;}
.yae{bottom:311.155611pt;}
.y2be{bottom:312.489597pt;}
.y63{bottom:314.267997pt;}
.y14b{bottom:316.485619pt;}
.y233{bottom:317.025193pt;}
.y12e{bottom:317.760408pt;}
.y1f{bottom:317.942944pt;}
.y1f7{bottom:319.744411pt;}
.y1c2{bottom:320.693737pt;}
.y26d{bottom:321.159617pt;}
.yf7{bottom:322.109875pt;}
.y2bd{bottom:323.819597pt;}
.y19f{bottom:324.340541pt;}
.yad{bottom:324.490258pt;}
.y62{bottom:327.602684pt;}
.y14a{bottom:329.817618pt;}
.y232{bottom:330.357192pt;}
.y12d{bottom:331.093741pt;}
.y1e{bottom:331.276277pt;}
.y26c{bottom:332.489617pt;}
.y1f6{bottom:333.076410pt;}
.y1c1{bottom:334.025736pt;}
.y2bc{bottom:335.156284pt;}
.yf6{bottom:335.441874pt;}
.y19e{bottom:337.672541pt;}
.yac{bottom:337.822257pt;}
.y61{bottom:340.934684pt;}
.y149{bottom:343.160290pt;}
.y231{bottom:343.689192pt;}
.y26b{bottom:343.819617pt;}
.y12c{bottom:344.425741pt;}
.y1d{bottom:344.612277pt;}
.y1f5{bottom:346.408409pt;}
.y2bb{bottom:346.486284pt;}
.yf5{bottom:348.773873pt;}
.y19d{bottom:351.004540pt;}
.yab{bottom:351.156924pt;}
.y60{bottom:354.268017pt;}
.y26a{bottom:355.156284pt;}
.y148{bottom:356.492289pt;}
.y230{bottom:357.021191pt;}
.y1c{bottom:357.944276pt;}
.y2ba{bottom:357.976239pt;}
.y1f4{bottom:359.740409pt;}
.yf4{bottom:362.105873pt;}
.y19c{bottom:364.336539pt;}
.yaa{bottom:364.488924pt;}
.y269{bottom:366.486284pt;}
.y5f{bottom:367.601350pt;}
.y2b9{bottom:369.306239pt;}
.y147{bottom:369.824288pt;}
.y22f{bottom:370.354524pt;}
.y1f3{bottom:373.072408pt;}
.yf3{bottom:375.437872pt;}
.y19b{bottom:377.669872pt;}
.ya9{bottom:377.823591pt;}
.y268{bottom:377.829617pt;}
.y2b8{bottom:380.636239pt;}
.y5e{bottom:380.934684pt;}
.y146{bottom:383.156288pt;}
.y22e{bottom:383.686523pt;}
.y1f2{bottom:386.404407pt;}
.yf2{bottom:388.769871pt;}
.y267{bottom:389.159617pt;}
.y19a{bottom:391.003206pt;}
.ya8{bottom:391.155590pt;}
.y2b7{bottom:391.966239pt;}
.y5d{bottom:394.266683pt;}
.y145{bottom:396.488287pt;}
.y1f1{bottom:399.736407pt;}
.y1b{bottom:399.944276pt;}
.y266{bottom:400.489617pt;}
.yf1{bottom:402.101871pt;}
.y2b6{bottom:403.296239pt;}
.y199{bottom:404.335205pt;}
.ya7{bottom:404.488924pt;}
.y2f7{bottom:405.612023pt;}
.y5c{bottom:407.600016pt;}
.y144{bottom:409.820286pt;}
.y265{bottom:411.819617pt;}
.y22d{bottom:413.026527pt;}
.y1f0{bottom:413.068406pt;}
.y2b5{bottom:414.626239pt;}
.y1a{bottom:414.626943pt;}
.yf0{bottom:415.433870pt;}
.ya6{bottom:417.822257pt;}
.y2f6{bottom:418.944022pt;}
.y143{bottom:423.152286pt;}
.y264{bottom:423.172950pt;}
.y2b4{bottom:425.956239pt;}
.y22c{bottom:426.358526pt;}
.y1ef{bottom:426.400405pt;}
.y198{bottom:428.379752pt;}
.yef{bottom:428.765869pt;}
.y19{bottom:429.290943pt;}
.ya5{bottom:431.155590pt;}
.y2f5{bottom:432.276021pt;}
.y5b{bottom:434.493623pt;}
.y263{bottom:434.502950pt;}
.y142{bottom:436.484285pt;}
.y2b3{bottom:437.286239pt;}
.y22b{bottom:439.690526pt;}
.y1ee{bottom:439.732404pt;}
.y197{bottom:441.717088pt;}
.y18{bottom:443.954943pt;}
.ya4{bottom:444.488924pt;}
.y2f4{bottom:445.608021pt;}
.y262{bottom:445.832950pt;}
.y5a{bottom:447.825623pt;}
.y2b2{bottom:448.616239pt;}
.y141{bottom:449.816284pt;}
.y22a{bottom:453.022525pt;}
.y1ed{bottom:453.064404pt;}
.y196{bottom:455.049087pt;}
.y261{bottom:457.162950pt;}
.yee{bottom:457.651472pt;}
.ya3{bottom:457.820923pt;}
.y17{bottom:458.618943pt;}
.y2f3{bottom:458.940020pt;}
.y2b1{bottom:459.946240pt;}
.y59{bottom:461.157622pt;}
.y229{bottom:466.354524pt;}
.y1ec{bottom:466.397737pt;}
.y195{bottom:468.381086pt;}
.y260{bottom:468.492951pt;}
.yed{bottom:470.983471pt;}
.y2b0{bottom:471.276240pt;}
.y2f2{bottom:472.272019pt;}
.y16{bottom:473.282943pt;}
.y58{bottom:474.489621pt;}
.y228{bottom:479.687857pt;}
.y1eb{bottom:479.729736pt;}
.y25f{bottom:479.822951pt;}
.y194{bottom:481.713085pt;}
.y2af{bottom:482.606240pt;}
.yec{bottom:484.318138pt;}
.ya2{bottom:484.609084pt;}
.y2f1{bottom:485.604018pt;}
.y57{bottom:487.821620pt;}
.y15{bottom:487.946943pt;}
.y25e{bottom:491.152951pt;}
.y227{bottom:493.021191pt;}
.y2ae{bottom:493.936240pt;}
.y193{bottom:495.045085pt;}
.yeb{bottom:497.650138pt;}
.ya1{bottom:497.941084pt;}
.y2f0{bottom:498.936018pt;}
.y56{bottom:501.153620pt;}
.y25d{bottom:502.482951pt;}
.y14{bottom:502.610943pt;}
.y16d{bottom:503.697713pt;}
.y1ea{bottom:503.788958pt;}
.y2ad{bottom:505.266240pt;}
.y226{bottom:506.353190pt;}
.y192{bottom:508.378418pt;}
.yea{bottom:510.996812pt;}
.ya0{bottom:511.273083pt;}
.y2ef{bottom:512.268017pt;}
.y25c{bottom:513.816284pt;}
.y55{bottom:514.485619pt;}
.y2ac{bottom:516.596240pt;}
.y16c{bottom:517.029712pt;}
.y1e9{bottom:517.120957pt;}
.y13{bottom:517.288276pt;}
.ye9{bottom:524.328811pt;}
.y9f{bottom:524.605082pt;}
.y2ee{bottom:525.600016pt;}
.y54{bottom:527.817618pt;}
.y2ab{bottom:527.926240pt;}
.y16b{bottom:530.361712pt;}
.y1e8{bottom:530.452956pt;}
.y12{bottom:531.952276pt;}
.y191{bottom:532.386422pt;}
.y225{bottom:535.698530pt;}
.ye8{bottom:537.660810pt;}
.y9e{bottom:537.937081pt;}
.y2aa{bottom:539.256240pt;}
.y53{bottom:541.150952pt;}
.y25b{bottom:543.154951pt;}
.y16a{bottom:543.693711pt;}
.y1e7{bottom:543.784956pt;}
.y2ed{bottom:544.938686pt;}
.y190{bottom:545.718422pt;}
.y11{bottom:546.616276pt;}
.y224{bottom:549.030529pt;}
.y2a9{bottom:550.586240pt;}
.ye7{bottom:550.992809pt;}
.y9d{bottom:551.269081pt;}
.y52{bottom:554.486953pt;}
.y25a{bottom:556.482951pt;}
.y169{bottom:557.025710pt;}
.y1e6{bottom:557.116955pt;}
.y2ec{bottom:558.270685pt;}
.y18f{bottom:559.050421pt;}
.y10{bottom:561.280276pt;}
.y2a8{bottom:561.916240pt;}
.y223{bottom:562.362528pt;}
.ye6{bottom:564.324809pt;}
.y9c{bottom:564.601080pt;}
.y51{bottom:567.818952pt;}
.y168{bottom:570.357710pt;}
.y1e5{bottom:570.448954pt;}
.y18e{bottom:572.382420pt;}
.y2a7{bottom:573.246241pt;}
.y222{bottom:575.694528pt;}
.yf{bottom:575.944276pt;}
.y2eb{bottom:577.602684pt;}
.ye5{bottom:577.656808pt;}
.y9b{bottom:577.933079pt;}
.y50{bottom:581.150952pt;}
.y259{bottom:581.152286pt;}
.y167{bottom:583.689709pt;}
.y1e4{bottom:583.780954pt;}
.y2a6{bottom:584.576241pt;}
.y18d{bottom:585.714419pt;}
.y221{bottom:589.026527pt;}
.ye{bottom:590.608276pt;}
.ye4{bottom:590.988807pt;}
.y9a{bottom:591.265079pt;}
.y4f{bottom:594.484285pt;}
.y2a5{bottom:595.906241pt;}
.y2ea{bottom:596.934684pt;}
.y166{bottom:597.021708pt;}
.y1e3{bottom:597.112953pt;}
.y18c{bottom:599.046419pt;}
.y220{bottom:602.358526pt;}
.ye3{bottom:604.320807pt;}
.y99{bottom:604.597078pt;}
.y2a4{bottom:607.236241pt;}
.y258{bottom:607.816284pt;}
.y4e{bottom:607.817618pt;}
.y165{bottom:610.353707pt;}
.y1e2{bottom:610.444952pt;}
.y18b{bottom:612.379752pt;}
.y21f{bottom:615.690526pt;}
.y2e9{bottom:616.266683pt;}
.yc{bottom:617.274942pt;}
.ye2{bottom:617.652806pt;}
.y98{bottom:617.949047pt;}
.y2a3{bottom:618.566241pt;}
.y4d{bottom:621.150952pt;}
.yd{bottom:621.808268pt;}
.y164{bottom:623.685707pt;}
.y1e1{bottom:623.776951pt;}
.y18a{bottom:625.713085pt;}
.y21e{bottom:629.022525pt;}
.y2e8{bottom:629.600016pt;}
.y2a2{bottom:629.896241pt;}
.ye1{bottom:630.984805pt;}
.y97{bottom:631.281047pt;}
.y257{bottom:631.825582pt;}
.ya{bottom:633.274942pt;}
.y4c{bottom:634.484285pt;}
.y163{bottom:637.017706pt;}
.y1e0{bottom:637.108951pt;}
.yb{bottom:637.808268pt;}
.y189{bottom:639.053089pt;}
.y2a1{bottom:641.226241pt;}
.y21d{bottom:642.354524pt;}
.ye0{bottom:644.316804pt;}
.y96{bottom:644.613046pt;}
.y256{bottom:645.157581pt;}
.y4b{bottom:647.818952pt;}
.y9{bottom:649.274942pt;}
.y162{bottom:650.349705pt;}
.y1df{bottom:650.440950pt;}
.y188{bottom:652.385088pt;}
.y2a0{bottom:652.556241pt;}
.y21c{bottom:655.686523pt;}
.ydf{bottom:657.651431pt;}
.y95{bottom:657.945045pt;}
.y255{bottom:658.489580pt;}
.y4a{bottom:661.150952pt;}
.y2e7{bottom:661.654012pt;}
.y161{bottom:663.681705pt;}
.y1de{bottom:663.784956pt;}
.y29f{bottom:663.886241pt;}
.y8{bottom:665.274943pt;}
.y187{bottom:665.717088pt;}
.yde{bottom:670.983430pt;}
.y94{bottom:671.277044pt;}
.y254{bottom:671.821580pt;}
.y49{bottom:674.484244pt;}
.y2e6{bottom:674.987345pt;}
.y29e{bottom:675.216241pt;}
.y160{bottom:677.013704pt;}
.y1dd{bottom:677.116955pt;}
.y186{bottom:679.049087pt;}
.y21b{bottom:679.740409pt;}
.ydd{bottom:684.318098pt;}
.y93{bottom:684.609044pt;}
.y253{bottom:685.153579pt;}
.y29d{bottom:686.546242pt;}
.y48{bottom:687.818912pt;}
.y15f{bottom:690.345703pt;}
.y1dc{bottom:690.448954pt;}
.y185{bottom:692.381086pt;}
.y21a{bottom:693.072408pt;}
.y7{bottom:694.592232pt;}
.ydc{bottom:697.650097pt;}
.y29c{bottom:697.876242pt;}
.y92{bottom:697.941043pt;}
.y252{bottom:698.485578pt;}
.y2e5{bottom:701.046840pt;}
.y47{bottom:701.150911pt;}
.y1db{bottom:703.780954pt;}
.y184{bottom:705.713085pt;}
.y219{bottom:706.404407pt;}
.y29b{bottom:709.206242pt;}
.ydb{bottom:710.983430pt;}
.y91{bottom:711.273042pt;}
.y251{bottom:711.817578pt;}
.y2e4{bottom:714.378839pt;}
.y46{bottom:714.484244pt;}
.y1da{bottom:717.112953pt;}
.y183{bottom:719.046419pt;}
.y218{bottom:719.736407pt;}
.y29a{bottom:720.536242pt;}
.yda{bottom:724.319432pt;}
.y90{bottom:724.605041pt;}
.y250{bottom:725.158915pt;}
.y2e3{bottom:727.710839pt;}
.y45{bottom:727.817578pt;}
.y1d9{bottom:730.444952pt;}
.y299{bottom:731.866242pt;}
.y182{bottom:732.379752pt;}
.y217{bottom:733.068406pt;}
.y6{bottom:734.597566pt;}
.yd9{bottom:737.651431pt;}
.y8f{bottom:737.937041pt;}
.y24f{bottom:738.490914pt;}
.y2e2{bottom:741.042838pt;}
.y44{bottom:741.150911pt;}
.y298{bottom:743.196242pt;}
.y1d8{bottom:743.776951pt;}
.y181{bottom:745.713085pt;}
.y216{bottom:746.400405pt;}
.yd8{bottom:750.983430pt;}
.y8e{bottom:751.269040pt;}
.y24e{bottom:751.822914pt;}
.y2e1{bottom:754.374837pt;}
.y43{bottom:754.484244pt;}
.y297{bottom:754.526242pt;}
.y1d7{bottom:757.108951pt;}
.y180{bottom:759.046419pt;}
.y215{bottom:759.732404pt;}
.yd7{bottom:764.322100pt;}
.y8d{bottom:764.601039pt;}
.y24d{bottom:765.154913pt;}
.y296{bottom:765.856242pt;}
.y2e0{bottom:767.708171pt;}
.y42{bottom:767.817578pt;}
.y1d6{bottom:770.440950pt;}
.y17f{bottom:772.383754pt;}
.y214{bottom:773.064404pt;}
.y5{bottom:774.602901pt;}
.y295{bottom:777.186242pt;}
.yd6{bottom:777.654099pt;}
.y8c{bottom:777.933039pt;}
.y24c{bottom:778.486912pt;}
.y41{bottom:781.150911pt;}
.y1d5{bottom:783.774283pt;}
.y17e{bottom:785.715753pt;}
.y213{bottom:786.396403pt;}
.y294{bottom:788.516242pt;}
.yd5{bottom:790.986099pt;}
.y8b{bottom:791.265038pt;}
.y24b{bottom:791.818912pt;}
.y2df{bottom:793.770293pt;}
.y40{bottom:794.488246pt;}
.y1d4{bottom:797.107617pt;}
.y17d{bottom:799.047753pt;}
.y293{bottom:799.846243pt;}
.yd4{bottom:804.318098pt;}
.y8a{bottom:804.597037pt;}
.y24a{bottom:805.150911pt;}
.y2de{bottom:807.102292pt;}
.y3f{bottom:807.820246pt;}
.y1d3{bottom:810.439616pt;}
.y212{bottom:810.447620pt;}
.y292{bottom:811.176243pt;}
.y17c{bottom:812.379752pt;}
.y4{bottom:814.608236pt;}
.yd3{bottom:817.650097pt;}
.y89{bottom:817.930371pt;}
.y249{bottom:818.482910pt;}
.y2dd{bottom:820.434291pt;}
.y3e{bottom:821.152245pt;}
.y291{bottom:822.506243pt;}
.y31{bottom:823.475179pt;}
.y211{bottom:823.779619pt;}
.y17b{bottom:825.713085pt;}
.yd2{bottom:830.982096pt;}
.y88{bottom:831.262370pt;}
.y2dc{bottom:833.766291pt;}
.y290{bottom:833.836243pt;}
.y3d{bottom:834.484244pt;}
.y1d2{bottom:834.486912pt;}
.y210{bottom:837.111619pt;}
.y17a{bottom:839.045085pt;}
.y28f{bottom:845.166243pt;}
.y2db{bottom:847.098290pt;}
.y3c{bottom:847.817578pt;}
.y1d1{bottom:847.818912pt;}
.y248{bottom:847.826916pt;}
.y20f{bottom:850.443618pt;}
.y28e{bottom:856.496243pt;}
.y87{bottom:858.040022pt;}
.y2da{bottom:860.430289pt;}
.y3b{bottom:861.150911pt;}
.y247{bottom:861.158915pt;}
.y20e{bottom:863.775617pt;}
.y28d{bottom:867.826243pt;}
.y86{bottom:871.372021pt;}
.y2d9{bottom:873.762288pt;}
.y3a{bottom:874.484244pt;}
.y1d0{bottom:874.486912pt;}
.y246{bottom:874.490914pt;}
.y20d{bottom:877.107617pt;}
.y112{bottom:878.986099pt;}
.y28c{bottom:879.156243pt;}
.y85{bottom:884.704020pt;}
.y2d8{bottom:887.095622pt;}
.y39{bottom:887.818912pt;}
.y245{bottom:887.822914pt;}
.y20c{bottom:890.439616pt;}
.y28b{bottom:890.486243pt;}
.y111{bottom:892.318098pt;}
.y1b9{bottom:892.386504pt;}
.y38{bottom:901.150911pt;}
.y244{bottom:901.154913pt;}
.y28a{bottom:901.829576pt;}
.y110{bottom:905.650097pt;}
.y1b8{bottom:905.718503pt;}
.y289{bottom:913.159577pt;}
.y2d7{bottom:913.166243pt;}
.y37{bottom:914.484244pt;}
.y1cf{bottom:914.486912pt;}
.y20b{bottom:914.488246pt;}
.y10f{bottom:918.987433pt;}
.y1b7{bottom:919.050502pt;}
.y288{bottom:924.489577pt;}
.y2d6{bottom:924.496243pt;}
.y36{bottom:927.817578pt;}
.y1ce{bottom:927.818912pt;}
.y20a{bottom:927.820246pt;}
.yc4{bottom:931.374689pt;}
.y10e{bottom:932.319432pt;}
.y1b6{bottom:932.382502pt;}
.y287{bottom:935.819577pt;}
.y2d5{bottom:935.826243pt;}
.y1cd{bottom:941.150911pt;}
.y35{bottom:941.152245pt;}
.yc3{bottom:944.706688pt;}
.y10d{bottom:945.651431pt;}
.y1b5{bottom:945.714501pt;}
.y286{bottom:947.156243pt;}
.y34{bottom:954.484244pt;}
.yc2{bottom:958.038688pt;}
.y285{bottom:958.486243pt;}
.y10c{bottom:958.983430pt;}
.y1b4{bottom:959.046500pt;}
.y33{bottom:967.816243pt;}
.y284{bottom:969.816243pt;}
.yc1{bottom:971.370687pt;}
.y10b{bottom:972.315430pt;}
.y1b3{bottom:972.378499pt;}
.y32{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.he{height:21.193555pt;}
.h8{height:24.933594pt;}
.h18{height:31.461333pt;}
.h10{height:32.605469pt;}
.ha{height:34.523438pt;}
.h11{height:36.564219pt;}
.hf{height:36.585552pt;}
.h2{height:38.346667pt;}
.h9{height:38.359375pt;}
.h4{height:39.305333pt;}
.h19{height:39.560000pt;}
.h1a{height:40.080000pt;}
.h3{height:40.661333pt;}
.h1e{height:40.706674pt;}
.h1c{height:40.879921pt;}
.h1d{height:40.906668pt;}
.h1b{height:40.960000pt;}
.h14{height:42.195312pt;}
.h6{height:43.066895pt;}
.h7{height:43.066897pt;}
.hc{height:46.197320pt;}
.hb{height:46.218653pt;}
.hd{height:47.472000pt;}
.h17{height:48.047974pt;}
.h16{height:48.090664pt;}
.h13{height:48.096000pt;}
.h15{height:49.152000pt;}
.h12{height:67.872000pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x7{left:125.291331pt;}
.x4{left:207.516805pt;}
.x8{left:223.513333pt;}
.xc{left:267.195068pt;}
.x6{left:401.129191pt;}
.x5{left:452.044515pt;}
.x3{left:519.632528pt;}
.xa{left:725.336507pt;}
.xb{left:726.469482pt;}
.x9{left:732.628825pt;}
.x1{left:733.540283pt;}
}




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