
    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_6de1e24b43676f070f2221bf.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_4331ebf54aabe9b20131545b.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_6ef47849823eae4535511276.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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_840ad2775d1465b33fad8b1f.woff2')format("woff");}.ff4{font-family:ff4;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);}
.v1{vertical-align:-21.754800px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.800000px;}
.v3{vertical-align:21.841800px;}
.v2{vertical-align:43.561980px;}
.ls89{letter-spacing:-1.709400px;}
.ls88{letter-spacing:-1.683000px;}
.lsf0{letter-spacing:-1.630200px;}
.ls60{letter-spacing:-1.564200px;}
.lsa7{letter-spacing:-1.511400px;}
.ls54{letter-spacing:-1.504800px;}
.lsac{letter-spacing:-1.445400px;}
.lsa0{letter-spacing:-1.392600px;}
.ls3a{letter-spacing:-1.386000px;}
.ls12{letter-spacing:-1.328400px;}
.lsaf{letter-spacing:-1.326600px;}
.ls11{letter-spacing:-1.323000px;}
.lsd2{letter-spacing:-1.267200px;}
.ls9{letter-spacing:-1.208400px;}
.lsfc{letter-spacing:-1.207800px;}
.lsc6{letter-spacing:-1.206000px;}
.lsd3{letter-spacing:-1.201200px;}
.lsb0{letter-spacing:-1.194600px;}
.ls8b{letter-spacing:-1.155000px;}
.lsbc{letter-spacing:-1.152000px;}
.lsb1{letter-spacing:-1.148400px;}
.lsf8{letter-spacing:-1.141800px;}
.lsbf{letter-spacing:-1.108800px;}
.lsae{letter-spacing:-1.095600px;}
.ls81{letter-spacing:-1.089000px;}
.lsf{letter-spacing:-1.085400px;}
.lsc0{letter-spacing:-1.082400px;}
.lsc1{letter-spacing:-1.069200px;}
.lsa4{letter-spacing:-1.029600px;}
.ls21{letter-spacing:-1.026000px;}
.lsa5{letter-spacing:-1.023000px;}
.lsd0{letter-spacing:-1.020000px;}
.lsab{letter-spacing:-1.016400px;}
.ls17{letter-spacing:-0.983400px;}
.ls4b{letter-spacing:-0.970200px;}
.ls97{letter-spacing:-0.966000px;}
.ls73{letter-spacing:-0.963600px;}
.ls6d{letter-spacing:-0.910800px;}
.ls24{letter-spacing:-0.907200px;}
.ls52{letter-spacing:-0.904200px;}
.ls9a{letter-spacing:-0.897600px;}
.ls101{letter-spacing:-0.896400px;}
.lsa8{letter-spacing:-0.891000px;}
.lsa6{letter-spacing:-0.858000px;}
.ls8a{letter-spacing:-0.851400px;}
.lsd1{letter-spacing:-0.846000px;}
.ls32{letter-spacing:-0.844800px;}
.lsd5{letter-spacing:-0.837000px;}
.lsef{letter-spacing:-0.831600px;}
.ls51{letter-spacing:-0.798600px;}
.ls63{letter-spacing:-0.792000px;}
.lscf{letter-spacing:-0.786000px;}
.ls50{letter-spacing:-0.785400px;}
.ls9f{letter-spacing:-0.732600px;}
.ls71{letter-spacing:-0.726000px;}
.ls3b{letter-spacing:-0.679800px;}
.ls61{letter-spacing:-0.673200px;}
.ls3c{letter-spacing:-0.666600px;}
.ls84{letter-spacing:-0.666000px;}
.ls6c{letter-spacing:-0.653400px;}
.lsf9{letter-spacing:-0.646800px;}
.lsfa{letter-spacing:-0.640200px;}
.ls83{letter-spacing:-0.627000px;}
.ls82{letter-spacing:-0.613800px;}
.ls74{letter-spacing:-0.607200px;}
.ls8e{letter-spacing:-0.606000px;}
.ls85{letter-spacing:-0.604800px;}
.ls8{letter-spacing:-0.604200px;}
.lsfb{letter-spacing:-0.600600px;}
.lsf6{letter-spacing:-0.567600px;}
.ls53{letter-spacing:-0.561000px;}
.ls1a{letter-spacing:-0.554400px;}
.lsc5{letter-spacing:-0.552000px;}
.lsb3{letter-spacing:-0.550800px;}
.ls18{letter-spacing:-0.547800px;}
.lsb4{letter-spacing:-0.545400px;}
.ls37{letter-spacing:-0.541200px;}
.lsa9{letter-spacing:-0.501600px;}
.ls19{letter-spacing:-0.495000px;}
.lscc{letter-spacing:-0.491400px;}
.ls4c{letter-spacing:-0.488400px;}
.lscb{letter-spacing:-0.486000px;}
.ls34{letter-spacing:-0.429000px;}
.ls23{letter-spacing:-0.426600px;}
.lsc7{letter-spacing:-0.426000px;}
.ls72{letter-spacing:-0.422400px;}
.lsf7{letter-spacing:-0.388080px;}
.ls99{letter-spacing:-0.376200px;}
.ls4e{letter-spacing:-0.369600px;}
.ls8d{letter-spacing:-0.366000px;}
.ls31{letter-spacing:-0.363000px;}
.lsad{letter-spacing:-0.356400px;}
.lse7{letter-spacing:-0.349800px;}
.ls100{letter-spacing:-0.336600px;}
.lsfe{letter-spacing:-0.323400px;}
.ls33{letter-spacing:-0.310200px;}
.ls7{letter-spacing:-0.307800px;}
.lsba{letter-spacing:-0.306000px;}
.ls4f{letter-spacing:-0.303600px;}
.ls20{letter-spacing:-0.302400px;}
.ls5e{letter-spacing:-0.297000px;}
.lsf1{letter-spacing:-0.290400px;}
.ls38{letter-spacing:-0.283800px;}
.ls7f{letter-spacing:-0.264000px;}
.ls39{letter-spacing:-0.257400px;}
.ls3d{letter-spacing:-0.250800px;}
.ls96{letter-spacing:-0.246000px;}
.ls5{letter-spacing:-0.245100px;}
.ls5d{letter-spacing:-0.244200px;}
.ls1f{letter-spacing:-0.243000px;}
.lsff{letter-spacing:-0.240240px;}
.ls80{letter-spacing:-0.237600px;}
.ls6b{letter-spacing:-0.231000px;}
.ls10a{letter-spacing:-0.211200px;}
.ls35{letter-spacing:-0.191400px;}
.lscd{letter-spacing:-0.189000px;}
.ls6{letter-spacing:-0.188100px;}
.lsbb{letter-spacing:-0.186000px;}
.ls1c{letter-spacing:-0.184800px;}
.ls98{letter-spacing:-0.178200px;}
.ls75{letter-spacing:-0.132000px;}
.ls56{letter-spacing:-0.129600px;}
.ls9b{letter-spacing:-0.126000px;}
.ls5f{letter-spacing:-0.125400px;}
.ls22{letter-spacing:-0.124200px;}
.ls8c{letter-spacing:-0.120120px;}
.ls55{letter-spacing:-0.118800px;}
.lsd4{letter-spacing:-0.105600px;}
.ls62{letter-spacing:-0.072600px;}
.lsbd{letter-spacing:-0.072000px;}
.ls87{letter-spacing:-0.066000px;}
.ls10{letter-spacing:-0.064800px;}
.ls1e{letter-spacing:-0.059400px;}
.ls6e{letter-spacing:-0.030000px;}
.lse5{letter-spacing:-0.027720px;}
.ls3e{letter-spacing:-0.024300px;}
.ls9e{letter-spacing:-0.024000px;}
.lsb2{letter-spacing:-0.019800px;}
.lsb{letter-spacing:-0.019200px;}
.ls9c{letter-spacing:-0.018000px;}
.ls1d{letter-spacing:-0.013200px;}
.ls70{letter-spacing:-0.012000px;}
.lse{letter-spacing:-0.010800px;}
.lsc{letter-spacing:-0.009600px;}
.ls16{letter-spacing:-0.006600px;}
.ls6f{letter-spacing:-0.006000px;}
.ls4{letter-spacing:-0.005700px;}
.lsd{letter-spacing:-0.005400px;}
.lsa{letter-spacing:-0.004800px;}
.ls3{letter-spacing:0.000000px;}
.lse6{letter-spacing:0.006600px;}
.ls0{letter-spacing:0.007200px;}
.lsde{letter-spacing:0.012600px;}
.ls5c{letter-spacing:0.013200px;}
.lsdb{letter-spacing:0.016800px;}
.ls90{letter-spacing:0.026400px;}
.lse0{letter-spacing:0.031200px;}
.ls8f{letter-spacing:0.033000px;}
.lsc9{letter-spacing:0.039600px;}
.ls13{letter-spacing:0.046200px;}
.ls2a{letter-spacing:0.052800px;}
.ls69{letter-spacing:0.059400px;}
.lsc8{letter-spacing:0.060060px;}
.ls57{letter-spacing:0.105600px;}
.ls3f{letter-spacing:0.112200px;}
.ls7d{letter-spacing:0.113400px;}
.lse9{letter-spacing:0.118800px;}
.lsd8{letter-spacing:0.120000px;}
.lsed{letter-spacing:0.132000px;}
.ls2e{letter-spacing:0.158400px;}
.ls48{letter-spacing:0.165000px;}
.ls2b{letter-spacing:0.171600px;}
.lsca{letter-spacing:0.172800px;}
.ls66{letter-spacing:0.174000px;}
.ls49{letter-spacing:0.178200px;}
.ls2f{letter-spacing:0.180000px;}
.lsd9{letter-spacing:0.191400px;}
.lsb5{letter-spacing:0.198000px;}
.ls112{letter-spacing:0.204600px;}
.ls102{letter-spacing:0.216600px;}
.ls107{letter-spacing:0.221400px;}
.ls15{letter-spacing:0.224400px;}
.ls27{letter-spacing:0.231000px;}
.lsb8{letter-spacing:0.232200px;}
.lsce{letter-spacing:0.234000px;}
.ls25{letter-spacing:0.237600px;}
.lsbe{letter-spacing:0.240240px;}
.ls111{letter-spacing:0.250800px;}
.lsee{letter-spacing:0.270600px;}
.ls28{letter-spacing:0.283800px;}
.ls44{letter-spacing:0.290400px;}
.ls7c{letter-spacing:0.294000px;}
.ls45{letter-spacing:0.297000px;}
.ls10f{letter-spacing:0.300000px;}
.lsb7{letter-spacing:0.308400px;}
.lsb6{letter-spacing:0.310200px;}
.ls10b{letter-spacing:0.336600px;}
.ls78{letter-spacing:0.343200px;}
.ls5a{letter-spacing:0.349800px;}
.ls4a{letter-spacing:0.356400px;}
.lse8{letter-spacing:0.360360px;}
.ls7a{letter-spacing:0.363000px;}
.ls59{letter-spacing:0.409200px;}
.ls92{letter-spacing:0.414000px;}
.ls29{letter-spacing:0.415800px;}
.ls93{letter-spacing:0.420000px;}
.ls58{letter-spacing:0.422400px;}
.ls10e{letter-spacing:0.454200px;}
.ls104{letter-spacing:0.457200px;}
.ls95{letter-spacing:0.462000px;}
.ls94{letter-spacing:0.474000px;}
.ls2{letter-spacing:0.475200px;}
.ls9d{letter-spacing:0.480000px;}
.ls10c{letter-spacing:0.521400px;}
.ls106{letter-spacing:0.528000px;}
.lsc4{letter-spacing:0.529200px;}
.ls26{letter-spacing:0.534600px;}
.ls36{letter-spacing:0.561000px;}
.ls77{letter-spacing:0.587400px;}
.ls1{letter-spacing:0.588600px;}
.ls4d{letter-spacing:0.594000px;}
.ls108{letter-spacing:0.599400px;}
.lsc2{letter-spacing:0.646800px;}
.ls47{letter-spacing:0.653400px;}
.ls42{letter-spacing:0.712800px;}
.ls2d{letter-spacing:0.719400px;}
.ls2c{letter-spacing:0.772200px;}
.ls43{letter-spacing:0.831600px;}
.lsb9{letter-spacing:0.837000px;}
.ls64{letter-spacing:0.877800px;}
.ls7e{letter-spacing:0.891000px;}
.lsc3{letter-spacing:0.896400px;}
.ls110{letter-spacing:0.897600px;}
.ls40{letter-spacing:0.950400px;}
.lsec{letter-spacing:0.957000px;}
.lsaa{letter-spacing:1.009800px;}
.ls7b{letter-spacing:1.014000px;}
.ls91{letter-spacing:1.016400px;}
.ls30{letter-spacing:1.074600px;}
.ls5b{letter-spacing:1.075800px;}
.lsa3{letter-spacing:1.135200px;}
.lsfd{letter-spacing:1.194600px;}
.ls68{letter-spacing:1.254000px;}
.ls1b{letter-spacing:1.669800px;}
.ls76{letter-spacing:1.676400px;}
.ls41{letter-spacing:1.854600px;}
.lsdf{letter-spacing:11.580000px;}
.ls109{letter-spacing:12.241800px;}
.lse4{letter-spacing:14.315400px;}
.ls67{letter-spacing:14.533200px;}
.lsf2{letter-spacing:14.880000px;}
.ls65{letter-spacing:15.001800px;}
.lsf5{letter-spacing:15.081000px;}
.lsf3{letter-spacing:15.240000px;}
.lsf4{letter-spacing:15.300000px;}
.ls86{letter-spacing:15.444000px;}
.lsa1{letter-spacing:15.540000px;}
.lsd6{letter-spacing:15.660000px;}
.ls6a{letter-spacing:15.780000px;}
.ls10d{letter-spacing:15.960000px;}
.lsea{letter-spacing:16.394400px;}
.lsdd{letter-spacing:16.460400px;}
.lse2{letter-spacing:16.473600px;}
.lsdc{letter-spacing:16.500000px;}
.lse1{letter-spacing:16.513200px;}
.ls14{letter-spacing:16.800000px;}
.lse3{letter-spacing:17.133600px;}
.lsa2{letter-spacing:17.160000px;}
.ls103{letter-spacing:18.300000px;}
.lsda{letter-spacing:18.301800px;}
.lsd7{letter-spacing:18.315000px;}
.ls46{letter-spacing:18.360000px;}
.ls79{letter-spacing:18.420000px;}
.ls105{letter-spacing:18.540000px;}
.lseb{letter-spacing:18.730800px;}
.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;}
}
.ws78{word-spacing:-17.034600px;}
.ws102{word-spacing:-16.823400px;}
.wsc7{word-spacing:-16.797000px;}
.ws11f{word-spacing:-16.790400px;}
.wsd1{word-spacing:-16.698000px;}
.ws19{word-spacing:-16.500000px;}
.ws1b{word-spacing:-16.493400px;}
.wsc8{word-spacing:-16.486800px;}
.ws109{word-spacing:-16.480200px;}
.ws7d{word-spacing:-16.368000px;}
.wsd0{word-spacing:-16.308600px;}
.ws10a{word-spacing:-16.255800px;}
.ws11d{word-spacing:-16.176600px;}
.ws11c{word-spacing:-16.137000px;}
.wsab{word-spacing:-15.474000px;}
.wsc6{word-spacing:-15.470400px;}
.wsaa{word-spacing:-15.462000px;}
.wsa8{word-spacing:-15.420000px;}
.wsd4{word-spacing:-15.417600px;}
.ws79{word-spacing:-15.000000px;}
.wsac{word-spacing:-14.994000px;}
.wsbd{word-spacing:-14.988600px;}
.wsa9{word-spacing:-14.988000px;}
.wsd2{word-spacing:-14.928000px;}
.wsa2{word-spacing:-14.790600px;}
.ws0{word-spacing:-14.535000px;}
.ws1{word-spacing:-14.529300px;}
.wsd6{word-spacing:-14.337000px;}
.ws1e{word-spacing:-14.250000px;}
.ws1d{word-spacing:-14.244300px;}
.wsd7{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.489200px;}
.wsf0{word-spacing:-12.663000px;}
.ws120{word-spacing:-12.592800px;}
.ws103{word-spacing:-11.910360px;}
.wsd3{word-spacing:-11.790240px;}
.wse4{word-spacing:-11.610060px;}
.ws1a{word-spacing:-11.550000px;}
.ws127{word-spacing:-11.429880px;}
.ws11e{word-spacing:-11.309760px;}
.wsef{word-spacing:-10.500000px;}
.ws38{word-spacing:-10.100700px;}
.wsc9{word-spacing:-9.574200px;}
.ws5d{word-spacing:-0.838200px;}
.ws107{word-spacing:-0.831600px;}
.ws2e{word-spacing:-0.778800px;}
.ws43{word-spacing:-0.772200px;}
.ws129{word-spacing:-0.765600px;}
.ws9e{word-spacing:-0.720000px;}
.ws58{word-spacing:-0.719400px;}
.wsa{word-spacing:-0.718200px;}
.ws85{word-spacing:-0.712800px;}
.ws8b{word-spacing:-0.666600px;}
.ws124{word-spacing:-0.666000px;}
.ws28{word-spacing:-0.660000px;}
.ws13{word-spacing:-0.658800px;}
.wsdd{word-spacing:-0.654000px;}
.ws3c{word-spacing:-0.653400px;}
.wsa4{word-spacing:-0.646800px;}
.ws128{word-spacing:-0.633600px;}
.ws7e{word-spacing:-0.613800px;}
.wsb2{word-spacing:-0.607200px;}
.ws70{word-spacing:-0.600600px;}
.wsdb{word-spacing:-0.600000px;}
.ws16{word-spacing:-0.599400px;}
.ws4c{word-spacing:-0.594000px;}
.ws42{word-spacing:-0.587400px;}
.ws41{word-spacing:-0.567600px;}
.ws8f{word-spacing:-0.554400px;}
.ws6a{word-spacing:-0.545400px;}
.ws74{word-spacing:-0.541200px;}
.wsae{word-spacing:-0.540000px;}
.ws5{word-spacing:-0.535800px;}
.ws86{word-spacing:-0.534600px;}
.ws100{word-spacing:-0.495000px;}
.ws39{word-spacing:-0.481800px;}
.ws4{word-spacing:-0.478800px;}
.ws36{word-spacing:-0.475200px;}
.wse7{word-spacing:-0.474000px;}
.wsb6{word-spacing:-0.468600px;}
.ws12f{word-spacing:-0.448800px;}
.ws106{word-spacing:-0.422400px;}
.ws31{word-spacing:-0.421200px;}
.wsd9{word-spacing:-0.420000px;}
.ws6{word-spacing:-0.416100px;}
.ws2c{word-spacing:-0.415800px;}
.ws83{word-spacing:-0.366000px;}
.ws11b{word-spacing:-0.363000px;}
.ws32{word-spacing:-0.361800px;}
.wsa5{word-spacing:-0.360000px;}
.ws3b{word-spacing:-0.356400px;}
.ws23{word-spacing:-0.349800px;}
.ws84{word-spacing:-0.342000px;}
.ws40{word-spacing:-0.303600px;}
.ws22{word-spacing:-0.297000px;}
.wse9{word-spacing:-0.294000px;}
.ws24{word-spacing:-0.290400px;}
.wsc2{word-spacing:-0.277200px;}
.ws110{word-spacing:-0.250800px;}
.wsfb{word-spacing:-0.244200px;}
.wsed{word-spacing:-0.243000px;}
.wsf3{word-spacing:-0.240000px;}
.ws35{word-spacing:-0.237600px;}
.wse8{word-spacing:-0.234000px;}
.wsee{word-spacing:-0.232200px;}
.ws95{word-spacing:-0.231000px;}
.ws65{word-spacing:-0.224400px;}
.ws96{word-spacing:-0.217800px;}
.ws117{word-spacing:-0.204600px;}
.ws116{word-spacing:-0.198000px;}
.ws81{word-spacing:-0.191400px;}
.ws67{word-spacing:-0.178200px;}
.wse6{word-spacing:-0.174000px;}
.ws4b{word-spacing:-0.171600px;}
.ws97{word-spacing:-0.168000px;}
.ws4a{word-spacing:-0.165000px;}
.wsb7{word-spacing:-0.126000px;}
.wscf{word-spacing:-0.124200px;}
.wsc{word-spacing:-0.119700px;}
.ws80{word-spacing:-0.118800px;}
.ws6f{word-spacing:-0.112200px;}
.wsf4{word-spacing:-0.108000px;}
.ws9c{word-spacing:-0.060000px;}
.ws33{word-spacing:-0.059400px;}
.ws5a{word-spacing:-0.052800px;}
.ws63{word-spacing:-0.046200px;}
.ws62{word-spacing:-0.033000px;}
.ws10{word-spacing:-0.007200px;}
.wsb3{word-spacing:-0.006600px;}
.ws125{word-spacing:-0.006000px;}
.ws30{word-spacing:-0.005700px;}
.ws2f{word-spacing:-0.004800px;}
.ws9{word-spacing:0.000000px;}
.ws11{word-spacing:0.005400px;}
.ws8{word-spacing:0.005700px;}
.ws9a{word-spacing:0.006000px;}
.ws46{word-spacing:0.006600px;}
.wsbf{word-spacing:0.013200px;}
.wsbb{word-spacing:0.018000px;}
.wsc1{word-spacing:0.046200px;}
.ws112{word-spacing:0.052800px;}
.ws3{word-spacing:0.057000px;}
.ws3a{word-spacing:0.059400px;}
.wsf2{word-spacing:0.060000px;}
.ws82{word-spacing:0.066000px;}
.ws7a{word-spacing:0.072000px;}
.ws6b{word-spacing:0.105600px;}
.ws72{word-spacing:0.112200px;}
.wsfd{word-spacing:0.113400px;}
.ws64{word-spacing:0.118800px;}
.ws99{word-spacing:0.120000px;}
.wsd8{word-spacing:0.125400px;}
.ws118{word-spacing:0.171600px;}
.wsa3{word-spacing:0.178200px;}
.wsda{word-spacing:0.180000px;}
.ws57{word-spacing:0.184800px;}
.wsdf{word-spacing:0.224400px;}
.wsca{word-spacing:0.231000px;}
.ws88{word-spacing:0.237600px;}
.wsaf{word-spacing:0.240000px;}
.ws90{word-spacing:0.244200px;}
.ws91{word-spacing:0.250800px;}
.wsde{word-spacing:0.264000px;}
.ws111{word-spacing:0.283800px;}
.wscc{word-spacing:0.290400px;}
.ws98{word-spacing:0.294000px;}
.wsbe{word-spacing:0.297000px;}
.wsf8{word-spacing:0.300000px;}
.ws55{word-spacing:0.302400px;}
.ws29{word-spacing:0.303600px;}
.wsb0{word-spacing:0.306000px;}
.ws8c{word-spacing:0.313200px;}
.ws2a{word-spacing:0.349800px;}
.ws73{word-spacing:0.356400px;}
.wsa6{word-spacing:0.360000px;}
.ws34{word-spacing:0.361800px;}
.ws89{word-spacing:0.363000px;}
.wsdc{word-spacing:0.366000px;}
.ws115{word-spacing:0.369600px;}
.wse1{word-spacing:0.415800px;}
.wsb{word-spacing:0.416100px;}
.ws12{word-spacing:0.421200px;}
.ws87{word-spacing:0.422400px;}
.wse0{word-spacing:0.426600px;}
.ws93{word-spacing:0.475200px;}
.wsd{word-spacing:0.478800px;}
.ws9b{word-spacing:0.480000px;}
.wsa1{word-spacing:0.480600px;}
.ws47{word-spacing:0.481800px;}
.wsd5{word-spacing:0.486000px;}
.ws108{word-spacing:0.488400px;}
.ws104{word-spacing:0.534600px;}
.ws20{word-spacing:0.540000px;}
.ws44{word-spacing:0.541200px;}
.wsf{word-spacing:0.547200px;}
.wsbc{word-spacing:0.547800px;}
.wsb9{word-spacing:0.552000px;}
.wsff{word-spacing:0.574200px;}
.ws6c{word-spacing:0.594000px;}
.ws15{word-spacing:0.599400px;}
.ws122{word-spacing:0.600000px;}
.ws75{word-spacing:0.600600px;}
.wsea{word-spacing:0.604800px;}
.wsc0{word-spacing:0.653400px;}
.ws66{word-spacing:0.660000px;}
.ws17{word-spacing:0.664200px;}
.ws45{word-spacing:0.712800px;}
.wse{word-spacing:0.718200px;}
.wsc4{word-spacing:0.719400px;}
.ws9d{word-spacing:0.720000px;}
.ws14{word-spacing:0.723600px;}
.ws10d{word-spacing:0.726000px;}
.ws76{word-spacing:0.732600px;}
.ws8d{word-spacing:0.778800px;}
.wsb1{word-spacing:0.780000px;}
.ws5f{word-spacing:0.785400px;}
.wsfe{word-spacing:0.792000px;}
.ws121{word-spacing:0.838200px;}
.ws5b{word-spacing:0.844800px;}
.ws4f{word-spacing:0.891000px;}
.ws1f{word-spacing:0.896400px;}
.ws77{word-spacing:0.897600px;}
.ws18{word-spacing:0.901800px;}
.ws50{word-spacing:0.904200px;}
.wsad{word-spacing:0.924000px;}
.ws10c{word-spacing:0.950400px;}
.ws126{word-spacing:0.955800px;}
.wsb5{word-spacing:0.957000px;}
.wse5{word-spacing:0.963600px;}
.ws37{word-spacing:0.970200px;}
.ws68{word-spacing:1.016400px;}
.wsba{word-spacing:1.020000px;}
.wsc5{word-spacing:1.020600px;}
.ws8e{word-spacing:1.023000px;}
.wsa7{word-spacing:1.029600px;}
.ws3f{word-spacing:1.049400px;}
.ws7f{word-spacing:1.069200px;}
.ws3e{word-spacing:1.075800px;}
.ws7{word-spacing:1.077300px;}
.wsb8{word-spacing:1.080000px;}
.ws5c{word-spacing:1.082400px;}
.ws12c{word-spacing:1.090800px;}
.ws12a{word-spacing:1.095600px;}
.ws71{word-spacing:1.135200px;}
.wsec{word-spacing:1.139400px;}
.wsfa{word-spacing:1.141800px;}
.wse2{word-spacing:1.144800px;}
.ws12d{word-spacing:1.148400px;}
.ws7b{word-spacing:1.161600px;}
.ws56{word-spacing:1.188000px;}
.wsf7{word-spacing:1.194000px;}
.ws49{word-spacing:1.194600px;}
.wseb{word-spacing:1.198800px;}
.ws9f{word-spacing:1.200000px;}
.ws119{word-spacing:1.201200px;}
.ws105{word-spacing:1.207800px;}
.ws6d{word-spacing:1.247400px;}
.wsf9{word-spacing:1.254000px;}
.wsa0{word-spacing:1.258200px;}
.wsf6{word-spacing:1.260000px;}
.ws4e{word-spacing:1.260600px;}
.ws94{word-spacing:1.267200px;}
.ws6e{word-spacing:1.313400px;}
.ws123{word-spacing:1.314000px;}
.ws5e{word-spacing:1.320000px;}
.ws48{word-spacing:1.326600px;}
.ws114{word-spacing:1.333200px;}
.ws10f{word-spacing:1.339800px;}
.wsc3{word-spacing:1.372800px;}
.ws59{word-spacing:1.379400px;}
.ws2d{word-spacing:1.386000px;}
.ws10e{word-spacing:1.392600px;}
.ws61{word-spacing:1.399200px;}
.ws12e{word-spacing:1.405800px;}
.ws69{word-spacing:1.432200px;}
.ws3d{word-spacing:1.438800px;}
.ws52{word-spacing:1.445400px;}
.ws51{word-spacing:1.498200px;}
.wsf1{word-spacing:1.500000px;}
.ws4d{word-spacing:1.504800px;}
.wsf5{word-spacing:1.506000px;}
.ws12b{word-spacing:1.551000px;}
.ws8a{word-spacing:1.557600px;}
.ws26{word-spacing:1.564200px;}
.ws27{word-spacing:1.617000px;}
.ws2b{word-spacing:1.623600px;}
.wscd{word-spacing:1.630200px;}
.ws21{word-spacing:1.669800px;}
.ws92{word-spacing:1.676400px;}
.ws60{word-spacing:1.683000px;}
.ws101{word-spacing:1.716000px;}
.ws7c{word-spacing:1.795200px;}
.ws25{word-spacing:2.884200px;}
.ws11a{word-spacing:4.435200px;}
.wse3{word-spacing:4.950000px;}
.ws113{word-spacing:5.304240px;}
.ws130{word-spacing:6.481200px;}
.wsfc{word-spacing:9.001800px;}
.wscb{word-spacing:9.055200px;}
.ws10b{word-spacing:23.344200px;}
.wsb4{word-spacing:24.004200px;}
.ws54{word-spacing:34.927200px;}
.ws1c{word-spacing:35.697600px;}
.ws53{word-spacing:36.001800px;}
.wsce{word-spacing:36.552600px;}
._d{margin-left:-36.007200px;}
._15{margin-left:-24.004200px;}
._20{margin-left:-22.379700px;}
._1c{margin-left:-9.614700px;}
._b{margin-left:-7.722000px;}
._e{margin-left:-6.420600px;}
._2{margin-left:-4.959000px;}
._12{margin-left:-3.953400px;}
._0{margin-left:-2.810100px;}
._1{margin-left:-1.248300px;}
._6{width:1.165200px;}
._5{width:2.165400px;}
._1e{width:3.472200px;}
._1d{width:6.247800px;}
._16{width:7.332600px;}
._1b{width:8.926200px;}
._21{width:10.306200px;}
._9{width:11.577600px;}
._a{width:13.140600px;}
._18{width:14.632200px;}
._13{width:16.426800px;}
._17{width:17.826600px;}
._10{width:19.147500px;}
._1f{width:21.674400px;}
._11{width:24.004200px;}
._19{width:27.720000px;}
._14{width:34.630200px;}
._f{width:36.666000px;}
._1a{width:40.504200px;}
._3{width:47.750400px;}
._8{width:49.744800px;}
._4{width:68.731200px;}
._c{width:924.364800px;}
._7{width:1003.545600px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:40.500000px;}
.fs9{font-size:42.000000px;}
.fs6{font-size:46.200000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y223{bottom:36.464400px;}
.y201{bottom:36.793800px;}
.y21{bottom:36.804600px;}
.y243{bottom:36.856950px;}
.y79{bottom:36.883800px;}
.y1bb{bottom:36.895800px;}
.y174{bottom:36.899400px;}
.y9d{bottom:36.913800px;}
.y103{bottom:36.927600px;}
.y28d{bottom:36.942000px;}
.y26e{bottom:36.990750px;}
.y4d{bottom:37.025400px;}
.y196{bottom:37.094400px;}
.ye1{bottom:37.228500px;}
.y1dd{bottom:37.327200px;}
.y151{bottom:37.634400px;}
.y129{bottom:37.845750px;}
.ybb{bottom:45.481500px;}
.y222{bottom:50.715000px;}
.y200{bottom:51.044400px;}
.y20{bottom:51.055200px;}
.y78{bottom:51.134400px;}
.y1ba{bottom:51.146400px;}
.y173{bottom:51.150000px;}
.y9c{bottom:51.164400px;}
.y102{bottom:51.178200px;}
.y28c{bottom:51.192600px;}
.y4c{bottom:51.276000px;}
.y195{bottom:51.345000px;}
.y1dc{bottom:51.577800px;}
.y242{bottom:54.107700px;}
.y26d{bottom:54.241500px;}
.ye0{bottom:54.479250px;}
.y150{bottom:54.879150px;}
.y128{bottom:55.096500px;}
.y2a8{bottom:65.248200px;}
.y1ff{bottom:65.295000px;}
.y1f{bottom:65.305800px;}
.y77{bottom:65.385000px;}
.y1b9{bottom:65.397000px;}
.y9b{bottom:65.415000px;}
.y101{bottom:65.428800px;}
.y28b{bottom:65.443200px;}
.y4b{bottom:65.526600px;}
.y1db{bottom:65.828400px;}
.yba{bottom:71.356800px;}
.y241{bottom:71.358450px;}
.y26c{bottom:71.492250px;}
.ydf{bottom:71.729400px;}
.y14f{bottom:72.129900px;}
.y127{bottom:72.347250px;}
.y2a7{bottom:79.498800px;}
.y1e{bottom:79.556400px;}
.y1b8{bottom:79.647600px;}
.y100{bottom:79.679400px;}
.y28a{bottom:79.693800px;}
.y4a{bottom:79.777200px;}
.y1da{bottom:80.079000px;}
.yb9{bottom:88.607550px;}
.y240{bottom:88.609200px;}
.y194{bottom:88.618800px;}
.y26b{bottom:88.743000px;}
.yde{bottom:88.965000px;}
.y14e{bottom:89.380650px;}
.y126{bottom:89.598000px;}
.y2a6{bottom:93.749400px;}
.y1d{bottom:93.807000px;}
.y1b7{bottom:93.898200px;}
.yff{bottom:93.930000px;}
.y289{bottom:93.944400px;}
.y49{bottom:94.027800px;}
.y1d9{bottom:94.329600px;}
.y1fe{bottom:96.873000px;}
.y172{bottom:97.241850px;}
.y221{bottom:97.249350px;}
.yb8{bottom:105.858300px;}
.y23f{bottom:105.859950px;}
.y193{bottom:105.869550px;}
.y76{bottom:105.873750px;}
.y9a{bottom:105.876750px;}
.y26a{bottom:105.993750px;}
.ydd{bottom:106.215750px;}
.y14d{bottom:106.631400px;}
.y125{bottom:106.848750px;}
.y2a5{bottom:108.000000px;}
.y1c{bottom:108.057600px;}
.y1b6{bottom:108.148800px;}
.y288{bottom:108.195000px;}
.y48{bottom:108.278400px;}
.y1d8{bottom:108.580200px;}
.y1fd{bottom:114.123750px;}
.y171{bottom:114.492600px;}
.y1b{bottom:122.308200px;}
.y1b5{bottom:122.399400px;}
.y47{bottom:122.529000px;}
.y1d7{bottom:122.830800px;}
.yb7{bottom:123.109050px;}
.y23e{bottom:123.110700px;}
.y192{bottom:123.120300px;}
.y75{bottom:123.124500px;}
.y220{bottom:123.124650px;}
.y99{bottom:123.127500px;}
.y269{bottom:123.244500px;}
.ydc{bottom:123.466500px;}
.y14c{bottom:123.882150px;}
.y124{bottom:124.099500px;}
.yfe{bottom:125.670150px;}
.y1fc{bottom:131.374500px;}
.y170{bottom:131.743350px;}
.y1a{bottom:136.558800px;}
.y1b4{bottom:136.650000px;}
.y46{bottom:136.779600px;}
.y1d6{bottom:137.081400px;}
.yb6{bottom:140.359800px;}
.y23d{bottom:140.361450px;}
.y191{bottom:140.371050px;}
.y74{bottom:140.375250px;}
.y21f{bottom:140.375400px;}
.y98{bottom:140.378250px;}
.y268{bottom:140.495250px;}
.ydb{bottom:140.717250px;}
.y14b{bottom:141.132900px;}
.y123{bottom:141.350250px;}
.yfd{bottom:141.420150px;}
.y1fb{bottom:148.625250px;}
.y16f{bottom:148.994100px;}
.y287{bottom:149.385000px;}
.y19{bottom:150.809400px;}
.y45{bottom:151.030200px;}
.y1d5{bottom:151.332000px;}
.yfc{bottom:157.170150px;}
.yb5{bottom:157.610550px;}
.y23c{bottom:157.612200px;}
.y190{bottom:157.621800px;}
.y73{bottom:157.626000px;}
.y21e{bottom:157.626150px;}
.y97{bottom:157.629000px;}
.y2a4{bottom:157.632150px;}
.y267{bottom:157.746000px;}
.yda{bottom:157.968000px;}
.y14a{bottom:158.383650px;}
.y122{bottom:158.601000px;}
.y18{bottom:165.060000px;}
.y286{bottom:165.135000px;}
.y44{bottom:165.280800px;}
.y1d4{bottom:165.582600px;}
.y1fa{bottom:165.876000px;}
.y16e{bottom:166.244850px;}
.y1b3{bottom:169.627500px;}
.yfb{bottom:172.920150px;}
.yb4{bottom:174.861300px;}
.y23b{bottom:174.862950px;}
.y72{bottom:174.876750px;}
.y21d{bottom:174.876900px;}
.y96{bottom:174.879750px;}
.y2a3{bottom:174.882900px;}
.y266{bottom:174.996750px;}
.yd9{bottom:175.218750px;}
.y149{bottom:175.634400px;}
.y121{bottom:175.851750px;}
.y43{bottom:179.531400px;}
.y1d3{bottom:179.833200px;}
.y285{bottom:180.885000px;}
.y1f9{bottom:183.126750px;}
.y16d{bottom:183.495600px;}
.y18f{bottom:183.497100px;}
.y1b2{bottom:186.878250px;}
.yfa{bottom:188.670150px;}
.yb3{bottom:192.112050px;}
.y23a{bottom:192.113700px;}
.y2c5{bottom:192.121500px;}
.y71{bottom:192.127500px;}
.y95{bottom:192.130500px;}
.y2a2{bottom:192.133650px;}
.y265{bottom:192.247500px;}
.yd8{bottom:192.469500px;}
.y148{bottom:192.885150px;}
.y120{bottom:193.102500px;}
.y42{bottom:193.782000px;}
.y1d2{bottom:194.083800px;}
.y284{bottom:196.635000px;}
.y1f8{bottom:200.377500px;}
.y16c{bottom:200.746350px;}
.y18e{bottom:200.747850px;}
.y21c{bottom:200.752200px;}
.y1b1{bottom:204.129000px;}
.yf9{bottom:204.420150px;}
.y41{bottom:208.032600px;}
.y1d1{bottom:208.334400px;}
.yb2{bottom:209.362800px;}
.y239{bottom:209.364450px;}
.y2c4{bottom:209.372250px;}
.y70{bottom:209.378250px;}
.y94{bottom:209.381250px;}
.y2a1{bottom:209.384400px;}
.y264{bottom:209.498250px;}
.yd7{bottom:209.720250px;}
.y11f{bottom:210.353250px;}
.y283{bottom:212.385000px;}
.y1f7{bottom:217.628250px;}
.y16b{bottom:217.997100px;}
.y21b{bottom:218.002950px;}
.y1b0{bottom:221.379750px;}
.y40{bottom:222.283200px;}
.y1d0{bottom:222.585000px;}
.yb1{bottom:226.613550px;}
.y238{bottom:226.615200px;}
.y2c3{bottom:226.623000px;}
.y18d{bottom:226.623150px;}
.y6f{bottom:226.629000px;}
.y93{bottom:226.632000px;}
.y2a0{bottom:226.634250px;}
.y263{bottom:226.749000px;}
.yd6{bottom:226.971000px;}
.y147{bottom:227.385000px;}
.y11e{bottom:227.604000px;}
.y282{bottom:228.135000px;}
.y1f6{bottom:234.879000px;}
.y16a{bottom:235.247850px;}
.y21a{bottom:235.253700px;}
.yf8{bottom:236.332200px;}
.y3f{bottom:236.533800px;}
.y1af{bottom:238.630500px;}
.y146{bottom:243.135000px;}
.yb0{bottom:243.864300px;}
.y237{bottom:243.865950px;}
.y2c2{bottom:243.873750px;}
.y18c{bottom:243.873900px;}
.y29f{bottom:243.874650px;}
.y6e{bottom:243.879750px;}
.y92{bottom:243.882750px;}
.y262{bottom:243.999750px;}
.yd5{bottom:244.221750px;}
.y11d{bottom:244.854750px;}
.y12{bottom:247.740000px;}
.y3e{bottom:250.784400px;}
.y1f5{bottom:252.129750px;}
.y169{bottom:252.498600px;}
.y219{bottom:252.504450px;}
.yf7{bottom:253.581300px;}
.y1ae{bottom:255.881250px;}
.y145{bottom:258.885000px;}
.yaf{bottom:261.115050px;}
.y236{bottom:261.116700px;}
.y281{bottom:261.120750px;}
.y2c1{bottom:261.124500px;}
.y18b{bottom:261.124650px;}
.y29e{bottom:261.125400px;}
.y6d{bottom:261.130500px;}
.y91{bottom:261.133500px;}
.y261{bottom:261.250500px;}
.yd4{bottom:261.472500px;}
.y11c{bottom:262.105500px;}
.y3d{bottom:265.035000px;}
.y11{bottom:268.742175px;}
.y1f4{bottom:269.380500px;}
.y168{bottom:269.749350px;}
.y218{bottom:269.755200px;}
.yf6{bottom:270.830400px;}
.y1ad{bottom:273.132000px;}
.y1cf{bottom:273.132750px;}
.y144{bottom:274.635000px;}
.yae{bottom:278.365800px;}
.y235{bottom:278.367450px;}
.y280{bottom:278.371500px;}
.y2c0{bottom:278.375250px;}
.y18a{bottom:278.375400px;}
.y29d{bottom:278.376150px;}
.y6c{bottom:278.381250px;}
.y90{bottom:278.384250px;}
.y260{bottom:278.501250px;}
.yd3{bottom:278.723250px;}
.y11b{bottom:279.356250px;}
.y10{bottom:283.741725px;}
.y1f3{bottom:286.631250px;}
.y167{bottom:287.000100px;}
.y217{bottom:287.005950px;}
.yf5{bottom:288.079500px;}
.y1ac{bottom:290.382750px;}
.y1ce{bottom:290.383500px;}
.y143{bottom:290.385000px;}
.yad{bottom:295.616550px;}
.y234{bottom:295.618200px;}
.y27f{bottom:295.622250px;}
.y2bf{bottom:295.626000px;}
.y189{bottom:295.626150px;}
.y29c{bottom:295.626900px;}
.y6b{bottom:295.632000px;}
.y25f{bottom:295.752000px;}
.yd2{bottom:295.974000px;}
.y11a{bottom:296.607000px;}
.yf{bottom:298.741275px;}
.y1f2{bottom:303.882000px;}
.y166{bottom:304.250850px;}
.y216{bottom:304.256700px;}
.y35{bottom:304.301250px;}
.yf4{bottom:305.328600px;}
.y142{bottom:306.135000px;}
.y1ab{bottom:307.633500px;}
.y1cd{bottom:307.634250px;}
.yac{bottom:312.867300px;}
.y233{bottom:312.868950px;}
.y27e{bottom:312.873000px;}
.y2be{bottom:312.876750px;}
.y188{bottom:312.876900px;}
.y29b{bottom:312.877650px;}
.y6a{bottom:312.882750px;}
.y25e{bottom:313.002750px;}
.yd1{bottom:313.224750px;}
.ye{bottom:313.740825px;}
.y119{bottom:313.857750px;}
.y1f1{bottom:321.132750px;}
.y165{bottom:321.501600px;}
.y215{bottom:321.507450px;}
.y34{bottom:321.552000px;}
.yf3{bottom:322.577700px;}
.y1cc{bottom:324.883500px;}
.y1aa{bottom:324.884250px;}
.yd{bottom:328.740375px;}
.yab{bottom:330.118050px;}
.y232{bottom:330.119700px;}
.y27d{bottom:330.123750px;}
.y2bd{bottom:330.127500px;}
.y187{bottom:330.127650px;}
.y29a{bottom:330.128400px;}
.y69{bottom:330.133500px;}
.y25d{bottom:330.253500px;}
.yd0{bottom:330.475500px;}
.y118{bottom:331.108500px;}
.y1f0{bottom:338.383500px;}
.y164{bottom:338.752350px;}
.y33{bottom:338.802750px;}
.y141{bottom:339.127350px;}
.yf2{bottom:339.826800px;}
.y1a9{bottom:342.129750px;}
.y1cb{bottom:342.134250px;}
.yc{bottom:343.739925px;}
.yaa{bottom:347.368800px;}
.y231{bottom:347.370450px;}
.y27c{bottom:347.374500px;}
.y2bc{bottom:347.378250px;}
.y186{bottom:347.378400px;}
.y299{bottom:347.379150px;}
.y214{bottom:347.382750px;}
.y68{bottom:347.384250px;}
.y25c{bottom:347.504250px;}
.ycf{bottom:347.726250px;}
.y117{bottom:348.359250px;}
.y1ef{bottom:355.634250px;}
.y163{bottom:356.003100px;}
.y32{bottom:356.053500px;}
.y140{bottom:356.378100px;}
.yf1{bottom:357.075900px;}
.yb{bottom:358.739475px;}
.y1a8{bottom:359.380500px;}
.y1ca{bottom:359.385000px;}
.y67{bottom:364.619550px;}
.y230{bottom:364.621200px;}
.y27b{bottom:364.625250px;}
.y2bb{bottom:364.629000px;}
.y185{bottom:364.629150px;}
.y8f{bottom:364.629450px;}
.y298{bottom:364.629900px;}
.y213{bottom:364.633500px;}
.y25b{bottom:364.754250px;}
.yce{bottom:364.977000px;}
.y116{bottom:365.610000px;}
.y1ee{bottom:372.885000px;}
.y162{bottom:373.253850px;}
.y31{bottom:373.304250px;}
.yf0{bottom:374.325000px;}
.y1a7{bottom:376.631250px;}
.y66{bottom:381.870300px;}
.y22f{bottom:381.871950px;}
.y27a{bottom:381.876000px;}
.y2ba{bottom:381.879750px;}
.y184{bottom:381.879900px;}
.y297{bottom:381.880650px;}
.y212{bottom:381.884250px;}
.y25a{bottom:382.000500px;}
.ycd{bottom:382.227750px;}
.ya{bottom:388.740000px;}
.y161{bottom:390.504600px;}
.y8e{bottom:390.504750px;}
.y30{bottom:390.548700px;}
.y13f{bottom:390.877950px;}
.y1a6{bottom:393.882000px;}
.y1c9{bottom:393.885000px;}
.y65{bottom:399.121050px;}
.y22e{bottom:399.122700px;}
.y279{bottom:399.126750px;}
.y2b9{bottom:399.130500px;}
.y183{bottom:399.130650px;}
.y296{bottom:399.131400px;}
.y211{bottom:399.133200px;}
.y259{bottom:399.251250px;}
.ycc{bottom:399.478500px;}
.y115{bottom:404.130000px;}
.y1ed{bottom:407.385000px;}
.yef{bottom:407.730000px;}
.y160{bottom:407.755350px;}
.y2f{bottom:407.799450px;}
.y13e{bottom:408.128700px;}
.y1c8{bottom:409.635000px;}
.y1a5{bottom:411.132750px;}
.y64{bottom:416.370150px;}
.ya9{bottom:416.371800px;}
.y22d{bottom:416.373450px;}
.y278{bottom:416.377500px;}
.y182{bottom:416.379750px;}
.y295{bottom:416.380500px;}
.y2b8{bottom:416.381250px;}
.y210{bottom:416.382300px;}
.y258{bottom:416.502000px;}
.ycb{bottom:416.729250px;}
.y114{bottom:419.880000px;}
.y1ec{bottom:423.135000px;}
.yee{bottom:423.480000px;}
.y9{bottom:424.741950px;}
.y15f{bottom:425.006100px;}
.y2e{bottom:425.050200px;}
.y13d{bottom:425.379450px;}
.y1c7{bottom:425.385000px;}
.y1a4{bottom:428.383500px;}
.y63{bottom:433.620900px;}
.ya8{bottom:433.622550px;}
.y22c{bottom:433.624200px;}
.y277{bottom:433.628250px;}
.y8d{bottom:433.629150px;}
.y181{bottom:433.630500px;}
.y294{bottom:433.631250px;}
.y2b7{bottom:433.632000px;}
.y257{bottom:433.752750px;}
.yca{bottom:433.980000px;}
.y113{bottom:435.630000px;}
.y1eb{bottom:438.885000px;}
.yed{bottom:439.230000px;}
.y1c6{bottom:441.135000px;}
.y15e{bottom:442.256850px;}
.y20f{bottom:442.257600px;}
.y2d{bottom:442.300950px;}
.y13c{bottom:442.630200px;}
.y1a3{bottom:445.634250px;}
.y8{bottom:445.742175px;}
.y62{bottom:450.871650px;}
.ya7{bottom:450.873300px;}
.y22b{bottom:450.874950px;}
.y276{bottom:450.879000px;}
.y8c{bottom:450.879900px;}
.y180{bottom:450.881250px;}
.y293{bottom:450.882000px;}
.y2b6{bottom:450.882750px;}
.y256{bottom:451.003500px;}
.y112{bottom:451.380000px;}
.y1ea{bottom:454.635000px;}
.yec{bottom:454.980000px;}
.y1c5{bottom:456.885000px;}
.y2c{bottom:459.551700px;}
.y13b{bottom:459.880950px;}
.y7{bottom:460.741725px;}
.y1a2{bottom:462.885000px;}
.y111{bottom:467.130000px;}
.y61{bottom:468.122400px;}
.ya6{bottom:468.124050px;}
.y22a{bottom:468.125700px;}
.y275{bottom:468.129750px;}
.y8b{bottom:468.130650px;}
.y17f{bottom:468.132000px;}
.y292{bottom:468.132750px;}
.y2b5{bottom:468.133500px;}
.y255{bottom:468.254250px;}
.yc9{bottom:470.370000px;}
.y1e9{bottom:470.385000px;}
.yeb{bottom:470.730000px;}
.y1c4{bottom:472.635000px;}
.y6{bottom:475.741275px;}
.y15d{bottom:476.756700px;}
.y2b{bottom:476.802450px;}
.y13a{bottom:477.131700px;}
.y110{bottom:482.880000px;}
.y60{bottom:485.373150px;}
.ya5{bottom:485.374800px;}
.y229{bottom:485.376450px;}
.y274{bottom:485.380500px;}
.y8a{bottom:485.381400px;}
.y20e{bottom:485.382000px;}
.y17e{bottom:485.382750px;}
.y291{bottom:485.383500px;}
.y2b4{bottom:485.384250px;}
.y254{bottom:485.504250px;}
.yc8{bottom:486.120000px;}
.y1e8{bottom:486.135000px;}
.y1c3{bottom:488.385000px;}
.y5{bottom:490.740825px;}
.y15c{bottom:494.007450px;}
.y2a{bottom:494.053200px;}
.y139{bottom:494.382450px;}
.y1a1{bottom:497.385000px;}
.yc7{bottom:501.870000px;}
.y1e7{bottom:501.885000px;}
.y5f{bottom:502.623900px;}
.ya4{bottom:502.625550px;}
.y228{bottom:502.627200px;}
.y273{bottom:502.631250px;}
.y89{bottom:502.632150px;}
.yea{bottom:502.632750px;}
.y17d{bottom:502.633500px;}
.y290{bottom:502.634250px;}
.y253{bottom:502.754250px;}
.y1c2{bottom:504.135000px;}
.y4{bottom:505.740375px;}
.y15b{bottom:511.258200px;}
.y29{bottom:511.303950px;}
.y138{bottom:511.633200px;}
.y1a0{bottom:513.135000px;}
.yc6{bottom:517.620000px;}
.y5e{bottom:519.874650px;}
.ya3{bottom:519.876300px;}
.y227{bottom:519.877950px;}
.y2b3{bottom:519.879600px;}
.y10f{bottom:519.881250px;}
.y272{bottom:519.882000px;}
.y88{bottom:519.882900px;}
.ye9{bottom:519.883500px;}
.y17c{bottom:519.884250px;}
.y252{bottom:520.005000px;}
.y3{bottom:520.739925px;}
.y28{bottom:528.554700px;}
.y19f{bottom:528.885000px;}
.y1e6{bottom:534.882000px;}
.y2{bottom:535.739475px;}
.y5d{bottom:537.125400px;}
.ya2{bottom:537.127050px;}
.y226{bottom:537.128700px;}
.y2b2{bottom:537.130350px;}
.y10e{bottom:537.132000px;}
.y271{bottom:537.132750px;}
.y15a{bottom:537.133500px;}
.y87{bottom:537.133650px;}
.ye8{bottom:537.134250px;}
.y251{bottom:537.255750px;}
.y137{bottom:537.508500px;}
.y19e{bottom:544.635000px;}
.y1e5{bottom:552.132750px;}
.yc5{bottom:552.485250px;}
.y5c{bottom:554.376150px;}
.ya1{bottom:554.377800px;}
.y225{bottom:554.379450px;}
.y2b1{bottom:554.381100px;}
.ye7{bottom:554.382300px;}
.y10d{bottom:554.382750px;}
.y270{bottom:554.383500px;}
.y159{bottom:554.384250px;}
.y86{bottom:554.384400px;}
.y27{bottom:554.430000px;}
.y250{bottom:554.506500px;}
.y136{bottom:554.759250px;}
.y19d{bottom:560.385000px;}
.y1{bottom:565.740000px;}
.y1e4{bottom:569.383500px;}
.yc4{bottom:569.736000px;}
.y5b{bottom:571.626900px;}
.y20d{bottom:571.627500px;}
.ya0{bottom:571.628550px;}
.y224{bottom:571.630200px;}
.y2b0{bottom:571.631850px;}
.ye6{bottom:571.633050px;}
.y10c{bottom:571.633500px;}
.y26f{bottom:571.634250px;}
.y158{bottom:571.634550px;}
.y85{bottom:571.635150px;}
.y24f{bottom:571.757250px;}
.y135{bottom:572.010000px;}
.y1e3{bottom:586.634250px;}
.yc3{bottom:586.986750px;}
.y5a{bottom:588.877650px;}
.y20c{bottom:588.878250px;}
.y9f{bottom:588.879300px;}
.y2af{bottom:588.882600px;}
.y10b{bottom:588.884250px;}
.y84{bottom:588.885900px;}
.y24e{bottom:589.008000px;}
.y134{bottom:589.260750px;}
.y19c{bottom:593.383500px;}
.y26{bottom:593.972700px;}
.ye5{bottom:597.508350px;}
.y157{bottom:597.509850px;}
.y1e2{bottom:603.885000px;}
.yc2{bottom:604.237500px;}
.y59{bottom:606.128400px;}
.y20b{bottom:606.129000px;}
.y9e{bottom:606.130050px;}
.y2ae{bottom:606.133350px;}
.y10a{bottom:606.134250px;}
.y83{bottom:606.136650px;}
.y24d{bottom:606.258750px;}
.y133{bottom:606.509850px;}
.y25{bottom:608.221950px;}
.y19b{bottom:610.634250px;}
.yc1{bottom:621.488250px;}
.y58{bottom:623.379150px;}
.y20a{bottom:623.379750px;}
.y1c1{bottom:623.380800px;}
.y109{bottom:623.382450px;}
.y2ad{bottom:623.384100px;}
.y82{bottom:623.387400px;}
.y24c{bottom:623.507850px;}
.y132{bottom:623.758950px;}
.y19a{bottom:627.885000px;}
.y24{bottom:629.596500px;}
.y1e1{bottom:638.385000px;}
.yc0{bottom:638.739000px;}
.y57{bottom:640.628250px;}
.y17b{bottom:640.629900px;}
.y209{bottom:640.630500px;}
.y1c0{bottom:640.631550px;}
.ye4{bottom:640.632750px;}
.y108{bottom:640.633200px;}
.y156{bottom:640.634250px;}
.y2ac{bottom:640.634850px;}
.y81{bottom:640.638150px;}
.y24b{bottom:640.756950px;}
.y23{bottom:643.845750px;}
.y131{bottom:649.634250px;}
.y1e0{bottom:654.135000px;}
.ybf{bottom:655.989750px;}
.y56{bottom:657.879000px;}
.y17a{bottom:657.880650px;}
.y208{bottom:657.881250px;}
.y1bf{bottom:657.882300px;}
.ye3{bottom:657.883500px;}
.y107{bottom:657.883950px;}
.y155{bottom:657.884250px;}
.y2ab{bottom:657.885600px;}
.y80{bottom:657.888900px;}
.y24a{bottom:658.006050px;}
.y22{bottom:658.095000px;}
.y199{bottom:662.385000px;}
.y130{bottom:666.885000px;}
.y1df{bottom:669.885000px;}
.ybe{bottom:673.240500px;}
.y55{bottom:675.129750px;}
.y179{bottom:675.131400px;}
.y207{bottom:675.132000px;}
.y154{bottom:675.132750px;}
.y1be{bottom:675.133050px;}
.ye2{bottom:675.134250px;}
.y106{bottom:675.134700px;}
.y2aa{bottom:675.136350px;}
.y7f{bottom:675.139650px;}
.y249{bottom:675.255150px;}
.y198{bottom:678.135000px;}
.y1de{bottom:685.635000px;}
.ybd{bottom:690.491250px;}
.y54{bottom:692.380500px;}
.y178{bottom:692.382150px;}
.y206{bottom:692.382750px;}
.y153{bottom:692.383500px;}
.y1bd{bottom:692.383800px;}
.y105{bottom:692.385450px;}
.y2a9{bottom:692.387100px;}
.y7e{bottom:692.388750px;}
.y248{bottom:692.504250px;}
.y197{bottom:693.885000px;}
.y12f{bottom:701.385000px;}
.y3a{bottom:707.639325px;}
.ybc{bottom:707.742000px;}
.y53{bottom:709.631250px;}
.y177{bottom:709.632900px;}
.y205{bottom:709.633500px;}
.y152{bottom:709.634250px;}
.y28f{bottom:709.634550px;}
.y104{bottom:709.636200px;}
.y7d{bottom:709.637850px;}
.y247{bottom:709.753350px;}
.y3c{bottom:713.640000px;}
.y17{bottom:714.840750px;}
.y12e{bottom:717.135000px;}
.y1bc{bottom:718.259100px;}
.y52{bottom:726.882000px;}
.y176{bottom:726.883650px;}
.y204{bottom:726.884250px;}
.y28e{bottom:726.885300px;}
.y7c{bottom:726.886950px;}
.y246{bottom:727.004100px;}
.y39{bottom:728.639550px;}
.y16{bottom:729.090000px;}
.y12d{bottom:732.885000px;}
.y3b{bottom:734.640225px;}
.y51{bottom:744.132750px;}
.y203{bottom:744.134250px;}
.y175{bottom:744.134400px;}
.y7b{bottom:744.136050px;}
.y245{bottom:744.254850px;}
.y15{bottom:747.105000px;}
.y12c{bottom:748.635000px;}
.y38{bottom:749.639775px;}
.y50{bottom:761.383500px;}
.y7a{bottom:761.385150px;}
.y202{bottom:761.385900px;}
.y244{bottom:761.505600px;}
.y12b{bottom:764.385000px;}
.y37{bottom:770.640000px;}
.y4f{bottom:778.634250px;}
.y12a{bottom:780.135000px;}
.y14{bottom:792.105000px;}
.y36{bottom:795.750000px;}
.y4e{bottom:795.885000px;}
.y13{bottom:843.105150px;}
.h3{height:51.216000px;}
.h6{height:57.618000px;}
.h7{height:58.536000px;}
.h2{height:60.819000px;}
.hb{height:61.788000px;}
.hf{height:64.020000px;}
.h18{height:64.614000px;}
.h10{height:65.040000px;}
.h8{height:70.422000px;}
.h15{height:70.446000px;}
.h17{height:71.081400px;}
.h1b{height:71.082600px;}
.h14{height:71.086200px;}
.h13{height:71.093400px;}
.ha{height:71.102580px;}
.h1e{height:71.110200px;}
.h16{height:71.113800px;}
.hc{height:71.137200px;}
.h9{height:71.544000px;}
.h12{height:71.546400px;}
.h19{height:71.547000px;}
.h1f{height:71.555400px;}
.he{height:71.556000px;}
.h1c{height:71.562000px;}
.h1d{height:71.573400px;}
.h1a{height:71.574000px;}
.hd{height:71.589000px;}
.h11{height:71.604600px;}
.h5{height:76.824000px;}
.h4{height:102.432000px;}
.h1{height:876.000000px;}
.h0{height:891.000000px;}
.w0{width:579.000000px;}
.x0{left:0.000000px;}
.x1{left:46.200000px;}
.x11{left:67.470600px;}
.x3{left:68.700450px;}
.xa{left:74.250450px;}
.x12{left:87.029700px;}
.x10{left:88.726050px;}
.xe{left:90.915900px;}
.x9{left:106.724775px;}
.xf{left:116.416050px;}
.xb{left:135.990000px;}
.x8{left:210.375000px;}
.x4{left:228.750000px;}
.x7{left:265.245000px;}
.xc{left:302.400075px;}
.xd{left:317.279925px;}
.x6{left:384.691200px;}
.x2{left:396.420000px;}
.x5{left:412.185300px;}
@media print{
.v1{vertical-align:-19.337600pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.600000pt;}
.v3{vertical-align:19.414933pt;}
.v2{vertical-align:38.721760pt;}
.ls89{letter-spacing:-1.519467pt;}
.ls88{letter-spacing:-1.496000pt;}
.lsf0{letter-spacing:-1.449067pt;}
.ls60{letter-spacing:-1.390400pt;}
.lsa7{letter-spacing:-1.343467pt;}
.ls54{letter-spacing:-1.337600pt;}
.lsac{letter-spacing:-1.284800pt;}
.lsa0{letter-spacing:-1.237867pt;}
.ls3a{letter-spacing:-1.232000pt;}
.ls12{letter-spacing:-1.180800pt;}
.lsaf{letter-spacing:-1.179200pt;}
.ls11{letter-spacing:-1.176000pt;}
.lsd2{letter-spacing:-1.126400pt;}
.ls9{letter-spacing:-1.074133pt;}
.lsfc{letter-spacing:-1.073600pt;}
.lsc6{letter-spacing:-1.072000pt;}
.lsd3{letter-spacing:-1.067733pt;}
.lsb0{letter-spacing:-1.061867pt;}
.ls8b{letter-spacing:-1.026667pt;}
.lsbc{letter-spacing:-1.024000pt;}
.lsb1{letter-spacing:-1.020800pt;}
.lsf8{letter-spacing:-1.014933pt;}
.lsbf{letter-spacing:-0.985600pt;}
.lsae{letter-spacing:-0.973867pt;}
.ls81{letter-spacing:-0.968000pt;}
.lsf{letter-spacing:-0.964800pt;}
.lsc0{letter-spacing:-0.962133pt;}
.lsc1{letter-spacing:-0.950400pt;}
.lsa4{letter-spacing:-0.915200pt;}
.ls21{letter-spacing:-0.912000pt;}
.lsa5{letter-spacing:-0.909333pt;}
.lsd0{letter-spacing:-0.906667pt;}
.lsab{letter-spacing:-0.903467pt;}
.ls17{letter-spacing:-0.874133pt;}
.ls4b{letter-spacing:-0.862400pt;}
.ls97{letter-spacing:-0.858667pt;}
.ls73{letter-spacing:-0.856533pt;}
.ls6d{letter-spacing:-0.809600pt;}
.ls24{letter-spacing:-0.806400pt;}
.ls52{letter-spacing:-0.803733pt;}
.ls9a{letter-spacing:-0.797867pt;}
.ls101{letter-spacing:-0.796800pt;}
.lsa8{letter-spacing:-0.792000pt;}
.lsa6{letter-spacing:-0.762667pt;}
.ls8a{letter-spacing:-0.756800pt;}
.lsd1{letter-spacing:-0.752000pt;}
.ls32{letter-spacing:-0.750933pt;}
.lsd5{letter-spacing:-0.744000pt;}
.lsef{letter-spacing:-0.739200pt;}
.ls51{letter-spacing:-0.709867pt;}
.ls63{letter-spacing:-0.704000pt;}
.lscf{letter-spacing:-0.698667pt;}
.ls50{letter-spacing:-0.698133pt;}
.ls9f{letter-spacing:-0.651200pt;}
.ls71{letter-spacing:-0.645333pt;}
.ls3b{letter-spacing:-0.604267pt;}
.ls61{letter-spacing:-0.598400pt;}
.ls3c{letter-spacing:-0.592533pt;}
.ls84{letter-spacing:-0.592000pt;}
.ls6c{letter-spacing:-0.580800pt;}
.lsf9{letter-spacing:-0.574933pt;}
.lsfa{letter-spacing:-0.569067pt;}
.ls83{letter-spacing:-0.557333pt;}
.ls82{letter-spacing:-0.545600pt;}
.ls74{letter-spacing:-0.539733pt;}
.ls8e{letter-spacing:-0.538667pt;}
.ls85{letter-spacing:-0.537600pt;}
.ls8{letter-spacing:-0.537067pt;}
.lsfb{letter-spacing:-0.533867pt;}
.lsf6{letter-spacing:-0.504533pt;}
.ls53{letter-spacing:-0.498667pt;}
.ls1a{letter-spacing:-0.492800pt;}
.lsc5{letter-spacing:-0.490667pt;}
.lsb3{letter-spacing:-0.489600pt;}
.ls18{letter-spacing:-0.486933pt;}
.lsb4{letter-spacing:-0.484800pt;}
.ls37{letter-spacing:-0.481067pt;}
.lsa9{letter-spacing:-0.445867pt;}
.ls19{letter-spacing:-0.440000pt;}
.lscc{letter-spacing:-0.436800pt;}
.ls4c{letter-spacing:-0.434133pt;}
.lscb{letter-spacing:-0.432000pt;}
.ls34{letter-spacing:-0.381333pt;}
.ls23{letter-spacing:-0.379200pt;}
.lsc7{letter-spacing:-0.378667pt;}
.ls72{letter-spacing:-0.375467pt;}
.lsf7{letter-spacing:-0.344960pt;}
.ls99{letter-spacing:-0.334400pt;}
.ls4e{letter-spacing:-0.328533pt;}
.ls8d{letter-spacing:-0.325333pt;}
.ls31{letter-spacing:-0.322667pt;}
.lsad{letter-spacing:-0.316800pt;}
.lse7{letter-spacing:-0.310933pt;}
.ls100{letter-spacing:-0.299200pt;}
.lsfe{letter-spacing:-0.287467pt;}
.ls33{letter-spacing:-0.275733pt;}
.ls7{letter-spacing:-0.273600pt;}
.lsba{letter-spacing:-0.272000pt;}
.ls4f{letter-spacing:-0.269867pt;}
.ls20{letter-spacing:-0.268800pt;}
.ls5e{letter-spacing:-0.264000pt;}
.lsf1{letter-spacing:-0.258133pt;}
.ls38{letter-spacing:-0.252267pt;}
.ls7f{letter-spacing:-0.234667pt;}
.ls39{letter-spacing:-0.228800pt;}
.ls3d{letter-spacing:-0.222933pt;}
.ls96{letter-spacing:-0.218667pt;}
.ls5{letter-spacing:-0.217867pt;}
.ls5d{letter-spacing:-0.217067pt;}
.ls1f{letter-spacing:-0.216000pt;}
.lsff{letter-spacing:-0.213547pt;}
.ls80{letter-spacing:-0.211200pt;}
.ls6b{letter-spacing:-0.205333pt;}
.ls10a{letter-spacing:-0.187733pt;}
.ls35{letter-spacing:-0.170133pt;}
.lscd{letter-spacing:-0.168000pt;}
.ls6{letter-spacing:-0.167200pt;}
.lsbb{letter-spacing:-0.165333pt;}
.ls1c{letter-spacing:-0.164267pt;}
.ls98{letter-spacing:-0.158400pt;}
.ls75{letter-spacing:-0.117333pt;}
.ls56{letter-spacing:-0.115200pt;}
.ls9b{letter-spacing:-0.112000pt;}
.ls5f{letter-spacing:-0.111467pt;}
.ls22{letter-spacing:-0.110400pt;}
.ls8c{letter-spacing:-0.106773pt;}
.ls55{letter-spacing:-0.105600pt;}
.lsd4{letter-spacing:-0.093867pt;}
.ls62{letter-spacing:-0.064533pt;}
.lsbd{letter-spacing:-0.064000pt;}
.ls87{letter-spacing:-0.058667pt;}
.ls10{letter-spacing:-0.057600pt;}
.ls1e{letter-spacing:-0.052800pt;}
.ls6e{letter-spacing:-0.026667pt;}
.lse5{letter-spacing:-0.024640pt;}
.ls3e{letter-spacing:-0.021600pt;}
.ls9e{letter-spacing:-0.021333pt;}
.lsb2{letter-spacing:-0.017600pt;}
.lsb{letter-spacing:-0.017067pt;}
.ls9c{letter-spacing:-0.016000pt;}
.ls1d{letter-spacing:-0.011733pt;}
.ls70{letter-spacing:-0.010667pt;}
.lse{letter-spacing:-0.009600pt;}
.lsc{letter-spacing:-0.008533pt;}
.ls16{letter-spacing:-0.005867pt;}
.ls6f{letter-spacing:-0.005333pt;}
.ls4{letter-spacing:-0.005067pt;}
.lsd{letter-spacing:-0.004800pt;}
.lsa{letter-spacing:-0.004267pt;}
.ls3{letter-spacing:0.000000pt;}
.lse6{letter-spacing:0.005867pt;}
.ls0{letter-spacing:0.006400pt;}
.lsde{letter-spacing:0.011200pt;}
.ls5c{letter-spacing:0.011733pt;}
.lsdb{letter-spacing:0.014933pt;}
.ls90{letter-spacing:0.023467pt;}
.lse0{letter-spacing:0.027733pt;}
.ls8f{letter-spacing:0.029333pt;}
.lsc9{letter-spacing:0.035200pt;}
.ls13{letter-spacing:0.041067pt;}
.ls2a{letter-spacing:0.046933pt;}
.ls69{letter-spacing:0.052800pt;}
.lsc8{letter-spacing:0.053387pt;}
.ls57{letter-spacing:0.093867pt;}
.ls3f{letter-spacing:0.099733pt;}
.ls7d{letter-spacing:0.100800pt;}
.lse9{letter-spacing:0.105600pt;}
.lsd8{letter-spacing:0.106667pt;}
.lsed{letter-spacing:0.117333pt;}
.ls2e{letter-spacing:0.140800pt;}
.ls48{letter-spacing:0.146667pt;}
.ls2b{letter-spacing:0.152533pt;}
.lsca{letter-spacing:0.153600pt;}
.ls66{letter-spacing:0.154667pt;}
.ls49{letter-spacing:0.158400pt;}
.ls2f{letter-spacing:0.160000pt;}
.lsd9{letter-spacing:0.170133pt;}
.lsb5{letter-spacing:0.176000pt;}
.ls112{letter-spacing:0.181867pt;}
.ls102{letter-spacing:0.192533pt;}
.ls107{letter-spacing:0.196800pt;}
.ls15{letter-spacing:0.199467pt;}
.ls27{letter-spacing:0.205333pt;}
.lsb8{letter-spacing:0.206400pt;}
.lsce{letter-spacing:0.208000pt;}
.ls25{letter-spacing:0.211200pt;}
.lsbe{letter-spacing:0.213547pt;}
.ls111{letter-spacing:0.222933pt;}
.lsee{letter-spacing:0.240533pt;}
.ls28{letter-spacing:0.252267pt;}
.ls44{letter-spacing:0.258133pt;}
.ls7c{letter-spacing:0.261333pt;}
.ls45{letter-spacing:0.264000pt;}
.ls10f{letter-spacing:0.266667pt;}
.lsb7{letter-spacing:0.274133pt;}
.lsb6{letter-spacing:0.275733pt;}
.ls10b{letter-spacing:0.299200pt;}
.ls78{letter-spacing:0.305067pt;}
.ls5a{letter-spacing:0.310933pt;}
.ls4a{letter-spacing:0.316800pt;}
.lse8{letter-spacing:0.320320pt;}
.ls7a{letter-spacing:0.322667pt;}
.ls59{letter-spacing:0.363733pt;}
.ls92{letter-spacing:0.368000pt;}
.ls29{letter-spacing:0.369600pt;}
.ls93{letter-spacing:0.373333pt;}
.ls58{letter-spacing:0.375467pt;}
.ls10e{letter-spacing:0.403733pt;}
.ls104{letter-spacing:0.406400pt;}
.ls95{letter-spacing:0.410667pt;}
.ls94{letter-spacing:0.421333pt;}
.ls2{letter-spacing:0.422400pt;}
.ls9d{letter-spacing:0.426667pt;}
.ls10c{letter-spacing:0.463467pt;}
.ls106{letter-spacing:0.469333pt;}
.lsc4{letter-spacing:0.470400pt;}
.ls26{letter-spacing:0.475200pt;}
.ls36{letter-spacing:0.498667pt;}
.ls77{letter-spacing:0.522133pt;}
.ls1{letter-spacing:0.523200pt;}
.ls4d{letter-spacing:0.528000pt;}
.ls108{letter-spacing:0.532800pt;}
.lsc2{letter-spacing:0.574933pt;}
.ls47{letter-spacing:0.580800pt;}
.ls42{letter-spacing:0.633600pt;}
.ls2d{letter-spacing:0.639467pt;}
.ls2c{letter-spacing:0.686400pt;}
.ls43{letter-spacing:0.739200pt;}
.lsb9{letter-spacing:0.744000pt;}
.ls64{letter-spacing:0.780267pt;}
.ls7e{letter-spacing:0.792000pt;}
.lsc3{letter-spacing:0.796800pt;}
.ls110{letter-spacing:0.797867pt;}
.ls40{letter-spacing:0.844800pt;}
.lsec{letter-spacing:0.850667pt;}
.lsaa{letter-spacing:0.897600pt;}
.ls7b{letter-spacing:0.901333pt;}
.ls91{letter-spacing:0.903467pt;}
.ls30{letter-spacing:0.955200pt;}
.ls5b{letter-spacing:0.956267pt;}
.lsa3{letter-spacing:1.009067pt;}
.lsfd{letter-spacing:1.061867pt;}
.ls68{letter-spacing:1.114667pt;}
.ls1b{letter-spacing:1.484267pt;}
.ls76{letter-spacing:1.490133pt;}
.ls41{letter-spacing:1.648533pt;}
.lsdf{letter-spacing:10.293333pt;}
.ls109{letter-spacing:10.881600pt;}
.lse4{letter-spacing:12.724800pt;}
.ls67{letter-spacing:12.918400pt;}
.lsf2{letter-spacing:13.226667pt;}
.ls65{letter-spacing:13.334933pt;}
.lsf5{letter-spacing:13.405333pt;}
.lsf3{letter-spacing:13.546667pt;}
.lsf4{letter-spacing:13.600000pt;}
.ls86{letter-spacing:13.728000pt;}
.lsa1{letter-spacing:13.813333pt;}
.lsd6{letter-spacing:13.920000pt;}
.ls6a{letter-spacing:14.026667pt;}
.ls10d{letter-spacing:14.186667pt;}
.lsea{letter-spacing:14.572800pt;}
.lsdd{letter-spacing:14.631467pt;}
.lse2{letter-spacing:14.643200pt;}
.lsdc{letter-spacing:14.666667pt;}
.lse1{letter-spacing:14.678400pt;}
.ls14{letter-spacing:14.933333pt;}
.lse3{letter-spacing:15.229867pt;}
.lsa2{letter-spacing:15.253333pt;}
.ls103{letter-spacing:16.266667pt;}
.lsda{letter-spacing:16.268267pt;}
.lsd7{letter-spacing:16.280000pt;}
.ls46{letter-spacing:16.320000pt;}
.ls79{letter-spacing:16.373333pt;}
.ls105{letter-spacing:16.480000pt;}
.lseb{letter-spacing:16.649600pt;}
.ws78{word-spacing:-15.141867pt;}
.ws102{word-spacing:-14.954133pt;}
.wsc7{word-spacing:-14.930667pt;}
.ws11f{word-spacing:-14.924800pt;}
.wsd1{word-spacing:-14.842667pt;}
.ws19{word-spacing:-14.666667pt;}
.ws1b{word-spacing:-14.660800pt;}
.wsc8{word-spacing:-14.654933pt;}
.ws109{word-spacing:-14.649067pt;}
.ws7d{word-spacing:-14.549333pt;}
.wsd0{word-spacing:-14.496533pt;}
.ws10a{word-spacing:-14.449600pt;}
.ws11d{word-spacing:-14.379200pt;}
.ws11c{word-spacing:-14.344000pt;}
.wsab{word-spacing:-13.754667pt;}
.wsc6{word-spacing:-13.751467pt;}
.wsaa{word-spacing:-13.744000pt;}
.wsa8{word-spacing:-13.706667pt;}
.wsd4{word-spacing:-13.704533pt;}
.ws79{word-spacing:-13.333333pt;}
.wsac{word-spacing:-13.328000pt;}
.wsbd{word-spacing:-13.323200pt;}
.wsa9{word-spacing:-13.322667pt;}
.wsd2{word-spacing:-13.269333pt;}
.wsa2{word-spacing:-13.147200pt;}
.ws0{word-spacing:-12.920000pt;}
.ws1{word-spacing:-12.914933pt;}
.wsd6{word-spacing:-12.744000pt;}
.ws1e{word-spacing:-12.666667pt;}
.ws1d{word-spacing:-12.661600pt;}
.wsd7{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.990400pt;}
.wsf0{word-spacing:-11.256000pt;}
.ws120{word-spacing:-11.193600pt;}
.ws103{word-spacing:-10.586987pt;}
.wsd3{word-spacing:-10.480213pt;}
.wse4{word-spacing:-10.320053pt;}
.ws1a{word-spacing:-10.266667pt;}
.ws127{word-spacing:-10.159893pt;}
.ws11e{word-spacing:-10.053120pt;}
.wsef{word-spacing:-9.333333pt;}
.ws38{word-spacing:-8.978400pt;}
.wsc9{word-spacing:-8.510400pt;}
.ws5d{word-spacing:-0.745067pt;}
.ws107{word-spacing:-0.739200pt;}
.ws2e{word-spacing:-0.692267pt;}
.ws43{word-spacing:-0.686400pt;}
.ws129{word-spacing:-0.680533pt;}
.ws9e{word-spacing:-0.640000pt;}
.ws58{word-spacing:-0.639467pt;}
.wsa{word-spacing:-0.638400pt;}
.ws85{word-spacing:-0.633600pt;}
.ws8b{word-spacing:-0.592533pt;}
.ws124{word-spacing:-0.592000pt;}
.ws28{word-spacing:-0.586667pt;}
.ws13{word-spacing:-0.585600pt;}
.wsdd{word-spacing:-0.581333pt;}
.ws3c{word-spacing:-0.580800pt;}
.wsa4{word-spacing:-0.574933pt;}
.ws128{word-spacing:-0.563200pt;}
.ws7e{word-spacing:-0.545600pt;}
.wsb2{word-spacing:-0.539733pt;}
.ws70{word-spacing:-0.533867pt;}
.wsdb{word-spacing:-0.533333pt;}
.ws16{word-spacing:-0.532800pt;}
.ws4c{word-spacing:-0.528000pt;}
.ws42{word-spacing:-0.522133pt;}
.ws41{word-spacing:-0.504533pt;}
.ws8f{word-spacing:-0.492800pt;}
.ws6a{word-spacing:-0.484800pt;}
.ws74{word-spacing:-0.481067pt;}
.wsae{word-spacing:-0.480000pt;}
.ws5{word-spacing:-0.476267pt;}
.ws86{word-spacing:-0.475200pt;}
.ws100{word-spacing:-0.440000pt;}
.ws39{word-spacing:-0.428267pt;}
.ws4{word-spacing:-0.425600pt;}
.ws36{word-spacing:-0.422400pt;}
.wse7{word-spacing:-0.421333pt;}
.wsb6{word-spacing:-0.416533pt;}
.ws12f{word-spacing:-0.398933pt;}
.ws106{word-spacing:-0.375467pt;}
.ws31{word-spacing:-0.374400pt;}
.wsd9{word-spacing:-0.373333pt;}
.ws6{word-spacing:-0.369867pt;}
.ws2c{word-spacing:-0.369600pt;}
.ws83{word-spacing:-0.325333pt;}
.ws11b{word-spacing:-0.322667pt;}
.ws32{word-spacing:-0.321600pt;}
.wsa5{word-spacing:-0.320000pt;}
.ws3b{word-spacing:-0.316800pt;}
.ws23{word-spacing:-0.310933pt;}
.ws84{word-spacing:-0.304000pt;}
.ws40{word-spacing:-0.269867pt;}
.ws22{word-spacing:-0.264000pt;}
.wse9{word-spacing:-0.261333pt;}
.ws24{word-spacing:-0.258133pt;}
.wsc2{word-spacing:-0.246400pt;}
.ws110{word-spacing:-0.222933pt;}
.wsfb{word-spacing:-0.217067pt;}
.wsed{word-spacing:-0.216000pt;}
.wsf3{word-spacing:-0.213333pt;}
.ws35{word-spacing:-0.211200pt;}
.wse8{word-spacing:-0.208000pt;}
.wsee{word-spacing:-0.206400pt;}
.ws95{word-spacing:-0.205333pt;}
.ws65{word-spacing:-0.199467pt;}
.ws96{word-spacing:-0.193600pt;}
.ws117{word-spacing:-0.181867pt;}
.ws116{word-spacing:-0.176000pt;}
.ws81{word-spacing:-0.170133pt;}
.ws67{word-spacing:-0.158400pt;}
.wse6{word-spacing:-0.154667pt;}
.ws4b{word-spacing:-0.152533pt;}
.ws97{word-spacing:-0.149333pt;}
.ws4a{word-spacing:-0.146667pt;}
.wsb7{word-spacing:-0.112000pt;}
.wscf{word-spacing:-0.110400pt;}
.wsc{word-spacing:-0.106400pt;}
.ws80{word-spacing:-0.105600pt;}
.ws6f{word-spacing:-0.099733pt;}
.wsf4{word-spacing:-0.096000pt;}
.ws9c{word-spacing:-0.053333pt;}
.ws33{word-spacing:-0.052800pt;}
.ws5a{word-spacing:-0.046933pt;}
.ws63{word-spacing:-0.041067pt;}
.ws62{word-spacing:-0.029333pt;}
.ws10{word-spacing:-0.006400pt;}
.wsb3{word-spacing:-0.005867pt;}
.ws125{word-spacing:-0.005333pt;}
.ws30{word-spacing:-0.005067pt;}
.ws2f{word-spacing:-0.004267pt;}
.ws9{word-spacing:0.000000pt;}
.ws11{word-spacing:0.004800pt;}
.ws8{word-spacing:0.005067pt;}
.ws9a{word-spacing:0.005333pt;}
.ws46{word-spacing:0.005867pt;}
.wsbf{word-spacing:0.011733pt;}
.wsbb{word-spacing:0.016000pt;}
.wsc1{word-spacing:0.041067pt;}
.ws112{word-spacing:0.046933pt;}
.ws3{word-spacing:0.050667pt;}
.ws3a{word-spacing:0.052800pt;}
.wsf2{word-spacing:0.053333pt;}
.ws82{word-spacing:0.058667pt;}
.ws7a{word-spacing:0.064000pt;}
.ws6b{word-spacing:0.093867pt;}
.ws72{word-spacing:0.099733pt;}
.wsfd{word-spacing:0.100800pt;}
.ws64{word-spacing:0.105600pt;}
.ws99{word-spacing:0.106667pt;}
.wsd8{word-spacing:0.111467pt;}
.ws118{word-spacing:0.152533pt;}
.wsa3{word-spacing:0.158400pt;}
.wsda{word-spacing:0.160000pt;}
.ws57{word-spacing:0.164267pt;}
.wsdf{word-spacing:0.199467pt;}
.wsca{word-spacing:0.205333pt;}
.ws88{word-spacing:0.211200pt;}
.wsaf{word-spacing:0.213333pt;}
.ws90{word-spacing:0.217067pt;}
.ws91{word-spacing:0.222933pt;}
.wsde{word-spacing:0.234667pt;}
.ws111{word-spacing:0.252267pt;}
.wscc{word-spacing:0.258133pt;}
.ws98{word-spacing:0.261333pt;}
.wsbe{word-spacing:0.264000pt;}
.wsf8{word-spacing:0.266667pt;}
.ws55{word-spacing:0.268800pt;}
.ws29{word-spacing:0.269867pt;}
.wsb0{word-spacing:0.272000pt;}
.ws8c{word-spacing:0.278400pt;}
.ws2a{word-spacing:0.310933pt;}
.ws73{word-spacing:0.316800pt;}
.wsa6{word-spacing:0.320000pt;}
.ws34{word-spacing:0.321600pt;}
.ws89{word-spacing:0.322667pt;}
.wsdc{word-spacing:0.325333pt;}
.ws115{word-spacing:0.328533pt;}
.wse1{word-spacing:0.369600pt;}
.wsb{word-spacing:0.369867pt;}
.ws12{word-spacing:0.374400pt;}
.ws87{word-spacing:0.375467pt;}
.wse0{word-spacing:0.379200pt;}
.ws93{word-spacing:0.422400pt;}
.wsd{word-spacing:0.425600pt;}
.ws9b{word-spacing:0.426667pt;}
.wsa1{word-spacing:0.427200pt;}
.ws47{word-spacing:0.428267pt;}
.wsd5{word-spacing:0.432000pt;}
.ws108{word-spacing:0.434133pt;}
.ws104{word-spacing:0.475200pt;}
.ws20{word-spacing:0.480000pt;}
.ws44{word-spacing:0.481067pt;}
.wsf{word-spacing:0.486400pt;}
.wsbc{word-spacing:0.486933pt;}
.wsb9{word-spacing:0.490667pt;}
.wsff{word-spacing:0.510400pt;}
.ws6c{word-spacing:0.528000pt;}
.ws15{word-spacing:0.532800pt;}
.ws122{word-spacing:0.533333pt;}
.ws75{word-spacing:0.533867pt;}
.wsea{word-spacing:0.537600pt;}
.wsc0{word-spacing:0.580800pt;}
.ws66{word-spacing:0.586667pt;}
.ws17{word-spacing:0.590400pt;}
.ws45{word-spacing:0.633600pt;}
.wse{word-spacing:0.638400pt;}
.wsc4{word-spacing:0.639467pt;}
.ws9d{word-spacing:0.640000pt;}
.ws14{word-spacing:0.643200pt;}
.ws10d{word-spacing:0.645333pt;}
.ws76{word-spacing:0.651200pt;}
.ws8d{word-spacing:0.692267pt;}
.wsb1{word-spacing:0.693333pt;}
.ws5f{word-spacing:0.698133pt;}
.wsfe{word-spacing:0.704000pt;}
.ws121{word-spacing:0.745067pt;}
.ws5b{word-spacing:0.750933pt;}
.ws4f{word-spacing:0.792000pt;}
.ws1f{word-spacing:0.796800pt;}
.ws77{word-spacing:0.797867pt;}
.ws18{word-spacing:0.801600pt;}
.ws50{word-spacing:0.803733pt;}
.wsad{word-spacing:0.821333pt;}
.ws10c{word-spacing:0.844800pt;}
.ws126{word-spacing:0.849600pt;}
.wsb5{word-spacing:0.850667pt;}
.wse5{word-spacing:0.856533pt;}
.ws37{word-spacing:0.862400pt;}
.ws68{word-spacing:0.903467pt;}
.wsba{word-spacing:0.906667pt;}
.wsc5{word-spacing:0.907200pt;}
.ws8e{word-spacing:0.909333pt;}
.wsa7{word-spacing:0.915200pt;}
.ws3f{word-spacing:0.932800pt;}
.ws7f{word-spacing:0.950400pt;}
.ws3e{word-spacing:0.956267pt;}
.ws7{word-spacing:0.957600pt;}
.wsb8{word-spacing:0.960000pt;}
.ws5c{word-spacing:0.962133pt;}
.ws12c{word-spacing:0.969600pt;}
.ws12a{word-spacing:0.973867pt;}
.ws71{word-spacing:1.009067pt;}
.wsec{word-spacing:1.012800pt;}
.wsfa{word-spacing:1.014933pt;}
.wse2{word-spacing:1.017600pt;}
.ws12d{word-spacing:1.020800pt;}
.ws7b{word-spacing:1.032533pt;}
.ws56{word-spacing:1.056000pt;}
.wsf7{word-spacing:1.061333pt;}
.ws49{word-spacing:1.061867pt;}
.wseb{word-spacing:1.065600pt;}
.ws9f{word-spacing:1.066667pt;}
.ws119{word-spacing:1.067733pt;}
.ws105{word-spacing:1.073600pt;}
.ws6d{word-spacing:1.108800pt;}
.wsf9{word-spacing:1.114667pt;}
.wsa0{word-spacing:1.118400pt;}
.wsf6{word-spacing:1.120000pt;}
.ws4e{word-spacing:1.120533pt;}
.ws94{word-spacing:1.126400pt;}
.ws6e{word-spacing:1.167467pt;}
.ws123{word-spacing:1.168000pt;}
.ws5e{word-spacing:1.173333pt;}
.ws48{word-spacing:1.179200pt;}
.ws114{word-spacing:1.185067pt;}
.ws10f{word-spacing:1.190933pt;}
.wsc3{word-spacing:1.220267pt;}
.ws59{word-spacing:1.226133pt;}
.ws2d{word-spacing:1.232000pt;}
.ws10e{word-spacing:1.237867pt;}
.ws61{word-spacing:1.243733pt;}
.ws12e{word-spacing:1.249600pt;}
.ws69{word-spacing:1.273067pt;}
.ws3d{word-spacing:1.278933pt;}
.ws52{word-spacing:1.284800pt;}
.ws51{word-spacing:1.331733pt;}
.wsf1{word-spacing:1.333333pt;}
.ws4d{word-spacing:1.337600pt;}
.wsf5{word-spacing:1.338667pt;}
.ws12b{word-spacing:1.378667pt;}
.ws8a{word-spacing:1.384533pt;}
.ws26{word-spacing:1.390400pt;}
.ws27{word-spacing:1.437333pt;}
.ws2b{word-spacing:1.443200pt;}
.wscd{word-spacing:1.449067pt;}
.ws21{word-spacing:1.484267pt;}
.ws92{word-spacing:1.490133pt;}
.ws60{word-spacing:1.496000pt;}
.ws101{word-spacing:1.525333pt;}
.ws7c{word-spacing:1.595733pt;}
.ws25{word-spacing:2.563733pt;}
.ws11a{word-spacing:3.942400pt;}
.wse3{word-spacing:4.400000pt;}
.ws113{word-spacing:4.714880pt;}
.ws130{word-spacing:5.761067pt;}
.wsfc{word-spacing:8.001600pt;}
.wscb{word-spacing:8.049067pt;}
.ws10b{word-spacing:20.750400pt;}
.wsb4{word-spacing:21.337067pt;}
.ws54{word-spacing:31.046400pt;}
.ws1c{word-spacing:31.731200pt;}
.ws53{word-spacing:32.001600pt;}
.wsce{word-spacing:32.491200pt;}
._d{margin-left:-32.006400pt;}
._15{margin-left:-21.337067pt;}
._20{margin-left:-19.893067pt;}
._1c{margin-left:-8.546400pt;}
._b{margin-left:-6.864000pt;}
._e{margin-left:-5.707200pt;}
._2{margin-left:-4.408000pt;}
._12{margin-left:-3.514133pt;}
._0{margin-left:-2.497867pt;}
._1{margin-left:-1.109600pt;}
._6{width:1.035733pt;}
._5{width:1.924800pt;}
._1e{width:3.086400pt;}
._1d{width:5.553600pt;}
._16{width:6.517867pt;}
._1b{width:7.934400pt;}
._21{width:9.161067pt;}
._9{width:10.291200pt;}
._a{width:11.680533pt;}
._18{width:13.006400pt;}
._13{width:14.601600pt;}
._17{width:15.845867pt;}
._10{width:17.020000pt;}
._1f{width:19.266133pt;}
._11{width:21.337067pt;}
._19{width:24.640000pt;}
._14{width:30.782400pt;}
._f{width:32.592000pt;}
._1a{width:36.003733pt;}
._3{width:42.444800pt;}
._8{width:44.217600pt;}
._4{width:61.094400pt;}
._c{width:821.657600pt;}
._7{width:892.040533pt;}
.fs7{font-size:36.000000pt;}
.fs9{font-size:37.333333pt;}
.fs6{font-size:41.066667pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y223{bottom:32.412800pt;}
.y201{bottom:32.705600pt;}
.y21{bottom:32.715200pt;}
.y243{bottom:32.761733pt;}
.y79{bottom:32.785600pt;}
.y1bb{bottom:32.796267pt;}
.y174{bottom:32.799467pt;}
.y9d{bottom:32.812267pt;}
.y103{bottom:32.824533pt;}
.y28d{bottom:32.837333pt;}
.y26e{bottom:32.880667pt;}
.y4d{bottom:32.911467pt;}
.y196{bottom:32.972800pt;}
.ye1{bottom:33.092000pt;}
.y1dd{bottom:33.179733pt;}
.y151{bottom:33.452800pt;}
.y129{bottom:33.640667pt;}
.ybb{bottom:40.428000pt;}
.y222{bottom:45.080000pt;}
.y200{bottom:45.372800pt;}
.y20{bottom:45.382400pt;}
.y78{bottom:45.452800pt;}
.y1ba{bottom:45.463467pt;}
.y173{bottom:45.466667pt;}
.y9c{bottom:45.479467pt;}
.y102{bottom:45.491733pt;}
.y28c{bottom:45.504533pt;}
.y4c{bottom:45.578667pt;}
.y195{bottom:45.640000pt;}
.y1dc{bottom:45.846933pt;}
.y242{bottom:48.095733pt;}
.y26d{bottom:48.214667pt;}
.ye0{bottom:48.426000pt;}
.y150{bottom:48.781467pt;}
.y128{bottom:48.974667pt;}
.y2a8{bottom:57.998400pt;}
.y1ff{bottom:58.040000pt;}
.y1f{bottom:58.049600pt;}
.y77{bottom:58.120000pt;}
.y1b9{bottom:58.130667pt;}
.y9b{bottom:58.146667pt;}
.y101{bottom:58.158933pt;}
.y28b{bottom:58.171733pt;}
.y4b{bottom:58.245867pt;}
.y1db{bottom:58.514133pt;}
.yba{bottom:63.428267pt;}
.y241{bottom:63.429733pt;}
.y26c{bottom:63.548667pt;}
.ydf{bottom:63.759467pt;}
.y14f{bottom:64.115467pt;}
.y127{bottom:64.308667pt;}
.y2a7{bottom:70.665600pt;}
.y1e{bottom:70.716800pt;}
.y1b8{bottom:70.797867pt;}
.y100{bottom:70.826133pt;}
.y28a{bottom:70.838933pt;}
.y4a{bottom:70.913067pt;}
.y1da{bottom:71.181333pt;}
.yb9{bottom:78.762267pt;}
.y240{bottom:78.763733pt;}
.y194{bottom:78.772267pt;}
.y26b{bottom:78.882667pt;}
.yde{bottom:79.080000pt;}
.y14e{bottom:79.449467pt;}
.y126{bottom:79.642667pt;}
.y2a6{bottom:83.332800pt;}
.y1d{bottom:83.384000pt;}
.y1b7{bottom:83.465067pt;}
.yff{bottom:83.493333pt;}
.y289{bottom:83.506133pt;}
.y49{bottom:83.580267pt;}
.y1d9{bottom:83.848533pt;}
.y1fe{bottom:86.109333pt;}
.y172{bottom:86.437200pt;}
.y221{bottom:86.443867pt;}
.yb8{bottom:94.096267pt;}
.y23f{bottom:94.097733pt;}
.y193{bottom:94.106267pt;}
.y76{bottom:94.110000pt;}
.y9a{bottom:94.112667pt;}
.y26a{bottom:94.216667pt;}
.ydd{bottom:94.414000pt;}
.y14d{bottom:94.783467pt;}
.y125{bottom:94.976667pt;}
.y2a5{bottom:96.000000pt;}
.y1c{bottom:96.051200pt;}
.y1b6{bottom:96.132267pt;}
.y288{bottom:96.173333pt;}
.y48{bottom:96.247467pt;}
.y1d8{bottom:96.515733pt;}
.y1fd{bottom:101.443333pt;}
.y171{bottom:101.771200pt;}
.y1b{bottom:108.718400pt;}
.y1b5{bottom:108.799467pt;}
.y47{bottom:108.914667pt;}
.y1d7{bottom:109.182933pt;}
.yb7{bottom:109.430267pt;}
.y23e{bottom:109.431733pt;}
.y192{bottom:109.440267pt;}
.y75{bottom:109.444000pt;}
.y220{bottom:109.444133pt;}
.y99{bottom:109.446667pt;}
.y269{bottom:109.550667pt;}
.ydc{bottom:109.748000pt;}
.y14c{bottom:110.117467pt;}
.y124{bottom:110.310667pt;}
.yfe{bottom:111.706800pt;}
.y1fc{bottom:116.777333pt;}
.y170{bottom:117.105200pt;}
.y1a{bottom:121.385600pt;}
.y1b4{bottom:121.466667pt;}
.y46{bottom:121.581867pt;}
.y1d6{bottom:121.850133pt;}
.yb6{bottom:124.764267pt;}
.y23d{bottom:124.765733pt;}
.y191{bottom:124.774267pt;}
.y74{bottom:124.778000pt;}
.y21f{bottom:124.778133pt;}
.y98{bottom:124.780667pt;}
.y268{bottom:124.884667pt;}
.ydb{bottom:125.082000pt;}
.y14b{bottom:125.451467pt;}
.y123{bottom:125.644667pt;}
.yfd{bottom:125.706800pt;}
.y1fb{bottom:132.111333pt;}
.y16f{bottom:132.439200pt;}
.y287{bottom:132.786667pt;}
.y19{bottom:134.052800pt;}
.y45{bottom:134.249067pt;}
.y1d5{bottom:134.517333pt;}
.yfc{bottom:139.706800pt;}
.yb5{bottom:140.098267pt;}
.y23c{bottom:140.099733pt;}
.y190{bottom:140.108267pt;}
.y73{bottom:140.112000pt;}
.y21e{bottom:140.112133pt;}
.y97{bottom:140.114667pt;}
.y2a4{bottom:140.117467pt;}
.y267{bottom:140.218667pt;}
.yda{bottom:140.416000pt;}
.y14a{bottom:140.785467pt;}
.y122{bottom:140.978667pt;}
.y18{bottom:146.720000pt;}
.y286{bottom:146.786667pt;}
.y44{bottom:146.916267pt;}
.y1d4{bottom:147.184533pt;}
.y1fa{bottom:147.445333pt;}
.y16e{bottom:147.773200pt;}
.y1b3{bottom:150.780000pt;}
.yfb{bottom:153.706800pt;}
.yb4{bottom:155.432267pt;}
.y23b{bottom:155.433733pt;}
.y72{bottom:155.446000pt;}
.y21d{bottom:155.446133pt;}
.y96{bottom:155.448667pt;}
.y2a3{bottom:155.451467pt;}
.y266{bottom:155.552667pt;}
.yd9{bottom:155.750000pt;}
.y149{bottom:156.119467pt;}
.y121{bottom:156.312667pt;}
.y43{bottom:159.583467pt;}
.y1d3{bottom:159.851733pt;}
.y285{bottom:160.786667pt;}
.y1f9{bottom:162.779333pt;}
.y16d{bottom:163.107200pt;}
.y18f{bottom:163.108533pt;}
.y1b2{bottom:166.114000pt;}
.yfa{bottom:167.706800pt;}
.yb3{bottom:170.766267pt;}
.y23a{bottom:170.767733pt;}
.y2c5{bottom:170.774667pt;}
.y71{bottom:170.780000pt;}
.y95{bottom:170.782667pt;}
.y2a2{bottom:170.785467pt;}
.y265{bottom:170.886667pt;}
.yd8{bottom:171.084000pt;}
.y148{bottom:171.453467pt;}
.y120{bottom:171.646667pt;}
.y42{bottom:172.250667pt;}
.y1d2{bottom:172.518933pt;}
.y284{bottom:174.786667pt;}
.y1f8{bottom:178.113333pt;}
.y16c{bottom:178.441200pt;}
.y18e{bottom:178.442533pt;}
.y21c{bottom:178.446400pt;}
.y1b1{bottom:181.448000pt;}
.yf9{bottom:181.706800pt;}
.y41{bottom:184.917867pt;}
.y1d1{bottom:185.186133pt;}
.yb2{bottom:186.100267pt;}
.y239{bottom:186.101733pt;}
.y2c4{bottom:186.108667pt;}
.y70{bottom:186.114000pt;}
.y94{bottom:186.116667pt;}
.y2a1{bottom:186.119467pt;}
.y264{bottom:186.220667pt;}
.yd7{bottom:186.418000pt;}
.y11f{bottom:186.980667pt;}
.y283{bottom:188.786667pt;}
.y1f7{bottom:193.447333pt;}
.y16b{bottom:193.775200pt;}
.y21b{bottom:193.780400pt;}
.y1b0{bottom:196.782000pt;}
.y40{bottom:197.585067pt;}
.y1d0{bottom:197.853333pt;}
.yb1{bottom:201.434267pt;}
.y238{bottom:201.435733pt;}
.y2c3{bottom:201.442667pt;}
.y18d{bottom:201.442800pt;}
.y6f{bottom:201.448000pt;}
.y93{bottom:201.450667pt;}
.y2a0{bottom:201.452667pt;}
.y263{bottom:201.554667pt;}
.yd6{bottom:201.752000pt;}
.y147{bottom:202.120000pt;}
.y11e{bottom:202.314667pt;}
.y282{bottom:202.786667pt;}
.y1f6{bottom:208.781333pt;}
.y16a{bottom:209.109200pt;}
.y21a{bottom:209.114400pt;}
.yf8{bottom:210.073067pt;}
.y3f{bottom:210.252267pt;}
.y1af{bottom:212.116000pt;}
.y146{bottom:216.120000pt;}
.yb0{bottom:216.768267pt;}
.y237{bottom:216.769733pt;}
.y2c2{bottom:216.776667pt;}
.y18c{bottom:216.776800pt;}
.y29f{bottom:216.777467pt;}
.y6e{bottom:216.782000pt;}
.y92{bottom:216.784667pt;}
.y262{bottom:216.888667pt;}
.yd5{bottom:217.086000pt;}
.y11d{bottom:217.648667pt;}
.y12{bottom:220.213333pt;}
.y3e{bottom:222.919467pt;}
.y1f5{bottom:224.115333pt;}
.y169{bottom:224.443200pt;}
.y219{bottom:224.448400pt;}
.yf7{bottom:225.405600pt;}
.y1ae{bottom:227.450000pt;}
.y145{bottom:230.120000pt;}
.yaf{bottom:232.102267pt;}
.y236{bottom:232.103733pt;}
.y281{bottom:232.107333pt;}
.y2c1{bottom:232.110667pt;}
.y18b{bottom:232.110800pt;}
.y29e{bottom:232.111467pt;}
.y6d{bottom:232.116000pt;}
.y91{bottom:232.118667pt;}
.y261{bottom:232.222667pt;}
.yd4{bottom:232.420000pt;}
.y11c{bottom:232.982667pt;}
.y3d{bottom:235.586667pt;}
.y11{bottom:238.881933pt;}
.y1f4{bottom:239.449333pt;}
.y168{bottom:239.777200pt;}
.y218{bottom:239.782400pt;}
.yf6{bottom:240.738133pt;}
.y1ad{bottom:242.784000pt;}
.y1cf{bottom:242.784667pt;}
.y144{bottom:244.120000pt;}
.yae{bottom:247.436267pt;}
.y235{bottom:247.437733pt;}
.y280{bottom:247.441333pt;}
.y2c0{bottom:247.444667pt;}
.y18a{bottom:247.444800pt;}
.y29d{bottom:247.445467pt;}
.y6c{bottom:247.450000pt;}
.y90{bottom:247.452667pt;}
.y260{bottom:247.556667pt;}
.yd3{bottom:247.754000pt;}
.y11b{bottom:248.316667pt;}
.y10{bottom:252.214867pt;}
.y1f3{bottom:254.783333pt;}
.y167{bottom:255.111200pt;}
.y217{bottom:255.116400pt;}
.yf5{bottom:256.070667pt;}
.y1ac{bottom:258.118000pt;}
.y1ce{bottom:258.118667pt;}
.y143{bottom:258.120000pt;}
.yad{bottom:262.770267pt;}
.y234{bottom:262.771733pt;}
.y27f{bottom:262.775333pt;}
.y2bf{bottom:262.778667pt;}
.y189{bottom:262.778800pt;}
.y29c{bottom:262.779467pt;}
.y6b{bottom:262.784000pt;}
.y25f{bottom:262.890667pt;}
.yd2{bottom:263.088000pt;}
.y11a{bottom:263.650667pt;}
.yf{bottom:265.547800pt;}
.y1f2{bottom:270.117333pt;}
.y166{bottom:270.445200pt;}
.y216{bottom:270.450400pt;}
.y35{bottom:270.490000pt;}
.yf4{bottom:271.403200pt;}
.y142{bottom:272.120000pt;}
.y1ab{bottom:273.452000pt;}
.y1cd{bottom:273.452667pt;}
.yac{bottom:278.104267pt;}
.y233{bottom:278.105733pt;}
.y27e{bottom:278.109333pt;}
.y2be{bottom:278.112667pt;}
.y188{bottom:278.112800pt;}
.y29b{bottom:278.113467pt;}
.y6a{bottom:278.118000pt;}
.y25e{bottom:278.224667pt;}
.yd1{bottom:278.422000pt;}
.ye{bottom:278.880733pt;}
.y119{bottom:278.984667pt;}
.y1f1{bottom:285.451333pt;}
.y165{bottom:285.779200pt;}
.y215{bottom:285.784400pt;}
.y34{bottom:285.824000pt;}
.yf3{bottom:286.735733pt;}
.y1cc{bottom:288.785333pt;}
.y1aa{bottom:288.786000pt;}
.yd{bottom:292.213667pt;}
.yab{bottom:293.438267pt;}
.y232{bottom:293.439733pt;}
.y27d{bottom:293.443333pt;}
.y2bd{bottom:293.446667pt;}
.y187{bottom:293.446800pt;}
.y29a{bottom:293.447467pt;}
.y69{bottom:293.452000pt;}
.y25d{bottom:293.558667pt;}
.yd0{bottom:293.756000pt;}
.y118{bottom:294.318667pt;}
.y1f0{bottom:300.785333pt;}
.y164{bottom:301.113200pt;}
.y33{bottom:301.158000pt;}
.y141{bottom:301.446533pt;}
.yf2{bottom:302.068267pt;}
.y1a9{bottom:304.115333pt;}
.y1cb{bottom:304.119333pt;}
.yc{bottom:305.546600pt;}
.yaa{bottom:308.772267pt;}
.y231{bottom:308.773733pt;}
.y27c{bottom:308.777333pt;}
.y2bc{bottom:308.780667pt;}
.y186{bottom:308.780800pt;}
.y299{bottom:308.781467pt;}
.y214{bottom:308.784667pt;}
.y68{bottom:308.786000pt;}
.y25c{bottom:308.892667pt;}
.ycf{bottom:309.090000pt;}
.y117{bottom:309.652667pt;}
.y1ef{bottom:316.119333pt;}
.y163{bottom:316.447200pt;}
.y32{bottom:316.492000pt;}
.y140{bottom:316.780533pt;}
.yf1{bottom:317.400800pt;}
.yb{bottom:318.879533pt;}
.y1a8{bottom:319.449333pt;}
.y1ca{bottom:319.453333pt;}
.y67{bottom:324.106267pt;}
.y230{bottom:324.107733pt;}
.y27b{bottom:324.111333pt;}
.y2bb{bottom:324.114667pt;}
.y185{bottom:324.114800pt;}
.y8f{bottom:324.115067pt;}
.y298{bottom:324.115467pt;}
.y213{bottom:324.118667pt;}
.y25b{bottom:324.226000pt;}
.yce{bottom:324.424000pt;}
.y116{bottom:324.986667pt;}
.y1ee{bottom:331.453333pt;}
.y162{bottom:331.781200pt;}
.y31{bottom:331.826000pt;}
.yf0{bottom:332.733333pt;}
.y1a7{bottom:334.783333pt;}
.y66{bottom:339.440267pt;}
.y22f{bottom:339.441733pt;}
.y27a{bottom:339.445333pt;}
.y2ba{bottom:339.448667pt;}
.y184{bottom:339.448800pt;}
.y297{bottom:339.449467pt;}
.y212{bottom:339.452667pt;}
.y25a{bottom:339.556000pt;}
.ycd{bottom:339.758000pt;}
.ya{bottom:345.546667pt;}
.y161{bottom:347.115200pt;}
.y8e{bottom:347.115333pt;}
.y30{bottom:347.154400pt;}
.y13f{bottom:347.447067pt;}
.y1a6{bottom:350.117333pt;}
.y1c9{bottom:350.120000pt;}
.y65{bottom:354.774267pt;}
.y22e{bottom:354.775733pt;}
.y279{bottom:354.779333pt;}
.y2b9{bottom:354.782667pt;}
.y183{bottom:354.782800pt;}
.y296{bottom:354.783467pt;}
.y211{bottom:354.785067pt;}
.y259{bottom:354.890000pt;}
.ycc{bottom:355.092000pt;}
.y115{bottom:359.226667pt;}
.y1ed{bottom:362.120000pt;}
.yef{bottom:362.426667pt;}
.y160{bottom:362.449200pt;}
.y2f{bottom:362.488400pt;}
.y13e{bottom:362.781067pt;}
.y1c8{bottom:364.120000pt;}
.y1a5{bottom:365.451333pt;}
.y64{bottom:370.106800pt;}
.ya9{bottom:370.108267pt;}
.y22d{bottom:370.109733pt;}
.y278{bottom:370.113333pt;}
.y182{bottom:370.115333pt;}
.y295{bottom:370.116000pt;}
.y2b8{bottom:370.116667pt;}
.y210{bottom:370.117600pt;}
.y258{bottom:370.224000pt;}
.ycb{bottom:370.426000pt;}
.y114{bottom:373.226667pt;}
.y1ec{bottom:376.120000pt;}
.yee{bottom:376.426667pt;}
.y9{bottom:377.548400pt;}
.y15f{bottom:377.783200pt;}
.y2e{bottom:377.822400pt;}
.y13d{bottom:378.115067pt;}
.y1c7{bottom:378.120000pt;}
.y1a4{bottom:380.785333pt;}
.y63{bottom:385.440800pt;}
.ya8{bottom:385.442267pt;}
.y22c{bottom:385.443733pt;}
.y277{bottom:385.447333pt;}
.y8d{bottom:385.448133pt;}
.y181{bottom:385.449333pt;}
.y294{bottom:385.450000pt;}
.y2b7{bottom:385.450667pt;}
.y257{bottom:385.558000pt;}
.yca{bottom:385.760000pt;}
.y113{bottom:387.226667pt;}
.y1eb{bottom:390.120000pt;}
.yed{bottom:390.426667pt;}
.y1c6{bottom:392.120000pt;}
.y15e{bottom:393.117200pt;}
.y20f{bottom:393.117867pt;}
.y2d{bottom:393.156400pt;}
.y13c{bottom:393.449067pt;}
.y1a3{bottom:396.119333pt;}
.y8{bottom:396.215267pt;}
.y62{bottom:400.774800pt;}
.ya7{bottom:400.776267pt;}
.y22b{bottom:400.777733pt;}
.y276{bottom:400.781333pt;}
.y8c{bottom:400.782133pt;}
.y180{bottom:400.783333pt;}
.y293{bottom:400.784000pt;}
.y2b6{bottom:400.784667pt;}
.y256{bottom:400.892000pt;}
.y112{bottom:401.226667pt;}
.y1ea{bottom:404.120000pt;}
.yec{bottom:404.426667pt;}
.y1c5{bottom:406.120000pt;}
.y2c{bottom:408.490400pt;}
.y13b{bottom:408.783067pt;}
.y7{bottom:409.548200pt;}
.y1a2{bottom:411.453333pt;}
.y111{bottom:415.226667pt;}
.y61{bottom:416.108800pt;}
.ya6{bottom:416.110267pt;}
.y22a{bottom:416.111733pt;}
.y275{bottom:416.115333pt;}
.y8b{bottom:416.116133pt;}
.y17f{bottom:416.117333pt;}
.y292{bottom:416.118000pt;}
.y2b5{bottom:416.118667pt;}
.y255{bottom:416.226000pt;}
.yc9{bottom:418.106667pt;}
.y1e9{bottom:418.120000pt;}
.yeb{bottom:418.426667pt;}
.y1c4{bottom:420.120000pt;}
.y6{bottom:422.881133pt;}
.y15d{bottom:423.783733pt;}
.y2b{bottom:423.824400pt;}
.y13a{bottom:424.117067pt;}
.y110{bottom:429.226667pt;}
.y60{bottom:431.442800pt;}
.ya5{bottom:431.444267pt;}
.y229{bottom:431.445733pt;}
.y274{bottom:431.449333pt;}
.y8a{bottom:431.450133pt;}
.y20e{bottom:431.450667pt;}
.y17e{bottom:431.451333pt;}
.y291{bottom:431.452000pt;}
.y2b4{bottom:431.452667pt;}
.y254{bottom:431.559333pt;}
.yc8{bottom:432.106667pt;}
.y1e8{bottom:432.120000pt;}
.y1c3{bottom:434.120000pt;}
.y5{bottom:436.214067pt;}
.y15c{bottom:439.117733pt;}
.y2a{bottom:439.158400pt;}
.y139{bottom:439.451067pt;}
.y1a1{bottom:442.120000pt;}
.yc7{bottom:446.106667pt;}
.y1e7{bottom:446.120000pt;}
.y5f{bottom:446.776800pt;}
.ya4{bottom:446.778267pt;}
.y228{bottom:446.779733pt;}
.y273{bottom:446.783333pt;}
.y89{bottom:446.784133pt;}
.yea{bottom:446.784667pt;}
.y17d{bottom:446.785333pt;}
.y290{bottom:446.786000pt;}
.y253{bottom:446.892667pt;}
.y1c2{bottom:448.120000pt;}
.y4{bottom:449.547000pt;}
.y15b{bottom:454.451733pt;}
.y29{bottom:454.492400pt;}
.y138{bottom:454.785067pt;}
.y1a0{bottom:456.120000pt;}
.yc6{bottom:460.106667pt;}
.y5e{bottom:462.110800pt;}
.ya3{bottom:462.112267pt;}
.y227{bottom:462.113733pt;}
.y2b3{bottom:462.115200pt;}
.y10f{bottom:462.116667pt;}
.y272{bottom:462.117333pt;}
.y88{bottom:462.118133pt;}
.ye9{bottom:462.118667pt;}
.y17c{bottom:462.119333pt;}
.y252{bottom:462.226667pt;}
.y3{bottom:462.879933pt;}
.y28{bottom:469.826400pt;}
.y19f{bottom:470.120000pt;}
.y1e6{bottom:475.450667pt;}
.y2{bottom:476.212867pt;}
.y5d{bottom:477.444800pt;}
.ya2{bottom:477.446267pt;}
.y226{bottom:477.447733pt;}
.y2b2{bottom:477.449200pt;}
.y10e{bottom:477.450667pt;}
.y271{bottom:477.451333pt;}
.y15a{bottom:477.452000pt;}
.y87{bottom:477.452133pt;}
.ye8{bottom:477.452667pt;}
.y251{bottom:477.560667pt;}
.y137{bottom:477.785333pt;}
.y19e{bottom:484.120000pt;}
.y1e5{bottom:490.784667pt;}
.yc5{bottom:491.098000pt;}
.y5c{bottom:492.778800pt;}
.ya1{bottom:492.780267pt;}
.y225{bottom:492.781733pt;}
.y2b1{bottom:492.783200pt;}
.ye7{bottom:492.784267pt;}
.y10d{bottom:492.784667pt;}
.y270{bottom:492.785333pt;}
.y159{bottom:492.786000pt;}
.y86{bottom:492.786133pt;}
.y27{bottom:492.826667pt;}
.y250{bottom:492.894667pt;}
.y136{bottom:493.119333pt;}
.y19d{bottom:498.120000pt;}
.y1{bottom:502.880000pt;}
.y1e4{bottom:506.118667pt;}
.yc4{bottom:506.432000pt;}
.y5b{bottom:508.112800pt;}
.y20d{bottom:508.113333pt;}
.ya0{bottom:508.114267pt;}
.y224{bottom:508.115733pt;}
.y2b0{bottom:508.117200pt;}
.ye6{bottom:508.118267pt;}
.y10c{bottom:508.118667pt;}
.y26f{bottom:508.119333pt;}
.y158{bottom:508.119600pt;}
.y85{bottom:508.120133pt;}
.y24f{bottom:508.228667pt;}
.y135{bottom:508.453333pt;}
.y1e3{bottom:521.452667pt;}
.yc3{bottom:521.766000pt;}
.y5a{bottom:523.446800pt;}
.y20c{bottom:523.447333pt;}
.y9f{bottom:523.448267pt;}
.y2af{bottom:523.451200pt;}
.y10b{bottom:523.452667pt;}
.y84{bottom:523.454133pt;}
.y24e{bottom:523.562667pt;}
.y134{bottom:523.787333pt;}
.y19c{bottom:527.452000pt;}
.y26{bottom:527.975733pt;}
.ye5{bottom:531.118533pt;}
.y157{bottom:531.119867pt;}
.y1e2{bottom:536.786667pt;}
.yc2{bottom:537.100000pt;}
.y59{bottom:538.780800pt;}
.y20b{bottom:538.781333pt;}
.y9e{bottom:538.782267pt;}
.y2ae{bottom:538.785200pt;}
.y10a{bottom:538.786000pt;}
.y83{bottom:538.788133pt;}
.y24d{bottom:538.896667pt;}
.y133{bottom:539.119867pt;}
.y25{bottom:540.641733pt;}
.y19b{bottom:542.786000pt;}
.yc1{bottom:552.434000pt;}
.y58{bottom:554.114800pt;}
.y20a{bottom:554.115333pt;}
.y1c1{bottom:554.116267pt;}
.y109{bottom:554.117733pt;}
.y2ad{bottom:554.119200pt;}
.y82{bottom:554.122133pt;}
.y24c{bottom:554.229200pt;}
.y132{bottom:554.452400pt;}
.y19a{bottom:558.120000pt;}
.y24{bottom:559.641333pt;}
.y1e1{bottom:567.453333pt;}
.yc0{bottom:567.768000pt;}
.y57{bottom:569.447333pt;}
.y17b{bottom:569.448800pt;}
.y209{bottom:569.449333pt;}
.y1c0{bottom:569.450267pt;}
.ye4{bottom:569.451333pt;}
.y108{bottom:569.451733pt;}
.y156{bottom:569.452667pt;}
.y2ac{bottom:569.453200pt;}
.y81{bottom:569.456133pt;}
.y24b{bottom:569.561733pt;}
.y23{bottom:572.307333pt;}
.y131{bottom:577.452667pt;}
.y1e0{bottom:581.453333pt;}
.ybf{bottom:583.102000pt;}
.y56{bottom:584.781333pt;}
.y17a{bottom:584.782800pt;}
.y208{bottom:584.783333pt;}
.y1bf{bottom:584.784267pt;}
.ye3{bottom:584.785333pt;}
.y107{bottom:584.785733pt;}
.y155{bottom:584.786000pt;}
.y2ab{bottom:584.787200pt;}
.y80{bottom:584.790133pt;}
.y24a{bottom:584.894267pt;}
.y22{bottom:584.973333pt;}
.y199{bottom:588.786667pt;}
.y130{bottom:592.786667pt;}
.y1df{bottom:595.453333pt;}
.ybe{bottom:598.436000pt;}
.y55{bottom:600.115333pt;}
.y179{bottom:600.116800pt;}
.y207{bottom:600.117333pt;}
.y154{bottom:600.118000pt;}
.y1be{bottom:600.118267pt;}
.ye2{bottom:600.119333pt;}
.y106{bottom:600.119733pt;}
.y2aa{bottom:600.121200pt;}
.y7f{bottom:600.124133pt;}
.y249{bottom:600.226800pt;}
.y198{bottom:602.786667pt;}
.y1de{bottom:609.453333pt;}
.ybd{bottom:613.770000pt;}
.y54{bottom:615.449333pt;}
.y178{bottom:615.450800pt;}
.y206{bottom:615.451333pt;}
.y153{bottom:615.452000pt;}
.y1bd{bottom:615.452267pt;}
.y105{bottom:615.453733pt;}
.y2a9{bottom:615.455200pt;}
.y7e{bottom:615.456667pt;}
.y248{bottom:615.559333pt;}
.y197{bottom:616.786667pt;}
.y12f{bottom:623.453333pt;}
.y3a{bottom:629.012733pt;}
.ybc{bottom:629.104000pt;}
.y53{bottom:630.783333pt;}
.y177{bottom:630.784800pt;}
.y205{bottom:630.785333pt;}
.y152{bottom:630.786000pt;}
.y28f{bottom:630.786267pt;}
.y104{bottom:630.787733pt;}
.y7d{bottom:630.789200pt;}
.y247{bottom:630.891867pt;}
.y3c{bottom:634.346667pt;}
.y17{bottom:635.414000pt;}
.y12e{bottom:637.453333pt;}
.y1bc{bottom:638.452533pt;}
.y52{bottom:646.117333pt;}
.y176{bottom:646.118800pt;}
.y204{bottom:646.119333pt;}
.y28e{bottom:646.120267pt;}
.y7c{bottom:646.121733pt;}
.y246{bottom:646.225867pt;}
.y39{bottom:647.679600pt;}
.y16{bottom:648.080000pt;}
.y12d{bottom:651.453333pt;}
.y3b{bottom:653.013533pt;}
.y51{bottom:661.451333pt;}
.y203{bottom:661.452667pt;}
.y175{bottom:661.452800pt;}
.y7b{bottom:661.454267pt;}
.y245{bottom:661.559867pt;}
.y15{bottom:664.093333pt;}
.y12c{bottom:665.453333pt;}
.y38{bottom:666.346467pt;}
.y50{bottom:676.785333pt;}
.y7a{bottom:676.786800pt;}
.y202{bottom:676.787467pt;}
.y244{bottom:676.893867pt;}
.y12b{bottom:679.453333pt;}
.y37{bottom:685.013333pt;}
.y4f{bottom:692.119333pt;}
.y12a{bottom:693.453333pt;}
.y14{bottom:704.093333pt;}
.y36{bottom:707.333333pt;}
.y4e{bottom:707.453333pt;}
.y13{bottom:749.426800pt;}
.h3{height:45.525333pt;}
.h6{height:51.216000pt;}
.h7{height:52.032000pt;}
.h2{height:54.061333pt;}
.hb{height:54.922667pt;}
.hf{height:56.906667pt;}
.h18{height:57.434667pt;}
.h10{height:57.813333pt;}
.h8{height:62.597333pt;}
.h15{height:62.618667pt;}
.h17{height:63.183467pt;}
.h1b{height:63.184533pt;}
.h14{height:63.187733pt;}
.h13{height:63.194133pt;}
.ha{height:63.202293pt;}
.h1e{height:63.209067pt;}
.h16{height:63.212267pt;}
.hc{height:63.233067pt;}
.h9{height:63.594667pt;}
.h12{height:63.596800pt;}
.h19{height:63.597333pt;}
.h1f{height:63.604800pt;}
.he{height:63.605333pt;}
.h1c{height:63.610667pt;}
.h1d{height:63.620800pt;}
.h1a{height:63.621333pt;}
.hd{height:63.634667pt;}
.h11{height:63.648533pt;}
.h5{height:68.288000pt;}
.h4{height:91.050667pt;}
.h1{height:778.666667pt;}
.h0{height:792.000000pt;}
.w0{width:514.666667pt;}
.x0{left:0.000000pt;}
.x1{left:41.066667pt;}
.x11{left:59.973867pt;}
.x3{left:61.067067pt;}
.xa{left:66.000400pt;}
.x12{left:77.359733pt;}
.x10{left:78.867600pt;}
.xe{left:80.814133pt;}
.x9{left:94.866467pt;}
.xf{left:103.480933pt;}
.xb{left:120.880000pt;}
.x8{left:187.000000pt;}
.x4{left:203.333333pt;}
.x7{left:235.773333pt;}
.xc{left:268.800067pt;}
.xd{left:282.026600pt;}
.x6{left:341.947733pt;}
.x2{left:352.373333pt;}
.x5{left:366.386933pt;}
}




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