
    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_930ade86a321f8aa1e0bdc01.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_7d38e3315e5e18567dcedbe0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_06d3a0c03af6669a9d14e967.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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);}
.v2{vertical-align:-21.780000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.823200px;}
.lsf5{letter-spacing:-1.636800px;}
.lsbf{letter-spacing:-1.630200px;}
.ls54{letter-spacing:-1.623600px;}
.ls29{letter-spacing:-1.564200px;}
.ls95{letter-spacing:-1.445400px;}
.ls42{letter-spacing:-1.392600px;}
.ls44{letter-spacing:-1.386000px;}
.ls43{letter-spacing:-1.381050px;}
.lse6{letter-spacing:-1.326600px;}
.lsd4{letter-spacing:-1.300200px;}
.lse0{letter-spacing:-1.267200px;}
.lsb9{letter-spacing:-1.263600px;}
.lsa1{letter-spacing:-1.214400px;}
.lsc9{letter-spacing:-1.207800px;}
.ls9b{letter-spacing:-1.150200px;}
.lsd3{letter-spacing:-1.148400px;}
.ls97{letter-spacing:-1.144800px;}
.ls93{letter-spacing:-1.089000px;}
.lsad{letter-spacing:-1.085400px;}
.ls6d{letter-spacing:-1.082400px;}
.ls2a{letter-spacing:-1.075800px;}
.lsa2{letter-spacing:-1.029600px;}
.ls80{letter-spacing:-1.023000px;}
.lsa4{letter-spacing:-1.009800px;}
.lse3{letter-spacing:-1.003200px;}
.lsd5{letter-spacing:-0.970200px;}
.lsf7{letter-spacing:-0.966600px;}
.lsbe{letter-spacing:-0.930600px;}
.lsbd{letter-spacing:-0.917400px;}
.lsb0{letter-spacing:-0.912600px;}
.lsfb{letter-spacing:-0.910800px;}
.lsbc{letter-spacing:-0.904200px;}
.ls48{letter-spacing:-0.851400px;}
.lsca{letter-spacing:-0.845460px;}
.ls47{letter-spacing:-0.844800px;}
.lsf0{letter-spacing:-0.840840px;}
.ls58{letter-spacing:-0.798600px;}
.ls4b{letter-spacing:-0.792000px;}
.lse9{letter-spacing:-0.788400px;}
.ls59{letter-spacing:-0.785400px;}
.ls92{letter-spacing:-0.780780px;}
.ls5a{letter-spacing:-0.765600px;}
.ls41{letter-spacing:-0.759000px;}
.lse1{letter-spacing:-0.739200px;}
.lsa9{letter-spacing:-0.732600px;}
.ls55{letter-spacing:-0.726000px;}
.lsa3{letter-spacing:-0.720720px;}
.lsaa{letter-spacing:-0.719400px;}
.ls7e{letter-spacing:-0.673200px;}
.ls10{letter-spacing:-0.666900px;}
.ls23{letter-spacing:-0.666600px;}
.lscb{letter-spacing:-0.627000px;}
.ls8e{letter-spacing:-0.613800px;}
.ls24{letter-spacing:-0.607200px;}
.lscf{letter-spacing:-0.604800px;}
.ls90{letter-spacing:-0.600600px;}
.ls91{letter-spacing:-0.567600px;}
.ls45{letter-spacing:-0.554400px;}
.lse4{letter-spacing:-0.547800px;}
.ls46{letter-spacing:-0.541200px;}
.lsc0{letter-spacing:-0.495000px;}
.ls27{letter-spacing:-0.488400px;}
.ls78{letter-spacing:-0.486000px;}
.lsb5{letter-spacing:-0.480480px;}
.ls70{letter-spacing:-0.448800px;}
.ls6e{letter-spacing:-0.435600px;}
.ls6f{letter-spacing:-0.429000px;}
.lsa{letter-spacing:-0.427500px;}
.ls98{letter-spacing:-0.426600px;}
.lse7{letter-spacing:-0.422400px;}
.ls8f{letter-spacing:-0.420420px;}
.lsd2{letter-spacing:-0.382800px;}
.ls75{letter-spacing:-0.378000px;}
.lscd{letter-spacing:-0.376200px;}
.ls53{letter-spacing:-0.369600px;}
.ls76{letter-spacing:-0.367200px;}
.ls40{letter-spacing:-0.363000px;}
.lsc6{letter-spacing:-0.360360px;}
.ls99{letter-spacing:-0.313200px;}
.lsf1{letter-spacing:-0.310200px;}
.lsf{letter-spacing:-0.307800px;}
.lsab{letter-spacing:-0.303600px;}
.lsae{letter-spacing:-0.302400px;}
.lsc1{letter-spacing:-0.300300px;}
.lsb8{letter-spacing:-0.291600px;}
.lsf2{letter-spacing:-0.277200px;}
.lsf4{letter-spacing:-0.270600px;}
.ls5f{letter-spacing:-0.257400px;}
.ls26{letter-spacing:-0.250800px;}
.ls4e{letter-spacing:-0.248400px;}
.ls9{letter-spacing:-0.245100px;}
.ls25{letter-spacing:-0.244200px;}
.lsaf{letter-spacing:-0.243000px;}
.ls82{letter-spacing:-0.240240px;}
.ls4d{letter-spacing:-0.237600px;}
.lsb7{letter-spacing:-0.232200px;}
.ls5d{letter-spacing:-0.198000px;}
.ls5c{letter-spacing:-0.191400px;}
.ls73{letter-spacing:-0.189000px;}
.ls5e{letter-spacing:-0.184800px;}
.ls79{letter-spacing:-0.183600px;}
.ls11{letter-spacing:-0.182400px;}
.lscc{letter-spacing:-0.180180px;}
.ls7a{letter-spacing:-0.178200px;}
.lsac{letter-spacing:-0.151800px;}
.ls4c{letter-spacing:-0.151200px;}
.lsce{letter-spacing:-0.145200px;}
.ls83{letter-spacing:-0.138600px;}
.ls6c{letter-spacing:-0.132000px;}
.ls62{letter-spacing:-0.129600px;}
.ls21{letter-spacing:-0.125400px;}
.ls1e{letter-spacing:-0.124200px;}
.ls61{letter-spacing:-0.121500px;}
.ls60{letter-spacing:-0.118800px;}
.lsd{letter-spacing:-0.085500px;}
.ls81{letter-spacing:-0.072600px;}
.lse8{letter-spacing:-0.070200px;}
.lsb{letter-spacing:-0.068400px;}
.ls28{letter-spacing:-0.066000px;}
.ls86{letter-spacing:-0.064800px;}
.lse{letter-spacing:-0.062700px;}
.ls85{letter-spacing:-0.060750px;}
.ls72{letter-spacing:-0.059400px;}
.ls84{letter-spacing:-0.048600px;}
.ls5b{letter-spacing:-0.019800px;}
.ls13{letter-spacing:-0.019200px;}
.lsc3{letter-spacing:-0.016200px;}
.ls15{letter-spacing:-0.014400px;}
.ls22{letter-spacing:-0.013200px;}
.ls87{letter-spacing:-0.012150px;}
.ls77{letter-spacing:-0.010800px;}
.ls14{letter-spacing:-0.009600px;}
.ls1f{letter-spacing:-0.008100px;}
.ls20{letter-spacing:-0.006600px;}
.ls8{letter-spacing:-0.005700px;}
.ls16{letter-spacing:-0.005400px;}
.ls12{letter-spacing:-0.004800px;}
.lsa5{letter-spacing:-0.004050px;}
.ls7{letter-spacing:0.000000px;}
.ls52{letter-spacing:0.005400px;}
.lsb4{letter-spacing:0.006600px;}
.ls1d{letter-spacing:0.010800px;}
.ls57{letter-spacing:0.013200px;}
.ls7f{letter-spacing:0.026400px;}
.lsc4{letter-spacing:0.033000px;}
.ls94{letter-spacing:0.039600px;}
.lsb2{letter-spacing:0.046200px;}
.lsde{letter-spacing:0.048600px;}
.ls31{letter-spacing:0.052800px;}
.ls3d{letter-spacing:0.054000px;}
.lsf3{letter-spacing:0.059400px;}
.lsc2{letter-spacing:0.060060px;}
.ls49{letter-spacing:0.092400px;}
.ls34{letter-spacing:0.099000px;}
.lsa7{letter-spacing:0.105600px;}
.ls69{letter-spacing:0.108000px;}
.ls33{letter-spacing:0.112200px;}
.ls8b{letter-spacing:0.113400px;}
.ls35{letter-spacing:0.118800px;}
.lsd1{letter-spacing:0.145200px;}
.ls74{letter-spacing:0.151200px;}
.lse5{letter-spacing:0.151800px;}
.lsb1{letter-spacing:0.165000px;}
.ls2b{letter-spacing:0.171600px;}
.ls19{letter-spacing:0.172800px;}
.ls9a{letter-spacing:0.178200px;}
.lsf6{letter-spacing:0.180180px;}
.lsef{letter-spacing:0.217800px;}
.lsea{letter-spacing:0.224400px;}
.ls3e{letter-spacing:0.226800px;}
.ls9e{letter-spacing:0.231000px;}
.ls66{letter-spacing:0.237600px;}
.lsc5{letter-spacing:0.238950px;}
.ls96{letter-spacing:0.240240px;}
.ls56{letter-spacing:0.270600px;}
.ls89{letter-spacing:0.277200px;}
.lsbb{letter-spacing:0.283800px;}
.ls1b{letter-spacing:0.290400px;}
.lsda{letter-spacing:0.291600px;}
.lsc{letter-spacing:0.296400px;}
.ls2e{letter-spacing:0.297000px;}
.ls65{letter-spacing:0.300000px;}
.ls71{letter-spacing:0.300300px;}
.lsd7{letter-spacing:0.340200px;}
.lsdd{letter-spacing:0.345600px;}
.lsd6{letter-spacing:0.348300px;}
.ls63{letter-spacing:0.349800px;}
.lsdc{letter-spacing:0.351000px;}
.ls32{letter-spacing:0.356400px;}
.lsc8{letter-spacing:0.360360px;}
.lse2{letter-spacing:0.360450px;}
.lsdf{letter-spacing:0.361800px;}
.lsfa{letter-spacing:0.369600px;}
.lsa6{letter-spacing:0.396000px;}
.ls2c{letter-spacing:0.409200px;}
.ls2{letter-spacing:0.410400px;}
.ls51{letter-spacing:0.415800px;}
.ls18{letter-spacing:0.416100px;}
.lsfc{letter-spacing:0.420420px;}
.ls4a{letter-spacing:0.448800px;}
.ls64{letter-spacing:0.455400px;}
.ls36{letter-spacing:0.468600px;}
.lsec{letter-spacing:0.469800px;}
.ls17{letter-spacing:0.473100px;}
.ls1a{letter-spacing:0.475200px;}
.lsc7{letter-spacing:0.480480px;}
.lsed{letter-spacing:0.480600px;}
.lsd9{letter-spacing:0.507600px;}
.ls6a{letter-spacing:0.529200px;}
.ls4{letter-spacing:0.530100px;}
.ls38{letter-spacing:0.534600px;}
.ls1{letter-spacing:0.535800px;}
.lsb6{letter-spacing:0.540540px;}
.ls1c{letter-spacing:0.587400px;}
.ls6{letter-spacing:0.592800px;}
.ls3f{letter-spacing:0.594000px;}
.ls7b{letter-spacing:0.640200px;}
.ls37{letter-spacing:0.646800px;}
.ls3c{letter-spacing:0.648000px;}
.ls39{letter-spacing:0.653400px;}
.ls3a{letter-spacing:0.656100px;}
.ls3b{letter-spacing:0.658800px;}
.ls68{letter-spacing:0.660000px;}
.ls2d{letter-spacing:0.712800px;}
.ls8c{letter-spacing:0.716850px;}
.ls8d{letter-spacing:0.718200px;}
.ls67{letter-spacing:0.772200px;}
.ls5{letter-spacing:0.775200px;}
.lsee{letter-spacing:0.818400px;}
.lsb3{letter-spacing:0.831600px;}
.ls6b{letter-spacing:0.837000px;}
.lsba{letter-spacing:0.891000px;}
.lsdb{letter-spacing:0.896400px;}
.ls7d{letter-spacing:0.930600px;}
.ls7c{letter-spacing:0.950400px;}
.ls3{letter-spacing:0.951900px;}
.lsa8{letter-spacing:0.955800px;}
.ls2f{letter-spacing:0.957000px;}
.lsf9{letter-spacing:1.009800px;}
.lsd8{letter-spacing:1.069200px;}
.ls8a{letter-spacing:1.074600px;}
.lsa0{letter-spacing:1.134000px;}
.ls30{letter-spacing:1.135200px;}
.lseb{letter-spacing:1.194600px;}
.ls0{letter-spacing:1.197000px;}
.ls50{letter-spacing:1.254000px;}
.ls9d{letter-spacing:1.313400px;}
.lsf8{letter-spacing:1.432200px;}
.ls9f{letter-spacing:1.491600px;}
.ls9c{letter-spacing:1.495800px;}
.ls4f{letter-spacing:1.669800px;}
.ls88{letter-spacing:1.676400px;}
.lsd0{letter-spacing:13.500000px;}
.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;}
}
.ws6f{word-spacing:-18.169800px;}
.wsaa{word-spacing:-17.450400px;}
.ws88{word-spacing:-17.034600px;}
.ws159{word-spacing:-16.849800px;}
.ws10b{word-spacing:-16.783800px;}
.ws45{word-spacing:-16.500000px;}
.wsc1{word-spacing:-16.493400px;}
.ws1f{word-spacing:-16.486800px;}
.ws70{word-spacing:-16.480200px;}
.ws12a{word-spacing:-16.434000px;}
.ws84{word-spacing:-16.368000px;}
.ws11f{word-spacing:-16.361400px;}
.wsea{word-spacing:-16.348200px;}
.wsa9{word-spacing:-16.315200px;}
.ws71{word-spacing:-16.302000px;}
.ws20{word-spacing:-16.249200px;}
.ws72{word-spacing:-16.242600px;}
.ws14c{word-spacing:-16.229400px;}
.ws11e{word-spacing:-16.123800px;}
.ws46{word-spacing:-15.945600px;}
.ws42{word-spacing:-15.741000px;}
.ws6e{word-spacing:-15.714600px;}
.ws6d{word-spacing:-15.701400px;}
.ws109{word-spacing:-15.582600px;}
.ws13b{word-spacing:-15.470400px;}
.wsbe{word-spacing:-15.417600px;}
.ws12c{word-spacing:-15.351600px;}
.ws0{word-spacing:-14.535000px;}
.ws24{word-spacing:-14.529300px;}
.ws8a{word-spacing:-14.029200px;}
.ws74{word-spacing:-13.505400px;}
.ws1b{word-spacing:-13.500000px;}
.ws1{word-spacing:-13.494600px;}
.ws8d{word-spacing:-13.316400px;}
.wseb{word-spacing:-13.197600px;}
.ws8b{word-spacing:-13.122000px;}
.ws100{word-spacing:-12.090540px;}
.ws118{word-spacing:-12.030480px;}
.ws15a{word-spacing:-11.970420px;}
.ws11a{word-spacing:-11.910360px;}
.ws86{word-spacing:-11.850300px;}
.wsc2{word-spacing:-11.790240px;}
.ws128{word-spacing:-11.610060px;}
.ws21{word-spacing:-11.550000px;}
.ws11c{word-spacing:-11.369820px;}
.wsab{word-spacing:-11.309760px;}
.ws10c{word-spacing:-11.249700px;}
.ws117{word-spacing:-11.189640px;}
.wsbc{word-spacing:-11.129580px;}
.wsff{word-spacing:-11.069520px;}
.wsdd{word-spacing:-10.829280px;}
.wsbf{word-spacing:-10.769220px;}
.ws146{word-spacing:-10.709160px;}
.ws11b{word-spacing:-10.704540px;}
.ws133{word-spacing:-10.485450px;}
.wsad{word-spacing:-10.125000px;}
.wsdf{word-spacing:-10.120950px;}
.ws1d{word-spacing:-10.116900px;}
.ws5e{word-spacing:-0.838200px;}
.wse3{word-spacing:-0.831600px;}
.ws3c{word-spacing:-0.778800px;}
.ws2d{word-spacing:-0.772200px;}
.ws149{word-spacing:-0.765600px;}
.wsb4{word-spacing:-0.726000px;}
.ws2e{word-spacing:-0.719400px;}
.wsa{word-spacing:-0.718200px;}
.wsf0{word-spacing:-0.712800px;}
.wsb6{word-spacing:-0.706200px;}
.ws9{word-spacing:-0.661200px;}
.ws97{word-spacing:-0.660000px;}
.wsd3{word-spacing:-0.658800px;}
.ws10{word-spacing:-0.655500px;}
.ws96{word-spacing:-0.653400px;}
.wsf5{word-spacing:-0.646800px;}
.wse{word-spacing:-0.644100px;}
.ws145{word-spacing:-0.620400px;}
.ws150{word-spacing:-0.607200px;}
.ws14b{word-spacing:-0.604800px;}
.ws38{word-spacing:-0.600600px;}
.wsa4{word-spacing:-0.599400px;}
.ws5{word-spacing:-0.598500px;}
.ws39{word-spacing:-0.594000px;}
.wsb{word-spacing:-0.592800px;}
.ws47{word-spacing:-0.587400px;}
.ws106{word-spacing:-0.545400px;}
.ws17{word-spacing:-0.541500px;}
.wsf4{word-spacing:-0.541200px;}
.ws2b{word-spacing:-0.540000px;}
.ws14{word-spacing:-0.535800px;}
.ws8e{word-spacing:-0.534600px;}
.wsc9{word-spacing:-0.528000px;}
.wsa0{word-spacing:-0.513000px;}
.ws105{word-spacing:-0.491400px;}
.ws4d{word-spacing:-0.481800px;}
.wsa8{word-spacing:-0.480600px;}
.wsc{word-spacing:-0.478800px;}
.wsa1{word-spacing:-0.475200px;}
.wsa6{word-spacing:-0.469800px;}
.ws76{word-spacing:-0.468600px;}
.wsf9{word-spacing:-0.464400px;}
.wscc{word-spacing:-0.462000px;}
.ws107{word-spacing:-0.432000px;}
.ws12d{word-spacing:-0.422400px;}
.wsfa{word-spacing:-0.421200px;}
.ws3{word-spacing:-0.416100px;}
.ws65{word-spacing:-0.415800px;}
.wsd2{word-spacing:-0.410400px;}
.ws91{word-spacing:-0.409200px;}
.ws12e{word-spacing:-0.402600px;}
.ws93{word-spacing:-0.396000px;}
.ws115{word-spacing:-0.363000px;}
.ws16{word-spacing:-0.359100px;}
.ws9c{word-spacing:-0.356400px;}
.ws114{word-spacing:-0.349800px;}
.ws13c{word-spacing:-0.330000px;}
.ws13d{word-spacing:-0.323400px;}
.ws50{word-spacing:-0.303600px;}
.wsa2{word-spacing:-0.302400px;}
.ws3b{word-spacing:-0.297000px;}
.ws4{word-spacing:-0.296400px;}
.wsa3{word-spacing:-0.291600px;}
.ws4f{word-spacing:-0.290400px;}
.wsc6{word-spacing:-0.283800px;}
.wsc5{word-spacing:-0.277200px;}
.ws37{word-spacing:-0.237600px;}
.wsd0{word-spacing:-0.232200px;}
.ws95{word-spacing:-0.231000px;}
.wsb0{word-spacing:-0.211200px;}
.ws32{word-spacing:-0.178200px;}
.ws18{word-spacing:-0.176700px;}
.wsb1{word-spacing:-0.171600px;}
.wsef{word-spacing:-0.125400px;}
.ws77{word-spacing:-0.118800px;}
.wsa5{word-spacing:-0.113400px;}
.ws90{word-spacing:-0.112200px;}
.wsee{word-spacing:-0.105600px;}
.ws158{word-spacing:-0.085800px;}
.ws7a{word-spacing:-0.059400px;}
.wsda{word-spacing:-0.054000px;}
.ws110{word-spacing:-0.052800px;}
.ws141{word-spacing:-0.046200px;}
.wsc0{word-spacing:-0.013200px;}
.ws126{word-spacing:-0.010800px;}
.ws19{word-spacing:-0.009600px;}
.wsb2{word-spacing:-0.006600px;}
.ws40{word-spacing:-0.005700px;}
.ws7{word-spacing:0.000000px;}
.ws5f{word-spacing:0.004800px;}
.ws1a{word-spacing:0.005400px;}
.ws12{word-spacing:0.005700px;}
.ws3a{word-spacing:0.006600px;}
.wsfe{word-spacing:0.010800px;}
.ws154{word-spacing:0.013200px;}
.ws15b{word-spacing:0.016200px;}
.ws120{word-spacing:0.052800px;}
.ws132{word-spacing:0.054000px;}
.ws2{word-spacing:0.057000px;}
.wsc4{word-spacing:0.059400px;}
.ws142{word-spacing:0.066000px;}
.wsb8{word-spacing:0.113400px;}
.ws2a{word-spacing:0.118800px;}
.ws144{word-spacing:0.124200px;}
.ws153{word-spacing:0.125400px;}
.ws111{word-spacing:0.145200px;}
.ws140{word-spacing:0.158400px;}
.ws13f{word-spacing:0.165000px;}
.ws130{word-spacing:0.171600px;}
.wsfc{word-spacing:0.172800px;}
.ws7e{word-spacing:0.178200px;}
.wsfb{word-spacing:0.183600px;}
.wsf1{word-spacing:0.184800px;}
.wse4{word-spacing:0.224400px;}
.ws30{word-spacing:0.231000px;}
.ws2f{word-spacing:0.237600px;}
.wse7{word-spacing:0.243000px;}
.wsc8{word-spacing:0.244200px;}
.wsfd{word-spacing:0.248400px;}
.ws123{word-spacing:0.257400px;}
.ws1e{word-spacing:0.277200px;}
.ws116{word-spacing:0.283800px;}
.wsc7{word-spacing:0.297000px;}
.wscf{word-spacing:0.302400px;}
.wse1{word-spacing:0.303600px;}
.ws156{word-spacing:0.307800px;}
.wsdc{word-spacing:0.343200px;}
.wsf8{word-spacing:0.351000px;}
.ws81{word-spacing:0.356400px;}
.ws5b{word-spacing:0.363000px;}
.wse2{word-spacing:0.369600px;}
.wsca{word-spacing:0.415800px;}
.wsf7{word-spacing:0.421200px;}
.ws6{word-spacing:0.421800px;}
.ws33{word-spacing:0.422400px;}
.wsec{word-spacing:0.432000px;}
.ws12f{word-spacing:0.448800px;}
.ws55{word-spacing:0.475200px;}
.wscd{word-spacing:0.480600px;}
.ws98{word-spacing:0.481800px;}
.ws48{word-spacing:0.521400px;}
.ws14e{word-spacing:0.528000px;}
.ws6a{word-spacing:0.534600px;}
.wsa7{word-spacing:0.540000px;}
.ws3f{word-spacing:0.541200px;}
.ws4e{word-spacing:0.547800px;}
.ws108{word-spacing:0.599400px;}
.ws92{word-spacing:0.600600px;}
.wscb{word-spacing:0.607200px;}
.ws157{word-spacing:0.653400px;}
.ws62{word-spacing:0.658800px;}
.ws7f{word-spacing:0.660000px;}
.ws11{word-spacing:0.661200px;}
.wsd5{word-spacing:0.664200px;}
.ws14a{word-spacing:0.666600px;}
.ws61{word-spacing:0.669600px;}
.ws54{word-spacing:0.712800px;}
.ws6b{word-spacing:0.718200px;}
.wsb3{word-spacing:0.719400px;}
.ws80{word-spacing:0.726000px;}
.wsd8{word-spacing:0.777600px;}
.ws3e{word-spacing:0.778800px;}
.wsd9{word-spacing:0.783000px;}
.ws113{word-spacing:0.785400px;}
.ws148{word-spacing:0.798600px;}
.ws6c{word-spacing:0.837000px;}
.ws8{word-spacing:0.837900px;}
.ws124{word-spacing:0.838200px;}
.ws13{word-spacing:0.843600px;}
.ws104{word-spacing:0.844800px;}
.ws155{word-spacing:0.851400px;}
.ws119{word-spacing:0.864600px;}
.ws15{word-spacing:0.894900px;}
.wse5{word-spacing:0.896400px;}
.wsf6{word-spacing:0.897600px;}
.wsd6{word-spacing:0.901800px;}
.ws112{word-spacing:0.904200px;}
.ws4c{word-spacing:0.907200px;}
.ws135{word-spacing:0.955800px;}
.ws51{word-spacing:0.957000px;}
.ws28{word-spacing:0.957600px;}
.wsdb{word-spacing:0.961200px;}
.ws5c{word-spacing:0.963600px;}
.wsaf{word-spacing:0.970200px;}
.ws136{word-spacing:0.972000px;}
.ws127{word-spacing:1.015200px;}
.ws125{word-spacing:1.016400px;}
.ws9d{word-spacing:1.020600px;}
.ws3d{word-spacing:1.023000px;}
.ws27{word-spacing:1.026000px;}
.ws13a{word-spacing:1.036200px;}
.wsb9{word-spacing:1.074600px;}
.wsb5{word-spacing:1.075800px;}
.ws66{word-spacing:1.080000px;}
.ws94{word-spacing:1.082400px;}
.wsd{word-spacing:1.083000px;}
.ws69{word-spacing:1.085400px;}
.ws22{word-spacing:1.089000px;}
.ws143{word-spacing:1.134000px;}
.ws5d{word-spacing:1.135200px;}
.ws29{word-spacing:1.139400px;}
.ws59{word-spacing:1.141800px;}
.ws13e{word-spacing:1.144800px;}
.ws5a{word-spacing:1.161600px;}
.ws137{word-spacing:1.193400px;}
.ws31{word-spacing:1.194600px;}
.wse6{word-spacing:1.198800px;}
.ws8f{word-spacing:1.201200px;}
.ws9b{word-spacing:1.204200px;}
.ws15d{word-spacing:1.247400px;}
.ws82{word-spacing:1.254000px;}
.wsce{word-spacing:1.258200px;}
.ws43{word-spacing:1.260600px;}
.ws67{word-spacing:1.263600px;}
.ws139{word-spacing:1.269000px;}
.ws53{word-spacing:1.313400px;}
.ws68{word-spacing:1.317600px;}
.ws36{word-spacing:1.320000px;}
.wsd7{word-spacing:1.323000px;}
.ws79{word-spacing:1.326600px;}
.ws138{word-spacing:1.344600px;}
.ws10a{word-spacing:1.359600px;}
.ws15c{word-spacing:1.372800px;}
.ws34{word-spacing:1.379400px;}
.ws103{word-spacing:1.386000px;}
.wse9{word-spacing:1.392600px;}
.wsf{word-spacing:1.436400px;}
.ws52{word-spacing:1.438800px;}
.ws102{word-spacing:1.445400px;}
.ws129{word-spacing:1.465200px;}
.wsf3{word-spacing:1.491600px;}
.ws35{word-spacing:1.498200px;}
.ws58{word-spacing:1.504800px;}
.ws87{word-spacing:1.511400px;}
.ws57{word-spacing:1.518000px;}
.ws4a{word-spacing:1.531200px;}
.ws99{word-spacing:1.557600px;}
.ws75{word-spacing:1.564200px;}
.wsf2{word-spacing:1.570800px;}
.ws49{word-spacing:1.577400px;}
.ws14f{word-spacing:1.610400px;}
.ws78{word-spacing:1.617000px;}
.ws56{word-spacing:1.623600px;}
.ws2c{word-spacing:1.676400px;}
.ws152{word-spacing:1.683000px;}
.ws9a{word-spacing:1.735800px;}
.ws12b{word-spacing:1.749000px;}
.ws11d{word-spacing:1.900800px;}
.ws151{word-spacing:2.224200px;}
.ws121{word-spacing:2.655300px;}
.wsac{word-spacing:2.677050px;}
.ws8c{word-spacing:2.829300px;}
.ws73{word-spacing:2.838000px;}
.ws89{word-spacing:3.209550px;}
.ws26{word-spacing:3.310950px;}
.ws10f{word-spacing:3.350100px;}
.ws25{word-spacing:3.369000px;}
.ws1c{word-spacing:3.370800px;}
.wsed{word-spacing:3.387150px;}
.ws101{word-spacing:3.392400px;}
.wsae{word-spacing:3.393450px;}
.wse0{word-spacing:3.394200px;}
.ws10e{word-spacing:3.406500px;}
.ws122{word-spacing:3.417150px;}
.ws7b{word-spacing:3.603600px;}
.wse8{word-spacing:3.781800px;}
.ws4b{word-spacing:4.282200px;}
.wsde{word-spacing:4.290000px;}
.ws147{word-spacing:4.292100px;}
.wsc3{word-spacing:4.330050px;}
.ws131{word-spacing:4.475400px;}
.ws44{word-spacing:4.731150px;}
.wsbd{word-spacing:5.130000px;}
.ws85{word-spacing:5.315400px;}
.ws7d{word-spacing:5.636400px;}
.ws7c{word-spacing:5.643000px;}
.ws14d{word-spacing:6.449460px;}
.ws10d{word-spacing:6.569820px;}
.wsd4{word-spacing:8.283600px;}
.ws9f{word-spacing:8.461800px;}
.ws9e{word-spacing:8.467200px;}
.ws134{word-spacing:8.829000px;}
.wsbb{word-spacing:9.001800px;}
.wsba{word-spacing:9.007200px;}
.wsd1{word-spacing:9.012600px;}
.wsb7{word-spacing:9.050400px;}
.ws60{word-spacing:35.348400px;}
.ws23{word-spacing:35.697600px;}
.ws41{word-spacing:36.001800px;}
.ws63{word-spacing:36.007200px;}
.ws83{word-spacing:36.120600px;}
.ws64{word-spacing:36.153000px;}
._c{margin-left:-36.622800px;}
._b{margin-left:-34.790700px;}
._13{margin-left:-10.627200px;}
._14{margin-left:-9.576900px;}
._d{margin-left:-8.514000px;}
._1{margin-left:-6.959700px;}
._15{margin-left:-5.943000px;}
._6{margin-left:-4.696800px;}
._4{margin-left:-3.528300px;}
._0{margin-left:-2.337000px;}
._2{margin-left:-1.179900px;}
._5{width:1.288200px;}
._3{width:2.405400px;}
._12{width:3.895200px;}
._f{width:7.149600px;}
._10{width:9.666000px;}
._11{width:12.533400px;}
._9{width:14.708700px;}
._e{width:15.734400px;}
._16{width:19.140600px;}
._7{width:47.750400px;}
._a{width:546.742500px;}
._8{width:1197.475200px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:40.500000px;}
.fs7{font-size:46.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:49.500000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y10b{bottom:48.732000px;}
.y220{bottom:48.749400px;}
.y25b{bottom:48.764400px;}
.y1a2{bottom:48.818400px;}
.y203{bottom:48.838950px;}
.y122{bottom:48.852600px;}
.y7a{bottom:48.864750px;}
.y241{bottom:48.865800px;}
.yc7{bottom:48.869400px;}
.y149{bottom:48.953400px;}
.y1bf{bottom:48.958800px;}
.y4d{bottom:48.960000px;}
.y166{bottom:48.972000px;}
.y17e{bottom:48.973800px;}
.yea{bottom:49.048800px;}
.y20{bottom:49.100625px;}
.ya2{bottom:49.108800px;}
.y10a{bottom:62.982600px;}
.y21f{bottom:62.999400px;}
.y25a{bottom:63.014400px;}
.y1a1{bottom:63.069000px;}
.y202{bottom:63.089550px;}
.y121{bottom:63.103200px;}
.yc6{bottom:63.113550px;}
.y79{bottom:63.115350px;}
.y240{bottom:63.116400px;}
.y148{bottom:63.204000px;}
.y1be{bottom:63.209400px;}
.y165{bottom:63.222600px;}
.y17d{bottom:63.224400px;}
.ye9{bottom:63.299400px;}
.ya1{bottom:63.359400px;}
.y1f{bottom:64.100175px;}
.y109{bottom:77.233200px;}
.y21e{bottom:77.250000px;}
.y259{bottom:77.263800px;}
.y1a0{bottom:77.319600px;}
.y201{bottom:77.336400px;}
.y120{bottom:77.353800px;}
.yc5{bottom:77.364150px;}
.y78{bottom:77.365950px;}
.y23f{bottom:77.367000px;}
.y147{bottom:77.454600px;}
.y1bd{bottom:77.460000px;}
.y1e9{bottom:77.462550px;}
.y164{bottom:77.473200px;}
.y17c{bottom:77.474400px;}
.ye8{bottom:77.545950px;}
.ya0{bottom:77.610000px;}
.y1e{bottom:79.099725px;}
.y46{bottom:83.994750px;}
.y108{bottom:91.483800px;}
.y258{bottom:91.514400px;}
.y19f{bottom:91.570200px;}
.y200{bottom:91.587000px;}
.y11f{bottom:91.604400px;}
.yc4{bottom:91.614750px;}
.y77{bottom:91.616550px;}
.y23e{bottom:91.617600px;}
.y146{bottom:91.705200px;}
.y1e8{bottom:91.713150px;}
.y163{bottom:91.723800px;}
.y17b{bottom:91.725000px;}
.ye7{bottom:91.796550px;}
.y1d{bottom:94.099275px;}
.y45{bottom:101.245500px;}
.y107{bottom:105.734400px;}
.y257{bottom:105.765000px;}
.y19e{bottom:105.820800px;}
.y1ff{bottom:105.837600px;}
.y11e{bottom:105.850800px;}
.yc3{bottom:105.865350px;}
.y76{bottom:105.867150px;}
.y23d{bottom:105.868200px;}
.y145{bottom:105.955800px;}
.y1e7{bottom:105.963750px;}
.y162{bottom:105.974400px;}
.ye6{bottom:106.047150px;}
.y1c{bottom:109.098825px;}
.y1bc{bottom:117.864150px;}
.y9f{bottom:117.865800px;}
.y21d{bottom:117.870600px;}
.y44{bottom:118.496250px;}
.y106{bottom:119.977650px;}
.y19d{bottom:120.071400px;}
.y1fe{bottom:120.088200px;}
.y11d{bottom:120.101400px;}
.yc2{bottom:120.115950px;}
.y75{bottom:120.117750px;}
.y23c{bottom:120.118800px;}
.y144{bottom:120.206400px;}
.y1e6{bottom:120.214350px;}
.y161{bottom:120.221400px;}
.ye5{bottom:120.297750px;}
.y1b{bottom:124.098375px;}
.y105{bottom:134.228250px;}
.y19c{bottom:134.322000px;}
.y1fd{bottom:134.338800px;}
.y11c{bottom:134.352000px;}
.yc1{bottom:134.366550px;}
.y74{bottom:134.368350px;}
.y23b{bottom:134.369400px;}
.y143{bottom:134.457000px;}
.y1e5{bottom:134.464950px;}
.y160{bottom:134.472000px;}
.ye4{bottom:134.548350px;}
.y1bb{bottom:135.114900px;}
.y9e{bottom:135.116550px;}
.y21c{bottom:135.121350px;}
.y17a{bottom:135.134400px;}
.y43{bottom:135.747000px;}
.y1a{bottom:139.097925px;}
.y104{bottom:148.478850px;}
.y19b{bottom:148.572600px;}
.y1fc{bottom:148.589400px;}
.y11b{bottom:148.602600px;}
.yc0{bottom:148.617150px;}
.y73{bottom:148.618950px;}
.y23a{bottom:148.620000px;}
.y142{bottom:148.707600px;}
.y1e4{bottom:148.715550px;}
.y15f{bottom:148.722600px;}
.ye3{bottom:148.798950px;}
.y1ba{bottom:152.365650px;}
.y9d{bottom:152.367300px;}
.y21b{bottom:152.372100px;}
.y179{bottom:152.382000px;}
.y42{bottom:152.997750px;}
.y19{bottom:154.097475px;}
.y103{bottom:162.729450px;}
.y19a{bottom:162.823200px;}
.y1fb{bottom:162.840000px;}
.y11a{bottom:162.853200px;}
.ybf{bottom:162.867750px;}
.y72{bottom:162.869550px;}
.y141{bottom:162.958200px;}
.y1e3{bottom:162.966150px;}
.y15e{bottom:162.973200px;}
.ye2{bottom:163.049550px;}
.y18{bottom:169.097025px;}
.y1b9{bottom:169.616400px;}
.y9c{bottom:169.618050px;}
.y21a{bottom:169.622850px;}
.y178{bottom:169.632750px;}
.y41{bottom:170.248500px;}
.y102{bottom:176.980050px;}
.y199{bottom:177.073800px;}
.y119{bottom:177.103800px;}
.ybe{bottom:177.118350px;}
.y71{bottom:177.118800px;}
.y140{bottom:177.208800px;}
.y1e2{bottom:177.216750px;}
.y15d{bottom:177.223800px;}
.ye1{bottom:177.300000px;}
.y17{bottom:184.096575px;}
.y1b8{bottom:186.867150px;}
.y9b{bottom:186.868800px;}
.y219{bottom:186.873600px;}
.y177{bottom:186.883500px;}
.y239{bottom:186.884250px;}
.y40{bottom:187.499250px;}
.y101{bottom:191.230650px;}
.y198{bottom:191.324400px;}
.y118{bottom:191.354400px;}
.ybd{bottom:191.368950px;}
.y70{bottom:191.369400px;}
.y13f{bottom:191.459400px;}
.y1e1{bottom:191.467350px;}
.y15c{bottom:191.474400px;}
.y16{bottom:199.096125px;}
.y238{bottom:204.112050px;}
.y1b7{bottom:204.117900px;}
.y9a{bottom:204.119550px;}
.y218{bottom:204.124350px;}
.y1fa{bottom:204.132000px;}
.y176{bottom:204.134250px;}
.y3f{bottom:204.739200px;}
.y100{bottom:205.481250px;}
.y197{bottom:205.573200px;}
.y117{bottom:205.603200px;}
.ybc{bottom:205.619550px;}
.y6f{bottom:205.620000px;}
.y13e{bottom:205.710000px;}
.y1e0{bottom:205.717950px;}
.y15b{bottom:205.725000px;}
.y15{bottom:214.095675px;}
.yff{bottom:219.731850px;}
.y196{bottom:219.823800px;}
.y116{bottom:219.853800px;}
.ybb{bottom:219.871650px;}
.y1df{bottom:219.968550px;}
.y237{bottom:221.362800px;}
.y1b6{bottom:221.368650px;}
.y99{bottom:221.370300px;}
.y217{bottom:221.375100px;}
.y256{bottom:221.379000px;}
.ye0{bottom:221.382750px;}
.y3e{bottom:221.989950px;}
.y14{bottom:229.095225px;}
.yfe{bottom:233.982450px;}
.y195{bottom:234.074400px;}
.y115{bottom:234.104400px;}
.yba{bottom:234.122250px;}
.y1de{bottom:234.219150px;}
.y236{bottom:238.613550px;}
.y1b5{bottom:238.619400px;}
.y98{bottom:238.621050px;}
.y216{bottom:238.625850px;}
.y6e{bottom:238.627500px;}
.y255{bottom:238.629750px;}
.ydf{bottom:238.633500px;}
.y3d{bottom:239.240700px;}
.yfd{bottom:248.233050px;}
.y194{bottom:248.325000px;}
.y114{bottom:248.355000px;}
.yb9{bottom:248.371500px;}
.y1dd{bottom:248.469750px;}
.y235{bottom:255.864300px;}
.y1b4{bottom:255.870150px;}
.y97{bottom:255.871800px;}
.y215{bottom:255.876600px;}
.y6d{bottom:255.878250px;}
.y254{bottom:255.880500px;}
.yde{bottom:255.884250px;}
.y3c{bottom:256.491450px;}
.y13{bottom:261.105000px;}
.yfc{bottom:262.482300px;}
.yb8{bottom:262.620750px;}
.y1dc{bottom:262.720350px;}
.y234{bottom:273.115050px;}
.y13d{bottom:273.116700px;}
.y1b3{bottom:273.120900px;}
.y1f9{bottom:273.122250px;}
.y96{bottom:273.122550px;}
.y15a{bottom:273.124500px;}
.y214{bottom:273.127350px;}
.y6c{bottom:273.129000px;}
.y175{bottom:273.129900px;}
.y253{bottom:273.131250px;}
.ydd{bottom:273.134550px;}
.y3b{bottom:273.742200px;}
.yfb{bottom:276.732900px;}
.yb7{bottom:276.870000px;}
.y1db{bottom:276.970950px;}
.y233{bottom:290.365800px;}
.y13c{bottom:290.367450px;}
.y1b2{bottom:290.371650px;}
.y1f8{bottom:290.373000px;}
.y95{bottom:290.373300px;}
.y193{bottom:290.374500px;}
.y159{bottom:290.375250px;}
.y213{bottom:290.378100px;}
.y6b{bottom:290.379750px;}
.y174{bottom:290.380650px;}
.y252{bottom:290.382000px;}
.ydc{bottom:290.385300px;}
.yfa{bottom:290.983500px;}
.y3a{bottom:290.992950px;}
.y1da{bottom:291.221550px;}
.y12{bottom:297.111900px;}
.yf9{bottom:305.234100px;}
.y1d9{bottom:305.472150px;}
.y232{bottom:307.616550px;}
.y13b{bottom:307.618200px;}
.y1b1{bottom:307.622400px;}
.y1f7{bottom:307.623750px;}
.y94{bottom:307.624050px;}
.y192{bottom:307.625250px;}
.y158{bottom:307.626000px;}
.y212{bottom:307.628850px;}
.y6a{bottom:307.630500px;}
.y173{bottom:307.631400px;}
.y251{bottom:307.632750px;}
.y39{bottom:308.243700px;}
.y11{bottom:312.111450px;}
.ydb{bottom:316.260600px;}
.yf8{bottom:319.484700px;}
.y1d8{bottom:319.722750px;}
.y231{bottom:324.867300px;}
.y13a{bottom:324.868950px;}
.y1b0{bottom:324.873150px;}
.y1f6{bottom:324.874500px;}
.y93{bottom:324.874800px;}
.y191{bottom:324.876000px;}
.y157{bottom:324.876750px;}
.y211{bottom:324.879600px;}
.y69{bottom:324.881250px;}
.y172{bottom:324.882150px;}
.y250{bottom:324.883500px;}
.y38{bottom:325.494450px;}
.yf7{bottom:333.731400px;}
.y1d7{bottom:333.973350px;}
.y10{bottom:337.745775px;}
.y230{bottom:342.118050px;}
.y139{bottom:342.119700px;}
.y1af{bottom:342.123900px;}
.y1f5{bottom:342.125250px;}
.y92{bottom:342.125550px;}
.y190{bottom:342.126750px;}
.y156{bottom:342.127500px;}
.y210{bottom:342.130350px;}
.y68{bottom:342.132000px;}
.y171{bottom:342.132900px;}
.y24f{bottom:342.134250px;}
.y113{bottom:342.136350px;}
.y37{bottom:342.745200px;}
.yf6{bottom:347.982000px;}
.y1d6{bottom:348.223950px;}
.yf{bottom:352.745325px;}
.y22f{bottom:359.368800px;}
.y138{bottom:359.370450px;}
.y1ae{bottom:359.374650px;}
.y24e{bottom:359.375400px;}
.y1f4{bottom:359.376000px;}
.y91{bottom:359.376300px;}
.y18f{bottom:359.377500px;}
.y155{bottom:359.378250px;}
.y20f{bottom:359.381100px;}
.y67{bottom:359.382750px;}
.y170{bottom:359.383650px;}
.yda{bottom:359.384850px;}
.y112{bottom:359.387100px;}
.y36{bottom:359.995950px;}
.yf5{bottom:362.232600px;}
.y1d5{bottom:362.474550px;}
.ye{bottom:367.744875px;}
.yf4{bottom:376.483200px;}
.y137{bottom:376.621200px;}
.y1ad{bottom:376.625400px;}
.y24d{bottom:376.626150px;}
.y1f3{bottom:376.626750px;}
.y90{bottom:376.627050px;}
.y18e{bottom:376.628250px;}
.y154{bottom:376.629000px;}
.y20e{bottom:376.630200px;}
.y66{bottom:376.633500px;}
.yd9{bottom:376.633950px;}
.y16f{bottom:376.634400px;}
.y111{bottom:376.636200px;}
.y1d4{bottom:376.725150px;}
.y35{bottom:377.246700px;}
.yd{bottom:382.744425px;}
.y22e{bottom:385.244100px;}
.yf3{bottom:390.733800px;}
.y1d3{bottom:390.975750px;}
.y136{bottom:393.871950px;}
.y1ac{bottom:393.876150px;}
.y24c{bottom:393.876900px;}
.y1f2{bottom:393.877500px;}
.y8f{bottom:393.877800px;}
.y18d{bottom:393.879000px;}
.y20d{bottom:393.879300px;}
.y153{bottom:393.879750px;}
.yd8{bottom:393.883050px;}
.y65{bottom:393.884250px;}
.y16e{bottom:393.885150px;}
.y110{bottom:393.885300px;}
.y34{bottom:394.497450px;}
.yc{bottom:397.743975px;}
.yf2{bottom:404.984400px;}
.y1d2{bottom:405.225000px;}
.y135{bottom:411.122700px;}
.y1ab{bottom:411.126900px;}
.y24b{bottom:411.127650px;}
.y1f1{bottom:411.128250px;}
.y20c{bottom:411.128400px;}
.y8e{bottom:411.128550px;}
.y64{bottom:411.129750px;}
.y152{bottom:411.130500px;}
.yd7{bottom:411.132150px;}
.yb6{bottom:411.132750px;}
.y10f{bottom:411.134400px;}
.y16d{bottom:411.135900px;}
.y33{bottom:411.748200px;}
.yb{bottom:412.743525px;}
.yf1{bottom:419.235000px;}
.ya{bottom:427.743075px;}
.y22d{bottom:428.368500px;}
.y134{bottom:428.373450px;}
.y1aa{bottom:428.376000px;}
.y24a{bottom:428.376750px;}
.y20b{bottom:428.377500px;}
.y1f0{bottom:428.379000px;}
.y8d{bottom:428.379300px;}
.y63{bottom:428.380500px;}
.yd6{bottom:428.381250px;}
.yb5{bottom:428.383500px;}
.y32{bottom:428.998950px;}
.y9{bottom:442.742625px;}
.y22c{bottom:445.619250px;}
.y133{bottom:445.624200px;}
.y1a9{bottom:445.626750px;}
.y249{bottom:445.627500px;}
.y20a{bottom:445.628250px;}
.y1ef{bottom:445.629750px;}
.y8c{bottom:445.630050px;}
.y62{bottom:445.631250px;}
.yd5{bottom:445.632000px;}
.yb4{bottom:445.634250px;}
.y31{bottom:446.249700px;}
.y1d1{bottom:454.259250px;}
.y8{bottom:457.742175px;}
.y22b{bottom:462.870000px;}
.y132{bottom:462.874950px;}
.y1a8{bottom:462.877500px;}
.y248{bottom:462.878250px;}
.y209{bottom:462.879000px;}
.yb3{bottom:462.879750px;}
.y1ee{bottom:462.880500px;}
.y8b{bottom:462.880800px;}
.y61{bottom:462.882000px;}
.yd4{bottom:462.882750px;}
.yf0{bottom:462.883500px;}
.y1d0{bottom:471.504000px;}
.y30{bottom:472.125000px;}
.y7{bottom:472.741725px;}
.y22a{bottom:480.120750px;}
.y131{bottom:480.125700px;}
.y1a7{bottom:480.128250px;}
.y247{bottom:480.129000px;}
.y208{bottom:480.129750px;}
.yb2{bottom:480.130500px;}
.y1ed{bottom:480.131250px;}
.y8a{bottom:480.131550px;}
.y60{bottom:480.132750px;}
.yd3{bottom:480.133500px;}
.yef{bottom:480.134250px;}
.y6{bottom:487.741275px;}
.y1cf{bottom:488.754750px;}
.y229{bottom:497.371500px;}
.y130{bottom:497.376450px;}
.y1a6{bottom:497.379000px;}
.y246{bottom:497.379750px;}
.y207{bottom:497.380500px;}
.yb1{bottom:497.381250px;}
.y1ec{bottom:497.382000px;}
.y5f{bottom:497.383500px;}
.yd2{bottom:497.384250px;}
.y5{bottom:502.740825px;}
.y1ce{bottom:506.005500px;}
.y89{bottom:506.006850px;}
.y228{bottom:514.622250px;}
.y151{bottom:514.625550px;}
.y12f{bottom:514.627200px;}
.yd1{bottom:514.629750px;}
.y245{bottom:514.630500px;}
.y206{bottom:514.631250px;}
.yb0{bottom:514.632000px;}
.y1eb{bottom:514.632750px;}
.y5e{bottom:514.634250px;}
.y4{bottom:517.740375px;}
.y1cd{bottom:523.256250px;}
.y2f{bottom:523.392600px;}
.y227{bottom:531.873000px;}
.y150{bottom:531.876300px;}
.y12e{bottom:531.877950px;}
.yd0{bottom:531.880500px;}
.y244{bottom:531.881250px;}
.y205{bottom:531.882000px;}
.yaf{bottom:531.882750px;}
.y1ea{bottom:531.883500px;}
.y18c{bottom:531.884250px;}
.y5d{bottom:531.887550px;}
.y3{bottom:532.739925px;}
.y1cc{bottom:540.507000px;}
.y2e{bottom:547.633200px;}
.y2{bottom:547.739475px;}
.y226{bottom:549.123750px;}
.y14f{bottom:549.127050px;}
.y12d{bottom:549.128700px;}
.y88{bottom:549.131250px;}
.y243{bottom:549.132000px;}
.y204{bottom:549.132750px;}
.yae{bottom:549.133500px;}
.y18b{bottom:549.134250px;}
.y5c{bottom:549.136650px;}
.y1cb{bottom:557.757750px;}
.y2d{bottom:561.883800px;}
.y225{bottom:566.374500px;}
.y14e{bottom:566.377800px;}
.y12c{bottom:566.379450px;}
.y87{bottom:566.382000px;}
.y242{bottom:566.382750px;}
.y18a{bottom:566.383500px;}
.yad{bottom:566.384250px;}
.y5b{bottom:566.385750px;}
.y1ca{bottom:575.008500px;}
.y2c{bottom:576.134400px;}
.y1{bottom:577.740000px;}
.y224{bottom:583.625250px;}
.y10e{bottom:583.626900px;}
.y14d{bottom:583.628550px;}
.y12b{bottom:583.630200px;}
.yac{bottom:583.631250px;}
.y86{bottom:583.632750px;}
.yee{bottom:583.633500px;}
.y189{bottom:583.634250px;}
.y5a{bottom:583.634850px;}
.y2b{bottom:590.385000px;}
.y1c9{bottom:592.259250px;}
.y223{bottom:600.876000px;}
.y10d{bottom:600.877650px;}
.y14c{bottom:600.879300px;}
.y12a{bottom:600.880950px;}
.yab{bottom:600.882000px;}
.y85{bottom:600.883500px;}
.y59{bottom:600.883950px;}
.yed{bottom:600.884250px;}
.y188{bottom:600.887700px;}
.y1c8{bottom:609.503850px;}
.y222{bottom:618.126750px;}
.y10c{bottom:618.128400px;}
.yec{bottom:618.129750px;}
.y14b{bottom:618.130050px;}
.y129{bottom:618.131700px;}
.yaa{bottom:618.132750px;}
.y58{bottom:618.133050px;}
.y84{bottom:618.134250px;}
.y187{bottom:618.136800px;}
.y1c7{bottom:626.754600px;}
.y221{bottom:635.377500px;}
.y83{bottom:635.379000px;}
.ycf{bottom:635.379150px;}
.yeb{bottom:635.380500px;}
.y128{bottom:635.380800px;}
.y1a5{bottom:635.381250px;}
.y57{bottom:635.382150px;}
.y16c{bottom:635.382450px;}
.ya9{bottom:635.383500px;}
.y186{bottom:635.385900px;}
.y14a{bottom:644.005350px;}
.y4c{bottom:652.590450px;}
.yce{bottom:652.628250px;}
.y82{bottom:652.629750px;}
.y127{bottom:652.629900px;}
.y56{bottom:652.631250px;}
.y1a4{bottom:652.632000px;}
.y16b{bottom:652.633200px;}
.y185{bottom:652.633500px;}
.ya8{bottom:652.634250px;}
.y1c6{bottom:661.256100px;}
.ycd{bottom:669.879000px;}
.y81{bottom:669.880500px;}
.y126{bottom:669.880650px;}
.y55{bottom:669.882000px;}
.ya7{bottom:669.882750px;}
.y16a{bottom:669.883950px;}
.y184{bottom:669.884250px;}
.y28{bottom:673.588200px;}
.y4b{bottom:673.590675px;}
.y1c5{bottom:678.505200px;}
.ycc{bottom:687.129750px;}
.y80{bottom:687.131250px;}
.y125{bottom:687.131400px;}
.y54{bottom:687.132750px;}
.ya6{bottom:687.133500px;}
.y169{bottom:687.134700px;}
.y183{bottom:687.139650px;}
.y27{bottom:687.838800px;}
.y4a{bottom:688.590225px;}
.y1c4{bottom:695.755950px;}
.y26{bottom:702.089400px;}
.ycb{bottom:704.380500px;}
.y7f{bottom:704.382000px;}
.y124{bottom:704.382150px;}
.y53{bottom:704.383500px;}
.ya5{bottom:704.384250px;}
.y168{bottom:704.385450px;}
.y182{bottom:704.388750px;}
.y49{bottom:709.590450px;}
.y1c3{bottom:713.006700px;}
.y25{bottom:716.340000px;}
.yca{bottom:721.631250px;}
.y7e{bottom:721.632750px;}
.ya4{bottom:721.632900px;}
.y52{bottom:721.634250px;}
.y181{bottom:721.637850px;}
.y48{bottom:724.590000px;}
.y1c2{bottom:730.257450px;}
.y167{bottom:730.260750px;}
.y24{bottom:734.355000px;}
.yc9{bottom:738.882000px;}
.y7d{bottom:738.883500px;}
.ya3{bottom:738.883650px;}
.y51{bottom:738.884400px;}
.y180{bottom:738.886950px;}
.y1c1{bottom:747.508200px;}
.y47{bottom:749.700000px;}
.yc8{bottom:756.132750px;}
.y7c{bottom:756.134250px;}
.y50{bottom:756.134400px;}
.y17f{bottom:756.136050px;}
.y1c0{bottom:764.758950px;}
.y7b{bottom:773.383500px;}
.y4f{bottom:773.385150px;}
.y1a3{bottom:773.385900px;}
.y23{bottom:780.105000px;}
.y123{bottom:782.009700px;}
.y4e{bottom:790.634250px;}
.y2a{bottom:792.885000px;}
.y22{bottom:804.105000px;}
.y29{bottom:807.885000px;}
.y21{bottom:855.105150px;}
.h4{height:51.216000px;}
.h7{height:57.618000px;}
.h33{height:57.625200px;}
.h8{height:57.627600px;}
.h1d{height:57.634200px;}
.h18{height:58.530000px;}
.hc{height:58.536000px;}
.h1c{height:58.536600px;}
.h2f{height:58.538400px;}
.h3d{height:58.540200px;}
.h14{height:58.540800px;}
.h11{height:58.541400px;}
.h22{height:58.543200px;}
.h24{height:58.546200px;}
.h2a{height:58.550400px;}
.h3c{height:58.551000px;}
.h1f{height:58.551600px;}
.h23{height:58.552800px;}
.h19{height:58.561800px;}
.h26{height:58.562400px;}
.h20{height:58.565400px;}
.h38{height:58.585800px;}
.h2{height:60.819000px;}
.h3{height:61.788000px;}
.h9{height:70.422000px;}
.hd{height:70.425000px;}
.h16{height:70.431000px;}
.h30{height:71.056800px;}
.hf{height:71.065200px;}
.h35{height:71.071800px;}
.h39{height:71.075400px;}
.h1a{height:71.076000px;}
.h1b{height:71.077200px;}
.he{height:71.077800px;}
.h29{height:71.078400px;}
.h1e{height:71.080800px;}
.h12{height:71.081400px;}
.h15{height:71.083800px;}
.h2d{height:71.084400px;}
.h2e{height:71.087400px;}
.h17{height:71.090400px;}
.h2c{height:71.095800px;}
.h10{height:71.096400px;}
.h13{height:71.099400px;}
.h37{height:71.100000px;}
.h3e{height:71.104800px;}
.h21{height:71.107800px;}
.h3f{height:71.108400px;}
.h27{height:71.113200px;}
.h40{height:71.113800px;}
.h28{height:71.117400px;}
.hb{height:71.118600px;}
.h2b{height:71.121600px;}
.h3b{height:71.126400px;}
.h25{height:71.148600px;}
.h31{height:71.533200px;}
.ha{height:71.544000px;}
.h34{height:71.547000px;}
.h36{height:71.559000px;}
.h3a{height:71.567400px;}
.h32{height:71.863800px;}
.h6{height:76.824000px;}
.h5{height:102.432000px;}
.h1{height:888.000000px;}
.h0{height:898.500000px;}
.w0{width:574.500000px;}
.x0{left:0.000000px;}
.x1{left:41.700000px;}
.xb{left:48.585000px;}
.x4{left:63.914400px;}
.x9{left:75.012825px;}
.x8{left:117.539100px;}
.x6{left:141.120000px;}
.x7{left:144.809325px;}
.x3{left:224.250000px;}
.x5{left:260.745000px;}
.xa{left:297.898500px;}
.x2{left:391.920000px;}
@media print{
.v2{vertical-align:-19.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.398400pt;}
.lsf5{letter-spacing:-1.454933pt;}
.lsbf{letter-spacing:-1.449067pt;}
.ls54{letter-spacing:-1.443200pt;}
.ls29{letter-spacing:-1.390400pt;}
.ls95{letter-spacing:-1.284800pt;}
.ls42{letter-spacing:-1.237867pt;}
.ls44{letter-spacing:-1.232000pt;}
.ls43{letter-spacing:-1.227600pt;}
.lse6{letter-spacing:-1.179200pt;}
.lsd4{letter-spacing:-1.155733pt;}
.lse0{letter-spacing:-1.126400pt;}
.lsb9{letter-spacing:-1.123200pt;}
.lsa1{letter-spacing:-1.079467pt;}
.lsc9{letter-spacing:-1.073600pt;}
.ls9b{letter-spacing:-1.022400pt;}
.lsd3{letter-spacing:-1.020800pt;}
.ls97{letter-spacing:-1.017600pt;}
.ls93{letter-spacing:-0.968000pt;}
.lsad{letter-spacing:-0.964800pt;}
.ls6d{letter-spacing:-0.962133pt;}
.ls2a{letter-spacing:-0.956267pt;}
.lsa2{letter-spacing:-0.915200pt;}
.ls80{letter-spacing:-0.909333pt;}
.lsa4{letter-spacing:-0.897600pt;}
.lse3{letter-spacing:-0.891733pt;}
.lsd5{letter-spacing:-0.862400pt;}
.lsf7{letter-spacing:-0.859200pt;}
.lsbe{letter-spacing:-0.827200pt;}
.lsbd{letter-spacing:-0.815467pt;}
.lsb0{letter-spacing:-0.811200pt;}
.lsfb{letter-spacing:-0.809600pt;}
.lsbc{letter-spacing:-0.803733pt;}
.ls48{letter-spacing:-0.756800pt;}
.lsca{letter-spacing:-0.751520pt;}
.ls47{letter-spacing:-0.750933pt;}
.lsf0{letter-spacing:-0.747413pt;}
.ls58{letter-spacing:-0.709867pt;}
.ls4b{letter-spacing:-0.704000pt;}
.lse9{letter-spacing:-0.700800pt;}
.ls59{letter-spacing:-0.698133pt;}
.ls92{letter-spacing:-0.694027pt;}
.ls5a{letter-spacing:-0.680533pt;}
.ls41{letter-spacing:-0.674667pt;}
.lse1{letter-spacing:-0.657067pt;}
.lsa9{letter-spacing:-0.651200pt;}
.ls55{letter-spacing:-0.645333pt;}
.lsa3{letter-spacing:-0.640640pt;}
.lsaa{letter-spacing:-0.639467pt;}
.ls7e{letter-spacing:-0.598400pt;}
.ls10{letter-spacing:-0.592800pt;}
.ls23{letter-spacing:-0.592533pt;}
.lscb{letter-spacing:-0.557333pt;}
.ls8e{letter-spacing:-0.545600pt;}
.ls24{letter-spacing:-0.539733pt;}
.lscf{letter-spacing:-0.537600pt;}
.ls90{letter-spacing:-0.533867pt;}
.ls91{letter-spacing:-0.504533pt;}
.ls45{letter-spacing:-0.492800pt;}
.lse4{letter-spacing:-0.486933pt;}
.ls46{letter-spacing:-0.481067pt;}
.lsc0{letter-spacing:-0.440000pt;}
.ls27{letter-spacing:-0.434133pt;}
.ls78{letter-spacing:-0.432000pt;}
.lsb5{letter-spacing:-0.427093pt;}
.ls70{letter-spacing:-0.398933pt;}
.ls6e{letter-spacing:-0.387200pt;}
.ls6f{letter-spacing:-0.381333pt;}
.lsa{letter-spacing:-0.380000pt;}
.ls98{letter-spacing:-0.379200pt;}
.lse7{letter-spacing:-0.375467pt;}
.ls8f{letter-spacing:-0.373707pt;}
.lsd2{letter-spacing:-0.340267pt;}
.ls75{letter-spacing:-0.336000pt;}
.lscd{letter-spacing:-0.334400pt;}
.ls53{letter-spacing:-0.328533pt;}
.ls76{letter-spacing:-0.326400pt;}
.ls40{letter-spacing:-0.322667pt;}
.lsc6{letter-spacing:-0.320320pt;}
.ls99{letter-spacing:-0.278400pt;}
.lsf1{letter-spacing:-0.275733pt;}
.lsf{letter-spacing:-0.273600pt;}
.lsab{letter-spacing:-0.269867pt;}
.lsae{letter-spacing:-0.268800pt;}
.lsc1{letter-spacing:-0.266933pt;}
.lsb8{letter-spacing:-0.259200pt;}
.lsf2{letter-spacing:-0.246400pt;}
.lsf4{letter-spacing:-0.240533pt;}
.ls5f{letter-spacing:-0.228800pt;}
.ls26{letter-spacing:-0.222933pt;}
.ls4e{letter-spacing:-0.220800pt;}
.ls9{letter-spacing:-0.217867pt;}
.ls25{letter-spacing:-0.217067pt;}
.lsaf{letter-spacing:-0.216000pt;}
.ls82{letter-spacing:-0.213547pt;}
.ls4d{letter-spacing:-0.211200pt;}
.lsb7{letter-spacing:-0.206400pt;}
.ls5d{letter-spacing:-0.176000pt;}
.ls5c{letter-spacing:-0.170133pt;}
.ls73{letter-spacing:-0.168000pt;}
.ls5e{letter-spacing:-0.164267pt;}
.ls79{letter-spacing:-0.163200pt;}
.ls11{letter-spacing:-0.162133pt;}
.lscc{letter-spacing:-0.160160pt;}
.ls7a{letter-spacing:-0.158400pt;}
.lsac{letter-spacing:-0.134933pt;}
.ls4c{letter-spacing:-0.134400pt;}
.lsce{letter-spacing:-0.129067pt;}
.ls83{letter-spacing:-0.123200pt;}
.ls6c{letter-spacing:-0.117333pt;}
.ls62{letter-spacing:-0.115200pt;}
.ls21{letter-spacing:-0.111467pt;}
.ls1e{letter-spacing:-0.110400pt;}
.ls61{letter-spacing:-0.108000pt;}
.ls60{letter-spacing:-0.105600pt;}
.lsd{letter-spacing:-0.076000pt;}
.ls81{letter-spacing:-0.064533pt;}
.lse8{letter-spacing:-0.062400pt;}
.lsb{letter-spacing:-0.060800pt;}
.ls28{letter-spacing:-0.058667pt;}
.ls86{letter-spacing:-0.057600pt;}
.lse{letter-spacing:-0.055733pt;}
.ls85{letter-spacing:-0.054000pt;}
.ls72{letter-spacing:-0.052800pt;}
.ls84{letter-spacing:-0.043200pt;}
.ls5b{letter-spacing:-0.017600pt;}
.ls13{letter-spacing:-0.017067pt;}
.lsc3{letter-spacing:-0.014400pt;}
.ls15{letter-spacing:-0.012800pt;}
.ls22{letter-spacing:-0.011733pt;}
.ls87{letter-spacing:-0.010800pt;}
.ls77{letter-spacing:-0.009600pt;}
.ls14{letter-spacing:-0.008533pt;}
.ls1f{letter-spacing:-0.007200pt;}
.ls20{letter-spacing:-0.005867pt;}
.ls8{letter-spacing:-0.005067pt;}
.ls16{letter-spacing:-0.004800pt;}
.ls12{letter-spacing:-0.004267pt;}
.lsa5{letter-spacing:-0.003600pt;}
.ls7{letter-spacing:0.000000pt;}
.ls52{letter-spacing:0.004800pt;}
.lsb4{letter-spacing:0.005867pt;}
.ls1d{letter-spacing:0.009600pt;}
.ls57{letter-spacing:0.011733pt;}
.ls7f{letter-spacing:0.023467pt;}
.lsc4{letter-spacing:0.029333pt;}
.ls94{letter-spacing:0.035200pt;}
.lsb2{letter-spacing:0.041067pt;}
.lsde{letter-spacing:0.043200pt;}
.ls31{letter-spacing:0.046933pt;}
.ls3d{letter-spacing:0.048000pt;}
.lsf3{letter-spacing:0.052800pt;}
.lsc2{letter-spacing:0.053387pt;}
.ls49{letter-spacing:0.082133pt;}
.ls34{letter-spacing:0.088000pt;}
.lsa7{letter-spacing:0.093867pt;}
.ls69{letter-spacing:0.096000pt;}
.ls33{letter-spacing:0.099733pt;}
.ls8b{letter-spacing:0.100800pt;}
.ls35{letter-spacing:0.105600pt;}
.lsd1{letter-spacing:0.129067pt;}
.ls74{letter-spacing:0.134400pt;}
.lse5{letter-spacing:0.134933pt;}
.lsb1{letter-spacing:0.146667pt;}
.ls2b{letter-spacing:0.152533pt;}
.ls19{letter-spacing:0.153600pt;}
.ls9a{letter-spacing:0.158400pt;}
.lsf6{letter-spacing:0.160160pt;}
.lsef{letter-spacing:0.193600pt;}
.lsea{letter-spacing:0.199467pt;}
.ls3e{letter-spacing:0.201600pt;}
.ls9e{letter-spacing:0.205333pt;}
.ls66{letter-spacing:0.211200pt;}
.lsc5{letter-spacing:0.212400pt;}
.ls96{letter-spacing:0.213547pt;}
.ls56{letter-spacing:0.240533pt;}
.ls89{letter-spacing:0.246400pt;}
.lsbb{letter-spacing:0.252267pt;}
.ls1b{letter-spacing:0.258133pt;}
.lsda{letter-spacing:0.259200pt;}
.lsc{letter-spacing:0.263467pt;}
.ls2e{letter-spacing:0.264000pt;}
.ls65{letter-spacing:0.266667pt;}
.ls71{letter-spacing:0.266933pt;}
.lsd7{letter-spacing:0.302400pt;}
.lsdd{letter-spacing:0.307200pt;}
.lsd6{letter-spacing:0.309600pt;}
.ls63{letter-spacing:0.310933pt;}
.lsdc{letter-spacing:0.312000pt;}
.ls32{letter-spacing:0.316800pt;}
.lsc8{letter-spacing:0.320320pt;}
.lse2{letter-spacing:0.320400pt;}
.lsdf{letter-spacing:0.321600pt;}
.lsfa{letter-spacing:0.328533pt;}
.lsa6{letter-spacing:0.352000pt;}
.ls2c{letter-spacing:0.363733pt;}
.ls2{letter-spacing:0.364800pt;}
.ls51{letter-spacing:0.369600pt;}
.ls18{letter-spacing:0.369867pt;}
.lsfc{letter-spacing:0.373707pt;}
.ls4a{letter-spacing:0.398933pt;}
.ls64{letter-spacing:0.404800pt;}
.ls36{letter-spacing:0.416533pt;}
.lsec{letter-spacing:0.417600pt;}
.ls17{letter-spacing:0.420533pt;}
.ls1a{letter-spacing:0.422400pt;}
.lsc7{letter-spacing:0.427093pt;}
.lsed{letter-spacing:0.427200pt;}
.lsd9{letter-spacing:0.451200pt;}
.ls6a{letter-spacing:0.470400pt;}
.ls4{letter-spacing:0.471200pt;}
.ls38{letter-spacing:0.475200pt;}
.ls1{letter-spacing:0.476267pt;}
.lsb6{letter-spacing:0.480480pt;}
.ls1c{letter-spacing:0.522133pt;}
.ls6{letter-spacing:0.526933pt;}
.ls3f{letter-spacing:0.528000pt;}
.ls7b{letter-spacing:0.569067pt;}
.ls37{letter-spacing:0.574933pt;}
.ls3c{letter-spacing:0.576000pt;}
.ls39{letter-spacing:0.580800pt;}
.ls3a{letter-spacing:0.583200pt;}
.ls3b{letter-spacing:0.585600pt;}
.ls68{letter-spacing:0.586667pt;}
.ls2d{letter-spacing:0.633600pt;}
.ls8c{letter-spacing:0.637200pt;}
.ls8d{letter-spacing:0.638400pt;}
.ls67{letter-spacing:0.686400pt;}
.ls5{letter-spacing:0.689067pt;}
.lsee{letter-spacing:0.727467pt;}
.lsb3{letter-spacing:0.739200pt;}
.ls6b{letter-spacing:0.744000pt;}
.lsba{letter-spacing:0.792000pt;}
.lsdb{letter-spacing:0.796800pt;}
.ls7d{letter-spacing:0.827200pt;}
.ls7c{letter-spacing:0.844800pt;}
.ls3{letter-spacing:0.846133pt;}
.lsa8{letter-spacing:0.849600pt;}
.ls2f{letter-spacing:0.850667pt;}
.lsf9{letter-spacing:0.897600pt;}
.lsd8{letter-spacing:0.950400pt;}
.ls8a{letter-spacing:0.955200pt;}
.lsa0{letter-spacing:1.008000pt;}
.ls30{letter-spacing:1.009067pt;}
.lseb{letter-spacing:1.061867pt;}
.ls0{letter-spacing:1.064000pt;}
.ls50{letter-spacing:1.114667pt;}
.ls9d{letter-spacing:1.167467pt;}
.lsf8{letter-spacing:1.273067pt;}
.ls9f{letter-spacing:1.325867pt;}
.ls9c{letter-spacing:1.329600pt;}
.ls4f{letter-spacing:1.484267pt;}
.ls88{letter-spacing:1.490133pt;}
.lsd0{letter-spacing:12.000000pt;}
.ws6f{word-spacing:-16.150933pt;}
.wsaa{word-spacing:-15.511467pt;}
.ws88{word-spacing:-15.141867pt;}
.ws159{word-spacing:-14.977600pt;}
.ws10b{word-spacing:-14.918933pt;}
.ws45{word-spacing:-14.666667pt;}
.wsc1{word-spacing:-14.660800pt;}
.ws1f{word-spacing:-14.654933pt;}
.ws70{word-spacing:-14.649067pt;}
.ws12a{word-spacing:-14.608000pt;}
.ws84{word-spacing:-14.549333pt;}
.ws11f{word-spacing:-14.543467pt;}
.wsea{word-spacing:-14.531733pt;}
.wsa9{word-spacing:-14.502400pt;}
.ws71{word-spacing:-14.490667pt;}
.ws20{word-spacing:-14.443733pt;}
.ws72{word-spacing:-14.437867pt;}
.ws14c{word-spacing:-14.426133pt;}
.ws11e{word-spacing:-14.332267pt;}
.ws46{word-spacing:-14.173867pt;}
.ws42{word-spacing:-13.992000pt;}
.ws6e{word-spacing:-13.968533pt;}
.ws6d{word-spacing:-13.956800pt;}
.ws109{word-spacing:-13.851200pt;}
.ws13b{word-spacing:-13.751467pt;}
.wsbe{word-spacing:-13.704533pt;}
.ws12c{word-spacing:-13.645867pt;}
.ws0{word-spacing:-12.920000pt;}
.ws24{word-spacing:-12.914933pt;}
.ws8a{word-spacing:-12.470400pt;}
.ws74{word-spacing:-12.004800pt;}
.ws1b{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.995200pt;}
.ws8d{word-spacing:-11.836800pt;}
.wseb{word-spacing:-11.731200pt;}
.ws8b{word-spacing:-11.664000pt;}
.ws100{word-spacing:-10.747147pt;}
.ws118{word-spacing:-10.693760pt;}
.ws15a{word-spacing:-10.640373pt;}
.ws11a{word-spacing:-10.586987pt;}
.ws86{word-spacing:-10.533600pt;}
.wsc2{word-spacing:-10.480213pt;}
.ws128{word-spacing:-10.320053pt;}
.ws21{word-spacing:-10.266667pt;}
.ws11c{word-spacing:-10.106507pt;}
.wsab{word-spacing:-10.053120pt;}
.ws10c{word-spacing:-9.999733pt;}
.ws117{word-spacing:-9.946347pt;}
.wsbc{word-spacing:-9.892960pt;}
.wsff{word-spacing:-9.839573pt;}
.wsdd{word-spacing:-9.626027pt;}
.wsbf{word-spacing:-9.572640pt;}
.ws146{word-spacing:-9.519253pt;}
.ws11b{word-spacing:-9.515147pt;}
.ws133{word-spacing:-9.320400pt;}
.wsad{word-spacing:-9.000000pt;}
.wsdf{word-spacing:-8.996400pt;}
.ws1d{word-spacing:-8.992800pt;}
.ws5e{word-spacing:-0.745067pt;}
.wse3{word-spacing:-0.739200pt;}
.ws3c{word-spacing:-0.692267pt;}
.ws2d{word-spacing:-0.686400pt;}
.ws149{word-spacing:-0.680533pt;}
.wsb4{word-spacing:-0.645333pt;}
.ws2e{word-spacing:-0.639467pt;}
.wsa{word-spacing:-0.638400pt;}
.wsf0{word-spacing:-0.633600pt;}
.wsb6{word-spacing:-0.627733pt;}
.ws9{word-spacing:-0.587733pt;}
.ws97{word-spacing:-0.586667pt;}
.wsd3{word-spacing:-0.585600pt;}
.ws10{word-spacing:-0.582667pt;}
.ws96{word-spacing:-0.580800pt;}
.wsf5{word-spacing:-0.574933pt;}
.wse{word-spacing:-0.572533pt;}
.ws145{word-spacing:-0.551467pt;}
.ws150{word-spacing:-0.539733pt;}
.ws14b{word-spacing:-0.537600pt;}
.ws38{word-spacing:-0.533867pt;}
.wsa4{word-spacing:-0.532800pt;}
.ws5{word-spacing:-0.532000pt;}
.ws39{word-spacing:-0.528000pt;}
.wsb{word-spacing:-0.526933pt;}
.ws47{word-spacing:-0.522133pt;}
.ws106{word-spacing:-0.484800pt;}
.ws17{word-spacing:-0.481333pt;}
.wsf4{word-spacing:-0.481067pt;}
.ws2b{word-spacing:-0.480000pt;}
.ws14{word-spacing:-0.476267pt;}
.ws8e{word-spacing:-0.475200pt;}
.wsc9{word-spacing:-0.469333pt;}
.wsa0{word-spacing:-0.456000pt;}
.ws105{word-spacing:-0.436800pt;}
.ws4d{word-spacing:-0.428267pt;}
.wsa8{word-spacing:-0.427200pt;}
.wsc{word-spacing:-0.425600pt;}
.wsa1{word-spacing:-0.422400pt;}
.wsa6{word-spacing:-0.417600pt;}
.ws76{word-spacing:-0.416533pt;}
.wsf9{word-spacing:-0.412800pt;}
.wscc{word-spacing:-0.410667pt;}
.ws107{word-spacing:-0.384000pt;}
.ws12d{word-spacing:-0.375467pt;}
.wsfa{word-spacing:-0.374400pt;}
.ws3{word-spacing:-0.369867pt;}
.ws65{word-spacing:-0.369600pt;}
.wsd2{word-spacing:-0.364800pt;}
.ws91{word-spacing:-0.363733pt;}
.ws12e{word-spacing:-0.357867pt;}
.ws93{word-spacing:-0.352000pt;}
.ws115{word-spacing:-0.322667pt;}
.ws16{word-spacing:-0.319200pt;}
.ws9c{word-spacing:-0.316800pt;}
.ws114{word-spacing:-0.310933pt;}
.ws13c{word-spacing:-0.293333pt;}
.ws13d{word-spacing:-0.287467pt;}
.ws50{word-spacing:-0.269867pt;}
.wsa2{word-spacing:-0.268800pt;}
.ws3b{word-spacing:-0.264000pt;}
.ws4{word-spacing:-0.263467pt;}
.wsa3{word-spacing:-0.259200pt;}
.ws4f{word-spacing:-0.258133pt;}
.wsc6{word-spacing:-0.252267pt;}
.wsc5{word-spacing:-0.246400pt;}
.ws37{word-spacing:-0.211200pt;}
.wsd0{word-spacing:-0.206400pt;}
.ws95{word-spacing:-0.205333pt;}
.wsb0{word-spacing:-0.187733pt;}
.ws32{word-spacing:-0.158400pt;}
.ws18{word-spacing:-0.157067pt;}
.wsb1{word-spacing:-0.152533pt;}
.wsef{word-spacing:-0.111467pt;}
.ws77{word-spacing:-0.105600pt;}
.wsa5{word-spacing:-0.100800pt;}
.ws90{word-spacing:-0.099733pt;}
.wsee{word-spacing:-0.093867pt;}
.ws158{word-spacing:-0.076267pt;}
.ws7a{word-spacing:-0.052800pt;}
.wsda{word-spacing:-0.048000pt;}
.ws110{word-spacing:-0.046933pt;}
.ws141{word-spacing:-0.041067pt;}
.wsc0{word-spacing:-0.011733pt;}
.ws126{word-spacing:-0.009600pt;}
.ws19{word-spacing:-0.008533pt;}
.wsb2{word-spacing:-0.005867pt;}
.ws40{word-spacing:-0.005067pt;}
.ws7{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.004267pt;}
.ws1a{word-spacing:0.004800pt;}
.ws12{word-spacing:0.005067pt;}
.ws3a{word-spacing:0.005867pt;}
.wsfe{word-spacing:0.009600pt;}
.ws154{word-spacing:0.011733pt;}
.ws15b{word-spacing:0.014400pt;}
.ws120{word-spacing:0.046933pt;}
.ws132{word-spacing:0.048000pt;}
.ws2{word-spacing:0.050667pt;}
.wsc4{word-spacing:0.052800pt;}
.ws142{word-spacing:0.058667pt;}
.wsb8{word-spacing:0.100800pt;}
.ws2a{word-spacing:0.105600pt;}
.ws144{word-spacing:0.110400pt;}
.ws153{word-spacing:0.111467pt;}
.ws111{word-spacing:0.129067pt;}
.ws140{word-spacing:0.140800pt;}
.ws13f{word-spacing:0.146667pt;}
.ws130{word-spacing:0.152533pt;}
.wsfc{word-spacing:0.153600pt;}
.ws7e{word-spacing:0.158400pt;}
.wsfb{word-spacing:0.163200pt;}
.wsf1{word-spacing:0.164267pt;}
.wse4{word-spacing:0.199467pt;}
.ws30{word-spacing:0.205333pt;}
.ws2f{word-spacing:0.211200pt;}
.wse7{word-spacing:0.216000pt;}
.wsc8{word-spacing:0.217067pt;}
.wsfd{word-spacing:0.220800pt;}
.ws123{word-spacing:0.228800pt;}
.ws1e{word-spacing:0.246400pt;}
.ws116{word-spacing:0.252267pt;}
.wsc7{word-spacing:0.264000pt;}
.wscf{word-spacing:0.268800pt;}
.wse1{word-spacing:0.269867pt;}
.ws156{word-spacing:0.273600pt;}
.wsdc{word-spacing:0.305067pt;}
.wsf8{word-spacing:0.312000pt;}
.ws81{word-spacing:0.316800pt;}
.ws5b{word-spacing:0.322667pt;}
.wse2{word-spacing:0.328533pt;}
.wsca{word-spacing:0.369600pt;}
.wsf7{word-spacing:0.374400pt;}
.ws6{word-spacing:0.374933pt;}
.ws33{word-spacing:0.375467pt;}
.wsec{word-spacing:0.384000pt;}
.ws12f{word-spacing:0.398933pt;}
.ws55{word-spacing:0.422400pt;}
.wscd{word-spacing:0.427200pt;}
.ws98{word-spacing:0.428267pt;}
.ws48{word-spacing:0.463467pt;}
.ws14e{word-spacing:0.469333pt;}
.ws6a{word-spacing:0.475200pt;}
.wsa7{word-spacing:0.480000pt;}
.ws3f{word-spacing:0.481067pt;}
.ws4e{word-spacing:0.486933pt;}
.ws108{word-spacing:0.532800pt;}
.ws92{word-spacing:0.533867pt;}
.wscb{word-spacing:0.539733pt;}
.ws157{word-spacing:0.580800pt;}
.ws62{word-spacing:0.585600pt;}
.ws7f{word-spacing:0.586667pt;}
.ws11{word-spacing:0.587733pt;}
.wsd5{word-spacing:0.590400pt;}
.ws14a{word-spacing:0.592533pt;}
.ws61{word-spacing:0.595200pt;}
.ws54{word-spacing:0.633600pt;}
.ws6b{word-spacing:0.638400pt;}
.wsb3{word-spacing:0.639467pt;}
.ws80{word-spacing:0.645333pt;}
.wsd8{word-spacing:0.691200pt;}
.ws3e{word-spacing:0.692267pt;}
.wsd9{word-spacing:0.696000pt;}
.ws113{word-spacing:0.698133pt;}
.ws148{word-spacing:0.709867pt;}
.ws6c{word-spacing:0.744000pt;}
.ws8{word-spacing:0.744800pt;}
.ws124{word-spacing:0.745067pt;}
.ws13{word-spacing:0.749867pt;}
.ws104{word-spacing:0.750933pt;}
.ws155{word-spacing:0.756800pt;}
.ws119{word-spacing:0.768533pt;}
.ws15{word-spacing:0.795467pt;}
.wse5{word-spacing:0.796800pt;}
.wsf6{word-spacing:0.797867pt;}
.wsd6{word-spacing:0.801600pt;}
.ws112{word-spacing:0.803733pt;}
.ws4c{word-spacing:0.806400pt;}
.ws135{word-spacing:0.849600pt;}
.ws51{word-spacing:0.850667pt;}
.ws28{word-spacing:0.851200pt;}
.wsdb{word-spacing:0.854400pt;}
.ws5c{word-spacing:0.856533pt;}
.wsaf{word-spacing:0.862400pt;}
.ws136{word-spacing:0.864000pt;}
.ws127{word-spacing:0.902400pt;}
.ws125{word-spacing:0.903467pt;}
.ws9d{word-spacing:0.907200pt;}
.ws3d{word-spacing:0.909333pt;}
.ws27{word-spacing:0.912000pt;}
.ws13a{word-spacing:0.921067pt;}
.wsb9{word-spacing:0.955200pt;}
.wsb5{word-spacing:0.956267pt;}
.ws66{word-spacing:0.960000pt;}
.ws94{word-spacing:0.962133pt;}
.wsd{word-spacing:0.962667pt;}
.ws69{word-spacing:0.964800pt;}
.ws22{word-spacing:0.968000pt;}
.ws143{word-spacing:1.008000pt;}
.ws5d{word-spacing:1.009067pt;}
.ws29{word-spacing:1.012800pt;}
.ws59{word-spacing:1.014933pt;}
.ws13e{word-spacing:1.017600pt;}
.ws5a{word-spacing:1.032533pt;}
.ws137{word-spacing:1.060800pt;}
.ws31{word-spacing:1.061867pt;}
.wse6{word-spacing:1.065600pt;}
.ws8f{word-spacing:1.067733pt;}
.ws9b{word-spacing:1.070400pt;}
.ws15d{word-spacing:1.108800pt;}
.ws82{word-spacing:1.114667pt;}
.wsce{word-spacing:1.118400pt;}
.ws43{word-spacing:1.120533pt;}
.ws67{word-spacing:1.123200pt;}
.ws139{word-spacing:1.128000pt;}
.ws53{word-spacing:1.167467pt;}
.ws68{word-spacing:1.171200pt;}
.ws36{word-spacing:1.173333pt;}
.wsd7{word-spacing:1.176000pt;}
.ws79{word-spacing:1.179200pt;}
.ws138{word-spacing:1.195200pt;}
.ws10a{word-spacing:1.208533pt;}
.ws15c{word-spacing:1.220267pt;}
.ws34{word-spacing:1.226133pt;}
.ws103{word-spacing:1.232000pt;}
.wse9{word-spacing:1.237867pt;}
.wsf{word-spacing:1.276800pt;}
.ws52{word-spacing:1.278933pt;}
.ws102{word-spacing:1.284800pt;}
.ws129{word-spacing:1.302400pt;}
.wsf3{word-spacing:1.325867pt;}
.ws35{word-spacing:1.331733pt;}
.ws58{word-spacing:1.337600pt;}
.ws87{word-spacing:1.343467pt;}
.ws57{word-spacing:1.349333pt;}
.ws4a{word-spacing:1.361067pt;}
.ws99{word-spacing:1.384533pt;}
.ws75{word-spacing:1.390400pt;}
.wsf2{word-spacing:1.396267pt;}
.ws49{word-spacing:1.402133pt;}
.ws14f{word-spacing:1.431467pt;}
.ws78{word-spacing:1.437333pt;}
.ws56{word-spacing:1.443200pt;}
.ws2c{word-spacing:1.490133pt;}
.ws152{word-spacing:1.496000pt;}
.ws9a{word-spacing:1.542933pt;}
.ws12b{word-spacing:1.554667pt;}
.ws11d{word-spacing:1.689600pt;}
.ws151{word-spacing:1.977067pt;}
.ws121{word-spacing:2.360267pt;}
.wsac{word-spacing:2.379600pt;}
.ws8c{word-spacing:2.514933pt;}
.ws73{word-spacing:2.522667pt;}
.ws89{word-spacing:2.852933pt;}
.ws26{word-spacing:2.943067pt;}
.ws10f{word-spacing:2.977867pt;}
.ws25{word-spacing:2.994667pt;}
.ws1c{word-spacing:2.996267pt;}
.wsed{word-spacing:3.010800pt;}
.ws101{word-spacing:3.015467pt;}
.wsae{word-spacing:3.016400pt;}
.wse0{word-spacing:3.017067pt;}
.ws10e{word-spacing:3.028000pt;}
.ws122{word-spacing:3.037467pt;}
.ws7b{word-spacing:3.203200pt;}
.wse8{word-spacing:3.361600pt;}
.ws4b{word-spacing:3.806400pt;}
.wsde{word-spacing:3.813333pt;}
.ws147{word-spacing:3.815200pt;}
.wsc3{word-spacing:3.848933pt;}
.ws131{word-spacing:3.978133pt;}
.ws44{word-spacing:4.205467pt;}
.wsbd{word-spacing:4.560000pt;}
.ws85{word-spacing:4.724800pt;}
.ws7d{word-spacing:5.010133pt;}
.ws7c{word-spacing:5.016000pt;}
.ws14d{word-spacing:5.732853pt;}
.ws10d{word-spacing:5.839840pt;}
.wsd4{word-spacing:7.363200pt;}
.ws9f{word-spacing:7.521600pt;}
.ws9e{word-spacing:7.526400pt;}
.ws134{word-spacing:7.848000pt;}
.wsbb{word-spacing:8.001600pt;}
.wsba{word-spacing:8.006400pt;}
.wsd1{word-spacing:8.011200pt;}
.wsb7{word-spacing:8.044800pt;}
.ws60{word-spacing:31.420800pt;}
.ws23{word-spacing:31.731200pt;}
.ws41{word-spacing:32.001600pt;}
.ws63{word-spacing:32.006400pt;}
.ws83{word-spacing:32.107200pt;}
.ws64{word-spacing:32.136000pt;}
._c{margin-left:-32.553600pt;}
._b{margin-left:-30.925067pt;}
._13{margin-left:-9.446400pt;}
._14{margin-left:-8.512800pt;}
._d{margin-left:-7.568000pt;}
._1{margin-left:-6.186400pt;}
._15{margin-left:-5.282667pt;}
._6{margin-left:-4.174933pt;}
._4{margin-left:-3.136267pt;}
._0{margin-left:-2.077333pt;}
._2{margin-left:-1.048800pt;}
._5{width:1.145067pt;}
._3{width:2.138133pt;}
._12{width:3.462400pt;}
._f{width:6.355200pt;}
._10{width:8.592000pt;}
._11{width:11.140800pt;}
._9{width:13.074400pt;}
._e{width:13.986133pt;}
._16{width:17.013867pt;}
._7{width:42.444800pt;}
._a{width:485.993333pt;}
._8{width:1064.422400pt;}
.fs5{font-size:36.000000pt;}
.fs7{font-size:41.066667pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:44.000000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y10b{bottom:43.317333pt;}
.y220{bottom:43.332800pt;}
.y25b{bottom:43.346133pt;}
.y1a2{bottom:43.394133pt;}
.y203{bottom:43.412400pt;}
.y122{bottom:43.424533pt;}
.y7a{bottom:43.435333pt;}
.y241{bottom:43.436267pt;}
.yc7{bottom:43.439467pt;}
.y149{bottom:43.514133pt;}
.y1bf{bottom:43.518933pt;}
.y4d{bottom:43.520000pt;}
.y166{bottom:43.530667pt;}
.y17e{bottom:43.532267pt;}
.yea{bottom:43.598933pt;}
.y20{bottom:43.645000pt;}
.ya2{bottom:43.652267pt;}
.y10a{bottom:55.984533pt;}
.y21f{bottom:55.999467pt;}
.y25a{bottom:56.012800pt;}
.y1a1{bottom:56.061333pt;}
.y202{bottom:56.079600pt;}
.y121{bottom:56.091733pt;}
.yc6{bottom:56.100933pt;}
.y79{bottom:56.102533pt;}
.y240{bottom:56.103467pt;}
.y148{bottom:56.181333pt;}
.y1be{bottom:56.186133pt;}
.y165{bottom:56.197867pt;}
.y17d{bottom:56.199467pt;}
.ye9{bottom:56.266133pt;}
.ya1{bottom:56.319467pt;}
.y1f{bottom:56.977933pt;}
.y109{bottom:68.651733pt;}
.y21e{bottom:68.666667pt;}
.y259{bottom:68.678933pt;}
.y1a0{bottom:68.728533pt;}
.y201{bottom:68.743467pt;}
.y120{bottom:68.758933pt;}
.yc5{bottom:68.768133pt;}
.y78{bottom:68.769733pt;}
.y23f{bottom:68.770667pt;}
.y147{bottom:68.848533pt;}
.y1bd{bottom:68.853333pt;}
.y1e9{bottom:68.855600pt;}
.y164{bottom:68.865067pt;}
.y17c{bottom:68.866133pt;}
.ye8{bottom:68.929733pt;}
.ya0{bottom:68.986667pt;}
.y1e{bottom:70.310867pt;}
.y46{bottom:74.662000pt;}
.y108{bottom:81.318933pt;}
.y258{bottom:81.346133pt;}
.y19f{bottom:81.395733pt;}
.y200{bottom:81.410667pt;}
.y11f{bottom:81.426133pt;}
.yc4{bottom:81.435333pt;}
.y77{bottom:81.436933pt;}
.y23e{bottom:81.437867pt;}
.y146{bottom:81.515733pt;}
.y1e8{bottom:81.522800pt;}
.y163{bottom:81.532267pt;}
.y17b{bottom:81.533333pt;}
.ye7{bottom:81.596933pt;}
.y1d{bottom:83.643800pt;}
.y45{bottom:89.996000pt;}
.y107{bottom:93.986133pt;}
.y257{bottom:94.013333pt;}
.y19e{bottom:94.062933pt;}
.y1ff{bottom:94.077867pt;}
.y11e{bottom:94.089600pt;}
.yc3{bottom:94.102533pt;}
.y76{bottom:94.104133pt;}
.y23d{bottom:94.105067pt;}
.y145{bottom:94.182933pt;}
.y1e7{bottom:94.190000pt;}
.y162{bottom:94.199467pt;}
.ye6{bottom:94.264133pt;}
.y1c{bottom:96.976733pt;}
.y1bc{bottom:104.768133pt;}
.y9f{bottom:104.769600pt;}
.y21d{bottom:104.773867pt;}
.y44{bottom:105.330000pt;}
.y106{bottom:106.646800pt;}
.y19d{bottom:106.730133pt;}
.y1fe{bottom:106.745067pt;}
.y11d{bottom:106.756800pt;}
.yc2{bottom:106.769733pt;}
.y75{bottom:106.771333pt;}
.y23c{bottom:106.772267pt;}
.y144{bottom:106.850133pt;}
.y1e6{bottom:106.857200pt;}
.y161{bottom:106.863467pt;}
.ye5{bottom:106.931333pt;}
.y1b{bottom:110.309667pt;}
.y105{bottom:119.314000pt;}
.y19c{bottom:119.397333pt;}
.y1fd{bottom:119.412267pt;}
.y11c{bottom:119.424000pt;}
.yc1{bottom:119.436933pt;}
.y74{bottom:119.438533pt;}
.y23b{bottom:119.439467pt;}
.y143{bottom:119.517333pt;}
.y1e5{bottom:119.524400pt;}
.y160{bottom:119.530667pt;}
.ye4{bottom:119.598533pt;}
.y1bb{bottom:120.102133pt;}
.y9e{bottom:120.103600pt;}
.y21c{bottom:120.107867pt;}
.y17a{bottom:120.119467pt;}
.y43{bottom:120.664000pt;}
.y1a{bottom:123.642600pt;}
.y104{bottom:131.981200pt;}
.y19b{bottom:132.064533pt;}
.y1fc{bottom:132.079467pt;}
.y11b{bottom:132.091200pt;}
.yc0{bottom:132.104133pt;}
.y73{bottom:132.105733pt;}
.y23a{bottom:132.106667pt;}
.y142{bottom:132.184533pt;}
.y1e4{bottom:132.191600pt;}
.y15f{bottom:132.197867pt;}
.ye3{bottom:132.265733pt;}
.y1ba{bottom:135.436133pt;}
.y9d{bottom:135.437600pt;}
.y21b{bottom:135.441867pt;}
.y179{bottom:135.450667pt;}
.y42{bottom:135.998000pt;}
.y19{bottom:136.975533pt;}
.y103{bottom:144.648400pt;}
.y19a{bottom:144.731733pt;}
.y1fb{bottom:144.746667pt;}
.y11a{bottom:144.758400pt;}
.ybf{bottom:144.771333pt;}
.y72{bottom:144.772933pt;}
.y141{bottom:144.851733pt;}
.y1e3{bottom:144.858800pt;}
.y15e{bottom:144.865067pt;}
.ye2{bottom:144.932933pt;}
.y18{bottom:150.308467pt;}
.y1b9{bottom:150.770133pt;}
.y9c{bottom:150.771600pt;}
.y21a{bottom:150.775867pt;}
.y178{bottom:150.784667pt;}
.y41{bottom:151.332000pt;}
.y102{bottom:157.315600pt;}
.y199{bottom:157.398933pt;}
.y119{bottom:157.425600pt;}
.ybe{bottom:157.438533pt;}
.y71{bottom:157.438933pt;}
.y140{bottom:157.518933pt;}
.y1e2{bottom:157.526000pt;}
.y15d{bottom:157.532267pt;}
.ye1{bottom:157.600000pt;}
.y17{bottom:163.641400pt;}
.y1b8{bottom:166.104133pt;}
.y9b{bottom:166.105600pt;}
.y219{bottom:166.109867pt;}
.y177{bottom:166.118667pt;}
.y239{bottom:166.119333pt;}
.y40{bottom:166.666000pt;}
.y101{bottom:169.982800pt;}
.y198{bottom:170.066133pt;}
.y118{bottom:170.092800pt;}
.ybd{bottom:170.105733pt;}
.y70{bottom:170.106133pt;}
.y13f{bottom:170.186133pt;}
.y1e1{bottom:170.193200pt;}
.y15c{bottom:170.199467pt;}
.y16{bottom:176.974333pt;}
.y238{bottom:181.432933pt;}
.y1b7{bottom:181.438133pt;}
.y9a{bottom:181.439600pt;}
.y218{bottom:181.443867pt;}
.y1fa{bottom:181.450667pt;}
.y176{bottom:181.452667pt;}
.y3f{bottom:181.990400pt;}
.y100{bottom:182.650000pt;}
.y197{bottom:182.731733pt;}
.y117{bottom:182.758400pt;}
.ybc{bottom:182.772933pt;}
.y6f{bottom:182.773333pt;}
.y13e{bottom:182.853333pt;}
.y1e0{bottom:182.860400pt;}
.y15b{bottom:182.866667pt;}
.y15{bottom:190.307267pt;}
.yff{bottom:195.317200pt;}
.y196{bottom:195.398933pt;}
.y116{bottom:195.425600pt;}
.ybb{bottom:195.441467pt;}
.y1df{bottom:195.527600pt;}
.y237{bottom:196.766933pt;}
.y1b6{bottom:196.772133pt;}
.y99{bottom:196.773600pt;}
.y217{bottom:196.777867pt;}
.y256{bottom:196.781333pt;}
.ye0{bottom:196.784667pt;}
.y3e{bottom:197.324400pt;}
.y14{bottom:203.640200pt;}
.yfe{bottom:207.984400pt;}
.y195{bottom:208.066133pt;}
.y115{bottom:208.092800pt;}
.yba{bottom:208.108667pt;}
.y1de{bottom:208.194800pt;}
.y236{bottom:212.100933pt;}
.y1b5{bottom:212.106133pt;}
.y98{bottom:212.107600pt;}
.y216{bottom:212.111867pt;}
.y6e{bottom:212.113333pt;}
.y255{bottom:212.115333pt;}
.ydf{bottom:212.118667pt;}
.y3d{bottom:212.658400pt;}
.yfd{bottom:220.651600pt;}
.y194{bottom:220.733333pt;}
.y114{bottom:220.760000pt;}
.yb9{bottom:220.774667pt;}
.y1dd{bottom:220.862000pt;}
.y235{bottom:227.434933pt;}
.y1b4{bottom:227.440133pt;}
.y97{bottom:227.441600pt;}
.y215{bottom:227.445867pt;}
.y6d{bottom:227.447333pt;}
.y254{bottom:227.449333pt;}
.yde{bottom:227.452667pt;}
.y3c{bottom:227.992400pt;}
.y13{bottom:232.093333pt;}
.yfc{bottom:233.317600pt;}
.yb8{bottom:233.440667pt;}
.y1dc{bottom:233.529200pt;}
.y234{bottom:242.768933pt;}
.y13d{bottom:242.770400pt;}
.y1b3{bottom:242.774133pt;}
.y1f9{bottom:242.775333pt;}
.y96{bottom:242.775600pt;}
.y15a{bottom:242.777333pt;}
.y214{bottom:242.779867pt;}
.y6c{bottom:242.781333pt;}
.y175{bottom:242.782133pt;}
.y253{bottom:242.783333pt;}
.ydd{bottom:242.786267pt;}
.y3b{bottom:243.326400pt;}
.yfb{bottom:245.984800pt;}
.yb7{bottom:246.106667pt;}
.y1db{bottom:246.196400pt;}
.y233{bottom:258.102933pt;}
.y13c{bottom:258.104400pt;}
.y1b2{bottom:258.108133pt;}
.y1f8{bottom:258.109333pt;}
.y95{bottom:258.109600pt;}
.y193{bottom:258.110667pt;}
.y159{bottom:258.111333pt;}
.y213{bottom:258.113867pt;}
.y6b{bottom:258.115333pt;}
.y174{bottom:258.116133pt;}
.y252{bottom:258.117333pt;}
.ydc{bottom:258.120267pt;}
.yfa{bottom:258.652000pt;}
.y3a{bottom:258.660400pt;}
.y1da{bottom:258.863600pt;}
.y12{bottom:264.099467pt;}
.yf9{bottom:271.319200pt;}
.y1d9{bottom:271.530800pt;}
.y232{bottom:273.436933pt;}
.y13b{bottom:273.438400pt;}
.y1b1{bottom:273.442133pt;}
.y1f7{bottom:273.443333pt;}
.y94{bottom:273.443600pt;}
.y192{bottom:273.444667pt;}
.y158{bottom:273.445333pt;}
.y212{bottom:273.447867pt;}
.y6a{bottom:273.449333pt;}
.y173{bottom:273.450133pt;}
.y251{bottom:273.451333pt;}
.y39{bottom:273.994400pt;}
.y11{bottom:277.432400pt;}
.ydb{bottom:281.120533pt;}
.yf8{bottom:283.986400pt;}
.y1d8{bottom:284.198000pt;}
.y231{bottom:288.770933pt;}
.y13a{bottom:288.772400pt;}
.y1b0{bottom:288.776133pt;}
.y1f6{bottom:288.777333pt;}
.y93{bottom:288.777600pt;}
.y191{bottom:288.778667pt;}
.y157{bottom:288.779333pt;}
.y211{bottom:288.781867pt;}
.y69{bottom:288.783333pt;}
.y172{bottom:288.784133pt;}
.y250{bottom:288.785333pt;}
.y38{bottom:289.328400pt;}
.yf7{bottom:296.650133pt;}
.y1d7{bottom:296.865200pt;}
.y10{bottom:300.218467pt;}
.y230{bottom:304.104933pt;}
.y139{bottom:304.106400pt;}
.y1af{bottom:304.110133pt;}
.y1f5{bottom:304.111333pt;}
.y92{bottom:304.111600pt;}
.y190{bottom:304.112667pt;}
.y156{bottom:304.113333pt;}
.y210{bottom:304.115867pt;}
.y68{bottom:304.117333pt;}
.y171{bottom:304.118133pt;}
.y24f{bottom:304.119333pt;}
.y113{bottom:304.121200pt;}
.y37{bottom:304.662400pt;}
.yf6{bottom:309.317333pt;}
.y1d6{bottom:309.532400pt;}
.yf{bottom:313.551400pt;}
.y22f{bottom:319.438933pt;}
.y138{bottom:319.440400pt;}
.y1ae{bottom:319.444133pt;}
.y24e{bottom:319.444800pt;}
.y1f4{bottom:319.445333pt;}
.y91{bottom:319.445600pt;}
.y18f{bottom:319.446667pt;}
.y155{bottom:319.447333pt;}
.y20f{bottom:319.449867pt;}
.y67{bottom:319.451333pt;}
.y170{bottom:319.452133pt;}
.yda{bottom:319.453200pt;}
.y112{bottom:319.455200pt;}
.y36{bottom:319.996400pt;}
.yf5{bottom:321.984533pt;}
.y1d5{bottom:322.199600pt;}
.ye{bottom:326.884333pt;}
.yf4{bottom:334.651733pt;}
.y137{bottom:334.774400pt;}
.y1ad{bottom:334.778133pt;}
.y24d{bottom:334.778800pt;}
.y1f3{bottom:334.779333pt;}
.y90{bottom:334.779600pt;}
.y18e{bottom:334.780667pt;}
.y154{bottom:334.781333pt;}
.y20e{bottom:334.782400pt;}
.y66{bottom:334.785333pt;}
.yd9{bottom:334.785733pt;}
.y16f{bottom:334.786133pt;}
.y111{bottom:334.787733pt;}
.y1d4{bottom:334.866800pt;}
.y35{bottom:335.330400pt;}
.yd{bottom:340.217267pt;}
.y22e{bottom:342.439200pt;}
.yf3{bottom:347.318933pt;}
.y1d3{bottom:347.534000pt;}
.y136{bottom:350.108400pt;}
.y1ac{bottom:350.112133pt;}
.y24c{bottom:350.112800pt;}
.y1f2{bottom:350.113333pt;}
.y8f{bottom:350.113600pt;}
.y18d{bottom:350.114667pt;}
.y20d{bottom:350.114933pt;}
.y153{bottom:350.115333pt;}
.yd8{bottom:350.118267pt;}
.y65{bottom:350.119333pt;}
.y16e{bottom:350.120133pt;}
.y110{bottom:350.120267pt;}
.y34{bottom:350.664400pt;}
.yc{bottom:353.550200pt;}
.yf2{bottom:359.986133pt;}
.y1d2{bottom:360.200000pt;}
.y135{bottom:365.442400pt;}
.y1ab{bottom:365.446133pt;}
.y24b{bottom:365.446800pt;}
.y1f1{bottom:365.447333pt;}
.y20c{bottom:365.447467pt;}
.y8e{bottom:365.447600pt;}
.y64{bottom:365.448667pt;}
.y152{bottom:365.449333pt;}
.yd7{bottom:365.450800pt;}
.yb6{bottom:365.451333pt;}
.y10f{bottom:365.452800pt;}
.y16d{bottom:365.454133pt;}
.y33{bottom:365.998400pt;}
.yb{bottom:366.883133pt;}
.yf1{bottom:372.653333pt;}
.ya{bottom:380.216067pt;}
.y22d{bottom:380.772000pt;}
.y134{bottom:380.776400pt;}
.y1aa{bottom:380.778667pt;}
.y24a{bottom:380.779333pt;}
.y20b{bottom:380.780000pt;}
.y1f0{bottom:380.781333pt;}
.y8d{bottom:380.781600pt;}
.y63{bottom:380.782667pt;}
.yd6{bottom:380.783333pt;}
.yb5{bottom:380.785333pt;}
.y32{bottom:381.332400pt;}
.y9{bottom:393.549000pt;}
.y22c{bottom:396.106000pt;}
.y133{bottom:396.110400pt;}
.y1a9{bottom:396.112667pt;}
.y249{bottom:396.113333pt;}
.y20a{bottom:396.114000pt;}
.y1ef{bottom:396.115333pt;}
.y8c{bottom:396.115600pt;}
.y62{bottom:396.116667pt;}
.yd5{bottom:396.117333pt;}
.yb4{bottom:396.119333pt;}
.y31{bottom:396.666400pt;}
.y1d1{bottom:403.786000pt;}
.y8{bottom:406.881933pt;}
.y22b{bottom:411.440000pt;}
.y132{bottom:411.444400pt;}
.y1a8{bottom:411.446667pt;}
.y248{bottom:411.447333pt;}
.y209{bottom:411.448000pt;}
.yb3{bottom:411.448667pt;}
.y1ee{bottom:411.449333pt;}
.y8b{bottom:411.449600pt;}
.y61{bottom:411.450667pt;}
.yd4{bottom:411.451333pt;}
.yf0{bottom:411.452000pt;}
.y1d0{bottom:419.114667pt;}
.y30{bottom:419.666667pt;}
.y7{bottom:420.214867pt;}
.y22a{bottom:426.774000pt;}
.y131{bottom:426.778400pt;}
.y1a7{bottom:426.780667pt;}
.y247{bottom:426.781333pt;}
.y208{bottom:426.782000pt;}
.yb2{bottom:426.782667pt;}
.y1ed{bottom:426.783333pt;}
.y8a{bottom:426.783600pt;}
.y60{bottom:426.784667pt;}
.yd3{bottom:426.785333pt;}
.yef{bottom:426.786000pt;}
.y6{bottom:433.547800pt;}
.y1cf{bottom:434.448667pt;}
.y229{bottom:442.108000pt;}
.y130{bottom:442.112400pt;}
.y1a6{bottom:442.114667pt;}
.y246{bottom:442.115333pt;}
.y207{bottom:442.116000pt;}
.yb1{bottom:442.116667pt;}
.y1ec{bottom:442.117333pt;}
.y5f{bottom:442.118667pt;}
.yd2{bottom:442.119333pt;}
.y5{bottom:446.880733pt;}
.y1ce{bottom:449.782667pt;}
.y89{bottom:449.783867pt;}
.y228{bottom:457.442000pt;}
.y151{bottom:457.444933pt;}
.y12f{bottom:457.446400pt;}
.yd1{bottom:457.448667pt;}
.y245{bottom:457.449333pt;}
.y206{bottom:457.450000pt;}
.yb0{bottom:457.450667pt;}
.y1eb{bottom:457.451333pt;}
.y5e{bottom:457.452667pt;}
.y4{bottom:460.213667pt;}
.y1cd{bottom:465.116667pt;}
.y2f{bottom:465.237867pt;}
.y227{bottom:472.776000pt;}
.y150{bottom:472.778933pt;}
.y12e{bottom:472.780400pt;}
.yd0{bottom:472.782667pt;}
.y244{bottom:472.783333pt;}
.y205{bottom:472.784000pt;}
.yaf{bottom:472.784667pt;}
.y1ea{bottom:472.785333pt;}
.y18c{bottom:472.786000pt;}
.y5d{bottom:472.788933pt;}
.y3{bottom:473.546600pt;}
.y1cc{bottom:480.450667pt;}
.y2e{bottom:486.785067pt;}
.y2{bottom:486.879533pt;}
.y226{bottom:488.110000pt;}
.y14f{bottom:488.112933pt;}
.y12d{bottom:488.114400pt;}
.y88{bottom:488.116667pt;}
.y243{bottom:488.117333pt;}
.y204{bottom:488.118000pt;}
.yae{bottom:488.118667pt;}
.y18b{bottom:488.119333pt;}
.y5c{bottom:488.121467pt;}
.y1cb{bottom:495.784667pt;}
.y2d{bottom:499.452267pt;}
.y225{bottom:503.444000pt;}
.y14e{bottom:503.446933pt;}
.y12c{bottom:503.448400pt;}
.y87{bottom:503.450667pt;}
.y242{bottom:503.451333pt;}
.y18a{bottom:503.452000pt;}
.yad{bottom:503.452667pt;}
.y5b{bottom:503.454000pt;}
.y1ca{bottom:511.118667pt;}
.y2c{bottom:512.119467pt;}
.y1{bottom:513.546667pt;}
.y224{bottom:518.778000pt;}
.y10e{bottom:518.779467pt;}
.y14d{bottom:518.780933pt;}
.y12b{bottom:518.782400pt;}
.yac{bottom:518.783333pt;}
.y86{bottom:518.784667pt;}
.yee{bottom:518.785333pt;}
.y189{bottom:518.786000pt;}
.y5a{bottom:518.786533pt;}
.y2b{bottom:524.786667pt;}
.y1c9{bottom:526.452667pt;}
.y223{bottom:534.112000pt;}
.y10d{bottom:534.113467pt;}
.y14c{bottom:534.114933pt;}
.y12a{bottom:534.116400pt;}
.yab{bottom:534.117333pt;}
.y85{bottom:534.118667pt;}
.y59{bottom:534.119067pt;}
.yed{bottom:534.119333pt;}
.y188{bottom:534.122400pt;}
.y1c8{bottom:541.781200pt;}
.y222{bottom:549.446000pt;}
.y10c{bottom:549.447467pt;}
.yec{bottom:549.448667pt;}
.y14b{bottom:549.448933pt;}
.y129{bottom:549.450400pt;}
.yaa{bottom:549.451333pt;}
.y58{bottom:549.451600pt;}
.y84{bottom:549.452667pt;}
.y187{bottom:549.454933pt;}
.y1c7{bottom:557.115200pt;}
.y221{bottom:564.780000pt;}
.y83{bottom:564.781333pt;}
.ycf{bottom:564.781467pt;}
.yeb{bottom:564.782667pt;}
.y128{bottom:564.782933pt;}
.y1a5{bottom:564.783333pt;}
.y57{bottom:564.784133pt;}
.y16c{bottom:564.784400pt;}
.ya9{bottom:564.785333pt;}
.y186{bottom:564.787467pt;}
.y14a{bottom:572.449200pt;}
.y4c{bottom:580.080400pt;}
.yce{bottom:580.114000pt;}
.y82{bottom:580.115333pt;}
.y127{bottom:580.115467pt;}
.y56{bottom:580.116667pt;}
.y1a4{bottom:580.117333pt;}
.y16b{bottom:580.118400pt;}
.y185{bottom:580.118667pt;}
.ya8{bottom:580.119333pt;}
.y1c6{bottom:587.783200pt;}
.ycd{bottom:595.448000pt;}
.y81{bottom:595.449333pt;}
.y126{bottom:595.449467pt;}
.y55{bottom:595.450667pt;}
.ya7{bottom:595.451333pt;}
.y16a{bottom:595.452400pt;}
.y184{bottom:595.452667pt;}
.y28{bottom:598.745067pt;}
.y4b{bottom:598.747267pt;}
.y1c5{bottom:603.115733pt;}
.ycc{bottom:610.782000pt;}
.y80{bottom:610.783333pt;}
.y125{bottom:610.783467pt;}
.y54{bottom:610.784667pt;}
.ya6{bottom:610.785333pt;}
.y169{bottom:610.786400pt;}
.y183{bottom:610.790800pt;}
.y27{bottom:611.412267pt;}
.y4a{bottom:612.080200pt;}
.y1c4{bottom:618.449733pt;}
.y26{bottom:624.079467pt;}
.ycb{bottom:626.116000pt;}
.y7f{bottom:626.117333pt;}
.y124{bottom:626.117467pt;}
.y53{bottom:626.118667pt;}
.ya5{bottom:626.119333pt;}
.y168{bottom:626.120400pt;}
.y182{bottom:626.123333pt;}
.y49{bottom:630.747067pt;}
.y1c3{bottom:633.783733pt;}
.y25{bottom:636.746667pt;}
.yca{bottom:641.450000pt;}
.y7e{bottom:641.451333pt;}
.ya4{bottom:641.451467pt;}
.y52{bottom:641.452667pt;}
.y181{bottom:641.455867pt;}
.y48{bottom:644.080000pt;}
.y1c2{bottom:649.117733pt;}
.y167{bottom:649.120667pt;}
.y24{bottom:652.760000pt;}
.yc9{bottom:656.784000pt;}
.y7d{bottom:656.785333pt;}
.ya3{bottom:656.785467pt;}
.y51{bottom:656.786133pt;}
.y180{bottom:656.788400pt;}
.y1c1{bottom:664.451733pt;}
.y47{bottom:666.400000pt;}
.yc8{bottom:672.118000pt;}
.y7c{bottom:672.119333pt;}
.y50{bottom:672.119467pt;}
.y17f{bottom:672.120933pt;}
.y1c0{bottom:679.785733pt;}
.y7b{bottom:687.452000pt;}
.y4f{bottom:687.453467pt;}
.y1a3{bottom:687.454133pt;}
.y23{bottom:693.426667pt;}
.y123{bottom:695.119733pt;}
.y4e{bottom:702.786000pt;}
.y2a{bottom:704.786667pt;}
.y22{bottom:714.760000pt;}
.y29{bottom:718.120000pt;}
.y21{bottom:760.093467pt;}
.h4{height:45.525333pt;}
.h7{height:51.216000pt;}
.h33{height:51.222400pt;}
.h8{height:51.224533pt;}
.h1d{height:51.230400pt;}
.h18{height:52.026667pt;}
.hc{height:52.032000pt;}
.h1c{height:52.032533pt;}
.h2f{height:52.034133pt;}
.h3d{height:52.035733pt;}
.h14{height:52.036267pt;}
.h11{height:52.036800pt;}
.h22{height:52.038400pt;}
.h24{height:52.041067pt;}
.h2a{height:52.044800pt;}
.h3c{height:52.045333pt;}
.h1f{height:52.045867pt;}
.h23{height:52.046933pt;}
.h19{height:52.054933pt;}
.h26{height:52.055467pt;}
.h20{height:52.058133pt;}
.h38{height:52.076267pt;}
.h2{height:54.061333pt;}
.h3{height:54.922667pt;}
.h9{height:62.597333pt;}
.hd{height:62.600000pt;}
.h16{height:62.605333pt;}
.h30{height:63.161600pt;}
.hf{height:63.169067pt;}
.h35{height:63.174933pt;}
.h39{height:63.178133pt;}
.h1a{height:63.178667pt;}
.h1b{height:63.179733pt;}
.he{height:63.180267pt;}
.h29{height:63.180800pt;}
.h1e{height:63.182933pt;}
.h12{height:63.183467pt;}
.h15{height:63.185600pt;}
.h2d{height:63.186133pt;}
.h2e{height:63.188800pt;}
.h17{height:63.191467pt;}
.h2c{height:63.196267pt;}
.h10{height:63.196800pt;}
.h13{height:63.199467pt;}
.h37{height:63.200000pt;}
.h3e{height:63.204267pt;}
.h21{height:63.206933pt;}
.h3f{height:63.207467pt;}
.h27{height:63.211733pt;}
.h40{height:63.212267pt;}
.h28{height:63.215467pt;}
.hb{height:63.216533pt;}
.h2b{height:63.219200pt;}
.h3b{height:63.223467pt;}
.h25{height:63.243200pt;}
.h31{height:63.585067pt;}
.ha{height:63.594667pt;}
.h34{height:63.597333pt;}
.h36{height:63.608000pt;}
.h3a{height:63.615467pt;}
.h32{height:63.878933pt;}
.h6{height:68.288000pt;}
.h5{height:91.050667pt;}
.h1{height:789.333333pt;}
.h0{height:798.666667pt;}
.w0{width:510.666667pt;}
.x0{left:0.000000pt;}
.x1{left:37.066667pt;}
.xb{left:43.186667pt;}
.x4{left:56.812800pt;}
.x9{left:66.678067pt;}
.x8{left:104.479200pt;}
.x6{left:125.440000pt;}
.x7{left:128.719400pt;}
.x3{left:199.333333pt;}
.x5{left:231.773333pt;}
.xa{left:264.798667pt;}
.x2{left:348.373333pt;}
}




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