
    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_cc22291c2ee8de212193393d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_dfa0c373b6afad8afe2f7e8e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_169ad669b246aed56eca8445.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.700684;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_a4003f9d71e7f7c23fed1162.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-83.520000px;}
.v8{vertical-align:-81.492480px;}
.v7{vertical-align:-77.760000px;}
.v3{vertical-align:-30.240000px;}
.v4{vertical-align:-27.360000px;}
.v9{vertical-align:-2.877120px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:30.196800px;}
.v2{vertical-align:33.120000px;}
.v1{vertical-align:38.859840px;}
.lsbf{letter-spacing:-3.346560px;}
.lse0{letter-spacing:-2.952000px;}
.lsd0{letter-spacing:-1.736640px;}
.ls50{letter-spacing:-1.640160px;}
.ls8f{letter-spacing:-1.512000px;}
.ls74{letter-spacing:-1.457280px;}
.ls66{letter-spacing:-1.440000px;}
.ls31{letter-spacing:-1.398960px;}
.lsaa{letter-spacing:-1.126080px;}
.ls2b{letter-spacing:-1.075680px;}
.lsab{letter-spacing:-1.059840px;}
.ls2d{letter-spacing:-1.013040px;}
.ls4e{letter-spacing:-1.008000px;}
.lsac{letter-spacing:-0.993600px;}
.ls2e{letter-spacing:-0.964800px;}
.ls8d{letter-spacing:-0.861120px;}
.ls3d{letter-spacing:-0.792000px;}
.lsba{letter-spacing:-0.758160px;}
.lsd{letter-spacing:-0.728640px;}
.ls57{letter-spacing:-0.720000px;}
.ls40{letter-spacing:-0.675360px;}
.ls5a{letter-spacing:-0.673920px;}
.ls41{letter-spacing:-0.657360px;}
.ls27{letter-spacing:-0.648000px;}
.ls51{letter-spacing:-0.597600px;}
.ls58{letter-spacing:-0.596160px;}
.lscf{letter-spacing:-0.576000px;}
.ls30{letter-spacing:-0.537840px;}
.ls75{letter-spacing:-0.478080px;}
.lsc{letter-spacing:-0.463680px;}
.ls5b{letter-spacing:-0.421200px;}
.ls69{letter-spacing:-0.418320px;}
.lse{letter-spacing:-0.397440px;}
.ls29{letter-spacing:-0.358560px;}
.ls2{letter-spacing:-0.336960px;}
.ls9{letter-spacing:-0.331200px;}
.lse1{letter-spacing:-0.292320px;}
.ls2c{letter-spacing:-0.289440px;}
.ls26{letter-spacing:-0.288000px;}
.lsee{letter-spacing:-0.272160px;}
.ls5{letter-spacing:-0.264960px;}
.ls2f{letter-spacing:-0.239040px;}
.ls3c{letter-spacing:-0.216000px;}
.ls59{letter-spacing:-0.168480px;}
.ls4d{letter-spacing:-0.144000px;}
.ls8e{letter-spacing:-0.132480px;}
.lsb9{letter-spacing:-0.084240px;}
.ls5c{letter-spacing:-0.072000px;}
.ls2a{letter-spacing:-0.059760px;}
.ls1{letter-spacing:0.000000px;}
.ls54{letter-spacing:0.006624px;}
.lsde{letter-spacing:0.036000px;}
.ls4f{letter-spacing:0.048240px;}
.ls23{letter-spacing:0.053280px;}
.ls5d{letter-spacing:0.059760px;}
.ls15{letter-spacing:0.072000px;}
.ls6f{letter-spacing:0.079200px;}
.lsbb{letter-spacing:0.084240px;}
.ls28{letter-spacing:0.119520px;}
.ls4{letter-spacing:0.132480px;}
.ls13{letter-spacing:0.144000px;}
.lsf6{letter-spacing:0.150480px;}
.ls24{letter-spacing:0.159840px;}
.lsf5{letter-spacing:0.174240px;}
.ls1a{letter-spacing:0.179280px;}
.ls1f{letter-spacing:0.180000px;}
.lsdf{letter-spacing:0.198000px;}
.lsce{letter-spacing:0.205920px;}
.lsf4{letter-spacing:0.215136px;}
.ls60{letter-spacing:0.216000px;}
.lsbe{letter-spacing:0.225360px;}
.ls65{letter-spacing:0.233064px;}
.ls25{letter-spacing:0.239040px;}
.ls5e{letter-spacing:0.241200px;}
.lsb{letter-spacing:0.264960px;}
.ls3f{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.331200px;}
.ls3{letter-spacing:0.336960px;}
.ls1d{letter-spacing:0.358560px;}
.ls11{letter-spacing:0.360000px;}
.ls4c{letter-spacing:0.385920px;}
.lse8{letter-spacing:0.417312px;}
.ls77{letter-spacing:0.424800px;}
.ls8c{letter-spacing:0.432000px;}
.ls1e{letter-spacing:0.460080px;}
.lsdc{letter-spacing:0.470304px;}
.ls17{letter-spacing:0.504000px;}
.ls3e{letter-spacing:0.576000px;}
.ls7d{letter-spacing:0.609408px;}
.ls4a{letter-spacing:0.613440px;}
.lsa9{letter-spacing:0.629280px;}
.ls46{letter-spacing:0.720000px;}
.ls42{letter-spacing:0.727200px;}
.ls6b{letter-spacing:0.728640px;}
.ls22{letter-spacing:0.773280px;}
.ls67{letter-spacing:0.836640px;}
.lsc1{letter-spacing:0.864000px;}
.ls1b{letter-spacing:0.896400px;}
.ls64{letter-spacing:0.916560px;}
.ls68{letter-spacing:1.075680px;}
.lsd9{letter-spacing:1.212192px;}
.lsb5{letter-spacing:1.263600px;}
.lsc5{letter-spacing:1.265184px;}
.lsd8{letter-spacing:1.338048px;}
.lsa0{letter-spacing:1.417536px;}
.ls9f{letter-spacing:1.430784px;}
.lsb6{letter-spacing:1.432080px;}
.lsaf{letter-spacing:1.437408px;}
.ls6e{letter-spacing:1.440000px;}
.lsd5{letter-spacing:1.450656px;}
.lsae{letter-spacing:1.457280px;}
.lsb7{letter-spacing:1.499472px;}
.ls3b{letter-spacing:1.613520px;}
.ls76{letter-spacing:1.974816px;}
.lse7{letter-spacing:2.020320px;}
.lsbc{letter-spacing:2.056320px;}
.ls6{letter-spacing:2.086560px;}
.ls73{letter-spacing:2.099520px;}
.lsc4{letter-spacing:2.139552px;}
.ls12{letter-spacing:2.160000px;}
.lse6{letter-spacing:2.185920px;}
.ls37{letter-spacing:2.301120px;}
.ls56{letter-spacing:2.330640px;}
.ls55{letter-spacing:2.340000px;}
.lsf1{letter-spacing:2.363760px;}
.ls8a{letter-spacing:2.381184px;}
.lsf{letter-spacing:2.695680px;}
.lsa7{letter-spacing:2.848320px;}
.ls49{letter-spacing:2.880000px;}
.ls8b{letter-spacing:2.887200px;}
.ls95{letter-spacing:2.914560px;}
.lsa6{letter-spacing:2.934432px;}
.ls85{letter-spacing:2.941056px;}
.lsb0{letter-spacing:2.977920px;}
.ls4b{letter-spacing:2.988000px;}
.ls19{letter-spacing:3.384000px;}
.lsd7{letter-spacing:3.570336px;}
.ls94{letter-spacing:3.576960px;}
.ls93{letter-spacing:3.583584px;}
.ls83{letter-spacing:3.596832px;}
.ls90{letter-spacing:3.600000px;}
.lsad{letter-spacing:3.603456px;}
.lsbd{letter-spacing:3.607200px;}
.ls84{letter-spacing:3.610080px;}
.lse4{letter-spacing:3.815424px;}
.lsc3{letter-spacing:4.252608px;}
.ls80{letter-spacing:4.305600px;}
.ls7f{letter-spacing:4.312224px;}
.lsb2{letter-spacing:4.320000px;}
.lsec{letter-spacing:4.371840px;}
.lsb8{letter-spacing:4.482000px;}
.ls20{letter-spacing:4.500000px;}
.lsd4{letter-spacing:5.014368px;}
.lsc2{letter-spacing:5.020992px;}
.ls53{letter-spacing:5.032800px;}
.ls7e{letter-spacing:5.034240px;}
.ls52{letter-spacing:5.040000px;}
.lse3{letter-spacing:5.080608px;}
.lsef{letter-spacing:5.087232px;}
.lse5{letter-spacing:5.107104px;}
.lsc9{letter-spacing:5.220000px;}
.lsd6{letter-spacing:5.663520px;}
.ls45{letter-spacing:5.760000px;}
.ls6c{letter-spacing:5.762880px;}
.ls21{letter-spacing:5.916240px;}
.ls63{letter-spacing:5.993280px;}
.lsf3{letter-spacing:6.359040px;}
.ls99{letter-spacing:6.458400px;}
.lsa3{letter-spacing:6.471648px;}
.ls16{letter-spacing:6.480000px;}
.ls7{letter-spacing:6.491520px;}
.ls1c{letter-spacing:6.633360px;}
.lsca{letter-spacing:6.794712px;}
.ls6a{letter-spacing:7.107552px;}
.ls3a{letter-spacing:7.200000px;}
.ls8{letter-spacing:7.220160px;}
.ls39{letter-spacing:7.560000px;}
.ls0{letter-spacing:7.750080px;}
.lse9{letter-spacing:7.809696px;}
.lsd3{letter-spacing:7.829568px;}
.ls87{letter-spacing:7.882560px;}
.ls86{letter-spacing:7.909056px;}
.ls34{letter-spacing:7.920000px;}
.lsb3{letter-spacing:7.927200px;}
.lsa2{letter-spacing:7.948800px;}
.lsb4{letter-spacing:8.424000px;}
.ls48{letter-spacing:8.640000px;}
.lsa1{letter-spacing:8.776800px;}
.lsdb{letter-spacing:9.273600px;}
.ls9a{letter-spacing:9.339840px;}
.ls82{letter-spacing:9.353088px;}
.ls14{letter-spacing:9.360000px;}
.ls81{letter-spacing:9.419328px;}
.ls72{letter-spacing:10.068480px;}
.ls44{letter-spacing:10.080000px;}
.lsc6{letter-spacing:10.737504px;}
.ls7c{letter-spacing:10.783872px;}
.ls97{letter-spacing:10.797120px;}
.ls18{letter-spacing:10.800000px;}
.ls98{letter-spacing:10.810368px;}
.ls7b{letter-spacing:10.830240px;}
.ls35{letter-spacing:11.520000px;}
.ls62{letter-spacing:11.525760px;}
.ls96{letter-spacing:12.194784px;}
.ls6d{letter-spacing:12.240000px;}
.ls89{letter-spacing:12.254400px;}
.ls5f{letter-spacing:12.960000px;}
.lsed{letter-spacing:12.983040px;}
.lsb1{letter-spacing:13.680000px;}
.ls92{letter-spacing:13.711680px;}
.lsda{letter-spacing:14.327712px;}
.lsf0{letter-spacing:14.374080px;}
.ls36{letter-spacing:14.400000px;}
.lsc7{letter-spacing:15.036480px;}
.lsc8{letter-spacing:15.043104px;}
.lsd2{letter-spacing:15.102720px;}
.ls32{letter-spacing:15.120000px;}
.lsa8{letter-spacing:15.142464px;}
.ls47{letter-spacing:15.840000px;}
.lsa5{letter-spacing:16.560000px;}
.ls7a{letter-spacing:17.964288px;}
.ls38{letter-spacing:18.000000px;}
.lsf2{letter-spacing:18.007200px;}
.lseb{letter-spacing:18.010656px;}
.lsea{letter-spacing:18.017280px;}
.ls33{letter-spacing:18.720000px;}
.lse2{letter-spacing:18.745920px;}
.ls88{letter-spacing:19.408320px;}
.ls78{letter-spacing:19.440000px;}
.ls9e{letter-spacing:19.467936px;}
.ls9b{letter-spacing:20.136960px;}
.ls9c{letter-spacing:20.156832px;}
.ls79{letter-spacing:20.160000px;}
.ls9d{letter-spacing:20.196576px;}
.ls10{letter-spacing:21.228480px;}
.ls91{letter-spacing:23.040000px;}
.lscc{letter-spacing:24.480000px;}
.lscb{letter-spacing:25.200000px;}
.lsa4{letter-spacing:26.640000px;}
.ls70{letter-spacing:30.240000px;}
.lsdd{letter-spacing:30.271680px;}
.ls43{letter-spacing:30.960000px;}
.ls71{letter-spacing:35.280000px;}
.ls61{letter-spacing:44.640000px;}
.lsc0{letter-spacing:194.400000px;}
.lsd1{letter-spacing:195.793920px;}
.lscd{letter-spacing:237.600000px;}
.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;}
}
.ws20{word-spacing:-21.396960px;}
.ws127{word-spacing:-20.975760px;}
.wsa7{word-spacing:-20.386080px;}
.ws128{word-spacing:-20.301840px;}
.ws64{word-spacing:-18.576000px;}
.ws66{word-spacing:-18.288000px;}
.ws22{word-spacing:-18.144000px;}
.ws23{word-spacing:-18.000000px;}
.wsa8{word-spacing:-17.928000px;}
.ws8f{word-spacing:-17.856000px;}
.wsbd{word-spacing:-17.784000px;}
.ws21{word-spacing:-17.712000px;}
.ws126{word-spacing:-17.280000px;}
.ws63{word-spacing:-17.208000px;}
.wse8{word-spacing:-16.891200px;}
.wsc{word-spacing:-16.824960px;}
.ws0{word-spacing:-16.692480px;}
.ws1{word-spacing:-16.560000px;}
.wse7{word-spacing:-16.427520px;}
.ws125{word-spacing:-16.295040px;}
.wsb{word-spacing:-16.228800px;}
.wsd{word-spacing:-16.162560px;}
.wsbf{word-spacing:-16.015680px;}
.wse5{word-spacing:-15.963840px;}
.wse6{word-spacing:-15.831360px;}
.wsbe{word-spacing:-15.776640px;}
.ws118{word-spacing:-15.566400px;}
.ws117{word-spacing:-15.433920px;}
.ws2d{word-spacing:-15.298560px;}
.ws10b{word-spacing:-15.235200px;}
.ws30{word-spacing:-15.179040px;}
.ws149{word-spacing:-15.102720px;}
.ws2c{word-spacing:-15.059520px;}
.ws140{word-spacing:-15.048000px;}
.ws130{word-spacing:-14.999760px;}
.ws28{word-spacing:-14.940000px;}
.ws26{word-spacing:-14.880240px;}
.ws2b{word-spacing:-14.700960px;}
.ws31{word-spacing:-14.581440px;}
.wsc0{word-spacing:-14.521680px;}
.ws131{word-spacing:-14.461920px;}
.ws92{word-spacing:-14.342400px;}
.ws67{word-spacing:-14.282640px;}
.ws25{word-spacing:-13.505760px;}
.ws8e{word-spacing:-12.445920px;}
.wsa9{word-spacing:-12.301200px;}
.ws90{word-spacing:-12.108240px;}
.ws2f{word-spacing:-11.770560px;}
.ws132{word-spacing:-11.593440px;}
.ws93{word-spacing:-11.384640px;}
.ws2a{word-spacing:-11.095200px;}
.ws29{word-spacing:-11.046960px;}
.ws2e{word-spacing:-10.661040px;}
.ws65{word-spacing:-10.440000px;}
.ws91{word-spacing:-10.419840px;}
.ws27{word-spacing:-9.720000px;}
.ws141{word-spacing:-9.145440px;}
.ws24{word-spacing:-8.786880px;}
.ws14a{word-spacing:-8.514720px;}
.ws15b{word-spacing:-4.320000px;}
.ws158{word-spacing:-3.600000px;}
.ws150{word-spacing:-3.312000px;}
.ws109{word-spacing:-2.296800px;}
.ws15a{word-spacing:-1.440000px;}
.ws159{word-spacing:-1.152000px;}
.ws5b{word-spacing:-0.896400px;}
.ws7c{word-spacing:-0.861120px;}
.ws137{word-spacing:-0.728640px;}
.ws55{word-spacing:-0.657360px;}
.ws8{word-spacing:-0.505440px;}
.wsee{word-spacing:-0.432000px;}
.ws5c{word-spacing:-0.358560px;}
.ws33{word-spacing:-0.336960px;}
.wsf8{word-spacing:-0.331200px;}
.ws10a{word-spacing:-0.233640px;}
.ws4f{word-spacing:-0.179280px;}
.ws7{word-spacing:-0.168480px;}
.ws7a{word-spacing:-0.144000px;}
.ws9{word-spacing:-0.132480px;}
.ws50{word-spacing:-0.119520px;}
.ws3a{word-spacing:-0.072000px;}
.ws5e{word-spacing:-0.059760px;}
.wsa4{word-spacing:-0.048240px;}
.ws2{word-spacing:0.000000px;}
.ws4a{word-spacing:0.059760px;}
.wsf3{word-spacing:0.072000px;}
.ws151{word-spacing:0.119520px;}
.ws62{word-spacing:0.132480px;}
.wsaf{word-spacing:0.168480px;}
.wse3{word-spacing:0.179280px;}
.ws74{word-spacing:0.216000px;}
.ws4b{word-spacing:0.239040px;}
.wsa{word-spacing:0.264960px;}
.ws44{word-spacing:0.288000px;}
.ws4d{word-spacing:0.289440px;}
.wsde{word-spacing:0.331200px;}
.wsb4{word-spacing:0.358560px;}
.wsfa{word-spacing:0.397440px;}
.wsd0{word-spacing:0.418320px;}
.ws12e{word-spacing:0.421200px;}
.ws17{word-spacing:0.463680px;}
.wse4{word-spacing:0.478080px;}
.ws152{word-spacing:0.482400px;}
.ws49{word-spacing:0.537840px;}
.ws95{word-spacing:0.576000px;}
.ws7e{word-spacing:0.596160px;}
.ws11f{word-spacing:0.648000px;}
.ws87{word-spacing:0.675360px;}
.ws116{word-spacing:0.717120px;}
.ws9b{word-spacing:0.720000px;}
.ws1a{word-spacing:0.728640px;}
.ws12d{word-spacing:0.758160px;}
.ws113{word-spacing:0.776880px;}
.ws115{word-spacing:0.836640px;}
.wsfb{word-spacing:0.861120px;}
.wsd1{word-spacing:0.868320px;}
.wscf{word-spacing:0.964800px;}
.ws94{word-spacing:1.008000px;}
.ws58{word-spacing:1.013040px;}
.ws11a{word-spacing:1.059840px;}
.ws4c{word-spacing:1.075680px;}
.ws146{word-spacing:1.126080px;}
.ws138{word-spacing:1.192320px;}
.ws8a{word-spacing:1.254960px;}
.ws19{word-spacing:1.324800px;}
.ws89{word-spacing:1.434240px;}
.ws39{word-spacing:1.440000px;}
.wsda{word-spacing:1.457280px;}
.ws114{word-spacing:1.494000px;}
.ws107{word-spacing:1.512000px;}
.wsd2{word-spacing:1.591920px;}
.ws3d{word-spacing:1.728000px;}
.ws13f{word-spacing:1.736640px;}
.wsae{word-spacing:1.854720px;}
.wsc8{word-spacing:1.929600px;}
.wsbb{word-spacing:1.972080px;}
.ws10{word-spacing:2.053440px;}
.ws37{word-spacing:2.160000px;}
.ws11{word-spacing:2.185920px;}
.ws54{word-spacing:2.211120px;}
.ws157{word-spacing:2.358720px;}
.ws36{word-spacing:2.448000px;}
.wsbc{word-spacing:2.569680px;}
.wse9{word-spacing:2.583360px;}
.wsca{word-spacing:2.689200px;}
.ws4{word-spacing:2.695680px;}
.wsa0{word-spacing:2.736000px;}
.ws7d{word-spacing:2.782080px;}
.ws156{word-spacing:2.864160px;}
.ws84{word-spacing:2.880000px;}
.ws18{word-spacing:2.914560px;}
.ws8d{word-spacing:2.928240px;}
.ws3{word-spacing:3.032640px;}
.ws9c{word-spacing:3.168000px;}
.ws16{word-spacing:3.245760px;}
.wsc9{word-spacing:3.406320px;}
.ws10d{word-spacing:3.444480px;}
.ws6e{word-spacing:3.456000px;}
.ws121{word-spacing:3.510720px;}
.wsff{word-spacing:3.576960px;}
.ws6c{word-spacing:3.600000px;}
.ws112{word-spacing:3.643200px;}
.wsb8{word-spacing:3.645360px;}
.ws6d{word-spacing:3.888000px;}
.ws111{word-spacing:3.974400px;}
.wsb9{word-spacing:4.123440px;}
.wsdd{word-spacing:4.173120px;}
.ws13a{word-spacing:4.176000px;}
.wsba{word-spacing:4.302720px;}
.wse1{word-spacing:4.305600px;}
.ws3b{word-spacing:4.320000px;}
.ws48{word-spacing:4.362480px;}
.ws32{word-spacing:4.548960px;}
.ws38{word-spacing:4.608000px;}
.ws12f{word-spacing:4.840560px;}
.wsad{word-spacing:4.901760px;}
.ws136{word-spacing:4.968000px;}
.wsdb{word-spacing:5.034240px;}
.wsed{word-spacing:5.040000px;}
.ws5d{word-spacing:5.079600px;}
.wsaa{word-spacing:5.328000px;}
.ws53{word-spacing:5.557680px;}
.wsd4{word-spacing:5.630400px;}
.ws9d{word-spacing:5.760000px;}
.wsa1{word-spacing:5.762880px;}
.ws120{word-spacing:5.832000px;}
.ws52{word-spacing:5.976000px;}
.ws70{word-spacing:6.048000px;}
.ws4e{word-spacing:6.274800px;}
.ws77{word-spacing:6.336000px;}
.ws13{word-spacing:6.359040px;}
.wsa6{word-spacing:6.454080px;}
.ws3e{word-spacing:6.480000px;}
.ws1d{word-spacing:6.491520px;}
.wsa5{word-spacing:6.513840px;}
.ws8b{word-spacing:6.608880px;}
.ws45{word-spacing:6.768000px;}
.ws51{word-spacing:6.872400px;}
.ws14{word-spacing:6.888960px;}
.ws8c{word-spacing:7.051680px;}
.ws81{word-spacing:7.056000px;}
.ws15{word-spacing:7.087680px;}
.ws3f{word-spacing:7.128000px;}
.ws82{word-spacing:7.200000px;}
.ws12{word-spacing:7.220160px;}
.ws88{word-spacing:7.290720px;}
.ws83{word-spacing:7.488000px;}
.ws119{word-spacing:7.617600px;}
.ws101{word-spacing:7.816320px;}
.wsf1{word-spacing:7.920000px;}
.ws100{word-spacing:7.948800px;}
.ws108{word-spacing:8.007840px;}
.ws12c{word-spacing:8.087040px;}
.wsf2{word-spacing:8.208000px;}
.ws6{word-spacing:8.424000px;}
.ws11b{word-spacing:8.478720px;}
.wscb{word-spacing:8.485920px;}
.wsb3{word-spacing:8.496000px;}
.ws102{word-spacing:8.544960px;}
.wsfc{word-spacing:8.611200px;}
.ws40{word-spacing:8.640000px;}
.wscc{word-spacing:8.724960px;}
.ws5{word-spacing:8.760960px;}
.ws41{word-spacing:8.928000px;}
.ws145{word-spacing:9.008640px;}
.wsb6{word-spacing:9.203040px;}
.wse2{word-spacing:9.207360px;}
.wsfd{word-spacing:9.339840px;}
.ws10e{word-spacing:9.360000px;}
.wsb5{word-spacing:9.382320px;}
.ws14d{word-spacing:9.442080px;}
.wsb7{word-spacing:9.621360px;}
.ws78{word-spacing:9.648000px;}
.wsfe{word-spacing:9.737280px;}
.ws85{word-spacing:9.840960px;}
.wsdc{word-spacing:9.936000px;}
.ws123{word-spacing:10.068480px;}
.ws13e{word-spacing:10.080000px;}
.ws79{word-spacing:10.368000px;}
.ws56{word-spacing:10.564560px;}
.ws86{word-spacing:10.637280px;}
.wsdf{word-spacing:10.664640px;}
.wse0{word-spacing:10.797120px;}
.ws46{word-spacing:10.800000px;}
.ws5a{word-spacing:10.876320px;}
.ws47{word-spacing:11.088000px;}
.ws5f{word-spacing:11.288160px;}
.ws57{word-spacing:11.354400px;}
.ws13d{word-spacing:11.376000px;}
.ws1b{word-spacing:11.393280px;}
.ws73{word-spacing:11.520000px;}
.ws1c{word-spacing:11.525760px;}
.ws59{word-spacing:11.593440px;}
.ws75{word-spacing:11.808000px;}
.wsd5{word-spacing:12.096000px;}
.ws104{word-spacing:12.121920px;}
.wsf4{word-spacing:12.240000px;}
.ws103{word-spacing:12.254400px;}
.wsd3{word-spacing:12.310560px;}
.ws3c{word-spacing:12.528000px;}
.ws105{word-spacing:12.651840px;}
.ws60{word-spacing:12.788640px;}
.ws106{word-spacing:12.850560px;}
.wsc5{word-spacing:12.960000px;}
.ws122{word-spacing:12.983040px;}
.ws61{word-spacing:13.027680px;}
.ws12b{word-spacing:13.248000px;}
.ws12a{word-spacing:13.536000px;}
.ws98{word-spacing:13.579200px;}
.wsb2{word-spacing:13.680000px;}
.ws10f{word-spacing:13.711680px;}
.ws129{word-spacing:13.968000px;}
.ws139{word-spacing:14.241600px;}
.ws143{word-spacing:14.307840px;}
.ws144{word-spacing:14.374080px;}
.ws76{word-spacing:14.400000px;}
.ws110{word-spacing:14.440320px;}
.wsab{word-spacing:14.688000px;}
.wscd{word-spacing:14.940000px;}
.ws124{word-spacing:14.970240px;}
.ws1f{word-spacing:15.102720px;}
.ws69{word-spacing:15.120000px;}
.wsce{word-spacing:15.179040px;}
.ws68{word-spacing:15.408000px;}
.ws7b{word-spacing:15.698880px;}
.ws1e{word-spacing:15.831360px;}
.ws9e{word-spacing:15.840000px;}
.wsa2{word-spacing:15.896160px;}
.ws9f{word-spacing:16.128000px;}
.wsa3{word-spacing:16.374240px;}
.ws99{word-spacing:16.427520px;}
.wsc4{word-spacing:16.560000px;}
.ws142{word-spacing:17.156160px;}
.ws72{word-spacing:17.280000px;}
.ws9a{word-spacing:17.288640px;}
.ws71{word-spacing:17.568000px;}
.ws80{word-spacing:17.856000px;}
.wsf7{word-spacing:17.884800px;}
.ws7f{word-spacing:18.000000px;}
.wsf9{word-spacing:18.017280px;}
.ws135{word-spacing:18.288000px;}
.ws6a{word-spacing:18.720000px;}
.ws14c{word-spacing:18.745920px;}
.ws6b{word-spacing:19.008000px;}
.wsac{word-spacing:19.342080px;}
.wsef{word-spacing:19.440000px;}
.ws14b{word-spacing:19.474560px;}
.wsf0{word-spacing:19.728000px;}
.ws11c{word-spacing:20.136960px;}
.wsf6{word-spacing:20.160000px;}
.wsf5{word-spacing:20.448000px;}
.ws43{word-spacing:20.880000px;}
.ws42{word-spacing:21.168000px;}
.wsf{word-spacing:21.461760px;}
.wse{word-spacing:21.594240px;}
.wsc1{word-spacing:21.600000px;}
.ws153{word-spacing:21.888000px;}
.wsec{word-spacing:22.320000px;}
.wsea{word-spacing:22.536000px;}
.wseb{word-spacing:22.608000px;}
.wsc6{word-spacing:23.040000px;}
.ws10c{word-spacing:23.328000px;}
.ws13c{word-spacing:24.480000px;}
.ws13b{word-spacing:24.768000px;}
.ws11d{word-spacing:26.640000px;}
.ws11e{word-spacing:26.928000px;}
.ws34{word-spacing:27.216000px;}
.ws35{word-spacing:27.360000px;}
.ws134{word-spacing:27.953280px;}
.ws133{word-spacing:28.085760px;}
.wsd6{word-spacing:29.520000px;}
.wsd7{word-spacing:29.808000px;}
.ws147{word-spacing:30.139200px;}
.wsc3{word-spacing:30.240000px;}
.wsc2{word-spacing:30.528000px;}
.ws97{word-spacing:30.816000px;}
.ws6f{word-spacing:30.960000px;}
.ws148{word-spacing:31.000320px;}
.ws96{word-spacing:31.248000px;}
.ws14f{word-spacing:33.120000px;}
.ws14e{word-spacing:34.128000px;}
.ws154{word-spacing:34.560000px;}
.ws155{word-spacing:34.848000px;}
.wsd8{word-spacing:35.568000px;}
.wsd9{word-spacing:36.000000px;}
.wsb1{word-spacing:38.413440px;}
.wsb0{word-spacing:39.003120px;}
.wsc7{word-spacing:44.928000px;}
._8{margin-left:-11.989440px;}
._1b{margin-left:-8.064000px;}
._1a{margin-left:-6.782976px;}
._19{margin-left:-4.518792px;}
._e{margin-left:-2.907360px;}
._1{margin-left:-1.684800px;}
._0{width:1.238328px;}
._4{width:2.252160px;}
._5{width:3.579840px;}
._f{width:4.623048px;}
._6{width:5.644080px;}
._3{width:7.695360px;}
._b{width:9.576000px;}
._7{width:10.771344px;}
._9{width:12.398328px;}
._c{width:14.126400px;}
._10{width:15.408144px;}
._d{width:16.472160px;}
._15{width:18.074880px;}
._16{width:19.402776px;}
._2{width:20.753280px;}
._14{width:23.076216px;}
._17{width:26.856000px;}
._18{width:28.019520px;}
._a{width:30.600000px;}
._12{width:34.920000px;}
._13{width:36.000000px;}
._11{width:39.255840px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y25b{bottom:4.140000px;}
.y29d{bottom:4.320000px;}
.y25d{bottom:4.500000px;}
.y268{bottom:25.200000px;}
.y3c{bottom:57.786480px;}
.y1e{bottom:57.859920px;}
.y3b{bottom:77.940000px;}
.y1d{bottom:78.013440px;}
.y210{bottom:109.964700px;}
.ye8{bottom:109.968840px;}
.y1b9{bottom:109.970280px;}
.y63{bottom:109.974420px;}
.yce{bottom:109.980000px;}
.y1ed{bottom:110.340900px;}
.yaa{bottom:112.504500px;}
.y243{bottom:116.818560px;}
.y10a{bottom:116.820000px;}
.y198{bottom:117.900000px;}
.y20f{bottom:127.250280px;}
.ycd{bottom:127.254420px;}
.y1b8{bottom:127.255860px;}
.y62{bottom:127.260000px;}
.y3a{bottom:127.270260px;}
.y161{bottom:128.160000px;}
.y22d{bottom:129.054420px;}
.y27e{bottom:130.680000px;}
.y8a{bottom:134.100000px;}
.y197{bottom:135.900000px;}
.y1cc{bottom:136.800000px;}
.ya9{bottom:139.140000px;}
.y1c{bottom:142.448400px;}
.ycc{bottom:144.523260px;}
.y13e{bottom:144.528840px;}
.y61{bottom:144.534420px;}
.y20e{bottom:144.535860px;}
.ye7{bottom:144.540000px;}
.y263{bottom:145.440000px;}
.y89{bottom:146.885220px;}
.y1ee{bottom:149.400000px;}
.ya8{bottom:149.754420px;}
.y109{bottom:151.380000px;}
.y160{bottom:152.300880px;}
.y1b7{bottom:152.460000px;}
.y196{bottom:153.180000px;}
.y1cb{bottom:155.880000px;}
.y27d{bottom:159.660000px;}
.y60{bottom:161.808840px;}
.ye6{bottom:161.814420px;}
.y124{bottom:168.660000px;}
.y20d{bottom:169.740000px;}
.y195{bottom:170.280000px;}
.y262{bottom:170.640000px;}
.y1b6{bottom:171.360000px;}
.y1ec{bottom:172.875600px;}
.y88{bottom:173.700000px;}
.ya7{bottom:173.880000px;}
.y39{bottom:174.072960px;}
.y15f{bottom:174.077280px;}
.y1ca{bottom:174.780000px;}
.y5f{bottom:179.094420px;}
.y1b{bottom:179.161920px;}
.y292{bottom:180.360000px;}
.y194{bottom:180.714420px;}
.y211{bottom:181.080000px;}
.y1ba{bottom:183.420000px;}
.ya6{bottom:184.128840px;}
.y87{bottom:184.134420px;}
.ye5{bottom:185.940000px;}
.y1cd{bottom:186.840000px;}
.y242{bottom:187.020000px;}
.y27c{bottom:188.640000px;}
.y22c{bottom:190.260000px;}
.y1eb{bottom:194.652000px;}
.y15e{bottom:196.035840px;}
.ye4{bottom:196.368120px;}
.y10b{bottom:197.280000px;}
.y244{bottom:198.360000px;}
.y261{bottom:199.620000px;}
.y20c{bottom:201.299760px;}
.ya5{bottom:201.414420px;}
.y22e{bottom:202.320000px;}
.y5e{bottom:203.220000px;}
.y193{bottom:204.840000px;}
.y86{bottom:208.260000px;}
.y5d{bottom:213.474420px;}
.y125{bottom:214.380000px;}
.ycb{bottom:216.006660px;}
.y1a{bottom:216.057600px;}
.y199{bottom:216.180000px;}
.y1ea{bottom:216.428400px;}
.y15d{bottom:217.812240px;}
.y85{bottom:218.694420px;}
.y176{bottom:219.780000px;}
.y38{bottom:220.684140px;}
.y20b{bottom:223.076160px;}
.ya4{bottom:225.540000px;}
.y260{bottom:228.600000px;}
.y291{bottom:230.040000px;}
.y1b5{bottom:231.120000px;}
.y241{bottom:234.000000px;}
.y108{bottom:234.551520px;}
.ya3{bottom:235.974420px;}
.y5c{bottom:237.600000px;}
.y1e9{bottom:238.204800px;}
.y27b{bottom:238.320000px;}
.y15c{bottom:239.588640px;}
.y13d{bottom:242.461440px;}
.y22b{bottom:242.643600px;}
.y84{bottom:242.820000px;}
.yca{bottom:243.900000px;}
.y20a{bottom:245.034720px;}
.y1c9{bottom:247.320000px;}
.y5b{bottom:248.034420px;}
.ye3{bottom:248.040000px;}
.y175{bottom:250.740000px;}
.y19{bottom:252.771120px;}
.y83{bottom:253.254420px;}
.yc9{bottom:254.868840px;}
.y107{bottom:256.327920px;}
.y123{bottom:257.040000px;}
.y25f{bottom:257.580000px;}
.y1e8{bottom:259.981200px;}
.ya2{bottom:260.100000px;}
.y15b{bottom:261.365040px;}
.y1b4{bottom:262.260000px;}
.y13c{bottom:264.420000px;}
.ye2{bottom:265.308120px;}
.y192{bottom:266.400000px;}
.y209{bottom:266.811120px;}
.y37{bottom:267.486840px;}
.y82{bottom:270.540000px;}
.yab{bottom:271.440000px;}
.yc8{bottom:272.154420px;}
.y5a{bottom:272.160000px;}
.y1c8{bottom:278.100000px;}
.y106{bottom:278.104320px;}
.y290{bottom:279.720000px;}
.y240{bottom:280.080000px;}
.y174{bottom:281.880000px;}
.y1e7{bottom:281.939760px;}
.y59{bottom:282.593700px;}
.y15a{bottom:283.141440px;}
.y22a{bottom:283.860000px;}
.y25e{bottom:286.560000px;}
.y122{bottom:288.000000px;}
.y8b{bottom:288.540000px;}
.y208{bottom:288.587520px;}
.y18{bottom:289.666800px;}
.y1b3{bottom:293.220000px;}
.yc7{bottom:296.280000px;}
.y191{bottom:297.360000px;}
.y1e6{bottom:303.716160px;}
.y159{bottom:305.100000px;}
.y58{bottom:306.540000px;}
.ycf{bottom:307.620000px;}
.y28f{bottom:308.700000px;}
.y13b{bottom:308.880000px;}
.y1c7{bottom:309.240000px;}
.y207{bottom:310.363920px;}
.y173{bottom:312.840000px;}
.y36{bottom:314.289540px;}
.y229{bottom:314.820000px;}
.y105{bottom:315.011520px;}
.y25c{bottom:315.360000px;}
.y57{bottom:316.959120px;}
.ye9{bottom:317.880000px;}
.y121{bottom:318.960000px;}
.y81{bottom:323.460000px;}
.y1b2{bottom:324.360000px;}
.y2aa{bottom:324.720000px;}
.y1e5{bottom:325.492560px;}
.y23f{bottom:326.160000px;}
.y17{bottom:326.380320px;}
.y190{bottom:328.500000px;}
.y206{bottom:332.140320px;}
.y56{bottom:334.244700px;}
.ya1{bottom:336.603600px;}
.y104{bottom:336.787920px;}
.y27a{bottom:337.500000px;}
.y13a{bottom:340.020000px;}
.y1c6{bottom:340.200000px;}
.ye1{bottom:342.723600px;}
.y172{bottom:343.980000px;}
.y25a{bottom:344.340000px;}
.y2a9{bottom:345.600000px;}
.y228{bottom:345.780000px;}
.y1e4{bottom:347.268960px;}
.y158{bottom:349.560000px;}
.y120{bottom:350.100000px;}
.y55{bottom:351.530280px;}
.y205{bottom:354.098880px;}
.y80{bottom:354.420000px;}
.y1b1{bottom:355.320000px;}
.yc6{bottom:358.020000px;}
.ya0{bottom:358.380000px;}
.y103{bottom:358.564320px;}
.y18f{bottom:359.460000px;}
.y35{bottom:360.900720px;}
.y16{bottom:363.276000px;}
.ye0{bottom:364.500000px;}
.y2a8{bottom:366.300000px;}
.y279{bottom:366.480000px;}
.y54{bottom:368.815860px;}
.y1e3{bottom:369.227520px;}
.y139{bottom:370.980000px;}
.y1c5{bottom:371.340000px;}
.y23e{bottom:372.240000px;}
.y171{bottom:374.940000px;}
.y204{bottom:375.875280px;}
.y227{bottom:376.920000px;}
.y157{bottom:380.700000px;}
.y7f{bottom:385.560000px;}
.y11f{bottom:385.598880px;}
.y2a7{bottom:387.000000px;}
.y28e{bottom:387.180000px;}
.yc5{bottom:389.160000px;}
.y18e{bottom:390.600000px;}
.y1e2{bottom:391.003920px;}
.y259{bottom:391.680000px;}
.y53{bottom:394.020000px;}
.y102{bottom:395.475120px;}
.y203{bottom:397.651680px;}
.y15{bottom:400.171680px;}
.y138{bottom:402.120000px;}
.y1c4{bottom:402.300000px;}
.y9f{bottom:403.020000px;}
.y23d{bottom:403.200000px;}
.y11e{bottom:404.493840px;}
.y64{bottom:405.180000px;}
.y1b0{bottom:407.340000px;}
.y2a6{bottom:407.700000px;}
.y34{bottom:407.703420px;}
.y226{bottom:407.880000px;}
.y156{bottom:411.660000px;}
.y1e1{bottom:412.780320px;}
.y170{bottom:414.720540px;}
.ydf{bottom:415.260000px;}
.y278{bottom:416.160000px;}
.y7e{bottom:416.520000px;}
.y101{bottom:417.251520px;}
.y202{bottom:419.428080px;}
.yc4{bottom:420.120000px;}
.y18d{bottom:421.560000px;}
.y258{bottom:423.000000px;}
.y11d{bottom:423.570960px;}
.y2a5{bottom:428.400000px;}
.y1af{bottom:430.431120px;}
.y137{bottom:433.080000px;}
.y1c3{bottom:433.440000px;}
.y9e{bottom:434.160000px;}
.y23c{bottom:434.340000px;}
.y1e0{bottom:434.556720px;}
.y28d{bottom:436.860000px;}
.y14{bottom:437.249520px;}
.y225{bottom:439.020000px;}
.y100{bottom:439.027920px;}
.y201{bottom:441.386640px;}
.y16f{bottom:442.435500px;}
.y11c{bottom:442.465920px;}
.y155{bottom:442.800000px;}
.y52{bottom:443.160000px;}
.yde{bottom:446.220000px;}
.y2a4{bottom:449.100000px;}
.yc3{bottom:451.260000px;}
.y1ae{bottom:452.207520px;}
.y18c{bottom:452.700000px;}
.y257{bottom:454.140000px;}
.y33{bottom:454.506120px;}
.y7d{bottom:454.872240px;}
.y1df{bottom:456.333120px;}
.yff{bottom:460.804320px;}
.y11b{bottom:461.360880px;}
.y200{bottom:463.163040px;}
.y136{bottom:464.220000px;}
.y1c2{bottom:464.400000px;}
.y9d{bottom:465.120000px;}
.y23b{bottom:465.300000px;}
.y277{bottom:465.840000px;}
.y2a3{bottom:469.800000px;}
.y224{bottom:469.980000px;}
.y16e{bottom:470.340000px;}
.y154{bottom:473.760000px;}
.y1ad{bottom:473.983920px;}
.y13{bottom:474.145200px;}
.y51{bottom:474.300000px;}
.y7c{bottom:476.648640px;}
.ydd{bottom:477.360000px;}
.y1de{bottom:478.291680px;}
.y11a{bottom:480.438000px;}
.yc2{bottom:482.220000px;}
.y18b{bottom:483.660000px;}
.y1ff{bottom:484.939440px;}
.y256{bottom:485.100000px;}
.y2a2{bottom:490.500000px;}
.y135{bottom:495.180000px;}
.y1c1{bottom:495.540000px;}
.y1ac{bottom:495.760320px;}
.y9c{bottom:496.260000px;}
.y23a{bottom:496.440000px;}
.yfe{bottom:497.712240px;}
.y7b{bottom:498.425040px;}
.y119{bottom:499.332960px;}
.y1dd{bottom:500.068080px;}
.y32{bottom:501.117300px;}
.y223{bottom:501.120000px;}
.y153{bottom:504.900000px;}
.y50{bottom:505.260000px;}
.y1fe{bottom:506.715840px;}
.y12{bottom:510.858720px;}
.yc1{bottom:513.360000px;}
.y18a{bottom:514.800000px;}
.y276{bottom:515.520000px;}
.y255{bottom:516.240000px;}
.y1ab{bottom:517.718880px;}
.y118{bottom:518.410080px;}
.y16d{bottom:519.300000px;}
.yfd{bottom:519.488640px;}
.y7a{bottom:520.383600px;}
.y1dc{bottom:521.844480px;}
.y134{bottom:526.320000px;}
.y1c0{bottom:526.500000px;}
.y9b{bottom:527.220000px;}
.y239{bottom:527.400000px;}
.y1fd{bottom:528.492240px;}
.ydc{bottom:529.380000px;}
.y222{bottom:532.080000px;}
.y11{bottom:532.635120px;}
.y152{bottom:535.860000px;}
.y4f{bottom:536.400000px;}
.y117{bottom:537.305040px;}
.y1aa{bottom:539.495280px;}
.y2a1{bottom:540.180000px;}
.yfc{bottom:541.265040px;}
.y79{bottom:542.160000px;}
.y1db{bottom:543.620880px;}
.y275{bottom:544.500000px;}
.y189{bottom:545.760000px;}
.y31{bottom:547.920000px;}
.y16c{bottom:550.440000px;}
.y1fc{bottom:550.450800px;}
.y254{bottom:555.835500px;}
.y116{bottom:556.200000px;}
.y133{bottom:557.280000px;}
.y1bf{bottom:557.640000px;}
.y9a{bottom:558.360000px;}
.yc0{bottom:559.085040px;}
.ydb{bottom:560.340000px;}
.y1a9{bottom:561.271680px;}
.y221{bottom:563.220000px;}
.yfb{bottom:563.223600px;}
.y28c{bottom:565.200000px;}
.y1da{bottom:565.579440px;}
.y151{bottom:567.000000px;}
.y4e{bottom:567.360000px;}
.y2a0{bottom:569.160000px;}
.y10{bottom:569.530800px;}
.y1fb{bottom:572.227200px;}
.y274{bottom:573.300000px;}
.y188{bottom:576.900000px;}
.y78{bottom:579.420000px;}
.y16b{bottom:581.400000px;}
.y1a8{bottom:583.048080px;}
.y253{bottom:583.740000px;}
.yfa{bottom:585.000000px;}
.ybf{bottom:586.800000px;}
.y1d9{bottom:587.355840px;}
.y132{bottom:588.420000px;}
.y1be{bottom:588.600000px;}
.y238{bottom:589.500000px;}
.yda{bottom:591.480000px;}
.y30{bottom:592.040160px;}
.y1fa{bottom:594.003600px;}
.y220{bottom:594.180000px;}
.y4d{bottom:598.500000px;}
.y115{bottom:600.840000px;}
.y273{bottom:602.280000px;}
.y77{bottom:603.360000px;}
.y99{bottom:604.260000px;}
.y1a7{bottom:604.824480px;}
.yf{bottom:606.426480px;}
.y1d8{bottom:609.132240px;}
.y16a{bottom:612.540000px;}
.y150{bottom:613.080000px;}
.y2f{bottom:613.998720px;}
.y28b{bottom:614.700000px;}
.y1f9{bottom:615.780000px;}
.y29f{bottom:618.840000px;}
.y131{bottom:619.380000px;}
.y1bd{bottom:619.740000px;}
.yd9{bottom:622.440000px;}
.y187{bottom:622.800000px;}
.y21f{bottom:625.320000px;}
.y76{bottom:626.590800px;}
.y1a6{bottom:626.783040px;}
.ybe{bottom:628.740000px;}
.y4c{bottom:629.460000px;}
.y1d7{bottom:630.908640px;}
.y272{bottom:631.260000px;}
.y114{bottom:631.980000px;}
.y252{bottom:632.880000px;}
.y98{bottom:635.400000px;}
.yf9{bottom:635.580000px;}
.y237{bottom:641.340000px;}
.ye{bottom:643.140000px;}
.y169{bottom:643.500000px;}
.y14f{bottom:644.040000px;}
.y1f8{bottom:645.480000px;}
.y75{bottom:648.367200px;}
.y1a5{bottom:648.559440px;}
.y130{bottom:650.520000px;}
.y1bc{bottom:650.700000px;}
.y2e{bottom:650.712240px;}
.y1d6{bottom:652.685040px;}
.yd8{bottom:653.580000px;}
.y186{bottom:653.940000px;}
.y21e{bottom:656.280000px;}
.y271{bottom:660.240000px;}
.y4b{bottom:660.600000px;}
.y113{bottom:662.940000px;}
.y28a{bottom:664.380000px;}
.y97{bottom:666.360000px;}
.yf8{bottom:666.540000px;}
.ybd{bottom:666.920880px;}
.y29e{bottom:668.520000px;}
.y74{bottom:670.143600px;}
.y1a4{bottom:670.335840px;}
.y2d{bottom:672.488640px;}
.y168{bottom:674.640000px;}
.y1d5{bottom:674.643600px;}
.y14e{bottom:675.180000px;}
.y1f7{bottom:676.440000px;}
.y251{bottom:678.780000px;}
.yd{bottom:680.061600px;}
.y12f{bottom:681.480000px;}
.y1bb{bottom:681.840000px;}
.yd7{bottom:684.540000px;}
.y185{bottom:684.900000px;}
.y236{bottom:687.240000px;}
.y21d{bottom:687.420000px;}
.ybc{bottom:688.697280px;}
.y270{bottom:689.220000px;}
.y4a{bottom:691.560000px;}
.y73{bottom:691.920000px;}
.y1a3{bottom:692.112240px;}
.y112{bottom:694.080000px;}
.y2c{bottom:694.447200px;}
.y1d4{bottom:696.420000px;}
.y96{bottom:697.500000px;}
.yf7{bottom:697.680000px;}
.y167{bottom:705.600000px;}
.y14d{bottom:706.140000px;}
.y1f6{bottom:707.580000px;}
.y250{bottom:709.920000px;}
.ybb{bottom:710.473680px;}
.y289{bottom:714.060000px;}
.y1a2{bottom:714.070800px;}
.yd6{bottom:715.680000px;}
.y184{bottom:716.040000px;}
.y2b{bottom:716.223600px;}
.yc{bottom:716.775120px;}
.y26f{bottom:718.020000px;}
.y21c{bottom:718.380000px;}
.y12e{bottom:719.835120px;}
.y49{bottom:722.700000px;}
.y111{bottom:725.040000px;}
.y1d3{bottom:725.940000px;}
.y29c{bottom:726.300000px;}
.y95{bottom:728.460000px;}
.yf6{bottom:728.640000px;}
.yba{bottom:732.432240px;}
.y1a1{bottom:735.847200px;}
.y72{bottom:736.560000px;}
.y166{bottom:736.740000px;}
.y14c{bottom:737.280000px;}
.y2a{bottom:738.000000px;}
.y1f5{bottom:738.540000px;}
.y24f{bottom:740.880000px;}
.y12d{bottom:741.611520px;}
.y288{bottom:743.040000px;}
.yd5{bottom:746.640000px;}
.y26e{bottom:747.000000px;}
.y235{bottom:749.340000px;}
.y21b{bottom:749.520000px;}
.y48{bottom:753.660000px;}
.yb{bottom:753.670800px;}
.yb9{bottom:754.208640px;}
.y183{bottom:754.212240px;}
.y110{bottom:756.180000px;}
.y1d2{bottom:757.080000px;}
.y1a0{bottom:757.623600px;}
.yf5{bottom:759.780000px;}
.y12c{bottom:763.387920px;}
.y71{bottom:767.700000px;}
.y14b{bottom:768.240000px;}
.y1f4{bottom:769.680000px;}
.y24e{bottom:772.020000px;}
.y29{bottom:774.540000px;}
.y29b{bottom:775.980000px;}
.yb8{bottom:775.985040px;}
.y182{bottom:776.170800px;}
.yd4{bottom:777.780000px;}
.y19f{bottom:779.400000px;}
.y21a{bottom:780.480000px;}
.y47{bottom:784.800000px;}
.y12b{bottom:785.164320px;}
.y10f{bottom:787.140000px;}
.y1d1{bottom:788.040000px;}
.ya{bottom:790.384320px;}
.yf4{bottom:790.740000px;}
.y287{bottom:792.720000px;}
.y26d{bottom:796.680000px;}
.yb7{bottom:797.761440px;}
.y181{bottom:797.947200px;}
.y70{bottom:798.660000px;}
.y165{bottom:798.840000px;}
.y14a{bottom:799.380000px;}
.y1f3{bottom:800.640000px;}
.y24d{bottom:802.980000px;}
.y94{bottom:805.680000px;}
.yd3{bottom:808.740000px;}
.y19e{bottom:809.100000px;}
.y234{bottom:811.440000px;}
.y219{bottom:811.620000px;}
.y28{bottom:811.646640px;}
.y46{bottom:815.760000px;}
.y10e{bottom:818.280000px;}
.y1d0{bottom:819.180000px;}
.yb6{bottom:819.720000px;}
.y180{bottom:819.723600px;}
.y286{bottom:821.520000px;}
.yf3{bottom:821.880000px;}
.y12a{bottom:822.072240px;}
.y29a{bottom:825.660000px;}
.y9{bottom:827.280000px;}
.y6f{bottom:829.800000px;}
.y149{bottom:830.340000px;}
.y1f2{bottom:831.780000px;}
.y24c{bottom:834.120000px;}
.y93{bottom:836.640000px;}
.yd2{bottom:839.880000px;}
.y19d{bottom:840.060000px;}
.y17f{bottom:841.500000px;}
.y218{bottom:842.580000px;}
.y129{bottom:843.848640px;}
.y26c{bottom:846.360000px;}
.y45{bottom:846.900000px;}
.y27{bottom:848.542320px;}
.y10d{bottom:849.240000px;}
.y1cf{bottom:850.140000px;}
.y285{bottom:850.500000px;}
.yf2{bottom:852.840000px;}
.y299{bottom:854.640000px;}
.y6e{bottom:860.760000px;}
.y164{bottom:860.940000px;}
.y148{bottom:861.480000px;}
.y1f1{bottom:862.740000px;}
.y8{bottom:864.008640px;}
.yb5{bottom:864.180000px;}
.y24b{bottom:865.080000px;}
.y128{bottom:865.625040px;}
.y92{bottom:867.780000px;}
.y26{bottom:870.318720px;}
.yd1{bottom:870.840000px;}
.y19c{bottom:871.200000px;}
.y233{bottom:873.540000px;}
.y217{bottom:873.720000px;}
.y44{bottom:877.860000px;}
.y284{bottom:879.480000px;}
.y10c{bottom:880.380000px;}
.yf1{bottom:883.980000px;}
.y17e{bottom:886.140000px;}
.y127{bottom:887.583600px;}
.y6d{bottom:891.900000px;}
.y1f0{bottom:893.880000px;}
.yb4{bottom:895.320000px;}
.y26b{bottom:896.040000px;}
.y24a{bottom:896.220000px;}
.y91{bottom:898.740000px;}
.y147{bottom:900.212400px;}
.y7{bottom:900.904320px;}
.y1ce{bottom:901.653120px;}
.yd0{bottom:901.980000px;}
.y19b{bottom:902.160000px;}
.y298{bottom:904.320000px;}
.y216{bottom:904.680000px;}
.y25{bottom:907.032240px;}
.y283{bottom:908.460000px;}
.y126{bottom:909.360000px;}
.yf0{bottom:914.940000px;}
.y17d{bottom:917.280000px;}
.y43{bottom:917.645040px;}
.y6c{bottom:922.860000px;}
.y163{bottom:923.040000px;}
.y146{bottom:923.429520px;}
.y1ef{bottom:924.840000px;}
.yb3{bottom:926.280000px;}
.y249{bottom:927.180000px;}
.y24{bottom:928.990800px;}
.y90{bottom:929.880000px;}
.y297{bottom:933.120000px;}
.y232{bottom:935.640000px;}
.y215{bottom:935.820000px;}
.y6{bottom:937.800000px;}
.y42{bottom:945.360000px;}
.y145{bottom:945.388080px;}
.y26a{bottom:945.720000px;}
.yef{bottom:946.080000px;}
.y23{bottom:950.767200px;}
.y6b{bottom:954.000000px;}
.y19a{bottom:954.180000px;}
.y17c{bottom:955.455840px;}
.yb2{bottom:957.420000px;}
.y282{bottom:958.140000px;}
.y248{bottom:958.320000px;}
.y214{bottom:966.780000px;}
.y144{bottom:967.164480px;}
.y8f{bottom:968.048640px;}
.y22{bottom:972.543600px;}
.y231{bottom:973.991520px;}
.y269{bottom:974.520000px;}
.yee{bottom:977.040000px;}
.y17b{bottom:977.232240px;}
.y296{bottom:982.800000px;}
.y5{bottom:984.429360px;}
.y6a{bottom:984.960000px;}
.y162{bottom:985.140000px;}
.y213{bottom:987.117120px;}
.y281{bottom:987.120000px;}
.yb1{bottom:988.380000px;}
.y143{bottom:988.940880px;}
.y41{bottom:989.280000px;}
.y8e{bottom:989.825040px;}
.y21{bottom:994.320000px;}
.y230{bottom:995.767920px;}
.y17a{bottom:999.190800px;}
.yed{bottom:1008.180000px;}
.y212{bottom:1009.458720px;}
.y142{bottom:1010.717280px;}
.y8d{bottom:1011.783600px;}
.y280{bottom:1015.920000px;}
.y69{bottom:1016.100000px;}
.y22f{bottom:1017.544320px;}
.yb0{bottom:1019.520000px;}
.y247{bottom:1020.420000px;}
.y4{bottom:1020.610440px;}
.y179{bottom:1020.967200px;}
.y267{bottom:1024.200000px;}
.y20{bottom:1030.860000px;}
.y295{bottom:1032.480000px;}
.y141{bottom:1032.493680px;}
.y8c{bottom:1033.560000px;}
.y40{bottom:1034.820540px;}
.y178{bottom:1042.743600px;}
.y27f{bottom:1044.900000px;}
.y68{bottom:1047.060000px;}
.yaf{bottom:1050.480000px;}
.y246{bottom:1051.380000px;}
.yec{bottom:1052.639280px;}
.y140{bottom:1054.452240px;}
.y3{bottom:1056.960000px;}
.y3f{bottom:1062.725040px;}
.y177{bottom:1064.520000px;}
.y1f{bottom:1067.588640px;}
.y266{bottom:1073.880000px;}
.yeb{bottom:1074.780000px;}
.y13f{bottom:1076.228640px;}
.y67{bottom:1078.200000px;}
.yae{bottom:1081.620000px;}
.y294{bottom:1082.160000px;}
.y3e{bottom:1090.440000px;}
.y245{bottom:1091.160000px;}
.yea{bottom:1098.005040px;}
.y265{bottom:1102.860000px;}
.y2{bottom:1104.484320px;}
.y66{bottom:1109.160000px;}
.y293{bottom:1111.140000px;}
.yad{bottom:1119.781440px;}
.y264{bottom:1131.840000px;}
.y3d{bottom:1134.360000px;}
.y65{bottom:1140.300000px;}
.y1{bottom:1141.380000px;}
.yac{bottom:1141.740000px;}
.h29{height:20.520000px;}
.h25{height:20.700000px;}
.h26{height:20.701500px;}
.hb{height:28.411172px;}
.h20{height:28.873125px;}
.hd{height:38.158594px;}
.h14{height:40.985156px;}
.h21{height:41.318438px;}
.h27{height:41.398500px;}
.h28{height:41.400000px;}
.h5{height:45.798750px;}
.hc{height:58.651172px;}
.h1e{height:58.673492px;}
.he{height:58.695812px;}
.h16{height:58.698692px;}
.h15{height:58.718132px;}
.h4{height:65.010937px;}
.h23{height:65.538034px;}
.h2{height:66.757500px;}
.h17{height:70.643902px;}
.h9{height:70.664062px;}
.h1f{height:71.020676px;}
.h1b{height:71.069636px;}
.h1c{height:71.095556px;}
.h13{height:71.141636px;}
.h1d{height:71.161796px;}
.h19{height:71.164676px;}
.h10{height:71.176196px;}
.h1a{height:71.179076px;}
.hf{height:71.181956px;}
.h11{height:71.190596px;}
.h12{height:71.219396px;}
.h18{height:71.228036px;}
.h24{height:72.562500px;}
.h22{height:80.390042px;}
.ha{height:80.464922px;}
.h3{height:84.898125px;}
.h7{height:87.859687px;}
.h8{height:93.281715px;}
.h6{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:352.980000px;}
.w3{width:369.900000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:3.960000px;}
.x15{left:123.660000px;}
.x1{left:127.620000px;}
.xc{left:148.684320px;}
.xb{left:153.370800px;}
.x11{left:154.620000px;}
.x10{left:159.660000px;}
.xe{left:180.720000px;}
.x12{left:191.520000px;}
.xf{left:207.718920px;}
.x14{left:233.820000px;}
.x2{left:286.920000px;}
.x5{left:294.660000px;}
.x9{left:340.580880px;}
.xa{left:355.320000px;}
.x6{left:365.586480px;}
.x7{left:367.938000px;}
.x3{left:369.537840px;}
.x4{left:402.823440px;}
.x8{left:446.415840px;}
.x17{left:476.820000px;}
.x13{left:748.620000px;}
.xd{left:757.082160px;}
@media print{
.v6{vertical-align:-74.240000pt;}
.v8{vertical-align:-72.437760pt;}
.v7{vertical-align:-69.120000pt;}
.v3{vertical-align:-26.880000pt;}
.v4{vertical-align:-24.320000pt;}
.v9{vertical-align:-2.557440pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:26.841600pt;}
.v2{vertical-align:29.440000pt;}
.v1{vertical-align:34.542080pt;}
.lsbf{letter-spacing:-2.974720pt;}
.lse0{letter-spacing:-2.624000pt;}
.lsd0{letter-spacing:-1.543680pt;}
.ls50{letter-spacing:-1.457920pt;}
.ls8f{letter-spacing:-1.344000pt;}
.ls74{letter-spacing:-1.295360pt;}
.ls66{letter-spacing:-1.280000pt;}
.ls31{letter-spacing:-1.243520pt;}
.lsaa{letter-spacing:-1.000960pt;}
.ls2b{letter-spacing:-0.956160pt;}
.lsab{letter-spacing:-0.942080pt;}
.ls2d{letter-spacing:-0.900480pt;}
.ls4e{letter-spacing:-0.896000pt;}
.lsac{letter-spacing:-0.883200pt;}
.ls2e{letter-spacing:-0.857600pt;}
.ls8d{letter-spacing:-0.765440pt;}
.ls3d{letter-spacing:-0.704000pt;}
.lsba{letter-spacing:-0.673920pt;}
.lsd{letter-spacing:-0.647680pt;}
.ls57{letter-spacing:-0.640000pt;}
.ls40{letter-spacing:-0.600320pt;}
.ls5a{letter-spacing:-0.599040pt;}
.ls41{letter-spacing:-0.584320pt;}
.ls27{letter-spacing:-0.576000pt;}
.ls51{letter-spacing:-0.531200pt;}
.ls58{letter-spacing:-0.529920pt;}
.lscf{letter-spacing:-0.512000pt;}
.ls30{letter-spacing:-0.478080pt;}
.ls75{letter-spacing:-0.424960pt;}
.lsc{letter-spacing:-0.412160pt;}
.ls5b{letter-spacing:-0.374400pt;}
.ls69{letter-spacing:-0.371840pt;}
.lse{letter-spacing:-0.353280pt;}
.ls29{letter-spacing:-0.318720pt;}
.ls2{letter-spacing:-0.299520pt;}
.ls9{letter-spacing:-0.294400pt;}
.lse1{letter-spacing:-0.259840pt;}
.ls2c{letter-spacing:-0.257280pt;}
.ls26{letter-spacing:-0.256000pt;}
.lsee{letter-spacing:-0.241920pt;}
.ls5{letter-spacing:-0.235520pt;}
.ls2f{letter-spacing:-0.212480pt;}
.ls3c{letter-spacing:-0.192000pt;}
.ls59{letter-spacing:-0.149760pt;}
.ls4d{letter-spacing:-0.128000pt;}
.ls8e{letter-spacing:-0.117760pt;}
.lsb9{letter-spacing:-0.074880pt;}
.ls5c{letter-spacing:-0.064000pt;}
.ls2a{letter-spacing:-0.053120pt;}
.ls1{letter-spacing:0.000000pt;}
.ls54{letter-spacing:0.005888pt;}
.lsde{letter-spacing:0.032000pt;}
.ls4f{letter-spacing:0.042880pt;}
.ls23{letter-spacing:0.047360pt;}
.ls5d{letter-spacing:0.053120pt;}
.ls15{letter-spacing:0.064000pt;}
.ls6f{letter-spacing:0.070400pt;}
.lsbb{letter-spacing:0.074880pt;}
.ls28{letter-spacing:0.106240pt;}
.ls4{letter-spacing:0.117760pt;}
.ls13{letter-spacing:0.128000pt;}
.lsf6{letter-spacing:0.133760pt;}
.ls24{letter-spacing:0.142080pt;}
.lsf5{letter-spacing:0.154880pt;}
.ls1a{letter-spacing:0.159360pt;}
.ls1f{letter-spacing:0.160000pt;}
.lsdf{letter-spacing:0.176000pt;}
.lsce{letter-spacing:0.183040pt;}
.lsf4{letter-spacing:0.191232pt;}
.ls60{letter-spacing:0.192000pt;}
.lsbe{letter-spacing:0.200320pt;}
.ls65{letter-spacing:0.207168pt;}
.ls25{letter-spacing:0.212480pt;}
.ls5e{letter-spacing:0.214400pt;}
.lsb{letter-spacing:0.235520pt;}
.ls3f{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.294400pt;}
.ls3{letter-spacing:0.299520pt;}
.ls1d{letter-spacing:0.318720pt;}
.ls11{letter-spacing:0.320000pt;}
.ls4c{letter-spacing:0.343040pt;}
.lse8{letter-spacing:0.370944pt;}
.ls77{letter-spacing:0.377600pt;}
.ls8c{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:0.408960pt;}
.lsdc{letter-spacing:0.418048pt;}
.ls17{letter-spacing:0.448000pt;}
.ls3e{letter-spacing:0.512000pt;}
.ls7d{letter-spacing:0.541696pt;}
.ls4a{letter-spacing:0.545280pt;}
.lsa9{letter-spacing:0.559360pt;}
.ls46{letter-spacing:0.640000pt;}
.ls42{letter-spacing:0.646400pt;}
.ls6b{letter-spacing:0.647680pt;}
.ls22{letter-spacing:0.687360pt;}
.ls67{letter-spacing:0.743680pt;}
.lsc1{letter-spacing:0.768000pt;}
.ls1b{letter-spacing:0.796800pt;}
.ls64{letter-spacing:0.814720pt;}
.ls68{letter-spacing:0.956160pt;}
.lsd9{letter-spacing:1.077504pt;}
.lsb5{letter-spacing:1.123200pt;}
.lsc5{letter-spacing:1.124608pt;}
.lsd8{letter-spacing:1.189376pt;}
.lsa0{letter-spacing:1.260032pt;}
.ls9f{letter-spacing:1.271808pt;}
.lsb6{letter-spacing:1.272960pt;}
.lsaf{letter-spacing:1.277696pt;}
.ls6e{letter-spacing:1.280000pt;}
.lsd5{letter-spacing:1.289472pt;}
.lsae{letter-spacing:1.295360pt;}
.lsb7{letter-spacing:1.332864pt;}
.ls3b{letter-spacing:1.434240pt;}
.ls76{letter-spacing:1.755392pt;}
.lse7{letter-spacing:1.795840pt;}
.lsbc{letter-spacing:1.827840pt;}
.ls6{letter-spacing:1.854720pt;}
.ls73{letter-spacing:1.866240pt;}
.lsc4{letter-spacing:1.901824pt;}
.ls12{letter-spacing:1.920000pt;}
.lse6{letter-spacing:1.943040pt;}
.ls37{letter-spacing:2.045440pt;}
.ls56{letter-spacing:2.071680pt;}
.ls55{letter-spacing:2.080000pt;}
.lsf1{letter-spacing:2.101120pt;}
.ls8a{letter-spacing:2.116608pt;}
.lsf{letter-spacing:2.396160pt;}
.lsa7{letter-spacing:2.531840pt;}
.ls49{letter-spacing:2.560000pt;}
.ls8b{letter-spacing:2.566400pt;}
.ls95{letter-spacing:2.590720pt;}
.lsa6{letter-spacing:2.608384pt;}
.ls85{letter-spacing:2.614272pt;}
.lsb0{letter-spacing:2.647040pt;}
.ls4b{letter-spacing:2.656000pt;}
.ls19{letter-spacing:3.008000pt;}
.lsd7{letter-spacing:3.173632pt;}
.ls94{letter-spacing:3.179520pt;}
.ls93{letter-spacing:3.185408pt;}
.ls83{letter-spacing:3.197184pt;}
.ls90{letter-spacing:3.200000pt;}
.lsad{letter-spacing:3.203072pt;}
.lsbd{letter-spacing:3.206400pt;}
.ls84{letter-spacing:3.208960pt;}
.lse4{letter-spacing:3.391488pt;}
.lsc3{letter-spacing:3.780096pt;}
.ls80{letter-spacing:3.827200pt;}
.ls7f{letter-spacing:3.833088pt;}
.lsb2{letter-spacing:3.840000pt;}
.lsec{letter-spacing:3.886080pt;}
.lsb8{letter-spacing:3.984000pt;}
.ls20{letter-spacing:4.000000pt;}
.lsd4{letter-spacing:4.457216pt;}
.lsc2{letter-spacing:4.463104pt;}
.ls53{letter-spacing:4.473600pt;}
.ls7e{letter-spacing:4.474880pt;}
.ls52{letter-spacing:4.480000pt;}
.lse3{letter-spacing:4.516096pt;}
.lsef{letter-spacing:4.521984pt;}
.lse5{letter-spacing:4.539648pt;}
.lsc9{letter-spacing:4.640000pt;}
.lsd6{letter-spacing:5.034240pt;}
.ls45{letter-spacing:5.120000pt;}
.ls6c{letter-spacing:5.122560pt;}
.ls21{letter-spacing:5.258880pt;}
.ls63{letter-spacing:5.327360pt;}
.lsf3{letter-spacing:5.652480pt;}
.ls99{letter-spacing:5.740800pt;}
.lsa3{letter-spacing:5.752576pt;}
.ls16{letter-spacing:5.760000pt;}
.ls7{letter-spacing:5.770240pt;}
.ls1c{letter-spacing:5.896320pt;}
.lsca{letter-spacing:6.039744pt;}
.ls6a{letter-spacing:6.317824pt;}
.ls3a{letter-spacing:6.400000pt;}
.ls8{letter-spacing:6.417920pt;}
.ls39{letter-spacing:6.720000pt;}
.ls0{letter-spacing:6.888960pt;}
.lse9{letter-spacing:6.941952pt;}
.lsd3{letter-spacing:6.959616pt;}
.ls87{letter-spacing:7.006720pt;}
.ls86{letter-spacing:7.030272pt;}
.ls34{letter-spacing:7.040000pt;}
.lsb3{letter-spacing:7.046400pt;}
.lsa2{letter-spacing:7.065600pt;}
.lsb4{letter-spacing:7.488000pt;}
.ls48{letter-spacing:7.680000pt;}
.lsa1{letter-spacing:7.801600pt;}
.lsdb{letter-spacing:8.243200pt;}
.ls9a{letter-spacing:8.302080pt;}
.ls82{letter-spacing:8.313856pt;}
.ls14{letter-spacing:8.320000pt;}
.ls81{letter-spacing:8.372736pt;}
.ls72{letter-spacing:8.949760pt;}
.ls44{letter-spacing:8.960000pt;}
.lsc6{letter-spacing:9.544448pt;}
.ls7c{letter-spacing:9.585664pt;}
.ls97{letter-spacing:9.597440pt;}
.ls18{letter-spacing:9.600000pt;}
.ls98{letter-spacing:9.609216pt;}
.ls7b{letter-spacing:9.626880pt;}
.ls35{letter-spacing:10.240000pt;}
.ls62{letter-spacing:10.245120pt;}
.ls96{letter-spacing:10.839808pt;}
.ls6d{letter-spacing:10.880000pt;}
.ls89{letter-spacing:10.892800pt;}
.ls5f{letter-spacing:11.520000pt;}
.lsed{letter-spacing:11.540480pt;}
.lsb1{letter-spacing:12.160000pt;}
.ls92{letter-spacing:12.188160pt;}
.lsda{letter-spacing:12.735744pt;}
.lsf0{letter-spacing:12.776960pt;}
.ls36{letter-spacing:12.800000pt;}
.lsc7{letter-spacing:13.365760pt;}
.lsc8{letter-spacing:13.371648pt;}
.lsd2{letter-spacing:13.424640pt;}
.ls32{letter-spacing:13.440000pt;}
.lsa8{letter-spacing:13.459968pt;}
.ls47{letter-spacing:14.080000pt;}
.lsa5{letter-spacing:14.720000pt;}
.ls7a{letter-spacing:15.968256pt;}
.ls38{letter-spacing:16.000000pt;}
.lsf2{letter-spacing:16.006400pt;}
.lseb{letter-spacing:16.009472pt;}
.lsea{letter-spacing:16.015360pt;}
.ls33{letter-spacing:16.640000pt;}
.lse2{letter-spacing:16.663040pt;}
.ls88{letter-spacing:17.251840pt;}
.ls78{letter-spacing:17.280000pt;}
.ls9e{letter-spacing:17.304832pt;}
.ls9b{letter-spacing:17.899520pt;}
.ls9c{letter-spacing:17.917184pt;}
.ls79{letter-spacing:17.920000pt;}
.ls9d{letter-spacing:17.952512pt;}
.ls10{letter-spacing:18.869760pt;}
.ls91{letter-spacing:20.480000pt;}
.lscc{letter-spacing:21.760000pt;}
.lscb{letter-spacing:22.400000pt;}
.lsa4{letter-spacing:23.680000pt;}
.ls70{letter-spacing:26.880000pt;}
.lsdd{letter-spacing:26.908160pt;}
.ls43{letter-spacing:27.520000pt;}
.ls71{letter-spacing:31.360000pt;}
.ls61{letter-spacing:39.680000pt;}
.lsc0{letter-spacing:172.800000pt;}
.lsd1{letter-spacing:174.039040pt;}
.lscd{letter-spacing:211.200000pt;}
.ws20{word-spacing:-19.019520pt;}
.ws127{word-spacing:-18.645120pt;}
.wsa7{word-spacing:-18.120960pt;}
.ws128{word-spacing:-18.046080pt;}
.ws64{word-spacing:-16.512000pt;}
.ws66{word-spacing:-16.256000pt;}
.ws22{word-spacing:-16.128000pt;}
.ws23{word-spacing:-16.000000pt;}
.wsa8{word-spacing:-15.936000pt;}
.ws8f{word-spacing:-15.872000pt;}
.wsbd{word-spacing:-15.808000pt;}
.ws21{word-spacing:-15.744000pt;}
.ws126{word-spacing:-15.360000pt;}
.ws63{word-spacing:-15.296000pt;}
.wse8{word-spacing:-15.014400pt;}
.wsc{word-spacing:-14.955520pt;}
.ws0{word-spacing:-14.837760pt;}
.ws1{word-spacing:-14.720000pt;}
.wse7{word-spacing:-14.602240pt;}
.ws125{word-spacing:-14.484480pt;}
.wsb{word-spacing:-14.425600pt;}
.wsd{word-spacing:-14.366720pt;}
.wsbf{word-spacing:-14.236160pt;}
.wse5{word-spacing:-14.190080pt;}
.wse6{word-spacing:-14.072320pt;}
.wsbe{word-spacing:-14.023680pt;}
.ws118{word-spacing:-13.836800pt;}
.ws117{word-spacing:-13.719040pt;}
.ws2d{word-spacing:-13.598720pt;}
.ws10b{word-spacing:-13.542400pt;}
.ws30{word-spacing:-13.492480pt;}
.ws149{word-spacing:-13.424640pt;}
.ws2c{word-spacing:-13.386240pt;}
.ws140{word-spacing:-13.376000pt;}
.ws130{word-spacing:-13.333120pt;}
.ws28{word-spacing:-13.280000pt;}
.ws26{word-spacing:-13.226880pt;}
.ws2b{word-spacing:-13.067520pt;}
.ws31{word-spacing:-12.961280pt;}
.wsc0{word-spacing:-12.908160pt;}
.ws131{word-spacing:-12.855040pt;}
.ws92{word-spacing:-12.748800pt;}
.ws67{word-spacing:-12.695680pt;}
.ws25{word-spacing:-12.005120pt;}
.ws8e{word-spacing:-11.063040pt;}
.wsa9{word-spacing:-10.934400pt;}
.ws90{word-spacing:-10.762880pt;}
.ws2f{word-spacing:-10.462720pt;}
.ws132{word-spacing:-10.305280pt;}
.ws93{word-spacing:-10.119680pt;}
.ws2a{word-spacing:-9.862400pt;}
.ws29{word-spacing:-9.819520pt;}
.ws2e{word-spacing:-9.476480pt;}
.ws65{word-spacing:-9.280000pt;}
.ws91{word-spacing:-9.262080pt;}
.ws27{word-spacing:-8.640000pt;}
.ws141{word-spacing:-8.129280pt;}
.ws24{word-spacing:-7.810560pt;}
.ws14a{word-spacing:-7.568640pt;}
.ws15b{word-spacing:-3.840000pt;}
.ws158{word-spacing:-3.200000pt;}
.ws150{word-spacing:-2.944000pt;}
.ws109{word-spacing:-2.041600pt;}
.ws15a{word-spacing:-1.280000pt;}
.ws159{word-spacing:-1.024000pt;}
.ws5b{word-spacing:-0.796800pt;}
.ws7c{word-spacing:-0.765440pt;}
.ws137{word-spacing:-0.647680pt;}
.ws55{word-spacing:-0.584320pt;}
.ws8{word-spacing:-0.449280pt;}
.wsee{word-spacing:-0.384000pt;}
.ws5c{word-spacing:-0.318720pt;}
.ws33{word-spacing:-0.299520pt;}
.wsf8{word-spacing:-0.294400pt;}
.ws10a{word-spacing:-0.207680pt;}
.ws4f{word-spacing:-0.159360pt;}
.ws7{word-spacing:-0.149760pt;}
.ws7a{word-spacing:-0.128000pt;}
.ws9{word-spacing:-0.117760pt;}
.ws50{word-spacing:-0.106240pt;}
.ws3a{word-spacing:-0.064000pt;}
.ws5e{word-spacing:-0.053120pt;}
.wsa4{word-spacing:-0.042880pt;}
.ws2{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.053120pt;}
.wsf3{word-spacing:0.064000pt;}
.ws151{word-spacing:0.106240pt;}
.ws62{word-spacing:0.117760pt;}
.wsaf{word-spacing:0.149760pt;}
.wse3{word-spacing:0.159360pt;}
.ws74{word-spacing:0.192000pt;}
.ws4b{word-spacing:0.212480pt;}
.wsa{word-spacing:0.235520pt;}
.ws44{word-spacing:0.256000pt;}
.ws4d{word-spacing:0.257280pt;}
.wsde{word-spacing:0.294400pt;}
.wsb4{word-spacing:0.318720pt;}
.wsfa{word-spacing:0.353280pt;}
.wsd0{word-spacing:0.371840pt;}
.ws12e{word-spacing:0.374400pt;}
.ws17{word-spacing:0.412160pt;}
.wse4{word-spacing:0.424960pt;}
.ws152{word-spacing:0.428800pt;}
.ws49{word-spacing:0.478080pt;}
.ws95{word-spacing:0.512000pt;}
.ws7e{word-spacing:0.529920pt;}
.ws11f{word-spacing:0.576000pt;}
.ws87{word-spacing:0.600320pt;}
.ws116{word-spacing:0.637440pt;}
.ws9b{word-spacing:0.640000pt;}
.ws1a{word-spacing:0.647680pt;}
.ws12d{word-spacing:0.673920pt;}
.ws113{word-spacing:0.690560pt;}
.ws115{word-spacing:0.743680pt;}
.wsfb{word-spacing:0.765440pt;}
.wsd1{word-spacing:0.771840pt;}
.wscf{word-spacing:0.857600pt;}
.ws94{word-spacing:0.896000pt;}
.ws58{word-spacing:0.900480pt;}
.ws11a{word-spacing:0.942080pt;}
.ws4c{word-spacing:0.956160pt;}
.ws146{word-spacing:1.000960pt;}
.ws138{word-spacing:1.059840pt;}
.ws8a{word-spacing:1.115520pt;}
.ws19{word-spacing:1.177600pt;}
.ws89{word-spacing:1.274880pt;}
.ws39{word-spacing:1.280000pt;}
.wsda{word-spacing:1.295360pt;}
.ws114{word-spacing:1.328000pt;}
.ws107{word-spacing:1.344000pt;}
.wsd2{word-spacing:1.415040pt;}
.ws3d{word-spacing:1.536000pt;}
.ws13f{word-spacing:1.543680pt;}
.wsae{word-spacing:1.648640pt;}
.wsc8{word-spacing:1.715200pt;}
.wsbb{word-spacing:1.752960pt;}
.ws10{word-spacing:1.825280pt;}
.ws37{word-spacing:1.920000pt;}
.ws11{word-spacing:1.943040pt;}
.ws54{word-spacing:1.965440pt;}
.ws157{word-spacing:2.096640pt;}
.ws36{word-spacing:2.176000pt;}
.wsbc{word-spacing:2.284160pt;}
.wse9{word-spacing:2.296320pt;}
.wsca{word-spacing:2.390400pt;}
.ws4{word-spacing:2.396160pt;}
.wsa0{word-spacing:2.432000pt;}
.ws7d{word-spacing:2.472960pt;}
.ws156{word-spacing:2.545920pt;}
.ws84{word-spacing:2.560000pt;}
.ws18{word-spacing:2.590720pt;}
.ws8d{word-spacing:2.602880pt;}
.ws3{word-spacing:2.695680pt;}
.ws9c{word-spacing:2.816000pt;}
.ws16{word-spacing:2.885120pt;}
.wsc9{word-spacing:3.027840pt;}
.ws10d{word-spacing:3.061760pt;}
.ws6e{word-spacing:3.072000pt;}
.ws121{word-spacing:3.120640pt;}
.wsff{word-spacing:3.179520pt;}
.ws6c{word-spacing:3.200000pt;}
.ws112{word-spacing:3.238400pt;}
.wsb8{word-spacing:3.240320pt;}
.ws6d{word-spacing:3.456000pt;}
.ws111{word-spacing:3.532800pt;}
.wsb9{word-spacing:3.665280pt;}
.wsdd{word-spacing:3.709440pt;}
.ws13a{word-spacing:3.712000pt;}
.wsba{word-spacing:3.824640pt;}
.wse1{word-spacing:3.827200pt;}
.ws3b{word-spacing:3.840000pt;}
.ws48{word-spacing:3.877760pt;}
.ws32{word-spacing:4.043520pt;}
.ws38{word-spacing:4.096000pt;}
.ws12f{word-spacing:4.302720pt;}
.wsad{word-spacing:4.357120pt;}
.ws136{word-spacing:4.416000pt;}
.wsdb{word-spacing:4.474880pt;}
.wsed{word-spacing:4.480000pt;}
.ws5d{word-spacing:4.515200pt;}
.wsaa{word-spacing:4.736000pt;}
.ws53{word-spacing:4.940160pt;}
.wsd4{word-spacing:5.004800pt;}
.ws9d{word-spacing:5.120000pt;}
.wsa1{word-spacing:5.122560pt;}
.ws120{word-spacing:5.184000pt;}
.ws52{word-spacing:5.312000pt;}
.ws70{word-spacing:5.376000pt;}
.ws4e{word-spacing:5.577600pt;}
.ws77{word-spacing:5.632000pt;}
.ws13{word-spacing:5.652480pt;}
.wsa6{word-spacing:5.736960pt;}
.ws3e{word-spacing:5.760000pt;}
.ws1d{word-spacing:5.770240pt;}
.wsa5{word-spacing:5.790080pt;}
.ws8b{word-spacing:5.874560pt;}
.ws45{word-spacing:6.016000pt;}
.ws51{word-spacing:6.108800pt;}
.ws14{word-spacing:6.123520pt;}
.ws8c{word-spacing:6.268160pt;}
.ws81{word-spacing:6.272000pt;}
.ws15{word-spacing:6.300160pt;}
.ws3f{word-spacing:6.336000pt;}
.ws82{word-spacing:6.400000pt;}
.ws12{word-spacing:6.417920pt;}
.ws88{word-spacing:6.480640pt;}
.ws83{word-spacing:6.656000pt;}
.ws119{word-spacing:6.771200pt;}
.ws101{word-spacing:6.947840pt;}
.wsf1{word-spacing:7.040000pt;}
.ws100{word-spacing:7.065600pt;}
.ws108{word-spacing:7.118080pt;}
.ws12c{word-spacing:7.188480pt;}
.wsf2{word-spacing:7.296000pt;}
.ws6{word-spacing:7.488000pt;}
.ws11b{word-spacing:7.536640pt;}
.wscb{word-spacing:7.543040pt;}
.wsb3{word-spacing:7.552000pt;}
.ws102{word-spacing:7.595520pt;}
.wsfc{word-spacing:7.654400pt;}
.ws40{word-spacing:7.680000pt;}
.wscc{word-spacing:7.755520pt;}
.ws5{word-spacing:7.787520pt;}
.ws41{word-spacing:7.936000pt;}
.ws145{word-spacing:8.007680pt;}
.wsb6{word-spacing:8.180480pt;}
.wse2{word-spacing:8.184320pt;}
.wsfd{word-spacing:8.302080pt;}
.ws10e{word-spacing:8.320000pt;}
.wsb5{word-spacing:8.339840pt;}
.ws14d{word-spacing:8.392960pt;}
.wsb7{word-spacing:8.552320pt;}
.ws78{word-spacing:8.576000pt;}
.wsfe{word-spacing:8.655360pt;}
.ws85{word-spacing:8.747520pt;}
.wsdc{word-spacing:8.832000pt;}
.ws123{word-spacing:8.949760pt;}
.ws13e{word-spacing:8.960000pt;}
.ws79{word-spacing:9.216000pt;}
.ws56{word-spacing:9.390720pt;}
.ws86{word-spacing:9.455360pt;}
.wsdf{word-spacing:9.479680pt;}
.wse0{word-spacing:9.597440pt;}
.ws46{word-spacing:9.600000pt;}
.ws5a{word-spacing:9.667840pt;}
.ws47{word-spacing:9.856000pt;}
.ws5f{word-spacing:10.033920pt;}
.ws57{word-spacing:10.092800pt;}
.ws13d{word-spacing:10.112000pt;}
.ws1b{word-spacing:10.127360pt;}
.ws73{word-spacing:10.240000pt;}
.ws1c{word-spacing:10.245120pt;}
.ws59{word-spacing:10.305280pt;}
.ws75{word-spacing:10.496000pt;}
.wsd5{word-spacing:10.752000pt;}
.ws104{word-spacing:10.775040pt;}
.wsf4{word-spacing:10.880000pt;}
.ws103{word-spacing:10.892800pt;}
.wsd3{word-spacing:10.942720pt;}
.ws3c{word-spacing:11.136000pt;}
.ws105{word-spacing:11.246080pt;}
.ws60{word-spacing:11.367680pt;}
.ws106{word-spacing:11.422720pt;}
.wsc5{word-spacing:11.520000pt;}
.ws122{word-spacing:11.540480pt;}
.ws61{word-spacing:11.580160pt;}
.ws12b{word-spacing:11.776000pt;}
.ws12a{word-spacing:12.032000pt;}
.ws98{word-spacing:12.070400pt;}
.wsb2{word-spacing:12.160000pt;}
.ws10f{word-spacing:12.188160pt;}
.ws129{word-spacing:12.416000pt;}
.ws139{word-spacing:12.659200pt;}
.ws143{word-spacing:12.718080pt;}
.ws144{word-spacing:12.776960pt;}
.ws76{word-spacing:12.800000pt;}
.ws110{word-spacing:12.835840pt;}
.wsab{word-spacing:13.056000pt;}
.wscd{word-spacing:13.280000pt;}
.ws124{word-spacing:13.306880pt;}
.ws1f{word-spacing:13.424640pt;}
.ws69{word-spacing:13.440000pt;}
.wsce{word-spacing:13.492480pt;}
.ws68{word-spacing:13.696000pt;}
.ws7b{word-spacing:13.954560pt;}
.ws1e{word-spacing:14.072320pt;}
.ws9e{word-spacing:14.080000pt;}
.wsa2{word-spacing:14.129920pt;}
.ws9f{word-spacing:14.336000pt;}
.wsa3{word-spacing:14.554880pt;}
.ws99{word-spacing:14.602240pt;}
.wsc4{word-spacing:14.720000pt;}
.ws142{word-spacing:15.249920pt;}
.ws72{word-spacing:15.360000pt;}
.ws9a{word-spacing:15.367680pt;}
.ws71{word-spacing:15.616000pt;}
.ws80{word-spacing:15.872000pt;}
.wsf7{word-spacing:15.897600pt;}
.ws7f{word-spacing:16.000000pt;}
.wsf9{word-spacing:16.015360pt;}
.ws135{word-spacing:16.256000pt;}
.ws6a{word-spacing:16.640000pt;}
.ws14c{word-spacing:16.663040pt;}
.ws6b{word-spacing:16.896000pt;}
.wsac{word-spacing:17.192960pt;}
.wsef{word-spacing:17.280000pt;}
.ws14b{word-spacing:17.310720pt;}
.wsf0{word-spacing:17.536000pt;}
.ws11c{word-spacing:17.899520pt;}
.wsf6{word-spacing:17.920000pt;}
.wsf5{word-spacing:18.176000pt;}
.ws43{word-spacing:18.560000pt;}
.ws42{word-spacing:18.816000pt;}
.wsf{word-spacing:19.077120pt;}
.wse{word-spacing:19.194880pt;}
.wsc1{word-spacing:19.200000pt;}
.ws153{word-spacing:19.456000pt;}
.wsec{word-spacing:19.840000pt;}
.wsea{word-spacing:20.032000pt;}
.wseb{word-spacing:20.096000pt;}
.wsc6{word-spacing:20.480000pt;}
.ws10c{word-spacing:20.736000pt;}
.ws13c{word-spacing:21.760000pt;}
.ws13b{word-spacing:22.016000pt;}
.ws11d{word-spacing:23.680000pt;}
.ws11e{word-spacing:23.936000pt;}
.ws34{word-spacing:24.192000pt;}
.ws35{word-spacing:24.320000pt;}
.ws134{word-spacing:24.847360pt;}
.ws133{word-spacing:24.965120pt;}
.wsd6{word-spacing:26.240000pt;}
.wsd7{word-spacing:26.496000pt;}
.ws147{word-spacing:26.790400pt;}
.wsc3{word-spacing:26.880000pt;}
.wsc2{word-spacing:27.136000pt;}
.ws97{word-spacing:27.392000pt;}
.ws6f{word-spacing:27.520000pt;}
.ws148{word-spacing:27.555840pt;}
.ws96{word-spacing:27.776000pt;}
.ws14f{word-spacing:29.440000pt;}
.ws14e{word-spacing:30.336000pt;}
.ws154{word-spacing:30.720000pt;}
.ws155{word-spacing:30.976000pt;}
.wsd8{word-spacing:31.616000pt;}
.wsd9{word-spacing:32.000000pt;}
.wsb1{word-spacing:34.145280pt;}
.wsb0{word-spacing:34.669440pt;}
.wsc7{word-spacing:39.936000pt;}
._8{margin-left:-10.657280pt;}
._1b{margin-left:-7.168000pt;}
._1a{margin-left:-6.029312pt;}
._19{margin-left:-4.016704pt;}
._e{margin-left:-2.584320pt;}
._1{margin-left:-1.497600pt;}
._0{width:1.100736pt;}
._4{width:2.001920pt;}
._5{width:3.182080pt;}
._f{width:4.109376pt;}
._6{width:5.016960pt;}
._3{width:6.840320pt;}
._b{width:8.512000pt;}
._7{width:9.574528pt;}
._9{width:11.020736pt;}
._c{width:12.556800pt;}
._10{width:13.696128pt;}
._d{width:14.641920pt;}
._15{width:16.066560pt;}
._16{width:17.246912pt;}
._2{width:18.447360pt;}
._14{width:20.512192pt;}
._17{width:23.872000pt;}
._18{width:24.906240pt;}
._a{width:27.200000pt;}
._12{width:31.040000pt;}
._13{width:32.000000pt;}
._11{width:34.894080pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y25b{bottom:3.680000pt;}
.y29d{bottom:3.840000pt;}
.y25d{bottom:4.000000pt;}
.y268{bottom:22.400000pt;}
.y3c{bottom:51.365760pt;}
.y1e{bottom:51.431040pt;}
.y3b{bottom:69.280000pt;}
.y1d{bottom:69.345280pt;}
.y210{bottom:97.746400pt;}
.ye8{bottom:97.750080pt;}
.y1b9{bottom:97.751360pt;}
.y63{bottom:97.755040pt;}
.yce{bottom:97.760000pt;}
.y1ed{bottom:98.080800pt;}
.yaa{bottom:100.004000pt;}
.y243{bottom:103.838720pt;}
.y10a{bottom:103.840000pt;}
.y198{bottom:104.800000pt;}
.y20f{bottom:113.111360pt;}
.ycd{bottom:113.115040pt;}
.y1b8{bottom:113.116320pt;}
.y62{bottom:113.120000pt;}
.y3a{bottom:113.129120pt;}
.y161{bottom:113.920000pt;}
.y22d{bottom:114.715040pt;}
.y27e{bottom:116.160000pt;}
.y8a{bottom:119.200000pt;}
.y197{bottom:120.800000pt;}
.y1cc{bottom:121.600000pt;}
.ya9{bottom:123.680000pt;}
.y1c{bottom:126.620800pt;}
.ycc{bottom:128.465120pt;}
.y13e{bottom:128.470080pt;}
.y61{bottom:128.475040pt;}
.y20e{bottom:128.476320pt;}
.ye7{bottom:128.480000pt;}
.y263{bottom:129.280000pt;}
.y89{bottom:130.564640pt;}
.y1ee{bottom:132.800000pt;}
.ya8{bottom:133.115040pt;}
.y109{bottom:134.560000pt;}
.y160{bottom:135.378560pt;}
.y1b7{bottom:135.520000pt;}
.y196{bottom:136.160000pt;}
.y1cb{bottom:138.560000pt;}
.y27d{bottom:141.920000pt;}
.y60{bottom:143.830080pt;}
.ye6{bottom:143.835040pt;}
.y124{bottom:149.920000pt;}
.y20d{bottom:150.880000pt;}
.y195{bottom:151.360000pt;}
.y262{bottom:151.680000pt;}
.y1b6{bottom:152.320000pt;}
.y1ec{bottom:153.667200pt;}
.y88{bottom:154.400000pt;}
.ya7{bottom:154.560000pt;}
.y39{bottom:154.731520pt;}
.y15f{bottom:154.735360pt;}
.y1ca{bottom:155.360000pt;}
.y5f{bottom:159.195040pt;}
.y1b{bottom:159.255040pt;}
.y292{bottom:160.320000pt;}
.y194{bottom:160.635040pt;}
.y211{bottom:160.960000pt;}
.y1ba{bottom:163.040000pt;}
.ya6{bottom:163.670080pt;}
.y87{bottom:163.675040pt;}
.ye5{bottom:165.280000pt;}
.y1cd{bottom:166.080000pt;}
.y242{bottom:166.240000pt;}
.y27c{bottom:167.680000pt;}
.y22c{bottom:169.120000pt;}
.y1eb{bottom:173.024000pt;}
.y15e{bottom:174.254080pt;}
.ye4{bottom:174.549440pt;}
.y10b{bottom:175.360000pt;}
.y244{bottom:176.320000pt;}
.y261{bottom:177.440000pt;}
.y20c{bottom:178.933120pt;}
.ya5{bottom:179.035040pt;}
.y22e{bottom:179.840000pt;}
.y5e{bottom:180.640000pt;}
.y193{bottom:182.080000pt;}
.y86{bottom:185.120000pt;}
.y5d{bottom:189.755040pt;}
.y125{bottom:190.560000pt;}
.ycb{bottom:192.005920pt;}
.y1a{bottom:192.051200pt;}
.y199{bottom:192.160000pt;}
.y1ea{bottom:192.380800pt;}
.y15d{bottom:193.610880pt;}
.y85{bottom:194.395040pt;}
.y176{bottom:195.360000pt;}
.y38{bottom:196.163680pt;}
.y20b{bottom:198.289920pt;}
.ya4{bottom:200.480000pt;}
.y260{bottom:203.200000pt;}
.y291{bottom:204.480000pt;}
.y1b5{bottom:205.440000pt;}
.y241{bottom:208.000000pt;}
.y108{bottom:208.490240pt;}
.ya3{bottom:209.755040pt;}
.y5c{bottom:211.200000pt;}
.y1e9{bottom:211.737600pt;}
.y27b{bottom:211.840000pt;}
.y15c{bottom:212.967680pt;}
.y13d{bottom:215.521280pt;}
.y22b{bottom:215.683200pt;}
.y84{bottom:215.840000pt;}
.yca{bottom:216.800000pt;}
.y20a{bottom:217.808640pt;}
.y1c9{bottom:219.840000pt;}
.y5b{bottom:220.475040pt;}
.ye3{bottom:220.480000pt;}
.y175{bottom:222.880000pt;}
.y19{bottom:224.685440pt;}
.y83{bottom:225.115040pt;}
.yc9{bottom:226.550080pt;}
.y107{bottom:227.847040pt;}
.y123{bottom:228.480000pt;}
.y25f{bottom:228.960000pt;}
.y1e8{bottom:231.094400pt;}
.ya2{bottom:231.200000pt;}
.y15b{bottom:232.324480pt;}
.y1b4{bottom:233.120000pt;}
.y13c{bottom:235.040000pt;}
.ye2{bottom:235.829440pt;}
.y192{bottom:236.800000pt;}
.y209{bottom:237.165440pt;}
.y37{bottom:237.766080pt;}
.y82{bottom:240.480000pt;}
.yab{bottom:241.280000pt;}
.yc8{bottom:241.915040pt;}
.y5a{bottom:241.920000pt;}
.y1c8{bottom:247.200000pt;}
.y106{bottom:247.203840pt;}
.y290{bottom:248.640000pt;}
.y240{bottom:248.960000pt;}
.y174{bottom:250.560000pt;}
.y1e7{bottom:250.613120pt;}
.y59{bottom:251.194400pt;}
.y15a{bottom:251.681280pt;}
.y22a{bottom:252.320000pt;}
.y25e{bottom:254.720000pt;}
.y122{bottom:256.000000pt;}
.y8b{bottom:256.480000pt;}
.y208{bottom:256.522240pt;}
.y18{bottom:257.481600pt;}
.y1b3{bottom:260.640000pt;}
.yc7{bottom:263.360000pt;}
.y191{bottom:264.320000pt;}
.y1e6{bottom:269.969920pt;}
.y159{bottom:271.200000pt;}
.y58{bottom:272.480000pt;}
.ycf{bottom:273.440000pt;}
.y28f{bottom:274.400000pt;}
.y13b{bottom:274.560000pt;}
.y1c7{bottom:274.880000pt;}
.y207{bottom:275.879040pt;}
.y173{bottom:278.080000pt;}
.y36{bottom:279.368480pt;}
.y229{bottom:279.840000pt;}
.y105{bottom:280.010240pt;}
.y25c{bottom:280.320000pt;}
.y57{bottom:281.741440pt;}
.ye9{bottom:282.560000pt;}
.y121{bottom:283.520000pt;}
.y81{bottom:287.520000pt;}
.y1b2{bottom:288.320000pt;}
.y2aa{bottom:288.640000pt;}
.y1e5{bottom:289.326720pt;}
.y23f{bottom:289.920000pt;}
.y17{bottom:290.115840pt;}
.y190{bottom:292.000000pt;}
.y206{bottom:295.235840pt;}
.y56{bottom:297.106400pt;}
.ya1{bottom:299.203200pt;}
.y104{bottom:299.367040pt;}
.y27a{bottom:300.000000pt;}
.y13a{bottom:302.240000pt;}
.y1c6{bottom:302.400000pt;}
.ye1{bottom:304.643200pt;}
.y172{bottom:305.760000pt;}
.y25a{bottom:306.080000pt;}
.y2a9{bottom:307.200000pt;}
.y228{bottom:307.360000pt;}
.y1e4{bottom:308.683520pt;}
.y158{bottom:310.720000pt;}
.y120{bottom:311.200000pt;}
.y55{bottom:312.471360pt;}
.y205{bottom:314.754560pt;}
.y80{bottom:315.040000pt;}
.y1b1{bottom:315.840000pt;}
.yc6{bottom:318.240000pt;}
.ya0{bottom:318.560000pt;}
.y103{bottom:318.723840pt;}
.y18f{bottom:319.520000pt;}
.y35{bottom:320.800640pt;}
.y16{bottom:322.912000pt;}
.ye0{bottom:324.000000pt;}
.y2a8{bottom:325.600000pt;}
.y279{bottom:325.760000pt;}
.y54{bottom:327.836320pt;}
.y1e3{bottom:328.202240pt;}
.y139{bottom:329.760000pt;}
.y1c5{bottom:330.080000pt;}
.y23e{bottom:330.880000pt;}
.y171{bottom:333.280000pt;}
.y204{bottom:334.111360pt;}
.y227{bottom:335.040000pt;}
.y157{bottom:338.400000pt;}
.y7f{bottom:342.720000pt;}
.y11f{bottom:342.754560pt;}
.y2a7{bottom:344.000000pt;}
.y28e{bottom:344.160000pt;}
.yc5{bottom:345.920000pt;}
.y18e{bottom:347.200000pt;}
.y1e2{bottom:347.559040pt;}
.y259{bottom:348.160000pt;}
.y53{bottom:350.240000pt;}
.y102{bottom:351.533440pt;}
.y203{bottom:353.468160pt;}
.y15{bottom:355.708160pt;}
.y138{bottom:357.440000pt;}
.y1c4{bottom:357.600000pt;}
.y9f{bottom:358.240000pt;}
.y23d{bottom:358.400000pt;}
.y11e{bottom:359.550080pt;}
.y64{bottom:360.160000pt;}
.y1b0{bottom:362.080000pt;}
.y2a6{bottom:362.400000pt;}
.y34{bottom:362.403040pt;}
.y226{bottom:362.560000pt;}
.y156{bottom:365.920000pt;}
.y1e1{bottom:366.915840pt;}
.y170{bottom:368.640480pt;}
.ydf{bottom:369.120000pt;}
.y278{bottom:369.920000pt;}
.y7e{bottom:370.240000pt;}
.y101{bottom:370.890240pt;}
.y202{bottom:372.824960pt;}
.yc4{bottom:373.440000pt;}
.y18d{bottom:374.720000pt;}
.y258{bottom:376.000000pt;}
.y11d{bottom:376.507520pt;}
.y2a5{bottom:380.800000pt;}
.y1af{bottom:382.605440pt;}
.y137{bottom:384.960000pt;}
.y1c3{bottom:385.280000pt;}
.y9e{bottom:385.920000pt;}
.y23c{bottom:386.080000pt;}
.y1e0{bottom:386.272640pt;}
.y28d{bottom:388.320000pt;}
.y14{bottom:388.666240pt;}
.y225{bottom:390.240000pt;}
.y100{bottom:390.247040pt;}
.y201{bottom:392.343680pt;}
.y16f{bottom:393.276000pt;}
.y11c{bottom:393.303040pt;}
.y155{bottom:393.600000pt;}
.y52{bottom:393.920000pt;}
.yde{bottom:396.640000pt;}
.y2a4{bottom:399.200000pt;}
.yc3{bottom:401.120000pt;}
.y1ae{bottom:401.962240pt;}
.y18c{bottom:402.400000pt;}
.y257{bottom:403.680000pt;}
.y33{bottom:404.005440pt;}
.y7d{bottom:404.330880pt;}
.y1df{bottom:405.629440pt;}
.yff{bottom:409.603840pt;}
.y11b{bottom:410.098560pt;}
.y200{bottom:411.700480pt;}
.y136{bottom:412.640000pt;}
.y1c2{bottom:412.800000pt;}
.y9d{bottom:413.440000pt;}
.y23b{bottom:413.600000pt;}
.y277{bottom:414.080000pt;}
.y2a3{bottom:417.600000pt;}
.y224{bottom:417.760000pt;}
.y16e{bottom:418.080000pt;}
.y154{bottom:421.120000pt;}
.y1ad{bottom:421.319040pt;}
.y13{bottom:421.462400pt;}
.y51{bottom:421.600000pt;}
.y7c{bottom:423.687680pt;}
.ydd{bottom:424.320000pt;}
.y1de{bottom:425.148160pt;}
.y11a{bottom:427.056000pt;}
.yc2{bottom:428.640000pt;}
.y18b{bottom:429.920000pt;}
.y1ff{bottom:431.057280pt;}
.y256{bottom:431.200000pt;}
.y2a2{bottom:436.000000pt;}
.y135{bottom:440.160000pt;}
.y1c1{bottom:440.480000pt;}
.y1ac{bottom:440.675840pt;}
.y9c{bottom:441.120000pt;}
.y23a{bottom:441.280000pt;}
.yfe{bottom:442.410880pt;}
.y7b{bottom:443.044480pt;}
.y119{bottom:443.851520pt;}
.y1dd{bottom:444.504960pt;}
.y32{bottom:445.437600pt;}
.y223{bottom:445.440000pt;}
.y153{bottom:448.800000pt;}
.y50{bottom:449.120000pt;}
.y1fe{bottom:450.414080pt;}
.y12{bottom:454.096640pt;}
.yc1{bottom:456.320000pt;}
.y18a{bottom:457.600000pt;}
.y276{bottom:458.240000pt;}
.y255{bottom:458.880000pt;}
.y1ab{bottom:460.194560pt;}
.y118{bottom:460.808960pt;}
.y16d{bottom:461.600000pt;}
.yfd{bottom:461.767680pt;}
.y7a{bottom:462.563200pt;}
.y1dc{bottom:463.861760pt;}
.y134{bottom:467.840000pt;}
.y1c0{bottom:468.000000pt;}
.y9b{bottom:468.640000pt;}
.y239{bottom:468.800000pt;}
.y1fd{bottom:469.770880pt;}
.ydc{bottom:470.560000pt;}
.y222{bottom:472.960000pt;}
.y11{bottom:473.453440pt;}
.y152{bottom:476.320000pt;}
.y4f{bottom:476.800000pt;}
.y117{bottom:477.604480pt;}
.y1aa{bottom:479.551360pt;}
.y2a1{bottom:480.160000pt;}
.yfc{bottom:481.124480pt;}
.y79{bottom:481.920000pt;}
.y1db{bottom:483.218560pt;}
.y275{bottom:484.000000pt;}
.y189{bottom:485.120000pt;}
.y31{bottom:487.040000pt;}
.y16c{bottom:489.280000pt;}
.y1fc{bottom:489.289600pt;}
.y254{bottom:494.076000pt;}
.y116{bottom:494.400000pt;}
.y133{bottom:495.360000pt;}
.y1bf{bottom:495.680000pt;}
.y9a{bottom:496.320000pt;}
.yc0{bottom:496.964480pt;}
.ydb{bottom:498.080000pt;}
.y1a9{bottom:498.908160pt;}
.y221{bottom:500.640000pt;}
.yfb{bottom:500.643200pt;}
.y28c{bottom:502.400000pt;}
.y1da{bottom:502.737280pt;}
.y151{bottom:504.000000pt;}
.y4e{bottom:504.320000pt;}
.y2a0{bottom:505.920000pt;}
.y10{bottom:506.249600pt;}
.y1fb{bottom:508.646400pt;}
.y274{bottom:509.600000pt;}
.y188{bottom:512.800000pt;}
.y78{bottom:515.040000pt;}
.y16b{bottom:516.800000pt;}
.y1a8{bottom:518.264960pt;}
.y253{bottom:518.880000pt;}
.yfa{bottom:520.000000pt;}
.ybf{bottom:521.600000pt;}
.y1d9{bottom:522.094080pt;}
.y132{bottom:523.040000pt;}
.y1be{bottom:523.200000pt;}
.y238{bottom:524.000000pt;}
.yda{bottom:525.760000pt;}
.y30{bottom:526.257920pt;}
.y1fa{bottom:528.003200pt;}
.y220{bottom:528.160000pt;}
.y4d{bottom:532.000000pt;}
.y115{bottom:534.080000pt;}
.y273{bottom:535.360000pt;}
.y77{bottom:536.320000pt;}
.y99{bottom:537.120000pt;}
.y1a7{bottom:537.621760pt;}
.yf{bottom:539.045760pt;}
.y1d8{bottom:541.450880pt;}
.y16a{bottom:544.480000pt;}
.y150{bottom:544.960000pt;}
.y2f{bottom:545.776640pt;}
.y28b{bottom:546.400000pt;}
.y1f9{bottom:547.360000pt;}
.y29f{bottom:550.080000pt;}
.y131{bottom:550.560000pt;}
.y1bd{bottom:550.880000pt;}
.yd9{bottom:553.280000pt;}
.y187{bottom:553.600000pt;}
.y21f{bottom:555.840000pt;}
.y76{bottom:556.969600pt;}
.y1a6{bottom:557.140480pt;}
.ybe{bottom:558.880000pt;}
.y4c{bottom:559.520000pt;}
.y1d7{bottom:560.807680pt;}
.y272{bottom:561.120000pt;}
.y114{bottom:561.760000pt;}
.y252{bottom:562.560000pt;}
.y98{bottom:564.800000pt;}
.yf9{bottom:564.960000pt;}
.y237{bottom:570.080000pt;}
.ye{bottom:571.680000pt;}
.y169{bottom:572.000000pt;}
.y14f{bottom:572.480000pt;}
.y1f8{bottom:573.760000pt;}
.y75{bottom:576.326400pt;}
.y1a5{bottom:576.497280pt;}
.y130{bottom:578.240000pt;}
.y1bc{bottom:578.400000pt;}
.y2e{bottom:578.410880pt;}
.y1d6{bottom:580.164480pt;}
.yd8{bottom:580.960000pt;}
.y186{bottom:581.280000pt;}
.y21e{bottom:583.360000pt;}
.y271{bottom:586.880000pt;}
.y4b{bottom:587.200000pt;}
.y113{bottom:589.280000pt;}
.y28a{bottom:590.560000pt;}
.y97{bottom:592.320000pt;}
.yf8{bottom:592.480000pt;}
.ybd{bottom:592.818560pt;}
.y29e{bottom:594.240000pt;}
.y74{bottom:595.683200pt;}
.y1a4{bottom:595.854080pt;}
.y2d{bottom:597.767680pt;}
.y168{bottom:599.680000pt;}
.y1d5{bottom:599.683200pt;}
.y14e{bottom:600.160000pt;}
.y1f7{bottom:601.280000pt;}
.y251{bottom:603.360000pt;}
.yd{bottom:604.499200pt;}
.y12f{bottom:605.760000pt;}
.y1bb{bottom:606.080000pt;}
.yd7{bottom:608.480000pt;}
.y185{bottom:608.800000pt;}
.y236{bottom:610.880000pt;}
.y21d{bottom:611.040000pt;}
.ybc{bottom:612.175360pt;}
.y270{bottom:612.640000pt;}
.y4a{bottom:614.720000pt;}
.y73{bottom:615.040000pt;}
.y1a3{bottom:615.210880pt;}
.y112{bottom:616.960000pt;}
.y2c{bottom:617.286400pt;}
.y1d4{bottom:619.040000pt;}
.y96{bottom:620.000000pt;}
.yf7{bottom:620.160000pt;}
.y167{bottom:627.200000pt;}
.y14d{bottom:627.680000pt;}
.y1f6{bottom:628.960000pt;}
.y250{bottom:631.040000pt;}
.ybb{bottom:631.532160pt;}
.y289{bottom:634.720000pt;}
.y1a2{bottom:634.729600pt;}
.yd6{bottom:636.160000pt;}
.y184{bottom:636.480000pt;}
.y2b{bottom:636.643200pt;}
.yc{bottom:637.133440pt;}
.y26f{bottom:638.240000pt;}
.y21c{bottom:638.560000pt;}
.y12e{bottom:639.853440pt;}
.y49{bottom:642.400000pt;}
.y111{bottom:644.480000pt;}
.y1d3{bottom:645.280000pt;}
.y29c{bottom:645.600000pt;}
.y95{bottom:647.520000pt;}
.yf6{bottom:647.680000pt;}
.yba{bottom:651.050880pt;}
.y1a1{bottom:654.086400pt;}
.y72{bottom:654.720000pt;}
.y166{bottom:654.880000pt;}
.y14c{bottom:655.360000pt;}
.y2a{bottom:656.000000pt;}
.y1f5{bottom:656.480000pt;}
.y24f{bottom:658.560000pt;}
.y12d{bottom:659.210240pt;}
.y288{bottom:660.480000pt;}
.yd5{bottom:663.680000pt;}
.y26e{bottom:664.000000pt;}
.y235{bottom:666.080000pt;}
.y21b{bottom:666.240000pt;}
.y48{bottom:669.920000pt;}
.yb{bottom:669.929600pt;}
.yb9{bottom:670.407680pt;}
.y183{bottom:670.410880pt;}
.y110{bottom:672.160000pt;}
.y1d2{bottom:672.960000pt;}
.y1a0{bottom:673.443200pt;}
.yf5{bottom:675.360000pt;}
.y12c{bottom:678.567040pt;}
.y71{bottom:682.400000pt;}
.y14b{bottom:682.880000pt;}
.y1f4{bottom:684.160000pt;}
.y24e{bottom:686.240000pt;}
.y29{bottom:688.480000pt;}
.y29b{bottom:689.760000pt;}
.yb8{bottom:689.764480pt;}
.y182{bottom:689.929600pt;}
.yd4{bottom:691.360000pt;}
.y19f{bottom:692.800000pt;}
.y21a{bottom:693.760000pt;}
.y47{bottom:697.600000pt;}
.y12b{bottom:697.923840pt;}
.y10f{bottom:699.680000pt;}
.y1d1{bottom:700.480000pt;}
.ya{bottom:702.563840pt;}
.yf4{bottom:702.880000pt;}
.y287{bottom:704.640000pt;}
.y26d{bottom:708.160000pt;}
.yb7{bottom:709.121280pt;}
.y181{bottom:709.286400pt;}
.y70{bottom:709.920000pt;}
.y165{bottom:710.080000pt;}
.y14a{bottom:710.560000pt;}
.y1f3{bottom:711.680000pt;}
.y24d{bottom:713.760000pt;}
.y94{bottom:716.160000pt;}
.yd3{bottom:718.880000pt;}
.y19e{bottom:719.200000pt;}
.y234{bottom:721.280000pt;}
.y219{bottom:721.440000pt;}
.y28{bottom:721.463680pt;}
.y46{bottom:725.120000pt;}
.y10e{bottom:727.360000pt;}
.y1d0{bottom:728.160000pt;}
.yb6{bottom:728.640000pt;}
.y180{bottom:728.643200pt;}
.y286{bottom:730.240000pt;}
.yf3{bottom:730.560000pt;}
.y12a{bottom:730.730880pt;}
.y29a{bottom:733.920000pt;}
.y9{bottom:735.360000pt;}
.y6f{bottom:737.600000pt;}
.y149{bottom:738.080000pt;}
.y1f2{bottom:739.360000pt;}
.y24c{bottom:741.440000pt;}
.y93{bottom:743.680000pt;}
.yd2{bottom:746.560000pt;}
.y19d{bottom:746.720000pt;}
.y17f{bottom:748.000000pt;}
.y218{bottom:748.960000pt;}
.y129{bottom:750.087680pt;}
.y26c{bottom:752.320000pt;}
.y45{bottom:752.800000pt;}
.y27{bottom:754.259840pt;}
.y10d{bottom:754.880000pt;}
.y1cf{bottom:755.680000pt;}
.y285{bottom:756.000000pt;}
.yf2{bottom:758.080000pt;}
.y299{bottom:759.680000pt;}
.y6e{bottom:765.120000pt;}
.y164{bottom:765.280000pt;}
.y148{bottom:765.760000pt;}
.y1f1{bottom:766.880000pt;}
.y8{bottom:768.007680pt;}
.yb5{bottom:768.160000pt;}
.y24b{bottom:768.960000pt;}
.y128{bottom:769.444480pt;}
.y92{bottom:771.360000pt;}
.y26{bottom:773.616640pt;}
.yd1{bottom:774.080000pt;}
.y19c{bottom:774.400000pt;}
.y233{bottom:776.480000pt;}
.y217{bottom:776.640000pt;}
.y44{bottom:780.320000pt;}
.y284{bottom:781.760000pt;}
.y10c{bottom:782.560000pt;}
.yf1{bottom:785.760000pt;}
.y17e{bottom:787.680000pt;}
.y127{bottom:788.963200pt;}
.y6d{bottom:792.800000pt;}
.y1f0{bottom:794.560000pt;}
.yb4{bottom:795.840000pt;}
.y26b{bottom:796.480000pt;}
.y24a{bottom:796.640000pt;}
.y91{bottom:798.880000pt;}
.y147{bottom:800.188800pt;}
.y7{bottom:800.803840pt;}
.y1ce{bottom:801.469440pt;}
.yd0{bottom:801.760000pt;}
.y19b{bottom:801.920000pt;}
.y298{bottom:803.840000pt;}
.y216{bottom:804.160000pt;}
.y25{bottom:806.250880pt;}
.y283{bottom:807.520000pt;}
.y126{bottom:808.320000pt;}
.yf0{bottom:813.280000pt;}
.y17d{bottom:815.360000pt;}
.y43{bottom:815.684480pt;}
.y6c{bottom:820.320000pt;}
.y163{bottom:820.480000pt;}
.y146{bottom:820.826240pt;}
.y1ef{bottom:822.080000pt;}
.yb3{bottom:823.360000pt;}
.y249{bottom:824.160000pt;}
.y24{bottom:825.769600pt;}
.y90{bottom:826.560000pt;}
.y297{bottom:829.440000pt;}
.y232{bottom:831.680000pt;}
.y215{bottom:831.840000pt;}
.y6{bottom:833.600000pt;}
.y42{bottom:840.320000pt;}
.y145{bottom:840.344960pt;}
.y26a{bottom:840.640000pt;}
.yef{bottom:840.960000pt;}
.y23{bottom:845.126400pt;}
.y6b{bottom:848.000000pt;}
.y19a{bottom:848.160000pt;}
.y17c{bottom:849.294080pt;}
.yb2{bottom:851.040000pt;}
.y282{bottom:851.680000pt;}
.y248{bottom:851.840000pt;}
.y214{bottom:859.360000pt;}
.y144{bottom:859.701760pt;}
.y8f{bottom:860.487680pt;}
.y22{bottom:864.483200pt;}
.y231{bottom:865.770240pt;}
.y269{bottom:866.240000pt;}
.yee{bottom:868.480000pt;}
.y17b{bottom:868.650880pt;}
.y296{bottom:873.600000pt;}
.y5{bottom:875.048320pt;}
.y6a{bottom:875.520000pt;}
.y162{bottom:875.680000pt;}
.y213{bottom:877.437440pt;}
.y281{bottom:877.440000pt;}
.yb1{bottom:878.560000pt;}
.y143{bottom:879.058560pt;}
.y41{bottom:879.360000pt;}
.y8e{bottom:879.844480pt;}
.y21{bottom:883.840000pt;}
.y230{bottom:885.127040pt;}
.y17a{bottom:888.169600pt;}
.yed{bottom:896.160000pt;}
.y212{bottom:897.296640pt;}
.y142{bottom:898.415360pt;}
.y8d{bottom:899.363200pt;}
.y280{bottom:903.040000pt;}
.y69{bottom:903.200000pt;}
.y22f{bottom:904.483840pt;}
.yb0{bottom:906.240000pt;}
.y247{bottom:907.040000pt;}
.y4{bottom:907.209280pt;}
.y179{bottom:907.526400pt;}
.y267{bottom:910.400000pt;}
.y20{bottom:916.320000pt;}
.y295{bottom:917.760000pt;}
.y141{bottom:917.772160pt;}
.y8c{bottom:918.720000pt;}
.y40{bottom:919.840480pt;}
.y178{bottom:926.883200pt;}
.y27f{bottom:928.800000pt;}
.y68{bottom:930.720000pt;}
.yaf{bottom:933.760000pt;}
.y246{bottom:934.560000pt;}
.yec{bottom:935.679360pt;}
.y140{bottom:937.290880pt;}
.y3{bottom:939.520000pt;}
.y3f{bottom:944.644480pt;}
.y177{bottom:946.240000pt;}
.y1f{bottom:948.967680pt;}
.y266{bottom:954.560000pt;}
.yeb{bottom:955.360000pt;}
.y13f{bottom:956.647680pt;}
.y67{bottom:958.400000pt;}
.yae{bottom:961.440000pt;}
.y294{bottom:961.920000pt;}
.y3e{bottom:969.280000pt;}
.y245{bottom:969.920000pt;}
.yea{bottom:976.004480pt;}
.y265{bottom:980.320000pt;}
.y2{bottom:981.763840pt;}
.y66{bottom:985.920000pt;}
.y293{bottom:987.680000pt;}
.yad{bottom:995.361280pt;}
.y264{bottom:1006.080000pt;}
.y3d{bottom:1008.320000pt;}
.y65{bottom:1013.600000pt;}
.y1{bottom:1014.560000pt;}
.yac{bottom:1014.880000pt;}
.h29{height:18.240000pt;}
.h25{height:18.400000pt;}
.h26{height:18.401333pt;}
.hb{height:25.254375pt;}
.h20{height:25.665000pt;}
.hd{height:33.918750pt;}
.h14{height:36.431250pt;}
.h21{height:36.727500pt;}
.h27{height:36.798667pt;}
.h28{height:36.800000pt;}
.h5{height:40.710000pt;}
.hc{height:52.134375pt;}
.h1e{height:52.154215pt;}
.he{height:52.174055pt;}
.h16{height:52.176615pt;}
.h15{height:52.193895pt;}
.h4{height:57.787500pt;}
.h23{height:58.256030pt;}
.h2{height:59.340000pt;}
.h17{height:62.794580pt;}
.h9{height:62.812500pt;}
.h1f{height:63.129490pt;}
.h1b{height:63.173010pt;}
.h1c{height:63.196050pt;}
.h13{height:63.237010pt;}
.h1d{height:63.254930pt;}
.h19{height:63.257490pt;}
.h10{height:63.267730pt;}
.h1a{height:63.270290pt;}
.hf{height:63.272850pt;}
.h11{height:63.280530pt;}
.h12{height:63.306130pt;}
.h18{height:63.313810pt;}
.h24{height:64.500000pt;}
.h22{height:71.457815pt;}
.ha{height:71.524375pt;}
.h3{height:75.465000pt;}
.h7{height:78.097500pt;}
.h8{height:82.917080pt;}
.h6{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:313.760000pt;}
.w3{width:328.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:3.520000pt;}
.x15{left:109.920000pt;}
.x1{left:113.440000pt;}
.xc{left:132.163840pt;}
.xb{left:136.329600pt;}
.x11{left:137.440000pt;}
.x10{left:141.920000pt;}
.xe{left:160.640000pt;}
.x12{left:170.240000pt;}
.xf{left:184.639040pt;}
.x14{left:207.840000pt;}
.x2{left:255.040000pt;}
.x5{left:261.920000pt;}
.x9{left:302.738560pt;}
.xa{left:315.840000pt;}
.x6{left:324.965760pt;}
.x7{left:327.056000pt;}
.x3{left:328.478080pt;}
.x4{left:358.065280pt;}
.x8{left:396.814080pt;}
.x17{left:423.840000pt;}
.x13{left:665.440000pt;}
.xd{left:672.961920pt;}
}




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