
    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_0243a0c826b0af49afba0fbc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_4b5ae67cf28ee4e559be5a7f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_a64afbff4ebefa41b4232338.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_fe89d548b08842e0f52d1aa2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_39c6962a373538d307c2d557.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c21455147f22ae9e06715995.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.676270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ff0f2424589efe5641cbce81.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e4cf7d3e4a7563384cb489ba.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_191b1f87044f49a469e4e618.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6ae10ffe799375f1f71bddb5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.684082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f2ceb1bb643fcb8130de4d2d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.696777;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;}
.mb{transform:matrix(0.000000,-0.249897,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249897,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249897,0.250000,0.000000,0,0);}
.md{transform:matrix(0.236466,0.000000,-0.080874,0.236557,0,0);-ms-transform:matrix(0.236466,0.000000,-0.080874,0.236557,0,0);-webkit-transform:matrix(0.236466,0.000000,-0.080874,0.236557,0,0);}
.m9{transform:matrix(0.236466,0.000000,-0.080872,0.236558,0,0);-ms-transform:matrix(0.236466,0.000000,-0.080872,0.236558,0,0);-webkit-transform:matrix(0.236466,0.000000,-0.080872,0.236558,0,0);}
.m2{transform:matrix(0.236547,0.000000,-0.080905,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080905,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080905,0.236547,0,0);}
.m1{transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);}
.ma{transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249904,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-57.238766px;}
.v1{vertical-align:-6.121764px;}
.v3{vertical-align:-1.802549px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.441188px;}
.v4{vertical-align:17.998336px;}
.v8{vertical-align:29.518020px;}
.v7{vertical-align:42.477372px;}
.v6{vertical-align:45.361512px;}
.v2{vertical-align:57.957451px;}
.ls31{letter-spacing:-6.697368px;}
.ls51{letter-spacing:-2.519424px;}
.lsa4{letter-spacing:-0.656278px;}
.lsae{letter-spacing:-0.604165px;}
.lsa5{letter-spacing:-0.510107px;}
.lsb6{letter-spacing:-0.498996px;}
.lsaf{letter-spacing:-0.476189px;}
.ls6a{letter-spacing:-0.444888px;}
.ls48{letter-spacing:-0.408816px;}
.ls57{letter-spacing:-0.378756px;}
.ls72{letter-spacing:-0.354708px;}
.ls52{letter-spacing:-0.338256px;}
.ls2b{letter-spacing:-0.331056px;}
.ls58{letter-spacing:-0.318636px;}
.lsb7{letter-spacing:-0.312624px;}
.lsa3{letter-spacing:-0.282564px;}
.ls8c{letter-spacing:-0.276552px;}
.ls34{letter-spacing:-0.270540px;}
.ls75{letter-spacing:-0.264528px;}
.ls55{letter-spacing:-0.258516px;}
.ls50{letter-spacing:-0.246492px;}
.ls77{letter-spacing:-0.210420px;}
.lsb5{letter-spacing:-0.198396px;}
.ls8a{letter-spacing:-0.192384px;}
.ls43{letter-spacing:-0.186372px;}
.ls71{letter-spacing:-0.180360px;}
.ls4d{letter-spacing:-0.174348px;}
.ls3a{letter-spacing:-0.168336px;}
.ls49{letter-spacing:-0.162324px;}
.ls8d{letter-spacing:-0.156312px;}
.ls38{letter-spacing:-0.150300px;}
.ls35{letter-spacing:-0.144288px;}
.ls2a{letter-spacing:-0.139392px;}
.ls37{letter-spacing:-0.138276px;}
.ls44{letter-spacing:-0.132264px;}
.ls46{letter-spacing:-0.126252px;}
.ls2c{letter-spacing:-0.121968px;}
.ls39{letter-spacing:-0.120240px;}
.ls30{letter-spacing:-0.114228px;}
.ls54{letter-spacing:-0.108216px;}
.ls4a{letter-spacing:-0.102204px;}
.ls4c{letter-spacing:-0.096192px;}
.ls73{letter-spacing:-0.090972px;}
.ls4b{letter-spacing:-0.090180px;}
.ls29{letter-spacing:-0.087120px;}
.ls6d{letter-spacing:-0.084168px;}
.ls2f{letter-spacing:-0.078156px;}
.ls76{letter-spacing:-0.072144px;}
.ls45{letter-spacing:-0.066132px;}
.ls6b{letter-spacing:-0.060120px;}
.ls3f{letter-spacing:-0.054108px;}
.ls6c{letter-spacing:-0.048096px;}
.ls40{letter-spacing:-0.042084px;}
.ls33{letter-spacing:-0.036072px;}
.ls24{letter-spacing:-0.034848px;}
.lsa8{letter-spacing:-0.033516px;}
.ls42{letter-spacing:-0.030060px;}
.ls8b{letter-spacing:-0.024048px;}
.ls2d{letter-spacing:-0.021600px;}
.ls74{letter-spacing:-0.019152px;}
.ls3b{letter-spacing:-0.018036px;}
.ls27{letter-spacing:-0.017424px;}
.ls36{letter-spacing:-0.012024px;}
.ls56{letter-spacing:-0.011664px;}
.ls3d{letter-spacing:-0.006012px;}
.ls25{letter-spacing:0.000000px;}
.lsa0{letter-spacing:0.002535px;}
.ls1a{letter-spacing:0.003888px;}
.lsa2{letter-spacing:0.003902px;}
.ls9e{letter-spacing:0.004437px;}
.ls5{letter-spacing:0.004788px;}
.ls13{letter-spacing:0.006012px;}
.ls68{letter-spacing:0.007776px;}
.ls62{letter-spacing:0.008568px;}
.ls4{letter-spacing:0.009576px;}
.lsa1{letter-spacing:0.011664px;}
.ls5a{letter-spacing:0.012024px;}
.ls7b{letter-spacing:0.014364px;}
.ls2e{letter-spacing:0.014400px;}
.ls9c{letter-spacing:0.017928px;}
.ls19{letter-spacing:0.018036px;}
.ls1{letter-spacing:0.019152px;}
.ls84{letter-spacing:0.019911px;}
.ls7f{letter-spacing:0.021600px;}
.ls0{letter-spacing:0.023940px;}
.lsd{letter-spacing:0.024048px;}
.ls63{letter-spacing:0.026640px;}
.ls6{letter-spacing:0.028728px;}
.lsa6{letter-spacing:0.029880px;}
.ls93{letter-spacing:0.030060px;}
.ls59{letter-spacing:0.033516px;}
.ls18{letter-spacing:0.036072px;}
.ls98{letter-spacing:0.038304px;}
.lsb4{letter-spacing:0.042084px;}
.ls79{letter-spacing:0.043092px;}
.ls95{letter-spacing:0.047880px;}
.ls6f{letter-spacing:0.048096px;}
.ls70{letter-spacing:0.050328px;}
.ls26{letter-spacing:0.052272px;}
.ls53{letter-spacing:0.054108px;}
.lsad{letter-spacing:0.057456px;}
.ls11{letter-spacing:0.058716px;}
.ls17{letter-spacing:0.060120px;}
.ls23{letter-spacing:0.062244px;}
.lsa7{letter-spacing:0.062748px;}
.lse{letter-spacing:0.066132px;}
.ls7{letter-spacing:0.067032px;}
.ls3c{letter-spacing:0.067104px;}
.ls9{letter-spacing:0.069696px;}
.ls8e{letter-spacing:0.071820px;}
.lsa{letter-spacing:0.072000px;}
.ls5b{letter-spacing:0.072144px;}
.ls21{letter-spacing:0.074748px;}
.lsb2{letter-spacing:0.075492px;}
.ls65{letter-spacing:0.076608px;}
.ls12{letter-spacing:0.078156px;}
.ls3{letter-spacing:0.081396px;}
.lsf{letter-spacing:0.084168px;}
.ls78{letter-spacing:0.086184px;}
.ls28{letter-spacing:0.087120px;}
.ls14{letter-spacing:0.090180px;}
.ls16{letter-spacing:0.090972px;}
.ls92{letter-spacing:0.092268px;}
.ls5f{letter-spacing:0.095760px;}
.lsc{letter-spacing:0.096192px;}
.ls8f{letter-spacing:0.100548px;}
.ls91{letter-spacing:0.100656px;}
.ls1b{letter-spacing:0.102204px;}
.ls5c{letter-spacing:0.108216px;}
.ls69{letter-spacing:0.114228px;}
.ls2{letter-spacing:0.114912px;}
.lsb1{letter-spacing:0.116208px;}
.ls7a{letter-spacing:0.119700px;}
.ls32{letter-spacing:0.120240px;}
.ls4e{letter-spacing:0.126252px;}
.ls82{letter-spacing:0.129276px;}
.ls60{letter-spacing:0.129960px;}
.ls41{letter-spacing:0.132264px;}
.ls67{letter-spacing:0.134064px;}
.lsb{letter-spacing:0.138276px;}
.ls66{letter-spacing:0.138852px;}
.ls9d{letter-spacing:0.143640px;}
.ls8{letter-spacing:0.144000px;}
.ls81{letter-spacing:0.144288px;}
.ls96{letter-spacing:0.146171px;}
.lsac{letter-spacing:0.148428px;}
.ls86{letter-spacing:0.156312px;}
.ls6e{letter-spacing:0.162324px;}
.ls22{letter-spacing:0.162792px;}
.ls87{letter-spacing:0.167580px;}
.ls3e{letter-spacing:0.176148px;}
.ls5d{letter-spacing:0.180360px;}
.ls20{letter-spacing:0.180756px;}
.lsa9{letter-spacing:0.181547px;}
.ls47{letter-spacing:0.181944px;}
.lsb0{letter-spacing:0.187499px;}
.ls88{letter-spacing:0.191520px;}
.ls80{letter-spacing:0.192384px;}
.ls89{letter-spacing:0.192924px;}
.ls85{letter-spacing:0.193037px;}
.ls83{letter-spacing:0.193805px;}
.ls90{letter-spacing:2.173752px;}
.ls5e{letter-spacing:10.447416px;}
.ls94{letter-spacing:10.456992px;}
.ls9f{letter-spacing:21.612572px;}
.ls15{letter-spacing:26.290908px;}
.ls7c{letter-spacing:26.305272px;}
.ls9b{letter-spacing:36.652140px;}
.lsb3{letter-spacing:41.248332px;}
.ls7e{letter-spacing:42.292800px;}
.ls97{letter-spacing:49.254156px;}
.lsaa{letter-spacing:49.613256px;}
.ls9a{letter-spacing:54.659808px;}
.lsab{letter-spacing:69.785100px;}
.ls99{letter-spacing:70.144200px;}
.ls4f{letter-spacing:70.292304px;}
.ls10{letter-spacing:83.963880px;}
.ls7d{letter-spacing:84.005820px;}
.ls64{letter-spacing:120.150072px;}
.ls61{letter-spacing:148.590792px;}
.ls1d{letter-spacing:742.612110px;}
.ls1c{letter-spacing:770.453800px;}
.ls1f{letter-spacing:828.999105px;}
.ls1e{letter-spacing:854.333583px;}
.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;}
}
.wsa{word-spacing:-60.120000px;}
.wsd{word-spacing:-40.384111px;}
.ws1{word-spacing:-27.000000px;}
.ws2{word-spacing:-21.658032px;}
.wse0{word-spacing:-21.162924px;}
.ws8{word-spacing:-21.146148px;}
.wsc{word-spacing:-18.389850px;}
.wse1{word-spacing:-18.014400px;}
.ws1a2{word-spacing:-15.168276px;}
.ws143{word-spacing:-15.162264px;}
.ws5{word-spacing:-15.126192px;}
.ws1a3{word-spacing:-15.114168px;}
.ws1a4{word-spacing:-15.078096px;}
.ws1a5{word-spacing:-15.072084px;}
.ws6{word-spacing:-15.054048px;}
.ws9{word-spacing:-15.030000px;}
.ws7{word-spacing:-15.017976px;}
.ws4{word-spacing:-14.993928px;}
.wsdf{word-spacing:-13.334580px;}
.ws0{word-spacing:-13.320216px;}
.ws13f{word-spacing:-12.046608px;}
.wsb{word-spacing:-10.727250px;}
.ws72{word-spacing:-10.641750px;}
.ws13e{word-spacing:-9.731664px;}
.ws76{word-spacing:-9.727776px;}
.wse{word-spacing:-9.723888px;}
.ws1a1{word-spacing:-9.720000px;}
.wsf{word-spacing:-9.708336px;}
.ws3{word-spacing:-8.332632px;}
.ws179{word-spacing:-7.627949px;}
.ws17a{word-spacing:-7.621997px;}
.ws141{word-spacing:-7.603871px;}
.ws142{word-spacing:-7.487928px;}
.ws71{word-spacing:-7.200576px;}
.ws178{word-spacing:-6.836285px;}
.ws140{word-spacing:-6.801422px;}
.ws1f1{word-spacing:-4.839876px;}
.wse8{word-spacing:-4.814712px;}
.wsf6{word-spacing:-3.877740px;}
.ws18f{word-spacing:-3.601188px;}
.ws139{word-spacing:-3.589164px;}
.ws1a7{word-spacing:-3.492972px;}
.wsf7{word-spacing:-3.384756px;}
.ws19c{word-spacing:-3.378744px;}
.ws159{word-spacing:-3.120228px;}
.ws158{word-spacing:-3.036060px;}
.ws129{word-spacing:-3.030048px;}
.ws18b{word-spacing:-2.879748px;}
.wsbf{word-spacing:-2.855700px;}
.ws26{word-spacing:-2.789568px;}
.ws28{word-spacing:-2.777544px;}
.ws197{word-spacing:-2.675340px;}
.ws18c{word-spacing:-2.555100px;}
.ws14b{word-spacing:-2.356704px;}
.ws1b0{word-spacing:-2.302596px;}
.ws24{word-spacing:-2.290572px;}
.ws148{word-spacing:-2.218428px;}
.ws14a{word-spacing:-2.200392px;}
.ws30{word-spacing:-2.164320px;}
.ws99{word-spacing:-2.152296px;}
.ws15d{word-spacing:-2.092176px;}
.wsf4{word-spacing:-2.062116px;}
.wsf3{word-spacing:-1.965924px;}
.wsb8{word-spacing:-1.959912px;}
.wsae{word-spacing:-1.941876px;}
.ws198{word-spacing:-1.905804px;}
.wsb9{word-spacing:-1.623240px;}
.ws1bc{word-spacing:-1.611216px;}
.ws15c{word-spacing:-1.569132px;}
.ws29{word-spacing:-1.557108px;}
.ws181{word-spacing:-1.551096px;}
.wseb{word-spacing:-1.430856px;}
.ws149{word-spacing:-1.424844px;}
.ws82{word-spacing:-1.412820px;}
.ws1c7{word-spacing:-1.370736px;}
.wsfa{word-spacing:-1.358712px;}
.ws195{word-spacing:-1.352700px;}
.ws1da{word-spacing:-1.316628px;}
.ws1dd{word-spacing:-1.274544px;}
.ws14c{word-spacing:-1.256508px;}
.ws111{word-spacing:-1.232460px;}
.ws1a8{word-spacing:-1.226448px;}
.ws17f{word-spacing:-1.225728px;}
.wsec{word-spacing:-1.220436px;}
.ws1aa{word-spacing:-1.214424px;}
.ws5c{word-spacing:-1.070136px;}
.ws4e{word-spacing:-1.052100px;}
.ws110{word-spacing:-1.010016px;}
.ws15b{word-spacing:-0.967932px;}
.ws119{word-spacing:-0.955908px;}
.ws196{word-spacing:-0.925848px;}
.ws81{word-spacing:-0.907812px;}
.ws11b{word-spacing:-0.889776px;}
.ws6b{word-spacing:-0.877752px;}
.ws1c5{word-spacing:-0.859716px;}
.ws11c{word-spacing:-0.727452px;}
.wsda{word-spacing:-0.721440px;}
.ws67{word-spacing:-0.709416px;}
.ws1ab{word-spacing:-0.691380px;}
.ws122{word-spacing:-0.625248px;}
.ws10f{word-spacing:-0.607212px;}
.ws42{word-spacing:-0.601200px;}
.ws59{word-spacing:-0.535068px;}
.ws4a{word-spacing:-0.505008px;}
.ws31{word-spacing:-0.486972px;}
.ws68{word-spacing:-0.480960px;}
.ws43{word-spacing:-0.444888px;}
.ws11a{word-spacing:-0.396792px;}
.ws21{word-spacing:-0.390780px;}
.wsf1{word-spacing:-0.384768px;}
.ws64{word-spacing:-0.372744px;}
.ws2f{word-spacing:-0.366732px;}
.ws63{word-spacing:-0.360720px;}
.ws66{word-spacing:-0.306612px;}
.ws89{word-spacing:-0.294588px;}
.wse7{word-spacing:-0.277704px;}
.ws4c{word-spacing:-0.272916px;}
.ws109{word-spacing:-0.264528px;}
.ws34{word-spacing:-0.252504px;}
.ws10e{word-spacing:-0.240480px;}
.ws17d{word-spacing:-0.234612px;}
.wsc9{word-spacing:-0.229824px;}
.wsc3{word-spacing:-0.228456px;}
.wsce{word-spacing:-0.225036px;}
.ws151{word-spacing:-0.220248px;}
.ws177{word-spacing:-0.216432px;}
.ws11e{word-spacing:-0.215460px;}
.ws135{word-spacing:-0.194400px;}
.ws150{word-spacing:-0.186732px;}
.ws153{word-spacing:-0.184536px;}
.ws4d{word-spacing:-0.181944px;}
.ws152{word-spacing:-0.177156px;}
.ws154{word-spacing:-0.176148px;}
.wsc5{word-spacing:-0.172368px;}
.ws166{word-spacing:-0.162792px;}
.ws164{word-spacing:-0.162324px;}
.wsc4{word-spacing:-0.158004px;}
.ws16b{word-spacing:-0.153216px;}
.ws193{word-spacing:-0.148428px;}
.ws17e{word-spacing:-0.143640px;}
.wsb0{word-spacing:-0.142596px;}
.ws167{word-spacing:-0.134064px;}
.ws96{word-spacing:-0.132264px;}
.ws1ce{word-spacing:-0.126252px;}
.ws7a{word-spacing:-0.124488px;}
.ws79{word-spacing:-0.114912px;}
.ws11d{word-spacing:-0.108216px;}
.ws6e{word-spacing:-0.102204px;}
.ws1de{word-spacing:-0.096192px;}
.ws12{word-spacing:-0.095760px;}
.ws1f0{word-spacing:-0.084168px;}
.ws155{word-spacing:-0.083880px;}
.wsc7{word-spacing:-0.071820px;}
.wse3{word-spacing:-0.067032px;}
.ws13{word-spacing:-0.062244px;}
.ws13d{word-spacing:-0.060120px;}
.wse5{word-spacing:-0.057456px;}
.ws16{word-spacing:-0.047880px;}
.wsd9{word-spacing:-0.036072px;}
.wse2{word-spacing:-0.019152px;}
.ws1e{word-spacing:-0.014400px;}
.ws6d{word-spacing:-0.012024px;}
.ws15{word-spacing:-0.009576px;}
.ws78{word-spacing:-0.006012px;}
.ws10{word-spacing:-0.004788px;}
.ws11{word-spacing:0.000000px;}
.wse4{word-spacing:0.004788px;}
.wsfe{word-spacing:0.012024px;}
.ws14{word-spacing:0.014364px;}
.ws1d{word-spacing:0.021600px;}
.ws176{word-spacing:0.024048px;}
.ws1ae{word-spacing:0.066132px;}
.ws8b{word-spacing:0.072144px;}
.ws35{word-spacing:0.096192px;}
.ws134{word-spacing:0.102204px;}
.ws3c{word-spacing:0.108216px;}
.ws1b{word-spacing:0.113256px;}
.ws14f{word-spacing:0.114228px;}
.ws5a{word-spacing:0.120240px;}
.ws209{word-spacing:0.126252px;}
.ws18{word-spacing:0.130680px;}
.ws14e{word-spacing:0.132264px;}
.ws8a{word-spacing:0.138276px;}
.ws5b{word-spacing:0.144288px;}
.ws1f9{word-spacing:0.150300px;}
.wsc2{word-spacing:0.156312px;}
.ws1f{word-spacing:0.168336px;}
.ws1d9{word-spacing:0.174348px;}
.ws1af{word-spacing:0.180360px;}
.wsc1{word-spacing:0.186372px;}
.ws163{word-spacing:0.192384px;}
.wsde{word-spacing:0.198396px;}
.ws19{word-spacing:0.200376px;}
.ws20{word-spacing:0.204408px;}
.wsb7{word-spacing:0.210420px;}
.ws1be{word-spacing:0.216432px;}
.wsc0{word-spacing:0.228456px;}
.ws22{word-spacing:0.234468px;}
.ws4b{word-spacing:0.240480px;}
.ws1a{word-spacing:0.270072px;}
.ws1ed{word-spacing:0.276552px;}
.wsa5{word-spacing:0.288576px;}
.ws65{word-spacing:0.336672px;}
.ws3d{word-spacing:0.444888px;}
.ws1c{word-spacing:0.514008px;}
.ws1b7{word-spacing:0.529056px;}
.ws3e{word-spacing:0.601200px;}
.ws1cf{word-spacing:0.619236px;}
.ws10b{word-spacing:0.625248px;}
.ws105{word-spacing:0.673344px;}
.ws77{word-spacing:0.697392px;}
.ws1ac{word-spacing:0.799596px;}
.ws6c{word-spacing:0.919836px;}
.ws8e{word-spacing:1.292580px;}
.ws8f{word-spacing:1.310616px;}
.ws138{word-spacing:1.454904px;}
.ws1ff{word-spacing:1.521036px;}
.wsd6{word-spacing:1.539072px;}
.ws131{word-spacing:1.563120px;}
.ws1e4{word-spacing:1.683360px;}
.ws1e3{word-spacing:1.719432px;}
.ws39{word-spacing:1.755504px;}
.ws92{word-spacing:1.809612px;}
.ws87{word-spacing:1.851696px;}
.ws100{word-spacing:1.887768px;}
.ws101{word-spacing:1.899792px;}
.wsdd{word-spacing:1.905804px;}
.ws38{word-spacing:1.929852px;}
.wsba{word-spacing:2.158308px;}
.ws1ca{word-spacing:2.242476px;}
.wsea{word-spacing:2.248488px;}
.ws115{word-spacing:2.254500px;}
.ws114{word-spacing:2.290572px;}
.ws55{word-spacing:2.350692px;}
.ws54{word-spacing:2.368728px;}
.ws12d{word-spacing:2.398788px;}
.wsbc{word-spacing:2.428848px;}
.ws61{word-spacing:2.482956px;}
.ws170{word-spacing:2.531052px;}
.ws88{word-spacing:2.567124px;}
.ws1fc{word-spacing:2.633256px;}
.ws1fd{word-spacing:2.651292px;}
.ws171{word-spacing:2.693376px;}
.ws1eb{word-spacing:2.753496px;}
.ws118{word-spacing:2.783556px;}
.ws13a{word-spacing:2.891772px;}
.ws1d6{word-spacing:2.909808px;}
.ws117{word-spacing:2.975940px;}
.ws6a{word-spacing:2.981952px;}
.ws116{word-spacing:3.006000px;}
.ws1ec{word-spacing:3.036060px;}
.ws1ea{word-spacing:3.072132px;}
.ws180{word-spacing:3.078144px;}
.ws69{word-spacing:3.084156px;}
.ws16d{word-spacing:3.120228px;}
.ws184{word-spacing:3.162312px;}
.ws157{word-spacing:3.216420px;}
.ws93{word-spacing:3.240468px;}
.ws2e{word-spacing:3.246480px;}
.ws1cb{word-spacing:3.318624px;}
.wsf8{word-spacing:3.330648px;}
.wscf{word-spacing:3.378744px;}
.ws12e{word-spacing:3.414816px;}
.ws183{word-spacing:3.432852px;}
.wsa4{word-spacing:3.456900px;}
.ws80{word-spacing:3.468924px;}
.ws1ad{word-spacing:3.595176px;}
.ws1cc{word-spacing:3.613212px;}
.ws44{word-spacing:3.703392px;}
.ws10a{word-spacing:3.787560px;}
.ws7f{word-spacing:3.961908px;}
.ws1b9{word-spacing:3.985956px;}
.ws49{word-spacing:4.046076px;}
.ws7e{word-spacing:4.070124px;}
.ws36{word-spacing:4.334652px;}
.ws27{word-spacing:4.352688px;}
.ws113{word-spacing:4.430844px;}
.ws13c{word-spacing:4.442868px;}
.ws94{word-spacing:4.448880px;}
.ws48{word-spacing:4.478940px;}
.wsf0{word-spacing:4.551084px;}
.ws112{word-spacing:4.563108px;}
.ws98{word-spacing:4.587156px;}
.ws106{word-spacing:4.659300px;}
.ws19f{word-spacing:4.701384px;}
.ws1e6{word-spacing:4.707396px;}
.ws37{word-spacing:4.821624px;}
.ws9e{word-spacing:5.038056px;}
.ws182{word-spacing:5.056092px;}
.ws208{word-spacing:5.074128px;}
.wsd0{word-spacing:5.116212px;}
.wsa1{word-spacing:5.122224px;}
.ws46{word-spacing:5.134248px;}
.wsd8{word-spacing:5.158296px;}
.ws1f7{word-spacing:5.200380px;}
.wsd5{word-spacing:5.230440px;}
.ws9f{word-spacing:5.254488px;}
.ws45{word-spacing:5.260500px;}
.wsd1{word-spacing:5.392764px;}
.ws15a{word-spacing:5.573124px;}
.ws102{word-spacing:5.771520px;}
.ws5e{word-spacing:5.813604px;}
.ws5f{word-spacing:5.831640px;}
.ws60{word-spacing:5.861700px;}
.ws207{word-spacing:5.945868px;}
.ws62{word-spacing:5.951880px;}
.ws1f8{word-spacing:5.975928px;}
.wse9{word-spacing:6.138252px;}
.ws186{word-spacing:6.234444px;}
.ws185{word-spacing:6.312600px;}
.ws2c{word-spacing:6.330636px;}
.ws107{word-spacing:6.354684px;}
.ws5d{word-spacing:6.384744px;}
.wsb3{word-spacing:6.462900px;}
.ws1f5{word-spacing:6.541056px;}
.ws1f4{word-spacing:6.571116px;}
.ws40{word-spacing:6.583140px;}
.wsff{word-spacing:6.595164px;}
.ws1e9{word-spacing:6.601176px;}
.ws1c8{word-spacing:6.685344px;}
.ws3f{word-spacing:6.691356px;}
.ws1b8{word-spacing:6.859692px;}
.ws1d3{word-spacing:6.925824px;}
.wsa0{word-spacing:7.016004px;}
.ws1e8{word-spacing:7.112196px;}
.wsb1{word-spacing:7.184340px;}
.ws1d2{word-spacing:7.202376px;}
.wsbb{word-spacing:7.208388px;}
.ws33{word-spacing:7.226424px;}
.ws191{word-spacing:7.316604px;}
.ws15f{word-spacing:7.340652px;}
.ws7b{word-spacing:7.466904px;}
.wsa9{word-spacing:7.545060px;}
.wsa6{word-spacing:7.599168px;}
.wsbd{word-spacing:7.629228px;}
.wsbe{word-spacing:7.647264px;}
.ws160{word-spacing:7.665300px;}
.ws1a6{word-spacing:7.743456px;}
.ws194{word-spacing:7.779528px;}
.ws161{word-spacing:7.827624px;}
.ws41{word-spacing:7.917804px;}
.ws123{word-spacing:8.056080px;}
.ws13b{word-spacing:8.506980px;}
.ws15e{word-spacing:8.837640px;}
.wsd2{word-spacing:8.873712px;}
.ws18d{word-spacing:8.885736px;}
.ws18e{word-spacing:8.897760px;}
.ws190{word-spacing:8.993952px;}
.wsf2{word-spacing:9.011988px;}
.ws19a{word-spacing:9.024012px;}
.ws199{word-spacing:9.120204px;}
.ws146{word-spacing:9.354672px;}
.ws144{word-spacing:9.444852px;}
.ws108{word-spacing:9.847656px;}
.ws1e7{word-spacing:9.919800px;}
.ws2d{word-spacing:9.979920px;}
.ws8d{word-spacing:10.076112px;}
.ws137{word-spacing:10.082124px;}
.ws10d{word-spacing:10.094148px;}
.ws136{word-spacing:10.166292px;}
.ws84{word-spacing:10.178316px;}
.wsa8{word-spacing:10.214388px;}
.ws85{word-spacing:10.232424px;}
.ws1f3{word-spacing:10.238436px;}
.ws126{word-spacing:10.539036px;}
.wsa7{word-spacing:10.557072px;}
.wsd4{word-spacing:10.599156px;}
.ws18a{word-spacing:10.617192px;}
.wsd3{word-spacing:10.653264px;}
.ws1f2{word-spacing:10.671300px;}
.ws1e2{word-spacing:10.779516px;}
.ws202{word-spacing:11.236428px;}
.ws1e1{word-spacing:11.266488px;}
.ws53{word-spacing:11.410776px;}
.ws1bf{word-spacing:11.615184px;}
.ws56{word-spacing:11.699352px;}
.ws187{word-spacing:11.705364px;}
.ws52{word-spacing:11.753460px;}
.wsd7{word-spacing:11.789532px;}
.ws1e0{word-spacing:11.903760px;}
.ws4f{word-spacing:12.017988px;}
.ws19e{word-spacing:12.048048px;}
.ws1c6{word-spacing:12.114180px;}
.ws147{word-spacing:12.252456px;}
.ws1fe{word-spacing:12.438828px;}
.ws6f{word-spacing:12.444840px;}
.ws2a{word-spacing:12.474900px;}
.ws19d{word-spacing:12.480912px;}
.wsb6{word-spacing:12.667284px;}
.ws12f{word-spacing:12.823596px;}
.ws3b{word-spacing:12.985920px;}
.ws70{word-spacing:13.009968px;}
.ws7c{word-spacing:13.190328px;}
.ws130{word-spacing:13.238424px;}
.ws25{word-spacing:13.292532px;}
.ws1b4{word-spacing:13.442832px;}
.ws1b5{word-spacing:13.539024px;}
.ws203{word-spacing:13.551048px;}
.wsa2{word-spacing:13.683312px;}
.ws1c2{word-spacing:13.701348px;}
.wsa3{word-spacing:13.797540px;}
.wsb4{word-spacing:13.803552px;}
.wsed{word-spacing:14.494932px;}
.ws205{word-spacing:14.512968px;}
.wsdc{word-spacing:14.518980px;}
.ws47{word-spacing:14.627196px;}
.wsee{word-spacing:14.633208px;}
.ws12c{word-spacing:14.705352px;}
.wsac{word-spacing:14.759460px;}
.ws12a{word-spacing:14.885712px;}
.ws206{word-spacing:15.023988px;}
.ws12b{word-spacing:15.054048px;}
.wsdb{word-spacing:15.060060px;}
.ws132{word-spacing:15.216372px;}
.ws1c0{word-spacing:15.228396px;}
.ws16e{word-spacing:15.330600px;}
.ws14d{word-spacing:15.360660px;}
.ws133{word-spacing:15.432804px;}
.ws9c{word-spacing:15.480900px;}
.ws86{word-spacing:15.721380px;}
.ws162{word-spacing:15.733404px;}
.ws204{word-spacing:15.829596px;}
.ws156{word-spacing:15.943824px;}
.ws1c3{word-spacing:16.040016px;}
.ws1c4{word-spacing:16.046028px;}
.ws9d{word-spacing:16.052040px;}
.ws1c9{word-spacing:16.076088px;}
.ws104{word-spacing:16.184304px;}
.wsf5{word-spacing:16.214364px;}
.ws1b3{word-spacing:16.328592px;}
.ws189{word-spacing:16.340616px;}
.ws188{word-spacing:16.388712px;}
.ws1b2{word-spacing:16.394724px;}
.wsfb{word-spacing:16.496928px;}
.ws103{word-spacing:16.539012px;}
.ws1ef{word-spacing:16.641216px;}
.ws175{word-spacing:16.917768px;}
.ws1ee{word-spacing:16.929792px;}
.wsfd{word-spacing:17.735400px;}
.wsfc{word-spacing:18.090108px;}
.ws1c1{word-spacing:18.276480px;}
.ws10c{word-spacing:18.354636px;}
.ws1cd{word-spacing:19.256436px;}
.ws1d1{word-spacing:19.755432px;}
.wsaf{word-spacing:19.779480px;}
.ws127{word-spacing:20.001924px;}
.ws128{word-spacing:20.050020px;}
.ws9a{word-spacing:20.230380px;}
.ws9b{word-spacing:20.296512px;}
.ws1d0{word-spacing:20.446812px;}
.ws192{word-spacing:21.048012px;}
.wsab{word-spacing:21.366648px;}
.wsaa{word-spacing:21.438792px;}
.ws83{word-spacing:22.058028px;}
.ws172{word-spacing:22.707324px;}
.ws1bd{word-spacing:22.791492px;}
.wsb5{word-spacing:23.254416px;}
.ws7d{word-spacing:23.476860px;}
.ws1df{word-spacing:24.126156px;}
.ws173{word-spacing:24.138180px;}
.ws174{word-spacing:24.150204px;}
.ws1a0{word-spacing:24.222348px;}
.ws57{word-spacing:24.721344px;}
.ws23{word-spacing:24.835572px;}
.ws1a9{word-spacing:24.961824px;}
.ws11f{word-spacing:25.575048px;}
.ws201{word-spacing:25.731360px;}
.ws1f6{word-spacing:26.104104px;}
.ws200{word-spacing:26.116128px;}
.ws1b6{word-spacing:26.494884px;}
.ws1fb{word-spacing:26.645184px;}
.wsb2{word-spacing:26.651196px;}
.ws58{word-spacing:26.807508px;}
.ws120{word-spacing:26.837568px;}
.ws1dc{word-spacing:26.849592px;}
.ws1db{word-spacing:26.897688px;}
.ws1fa{word-spacing:27.041976px;}
.ws91{word-spacing:28.226340px;}
.ws97{word-spacing:28.460808px;}
.ws3a{word-spacing:28.526940px;}
.ws16c{word-spacing:28.641168px;}
.ws1b1{word-spacing:29.007900px;}
.ws2b{word-spacing:29.182248px;}
.ws1ba{word-spacing:29.518920px;}
.ws1bb{word-spacing:29.609100px;}
.ws165{word-spacing:29.729340px;}
.ws17b{word-spacing:32.290272px;}
.ws168{word-spacing:32.649372px;}
.ws16f{word-spacing:33.246360px;}
.ws1d7{word-spacing:33.360588px;}
.ws1d8{word-spacing:33.528924px;}
.ws90{word-spacing:33.667200px;}
.ws95{word-spacing:33.949764px;}
.wsad{word-spacing:35.861580px;}
.ws50{word-spacing:36.132120px;}
.ws51{word-spacing:36.144144px;}
.wsef{word-spacing:36.564984px;}
.ws19b{word-spacing:36.745344px;}
.ws145{word-spacing:39.090024px;}
.ws32{word-spacing:39.835512px;}
.ws124{word-spacing:42.601032px;}
.ws125{word-spacing:42.763356px;}
.wsf9{word-spacing:47.037888px;}
.ws121{word-spacing:52.935660px;}
.ws16a{word-spacing:54.468288px;}
.ws1d4{word-spacing:56.975724px;}
.wsc8{word-spacing:65.715300px;}
.ws1d5{word-spacing:71.488692px;}
.ws169{word-spacing:89.267472px;}
.ws17c{word-spacing:89.626572px;}
.wscd{word-spacing:93.686796px;}
.wscb{word-spacing:105.206724px;}
.wscc{word-spacing:105.565824px;}
.ws73{word-spacing:110.366782px;}
.wsca{word-spacing:117.449640px;}
.ws74{word-spacing:140.032117px;}
.wsc6{word-spacing:152.095608px;}
.ws1e5{word-spacing:196.099416px;}
.ws75{word-spacing:324.154307px;}
.ws8c{word-spacing:358.255080px;}
.ws17{word-spacing:521.647812px;}
.wse6{word-spacing:521.853696px;}
._1a{margin-left:-276.598630px;}
._1b{margin-left:-258.796681px;}
._14{margin-left:-240.767272px;}
._17{margin-left:-238.707609px;}
._10{margin-left:-190.116906px;}
._23{margin-left:-183.698202px;}
._d{margin-left:-172.584289px;}
._15{margin-left:-171.062385px;}
._13{margin-left:-158.329253px;}
._18{margin-left:-154.827825px;}
._16{margin-left:-140.792692px;}
._1c{margin-left:-139.711368px;}
._20{margin-left:-131.532030px;}
._11{margin-left:-110.915474px;}
._1d{margin-left:-105.145806px;}
._31{margin-left:-93.576237px;}
._12{margin-left:-92.078423px;}
._f{margin-left:-87.379888px;}
._c{margin-left:-82.792916px;}
._e{margin-left:-80.840556px;}
._30{margin-left:-57.239339px;}
._21{margin-left:-54.487744px;}
._22{margin-left:-47.402221px;}
._3b{margin-left:-24.060024px;}
._2f{margin-left:-15.323292px;}
._2b{margin-left:-11.946852px;}
._5{margin-left:-8.196048px;}
._6{margin-left:-7.056720px;}
._4{margin-left:-5.157504px;}
._3{margin-left:-3.351600px;}
._8{margin-left:-2.218428px;}
._1{margin-left:-1.173060px;}
._0{width:1.206576px;}
._a{width:2.514852px;}
._b{width:3.587688px;}
._27{width:4.668300px;}
._7{width:6.655284px;}
._29{width:11.156040px;}
._28{width:12.333888px;}
._36{width:13.980960px;}
._33{width:17.078796px;}
._3a{width:20.072380px;}
._35{width:21.842856px;}
._34{width:28.450296px;}
._24{width:34.562988px;}
._3d{width:40.551156px;}
._2e{width:45.017856px;}
._43{width:52.577028px;}
._42{width:57.259692px;}
._1e{width:60.120000px;}
._2d{width:61.220196px;}
._1f{width:62.999748px;}
._44{width:64.460844px;}
._2c{width:66.961656px;}
._38{width:69.143508px;}
._40{width:70.220808px;}
._9{width:71.284284px;}
._37{width:76.197816px;}
._41{width:77.844888px;}
._2a{width:80.639496px;}
._3f{width:93.275028px;}
._3e{width:100.476180px;}
._3c{width:101.582208px;}
._19{width:109.797156px;}
._39{width:126.775044px;}
._25{width:138.507264px;}
._32{width:159.962292px;}
._26{width:171.171000px;}
._2{width:509.357016px;}
.fc4{color:rgb(0,0,128);}
.fc3{color:rgb(0,71,255);}
.fc2{color:rgb(131,70,175);}
.fc1{color:rgb(0,164,154);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:29.761800px;}
.fse{font-size:29.830800px;}
.fsd{font-size:29.880000px;}
.fs6{font-size:38.880000px;}
.fsa{font-size:42.567000px;}
.fs7{font-size:42.909000px;}
.fs0{font-size:47.880000px;}
.fs12{font-size:51.021600px;}
.fsf{font-size:51.138600px;}
.fs13{font-size:53.920950px;}
.fs10{font-size:54.044470px;}
.fs4{font-size:60.120000px;}
.fs3{font-size:72.000000px;}
.fsb{font-size:72.971400px;}
.fs9{font-size:73.559400px;}
.fsc{font-size:77.121573px;}
.fs8{font-size:77.742590px;}
.fs5{font-size:83.880000px;}
.fs2{font-size:87.120000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y45{bottom:3.960450px;}
.y2{bottom:55.920450px;}
.y55{bottom:110.820459px;}
.y1da{bottom:111.540600px;}
.y1af{bottom:111.630630px;}
.y18c{bottom:111.719856px;}
.ye1{bottom:112.621602px;}
.y104{bottom:112.710423px;}
.yb4{bottom:115.140477px;}
.y20e{bottom:116.041068px;}
.y14f{bottom:119.370459px;}
.y2a{bottom:121.351269px;}
.y54{bottom:128.100789px;}
.y1ae{bottom:128.910621px;}
.ye0{bottom:129.901593px;}
.y18b{bottom:131.339883px;}
.y116{bottom:132.058272px;}
.y103{bottom:132.330450px;}
.yb3{bottom:132.420468px;}
.y20d{bottom:133.321059px;}
.y14e{bottom:136.650618px;}
.y29{bottom:138.631260px;}
.y8a{bottom:144.212448px;}
.y53{bottom:145.290468px;}
.y1ad{bottom:147.000729px;}
.ydf{bottom:147.181584px;}
.yb2{bottom:149.700459px;}
.y20c{bottom:150.510870px;}
.y1d9{bottom:151.320450px;}
.y115{bottom:151.948821px;}
.y14d{bottom:153.930609px;}
.y28{bottom:155.821071px;}
.y89{bottom:161.492439px;}
.y52{bottom:162.570459px;}
.yde{bottom:164.371395px;}
.y1ac{bottom:164.461080px;}
.yb1{bottom:166.980855px;}
.y20b{bottom:167.790861px;}
.y14c{bottom:171.210639px;}
.y27{bottom:173.101062px;}
.y88{bottom:178.772430px;}
.y51{bottom:179.850789px;}
.ydd{bottom:181.651386px;}
.y1ab{bottom:181.741071px;}
.yb0{bottom:184.170666px;}
.y20a{bottom:185.070852px;}
.y14b{bottom:188.400675px;}
.y26{bottom:190.381053px;}
.y87{bottom:196.052421px;}
.y50{bottom:197.040780px;}
.y1aa{bottom:198.930882px;}
.ydc{bottom:198.931377px;}
.yaf{bottom:201.450657px;}
.y209{bottom:202.260663px;}
.y14a{bottom:205.680666px;}
.y25{bottom:207.570864px;}
.ydb{bottom:216.121188px;}
.y1a9{bottom:216.210873px;}
.y1d8{bottom:216.660468px;}
.yae{bottom:218.640468px;}
.y208{bottom:219.540654px;}
.y86{bottom:221.702619px;}
.y149{bottom:222.960657px;}
.y49{bottom:223.590450px;}
.y24{bottom:224.850855px;}
.y4c{bottom:228.180450px;}
.yda{bottom:233.401179px;}
.y1a8{bottom:233.490864px;}
.y1d7{bottom:233.940459px;}
.yad{bottom:235.920459px;}
.y4b{bottom:237.900601px;}
.y85{bottom:238.982610px;}
.y148{bottom:240.150468px;}
.y48{bottom:242.041125px;}
.y23{bottom:242.130846px;}
.y4f{bottom:242.491087px;}
.y207{bottom:245.190852px;}
.y1a7{bottom:250.680675px;}
.yd9{bottom:250.681170px;}
.y1d6{bottom:251.220450px;}
.y4a{bottom:252.300862px;}
.y4d{bottom:253.020000px;}
.yac{bottom:253.200459px;}
.y84{bottom:256.262601px;}
.y4e{bottom:256.980450px;}
.y147{bottom:257.430459px;}
.y22{bottom:259.320657px;}
.y206{bottom:262.470843px;}
.yd8{bottom:267.870981px;}
.y1a6{bottom:267.960666px;}
.yab{bottom:270.390270px;}
.y83{bottom:273.542592px;}
.y146{bottom:274.710450px;}
.y21{bottom:276.600648px;}
.y205{bottom:279.750834px;}
.yd7{bottom:285.150972px;}
.y1a5{bottom:285.240657px;}
.y40{bottom:287.130450px;}
.yaa{bottom:287.670261px;}
.y82{bottom:290.732403px;}
.y1d5{bottom:291.000450px;}
.y43{bottom:291.720450px;}
.y20{bottom:293.880639px;}
.y204{bottom:297.030825px;}
.y145{bottom:299.820450px;}
.y42{bottom:301.440602px;}
.y1a4{bottom:302.430468px;}
.yd6{bottom:302.430963px;}
.ya9{bottom:304.950252px;}
.y3f{bottom:305.580564px;}
.y47{bottom:306.031087px;}
.y81{bottom:308.012394px;}
.y1f{bottom:311.070450px;}
.y203{bottom:314.220636px;}
.y41{bottom:315.840862px;}
.y44{bottom:316.560000px;}
.y144{bottom:317.640450px;}
.yd5{bottom:319.620774px;}
.y1a3{bottom:319.710459px;}
.y46{bottom:320.520450px;}
.y80{bottom:325.202205px;}
.y114{bottom:327.178848px;}
.y13e{bottom:329.340450px;}
.ya8{bottom:330.600450px;}
.y202{bottom:331.500627px;}
.y1a2{bottom:336.990450px;}
.y143{bottom:338.070450px;}
.y7f{bottom:342.482196px;}
.y18a{bottom:344.190423px;}
.yd4{bottom:345.361152px;}
.y113{bottom:347.069397px;}
.y3e{bottom:349.950627px;}
.y1e{bottom:350.850450px;}
.ya7{bottom:355.710600px;}
.y1d4{bottom:356.341476px;}
.y201{bottom:357.150825px;}
.y142{bottom:358.410450px;}
.y7e{bottom:359.762187px;}
.y102{bottom:360.031014px;}
.yd3{bottom:362.641143px;}
.y189{bottom:363.810450px;}
.y3d{bottom:367.230618px;}
.y1d3{bottom:373.621467px;}
.y200{bottom:374.430816px;}
.y1a1{bottom:374.790918px;}
.y7d{bottom:376.951998px;}
.y101{bottom:377.311005px;}
.y141{bottom:378.840450px;}
.yd2{bottom:379.830954px;}
.y3c{bottom:384.510609px;}
.ya6{bottom:385.500600px;}
.y1d2{bottom:390.811278px;}
.y1ff{bottom:391.710807px;}
.y7c{bottom:394.231989px;}
.y1a0{bottom:394.410945px;}
.y100{bottom:394.590996px;}
.yd1{bottom:397.110945px;}
.y140{bottom:399.270600px;}
.y3b{bottom:401.790891px;}
.y1d1{bottom:408.091269px;}
.y1fe{bottom:408.990798px;}
.y7b{bottom:411.511980px;}
.yff{bottom:411.780807px;}
.yd0{bottom:414.390936px;}
.ya5{bottom:415.380450px;}
.y1d{bottom:416.190450px;}
.y3a{bottom:418.980702px;}
.y13f{bottom:419.250600px;}
.y1d0{bottom:425.281080px;}
.y1fd{bottom:426.180609px;}
.y7a{bottom:428.701791px;}
.yfe{bottom:429.060798px;}
.ycf{bottom:431.580747px;}
.y39{bottom:436.260693px;}
.y13d{bottom:440.040600px;}
.y1cf{bottom:442.561071px;}
.y1fc{bottom:443.460600px;}
.ya4{bottom:445.260450px;}
.y79{bottom:445.981782px;}
.yfd{bottom:446.340789px;}
.yce{bottom:448.860738px;}
.y137{bottom:451.740450px;}
.y1c{bottom:455.970450px;}
.y1ce{bottom:459.841062px;}
.y13c{bottom:460.470450px;}
.y38{bottom:461.910891px;}
.y78{bottom:463.261773px;}
.yfc{bottom:463.530600px;}
.ycd{bottom:466.140729px;}
.ya3{bottom:475.050450px;}
.y1cd{bottom:477.030873px;}
.y37{bottom:479.190882px;}
.y77{bottom:480.451584px;}
.y13b{bottom:480.810450px;}
.y1fb{bottom:483.240450px;}
.ycc{bottom:483.330540px;}
.yfb{bottom:494.130450px;}
.y1cc{bottom:494.310864px;}
.y36{bottom:496.470873px;}
.y76{bottom:497.731575px;}
.ycb{bottom:500.610531px;}
.y13a{bottom:501.240450px;}
.ya2{bottom:504.930600px;}
.y1cb{bottom:511.590855px;}
.y35{bottom:513.750864px;}
.y75{bottom:515.011566px;}
.y112{bottom:517.799901px;}
.y1b{bottom:521.310720px;}
.y139{bottom:521.670450px;}
.yca{bottom:526.260729px;}
.y1ca{bottom:528.780666px;}
.y34{bottom:530.940675px;}
.y74{bottom:532.201377px;}
.ya1{bottom:534.810450px;}
.yfa{bottom:535.440864px;}
.y111{bottom:537.690450px;}
.y1a{bottom:538.590711px;}
.y138{bottom:541.650450px;}
.yc9{bottom:543.540720px;}
.y1c9{bottom:546.060657px;}
.y33{bottom:548.220666px;}
.y1fa{bottom:548.579934px;}
.y73{bottom:549.481368px;}
.yf9{bottom:552.720855px;}
.y19{bottom:555.870702px;}
.y136{bottom:559.470450px;}
.yc8{bottom:560.820711px;}
.y188{bottom:562.710450px;}
.y1c8{bottom:563.340648px;}
.ya0{bottom:564.600450px;}
.y32{bottom:565.500657px;}
.y1f9{bottom:565.859925px;}
.y72{bottom:566.761359px;}
.y12b{bottom:569.370450px;}
.yf8{bottom:570.000846px;}
.y12d{bottom:572.610450px;}
.y18{bottom:573.150693px;}
.y133{bottom:573.600450px;}
.y134{bottom:573.960450px;}
.y12a{bottom:574.140099px;}
.y132{bottom:574.320450px;}
.y135{bottom:574.680450px;}
.yc7{bottom:578.100702px;}
.y187{bottom:580.440450px;}
.y1c7{bottom:580.530459px;}
.y131{bottom:580.710450px;}
.y130{bottom:581.430450px;}
.y31{bottom:582.690468px;}
.y1f8{bottom:583.139916px;}
.y71{bottom:583.951170px;}
.yf7{bottom:587.190657px;}
.y129{bottom:588.000162px;}
.y12c{bottom:588.990913px;}
.y17{bottom:590.340504px;}
.y9f{bottom:590.970450px;}
.y12e{bottom:592.140450px;}
.y186{bottom:594.930450px;}
.yc6{bottom:595.290513px;}
.y1c6{bottom:597.810450px;}
.y181{bottom:599.970450px;}
.y30{bottom:599.970459px;}
.y70{bottom:601.231161px;}
.y9e{bottom:602.401107px;}
.y12f{bottom:603.030450px;}
.yf6{bottom:604.470648px;}
.y16{bottom:607.620495px;}
.y1f7{bottom:608.790114px;}
.y185{bottom:609.420450px;}
.y19f{bottom:609.600423px;}
.yc5{bottom:612.570504px;}
.y2f{bottom:617.250450px;}
.y6f{bottom:618.511152px;}
.yf5{bottom:621.750639px;}
.y184{bottom:623.910450px;}
.y15{bottom:624.900486px;}
.y128{bottom:625.710450px;}
.y19e{bottom:629.220450px;}
.y1f6{bottom:634.530492px;}
.y6e{bottom:635.700963px;}
.y1c5{bottom:637.590450px;}
.yc4{bottom:638.220702px;}
.y183{bottom:638.400450px;}
.yf4{bottom:638.941080px;}
.y9d{bottom:640.920567px;}
.y14{bottom:642.090297px;}
.y127{bottom:648.480666px;}
.y1f5{bottom:651.810483px;}
.y182{bottom:652.440450px;}
.y6d{bottom:652.980954px;}
.y2e{bottom:655.050423px;}
.yc3{bottom:655.500693px;}
.yf3{bottom:656.221071px;}
.y13{bottom:659.370288px;}
.y126{bottom:665.760657px;}
.y180{bottom:667.290450px;}
.y1f4{bottom:669.090474px;}
.y6c{bottom:670.170765px;}
.yc2{bottom:672.780684px;}
.yf2{bottom:673.501062px;}
.y2d{bottom:674.670450px;}
.y9c{bottom:675.930423px;}
.y12{bottom:676.650279px;}
.y17f{bottom:681.780450px;}
.y125{bottom:683.040648px;}
.y1f3{bottom:686.280285px;}
.y17a{bottom:686.820450px;}
.y6b{bottom:687.450756px;}
.yc1{bottom:690.060675px;}
.yf1{bottom:690.690873px;}
.y11{bottom:693.840090px;}
.y9b{bottom:695.550450px;}
.y17e{bottom:696.270450px;}
.y110{bottom:696.630414px;}
.y124{bottom:700.320639px;}
.y1c4{bottom:702.930675px;}
.y1f2{bottom:703.560276px;}
.yf0{bottom:707.970864px;}
.y17d{bottom:710.760450px;}
.y10{bottom:711.120081px;}
.y10f{bottom:713.910405px;}
.y66{bottom:715.260450px;}
.yc0{bottom:715.710873px;}
.y123{bottom:717.511023px;}
.y1c3{bottom:720.210666px;}
.y1f1{bottom:720.840267px;}
.y17c{bottom:725.250450px;}
.yef{bottom:725.250855px;}
.yf{bottom:728.400072px;}
.y68{bottom:729.660866px;}
.y10e{bottom:731.100216px;}
.ybf{bottom:732.990864px;}
.y65{bottom:733.891107px;}
.y69{bottom:734.160450px;}
.y122{bottom:734.791014px;}
.y1c2{bottom:737.490657px;}
.y17b{bottom:739.290450px;}
.yee{bottom:742.440666px;}
.y67{bottom:743.250381px;}
.ye{bottom:745.589883px;}
.y1f0{bottom:746.490465px;}
.y6a{bottom:747.750450px;}
.y10d{bottom:748.380207px;}
.ybe{bottom:750.270855px;}
.y121{bottom:752.071005px;}
.y179{bottom:754.140450px;}
.y1c1{bottom:754.680468px;}
.yed{bottom:759.720657px;}
.yd{bottom:762.869874px;}
.y1ef{bottom:763.770456px;}
.y10c{bottom:765.570018px;}
.ybd{bottom:767.460666px;}
.y178{bottom:768.630450px;}
.y120{bottom:769.260816px;}
.y1c0{bottom:771.960459px;}
.y173{bottom:773.670450px;}
.yec{bottom:777.000648px;}
.y64{bottom:777.900459px;}
.yc{bottom:780.149865px;}
.y1ee{bottom:781.050447px;}
.y177{bottom:783.120450px;}
.y10b{bottom:783.750306px;}
.ybc{bottom:784.740657px;}
.y11f{bottom:786.540807px;}
.y1bf{bottom:789.241503px;}
.yeb{bottom:794.190459px;}
.y63{bottom:795.180666px;}
.yb{bottom:797.339676px;}
.y2c{bottom:797.340549px;}
.y176{bottom:797.610600px;}
.y1ed{bottom:798.240258px;}
.y10a{bottom:801.210657px;}
.ybb{bottom:802.020648px;}
.y11e{bottom:803.820798px;}
.y1be{bottom:806.431314px;}
.yea{bottom:811.470450px;}
.y175{bottom:812.100450px;}
.y62{bottom:812.460657px;}
.ya{bottom:814.619667px;}
.y2b{bottom:814.620540px;}
.y1ec{bottom:815.520249px;}
.y109{bottom:818.400468px;}
.yba{bottom:819.210459px;}
.y11d{bottom:821.010609px;}
.y1bd{bottom:823.711305px;}
.y174{bottom:826.140450px;}
.y61{bottom:829.650468px;}
.y19d{bottom:832.170657px;}
.y1eb{bottom:832.800240px;}
.y108{bottom:835.680459px;}
.yb9{bottom:836.490450px;}
.y11c{bottom:838.290600px;}
.y1bc{bottom:840.901116px;}
.y172{bottom:840.990450px;}
.y60{bottom:846.930459px;}
.ye9{bottom:849.360423px;}
.y19c{bottom:849.450648px;}
.y107{bottom:852.960450px;}
.y171{bottom:855.480450px;}
.y9a{bottom:855.751296px;}
.y1bb{bottom:858.181107px;}
.y1ea{bottom:858.450438px;}
.y16c{bottom:860.520450px;}
.y5f{bottom:864.210855px;}
.y19b{bottom:866.640459px;}
.yb8{bottom:867.090450px;}
.ye8{bottom:868.980450px;}
.y170{bottom:869.970450px;}
.y99{bottom:873.031287px;}
.y9{bottom:874.380450px;}
.y1ba{bottom:875.461098px;}
.y1e9{bottom:875.730429px;}
.y11b{bottom:878.071062px;}
.y5e{bottom:881.400666px;}
.y19a{bottom:883.920657px;}
.y16f{bottom:884.460450px;}
.y98{bottom:890.311278px;}
.y106{bottom:890.760918px;}
.y1b9{bottom:892.650909px;}
.y1e8{bottom:893.010420px;}
.y5d{bottom:898.680657px;}
.y16e{bottom:898.950450px;}
.y199{bottom:901.200648px;}
.y11a{bottom:902.190756px;}
.y97{bottom:907.501089px;}
.yb7{bottom:909.660450px;}
.y1b8{bottom:909.930900px;}
.y1e7{bottom:910.200231px;}
.y105{bottom:910.380945px;}
.y16d{bottom:912.990450px;}
.y5c{bottom:915.960648px;}
.y198{bottom:918.390459px;}
.y8{bottom:919.110072px;}
.y96{bottom:924.781080px;}
.y119{bottom:926.310450px;}
.y1b7{bottom:927.210891px;}
.y1e6{bottom:927.480222px;}
.y16b{bottom:927.840450px;}
.y5b{bottom:933.150459px;}
.y197{bottom:935.671062px;}
.y95{bottom:942.061071px;}
.y16a{bottom:942.330450px;}
.y165{bottom:947.370450px;}
.y5a{bottom:950.430450px;}
.y1b6{bottom:952.861089px;}
.y196{bottom:952.951053px;}
.y1e5{bottom:953.220600px;}
.y169{bottom:956.820450px;}
.y7{bottom:957.630459px;}
.y94{bottom:959.250882px;}
.y195{bottom:970.140864px;}
.y1b5{bottom:970.141080px;}
.y1e4{bottom:970.500591px;}
.y168{bottom:971.310450px;}
.yb6{bottom:974.459946px;}
.y6{bottom:974.910450px;}
.y93{bottom:976.530873px;}
.y167{bottom:985.800450px;}
.y194{bottom:987.420855px;}
.y1b4{bottom:987.421071px;}
.y1e3{bottom:987.690402px;}
.y59{bottom:988.320423px;}
.y118{bottom:991.738884px;}
.y92{bottom:993.810864px;}
.yb5{bottom:994.079973px;}
.y166{bottom:999.840450px;}
.y193{bottom:1004.610666px;}
.y1b3{bottom:1004.610882px;}
.y1e2{bottom:1004.970393px;}
.y58{bottom:1007.940450px;}
.y91{bottom:1011.000675px;}
.y117{bottom:1011.538461px;}
.y5{bottom:1013.970450px;}
.y164{bottom:1014.690450px;}
.y192{bottom:1021.890657px;}
.y1b2{bottom:1021.890873px;}
.y1e1{bottom:1022.160204px;}
.y90{bottom:1028.280666px;}
.y163{bottom:1029.180450px;}
.y15e{bottom:1034.220450px;}
.y191{bottom:1039.170648px;}
.y1b1{bottom:1039.170864px;}
.y1e0{bottom:1039.440195px;}
.y162{bottom:1043.670450px;}
.y8f{bottom:1045.560657px;}
.ye7{bottom:1047.900927px;}
.y190{bottom:1056.360459px;}
.y1b0{bottom:1056.360675px;}
.y161{bottom:1058.160450px;}
.y8e{bottom:1062.750468px;}
.y1df{bottom:1065.180573px;}
.ye6{bottom:1065.180918px;}
.y160{bottom:1072.650450px;}
.y18f{bottom:1073.640666px;}
.y4{bottom:1079.220450px;}
.y8d{bottom:1080.030459px;}
.y1de{bottom:1082.460564px;}
.ye5{bottom:1082.460909px;}
.y15f{bottom:1086.690450px;}
.y18e{bottom:1090.920657px;}
.y8c{bottom:1097.310450px;}
.y1dd{bottom:1099.650375px;}
.ye4{bottom:1099.650720px;}
.y15d{bottom:1101.540450px;}
.y18d{bottom:1108.110468px;}
.y3{bottom:1110.270450px;}
.y152{bottom:1111.530450px;}
.y154{bottom:1114.680450px;}
.y15a{bottom:1115.670450px;}
.y15b{bottom:1116.030450px;}
.y151{bottom:1116.299658px;}
.y159{bottom:1116.390450px;}
.y15c{bottom:1116.750450px;}
.y1dc{bottom:1116.930366px;}
.y158{bottom:1122.780450px;}
.y157{bottom:1123.500450px;}
.y57{bottom:1125.390459px;}
.ye3{bottom:1125.391098px;}
.y150{bottom:1130.069946px;}
.y153{bottom:1131.060143px;}
.y155{bottom:1134.210450px;}
.y8b{bottom:1137.090450px;}
.y1db{bottom:1142.580564px;}
.y56{bottom:1142.670450px;}
.ye2{bottom:1142.671089px;}
.y156{bottom:1145.100450px;}
.y1{bottom:1190.100450px;}
.hc{height:21.690000px;}
.h1f{height:24.820876px;}
.h18{height:24.878421px;}
.h1c{height:26.626465px;}
.h1b{height:32.426543px;}
.h1{height:34.881328px;}
.h11{height:35.500213px;}
.ha{height:35.785436px;}
.h21{height:35.938524px;}
.h1a{height:36.020850px;}
.h8{height:39.931172px;}
.h7{height:40.716035px;}
.h9{height:42.666504px;}
.h1e{height:44.107692px;}
.h20{height:44.893029px;}
.h19{height:44.995975px;}
.hf{height:49.027627px;}
.h15{height:49.059141px;}
.h4{height:50.139141px;}
.h14{height:51.401829px;}
.hb{height:51.815740px;}
.h10{height:52.897691px;}
.h5{height:52.898555px;}
.h23{height:53.573730px;}
.h3{height:63.351562px;}
.h17{height:64.160156px;}
.h13{height:64.206281px;}
.hd{height:64.723652px;}
.h1d{height:72.184524px;}
.h22{height:72.548412px;}
.h6{height:74.746582px;}
.h12{height:78.855343px;}
.h16{height:88.023876px;}
.h2{height:96.240234px;}
.he{height:106.985079px;}
.h0{height:1263.000000px;}
.w3{width:11.610000px;}
.w2{width:13.230000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:85.050000px;}
.x3{left:89.550000px;}
.x42{left:96.479016px;}
.x41{left:97.559460px;}
.x2{left:115.110000px;}
.x53{left:118.440000px;}
.x5{left:137.160000px;}
.x46{left:145.170000px;}
.x54{left:150.030000px;}
.x45{left:153.540000px;}
.x43{left:164.160000px;}
.x44{left:169.470554px;}
.x20{left:190.170507px;}
.x52{left:192.150000px;}
.x48{left:196.740000px;}
.x1f{left:199.259587px;}
.x49{left:205.470000px;}
.x47{left:220.140000px;}
.x4a{left:224.460000px;}
.x4b{left:232.470000px;}
.x7{left:247.678596px;}
.x22{left:253.890000px;}
.x4c{left:257.850000px;}
.x21{left:266.940000px;}
.x4{left:286.200000px;}
.x1d{left:293.670000px;}
.x1e{left:301.139444px;}
.x4d{left:311.670000px;}
.x6{left:333.899694px;}
.x4e{left:336.330000px;}
.x8{left:352.260000px;}
.x4f{left:365.670000px;}
.x50{left:385.830000px;}
.x51{left:423.990000px;}
.x29{left:428.129861px;}
.x1c{left:429.390000px;}
.x2b{left:430.651970px;}
.x2a{left:433.801172px;}
.x27{left:436.049528px;}
.x9{left:459.179766px;}
.x2e{left:470.609016px;}
.x26{left:472.230000px;}
.x24{left:481.139523px;}
.x55{left:491.130540px;}
.x3f{left:492.570000px;}
.x1a{left:493.921996px;}
.x2d{left:501.750913px;}
.x11{left:502.830213px;}
.x31{left:519.210000px;}
.x40{left:524.160000px;}
.x15{left:527.128604px;}
.xd{left:536.128690px;}
.x2f{left:538.290000px;}
.x30{left:543.600090px;}
.x1b{left:546.754196px;}
.x12{left:555.840795px;}
.x18{left:561.690000px;}
.x33{left:564.840000px;}
.x3e{left:566.280000px;}
.xf{left:570.870000px;}
.x25{left:576.630000px;}
.x34{left:579.600000px;}
.x32{left:594.270000px;}
.x35{left:598.500000px;}
.x36{left:606.510000px;}
.x17{left:619.110000px;}
.x37{left:631.890000px;}
.xe{left:645.390000px;}
.x16{left:647.280000px;}
.xb{left:656.010000px;}
.x13{left:657.720000px;}
.x38{left:660.420000px;}
.x39{left:685.800000px;}
.x3a{left:710.460000px;}
.x10{left:717.300000px;}
.x19{left:729.450000px;}
.xc{left:732.510311px;}
.x3b{left:739.800000px;}
.x14{left:744.480925px;}
.x3c{left:759.960000px;}
.x23{left:763.920000px;}
.x3d{left:798.120000px;}
.x28{left:803.339850px;}
.x2c{left:806.671614px;}
.xa{left:807.930000px;}
@media print{
.v5{vertical-align:-50.878903pt;}
.v1{vertical-align:-5.441568pt;}
.v3{vertical-align:-1.602266pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.281056pt;}
.v4{vertical-align:15.998521pt;}
.v8{vertical-align:26.238240pt;}
.v7{vertical-align:37.757664pt;}
.v6{vertical-align:40.321344pt;}
.v2{vertical-align:51.517734pt;}
.ls31{letter-spacing:-5.953216pt;}
.ls51{letter-spacing:-2.239488pt;}
.lsa4{letter-spacing:-0.583358pt;}
.lsae{letter-spacing:-0.537035pt;}
.lsa5{letter-spacing:-0.453428pt;}
.lsb6{letter-spacing:-0.443552pt;}
.lsaf{letter-spacing:-0.423279pt;}
.ls6a{letter-spacing:-0.395456pt;}
.ls48{letter-spacing:-0.363392pt;}
.ls57{letter-spacing:-0.336672pt;}
.ls72{letter-spacing:-0.315296pt;}
.ls52{letter-spacing:-0.300672pt;}
.ls2b{letter-spacing:-0.294272pt;}
.ls58{letter-spacing:-0.283232pt;}
.lsb7{letter-spacing:-0.277888pt;}
.lsa3{letter-spacing:-0.251168pt;}
.ls8c{letter-spacing:-0.245824pt;}
.ls34{letter-spacing:-0.240480pt;}
.ls75{letter-spacing:-0.235136pt;}
.ls55{letter-spacing:-0.229792pt;}
.ls50{letter-spacing:-0.219104pt;}
.ls77{letter-spacing:-0.187040pt;}
.lsb5{letter-spacing:-0.176352pt;}
.ls8a{letter-spacing:-0.171008pt;}
.ls43{letter-spacing:-0.165664pt;}
.ls71{letter-spacing:-0.160320pt;}
.ls4d{letter-spacing:-0.154976pt;}
.ls3a{letter-spacing:-0.149632pt;}
.ls49{letter-spacing:-0.144288pt;}
.ls8d{letter-spacing:-0.138944pt;}
.ls38{letter-spacing:-0.133600pt;}
.ls35{letter-spacing:-0.128256pt;}
.ls2a{letter-spacing:-0.123904pt;}
.ls37{letter-spacing:-0.122912pt;}
.ls44{letter-spacing:-0.117568pt;}
.ls46{letter-spacing:-0.112224pt;}
.ls2c{letter-spacing:-0.108416pt;}
.ls39{letter-spacing:-0.106880pt;}
.ls30{letter-spacing:-0.101536pt;}
.ls54{letter-spacing:-0.096192pt;}
.ls4a{letter-spacing:-0.090848pt;}
.ls4c{letter-spacing:-0.085504pt;}
.ls73{letter-spacing:-0.080864pt;}
.ls4b{letter-spacing:-0.080160pt;}
.ls29{letter-spacing:-0.077440pt;}
.ls6d{letter-spacing:-0.074816pt;}
.ls2f{letter-spacing:-0.069472pt;}
.ls76{letter-spacing:-0.064128pt;}
.ls45{letter-spacing:-0.058784pt;}
.ls6b{letter-spacing:-0.053440pt;}
.ls3f{letter-spacing:-0.048096pt;}
.ls6c{letter-spacing:-0.042752pt;}
.ls40{letter-spacing:-0.037408pt;}
.ls33{letter-spacing:-0.032064pt;}
.ls24{letter-spacing:-0.030976pt;}
.lsa8{letter-spacing:-0.029792pt;}
.ls42{letter-spacing:-0.026720pt;}
.ls8b{letter-spacing:-0.021376pt;}
.ls2d{letter-spacing:-0.019200pt;}
.ls74{letter-spacing:-0.017024pt;}
.ls3b{letter-spacing:-0.016032pt;}
.ls27{letter-spacing:-0.015488pt;}
.ls36{letter-spacing:-0.010688pt;}
.ls56{letter-spacing:-0.010368pt;}
.ls3d{letter-spacing:-0.005344pt;}
.ls25{letter-spacing:0.000000pt;}
.lsa0{letter-spacing:0.002254pt;}
.ls1a{letter-spacing:0.003456pt;}
.lsa2{letter-spacing:0.003468pt;}
.ls9e{letter-spacing:0.003944pt;}
.ls5{letter-spacing:0.004256pt;}
.ls13{letter-spacing:0.005344pt;}
.ls68{letter-spacing:0.006912pt;}
.ls62{letter-spacing:0.007616pt;}
.ls4{letter-spacing:0.008512pt;}
.lsa1{letter-spacing:0.010368pt;}
.ls5a{letter-spacing:0.010688pt;}
.ls7b{letter-spacing:0.012768pt;}
.ls2e{letter-spacing:0.012800pt;}
.ls9c{letter-spacing:0.015936pt;}
.ls19{letter-spacing:0.016032pt;}
.ls1{letter-spacing:0.017024pt;}
.ls84{letter-spacing:0.017699pt;}
.ls7f{letter-spacing:0.019200pt;}
.ls0{letter-spacing:0.021280pt;}
.lsd{letter-spacing:0.021376pt;}
.ls63{letter-spacing:0.023680pt;}
.ls6{letter-spacing:0.025536pt;}
.lsa6{letter-spacing:0.026560pt;}
.ls93{letter-spacing:0.026720pt;}
.ls59{letter-spacing:0.029792pt;}
.ls18{letter-spacing:0.032064pt;}
.ls98{letter-spacing:0.034048pt;}
.lsb4{letter-spacing:0.037408pt;}
.ls79{letter-spacing:0.038304pt;}
.ls95{letter-spacing:0.042560pt;}
.ls6f{letter-spacing:0.042752pt;}
.ls70{letter-spacing:0.044736pt;}
.ls26{letter-spacing:0.046464pt;}
.ls53{letter-spacing:0.048096pt;}
.lsad{letter-spacing:0.051072pt;}
.ls11{letter-spacing:0.052192pt;}
.ls17{letter-spacing:0.053440pt;}
.ls23{letter-spacing:0.055328pt;}
.lsa7{letter-spacing:0.055776pt;}
.lse{letter-spacing:0.058784pt;}
.ls7{letter-spacing:0.059584pt;}
.ls3c{letter-spacing:0.059648pt;}
.ls9{letter-spacing:0.061952pt;}
.ls8e{letter-spacing:0.063840pt;}
.lsa{letter-spacing:0.064000pt;}
.ls5b{letter-spacing:0.064128pt;}
.ls21{letter-spacing:0.066443pt;}
.lsb2{letter-spacing:0.067104pt;}
.ls65{letter-spacing:0.068096pt;}
.ls12{letter-spacing:0.069472pt;}
.ls3{letter-spacing:0.072352pt;}
.lsf{letter-spacing:0.074816pt;}
.ls78{letter-spacing:0.076608pt;}
.ls28{letter-spacing:0.077440pt;}
.ls14{letter-spacing:0.080160pt;}
.ls16{letter-spacing:0.080864pt;}
.ls92{letter-spacing:0.082016pt;}
.ls5f{letter-spacing:0.085120pt;}
.lsc{letter-spacing:0.085504pt;}
.ls8f{letter-spacing:0.089376pt;}
.ls91{letter-spacing:0.089472pt;}
.ls1b{letter-spacing:0.090848pt;}
.ls5c{letter-spacing:0.096192pt;}
.ls69{letter-spacing:0.101536pt;}
.ls2{letter-spacing:0.102144pt;}
.lsb1{letter-spacing:0.103296pt;}
.ls7a{letter-spacing:0.106400pt;}
.ls32{letter-spacing:0.106880pt;}
.ls4e{letter-spacing:0.112224pt;}
.ls82{letter-spacing:0.114912pt;}
.ls60{letter-spacing:0.115520pt;}
.ls41{letter-spacing:0.117568pt;}
.ls67{letter-spacing:0.119168pt;}
.lsb{letter-spacing:0.122912pt;}
.ls66{letter-spacing:0.123424pt;}
.ls9d{letter-spacing:0.127680pt;}
.ls8{letter-spacing:0.128000pt;}
.ls81{letter-spacing:0.128256pt;}
.ls96{letter-spacing:0.129930pt;}
.lsac{letter-spacing:0.131936pt;}
.ls86{letter-spacing:0.138944pt;}
.ls6e{letter-spacing:0.144288pt;}
.ls22{letter-spacing:0.144704pt;}
.ls87{letter-spacing:0.148960pt;}
.ls3e{letter-spacing:0.156576pt;}
.ls5d{letter-spacing:0.160320pt;}
.ls20{letter-spacing:0.160672pt;}
.lsa9{letter-spacing:0.161375pt;}
.ls47{letter-spacing:0.161728pt;}
.lsb0{letter-spacing:0.166666pt;}
.ls88{letter-spacing:0.170240pt;}
.ls80{letter-spacing:0.171008pt;}
.ls89{letter-spacing:0.171488pt;}
.ls85{letter-spacing:0.171588pt;}
.ls83{letter-spacing:0.172271pt;}
.ls90{letter-spacing:1.932224pt;}
.ls5e{letter-spacing:9.286592pt;}
.ls94{letter-spacing:9.295104pt;}
.ls9f{letter-spacing:19.211175pt;}
.ls15{letter-spacing:23.369696pt;}
.ls7c{letter-spacing:23.382464pt;}
.ls9b{letter-spacing:32.579680pt;}
.lsb3{letter-spacing:36.665184pt;}
.ls7e{letter-spacing:37.593600pt;}
.ls97{letter-spacing:43.781472pt;}
.lsaa{letter-spacing:44.100672pt;}
.ls9a{letter-spacing:48.586496pt;}
.lsab{letter-spacing:62.031200pt;}
.ls99{letter-spacing:62.350400pt;}
.ls4f{letter-spacing:62.482048pt;}
.ls10{letter-spacing:74.634560pt;}
.ls7d{letter-spacing:74.671840pt;}
.ls64{letter-spacing:106.800064pt;}
.ls61{letter-spacing:132.080704pt;}
.ls1d{letter-spacing:660.099653pt;}
.ls1c{letter-spacing:684.847822pt;}
.ls1f{letter-spacing:736.888093pt;}
.ls1e{letter-spacing:759.407630pt;}
.wsa{word-spacing:-53.440000pt;}
.wsd{word-spacing:-35.896987pt;}
.ws1{word-spacing:-24.000000pt;}
.ws2{word-spacing:-19.251584pt;}
.wse0{word-spacing:-18.811488pt;}
.ws8{word-spacing:-18.796576pt;}
.wsc{word-spacing:-16.346533pt;}
.wse1{word-spacing:-16.012800pt;}
.ws1a2{word-spacing:-13.482912pt;}
.ws143{word-spacing:-13.477568pt;}
.ws5{word-spacing:-13.445504pt;}
.ws1a3{word-spacing:-13.434816pt;}
.ws1a4{word-spacing:-13.402752pt;}
.ws1a5{word-spacing:-13.397408pt;}
.ws6{word-spacing:-13.381376pt;}
.ws9{word-spacing:-13.360000pt;}
.ws7{word-spacing:-13.349312pt;}
.ws4{word-spacing:-13.327936pt;}
.wsdf{word-spacing:-11.852960pt;}
.ws0{word-spacing:-11.840192pt;}
.ws13f{word-spacing:-10.708096pt;}
.wsb{word-spacing:-9.535333pt;}
.ws72{word-spacing:-9.459333pt;}
.ws13e{word-spacing:-8.650368pt;}
.ws76{word-spacing:-8.646912pt;}
.wse{word-spacing:-8.643456pt;}
.ws1a1{word-spacing:-8.640000pt;}
.wsf{word-spacing:-8.629632pt;}
.ws3{word-spacing:-7.406784pt;}
.ws179{word-spacing:-6.780399pt;}
.ws17a{word-spacing:-6.775108pt;}
.ws141{word-spacing:-6.758996pt;}
.ws142{word-spacing:-6.655936pt;}
.ws71{word-spacing:-6.400512pt;}
.ws178{word-spacing:-6.076698pt;}
.ws140{word-spacing:-6.045709pt;}
.ws1f1{word-spacing:-4.302112pt;}
.wse8{word-spacing:-4.279744pt;}
.wsf6{word-spacing:-3.446880pt;}
.ws18f{word-spacing:-3.201056pt;}
.ws139{word-spacing:-3.190368pt;}
.ws1a7{word-spacing:-3.104864pt;}
.wsf7{word-spacing:-3.008672pt;}
.ws19c{word-spacing:-3.003328pt;}
.ws159{word-spacing:-2.773536pt;}
.ws158{word-spacing:-2.698720pt;}
.ws129{word-spacing:-2.693376pt;}
.ws18b{word-spacing:-2.559776pt;}
.wsbf{word-spacing:-2.538400pt;}
.ws26{word-spacing:-2.479616pt;}
.ws28{word-spacing:-2.468928pt;}
.ws197{word-spacing:-2.378080pt;}
.ws18c{word-spacing:-2.271200pt;}
.ws14b{word-spacing:-2.094848pt;}
.ws1b0{word-spacing:-2.046752pt;}
.ws24{word-spacing:-2.036064pt;}
.ws148{word-spacing:-1.971936pt;}
.ws14a{word-spacing:-1.955904pt;}
.ws30{word-spacing:-1.923840pt;}
.ws99{word-spacing:-1.913152pt;}
.ws15d{word-spacing:-1.859712pt;}
.wsf4{word-spacing:-1.832992pt;}
.wsf3{word-spacing:-1.747488pt;}
.wsb8{word-spacing:-1.742144pt;}
.wsae{word-spacing:-1.726112pt;}
.ws198{word-spacing:-1.694048pt;}
.wsb9{word-spacing:-1.442880pt;}
.ws1bc{word-spacing:-1.432192pt;}
.ws15c{word-spacing:-1.394784pt;}
.ws29{word-spacing:-1.384096pt;}
.ws181{word-spacing:-1.378752pt;}
.wseb{word-spacing:-1.271872pt;}
.ws149{word-spacing:-1.266528pt;}
.ws82{word-spacing:-1.255840pt;}
.ws1c7{word-spacing:-1.218432pt;}
.wsfa{word-spacing:-1.207744pt;}
.ws195{word-spacing:-1.202400pt;}
.ws1da{word-spacing:-1.170336pt;}
.ws1dd{word-spacing:-1.132928pt;}
.ws14c{word-spacing:-1.116896pt;}
.ws111{word-spacing:-1.095520pt;}
.ws1a8{word-spacing:-1.090176pt;}
.ws17f{word-spacing:-1.089536pt;}
.wsec{word-spacing:-1.084832pt;}
.ws1aa{word-spacing:-1.079488pt;}
.ws5c{word-spacing:-0.951232pt;}
.ws4e{word-spacing:-0.935200pt;}
.ws110{word-spacing:-0.897792pt;}
.ws15b{word-spacing:-0.860384pt;}
.ws119{word-spacing:-0.849696pt;}
.ws196{word-spacing:-0.822976pt;}
.ws81{word-spacing:-0.806944pt;}
.ws11b{word-spacing:-0.790912pt;}
.ws6b{word-spacing:-0.780224pt;}
.ws1c5{word-spacing:-0.764192pt;}
.ws11c{word-spacing:-0.646624pt;}
.wsda{word-spacing:-0.641280pt;}
.ws67{word-spacing:-0.630592pt;}
.ws1ab{word-spacing:-0.614560pt;}
.ws122{word-spacing:-0.555776pt;}
.ws10f{word-spacing:-0.539744pt;}
.ws42{word-spacing:-0.534400pt;}
.ws59{word-spacing:-0.475616pt;}
.ws4a{word-spacing:-0.448896pt;}
.ws31{word-spacing:-0.432864pt;}
.ws68{word-spacing:-0.427520pt;}
.ws43{word-spacing:-0.395456pt;}
.ws11a{word-spacing:-0.352704pt;}
.ws21{word-spacing:-0.347360pt;}
.wsf1{word-spacing:-0.342016pt;}
.ws64{word-spacing:-0.331328pt;}
.ws2f{word-spacing:-0.325984pt;}
.ws63{word-spacing:-0.320640pt;}
.ws66{word-spacing:-0.272544pt;}
.ws89{word-spacing:-0.261856pt;}
.wse7{word-spacing:-0.246848pt;}
.ws4c{word-spacing:-0.242592pt;}
.ws109{word-spacing:-0.235136pt;}
.ws34{word-spacing:-0.224448pt;}
.ws10e{word-spacing:-0.213760pt;}
.ws17d{word-spacing:-0.208544pt;}
.wsc9{word-spacing:-0.204288pt;}
.wsc3{word-spacing:-0.203072pt;}
.wsce{word-spacing:-0.200032pt;}
.ws151{word-spacing:-0.195776pt;}
.ws177{word-spacing:-0.192384pt;}
.ws11e{word-spacing:-0.191520pt;}
.ws135{word-spacing:-0.172800pt;}
.ws150{word-spacing:-0.165984pt;}
.ws153{word-spacing:-0.164032pt;}
.ws4d{word-spacing:-0.161728pt;}
.ws152{word-spacing:-0.157472pt;}
.ws154{word-spacing:-0.156576pt;}
.wsc5{word-spacing:-0.153216pt;}
.ws166{word-spacing:-0.144704pt;}
.ws164{word-spacing:-0.144288pt;}
.wsc4{word-spacing:-0.140448pt;}
.ws16b{word-spacing:-0.136192pt;}
.ws193{word-spacing:-0.131936pt;}
.ws17e{word-spacing:-0.127680pt;}
.wsb0{word-spacing:-0.126752pt;}
.ws167{word-spacing:-0.119168pt;}
.ws96{word-spacing:-0.117568pt;}
.ws1ce{word-spacing:-0.112224pt;}
.ws7a{word-spacing:-0.110656pt;}
.ws79{word-spacing:-0.102144pt;}
.ws11d{word-spacing:-0.096192pt;}
.ws6e{word-spacing:-0.090848pt;}
.ws1de{word-spacing:-0.085504pt;}
.ws12{word-spacing:-0.085120pt;}
.ws1f0{word-spacing:-0.074816pt;}
.ws155{word-spacing:-0.074560pt;}
.wsc7{word-spacing:-0.063840pt;}
.wse3{word-spacing:-0.059584pt;}
.ws13{word-spacing:-0.055328pt;}
.ws13d{word-spacing:-0.053440pt;}
.wse5{word-spacing:-0.051072pt;}
.ws16{word-spacing:-0.042560pt;}
.wsd9{word-spacing:-0.032064pt;}
.wse2{word-spacing:-0.017024pt;}
.ws1e{word-spacing:-0.012800pt;}
.ws6d{word-spacing:-0.010688pt;}
.ws15{word-spacing:-0.008512pt;}
.ws78{word-spacing:-0.005344pt;}
.ws10{word-spacing:-0.004256pt;}
.ws11{word-spacing:0.000000pt;}
.wse4{word-spacing:0.004256pt;}
.wsfe{word-spacing:0.010688pt;}
.ws14{word-spacing:0.012768pt;}
.ws1d{word-spacing:0.019200pt;}
.ws176{word-spacing:0.021376pt;}
.ws1ae{word-spacing:0.058784pt;}
.ws8b{word-spacing:0.064128pt;}
.ws35{word-spacing:0.085504pt;}
.ws134{word-spacing:0.090848pt;}
.ws3c{word-spacing:0.096192pt;}
.ws1b{word-spacing:0.100672pt;}
.ws14f{word-spacing:0.101536pt;}
.ws5a{word-spacing:0.106880pt;}
.ws209{word-spacing:0.112224pt;}
.ws18{word-spacing:0.116160pt;}
.ws14e{word-spacing:0.117568pt;}
.ws8a{word-spacing:0.122912pt;}
.ws5b{word-spacing:0.128256pt;}
.ws1f9{word-spacing:0.133600pt;}
.wsc2{word-spacing:0.138944pt;}
.ws1f{word-spacing:0.149632pt;}
.ws1d9{word-spacing:0.154976pt;}
.ws1af{word-spacing:0.160320pt;}
.wsc1{word-spacing:0.165664pt;}
.ws163{word-spacing:0.171008pt;}
.wsde{word-spacing:0.176352pt;}
.ws19{word-spacing:0.178112pt;}
.ws20{word-spacing:0.181696pt;}
.wsb7{word-spacing:0.187040pt;}
.ws1be{word-spacing:0.192384pt;}
.wsc0{word-spacing:0.203072pt;}
.ws22{word-spacing:0.208416pt;}
.ws4b{word-spacing:0.213760pt;}
.ws1a{word-spacing:0.240064pt;}
.ws1ed{word-spacing:0.245824pt;}
.wsa5{word-spacing:0.256512pt;}
.ws65{word-spacing:0.299264pt;}
.ws3d{word-spacing:0.395456pt;}
.ws1c{word-spacing:0.456896pt;}
.ws1b7{word-spacing:0.470272pt;}
.ws3e{word-spacing:0.534400pt;}
.ws1cf{word-spacing:0.550432pt;}
.ws10b{word-spacing:0.555776pt;}
.ws105{word-spacing:0.598528pt;}
.ws77{word-spacing:0.619904pt;}
.ws1ac{word-spacing:0.710752pt;}
.ws6c{word-spacing:0.817632pt;}
.ws8e{word-spacing:1.148960pt;}
.ws8f{word-spacing:1.164992pt;}
.ws138{word-spacing:1.293248pt;}
.ws1ff{word-spacing:1.352032pt;}
.wsd6{word-spacing:1.368064pt;}
.ws131{word-spacing:1.389440pt;}
.ws1e4{word-spacing:1.496320pt;}
.ws1e3{word-spacing:1.528384pt;}
.ws39{word-spacing:1.560448pt;}
.ws92{word-spacing:1.608544pt;}
.ws87{word-spacing:1.645952pt;}
.ws100{word-spacing:1.678016pt;}
.ws101{word-spacing:1.688704pt;}
.wsdd{word-spacing:1.694048pt;}
.ws38{word-spacing:1.715424pt;}
.wsba{word-spacing:1.918496pt;}
.ws1ca{word-spacing:1.993312pt;}
.wsea{word-spacing:1.998656pt;}
.ws115{word-spacing:2.004000pt;}
.ws114{word-spacing:2.036064pt;}
.ws55{word-spacing:2.089504pt;}
.ws54{word-spacing:2.105536pt;}
.ws12d{word-spacing:2.132256pt;}
.wsbc{word-spacing:2.158976pt;}
.ws61{word-spacing:2.207072pt;}
.ws170{word-spacing:2.249824pt;}
.ws88{word-spacing:2.281888pt;}
.ws1fc{word-spacing:2.340672pt;}
.ws1fd{word-spacing:2.356704pt;}
.ws171{word-spacing:2.394112pt;}
.ws1eb{word-spacing:2.447552pt;}
.ws118{word-spacing:2.474272pt;}
.ws13a{word-spacing:2.570464pt;}
.ws1d6{word-spacing:2.586496pt;}
.ws117{word-spacing:2.645280pt;}
.ws6a{word-spacing:2.650624pt;}
.ws116{word-spacing:2.672000pt;}
.ws1ec{word-spacing:2.698720pt;}
.ws1ea{word-spacing:2.730784pt;}
.ws180{word-spacing:2.736128pt;}
.ws69{word-spacing:2.741472pt;}
.ws16d{word-spacing:2.773536pt;}
.ws184{word-spacing:2.810944pt;}
.ws157{word-spacing:2.859040pt;}
.ws93{word-spacing:2.880416pt;}
.ws2e{word-spacing:2.885760pt;}
.ws1cb{word-spacing:2.949888pt;}
.wsf8{word-spacing:2.960576pt;}
.wscf{word-spacing:3.003328pt;}
.ws12e{word-spacing:3.035392pt;}
.ws183{word-spacing:3.051424pt;}
.wsa4{word-spacing:3.072800pt;}
.ws80{word-spacing:3.083488pt;}
.ws1ad{word-spacing:3.195712pt;}
.ws1cc{word-spacing:3.211744pt;}
.ws44{word-spacing:3.291904pt;}
.ws10a{word-spacing:3.366720pt;}
.ws7f{word-spacing:3.521696pt;}
.ws1b9{word-spacing:3.543072pt;}
.ws49{word-spacing:3.596512pt;}
.ws7e{word-spacing:3.617888pt;}
.ws36{word-spacing:3.853024pt;}
.ws27{word-spacing:3.869056pt;}
.ws113{word-spacing:3.938528pt;}
.ws13c{word-spacing:3.949216pt;}
.ws94{word-spacing:3.954560pt;}
.ws48{word-spacing:3.981280pt;}
.wsf0{word-spacing:4.045408pt;}
.ws112{word-spacing:4.056096pt;}
.ws98{word-spacing:4.077472pt;}
.ws106{word-spacing:4.141600pt;}
.ws19f{word-spacing:4.179008pt;}
.ws1e6{word-spacing:4.184352pt;}
.ws37{word-spacing:4.285888pt;}
.ws9e{word-spacing:4.478272pt;}
.ws182{word-spacing:4.494304pt;}
.ws208{word-spacing:4.510336pt;}
.wsd0{word-spacing:4.547744pt;}
.wsa1{word-spacing:4.553088pt;}
.ws46{word-spacing:4.563776pt;}
.wsd8{word-spacing:4.585152pt;}
.ws1f7{word-spacing:4.622560pt;}
.wsd5{word-spacing:4.649280pt;}
.ws9f{word-spacing:4.670656pt;}
.ws45{word-spacing:4.676000pt;}
.wsd1{word-spacing:4.793568pt;}
.ws15a{word-spacing:4.953888pt;}
.ws102{word-spacing:5.130240pt;}
.ws5e{word-spacing:5.167648pt;}
.ws5f{word-spacing:5.183680pt;}
.ws60{word-spacing:5.210400pt;}
.ws207{word-spacing:5.285216pt;}
.ws62{word-spacing:5.290560pt;}
.ws1f8{word-spacing:5.311936pt;}
.wse9{word-spacing:5.456224pt;}
.ws186{word-spacing:5.541728pt;}
.ws185{word-spacing:5.611200pt;}
.ws2c{word-spacing:5.627232pt;}
.ws107{word-spacing:5.648608pt;}
.ws5d{word-spacing:5.675328pt;}
.wsb3{word-spacing:5.744800pt;}
.ws1f5{word-spacing:5.814272pt;}
.ws1f4{word-spacing:5.840992pt;}
.ws40{word-spacing:5.851680pt;}
.wsff{word-spacing:5.862368pt;}
.ws1e9{word-spacing:5.867712pt;}
.ws1c8{word-spacing:5.942528pt;}
.ws3f{word-spacing:5.947872pt;}
.ws1b8{word-spacing:6.097504pt;}
.ws1d3{word-spacing:6.156288pt;}
.wsa0{word-spacing:6.236448pt;}
.ws1e8{word-spacing:6.321952pt;}
.wsb1{word-spacing:6.386080pt;}
.ws1d2{word-spacing:6.402112pt;}
.wsbb{word-spacing:6.407456pt;}
.ws33{word-spacing:6.423488pt;}
.ws191{word-spacing:6.503648pt;}
.ws15f{word-spacing:6.525024pt;}
.ws7b{word-spacing:6.637248pt;}
.wsa9{word-spacing:6.706720pt;}
.wsa6{word-spacing:6.754816pt;}
.wsbd{word-spacing:6.781536pt;}
.wsbe{word-spacing:6.797568pt;}
.ws160{word-spacing:6.813600pt;}
.ws1a6{word-spacing:6.883072pt;}
.ws194{word-spacing:6.915136pt;}
.ws161{word-spacing:6.957888pt;}
.ws41{word-spacing:7.038048pt;}
.ws123{word-spacing:7.160960pt;}
.ws13b{word-spacing:7.561760pt;}
.ws15e{word-spacing:7.855680pt;}
.wsd2{word-spacing:7.887744pt;}
.ws18d{word-spacing:7.898432pt;}
.ws18e{word-spacing:7.909120pt;}
.ws190{word-spacing:7.994624pt;}
.wsf2{word-spacing:8.010656pt;}
.ws19a{word-spacing:8.021344pt;}
.ws199{word-spacing:8.106848pt;}
.ws146{word-spacing:8.315264pt;}
.ws144{word-spacing:8.395424pt;}
.ws108{word-spacing:8.753472pt;}
.ws1e7{word-spacing:8.817600pt;}
.ws2d{word-spacing:8.871040pt;}
.ws8d{word-spacing:8.956544pt;}
.ws137{word-spacing:8.961888pt;}
.ws10d{word-spacing:8.972576pt;}
.ws136{word-spacing:9.036704pt;}
.ws84{word-spacing:9.047392pt;}
.wsa8{word-spacing:9.079456pt;}
.ws85{word-spacing:9.095488pt;}
.ws1f3{word-spacing:9.100832pt;}
.ws126{word-spacing:9.368032pt;}
.wsa7{word-spacing:9.384064pt;}
.wsd4{word-spacing:9.421472pt;}
.ws18a{word-spacing:9.437504pt;}
.wsd3{word-spacing:9.469568pt;}
.ws1f2{word-spacing:9.485600pt;}
.ws1e2{word-spacing:9.581792pt;}
.ws202{word-spacing:9.987936pt;}
.ws1e1{word-spacing:10.014656pt;}
.ws53{word-spacing:10.142912pt;}
.ws1bf{word-spacing:10.324608pt;}
.ws56{word-spacing:10.399424pt;}
.ws187{word-spacing:10.404768pt;}
.ws52{word-spacing:10.447520pt;}
.wsd7{word-spacing:10.479584pt;}
.ws1e0{word-spacing:10.581120pt;}
.ws4f{word-spacing:10.682656pt;}
.ws19e{word-spacing:10.709376pt;}
.ws1c6{word-spacing:10.768160pt;}
.ws147{word-spacing:10.891072pt;}
.ws1fe{word-spacing:11.056736pt;}
.ws6f{word-spacing:11.062080pt;}
.ws2a{word-spacing:11.088800pt;}
.ws19d{word-spacing:11.094144pt;}
.wsb6{word-spacing:11.259808pt;}
.ws12f{word-spacing:11.398752pt;}
.ws3b{word-spacing:11.543040pt;}
.ws70{word-spacing:11.564416pt;}
.ws7c{word-spacing:11.724736pt;}
.ws130{word-spacing:11.767488pt;}
.ws25{word-spacing:11.815584pt;}
.ws1b4{word-spacing:11.949184pt;}
.ws1b5{word-spacing:12.034688pt;}
.ws203{word-spacing:12.045376pt;}
.wsa2{word-spacing:12.162944pt;}
.ws1c2{word-spacing:12.178976pt;}
.wsa3{word-spacing:12.264480pt;}
.wsb4{word-spacing:12.269824pt;}
.wsed{word-spacing:12.884384pt;}
.ws205{word-spacing:12.900416pt;}
.wsdc{word-spacing:12.905760pt;}
.ws47{word-spacing:13.001952pt;}
.wsee{word-spacing:13.007296pt;}
.ws12c{word-spacing:13.071424pt;}
.wsac{word-spacing:13.119520pt;}
.ws12a{word-spacing:13.231744pt;}
.ws206{word-spacing:13.354656pt;}
.ws12b{word-spacing:13.381376pt;}
.wsdb{word-spacing:13.386720pt;}
.ws132{word-spacing:13.525664pt;}
.ws1c0{word-spacing:13.536352pt;}
.ws16e{word-spacing:13.627200pt;}
.ws14d{word-spacing:13.653920pt;}
.ws133{word-spacing:13.718048pt;}
.ws9c{word-spacing:13.760800pt;}
.ws86{word-spacing:13.974560pt;}
.ws162{word-spacing:13.985248pt;}
.ws204{word-spacing:14.070752pt;}
.ws156{word-spacing:14.172288pt;}
.ws1c3{word-spacing:14.257792pt;}
.ws1c4{word-spacing:14.263136pt;}
.ws9d{word-spacing:14.268480pt;}
.ws1c9{word-spacing:14.289856pt;}
.ws104{word-spacing:14.386048pt;}
.wsf5{word-spacing:14.412768pt;}
.ws1b3{word-spacing:14.514304pt;}
.ws189{word-spacing:14.524992pt;}
.ws188{word-spacing:14.567744pt;}
.ws1b2{word-spacing:14.573088pt;}
.wsfb{word-spacing:14.663936pt;}
.ws103{word-spacing:14.701344pt;}
.ws1ef{word-spacing:14.792192pt;}
.ws175{word-spacing:15.038016pt;}
.ws1ee{word-spacing:15.048704pt;}
.wsfd{word-spacing:15.764800pt;}
.wsfc{word-spacing:16.080096pt;}
.ws1c1{word-spacing:16.245760pt;}
.ws10c{word-spacing:16.315232pt;}
.ws1cd{word-spacing:17.116832pt;}
.ws1d1{word-spacing:17.560384pt;}
.wsaf{word-spacing:17.581760pt;}
.ws127{word-spacing:17.779488pt;}
.ws128{word-spacing:17.822240pt;}
.ws9a{word-spacing:17.982560pt;}
.ws9b{word-spacing:18.041344pt;}
.ws1d0{word-spacing:18.174944pt;}
.ws192{word-spacing:18.709344pt;}
.wsab{word-spacing:18.992576pt;}
.wsaa{word-spacing:19.056704pt;}
.ws83{word-spacing:19.607136pt;}
.ws172{word-spacing:20.184288pt;}
.ws1bd{word-spacing:20.259104pt;}
.wsb5{word-spacing:20.670592pt;}
.ws7d{word-spacing:20.868320pt;}
.ws1df{word-spacing:21.445472pt;}
.ws173{word-spacing:21.456160pt;}
.ws174{word-spacing:21.466848pt;}
.ws1a0{word-spacing:21.530976pt;}
.ws57{word-spacing:21.974528pt;}
.ws23{word-spacing:22.076064pt;}
.ws1a9{word-spacing:22.188288pt;}
.ws11f{word-spacing:22.733376pt;}
.ws201{word-spacing:22.872320pt;}
.ws1f6{word-spacing:23.203648pt;}
.ws200{word-spacing:23.214336pt;}
.ws1b6{word-spacing:23.551008pt;}
.ws1fb{word-spacing:23.684608pt;}
.wsb2{word-spacing:23.689952pt;}
.ws58{word-spacing:23.828896pt;}
.ws120{word-spacing:23.855616pt;}
.ws1dc{word-spacing:23.866304pt;}
.ws1db{word-spacing:23.909056pt;}
.ws1fa{word-spacing:24.037312pt;}
.ws91{word-spacing:25.090080pt;}
.ws97{word-spacing:25.298496pt;}
.ws3a{word-spacing:25.357280pt;}
.ws16c{word-spacing:25.458816pt;}
.ws1b1{word-spacing:25.784800pt;}
.ws2b{word-spacing:25.939776pt;}
.ws1ba{word-spacing:26.239040pt;}
.ws1bb{word-spacing:26.319200pt;}
.ws165{word-spacing:26.426080pt;}
.ws17b{word-spacing:28.702464pt;}
.ws168{word-spacing:29.021664pt;}
.ws16f{word-spacing:29.552320pt;}
.ws1d7{word-spacing:29.653856pt;}
.ws1d8{word-spacing:29.803488pt;}
.ws90{word-spacing:29.926400pt;}
.ws95{word-spacing:30.177568pt;}
.wsad{word-spacing:31.876960pt;}
.ws50{word-spacing:32.117440pt;}
.ws51{word-spacing:32.128128pt;}
.wsef{word-spacing:32.502208pt;}
.ws19b{word-spacing:32.662528pt;}
.ws145{word-spacing:34.746688pt;}
.ws32{word-spacing:35.409344pt;}
.ws124{word-spacing:37.867584pt;}
.ws125{word-spacing:38.011872pt;}
.wsf9{word-spacing:41.811456pt;}
.ws121{word-spacing:47.053920pt;}
.ws16a{word-spacing:48.416256pt;}
.ws1d4{word-spacing:50.645088pt;}
.wsc8{word-spacing:58.413600pt;}
.ws1d5{word-spacing:63.545504pt;}
.ws169{word-spacing:79.348864pt;}
.ws17c{word-spacing:79.668064pt;}
.wscd{word-spacing:83.277152pt;}
.wscb{word-spacing:93.517088pt;}
.wscc{word-spacing:93.836288pt;}
.ws73{word-spacing:98.103806pt;}
.wsca{word-spacing:104.399680pt;}
.ws74{word-spacing:124.472993pt;}
.wsc6{word-spacing:135.196096pt;}
.ws1e5{word-spacing:174.310592pt;}
.ws75{word-spacing:288.137161pt;}
.ws8c{word-spacing:318.448960pt;}
.ws17{word-spacing:463.686944pt;}
.wse6{word-spacing:463.869952pt;}
._1a{margin-left:-245.865449pt;}
._1b{margin-left:-230.041494pt;}
._14{margin-left:-214.015353pt;}
._17{margin-left:-212.184541pt;}
._10{margin-left:-168.992806pt;}
._23{margin-left:-163.287291pt;}
._d{margin-left:-153.408257pt;}
._15{margin-left:-152.055453pt;}
._13{margin-left:-140.737113pt;}
._18{margin-left:-137.624733pt;}
._16{margin-left:-125.149059pt;}
._1c{margin-left:-124.187883pt;}
._20{margin-left:-116.917360pt;}
._11{margin-left:-98.591533pt;}
._1d{margin-left:-93.462939pt;}
._31{margin-left:-83.178877pt;}
._12{margin-left:-81.847487pt;}
._f{margin-left:-77.671011pt;}
._c{margin-left:-73.593703pt;}
._e{margin-left:-71.858272pt;}
._30{margin-left:-50.879412pt;}
._21{margin-left:-48.433551pt;}
._22{margin-left:-42.135308pt;}
._3b{margin-left:-21.386688pt;}
._2f{margin-left:-13.620704pt;}
._2b{margin-left:-10.619424pt;}
._5{margin-left:-7.285376pt;}
._6{margin-left:-6.272640pt;}
._4{margin-left:-4.584448pt;}
._3{margin-left:-2.979200pt;}
._8{margin-left:-1.971936pt;}
._1{margin-left:-1.042720pt;}
._0{width:1.072512pt;}
._a{width:2.235424pt;}
._b{width:3.189056pt;}
._27{width:4.149600pt;}
._7{width:5.915808pt;}
._29{width:9.916480pt;}
._28{width:10.963456pt;}
._36{width:12.427520pt;}
._33{width:15.181152pt;}
._3a{width:17.842115pt;}
._35{width:19.415872pt;}
._34{width:25.289152pt;}
._24{width:30.722656pt;}
._3d{width:36.045472pt;}
._2e{width:40.015872pt;}
._43{width:46.735136pt;}
._42{width:50.897504pt;}
._1e{width:53.440000pt;}
._2d{width:54.417952pt;}
._1f{width:55.999776pt;}
._44{width:57.298528pt;}
._2c{width:59.521472pt;}
._38{width:61.460896pt;}
._40{width:62.418496pt;}
._9{width:63.363808pt;}
._37{width:67.731392pt;}
._41{width:69.195456pt;}
._2a{width:71.679552pt;}
._3f{width:82.911136pt;}
._3e{width:89.312160pt;}
._3c{width:90.295296pt;}
._19{width:97.597472pt;}
._39{width:112.688928pt;}
._25{width:123.117568pt;}
._32{width:142.188704pt;}
._26{width:152.152000pt;}
._2{width:452.761792pt;}
.fs11{font-size:26.454933pt;}
.fse{font-size:26.516267pt;}
.fsd{font-size:26.560000pt;}
.fs6{font-size:34.560000pt;}
.fsa{font-size:37.837333pt;}
.fs7{font-size:38.141333pt;}
.fs0{font-size:42.560000pt;}
.fs12{font-size:45.352533pt;}
.fsf{font-size:45.456533pt;}
.fs13{font-size:47.929734pt;}
.fs10{font-size:48.039529pt;}
.fs4{font-size:53.440000pt;}
.fs3{font-size:64.000000pt;}
.fsb{font-size:64.863467pt;}
.fs9{font-size:65.386133pt;}
.fsc{font-size:68.552509pt;}
.fs8{font-size:69.104524pt;}
.fs5{font-size:74.560000pt;}
.fs2{font-size:77.440000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:3.520400pt;}
.y2{bottom:49.707067pt;}
.y55{bottom:98.507075pt;}
.y1da{bottom:99.147200pt;}
.y1af{bottom:99.227227pt;}
.y18c{bottom:99.306539pt;}
.ye1{bottom:100.108091pt;}
.y104{bottom:100.187043pt;}
.yb4{bottom:102.347091pt;}
.y20e{bottom:103.147616pt;}
.y14f{bottom:106.107075pt;}
.y2a{bottom:107.867795pt;}
.y54{bottom:113.867368pt;}
.y1ae{bottom:114.587219pt;}
.ye0{bottom:115.468083pt;}
.y18b{bottom:116.746563pt;}
.y116{bottom:117.385131pt;}
.y103{bottom:117.627067pt;}
.yb3{bottom:117.707083pt;}
.y20d{bottom:118.507608pt;}
.y14e{bottom:121.467216pt;}
.y29{bottom:123.227787pt;}
.y8a{bottom:128.188843pt;}
.y53{bottom:129.147083pt;}
.y1ad{bottom:130.667315pt;}
.ydf{bottom:130.828075pt;}
.yb2{bottom:133.067075pt;}
.y20c{bottom:133.787440pt;}
.y1d9{bottom:134.507067pt;}
.y115{bottom:135.065619pt;}
.y14d{bottom:136.827208pt;}
.y28{bottom:138.507619pt;}
.y89{bottom:143.548835pt;}
.y52{bottom:144.507075pt;}
.yde{bottom:146.107907pt;}
.y1ac{bottom:146.187627pt;}
.yb1{bottom:148.427427pt;}
.y20b{bottom:149.147432pt;}
.y14c{bottom:152.187235pt;}
.y27{bottom:153.867611pt;}
.y88{bottom:158.908827pt;}
.y51{bottom:159.867368pt;}
.ydd{bottom:161.467899pt;}
.y1ab{bottom:161.547619pt;}
.yb0{bottom:163.707259pt;}
.y20a{bottom:164.507424pt;}
.y14b{bottom:167.467267pt;}
.y26{bottom:169.227603pt;}
.y87{bottom:174.268819pt;}
.y50{bottom:175.147360pt;}
.y1aa{bottom:176.827451pt;}
.ydc{bottom:176.827891pt;}
.yaf{bottom:179.067251pt;}
.y209{bottom:179.787256pt;}
.y14a{bottom:182.827259pt;}
.y25{bottom:184.507435pt;}
.ydb{bottom:192.107723pt;}
.y1a9{bottom:192.187443pt;}
.y1d8{bottom:192.587083pt;}
.yae{bottom:194.347083pt;}
.y208{bottom:195.147248pt;}
.y86{bottom:197.068995pt;}
.y149{bottom:198.187251pt;}
.y49{bottom:198.747067pt;}
.y24{bottom:199.867427pt;}
.y4c{bottom:202.827067pt;}
.yda{bottom:207.467715pt;}
.y1a8{bottom:207.547435pt;}
.y1d7{bottom:207.947075pt;}
.yad{bottom:209.707075pt;}
.y4b{bottom:211.467201pt;}
.y85{bottom:212.428987pt;}
.y148{bottom:213.467083pt;}
.y48{bottom:215.147667pt;}
.y23{bottom:215.227419pt;}
.y4f{bottom:215.547633pt;}
.y207{bottom:217.947424pt;}
.y1a7{bottom:222.827267pt;}
.yd9{bottom:222.827707pt;}
.y1d6{bottom:223.307067pt;}
.y4a{bottom:224.267433pt;}
.y4d{bottom:224.906667pt;}
.yac{bottom:225.067075pt;}
.y84{bottom:227.788979pt;}
.y4e{bottom:228.427067pt;}
.y147{bottom:228.827075pt;}
.y22{bottom:230.507251pt;}
.y206{bottom:233.307416pt;}
.yd8{bottom:238.107539pt;}
.y1a6{bottom:238.187259pt;}
.yab{bottom:240.346907pt;}
.y83{bottom:243.148971pt;}
.y146{bottom:244.187067pt;}
.y21{bottom:245.867243pt;}
.y205{bottom:248.667408pt;}
.yd7{bottom:253.467531pt;}
.y1a5{bottom:253.547251pt;}
.y40{bottom:255.227067pt;}
.yaa{bottom:255.706899pt;}
.y82{bottom:258.428803pt;}
.y1d5{bottom:258.667067pt;}
.y43{bottom:259.307067pt;}
.y20{bottom:261.227235pt;}
.y204{bottom:264.027400pt;}
.y145{bottom:266.507067pt;}
.y42{bottom:267.947201pt;}
.y1a4{bottom:268.827083pt;}
.yd6{bottom:268.827523pt;}
.ya9{bottom:271.066891pt;}
.y3f{bottom:271.627168pt;}
.y47{bottom:272.027633pt;}
.y81{bottom:273.788795pt;}
.y1f{bottom:276.507067pt;}
.y203{bottom:279.307232pt;}
.y41{bottom:280.747433pt;}
.y44{bottom:281.386667pt;}
.y144{bottom:282.347067pt;}
.yd5{bottom:284.107355pt;}
.y1a3{bottom:284.187075pt;}
.y46{bottom:284.907067pt;}
.y80{bottom:289.068627pt;}
.y114{bottom:290.825643pt;}
.y13e{bottom:292.747067pt;}
.ya8{bottom:293.867067pt;}
.y202{bottom:294.667224pt;}
.y1a2{bottom:299.547067pt;}
.y143{bottom:300.507067pt;}
.y7f{bottom:304.428619pt;}
.y18a{bottom:305.947043pt;}
.yd4{bottom:306.987691pt;}
.y113{bottom:308.506131pt;}
.y3e{bottom:311.067224pt;}
.y1e{bottom:311.867067pt;}
.ya7{bottom:316.187200pt;}
.y1d4{bottom:316.747979pt;}
.y201{bottom:317.467400pt;}
.y142{bottom:318.587067pt;}
.y7e{bottom:319.788611pt;}
.y102{bottom:320.027568pt;}
.yd3{bottom:322.347683pt;}
.y189{bottom:323.387067pt;}
.y3d{bottom:326.427216pt;}
.y1d3{bottom:332.107971pt;}
.y200{bottom:332.827392pt;}
.y1a1{bottom:333.147483pt;}
.y7d{bottom:335.068443pt;}
.y101{bottom:335.387560pt;}
.y141{bottom:336.747067pt;}
.yd2{bottom:337.627515pt;}
.y3c{bottom:341.787208pt;}
.ya6{bottom:342.667200pt;}
.y1d2{bottom:347.387803pt;}
.y1ff{bottom:348.187384pt;}
.y7c{bottom:350.428435pt;}
.y1a0{bottom:350.587507pt;}
.y100{bottom:350.747552pt;}
.yd1{bottom:352.987507pt;}
.y140{bottom:354.907200pt;}
.y3b{bottom:357.147459pt;}
.y1d1{bottom:362.747795pt;}
.y1fe{bottom:363.547376pt;}
.y7b{bottom:365.788427pt;}
.yff{bottom:366.027384pt;}
.yd0{bottom:368.347499pt;}
.ya5{bottom:369.227067pt;}
.y1d{bottom:369.947067pt;}
.y3a{bottom:372.427291pt;}
.y13f{bottom:372.667200pt;}
.y1d0{bottom:378.027627pt;}
.y1fd{bottom:378.827208pt;}
.y7a{bottom:381.068259pt;}
.yfe{bottom:381.387376pt;}
.ycf{bottom:383.627331pt;}
.y39{bottom:387.787283pt;}
.y13d{bottom:391.147200pt;}
.y1cf{bottom:393.387619pt;}
.y1fc{bottom:394.187200pt;}
.ya4{bottom:395.787067pt;}
.y79{bottom:396.428251pt;}
.yfd{bottom:396.747368pt;}
.yce{bottom:398.987323pt;}
.y137{bottom:401.547067pt;}
.y1c{bottom:405.307067pt;}
.y1ce{bottom:408.747611pt;}
.y13c{bottom:409.307067pt;}
.y38{bottom:410.587459pt;}
.y78{bottom:411.788243pt;}
.yfc{bottom:412.027200pt;}
.ycd{bottom:414.347315pt;}
.ya3{bottom:422.267067pt;}
.y1cd{bottom:424.027443pt;}
.y37{bottom:425.947451pt;}
.y77{bottom:427.068075pt;}
.y13b{bottom:427.387067pt;}
.y1fb{bottom:429.547067pt;}
.ycc{bottom:429.627147pt;}
.yfb{bottom:439.227067pt;}
.y1cc{bottom:439.387435pt;}
.y36{bottom:441.307443pt;}
.y76{bottom:442.428067pt;}
.ycb{bottom:444.987139pt;}
.y13a{bottom:445.547067pt;}
.ya2{bottom:448.827200pt;}
.y1cb{bottom:454.747427pt;}
.y35{bottom:456.667435pt;}
.y75{bottom:457.788059pt;}
.y112{bottom:460.266579pt;}
.y1b{bottom:463.387307pt;}
.y139{bottom:463.707067pt;}
.yca{bottom:467.787315pt;}
.y1ca{bottom:470.027259pt;}
.y34{bottom:471.947267pt;}
.y74{bottom:473.067891pt;}
.ya1{bottom:475.387067pt;}
.yfa{bottom:475.947435pt;}
.y111{bottom:477.947067pt;}
.y1a{bottom:478.747299pt;}
.y138{bottom:481.467067pt;}
.yc9{bottom:483.147307pt;}
.y1c9{bottom:485.387251pt;}
.y33{bottom:487.307259pt;}
.y1fa{bottom:487.626608pt;}
.y73{bottom:488.427883pt;}
.yf9{bottom:491.307427pt;}
.y19{bottom:494.107291pt;}
.y136{bottom:497.307067pt;}
.yc8{bottom:498.507299pt;}
.y188{bottom:500.187067pt;}
.y1c8{bottom:500.747243pt;}
.ya0{bottom:501.867067pt;}
.y32{bottom:502.667251pt;}
.y1f9{bottom:502.986600pt;}
.y72{bottom:503.787875pt;}
.y12b{bottom:506.107067pt;}
.yf8{bottom:506.667419pt;}
.y12d{bottom:508.987067pt;}
.y18{bottom:509.467283pt;}
.y133{bottom:509.867067pt;}
.y134{bottom:510.187067pt;}
.y12a{bottom:510.346755pt;}
.y132{bottom:510.507067pt;}
.y135{bottom:510.827067pt;}
.yc7{bottom:513.867291pt;}
.y187{bottom:515.947067pt;}
.y1c7{bottom:516.027075pt;}
.y131{bottom:516.187067pt;}
.y130{bottom:516.827067pt;}
.y31{bottom:517.947083pt;}
.y1f8{bottom:518.346592pt;}
.y71{bottom:519.067707pt;}
.yf7{bottom:521.947251pt;}
.y129{bottom:522.666811pt;}
.y12c{bottom:523.547478pt;}
.y17{bottom:524.747115pt;}
.y9f{bottom:525.307067pt;}
.y12e{bottom:526.347067pt;}
.y186{bottom:528.827067pt;}
.yc6{bottom:529.147123pt;}
.y1c6{bottom:531.387067pt;}
.y181{bottom:533.307067pt;}
.y30{bottom:533.307075pt;}
.y70{bottom:534.427699pt;}
.y9e{bottom:535.467651pt;}
.y12f{bottom:536.027067pt;}
.yf6{bottom:537.307243pt;}
.y16{bottom:540.107107pt;}
.y1f7{bottom:541.146768pt;}
.y185{bottom:541.707067pt;}
.y19f{bottom:541.867043pt;}
.yc5{bottom:544.507115pt;}
.y2f{bottom:548.667067pt;}
.y6f{bottom:549.787691pt;}
.yf5{bottom:552.667235pt;}
.y184{bottom:554.587067pt;}
.y15{bottom:555.467099pt;}
.y128{bottom:556.187067pt;}
.y19e{bottom:559.307067pt;}
.y1f6{bottom:564.027104pt;}
.y6e{bottom:565.067523pt;}
.y1c5{bottom:566.747067pt;}
.yc4{bottom:567.307291pt;}
.y183{bottom:567.467067pt;}
.yf4{bottom:567.947627pt;}
.y9d{bottom:569.707171pt;}
.y14{bottom:570.746931pt;}
.y127{bottom:576.427259pt;}
.y1f5{bottom:579.387096pt;}
.y182{bottom:579.947067pt;}
.y6d{bottom:580.427515pt;}
.y2e{bottom:582.267043pt;}
.yc3{bottom:582.667283pt;}
.yf3{bottom:583.307619pt;}
.y13{bottom:586.106923pt;}
.y126{bottom:591.787251pt;}
.y180{bottom:593.147067pt;}
.y1f4{bottom:594.747088pt;}
.y6c{bottom:595.707347pt;}
.yc2{bottom:598.027275pt;}
.yf2{bottom:598.667611pt;}
.y2d{bottom:599.707067pt;}
.y9c{bottom:600.827043pt;}
.y12{bottom:601.466915pt;}
.y17f{bottom:606.027067pt;}
.y125{bottom:607.147243pt;}
.y1f3{bottom:610.026920pt;}
.y17a{bottom:610.507067pt;}
.y6b{bottom:611.067339pt;}
.yc1{bottom:613.387267pt;}
.yf1{bottom:613.947443pt;}
.y11{bottom:616.746747pt;}
.y9b{bottom:618.267067pt;}
.y17e{bottom:618.907067pt;}
.y110{bottom:619.227035pt;}
.y124{bottom:622.507235pt;}
.y1c4{bottom:624.827267pt;}
.y1f2{bottom:625.386912pt;}
.yf0{bottom:629.307435pt;}
.y17d{bottom:631.787067pt;}
.y10{bottom:632.106739pt;}
.y10f{bottom:634.587027pt;}
.y66{bottom:635.787067pt;}
.yc0{bottom:636.187443pt;}
.y123{bottom:637.787576pt;}
.y1c3{bottom:640.187259pt;}
.y1f1{bottom:640.746904pt;}
.y17c{bottom:644.667067pt;}
.yef{bottom:644.667427pt;}
.yf{bottom:647.466731pt;}
.y68{bottom:648.587437pt;}
.y10e{bottom:649.866859pt;}
.ybf{bottom:651.547435pt;}
.y65{bottom:652.347651pt;}
.y69{bottom:652.587067pt;}
.y122{bottom:653.147568pt;}
.y1c2{bottom:655.547251pt;}
.y17b{bottom:657.147067pt;}
.yee{bottom:659.947259pt;}
.y67{bottom:660.667005pt;}
.ye{bottom:662.746563pt;}
.y1f0{bottom:663.547080pt;}
.y6a{bottom:664.667067pt;}
.y10d{bottom:665.226851pt;}
.ybe{bottom:666.907427pt;}
.y121{bottom:668.507560pt;}
.y179{bottom:670.347067pt;}
.y1c1{bottom:670.827083pt;}
.yed{bottom:675.307251pt;}
.yd{bottom:678.106555pt;}
.y1ef{bottom:678.907072pt;}
.y10c{bottom:680.506683pt;}
.ybd{bottom:682.187259pt;}
.y178{bottom:683.227067pt;}
.y120{bottom:683.787392pt;}
.y1c0{bottom:686.187075pt;}
.y173{bottom:687.707067pt;}
.yec{bottom:690.667243pt;}
.y64{bottom:691.467075pt;}
.yc{bottom:693.466547pt;}
.y1ee{bottom:694.267064pt;}
.y177{bottom:696.107067pt;}
.y10b{bottom:696.666939pt;}
.ybc{bottom:697.547251pt;}
.y11f{bottom:699.147384pt;}
.y1bf{bottom:701.548003pt;}
.yeb{bottom:705.947075pt;}
.y63{bottom:706.827259pt;}
.yb{bottom:708.746379pt;}
.y2c{bottom:708.747155pt;}
.y176{bottom:708.987200pt;}
.y1ed{bottom:709.546896pt;}
.y10a{bottom:712.187251pt;}
.ybb{bottom:712.907243pt;}
.y11e{bottom:714.507376pt;}
.y1be{bottom:716.827835pt;}
.yea{bottom:721.307067pt;}
.y175{bottom:721.867067pt;}
.y62{bottom:722.187251pt;}
.ya{bottom:724.106371pt;}
.y2b{bottom:724.107147pt;}
.y1ec{bottom:724.906888pt;}
.y109{bottom:727.467083pt;}
.yba{bottom:728.187075pt;}
.y11d{bottom:729.787208pt;}
.y1bd{bottom:732.187827pt;}
.y174{bottom:734.347067pt;}
.y61{bottom:737.467083pt;}
.y19d{bottom:739.707251pt;}
.y1eb{bottom:740.266880pt;}
.y108{bottom:742.827075pt;}
.yb9{bottom:743.547067pt;}
.y11c{bottom:745.147200pt;}
.y1bc{bottom:747.467659pt;}
.y172{bottom:747.547067pt;}
.y60{bottom:752.827075pt;}
.ye9{bottom:754.987043pt;}
.y19c{bottom:755.067243pt;}
.y107{bottom:758.187067pt;}
.y171{bottom:760.427067pt;}
.y9a{bottom:760.667819pt;}
.y1bb{bottom:762.827651pt;}
.y1ea{bottom:763.067056pt;}
.y16c{bottom:764.907067pt;}
.y5f{bottom:768.187427pt;}
.y19b{bottom:770.347075pt;}
.yb8{bottom:770.747067pt;}
.ye8{bottom:772.427067pt;}
.y170{bottom:773.307067pt;}
.y99{bottom:776.027811pt;}
.y9{bottom:777.227067pt;}
.y1ba{bottom:778.187643pt;}
.y1e9{bottom:778.427048pt;}
.y11b{bottom:780.507611pt;}
.y5e{bottom:783.467259pt;}
.y19a{bottom:785.707251pt;}
.y16f{bottom:786.187067pt;}
.y98{bottom:791.387803pt;}
.y106{bottom:791.787483pt;}
.y1b9{bottom:793.467475pt;}
.y1e8{bottom:793.787040pt;}
.y5d{bottom:798.827251pt;}
.y16e{bottom:799.067067pt;}
.y199{bottom:801.067243pt;}
.y11a{bottom:801.947339pt;}
.y97{bottom:806.667635pt;}
.yb7{bottom:808.587067pt;}
.y1b8{bottom:808.827467pt;}
.y1e7{bottom:809.066872pt;}
.y105{bottom:809.227507pt;}
.y16d{bottom:811.547067pt;}
.y5c{bottom:814.187243pt;}
.y198{bottom:816.347075pt;}
.y8{bottom:816.986731pt;}
.y96{bottom:822.027627pt;}
.y119{bottom:823.387067pt;}
.y1b7{bottom:824.187459pt;}
.y1e6{bottom:824.426864pt;}
.y16b{bottom:824.747067pt;}
.y5b{bottom:829.467075pt;}
.y197{bottom:831.707611pt;}
.y95{bottom:837.387619pt;}
.y16a{bottom:837.627067pt;}
.y165{bottom:842.107067pt;}
.y5a{bottom:844.827067pt;}
.y1b6{bottom:846.987635pt;}
.y196{bottom:847.067603pt;}
.y1e5{bottom:847.307200pt;}
.y169{bottom:850.507067pt;}
.y7{bottom:851.227075pt;}
.y94{bottom:852.667451pt;}
.y195{bottom:862.347435pt;}
.y1b5{bottom:862.347627pt;}
.y1e4{bottom:862.667192pt;}
.y168{bottom:863.387067pt;}
.yb6{bottom:866.186619pt;}
.y6{bottom:866.587067pt;}
.y93{bottom:868.027443pt;}
.y167{bottom:876.267067pt;}
.y194{bottom:877.707427pt;}
.y1b4{bottom:877.707619pt;}
.y1e3{bottom:877.947024pt;}
.y59{bottom:878.507043pt;}
.y118{bottom:881.545675pt;}
.y92{bottom:883.387435pt;}
.yb5{bottom:883.626643pt;}
.y166{bottom:888.747067pt;}
.y193{bottom:892.987259pt;}
.y1b3{bottom:892.987451pt;}
.y1e2{bottom:893.307016pt;}
.y58{bottom:895.947067pt;}
.y91{bottom:898.667267pt;}
.y117{bottom:899.145299pt;}
.y5{bottom:901.307067pt;}
.y164{bottom:901.947067pt;}
.y192{bottom:908.347251pt;}
.y1b2{bottom:908.347443pt;}
.y1e1{bottom:908.586848pt;}
.y90{bottom:914.027259pt;}
.y163{bottom:914.827067pt;}
.y15e{bottom:919.307067pt;}
.y191{bottom:923.707243pt;}
.y1b1{bottom:923.707435pt;}
.y1e0{bottom:923.946840pt;}
.y162{bottom:927.707067pt;}
.y8f{bottom:929.387251pt;}
.ye7{bottom:931.467491pt;}
.y190{bottom:938.987075pt;}
.y1b0{bottom:938.987267pt;}
.y161{bottom:940.587067pt;}
.y8e{bottom:944.667083pt;}
.y1df{bottom:946.827176pt;}
.ye6{bottom:946.827483pt;}
.y160{bottom:953.467067pt;}
.y18f{bottom:954.347259pt;}
.y4{bottom:959.307067pt;}
.y8d{bottom:960.027075pt;}
.y1de{bottom:962.187168pt;}
.ye5{bottom:962.187475pt;}
.y15f{bottom:965.947067pt;}
.y18e{bottom:969.707251pt;}
.y8c{bottom:975.387067pt;}
.y1dd{bottom:977.467000pt;}
.ye4{bottom:977.467307pt;}
.y15d{bottom:979.147067pt;}
.y18d{bottom:984.987083pt;}
.y3{bottom:986.907067pt;}
.y152{bottom:988.027067pt;}
.y154{bottom:990.827067pt;}
.y15a{bottom:991.707067pt;}
.y15b{bottom:992.027067pt;}
.y151{bottom:992.266363pt;}
.y159{bottom:992.347067pt;}
.y15c{bottom:992.667067pt;}
.y1dc{bottom:992.826992pt;}
.y158{bottom:998.027067pt;}
.y157{bottom:998.667067pt;}
.y57{bottom:1000.347075pt;}
.ye3{bottom:1000.347643pt;}
.y150{bottom:1004.506619pt;}
.y153{bottom:1005.386794pt;}
.y155{bottom:1008.187067pt;}
.y8b{bottom:1010.747067pt;}
.y1db{bottom:1015.627168pt;}
.y56{bottom:1015.707067pt;}
.ye2{bottom:1015.707635pt;}
.y156{bottom:1017.867067pt;}
.y1{bottom:1057.867067pt;}
.hc{height:19.280000pt;}
.h1f{height:22.063001pt;}
.h18{height:22.114152pt;}
.h1c{height:23.667969pt;}
.h1b{height:28.823594pt;}
.h1{height:31.005625pt;}
.h11{height:31.555745pt;}
.ha{height:31.809276pt;}
.h21{height:31.945355pt;}
.h1a{height:32.018533pt;}
.h8{height:35.494375pt;}
.h7{height:36.192031pt;}
.h9{height:37.925781pt;}
.h1e{height:39.206837pt;}
.h20{height:39.904915pt;}
.h19{height:39.996422pt;}
.hf{height:43.580113pt;}
.h15{height:43.608125pt;}
.h4{height:44.568125pt;}
.h14{height:45.690515pt;}
.hb{height:46.058435pt;}
.h10{height:47.020169pt;}
.h5{height:47.020937pt;}
.h23{height:47.621094pt;}
.h3{height:56.312500pt;}
.h17{height:57.031250pt;}
.h13{height:57.072249pt;}
.hd{height:57.532135pt;}
.h1d{height:64.164021pt;}
.h22{height:64.487477pt;}
.h6{height:66.441406pt;}
.h12{height:70.093638pt;}
.h16{height:78.243445pt;}
.h2{height:85.546875pt;}
.he{height:95.097848pt;}
.h0{height:1122.666667pt;}
.w3{width:10.320000pt;}
.w2{width:11.760000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:75.600000pt;}
.x3{left:79.600000pt;}
.x42{left:85.759125pt;}
.x41{left:86.719520pt;}
.x2{left:102.320000pt;}
.x53{left:105.280000pt;}
.x5{left:121.920000pt;}
.x46{left:129.040000pt;}
.x54{left:133.360000pt;}
.x45{left:136.480000pt;}
.x43{left:145.920000pt;}
.x44{left:150.640492pt;}
.x20{left:169.040451pt;}
.x52{left:170.800000pt;}
.x48{left:174.880000pt;}
.x1f{left:177.119632pt;}
.x49{left:182.640000pt;}
.x47{left:195.680000pt;}
.x4a{left:199.520000pt;}
.x4b{left:206.640000pt;}
.x7{left:220.158752pt;}
.x22{left:225.680000pt;}
.x4c{left:229.200000pt;}
.x21{left:237.280000pt;}
.x4{left:254.400000pt;}
.x1d{left:261.040000pt;}
.x1e{left:267.679506pt;}
.x4d{left:277.040000pt;}
.x6{left:296.799728pt;}
.x4e{left:298.960000pt;}
.x8{left:313.120000pt;}
.x4f{left:325.040000pt;}
.x50{left:342.960000pt;}
.x51{left:376.880000pt;}
.x29{left:380.559877pt;}
.x1c{left:381.680000pt;}
.x2b{left:382.801751pt;}
.x2a{left:385.601041pt;}
.x27{left:387.599580pt;}
.x9{left:408.159792pt;}
.x2e{left:418.319125pt;}
.x26{left:419.760000pt;}
.x24{left:427.679576pt;}
.x55{left:436.560480pt;}
.x3f{left:437.840000pt;}
.x1a{left:439.041774pt;}
.x2d{left:446.000812pt;}
.x11{left:446.960190pt;}
.x31{left:461.520000pt;}
.x40{left:465.920000pt;}
.x15{left:468.558759pt;}
.xd{left:476.558836pt;}
.x2f{left:478.480000pt;}
.x30{left:483.200080pt;}
.x1b{left:486.003730pt;}
.x12{left:494.080707pt;}
.x18{left:499.280000pt;}
.x33{left:502.080000pt;}
.x3e{left:503.360000pt;}
.xf{left:507.440000pt;}
.x25{left:512.560000pt;}
.x34{left:515.200000pt;}
.x32{left:528.240000pt;}
.x35{left:532.000000pt;}
.x36{left:539.120000pt;}
.x17{left:550.320000pt;}
.x37{left:561.680000pt;}
.xe{left:573.680000pt;}
.x16{left:575.360000pt;}
.xb{left:583.120000pt;}
.x13{left:584.640000pt;}
.x38{left:587.040000pt;}
.x39{left:609.600000pt;}
.x3a{left:631.520000pt;}
.x10{left:637.600000pt;}
.x19{left:648.400000pt;}
.xc{left:651.120276pt;}
.x3b{left:657.600000pt;}
.x14{left:661.760822pt;}
.x3c{left:675.520000pt;}
.x23{left:679.040000pt;}
.x3d{left:709.440000pt;}
.x28{left:714.079867pt;}
.x2c{left:717.041435pt;}
.xa{left:718.160000pt;}
}




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