
    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_47368fd21409e6fe02b6a23b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984333;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_c7c5ca261b0d0421ce104cc6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.110000;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_0c9f2373a59713ac41b02996.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000048;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_0808296c6ef7325309350d44.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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_45d257937b321c23d6916a57.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.114000;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.780600px;}
.v3{vertical-align:-1.209516px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.199814px;}
.v8{vertical-align:6.601920px;}
.v1{vertical-align:21.813600px;}
.v5{vertical-align:41.852160px;}
.v7{vertical-align:43.200000px;}
.v6{vertical-align:45.900000px;}
.ls16b{letter-spacing:-6.054000px;}
.ls80{letter-spacing:-2.785200px;}
.ls13{letter-spacing:-2.725800px;}
.ls152{letter-spacing:-2.532000px;}
.ls4e{letter-spacing:-2.046000px;}
.ls2a{letter-spacing:-2.013000px;}
.lse6{letter-spacing:-1.620000px;}
.ls143{letter-spacing:-1.614000px;}
.lsc2{letter-spacing:-1.597200px;}
.ls36{letter-spacing:-1.590600px;}
.lsab{letter-spacing:-1.577400px;}
.ls89{letter-spacing:-1.551000px;}
.lse5{letter-spacing:-1.478400px;}
.ls102{letter-spacing:-1.458600px;}
.ls138{letter-spacing:-1.452000px;}
.lsff{letter-spacing:-1.440000px;}
.lsc3{letter-spacing:-1.419000px;}
.ls154{letter-spacing:-1.363500px;}
.ls156{letter-spacing:-1.362000px;}
.ls155{letter-spacing:-1.359000px;}
.ls54{letter-spacing:-1.306800px;}
.lsf8{letter-spacing:-1.296000px;}
.lsf{letter-spacing:-1.293900px;}
.ls4f{letter-spacing:-1.267200px;}
.lsda{letter-spacing:-1.260600px;}
.ls6d{letter-spacing:-1.254000px;}
.lsdb{letter-spacing:-1.215000px;}
.ls112{letter-spacing:-1.199184px;}
.lsad{letter-spacing:-1.161600px;}
.ls131{letter-spacing:-1.115400px;}
.lsde{letter-spacing:-1.112400px;}
.lsea{letter-spacing:-1.108800px;}
.ls147{letter-spacing:-1.071000px;}
.ls148{letter-spacing:-1.068000px;}
.ls86{letter-spacing:-1.056000px;}
.ls85{letter-spacing:-1.049400px;}
.lsc4{letter-spacing:-1.029600px;}
.lsfc{letter-spacing:-1.016400px;}
.lsb3{letter-spacing:-0.990000px;}
.ls51{letter-spacing:-0.976800px;}
.lsac{letter-spacing:-0.950400px;}
.lsb0{letter-spacing:-0.930600px;}
.ls104{letter-spacing:-0.924000px;}
.ls16d{letter-spacing:-0.906000px;}
.ls8d{letter-spacing:-0.904200px;}
.ls8c{letter-spacing:-0.884400px;}
.ls6e{letter-spacing:-0.871200px;}
.ls9a{letter-spacing:-0.864000px;}
.ls53{letter-spacing:-0.851400px;}
.ls68{letter-spacing:-0.838200px;}
.ls2b{letter-spacing:-0.825000px;}
.ls151{letter-spacing:-0.814500px;}
.ls105{letter-spacing:-0.810616px;}
.ls150{letter-spacing:-0.810000px;}
.ls16f{letter-spacing:-0.805500px;}
.ls170{letter-spacing:-0.804000px;}
.ls83{letter-spacing:-0.785400px;}
.ls34{letter-spacing:-0.765600px;}
.ls70{letter-spacing:-0.759000px;}
.lsd{letter-spacing:-0.746700px;}
.lsb2{letter-spacing:-0.745800px;}
.lsd9{letter-spacing:-0.739200px;}
.ls81{letter-spacing:-0.726000px;}
.ls149{letter-spacing:-0.720000px;}
.lsa8{letter-spacing:-0.719400px;}
.lsfd{letter-spacing:-0.693000px;}
.lse7{letter-spacing:-0.688842px;}
.lsdf{letter-spacing:-0.680400px;}
.ls8b{letter-spacing:-0.679800px;}
.lsdd{letter-spacing:-0.675000px;}
.ls7b{letter-spacing:-0.666600px;}
.lsaa{letter-spacing:-0.660000px;}
.ls72{letter-spacing:-0.648000px;}
.ls7f{letter-spacing:-0.640200px;}
.ls2c{letter-spacing:-0.633600px;}
.ls61{letter-spacing:-0.627000px;}
.ls13e{letter-spacing:-0.624000px;}
.ls13c{letter-spacing:-0.621000px;}
.ls13d{letter-spacing:-0.618000px;}
.ls37{letter-spacing:-0.613800px;}
.ls60{letter-spacing:-0.607200px;}
.ls146{letter-spacing:-0.606000px;}
.lsf5{letter-spacing:-0.600600px;}
.ls175{letter-spacing:-0.582000px;}
.lsb4{letter-spacing:-0.567600px;}
.lsdc{letter-spacing:-0.567000px;}
.lsca{letter-spacing:-0.561000px;}
.ls6f{letter-spacing:-0.547800px;}
.ls144{letter-spacing:-0.540000px;}
.lse8{letter-spacing:-0.539616px;}
.ls30{letter-spacing:-0.534600px;}
.ls11{letter-spacing:-0.518700px;}
.ls10{letter-spacing:-0.513000px;}
.ls88{letter-spacing:-0.508200px;}
.lsa7{letter-spacing:-0.501600px;}
.ls14f{letter-spacing:-0.498000px;}
.ls14d{letter-spacing:-0.490500px;}
.lsfb{letter-spacing:-0.488400px;}
.ls14e{letter-spacing:-0.486000px;}
.ls4b{letter-spacing:-0.481800px;}
.ls55{letter-spacing:-0.480000px;}
.ls16{letter-spacing:-0.475200px;}
.ls87{letter-spacing:-0.462000px;}
.lsb{letter-spacing:-0.456000px;}
.lsf6{letter-spacing:-0.449820px;}
.lsc{letter-spacing:-0.444600px;}
.ls32{letter-spacing:-0.429000px;}
.ls4d{letter-spacing:-0.409200px;}
.ls2d{letter-spacing:-0.402600px;}
.ls31{letter-spacing:-0.396000px;}
.ls39{letter-spacing:-0.394200px;}
.lsc5{letter-spacing:-0.389400px;}
.ls96{letter-spacing:-0.383400px;}
.lsaf{letter-spacing:-0.382800px;}
.ls97{letter-spacing:-0.380700px;}
.lsc7{letter-spacing:-0.369600px;}
.lscb{letter-spacing:-0.363000px;}
.ls14{letter-spacing:-0.356400px;}
.ls7d{letter-spacing:-0.349800px;}
.ls172{letter-spacing:-0.348000px;}
.ls10f{letter-spacing:-0.343200px;}
.lsa{letter-spacing:-0.342000px;}
.ls56{letter-spacing:-0.340200px;}
.lsa9{letter-spacing:-0.330000px;}
.ls8{letter-spacing:-0.324900px;}
.ls8a{letter-spacing:-0.323400px;}
.ls6b{letter-spacing:-0.303600px;}
.lsf4{letter-spacing:-0.290400px;}
.ls29{letter-spacing:-0.283800px;}
.ls71{letter-spacing:-0.280800px;}
.lsfe{letter-spacing:-0.277200px;}
.ls7c{letter-spacing:-0.270600px;}
.ls106{letter-spacing:-0.270205px;}
.ls2e{letter-spacing:-0.264000px;}
.ls6c{letter-spacing:-0.257400px;}
.ls132{letter-spacing:-0.250800px;}
.ls3b{letter-spacing:-0.248400px;}
.ls145{letter-spacing:-0.246000px;}
.ls84{letter-spacing:-0.244200px;}
.ls3a{letter-spacing:-0.243000px;}
.ls2f{letter-spacing:-0.231000px;}
.lsd8{letter-spacing:-0.224400px;}
.ls171{letter-spacing:-0.222000px;}
.lseb{letter-spacing:-0.221760px;}
.ls50{letter-spacing:-0.217800px;}
.ls137{letter-spacing:-0.216000px;}
.ls103{letter-spacing:-0.211200px;}
.lse9{letter-spacing:-0.206976px;}
.ls16e{letter-spacing:-0.204000px;}
.lsc6{letter-spacing:-0.198000px;}
.lsae{letter-spacing:-0.178200px;}
.ls7a{letter-spacing:-0.171600px;}
.ls141{letter-spacing:-0.156000px;}
.ls15{letter-spacing:-0.151800px;}
.ls7e{letter-spacing:-0.145200px;}
.ls140{letter-spacing:-0.139500px;}
.lsb1{letter-spacing:-0.138600px;}
.ls142{letter-spacing:-0.135000px;}
.ls65{letter-spacing:-0.132000px;}
.ls157{letter-spacing:-0.126000px;}
.ls64{letter-spacing:-0.125400px;}
.ls57{letter-spacing:-0.118800px;}
.ls111{letter-spacing:-0.111552px;}
.ls9{letter-spacing:-0.102600px;}
.ls67{letter-spacing:-0.099000px;}
.ls8e{letter-spacing:-0.086400px;}
.ls35{letter-spacing:-0.085800px;}
.ls8f{letter-spacing:-0.085050px;}
.ls4c{letter-spacing:-0.079200px;}
.ls66{letter-spacing:-0.072600px;}
.lse{letter-spacing:-0.068400px;}
.lsc9{letter-spacing:-0.066000px;}
.ls169{letter-spacing:-0.063000px;}
.ls16a{letter-spacing:-0.060000px;}
.ls4a{letter-spacing:-0.052800px;}
.ls62{letter-spacing:-0.046200px;}
.ls6a{letter-spacing:-0.039600px;}
.ls33{letter-spacing:-0.033000px;}
.ls92{letter-spacing:-0.032400px;}
.ls90{letter-spacing:-0.021600px;}
.ls93{letter-spacing:-0.020250px;}
.lsc8{letter-spacing:-0.019800px;}
.ls94{letter-spacing:-0.016200px;}
.ls17{letter-spacing:-0.014400px;}
.ls136{letter-spacing:-0.013500px;}
.ls133{letter-spacing:-0.013200px;}
.ls95{letter-spacing:-0.012150px;}
.ls13b{letter-spacing:-0.012000px;}
.ls1a{letter-spacing:-0.011400px;}
.lse0{letter-spacing:-0.010800px;}
.ls18{letter-spacing:-0.009600px;}
.ls14c{letter-spacing:-0.009000px;}
.ls98{letter-spacing:-0.008100px;}
.ls12{letter-spacing:-0.006600px;}
.ls135{letter-spacing:-0.006000px;}
.ls6{letter-spacing:-0.005700px;}
.ls19{letter-spacing:-0.005400px;}
.ls38{letter-spacing:-0.004800px;}
.ls14a{letter-spacing:-0.004500px;}
.ls99{letter-spacing:-0.004050px;}
.ls113{letter-spacing:-0.003984px;}
.ls5{letter-spacing:0.000000px;}
.ls122{letter-spacing:0.002400px;}
.lse4{letter-spacing:0.003234px;}
.lsf2{letter-spacing:0.003780px;}
.ls28{letter-spacing:0.005400px;}
.ls5b{letter-spacing:0.006600px;}
.ls52{letter-spacing:0.013200px;}
.ls49{letter-spacing:0.016200px;}
.ls15e{letter-spacing:0.017400px;}
.ls173{letter-spacing:0.018000px;}
.ls160{letter-spacing:0.018600px;}
.ls20{letter-spacing:0.019800px;}
.ls15f{letter-spacing:0.022500px;}
.ls161{letter-spacing:0.024000px;}
.ls24{letter-spacing:0.026400px;}
.ls4{letter-spacing:0.033000px;}
.lsa4{letter-spacing:0.046200px;}
.lsb6{letter-spacing:0.052800px;}
.ls129{letter-spacing:0.057600px;}
.ls69{letter-spacing:0.059400px;}
.lsbc{letter-spacing:0.064800px;}
.ls41{letter-spacing:0.066000px;}
.ls5a{letter-spacing:0.079200px;}
.lsa2{letter-spacing:0.085800px;}
.ls128{letter-spacing:0.094500px;}
.ls126{letter-spacing:0.094800px;}
.ls3f{letter-spacing:0.099000px;}
.ls127{letter-spacing:0.102000px;}
.ls101{letter-spacing:0.105600px;}
.ls9b{letter-spacing:0.112200px;}
.ls1{letter-spacing:0.114000px;}
.ls3{letter-spacing:0.125400px;}
.ls75{letter-spacing:0.132000px;}
.lsb8{letter-spacing:0.145200px;}
.ls3c{letter-spacing:0.151800px;}
.ls48{letter-spacing:0.156600px;}
.ls5c{letter-spacing:0.158400px;}
.ls16c{letter-spacing:0.162000px;}
.ls162{letter-spacing:0.163200px;}
.ls21{letter-spacing:0.165000px;}
.ls163{letter-spacing:0.166500px;}
.lsc0{letter-spacing:0.167400px;}
.ls165{letter-spacing:0.168000px;}
.lsbb{letter-spacing:0.171600px;}
.ls134{letter-spacing:0.174000px;}
.ls5e{letter-spacing:0.178200px;}
.ls1c{letter-spacing:0.184800px;}
.ls116{letter-spacing:0.189000px;}
.lsb7{letter-spacing:0.191400px;}
.ls118{letter-spacing:0.192000px;}
.ls117{letter-spacing:0.193500px;}
.ls73{letter-spacing:0.198000px;}
.ls27{letter-spacing:0.199800px;}
.ls10d{letter-spacing:0.217800px;}
.ls7{letter-spacing:0.222300px;}
.ls74{letter-spacing:0.224400px;}
.ls63{letter-spacing:0.237600px;}
.ls1b{letter-spacing:0.244200px;}
.ls23{letter-spacing:0.257400px;}
.ls12d{letter-spacing:0.259200px;}
.ls12e{letter-spacing:0.261000px;}
.ls12f{letter-spacing:0.264000px;}
.ls12b{letter-spacing:0.265500px;}
.ls12c{letter-spacing:0.270000px;}
.lsa0{letter-spacing:0.277200px;}
.ls5f{letter-spacing:0.290400px;}
.ls13a{letter-spacing:0.300000px;}
.ls25{letter-spacing:0.303600px;}
.ls139{letter-spacing:0.306000px;}
.ls3e{letter-spacing:0.310200px;}
.ls119{letter-spacing:0.314400px;}
.ls11b{letter-spacing:0.315000px;}
.lsb9{letter-spacing:0.316800px;}
.ls11a{letter-spacing:0.318000px;}
.ls158{letter-spacing:0.319500px;}
.ls10a{letter-spacing:0.323400px;}
.ls159{letter-spacing:0.324000px;}
.ls15a{letter-spacing:0.325800px;}
.ls114{letter-spacing:0.330000px;}
.ls3d{letter-spacing:0.336600px;}
.ls5d{letter-spacing:0.343200px;}
.ls1d{letter-spacing:0.356400px;}
.lsd6{letter-spacing:0.357600px;}
.lsfa{letter-spacing:0.363000px;}
.ls11c{letter-spacing:0.366000px;}
.ls47{letter-spacing:0.369600px;}
.ls167{letter-spacing:0.372000px;}
.ls58{letter-spacing:0.376200px;}
.ls10e{letter-spacing:0.382800px;}
.lsec{letter-spacing:0.402600px;}
.ls82{letter-spacing:0.415800px;}
.ls22{letter-spacing:0.429000px;}
.ls1f{letter-spacing:0.435600px;}
.ls77{letter-spacing:0.455400px;}
.lscd{letter-spacing:0.459000px;}
.ls46{letter-spacing:0.462000px;}
.ls91{letter-spacing:0.465750px;}
.ls9f{letter-spacing:0.468600px;}
.lsbd{letter-spacing:0.469800px;}
.lsbe{letter-spacing:0.473850px;}
.lsba{letter-spacing:0.475200px;}
.lsbf{letter-spacing:0.477900px;}
.lse3{letter-spacing:0.481800px;}
.ls40{letter-spacing:0.488400px;}
.lsed{letter-spacing:0.495000px;}
.lsa1{letter-spacing:0.501600px;}
.lsd7{letter-spacing:0.508200px;}
.ls1e{letter-spacing:0.534600px;}
.ls14b{letter-spacing:0.535500px;}
.ls0{letter-spacing:0.564300px;}
.ls78{letter-spacing:0.600600px;}
.lsd1{letter-spacing:0.607200px;}
.lscf{letter-spacing:0.646800px;}
.lsd2{letter-spacing:0.653400px;}
.ls42{letter-spacing:0.660000px;}
.ls168{letter-spacing:0.678000px;}
.ls2{letter-spacing:0.678300px;}
.lsd3{letter-spacing:0.679800px;}
.lsf1{letter-spacing:0.693000px;}
.ls45{letter-spacing:0.706200px;}
.lsa3{letter-spacing:0.712800px;}
.ls108{letter-spacing:0.719400px;}
.ls174{letter-spacing:0.720000px;}
.ls115{letter-spacing:0.733500px;}
.ls44{letter-spacing:0.745800px;}
.ls109{letter-spacing:0.765600px;}
.lsa5{letter-spacing:0.778800px;}
.ls9e{letter-spacing:0.785400px;}
.ls59{letter-spacing:0.798600px;}
.lsf7{letter-spacing:0.802200px;}
.ls12a{letter-spacing:0.807600px;}
.lsb5{letter-spacing:0.818400px;}
.ls26{letter-spacing:0.825000px;}
.ls76{letter-spacing:0.831600px;}
.ls79{letter-spacing:0.858600px;}
.ls43{letter-spacing:0.904200px;}
.lse2{letter-spacing:0.937200px;}
.lscc{letter-spacing:0.959850px;}
.ls9c{letter-spacing:0.983400px;}
.ls166{letter-spacing:0.984000px;}
.lsee{letter-spacing:0.990000px;}
.lsc1{letter-spacing:1.036800px;}
.ls123{letter-spacing:1.048800px;}
.ls10b{letter-spacing:1.049400px;}
.ls125{letter-spacing:1.050000px;}
.ls124{letter-spacing:1.053000px;}
.lsf9{letter-spacing:1.054200px;}
.lsce{letter-spacing:1.056000px;}
.ls100{letter-spacing:1.062600px;}
.lsd4{letter-spacing:1.075800px;}
.ls121{letter-spacing:1.140000px;}
.ls13f{letter-spacing:1.146000px;}
.ls9d{letter-spacing:1.155000px;}
.ls107{letter-spacing:1.174800px;}
.ls110{letter-spacing:1.280400px;}
.lsef{letter-spacing:1.353000px;}
.lsd5{letter-spacing:1.399200px;}
.lsf3{letter-spacing:1.412400px;}
.lsd0{letter-spacing:1.419000px;}
.ls15b{letter-spacing:1.477200px;}
.ls15c{letter-spacing:1.487400px;}
.ls15d{letter-spacing:1.489500px;}
.ls11e{letter-spacing:1.494000px;}
.ls11d{letter-spacing:1.495200px;}
.ls11f{letter-spacing:1.500000px;}
.lsf0{letter-spacing:1.603800px;}
.lse1{letter-spacing:1.755600px;}
.lsa6{letter-spacing:1.887600px;}
.ls10c{letter-spacing:1.960200px;}
.ls153{letter-spacing:14.958000px;}
.ls164{letter-spacing:16.674000px;}
.ls120{letter-spacing:25.764000px;}
.ls130{letter-spacing:30.000000px;}
.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;}
}
.ws151{word-spacing:-45.000000px;}
.ws174{word-spacing:-29.958000px;}
.ws6{word-spacing:-24.000000px;}
.wsf2{word-spacing:-17.179800px;}
.ws13d{word-spacing:-16.882800px;}
.ws4{word-spacing:-16.830000px;}
.ws5{word-spacing:-16.823400px;}
.ws21{word-spacing:-16.500000px;}
.wsd4{word-spacing:-16.480200px;}
.ws23{word-spacing:-16.104000px;}
.ws155{word-spacing:-15.300000px;}
.ws73{word-spacing:-15.246000px;}
.ws14d{word-spacing:-15.174000px;}
.ws1a1{word-spacing:-15.162000px;}
.wsd3{word-spacing:-15.081000px;}
.ws14b{word-spacing:-15.000000px;}
.ws14f{word-spacing:-14.994000px;}
.wsd2{word-spacing:-14.902800px;}
.ws15d{word-spacing:-14.844000px;}
.ws1a4{word-spacing:-14.778000px;}
.ws160{word-spacing:-14.754000px;}
.ws1a5{word-spacing:-14.652000px;}
.ws0{word-spacing:-14.535000px;}
.ws8{word-spacing:-14.523600px;}
.ws19d{word-spacing:-14.340000px;}
.ws162{word-spacing:-14.280000px;}
.ws16c{word-spacing:-14.274000px;}
.ws2{word-spacing:-14.250000px;}
.ws9{word-spacing:-14.244300px;}
.wsa{word-spacing:-14.238600px;}
.ws1a2{word-spacing:-14.094000px;}
.wsd6{word-spacing:-13.959000px;}
.ws1{word-spacing:-13.908000px;}
.ws3{word-spacing:-13.788300px;}
.wsf4{word-spacing:-13.770000px;}
.ws91{word-spacing:-13.714800px;}
.ws15b{word-spacing:-13.560000px;}
.ws152{word-spacing:-13.548000px;}
.ws7{word-spacing:-13.500000px;}
.ws94{word-spacing:-13.467600px;}
.ws15f{word-spacing:-13.386000px;}
.ws74{word-spacing:-12.852000px;}
.ws15a{word-spacing:-12.744000px;}
.ws19c{word-spacing:-12.739500px;}
.ws11c{word-spacing:-12.474000px;}
.ws173{word-spacing:-12.468000px;}
.ws166{word-spacing:-12.303000px;}
.wsf3{word-spacing:-12.285000px;}
.ws26{word-spacing:-12.000000px;}
.ws101{word-spacing:-11.880000px;}
.ws164{word-spacing:-11.785500px;}
.ws195{word-spacing:-11.574000px;}
.ws197{word-spacing:-11.569500px;}
.ws154{word-spacing:-11.565000px;}
.ws153{word-spacing:-11.556000px;}
.ws22{word-spacing:-11.550000px;}
.ws16d{word-spacing:-11.515500px;}
.ws16f{word-spacing:-11.511000px;}
.ws14e{word-spacing:-11.443500px;}
.ws14c{word-spacing:-11.439000px;}
.ws1a0{word-spacing:-11.416500px;}
.ws167{word-spacing:-11.349000px;}
.ws168{word-spacing:-11.344500px;}
.ws19f{word-spacing:-11.272500px;}
.ws156{word-spacing:-11.250000px;}
.ws163{word-spacing:-11.245500px;}
.ws165{word-spacing:-11.241000px;}
.ws150{word-spacing:-11.236500px;}
.ws199{word-spacing:-11.187000px;}
.ws15e{word-spacing:-11.115000px;}
.ws15c{word-spacing:-11.110500px;}
.wsd5{word-spacing:-11.084850px;}
.ws139{word-spacing:-10.988345px;}
.ws13c{word-spacing:-10.920000px;}
.ws16b{word-spacing:-10.764000px;}
.ws16a{word-spacing:-10.759500px;}
.ws159{word-spacing:-10.629000px;}
.wsd8{word-spacing:-10.602900px;}
.wsd7{word-spacing:-10.598850px;}
.ws93{word-spacing:-10.590750px;}
.ws11e{word-spacing:-10.500000px;}
.ws138{word-spacing:-10.447934px;}
.ws1a3{word-spacing:-10.444500px;}
.ws172{word-spacing:-10.435500px;}
.ws161{word-spacing:-10.179000px;}
.ws99{word-spacing:-10.120950px;}
.ws96{word-spacing:-10.112850px;}
.ws95{word-spacing:-10.104750px;}
.ws92{word-spacing:-10.039950px;}
.ws13f{word-spacing:-9.960000px;}
.ws176{word-spacing:-9.891000px;}
.ws97{word-spacing:-9.744300px;}
.ws12e{word-spacing:-9.504000px;}
.ws110{word-spacing:-9.453780px;}
.ws10f{word-spacing:-9.450000px;}
.ws104{word-spacing:-9.240000px;}
.ws105{word-spacing:-9.033024px;}
.ws107{word-spacing:-9.018240px;}
.ws10e{word-spacing:-9.000180px;}
.ws19a{word-spacing:-8.946000px;}
.ws140{word-spacing:-8.760816px;}
.ws106{word-spacing:-8.131200px;}
.ws13{word-spacing:-2.074800px;}
.ws148{word-spacing:-1.517400px;}
.ws149{word-spacing:-1.490400px;}
.wsf7{word-spacing:-0.818400px;}
.ws39{word-spacing:-0.798600px;}
.ws78{word-spacing:-0.785400px;}
.ws85{word-spacing:-0.778800px;}
.ws72{word-spacing:-0.772200px;}
.wse3{word-spacing:-0.765600px;}
.ws9c{word-spacing:-0.759000px;}
.ws5a{word-spacing:-0.752400px;}
.ws3d{word-spacing:-0.745800px;}
.ws1b2{word-spacing:-0.744000px;}
.ws129{word-spacing:-0.739200px;}
.ws7e{word-spacing:-0.732600px;}
.ws132{word-spacing:-0.726000px;}
.ws18c{word-spacing:-0.720000px;}
.ws5f{word-spacing:-0.712800px;}
.ws7b{word-spacing:-0.706200px;}
.ws124{word-spacing:-0.699600px;}
.wscb{word-spacing:-0.693000px;}
.ws1a7{word-spacing:-0.690000px;}
.ws9f{word-spacing:-0.686400px;}
.ws1a{word-spacing:-0.679800px;}
.ws147{word-spacing:-0.673200px;}
.ws58{word-spacing:-0.666600px;}
.wsb4{word-spacing:-0.664200px;}
.ws9d{word-spacing:-0.660000px;}
.wsb3{word-spacing:-0.658800px;}
.wsb2{word-spacing:-0.653400px;}
.ws31{word-spacing:-0.633600px;}
.ws192{word-spacing:-0.630000px;}
.ws32{word-spacing:-0.627000px;}
.ws134{word-spacing:-0.620400px;}
.wsf{word-spacing:-0.615600px;}
.ws66{word-spacing:-0.613800px;}
.ws36{word-spacing:-0.600600px;}
.wsb1{word-spacing:-0.588600px;}
.wsa5{word-spacing:-0.580800px;}
.ws87{word-spacing:-0.574200px;}
.wsb6{word-spacing:-0.572400px;}
.ws30{word-spacing:-0.567600px;}
.wsb5{word-spacing:-0.567000px;}
.ws71{word-spacing:-0.561600px;}
.ws53{word-spacing:-0.561000px;}
.ws12c{word-spacing:-0.554400px;}
.ws2a{word-spacing:-0.547800px;}
.ws1af{word-spacing:-0.546000px;}
.wsee{word-spacing:-0.545400px;}
.ws43{word-spacing:-0.541200px;}
.ws17c{word-spacing:-0.540000px;}
.ws86{word-spacing:-0.528000px;}
.wsac{word-spacing:-0.508200px;}
.wsbe{word-spacing:-0.501600px;}
.ws9e{word-spacing:-0.481800px;}
.ws19{word-spacing:-0.475200px;}
.ws89{word-spacing:-0.468600px;}
.wse2{word-spacing:-0.462000px;}
.wsdd{word-spacing:-0.442200px;}
.ws4b{word-spacing:-0.437400px;}
.ws2f{word-spacing:-0.429000px;}
.ws5c{word-spacing:-0.422400px;}
.ws90{word-spacing:-0.394200px;}
.wse{word-spacing:-0.393300px;}
.wsef{word-spacing:-0.372600px;}
.wsa7{word-spacing:-0.369600px;}
.wsa1{word-spacing:-0.363000px;}
.ws1d{word-spacing:-0.356400px;}
.ws54{word-spacing:-0.349800px;}
.ws125{word-spacing:-0.343200px;}
.ws70{word-spacing:-0.340200px;}
.wsa8{word-spacing:-0.323400px;}
.wsbd{word-spacing:-0.310200px;}
.ws37{word-spacing:-0.297000px;}
.ws49{word-spacing:-0.286200px;}
.ws8a{word-spacing:-0.283800px;}
.ws11{word-spacing:-0.279300px;}
.ws6e{word-spacing:-0.275400px;}
.ws12{word-spacing:-0.273600px;}
.wse5{word-spacing:-0.270600px;}
.ws18a{word-spacing:-0.270000px;}
.wscf{word-spacing:-0.264000px;}
.ws4f{word-spacing:-0.257400px;}
.ws18b{word-spacing:-0.252000px;}
.ws179{word-spacing:-0.250800px;}
.ws144{word-spacing:-0.237600px;}
.ws48{word-spacing:-0.217800px;}
.ws17{word-spacing:-0.216600px;}
.ws56{word-spacing:-0.211200px;}
.ws79{word-spacing:-0.204600px;}
.ws18{word-spacing:-0.199500px;}
.ws2e{word-spacing:-0.198000px;}
.wsa0{word-spacing:-0.191400px;}
.ws1ab{word-spacing:-0.186000px;}
.ws8d{word-spacing:-0.178200px;}
.ws1ac{word-spacing:-0.174000px;}
.wsbf{word-spacing:-0.171600px;}
.ws143{word-spacing:-0.158400px;}
.wsad{word-spacing:-0.151800px;}
.ws62{word-spacing:-0.138600px;}
.ws11a{word-spacing:-0.132000px;}
.ws180{word-spacing:-0.126000px;}
.ws11b{word-spacing:-0.118800px;}
.wsfd{word-spacing:-0.113400px;}
.wsb9{word-spacing:-0.112200px;}
.ws14a{word-spacing:-0.111552px;}
.wsa2{word-spacing:-0.099000px;}
.ws81{word-spacing:-0.092400px;}
.wscd{word-spacing:-0.085800px;}
.ws20{word-spacing:-0.081600px;}
.ws8f{word-spacing:-0.072600px;}
.ws3a{word-spacing:-0.066000px;}
.ws190{word-spacing:-0.048000px;}
.wsa4{word-spacing:-0.046200px;}
.ws18f{word-spacing:-0.042000px;}
.ws198{word-spacing:-0.012000px;}
.ws1e{word-spacing:-0.009600px;}
.ws2c{word-spacing:-0.006600px;}
.ws10{word-spacing:-0.005700px;}
.ws6c{word-spacing:-0.004800px;}
.wsb{word-spacing:0.000000px;}
.wsed{word-spacing:0.005400px;}
.ws1f{word-spacing:0.005700px;}
.ws17b{word-spacing:0.006000px;}
.ws80{word-spacing:0.006600px;}
.ws18e{word-spacing:0.012000px;}
.ws130{word-spacing:0.013200px;}
.ws6a{word-spacing:0.019800px;}
.ws34{word-spacing:0.039600px;}
.ws83{word-spacing:0.046200px;}
.ws1b0{word-spacing:0.048000px;}
.wsaf{word-spacing:0.052800px;}
.ws18d{word-spacing:0.054000px;}
.ws157{word-spacing:0.060000px;}
.wsb0{word-spacing:0.072600px;}
.ws117{word-spacing:0.085800px;}
.ws137{word-spacing:0.092400px;}
.wsca{word-spacing:0.099000px;}
.wsc4{word-spacing:0.118800px;}
.ws52{word-spacing:0.132000px;}
.ws127{word-spacing:0.138600px;}
.ws67{word-spacing:0.145200px;}
.ws4a{word-spacing:0.156600px;}
.wsce{word-spacing:0.158400px;}
.wsb8{word-spacing:0.198000px;}
.wsbb{word-spacing:0.211200px;}
.wse6{word-spacing:0.217800px;}
.wsa6{word-spacing:0.224400px;}
.wsfa{word-spacing:0.244200px;}
.ws8e{word-spacing:0.257400px;}
.wsc2{word-spacing:0.264000px;}
.wsff{word-spacing:0.275400px;}
.wsd9{word-spacing:0.277200px;}
.ws51{word-spacing:0.290400px;}
.ws35{word-spacing:0.297000px;}
.wsf1{word-spacing:0.307800px;}
.ws185{word-spacing:0.318000px;}
.wsc3{word-spacing:0.323400px;}
.wsc6{word-spacing:0.330000px;}
.ws131{word-spacing:0.356400px;}
.ws7d{word-spacing:0.389400px;}
.ws119{word-spacing:0.429000px;}
.wsfe{word-spacing:0.432000px;}
.ws60{word-spacing:0.435600px;}
.ws186{word-spacing:0.438000px;}
.ws113{word-spacing:0.442200px;}
.ws187{word-spacing:0.444000px;}
.ws133{word-spacing:0.448800px;}
.ws6b{word-spacing:0.475200px;}
.wsb7{word-spacing:0.486000px;}
.ws135{word-spacing:0.488400px;}
.ws68{word-spacing:0.495000px;}
.ws1b1{word-spacing:0.510000px;}
.ws108{word-spacing:0.547800px;}
.ws38{word-spacing:0.561000px;}
.wse0{word-spacing:0.567600px;}
.ws14{word-spacing:0.575700px;}
.ws10a{word-spacing:0.580800px;}
.wsc9{word-spacing:0.587400px;}
.ws191{word-spacing:0.606000px;}
.ws12b{word-spacing:0.607200px;}
.ws177{word-spacing:0.613800px;}
.ws3e{word-spacing:0.627000px;}
.ws7f{word-spacing:0.640200px;}
.ws10b{word-spacing:0.646800px;}
.ws44{word-spacing:0.653400px;}
.wsbc{word-spacing:0.660000px;}
.ws100{word-spacing:0.669600px;}
.ws118{word-spacing:0.679800px;}
.wse1{word-spacing:0.686400px;}
.ws12a{word-spacing:0.693000px;}
.ws116{word-spacing:0.699600px;}
.wsc{word-spacing:0.701100px;}
.wsab{word-spacing:0.719400px;}
.ws146{word-spacing:0.726000px;}
.ws5e{word-spacing:0.739200px;}
.ws16{word-spacing:0.741000px;}
.wsba{word-spacing:0.745800px;}
.ws42{word-spacing:0.759000px;}
.wsc0{word-spacing:0.772200px;}
.ws193{word-spacing:0.780000px;}
.ws112{word-spacing:0.785400px;}
.wsc7{word-spacing:0.792000px;}
.ws141{word-spacing:0.798600px;}
.wsf9{word-spacing:0.805200px;}
.ws47{word-spacing:0.811800px;}
.wsdb{word-spacing:0.825000px;}
.ws76{word-spacing:0.844800px;}
.wsd{word-spacing:0.855000px;}
.wsd1{word-spacing:0.864600px;}
.wsec{word-spacing:0.869400px;}
.wseb{word-spacing:0.874800px;}
.wsea{word-spacing:0.880200px;}
.wsf8{word-spacing:0.884400px;}
.ws111{word-spacing:0.891000px;}
.ws61{word-spacing:0.897600px;}
.ws145{word-spacing:0.924000px;}
.wscc{word-spacing:0.930600px;}
.ws63{word-spacing:0.937200px;}
.ws115{word-spacing:0.950400px;}
.wsda{word-spacing:0.963600px;}
.ws5d{word-spacing:0.983400px;}
.ws178{word-spacing:1.016400px;}
.ws182{word-spacing:1.032000px;}
.wsae{word-spacing:1.042800px;}
.ws33{word-spacing:1.108800px;}
.ws17f{word-spacing:1.128000px;}
.wsfc{word-spacing:1.135200px;}
.ws184{word-spacing:1.140000px;}
.wsc8{word-spacing:1.141800px;}
.ws4c{word-spacing:1.144800px;}
.ws12d{word-spacing:1.148400px;}
.ws59{word-spacing:1.155000px;}
.ws10c{word-spacing:1.161600px;}
.wse7{word-spacing:1.168200px;}
.ws1a6{word-spacing:1.170000px;}
.wsfb{word-spacing:1.174800px;}
.ws17e{word-spacing:1.176000px;}
.wsf0{word-spacing:1.177200px;}
.ws64{word-spacing:1.181400px;}
.ws17d{word-spacing:1.182000px;}
.ws6d{word-spacing:1.188000px;}
.ws84{word-spacing:1.194600px;}
.ws3b{word-spacing:1.207800px;}
.ws40{word-spacing:1.214400px;}
.wsa3{word-spacing:1.227600px;}
.wsf6{word-spacing:1.247400px;}
.ws142{word-spacing:1.254000px;}
.ws75{word-spacing:1.267200px;}
.ws65{word-spacing:1.273800px;}
.wse9{word-spacing:1.279800px;}
.ws128{word-spacing:1.280400px;}
.ws2b{word-spacing:1.287000px;}
.ws88{word-spacing:1.300200px;}
.ws17a{word-spacing:1.302000px;}
.ws15{word-spacing:1.305300px;}
.ws50{word-spacing:1.306800px;}
.ws114{word-spacing:1.313400px;}
.ws1ae{word-spacing:1.326000px;}
.wse4{word-spacing:1.326600px;}
.ws6f{word-spacing:1.328400px;}
.ws1ad{word-spacing:1.332000px;}
.ws55{word-spacing:1.333200px;}
.ws4d{word-spacing:1.333800px;}
.ws46{word-spacing:1.339800px;}
.ws8c{word-spacing:1.353000px;}
.wsc5{word-spacing:1.366200px;}
.ws41{word-spacing:1.386000px;}
.ws189{word-spacing:1.392000px;}
.ws188{word-spacing:1.398000px;}
.ws28{word-spacing:1.399200px;}
.ws7a{word-spacing:1.405800px;}
.wsa9{word-spacing:1.419000px;}
.ws183{word-spacing:1.434000px;}
.ws9b{word-spacing:1.445400px;}
.wsde{word-spacing:1.452000px;}
.ws29{word-spacing:1.458600px;}
.ws8b{word-spacing:1.465200px;}
.ws1aa{word-spacing:1.470000px;}
.wse8{word-spacing:1.471800px;}
.ws3f{word-spacing:1.478400px;}
.ws82{word-spacing:1.485000px;}
.ws4e{word-spacing:1.491600px;}
.wsdf{word-spacing:1.498200px;}
.wsaa{word-spacing:1.511400px;}
.ws1b{word-spacing:1.518000px;}
.ws126{word-spacing:1.531200px;}
.ws136{word-spacing:1.537800px;}
.ws57{word-spacing:1.544400px;}
.ws109{word-spacing:1.551000px;}
.ws77{word-spacing:1.557600px;}
.ws5b{word-spacing:1.577400px;}
.wsc1{word-spacing:1.584000px;}
.wsdc{word-spacing:1.590600px;}
.wsd0{word-spacing:1.597200px;}
.ws24{word-spacing:1.603800px;}
.ws1c{word-spacing:1.610400px;}
.ws45{word-spacing:1.617000px;}
.ws3c{word-spacing:1.623600px;}
.ws69{word-spacing:1.630200px;}
.ws7c{word-spacing:1.636800px;}
.ws2d{word-spacing:1.643400px;}
.ws9a{word-spacing:1.728000px;}
.ws98{word-spacing:2.817600px;}
.ws16e{word-spacing:3.039600px;}
.ws169{word-spacing:3.501000px;}
.ws158{word-spacing:3.624000px;}
.ws170{word-spacing:3.790500px;}
.ws171{word-spacing:3.816900px;}
.ws175{word-spacing:4.374600px;}
.ws1a8{word-spacing:4.476000px;}
.ws1a9{word-spacing:4.482000px;}
.ws194{word-spacing:4.936800px;}
.ws196{word-spacing:4.964400px;}
.ws19e{word-spacing:5.234700px;}
.ws181{word-spacing:7.764000px;}
.ws19b{word-spacing:8.244600px;}
.ws1b3{word-spacing:16.530000px;}
.ws25{word-spacing:35.784000px;}
.ws27{word-spacing:36.001800px;}
.ws10d{word-spacing:82.152000px;}
.ws122{word-spacing:84.192000px;}
.wsf5{word-spacing:89.716800px;}
.ws12f{word-spacing:89.717400px;}
.ws123{word-spacing:96.408000px;}
.ws102{word-spacing:99.251460px;}
.ws103{word-spacing:106.540896px;}
.ws11f{word-spacing:142.785600px;}
.ws11d{word-spacing:145.488000px;}
.ws13b{word-spacing:175.921200px;}
.ws13a{word-spacing:222.197040px;}
.ws13e{word-spacing:244.318800px;}
.ws121{word-spacing:468.216000px;}
.ws120{word-spacing:609.630000px;}
._1e{margin-left:-30.210000px;}
._21{margin-left:-14.944800px;}
._6{margin-left:-12.480000px;}
._20{margin-left:-10.814400px;}
._d{margin-left:-8.652600px;}
._a{margin-left:-7.253400px;}
._3{margin-left:-5.358000px;}
._9{margin-left:-3.862200px;}
._2{margin-left:-2.850000px;}
._1{margin-left:-1.214100px;}
._0{width:1.539000px;}
._4{width:2.724600px;}
._7{width:4.486800px;}
._22{width:5.913000px;}
._1f{width:7.613700px;}
._c{width:47.548500px;}
._5{width:48.795600px;}
._17{width:50.431680px;}
._10{width:91.077000px;}
._18{width:94.180320px;}
._f{width:98.427000px;}
._e{width:107.352000px;}
._12{width:151.488000px;}
._14{width:161.188800px;}
._13{width:165.979200px;}
._11{width:169.488000px;}
._16{width:171.227520px;}
._15{width:181.880640px;}
._b{width:190.277400px;}
._1a{width:194.121209px;}
._1b{width:229.518090px;}
._1d{width:251.788800px;}
._1c{width:261.748800px;}
._19{width:667.430651px;}
._8{width:1195.914000px;}
.fc1{color:transparent;}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:31.200000px;}
.fs9{font-size:32.340000px;}
.fs12{font-size:34.860000px;}
.fsd{font-size:36.000000px;}
.fsa{font-size:36.960000px;}
.fsc{font-size:37.800000px;}
.fs14{font-size:39.840000px;}
.fs7{font-size:40.500000px;}
.fsb{font-size:42.000000px;}
.fse{font-size:43.200000px;}
.fs11{font-size:43.680000px;}
.fs16{font-size:45.000000px;}
.fsf{font-size:45.034200px;}
.fs6{font-size:46.200000px;}
.fs2{font-size:48.000000px;}
.fs13{font-size:49.800000px;}
.fs8{font-size:52.800000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs15{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y269{bottom:42.820365px;}
.y18f{bottom:44.748465px;}
.y1ce{bottom:44.755965px;}
.y175{bottom:46.423485px;}
.y24a{bottom:46.705335px;}
.y135{bottom:46.802985px;}
.y110{bottom:46.806585px;}
.y295{bottom:46.822785px;}
.y12d{bottom:46.879485px;}
.y52{bottom:46.925985px;}
.y7a{bottom:46.929885px;}
.yc8{bottom:46.930035px;}
.ye9{bottom:47.012385px;}
.ya4{bottom:47.276385px;}
.y222{bottom:47.328885px;}
.y15{bottom:48.608385px;}
.y2d3{bottom:49.658685px;}
.y268{bottom:57.070965px;}
.y18e{bottom:58.999065px;}
.y1cd{bottom:59.006565px;}
.y134{bottom:61.053585px;}
.y10f{bottom:61.057185px;}
.y12c{bottom:61.130085px;}
.y51{bottom:61.176585px;}
.y79{bottom:61.180485px;}
.yc7{bottom:61.180635px;}
.ya3{bottom:61.526985px;}
.y174{bottom:63.674235px;}
.y249{bottom:63.956085px;}
.y294{bottom:64.073535px;}
.ye8{bottom:64.263135px;}
.y221{bottom:64.579635px;}
.y2d2{bottom:65.408685px;}
.y14{bottom:65.859135px;}
.y10e{bottom:75.307785px;}
.y12b{bottom:75.380685px;}
.y50{bottom:75.427185px;}
.yc6{bottom:75.430635px;}
.y78{bottom:75.431085px;}
.y173{bottom:80.924985px;}
.y2d1{bottom:81.158685px;}
.y248{bottom:81.206835px;}
.y293{bottom:81.324285px;}
.ye7{bottom:81.513885px;}
.y220{bottom:81.830385px;}
.y13{bottom:83.109885px;}
.y10d{bottom:89.558385px;}
.y12a{bottom:89.631285px;}
.y4f{bottom:89.677785px;}
.yc5{bottom:89.680635px;}
.y77{bottom:89.681685px;}
.y2d0{bottom:96.908685px;}
.y172{bottom:98.175735px;}
.y247{bottom:98.457585px;}
.y292{bottom:98.575035px;}
.ye6{bottom:98.764635px;}
.y21f{bottom:99.081135px;}
.y12{bottom:100.360635px;}
.y160{bottom:101.785485px;}
.y26e{bottom:102.298965px;}
.y206{bottom:102.966015px;}
.y10c{bottom:103.808985px;}
.y129{bottom:103.881885px;}
.y4e{bottom:103.928385px;}
.yc4{bottom:103.930635px;}
.y76{bottom:103.932285px;}
.y2cf{bottom:112.658685px;}
.y1ca{bottom:114.719715px;}
.y171{bottom:115.426485px;}
.y246{bottom:115.708335px;}
.y291{bottom:115.825785px;}
.ye5{bottom:116.015385px;}
.ya2{bottom:116.034885px;}
.y21e{bottom:116.331885px;}
.y11{bottom:117.611385px;}
.y10b{bottom:118.059585px;}
.y128{bottom:118.132485px;}
.y4d{bottom:118.178985px;}
.yc3{bottom:118.181235px;}
.y75{bottom:118.182885px;}
.y26d{bottom:121.063215px;}
.y2ce{bottom:128.408685px;}
.y10a{bottom:132.309585px;}
.y127{bottom:132.383085px;}
.y4c{bottom:132.429585px;}
.y170{bottom:132.677235px;}
.y245{bottom:132.959085px;}
.y290{bottom:133.076535px;}
.ye4{bottom:133.266135px;}
.ya1{bottom:133.285635px;}
.y21d{bottom:133.582635px;}
.y1f3{bottom:134.465115px;}
.y154{bottom:138.026943px;}
.y26c{bottom:139.827615px;}
.y156{bottom:140.616915px;}
.y152{bottom:141.577875px;}
.y10{bottom:143.486685px;}
.y2cd{bottom:144.158685px;}
.y157{bottom:145.781151px;}
.y159{bottom:146.362347px;}
.y109{bottom:146.560185px;}
.y126{bottom:146.633685px;}
.y155{bottom:148.280571px;}
.y16f{bottom:149.927985px;}
.y244{bottom:150.209835px;}
.y28f{bottom:150.327285px;}
.ye3{bottom:150.516885px;}
.ya0{bottom:150.536385px;}
.y21c{bottom:150.833385px;}
.y151{bottom:153.696135px;}
.y15b{bottom:155.287263px;}
.y1e0{bottom:156.585015px;}
.y14e{bottom:157.161135px;}
.y153{bottom:158.110083px;}
.y26b{bottom:158.592015px;}
.y14f{bottom:159.663327px;}
.y1f4{bottom:159.720765px;}
.y2cc{bottom:159.908685px;}
.y1b4{bottom:160.198515px;}
.y125{bottom:160.884285px;}
.y15a{bottom:161.149119px;}
.y150{bottom:163.256763px;}
.y1f2{bottom:163.378215px;}
.y16e{bottom:167.178735px;}
.y243{bottom:167.460585px;}
.y28e{bottom:167.578035px;}
.ye2{bottom:167.767635px;}
.y74{bottom:167.773335px;}
.yc2{bottom:167.783385px;}
.y9f{bottom:167.787135px;}
.y21b{bottom:168.084135px;}
.y15c{bottom:170.428851px;}
.y15e{bottom:172.585467px;}
.y1df{bottom:174.393315px;}
.y158{bottom:174.517551px;}
.y2cb{bottom:175.658685px;}
.y26a{bottom:177.356415px;}
.y24{bottom:179.114010px;}
.y1f8{bottom:179.220315px;}
.y15d{bottom:180.411747px;}
.y190{bottom:181.948365px;}
.y1f1{bottom:182.023515px;}
.y1b8{bottom:183.298365px;}
.y16d{bottom:184.429485px;}
.y242{bottom:184.711335px;}
.y28d{bottom:184.828785px;}
.ye1{bottom:185.018385px;}
.y73{bottom:185.024085px;}
.y4b{bottom:185.026635px;}
.yc1{bottom:185.034135px;}
.y9e{bottom:185.037885px;}
.y21a{bottom:185.334885px;}
.y19e{bottom:187.948665px;}
.y2ca{bottom:191.408685px;}
.y1f5{bottom:197.220465px;}
.y191{bottom:199.761165px;}
.y23{bottom:200.114235px;}
.y12f{bottom:200.880885px;}
.y147{bottom:201.636285px;}
.y16c{bottom:201.680235px;}
.y241{bottom:201.962085px;}
.y28c{bottom:202.079535px;}
.ye0{bottom:202.269135px;}
.y72{bottom:202.274835px;}
.y4a{bottom:202.277385px;}
.yc0{bottom:202.284885px;}
.y9d{bottom:202.288635px;}
.y219{bottom:202.585635px;}
.y1bc{bottom:202.797915px;}
.y1f0{bottom:203.567715px;}
.y1de{bottom:203.739615px;}
.y19f{bottom:206.135865px;}
.y2c9{bottom:207.158685px;}
.y15f{bottom:207.323835px;}
.y139{bottom:207.324026px;}
.y144{bottom:207.353940px;}
.y141{bottom:212.042432px;}
.y1dd{bottom:213.558615px;}
.y280{bottom:214.120365px;}
.y25{bottom:215.113785px;}
.y12e{bottom:215.131485px;}
.y192{bottom:218.510865px;}
.y13d{bottom:218.520942px;}
.y1f9{bottom:218.595315px;}
.y16b{bottom:218.930985px;}
.y240{bottom:219.212835px;}
.y28b{bottom:219.330285px;}
.ydf{bottom:219.519885px;}
.y71{bottom:219.525585px;}
.y49{bottom:219.528135px;}
.ybf{bottom:219.535635px;}
.y9c{bottom:219.539385px;}
.y108{bottom:219.541635px;}
.y218{bottom:219.836385px;}
.y143{bottom:220.619000px;}
.y1b9{bottom:220.798065px;}
.y22{bottom:221.114460px;}
.y1ef{bottom:222.688215px;}
.y2c8{bottom:222.908685px;}
.y1a0{bottom:225.823365px;}
.y13e{bottom:230.447934px;}
.y145{bottom:230.511806px;}
.y140{bottom:231.866852px;}
.y1dc{bottom:231.915915px;}
.y142{bottom:233.066666px;}
.y13c{bottom:234.847791px;}
.y138{bottom:235.075788px;}
.y13a{bottom:235.425868px;}
.y21{bottom:236.114010px;}
.y16a{bottom:236.181735px;}
.y193{bottom:236.323665px;}
.y23f{bottom:236.463585px;}
.y28a{bottom:236.581035px;}
.yde{bottom:236.770635px;}
.y70{bottom:236.776335px;}
.y48{bottom:236.778885px;}
.ybe{bottom:236.786385px;}
.y9b{bottom:236.790135px;}
.y107{bottom:236.792385px;}
.y217{bottom:237.087135px;}
.y1f6{bottom:237.720015px;}
.y2c7{bottom:238.658685px;}
.y148{bottom:238.992450px;}
.y1bd{bottom:239.173065px;}
.y1ee{bottom:241.520715px;}
.y1a1{bottom:244.198665px;}
.y26f{bottom:248.189115px;}
.y1db{bottom:252.550215px;}
.y169{bottom:253.432485px;}
.y194{bottom:253.573965px;}
.y23e{bottom:253.714335px;}
.y289{bottom:253.831785px;}
.ydd{bottom:254.021385px;}
.y6f{bottom:254.027085px;}
.y47{bottom:254.029635px;}
.ybd{bottom:254.037135px;}
.y9a{bottom:254.040885px;}
.y106{bottom:254.043135px;}
.y216{bottom:254.337885px;}
.y2c6{bottom:254.408685px;}
.y13b{bottom:254.433704px;}
.y130{bottom:255.595335px;}
.y146{bottom:256.046661px;}
.y1ba{bottom:256.798365px;}
.y20{bottom:257.114235px;}
.y132{bottom:257.515785px;}
.y1fa{bottom:257.595465px;}
.y1a2{bottom:260.323965px;}
.y1ed{bottom:260.554815px;}
.y270{bottom:262.027095px;}
.y1da{bottom:266.983515px;}
.y1b7{bottom:267.251865px;}
.y2c5{bottom:270.158685px;}
.y168{bottom:270.683235px;}
.y137{bottom:270.948933px;}
.y23d{bottom:270.965085px;}
.y288{bottom:271.082535px;}
.y195{bottom:271.198665px;}
.ydc{bottom:271.272135px;}
.y6e{bottom:271.277835px;}
.y46{bottom:271.280385px;}
.ybc{bottom:271.287885px;}
.y99{bottom:271.291635px;}
.y105{bottom:271.293885px;}
.y215{bottom:271.588635px;}
.y1ec{bottom:272.262015px;}
.y1be{bottom:275.173365px;}
.y271{bottom:275.766015px;}
.y1f7{bottom:276.345315px;}
.y1a3{bottom:277.198965px;}
.y149{bottom:277.206780px;}
.y1f{bottom:282.224535px;}
.y2c4{bottom:285.908685px;}
.y167{bottom:287.933985px;}
.y23c{bottom:288.215835px;}
.y287{bottom:288.333285px;}
.ydb{bottom:288.522885px;}
.y6d{bottom:288.528585px;}
.y45{bottom:288.531135px;}
.ybb{bottom:288.538635px;}
.y98{bottom:288.542385px;}
.y104{bottom:288.544635px;}
.y214{bottom:288.839385px;}
.y272{bottom:288.921495px;}
.y196{bottom:289.573965px;}
.y1d9{bottom:291.340215px;}
.y1bb{bottom:292.422765px;}
.y1fb{bottom:295.095165px;}
.y1a4{bottom:295.198965px;}
.y281{bottom:298.020015px;}
.y1eb{bottom:298.768815px;}
.y2c3{bottom:301.658685px;}
.y166{bottom:305.184735px;}
.y23b{bottom:305.466585px;}
.y286{bottom:305.584035px;}
.yda{bottom:305.773635px;}
.y6c{bottom:305.779335px;}
.y44{bottom:305.781885px;}
.yba{bottom:305.789385px;}
.y103{bottom:305.790135px;}
.y97{bottom:305.793135px;}
.y213{bottom:306.090135px;}
.y197{bottom:306.448965px;}
.y1d8{bottom:309.798315px;}
.y1bf{bottom:311.173665px;}
.y1a5{bottom:313.574265px;}
.y1fc{bottom:315.345465px;}
.y273{bottom:315.432135px;}
.y14a{bottom:316.295445px;}
.y274{bottom:316.984335px;}
.y2c2{bottom:317.408685px;}
.y1b5{bottom:317.777865px;}
.y165{bottom:322.435485px;}
.y23a{bottom:322.717335px;}
.y285{bottom:322.834785px;}
.yd9{bottom:323.024385px;}
.y6b{bottom:323.030085px;}
.y43{bottom:323.032635px;}
.yb9{bottom:323.040135px;}
.y102{bottom:323.040885px;}
.y96{bottom:323.043885px;}
.y212{bottom:323.340885px;}
.y1ea{bottom:324.351315px;}
.yf{bottom:324.611685px;}
.y198{bottom:326.698965px;}
.y136{bottom:327.472785px;}
.y275{bottom:327.995595px;}
.y1c0{bottom:329.923515px;}
.y1d7{bottom:331.082415px;}
.y2c1{bottom:333.158685px;}
.y1a6{bottom:333.824265px;}
.y1fd{bottom:334.470165px;}
.y1e9{bottom:339.534315px;}
.ye{bottom:339.612285px;}
.y164{bottom:339.686235px;}
.y239{bottom:339.968085px;}
.y284{bottom:340.085535px;}
.yd8{bottom:340.275135px;}
.y6a{bottom:340.280835px;}
.y42{bottom:340.283385px;}
.yb8{bottom:340.290885px;}
.y101{bottom:340.291635px;}
.y95{bottom:340.294635px;}
.y211{bottom:340.591635px;}
.y199{bottom:345.074265px;}
.y1c1{bottom:347.548815px;}
.y2c0{bottom:348.908685px;}
.y1d6{bottom:350.564715px;}
.y1a7{bottom:352.199565px;}
.y1fe{bottom:353.594865px;}
.y14b{bottom:354.229110px;}
.y276{bottom:355.376715px;}
.y163{bottom:356.936985px;}
.y238{bottom:357.218835px;}
.yd7{bottom:357.525885px;}
.y69{bottom:357.531585px;}
.y41{bottom:357.534135px;}
.y94{bottom:357.540735px;}
.yb7{bottom:357.541635px;}
.y100{bottom:357.542385px;}
.y210{bottom:357.842385px;}
.y1e8{bottom:359.867115px;}
.yd{bottom:360.612510px;}
.y19a{bottom:362.698965px;}
.y2bf{bottom:364.658685px;}
.y1c2{bottom:365.174115px;}
.y283{bottom:365.960835px;}
.y1d5{bottom:367.896915px;}
.y1b3{bottom:370.199565px;}
.y1ff{bottom:373.470315px;}
.y162{bottom:374.187735px;}
.y237{bottom:374.469585px;}
.yd6{bottom:374.776635px;}
.y68{bottom:374.782335px;}
.y40{bottom:374.784885px;}
.y93{bottom:374.791485px;}
.yb6{bottom:374.792385px;}
.yff{bottom:374.793135px;}
.y20f{bottom:375.093135px;}
.yc{bottom:375.612060px;}
.y1af{bottom:379.386765px;}
.y2be{bottom:380.408685px;}
.y1e7{bottom:383.199615px;}
.y1c3{bottom:383.549115px;}
.y1a8{bottom:386.324865px;}
.y1d4{bottom:386.769015px;}
.y277{bottom:387.923775px;}
.yb{bottom:390.611610px;}
.y161{bottom:391.438485px;}
.y236{bottom:391.720335px;}
.yd5{bottom:392.027385px;}
.y67{bottom:392.033085px;}
.y3f{bottom:392.035635px;}
.y92{bottom:392.042235px;}
.yb5{bottom:392.043135px;}
.yfe{bottom:392.043885px;}
.y14c{bottom:392.297910px;}
.y20e{bottom:392.343885px;}
.y200{bottom:394.095465px;}
.y1e6{bottom:394.906815px;}
.y2bd{bottom:396.158685px;}
.y131{bottom:396.473385px;}
.y19b{bottom:397.761165px;}
.y1c4{bottom:401.174415px;}
.y278{bottom:403.222695px;}
.y1a9{bottom:403.949565px;}
.ya{bottom:405.611160px;}
.y1d3{bottom:406.587015px;}
.y235{bottom:408.971085px;}
.yd4{bottom:409.278135px;}
.y3e{bottom:409.286385px;}
.y91{bottom:409.292985px;}
.yb4{bottom:409.293885px;}
.yfd{bottom:409.294635px;}
.y20d{bottom:409.594635px;}
.y2bc{bottom:411.908685px;}
.y201{bottom:412.470465px;}
.y279{bottom:414.916455px;}
.y1e5{bottom:414.965115px;}
.y1b0{bottom:415.199565px;}
.y66{bottom:417.908385px;}
.y1c5{bottom:419.549415px;}
.y13f{bottom:419.911824px;}
.y298{bottom:420.483585px;}
.y1aa{bottom:422.136765px;}
.y234{bottom:426.221835px;}
.yd3{bottom:426.528885px;}
.yfc{bottom:426.530535px;}
.y3d{bottom:426.537135px;}
.y90{bottom:426.543735px;}
.yb3{bottom:426.544635px;}
.y20c{bottom:426.845385px;}
.y2bb{bottom:427.658685px;}
.y1d2{bottom:430.020315px;}
.y27a{bottom:430.117095px;}
.y14d{bottom:430.809075px;}
.y202{bottom:431.971065px;}
.y297{bottom:434.734185px;}
.y19c{bottom:435.073365px;}
.y9{bottom:435.611685px;}
.y1c6{bottom:436.049115px;}
.y1e4{bottom:436.798215px;}
.y282{bottom:437.852799px;}
.y1d1{bottom:440.977815px;}
.y1ab{bottom:442.199565px;}
.y1b6{bottom:442.453965px;}
.y27b{bottom:443.369295px;}
.y2ba{bottom:443.408685px;}
.yd2{bottom:443.779635px;}
.yfb{bottom:443.781285px;}
.yb2{bottom:443.782935px;}
.y3c{bottom:443.787885px;}
.y8f{bottom:443.794485px;}
.y20b{bottom:444.096135px;}
.y296{bottom:448.984785px;}
.y8{bottom:450.612960px;}
.y203{bottom:451.095765px;}
.y177{bottom:451.244535px;}
.y1b2{bottom:451.386765px;}
.y124{bottom:452.420685px;}
.y1e3{bottom:453.756015px;}
.y1c7{bottom:455.173815px;}
.y27c{bottom:457.207275px;}
.y1ac{bottom:458.512065px;}
.y2b9{bottom:459.158685px;}
.yd1{bottom:461.030385px;}
.yfa{bottom:461.032035px;}
.y65{bottom:461.032785px;}
.yb1{bottom:461.033685px;}
.y3b{bottom:461.038635px;}
.y8e{bottom:461.045235px;}
.y20a{bottom:461.346885px;}
.y1d0{bottom:465.133815px;}
.y1e2{bottom:465.463215px;}
.y176{bottom:465.493785px;}
.y1b1{bottom:468.074565px;}
.y27d{bottom:468.705255px;}
.y123{bottom:469.671435px;}
.y204{bottom:470.595315px;}
.y1c8{bottom:473.173965px;}
.y2b8{bottom:474.908685px;}
.y1ad{bottom:475.011765px;}
.yd0{bottom:478.281135px;}
.yf9{bottom:478.282785px;}
.y64{bottom:478.283535px;}
.yb0{bottom:478.284435px;}
.y3a{bottom:478.289385px;}
.y8d{bottom:478.295985px;}
.y209{bottom:478.597635px;}
.y27e{bottom:483.419175px;}
.y7{bottom:486.612735px;}
.y1cf{bottom:486.792315px;}
.y122{bottom:486.922185px;}
.y19d{bottom:487.948365px;}
.y2b7{bottom:490.658685px;}
.y2ae{bottom:490.900485px;}
.y1c9{bottom:491.174115px;}
.y205{bottom:491.595315px;}
.y1e1{bottom:494.570115px;}
.y1ae{bottom:495.074565px;}
.ycf{bottom:495.531885px;}
.yf8{bottom:495.533535px;}
.y63{bottom:495.534285px;}
.yaf{bottom:495.535185px;}
.y39{bottom:495.540135px;}
.y8c{bottom:495.546735px;}
.y208{bottom:495.848385px;}
.y27f{bottom:497.548095px;}
.y121{bottom:504.172935px;}
.y2b6{bottom:506.408685px;}
.y24c{bottom:507.521385px;}
.y6{bottom:507.612960px;}
.y18c{bottom:508.510635px;}
.yce{bottom:512.782635px;}
.yf7{bottom:512.784285px;}
.y62{bottom:512.785035px;}
.yae{bottom:512.785935px;}
.y38{bottom:512.790885px;}
.y8b{bottom:512.797485px;}
.y207{bottom:513.099135px;}
.y2a2{bottom:516.256785px;}
.y120{bottom:521.423685px;}
.y24b{bottom:521.771985px;}
.y2b5{bottom:522.158685px;}
.y5{bottom:522.612510px;}
.y18d{bottom:523.689015px;}
.y1cc{bottom:524.503965px;}
.ycd{bottom:530.033385px;}
.yf6{bottom:530.035035px;}
.y61{bottom:530.035785px;}
.yad{bottom:530.036685px;}
.y37{bottom:530.041635px;}
.y8a{bottom:530.048235px;}
.y4{bottom:537.612060px;}
.y2b4{bottom:537.908685px;}
.y11f{bottom:538.674435px;}
.y182{bottom:539.124585px;}
.y299{bottom:543.128385px;}
.ycc{bottom:547.284135px;}
.yf5{bottom:547.285785px;}
.y60{bottom:547.286535px;}
.yac{bottom:547.287435px;}
.y36{bottom:547.292385px;}
.y89{bottom:547.298985px;}
.y2a3{bottom:552.361635px;}
.y3{bottom:552.611610px;}
.y2b3{bottom:553.658685px;}
.y11e{bottom:555.925185px;}
.y224{bottom:562.294485px;}
.ycb{bottom:564.534885px;}
.yf4{bottom:564.536535px;}
.y5f{bottom:564.537285px;}
.yab{bottom:564.538185px;}
.y35{bottom:564.543135px;}
.y88{bottom:564.549735px;}
.y178{bottom:567.051435px;}
.y2{bottom:567.611160px;}
.y2b2{bottom:569.408685px;}
.y2ab{bottom:570.462435px;}
.y267{bottom:571.705485px;}
.y184{bottom:572.782785px;}
.y11d{bottom:573.175935px;}
.y223{bottom:576.545085px;}
.y17d{bottom:581.751435px;}
.yca{bottom:581.785635px;}
.yf3{bottom:581.787285px;}
.y5e{bottom:581.788035px;}
.yaa{bottom:581.788935px;}
.y34{bottom:581.793885px;}
.y87{bottom:581.800485px;}
.y183{bottom:582.232785px;}
.y2b1{bottom:585.158685px;}
.y11c{bottom:590.426685px;}
.y29a{bottom:591.704052px;}
.y1{bottom:597.611685px;}
.yc9{bottom:599.036385px;}
.yf2{bottom:599.038035px;}
.y5d{bottom:599.038785px;}
.ya9{bottom:599.039685px;}
.y33{bottom:599.044635px;}
.y86{bottom:599.051235px;}
.y2b0{bottom:600.908685px;}
.y2a4{bottom:600.916635px;}
.y2e0{bottom:601.295385px;}
.y24f{bottom:606.647775px;}
.y24e{bottom:606.984735px;}
.y250{bottom:607.322775px;}
.y11b{bottom:607.677435px;}
.y32{bottom:616.287135px;}
.yf1{bottom:616.288785px;}
.y5c{bottom:616.289535px;}
.ya8{bottom:616.290435px;}
.y85{bottom:616.301985px;}
.y233{bottom:616.696185px;}
.y2df{bottom:617.045385px;}
.y1cb{bottom:617.173215px;}
.y24d{bottom:617.784735px;}
.y179{bottom:619.551435px;}
.y2ac{bottom:619.653381px;}
.y133{bottom:624.914985px;}
.y11a{bottom:624.928185px;}
.y2af{bottom:625.277985px;}
.y186{bottom:625.283205px;}
.y2ad{bottom:629.026363px;}
.y25d{bottom:629.070135px;}
.y2de{bottom:632.795385px;}
.y31{bottom:633.537885px;}
.yf0{bottom:633.539535px;}
.y5b{bottom:633.540285px;}
.ya7{bottom:633.541185px;}
.y84{bottom:633.552735px;}
.y185{bottom:634.733205px;}
.y17e{bottom:635.301435px;}
.y256{bottom:636.210750px;}
.y1e{bottom:638.756685px;}
.y25c{bottom:641.870355px;}
.y119{bottom:642.177285px;}
.y232{bottom:646.295835px;}
.y2dd{bottom:648.545385px;}
.y25e{bottom:649.083885px;}
.y2a5{bottom:649.471635px;}
.y30{bottom:650.788635px;}
.yef{bottom:650.790285px;}
.y5a{bottom:650.791035px;}
.ya6{bottom:650.791935px;}
.y83{bottom:650.803485px;}
.y1d{bottom:653.007285px;}
.y25b{bottom:656.085990px;}
.y29b{bottom:657.314930px;}
.y118{bottom:659.426385px;}
.y254{bottom:660.333765px;}
.y22a{bottom:662.795835px;}
.y2dc{bottom:664.295385px;}
.y25a{bottom:665.656005px;}
.y1c{bottom:667.257885px;}
.y25f{bottom:667.985235px;}
.y2f{bottom:668.039385px;}
.yee{bottom:668.041035px;}
.y59{bottom:668.041785px;}
.y82{bottom:668.052585px;}
.y228{bottom:670.985085px;}
.y17a{bottom:673.561335px;}
.y229{bottom:674.271585px;}
.ya5{bottom:676.667235px;}
.y117{bottom:676.675485px;}
.y29c{bottom:677.199945px;}
.y2db{bottom:680.045385px;}
.y187{bottom:681.983205px;}
.y22b{bottom:683.795835px;}
.y255{bottom:684.993540px;}
.y1b{bottom:685.257885px;}
.y2e{bottom:685.290135px;}
.yed{bottom:685.291785px;}
.y58{bottom:685.292535px;}
.y81{bottom:685.301685px;}
.y260{bottom:687.998985px;}
.y17f{bottom:688.744335px;}
.y116{bottom:693.924585px;}
.y2a7{bottom:695.536635px;}
.y2da{bottom:695.795385px;}
.y257{bottom:702.168915px;}
.y2d{bottom:702.540885px;}
.yec{bottom:702.542535px;}
.y57{bottom:702.543285px;}
.y80{bottom:702.550785px;}
.y22c{bottom:704.795835px;}
.y29d{bottom:705.254402px;}
.y2a6{bottom:705.496635px;}
.y261{bottom:706.900335px;}
.y115{bottom:711.173685px;}
.y2d9{bottom:711.545385px;}
.y253{bottom:713.812260px;}
.y2c{bottom:719.791635px;}
.yeb{bottom:719.793285px;}
.y56{bottom:719.794035px;}
.y7f{bottom:719.799885px;}
.y252{bottom:721.416675px;}
.y17b{bottom:725.662335px;}
.y22d{bottom:725.795835px;}
.y262{bottom:726.914085px;}
.y2d8{bottom:727.295385px;}
.y29e{bottom:727.339083px;}
.y189{bottom:728.037780px;}
.y114{bottom:728.422785px;}
.y1a{bottom:730.257885px;}
.y2b{bottom:737.042385px;}
.yea{bottom:737.044035px;}
.y55{bottom:737.044785px;}
.y7e{bottom:737.048985px;}
.y188{bottom:737.487780px;}
.y226{bottom:739.551135px;}
.y259{bottom:741.768195px;}
.y180{bottom:742.463385px;}
.y2d7{bottom:743.045385px;}
.y2a9{bottom:744.091635px;}
.y22e{bottom:745.295835px;}
.y113{bottom:745.671885px;}
.y263{bottom:745.815435px;}
.y29f{bottom:753.207818px;}
.y2a8{bottom:754.051635px;}
.y19{bottom:754.257885px;}
.y2a{bottom:754.293135px;}
.y54{bottom:754.293885px;}
.y7d{bottom:754.298085px;}
.y2d6{bottom:758.795385px;}
.y112{bottom:762.920985px;}
.y264{bottom:765.829185px;}
.y22f{bottom:766.295835px;}
.y29{bottom:771.543885px;}
.y53{bottom:771.544635px;}
.y7c{bottom:771.547185px;}
.y2d5{bottom:774.545235px;}
.y258{bottom:775.421535px;}
.y18{bottom:778.257885px;}
.y17c{bottom:779.212335px;}
.y111{bottom:780.170085px;}
.y265{bottom:784.730535px;}
.y18b{bottom:784.882935px;}
.y230{bottom:787.295835px;}
.y2a0{bottom:788.662180px;}
.y28{bottom:788.794635px;}
.y7b{bottom:788.796285px;}
.y2d4{bottom:790.295235px;}
.y18a{bottom:794.332935px;}
.y251{bottom:794.699535px;}
.y181{bottom:794.963385px;}
.y2aa{bottom:795.136635px;}
.y225{bottom:797.909085px;}
.y227{bottom:799.999635px;}
.y2a1{bottom:802.045806px;}
.y17{bottom:802.257885px;}
.y266{bottom:804.744285px;}
.y27{bottom:806.045385px;}
.y231{bottom:808.295835px;}
.y16{bottom:853.257885px;}
.y26{bottom:964.913385px;}
.h26{height:22.318400px;}
.h15{height:23.133880px;}
.h16{height:24.333694px;}
.h29{height:24.936520px;}
.h1e{height:25.752000px;}
.h24{height:27.039600px;}
.h27{height:28.920320px;}
.h19{height:30.044000px;}
.h18{height:31.083360px;}
.h1b{height:31.789800px;}
.h2b{height:33.505440px;}
.h1a{height:35.322000px;}
.h20{height:36.331200px;}
.h28{height:36.734880px;}
.h25{height:37.873762px;}
.h17{height:38.854200px;}
.h7{height:40.368000px;}
.h4{height:40.757714px;}
.h2{height:40.774000px;}
.h2a{height:41.881800px;}
.h1f{height:42.258600px;}
.h2d{height:42.902857px;}
.h14{height:44.404800px;}
.ha{height:45.414000px;}
.h10{height:45.416400px;}
.hb{height:47.085938px;}
.h5{height:47.212000px;}
.h3{height:47.937000px;}
.h2c{height:50.460000px;}
.h2e{height:50.460600px;}
.h6{height:55.506000px;}
.h9{height:60.552000px;}
.h13{height:60.633600px;}
.hd{height:60.637800px;}
.he{height:60.653400px;}
.h12{height:60.655800px;}
.hc{height:60.667800px;}
.hf{height:60.684600px;}
.h11{height:60.694200px;}
.h21{height:78.183360px;}
.h23{height:79.531200px;}
.h8{height:80.736000px;}
.h22{height:82.231200px;}
.h1d{height:564.750000px;}
.h1c{height:565.098405px;}
.h0{height:893.078730px;}
.h1{height:893.250000px;}
.w1{width:564.750000px;}
.w0{width:565.098405px;}
.w2{width:893.078730px;}
.w3{width:893.250000px;}
.xa{left:-52.074810px;}
.x0{left:0.000000px;}
.x1{left:41.409390px;}
.x1c{left:46.391640px;}
.x3c{left:48.378135px;}
.x84{left:54.001140px;}
.x7{left:61.043340px;}
.xb{left:63.093840px;}
.x5{left:77.948115px;}
.x1d{left:80.058540px;}
.x9a{left:81.573978px;}
.x7c{left:87.622890px;}
.x10{left:88.899288px;}
.x7d{left:94.250850px;}
.x8{left:98.133240px;}
.x99{left:99.393414px;}
.x9c{left:112.698978px;}
.x9b{left:115.563474px;}
.x7a{left:121.119840px;}
.x35{left:126.099330px;}
.x79{left:127.119840px;}
.x39{left:129.212340px;}
.x62{left:130.430685px;}
.x11{left:134.482518px;}
.x38{left:138.176430px;}
.x37{left:142.845675px;}
.x36{left:146.468805px;}
.x64{left:151.600785px;}
.x93{left:154.760835px;}
.x97{left:158.452737px;}
.x12{left:160.547750px;}
.x5c{left:164.466435px;}
.x63{left:166.492935px;}
.x7e{left:167.825850px;}
.x98{left:171.836363px;}
.x34{left:174.735690px;}
.x74{left:175.824885px;}
.x61{left:177.508485px;}
.x5d{left:179.074035px;}
.x1e{left:180.598980px;}
.x5f{left:187.962285px;}
.x33{left:189.205740px;}
.x32{left:194.455740px;}
.x5e{left:196.273035px;}
.x4{left:198.826590px;}
.x60{left:201.029535px;}
.x87{left:203.663235px;}
.xc{left:204.943740px;}
.xf{left:210.911640px;}
.x76{left:212.537040px;}
.x6{left:218.374740px;}
.x5b{left:221.089785px;}
.x75{left:222.791385px;}
.x1f{left:226.297248px;}
.x7b{left:227.348190px;}
.x31{left:228.392790px;}
.x2c{left:234.894540px;}
.x90{left:237.055545px;}
.x30{left:238.556790px;}
.x19{left:239.783984px;}
.x78{left:249.505440px;}
.x57{left:251.495985px;}
.x2b{left:253.814640px;}
.x86{left:255.804540px;}
.x3{left:260.740440px;}
.x45{left:262.370385px;}
.x18{left:268.356374px;}
.x3a{left:270.699690px;}
.x8f{left:272.042445px;}
.x20{left:274.105008px;}
.x2f{left:277.805790px;}
.x3d{left:280.558485px;}
.x80{left:286.886295px;}
.x2e{left:290.888790px;}
.x9{left:297.896865px;}
.x40{left:299.870685px;}
.x96{left:304.705253px;}
.x54{left:306.246285px;}
.x21{left:307.919712px;}
.x22{left:317.455392px;}
.x13{left:319.377574px;}
.x41{left:322.370685px;}
.x23{left:326.991072px;}
.x52{left:331.183485px;}
.x92{left:333.323925px;}
.x24{left:336.526752px;}
.x47{left:337.558185px;}
.x81{left:340.017030px;}
.xd{left:341.137290px;}
.x14{left:346.755810px;}
.x6d{left:353.522535px;}
.x6a{left:354.932835px;}
.x2d{left:356.808840px;}
.x67{left:358.207035px;}
.x25{left:360.337308px;}
.x26{left:369.577308px;}
.xe{left:375.519690px;}
.x95{left:378.139586px;}
.x88{left:382.052085px;}
.x51{left:385.745985px;}
.x7f{left:389.317650px;}
.x9d{left:390.949782px;}
.x77{left:397.509240px;}
.x2{left:398.973540px;}
.x55{left:401.308785px;}
.x94{left:404.949540px;}
.x27{left:406.423656px;}
.x15{left:411.107559px;}
.x82{left:413.091990px;}
.x28{left:415.663656px;}
.x56{left:424.370385px;}
.x8e{left:431.945565px;}
.x16{left:437.792102px;}
.x53{left:446.871285px;}
.x44{left:453.433185px;}
.x1a{left:455.660760px;}
.x29{left:459.209004px;}
.x48{left:461.870685px;}
.x6e{left:463.518735px;}
.x65{left:464.573385px;}
.x85{left:467.762190px;}
.x59{left:470.240085px;}
.x49{left:471.245985px;}
.x68{left:472.922835px;}
.x5a{left:478.597485px;}
.x17{left:483.630818px;}
.x83{left:485.461980px;}
.x46{left:489.620385px;}
.x1b{left:498.235561px;}
.x4b{left:501.058485px;}
.x2a{left:503.727324px;}
.x8b{left:508.568865px;}
.x3e{left:510.245685px;}
.x50{left:516.995685px;}
.x6c{left:523.392135px;}
.x4a{left:524.683485px;}
.x6b{left:531.405735px;}
.x91{left:534.543645px;}
.x73{left:539.672235px;}
.x3f{left:548.495685px;}
.x4c{left:566.495685px;}
.x89{left:571.197405px;}
.x72{left:585.240135px;}
.x6f{left:594.295935px;}
.x4e{left:602.870985px;}
.x8a{left:614.261985px;}
.x4d{left:627.995385px;}
.x4f{left:634.370985px;}
.x8d{left:642.943365px;}
.x71{left:656.153835px;}
.x58{left:658.132185px;}
.x69{left:662.072235px;}
.x8c{left:669.712185px;}
.x42{left:691.370685px;}
.x70{left:694.665735px;}
.x43{left:702.245385px;}
.x3b{left:853.257885px;}
.x66{left:964.913385px;}
@media print{
.v2{vertical-align:-19.360533pt;}
.v3{vertical-align:-1.075125pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.066501pt;}
.v8{vertical-align:5.868373pt;}
.v1{vertical-align:19.389867pt;}
.v5{vertical-align:37.201920pt;}
.v7{vertical-align:38.400000pt;}
.v6{vertical-align:40.800000pt;}
.ls16b{letter-spacing:-5.381333pt;}
.ls80{letter-spacing:-2.475733pt;}
.ls13{letter-spacing:-2.422933pt;}
.ls152{letter-spacing:-2.250667pt;}
.ls4e{letter-spacing:-1.818667pt;}
.ls2a{letter-spacing:-1.789333pt;}
.lse6{letter-spacing:-1.440000pt;}
.ls143{letter-spacing:-1.434667pt;}
.lsc2{letter-spacing:-1.419733pt;}
.ls36{letter-spacing:-1.413867pt;}
.lsab{letter-spacing:-1.402133pt;}
.ls89{letter-spacing:-1.378667pt;}
.lse5{letter-spacing:-1.314133pt;}
.ls102{letter-spacing:-1.296533pt;}
.ls138{letter-spacing:-1.290667pt;}
.lsff{letter-spacing:-1.280000pt;}
.lsc3{letter-spacing:-1.261333pt;}
.ls154{letter-spacing:-1.212000pt;}
.ls156{letter-spacing:-1.210667pt;}
.ls155{letter-spacing:-1.208000pt;}
.ls54{letter-spacing:-1.161600pt;}
.lsf8{letter-spacing:-1.152000pt;}
.lsf{letter-spacing:-1.150133pt;}
.ls4f{letter-spacing:-1.126400pt;}
.lsda{letter-spacing:-1.120533pt;}
.ls6d{letter-spacing:-1.114667pt;}
.lsdb{letter-spacing:-1.080000pt;}
.ls112{letter-spacing:-1.065941pt;}
.lsad{letter-spacing:-1.032533pt;}
.ls131{letter-spacing:-0.991467pt;}
.lsde{letter-spacing:-0.988800pt;}
.lsea{letter-spacing:-0.985600pt;}
.ls147{letter-spacing:-0.952000pt;}
.ls148{letter-spacing:-0.949333pt;}
.ls86{letter-spacing:-0.938667pt;}
.ls85{letter-spacing:-0.932800pt;}
.lsc4{letter-spacing:-0.915200pt;}
.lsfc{letter-spacing:-0.903467pt;}
.lsb3{letter-spacing:-0.880000pt;}
.ls51{letter-spacing:-0.868267pt;}
.lsac{letter-spacing:-0.844800pt;}
.lsb0{letter-spacing:-0.827200pt;}
.ls104{letter-spacing:-0.821333pt;}
.ls16d{letter-spacing:-0.805333pt;}
.ls8d{letter-spacing:-0.803733pt;}
.ls8c{letter-spacing:-0.786133pt;}
.ls6e{letter-spacing:-0.774400pt;}
.ls9a{letter-spacing:-0.768000pt;}
.ls53{letter-spacing:-0.756800pt;}
.ls68{letter-spacing:-0.745067pt;}
.ls2b{letter-spacing:-0.733333pt;}
.ls151{letter-spacing:-0.724000pt;}
.ls105{letter-spacing:-0.720547pt;}
.ls150{letter-spacing:-0.720000pt;}
.ls16f{letter-spacing:-0.716000pt;}
.ls170{letter-spacing:-0.714667pt;}
.ls83{letter-spacing:-0.698133pt;}
.ls34{letter-spacing:-0.680533pt;}
.ls70{letter-spacing:-0.674667pt;}
.lsd{letter-spacing:-0.663733pt;}
.lsb2{letter-spacing:-0.662933pt;}
.lsd9{letter-spacing:-0.657067pt;}
.ls81{letter-spacing:-0.645333pt;}
.ls149{letter-spacing:-0.640000pt;}
.lsa8{letter-spacing:-0.639467pt;}
.lsfd{letter-spacing:-0.616000pt;}
.lse7{letter-spacing:-0.612304pt;}
.lsdf{letter-spacing:-0.604800pt;}
.ls8b{letter-spacing:-0.604267pt;}
.lsdd{letter-spacing:-0.600000pt;}
.ls7b{letter-spacing:-0.592533pt;}
.lsaa{letter-spacing:-0.586667pt;}
.ls72{letter-spacing:-0.576000pt;}
.ls7f{letter-spacing:-0.569067pt;}
.ls2c{letter-spacing:-0.563200pt;}
.ls61{letter-spacing:-0.557333pt;}
.ls13e{letter-spacing:-0.554667pt;}
.ls13c{letter-spacing:-0.552000pt;}
.ls13d{letter-spacing:-0.549333pt;}
.ls37{letter-spacing:-0.545600pt;}
.ls60{letter-spacing:-0.539733pt;}
.ls146{letter-spacing:-0.538667pt;}
.lsf5{letter-spacing:-0.533867pt;}
.ls175{letter-spacing:-0.517333pt;}
.lsb4{letter-spacing:-0.504533pt;}
.lsdc{letter-spacing:-0.504000pt;}
.lsca{letter-spacing:-0.498667pt;}
.ls6f{letter-spacing:-0.486933pt;}
.ls144{letter-spacing:-0.480000pt;}
.lse8{letter-spacing:-0.479659pt;}
.ls30{letter-spacing:-0.475200pt;}
.ls11{letter-spacing:-0.461067pt;}
.ls10{letter-spacing:-0.456000pt;}
.ls88{letter-spacing:-0.451733pt;}
.lsa7{letter-spacing:-0.445867pt;}
.ls14f{letter-spacing:-0.442667pt;}
.ls14d{letter-spacing:-0.436000pt;}
.lsfb{letter-spacing:-0.434133pt;}
.ls14e{letter-spacing:-0.432000pt;}
.ls4b{letter-spacing:-0.428267pt;}
.ls55{letter-spacing:-0.426667pt;}
.ls16{letter-spacing:-0.422400pt;}
.ls87{letter-spacing:-0.410667pt;}
.lsb{letter-spacing:-0.405333pt;}
.lsf6{letter-spacing:-0.399840pt;}
.lsc{letter-spacing:-0.395200pt;}
.ls32{letter-spacing:-0.381333pt;}
.ls4d{letter-spacing:-0.363733pt;}
.ls2d{letter-spacing:-0.357867pt;}
.ls31{letter-spacing:-0.352000pt;}
.ls39{letter-spacing:-0.350400pt;}
.lsc5{letter-spacing:-0.346133pt;}
.ls96{letter-spacing:-0.340800pt;}
.lsaf{letter-spacing:-0.340267pt;}
.ls97{letter-spacing:-0.338400pt;}
.lsc7{letter-spacing:-0.328533pt;}
.lscb{letter-spacing:-0.322667pt;}
.ls14{letter-spacing:-0.316800pt;}
.ls7d{letter-spacing:-0.310933pt;}
.ls172{letter-spacing:-0.309333pt;}
.ls10f{letter-spacing:-0.305067pt;}
.lsa{letter-spacing:-0.304000pt;}
.ls56{letter-spacing:-0.302400pt;}
.lsa9{letter-spacing:-0.293333pt;}
.ls8{letter-spacing:-0.288800pt;}
.ls8a{letter-spacing:-0.287467pt;}
.ls6b{letter-spacing:-0.269867pt;}
.lsf4{letter-spacing:-0.258133pt;}
.ls29{letter-spacing:-0.252267pt;}
.ls71{letter-spacing:-0.249600pt;}
.lsfe{letter-spacing:-0.246400pt;}
.ls7c{letter-spacing:-0.240533pt;}
.ls106{letter-spacing:-0.240182pt;}
.ls2e{letter-spacing:-0.234667pt;}
.ls6c{letter-spacing:-0.228800pt;}
.ls132{letter-spacing:-0.222933pt;}
.ls3b{letter-spacing:-0.220800pt;}
.ls145{letter-spacing:-0.218667pt;}
.ls84{letter-spacing:-0.217067pt;}
.ls3a{letter-spacing:-0.216000pt;}
.ls2f{letter-spacing:-0.205333pt;}
.lsd8{letter-spacing:-0.199467pt;}
.ls171{letter-spacing:-0.197333pt;}
.lseb{letter-spacing:-0.197120pt;}
.ls50{letter-spacing:-0.193600pt;}
.ls137{letter-spacing:-0.192000pt;}
.ls103{letter-spacing:-0.187733pt;}
.lse9{letter-spacing:-0.183979pt;}
.ls16e{letter-spacing:-0.181333pt;}
.lsc6{letter-spacing:-0.176000pt;}
.lsae{letter-spacing:-0.158400pt;}
.ls7a{letter-spacing:-0.152533pt;}
.ls141{letter-spacing:-0.138667pt;}
.ls15{letter-spacing:-0.134933pt;}
.ls7e{letter-spacing:-0.129067pt;}
.ls140{letter-spacing:-0.124000pt;}
.lsb1{letter-spacing:-0.123200pt;}
.ls142{letter-spacing:-0.120000pt;}
.ls65{letter-spacing:-0.117333pt;}
.ls157{letter-spacing:-0.112000pt;}
.ls64{letter-spacing:-0.111467pt;}
.ls57{letter-spacing:-0.105600pt;}
.ls111{letter-spacing:-0.099157pt;}
.ls9{letter-spacing:-0.091200pt;}
.ls67{letter-spacing:-0.088000pt;}
.ls8e{letter-spacing:-0.076800pt;}
.ls35{letter-spacing:-0.076267pt;}
.ls8f{letter-spacing:-0.075600pt;}
.ls4c{letter-spacing:-0.070400pt;}
.ls66{letter-spacing:-0.064533pt;}
.lse{letter-spacing:-0.060800pt;}
.lsc9{letter-spacing:-0.058667pt;}
.ls169{letter-spacing:-0.056000pt;}
.ls16a{letter-spacing:-0.053333pt;}
.ls4a{letter-spacing:-0.046933pt;}
.ls62{letter-spacing:-0.041067pt;}
.ls6a{letter-spacing:-0.035200pt;}
.ls33{letter-spacing:-0.029333pt;}
.ls92{letter-spacing:-0.028800pt;}
.ls90{letter-spacing:-0.019200pt;}
.ls93{letter-spacing:-0.018000pt;}
.lsc8{letter-spacing:-0.017600pt;}
.ls94{letter-spacing:-0.014400pt;}
.ls17{letter-spacing:-0.012800pt;}
.ls136{letter-spacing:-0.012000pt;}
.ls133{letter-spacing:-0.011733pt;}
.ls95{letter-spacing:-0.010800pt;}
.ls13b{letter-spacing:-0.010667pt;}
.ls1a{letter-spacing:-0.010133pt;}
.lse0{letter-spacing:-0.009600pt;}
.ls18{letter-spacing:-0.008533pt;}
.ls14c{letter-spacing:-0.008000pt;}
.ls98{letter-spacing:-0.007200pt;}
.ls12{letter-spacing:-0.005867pt;}
.ls135{letter-spacing:-0.005333pt;}
.ls6{letter-spacing:-0.005067pt;}
.ls19{letter-spacing:-0.004800pt;}
.ls38{letter-spacing:-0.004267pt;}
.ls14a{letter-spacing:-0.004000pt;}
.ls99{letter-spacing:-0.003600pt;}
.ls113{letter-spacing:-0.003541pt;}
.ls5{letter-spacing:0.000000pt;}
.ls122{letter-spacing:0.002133pt;}
.lse4{letter-spacing:0.002875pt;}
.lsf2{letter-spacing:0.003360pt;}
.ls28{letter-spacing:0.004800pt;}
.ls5b{letter-spacing:0.005867pt;}
.ls52{letter-spacing:0.011733pt;}
.ls49{letter-spacing:0.014400pt;}
.ls15e{letter-spacing:0.015467pt;}
.ls173{letter-spacing:0.016000pt;}
.ls160{letter-spacing:0.016533pt;}
.ls20{letter-spacing:0.017600pt;}
.ls15f{letter-spacing:0.020000pt;}
.ls161{letter-spacing:0.021333pt;}
.ls24{letter-spacing:0.023467pt;}
.ls4{letter-spacing:0.029333pt;}
.lsa4{letter-spacing:0.041067pt;}
.lsb6{letter-spacing:0.046933pt;}
.ls129{letter-spacing:0.051200pt;}
.ls69{letter-spacing:0.052800pt;}
.lsbc{letter-spacing:0.057600pt;}
.ls41{letter-spacing:0.058667pt;}
.ls5a{letter-spacing:0.070400pt;}
.lsa2{letter-spacing:0.076267pt;}
.ls128{letter-spacing:0.084000pt;}
.ls126{letter-spacing:0.084267pt;}
.ls3f{letter-spacing:0.088000pt;}
.ls127{letter-spacing:0.090667pt;}
.ls101{letter-spacing:0.093867pt;}
.ls9b{letter-spacing:0.099733pt;}
.ls1{letter-spacing:0.101333pt;}
.ls3{letter-spacing:0.111467pt;}
.ls75{letter-spacing:0.117333pt;}
.lsb8{letter-spacing:0.129067pt;}
.ls3c{letter-spacing:0.134933pt;}
.ls48{letter-spacing:0.139200pt;}
.ls5c{letter-spacing:0.140800pt;}
.ls16c{letter-spacing:0.144000pt;}
.ls162{letter-spacing:0.145067pt;}
.ls21{letter-spacing:0.146667pt;}
.ls163{letter-spacing:0.148000pt;}
.lsc0{letter-spacing:0.148800pt;}
.ls165{letter-spacing:0.149333pt;}
.lsbb{letter-spacing:0.152533pt;}
.ls134{letter-spacing:0.154667pt;}
.ls5e{letter-spacing:0.158400pt;}
.ls1c{letter-spacing:0.164267pt;}
.ls116{letter-spacing:0.168000pt;}
.lsb7{letter-spacing:0.170133pt;}
.ls118{letter-spacing:0.170667pt;}
.ls117{letter-spacing:0.172000pt;}
.ls73{letter-spacing:0.176000pt;}
.ls27{letter-spacing:0.177600pt;}
.ls10d{letter-spacing:0.193600pt;}
.ls7{letter-spacing:0.197600pt;}
.ls74{letter-spacing:0.199467pt;}
.ls63{letter-spacing:0.211200pt;}
.ls1b{letter-spacing:0.217067pt;}
.ls23{letter-spacing:0.228800pt;}
.ls12d{letter-spacing:0.230400pt;}
.ls12e{letter-spacing:0.232000pt;}
.ls12f{letter-spacing:0.234667pt;}
.ls12b{letter-spacing:0.236000pt;}
.ls12c{letter-spacing:0.240000pt;}
.lsa0{letter-spacing:0.246400pt;}
.ls5f{letter-spacing:0.258133pt;}
.ls13a{letter-spacing:0.266667pt;}
.ls25{letter-spacing:0.269867pt;}
.ls139{letter-spacing:0.272000pt;}
.ls3e{letter-spacing:0.275733pt;}
.ls119{letter-spacing:0.279467pt;}
.ls11b{letter-spacing:0.280000pt;}
.lsb9{letter-spacing:0.281600pt;}
.ls11a{letter-spacing:0.282667pt;}
.ls158{letter-spacing:0.284000pt;}
.ls10a{letter-spacing:0.287467pt;}
.ls159{letter-spacing:0.288000pt;}
.ls15a{letter-spacing:0.289600pt;}
.ls114{letter-spacing:0.293333pt;}
.ls3d{letter-spacing:0.299200pt;}
.ls5d{letter-spacing:0.305067pt;}
.ls1d{letter-spacing:0.316800pt;}
.lsd6{letter-spacing:0.317867pt;}
.lsfa{letter-spacing:0.322667pt;}
.ls11c{letter-spacing:0.325333pt;}
.ls47{letter-spacing:0.328533pt;}
.ls167{letter-spacing:0.330667pt;}
.ls58{letter-spacing:0.334400pt;}
.ls10e{letter-spacing:0.340267pt;}
.lsec{letter-spacing:0.357867pt;}
.ls82{letter-spacing:0.369600pt;}
.ls22{letter-spacing:0.381333pt;}
.ls1f{letter-spacing:0.387200pt;}
.ls77{letter-spacing:0.404800pt;}
.lscd{letter-spacing:0.408000pt;}
.ls46{letter-spacing:0.410667pt;}
.ls91{letter-spacing:0.414000pt;}
.ls9f{letter-spacing:0.416533pt;}
.lsbd{letter-spacing:0.417600pt;}
.lsbe{letter-spacing:0.421200pt;}
.lsba{letter-spacing:0.422400pt;}
.lsbf{letter-spacing:0.424800pt;}
.lse3{letter-spacing:0.428267pt;}
.ls40{letter-spacing:0.434133pt;}
.lsed{letter-spacing:0.440000pt;}
.lsa1{letter-spacing:0.445867pt;}
.lsd7{letter-spacing:0.451733pt;}
.ls1e{letter-spacing:0.475200pt;}
.ls14b{letter-spacing:0.476000pt;}
.ls0{letter-spacing:0.501600pt;}
.ls78{letter-spacing:0.533867pt;}
.lsd1{letter-spacing:0.539733pt;}
.lscf{letter-spacing:0.574933pt;}
.lsd2{letter-spacing:0.580800pt;}
.ls42{letter-spacing:0.586667pt;}
.ls168{letter-spacing:0.602667pt;}
.ls2{letter-spacing:0.602933pt;}
.lsd3{letter-spacing:0.604267pt;}
.lsf1{letter-spacing:0.616000pt;}
.ls45{letter-spacing:0.627733pt;}
.lsa3{letter-spacing:0.633600pt;}
.ls108{letter-spacing:0.639467pt;}
.ls174{letter-spacing:0.640000pt;}
.ls115{letter-spacing:0.652000pt;}
.ls44{letter-spacing:0.662933pt;}
.ls109{letter-spacing:0.680533pt;}
.lsa5{letter-spacing:0.692267pt;}
.ls9e{letter-spacing:0.698133pt;}
.ls59{letter-spacing:0.709867pt;}
.lsf7{letter-spacing:0.713067pt;}
.ls12a{letter-spacing:0.717867pt;}
.lsb5{letter-spacing:0.727467pt;}
.ls26{letter-spacing:0.733333pt;}
.ls76{letter-spacing:0.739200pt;}
.ls79{letter-spacing:0.763200pt;}
.ls43{letter-spacing:0.803733pt;}
.lse2{letter-spacing:0.833067pt;}
.lscc{letter-spacing:0.853200pt;}
.ls9c{letter-spacing:0.874133pt;}
.ls166{letter-spacing:0.874667pt;}
.lsee{letter-spacing:0.880000pt;}
.lsc1{letter-spacing:0.921600pt;}
.ls123{letter-spacing:0.932267pt;}
.ls10b{letter-spacing:0.932800pt;}
.ls125{letter-spacing:0.933333pt;}
.ls124{letter-spacing:0.936000pt;}
.lsf9{letter-spacing:0.937067pt;}
.lsce{letter-spacing:0.938667pt;}
.ls100{letter-spacing:0.944533pt;}
.lsd4{letter-spacing:0.956267pt;}
.ls121{letter-spacing:1.013333pt;}
.ls13f{letter-spacing:1.018667pt;}
.ls9d{letter-spacing:1.026667pt;}
.ls107{letter-spacing:1.044267pt;}
.ls110{letter-spacing:1.138133pt;}
.lsef{letter-spacing:1.202667pt;}
.lsd5{letter-spacing:1.243733pt;}
.lsf3{letter-spacing:1.255467pt;}
.lsd0{letter-spacing:1.261333pt;}
.ls15b{letter-spacing:1.313067pt;}
.ls15c{letter-spacing:1.322133pt;}
.ls15d{letter-spacing:1.324000pt;}
.ls11e{letter-spacing:1.328000pt;}
.ls11d{letter-spacing:1.329067pt;}
.ls11f{letter-spacing:1.333333pt;}
.lsf0{letter-spacing:1.425600pt;}
.lse1{letter-spacing:1.560533pt;}
.lsa6{letter-spacing:1.677867pt;}
.ls10c{letter-spacing:1.742400pt;}
.ls153{letter-spacing:13.296000pt;}
.ls164{letter-spacing:14.821333pt;}
.ls120{letter-spacing:22.901333pt;}
.ls130{letter-spacing:26.666667pt;}
.ws151{word-spacing:-40.000000pt;}
.ws174{word-spacing:-26.629333pt;}
.ws6{word-spacing:-21.333333pt;}
.wsf2{word-spacing:-15.270933pt;}
.ws13d{word-spacing:-15.006933pt;}
.ws4{word-spacing:-14.960000pt;}
.ws5{word-spacing:-14.954133pt;}
.ws21{word-spacing:-14.666667pt;}
.wsd4{word-spacing:-14.649067pt;}
.ws23{word-spacing:-14.314667pt;}
.ws155{word-spacing:-13.600000pt;}
.ws73{word-spacing:-13.552000pt;}
.ws14d{word-spacing:-13.488000pt;}
.ws1a1{word-spacing:-13.477333pt;}
.wsd3{word-spacing:-13.405333pt;}
.ws14b{word-spacing:-13.333333pt;}
.ws14f{word-spacing:-13.328000pt;}
.wsd2{word-spacing:-13.246933pt;}
.ws15d{word-spacing:-13.194667pt;}
.ws1a4{word-spacing:-13.136000pt;}
.ws160{word-spacing:-13.114667pt;}
.ws1a5{word-spacing:-13.024000pt;}
.ws0{word-spacing:-12.920000pt;}
.ws8{word-spacing:-12.909867pt;}
.ws19d{word-spacing:-12.746667pt;}
.ws162{word-spacing:-12.693333pt;}
.ws16c{word-spacing:-12.688000pt;}
.ws2{word-spacing:-12.666667pt;}
.ws9{word-spacing:-12.661600pt;}
.wsa{word-spacing:-12.656533pt;}
.ws1a2{word-spacing:-12.528000pt;}
.wsd6{word-spacing:-12.408000pt;}
.ws1{word-spacing:-12.362667pt;}
.ws3{word-spacing:-12.256267pt;}
.wsf4{word-spacing:-12.240000pt;}
.ws91{word-spacing:-12.190933pt;}
.ws15b{word-spacing:-12.053333pt;}
.ws152{word-spacing:-12.042667pt;}
.ws7{word-spacing:-12.000000pt;}
.ws94{word-spacing:-11.971200pt;}
.ws15f{word-spacing:-11.898667pt;}
.ws74{word-spacing:-11.424000pt;}
.ws15a{word-spacing:-11.328000pt;}
.ws19c{word-spacing:-11.324000pt;}
.ws11c{word-spacing:-11.088000pt;}
.ws173{word-spacing:-11.082667pt;}
.ws166{word-spacing:-10.936000pt;}
.wsf3{word-spacing:-10.920000pt;}
.ws26{word-spacing:-10.666667pt;}
.ws101{word-spacing:-10.560000pt;}
.ws164{word-spacing:-10.476000pt;}
.ws195{word-spacing:-10.288000pt;}
.ws197{word-spacing:-10.284000pt;}
.ws154{word-spacing:-10.280000pt;}
.ws153{word-spacing:-10.272000pt;}
.ws22{word-spacing:-10.266667pt;}
.ws16d{word-spacing:-10.236000pt;}
.ws16f{word-spacing:-10.232000pt;}
.ws14e{word-spacing:-10.172000pt;}
.ws14c{word-spacing:-10.168000pt;}
.ws1a0{word-spacing:-10.148000pt;}
.ws167{word-spacing:-10.088000pt;}
.ws168{word-spacing:-10.084000pt;}
.ws19f{word-spacing:-10.020000pt;}
.ws156{word-spacing:-10.000000pt;}
.ws163{word-spacing:-9.996000pt;}
.ws165{word-spacing:-9.992000pt;}
.ws150{word-spacing:-9.988000pt;}
.ws199{word-spacing:-9.944000pt;}
.ws15e{word-spacing:-9.880000pt;}
.ws15c{word-spacing:-9.876000pt;}
.wsd5{word-spacing:-9.853200pt;}
.ws139{word-spacing:-9.767418pt;}
.ws13c{word-spacing:-9.706667pt;}
.ws16b{word-spacing:-9.568000pt;}
.ws16a{word-spacing:-9.564000pt;}
.ws159{word-spacing:-9.448000pt;}
.wsd8{word-spacing:-9.424800pt;}
.wsd7{word-spacing:-9.421200pt;}
.ws93{word-spacing:-9.414000pt;}
.ws11e{word-spacing:-9.333333pt;}
.ws138{word-spacing:-9.287053pt;}
.ws1a3{word-spacing:-9.284000pt;}
.ws172{word-spacing:-9.276000pt;}
.ws161{word-spacing:-9.048000pt;}
.ws99{word-spacing:-8.996400pt;}
.ws96{word-spacing:-8.989200pt;}
.ws95{word-spacing:-8.982000pt;}
.ws92{word-spacing:-8.924400pt;}
.ws13f{word-spacing:-8.853333pt;}
.ws176{word-spacing:-8.792000pt;}
.ws97{word-spacing:-8.661600pt;}
.ws12e{word-spacing:-8.448000pt;}
.ws110{word-spacing:-8.403360pt;}
.ws10f{word-spacing:-8.400000pt;}
.ws104{word-spacing:-8.213333pt;}
.ws105{word-spacing:-8.029355pt;}
.ws107{word-spacing:-8.016213pt;}
.ws10e{word-spacing:-8.000160pt;}
.ws19a{word-spacing:-7.952000pt;}
.ws140{word-spacing:-7.787392pt;}
.ws106{word-spacing:-7.227733pt;}
.ws13{word-spacing:-1.844267pt;}
.ws148{word-spacing:-1.348800pt;}
.ws149{word-spacing:-1.324800pt;}
.wsf7{word-spacing:-0.727467pt;}
.ws39{word-spacing:-0.709867pt;}
.ws78{word-spacing:-0.698133pt;}
.ws85{word-spacing:-0.692267pt;}
.ws72{word-spacing:-0.686400pt;}
.wse3{word-spacing:-0.680533pt;}
.ws9c{word-spacing:-0.674667pt;}
.ws5a{word-spacing:-0.668800pt;}
.ws3d{word-spacing:-0.662933pt;}
.ws1b2{word-spacing:-0.661333pt;}
.ws129{word-spacing:-0.657067pt;}
.ws7e{word-spacing:-0.651200pt;}
.ws132{word-spacing:-0.645333pt;}
.ws18c{word-spacing:-0.640000pt;}
.ws5f{word-spacing:-0.633600pt;}
.ws7b{word-spacing:-0.627733pt;}
.ws124{word-spacing:-0.621867pt;}
.wscb{word-spacing:-0.616000pt;}
.ws1a7{word-spacing:-0.613333pt;}
.ws9f{word-spacing:-0.610133pt;}
.ws1a{word-spacing:-0.604267pt;}
.ws147{word-spacing:-0.598400pt;}
.ws58{word-spacing:-0.592533pt;}
.wsb4{word-spacing:-0.590400pt;}
.ws9d{word-spacing:-0.586667pt;}
.wsb3{word-spacing:-0.585600pt;}
.wsb2{word-spacing:-0.580800pt;}
.ws31{word-spacing:-0.563200pt;}
.ws192{word-spacing:-0.560000pt;}
.ws32{word-spacing:-0.557333pt;}
.ws134{word-spacing:-0.551467pt;}
.wsf{word-spacing:-0.547200pt;}
.ws66{word-spacing:-0.545600pt;}
.ws36{word-spacing:-0.533867pt;}
.wsb1{word-spacing:-0.523200pt;}
.wsa5{word-spacing:-0.516267pt;}
.ws87{word-spacing:-0.510400pt;}
.wsb6{word-spacing:-0.508800pt;}
.ws30{word-spacing:-0.504533pt;}
.wsb5{word-spacing:-0.504000pt;}
.ws71{word-spacing:-0.499200pt;}
.ws53{word-spacing:-0.498667pt;}
.ws12c{word-spacing:-0.492800pt;}
.ws2a{word-spacing:-0.486933pt;}
.ws1af{word-spacing:-0.485333pt;}
.wsee{word-spacing:-0.484800pt;}
.ws43{word-spacing:-0.481067pt;}
.ws17c{word-spacing:-0.480000pt;}
.ws86{word-spacing:-0.469333pt;}
.wsac{word-spacing:-0.451733pt;}
.wsbe{word-spacing:-0.445867pt;}
.ws9e{word-spacing:-0.428267pt;}
.ws19{word-spacing:-0.422400pt;}
.ws89{word-spacing:-0.416533pt;}
.wse2{word-spacing:-0.410667pt;}
.wsdd{word-spacing:-0.393067pt;}
.ws4b{word-spacing:-0.388800pt;}
.ws2f{word-spacing:-0.381333pt;}
.ws5c{word-spacing:-0.375467pt;}
.ws90{word-spacing:-0.350400pt;}
.wse{word-spacing:-0.349600pt;}
.wsef{word-spacing:-0.331200pt;}
.wsa7{word-spacing:-0.328533pt;}
.wsa1{word-spacing:-0.322667pt;}
.ws1d{word-spacing:-0.316800pt;}
.ws54{word-spacing:-0.310933pt;}
.ws125{word-spacing:-0.305067pt;}
.ws70{word-spacing:-0.302400pt;}
.wsa8{word-spacing:-0.287467pt;}
.wsbd{word-spacing:-0.275733pt;}
.ws37{word-spacing:-0.264000pt;}
.ws49{word-spacing:-0.254400pt;}
.ws8a{word-spacing:-0.252267pt;}
.ws11{word-spacing:-0.248267pt;}
.ws6e{word-spacing:-0.244800pt;}
.ws12{word-spacing:-0.243200pt;}
.wse5{word-spacing:-0.240533pt;}
.ws18a{word-spacing:-0.240000pt;}
.wscf{word-spacing:-0.234667pt;}
.ws4f{word-spacing:-0.228800pt;}
.ws18b{word-spacing:-0.224000pt;}
.ws179{word-spacing:-0.222933pt;}
.ws144{word-spacing:-0.211200pt;}
.ws48{word-spacing:-0.193600pt;}
.ws17{word-spacing:-0.192533pt;}
.ws56{word-spacing:-0.187733pt;}
.ws79{word-spacing:-0.181867pt;}
.ws18{word-spacing:-0.177333pt;}
.ws2e{word-spacing:-0.176000pt;}
.wsa0{word-spacing:-0.170133pt;}
.ws1ab{word-spacing:-0.165333pt;}
.ws8d{word-spacing:-0.158400pt;}
.ws1ac{word-spacing:-0.154667pt;}
.wsbf{word-spacing:-0.152533pt;}
.ws143{word-spacing:-0.140800pt;}
.wsad{word-spacing:-0.134933pt;}
.ws62{word-spacing:-0.123200pt;}
.ws11a{word-spacing:-0.117333pt;}
.ws180{word-spacing:-0.112000pt;}
.ws11b{word-spacing:-0.105600pt;}
.wsfd{word-spacing:-0.100800pt;}
.wsb9{word-spacing:-0.099733pt;}
.ws14a{word-spacing:-0.099157pt;}
.wsa2{word-spacing:-0.088000pt;}
.ws81{word-spacing:-0.082133pt;}
.wscd{word-spacing:-0.076267pt;}
.ws20{word-spacing:-0.072533pt;}
.ws8f{word-spacing:-0.064533pt;}
.ws3a{word-spacing:-0.058667pt;}
.ws190{word-spacing:-0.042667pt;}
.wsa4{word-spacing:-0.041067pt;}
.ws18f{word-spacing:-0.037333pt;}
.ws198{word-spacing:-0.010667pt;}
.ws1e{word-spacing:-0.008533pt;}
.ws2c{word-spacing:-0.005867pt;}
.ws10{word-spacing:-0.005067pt;}
.ws6c{word-spacing:-0.004267pt;}
.wsb{word-spacing:0.000000pt;}
.wsed{word-spacing:0.004800pt;}
.ws1f{word-spacing:0.005067pt;}
.ws17b{word-spacing:0.005333pt;}
.ws80{word-spacing:0.005867pt;}
.ws18e{word-spacing:0.010667pt;}
.ws130{word-spacing:0.011733pt;}
.ws6a{word-spacing:0.017600pt;}
.ws34{word-spacing:0.035200pt;}
.ws83{word-spacing:0.041067pt;}
.ws1b0{word-spacing:0.042667pt;}
.wsaf{word-spacing:0.046933pt;}
.ws18d{word-spacing:0.048000pt;}
.ws157{word-spacing:0.053333pt;}
.wsb0{word-spacing:0.064533pt;}
.ws117{word-spacing:0.076267pt;}
.ws137{word-spacing:0.082133pt;}
.wsca{word-spacing:0.088000pt;}
.wsc4{word-spacing:0.105600pt;}
.ws52{word-spacing:0.117333pt;}
.ws127{word-spacing:0.123200pt;}
.ws67{word-spacing:0.129067pt;}
.ws4a{word-spacing:0.139200pt;}
.wsce{word-spacing:0.140800pt;}
.wsb8{word-spacing:0.176000pt;}
.wsbb{word-spacing:0.187733pt;}
.wse6{word-spacing:0.193600pt;}
.wsa6{word-spacing:0.199467pt;}
.wsfa{word-spacing:0.217067pt;}
.ws8e{word-spacing:0.228800pt;}
.wsc2{word-spacing:0.234667pt;}
.wsff{word-spacing:0.244800pt;}
.wsd9{word-spacing:0.246400pt;}
.ws51{word-spacing:0.258133pt;}
.ws35{word-spacing:0.264000pt;}
.wsf1{word-spacing:0.273600pt;}
.ws185{word-spacing:0.282667pt;}
.wsc3{word-spacing:0.287467pt;}
.wsc6{word-spacing:0.293333pt;}
.ws131{word-spacing:0.316800pt;}
.ws7d{word-spacing:0.346133pt;}
.ws119{word-spacing:0.381333pt;}
.wsfe{word-spacing:0.384000pt;}
.ws60{word-spacing:0.387200pt;}
.ws186{word-spacing:0.389333pt;}
.ws113{word-spacing:0.393067pt;}
.ws187{word-spacing:0.394667pt;}
.ws133{word-spacing:0.398933pt;}
.ws6b{word-spacing:0.422400pt;}
.wsb7{word-spacing:0.432000pt;}
.ws135{word-spacing:0.434133pt;}
.ws68{word-spacing:0.440000pt;}
.ws1b1{word-spacing:0.453333pt;}
.ws108{word-spacing:0.486933pt;}
.ws38{word-spacing:0.498667pt;}
.wse0{word-spacing:0.504533pt;}
.ws14{word-spacing:0.511733pt;}
.ws10a{word-spacing:0.516267pt;}
.wsc9{word-spacing:0.522133pt;}
.ws191{word-spacing:0.538667pt;}
.ws12b{word-spacing:0.539733pt;}
.ws177{word-spacing:0.545600pt;}
.ws3e{word-spacing:0.557333pt;}
.ws7f{word-spacing:0.569067pt;}
.ws10b{word-spacing:0.574933pt;}
.ws44{word-spacing:0.580800pt;}
.wsbc{word-spacing:0.586667pt;}
.ws100{word-spacing:0.595200pt;}
.ws118{word-spacing:0.604267pt;}
.wse1{word-spacing:0.610133pt;}
.ws12a{word-spacing:0.616000pt;}
.ws116{word-spacing:0.621867pt;}
.wsc{word-spacing:0.623200pt;}
.wsab{word-spacing:0.639467pt;}
.ws146{word-spacing:0.645333pt;}
.ws5e{word-spacing:0.657067pt;}
.ws16{word-spacing:0.658667pt;}
.wsba{word-spacing:0.662933pt;}
.ws42{word-spacing:0.674667pt;}
.wsc0{word-spacing:0.686400pt;}
.ws193{word-spacing:0.693333pt;}
.ws112{word-spacing:0.698133pt;}
.wsc7{word-spacing:0.704000pt;}
.ws141{word-spacing:0.709867pt;}
.wsf9{word-spacing:0.715733pt;}
.ws47{word-spacing:0.721600pt;}
.wsdb{word-spacing:0.733333pt;}
.ws76{word-spacing:0.750933pt;}
.wsd{word-spacing:0.760000pt;}
.wsd1{word-spacing:0.768533pt;}
.wsec{word-spacing:0.772800pt;}
.wseb{word-spacing:0.777600pt;}
.wsea{word-spacing:0.782400pt;}
.wsf8{word-spacing:0.786133pt;}
.ws111{word-spacing:0.792000pt;}
.ws61{word-spacing:0.797867pt;}
.ws145{word-spacing:0.821333pt;}
.wscc{word-spacing:0.827200pt;}
.ws63{word-spacing:0.833067pt;}
.ws115{word-spacing:0.844800pt;}
.wsda{word-spacing:0.856533pt;}
.ws5d{word-spacing:0.874133pt;}
.ws178{word-spacing:0.903467pt;}
.ws182{word-spacing:0.917333pt;}
.wsae{word-spacing:0.926933pt;}
.ws33{word-spacing:0.985600pt;}
.ws17f{word-spacing:1.002667pt;}
.wsfc{word-spacing:1.009067pt;}
.ws184{word-spacing:1.013333pt;}
.wsc8{word-spacing:1.014933pt;}
.ws4c{word-spacing:1.017600pt;}
.ws12d{word-spacing:1.020800pt;}
.ws59{word-spacing:1.026667pt;}
.ws10c{word-spacing:1.032533pt;}
.wse7{word-spacing:1.038400pt;}
.ws1a6{word-spacing:1.040000pt;}
.wsfb{word-spacing:1.044267pt;}
.ws17e{word-spacing:1.045333pt;}
.wsf0{word-spacing:1.046400pt;}
.ws64{word-spacing:1.050133pt;}
.ws17d{word-spacing:1.050667pt;}
.ws6d{word-spacing:1.056000pt;}
.ws84{word-spacing:1.061867pt;}
.ws3b{word-spacing:1.073600pt;}
.ws40{word-spacing:1.079467pt;}
.wsa3{word-spacing:1.091200pt;}
.wsf6{word-spacing:1.108800pt;}
.ws142{word-spacing:1.114667pt;}
.ws75{word-spacing:1.126400pt;}
.ws65{word-spacing:1.132267pt;}
.wse9{word-spacing:1.137600pt;}
.ws128{word-spacing:1.138133pt;}
.ws2b{word-spacing:1.144000pt;}
.ws88{word-spacing:1.155733pt;}
.ws17a{word-spacing:1.157333pt;}
.ws15{word-spacing:1.160267pt;}
.ws50{word-spacing:1.161600pt;}
.ws114{word-spacing:1.167467pt;}
.ws1ae{word-spacing:1.178667pt;}
.wse4{word-spacing:1.179200pt;}
.ws6f{word-spacing:1.180800pt;}
.ws1ad{word-spacing:1.184000pt;}
.ws55{word-spacing:1.185067pt;}
.ws4d{word-spacing:1.185600pt;}
.ws46{word-spacing:1.190933pt;}
.ws8c{word-spacing:1.202667pt;}
.wsc5{word-spacing:1.214400pt;}
.ws41{word-spacing:1.232000pt;}
.ws189{word-spacing:1.237333pt;}
.ws188{word-spacing:1.242667pt;}
.ws28{word-spacing:1.243733pt;}
.ws7a{word-spacing:1.249600pt;}
.wsa9{word-spacing:1.261333pt;}
.ws183{word-spacing:1.274667pt;}
.ws9b{word-spacing:1.284800pt;}
.wsde{word-spacing:1.290667pt;}
.ws29{word-spacing:1.296533pt;}
.ws8b{word-spacing:1.302400pt;}
.ws1aa{word-spacing:1.306667pt;}
.wse8{word-spacing:1.308267pt;}
.ws3f{word-spacing:1.314133pt;}
.ws82{word-spacing:1.320000pt;}
.ws4e{word-spacing:1.325867pt;}
.wsdf{word-spacing:1.331733pt;}
.wsaa{word-spacing:1.343467pt;}
.ws1b{word-spacing:1.349333pt;}
.ws126{word-spacing:1.361067pt;}
.ws136{word-spacing:1.366933pt;}
.ws57{word-spacing:1.372800pt;}
.ws109{word-spacing:1.378667pt;}
.ws77{word-spacing:1.384533pt;}
.ws5b{word-spacing:1.402133pt;}
.wsc1{word-spacing:1.408000pt;}
.wsdc{word-spacing:1.413867pt;}
.wsd0{word-spacing:1.419733pt;}
.ws24{word-spacing:1.425600pt;}
.ws1c{word-spacing:1.431467pt;}
.ws45{word-spacing:1.437333pt;}
.ws3c{word-spacing:1.443200pt;}
.ws69{word-spacing:1.449067pt;}
.ws7c{word-spacing:1.454933pt;}
.ws2d{word-spacing:1.460800pt;}
.ws9a{word-spacing:1.536000pt;}
.ws98{word-spacing:2.504533pt;}
.ws16e{word-spacing:2.701867pt;}
.ws169{word-spacing:3.112000pt;}
.ws158{word-spacing:3.221333pt;}
.ws170{word-spacing:3.369333pt;}
.ws171{word-spacing:3.392800pt;}
.ws175{word-spacing:3.888533pt;}
.ws1a8{word-spacing:3.978667pt;}
.ws1a9{word-spacing:3.984000pt;}
.ws194{word-spacing:4.388267pt;}
.ws196{word-spacing:4.412800pt;}
.ws19e{word-spacing:4.653067pt;}
.ws181{word-spacing:6.901333pt;}
.ws19b{word-spacing:7.328533pt;}
.ws1b3{word-spacing:14.693333pt;}
.ws25{word-spacing:31.808000pt;}
.ws27{word-spacing:32.001600pt;}
.ws10d{word-spacing:73.024000pt;}
.ws122{word-spacing:74.837333pt;}
.wsf5{word-spacing:79.748267pt;}
.ws12f{word-spacing:79.748800pt;}
.ws123{word-spacing:85.696000pt;}
.ws102{word-spacing:88.223520pt;}
.ws103{word-spacing:94.703019pt;}
.ws11f{word-spacing:126.920533pt;}
.ws11d{word-spacing:129.322667pt;}
.ws13b{word-spacing:156.374400pt;}
.ws13a{word-spacing:197.508480pt;}
.ws13e{word-spacing:217.172267pt;}
.ws121{word-spacing:416.192000pt;}
.ws120{word-spacing:541.893333pt;}
._1e{margin-left:-26.853333pt;}
._21{margin-left:-13.284267pt;}
._6{margin-left:-11.093333pt;}
._20{margin-left:-9.612800pt;}
._d{margin-left:-7.691200pt;}
._a{margin-left:-6.447467pt;}
._3{margin-left:-4.762667pt;}
._9{margin-left:-3.433067pt;}
._2{margin-left:-2.533333pt;}
._1{margin-left:-1.079200pt;}
._0{width:1.368000pt;}
._4{width:2.421867pt;}
._7{width:3.988267pt;}
._22{width:5.256000pt;}
._1f{width:6.767733pt;}
._c{width:42.265333pt;}
._5{width:43.373867pt;}
._17{width:44.828160pt;}
._10{width:80.957333pt;}
._18{width:83.715840pt;}
._f{width:87.490667pt;}
._e{width:95.424000pt;}
._12{width:134.656000pt;}
._14{width:143.278933pt;}
._13{width:147.537067pt;}
._11{width:150.656000pt;}
._16{width:152.202240pt;}
._15{width:161.671680pt;}
._b{width:169.135467pt;}
._1a{width:172.552186pt;}
._1b{width:204.016080pt;}
._1d{width:223.812267pt;}
._1c{width:232.665600pt;}
._19{width:593.271690pt;}
._8{width:1063.034667pt;}
.fs10{font-size:27.733333pt;}
.fs9{font-size:28.746667pt;}
.fs12{font-size:30.986667pt;}
.fsd{font-size:32.000000pt;}
.fsa{font-size:32.853333pt;}
.fsc{font-size:33.600000pt;}
.fs14{font-size:35.413333pt;}
.fs7{font-size:36.000000pt;}
.fsb{font-size:37.333333pt;}
.fse{font-size:38.400000pt;}
.fs11{font-size:38.826667pt;}
.fs16{font-size:40.000000pt;}
.fsf{font-size:40.030400pt;}
.fs6{font-size:41.066667pt;}
.fs2{font-size:42.666667pt;}
.fs13{font-size:44.266667pt;}
.fs8{font-size:46.933333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs15{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y269{bottom:38.062547pt;}
.y18f{bottom:39.776413pt;}
.y1ce{bottom:39.783080pt;}
.y175{bottom:41.265320pt;}
.y24a{bottom:41.515853pt;}
.y135{bottom:41.602653pt;}
.y110{bottom:41.605853pt;}
.y295{bottom:41.620253pt;}
.y12d{bottom:41.670653pt;}
.y52{bottom:41.711987pt;}
.y7a{bottom:41.715453pt;}
.yc8{bottom:41.715587pt;}
.ye9{bottom:41.788787pt;}
.ya4{bottom:42.023453pt;}
.y222{bottom:42.070120pt;}
.y15{bottom:43.207453pt;}
.y2d3{bottom:44.141053pt;}
.y268{bottom:50.729747pt;}
.y18e{bottom:52.443613pt;}
.y1cd{bottom:52.450280pt;}
.y134{bottom:54.269853pt;}
.y10f{bottom:54.273053pt;}
.y12c{bottom:54.337853pt;}
.y51{bottom:54.379187pt;}
.y79{bottom:54.382653pt;}
.yc7{bottom:54.382787pt;}
.ya3{bottom:54.690653pt;}
.y174{bottom:56.599320pt;}
.y249{bottom:56.849853pt;}
.y294{bottom:56.954253pt;}
.ye8{bottom:57.122787pt;}
.y221{bottom:57.404120pt;}
.y2d2{bottom:58.141053pt;}
.y14{bottom:58.541453pt;}
.y10e{bottom:66.940253pt;}
.y12b{bottom:67.005053pt;}
.y50{bottom:67.046387pt;}
.yc6{bottom:67.049453pt;}
.y78{bottom:67.049853pt;}
.y173{bottom:71.933320pt;}
.y2d1{bottom:72.141053pt;}
.y248{bottom:72.183853pt;}
.y293{bottom:72.288253pt;}
.ye7{bottom:72.456787pt;}
.y220{bottom:72.738120pt;}
.y13{bottom:73.875453pt;}
.y10d{bottom:79.607453pt;}
.y12a{bottom:79.672253pt;}
.y4f{bottom:79.713587pt;}
.yc5{bottom:79.716120pt;}
.y77{bottom:79.717053pt;}
.y2d0{bottom:86.141053pt;}
.y172{bottom:87.267320pt;}
.y247{bottom:87.517853pt;}
.y292{bottom:87.622253pt;}
.ye6{bottom:87.790787pt;}
.y21f{bottom:88.072120pt;}
.y12{bottom:89.209453pt;}
.y160{bottom:90.475987pt;}
.y26e{bottom:90.932413pt;}
.y206{bottom:91.525347pt;}
.y10c{bottom:92.274653pt;}
.y129{bottom:92.339453pt;}
.y4e{bottom:92.380787pt;}
.yc4{bottom:92.382787pt;}
.y76{bottom:92.384253pt;}
.y2cf{bottom:100.141053pt;}
.y1ca{bottom:101.973080pt;}
.y171{bottom:102.601320pt;}
.y246{bottom:102.851853pt;}
.y291{bottom:102.956253pt;}
.ye5{bottom:103.124787pt;}
.ya2{bottom:103.142120pt;}
.y21e{bottom:103.406120pt;}
.y11{bottom:104.543453pt;}
.y10b{bottom:104.941853pt;}
.y128{bottom:105.006653pt;}
.y4d{bottom:105.047987pt;}
.yc3{bottom:105.049987pt;}
.y75{bottom:105.051453pt;}
.y26d{bottom:107.611747pt;}
.y2ce{bottom:114.141053pt;}
.y10a{bottom:117.608520pt;}
.y127{bottom:117.673853pt;}
.y4c{bottom:117.715187pt;}
.y170{bottom:117.935320pt;}
.y245{bottom:118.185853pt;}
.y290{bottom:118.290253pt;}
.ye4{bottom:118.458787pt;}
.ya1{bottom:118.476120pt;}
.y21d{bottom:118.740120pt;}
.y1f3{bottom:119.524547pt;}
.y154{bottom:122.690616pt;}
.y26c{bottom:124.291213pt;}
.y156{bottom:124.992813pt;}
.y152{bottom:125.847000pt;}
.y10{bottom:127.543720pt;}
.y2cd{bottom:128.141053pt;}
.y157{bottom:129.583245pt;}
.y159{bottom:130.099864pt;}
.y109{bottom:130.275720pt;}
.y126{bottom:130.341053pt;}
.y155{bottom:131.804952pt;}
.y16f{bottom:133.269320pt;}
.y244{bottom:133.519853pt;}
.y28f{bottom:133.624253pt;}
.ye3{bottom:133.792787pt;}
.ya0{bottom:133.810120pt;}
.y21c{bottom:134.074120pt;}
.y151{bottom:136.618787pt;}
.y15b{bottom:138.033123pt;}
.y1e0{bottom:139.186680pt;}
.y14e{bottom:139.698787pt;}
.y153{bottom:140.542296pt;}
.y26b{bottom:140.970680pt;}
.y14f{bottom:141.922957pt;}
.y1f4{bottom:141.974013pt;}
.y2cc{bottom:142.141053pt;}
.y1b4{bottom:142.398680pt;}
.y125{bottom:143.008253pt;}
.y15a{bottom:143.243661pt;}
.y150{bottom:145.117123pt;}
.y1f2{bottom:145.225080pt;}
.y16e{bottom:148.603320pt;}
.y243{bottom:148.853853pt;}
.y28e{bottom:148.958253pt;}
.ye2{bottom:149.126787pt;}
.y74{bottom:149.131853pt;}
.yc2{bottom:149.140787pt;}
.y9f{bottom:149.144120pt;}
.y21b{bottom:149.408120pt;}
.y15c{bottom:151.492312pt;}
.y15e{bottom:153.409304pt;}
.y1df{bottom:155.016280pt;}
.y158{bottom:155.126712pt;}
.y2cb{bottom:156.141053pt;}
.y26a{bottom:157.650147pt;}
.y24{bottom:159.212453pt;}
.y1f8{bottom:159.306947pt;}
.y15d{bottom:160.365997pt;}
.y190{bottom:161.731880pt;}
.y1f1{bottom:161.798680pt;}
.y1b8{bottom:162.931880pt;}
.y16d{bottom:163.937320pt;}
.y242{bottom:164.187853pt;}
.y28d{bottom:164.292253pt;}
.ye1{bottom:164.460787pt;}
.y73{bottom:164.465853pt;}
.y4b{bottom:164.468120pt;}
.yc1{bottom:164.474787pt;}
.y9e{bottom:164.478120pt;}
.y21a{bottom:164.742120pt;}
.y19e{bottom:167.065480pt;}
.y2ca{bottom:170.141053pt;}
.y1f5{bottom:175.307080pt;}
.y191{bottom:177.565480pt;}
.y23{bottom:177.879320pt;}
.y12f{bottom:178.560787pt;}
.y147{bottom:179.232253pt;}
.y16c{bottom:179.271320pt;}
.y241{bottom:179.521853pt;}
.y28c{bottom:179.626253pt;}
.ye0{bottom:179.794787pt;}
.y72{bottom:179.799853pt;}
.y4a{bottom:179.802120pt;}
.yc0{bottom:179.808787pt;}
.y9d{bottom:179.812120pt;}
.y219{bottom:180.076120pt;}
.y1bc{bottom:180.264813pt;}
.y1f0{bottom:180.949080pt;}
.y1de{bottom:181.101880pt;}
.y19f{bottom:183.231880pt;}
.y2c9{bottom:184.141053pt;}
.y15f{bottom:184.287853pt;}
.y139{bottom:184.288023pt;}
.y144{bottom:184.314613pt;}
.y141{bottom:188.482161pt;}
.y1dd{bottom:189.829880pt;}
.y280{bottom:190.329213pt;}
.y25{bottom:191.212253pt;}
.y12e{bottom:191.227987pt;}
.y192{bottom:194.231880pt;}
.y13d{bottom:194.240837pt;}
.y1f9{bottom:194.306947pt;}
.y16b{bottom:194.605320pt;}
.y240{bottom:194.855853pt;}
.y28b{bottom:194.960253pt;}
.ydf{bottom:195.128787pt;}
.y71{bottom:195.133853pt;}
.y49{bottom:195.136120pt;}
.ybf{bottom:195.142787pt;}
.y9c{bottom:195.146120pt;}
.y108{bottom:195.148120pt;}
.y218{bottom:195.410120pt;}
.y143{bottom:196.105777pt;}
.y1b9{bottom:196.264947pt;}
.y22{bottom:196.546187pt;}
.y1ef{bottom:197.945080pt;}
.y2c8{bottom:198.141053pt;}
.y1a0{bottom:200.731880pt;}
.y13e{bottom:204.842608pt;}
.y145{bottom:204.899383pt;}
.y140{bottom:206.103868pt;}
.y1dc{bottom:206.147480pt;}
.y142{bottom:207.170369pt;}
.y13c{bottom:208.753592pt;}
.y138{bottom:208.956256pt;}
.y13a{bottom:209.267439pt;}
.y21{bottom:209.879120pt;}
.y16a{bottom:209.939320pt;}
.y193{bottom:210.065480pt;}
.y23f{bottom:210.189853pt;}
.y28a{bottom:210.294253pt;}
.yde{bottom:210.462787pt;}
.y70{bottom:210.467853pt;}
.y48{bottom:210.470120pt;}
.ybe{bottom:210.476787pt;}
.y9b{bottom:210.480120pt;}
.y107{bottom:210.482120pt;}
.y217{bottom:210.744120pt;}
.y1f6{bottom:211.306680pt;}
.y2c7{bottom:212.141053pt;}
.y148{bottom:212.437733pt;}
.y1bd{bottom:212.598280pt;}
.y1ee{bottom:214.685080pt;}
.y1a1{bottom:217.065480pt;}
.y26f{bottom:220.612547pt;}
.y1db{bottom:224.489080pt;}
.y169{bottom:225.273320pt;}
.y194{bottom:225.399080pt;}
.y23e{bottom:225.523853pt;}
.y289{bottom:225.628253pt;}
.ydd{bottom:225.796787pt;}
.y6f{bottom:225.801853pt;}
.y47{bottom:225.804120pt;}
.ybd{bottom:225.810787pt;}
.y9a{bottom:225.814120pt;}
.y106{bottom:225.816120pt;}
.y216{bottom:226.078120pt;}
.y2c6{bottom:226.141053pt;}
.y13b{bottom:226.163292pt;}
.y130{bottom:227.195853pt;}
.y146{bottom:227.597032pt;}
.y1ba{bottom:228.265213pt;}
.y20{bottom:228.545987pt;}
.y132{bottom:228.902920pt;}
.y1fa{bottom:228.973747pt;}
.y1a2{bottom:231.399080pt;}
.y1ed{bottom:231.604280pt;}
.y270{bottom:232.912973pt;}
.y1da{bottom:237.318680pt;}
.y1b7{bottom:237.557213pt;}
.y2c5{bottom:240.141053pt;}
.y168{bottom:240.607320pt;}
.y137{bottom:240.843496pt;}
.y23d{bottom:240.857853pt;}
.y288{bottom:240.962253pt;}
.y195{bottom:241.065480pt;}
.ydc{bottom:241.130787pt;}
.y6e{bottom:241.135853pt;}
.y46{bottom:241.138120pt;}
.ybc{bottom:241.144787pt;}
.y99{bottom:241.148120pt;}
.y105{bottom:241.150120pt;}
.y215{bottom:241.412120pt;}
.y1ec{bottom:242.010680pt;}
.y1be{bottom:244.598547pt;}
.y271{bottom:245.125347pt;}
.y1f7{bottom:245.640280pt;}
.y1a3{bottom:246.399080pt;}
.y149{bottom:246.406027pt;}
.y1f{bottom:250.866253pt;}
.y2c4{bottom:254.141053pt;}
.y167{bottom:255.941320pt;}
.y23c{bottom:256.191853pt;}
.y287{bottom:256.296253pt;}
.ydb{bottom:256.464787pt;}
.y6d{bottom:256.469853pt;}
.y45{bottom:256.472120pt;}
.ybb{bottom:256.478787pt;}
.y98{bottom:256.482120pt;}
.y104{bottom:256.484120pt;}
.y214{bottom:256.746120pt;}
.y272{bottom:256.819107pt;}
.y196{bottom:257.399080pt;}
.y1d9{bottom:258.969080pt;}
.y1bb{bottom:259.931347pt;}
.y1fb{bottom:262.306813pt;}
.y1a4{bottom:262.399080pt;}
.y281{bottom:264.906680pt;}
.y1eb{bottom:265.572280pt;}
.y2c3{bottom:268.141053pt;}
.y166{bottom:271.275320pt;}
.y23b{bottom:271.525853pt;}
.y286{bottom:271.630253pt;}
.yda{bottom:271.798787pt;}
.y6c{bottom:271.803853pt;}
.y44{bottom:271.806120pt;}
.yba{bottom:271.812787pt;}
.y103{bottom:271.813453pt;}
.y97{bottom:271.816120pt;}
.y213{bottom:272.080120pt;}
.y197{bottom:272.399080pt;}
.y1d8{bottom:275.376280pt;}
.y1bf{bottom:276.598813pt;}
.y1a5{bottom:278.732680pt;}
.y1fc{bottom:280.307080pt;}
.y273{bottom:280.384120pt;}
.y14a{bottom:281.151507pt;}
.y274{bottom:281.763853pt;}
.y2c2{bottom:282.141053pt;}
.y1b5{bottom:282.469213pt;}
.y165{bottom:286.609320pt;}
.y23a{bottom:286.859853pt;}
.y285{bottom:286.964253pt;}
.yd9{bottom:287.132787pt;}
.y6b{bottom:287.137853pt;}
.y43{bottom:287.140120pt;}
.yb9{bottom:287.146787pt;}
.y102{bottom:287.147453pt;}
.y96{bottom:287.150120pt;}
.y212{bottom:287.414120pt;}
.y1ea{bottom:288.312280pt;}
.yf{bottom:288.543720pt;}
.y198{bottom:290.399080pt;}
.y136{bottom:291.086920pt;}
.y275{bottom:291.551640pt;}
.y1c0{bottom:293.265347pt;}
.y1d7{bottom:294.295480pt;}
.y2c1{bottom:296.141053pt;}
.y1a6{bottom:296.732680pt;}
.y1fd{bottom:297.306813pt;}
.y1e9{bottom:301.808280pt;}
.ye{bottom:301.877587pt;}
.y164{bottom:301.943320pt;}
.y239{bottom:302.193853pt;}
.y284{bottom:302.298253pt;}
.yd8{bottom:302.466787pt;}
.y6a{bottom:302.471853pt;}
.y42{bottom:302.474120pt;}
.yb8{bottom:302.480787pt;}
.y101{bottom:302.481453pt;}
.y95{bottom:302.484120pt;}
.y211{bottom:302.748120pt;}
.y199{bottom:306.732680pt;}
.y1c1{bottom:308.932280pt;}
.y2c0{bottom:310.141053pt;}
.y1d6{bottom:311.613080pt;}
.y1a7{bottom:313.066280pt;}
.y1fe{bottom:314.306547pt;}
.y14b{bottom:314.870320pt;}
.y276{bottom:315.890413pt;}
.y163{bottom:317.277320pt;}
.y238{bottom:317.527853pt;}
.yd7{bottom:317.800787pt;}
.y69{bottom:317.805853pt;}
.y41{bottom:317.808120pt;}
.y94{bottom:317.813987pt;}
.yb7{bottom:317.814787pt;}
.y100{bottom:317.815453pt;}
.y210{bottom:318.082120pt;}
.y1e8{bottom:319.881880pt;}
.yd{bottom:320.544453pt;}
.y19a{bottom:322.399080pt;}
.y2bf{bottom:324.141053pt;}
.y1c2{bottom:324.599213pt;}
.y283{bottom:325.298520pt;}
.y1d5{bottom:327.019480pt;}
.y1b3{bottom:329.066280pt;}
.y1ff{bottom:331.973613pt;}
.y162{bottom:332.611320pt;}
.y237{bottom:332.861853pt;}
.yd6{bottom:333.134787pt;}
.y68{bottom:333.139853pt;}
.y40{bottom:333.142120pt;}
.y93{bottom:333.147987pt;}
.yb6{bottom:333.148787pt;}
.yff{bottom:333.149453pt;}
.y20f{bottom:333.416120pt;}
.yc{bottom:333.877387pt;}
.y1af{bottom:337.232680pt;}
.y2be{bottom:338.141053pt;}
.y1e7{bottom:340.621880pt;}
.y1c3{bottom:340.932547pt;}
.y1a8{bottom:343.399880pt;}
.y1d4{bottom:343.794680pt;}
.y277{bottom:344.821133pt;}
.yb{bottom:347.210320pt;}
.y161{bottom:347.945320pt;}
.y236{bottom:348.195853pt;}
.yd5{bottom:348.468787pt;}
.y67{bottom:348.473853pt;}
.y3f{bottom:348.476120pt;}
.y92{bottom:348.481987pt;}
.yb5{bottom:348.482787pt;}
.yfe{bottom:348.483453pt;}
.y14c{bottom:348.709253pt;}
.y20e{bottom:348.750120pt;}
.y200{bottom:350.307080pt;}
.y1e6{bottom:351.028280pt;}
.y2bd{bottom:352.141053pt;}
.y131{bottom:352.420787pt;}
.y19b{bottom:353.565480pt;}
.y1c4{bottom:356.599480pt;}
.y278{bottom:358.420173pt;}
.y1a9{bottom:359.066280pt;}
.ya{bottom:360.543253pt;}
.y1d3{bottom:361.410680pt;}
.y235{bottom:363.529853pt;}
.yd4{bottom:363.802787pt;}
.y3e{bottom:363.810120pt;}
.y91{bottom:363.815987pt;}
.yb4{bottom:363.816787pt;}
.yfd{bottom:363.817453pt;}
.y20d{bottom:364.084120pt;}
.y2bc{bottom:366.141053pt;}
.y201{bottom:366.640413pt;}
.y279{bottom:368.814627pt;}
.y1e5{bottom:368.857880pt;}
.y1b0{bottom:369.066280pt;}
.y66{bottom:371.474120pt;}
.y1c5{bottom:372.932813pt;}
.y13f{bottom:373.254955pt;}
.y298{bottom:373.763187pt;}
.y1aa{bottom:375.232680pt;}
.y234{bottom:378.863853pt;}
.yd3{bottom:379.136787pt;}
.yfc{bottom:379.138253pt;}
.y3d{bottom:379.144120pt;}
.y90{bottom:379.149987pt;}
.yb3{bottom:379.150787pt;}
.y20c{bottom:379.418120pt;}
.y2bb{bottom:380.141053pt;}
.y1d2{bottom:382.240280pt;}
.y27a{bottom:382.326307pt;}
.y14d{bottom:382.941400pt;}
.y202{bottom:383.974280pt;}
.y297{bottom:386.430387pt;}
.y19c{bottom:386.731880pt;}
.y9{bottom:387.210387pt;}
.y1c6{bottom:387.599213pt;}
.y1e4{bottom:388.265080pt;}
.y282{bottom:389.202488pt;}
.y1d1{bottom:391.980280pt;}
.y1ab{bottom:393.066280pt;}
.y1b6{bottom:393.292413pt;}
.y27b{bottom:394.106040pt;}
.y2ba{bottom:394.141053pt;}
.yd2{bottom:394.470787pt;}
.yfb{bottom:394.472253pt;}
.yb2{bottom:394.473720pt;}
.y3c{bottom:394.478120pt;}
.y8f{bottom:394.483987pt;}
.y20b{bottom:394.752120pt;}
.y296{bottom:399.097587pt;}
.y8{bottom:400.544853pt;}
.y203{bottom:400.974013pt;}
.y177{bottom:401.106253pt;}
.y1b2{bottom:401.232680pt;}
.y124{bottom:402.151720pt;}
.y1e3{bottom:403.338680pt;}
.y1c7{bottom:404.598947pt;}
.y27c{bottom:406.406467pt;}
.y1ac{bottom:407.566280pt;}
.y2b9{bottom:408.141053pt;}
.yd1{bottom:409.804787pt;}
.yfa{bottom:409.806253pt;}
.y65{bottom:409.806920pt;}
.yb1{bottom:409.807720pt;}
.y3b{bottom:409.812120pt;}
.y8e{bottom:409.817987pt;}
.y20a{bottom:410.086120pt;}
.y1d0{bottom:413.452280pt;}
.y1e2{bottom:413.745080pt;}
.y176{bottom:413.772253pt;}
.y1b1{bottom:416.066280pt;}
.y27d{bottom:416.626893pt;}
.y123{bottom:417.485720pt;}
.y204{bottom:418.306947pt;}
.y1c8{bottom:420.599080pt;}
.y2b8{bottom:422.141053pt;}
.y1ad{bottom:422.232680pt;}
.yd0{bottom:425.138787pt;}
.yf9{bottom:425.140253pt;}
.y64{bottom:425.140920pt;}
.yb0{bottom:425.141720pt;}
.y3a{bottom:425.146120pt;}
.y8d{bottom:425.151987pt;}
.y209{bottom:425.420120pt;}
.y27e{bottom:429.705933pt;}
.y7{bottom:432.544653pt;}
.y1cf{bottom:432.704280pt;}
.y122{bottom:432.819720pt;}
.y19d{bottom:433.731880pt;}
.y2b7{bottom:436.141053pt;}
.y2ae{bottom:436.355987pt;}
.y1c9{bottom:436.599213pt;}
.y205{bottom:436.973613pt;}
.y1e1{bottom:439.617880pt;}
.y1ae{bottom:440.066280pt;}
.ycf{bottom:440.472787pt;}
.yf8{bottom:440.474253pt;}
.y63{bottom:440.474920pt;}
.yaf{bottom:440.475720pt;}
.y39{bottom:440.480120pt;}
.y8c{bottom:440.485987pt;}
.y208{bottom:440.754120pt;}
.y27f{bottom:442.264973pt;}
.y121{bottom:448.153720pt;}
.y2b6{bottom:450.141053pt;}
.y24c{bottom:451.130120pt;}
.y6{bottom:451.211520pt;}
.y18c{bottom:452.009453pt;}
.yce{bottom:455.806787pt;}
.yf7{bottom:455.808253pt;}
.y62{bottom:455.808920pt;}
.yae{bottom:455.809720pt;}
.y38{bottom:455.814120pt;}
.y8b{bottom:455.819987pt;}
.y207{bottom:456.088120pt;}
.y2a2{bottom:458.894920pt;}
.y120{bottom:463.487720pt;}
.y24b{bottom:463.797320pt;}
.y2b5{bottom:464.141053pt;}
.y5{bottom:464.544453pt;}
.y18d{bottom:465.501347pt;}
.y1cc{bottom:466.225747pt;}
.ycd{bottom:471.140787pt;}
.yf6{bottom:471.142253pt;}
.y61{bottom:471.142920pt;}
.yad{bottom:471.143720pt;}
.y37{bottom:471.148120pt;}
.y8a{bottom:471.153987pt;}
.y4{bottom:477.877387pt;}
.y2b4{bottom:478.141053pt;}
.y11f{bottom:478.821720pt;}
.y182{bottom:479.221853pt;}
.y299{bottom:482.780787pt;}
.ycc{bottom:486.474787pt;}
.yf5{bottom:486.476253pt;}
.y60{bottom:486.476920pt;}
.yac{bottom:486.477720pt;}
.y36{bottom:486.482120pt;}
.y89{bottom:486.487987pt;}
.y2a3{bottom:490.988120pt;}
.y3{bottom:491.210320pt;}
.y2b3{bottom:492.141053pt;}
.y11e{bottom:494.155720pt;}
.y224{bottom:499.817320pt;}
.ycb{bottom:501.808787pt;}
.yf4{bottom:501.810253pt;}
.y5f{bottom:501.810920pt;}
.yab{bottom:501.811720pt;}
.y35{bottom:501.816120pt;}
.y88{bottom:501.821987pt;}
.y178{bottom:504.045720pt;}
.y2{bottom:504.543253pt;}
.y2b2{bottom:506.141053pt;}
.y2ab{bottom:507.077720pt;}
.y267{bottom:508.182653pt;}
.y184{bottom:509.140253pt;}
.y11d{bottom:509.489720pt;}
.y223{bottom:512.484520pt;}
.y17d{bottom:517.112387pt;}
.yca{bottom:517.142787pt;}
.yf3{bottom:517.144253pt;}
.y5e{bottom:517.144920pt;}
.yaa{bottom:517.145720pt;}
.y34{bottom:517.150120pt;}
.y87{bottom:517.155987pt;}
.y183{bottom:517.540253pt;}
.y2b1{bottom:520.141053pt;}
.y11c{bottom:524.823720pt;}
.y29a{bottom:525.959157pt;}
.y1{bottom:531.210387pt;}
.yc9{bottom:532.476787pt;}
.yf2{bottom:532.478253pt;}
.y5d{bottom:532.478920pt;}
.ya9{bottom:532.479720pt;}
.y33{bottom:532.484120pt;}
.y86{bottom:532.489987pt;}
.y2b0{bottom:534.141053pt;}
.y2a4{bottom:534.148120pt;}
.y2e0{bottom:534.484787pt;}
.y24f{bottom:539.242467pt;}
.y24e{bottom:539.541987pt;}
.y250{bottom:539.842467pt;}
.y11b{bottom:540.157720pt;}
.y32{bottom:547.810787pt;}
.yf1{bottom:547.812253pt;}
.y5c{bottom:547.812920pt;}
.ya8{bottom:547.813720pt;}
.y85{bottom:547.823987pt;}
.y233{bottom:548.174387pt;}
.y2df{bottom:548.484787pt;}
.y1cb{bottom:548.598413pt;}
.y24d{bottom:549.141987pt;}
.y179{bottom:550.712387pt;}
.y2ac{bottom:550.803005pt;}
.y133{bottom:555.479987pt;}
.y11a{bottom:555.491720pt;}
.y2af{bottom:555.802653pt;}
.y186{bottom:555.807293pt;}
.y2ad{bottom:559.134545pt;}
.y25d{bottom:559.173453pt;}
.y2de{bottom:562.484787pt;}
.y31{bottom:563.144787pt;}
.yf0{bottom:563.146253pt;}
.y5b{bottom:563.146920pt;}
.ya7{bottom:563.147720pt;}
.y84{bottom:563.157987pt;}
.y185{bottom:564.207293pt;}
.y17e{bottom:564.712387pt;}
.y256{bottom:565.520667pt;}
.y1e{bottom:567.783720pt;}
.y25c{bottom:570.551427pt;}
.y119{bottom:570.824253pt;}
.y232{bottom:574.485187pt;}
.y2dd{bottom:576.484787pt;}
.y25e{bottom:576.963453pt;}
.y2a5{bottom:577.308120pt;}
.y30{bottom:578.478787pt;}
.yef{bottom:578.480253pt;}
.y5a{bottom:578.480920pt;}
.ya6{bottom:578.481720pt;}
.y83{bottom:578.491987pt;}
.y1d{bottom:580.450920pt;}
.y25b{bottom:583.187547pt;}
.y29b{bottom:584.279937pt;}
.y118{bottom:586.156787pt;}
.y254{bottom:586.963347pt;}
.y22a{bottom:589.151853pt;}
.y2dc{bottom:590.484787pt;}
.y25a{bottom:591.694227pt;}
.y1c{bottom:593.118120pt;}
.y25f{bottom:593.764653pt;}
.y2f{bottom:593.812787pt;}
.yee{bottom:593.814253pt;}
.y59{bottom:593.814920pt;}
.y82{bottom:593.824520pt;}
.y228{bottom:596.431187pt;}
.y17a{bottom:598.721187pt;}
.y229{bottom:599.352520pt;}
.ya5{bottom:601.481987pt;}
.y117{bottom:601.489320pt;}
.y29c{bottom:601.955507pt;}
.y2db{bottom:604.484787pt;}
.y187{bottom:606.207293pt;}
.y22b{bottom:607.818520pt;}
.y255{bottom:608.883147pt;}
.y1b{bottom:609.118120pt;}
.y2e{bottom:609.146787pt;}
.yed{bottom:609.148253pt;}
.y58{bottom:609.148920pt;}
.y81{bottom:609.157053pt;}
.y260{bottom:611.554653pt;}
.y17f{bottom:612.217187pt;}
.y116{bottom:616.821853pt;}
.y2a7{bottom:618.254787pt;}
.y2da{bottom:618.484787pt;}
.y257{bottom:624.150147pt;}
.y2d{bottom:624.480787pt;}
.yec{bottom:624.482253pt;}
.y57{bottom:624.482920pt;}
.y80{bottom:624.489587pt;}
.y22c{bottom:626.485187pt;}
.y29d{bottom:626.892801pt;}
.y2a6{bottom:627.108120pt;}
.y261{bottom:628.355853pt;}
.y115{bottom:632.154387pt;}
.y2d9{bottom:632.484787pt;}
.y253{bottom:634.499787pt;}
.y2c{bottom:639.814787pt;}
.yeb{bottom:639.816253pt;}
.y56{bottom:639.816920pt;}
.y7f{bottom:639.822120pt;}
.y252{bottom:641.259267pt;}
.y17b{bottom:645.033187pt;}
.y22d{bottom:645.151853pt;}
.y262{bottom:646.145853pt;}
.y2d8{bottom:646.484787pt;}
.y29e{bottom:646.523629pt;}
.y189{bottom:647.144693pt;}
.y114{bottom:647.486920pt;}
.y1a{bottom:649.118120pt;}
.y2b{bottom:655.148787pt;}
.yea{bottom:655.150253pt;}
.y55{bottom:655.150920pt;}
.y7e{bottom:655.154653pt;}
.y188{bottom:655.544693pt;}
.y226{bottom:657.378787pt;}
.y259{bottom:659.349507pt;}
.y180{bottom:659.967453pt;}
.y2d7{bottom:660.484787pt;}
.y2a9{bottom:661.414787pt;}
.y22e{bottom:662.485187pt;}
.y113{bottom:662.819453pt;}
.y263{bottom:662.947053pt;}
.y29f{bottom:669.518060pt;}
.y2a8{bottom:670.268120pt;}
.y19{bottom:670.451453pt;}
.y2a{bottom:670.482787pt;}
.y54{bottom:670.483453pt;}
.y7d{bottom:670.487187pt;}
.y2d6{bottom:674.484787pt;}
.y112{bottom:678.151987pt;}
.y264{bottom:680.737053pt;}
.y22f{bottom:681.151853pt;}
.y29{bottom:685.816787pt;}
.y53{bottom:685.817453pt;}
.y7c{bottom:685.819720pt;}
.y2d5{bottom:688.484653pt;}
.y258{bottom:689.263587pt;}
.y18{bottom:691.784787pt;}
.y17c{bottom:692.633187pt;}
.y111{bottom:693.484520pt;}
.y265{bottom:697.538253pt;}
.y18b{bottom:697.673720pt;}
.y230{bottom:699.818520pt;}
.y2a0{bottom:701.033049pt;}
.y28{bottom:701.150787pt;}
.y7b{bottom:701.152253pt;}
.y2d4{bottom:702.484653pt;}
.y18a{bottom:706.073720pt;}
.y251{bottom:706.399587pt;}
.y181{bottom:706.634120pt;}
.y2aa{bottom:706.788120pt;}
.y225{bottom:709.252520pt;}
.y227{bottom:711.110787pt;}
.y2a1{bottom:712.929605pt;}
.y17{bottom:713.118120pt;}
.y266{bottom:715.328253pt;}
.y27{bottom:716.484787pt;}
.y231{bottom:718.485187pt;}
.y16{bottom:758.451453pt;}
.y26{bottom:857.700787pt;}
.h26{height:19.838578pt;}
.h15{height:20.563449pt;}
.h16{height:21.629950pt;}
.h29{height:22.165796pt;}
.h1e{height:22.890667pt;}
.h24{height:24.035200pt;}
.h27{height:25.706951pt;}
.h19{height:26.705778pt;}
.h18{height:27.629653pt;}
.h1b{height:28.257600pt;}
.h2b{height:29.782613pt;}
.h1a{height:31.397333pt;}
.h20{height:32.294400pt;}
.h28{height:32.653227pt;}
.h25{height:33.665566pt;}
.h17{height:34.537067pt;}
.h7{height:35.882667pt;}
.h4{height:36.229079pt;}
.h2{height:36.243556pt;}
.h2a{height:37.228267pt;}
.h1f{height:37.563200pt;}
.h2d{height:38.135873pt;}
.h14{height:39.470933pt;}
.ha{height:40.368000pt;}
.h10{height:40.370133pt;}
.hb{height:41.854167pt;}
.h5{height:41.966222pt;}
.h3{height:42.610667pt;}
.h2c{height:44.853333pt;}
.h2e{height:44.853867pt;}
.h6{height:49.338667pt;}
.h9{height:53.824000pt;}
.h13{height:53.896533pt;}
.hd{height:53.900267pt;}
.he{height:53.914133pt;}
.h12{height:53.916267pt;}
.hc{height:53.926933pt;}
.hf{height:53.941867pt;}
.h11{height:53.950400pt;}
.h21{height:69.496320pt;}
.h23{height:70.694400pt;}
.h8{height:71.765333pt;}
.h22{height:73.094400pt;}
.h1d{height:502.000000pt;}
.h1c{height:502.309693pt;}
.h0{height:793.847760pt;}
.h1{height:794.000000pt;}
.w1{width:502.000000pt;}
.w0{width:502.309693pt;}
.w2{width:793.847760pt;}
.w3{width:794.000000pt;}
.xa{left:-46.288720pt;}
.x0{left:0.000000pt;}
.x1{left:36.808347pt;}
.x1c{left:41.237013pt;}
.x3c{left:43.002787pt;}
.x84{left:48.001013pt;}
.x7{left:54.260747pt;}
.xb{left:56.083413pt;}
.x5{left:69.287213pt;}
.x1d{left:71.163147pt;}
.x9a{left:72.510203pt;}
.x7c{left:77.887013pt;}
.x10{left:79.021589pt;}
.x7d{left:83.778533pt;}
.x8{left:87.229547pt;}
.x99{left:88.349701pt;}
.x9c{left:100.176869pt;}
.x9b{left:102.723088pt;}
.x7a{left:107.662080pt;}
.x35{left:112.088293pt;}
.x79{left:112.995413pt;}
.x39{left:114.855413pt;}
.x62{left:115.938387pt;}
.x11{left:119.540016pt;}
.x38{left:122.823493pt;}
.x37{left:126.973933pt;}
.x36{left:130.194493pt;}
.x64{left:134.756253pt;}
.x93{left:137.565187pt;}
.x97{left:140.846877pt;}
.x12{left:142.709111pt;}
.x5c{left:146.192387pt;}
.x63{left:147.993720pt;}
.x7e{left:149.178533pt;}
.x98{left:152.743433pt;}
.x34{left:155.320613pt;}
.x74{left:156.288787pt;}
.x61{left:157.785320pt;}
.x5d{left:159.176920pt;}
.x1e{left:160.532427pt;}
.x5f{left:167.077587pt;}
.x33{left:168.182880pt;}
.x32{left:172.849547pt;}
.x5e{left:174.464920pt;}
.x4{left:176.734747pt;}
.x60{left:178.692920pt;}
.x87{left:181.033987pt;}
.xc{left:182.172213pt;}
.xf{left:187.477013pt;}
.x76{left:188.921813pt;}
.x6{left:194.110880pt;}
.x5b{left:196.524253pt;}
.x75{left:198.036787pt;}
.x1f{left:201.153109pt;}
.x7b{left:202.087280pt;}
.x31{left:203.015813pt;}
.x2c{left:208.795147pt;}
.x90{left:210.716040pt;}
.x30{left:212.050480pt;}
.x19{left:213.141319pt;}
.x78{left:221.782613pt;}
.x57{left:223.551987pt;}
.x2b{left:225.613013pt;}
.x86{left:227.381813pt;}
.x3{left:231.769280pt;}
.x45{left:233.218120pt;}
.x18{left:238.538999pt;}
.x3a{left:240.621947pt;}
.x8f{left:241.815507pt;}
.x20{left:243.648896pt;}
.x2f{left:246.938480pt;}
.x3d{left:249.385320pt;}
.x80{left:255.010040pt;}
.x2e{left:258.567813pt;}
.x9{left:264.797213pt;}
.x40{left:266.551720pt;}
.x96{left:270.849113pt;}
.x54{left:272.218920pt;}
.x21{left:273.706411pt;}
.x22{left:282.182571pt;}
.x13{left:283.891177pt;}
.x41{left:286.551720pt;}
.x23{left:290.658731pt;}
.x52{left:294.385320pt;}
.x92{left:296.287933pt;}
.x24{left:299.134891pt;}
.x47{left:300.051720pt;}
.x81{left:302.237360pt;}
.xd{left:303.233147pt;}
.x14{left:308.227387pt;}
.x6d{left:314.242253pt;}
.x6a{left:315.495853pt;}
.x2d{left:317.163413pt;}
.x67{left:318.406253pt;}
.x25{left:320.299829pt;}
.x26{left:328.513163pt;}
.xe{left:333.795280pt;}
.x95{left:336.124076pt;}
.x88{left:339.601853pt;}
.x51{left:342.885320pt;}
.x7f{left:346.060133pt;}
.x9d{left:347.510917pt;}
.x77{left:353.341547pt;}
.x2{left:354.643147pt;}
.x55{left:356.718920pt;}
.x94{left:359.955147pt;}
.x27{left:361.265472pt;}
.x15{left:365.428941pt;}
.x82{left:367.192880pt;}
.x28{left:369.478805pt;}
.x56{left:377.218120pt;}
.x8e{left:383.951613pt;}
.x16{left:389.148535pt;}
.x53{left:397.218920pt;}
.x44{left:403.051720pt;}
.x1a{left:405.031787pt;}
.x29{left:408.185781pt;}
.x48{left:410.551720pt;}
.x6e{left:412.016653pt;}
.x65{left:412.954120pt;}
.x85{left:415.788613pt;}
.x59{left:417.991187pt;}
.x49{left:418.885320pt;}
.x68{left:420.375853pt;}
.x5a{left:425.419987pt;}
.x17{left:429.894060pt;}
.x83{left:431.521760pt;}
.x46{left:435.218120pt;}
.x1b{left:442.876055pt;}
.x4b{left:445.385320pt;}
.x2a{left:447.757621pt;}
.x8b{left:452.061213pt;}
.x3e{left:453.551720pt;}
.x50{left:459.551720pt;}
.x6c{left:465.237453pt;}
.x4a{left:466.385320pt;}
.x6b{left:472.360653pt;}
.x91{left:475.149907pt;}
.x73{left:479.708653pt;}
.x3f{left:487.551720pt;}
.x4c{left:503.551720pt;}
.x89{left:507.731027pt;}
.x72{left:520.213453pt;}
.x6f{left:528.263053pt;}
.x4e{left:535.885320pt;}
.x8a{left:546.010653pt;}
.x4d{left:558.218120pt;}
.x4f{left:563.885320pt;}
.x8d{left:571.505213pt;}
.x71{left:583.247853pt;}
.x58{left:585.006387pt;}
.x69{left:588.508653pt;}
.x8c{left:595.299720pt;}
.x42{left:614.551720pt;}
.x70{left:617.480653pt;}
.x43{left:624.218120pt;}
.x3b{left:758.451453pt;}
.x66{left:857.700787pt;}
}




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