
    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_22d82b6b233a052a7e3923da.woff')format("woff");}.ff1{font-family:ff1;line-height:0.871094;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_b8cd0b5cf995c58c3c083c10.woff')format("woff");}.ff2{font-family:ff2;line-height:0.911621;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_28b621c9a032edf5f40ccce1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.930176;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_b61109f0b99fd4e31a2c99e0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_cc6fed9326bded625bbfe99f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.900391;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_2e3fd04515802c732d082659.woff')format("woff");}.ff6{font-family:ff6;line-height:0.692383;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_f205f9d51abb627f652d25dc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_72208aff93bfd2dad26a9a17.woff')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_1117f3a448a56e861758601c.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_afc4df15499c4ec352370cb4.woff')format("woff");}.ffa{font-family:ffa;line-height:0.687500;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_714e1867a0be6e6731019a2c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.866699;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:ffc;src:url('chunks/assets/font_bf926000fa8776725cbf9375.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_993552c05fa7c37d49d18bab.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_bf82337322a07d4583668539.woff')format("woff");}.ffe{font-family:ffe;line-height:1.909180;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:fff;src:url('chunks/assets/font_428bb6820c0a904002dca449.woff')format("woff");}.fff{font-family:fff;line-height:0.839355;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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);}
.m1{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);}
.m2{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);}
.m3{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);}
.v3{vertical-align:-7.200000px;}
.v5{vertical-align:-5.952960px;}
.v6{vertical-align:-2.525040px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.525040px;}
.v9{vertical-align:4.328640px;}
.v7{vertical-align:9.739440px;}
.v8{vertical-align:32.760000px;}
.vc{vertical-align:41.040000px;}
.vb{vertical-align:44.669160px;}
.v2{vertical-align:51.120000px;}
.v1{vertical-align:60.120000px;}
.va{vertical-align:63.005760px;}
.lsa2{letter-spacing:-3.144276px;}
.ls3c{letter-spacing:-2.783556px;}
.ls30{letter-spacing:-1.346688px;}
.ls61{letter-spacing:-0.985968px;}
.ls2c{letter-spacing:-0.372744px;}
.lsc8{letter-spacing:-0.344736px;}
.ls66{letter-spacing:-0.330660px;}
.ls93{letter-spacing:-0.288576px;}
.ls6d{letter-spacing:-0.270540px;}
.ls6f{letter-spacing:-0.234468px;}
.ls72{letter-spacing:-0.222444px;}
.ls1b{letter-spacing:-0.210420px;}
.ls63{letter-spacing:-0.204408px;}
.ls90{letter-spacing:-0.198396px;}
.lsc1{letter-spacing:-0.192384px;}
.ls71{letter-spacing:-0.186372px;}
.ls51{letter-spacing:-0.180360px;}
.ls2d{letter-spacing:-0.174348px;}
.ls54{letter-spacing:-0.168336px;}
.ls4f{letter-spacing:-0.162324px;}
.ls3a{letter-spacing:-0.156312px;}
.ls22{letter-spacing:-0.150300px;}
.ls52{letter-spacing:-0.144288px;}
.ls46{letter-spacing:-0.138276px;}
.ls43{letter-spacing:-0.132264px;}
.ls47{letter-spacing:-0.126252px;}
.ls28{letter-spacing:-0.124200px;}
.ls37{letter-spacing:-0.120240px;}
.ls64{letter-spacing:-0.114228px;}
.ls35{letter-spacing:-0.108216px;}
.ls1f{letter-spacing:-0.102204px;}
.ls50{letter-spacing:-0.096192px;}
.ls25{letter-spacing:-0.091800px;}
.ls3b{letter-spacing:-0.090180px;}
.ls2e{letter-spacing:-0.084168px;}
.ls32{letter-spacing:-0.078156px;}
.ls38{letter-spacing:-0.072144px;}
.ls20{letter-spacing:-0.066132px;}
.ls5e{letter-spacing:-0.062244px;}
.ls69{letter-spacing:-0.060120px;}
.ls19{letter-spacing:-0.057456px;}
.ls33{letter-spacing:-0.054108px;}
.lsc3{letter-spacing:-0.052668px;}
.ls23{letter-spacing:-0.048600px;}
.ls55{letter-spacing:-0.048096px;}
.lsa0{letter-spacing:-0.046656px;}
.lsc2{letter-spacing:-0.043092px;}
.ls5b{letter-spacing:-0.042084px;}
.ls5d{letter-spacing:-0.038304px;}
.ls36{letter-spacing:-0.036072px;}
.ls5c{letter-spacing:-0.033516px;}
.ls41{letter-spacing:-0.030060px;}
.ls58{letter-spacing:-0.028728px;}
.ls18{letter-spacing:-0.027000px;}
.ls44{letter-spacing:-0.024048px;}
.lsc7{letter-spacing:-0.023940px;}
.ls21{letter-spacing:-0.018036px;}
.ls16{letter-spacing:-0.016200px;}
.ls56{letter-spacing:-0.014364px;}
.ls34{letter-spacing:-0.012024px;}
.lsc9{letter-spacing:-0.010800px;}
.lsc6{letter-spacing:-0.009576px;}
.ls1c{letter-spacing:-0.006012px;}
.ls27{letter-spacing:-0.005400px;}
.ls5f{letter-spacing:-0.004788px;}
.ls92{letter-spacing:-0.003888px;}
.ls1a{letter-spacing:0.000000px;}
.ls76{letter-spacing:0.004788px;}
.ls9{letter-spacing:0.005400px;}
.lsf{letter-spacing:0.006012px;}
.ls0{letter-spacing:0.010800px;}
.lsd{letter-spacing:0.012024px;}
.ls2{letter-spacing:0.014400px;}
.ls17{letter-spacing:0.016200px;}
.ls7{letter-spacing:0.018036px;}
.lsba{letter-spacing:0.019152px;}
.ls1{letter-spacing:0.021600px;}
.ls49{letter-spacing:0.024048px;}
.lsa9{letter-spacing:0.028728px;}
.ls3{letter-spacing:0.028800px;}
.ls4a{letter-spacing:0.030060px;}
.lsa8{letter-spacing:0.033516px;}
.lse{letter-spacing:0.036072px;}
.lsb3{letter-spacing:0.038304px;}
.ls4{letter-spacing:0.039528px;}
.ls11{letter-spacing:0.042084px;}
.lsc{letter-spacing:0.043092px;}
.ls9b{letter-spacing:0.043200px;}
.ls9e{letter-spacing:0.047880px;}
.ls4b{letter-spacing:0.048096px;}
.lsab{letter-spacing:0.052668px;}
.ls5{letter-spacing:0.054108px;}
.lsac{letter-spacing:0.057456px;}
.ls15{letter-spacing:0.060120px;}
.lsad{letter-spacing:0.062244px;}
.ls24{letter-spacing:0.064800px;}
.ls3f{letter-spacing:0.066132px;}
.lsb8{letter-spacing:0.067032px;}
.ls6c{letter-spacing:0.071820px;}
.ls6{letter-spacing:0.072144px;}
.ls6b{letter-spacing:0.076608px;}
.ls40{letter-spacing:0.078156px;}
.ls26{letter-spacing:0.081000px;}
.lsbf{letter-spacing:0.081396px;}
.ls2f{letter-spacing:0.084168px;}
.lsbc{letter-spacing:0.086184px;}
.ls29{letter-spacing:0.086400px;}
.ls4e{letter-spacing:0.090180px;}
.lsb4{letter-spacing:0.090972px;}
.lsa{letter-spacing:0.091800px;}
.lsae{letter-spacing:0.095760px;}
.ls45{letter-spacing:0.096192px;}
.ls9d{letter-spacing:0.100548px;}
.ls1d{letter-spacing:0.102204px;}
.lsc5{letter-spacing:0.105336px;}
.ls39{letter-spacing:0.108216px;}
.lsb5{letter-spacing:0.110124px;}
.ls31{letter-spacing:0.114228px;}
.lsb9{letter-spacing:0.114912px;}
.ls6a{letter-spacing:0.119700px;}
.ls8{letter-spacing:0.120240px;}
.lsaf{letter-spacing:0.124488px;}
.ls2b{letter-spacing:0.126252px;}
.ls48{letter-spacing:0.129276px;}
.ls42{letter-spacing:0.132264px;}
.lsc4{letter-spacing:0.134064px;}
.ls14{letter-spacing:0.138276px;}
.lsb1{letter-spacing:0.138852px;}
.lsbe{letter-spacing:0.143640px;}
.ls70{letter-spacing:0.144288px;}
.ls1e{letter-spacing:0.150300px;}
.ls65{letter-spacing:0.156312px;}
.ls67{letter-spacing:0.162324px;}
.lsb0{letter-spacing:0.167580px;}
.ls12{letter-spacing:0.168336px;}
.ls5a{letter-spacing:0.174348px;}
.ls74{letter-spacing:0.180360px;}
.lsa4{letter-spacing:0.180600px;}
.lsaa{letter-spacing:0.181944px;}
.ls3d{letter-spacing:0.192384px;}
.ls13{letter-spacing:0.192389px;}
.lsa5{letter-spacing:0.198120px;}
.ls4c{letter-spacing:0.198463px;}
.lsb6{letter-spacing:0.201096px;}
.ls59{letter-spacing:0.216432px;}
.lsa6{letter-spacing:0.220248px;}
.lsb2{letter-spacing:0.229824px;}
.ls84{letter-spacing:0.240480px;}
.ls57{letter-spacing:0.372744px;}
.ls9c{letter-spacing:1.135296px;}
.ls91{letter-spacing:1.527048px;}
.ls77{letter-spacing:1.893780px;}
.ls68{letter-spacing:4.779540px;}
.ls60{letter-spacing:6.577128px;}
.ls73{letter-spacing:9.811584px;}
.ls75{letter-spacing:10.280520px;}
.ls8f{letter-spacing:12.847644px;}
.ls7c{letter-spacing:12.865680px;}
.ls7d{letter-spacing:12.967884px;}
.ls8b{letter-spacing:13.046040px;}
.ls9f{letter-spacing:13.070088px;}
.ls86{letter-spacing:13.088124px;}
.ls83{letter-spacing:13.106160px;}
.ls95{letter-spacing:13.148244px;}
.ls85{letter-spacing:13.226400px;}
.ls94{letter-spacing:13.406760px;}
.ls6e{letter-spacing:13.412772px;}
.ls7b{letter-spacing:13.466880px;}
.ls96{letter-spacing:13.508964px;}
.ls88{letter-spacing:13.587120px;}
.ls82{letter-spacing:13.947840px;}
.ls78{letter-spacing:14.500944px;}
.ls87{letter-spacing:14.849640px;}
.ls97{letter-spacing:16.599132px;}
.ls98{letter-spacing:16.647228px;}
.ls3e{letter-spacing:19.184292px;}
.ls9a{letter-spacing:20.380680px;}
.ls2a{letter-spacing:20.621160px;}
.lsbd{letter-spacing:24.912000px;}
.lsbb{letter-spacing:24.930000px;}
.ls62{letter-spacing:24.943788px;}
.lsa1{letter-spacing:26.747388px;}
.lsb{letter-spacing:33.727320px;}
.lsb7{letter-spacing:34.569360px;}
.lsc0{letter-spacing:35.368596px;}
.ls53{letter-spacing:40.430700px;}
.ls7a{letter-spacing:43.310448px;}
.ls4d{letter-spacing:57.234240px;}
.lsa3{letter-spacing:57.294360px;}
.ls10{letter-spacing:57.354480px;}
.lsa7{letter-spacing:58.700880px;}
.ls79{letter-spacing:76.803300px;}
.ls8a{letter-spacing:142.304040px;}
.ls7e{letter-spacing:241.622280px;}
.ls80{letter-spacing:292.860000px;}
.ls8d{letter-spacing:331.261200px;}
.ls81{letter-spacing:406.620000px;}
.ls8c{letter-spacing:415.910160px;}
.ls99{letter-spacing:416.030400px;}
.ls8e{letter-spacing:585.809280px;}
.ls7f{letter-spacing:637.020000px;}
.ls89{letter-spacing:660.779400px;}
.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;}
}
.ws3{word-spacing:-54.021600px;}
.ws1{word-spacing:-54.010800px;}
.ws7f{word-spacing:-53.989200px;}
.ws0{word-spacing:-53.983800px;}
.ws2{word-spacing:-53.973000px;}
.ws5c{word-spacing:-29.873628px;}
.ws5b{word-spacing:-26.735364px;}
.ws40{word-spacing:-26.693280px;}
.ws53{word-spacing:-26.633160px;}
.ws60{word-spacing:-26.332560px;}
.ws55{word-spacing:-26.314524px;}
.ws62{word-spacing:-26.296488px;}
.ws4e{word-spacing:-26.272440px;}
.ws42{word-spacing:-26.194284px;}
.ws50{word-spacing:-26.074044px;}
.wsa{word-spacing:-15.222384px;}
.ws48{word-spacing:-15.210360px;}
.ws68{word-spacing:-15.204348px;}
.ws64{word-spacing:-15.198336px;}
.ws3f{word-spacing:-15.192324px;}
.ws6a{word-spacing:-15.186312px;}
.ws7{word-spacing:-15.180300px;}
.ws33{word-spacing:-15.174288px;}
.wse{word-spacing:-15.168276px;}
.ws19{word-spacing:-15.162264px;}
.ws1f{word-spacing:-15.156252px;}
.ws5{word-spacing:-15.150240px;}
.ws3e{word-spacing:-15.144228px;}
.ws1a{word-spacing:-15.138216px;}
.ws18{word-spacing:-15.132204px;}
.ws1c{word-spacing:-15.120180px;}
.ws10{word-spacing:-15.120000px;}
.ws20{word-spacing:-15.114168px;}
.ws23{word-spacing:-15.102144px;}
.wsf{word-spacing:-15.090120px;}
.ws1b{word-spacing:-15.078096px;}
.wsd{word-spacing:-15.066072px;}
.ws32{word-spacing:-15.060060px;}
.ws17{word-spacing:-15.042024px;}
.ws69{word-spacing:-15.036012px;}
.ws2a{word-spacing:-15.030000px;}
.ws29{word-spacing:-15.017976px;}
.ws31{word-spacing:-15.011964px;}
.ws1d{word-spacing:-15.005952px;}
.wsc{word-spacing:-14.999940px;}
.ws9{word-spacing:-14.993928px;}
.ws57{word-spacing:-14.987916px;}
.ws35{word-spacing:-14.975892px;}
.ws4{word-spacing:-14.963868px;}
.ws6f{word-spacing:-14.933808px;}
.ws56{word-spacing:-14.915772px;}
.ws4b{word-spacing:-14.909760px;}
.ws1e{word-spacing:-14.897736px;}
.wsb{word-spacing:-14.891724px;}
.ws6c{word-spacing:-14.885712px;}
.ws70{word-spacing:-14.873688px;}
.ws6e{word-spacing:-14.867676px;}
.ws21{word-spacing:-14.861664px;}
.ws34{word-spacing:-14.807556px;}
.ws71{word-spacing:-14.759460px;}
.ws6{word-spacing:-13.591800px;}
.ws4c{word-spacing:-13.292532px;}
.ws43{word-spacing:-13.250448px;}
.ws5a{word-spacing:-13.232412px;}
.ws4d{word-spacing:-13.226400px;}
.ws54{word-spacing:-13.166280px;}
.ws41{word-spacing:-13.160268px;}
.ws4f{word-spacing:-13.154256px;}
.ws4a{word-spacing:-13.142232px;}
.ws49{word-spacing:-13.118184px;}
.ws51{word-spacing:-13.112172px;}
.ws61{word-spacing:-13.088124px;}
.ws63{word-spacing:-13.082112px;}
.ws59{word-spacing:-13.076100px;}
.ws58{word-spacing:-13.058064px;}
.ws73{word-spacing:-12.190248px;}
.ws7c{word-spacing:-12.171096px;}
.ws79{word-spacing:-12.137580px;}
.ws7b{word-spacing:-12.108852px;}
.ws78{word-spacing:-12.094488px;}
.ws7d{word-spacing:-12.046608px;}
.ws7a{word-spacing:-12.041820px;}
.ws74{word-spacing:-12.027456px;}
.ws77{word-spacing:-12.022668px;}
.ws75{word-spacing:-12.017880px;}
.ws8{word-spacing:-12.013092px;}
.ws76{word-spacing:-12.003516px;}
.ws7e{word-spacing:-11.989152px;}
.ws2b{word-spacing:-11.965212px;}
.ws6b{word-spacing:-11.955636px;}
.ws72{word-spacing:-11.926908px;}
.ws52{word-spacing:-9.720000px;}
.ws67{word-spacing:-9.688896px;}
.ws66{word-spacing:-8.506944px;}
.ws15{word-spacing:-3.042072px;}
.ws16{word-spacing:-1.340676px;}
.ws25{word-spacing:-0.378756px;}
.ws24{word-spacing:-0.215460px;}
.ws36{word-spacing:-0.210672px;}
.ws47{word-spacing:-0.132264px;}
.ws6d{word-spacing:-0.072144px;}
.ws12{word-spacing:-0.028728px;}
.ws3a{word-spacing:-0.024048px;}
.ws11{word-spacing:0.000000px;}
.ws38{word-spacing:0.024048px;}
.ws2e{word-spacing:0.036072px;}
.ws46{word-spacing:0.192384px;}
.ws3c{word-spacing:0.204408px;}
.ws2f{word-spacing:0.210420px;}
.ws37{word-spacing:0.300600px;}
.ws44{word-spacing:1.442880px;}
.ws5f{word-spacing:2.519028px;}
.ws80{word-spacing:3.727440px;}
.ws5e{word-spacing:3.841668px;}
.ws5d{word-spacing:4.683348px;}
.ws2d{word-spacing:8.651268px;}
.ws45{word-spacing:8.981928px;}
.ws82{word-spacing:9.252468px;}
.ws27{word-spacing:10.100160px;}
.ws3d{word-spacing:11.068092px;}
.ws28{word-spacing:12.426804px;}
.ws22{word-spacing:14.669280px;}
.ws30{word-spacing:19.466856px;}
.ws14{word-spacing:20.500920px;}
.ws3b{word-spacing:22.318200px;}
.ws81{word-spacing:25.039980px;}
.ws13{word-spacing:27.194400px;}
.ws2c{word-spacing:29.627136px;}
.ws39{word-spacing:33.841548px;}
.ws83{word-spacing:35.903664px;}
.ws65{word-spacing:40.894200px;}
.ws26{word-spacing:74.200104px;}
._36{margin-left:-77.982084px;}
._35{margin-left:-76.556664px;}
._38{margin-left:-43.785396px;}
._39{margin-left:-42.769368px;}
._23{margin-left:-40.899194px;}
._24{margin-left:-39.775834px;}
._43{margin-left:-36.119954px;}
._42{margin-left:-34.983970px;}
._40{margin-left:-27.540972px;}
._2e{margin-left:-25.797492px;}
._2d{margin-left:-24.751404px;}
._b{margin-left:-21.721356px;}
._a{margin-left:-20.609136px;}
._15{margin-left:-19.334592px;}
._16{margin-left:-18.322056px;}
._3e{margin-left:-17.242416px;}
._3d{margin-left:-16.214364px;}
._30{margin-left:-14.621184px;}
._2f{margin-left:-13.268484px;}
._31{margin-left:-12.252456px;}
._33{margin-left:-10.827612px;}
._32{margin-left:-9.673308px;}
._2b{margin-left:-7.034040px;}
._2c{margin-left:-6.030036px;}
._17{margin-left:-4.022172px;}
._7{margin-left:-2.813472px;}
._1{margin-left:-1.166328px;}
._0{width:1.091664px;}
._6{width:2.124143px;}
._2{width:3.455929px;}
._5{width:4.903200px;}
._12{width:6.753240px;}
._3{width:8.272800px;}
._4{width:9.347400px;}
._18{width:10.713384px;}
._f{width:12.186324px;}
._e{width:13.298544px;}
._8{width:14.666400px;}
._3b{width:15.823584px;}
._19{width:16.839612px;}
._1c{width:17.987784px;}
._21{width:19.244412px;}
._c{width:20.350620px;}
._11{width:21.534984px;}
._d{width:22.773456px;}
._1a{width:23.927760px;}
._1b{width:25.334568px;}
._9{width:26.913600px;}
._20{width:28.541088px;}
._2a{width:29.633148px;}
._10{width:30.727332px;}
._22{width:32.482778px;}
._1f{width:33.528938px;}
._29{width:34.583530px;}
._26{width:36.474804px;}
._28{width:38.304972px;}
._1e{width:39.745222px;}
._27{width:41.551673px;}
._37{width:43.334496px;}
._44{width:44.771604px;}
._3a{width:46.166148px;}
._14{width:47.428668px;}
._13{width:48.817440px;}
._41{width:50.097996px;}
._1d{width:60.955668px;}
._3f{width:61.975800px;}
._25{width:73.677060px;}
._34{width:76.003560px;}
._3c{width:497.763540px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs1{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.120000px;}
.fs7{font-size:60.480000px;}
.fs3{font-size:65.880000px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.ye{bottom:3.240450px;}
.y11{bottom:3.240600px;}
.y5a{bottom:3.660000px;}
.y1f1{bottom:8.640450px;}
.y1f8{bottom:13.140450px;}
.y211{bottom:18.810450px;}
.y24f{bottom:18.900450px;}
.y256{bottom:18.900600px;}
.y1d2{bottom:20.970600px;}
.y1e0{bottom:36.450450px;}
.y20e{bottom:36.540450px;}
.y253{bottom:36.540600px;}
.y1dc{bottom:36.990450px;}
.y200{bottom:36.990600px;}
.y6{bottom:48.810450px;}
.y59{bottom:55.500000px;}
.y58{bottom:57.720000px;}
.y2a1{bottom:110.000430px;}
.y19c{bottom:112.993950px;}
.yca{bottom:114.780450px;}
.y138{bottom:115.060530px;}
.y104{bottom:118.411500px;}
.y9a{bottom:121.260180px;}
.y36{bottom:122.434830px;}
.y16c{bottom:125.847360px;}
.y2a0{bottom:127.284930px;}
.y19b{bottom:130.188270px;}
.y137{bottom:132.345030px;}
.y263{bottom:132.870000px;}
.y56{bottom:133.591650px;}
.y103{bottom:135.605820px;}
.y99{bottom:138.540150px;}
.y35{bottom:139.719330px;}
.y229{bottom:140.052810px;}
.y16b{bottom:143.131860px;}
.y29f{bottom:144.480750px;}
.y19a{bottom:147.472770px;}
.y136{bottom:149.539350px;}
.y55{bottom:150.781410px;}
.y265{bottom:151.765230px;}
.y266{bottom:151.770450px;}
.y102{bottom:152.890320px;}
.y98{bottom:156.810600px;}
.y34{bottom:157.003830px;}
.y228{bottom:157.247130px;}
.y16a{bottom:160.416360px;}
.y199{bottom:164.757270px;}
.y135{bottom:166.823850px;}
.y29d{bottom:167.696370px;}
.y29e{bottom:167.700600px;}
.y54{bottom:168.061350px;}
.y264{bottom:169.410450px;}
.y101{bottom:170.174820px;}
.y97{bottom:174.090600px;}
.y33{bottom:174.198150px;}
.y227{bottom:174.531630px;}
.y169{bottom:177.610680px;}
.y198{bottom:181.951590px;}
.y134{bottom:184.108350px;}
.y53{bottom:185.341350px;}
.y100{bottom:187.369140px;}
.y32{bottom:191.482650px;}
.y226{bottom:191.816130px;}
.y96{bottom:192.442260px;}
.y168{bottom:194.895180px;}
.y197{bottom:199.236090px;}
.y260{bottom:200.820000px;}
.y133{bottom:201.302670px;}
.y29c{bottom:202.971780px;}
.y52{bottom:203.611800px;}
.yff{bottom:204.653640px;}
.y31{bottom:208.676970px;}
.y225{bottom:208.983810px;}
.y95{bottom:210.721800px;}
.y167{bottom:212.179680px;}
.y196{bottom:216.520590px;}
.y132{bottom:218.587170px;}
.y262{bottom:219.715410px;}
.y29b{bottom:220.256280px;}
.y51{bottom:220.891800px;}
.yfe{bottom:221.938140px;}
.y30{bottom:225.961470px;}
.y224{bottom:226.268310px;}
.y94{bottom:228.001800px;}
.y166{bottom:229.374000px;}
.y195{bottom:233.714910px;}
.y131{bottom:235.871670px;}
.y261{bottom:237.270450px;}
.y25f{bottom:237.287970px;}
.y29a{bottom:237.450600px;}
.y50{bottom:238.150800px;}
.yfd{bottom:239.132460px;}
.y2f{bottom:243.245970px;}
.y223{bottom:243.552810px;}
.y93{bottom:246.339840px;}
.y165{bottom:246.658500px;}
.y194{bottom:250.999410px;}
.y130{bottom:253.065990px;}
.y4f{bottom:255.345120px;}
.yfc{bottom:256.416960px;}
.y2e{bottom:260.440290px;}
.y222{bottom:260.747130px;}
.y299{bottom:263.100450px;}
.y92{bottom:263.534160px;}
.y164{bottom:263.852820px;}
.y193{bottom:268.193730px;}
.y12f{bottom:270.350490px;}
.y4e{bottom:272.629620px;}
.yfb{bottom:273.701460px;}
.y2d{bottom:277.724790px;}
.y221{bottom:278.031630px;}
.y163{bottom:281.137320px;}
.y91{bottom:281.900820px;}
.y2e8{bottom:283.082070px;}
.y12e{bottom:287.544810px;}
.y25e{bottom:289.126440px;}
.y4d{bottom:289.914120px;}
.y2b1{bottom:290.188950px;}
.yfa{bottom:290.895780px;}
.y192{bottom:291.415080px;}
.y2c{bottom:295.009290px;}
.y220{bottom:295.316130px;}
.y162{bottom:298.421820px;}
.y2e7{bottom:299.014140px;}
.y90{bottom:300.183300px;}
.y12d{bottom:304.829310px;}
.y4c{bottom:307.108440px;}
.y2b0{bottom:307.468950px;}
.y25d{bottom:308.019150px;}
.yf9{bottom:308.180280px;}
.y2b{bottom:312.203610px;}
.y21f{bottom:312.510450px;}
.y2e6{bottom:314.850450px;}
.y161{bottom:315.616140px;}
.y8f{bottom:317.236350px;}
.y12c{bottom:322.113810px;}
.y4b{bottom:324.392940px;}
.yf8{bottom:325.374600px;}
.y2af{bottom:325.829700px;}
.y191{bottom:326.690490px;}
.y25c{bottom:327.002040px;}
.y2a{bottom:329.488110px;}
.y21e{bottom:329.786130px;}
.y2e5{bottom:330.685860px;}
.y160{bottom:332.900640px;}
.y8e{bottom:335.603010px;}
.y12b{bottom:339.308130px;}
.y4a{bottom:341.671500px;}
.yf7{bottom:342.659100px;}
.y2ae{bottom:343.019400px;}
.y190{bottom:343.974990px;}
.y2e4{bottom:346.617930px;}
.y29{bottom:346.772610px;}
.y21d{bottom:346.938690px;}
.y15f{bottom:350.185140px;}
.y8d{bottom:352.797330px;}
.y12a{bottom:356.592630px;}
.y49{bottom:358.861200px;}
.y2ad{bottom:360.299400px;}
.y18f{bottom:361.259490px;}
.y2e3{bottom:362.365950px;}
.y25b{bottom:362.989260px;}
.y28{bottom:363.966930px;}
.y21c{bottom:364.223190px;}
.yf5{bottom:365.875770px;}
.yf6{bottom:365.880450px;}
.y15e{bottom:367.379460px;}
.y8c{bottom:370.081830px;}
.yc9{bottom:371.090430px;}
.y129{bottom:373.877130px;}
.y48{bottom:377.058060px;}
.y2ac{bottom:377.562900px;}
.y18e{bottom:378.453810px;}
.y2e2{bottom:380.007930px;}
.y27{bottom:381.251430px;}
.y21b{bottom:381.507690px;}
.yf3{bottom:382.992060px;}
.yf4{bottom:383.160450px;}
.y15d{bottom:384.663960px;}
.y8b{bottom:387.366330px;}
.yc8{bottom:388.374930px;}
.y128{bottom:391.071450px;}
.y47{bottom:394.342560px;}
.y2ab{bottom:394.757220px;}
.y18d{bottom:395.738310px;}
.y2e1{bottom:395.760450px;}
.y26{bottom:398.535930px;}
.y21a{bottom:398.702010px;}
.y25a{bottom:400.699530px;}
.y15c{bottom:401.948460px;}
.y8a{bottom:404.560650px;}
.yc7{bottom:405.570750px;}
.y127{bottom:408.355950px;}
.y46{bottom:411.536880px;}
.y2aa{bottom:412.049250px;}
.y18c{bottom:413.022810px;}
.y2e0{bottom:413.438070px;}
.y25{bottom:415.730250px;}
.y219{bottom:415.986510px;}
.yf2{bottom:418.267470px;}
.y15b{bottom:419.142780px;}
.y89{bottom:421.845150px;}
.y1bf{bottom:422.760450px;}
.y259{bottom:424.281600px;}
.y126{bottom:425.640450px;}
.yc5{bottom:428.683260px;}
.yc6{bottom:428.790600px;}
.y45{bottom:428.821380px;}
.y2df{bottom:429.274380px;}
.y18b{bottom:430.217130px;}
.y2a9{bottom:430.378320px;}
.y24{bottom:433.014750px;}
.y218{bottom:433.271010px;}
.yf1{bottom:435.461790px;}
.y15a{bottom:436.427280px;}
.y88{bottom:439.129650px;}
.y2de{bottom:445.110690px;}
.y1be{bottom:446.027880px;}
.y44{bottom:447.097860px;}
.y18a{bottom:447.501630px;}
.y2a8{bottom:447.572640px;}
.y258{bottom:447.956010px;}
.y23{bottom:450.299250px;}
.y217{bottom:450.465330px;}
.y125{bottom:451.290600px;}
.yf0{bottom:452.746290px;}
.y287{bottom:452.910450px;}
.y159{bottom:453.711780px;}
.y87{bottom:456.323970px;}
.y2dd{bottom:461.042760px;}
.y1bd{bottom:463.312380px;}
.yc4{bottom:463.958670px;}
.y43{bottom:464.382360px;}
.y189{bottom:464.786130px;}
.y2a7{bottom:464.857140px;}
.y216{bottom:467.749830px;}
.yef{bottom:470.030790px;}
.y158{bottom:470.910600px;}
.y1ea{bottom:473.250600px;}
.y22{bottom:473.520600px;}
.y86{bottom:473.608470px;}
.y286{bottom:476.266620px;}
.y2dc{bottom:476.879070px;}
.y1bc{bottom:480.506700px;}
.yc3{bottom:481.243170px;}
.y42{bottom:481.666860px;}
.y188{bottom:481.980450px;}
.y2a6{bottom:483.223800px;}
.y252{bottom:483.960000px;}
.y215{bottom:485.034330px;}
.y298{bottom:486.740370px;}
.yee{bottom:487.225110px;}
.y85{bottom:490.802790px;}
.y2db{bottom:492.715380px;}
.y285{bottom:493.460940px;}
.y1e9{bottom:496.648020px;}
.y1bb{bottom:497.791200px;}
.yc2{bottom:498.437490px;}
.y41{bottom:498.861180px;}
.y2a5{bottom:501.500280px;}
.y214{bottom:502.224870px;}
.y255{bottom:502.855380px;}
.y257{bottom:502.860600px;}
.y297{bottom:504.024870px;}
.yed{bottom:504.509610px;}
.y157{bottom:506.284950px;}
.y187{bottom:507.630450px;}
.y84{bottom:508.087290px;}
.y21{bottom:508.539450px;}
.y2da{bottom:508.551690px;}
.y284{bottom:510.745440px;}
.y1e8{bottom:513.842340px;}
.y1ba{bottom:515.075700px;}
.yc1{bottom:515.721990px;}
.y40{bottom:516.145680px;}
.y20d{bottom:516.270000px;}
.y2a4{bottom:518.784780px;}
.y254{bottom:520.500600px;}
.y296{bottom:521.309370px;}
.y156{bottom:521.580450px;}
.yec{bottom:521.794110px;}
.y20{bottom:523.564950px;}
.y2d9{bottom:524.483760px;}
.y83{bottom:525.371790px;}
.y283{bottom:527.939760px;}
.y1e7{bottom:531.126840px;}
.y1b9{bottom:532.270020px;}
.yc0{bottom:533.006490px;}
.y3f{bottom:533.430180px;}
.y210{bottom:535.075050px;}
.y212{bottom:535.080450px;}
.y2a3{bottom:535.979100px;}
.y295{bottom:538.503690px;}
.yeb{bottom:538.988430px;}
.y2d8{bottom:540.320070px;}
.y124{bottom:541.205400px;}
.y82{bottom:542.566110px;}
.y1b8{bottom:549.554520px;}
.ybf{bottom:550.200810px;}
.y3e{bottom:550.624500px;}
.y282{bottom:551.161110px;}
.y24e{bottom:551.910000px;}
.y20c{bottom:552.798030px;}
.y20f{bottom:552.810450px;}
.y155{bottom:553.117170px;}
.y1f{bottom:553.534950px;}
.y251{bottom:554.880450px;}
.y294{bottom:555.780600px;}
.y2d7{bottom:556.156380px;}
.yea{bottom:556.272930px;}
.y123{bottom:558.489900px;}
.y2a2{bottom:559.054020px;}
.y81{bottom:559.850610px;}
.y1b7{bottom:566.839020px;}
.ybe{bottom:567.485310px;}
.y3d{bottom:567.909000px;}
.y1e{bottom:568.479450px;}
.y20b{bottom:570.353070px;}
.y154{bottom:570.401670px;}
.y250{bottom:570.810450px;}
.y24d{bottom:570.818100px;}
.y1e5{bottom:571.437300px;}
.y2d6{bottom:572.088450px;}
.ye9{bottom:573.557430px;}
.y122{bottom:575.774400px;}
.y80{bottom:577.135110px;}
.y1d{bottom:583.504950px;}
.y1b6{bottom:584.033340px;}
.ybd{bottom:584.769810px;}
.y3c{bottom:585.193500px;}
.y281{bottom:586.436520px;}
.y153{bottom:587.595990px;}
.y2d5{bottom:587.924760px;}
.y20a{bottom:587.998290px;}
.y1e4{bottom:589.084320px;}
.y1e6{bottom:589.262880px;}
.ye8{bottom:590.751750px;}
.y121{bottom:592.968720px;}
.y7f{bottom:594.329430px;}
.y1c{bottom:598.530450px;}
.y1b5{bottom:601.317840px;}
.ybc{bottom:601.964130px;}
.y3b{bottom:602.387820px;}
.y1df{bottom:603.300000px;}
.y280{bottom:603.721020px;}
.y2d4{bottom:603.761070px;}
.y152{bottom:604.880490px;}
.y209{bottom:605.553330px;}
.y293{bottom:607.710450px;}
.ye7{bottom:608.036250px;}
.y120{bottom:610.253220px;}
.y7e{bottom:611.613930px;}
.y1b{bottom:613.474950px;}
.y1b4{bottom:618.602340px;}
.ybb{bottom:619.248630px;}
.y3a{bottom:619.672320px;}
.y2d3{bottom:619.693140px;}
.y1db{bottom:620.310000px;}
.y27f{bottom:621.005520px;}
.y151{bottom:622.164990px;}
.y1e2{bottom:622.195410px;}
.y24c{bottom:622.566390px;}
.y208{bottom:623.108370px;}
.y213{bottom:623.366670px;}
.ye6{bottom:625.320750px;}
.y11f{bottom:627.537720px;}
.y1a{bottom:628.500450px;}
.y7d{bottom:628.898430px;}
.y2d2{bottom:635.529450px;}
.y1b3{bottom:635.796660px;}
.yba{bottom:636.533130px;}
.y39{bottom:636.956820px;}
.y27e{bottom:638.199840px;}
.y150{bottom:639.359310px;}
.y1de{bottom:639.745410px;}
.y1e1{bottom:639.750450px;}
.y1e3{bottom:640.652250px;}
.ye5{bottom:642.515070px;}
.y24b{bottom:642.901980px;}
.y19{bottom:643.525950px;}
.y11e{bottom:644.732040px;}
.y7c{bottom:646.092750px;}
.y186{bottom:650.168130px;}
.y2d1{bottom:651.365760px;}
.yb9{bottom:653.727450px;}
.y38{bottom:654.151140px;}
.y27d{bottom:655.484340px;}
.y14f{bottom:656.643810px;}
.y1da{bottom:657.298470px;}
.y1dd{bottom:657.300450px;}
.y207{bottom:657.842700px;}
.y18{bottom:658.470450px;}
.y1b2{bottom:659.018010px;}
.ye4{bottom:659.799570px;}
.y11d{bottom:662.016540px;}
.y7b{bottom:663.377250px;}
.y2d0{bottom:667.297830px;}
.y185{bottom:667.452630px;}
.yb8{bottom:671.011950px;}
.y37{bottom:671.435640px;}
.y27c{bottom:672.768840px;}
.y17{bottom:673.500000px;}
.y14e{bottom:673.928310px;}
.ye3{bottom:677.084070px;}
.y24a{bottom:678.900300px;}
.y11c{bottom:679.210860px;}
.y7a{bottom:680.661750px;}
.y2cf{bottom:683.134140px;}
.y184{bottom:684.737130px;}
.yb7{bottom:688.296450px;}
.y27b{bottom:689.963160px;}
.y14d{bottom:691.122630px;}
.y1d7{bottom:692.118000px;}
.y1d8{bottom:692.130450px;}
.ye2{bottom:694.278390px;}
.y1b1{bottom:694.293420px;}
.y206{bottom:696.089820px;}
.y11b{bottom:696.495360px;}
.y79{bottom:697.856070px;}
.y2ce{bottom:698.970450px;}
.y183{bottom:701.931450px;}
.yb6{bottom:705.490770px;}
.y27a{bottom:707.247660px;}
.y14c{bottom:708.407130px;}
.y1d6{bottom:709.763220px;}
.ye1{bottom:711.562890px;}
.y1b0{bottom:711.577920px;}
.y249{bottom:713.460300px;}
.y11a{bottom:713.779860px;}
.y2cd{bottom:714.900450px;}
.y78{bottom:715.140570px;}
.y1d9{bottom:718.410450px;}
.y182{bottom:719.215950px;}
.yb5{bottom:722.775270px;}
.y279{bottom:724.532160px;}
.y14b{bottom:725.691630px;}
.y1d5{bottom:727.318260px;}
.ye0{bottom:728.757210px;}
.y1af{bottom:728.772240px;}
.y2cc{bottom:730.742070px;}
.y205{bottom:730.824150px;}
.y119{bottom:730.974180px;}
.y248{bottom:731.714250px;}
.y77{bottom:732.425070px;}
.y15{bottom:732.810000px;}
.y16{bottom:736.050450px;}
.y14{bottom:736.065720px;}
.y181{bottom:736.500450px;}
.yb4{bottom:740.059770px;}
.y278{bottom:741.726480px;}
.y14a{bottom:742.885950px;}
.ydf{bottom:746.041710px;}
.y1ae{bottom:746.056740px;}
.y2cb{bottom:746.578380px;}
.y204{bottom:748.018470px;}
.y118{bottom:748.258680px;}
.y76{bottom:749.619390px;}
.yb3{bottom:757.254090px;}
.y1d1{bottom:758.820000px;}
.y149{bottom:760.170450px;}
.y1d4{bottom:762.145380px;}
.y180{bottom:762.150450px;}
.y13{bottom:762.338160px;}
.y2ca{bottom:762.510450px;}
.yde{bottom:763.326210px;}
.y1ad{bottom:763.341240px;}
.y117{bottom:765.543180px;}
.y75{bottom:766.903890px;}
.y247{bottom:767.350380px;}
.yb2{bottom:774.538590px;}
.y148{bottom:777.454950px;}
.y2c9{bottom:778.354140px;}
.y1d0{bottom:779.735280px;}
.y1d3{bottom:779.790600px;}
.ydd{bottom:780.520530px;}
.y1ac{bottom:780.535560px;}
.y1ff{bottom:780.870000px;}
.y202{bottom:782.665230px;}
.y116{bottom:782.737500px;}
.y74{bottom:784.188390px;}
.y246{bottom:784.544700px;}
.y10{bottom:785.370000px;}
.y12{bottom:788.610600px;}
.yf{bottom:788.618190px;}
.y276{bottom:790.316490px;}
.yb1{bottom:791.823090px;}
.y2c8{bottom:794.190450px;}
.y147{bottom:794.649270px;}
.y1cf{bottom:797.290320px;}
.ydc{bottom:797.805030px;}
.y1ab{bottom:797.820060px;}
.y1fc{bottom:798.420000px;}
.y274{bottom:798.510450px;}
.y277{bottom:799.229700px;}
.y115{bottom:800.022000px;}
.y201{bottom:800.310450px;}
.y73{bottom:801.382710px;}
.y245{bottom:801.829200px;}
.y272{bottom:807.510450px;}
.yb0{bottom:809.017410px;}
.y203{bottom:809.130450px;}
.y2c7{bottom:810.120450px;}
.yd{bottom:811.560000px;}
.y146{bottom:811.933770px;}
.yc{bottom:814.800450px;}
.y1ce{bottom:814.845360px;}
.y273{bottom:814.980450px;}
.ydb{bottom:815.089530px;}
.y1aa{bottom:815.104560px;}
.y114{bottom:817.306500px;}
.y1fe{bottom:817.855410px;}
.y72{bottom:818.667210px;}
.y244{bottom:819.113700px;}
.y2c6{bottom:825.964140px;}
.yaf{bottom:826.301910px;}
.y275{bottom:827.670450px;}
.y145{bottom:829.128090px;}
.yda{bottom:832.283850px;}
.y1a9{bottom:832.298880px;}
.y113{bottom:834.500820px;}
.yb{bottom:835.140450px;}
.y1fd{bottom:835.410450px;}
.y1fb{bottom:835.422060px;}
.y71{bottom:835.951710px;}
.y243{bottom:836.308020px;}
.y2c5{bottom:841.800450px;}
.yae{bottom:843.496230px;}
.y144{bottom:846.412590px;}
.yd9{bottom:849.568350px;}
.y1cd{bottom:849.579690px;}
.y1a8{bottom:849.583380px;}
.y292{bottom:853.008150px;}
.y70{bottom:853.146030px;}
.y242{bottom:853.593420px;}
.y112{bottom:856.189110px;}
.y271{bottom:856.614630px;}
.y2c4{bottom:857.640450px;}
.yad{bottom:860.780730px;}
.y143{bottom:863.697090px;}
.yd8{bottom:866.852850px;}
.y1cc{bottom:866.864190px;}
.y1a7{bottom:866.867880px;}
.y23e{bottom:867.630000px;}
.y1fa{bottom:870.156390px;}
.y291{bottom:870.292650px;}
.y17f{bottom:870.343380px;}
.y6f{bottom:870.430530px;}
.y2c3{bottom:873.588450px;}
.y270{bottom:873.899130px;}
.yac{bottom:878.071200px;}
.y142{bottom:880.891410px;}
.y111{bottom:883.994610px;}
.yd7{bottom:884.047170px;}
.y1cb{bottom:884.058510px;}
.y1a6{bottom:884.062200px;}
.y23b{bottom:884.640000px;}
.y240{bottom:886.433970px;}
.ya{bottom:886.620450px;}
.y17e{bottom:887.537700px;}
.y290{bottom:887.577150px;}
.y6e{bottom:887.624850px;}
.y2c2{bottom:889.424760px;}
.y26f{bottom:891.093450px;}
.yab{bottom:895.261050px;}
.y141{bottom:898.175910px;}
.y110{bottom:901.279110px;}
.yd6{bottom:901.331670px;}
.y1ca{bottom:901.343010px;}
.y1a5{bottom:901.346700px;}
.y1f7{bottom:901.380000px;}
.y238{bottom:902.190000px;}
.y23d{bottom:904.075410px;}
.y23f{bottom:904.710450px;}
.y28f{bottom:904.771470px;}
.y17d{bottom:904.822200px;}
.y6d{bottom:904.909350px;}
.y241{bottom:905.161350px;}
.y2c1{bottom:905.261070px;}
.y26e{bottom:908.377950px;}
.yaa{bottom:912.544050px;}
.y1f6{bottom:914.511090px;}
.y1f9{bottom:914.520450px;}
.y140{bottom:915.460410px;}
.y10f{bottom:918.563610px;}
.yd5{bottom:918.616170px;}
.y1c9{bottom:918.627510px;}
.y1a4{bottom:918.631200px;}
.y2c0{bottom:921.193140px;}
.y23a{bottom:921.625410px;}
.y23c{bottom:921.630450px;}
.y28e{bottom:922.055970px;}
.y17c{bottom:922.106700px;}
.y6c{bottom:922.193850px;}
.y26d{bottom:925.662450px;}
.y9{bottom:928.020450px;}
.ya9{bottom:929.821050px;}
.y1f5{bottom:932.156310px;}
.y13f{bottom:932.654730px;}
.y10e{bottom:935.757930px;}
.yd4{bottom:935.810490px;}
.y1c8{bottom:935.821830px;}
.y1a3{bottom:935.825520px;}
.y2bf{bottom:937.029450px;}
.y237{bottom:939.107730px;}
.y239{bottom:939.180450px;}
.y17b{bottom:939.301020px;}
.y28d{bottom:939.340470px;}
.y6b{bottom:939.388170px;}
.y26c{bottom:942.856770px;}
.ya8{bottom:948.090000px;}
.y1f4{bottom:949.801530px;}
.y13e{bottom:949.939230px;}
.y2be{bottom:952.865760px;}
.y10d{bottom:953.042430px;}
.yd3{bottom:953.094990px;}
.y1c7{bottom:953.106330px;}
.y1a2{bottom:953.110020px;}
.y28c{bottom:956.534790px;}
.y17a{bottom:956.585520px;}
.y6a{bottom:956.672670px;}
.y26b{bottom:960.141270px;}
.ya7{bottom:965.374500px;}
.y13d{bottom:967.223730px;}
.y2bd{bottom:968.797830px;}
.y8{bottom:969.420450px;}
.y10c{bottom:970.326930px;}
.yd2{bottom:970.379490px;}
.y1c6{bottom:970.390830px;}
.y1a1{bottom:970.394520px;}
.y28b{bottom:973.819290px;}
.y179{bottom:973.870020px;}
.y236{bottom:973.932240px;}
.y69{bottom:973.957170px;}
.y26a{bottom:983.359920px;}
.ya6{bottom:983.723730px;}
.y13c{bottom:984.418050px;}
.y1f3{bottom:984.535860px;}
.y2bc{bottom:984.634140px;}
.y10b{bottom:987.521250px;}
.yd1{bottom:987.573810px;}
.y1c5{bottom:987.585150px;}
.y1a0{bottom:987.588840px;}
.y28a{bottom:991.013610px;}
.y178{bottom:991.064340px;}
.y235{bottom:991.126560px;}
.y68{bottom:991.151490px;}
.y2bb{bottom:1000.470450px;}
.ya5{bottom:1000.918050px;}
.y13b{bottom:1001.702550px;}
.y10a{bottom:1004.805750px;}
.yd0{bottom:1004.858310px;}
.y1c4{bottom:1004.869650px;}
.y19f{bottom:1004.873340px;}
.y289{bottom:1008.301050px;}
.y177{bottom:1008.348840px;}
.y234{bottom:1008.411060px;}
.y67{bottom:1008.435990px;}
.y7{bottom:1010.820450px;}
.y1f0{bottom:1015.770000px;}
.y13a{bottom:1018.987050px;}
.ya4{bottom:1019.272620px;}
.y109{bottom:1022.090250px;}
.ycf{bottom:1022.142810px;}
.y1c3{bottom:1022.154150px;}
.y19e{bottom:1022.157840px;}
.y2ba{bottom:1023.867930px;}
.y1f2{bottom:1024.410450px;}
.y1ef{bottom:1024.412880px;}
.y176{bottom:1025.633340px;}
.y233{bottom:1025.695560px;}
.y66{bottom:1025.720490px;}
.ya3{bottom:1036.557150px;}
.y269{bottom:1039.076130px;}
.y108{bottom:1039.284570px;}
.yce{bottom:1039.337130px;}
.y1c2{bottom:1039.348470px;}
.y1ee{bottom:1042.058100px;}
.y139{bottom:1042.208400px;}
.y175{bottom:1042.827660px;}
.y232{bottom:1042.889880px;}
.y65{bottom:1042.914810px;}
.ya2{bottom:1054.803540px;}
.y107{bottom:1056.569070px;}
.ycd{bottom:1056.621630px;}
.y1c1{bottom:1056.632970px;}
.y2b9{bottom:1059.143340px;}
.y1ed{bottom:1059.703320px;}
.y174{bottom:1060.112160px;}
.y231{bottom:1060.174380px;}
.y64{bottom:1060.199310px;}
.y268{bottom:1062.658200px;}
.ya1{bottom:1072.088040px;}
.y106{bottom:1073.763390px;}
.ycc{bottom:1073.815950px;}
.y1c0{bottom:1073.819850px;}
.y19d{bottom:1073.820450px;}
.y2b8{bottom:1076.427840px;}
.y173{bottom:1077.396660px;}
.y230{bottom:1077.458880px;}
.y63{bottom:1077.483810px;}
.y267{bottom:1086.330450px;}
.ya0{bottom:1090.364520px;}
.y105{bottom:1091.047890px;}
.ycb{bottom:1091.100450px;}
.y2b7{bottom:1093.622160px;}
.y288{bottom:1093.975770px;}
.y1ec{bottom:1094.437650px;}
.y172{bottom:1094.590980px;}
.y22f{bottom:1094.653200px;}
.y62{bottom:1094.678130px;}
.y9f{bottom:1108.738650px;}
.y2b6{bottom:1110.899100px;}
.y171{bottom:1111.875480px;}
.y22e{bottom:1111.937700px;}
.y61{bottom:1111.962630px;}
.y9e{bottom:1126.018650px;}
.y2b5{bottom:1128.161100px;}
.y1eb{bottom:1128.991620px;}
.y170{bottom:1129.159980px;}
.y22d{bottom:1129.222200px;}
.y60{bottom:1129.247130px;}
.y5{bottom:1141.680450px;}
.y9d{bottom:1144.289100px;}
.y16f{bottom:1146.354300px;}
.y22c{bottom:1146.416520px;}
.y2b4{bottom:1146.437580px;}
.y5f{bottom:1146.441450px;}
.y4{bottom:1158.150450px;}
.y5b{bottom:1161.480000px;}
.y9c{bottom:1162.649850px;}
.y16e{bottom:1163.638800px;}
.y22b{bottom:1163.701020px;}
.y2b3{bottom:1163.722080px;}
.y5e{bottom:1163.725950px;}
.y3{bottom:1174.620450px;}
.y9b{bottom:1179.929850px;}
.y16d{bottom:1180.923300px;}
.y22a{bottom:1180.985520px;}
.y2b2{bottom:1181.009550px;}
.y5d{bottom:1181.010450px;}
.y2{bottom:1191.090450px;}
.y57{bottom:1192.440000px;}
.y1{bottom:1207.560450px;}
.y5c{bottom:1209.180450px;}
.h6{height:16.740000px;}
.h10{height:18.000000px;}
.h2{height:31.912207px;}
.h35{height:33.120000px;}
.h11{height:33.244805px;}
.h1f{height:36.624023px;}
.h7{height:36.966797px;}
.h1{height:37.415039px;}
.h1d{height:41.156367px;}
.h1e{height:41.743477px;}
.h3e{height:41.754277px;}
.h8{height:42.011895px;}
.h49{height:42.029895px;}
.hf{height:44.763750px;}
.h23{height:47.381836px;}
.he{height:47.988281px;}
.h40{height:48.220313px;}
.h3c{height:50.670000px;}
.h37{height:50.760000px;}
.h2a{height:51.210000px;}
.h32{height:51.300000px;}
.h5{height:52.751777px;}
.h16{height:52.751897px;}
.hd{height:52.752017px;}
.h14{height:52.757537px;}
.h1b{height:52.757777px;}
.h42{height:52.758017px;}
.h1a{height:52.761377px;}
.h48{height:52.761857px;}
.h18{height:52.764017px;}
.h2f{height:52.766897px;}
.h17{height:52.769897px;}
.hc{height:52.770017px;}
.ha{height:52.775537px;}
.h20{height:52.781537px;}
.h1c{height:52.781777px;}
.h47{height:52.782017px;}
.h43{height:52.782137px;}
.h15{height:52.788137px;}
.h3a{height:52.790297px;}
.h34{height:52.817777px;}
.h46{height:52.823777px;}
.hb{height:52.835777px;}
.h13{height:52.842017px;}
.h19{height:52.848017px;}
.h31{height:52.858337px;}
.h45{height:52.877897px;}
.h30{height:52.918817px;}
.h44{height:53.337497px;}
.h9{height:53.407337px;}
.h12{height:53.659577px;}
.h26{height:55.440000px;}
.h4{height:57.805840px;}
.h28{height:59.940000px;}
.h2e{height:65.610000px;}
.h41{height:66.972656px;}
.h22{height:67.770000px;}
.h24{height:68.490000px;}
.h2b{height:68.760000px;}
.h33{height:68.850000px;}
.h21{height:74.562891px;}
.h38{height:77.079291px;}
.h2c{height:77.087931px;}
.h25{height:83.250000px;}
.h2d{height:83.340000px;}
.h36{height:85.511777px;}
.h3b{height:97.420937px;}
.h3{height:103.640625px;}
.h29{height:103.871777px;}
.h3f{height:108.012656px;}
.h27{height:112.871777px;}
.h39{height:115.757537px;}
.h3d{height:116.118257px;}
.h0{height:1263.000000px;}
.we{width:5.400000px;}
.w4{width:7.830000px;}
.w7{width:24.000000px;}
.wb{width:56.160000px;}
.wc{width:73.080000px;}
.w8{width:86.130000px;}
.wd{width:95.040000px;}
.wa{width:114.030000px;}
.w9{width:115.560000px;}
.w5{width:147.600000px;}
.w3{width:179.100000px;}
.w6{width:330.840000px;}
.w2{width:425.340000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1c{left:1.260000px;}
.x11{left:19.170000px;}
.x61{left:48.600000px;}
.x1e{left:56.700000px;}
.x63{left:65.520000px;}
.x49{left:78.570000px;}
.x25{left:85.050000px;}
.x65{left:87.480000px;}
.x37{left:88.666704px;}
.x24{left:95.670150px;}
.x76{left:97.650000px;}
.x8{left:99.285192px;}
.x13{left:104.130000px;}
.x29{left:106.386720px;}
.x52{left:108.000000px;}
.x7{left:112.240008px;}
.x38{left:115.020000px;}
.xc{left:119.160000px;}
.x5c{left:120.593520px;}
.x57{left:126.090000px;}
.x30{left:127.620000px;}
.x59{left:130.418460px;}
.x6{left:137.250000px;}
.xb{left:144.180000px;}
.x20{left:151.290000px;}
.x18{left:167.227008px;}
.x3d{left:177.120000px;}
.x5e{left:178.589610px;}
.x3e{left:188.010000px;}
.x45{left:193.410000px;}
.x26{left:204.480000px;}
.x77{left:205.642512px;}
.x5a{left:209.790000px;}
.x58{left:212.220000px;}
.x5{left:217.620000px;}
.x5f{left:220.310910px;}
.x5d{left:228.605580px;}
.x27{left:230.850000px;}
.x60{left:233.807850px;}
.x3f{left:237.240000px;}
.x22{left:240.030000px;}
.x40{left:245.610000px;}
.x19{left:248.400000px;}
.x15{left:256.947264px;}
.x1a{left:262.260000px;}
.xd{left:270.900000px;}
.x7a{left:272.790000px;}
.xe{left:275.760000px;}
.x7b{left:286.742320px;}
.xa{left:291.600000px;}
.x5b{left:295.920000px;}
.x39{left:299.880000px;}
.x62{left:304.470000px;}
.x3a{left:311.580000px;}
.x41{left:316.350000px;}
.x28{left:318.150000px;}
.x64{left:321.390000px;}
.x17{left:333.362400px;}
.x79{left:346.680000px;}
.x9{left:355.430693px;}
.x2f{left:363.600000px;}
.x78{left:374.400000px;}
.x7c{left:378.720000px;}
.x42{left:383.580000px;}
.x1b{left:394.740000px;}
.x1d{left:400.140000px;}
.x7d{left:408.418500px;}
.x3b{left:410.850000px;}
.x3c{left:419.220000px;}
.xf{left:427.500000px;}
.x16{left:435.150000px;}
.x2b{left:455.409264px;}
.x6b{left:463.503720px;}
.x1f{left:465.300000px;}
.x70{left:468.014400px;}
.x72{left:471.326700px;}
.x2a{left:476.728320px;}
.x73{left:479.427870px;}
.x46{left:481.116672px;}
.x54{left:483.839232px;}
.x6d{left:487.890000px;}
.x36{left:489.600000px;}
.x4e{left:494.375376px;}
.x2c{left:497.987280px;}
.x31{left:499.772880px;}
.x32{left:531.090000px;}
.x43{left:540.000000px;}
.x6c{left:551.610000px;}
.x21{left:553.500000px;}
.x56{left:563.760000px;}
.x74{left:565.560000px;}
.x7e{left:566.824592px;}
.x10{left:569.520000px;}
.x4d{left:573.762192px;}
.x71{left:575.995620px;}
.x44{left:578.610000px;}
.x4f{left:580.500000px;}
.x67{left:585.450000px;}
.x75{left:587.428650px;}
.x47{left:589.124208px;}
.x80{left:590.306130px;}
.x55{left:591.851088px;}
.x12{left:596.250000px;}
.x48{left:599.760000px;}
.x50{left:602.374944px;}
.x7f{left:605.610000px;}
.x51{left:612.900000px;}
.x6e{left:621.630000px;}
.x6f{left:626.130000px;}
.x69{left:628.470000px;}
.x23{left:648.630000px;}
.x68{left:656.190000px;}
.x4{left:664.649091px;}
.x4b{left:670.950000px;}
.x1{left:673.380000px;}
.x66{left:675.630000px;}
.x14{left:681.210000px;}
.x4a{left:685.890000px;}
.x6a{left:701.550000px;}
.x3{left:703.445635px;}
.x53{left:728.460000px;}
.x2{left:736.385587px;}
.x33{left:740.610000px;}
.x34{left:745.650000px;}
.x35{left:754.290000px;}
.x2d{left:770.400000px;}
.x2e{left:774.164985px;}
.x4c{left:782.100000px;}
@media print{
.v3{vertical-align:-6.400000pt;}
.v5{vertical-align:-5.291520pt;}
.v6{vertical-align:-2.244480pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.244480pt;}
.v9{vertical-align:3.847680pt;}
.v7{vertical-align:8.657280pt;}
.v8{vertical-align:29.120000pt;}
.vc{vertical-align:36.480000pt;}
.vb{vertical-align:39.705920pt;}
.v2{vertical-align:45.440000pt;}
.v1{vertical-align:53.440000pt;}
.va{vertical-align:56.005120pt;}
.lsa2{letter-spacing:-2.794912pt;}
.ls3c{letter-spacing:-2.474272pt;}
.ls30{letter-spacing:-1.197056pt;}
.ls61{letter-spacing:-0.876416pt;}
.ls2c{letter-spacing:-0.331328pt;}
.lsc8{letter-spacing:-0.306432pt;}
.ls66{letter-spacing:-0.293920pt;}
.ls93{letter-spacing:-0.256512pt;}
.ls6d{letter-spacing:-0.240480pt;}
.ls6f{letter-spacing:-0.208416pt;}
.ls72{letter-spacing:-0.197728pt;}
.ls1b{letter-spacing:-0.187040pt;}
.ls63{letter-spacing:-0.181696pt;}
.ls90{letter-spacing:-0.176352pt;}
.lsc1{letter-spacing:-0.171008pt;}
.ls71{letter-spacing:-0.165664pt;}
.ls51{letter-spacing:-0.160320pt;}
.ls2d{letter-spacing:-0.154976pt;}
.ls54{letter-spacing:-0.149632pt;}
.ls4f{letter-spacing:-0.144288pt;}
.ls3a{letter-spacing:-0.138944pt;}
.ls22{letter-spacing:-0.133600pt;}
.ls52{letter-spacing:-0.128256pt;}
.ls46{letter-spacing:-0.122912pt;}
.ls43{letter-spacing:-0.117568pt;}
.ls47{letter-spacing:-0.112224pt;}
.ls28{letter-spacing:-0.110400pt;}
.ls37{letter-spacing:-0.106880pt;}
.ls64{letter-spacing:-0.101536pt;}
.ls35{letter-spacing:-0.096192pt;}
.ls1f{letter-spacing:-0.090848pt;}
.ls50{letter-spacing:-0.085504pt;}
.ls25{letter-spacing:-0.081600pt;}
.ls3b{letter-spacing:-0.080160pt;}
.ls2e{letter-spacing:-0.074816pt;}
.ls32{letter-spacing:-0.069472pt;}
.ls38{letter-spacing:-0.064128pt;}
.ls20{letter-spacing:-0.058784pt;}
.ls5e{letter-spacing:-0.055328pt;}
.ls69{letter-spacing:-0.053440pt;}
.ls19{letter-spacing:-0.051072pt;}
.ls33{letter-spacing:-0.048096pt;}
.lsc3{letter-spacing:-0.046816pt;}
.ls23{letter-spacing:-0.043200pt;}
.ls55{letter-spacing:-0.042752pt;}
.lsa0{letter-spacing:-0.041472pt;}
.lsc2{letter-spacing:-0.038304pt;}
.ls5b{letter-spacing:-0.037408pt;}
.ls5d{letter-spacing:-0.034048pt;}
.ls36{letter-spacing:-0.032064pt;}
.ls5c{letter-spacing:-0.029792pt;}
.ls41{letter-spacing:-0.026720pt;}
.ls58{letter-spacing:-0.025536pt;}
.ls18{letter-spacing:-0.024000pt;}
.ls44{letter-spacing:-0.021376pt;}
.lsc7{letter-spacing:-0.021280pt;}
.ls21{letter-spacing:-0.016032pt;}
.ls16{letter-spacing:-0.014400pt;}
.ls56{letter-spacing:-0.012768pt;}
.ls34{letter-spacing:-0.010688pt;}
.lsc9{letter-spacing:-0.009600pt;}
.lsc6{letter-spacing:-0.008512pt;}
.ls1c{letter-spacing:-0.005344pt;}
.ls27{letter-spacing:-0.004800pt;}
.ls5f{letter-spacing:-0.004256pt;}
.ls92{letter-spacing:-0.003456pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls76{letter-spacing:0.004256pt;}
.ls9{letter-spacing:0.004800pt;}
.lsf{letter-spacing:0.005344pt;}
.ls0{letter-spacing:0.009600pt;}
.lsd{letter-spacing:0.010688pt;}
.ls2{letter-spacing:0.012800pt;}
.ls17{letter-spacing:0.014400pt;}
.ls7{letter-spacing:0.016032pt;}
.lsba{letter-spacing:0.017024pt;}
.ls1{letter-spacing:0.019200pt;}
.ls49{letter-spacing:0.021376pt;}
.lsa9{letter-spacing:0.025536pt;}
.ls3{letter-spacing:0.025600pt;}
.ls4a{letter-spacing:0.026720pt;}
.lsa8{letter-spacing:0.029792pt;}
.lse{letter-spacing:0.032064pt;}
.lsb3{letter-spacing:0.034048pt;}
.ls4{letter-spacing:0.035136pt;}
.ls11{letter-spacing:0.037408pt;}
.lsc{letter-spacing:0.038304pt;}
.ls9b{letter-spacing:0.038400pt;}
.ls9e{letter-spacing:0.042560pt;}
.ls4b{letter-spacing:0.042752pt;}
.lsab{letter-spacing:0.046816pt;}
.ls5{letter-spacing:0.048096pt;}
.lsac{letter-spacing:0.051072pt;}
.ls15{letter-spacing:0.053440pt;}
.lsad{letter-spacing:0.055328pt;}
.ls24{letter-spacing:0.057600pt;}
.ls3f{letter-spacing:0.058784pt;}
.lsb8{letter-spacing:0.059584pt;}
.ls6c{letter-spacing:0.063840pt;}
.ls6{letter-spacing:0.064128pt;}
.ls6b{letter-spacing:0.068096pt;}
.ls40{letter-spacing:0.069472pt;}
.ls26{letter-spacing:0.072000pt;}
.lsbf{letter-spacing:0.072352pt;}
.ls2f{letter-spacing:0.074816pt;}
.lsbc{letter-spacing:0.076608pt;}
.ls29{letter-spacing:0.076800pt;}
.ls4e{letter-spacing:0.080160pt;}
.lsb4{letter-spacing:0.080864pt;}
.lsa{letter-spacing:0.081600pt;}
.lsae{letter-spacing:0.085120pt;}
.ls45{letter-spacing:0.085504pt;}
.ls9d{letter-spacing:0.089376pt;}
.ls1d{letter-spacing:0.090848pt;}
.lsc5{letter-spacing:0.093632pt;}
.ls39{letter-spacing:0.096192pt;}
.lsb5{letter-spacing:0.097888pt;}
.ls31{letter-spacing:0.101536pt;}
.lsb9{letter-spacing:0.102144pt;}
.ls6a{letter-spacing:0.106400pt;}
.ls8{letter-spacing:0.106880pt;}
.lsaf{letter-spacing:0.110656pt;}
.ls2b{letter-spacing:0.112224pt;}
.ls48{letter-spacing:0.114912pt;}
.ls42{letter-spacing:0.117568pt;}
.lsc4{letter-spacing:0.119168pt;}
.ls14{letter-spacing:0.122912pt;}
.lsb1{letter-spacing:0.123424pt;}
.lsbe{letter-spacing:0.127680pt;}
.ls70{letter-spacing:0.128256pt;}
.ls1e{letter-spacing:0.133600pt;}
.ls65{letter-spacing:0.138944pt;}
.ls67{letter-spacing:0.144288pt;}
.lsb0{letter-spacing:0.148960pt;}
.ls12{letter-spacing:0.149632pt;}
.ls5a{letter-spacing:0.154976pt;}
.ls74{letter-spacing:0.160320pt;}
.lsa4{letter-spacing:0.160533pt;}
.lsaa{letter-spacing:0.161728pt;}
.ls3d{letter-spacing:0.171008pt;}
.ls13{letter-spacing:0.171012pt;}
.lsa5{letter-spacing:0.176107pt;}
.ls4c{letter-spacing:0.176412pt;}
.lsb6{letter-spacing:0.178752pt;}
.ls59{letter-spacing:0.192384pt;}
.lsa6{letter-spacing:0.195776pt;}
.lsb2{letter-spacing:0.204288pt;}
.ls84{letter-spacing:0.213760pt;}
.ls57{letter-spacing:0.331328pt;}
.ls9c{letter-spacing:1.009152pt;}
.ls91{letter-spacing:1.357376pt;}
.ls77{letter-spacing:1.683360pt;}
.ls68{letter-spacing:4.248480pt;}
.ls60{letter-spacing:5.846336pt;}
.ls73{letter-spacing:8.721408pt;}
.ls75{letter-spacing:9.138240pt;}
.ls8f{letter-spacing:11.420128pt;}
.ls7c{letter-spacing:11.436160pt;}
.ls7d{letter-spacing:11.527008pt;}
.ls8b{letter-spacing:11.596480pt;}
.ls9f{letter-spacing:11.617856pt;}
.ls86{letter-spacing:11.633888pt;}
.ls83{letter-spacing:11.649920pt;}
.ls95{letter-spacing:11.687328pt;}
.ls85{letter-spacing:11.756800pt;}
.ls94{letter-spacing:11.917120pt;}
.ls6e{letter-spacing:11.922464pt;}
.ls7b{letter-spacing:11.970560pt;}
.ls96{letter-spacing:12.007968pt;}
.ls88{letter-spacing:12.077440pt;}
.ls82{letter-spacing:12.398080pt;}
.ls78{letter-spacing:12.889728pt;}
.ls87{letter-spacing:13.199680pt;}
.ls97{letter-spacing:14.754784pt;}
.ls98{letter-spacing:14.797536pt;}
.ls3e{letter-spacing:17.052704pt;}
.ls9a{letter-spacing:18.116160pt;}
.ls2a{letter-spacing:18.329920pt;}
.lsbd{letter-spacing:22.144000pt;}
.lsbb{letter-spacing:22.160000pt;}
.ls62{letter-spacing:22.172256pt;}
.lsa1{letter-spacing:23.775456pt;}
.lsb{letter-spacing:29.979840pt;}
.lsb7{letter-spacing:30.728320pt;}
.lsc0{letter-spacing:31.438752pt;}
.ls53{letter-spacing:35.938400pt;}
.ls7a{letter-spacing:38.498176pt;}
.ls4d{letter-spacing:50.874880pt;}
.lsa3{letter-spacing:50.928320pt;}
.ls10{letter-spacing:50.981760pt;}
.lsa7{letter-spacing:52.178560pt;}
.ls79{letter-spacing:68.269600pt;}
.ls8a{letter-spacing:126.492480pt;}
.ls7e{letter-spacing:214.775360pt;}
.ls80{letter-spacing:260.320000pt;}
.ls8d{letter-spacing:294.454400pt;}
.ls81{letter-spacing:361.440000pt;}
.ls8c{letter-spacing:369.697920pt;}
.ls99{letter-spacing:369.804800pt;}
.ls8e{letter-spacing:520.719360pt;}
.ls7f{letter-spacing:566.240000pt;}
.ls89{letter-spacing:587.359467pt;}
.ws3{word-spacing:-48.019200pt;}
.ws1{word-spacing:-48.009600pt;}
.ws7f{word-spacing:-47.990400pt;}
.ws0{word-spacing:-47.985600pt;}
.ws2{word-spacing:-47.976000pt;}
.ws5c{word-spacing:-26.554336pt;}
.ws5b{word-spacing:-23.764768pt;}
.ws40{word-spacing:-23.727360pt;}
.ws53{word-spacing:-23.673920pt;}
.ws60{word-spacing:-23.406720pt;}
.ws55{word-spacing:-23.390688pt;}
.ws62{word-spacing:-23.374656pt;}
.ws4e{word-spacing:-23.353280pt;}
.ws42{word-spacing:-23.283808pt;}
.ws50{word-spacing:-23.176928pt;}
.wsa{word-spacing:-13.531008pt;}
.ws48{word-spacing:-13.520320pt;}
.ws68{word-spacing:-13.514976pt;}
.ws64{word-spacing:-13.509632pt;}
.ws3f{word-spacing:-13.504288pt;}
.ws6a{word-spacing:-13.498944pt;}
.ws7{word-spacing:-13.493600pt;}
.ws33{word-spacing:-13.488256pt;}
.wse{word-spacing:-13.482912pt;}
.ws19{word-spacing:-13.477568pt;}
.ws1f{word-spacing:-13.472224pt;}
.ws5{word-spacing:-13.466880pt;}
.ws3e{word-spacing:-13.461536pt;}
.ws1a{word-spacing:-13.456192pt;}
.ws18{word-spacing:-13.450848pt;}
.ws1c{word-spacing:-13.440160pt;}
.ws10{word-spacing:-13.440000pt;}
.ws20{word-spacing:-13.434816pt;}
.ws23{word-spacing:-13.424128pt;}
.wsf{word-spacing:-13.413440pt;}
.ws1b{word-spacing:-13.402752pt;}
.wsd{word-spacing:-13.392064pt;}
.ws32{word-spacing:-13.386720pt;}
.ws17{word-spacing:-13.370688pt;}
.ws69{word-spacing:-13.365344pt;}
.ws2a{word-spacing:-13.360000pt;}
.ws29{word-spacing:-13.349312pt;}
.ws31{word-spacing:-13.343968pt;}
.ws1d{word-spacing:-13.338624pt;}
.wsc{word-spacing:-13.333280pt;}
.ws9{word-spacing:-13.327936pt;}
.ws57{word-spacing:-13.322592pt;}
.ws35{word-spacing:-13.311904pt;}
.ws4{word-spacing:-13.301216pt;}
.ws6f{word-spacing:-13.274496pt;}
.ws56{word-spacing:-13.258464pt;}
.ws4b{word-spacing:-13.253120pt;}
.ws1e{word-spacing:-13.242432pt;}
.wsb{word-spacing:-13.237088pt;}
.ws6c{word-spacing:-13.231744pt;}
.ws70{word-spacing:-13.221056pt;}
.ws6e{word-spacing:-13.215712pt;}
.ws21{word-spacing:-13.210368pt;}
.ws34{word-spacing:-13.162272pt;}
.ws71{word-spacing:-13.119520pt;}
.ws6{word-spacing:-12.081600pt;}
.ws4c{word-spacing:-11.815584pt;}
.ws43{word-spacing:-11.778176pt;}
.ws5a{word-spacing:-11.762144pt;}
.ws4d{word-spacing:-11.756800pt;}
.ws54{word-spacing:-11.703360pt;}
.ws41{word-spacing:-11.698016pt;}
.ws4f{word-spacing:-11.692672pt;}
.ws4a{word-spacing:-11.681984pt;}
.ws49{word-spacing:-11.660608pt;}
.ws51{word-spacing:-11.655264pt;}
.ws61{word-spacing:-11.633888pt;}
.ws63{word-spacing:-11.628544pt;}
.ws59{word-spacing:-11.623200pt;}
.ws58{word-spacing:-11.607168pt;}
.ws73{word-spacing:-10.835776pt;}
.ws7c{word-spacing:-10.818752pt;}
.ws79{word-spacing:-10.788960pt;}
.ws7b{word-spacing:-10.763424pt;}
.ws78{word-spacing:-10.750656pt;}
.ws7d{word-spacing:-10.708096pt;}
.ws7a{word-spacing:-10.703840pt;}
.ws74{word-spacing:-10.691072pt;}
.ws77{word-spacing:-10.686816pt;}
.ws75{word-spacing:-10.682560pt;}
.ws8{word-spacing:-10.678304pt;}
.ws76{word-spacing:-10.669792pt;}
.ws7e{word-spacing:-10.657024pt;}
.ws2b{word-spacing:-10.635744pt;}
.ws6b{word-spacing:-10.627232pt;}
.ws72{word-spacing:-10.601696pt;}
.ws52{word-spacing:-8.640000pt;}
.ws67{word-spacing:-8.612352pt;}
.ws66{word-spacing:-7.561728pt;}
.ws15{word-spacing:-2.704064pt;}
.ws16{word-spacing:-1.191712pt;}
.ws25{word-spacing:-0.336672pt;}
.ws24{word-spacing:-0.191520pt;}
.ws36{word-spacing:-0.187264pt;}
.ws47{word-spacing:-0.117568pt;}
.ws6d{word-spacing:-0.064128pt;}
.ws12{word-spacing:-0.025536pt;}
.ws3a{word-spacing:-0.021376pt;}
.ws11{word-spacing:0.000000pt;}
.ws38{word-spacing:0.021376pt;}
.ws2e{word-spacing:0.032064pt;}
.ws46{word-spacing:0.171008pt;}
.ws3c{word-spacing:0.181696pt;}
.ws2f{word-spacing:0.187040pt;}
.ws37{word-spacing:0.267200pt;}
.ws44{word-spacing:1.282560pt;}
.ws5f{word-spacing:2.239136pt;}
.ws80{word-spacing:3.313280pt;}
.ws5e{word-spacing:3.414816pt;}
.ws5d{word-spacing:4.162976pt;}
.ws2d{word-spacing:7.690016pt;}
.ws45{word-spacing:7.983936pt;}
.ws82{word-spacing:8.224416pt;}
.ws27{word-spacing:8.977920pt;}
.ws3d{word-spacing:9.838304pt;}
.ws28{word-spacing:11.046048pt;}
.ws22{word-spacing:13.039360pt;}
.ws30{word-spacing:17.303872pt;}
.ws14{word-spacing:18.223040pt;}
.ws3b{word-spacing:19.838400pt;}
.ws81{word-spacing:22.257760pt;}
.ws13{word-spacing:24.172800pt;}
.ws2c{word-spacing:26.335232pt;}
.ws39{word-spacing:30.081376pt;}
.ws83{word-spacing:31.914368pt;}
.ws65{word-spacing:36.350400pt;}
.ws26{word-spacing:65.955648pt;}
._36{margin-left:-69.317408pt;}
._35{margin-left:-68.050368pt;}
._38{margin-left:-38.920352pt;}
._39{margin-left:-38.017216pt;}
._23{margin-left:-36.354839pt;}
._24{margin-left:-35.356297pt;}
._43{margin-left:-32.106626pt;}
._42{margin-left:-31.096862pt;}
._40{margin-left:-24.480864pt;}
._2e{margin-left:-22.931104pt;}
._2d{margin-left:-22.001248pt;}
._b{margin-left:-19.307872pt;}
._a{margin-left:-18.319232pt;}
._15{margin-left:-17.186304pt;}
._16{margin-left:-16.286272pt;}
._3e{margin-left:-15.326592pt;}
._3d{margin-left:-14.412768pt;}
._30{margin-left:-12.996608pt;}
._2f{margin-left:-11.794208pt;}
._31{margin-left:-10.891072pt;}
._33{margin-left:-9.624544pt;}
._32{margin-left:-8.598496pt;}
._2b{margin-left:-6.252480pt;}
._2c{margin-left:-5.360032pt;}
._17{margin-left:-3.575264pt;}
._7{margin-left:-2.500864pt;}
._1{margin-left:-1.036736pt;}
._0{width:0.970368pt;}
._6{width:1.888127pt;}
._2{width:3.071937pt;}
._5{width:4.358400pt;}
._12{width:6.002880pt;}
._3{width:7.353600pt;}
._4{width:8.308800pt;}
._18{width:9.523008pt;}
._f{width:10.832288pt;}
._e{width:11.820928pt;}
._8{width:13.036800pt;}
._3b{width:14.065408pt;}
._19{width:14.968544pt;}
._1c{width:15.989141pt;}
._21{width:17.106144pt;}
._c{width:18.089440pt;}
._11{width:19.142208pt;}
._d{width:20.243072pt;}
._1a{width:21.269120pt;}
._1b{width:22.519616pt;}
._9{width:23.923200pt;}
._20{width:25.369856pt;}
._2a{width:26.340576pt;}
._10{width:27.313184pt;}
._22{width:28.873581pt;}
._1f{width:29.803501pt;}
._29{width:30.740915pt;}
._26{width:32.422048pt;}
._28{width:34.048864pt;}
._1e{width:35.329086pt;}
._27{width:36.934820pt;}
._37{width:38.519552pt;}
._44{width:39.796981pt;}
._3a{width:41.036576pt;}
._14{width:42.158816pt;}
._13{width:43.393280pt;}
._41{width:44.531552pt;}
._1d{width:54.182816pt;}
._3f{width:55.089600pt;}
._25{width:65.490720pt;}
._34{width:67.558720pt;}
._3c{width:442.456480pt;}
.fs8{font-size:34.560000pt;}
.fs1{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.440000pt;}
.fs7{font-size:53.760000pt;}
.fs3{font-size:58.560000pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:2.880400pt;}
.y11{bottom:2.880533pt;}
.y5a{bottom:3.253333pt;}
.y1f1{bottom:7.680400pt;}
.y1f8{bottom:11.680400pt;}
.y211{bottom:16.720400pt;}
.y24f{bottom:16.800400pt;}
.y256{bottom:16.800533pt;}
.y1d2{bottom:18.640533pt;}
.y1e0{bottom:32.400400pt;}
.y20e{bottom:32.480400pt;}
.y253{bottom:32.480533pt;}
.y1dc{bottom:32.880400pt;}
.y200{bottom:32.880533pt;}
.y6{bottom:43.387067pt;}
.y59{bottom:49.333333pt;}
.y58{bottom:51.306667pt;}
.y2a1{bottom:97.778160pt;}
.y19c{bottom:100.439067pt;}
.yca{bottom:102.027067pt;}
.y138{bottom:102.276027pt;}
.y104{bottom:105.254667pt;}
.y9a{bottom:107.786827pt;}
.y36{bottom:108.830960pt;}
.y16c{bottom:111.864320pt;}
.y2a0{bottom:113.142160pt;}
.y19b{bottom:115.722907pt;}
.y137{bottom:117.640027pt;}
.y263{bottom:118.106667pt;}
.y56{bottom:118.748133pt;}
.y103{bottom:120.538507pt;}
.y99{bottom:123.146800pt;}
.y35{bottom:124.194960pt;}
.y229{bottom:124.491387pt;}
.y16b{bottom:127.228320pt;}
.y29f{bottom:128.427333pt;}
.y19a{bottom:131.086907pt;}
.y136{bottom:132.923867pt;}
.y55{bottom:134.027920pt;}
.y265{bottom:134.902427pt;}
.y266{bottom:134.907067pt;}
.y102{bottom:135.902507pt;}
.y98{bottom:139.387200pt;}
.y34{bottom:139.558960pt;}
.y228{bottom:139.775227pt;}
.y16a{bottom:142.592320pt;}
.y199{bottom:146.450907pt;}
.y135{bottom:148.287867pt;}
.y29d{bottom:149.063440pt;}
.y29e{bottom:149.067200pt;}
.y54{bottom:149.387867pt;}
.y264{bottom:150.587067pt;}
.y101{bottom:151.266507pt;}
.y97{bottom:154.747200pt;}
.y33{bottom:154.842800pt;}
.y227{bottom:155.139227pt;}
.y169{bottom:157.876160pt;}
.y198{bottom:161.734747pt;}
.y134{bottom:163.651867pt;}
.y53{bottom:164.747867pt;}
.y100{bottom:166.550347pt;}
.y32{bottom:170.206800pt;}
.y226{bottom:170.503227pt;}
.y96{bottom:171.059787pt;}
.y168{bottom:173.240160pt;}
.y197{bottom:177.098747pt;}
.y260{bottom:178.506667pt;}
.y133{bottom:178.935707pt;}
.y29c{bottom:180.419360pt;}
.y52{bottom:180.988267pt;}
.yff{bottom:181.914347pt;}
.y31{bottom:185.490640pt;}
.y225{bottom:185.763387pt;}
.y95{bottom:187.308267pt;}
.y167{bottom:188.604160pt;}
.y196{bottom:192.462747pt;}
.y132{bottom:194.299707pt;}
.y262{bottom:195.302587pt;}
.y29b{bottom:195.783360pt;}
.y51{bottom:196.348267pt;}
.yfe{bottom:197.278347pt;}
.y30{bottom:200.854640pt;}
.y224{bottom:201.127387pt;}
.y94{bottom:202.668267pt;}
.y166{bottom:203.888000pt;}
.y195{bottom:207.746587pt;}
.y131{bottom:209.663707pt;}
.y261{bottom:210.907067pt;}
.y25f{bottom:210.922640pt;}
.y29a{bottom:211.067200pt;}
.y50{bottom:211.689600pt;}
.yfd{bottom:212.562187pt;}
.y2f{bottom:216.218640pt;}
.y223{bottom:216.491387pt;}
.y93{bottom:218.968747pt;}
.y165{bottom:219.252000pt;}
.y194{bottom:223.110587pt;}
.y130{bottom:224.947547pt;}
.y4f{bottom:226.973440pt;}
.yfc{bottom:227.926187pt;}
.y2e{bottom:231.502480pt;}
.y222{bottom:231.775227pt;}
.y299{bottom:233.867067pt;}
.y92{bottom:234.252587pt;}
.y164{bottom:234.535840pt;}
.y193{bottom:238.394427pt;}
.y12f{bottom:240.311547pt;}
.y4e{bottom:242.337440pt;}
.yfb{bottom:243.290187pt;}
.y2d{bottom:246.866480pt;}
.y221{bottom:247.139227pt;}
.y163{bottom:249.899840pt;}
.y91{bottom:250.578507pt;}
.y2e8{bottom:251.628507pt;}
.y12e{bottom:255.595387pt;}
.y25e{bottom:257.001280pt;}
.y4d{bottom:257.701440pt;}
.y2b1{bottom:257.945733pt;}
.yfa{bottom:258.574027pt;}
.y192{bottom:259.035627pt;}
.y2c{bottom:262.230480pt;}
.y220{bottom:262.503227pt;}
.y162{bottom:265.263840pt;}
.y2e7{bottom:265.790347pt;}
.y90{bottom:266.829600pt;}
.y12d{bottom:270.959387pt;}
.y4c{bottom:272.985280pt;}
.y2b0{bottom:273.305733pt;}
.y25d{bottom:273.794800pt;}
.yf9{bottom:273.938027pt;}
.y2b{bottom:277.514320pt;}
.y21f{bottom:277.787067pt;}
.y2e6{bottom:279.867067pt;}
.y161{bottom:280.547680pt;}
.y8f{bottom:281.987867pt;}
.y12c{bottom:286.323387pt;}
.y4b{bottom:288.349280pt;}
.yf8{bottom:289.221867pt;}
.y2af{bottom:289.626400pt;}
.y191{bottom:290.391547pt;}
.y25c{bottom:290.668480pt;}
.y2a{bottom:292.878320pt;}
.y21e{bottom:293.143227pt;}
.y2e5{bottom:293.942987pt;}
.y160{bottom:295.911680pt;}
.y8e{bottom:298.313787pt;}
.y12b{bottom:301.607227pt;}
.y4a{bottom:303.708000pt;}
.yf7{bottom:304.585867pt;}
.y2ae{bottom:304.906133pt;}
.y190{bottom:305.755547pt;}
.y2e4{bottom:308.104827pt;}
.y29{bottom:308.242320pt;}
.y21d{bottom:308.389947pt;}
.y15f{bottom:311.275680pt;}
.y8d{bottom:313.597627pt;}
.y12a{bottom:316.971227pt;}
.y49{bottom:318.987733pt;}
.y2ad{bottom:320.266133pt;}
.y18f{bottom:321.119547pt;}
.y2e3{bottom:322.103067pt;}
.y25b{bottom:322.657120pt;}
.y28{bottom:323.526160pt;}
.y21c{bottom:323.753947pt;}
.yf5{bottom:325.222907pt;}
.yf6{bottom:325.227067pt;}
.y15e{bottom:326.559520pt;}
.y8c{bottom:328.961627pt;}
.yc9{bottom:329.858160pt;}
.y129{bottom:332.335227pt;}
.y48{bottom:335.162720pt;}
.y2ac{bottom:335.611467pt;}
.y18e{bottom:336.403387pt;}
.y2e2{bottom:337.784827pt;}
.y27{bottom:338.890160pt;}
.y21b{bottom:339.117947pt;}
.yf3{bottom:340.437387pt;}
.yf4{bottom:340.587067pt;}
.y15d{bottom:341.923520pt;}
.y8b{bottom:344.325627pt;}
.yc8{bottom:345.222160pt;}
.y128{bottom:347.619067pt;}
.y47{bottom:350.526720pt;}
.y2ab{bottom:350.895307pt;}
.y18d{bottom:351.767387pt;}
.y2e1{bottom:351.787067pt;}
.y26{bottom:354.254160pt;}
.y21a{bottom:354.401787pt;}
.y25a{bottom:356.177360pt;}
.y15c{bottom:357.287520pt;}
.y8a{bottom:359.609467pt;}
.yc7{bottom:360.507333pt;}
.y127{bottom:362.983067pt;}
.y46{bottom:365.810560pt;}
.y2aa{bottom:366.266000pt;}
.y18c{bottom:367.131387pt;}
.y2e0{bottom:367.500507pt;}
.y25{bottom:369.538000pt;}
.y219{bottom:369.765787pt;}
.yf2{bottom:371.793307pt;}
.y15b{bottom:372.571360pt;}
.y89{bottom:374.973467pt;}
.y1bf{bottom:375.787067pt;}
.y259{bottom:377.139200pt;}
.y126{bottom:378.347067pt;}
.yc5{bottom:381.051787pt;}
.yc6{bottom:381.147200pt;}
.y45{bottom:381.174560pt;}
.y2df{bottom:381.577227pt;}
.y18b{bottom:382.415227pt;}
.y2a9{bottom:382.558507pt;}
.y24{bottom:384.902000pt;}
.y218{bottom:385.129787pt;}
.yf1{bottom:387.077147pt;}
.y15a{bottom:387.935360pt;}
.y88{bottom:390.337467pt;}
.y2de{bottom:395.653947pt;}
.y1be{bottom:396.469227pt;}
.y44{bottom:397.420320pt;}
.y18a{bottom:397.779227pt;}
.y2a8{bottom:397.842347pt;}
.y258{bottom:398.183120pt;}
.y23{bottom:400.266000pt;}
.y217{bottom:400.413627pt;}
.y125{bottom:401.147200pt;}
.yf0{bottom:402.441147pt;}
.y287{bottom:402.587067pt;}
.y159{bottom:403.299360pt;}
.y87{bottom:405.621307pt;}
.y2dd{bottom:409.815787pt;}
.y1bd{bottom:411.833227pt;}
.yc4{bottom:412.407707pt;}
.y43{bottom:412.784320pt;}
.y189{bottom:413.143227pt;}
.y2a7{bottom:413.206347pt;}
.y216{bottom:415.777627pt;}
.yef{bottom:417.805147pt;}
.y158{bottom:418.587200pt;}
.y1ea{bottom:420.667200pt;}
.y22{bottom:420.907200pt;}
.y86{bottom:420.985307pt;}
.y286{bottom:423.348107pt;}
.y2dc{bottom:423.892507pt;}
.y1bc{bottom:427.117067pt;}
.yc3{bottom:427.771707pt;}
.y42{bottom:428.148320pt;}
.y188{bottom:428.427067pt;}
.y2a6{bottom:429.532267pt;}
.y252{bottom:430.186667pt;}
.y215{bottom:431.141627pt;}
.y298{bottom:432.658107pt;}
.yee{bottom:433.088987pt;}
.y85{bottom:436.269147pt;}
.y2db{bottom:437.969227pt;}
.y285{bottom:438.631947pt;}
.y1e9{bottom:441.464907pt;}
.y1bb{bottom:442.481067pt;}
.yc2{bottom:443.055547pt;}
.y41{bottom:443.432160pt;}
.y2a5{bottom:445.778027pt;}
.y214{bottom:446.422107pt;}
.y255{bottom:446.982560pt;}
.y257{bottom:446.987200pt;}
.y297{bottom:448.022107pt;}
.yed{bottom:448.452987pt;}
.y157{bottom:450.031067pt;}
.y187{bottom:451.227067pt;}
.y84{bottom:451.633147pt;}
.y21{bottom:452.035067pt;}
.y2da{bottom:452.045947pt;}
.y284{bottom:453.995947pt;}
.y1e8{bottom:456.748747pt;}
.y1ba{bottom:457.845067pt;}
.yc1{bottom:458.419547pt;}
.y40{bottom:458.796160pt;}
.y20d{bottom:458.906667pt;}
.y2a4{bottom:461.142027pt;}
.y254{bottom:462.667200pt;}
.y296{bottom:463.386107pt;}
.y156{bottom:463.627067pt;}
.yec{bottom:463.816987pt;}
.y20{bottom:465.391067pt;}
.y2d9{bottom:466.207787pt;}
.y83{bottom:466.997147pt;}
.y283{bottom:469.279787pt;}
.y1e7{bottom:472.112747pt;}
.y1b9{bottom:473.128907pt;}
.yc0{bottom:473.783547pt;}
.y3f{bottom:474.160160pt;}
.y210{bottom:475.622267pt;}
.y212{bottom:475.627067pt;}
.y2a3{bottom:476.425867pt;}
.y295{bottom:478.669947pt;}
.yeb{bottom:479.100827pt;}
.y2d8{bottom:480.284507pt;}
.y124{bottom:481.071467pt;}
.y82{bottom:482.280987pt;}
.y1b8{bottom:488.492907pt;}
.ybf{bottom:489.067387pt;}
.y3e{bottom:489.444000pt;}
.y282{bottom:489.920987pt;}
.y24e{bottom:490.586667pt;}
.y20c{bottom:491.376027pt;}
.y20f{bottom:491.387067pt;}
.y155{bottom:491.659707pt;}
.y1f{bottom:492.031067pt;}
.y251{bottom:493.227067pt;}
.y294{bottom:494.027200pt;}
.y2d7{bottom:494.361227pt;}
.yea{bottom:494.464827pt;}
.y123{bottom:496.435467pt;}
.y2a2{bottom:496.936907pt;}
.y81{bottom:497.644987pt;}
.y1b7{bottom:503.856907pt;}
.ybe{bottom:504.431387pt;}
.y3d{bottom:504.808000pt;}
.y1e{bottom:505.315067pt;}
.y20b{bottom:506.980507pt;}
.y154{bottom:507.023707pt;}
.y250{bottom:507.387067pt;}
.y24d{bottom:507.393867pt;}
.y1e5{bottom:507.944267pt;}
.y2d6{bottom:508.523067pt;}
.ye9{bottom:509.828827pt;}
.y122{bottom:511.799467pt;}
.y80{bottom:513.008987pt;}
.y1d{bottom:518.671067pt;}
.y1b6{bottom:519.140747pt;}
.ybd{bottom:519.795387pt;}
.y3c{bottom:520.172000pt;}
.y281{bottom:521.276907pt;}
.y153{bottom:522.307547pt;}
.y2d5{bottom:522.599787pt;}
.y20a{bottom:522.665147pt;}
.y1e4{bottom:523.630507pt;}
.y1e6{bottom:523.789227pt;}
.ye8{bottom:525.112667pt;}
.y121{bottom:527.083307pt;}
.y7f{bottom:528.292827pt;}
.y1c{bottom:532.027067pt;}
.y1b5{bottom:534.504747pt;}
.ybc{bottom:535.079227pt;}
.y3b{bottom:535.455840pt;}
.y1df{bottom:536.266667pt;}
.y280{bottom:536.640907pt;}
.y2d4{bottom:536.676507pt;}
.y152{bottom:537.671547pt;}
.y209{bottom:538.269627pt;}
.y293{bottom:540.187067pt;}
.ye7{bottom:540.476667pt;}
.y120{bottom:542.447307pt;}
.y7e{bottom:543.656827pt;}
.y1b{bottom:545.311067pt;}
.y1b4{bottom:549.868747pt;}
.ybb{bottom:550.443227pt;}
.y3a{bottom:550.819840pt;}
.y2d3{bottom:550.838347pt;}
.y1db{bottom:551.386667pt;}
.y27f{bottom:552.004907pt;}
.y151{bottom:553.035547pt;}
.y1e2{bottom:553.062587pt;}
.y24c{bottom:553.392347pt;}
.y208{bottom:553.874107pt;}
.y213{bottom:554.103707pt;}
.ye6{bottom:555.840667pt;}
.y11f{bottom:557.811307pt;}
.y1a{bottom:558.667067pt;}
.y7d{bottom:559.020827pt;}
.y2d2{bottom:564.915067pt;}
.y1b3{bottom:565.152587pt;}
.yba{bottom:565.807227pt;}
.y39{bottom:566.183840pt;}
.y27e{bottom:567.288747pt;}
.y150{bottom:568.319387pt;}
.y1de{bottom:568.662587pt;}
.y1e1{bottom:568.667067pt;}
.y1e3{bottom:569.468667pt;}
.ye5{bottom:571.124507pt;}
.y24b{bottom:571.468427pt;}
.y19{bottom:572.023067pt;}
.y11e{bottom:573.095147pt;}
.y7c{bottom:574.304667pt;}
.y186{bottom:577.927227pt;}
.y2d1{bottom:578.991787pt;}
.yb9{bottom:581.091067pt;}
.y38{bottom:581.467680pt;}
.y27d{bottom:582.652747pt;}
.y14f{bottom:583.683387pt;}
.y1da{bottom:584.265307pt;}
.y1dd{bottom:584.267067pt;}
.y207{bottom:584.749067pt;}
.y18{bottom:585.307067pt;}
.y1b2{bottom:585.793787pt;}
.ye4{bottom:586.488507pt;}
.y11d{bottom:588.459147pt;}
.y7b{bottom:589.668667pt;}
.y2d0{bottom:593.153627pt;}
.y185{bottom:593.291227pt;}
.yb8{bottom:596.455067pt;}
.y37{bottom:596.831680pt;}
.y27c{bottom:598.016747pt;}
.y17{bottom:598.666667pt;}
.y14e{bottom:599.047387pt;}
.ye3{bottom:601.852507pt;}
.y24a{bottom:603.466933pt;}
.y11c{bottom:603.742987pt;}
.y7a{bottom:605.032667pt;}
.y2cf{bottom:607.230347pt;}
.y184{bottom:608.655227pt;}
.yb7{bottom:611.819067pt;}
.y27b{bottom:613.300587pt;}
.y14d{bottom:614.331227pt;}
.y1d7{bottom:615.216000pt;}
.y1d8{bottom:615.227067pt;}
.ye2{bottom:617.136347pt;}
.y1b1{bottom:617.149707pt;}
.y206{bottom:618.746507pt;}
.y11b{bottom:619.106987pt;}
.y79{bottom:620.316507pt;}
.y2ce{bottom:621.307067pt;}
.y183{bottom:623.939067pt;}
.yb6{bottom:627.102907pt;}
.y27a{bottom:628.664587pt;}
.y14c{bottom:629.695227pt;}
.y1d6{bottom:630.900640pt;}
.ye1{bottom:632.500347pt;}
.y1b0{bottom:632.513707pt;}
.y249{bottom:634.186933pt;}
.y11a{bottom:634.470987pt;}
.y2cd{bottom:635.467067pt;}
.y78{bottom:635.680507pt;}
.y1d9{bottom:638.587067pt;}
.y182{bottom:639.303067pt;}
.yb5{bottom:642.466907pt;}
.y279{bottom:644.028587pt;}
.y14b{bottom:645.059227pt;}
.y1d5{bottom:646.505120pt;}
.ye0{bottom:647.784187pt;}
.y1af{bottom:647.797547pt;}
.y2cc{bottom:649.548507pt;}
.y205{bottom:649.621467pt;}
.y119{bottom:649.754827pt;}
.y248{bottom:650.412667pt;}
.y77{bottom:651.044507pt;}
.y15{bottom:651.386667pt;}
.y16{bottom:654.267067pt;}
.y14{bottom:654.280640pt;}
.y181{bottom:654.667067pt;}
.yb4{bottom:657.830907pt;}
.y278{bottom:659.312427pt;}
.y14a{bottom:660.343067pt;}
.ydf{bottom:663.148187pt;}
.y1ae{bottom:663.161547pt;}
.y2cb{bottom:663.625227pt;}
.y204{bottom:664.905307pt;}
.y118{bottom:665.118827pt;}
.y76{bottom:666.328347pt;}
.yb3{bottom:673.114747pt;}
.y1d1{bottom:674.506667pt;}
.y149{bottom:675.707067pt;}
.y1d4{bottom:677.462560pt;}
.y180{bottom:677.467067pt;}
.y13{bottom:677.633920pt;}
.y2ca{bottom:677.787067pt;}
.yde{bottom:678.512187pt;}
.y1ad{bottom:678.525547pt;}
.y117{bottom:680.482827pt;}
.y75{bottom:681.692347pt;}
.y247{bottom:682.089227pt;}
.yb2{bottom:688.478747pt;}
.y148{bottom:691.071067pt;}
.y2c9{bottom:691.870347pt;}
.y1d0{bottom:693.098027pt;}
.y1d3{bottom:693.147200pt;}
.ydd{bottom:693.796027pt;}
.y1ac{bottom:693.809387pt;}
.y1ff{bottom:694.106667pt;}
.y202{bottom:695.702427pt;}
.y116{bottom:695.766667pt;}
.y74{bottom:697.056347pt;}
.y246{bottom:697.373067pt;}
.y10{bottom:698.106667pt;}
.y12{bottom:700.987200pt;}
.yf{bottom:700.993947pt;}
.y276{bottom:702.503547pt;}
.yb1{bottom:703.842747pt;}
.y2c8{bottom:705.947067pt;}
.y147{bottom:706.354907pt;}
.y1cf{bottom:708.702507pt;}
.ydc{bottom:709.160027pt;}
.y1ab{bottom:709.173387pt;}
.y1fc{bottom:709.706667pt;}
.y274{bottom:709.787067pt;}
.y277{bottom:710.426400pt;}
.y115{bottom:711.130667pt;}
.y201{bottom:711.387067pt;}
.y73{bottom:712.340187pt;}
.y245{bottom:712.737067pt;}
.y272{bottom:717.787067pt;}
.yb0{bottom:719.126587pt;}
.y203{bottom:719.227067pt;}
.y2c7{bottom:720.107067pt;}
.yd{bottom:721.386667pt;}
.y146{bottom:721.718907pt;}
.yc{bottom:724.267067pt;}
.y1ce{bottom:724.306987pt;}
.y273{bottom:724.427067pt;}
.ydb{bottom:724.524027pt;}
.y1aa{bottom:724.537387pt;}
.y114{bottom:726.494667pt;}
.y1fe{bottom:726.982587pt;}
.y72{bottom:727.704187pt;}
.y244{bottom:728.101067pt;}
.y2c6{bottom:734.190347pt;}
.yaf{bottom:734.490587pt;}
.y275{bottom:735.707067pt;}
.y145{bottom:737.002747pt;}
.yda{bottom:739.807867pt;}
.y1a9{bottom:739.821227pt;}
.y113{bottom:741.778507pt;}
.yb{bottom:742.347067pt;}
.y1fd{bottom:742.587067pt;}
.y1fb{bottom:742.597387pt;}
.y71{bottom:743.068187pt;}
.y243{bottom:743.384907pt;}
.y2c5{bottom:748.267067pt;}
.yae{bottom:749.774427pt;}
.y144{bottom:752.366747pt;}
.yd9{bottom:755.171867pt;}
.y1cd{bottom:755.181947pt;}
.y1a8{bottom:755.185227pt;}
.y292{bottom:758.229467pt;}
.y70{bottom:758.352027pt;}
.y242{bottom:758.749707pt;}
.y112{bottom:761.056987pt;}
.y271{bottom:761.435227pt;}
.y2c4{bottom:762.347067pt;}
.yad{bottom:765.138427pt;}
.y143{bottom:767.730747pt;}
.yd8{bottom:770.535867pt;}
.y1cc{bottom:770.545947pt;}
.y1a7{bottom:770.549227pt;}
.y23e{bottom:771.226667pt;}
.y1fa{bottom:773.472347pt;}
.y291{bottom:773.593467pt;}
.y17f{bottom:773.638560pt;}
.y6f{bottom:773.716027pt;}
.y2c3{bottom:776.523067pt;}
.y270{bottom:776.799227pt;}
.yac{bottom:780.507733pt;}
.y142{bottom:783.014587pt;}
.y111{bottom:785.772987pt;}
.yd7{bottom:785.819707pt;}
.y1cb{bottom:785.829787pt;}
.y1a6{bottom:785.833067pt;}
.y23b{bottom:786.346667pt;}
.y240{bottom:787.941307pt;}
.ya{bottom:788.107067pt;}
.y17e{bottom:788.922400pt;}
.y290{bottom:788.957467pt;}
.y6e{bottom:788.999867pt;}
.y2c2{bottom:790.599787pt;}
.y26f{bottom:792.083067pt;}
.yab{bottom:795.787600pt;}
.y141{bottom:798.378587pt;}
.y110{bottom:801.136987pt;}
.yd6{bottom:801.183707pt;}
.y1ca{bottom:801.193787pt;}
.y1a5{bottom:801.197067pt;}
.y1f7{bottom:801.226667pt;}
.y238{bottom:801.946667pt;}
.y23d{bottom:803.622587pt;}
.y23f{bottom:804.187067pt;}
.y28f{bottom:804.241307pt;}
.y17d{bottom:804.286400pt;}
.y6d{bottom:804.363867pt;}
.y241{bottom:804.587867pt;}
.y2c1{bottom:804.676507pt;}
.y26e{bottom:807.447067pt;}
.yaa{bottom:811.150267pt;}
.y1f6{bottom:812.898747pt;}
.y1f9{bottom:812.907067pt;}
.y140{bottom:813.742587pt;}
.y10f{bottom:816.500987pt;}
.yd5{bottom:816.547707pt;}
.y1c9{bottom:816.557787pt;}
.y1a4{bottom:816.561067pt;}
.y2c0{bottom:818.838347pt;}
.y23a{bottom:819.222587pt;}
.y23c{bottom:819.227067pt;}
.y28e{bottom:819.605307pt;}
.y17c{bottom:819.650400pt;}
.y6c{bottom:819.727867pt;}
.y26d{bottom:822.811067pt;}
.y9{bottom:824.907067pt;}
.ya9{bottom:826.507600pt;}
.y1f5{bottom:828.583387pt;}
.y13f{bottom:829.026427pt;}
.y10e{bottom:831.784827pt;}
.yd4{bottom:831.831547pt;}
.y1c8{bottom:831.841627pt;}
.y1a3{bottom:831.844907pt;}
.y2bf{bottom:832.915067pt;}
.y237{bottom:834.762427pt;}
.y239{bottom:834.827067pt;}
.y17b{bottom:834.934240pt;}
.y28d{bottom:834.969307pt;}
.y6b{bottom:835.011707pt;}
.y26c{bottom:838.094907pt;}
.ya8{bottom:842.746667pt;}
.y1f4{bottom:844.268027pt;}
.y13e{bottom:844.390427pt;}
.y2be{bottom:846.991787pt;}
.y10d{bottom:847.148827pt;}
.yd3{bottom:847.195547pt;}
.y1c7{bottom:847.205627pt;}
.y1a2{bottom:847.208907pt;}
.y28c{bottom:850.253147pt;}
.y17a{bottom:850.298240pt;}
.y6a{bottom:850.375707pt;}
.y26b{bottom:853.458907pt;}
.ya7{bottom:858.110667pt;}
.y13d{bottom:859.754427pt;}
.y2bd{bottom:861.153627pt;}
.y8{bottom:861.707067pt;}
.y10c{bottom:862.512827pt;}
.yd2{bottom:862.559547pt;}
.y1c6{bottom:862.569627pt;}
.y1a1{bottom:862.572907pt;}
.y28b{bottom:865.617147pt;}
.y179{bottom:865.662240pt;}
.y236{bottom:865.717547pt;}
.y69{bottom:865.739707pt;}
.y26a{bottom:874.097707pt;}
.ya6{bottom:874.421093pt;}
.y13c{bottom:875.038267pt;}
.y1f3{bottom:875.142987pt;}
.y2bc{bottom:875.230347pt;}
.y10b{bottom:877.796667pt;}
.yd1{bottom:877.843387pt;}
.y1c5{bottom:877.853467pt;}
.y1a0{bottom:877.856747pt;}
.y28a{bottom:880.900987pt;}
.y178{bottom:880.946080pt;}
.y235{bottom:881.001387pt;}
.y68{bottom:881.023547pt;}
.y2bb{bottom:889.307067pt;}
.ya5{bottom:889.704933pt;}
.y13b{bottom:890.402267pt;}
.y10a{bottom:893.160667pt;}
.yd0{bottom:893.207387pt;}
.y1c4{bottom:893.217467pt;}
.y19f{bottom:893.220747pt;}
.y289{bottom:896.267600pt;}
.y177{bottom:896.310080pt;}
.y234{bottom:896.365387pt;}
.y67{bottom:896.387547pt;}
.y7{bottom:898.507067pt;}
.y1f0{bottom:902.906667pt;}
.y13a{bottom:905.766267pt;}
.ya4{bottom:906.020107pt;}
.y109{bottom:908.524667pt;}
.ycf{bottom:908.571387pt;}
.y1c3{bottom:908.581467pt;}
.y19e{bottom:908.584747pt;}
.y2ba{bottom:910.104827pt;}
.y1f2{bottom:910.587067pt;}
.y1ef{bottom:910.589227pt;}
.y176{bottom:911.674080pt;}
.y233{bottom:911.729387pt;}
.y66{bottom:911.751547pt;}
.ya3{bottom:921.384133pt;}
.y269{bottom:923.623227pt;}
.y108{bottom:923.808507pt;}
.yce{bottom:923.855227pt;}
.y1c2{bottom:923.865307pt;}
.y1ee{bottom:926.273867pt;}
.y139{bottom:926.407467pt;}
.y175{bottom:926.957920pt;}
.y232{bottom:927.013227pt;}
.y65{bottom:927.035387pt;}
.ya2{bottom:937.603147pt;}
.y107{bottom:939.172507pt;}
.ycd{bottom:939.219227pt;}
.y1c1{bottom:939.229307pt;}
.y2b9{bottom:941.460747pt;}
.y1ed{bottom:941.958507pt;}
.y174{bottom:942.321920pt;}
.y231{bottom:942.377227pt;}
.y64{bottom:942.399387pt;}
.y268{bottom:944.585067pt;}
.ya1{bottom:952.967147pt;}
.y106{bottom:954.456347pt;}
.ycc{bottom:954.503067pt;}
.y1c0{bottom:954.506533pt;}
.y19d{bottom:954.507067pt;}
.y2b8{bottom:956.824747pt;}
.y173{bottom:957.685920pt;}
.y230{bottom:957.741227pt;}
.y63{bottom:957.763387pt;}
.y267{bottom:965.627067pt;}
.ya0{bottom:969.212907pt;}
.y105{bottom:969.820347pt;}
.ycb{bottom:969.867067pt;}
.y2b7{bottom:972.108587pt;}
.y288{bottom:972.422907pt;}
.y1ec{bottom:972.833467pt;}
.y172{bottom:972.969760pt;}
.y22f{bottom:973.025067pt;}
.y62{bottom:973.047227pt;}
.y9f{bottom:985.545467pt;}
.y2b6{bottom:987.465867pt;}
.y171{bottom:988.333760pt;}
.y22e{bottom:988.389067pt;}
.y61{bottom:988.411227pt;}
.y9e{bottom:1000.905467pt;}
.y2b5{bottom:1002.809867pt;}
.y1eb{bottom:1003.548107pt;}
.y170{bottom:1003.697760pt;}
.y22d{bottom:1003.753067pt;}
.y60{bottom:1003.775227pt;}
.y5{bottom:1014.827067pt;}
.y9d{bottom:1017.145867pt;}
.y16f{bottom:1018.981600pt;}
.y22c{bottom:1019.036907pt;}
.y2b4{bottom:1019.055627pt;}
.y5f{bottom:1019.059067pt;}
.y4{bottom:1029.467067pt;}
.y5b{bottom:1032.426667pt;}
.y9c{bottom:1033.466533pt;}
.y16e{bottom:1034.345600pt;}
.y22b{bottom:1034.400907pt;}
.y2b3{bottom:1034.419627pt;}
.y5e{bottom:1034.423067pt;}
.y3{bottom:1044.107067pt;}
.y9b{bottom:1048.826533pt;}
.y16d{bottom:1049.709600pt;}
.y22a{bottom:1049.764907pt;}
.y2b2{bottom:1049.786267pt;}
.y5d{bottom:1049.787067pt;}
.y2{bottom:1058.747067pt;}
.y57{bottom:1059.946667pt;}
.y1{bottom:1073.387067pt;}
.y5c{bottom:1074.827067pt;}
.h6{height:14.880000pt;}
.h10{height:16.000000pt;}
.h2{height:28.366406pt;}
.h35{height:29.440000pt;}
.h11{height:29.550937pt;}
.h1f{height:32.554688pt;}
.h7{height:32.859375pt;}
.h1{height:33.257812pt;}
.h1d{height:36.583437pt;}
.h1e{height:37.105312pt;}
.h3e{height:37.114913pt;}
.h8{height:37.343906pt;}
.h49{height:37.359906pt;}
.hf{height:39.790000pt;}
.h23{height:42.117188pt;}
.he{height:42.656250pt;}
.h40{height:42.862500pt;}
.h3c{height:45.040000pt;}
.h37{height:45.120000pt;}
.h2a{height:45.520000pt;}
.h32{height:45.600000pt;}
.h5{height:46.890469pt;}
.h16{height:46.890575pt;}
.hd{height:46.890682pt;}
.h14{height:46.895589pt;}
.h1b{height:46.895802pt;}
.h42{height:46.896015pt;}
.h1a{height:46.899002pt;}
.h48{height:46.899429pt;}
.h18{height:46.901349pt;}
.h2f{height:46.903909pt;}
.h17{height:46.906575pt;}
.hc{height:46.906682pt;}
.ha{height:46.911589pt;}
.h20{height:46.916922pt;}
.h1c{height:46.917135pt;}
.h47{height:46.917349pt;}
.h43{height:46.917455pt;}
.h15{height:46.922789pt;}
.h3a{height:46.924709pt;}
.h34{height:46.949135pt;}
.h46{height:46.954469pt;}
.hb{height:46.965135pt;}
.h13{height:46.970682pt;}
.h19{height:46.976015pt;}
.h31{height:46.985189pt;}
.h45{height:47.002575pt;}
.h30{height:47.038949pt;}
.h44{height:47.411109pt;}
.h9{height:47.473189pt;}
.h12{height:47.697402pt;}
.h26{height:49.280000pt;}
.h4{height:51.382969pt;}
.h28{height:53.280000pt;}
.h2e{height:58.320000pt;}
.h41{height:59.531250pt;}
.h22{height:60.240000pt;}
.h24{height:60.880000pt;}
.h2b{height:61.120000pt;}
.h33{height:61.200000pt;}
.h21{height:66.278125pt;}
.h38{height:68.514925pt;}
.h2c{height:68.522605pt;}
.h25{height:74.000000pt;}
.h2d{height:74.080000pt;}
.h36{height:76.010469pt;}
.h3b{height:86.596389pt;}
.h3{height:92.125000pt;}
.h29{height:92.330469pt;}
.h3f{height:96.011250pt;}
.h27{height:100.330469pt;}
.h39{height:102.895589pt;}
.h3d{height:103.216229pt;}
.h0{height:1122.666667pt;}
.we{width:4.800000pt;}
.w4{width:6.960000pt;}
.w7{width:21.333333pt;}
.wb{width:49.920000pt;}
.wc{width:64.960000pt;}
.w8{width:76.560000pt;}
.wd{width:84.480000pt;}
.wa{width:101.360000pt;}
.w9{width:102.720000pt;}
.w5{width:131.200000pt;}
.w3{width:159.200000pt;}
.w6{width:294.080000pt;}
.w2{width:378.080000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1c{left:1.120000pt;}
.x11{left:17.040000pt;}
.x61{left:43.200000pt;}
.x1e{left:50.400000pt;}
.x63{left:58.240000pt;}
.x49{left:69.840000pt;}
.x25{left:75.600000pt;}
.x65{left:77.760000pt;}
.x37{left:78.814848pt;}
.x24{left:85.040133pt;}
.x76{left:86.800000pt;}
.x8{left:88.253504pt;}
.x13{left:92.560000pt;}
.x29{left:94.565973pt;}
.x52{left:96.000000pt;}
.x7{left:99.768896pt;}
.x38{left:102.240000pt;}
.xc{left:105.920000pt;}
.x5c{left:107.194240pt;}
.x57{left:112.080000pt;}
.x30{left:113.440000pt;}
.x59{left:115.927520pt;}
.x6{left:122.000000pt;}
.xb{left:128.160000pt;}
.x20{left:134.480000pt;}
.x18{left:148.646229pt;}
.x3d{left:157.440000pt;}
.x5e{left:158.746320pt;}
.x3e{left:167.120000pt;}
.x45{left:171.920000pt;}
.x26{left:181.760000pt;}
.x77{left:182.793344pt;}
.x5a{left:186.480000pt;}
.x58{left:188.640000pt;}
.x5{left:193.440000pt;}
.x5f{left:195.831920pt;}
.x5d{left:203.204960pt;}
.x27{left:205.200000pt;}
.x60{left:207.829200pt;}
.x3f{left:210.880000pt;}
.x22{left:213.360000pt;}
.x40{left:218.320000pt;}
.x19{left:220.800000pt;}
.x15{left:228.397568pt;}
.x1a{left:233.120000pt;}
.xd{left:240.800000pt;}
.x7a{left:242.480000pt;}
.xe{left:245.120000pt;}
.x7b{left:254.882062pt;}
.xa{left:259.200000pt;}
.x5b{left:263.040000pt;}
.x39{left:266.560000pt;}
.x62{left:270.640000pt;}
.x3a{left:276.960000pt;}
.x41{left:281.200000pt;}
.x28{left:282.800000pt;}
.x64{left:285.680000pt;}
.x17{left:296.322133pt;}
.x79{left:308.160000pt;}
.x9{left:315.938394pt;}
.x2f{left:323.200000pt;}
.x78{left:332.800000pt;}
.x7c{left:336.640000pt;}
.x42{left:340.960000pt;}
.x1b{left:350.880000pt;}
.x1d{left:355.680000pt;}
.x7d{left:363.038667pt;}
.x3b{left:365.200000pt;}
.x3c{left:372.640000pt;}
.xf{left:380.000000pt;}
.x16{left:386.800000pt;}
.x2b{left:404.808235pt;}
.x6b{left:412.003307pt;}
.x1f{left:413.600000pt;}
.x70{left:416.012800pt;}
.x72{left:418.957067pt;}
.x2a{left:423.758507pt;}
.x73{left:426.158107pt;}
.x46{left:427.659264pt;}
.x54{left:430.079317pt;}
.x6d{left:433.680000pt;}
.x36{left:435.200000pt;}
.x4e{left:439.444779pt;}
.x2c{left:442.655360pt;}
.x31{left:444.242560pt;}
.x32{left:472.080000pt;}
.x43{left:480.000000pt;}
.x6c{left:490.320000pt;}
.x21{left:492.000000pt;}
.x56{left:501.120000pt;}
.x74{left:502.720000pt;}
.x7e{left:503.844082pt;}
.x10{left:506.240000pt;}
.x4d{left:510.010837pt;}
.x71{left:511.996107pt;}
.x44{left:514.320000pt;}
.x4f{left:516.000000pt;}
.x67{left:520.400000pt;}
.x75{left:522.158800pt;}
.x47{left:523.665963pt;}
.x80{left:524.716560pt;}
.x55{left:526.089856pt;}
.x12{left:530.000000pt;}
.x48{left:533.120000pt;}
.x50{left:535.444395pt;}
.x7f{left:538.320000pt;}
.x51{left:544.800000pt;}
.x6e{left:552.560000pt;}
.x6f{left:556.560000pt;}
.x69{left:558.640000pt;}
.x23{left:576.560000pt;}
.x68{left:583.280000pt;}
.x4{left:590.799192pt;}
.x4b{left:596.400000pt;}
.x1{left:598.560000pt;}
.x66{left:600.560000pt;}
.x14{left:605.520000pt;}
.x4a{left:609.680000pt;}
.x6a{left:623.600000pt;}
.x3{left:625.285009pt;}
.x53{left:647.520000pt;}
.x2{left:654.564966pt;}
.x33{left:658.320000pt;}
.x34{left:662.800000pt;}
.x35{left:670.480000pt;}
.x2d{left:684.800000pt;}
.x2e{left:688.146653pt;}
.x4c{left:695.200000pt;}
}




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