
    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_2707feb9ccca09abc0911a78.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.132000;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_2707feb9ccca09abc0911a78.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.132000;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_d058ca389be0206207e7bbee.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.113281;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_236801ddd469120b1da46d4c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_07fc210863f312e9704f2f5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984000;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_657d3f5d6190dba9973ce957.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.703125;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_e5a4448296b4b12a5d02ab4f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.132000;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_17086721f5202175aec150e3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9aa856b67b969f3a324e2f97.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c8d3f3462b1697ed2a5fd0c9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_f4ccb2a9e91de5ab44d86a13.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.113281;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_ed41464413b99beab47e7000.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9befe64159be6ff21fbe465a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.m2{transform:matrix(0.255566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255566,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-102.960000px;}
.v3{vertical-align:-18.000000px;}
.v8{vertical-align:-10.098000px;}
.v6{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:8.640000px;}
.v9{vertical-align:10.098000px;}
.v4{vertical-align:18.018000px;}
.v2{vertical-align:48.222000px;}
.v7{vertical-align:57.564000px;}
.ls5{letter-spacing:-3.996000px;}
.ls1f{letter-spacing:-1.640160px;}
.ls5c{letter-spacing:-1.523520px;}
.ls1e{letter-spacing:-1.061280px;}
.ls31{letter-spacing:-1.059840px;}
.ls5b{letter-spacing:-0.993600px;}
.ls21{letter-spacing:-0.916560px;}
.ls54{letter-spacing:-0.861120px;}
.ls28{letter-spacing:-0.820080px;}
.ls6b{letter-spacing:-0.728640px;}
.ls4e{letter-spacing:-0.486000px;}
.ls2f{letter-spacing:-0.397440px;}
.ls20{letter-spacing:-0.337680px;}
.ls65{letter-spacing:-0.336960px;}
.ls2b{letter-spacing:-0.331200px;}
.ls4d{letter-spacing:-0.324000px;}
.lsaa{letter-spacing:-0.298800px;}
.ls1b{letter-spacing:-0.292320px;}
.ls66{letter-spacing:-0.264960px;}
.lsa9{letter-spacing:-0.239040px;}
.ls4f{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.192960px;}
.ls12{letter-spacing:-0.191520px;}
.ls17{letter-spacing:-0.167040px;}
.ls62{letter-spacing:-0.144000px;}
.ls2a{letter-spacing:-0.132480px;}
.lsa8{letter-spacing:-0.119520px;}
.ls14{letter-spacing:-0.108000px;}
.ls1c{letter-spacing:-0.083520px;}
.ls29{letter-spacing:-0.072000px;}
.lsab{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.018000px;}
.ls92{letter-spacing:0.046368px;}
.ls9d{letter-spacing:0.047808px;}
.lsc{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.083520px;}
.ls11{letter-spacing:0.096480px;}
.ls37{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.162000px;}
.ls8{letter-spacing:0.192960px;}
.lsc4{letter-spacing:0.203184px;}
.lsb{letter-spacing:0.208800px;}
.ls16{letter-spacing:0.216000px;}
.ls9b{letter-spacing:0.239040px;}
.ls24{letter-spacing:0.241200px;}
.ls2d{letter-spacing:0.264960px;}
.lsa4{letter-spacing:0.280872px;}
.lsb7{letter-spacing:0.286848px;}
.ls13{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.289440px;}
.ls1d{letter-spacing:0.292320px;}
.lsb5{letter-spacing:0.292824px;}
.lsa0{letter-spacing:0.298800px;}
.ls2e{letter-spacing:0.304704px;}
.lsbd{letter-spacing:0.304776px;}
.ls9a{letter-spacing:0.310752px;}
.ls6a{letter-spacing:0.311328px;}
.ls9e{letter-spacing:0.322704px;}
.ls2c{letter-spacing:0.331200px;}
.ls7{letter-spacing:0.337680px;}
.lsb8{letter-spacing:0.352584px;}
.ls52{letter-spacing:0.357696px;}
.lsb4{letter-spacing:0.358560px;}
.lsba{letter-spacing:0.370512px;}
.ls57{letter-spacing:0.370944px;}
.ls3b{letter-spacing:0.378000px;}
.lsb9{letter-spacing:0.382464px;}
.ls67{letter-spacing:0.384192px;}
.ls97{letter-spacing:0.390816px;}
.ls96{letter-spacing:0.397440px;}
.ls68{letter-spacing:0.417312px;}
.ls5d{letter-spacing:0.423936px;}
.lsb3{letter-spacing:0.442224px;}
.ls58{letter-spacing:0.443808px;}
.lsa6{letter-spacing:0.454176px;}
.ls56{letter-spacing:0.457056px;}
.ls93{letter-spacing:0.463680px;}
.lsa1{letter-spacing:0.472104px;}
.ls53{letter-spacing:0.476928px;}
.ls94{letter-spacing:0.503424px;}
.lsc2{letter-spacing:0.525888px;}
.ls19{letter-spacing:0.542880px;}
.ls9c{letter-spacing:0.549792px;}
.ls55{letter-spacing:0.556416px;}
.lsac{letter-spacing:0.597600px;}
.ls98{letter-spacing:0.616032px;}
.ls1a{letter-spacing:0.626400px;}
.ls9f{letter-spacing:0.645408px;}
.lsae{letter-spacing:0.657360px;}
.lsb2{letter-spacing:0.705168px;}
.lsbb{letter-spacing:0.717120px;}
.lsbf{letter-spacing:0.800784px;}
.lsad{letter-spacing:0.956160px;}
.lsaf{letter-spacing:0.992016px;}
.lsb0{letter-spacing:0.997992px;}
.ls63{letter-spacing:1.013040px;}
.lsa2{letter-spacing:1.027872px;}
.ls27{letter-spacing:1.059840px;}
.lsc1{letter-spacing:1.081656px;}
.ls91{letter-spacing:1.099584px;}
.lsb6{letter-spacing:1.129464px;}
.lsbe{letter-spacing:1.165320px;}
.ls4{letter-spacing:1.680000px;}
.ls60{letter-spacing:1.828224px;}
.ls2{letter-spacing:1.890000px;}
.lsa5{letter-spacing:2.091600px;}
.lsf{letter-spacing:2.209392px;}
.ls90{letter-spacing:2.450880px;}
.ls1{letter-spacing:2.940000px;}
.ls26{letter-spacing:3.179520px;}
.ls32{letter-spacing:3.212640px;}
.ls5a{letter-spacing:3.325248px;}
.ls8e{letter-spacing:4.636800px;}
.ls95{letter-spacing:5.365440px;}
.lse{letter-spacing:5.537952px;}
.ls59{letter-spacing:5.749632px;}
.ls39{letter-spacing:5.802624px;}
.ls8f{letter-spacing:6.392160px;}
.lsa{letter-spacing:7.099200px;}
.lsbc{letter-spacing:7.171200px;}
.ls69{letter-spacing:7.485120px;}
.ls36{letter-spacing:8.028000px;}
.ls73{letter-spacing:8.046000px;}
.ls25{letter-spacing:8.200800px;}
.lsc0{letter-spacing:8.605440px;}
.ls51{letter-spacing:8.942400px;}
.ls50{letter-spacing:8.995392px;}
.ls99{letter-spacing:9.671040px;}
.ls22{letter-spacing:9.787896px;}
.lsc3{letter-spacing:10.039680px;}
.ls5e{letter-spacing:10.399680px;}
.ls9{letter-spacing:10.908000px;}
.ls38{letter-spacing:11.128320px;}
.ls64{letter-spacing:14.228352px;}
.ls30{letter-spacing:14.778144px;}
.ls5f{letter-spacing:14.930496px;}
.lsa3{letter-spacing:16.493760px;}
.ls3{letter-spacing:17.850000px;}
.ls61{letter-spacing:25.502400px;}
.ls3f{letter-spacing:49.788000px;}
.ls84{letter-spacing:51.246000px;}
.lsa7{letter-spacing:55.397520px;}
.lsb1{letter-spacing:63.285840px;}
.ls46{letter-spacing:67.770000px;}
.ls85{letter-spacing:69.930000px;}
.ls86{letter-spacing:73.548000px;}
.ls49{letter-spacing:74.250000px;}
.ls83{letter-spacing:81.486000px;}
.ls8b{letter-spacing:82.890000px;}
.ls6c{letter-spacing:87.948000px;}
.ls42{letter-spacing:87.966000px;}
.ls82{letter-spacing:90.828000px;}
.ls3d{letter-spacing:92.286000px;}
.ls87{letter-spacing:93.690000px;}
.ls74{letter-spacing:98.010000px;}
.ls4a{letter-spacing:101.628000px;}
.ls33{letter-spacing:102.330000px;}
.ls8a{letter-spacing:108.810000px;}
.ls34{letter-spacing:109.566000px;}
.ls8d{letter-spacing:110.934000px;}
.ls88{letter-spacing:110.988000px;}
.ls8c{letter-spacing:111.006000px;}
.ls4c{letter-spacing:113.130000px;}
.ls40{letter-spacing:118.206000px;}
.ls89{letter-spacing:123.930000px;}
.ls81{letter-spacing:156.330000px;}
.ls80{letter-spacing:160.650000px;}
.ls3e{letter-spacing:193.050000px;}
.ls6f{letter-spacing:200.286000px;}
.ls70{letter-spacing:200.971800px;}
.ls44{letter-spacing:203.850000px;}
.ls45{letter-spacing:215.406000px;}
.ls35{letter-spacing:217.566000px;}
.ls48{letter-spacing:233.388000px;}
.ls71{letter-spacing:239.868000px;}
.ls6d{letter-spacing:248.508000px;}
.ls43{letter-spacing:254.988000px;}
.ls72{letter-spacing:263.628000px;}
.ls77{letter-spacing:265.788000px;}
.ls6e{letter-spacing:273.726000px;}
.ls75{letter-spacing:278.748000px;}
.ls7c{letter-spacing:288.090000px;}
.ls76{letter-spacing:288.846000px;}
.ls41{letter-spacing:293.868000px;}
.ls7b{letter-spacing:303.210000px;}
.ls7e{letter-spacing:311.148000px;}
.ls78{letter-spacing:319.788000px;}
.ls23{letter-spacing:333.493200px;}
.ls79{letter-spacing:370.926000px;}
.ls4b{letter-spacing:411.210000px;}
.ls7f{letter-spacing:597.726000px;}
.ls3c{letter-spacing:603.450000px;}
.ls7d{letter-spacing:820.206000px;}
.ls7a{letter-spacing:835.326000px;}
.ls3a{letter-spacing:843.984000px;}
.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;}
}
.wsb2{word-spacing:-23.081760px;}
.wsa1{word-spacing:-20.304000px;}
.ws5c{word-spacing:-19.944000px;}
.wsb0{word-spacing:-19.872000px;}
.wsca{word-spacing:-18.679680px;}
.ws7b{word-spacing:-18.414720px;}
.ws5e{word-spacing:-18.282240px;}
.ws5d{word-spacing:-18.083520px;}
.wsb8{word-spacing:-18.017280px;}
.wsd5{word-spacing:-17.569440px;}
.wsd1{word-spacing:-17.210880px;}
.wsf4{word-spacing:-16.971840px;}
.wsd4{word-spacing:-16.852320px;}
.wsd2{word-spacing:-16.613280px;}
.wsd3{word-spacing:-16.553520px;}
.wscf{word-spacing:-16.493760px;}
.wsf5{word-spacing:-16.374240px;}
.wsd0{word-spacing:-16.314480px;}
.ws8e{word-spacing:-15.390000px;}
.ws33{word-spacing:-15.228000px;}
.ws36{word-spacing:-15.174000px;}
.ws8f{word-spacing:-15.120000px;}
.ws2{word-spacing:-15.024000px;}
.ws35{word-spacing:-14.904000px;}
.ws96{word-spacing:-14.796000px;}
.wsc0{word-spacing:-14.526000px;}
.ws32{word-spacing:-13.507200px;}
.ws31{word-spacing:-13.410720px;}
.wsc1{word-spacing:-13.284000px;}
.ws30{word-spacing:-13.217760px;}
.ws5b{word-spacing:-12.590640px;}
.ws3d{word-spacing:-11.901600px;}
.ws39{word-spacing:-11.818080px;}
.ws34{word-spacing:-11.692800px;}
.ws1b{word-spacing:-11.676000px;}
.ws38{word-spacing:-11.609280px;}
.ws1a{word-spacing:-11.520000px;}
.ws37{word-spacing:-11.442240px;}
.ws3a{word-spacing:-11.316960px;}
.ws1c{word-spacing:-11.016000px;}
.ws3e{word-spacing:-10.152000px;}
.ws3b{word-spacing:-10.080000px;}
.ws3c{word-spacing:-10.008000px;}
.ws95{word-spacing:-9.684000px;}
.ws74{word-spacing:-3.841920px;}
.ws4{word-spacing:-3.570000px;}
.wsef{word-spacing:-3.525840px;}
.ws68{word-spacing:-3.179520px;}
.ws10e{word-spacing:-2.868480px;}
.ws10a{word-spacing:-2.808720px;}
.ws7{word-spacing:-2.592000px;}
.ws70{word-spacing:-2.450880px;}
.wsb5{word-spacing:-2.412000px;}
.ws10f{word-spacing:-2.151360px;}
.wsff{word-spacing:-2.091600px;}
.ws13{word-spacing:-1.890000px;}
.wsc9{word-spacing:-1.854720px;}
.ws67{word-spacing:-1.722240px;}
.ws49{word-spacing:-1.688400px;}
.ws9{word-spacing:-1.680000px;}
.ws1f{word-spacing:-1.584000px;}
.wscc{word-spacing:-1.457280px;}
.ws1{word-spacing:-1.428000px;}
.wsab{word-spacing:-1.391040px;}
.wsee{word-spacing:-1.374480px;}
.wse{word-spacing:-1.344000px;}
.ws16{word-spacing:-1.296000px;}
.ws69{word-spacing:-0.993600px;}
.ws23{word-spacing:-0.966000px;}
.wsb4{word-spacing:-0.964800px;}
.ws2d{word-spacing:-0.960000px;}
.ws3{word-spacing:-0.918000px;}
.ws28{word-spacing:-0.864000px;}
.ws27{word-spacing:-0.840000px;}
.ws5{word-spacing:-0.816000px;}
.ws97{word-spacing:-0.810000px;}
.wscd{word-spacing:-0.794880px;}
.ws90{word-spacing:-0.756000px;}
.ws92{word-spacing:-0.702000px;}
.ws22{word-spacing:-0.672000px;}
.wsfc{word-spacing:-0.657360px;}
.ws21{word-spacing:-0.630000px;}
.ws47{word-spacing:-0.626400px;}
.ws103{word-spacing:-0.597600px;}
.ws8{word-spacing:-0.528000px;}
.ws26{word-spacing:-0.432000px;}
.ws25{word-spacing:-0.420000px;}
.wsc5{word-spacing:-0.397440px;}
.ws105{word-spacing:-0.358560px;}
.wsa4{word-spacing:-0.331200px;}
.ws108{word-spacing:-0.298800px;}
.ws60{word-spacing:-0.264960px;}
.ws57{word-spacing:-0.241200px;}
.wsfd{word-spacing:-0.239040px;}
.ws93{word-spacing:-0.216000px;}
.ws44{word-spacing:-0.162000px;}
.ws42{word-spacing:-0.144000px;}
.ws48{word-spacing:-0.108000px;}
.ws2a{word-spacing:-0.096000px;}
.ws29{word-spacing:-0.084000px;}
.wsbf{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.wsda{word-spacing:0.059760px;}
.ws46{word-spacing:0.083520px;}
.ws43{word-spacing:0.108000px;}
.wsdb{word-spacing:0.119520px;}
.ws75{word-spacing:0.132480px;}
.ws45{word-spacing:0.167040px;}
.ws41{word-spacing:0.191520px;}
.ws40{word-spacing:0.192960px;}
.ws5a{word-spacing:0.216000px;}
.ws2c{word-spacing:0.294000px;}
.wsed{word-spacing:0.298800px;}
.wsc3{word-spacing:0.324000px;}
.ws8d{word-spacing:0.331200px;}
.ws55{word-spacing:0.337680px;}
.wsc4{word-spacing:0.378000px;}
.ws80{word-spacing:0.397440px;}
.wsf1{word-spacing:0.418320px;}
.ws65{word-spacing:0.463680px;}
.ws3f{word-spacing:0.482400px;}
.wsc6{word-spacing:0.486000px;}
.wsa2{word-spacing:0.529920px;}
.ws9b{word-spacing:0.594000px;}
.ws88{word-spacing:0.662400px;}
.ws109{word-spacing:0.717120px;}
.wsb9{word-spacing:0.728640px;}
.wsb3{word-spacing:0.766080px;}
.wse3{word-spacing:0.776880px;}
.wsb7{word-spacing:0.861120px;}
.ws58{word-spacing:0.916560px;}
.wsbc{word-spacing:0.993600px;}
.ws8b{word-spacing:1.059840px;}
.ws4a{word-spacing:1.061280px;}
.ws19{word-spacing:1.152000px;}
.ws7d{word-spacing:1.192320px;}
.ws52{word-spacing:1.206000px;}
.ws2e{word-spacing:1.218000px;}
.ws2f{word-spacing:1.248000px;}
.ws15{word-spacing:1.344000px;}
.ws98{word-spacing:1.350000px;}
.ws111{word-spacing:1.434240px;}
.ws10d{word-spacing:1.494000px;}
.wsae{word-spacing:1.523520px;}
.ws4f{word-spacing:1.640160px;}
.wscb{word-spacing:1.788480px;}
.ws85{word-spacing:1.920960px;}
.ws4e{word-spacing:1.929600px;}
.ws9d{word-spacing:2.052000px;}
.wsf{word-spacing:2.064000px;}
.ws17{word-spacing:2.112000px;}
.wsfa{word-spacing:2.211120px;}
.ws20{word-spacing:2.310000px;}
.ws81{word-spacing:2.583360px;}
.ws4c{word-spacing:2.653200px;}
.wsfb{word-spacing:2.928240px;}
.wsd7{word-spacing:2.988000px;}
.ws12{word-spacing:3.216000px;}
.ws78{word-spacing:3.312000px;}
.ws4d{word-spacing:3.328560px;}
.wsdf{word-spacing:3.705120px;}
.wsd6{word-spacing:3.824640px;}
.ws1d{word-spacing:3.990000px;}
.ws5f{word-spacing:4.040640px;}
.ws53{word-spacing:4.052160px;}
.ws1e{word-spacing:4.128000px;}
.wsb6{word-spacing:4.173120px;}
.wse7{word-spacing:4.362480px;}
.wse0{word-spacing:4.422240px;}
.ws83{word-spacing:4.769280px;}
.ws4b{word-spacing:4.775760px;}
.ws9f{word-spacing:4.968000px;}
.wsf6{word-spacing:5.139360px;}
.ws87{word-spacing:5.497920px;}
.ws50{word-spacing:5.499360px;}
.wsa5{word-spacing:5.630400px;}
.ws11{word-spacing:5.664000px;}
.ws102{word-spacing:5.856480px;}
.ws64{word-spacing:6.226560px;}
.ws6{word-spacing:6.240000px;}
.wsf0{word-spacing:6.573600px;}
.wsd{word-spacing:6.912000px;}
.ws6e{word-spacing:6.955200px;}
.wsc2{word-spacing:7.128000px;}
.wsa3{word-spacing:7.220160px;}
.wsec{word-spacing:7.290720px;}
.wsa7{word-spacing:7.617600px;}
.ws54{word-spacing:7.670160px;}
.ws7c{word-spacing:7.683840px;}
.wsa0{word-spacing:7.882560px;}
.wsfe{word-spacing:8.007840px;}
.ws6f{word-spacing:8.346240px;}
.ws91{word-spacing:8.532000px;}
.ws10{word-spacing:8.544000px;}
.ws110{word-spacing:8.724960px;}
.ws14{word-spacing:8.736000px;}
.ws62{word-spacing:9.074880px;}
.ws9e{word-spacing:9.288000px;}
.ws106{word-spacing:9.442080px;}
.ws18{word-spacing:9.648000px;}
.ws76{word-spacing:9.803520px;}
.wsf2{word-spacing:10.159200px;}
.ws107{word-spacing:10.338480px;}
.ws6c{word-spacing:10.532160px;}
.ws56{word-spacing:10.564560px;}
.ws24{word-spacing:11.172000px;}
.ws73{word-spacing:11.260800px;}
.ws59{word-spacing:11.288160px;}
.ws2b{word-spacing:11.472000px;}
.ws77{word-spacing:11.989440px;}
.ws51{word-spacing:12.011760px;}
.ws63{word-spacing:12.718080px;}
.wse1{word-spacing:13.027680px;}
.ws99{word-spacing:13.380480px;}
.ws71{word-spacing:14.109120px;}
.ws66{word-spacing:14.837760px;}
.wsa9{word-spacing:15.566400px;}
.ws101{word-spacing:15.896160px;}
.ws82{word-spacing:16.295040px;}
.wse6{word-spacing:16.613280px;}
.wsa6{word-spacing:17.023680px;}
.ws10b{word-spacing:17.270640px;}
.ws10c{word-spacing:17.330400px;}
.ws72{word-spacing:17.752320px;}
.ws79{word-spacing:18.480960px;}
.ws94{word-spacing:19.143360px;}
.wsa{word-spacing:19.536000px;}
.ws104{word-spacing:19.541520px;}
.ws7f{word-spacing:19.872000px;}
.wse2{word-spacing:20.258640px;}
.ws7e{word-spacing:20.600640px;}
.wsaf{word-spacing:20.799360px;}
.wsac{word-spacing:21.329280px;}
.wsd9{word-spacing:21.633120px;}
.wsd8{word-spacing:21.692880px;}
.ws61{word-spacing:22.057920px;}
.ws89{word-spacing:22.786560px;}
.wsba{word-spacing:22.919040px;}
.wsc{word-spacing:23.376000px;}
.wsbd{word-spacing:23.515200px;}
.wsdc{word-spacing:23.844240px;}
.ws6b{word-spacing:24.243840px;}
.wsb{word-spacing:24.816000px;}
.ws6d{word-spacing:24.906240px;}
.wsb1{word-spacing:25.634880px;}
.wsf8{word-spacing:25.995600px;}
.ws6a{word-spacing:26.363520px;}
.ws8a{word-spacing:27.092160px;}
.ws7a{word-spacing:27.820800px;}
.wse4{word-spacing:28.864080px;}
.wse5{word-spacing:29.043360px;}
.ws84{word-spacing:29.278080px;}
.ws86{word-spacing:29.940480px;}
.wsad{word-spacing:30.669120px;}
.wsce{word-spacing:31.397760px;}
.wsaa{word-spacing:32.126400px;}
.wseb{word-spacing:33.226560px;}
.wse9{word-spacing:33.943680px;}
.wsea{word-spacing:34.122960px;}
.wsbe{word-spacing:37.160640px;}
.wsa8{word-spacing:38.617920px;}
.wsbb{word-spacing:39.346560px;}
.ws8c{word-spacing:43.652160px;}
.ws9a{word-spacing:48.168000px;}
.wsf9{word-spacing:52.648560px;}
.wsde{word-spacing:53.365680px;}
.wsdd{word-spacing:54.082800px;}
.wsc7{word-spacing:54.594000px;}
.wsf3{word-spacing:55.517040px;}
.ws9c{word-spacing:61.128000px;}
.ws100{word-spacing:63.465120px;}
.wsc8{word-spacing:126.144000px;}
.wsf7{word-spacing:137.627280px;}
.wse8{word-spacing:157.766400px;}
.ws112{word-spacing:158.483520px;}
._7{margin-left:-11.955600px;}
._1{margin-left:-6.232800px;}
._8{margin-left:-5.049600px;}
._4{margin-left:-4.006800px;}
._2{margin-left:-2.156400px;}
._0{margin-left:-1.152000px;}
._3{width:1.911600px;}
._1e{width:2.975616px;}
._9{width:4.006800px;}
._1f{width:5.021712px;}
._b{width:6.027840px;}
._6{width:7.120800px;}
._11{width:8.208000px;}
._d{width:10.028160px;}
._a{width:11.664000px;}
._e{width:12.790944px;}
._c{width:14.055552px;}
._27{width:16.495920px;}
._28{width:17.503488px;}
._32{width:20.931840px;}
._3a{width:21.993840px;}
._33{width:24.612048px;}
._35{width:28.436688px;}
._37{width:33.293520px;}
._38{width:52.444080px;}
._34{width:53.727840px;}
._2b{width:56.102400px;}
._39{width:63.996480px;}
._1c{width:82.292400px;}
._21{width:92.826000px;}
._10{width:100.008000px;}
._1a{width:101.462400px;}
._2d{width:111.189600px;}
._1d{width:112.532400px;}
._2f{width:123.393600px;}
._31{width:141.966000px;}
._36{width:157.111920px;}
._2e{width:160.866000px;}
._20{width:186.570000px;}
._f{width:192.348000px;}
._1b{width:197.370000px;}
._30{width:206.010000px;}
._25{width:250.506000px;}
._22{width:259.524000px;}
._2c{width:265.788000px;}
._23{width:274.644000px;}
._24{width:308.286000px;}
._19{width:386.906400px;}
._18{width:449.388000px;}
._15{width:463.183200px;}
._12{width:494.748000px;}
._2a{width:514.188000px;}
._17{width:531.648000px;}
._14{width:568.206000px;}
._26{width:569.772000px;}
._29{width:578.466000px;}
._5{width:675.529800px;}
._16{width:751.680000px;}
._13{width:916.650000px;}
.fc9{color:rgb(255,0,0);}
.fc8{color:rgb(164,32,53);}
.fc7{color:rgb(165,0,33);}
.fcb{color:rgb(5,99,193);}
.fc4{color:rgb(19,17,18);}
.fc3{color:rgb(148,26,31);}
.fc2{color:rgb(148,33,38);}
.fc1{color:transparent;}
.fca{color:rgb(33,33,33);}
.fc6{color:rgb(0,0,0);}
.fc5{color:rgb(34,34,34);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:18.000000px;}
.fs12{font-size:30.240000px;}
.fsf{font-size:36.000000px;}
.fse{font-size:41.760000px;}
.fs7{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fsb{font-size:48.240000px;}
.fs11{font-size:52.495800px;}
.fs3{font-size:54.000000px;}
.fs10{font-size:59.760000px;}
.fs9{font-size:66.000000px;}
.fsd{font-size:66.240000px;}
.fs8{font-size:69.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs13{font-size:84.240000px;}
.fsc{font-size:95.760000px;}
.fs6{font-size:102.000000px;}
.fs1{font-size:174.000000px;}
.fs5{font-size:318.000000px;}
.ye4{bottom:-1.696800px;}
.ye6{bottom:-1.696350px;}
.ye8{bottom:-1.695900px;}
.y0{bottom:0.000000px;}
.y37c{bottom:3.060000px;}
.y179{bottom:4.680000px;}
.y17b{bottom:4.860000px;}
.y1bb{bottom:5.040000px;}
.y1d9{bottom:5.220000px;}
.y1a7{bottom:5.580000px;}
.y18d{bottom:7.380000px;}
.y316{bottom:10.440000px;}
.y1c0{bottom:30.240000px;}
.y342{bottom:40.680000px;}
.y1c9{bottom:53.820000px;}
.y34{bottom:54.730650px;}
.y8b{bottom:59.748000px;}
.y356{bottom:64.620000px;}
.y360{bottom:64.800000px;}
.ybc{bottom:66.240000px;}
.y33{bottom:68.230650px;}
.y8a{bottom:74.148000px;}
.y72{bottom:81.477300px;}
.y32{bottom:81.730650px;}
.y3ee{bottom:90.465840px;}
.y16f{bottom:90.912240px;}
.y2e3{bottom:90.914400px;}
.y2a3{bottom:92.772000px;}
.y30d{bottom:92.859840px;}
.y1b7{bottom:93.060000px;}
.y252{bottom:94.374720px;}
.y31{bottom:95.230650px;}
.y71{bottom:96.477300px;}
.y3f9{bottom:98.103600px;}
.y118{bottom:99.474480px;}
.yaf{bottom:99.760800px;}
.y1da{bottom:100.440000px;}
.y272{bottom:101.447280px;}
.y89{bottom:102.948000px;}
.y3c9{bottom:103.425840px;}
.y341{bottom:103.860000px;}
.y215{bottom:105.388560px;}
.yb9{bottom:108.518100px;}
.y30{bottom:108.730650px;}
.y390{bottom:110.455920px;}
.y232{bottom:110.915280px;}
.y70{bottom:111.477300px;}
.y3ed{bottom:112.424400px;}
.y16e{bottom:112.688640px;}
.y2a2{bottom:114.548400px;}
.y251{bottom:116.151120px;}
.y88{bottom:117.348000px;}
.y2c7{bottom:119.464560px;}
.yae{bottom:119.612700px;}
.y3f8{bottom:119.880000px;}
.y343{bottom:120.600000px;}
.y347{bottom:120.604500px;}
.y209{bottom:121.396320px;}
.y117{bottom:121.433040px;}
.y2e2{bottom:121.699440px;}
.y2f{bottom:122.230650px;}
.y271{bottom:123.405840px;}
.y1d8{bottom:123.480000px;}
.y30c{bottom:123.827040px;}
.y3c8{bottom:125.202240px;}
.y6f{bottom:126.477300px;}
.y214{bottom:127.164960px;}
.y87{bottom:131.748000px;}
.y38f{bottom:132.414480px;}
.y345{bottom:132.664500px;}
.y231{bottom:132.691680px;}
.yad{bottom:134.012700px;}
.y3ec{bottom:134.200800px;}
.y16d{bottom:134.647200px;}
.y2e{bottom:135.730650px;}
.y38b{bottom:135.735840px;}
.y145{bottom:136.173600px;}
.y2a1{bottom:136.324800px;}
.ye2{bottom:137.340000px;}
.y250{bottom:137.927520px;}
.y2c6{bottom:141.423120px;}
.y6e{bottom:141.477300px;}
.y208{bottom:143.172720px;}
.y116{bottom:143.209440px;}
.y346{bottom:144.540000px;}
.y3a0{bottom:145.182240px;}
.y86{bottom:146.148000px;}
.y3c7{bottom:146.978640px;}
.y1d7{bottom:148.680000px;}
.y213{bottom:148.941360px;}
.y2d{bottom:149.230650px;}
.y1d5{bottom:149.404500px;}
.y3f7{bottom:151.200000px;}
.y2e1{bottom:152.666640px;}
.y43e{bottom:152.802720px;}
.y270{bottom:154.190880px;}
.y30b{bottom:154.612080px;}
.y230{bottom:154.650240px;}
.y3eb{bottom:155.977200px;}
.y16c{bottom:156.423600px;}
.y6d{bottom:156.477300px;}
.y344{bottom:156.600000px;}
.y38a{bottom:157.512240px;}
.y144{bottom:157.950000px;}
.y2a0{bottom:158.101200px;}
.y1b8{bottom:158.580000px;}
.y24f{bottom:159.703920px;}
.y85{bottom:160.548000px;}
.ye1{bottom:161.820000px;}
.y2c5{bottom:163.199520px;}
.y207{bottom:164.949120px;}
.y115{bottom:164.985840px;}
.y39f{bottom:166.958640px;}
.y1d6{bottom:168.660000px;}
.y3c6{bottom:168.755040px;}
.y212{bottom:170.717760px;}
.y41a{bottom:170.961120px;}
.y6c{bottom:171.477300px;}
.y1d4{bottom:173.340000px;}
.y2e0{bottom:174.443040px;}
.y33f{bottom:175.860000px;}
.y26f{bottom:175.967280px;}
.y2c{bottom:176.230650px;}
.y22f{bottom:176.426640px;}
.yac{bottom:177.264750px;}
.ye0{bottom:177.660000px;}
.y3ea{bottom:177.753600px;}
.y16b{bottom:178.200000px;}
.y389{bottom:179.470800px;}
.y143{bottom:179.726400px;}
.y29f{bottom:180.059760px;}
.y43d{bottom:181.069200px;}
.y24e{bottom:181.662480px;}
.y2c4{bottom:184.975920px;}
.y6b{bottom:184.977300px;}
.yb8{bottom:185.053500px;}
.y30a{bottom:185.397120px;}
.y206{bottom:186.725520px;}
.y114{bottom:186.762240px;}
.y39e{bottom:188.735040px;}
.y84{bottom:189.348000px;}
.y3c5{bottom:190.713600px;}
.ydf{bottom:191.880000px;}
.y211{bottom:192.676320px;}
.y340{bottom:195.120000px;}
.y2df{bottom:196.219440px;}
.yab{bottom:197.116650px;}
.y26e{bottom:197.743680px;}
.y22e{bottom:198.203040px;}
.y6a{bottom:198.477300px;}
.y1d3{bottom:198.540000px;}
.y419{bottom:199.048320px;}
.y3e9{bottom:199.712160px;}
.y1d2{bottom:199.804500px;}
.y388{bottom:201.247200px;}
.y142{bottom:201.684960px;}
.y29e{bottom:201.836160px;}
.y2b{bottom:203.230650px;}
.y83{bottom:203.748000px;}
.y33e{bottom:204.660000px;}
.y2c3{bottom:206.752320px;}
.y113{bottom:208.720800px;}
.y16a{bottom:208.985040px;}
.y43c{bottom:209.156400px;}
.y45d{bottom:209.318400px;}
.y39d{bottom:210.693600px;}
.y19b{bottom:211.140000px;}
.y69{bottom:211.977300px;}
.y24d{bottom:212.447520px;}
.y3c4{bottom:212.490000px;}
.y210{bottom:214.452720px;}
.y309{bottom:216.182160px;}
.y2a{bottom:216.730650px;}
.yaa{bottom:216.916650px;}
.y205{bottom:217.692720px;}
.y2de{bottom:217.995840px;}
.y82{bottom:218.148000px;}
.y26d{bottom:219.702240px;}
.y22d{bottom:219.979440px;}
.y141{bottom:223.461360px;}
.y1d1{bottom:223.740000px;}
.y33c{bottom:223.920000px;}
.y68{bottom:225.477300px;}
.y418{bottom:227.135520px;}
.y339{bottom:228.600000px;}
.y2c2{bottom:228.710880px;}
.y29{bottom:230.230650px;}
.y3e8{bottom:230.497200px;}
.y169{bottom:230.761440px;}
.y387{bottom:232.032240px;}
.y81{bottom:232.548000px;}
.y29d{bottom:232.621200px;}
.y19a{bottom:233.121600px;}
.y24c{bottom:234.223920px;}
.y3c3{bottom:234.266400px;}
.y43b{bottom:237.243600px;}
.y45c{bottom:237.405600px;}
.y67{bottom:238.977300px;}
.y204{bottom:239.469120px;}
.y112{bottom:239.505840px;}
.y2dd{bottom:239.772240px;}
.y26c{bottom:241.478640px;}
.y22c{bottom:241.755840px;}
.y28{bottom:243.730650px;}
.y140{bottom:245.237760px;}
.y80{bottom:246.948000px;}
.y308{bottom:246.967200px;}
.y1d0{bottom:248.940000px;}
.y38e{bottom:250.487280px;}
.y3e7{bottom:252.273600px;}
.ya9{bottom:252.420600px;}
.y66{bottom:252.477300px;}
.y33b{bottom:252.535500px;}
.y168{bottom:252.720000px;}
.y386{bottom:253.808640px;}
.y29c{bottom:254.397600px;}
.y199{bottom:254.898000px;}
.y33d{bottom:255.060000px;}
.y417{bottom:255.222720px;}
.yde{bottom:255.240000px;}
.y24b{bottom:256.000320px;}
.y3c2{bottom:256.042800px;}
.y27{bottom:257.230650px;}
.y2c1{bottom:259.495920px;}
.yb7{bottom:259.817250px;}
.y326{bottom:260.100000px;}
.y203{bottom:261.245520px;}
.y111{bottom:261.282240px;}
.y2dc{bottom:261.730800px;}
.y26b{bottom:263.255040px;}
.y43a{bottom:265.330800px;}
.y45b{bottom:265.492800px;}
.y65{bottom:265.977300px;}
.y20f{bottom:267.014160px;}
.y1cf{bottom:268.920000px;}
.y26{bottom:270.730650px;}
.ya8{bottom:271.072650px;}
.y38d{bottom:272.263680px;}
.y22b{bottom:272.723040px;}
.y1ce{bottom:273.780000px;}
.y3e6{bottom:274.050000px;}
.y385{bottom:275.585040px;}
.y7f{bottom:275.748000px;}
.y13f{bottom:276.022800px;}
.y29b{bottom:276.356160px;}
.y33a{bottom:276.660000px;}
.y198{bottom:276.674400px;}
.y24a{bottom:277.776720px;}
.y3c1{bottom:277.819200px;}
.y307{bottom:277.934400px;}
.y64{bottom:279.477300px;}
.ydd{bottom:279.585180px;}
.y2c0{bottom:281.272320px;}
.y202{bottom:283.021920px;}
.y110{bottom:283.058640px;}
.y416{bottom:283.309920px;}
.y2db{bottom:283.507200px;}
.y167{bottom:284.040000px;}
.y25{bottom:284.230650px;}
.y39c{bottom:285.031440px;}
.ya7{bottom:285.472500px;}
.y20e{bottom:288.790560px;}
.y63{bottom:292.977300px;}
.y439{bottom:293.418000px;}
.y45a{bottom:293.580000px;}
.y1c8{bottom:293.760000px;}
.y26a{bottom:294.040080px;}
.y22a{bottom:294.499440px;}
.ydc{bottom:295.419960px;}
.y3e5{bottom:295.826400px;}
.y337{bottom:295.920000px;}
.y384{bottom:297.543600px;}
.y24{bottom:297.730650px;}
.y13e{bottom:297.799200px;}
.y29a{bottom:298.132560px;}
.y197{bottom:298.450800px;}
.y1cd{bottom:298.980000px;}
.y249{bottom:299.735280px;}
.y3c0{bottom:299.777760px;}
.y2bf{bottom:303.048720px;}
.y201{bottom:304.798320px;}
.y10f{bottom:304.835040px;}
.y2da{bottom:305.283600px;}
.y7e{bottom:306.348000px;}
.y62{bottom:306.477300px;}
.y39b{bottom:306.807840px;}
.y306{bottom:308.719440px;}
.y20d{bottom:310.749120px;}
.ydb{bottom:311.254740px;}
.y415{bottom:311.576400px;}
.y338{bottom:315.000000px;}
.y269{bottom:315.816480px;}
.y229{bottom:316.275840px;}
.y3e4{bottom:317.784960px;}
.y1cc{bottom:318.960000px;}
.ya6{bottom:319.176450px;}
.y383{bottom:319.320000px;}
.y13d{bottom:319.757760px;}
.y299{bottom:319.908960px;}
.y61{bottom:319.977300px;}
.y196{bottom:320.227200px;}
.y7d{bottom:320.748000px;}
.y459{bottom:321.120000px;}
.y248{bottom:321.511680px;}
.y3bf{bottom:321.554160px;}
.y438{bottom:321.684480px;}
.y1ca{bottom:323.640000px;}
.y336{bottom:324.540000px;}
.y23{bottom:324.730650px;}
.y2be{bottom:324.825120px;}
.y200{bottom:326.756880px;}
.y10e{bottom:326.793600px;}
.y2d9{bottom:327.060000px;}
.yb6{bottom:327.211050px;}
.yda{bottom:327.270420px;}
.y39a{bottom:328.766400px;}
.y305{bottom:330.495840px;}
.y3f6{bottom:332.525520px;}
.y60{bottom:333.477300px;}
.y166{bottom:334.318320px;}
.y7c{bottom:335.148000px;}
.y331{bottom:336.604500px;}
.y268{bottom:337.775040px;}
.ya5{bottom:337.828500px;}
.y228{bottom:338.052240px;}
.y3e3{bottom:339.561360px;}
.y414{bottom:339.663600px;}
.y382{bottom:341.096400px;}
.y13c{bottom:341.534160px;}
.y298{bottom:341.685360px;}
.y195{bottom:342.185760px;}
.yd9{bottom:343.105200px;}
.y247{bottom:343.288080px;}
.y3be{bottom:343.330560px;}
.y334{bottom:343.800000px;}
.y2bd{bottom:346.783680px;}
.y5f{bottom:346.977300px;}
.y1cb{bottom:347.580000px;}
.y1ff{bottom:348.533280px;}
.y7b{bottom:349.548000px;}
.y437{bottom:349.771680px;}
.y458{bottom:349.920000px;}
.y399{bottom:350.542800px;}
.y22{bottom:351.730650px;}
.ya4{bottom:352.228500px;}
.y304{bottom:352.272240px;}
.y3f5{bottom:354.301920px;}
.y165{bottom:356.094720px;}
.y10d{bottom:357.578640px;}
.y2d8{bottom:358.560000px;}
.yd8{bottom:358.939980px;}
.y267{bottom:359.551440px;}
.y227{bottom:360.010800px;}
.y5e{bottom:360.477300px;}
.y330{bottom:360.540000px;}
.y3e2{bottom:361.337760px;}
.y381{bottom:362.872800px;}
.y13b{bottom:363.310560px;}
.y297{bottom:363.461760px;}
.y7a{bottom:363.948000px;}
.y194{bottom:363.962160px;}
.y246{bottom:365.064480px;}
.y3bd{bottom:365.106960px;}
.y21{bottom:365.230650px;}
.y1c6{bottom:367.740000px;}
.y413{bottom:367.750800px;}
.y2bc{bottom:368.560080px;}
.y1fe{bottom:370.309680px;}
.y398{bottom:372.319200px;}
.y333{bottom:372.604500px;}
.y5d{bottom:373.977300px;}
.y303{bottom:374.048640px;}
.yd7{bottom:374.774760px;}
.y1c7{bottom:374.940000px;}
.y335{bottom:375.120000px;}
.y3f4{bottom:376.078320px;}
.y457{bottom:377.809920px;}
.y436{bottom:377.858880px;}
.y164{bottom:378.053280px;}
.y79{bottom:378.348000px;}
.y20{bottom:378.730650px;}
.y10c{bottom:379.355040px;}
.y266{bottom:381.327840px;}
.y226{bottom:381.787200px;}
.y3e1{bottom:383.114160px;}
.y13a{bottom:385.086960px;}
.y296{bottom:385.420320px;}
.y193{bottom:385.738560px;}
.y245{bottom:387.023040px;}
.y3bc{bottom:387.065520px;}
.y5c{bottom:387.477300px;}
.ya3{bottom:387.732450px;}
.y2bb{bottom:390.336480px;}
.yd6{bottom:390.609540px;}
.y1fd{bottom:392.086080px;}
.y1f{bottom:392.230650px;}
.y78{bottom:392.748000px;}
.y380{bottom:393.840000px;}
.y397{bottom:394.095600px;}
.yb5{bottom:395.526000px;}
.y412{bottom:395.838000px;}
.y302{bottom:396.007200px;}
.y332{bottom:396.540000px;}
.y1c5{bottom:397.980000px;}
.y3f3{bottom:398.036880px;}
.y163{bottom:399.829680px;}
.y5b{bottom:400.977300px;}
.y10b{bottom:401.131440px;}
.y265{bottom:403.104240px;}
.y225{bottom:403.563600px;}
.y3e0{bottom:405.072720px;}
.y1e{bottom:405.730650px;}
.y456{bottom:405.897120px;}
.y435{bottom:405.946080px;}
.ya2{bottom:406.384350px;}
.yd5{bottom:406.444320px;}
.y139{bottom:407.045520px;}
.y77{bottom:407.148000px;}
.y295{bottom:407.196720px;}
.y192{bottom:407.514960px;}
.y244{bottom:408.799440px;}
.y2d7{bottom:408.838320px;}
.y3bb{bottom:408.841920px;}
.y2ba{bottom:412.112880px;}
.y1fc{bottom:414.044640px;}
.y5a{bottom:414.477300px;}
.y32e{bottom:415.800000px;}
.y396{bottom:416.054160px;}
.y1{bottom:416.692950px;}
.y301{bottom:417.783600px;}
.y1bf{bottom:418.140000px;}
.y1d{bottom:419.230650px;}
.ya1{bottom:420.784350px;}
.y76{bottom:421.548000px;}
.y162{bottom:421.606080px;}
.yd4{bottom:422.460000px;}
.y10a{bottom:423.090000px;}
.y1c4{bottom:423.180000px;}
.y411{bottom:423.925200px;}
.y1c1{bottom:424.440000px;}
.y264{bottom:425.062800px;}
.y224{bottom:425.340000px;}
.y37f{bottom:425.529000px;}
.y3df{bottom:426.849120px;}
.y59{bottom:427.977300px;}
.y138{bottom:428.821920px;}
.y294{bottom:428.973120px;}
.y243{bottom:430.575840px;}
.y2d6{bottom:430.614720px;}
.y3ba{bottom:430.618320px;}
.y1c{bottom:432.730650px;}
.y455{bottom:433.984320px;}
.y434{bottom:434.033280px;}
.y2b9{bottom:434.071440px;}
.y32f{bottom:435.060000px;}
.y1fb{bottom:435.821040px;}
.y75{bottom:435.948000px;}
.yd3{bottom:436.680000px;}
.y395{bottom:437.830560px;}
.y191{bottom:438.482160px;}
.y300{bottom:439.560000px;}
.y58{bottom:441.477300px;}
.y1c2{bottom:443.340000px;}
.y161{bottom:443.382480px;}
.y32d{bottom:444.600000px;}
.y109{bottom:444.866400px;}
.y1b{bottom:446.230650px;}
.y263{bottom:446.839200px;}
.y3de{bottom:448.625520px;}
.y37e{bottom:450.004500px;}
.y74{bottom:450.348000px;}
.y1c3{bottom:450.540000px;}
.y137{bottom:450.598320px;}
.y293{bottom:450.749520px;}
.y410{bottom:452.191680px;}
.y242{bottom:452.352240px;}
.y2d5{bottom:452.391120px;}
.y3b9{bottom:452.394720px;}
.y57{bottom:454.977300px;}
.y2b8{bottom:455.847840px;}
.ya0{bottom:456.288300px;}
.y223{bottom:456.660000px;}
.y328{bottom:456.664500px;}
.y1fa{bottom:457.597440px;}
.y394{bottom:459.606960px;}
.y190{bottom:460.258560px;}
.y2ff{bottom:461.336400px;}
.yb4{bottom:461.644050px;}
.y454{bottom:462.250800px;}
.y433{bottom:462.299760px;}
.y32b{bottom:463.860000px;}
.y160{bottom:465.158880px;}
.y108{bottom:466.642800px;}
.y56{bottom:468.477300px;}
.y1bd{bottom:468.540000px;}
.y262{bottom:468.615600px;}
.y3dd{bottom:470.401920px;}
.y5{bottom:470.800200px;}
.y136{bottom:472.374720px;}
.y292{bottom:472.708080px;}
.y1a{bottom:473.230650px;}
.y241{bottom:474.128640px;}
.y2d4{bottom:474.167520px;}
.y3b8{bottom:474.171120px;}
.y37d{bottom:474.480000px;}
.y1b9{bottom:474.844500px;}
.y9f{bottom:474.940350px;}
.y1be{bottom:475.740000px;}
.y2b7{bottom:477.624240px;}
.y73{bottom:479.148000px;}
.y1f9{bottom:479.373840px;}
.y40f{bottom:480.278880px;}
.y327{bottom:480.600000px;}
.y55{bottom:481.977300px;}
.y18f{bottom:482.034960px;}
.y15f{bottom:487.117440px;}
.y107{bottom:488.419200px;}
.y9e{bottom:489.340350px;}
.y453{bottom:490.338000px;}
.y432{bottom:490.386960px;}
.y261{bottom:490.392000px;}
.y2fe{bottom:492.303600px;}
.y32a{bottom:492.664500px;}
.y37b{bottom:493.020000px;}
.y1ba{bottom:493.740000px;}
.y135{bottom:494.151120px;}
.y291{bottom:494.484480px;}
.y32c{bottom:495.000000px;}
.y54{bottom:495.477300px;}
.y240{bottom:496.087200px;}
.y2d3{bottom:496.126080px;}
.y3b7{bottom:496.129680px;}
.yd2{bottom:498.780000px;}
.y2b6{bottom:499.400640px;}
.y19{bottom:500.230650px;}
.y1bc{bottom:500.940000px;}
.y3dc{bottom:501.186960px;}
.y222{bottom:507.101040px;}
.y40e{bottom:508.366080px;}
.y4{bottom:508.600050px;}
.y378{bottom:508.680000px;}
.y15e{bottom:508.893840px;}
.y53{bottom:508.977300px;}
.y1f8{bottom:510.158880px;}
.y106{bottom:510.195600px;}
.y260{bottom:512.168400px;}
.y18e{bottom:512.820000px;}
.y18{bottom:513.730650px;}
.y2fd{bottom:514.080000px;}
.yd1{bottom:514.660860px;}
.y134{bottom:516.109680px;}
.y290{bottom:516.260880px;}
.y329{bottom:516.600000px;}
.y23f{bottom:517.863600px;}
.y2d2{bottom:517.902480px;}
.y3b6{bottom:517.906080px;}
.y452{bottom:518.425200px;}
.y431{bottom:518.474160px;}
.y2b5{bottom:521.177040px;}
.y52{bottom:522.477300px;}
.y3db{bottom:523.145520px;}
.y9d{bottom:524.844150px;}
.y37a{bottom:525.420000px;}
.y379{bottom:527.760000px;}
.y221{bottom:528.877440px;}
.yd0{bottom:530.495640px;}
.y15d{bottom:530.670240px;}
.y1f7{bottom:532.117440px;}
.y105{bottom:532.154160px;}
.y38c{bottom:534.126960px;}
.yb3{bottom:535.132350px;}
.y1b6{bottom:535.491000px;}
.y51{bottom:535.977300px;}
.y40d{bottom:536.453280px;}
.y377{bottom:537.300000px;}
.y133{bottom:537.886080px;}
.y28f{bottom:538.037280px;}
.y18c{bottom:538.920000px;}
.y23e{bottom:539.640000px;}
.y2d1{bottom:539.678880px;}
.y3b5{bottom:539.682480px;}
.y17{bottom:540.730650px;}
.y25f{bottom:543.135600px;}
.y9c{bottom:543.496200px;}
.y3da{bottom:544.921920px;}
.ycf{bottom:546.330420px;}
.y451{bottom:546.512400px;}
.y430{bottom:546.561360px;}
.y325{bottom:547.380000px;}
.y50{bottom:549.477300px;}
.y220{bottom:550.653840px;}
.y2fc{bottom:551.520000px;}
.y15c{bottom:552.446640px;}
.y1f6{bottom:553.893840px;}
.y104{bottom:553.930560px;}
.y18a{bottom:554.400000px;}
.y393{bottom:555.903360px;}
.y375{bottom:556.560000px;}
.y3{bottom:557.200050px;}
.y9b{bottom:557.896200px;}
.y132{bottom:559.662480px;}
.y28e{bottom:559.813680px;}
.y1b5{bottom:560.871000px;}
.y372{bottom:561.424500px;}
.y2d0{bottom:561.455280px;}
.y3b4{bottom:561.458880px;}
.y18b{bottom:561.600000px;}
.yce{bottom:562.346100px;}
.y4f{bottom:562.977300px;}
.y40c{bottom:564.540480px;}
.y25e{bottom:564.912000px;}
.y3d9{bottom:566.698320px;}
.y16{bottom:567.730650px;}
.y3f2{bottom:568.671120px;}
.y23d{bottom:570.960000px;}
.y9a{bottom:572.296200px;}
.y21f{bottom:572.430240px;}
.y15b{bottom:574.405200px;}
.y450{bottom:574.599600px;}
.y42f{bottom:574.648560px;}
.y1f5{bottom:575.670240px;}
.y103{bottom:575.706960px;}
.y4e{bottom:576.477300px;}
.y2fb{bottom:576.720000px;}
.y392{bottom:577.679760px;}
.ycd{bottom:578.180880px;}
.y188{bottom:578.340000px;}
.y324{bottom:579.415500px;}
.y15{bottom:581.230650px;}
.y131{bottom:581.438880px;}
.y28d{bottom:581.772240px;}
.y2cf{bottom:583.413840px;}
.y374{bottom:585.364500px;}
.y189{bottom:585.540000px;}
.y25d{bottom:586.688400px;}
.y1b4{bottom:587.695500px;}
.y376{bottom:587.700000px;}
.y3d8{bottom:588.474720px;}
.y4d{bottom:589.977300px;}
.y3f1{bottom:590.447520px;}
.y2f9{bottom:592.200000px;}
.y3b3{bottom:592.426080px;}
.y40b{bottom:592.806960px;}
.ycc{bottom:594.015660px;}
.y21e{bottom:594.388800px;}
.y15a{bottom:596.181600px;}
.y1f4{bottom:597.446640px;}
.y102{bottom:597.483360px;}
.y2fa{bottom:599.400000px;}
.y391{bottom:599.456160px;}
.y187{bottom:602.280000px;}
.y44f{bottom:602.866080px;}
.y42e{bottom:602.915040px;}
.y130{bottom:603.397440px;}
.y4c{bottom:603.477300px;}
.y28c{bottom:603.548640px;}
.y2{bottom:604.000050px;}
.y2ce{bottom:605.190240px;}
.y99{bottom:606.000150px;}
.y323{bottom:606.240000px;}
.y14{bottom:608.230650px;}
.y25c{bottom:608.464800px;}
.y373{bottom:609.300000px;}
.ycb{bottom:609.850440px;}
.y3d7{bottom:610.433280px;}
.y3f0{bottom:612.406080px;}
.y3b2{bottom:614.202480px;}
.yb2{bottom:614.502300px;}
.y1b3{bottom:614.520000px;}
.y4b{bottom:616.977300px;}
.y1f3{bottom:619.223040px;}
.y101{bottom:619.441920px;}
.y40a{bottom:620.894160px;}
.y2f8{bottom:621.004500px;}
.y23c{bottom:621.414720px;}
.y98{bottom:624.652050px;}
.y12f{bottom:625.173840px;}
.y28b{bottom:625.325040px;}
.yca{bottom:625.685220px;}
.y186{bottom:626.400000px;}
.y159{bottom:626.966640px;}
.y36f{bottom:628.560000px;}
.y25b{bottom:630.423360px;}
.y4a{bottom:630.477300px;}
.y44e{bottom:630.953280px;}
.y42d{bottom:631.002240px;}
.y3d6{bottom:632.209680px;}
.y322{bottom:634.150800px;}
.y3ef{bottom:634.182480px;}
.y13{bottom:635.230650px;}
.y3b1{bottom:635.978880px;}
.y97{bottom:639.052050px;}
.y2b4{bottom:639.432000px;}
.y1f2{bottom:641.181600px;}
.y100{bottom:641.218320px;}
.yc9{bottom:641.520000px;}
.y1b2{bottom:642.432240px;}
.y23b{bottom:643.191120px;}
.y49{bottom:643.977300px;}
.y2f7{bottom:644.940000px;}
.y371{bottom:645.300000px;}
.y21d{bottom:646.950240px;}
.y28a{bottom:647.101440px;}
.y370{bottom:647.820000px;}
.y12{bottom:648.730650px;}
.y158{bottom:648.743040px;}
.y409{bottom:648.981360px;}
.y185{bottom:650.340000px;}
.y276{bottom:651.060000px;}
.y25a{bottom:652.199760px;}
.y3d5{bottom:653.986080px;}
.yc8{bottom:655.920000px;}
.y12e{bottom:655.958880px;}
.y36e{bottom:657.360000px;}
.y48{bottom:657.477300px;}
.y3b0{bottom:657.755280px;}
.y44d{bottom:659.040480px;}
.y42c{bottom:659.089440px;}
.y2b3{bottom:661.208400px;}
.y1f1{bottom:662.958000px;}
.yff{bottom:662.994720px;}
.y2f6{bottom:664.200000px;}
.y321{bottom:664.935840px;}
.y23a{bottom:664.967520px;}
.y21c{bottom:668.726640px;}
.y289{bottom:669.060000px;}
.y157{bottom:670.519440px;}
.y47{bottom:670.977300px;}
.y1b1{bottom:673.399440px;}
.y259{bottom:673.976160px;}
.y184{bottom:674.280000px;}
.y96{bottom:674.556000px;}
.y11{bottom:675.730650px;}
.y3d4{bottom:675.762480px;}
.y36c{bottom:676.620000px;}
.y408{bottom:677.068560px;}
.y12d{bottom:677.735280px;}
.y2cd{bottom:679.528080px;}
.y3af{bottom:679.531680px;}
.y369{bottom:681.295500px;}
.yb1{bottom:682.179450px;}
.y2b2{bottom:682.984800px;}
.y46{bottom:684.477300px;}
.y1f0{bottom:684.734400px;}
.yfe{bottom:684.771120px;}
.y239{bottom:686.743920px;}
.y320{bottom:686.894400px;}
.y44c{bottom:687.127680px;}
.y42b{bottom:687.176640px;}
.y21b{bottom:690.503040px;}
.y2f5{bottom:693.004500px;}
.y95{bottom:693.208050px;}
.y1b0{bottom:695.175840px;}
.y258{bottom:695.752560px;}
.y3d3{bottom:697.538880px;}
.y45{bottom:697.977300px;}
.y183{bottom:698.400000px;}
.y12c{bottom:699.511680px;}
.y275{bottom:701.463600px;}
.y156{bottom:701.486640px;}
.y3ae{bottom:701.490240px;}
.y288{bottom:701.640000px;}
.y10{bottom:702.730650px;}
.y2b1{bottom:704.761200px;}
.y407{bottom:705.155760px;}
.y36b{bottom:705.424500px;}
.y1ef{bottom:706.510800px;}
.yfd{bottom:706.547520px;}
.y94{bottom:707.607900px;}
.y36d{bottom:707.760000px;}
.y238{bottom:708.520320px;}
.y31f{bottom:708.670800px;}
.y44{bottom:711.477300px;}
.y21a{bottom:712.461600px;}
.y44b{bottom:715.394160px;}
.y42a{bottom:715.443120px;}
.yc7{bottom:715.683960px;}
.y2f4{bottom:716.940000px;}
.y1af{bottom:716.952240px;}
.y257{bottom:717.528960px;}
.y3d2{bottom:719.497440px;}
.y12b{bottom:721.470240px;}
.y182{bottom:722.340000px;}
.y274{bottom:723.240000px;}
.y155{bottom:723.263040px;}
.y3ad{bottom:723.266640px;}
.y43{bottom:724.977300px;}
.y2b0{bottom:726.537600px;}
.y93{bottom:728.308050px;}
.yfc{bottom:728.506080px;}
.y36a{bottom:729.360000px;}
.yf{bottom:729.730650px;}
.y31e{bottom:730.447200px;}
.y237{bottom:730.478880px;}
.y406{bottom:733.422240px;}
.y219{bottom:734.238000px;}
.y2f3{bottom:736.200000px;}
.y1ee{bottom:737.478000px;}
.y42{bottom:738.477300px;}
.y1ae{bottom:738.728640px;}
.y256{bottom:739.487520px;}
.y3d1{bottom:741.273840px;}
.ye{bottom:743.230650px;}
.y44a{bottom:743.481360px;}
.y429{bottom:743.530320px;}
.y154{bottom:745.039440px;}
.y3ac{bottom:745.043040px;}
.y181{bottom:746.280000px;}
.y2af{bottom:748.496160px;}
.y35f{bottom:748.620000px;}
.yfb{bottom:750.282480px;}
.y41{bottom:751.977300px;}
.y31d{bottom:752.223600px;}
.y12a{bottom:752.255280px;}
.y287{bottom:753.840000px;}
.y2cc{bottom:754.048080px;}
.y273{bottom:754.560000px;}
.yd{bottom:756.730650px;}
.y1ed{bottom:759.254400px;}
.y1ad{bottom:760.687200px;}
.y255{bottom:761.263920px;}
.y405{bottom:761.509440px;}
.y92{bottom:762.012000px;}
.y177{bottom:763.020000px;}
.y2f2{bottom:765.004500px;}
.y218{bottom:765.023040px;}
.y368{bottom:765.360000px;}
.y40{bottom:765.477300px;}
.y153{bottom:766.815840px;}
.y3ab{bottom:766.819440px;}
.y367{bottom:767.700000px;}
.yb0{bottom:769.132200px;}
.y2ae{bottom:770.272560px;}
.y180{bottom:770.400000px;}
.y449{bottom:771.568560px;}
.y428{bottom:771.617520px;}
.yfa{bottom:772.058880px;}
.y31c{bottom:774.000000px;}
.y129{bottom:774.031680px;}
.yc6{bottom:775.620000px;}
.y2cb{bottom:775.824480px;}
.y366{bottom:777.420000px;}
.y286{bottom:778.320000px;}
.y3f{bottom:778.977300px;}
.y91{bottom:780.663900px;}
.y1ec{bottom:781.030800px;}
.y1ac{bottom:782.463600px;}
.y254{bottom:783.040320px;}
.yc{bottom:783.730650px;}
.y217{bottom:786.799440px;}
.y152{bottom:788.592240px;}
.y2f1{bottom:788.940000px;}
.y361{bottom:789.300000px;}
.y404{bottom:789.596640px;}
.y2ad{bottom:792.048960px;}
.y3e{bottom:792.477300px;}
.y285{bottom:792.540000px;}
.yc5{bottom:793.620000px;}
.yf9{bottom:793.835280px;}
.ye7{bottom:794.323500px;}
.y17f{bottom:794.340000px;}
.y90{bottom:795.063900px;}
.y128{bottom:795.808080px;}
.y31b{bottom:795.958560px;}
.y364{bottom:796.680000px;}
.yb{bottom:797.230650px;}
.y2ca{bottom:797.600880px;}
.y3aa{bottom:797.604480px;}
.y448{bottom:799.655760px;}
.y427{bottom:799.704720px;}
.y1eb{bottom:802.807200px;}
.y1ab{bottom:804.240000px;}
.y253{bottom:804.816720px;}
.y3d{bottom:805.977300px;}
.y2f0{bottom:808.200000px;}
.y216{bottom:808.758000px;}
.y151{bottom:810.550800px;}
.ya{bottom:810.730650px;}
.y2ac{bottom:813.825360px;}
.y3d0{bottom:815.611680px;}
.y403{bottom:817.683840px;}
.y31a{bottom:817.734960px;}
.y127{bottom:817.766640px;}
.yc4{bottom:818.280000px;}
.y3c{bottom:819.477300px;}
.y2c9{bottom:819.559440px;}
.y3a9{bottom:819.563040px;}
.yf8{bottom:824.620320px;}
.y2e8{bottom:824.940000px;}
.y363{bottom:825.295500px;}
.y365{bottom:825.300000px;}
.y1aa{bottom:826.016400px;}
.y236{bottom:826.775280px;}
.y447{bottom:827.742960px;}
.y426{bottom:827.791920px;}
.y150{bottom:832.327200px;}
.y3b{bottom:832.977300px;}
.y1ea{bottom:833.592240px;}
.y2ab{bottom:835.783920px;}
.yc3{bottom:836.460000px;}
.y2ef{bottom:837.004500px;}
.ye5{bottom:837.013500px;}
.y3cf{bottom:837.570240px;}
.y9{bottom:837.730650px;}
.y126{bottom:839.543040px;}
.y2c8{bottom:841.335840px;}
.y3a8{bottom:841.339440px;}
.y8f{bottom:841.682850px;}
.y8e{bottom:841.891950px;}
.y17e{bottom:842.400000px;}
.y402{bottom:845.771040px;}
.y3a{bottom:846.477300px;}
.yf7{bottom:846.578880px;}
.y1a9{bottom:847.792800px;}
.y319{bottom:848.520000px;}
.y235{bottom:848.551680px;}
.y362{bottom:849.420000px;}
.y284{bottom:854.686080px;}
.y1e9{bottom:855.550800px;}
.y446{bottom:856.009440px;}
.y425{bottom:856.058400px;}
.y2aa{bottom:857.560320px;}
.y3ce{bottom:859.346640px;}
.y39{bottom:859.977300px;}
.y2ee{bottom:860.940000px;}
.yc2{bottom:861.120000px;}
.y125{bottom:861.319440px;}
.y14f{bottom:863.112240px;}
.y3a7{bottom:863.115840px;}
.y8{bottom:865.844700px;}
.y17d{bottom:866.340000px;}
.yf6{bottom:868.355280px;}
.y355{bottom:868.680000px;}
.y234{bottom:870.328080px;}
.y283{bottom:870.520860px;}
.y2ed{bottom:872.995500px;}
.y38{bottom:873.477300px;}
.y401{bottom:874.037520px;}
.y1e8{bottom:877.327200px;}
.y1a8{bottom:878.760000px;}
.yc1{bottom:878.940000px;}
.y2a9{bottom:879.336720px;}
.ye3{bottom:879.703500px;}
.y318{bottom:880.384500px;}
.y3cd{bottom:881.123040px;}
.y124{bottom:883.095840px;}
.y445{bottom:884.096640px;}
.y424{bottom:884.145600px;}
.y14e{bottom:884.888640px;}
.y3a6{bottom:884.892240px;}
.y35e{bottom:885.420000px;}
.y282{bottom:886.355640px;}
.y37{bottom:886.977300px;}
.y35d{bottom:887.760000px;}
.yf5{bottom:890.131680px;}
.y17a{bottom:890.280000px;}
.y233{bottom:892.104480px;}
.y7{bottom:894.648300px;}
.y8d{bottom:894.790050px;}
.y35c{bottom:897.300000px;}
.y1e7{bottom:899.103600px;}
.y17c{bottom:899.640000px;}
.y36{bottom:900.477300px;}
.y2a8{bottom:901.113120px;}
.y400{bottom:902.124720px;}
.y281{bottom:902.371320px;}
.y3cc{bottom:902.899440px;}
.y1a6{bottom:904.680000px;}
.y317{bottom:904.860000px;}
.y123{bottom:904.872240px;}
.y14d{bottom:906.847200px;}
.y3a5{bottom:906.850800px;}
.y2ec{bottom:909.000000px;}
.y357{bottom:909.360000px;}
.y6{bottom:910.848300px;}
.y8c{bottom:910.990050px;}
.yf4{bottom:911.908080px;}
.y444{bottom:912.183840px;}
.y423{bottom:912.232800px;}
.y20c{bottom:913.880880px;}
.y35{bottom:913.977300px;}
.y178{bottom:914.400000px;}
.y35a{bottom:916.560000px;}
.y280{bottom:918.206100px;}
.y1e6{bottom:920.880000px;}
.y315{bottom:922.680000px;}
.y2a7{bottom:922.889520px;}
.y3cb{bottom:924.858000px;}
.y122{bottom:926.830800px;}
.y14c{bottom:928.623600px;}
.y3a4{bottom:928.627200px;}
.y3ff{bottom:930.211920px;}
.y1a5{bottom:930.969000px;}
.yf3{bottom:933.866640px;}
.y27f{bottom:934.040880px;}
.y20b{bottom:935.839440px;}
.y443{bottom:940.271040px;}
.y422{bottom:940.320000px;}
.y1e5{bottom:942.838560px;}
.y176{bottom:943.560000px;}
.y314{bottom:944.280000px;}
.yc0{bottom:944.460000px;}
.y2a6{bottom:944.848080px;}
.y359{bottom:945.364500px;}
.y3ca{bottom:946.634400px;}
.y35b{bottom:947.700000px;}
.y27e{bottom:949.875660px;}
.y14b{bottom:950.400000px;}
.y3a3{bottom:950.403600px;}
.y1a4{bottom:951.124500px;}
.y2eb{bottom:952.200000px;}
.y175{bottom:955.440000px;}
.yf2{bottom:955.643040px;}
.y121{bottom:957.615840px;}
.y3fe{bottom:958.299120px;}
.y1e4{bottom:964.614960px;}
.y27d{bottom:965.710440px;}
.y2a5{bottom:966.624480px;}
.ybf{bottom:968.220000px;}
.y442{bottom:968.358240px;}
.y421{bottom:968.393520px;}
.y358{bottom:969.300000px;}
.y3a2{bottom:972.180000px;}
.y311{bottom:973.620000px;}
.y1a2{bottom:975.060000px;}
.yf1{bottom:977.419440px;}
.y120{bottom:979.392240px;}
.y2ea{bottom:981.000000px;}
.y27c{bottom:981.545220px;}
.y14a{bottom:981.720000px;}
.y3fd{bottom:986.386320px;}
.y2a4{bottom:988.400880px;}
.y352{bottom:988.560000px;}
.y312{bottom:993.780000px;}
.ybe{bottom:994.315860px;}
.y1e3{bottom:995.400000px;}
.y441{bottom:996.624720px;}
.y420{bottom:996.660000px;}
.y27b{bottom:997.380000px;}
.y174{bottom:998.811000px;}
.y1a3{bottom:998.995500px;}
.yf0{bottom:999.195840px;}
.y11f{bottom:1001.168640px;}
.y313{bottom:1002.960000px;}
.y3a1{bottom:1003.500000px;}
.y173{bottom:1004.035500px;}
.y2e9{bottom:1004.935500px;}
.y354{bottom:1005.300000px;}
.y353{bottom:1007.820000px;}
.y20a{bottom:1010.177280px;}
.y27a{bottom:1011.780000px;}
.y3fc{bottom:1014.652800px;}
.y351{bottom:1017.360000px;}
.y1a1{bottom:1018.980000px;}
.yef{bottom:1020.972240px;}
.y11e{bottom:1022.945040px;}
.y310{bottom:1023.120000px;}
.y440{bottom:1024.711920px;}
.y41f{bottom:1024.732800px;}
.y2e6{bottom:1024.920000px;}
.ybd{bottom:1026.180000px;}
.y1e2{bottom:1027.269000px;}
.y149{bottom:1031.953680px;}
.y30f{bottom:1035.180000px;}
.y1a0{bottom:1035.720000px;}
.y34f{bottom:1036.620000px;}
.y34c{bottom:1041.295500px;}
.y2e5{bottom:1042.020000px;}
.y3fb{bottom:1042.740000px;}
.yee{bottom:1042.930800px;}
.y172{bottom:1043.280000px;}
.y11d{bottom:1044.903600px;}
.y1e1{bottom:1051.744500px;}
.y43f{bottom:1052.799120px;}
.y41e{bottom:1052.820000px;}
.y148{bottom:1053.912240px;}
.y2e7{bottom:1054.080000px;}
.yed{bottom:1064.707200px;}
.y350{bottom:1065.420000px;}
.y34e{bottom:1065.424500px;}
.y11c{bottom:1066.680000px;}
.y3fa{bottom:1069.020000px;}
.y171{bottom:1069.740000px;}
.y30e{bottom:1072.435500px;}
.y19f{bottom:1074.240000px;}
.y147{bottom:1075.688640px;}
.y279{bottom:1076.220000px;}
.ybb{bottom:1076.940000px;}
.y41d{bottom:1080.886320px;}
.yba{bottom:1081.620000px;}
.y1e0{bottom:1082.160000px;}
.yec{bottom:1086.483600px;}
.y2e4{bottom:1087.020000px;}
.y11b{bottom:1088.456400px;}
.y34d{bottom:1089.360000px;}
.y170{bottom:1093.680000px;}
.y146{bottom:1097.465040px;}
.y19e{bottom:1099.260000px;}
.y278{bottom:1102.320000px;}
.y1de{bottom:1106.280000px;}
.yeb{bottom:1108.260000px;}
.y349{bottom:1108.620000px;}
.y41c{bottom:1108.973520px;}
.y1df{bottom:1113.480000px;}
.y19d{bottom:1117.080000px;}
.y11a{bottom:1119.241440px;}
.y34b{bottom:1125.360000px;}
.y34a{bottom:1127.700000px;}
.y1dc{bottom:1131.480000px;}
.y277{bottom:1134.180000px;}
.y1db{bottom:1136.520000px;}
.y41b{bottom:1137.240000px;}
.y348{bottom:1137.420000px;}
.y1dd{bottom:1138.680000px;}
.yea{bottom:1139.760000px;}
.y119{bottom:1141.200000px;}
.y19c{bottom:1144.080000px;}
.ye9{bottom:1169.460000px;}
.h12{height:11.997070px;}
.h1d{height:12.736500px;}
.h1f{height:12.825000px;}
.h2b{height:15.480000px;}
.h46{height:15.660000px;}
.h20{height:20.155078px;}
.h3c{height:20.700000px;}
.h30{height:20.701500px;}
.h29{height:23.940000px;}
.h26{height:23.941500px;}
.h27{height:24.118500px;}
.h2a{height:24.120000px;}
.h32{height:24.300000px;}
.h37{height:24.481500px;}
.h28{height:32.273438px;}
.h1e{height:36.449721px;}
.h16{height:37.437188px;}
.h23{height:37.494141px;}
.h17{height:37.702266px;}
.hc{height:37.918945px;}
.h2c{height:39.313477px;}
.h2{height:41.424000px;}
.h18{height:43.246406px;}
.hb{height:43.335938px;}
.h13{height:43.552617px;}
.h36{height:47.878500px;}
.h3e{height:47.880000px;}
.h11{height:47.988281px;}
.h2e{height:48.060000px;}
.ha{height:48.410156px;}
.h5{height:48.752930px;}
.h39{height:48.780000px;}
.h33{height:49.500000px;}
.h1b{height:49.992188px;}
.h3a{height:50.273438px;}
.h2f{height:50.291438px;}
.h6{height:51.480000px;}
.h1a{height:53.393186px;}
.h19{height:53.410466px;}
.h1c{height:53.573906px;}
.h49{height:53.599826px;}
.h48{height:53.602706px;}
.h47{height:53.628626px;}
.h4b{height:53.660306px;}
.h4a{height:54.334226px;}
.h34{height:57.050156px;}
.h3b{height:57.752156px;}
.h45{height:58.508156px;}
.he{height:59.167969px;}
.h21{height:59.383125px;}
.h22{height:59.803594px;}
.hd{height:62.295410px;}
.h15{height:64.546875px;}
.h7{height:65.003906px;}
.h3d{height:72.000000px;}
.h3f{height:72.001500px;}
.h35{height:73.080000px;}
.h4{height:75.304688px;}
.h38{height:76.054570px;}
.h14{height:86.455195px;}
.h42{height:86.570156px;}
.h41{height:87.290156px;}
.h9{height:92.088867px;}
.h25{height:95.930156px;}
.h24{height:96.632156px;}
.h2d{height:96.650156px;}
.h40{height:105.974156px;}
.h8{height:117.217734px;}
.h43{height:119.880000px;}
.h44{height:120.061500px;}
.h3{height:157.092773px;}
.h31{height:424.980000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.hf{height:1262.880000px;}
.h10{height:1263.000000px;}
.w4{width:13.350000px;}
.w12{width:30.240000px;}
.w16{width:52.380000px;}
.w1e{width:58.680000px;}
.w19{width:58.860000px;}
.w27{width:62.640000px;}
.w15{width:63.000000px;}
.w9{width:63.900000px;}
.w25{width:65.521500px;}
.w17{width:66.600000px;}
.w20{width:72.000000px;}
.w5{width:72.720000px;}
.w18{width:73.620000px;}
.wb{width:74.520000px;}
.wd{width:74.700000px;}
.we{width:75.060000px;}
.wa{width:84.960000px;}
.w1a{width:87.840000px;}
.w1c{width:92.880000px;}
.w6{width:94.680000px;}
.w8{width:95.580000px;}
.w7{width:95.761500px;}
.w1b{width:108.720000px;}
.w1d{width:125.100000px;}
.w24{width:136.261500px;}
.w14{width:138.780000px;}
.w13{width:158.760000px;}
.wc{width:159.480000px;}
.w10{width:176.221500px;}
.w23{width:176.398500px;}
.w1f{width:183.781500px;}
.w22{width:239.760000px;}
.wf{width:595.260000px;}
.w21{width:619.740000px;}
.w26{width:639.180000px;}
.w11{width:651.420000px;}
.w1{width:705.750000px;}
.w0{width:705.826500px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x37{left:8.100000px;}
.x26{left:12.600000px;}
.x4d{left:13.860000px;}
.x18{left:15.234450px;}
.x2d{left:17.460000px;}
.x28{left:19.980000px;}
.x4f{left:23.400000px;}
.x27{left:25.020000px;}
.x42{left:27.000000px;}
.x31{left:28.800000px;}
.x33{left:30.960000px;}
.x1f{left:32.580000px;}
.x23{left:34.560000px;}
.x21{left:36.180000px;}
.x61{left:37.260000px;}
.x2e{left:38.340000px;}
.x2c{left:39.960000px;}
.x32{left:42.120000px;}
.x2b{left:43.740000px;}
.x75{left:45.180000px;}
.x30{left:46.980000px;}
.x2a{left:51.300000px;}
.x7{left:54.000000px;}
.x3a{left:65.160000px;}
.x65{left:69.120000px;}
.x69{left:76.680000px;}
.x9{left:88.226700px;}
.xa{left:93.780600px;}
.x76{left:95.580000px;}
.x67{left:106.920000px;}
.x8{left:111.894900px;}
.x11{left:114.840000px;}
.x52{left:117.720000px;}
.x3f{left:120.780000px;}
.x41{left:122.760000px;}
.xb{left:127.559100px;}
.x3e{left:128.898000px;}
.x78{left:131.931360px;}
.xd{left:136.985250px;}
.x13{left:138.240000px;}
.x15{left:141.840000px;}
.x16{left:144.540000px;}
.x19{left:146.700000px;}
.x34{left:148.860000px;}
.x47{left:153.720000px;}
.x6a{left:155.880000px;}
.x1b{left:161.455500px;}
.x43{left:165.960000px;}
.x4{left:168.849450px;}
.x5f{left:171.360000px;}
.x54{left:172.620000px;}
.x40{left:179.451000px;}
.x3b{left:185.040000px;}
.x1c{left:186.300000px;}
.x1a{left:188.820000px;}
.x17{left:193.879440px;}
.x5a{left:208.620000px;}
.x35{left:223.560000px;}
.x1e{left:225.900000px;}
.x38{left:233.820000px;}
.x53{left:235.800000px;}
.x60{left:238.320000px;}
.x59{left:242.100000px;}
.x3{left:253.454100px;}
.x6{left:261.546000px;}
.x6c{left:272.520000px;}
.x5b{left:283.140000px;}
.x6b{left:285.120000px;}
.x5{left:289.655550px;}
.x44{left:293.220000px;}
.x20{left:298.620000px;}
.x49{left:305.460000px;}
.x64{left:346.860000px;}
.x12{left:367.732440px;}
.x14{left:372.420000px;}
.x55{left:376.020000px;}
.x22{left:393.300000px;}
.x3c{left:397.260000px;}
.x68{left:424.980000px;}
.x3d{left:426.600000px;}
.x10{left:446.400000px;}
.x4a{left:452.700000px;}
.xc{left:460.955850px;}
.x6e{left:462.060000px;}
.x57{left:463.860000px;}
.x6f{left:464.940000px;}
.x6d{left:469.440000px;}
.x72{left:472.500000px;}
.x45{left:474.120000px;}
.x56{left:477.900000px;}
.x48{left:481.680000px;}
.x74{left:484.380000px;}
.x24{left:489.060000px;}
.x70{left:491.224500px;}
.x1d{left:503.833500px;}
.x46{left:507.960000px;}
.x4c{left:516.420000px;}
.x62{left:518.220000px;}
.x4b{left:530.280000px;}
.x36{left:536.940000px;}
.x4e{left:569.700000px;}
.x5c{left:572.580000px;}
.xe{left:581.456700px;}
.x25{left:584.640000px;}
.x39{left:586.620000px;}
.x58{left:630.000000px;}
.x50{left:637.020000px;}
.x63{left:651.780000px;}
.x2f{left:669.600000px;}
.x1{left:679.731450px;}
.x66{left:686.700000px;}
.x2{left:690.432150px;}
.x5d{left:697.680000px;}
.xf{left:708.840000px;}
.x51{left:711.360000px;}
.x29{left:726.660000px;}
.x77{left:734.760000px;}
.x5e{left:736.402500px;}
.x71{left:750.240000px;}
.x73{left:752.940000px;}
@media print{
.v1{vertical-align:-91.520000pt;}
.v3{vertical-align:-16.000000pt;}
.v8{vertical-align:-8.976000pt;}
.v6{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:7.680000pt;}
.v9{vertical-align:8.976000pt;}
.v4{vertical-align:16.016000pt;}
.v2{vertical-align:42.864000pt;}
.v7{vertical-align:51.168000pt;}
.ls5{letter-spacing:-3.552000pt;}
.ls1f{letter-spacing:-1.457920pt;}
.ls5c{letter-spacing:-1.354240pt;}
.ls1e{letter-spacing:-0.943360pt;}
.ls31{letter-spacing:-0.942080pt;}
.ls5b{letter-spacing:-0.883200pt;}
.ls21{letter-spacing:-0.814720pt;}
.ls54{letter-spacing:-0.765440pt;}
.ls28{letter-spacing:-0.728960pt;}
.ls6b{letter-spacing:-0.647680pt;}
.ls4e{letter-spacing:-0.432000pt;}
.ls2f{letter-spacing:-0.353280pt;}
.ls20{letter-spacing:-0.300160pt;}
.ls65{letter-spacing:-0.299520pt;}
.ls2b{letter-spacing:-0.294400pt;}
.ls4d{letter-spacing:-0.288000pt;}
.lsaa{letter-spacing:-0.265600pt;}
.ls1b{letter-spacing:-0.259840pt;}
.ls66{letter-spacing:-0.235520pt;}
.lsa9{letter-spacing:-0.212480pt;}
.ls4f{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.171520pt;}
.ls12{letter-spacing:-0.170240pt;}
.ls17{letter-spacing:-0.148480pt;}
.ls62{letter-spacing:-0.128000pt;}
.ls2a{letter-spacing:-0.117760pt;}
.lsa8{letter-spacing:-0.106240pt;}
.ls14{letter-spacing:-0.096000pt;}
.ls1c{letter-spacing:-0.074240pt;}
.ls29{letter-spacing:-0.064000pt;}
.lsab{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.016000pt;}
.ls92{letter-spacing:0.041216pt;}
.ls9d{letter-spacing:0.042496pt;}
.lsc{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.074240pt;}
.ls11{letter-spacing:0.085760pt;}
.ls37{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.144000pt;}
.ls8{letter-spacing:0.171520pt;}
.lsc4{letter-spacing:0.180608pt;}
.lsb{letter-spacing:0.185600pt;}
.ls16{letter-spacing:0.192000pt;}
.ls9b{letter-spacing:0.212480pt;}
.ls24{letter-spacing:0.214400pt;}
.ls2d{letter-spacing:0.235520pt;}
.lsa4{letter-spacing:0.249664pt;}
.lsb7{letter-spacing:0.254976pt;}
.ls13{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.257280pt;}
.ls1d{letter-spacing:0.259840pt;}
.lsb5{letter-spacing:0.260288pt;}
.lsa0{letter-spacing:0.265600pt;}
.ls2e{letter-spacing:0.270848pt;}
.lsbd{letter-spacing:0.270912pt;}
.ls9a{letter-spacing:0.276224pt;}
.ls6a{letter-spacing:0.276736pt;}
.ls9e{letter-spacing:0.286848pt;}
.ls2c{letter-spacing:0.294400pt;}
.ls7{letter-spacing:0.300160pt;}
.lsb8{letter-spacing:0.313408pt;}
.ls52{letter-spacing:0.317952pt;}
.lsb4{letter-spacing:0.318720pt;}
.lsba{letter-spacing:0.329344pt;}
.ls57{letter-spacing:0.329728pt;}
.ls3b{letter-spacing:0.336000pt;}
.lsb9{letter-spacing:0.339968pt;}
.ls67{letter-spacing:0.341504pt;}
.ls97{letter-spacing:0.347392pt;}
.ls96{letter-spacing:0.353280pt;}
.ls68{letter-spacing:0.370944pt;}
.ls5d{letter-spacing:0.376832pt;}
.lsb3{letter-spacing:0.393088pt;}
.ls58{letter-spacing:0.394496pt;}
.lsa6{letter-spacing:0.403712pt;}
.ls56{letter-spacing:0.406272pt;}
.ls93{letter-spacing:0.412160pt;}
.lsa1{letter-spacing:0.419648pt;}
.ls53{letter-spacing:0.423936pt;}
.ls94{letter-spacing:0.447488pt;}
.lsc2{letter-spacing:0.467456pt;}
.ls19{letter-spacing:0.482560pt;}
.ls9c{letter-spacing:0.488704pt;}
.ls55{letter-spacing:0.494592pt;}
.lsac{letter-spacing:0.531200pt;}
.ls98{letter-spacing:0.547584pt;}
.ls1a{letter-spacing:0.556800pt;}
.ls9f{letter-spacing:0.573696pt;}
.lsae{letter-spacing:0.584320pt;}
.lsb2{letter-spacing:0.626816pt;}
.lsbb{letter-spacing:0.637440pt;}
.lsbf{letter-spacing:0.711808pt;}
.lsad{letter-spacing:0.849920pt;}
.lsaf{letter-spacing:0.881792pt;}
.lsb0{letter-spacing:0.887104pt;}
.ls63{letter-spacing:0.900480pt;}
.lsa2{letter-spacing:0.913664pt;}
.ls27{letter-spacing:0.942080pt;}
.lsc1{letter-spacing:0.961472pt;}
.ls91{letter-spacing:0.977408pt;}
.lsb6{letter-spacing:1.003968pt;}
.lsbe{letter-spacing:1.035840pt;}
.ls4{letter-spacing:1.493333pt;}
.ls60{letter-spacing:1.625088pt;}
.ls2{letter-spacing:1.680000pt;}
.lsa5{letter-spacing:1.859200pt;}
.lsf{letter-spacing:1.963904pt;}
.ls90{letter-spacing:2.178560pt;}
.ls1{letter-spacing:2.613333pt;}
.ls26{letter-spacing:2.826240pt;}
.ls32{letter-spacing:2.855680pt;}
.ls5a{letter-spacing:2.955776pt;}
.ls8e{letter-spacing:4.121600pt;}
.ls95{letter-spacing:4.769280pt;}
.lse{letter-spacing:4.922624pt;}
.ls59{letter-spacing:5.110784pt;}
.ls39{letter-spacing:5.157888pt;}
.ls8f{letter-spacing:5.681920pt;}
.lsa{letter-spacing:6.310400pt;}
.lsbc{letter-spacing:6.374400pt;}
.ls69{letter-spacing:6.653440pt;}
.ls36{letter-spacing:7.136000pt;}
.ls73{letter-spacing:7.152000pt;}
.ls25{letter-spacing:7.289600pt;}
.lsc0{letter-spacing:7.649280pt;}
.ls51{letter-spacing:7.948800pt;}
.ls50{letter-spacing:7.995904pt;}
.ls99{letter-spacing:8.596480pt;}
.ls22{letter-spacing:8.700352pt;}
.lsc3{letter-spacing:8.924160pt;}
.ls5e{letter-spacing:9.244160pt;}
.ls9{letter-spacing:9.696000pt;}
.ls38{letter-spacing:9.891840pt;}
.ls64{letter-spacing:12.647424pt;}
.ls30{letter-spacing:13.136128pt;}
.ls5f{letter-spacing:13.271552pt;}
.lsa3{letter-spacing:14.661120pt;}
.ls3{letter-spacing:15.866667pt;}
.ls61{letter-spacing:22.668800pt;}
.ls3f{letter-spacing:44.256000pt;}
.ls84{letter-spacing:45.552000pt;}
.lsa7{letter-spacing:49.242240pt;}
.lsb1{letter-spacing:56.254080pt;}
.ls46{letter-spacing:60.240000pt;}
.ls85{letter-spacing:62.160000pt;}
.ls86{letter-spacing:65.376000pt;}
.ls49{letter-spacing:66.000000pt;}
.ls83{letter-spacing:72.432000pt;}
.ls8b{letter-spacing:73.680000pt;}
.ls6c{letter-spacing:78.176000pt;}
.ls42{letter-spacing:78.192000pt;}
.ls82{letter-spacing:80.736000pt;}
.ls3d{letter-spacing:82.032000pt;}
.ls87{letter-spacing:83.280000pt;}
.ls74{letter-spacing:87.120000pt;}
.ls4a{letter-spacing:90.336000pt;}
.ls33{letter-spacing:90.960000pt;}
.ls8a{letter-spacing:96.720000pt;}
.ls34{letter-spacing:97.392000pt;}
.ls8d{letter-spacing:98.608000pt;}
.ls88{letter-spacing:98.656000pt;}
.ls8c{letter-spacing:98.672000pt;}
.ls4c{letter-spacing:100.560000pt;}
.ls40{letter-spacing:105.072000pt;}
.ls89{letter-spacing:110.160000pt;}
.ls81{letter-spacing:138.960000pt;}
.ls80{letter-spacing:142.800000pt;}
.ls3e{letter-spacing:171.600000pt;}
.ls6f{letter-spacing:178.032000pt;}
.ls70{letter-spacing:178.641600pt;}
.ls44{letter-spacing:181.200000pt;}
.ls45{letter-spacing:191.472000pt;}
.ls35{letter-spacing:193.392000pt;}
.ls48{letter-spacing:207.456000pt;}
.ls71{letter-spacing:213.216000pt;}
.ls6d{letter-spacing:220.896000pt;}
.ls43{letter-spacing:226.656000pt;}
.ls72{letter-spacing:234.336000pt;}
.ls77{letter-spacing:236.256000pt;}
.ls6e{letter-spacing:243.312000pt;}
.ls75{letter-spacing:247.776000pt;}
.ls7c{letter-spacing:256.080000pt;}
.ls76{letter-spacing:256.752000pt;}
.ls41{letter-spacing:261.216000pt;}
.ls7b{letter-spacing:269.520000pt;}
.ls7e{letter-spacing:276.576000pt;}
.ls78{letter-spacing:284.256000pt;}
.ls23{letter-spacing:296.438400pt;}
.ls79{letter-spacing:329.712000pt;}
.ls4b{letter-spacing:365.520000pt;}
.ls7f{letter-spacing:531.312000pt;}
.ls3c{letter-spacing:536.400000pt;}
.ls7d{letter-spacing:729.072000pt;}
.ls7a{letter-spacing:742.512000pt;}
.ls3a{letter-spacing:750.208000pt;}
.wsb2{word-spacing:-20.517120pt;}
.wsa1{word-spacing:-18.048000pt;}
.ws5c{word-spacing:-17.728000pt;}
.wsb0{word-spacing:-17.664000pt;}
.wsca{word-spacing:-16.604160pt;}
.ws7b{word-spacing:-16.368640pt;}
.ws5e{word-spacing:-16.250880pt;}
.ws5d{word-spacing:-16.074240pt;}
.wsb8{word-spacing:-16.015360pt;}
.wsd5{word-spacing:-15.617280pt;}
.wsd1{word-spacing:-15.298560pt;}
.wsf4{word-spacing:-15.086080pt;}
.wsd4{word-spacing:-14.979840pt;}
.wsd2{word-spacing:-14.767360pt;}
.wsd3{word-spacing:-14.714240pt;}
.wscf{word-spacing:-14.661120pt;}
.wsf5{word-spacing:-14.554880pt;}
.wsd0{word-spacing:-14.501760pt;}
.ws8e{word-spacing:-13.680000pt;}
.ws33{word-spacing:-13.536000pt;}
.ws36{word-spacing:-13.488000pt;}
.ws8f{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.354667pt;}
.ws35{word-spacing:-13.248000pt;}
.ws96{word-spacing:-13.152000pt;}
.wsc0{word-spacing:-12.912000pt;}
.ws32{word-spacing:-12.006400pt;}
.ws31{word-spacing:-11.920640pt;}
.wsc1{word-spacing:-11.808000pt;}
.ws30{word-spacing:-11.749120pt;}
.ws5b{word-spacing:-11.191680pt;}
.ws3d{word-spacing:-10.579200pt;}
.ws39{word-spacing:-10.504960pt;}
.ws34{word-spacing:-10.393600pt;}
.ws1b{word-spacing:-10.378667pt;}
.ws38{word-spacing:-10.319360pt;}
.ws1a{word-spacing:-10.240000pt;}
.ws37{word-spacing:-10.170880pt;}
.ws3a{word-spacing:-10.059520pt;}
.ws1c{word-spacing:-9.792000pt;}
.ws3e{word-spacing:-9.024000pt;}
.ws3b{word-spacing:-8.960000pt;}
.ws3c{word-spacing:-8.896000pt;}
.ws95{word-spacing:-8.608000pt;}
.ws74{word-spacing:-3.415040pt;}
.ws4{word-spacing:-3.173333pt;}
.wsef{word-spacing:-3.134080pt;}
.ws68{word-spacing:-2.826240pt;}
.ws10e{word-spacing:-2.549760pt;}
.ws10a{word-spacing:-2.496640pt;}
.ws7{word-spacing:-2.304000pt;}
.ws70{word-spacing:-2.178560pt;}
.wsb5{word-spacing:-2.144000pt;}
.ws10f{word-spacing:-1.912320pt;}
.wsff{word-spacing:-1.859200pt;}
.ws13{word-spacing:-1.680000pt;}
.wsc9{word-spacing:-1.648640pt;}
.ws67{word-spacing:-1.530880pt;}
.ws49{word-spacing:-1.500800pt;}
.ws9{word-spacing:-1.493333pt;}
.ws1f{word-spacing:-1.408000pt;}
.wscc{word-spacing:-1.295360pt;}
.ws1{word-spacing:-1.269333pt;}
.wsab{word-spacing:-1.236480pt;}
.wsee{word-spacing:-1.221760pt;}
.wse{word-spacing:-1.194667pt;}
.ws16{word-spacing:-1.152000pt;}
.ws69{word-spacing:-0.883200pt;}
.ws23{word-spacing:-0.858667pt;}
.wsb4{word-spacing:-0.857600pt;}
.ws2d{word-spacing:-0.853333pt;}
.ws3{word-spacing:-0.816000pt;}
.ws28{word-spacing:-0.768000pt;}
.ws27{word-spacing:-0.746667pt;}
.ws5{word-spacing:-0.725333pt;}
.ws97{word-spacing:-0.720000pt;}
.wscd{word-spacing:-0.706560pt;}
.ws90{word-spacing:-0.672000pt;}
.ws92{word-spacing:-0.624000pt;}
.ws22{word-spacing:-0.597333pt;}
.wsfc{word-spacing:-0.584320pt;}
.ws21{word-spacing:-0.560000pt;}
.ws47{word-spacing:-0.556800pt;}
.ws103{word-spacing:-0.531200pt;}
.ws8{word-spacing:-0.469333pt;}
.ws26{word-spacing:-0.384000pt;}
.ws25{word-spacing:-0.373333pt;}
.wsc5{word-spacing:-0.353280pt;}
.ws105{word-spacing:-0.318720pt;}
.wsa4{word-spacing:-0.294400pt;}
.ws108{word-spacing:-0.265600pt;}
.ws60{word-spacing:-0.235520pt;}
.ws57{word-spacing:-0.214400pt;}
.wsfd{word-spacing:-0.212480pt;}
.ws93{word-spacing:-0.192000pt;}
.ws44{word-spacing:-0.144000pt;}
.ws42{word-spacing:-0.128000pt;}
.ws48{word-spacing:-0.096000pt;}
.ws2a{word-spacing:-0.085333pt;}
.ws29{word-spacing:-0.074667pt;}
.wsbf{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.wsda{word-spacing:0.053120pt;}
.ws46{word-spacing:0.074240pt;}
.ws43{word-spacing:0.096000pt;}
.wsdb{word-spacing:0.106240pt;}
.ws75{word-spacing:0.117760pt;}
.ws45{word-spacing:0.148480pt;}
.ws41{word-spacing:0.170240pt;}
.ws40{word-spacing:0.171520pt;}
.ws5a{word-spacing:0.192000pt;}
.ws2c{word-spacing:0.261333pt;}
.wsed{word-spacing:0.265600pt;}
.wsc3{word-spacing:0.288000pt;}
.ws8d{word-spacing:0.294400pt;}
.ws55{word-spacing:0.300160pt;}
.wsc4{word-spacing:0.336000pt;}
.ws80{word-spacing:0.353280pt;}
.wsf1{word-spacing:0.371840pt;}
.ws65{word-spacing:0.412160pt;}
.ws3f{word-spacing:0.428800pt;}
.wsc6{word-spacing:0.432000pt;}
.wsa2{word-spacing:0.471040pt;}
.ws9b{word-spacing:0.528000pt;}
.ws88{word-spacing:0.588800pt;}
.ws109{word-spacing:0.637440pt;}
.wsb9{word-spacing:0.647680pt;}
.wsb3{word-spacing:0.680960pt;}
.wse3{word-spacing:0.690560pt;}
.wsb7{word-spacing:0.765440pt;}
.ws58{word-spacing:0.814720pt;}
.wsbc{word-spacing:0.883200pt;}
.ws8b{word-spacing:0.942080pt;}
.ws4a{word-spacing:0.943360pt;}
.ws19{word-spacing:1.024000pt;}
.ws7d{word-spacing:1.059840pt;}
.ws52{word-spacing:1.072000pt;}
.ws2e{word-spacing:1.082667pt;}
.ws2f{word-spacing:1.109333pt;}
.ws15{word-spacing:1.194667pt;}
.ws98{word-spacing:1.200000pt;}
.ws111{word-spacing:1.274880pt;}
.ws10d{word-spacing:1.328000pt;}
.wsae{word-spacing:1.354240pt;}
.ws4f{word-spacing:1.457920pt;}
.wscb{word-spacing:1.589760pt;}
.ws85{word-spacing:1.707520pt;}
.ws4e{word-spacing:1.715200pt;}
.ws9d{word-spacing:1.824000pt;}
.wsf{word-spacing:1.834667pt;}
.ws17{word-spacing:1.877333pt;}
.wsfa{word-spacing:1.965440pt;}
.ws20{word-spacing:2.053333pt;}
.ws81{word-spacing:2.296320pt;}
.ws4c{word-spacing:2.358400pt;}
.wsfb{word-spacing:2.602880pt;}
.wsd7{word-spacing:2.656000pt;}
.ws12{word-spacing:2.858667pt;}
.ws78{word-spacing:2.944000pt;}
.ws4d{word-spacing:2.958720pt;}
.wsdf{word-spacing:3.293440pt;}
.wsd6{word-spacing:3.399680pt;}
.ws1d{word-spacing:3.546667pt;}
.ws5f{word-spacing:3.591680pt;}
.ws53{word-spacing:3.601920pt;}
.ws1e{word-spacing:3.669333pt;}
.wsb6{word-spacing:3.709440pt;}
.wse7{word-spacing:3.877760pt;}
.wse0{word-spacing:3.930880pt;}
.ws83{word-spacing:4.239360pt;}
.ws4b{word-spacing:4.245120pt;}
.ws9f{word-spacing:4.416000pt;}
.wsf6{word-spacing:4.568320pt;}
.ws87{word-spacing:4.887040pt;}
.ws50{word-spacing:4.888320pt;}
.wsa5{word-spacing:5.004800pt;}
.ws11{word-spacing:5.034667pt;}
.ws102{word-spacing:5.205760pt;}
.ws64{word-spacing:5.534720pt;}
.ws6{word-spacing:5.546667pt;}
.wsf0{word-spacing:5.843200pt;}
.wsd{word-spacing:6.144000pt;}
.ws6e{word-spacing:6.182400pt;}
.wsc2{word-spacing:6.336000pt;}
.wsa3{word-spacing:6.417920pt;}
.wsec{word-spacing:6.480640pt;}
.wsa7{word-spacing:6.771200pt;}
.ws54{word-spacing:6.817920pt;}
.ws7c{word-spacing:6.830080pt;}
.wsa0{word-spacing:7.006720pt;}
.wsfe{word-spacing:7.118080pt;}
.ws6f{word-spacing:7.418880pt;}
.ws91{word-spacing:7.584000pt;}
.ws10{word-spacing:7.594667pt;}
.ws110{word-spacing:7.755520pt;}
.ws14{word-spacing:7.765333pt;}
.ws62{word-spacing:8.066560pt;}
.ws9e{word-spacing:8.256000pt;}
.ws106{word-spacing:8.392960pt;}
.ws18{word-spacing:8.576000pt;}
.ws76{word-spacing:8.714240pt;}
.wsf2{word-spacing:9.030400pt;}
.ws107{word-spacing:9.189760pt;}
.ws6c{word-spacing:9.361920pt;}
.ws56{word-spacing:9.390720pt;}
.ws24{word-spacing:9.930667pt;}
.ws73{word-spacing:10.009600pt;}
.ws59{word-spacing:10.033920pt;}
.ws2b{word-spacing:10.197333pt;}
.ws77{word-spacing:10.657280pt;}
.ws51{word-spacing:10.677120pt;}
.ws63{word-spacing:11.304960pt;}
.wse1{word-spacing:11.580160pt;}
.ws99{word-spacing:11.893760pt;}
.ws71{word-spacing:12.541440pt;}
.ws66{word-spacing:13.189120pt;}
.wsa9{word-spacing:13.836800pt;}
.ws101{word-spacing:14.129920pt;}
.ws82{word-spacing:14.484480pt;}
.wse6{word-spacing:14.767360pt;}
.wsa6{word-spacing:15.132160pt;}
.ws10b{word-spacing:15.351680pt;}
.ws10c{word-spacing:15.404800pt;}
.ws72{word-spacing:15.779840pt;}
.ws79{word-spacing:16.427520pt;}
.ws94{word-spacing:17.016320pt;}
.wsa{word-spacing:17.365333pt;}
.ws104{word-spacing:17.370240pt;}
.ws7f{word-spacing:17.664000pt;}
.wse2{word-spacing:18.007680pt;}
.ws7e{word-spacing:18.311680pt;}
.wsaf{word-spacing:18.488320pt;}
.wsac{word-spacing:18.959360pt;}
.wsd9{word-spacing:19.229440pt;}
.wsd8{word-spacing:19.282560pt;}
.ws61{word-spacing:19.607040pt;}
.ws89{word-spacing:20.254720pt;}
.wsba{word-spacing:20.372480pt;}
.wsc{word-spacing:20.778667pt;}
.wsbd{word-spacing:20.902400pt;}
.wsdc{word-spacing:21.194880pt;}
.ws6b{word-spacing:21.550080pt;}
.wsb{word-spacing:22.058667pt;}
.ws6d{word-spacing:22.138880pt;}
.wsb1{word-spacing:22.786560pt;}
.wsf8{word-spacing:23.107200pt;}
.ws6a{word-spacing:23.434240pt;}
.ws8a{word-spacing:24.081920pt;}
.ws7a{word-spacing:24.729600pt;}
.wse4{word-spacing:25.656960pt;}
.wse5{word-spacing:25.816320pt;}
.ws84{word-spacing:26.024960pt;}
.ws86{word-spacing:26.613760pt;}
.wsad{word-spacing:27.261440pt;}
.wsce{word-spacing:27.909120pt;}
.wsaa{word-spacing:28.556800pt;}
.wseb{word-spacing:29.534720pt;}
.wse9{word-spacing:30.172160pt;}
.wsea{word-spacing:30.331520pt;}
.wsbe{word-spacing:33.031680pt;}
.wsa8{word-spacing:34.327040pt;}
.wsbb{word-spacing:34.974720pt;}
.ws8c{word-spacing:38.801920pt;}
.ws9a{word-spacing:42.816000pt;}
.wsf9{word-spacing:46.798720pt;}
.wsde{word-spacing:47.436160pt;}
.wsdd{word-spacing:48.073600pt;}
.wsc7{word-spacing:48.528000pt;}
.wsf3{word-spacing:49.348480pt;}
.ws9c{word-spacing:54.336000pt;}
.ws100{word-spacing:56.413440pt;}
.wsc8{word-spacing:112.128000pt;}
.wsf7{word-spacing:122.335360pt;}
.wse8{word-spacing:140.236800pt;}
.ws112{word-spacing:140.874240pt;}
._7{margin-left:-10.627200pt;}
._1{margin-left:-5.540267pt;}
._8{margin-left:-4.488533pt;}
._4{margin-left:-3.561600pt;}
._2{margin-left:-1.916800pt;}
._0{margin-left:-1.024000pt;}
._3{width:1.699200pt;}
._1e{width:2.644992pt;}
._9{width:3.561600pt;}
._1f{width:4.463744pt;}
._b{width:5.358080pt;}
._6{width:6.329600pt;}
._11{width:7.296000pt;}
._d{width:8.913920pt;}
._a{width:10.368000pt;}
._e{width:11.369728pt;}
._c{width:12.493824pt;}
._27{width:14.663040pt;}
._28{width:15.558656pt;}
._32{width:18.606080pt;}
._3a{width:19.550080pt;}
._33{width:21.877376pt;}
._35{width:25.277056pt;}
._37{width:29.594240pt;}
._38{width:46.616960pt;}
._34{width:47.758080pt;}
._2b{width:49.868800pt;}
._39{width:56.885760pt;}
._1c{width:73.148800pt;}
._21{width:82.512000pt;}
._10{width:88.896000pt;}
._1a{width:90.188800pt;}
._2d{width:98.835200pt;}
._1d{width:100.028800pt;}
._2f{width:109.683200pt;}
._31{width:126.192000pt;}
._36{width:139.655040pt;}
._2e{width:142.992000pt;}
._20{width:165.840000pt;}
._f{width:170.976000pt;}
._1b{width:175.440000pt;}
._30{width:183.120000pt;}
._25{width:222.672000pt;}
._22{width:230.688000pt;}
._2c{width:236.256000pt;}
._23{width:244.128000pt;}
._24{width:274.032000pt;}
._19{width:343.916800pt;}
._18{width:399.456000pt;}
._15{width:411.718400pt;}
._12{width:439.776000pt;}
._2a{width:457.056000pt;}
._17{width:472.576000pt;}
._14{width:505.072000pt;}
._26{width:506.464000pt;}
._29{width:514.192000pt;}
._5{width:600.470933pt;}
._16{width:668.160000pt;}
._13{width:814.800000pt;}
.fsa{font-size:16.000000pt;}
.fs12{font-size:26.880000pt;}
.fsf{font-size:32.000000pt;}
.fse{font-size:37.120000pt;}
.fs7{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fsb{font-size:42.880000pt;}
.fs11{font-size:46.662933pt;}
.fs3{font-size:48.000000pt;}
.fs10{font-size:53.120000pt;}
.fs9{font-size:58.666667pt;}
.fsd{font-size:58.880000pt;}
.fs8{font-size:61.333333pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs13{font-size:74.880000pt;}
.fsc{font-size:85.120000pt;}
.fs6{font-size:90.666667pt;}
.fs1{font-size:154.666667pt;}
.fs5{font-size:282.666667pt;}
.ye4{bottom:-1.508267pt;}
.ye6{bottom:-1.507867pt;}
.ye8{bottom:-1.507467pt;}
.y0{bottom:0.000000pt;}
.y37c{bottom:2.720000pt;}
.y179{bottom:4.160000pt;}
.y17b{bottom:4.320000pt;}
.y1bb{bottom:4.480000pt;}
.y1d9{bottom:4.640000pt;}
.y1a7{bottom:4.960000pt;}
.y18d{bottom:6.560000pt;}
.y316{bottom:9.280000pt;}
.y1c0{bottom:26.880000pt;}
.y342{bottom:36.160000pt;}
.y1c9{bottom:47.840000pt;}
.y34{bottom:48.649467pt;}
.y8b{bottom:53.109333pt;}
.y356{bottom:57.440000pt;}
.y360{bottom:57.600000pt;}
.ybc{bottom:58.880000pt;}
.y33{bottom:60.649467pt;}
.y8a{bottom:65.909333pt;}
.y72{bottom:72.424267pt;}
.y32{bottom:72.649467pt;}
.y3ee{bottom:80.414080pt;}
.y16f{bottom:80.810880pt;}
.y2e3{bottom:80.812800pt;}
.y2a3{bottom:82.464000pt;}
.y30d{bottom:82.542080pt;}
.y1b7{bottom:82.720000pt;}
.y252{bottom:83.888640pt;}
.y31{bottom:84.649467pt;}
.y71{bottom:85.757600pt;}
.y3f9{bottom:87.203200pt;}
.y118{bottom:88.421760pt;}
.yaf{bottom:88.676267pt;}
.y1da{bottom:89.280000pt;}
.y272{bottom:90.175360pt;}
.y89{bottom:91.509333pt;}
.y3c9{bottom:91.934080pt;}
.y341{bottom:92.320000pt;}
.y215{bottom:93.678720pt;}
.yb9{bottom:96.460533pt;}
.y30{bottom:96.649467pt;}
.y390{bottom:98.183040pt;}
.y232{bottom:98.591360pt;}
.y70{bottom:99.090933pt;}
.y3ed{bottom:99.932800pt;}
.y16e{bottom:100.167680pt;}
.y2a2{bottom:101.820800pt;}
.y251{bottom:103.245440pt;}
.y88{bottom:104.309333pt;}
.y2c7{bottom:106.190720pt;}
.yae{bottom:106.322400pt;}
.y3f8{bottom:106.560000pt;}
.y343{bottom:107.200000pt;}
.y347{bottom:107.204000pt;}
.y209{bottom:107.907840pt;}
.y117{bottom:107.940480pt;}
.y2e2{bottom:108.177280pt;}
.y2f{bottom:108.649467pt;}
.y271{bottom:109.694080pt;}
.y1d8{bottom:109.760000pt;}
.y30c{bottom:110.068480pt;}
.y3c8{bottom:111.290880pt;}
.y6f{bottom:112.424267pt;}
.y214{bottom:113.035520pt;}
.y87{bottom:117.109333pt;}
.y38f{bottom:117.701760pt;}
.y345{bottom:117.924000pt;}
.y231{bottom:117.948160pt;}
.yad{bottom:119.122400pt;}
.y3ec{bottom:119.289600pt;}
.y16d{bottom:119.686400pt;}
.y2e{bottom:120.649467pt;}
.y38b{bottom:120.654080pt;}
.y145{bottom:121.043200pt;}
.y2a1{bottom:121.177600pt;}
.ye2{bottom:122.080000pt;}
.y250{bottom:122.602240pt;}
.y2c6{bottom:125.709440pt;}
.y6e{bottom:125.757600pt;}
.y208{bottom:127.264640pt;}
.y116{bottom:127.297280pt;}
.y346{bottom:128.480000pt;}
.y3a0{bottom:129.050880pt;}
.y86{bottom:129.909333pt;}
.y3c7{bottom:130.647680pt;}
.y1d7{bottom:132.160000pt;}
.y213{bottom:132.392320pt;}
.y2d{bottom:132.649467pt;}
.y1d5{bottom:132.804000pt;}
.y3f7{bottom:134.400000pt;}
.y2e1{bottom:135.703680pt;}
.y43e{bottom:135.824640pt;}
.y270{bottom:137.058560pt;}
.y30b{bottom:137.432960pt;}
.y230{bottom:137.466880pt;}
.y3eb{bottom:138.646400pt;}
.y16c{bottom:139.043200pt;}
.y6d{bottom:139.090933pt;}
.y344{bottom:139.200000pt;}
.y38a{bottom:140.010880pt;}
.y144{bottom:140.400000pt;}
.y2a0{bottom:140.534400pt;}
.y1b8{bottom:140.960000pt;}
.y24f{bottom:141.959040pt;}
.y85{bottom:142.709333pt;}
.ye1{bottom:143.840000pt;}
.y2c5{bottom:145.066240pt;}
.y207{bottom:146.621440pt;}
.y115{bottom:146.654080pt;}
.y39f{bottom:148.407680pt;}
.y1d6{bottom:149.920000pt;}
.y3c6{bottom:150.004480pt;}
.y212{bottom:151.749120pt;}
.y41a{bottom:151.965440pt;}
.y6c{bottom:152.424267pt;}
.y1d4{bottom:154.080000pt;}
.y2e0{bottom:155.060480pt;}
.y33f{bottom:156.320000pt;}
.y26f{bottom:156.415360pt;}
.y2c{bottom:156.649467pt;}
.y22f{bottom:156.823680pt;}
.yac{bottom:157.568667pt;}
.ye0{bottom:157.920000pt;}
.y3ea{bottom:158.003200pt;}
.y16b{bottom:158.400000pt;}
.y389{bottom:159.529600pt;}
.y143{bottom:159.756800pt;}
.y29f{bottom:160.053120pt;}
.y43d{bottom:160.950400pt;}
.y24e{bottom:161.477760pt;}
.y2c4{bottom:164.423040pt;}
.y6b{bottom:164.424267pt;}
.yb8{bottom:164.492000pt;}
.y30a{bottom:164.797440pt;}
.y206{bottom:165.978240pt;}
.y114{bottom:166.010880pt;}
.y39e{bottom:167.764480pt;}
.y84{bottom:168.309333pt;}
.y3c5{bottom:169.523200pt;}
.ydf{bottom:170.560000pt;}
.y211{bottom:171.267840pt;}
.y340{bottom:173.440000pt;}
.y2df{bottom:174.417280pt;}
.yab{bottom:175.214800pt;}
.y26e{bottom:175.772160pt;}
.y22e{bottom:176.180480pt;}
.y6a{bottom:176.424267pt;}
.y1d3{bottom:176.480000pt;}
.y419{bottom:176.931840pt;}
.y3e9{bottom:177.521920pt;}
.y1d2{bottom:177.604000pt;}
.y388{bottom:178.886400pt;}
.y142{bottom:179.275520pt;}
.y29e{bottom:179.409920pt;}
.y2b{bottom:180.649467pt;}
.y83{bottom:181.109333pt;}
.y33e{bottom:181.920000pt;}
.y2c3{bottom:183.779840pt;}
.y113{bottom:185.529600pt;}
.y16a{bottom:185.764480pt;}
.y43c{bottom:185.916800pt;}
.y45d{bottom:186.060800pt;}
.y39d{bottom:187.283200pt;}
.y19b{bottom:187.680000pt;}
.y69{bottom:188.424267pt;}
.y24d{bottom:188.842240pt;}
.y3c4{bottom:188.880000pt;}
.y210{bottom:190.624640pt;}
.y309{bottom:192.161920pt;}
.y2a{bottom:192.649467pt;}
.yaa{bottom:192.814800pt;}
.y205{bottom:193.504640pt;}
.y2de{bottom:193.774080pt;}
.y82{bottom:193.909333pt;}
.y26d{bottom:195.290880pt;}
.y22d{bottom:195.537280pt;}
.y141{bottom:198.632320pt;}
.y1d1{bottom:198.880000pt;}
.y33c{bottom:199.040000pt;}
.y68{bottom:200.424267pt;}
.y418{bottom:201.898240pt;}
.y339{bottom:203.200000pt;}
.y2c2{bottom:203.298560pt;}
.y29{bottom:204.649467pt;}
.y3e8{bottom:204.886400pt;}
.y169{bottom:205.121280pt;}
.y387{bottom:206.250880pt;}
.y81{bottom:206.709333pt;}
.y29d{bottom:206.774400pt;}
.y19a{bottom:207.219200pt;}
.y24c{bottom:208.199040pt;}
.y3c3{bottom:208.236800pt;}
.y43b{bottom:210.883200pt;}
.y45c{bottom:211.027200pt;}
.y67{bottom:212.424267pt;}
.y204{bottom:212.861440pt;}
.y112{bottom:212.894080pt;}
.y2dd{bottom:213.130880pt;}
.y26c{bottom:214.647680pt;}
.y22c{bottom:214.894080pt;}
.y28{bottom:216.649467pt;}
.y140{bottom:217.989120pt;}
.y80{bottom:219.509333pt;}
.y308{bottom:219.526400pt;}
.y1d0{bottom:221.280000pt;}
.y38e{bottom:222.655360pt;}
.y3e7{bottom:224.243200pt;}
.ya9{bottom:224.373867pt;}
.y66{bottom:224.424267pt;}
.y33b{bottom:224.476000pt;}
.y168{bottom:224.640000pt;}
.y386{bottom:225.607680pt;}
.y29c{bottom:226.131200pt;}
.y199{bottom:226.576000pt;}
.y33d{bottom:226.720000pt;}
.y417{bottom:226.864640pt;}
.yde{bottom:226.880000pt;}
.y24b{bottom:227.555840pt;}
.y3c2{bottom:227.593600pt;}
.y27{bottom:228.649467pt;}
.y2c1{bottom:230.663040pt;}
.yb7{bottom:230.948667pt;}
.y326{bottom:231.200000pt;}
.y203{bottom:232.218240pt;}
.y111{bottom:232.250880pt;}
.y2dc{bottom:232.649600pt;}
.y26b{bottom:234.004480pt;}
.y43a{bottom:235.849600pt;}
.y45b{bottom:235.993600pt;}
.y65{bottom:236.424267pt;}
.y20f{bottom:237.345920pt;}
.y1cf{bottom:239.040000pt;}
.y26{bottom:240.649467pt;}
.ya8{bottom:240.953467pt;}
.y38d{bottom:242.012160pt;}
.y22b{bottom:242.420480pt;}
.y1ce{bottom:243.360000pt;}
.y3e6{bottom:243.600000pt;}
.y385{bottom:244.964480pt;}
.y7f{bottom:245.109333pt;}
.y13f{bottom:245.353600pt;}
.y29b{bottom:245.649920pt;}
.y33a{bottom:245.920000pt;}
.y198{bottom:245.932800pt;}
.y24a{bottom:246.912640pt;}
.y3c1{bottom:246.950400pt;}
.y307{bottom:247.052800pt;}
.y64{bottom:248.424267pt;}
.ydd{bottom:248.520160pt;}
.y2c0{bottom:250.019840pt;}
.y202{bottom:251.575040pt;}
.y110{bottom:251.607680pt;}
.y416{bottom:251.831040pt;}
.y2db{bottom:252.006400pt;}
.y167{bottom:252.480000pt;}
.y25{bottom:252.649467pt;}
.y39c{bottom:253.361280pt;}
.ya7{bottom:253.753333pt;}
.y20e{bottom:256.702720pt;}
.y63{bottom:260.424267pt;}
.y439{bottom:260.816000pt;}
.y45a{bottom:260.960000pt;}
.y1c8{bottom:261.120000pt;}
.y26a{bottom:261.368960pt;}
.y22a{bottom:261.777280pt;}
.ydc{bottom:262.595520pt;}
.y3e5{bottom:262.956800pt;}
.y337{bottom:263.040000pt;}
.y384{bottom:264.483200pt;}
.y24{bottom:264.649467pt;}
.y13e{bottom:264.710400pt;}
.y29a{bottom:265.006720pt;}
.y197{bottom:265.289600pt;}
.y1cd{bottom:265.760000pt;}
.y249{bottom:266.431360pt;}
.y3c0{bottom:266.469120pt;}
.y2bf{bottom:269.376640pt;}
.y201{bottom:270.931840pt;}
.y10f{bottom:270.964480pt;}
.y2da{bottom:271.363200pt;}
.y7e{bottom:272.309333pt;}
.y62{bottom:272.424267pt;}
.y39b{bottom:272.718080pt;}
.y306{bottom:274.417280pt;}
.y20d{bottom:276.221440pt;}
.ydb{bottom:276.670880pt;}
.y415{bottom:276.956800pt;}
.y338{bottom:280.000000pt;}
.y269{bottom:280.725760pt;}
.y229{bottom:281.134080pt;}
.y3e4{bottom:282.475520pt;}
.y1cc{bottom:283.520000pt;}
.ya6{bottom:283.712400pt;}
.y383{bottom:283.840000pt;}
.y13d{bottom:284.229120pt;}
.y299{bottom:284.363520pt;}
.y61{bottom:284.424267pt;}
.y196{bottom:284.646400pt;}
.y7d{bottom:285.109333pt;}
.y459{bottom:285.440000pt;}
.y248{bottom:285.788160pt;}
.y3bf{bottom:285.825920pt;}
.y438{bottom:285.941760pt;}
.y1ca{bottom:287.680000pt;}
.y336{bottom:288.480000pt;}
.y23{bottom:288.649467pt;}
.y2be{bottom:288.733440pt;}
.y200{bottom:290.450560pt;}
.y10e{bottom:290.483200pt;}
.y2d9{bottom:290.720000pt;}
.yb6{bottom:290.854267pt;}
.yda{bottom:290.907040pt;}
.y39a{bottom:292.236800pt;}
.y305{bottom:293.774080pt;}
.y3f6{bottom:295.578240pt;}
.y60{bottom:296.424267pt;}
.y166{bottom:297.171840pt;}
.y7c{bottom:297.909333pt;}
.y331{bottom:299.204000pt;}
.y268{bottom:300.244480pt;}
.ya5{bottom:300.292000pt;}
.y228{bottom:300.490880pt;}
.y3e3{bottom:301.832320pt;}
.y414{bottom:301.923200pt;}
.y382{bottom:303.196800pt;}
.y13c{bottom:303.585920pt;}
.y298{bottom:303.720320pt;}
.y195{bottom:304.165120pt;}
.yd9{bottom:304.982400pt;}
.y247{bottom:305.144960pt;}
.y3be{bottom:305.182720pt;}
.y334{bottom:305.600000pt;}
.y2bd{bottom:308.252160pt;}
.y5f{bottom:308.424267pt;}
.y1cb{bottom:308.960000pt;}
.y1ff{bottom:309.807360pt;}
.y7b{bottom:310.709333pt;}
.y437{bottom:310.908160pt;}
.y458{bottom:311.040000pt;}
.y399{bottom:311.593600pt;}
.y22{bottom:312.649467pt;}
.ya4{bottom:313.092000pt;}
.y304{bottom:313.130880pt;}
.y3f5{bottom:314.935040pt;}
.y165{bottom:316.528640pt;}
.y10d{bottom:317.847680pt;}
.y2d8{bottom:318.720000pt;}
.yd8{bottom:319.057760pt;}
.y267{bottom:319.601280pt;}
.y227{bottom:320.009600pt;}
.y5e{bottom:320.424267pt;}
.y330{bottom:320.480000pt;}
.y3e2{bottom:321.189120pt;}
.y381{bottom:322.553600pt;}
.y13b{bottom:322.942720pt;}
.y297{bottom:323.077120pt;}
.y7a{bottom:323.509333pt;}
.y194{bottom:323.521920pt;}
.y246{bottom:324.501760pt;}
.y3bd{bottom:324.539520pt;}
.y21{bottom:324.649467pt;}
.y1c6{bottom:326.880000pt;}
.y413{bottom:326.889600pt;}
.y2bc{bottom:327.608960pt;}
.y1fe{bottom:329.164160pt;}
.y398{bottom:330.950400pt;}
.y333{bottom:331.204000pt;}
.y5d{bottom:332.424267pt;}
.y303{bottom:332.487680pt;}
.yd7{bottom:333.133120pt;}
.y1c7{bottom:333.280000pt;}
.y335{bottom:333.440000pt;}
.y3f4{bottom:334.291840pt;}
.y457{bottom:335.831040pt;}
.y436{bottom:335.874560pt;}
.y164{bottom:336.047360pt;}
.y79{bottom:336.309333pt;}
.y20{bottom:336.649467pt;}
.y10c{bottom:337.204480pt;}
.y266{bottom:338.958080pt;}
.y226{bottom:339.366400pt;}
.y3e1{bottom:340.545920pt;}
.y13a{bottom:342.299520pt;}
.y296{bottom:342.595840pt;}
.y193{bottom:342.878720pt;}
.y245{bottom:344.020480pt;}
.y3bc{bottom:344.058240pt;}
.y5c{bottom:344.424267pt;}
.ya3{bottom:344.651067pt;}
.y2bb{bottom:346.965760pt;}
.yd6{bottom:347.208480pt;}
.y1fd{bottom:348.520960pt;}
.y1f{bottom:348.649467pt;}
.y78{bottom:349.109333pt;}
.y380{bottom:350.080000pt;}
.y397{bottom:350.307200pt;}
.yb5{bottom:351.578667pt;}
.y412{bottom:351.856000pt;}
.y302{bottom:352.006400pt;}
.y332{bottom:352.480000pt;}
.y1c5{bottom:353.760000pt;}
.y3f3{bottom:353.810560pt;}
.y163{bottom:355.404160pt;}
.y5b{bottom:356.424267pt;}
.y10b{bottom:356.561280pt;}
.y265{bottom:358.314880pt;}
.y225{bottom:358.723200pt;}
.y3e0{bottom:360.064640pt;}
.y1e{bottom:360.649467pt;}
.y456{bottom:360.797440pt;}
.y435{bottom:360.840960pt;}
.ya2{bottom:361.230533pt;}
.yd5{bottom:361.283840pt;}
.y139{bottom:361.818240pt;}
.y77{bottom:361.909333pt;}
.y295{bottom:361.952640pt;}
.y192{bottom:362.235520pt;}
.y244{bottom:363.377280pt;}
.y2d7{bottom:363.411840pt;}
.y3bb{bottom:363.415040pt;}
.y2ba{bottom:366.322560pt;}
.y1fc{bottom:368.039680pt;}
.y5a{bottom:368.424267pt;}
.y32e{bottom:369.600000pt;}
.y396{bottom:369.825920pt;}
.y1{bottom:370.393733pt;}
.y301{bottom:371.363200pt;}
.y1bf{bottom:371.680000pt;}
.y1d{bottom:372.649467pt;}
.ya1{bottom:374.030533pt;}
.y76{bottom:374.709333pt;}
.y162{bottom:374.760960pt;}
.yd4{bottom:375.520000pt;}
.y10a{bottom:376.080000pt;}
.y1c4{bottom:376.160000pt;}
.y411{bottom:376.822400pt;}
.y1c1{bottom:377.280000pt;}
.y264{bottom:377.833600pt;}
.y224{bottom:378.080000pt;}
.y37f{bottom:378.248000pt;}
.y3df{bottom:379.421440pt;}
.y59{bottom:380.424267pt;}
.y138{bottom:381.175040pt;}
.y294{bottom:381.309440pt;}
.y243{bottom:382.734080pt;}
.y2d6{bottom:382.768640pt;}
.y3ba{bottom:382.771840pt;}
.y1c{bottom:384.649467pt;}
.y455{bottom:385.763840pt;}
.y434{bottom:385.807360pt;}
.y2b9{bottom:385.841280pt;}
.y32f{bottom:386.720000pt;}
.y1fb{bottom:387.396480pt;}
.y75{bottom:387.509333pt;}
.yd3{bottom:388.160000pt;}
.y395{bottom:389.182720pt;}
.y191{bottom:389.761920pt;}
.y300{bottom:390.720000pt;}
.y58{bottom:392.424267pt;}
.y1c2{bottom:394.080000pt;}
.y161{bottom:394.117760pt;}
.y32d{bottom:395.200000pt;}
.y109{bottom:395.436800pt;}
.y1b{bottom:396.649467pt;}
.y263{bottom:397.190400pt;}
.y3de{bottom:398.778240pt;}
.y37e{bottom:400.004000pt;}
.y74{bottom:400.309333pt;}
.y1c3{bottom:400.480000pt;}
.y137{bottom:400.531840pt;}
.y293{bottom:400.666240pt;}
.y410{bottom:401.948160pt;}
.y242{bottom:402.090880pt;}
.y2d5{bottom:402.125440pt;}
.y3b9{bottom:402.128640pt;}
.y57{bottom:404.424267pt;}
.y2b8{bottom:405.198080pt;}
.ya0{bottom:405.589600pt;}
.y223{bottom:405.920000pt;}
.y328{bottom:405.924000pt;}
.y1fa{bottom:406.753280pt;}
.y394{bottom:408.539520pt;}
.y190{bottom:409.118720pt;}
.y2ff{bottom:410.076800pt;}
.yb4{bottom:410.350267pt;}
.y454{bottom:410.889600pt;}
.y433{bottom:410.933120pt;}
.y32b{bottom:412.320000pt;}
.y160{bottom:413.474560pt;}
.y108{bottom:414.793600pt;}
.y56{bottom:416.424267pt;}
.y1bd{bottom:416.480000pt;}
.y262{bottom:416.547200pt;}
.y3dd{bottom:418.135040pt;}
.y5{bottom:418.489067pt;}
.y136{bottom:419.888640pt;}
.y292{bottom:420.184960pt;}
.y1a{bottom:420.649467pt;}
.y241{bottom:421.447680pt;}
.y2d4{bottom:421.482240pt;}
.y3b8{bottom:421.485440pt;}
.y37d{bottom:421.760000pt;}
.y1b9{bottom:422.084000pt;}
.y9f{bottom:422.169200pt;}
.y1be{bottom:422.880000pt;}
.y2b7{bottom:424.554880pt;}
.y73{bottom:425.909333pt;}
.y1f9{bottom:426.110080pt;}
.y40f{bottom:426.914560pt;}
.y327{bottom:427.200000pt;}
.y55{bottom:428.424267pt;}
.y18f{bottom:428.475520pt;}
.y15f{bottom:432.993280pt;}
.y107{bottom:434.150400pt;}
.y9e{bottom:434.969200pt;}
.y453{bottom:435.856000pt;}
.y432{bottom:435.899520pt;}
.y261{bottom:435.904000pt;}
.y2fe{bottom:437.603200pt;}
.y32a{bottom:437.924000pt;}
.y37b{bottom:438.240000pt;}
.y1ba{bottom:438.880000pt;}
.y135{bottom:439.245440pt;}
.y291{bottom:439.541760pt;}
.y32c{bottom:440.000000pt;}
.y54{bottom:440.424267pt;}
.y240{bottom:440.966400pt;}
.y2d3{bottom:441.000960pt;}
.y3b7{bottom:441.004160pt;}
.yd2{bottom:443.360000pt;}
.y2b6{bottom:443.911680pt;}
.y19{bottom:444.649467pt;}
.y1bc{bottom:445.280000pt;}
.y3dc{bottom:445.499520pt;}
.y222{bottom:450.756480pt;}
.y40e{bottom:451.880960pt;}
.y4{bottom:452.088933pt;}
.y378{bottom:452.160000pt;}
.y15e{bottom:452.350080pt;}
.y53{bottom:452.424267pt;}
.y1f8{bottom:453.474560pt;}
.y106{bottom:453.507200pt;}
.y260{bottom:455.260800pt;}
.y18e{bottom:455.840000pt;}
.y18{bottom:456.649467pt;}
.y2fd{bottom:456.960000pt;}
.yd1{bottom:457.476320pt;}
.y134{bottom:458.764160pt;}
.y290{bottom:458.898560pt;}
.y329{bottom:459.200000pt;}
.y23f{bottom:460.323200pt;}
.y2d2{bottom:460.357760pt;}
.y3b6{bottom:460.360960pt;}
.y452{bottom:460.822400pt;}
.y431{bottom:460.865920pt;}
.y2b5{bottom:463.268480pt;}
.y52{bottom:464.424267pt;}
.y3db{bottom:465.018240pt;}
.y9d{bottom:466.528133pt;}
.y37a{bottom:467.040000pt;}
.y379{bottom:469.120000pt;}
.y221{bottom:470.113280pt;}
.yd0{bottom:471.551680pt;}
.y15d{bottom:471.706880pt;}
.y1f7{bottom:472.993280pt;}
.y105{bottom:473.025920pt;}
.y38c{bottom:474.779520pt;}
.yb3{bottom:475.673200pt;}
.y1b6{bottom:475.992000pt;}
.y51{bottom:476.424267pt;}
.y40d{bottom:476.847360pt;}
.y377{bottom:477.600000pt;}
.y133{bottom:478.120960pt;}
.y28f{bottom:478.255360pt;}
.y18c{bottom:479.040000pt;}
.y23e{bottom:479.680000pt;}
.y2d1{bottom:479.714560pt;}
.y3b5{bottom:479.717760pt;}
.y17{bottom:480.649467pt;}
.y25f{bottom:482.787200pt;}
.y9c{bottom:483.107733pt;}
.y3da{bottom:484.375040pt;}
.ycf{bottom:485.627040pt;}
.y451{bottom:485.788800pt;}
.y430{bottom:485.832320pt;}
.y325{bottom:486.560000pt;}
.y50{bottom:488.424267pt;}
.y220{bottom:489.470080pt;}
.y2fc{bottom:490.240000pt;}
.y15c{bottom:491.063680pt;}
.y1f6{bottom:492.350080pt;}
.y104{bottom:492.382720pt;}
.y18a{bottom:492.800000pt;}
.y393{bottom:494.136320pt;}
.y375{bottom:494.720000pt;}
.y3{bottom:495.288933pt;}
.y9b{bottom:495.907733pt;}
.y132{bottom:497.477760pt;}
.y28e{bottom:497.612160pt;}
.y1b5{bottom:498.552000pt;}
.y372{bottom:499.044000pt;}
.y2d0{bottom:499.071360pt;}
.y3b4{bottom:499.074560pt;}
.y18b{bottom:499.200000pt;}
.yce{bottom:499.863200pt;}
.y4f{bottom:500.424267pt;}
.y40c{bottom:501.813760pt;}
.y25e{bottom:502.144000pt;}
.y3d9{bottom:503.731840pt;}
.y16{bottom:504.649467pt;}
.y3f2{bottom:505.485440pt;}
.y23d{bottom:507.520000pt;}
.y9a{bottom:508.707733pt;}
.y21f{bottom:508.826880pt;}
.y15b{bottom:510.582400pt;}
.y450{bottom:510.755200pt;}
.y42f{bottom:510.798720pt;}
.y1f5{bottom:511.706880pt;}
.y103{bottom:511.739520pt;}
.y4e{bottom:512.424267pt;}
.y2fb{bottom:512.640000pt;}
.y392{bottom:513.493120pt;}
.ycd{bottom:513.938560pt;}
.y188{bottom:514.080000pt;}
.y324{bottom:515.036000pt;}
.y15{bottom:516.649467pt;}
.y131{bottom:516.834560pt;}
.y28d{bottom:517.130880pt;}
.y2cf{bottom:518.590080pt;}
.y374{bottom:520.324000pt;}
.y189{bottom:520.480000pt;}
.y25d{bottom:521.500800pt;}
.y1b4{bottom:522.396000pt;}
.y376{bottom:522.400000pt;}
.y3d8{bottom:523.088640pt;}
.y4d{bottom:524.424267pt;}
.y3f1{bottom:524.842240pt;}
.y2f9{bottom:526.400000pt;}
.y3b3{bottom:526.600960pt;}
.y40b{bottom:526.939520pt;}
.ycc{bottom:528.013920pt;}
.y21e{bottom:528.345600pt;}
.y15a{bottom:529.939200pt;}
.y1f4{bottom:531.063680pt;}
.y102{bottom:531.096320pt;}
.y2fa{bottom:532.800000pt;}
.y391{bottom:532.849920pt;}
.y187{bottom:535.360000pt;}
.y44f{bottom:535.880960pt;}
.y42e{bottom:535.924480pt;}
.y130{bottom:536.353280pt;}
.y4c{bottom:536.424267pt;}
.y28c{bottom:536.487680pt;}
.y2{bottom:536.888933pt;}
.y2ce{bottom:537.946880pt;}
.y99{bottom:538.666800pt;}
.y323{bottom:538.880000pt;}
.y14{bottom:540.649467pt;}
.y25c{bottom:540.857600pt;}
.y373{bottom:541.600000pt;}
.ycb{bottom:542.089280pt;}
.y3d7{bottom:542.607360pt;}
.y3f0{bottom:544.360960pt;}
.y3b2{bottom:545.957760pt;}
.yb2{bottom:546.224267pt;}
.y1b3{bottom:546.240000pt;}
.y4b{bottom:548.424267pt;}
.y1f3{bottom:550.420480pt;}
.y101{bottom:550.615040pt;}
.y40a{bottom:551.905920pt;}
.y2f8{bottom:552.004000pt;}
.y23c{bottom:552.368640pt;}
.y98{bottom:555.246267pt;}
.y12f{bottom:555.710080pt;}
.y28b{bottom:555.844480pt;}
.yca{bottom:556.164640pt;}
.y186{bottom:556.800000pt;}
.y159{bottom:557.303680pt;}
.y36f{bottom:558.720000pt;}
.y25b{bottom:560.376320pt;}
.y4a{bottom:560.424267pt;}
.y44e{bottom:560.847360pt;}
.y42d{bottom:560.890880pt;}
.y3d6{bottom:561.964160pt;}
.y322{bottom:563.689600pt;}
.y3ef{bottom:563.717760pt;}
.y13{bottom:564.649467pt;}
.y3b1{bottom:565.314560pt;}
.y97{bottom:568.046267pt;}
.y2b4{bottom:568.384000pt;}
.y1f2{bottom:569.939200pt;}
.y100{bottom:569.971840pt;}
.yc9{bottom:570.240000pt;}
.y1b2{bottom:571.050880pt;}
.y23b{bottom:571.725440pt;}
.y49{bottom:572.424267pt;}
.y2f7{bottom:573.280000pt;}
.y371{bottom:573.600000pt;}
.y21d{bottom:575.066880pt;}
.y28a{bottom:575.201280pt;}
.y370{bottom:575.840000pt;}
.y12{bottom:576.649467pt;}
.y158{bottom:576.660480pt;}
.y409{bottom:576.872320pt;}
.y185{bottom:578.080000pt;}
.y276{bottom:578.720000pt;}
.y25a{bottom:579.733120pt;}
.y3d5{bottom:581.320960pt;}
.yc8{bottom:583.040000pt;}
.y12e{bottom:583.074560pt;}
.y36e{bottom:584.320000pt;}
.y48{bottom:584.424267pt;}
.y3b0{bottom:584.671360pt;}
.y44d{bottom:585.813760pt;}
.y42c{bottom:585.857280pt;}
.y2b3{bottom:587.740800pt;}
.y1f1{bottom:589.296000pt;}
.yff{bottom:589.328640pt;}
.y2f6{bottom:590.400000pt;}
.y321{bottom:591.054080pt;}
.y23a{bottom:591.082240pt;}
.y21c{bottom:594.423680pt;}
.y289{bottom:594.720000pt;}
.y157{bottom:596.017280pt;}
.y47{bottom:596.424267pt;}
.y1b1{bottom:598.577280pt;}
.y259{bottom:599.089920pt;}
.y184{bottom:599.360000pt;}
.y96{bottom:599.605333pt;}
.y11{bottom:600.649467pt;}
.y3d4{bottom:600.677760pt;}
.y36c{bottom:601.440000pt;}
.y408{bottom:601.838720pt;}
.y12d{bottom:602.431360pt;}
.y2cd{bottom:604.024960pt;}
.y3af{bottom:604.028160pt;}
.y369{bottom:605.596000pt;}
.yb1{bottom:606.381733pt;}
.y2b2{bottom:607.097600pt;}
.y46{bottom:608.424267pt;}
.y1f0{bottom:608.652800pt;}
.yfe{bottom:608.685440pt;}
.y239{bottom:610.439040pt;}
.y320{bottom:610.572800pt;}
.y44c{bottom:610.780160pt;}
.y42b{bottom:610.823680pt;}
.y21b{bottom:613.780480pt;}
.y2f5{bottom:616.004000pt;}
.y95{bottom:616.184933pt;}
.y1b0{bottom:617.934080pt;}
.y258{bottom:618.446720pt;}
.y3d3{bottom:620.034560pt;}
.y45{bottom:620.424267pt;}
.y183{bottom:620.800000pt;}
.y12c{bottom:621.788160pt;}
.y275{bottom:623.523200pt;}
.y156{bottom:623.543680pt;}
.y3ae{bottom:623.546880pt;}
.y288{bottom:623.680000pt;}
.y10{bottom:624.649467pt;}
.y2b1{bottom:626.454400pt;}
.y407{bottom:626.805120pt;}
.y36b{bottom:627.044000pt;}
.y1ef{bottom:628.009600pt;}
.yfd{bottom:628.042240pt;}
.y94{bottom:628.984800pt;}
.y36d{bottom:629.120000pt;}
.y238{bottom:629.795840pt;}
.y31f{bottom:629.929600pt;}
.y44{bottom:632.424267pt;}
.y21a{bottom:633.299200pt;}
.y44b{bottom:635.905920pt;}
.y42a{bottom:635.949440pt;}
.yc7{bottom:636.163520pt;}
.y2f4{bottom:637.280000pt;}
.y1af{bottom:637.290880pt;}
.y257{bottom:637.803520pt;}
.y3d2{bottom:639.553280pt;}
.y12b{bottom:641.306880pt;}
.y182{bottom:642.080000pt;}
.y274{bottom:642.880000pt;}
.y155{bottom:642.900480pt;}
.y3ad{bottom:642.903680pt;}
.y43{bottom:644.424267pt;}
.y2b0{bottom:645.811200pt;}
.y93{bottom:647.384933pt;}
.yfc{bottom:647.560960pt;}
.y36a{bottom:648.320000pt;}
.yf{bottom:648.649467pt;}
.y31e{bottom:649.286400pt;}
.y237{bottom:649.314560pt;}
.y406{bottom:651.930880pt;}
.y219{bottom:652.656000pt;}
.y2f3{bottom:654.400000pt;}
.y1ee{bottom:655.536000pt;}
.y42{bottom:656.424267pt;}
.y1ae{bottom:656.647680pt;}
.y256{bottom:657.322240pt;}
.y3d1{bottom:658.910080pt;}
.ye{bottom:660.649467pt;}
.y44a{bottom:660.872320pt;}
.y429{bottom:660.915840pt;}
.y154{bottom:662.257280pt;}
.y3ac{bottom:662.260480pt;}
.y181{bottom:663.360000pt;}
.y2af{bottom:665.329920pt;}
.y35f{bottom:665.440000pt;}
.yfb{bottom:666.917760pt;}
.y41{bottom:668.424267pt;}
.y31d{bottom:668.643200pt;}
.y12a{bottom:668.671360pt;}
.y287{bottom:670.080000pt;}
.y2cc{bottom:670.264960pt;}
.y273{bottom:670.720000pt;}
.yd{bottom:672.649467pt;}
.y1ed{bottom:674.892800pt;}
.y1ad{bottom:676.166400pt;}
.y255{bottom:676.679040pt;}
.y405{bottom:676.897280pt;}
.y92{bottom:677.344000pt;}
.y177{bottom:678.240000pt;}
.y2f2{bottom:680.004000pt;}
.y218{bottom:680.020480pt;}
.y368{bottom:680.320000pt;}
.y40{bottom:680.424267pt;}
.y153{bottom:681.614080pt;}
.y3ab{bottom:681.617280pt;}
.y367{bottom:682.400000pt;}
.yb0{bottom:683.673067pt;}
.y2ae{bottom:684.686720pt;}
.y180{bottom:684.800000pt;}
.y449{bottom:685.838720pt;}
.y428{bottom:685.882240pt;}
.yfa{bottom:686.274560pt;}
.y31c{bottom:688.000000pt;}
.y129{bottom:688.028160pt;}
.yc6{bottom:689.440000pt;}
.y2cb{bottom:689.621760pt;}
.y366{bottom:691.040000pt;}
.y286{bottom:691.840000pt;}
.y3f{bottom:692.424267pt;}
.y91{bottom:693.923467pt;}
.y1ec{bottom:694.249600pt;}
.y1ac{bottom:695.523200pt;}
.y254{bottom:696.035840pt;}
.yc{bottom:696.649467pt;}
.y217{bottom:699.377280pt;}
.y152{bottom:700.970880pt;}
.y2f1{bottom:701.280000pt;}
.y361{bottom:701.600000pt;}
.y404{bottom:701.863680pt;}
.y2ad{bottom:704.043520pt;}
.y3e{bottom:704.424267pt;}
.y285{bottom:704.480000pt;}
.yc5{bottom:705.440000pt;}
.yf9{bottom:705.631360pt;}
.ye7{bottom:706.065333pt;}
.y17f{bottom:706.080000pt;}
.y90{bottom:706.723467pt;}
.y128{bottom:707.384960pt;}
.y31b{bottom:707.518720pt;}
.y364{bottom:708.160000pt;}
.yb{bottom:708.649467pt;}
.y2ca{bottom:708.978560pt;}
.y3aa{bottom:708.981760pt;}
.y448{bottom:710.805120pt;}
.y427{bottom:710.848640pt;}
.y1eb{bottom:713.606400pt;}
.y1ab{bottom:714.880000pt;}
.y253{bottom:715.392640pt;}
.y3d{bottom:716.424267pt;}
.y2f0{bottom:718.400000pt;}
.y216{bottom:718.896000pt;}
.y151{bottom:720.489600pt;}
.ya{bottom:720.649467pt;}
.y2ac{bottom:723.400320pt;}
.y3d0{bottom:724.988160pt;}
.y403{bottom:726.830080pt;}
.y31a{bottom:726.875520pt;}
.y127{bottom:726.903680pt;}
.yc4{bottom:727.360000pt;}
.y3c{bottom:728.424267pt;}
.y2c9{bottom:728.497280pt;}
.y3a9{bottom:728.500480pt;}
.yf8{bottom:732.995840pt;}
.y2e8{bottom:733.280000pt;}
.y363{bottom:733.596000pt;}
.y365{bottom:733.600000pt;}
.y1aa{bottom:734.236800pt;}
.y236{bottom:734.911360pt;}
.y447{bottom:735.771520pt;}
.y426{bottom:735.815040pt;}
.y150{bottom:739.846400pt;}
.y3b{bottom:740.424267pt;}
.y1ea{bottom:740.970880pt;}
.y2ab{bottom:742.919040pt;}
.yc3{bottom:743.520000pt;}
.y2ef{bottom:744.004000pt;}
.ye5{bottom:744.012000pt;}
.y3cf{bottom:744.506880pt;}
.y9{bottom:744.649467pt;}
.y126{bottom:746.260480pt;}
.y2c8{bottom:747.854080pt;}
.y3a8{bottom:747.857280pt;}
.y8f{bottom:748.162533pt;}
.y8e{bottom:748.348400pt;}
.y17e{bottom:748.800000pt;}
.y402{bottom:751.796480pt;}
.y3a{bottom:752.424267pt;}
.yf7{bottom:752.514560pt;}
.y1a9{bottom:753.593600pt;}
.y319{bottom:754.240000pt;}
.y235{bottom:754.268160pt;}
.y362{bottom:755.040000pt;}
.y284{bottom:759.720960pt;}
.y1e9{bottom:760.489600pt;}
.y446{bottom:760.897280pt;}
.y425{bottom:760.940800pt;}
.y2aa{bottom:762.275840pt;}
.y3ce{bottom:763.863680pt;}
.y39{bottom:764.424267pt;}
.y2ee{bottom:765.280000pt;}
.yc2{bottom:765.440000pt;}
.y125{bottom:765.617280pt;}
.y14f{bottom:767.210880pt;}
.y3a7{bottom:767.214080pt;}
.y8{bottom:769.639733pt;}
.y17d{bottom:770.080000pt;}
.yf6{bottom:771.871360pt;}
.y355{bottom:772.160000pt;}
.y234{bottom:773.624960pt;}
.y283{bottom:773.796320pt;}
.y2ed{bottom:775.996000pt;}
.y38{bottom:776.424267pt;}
.y401{bottom:776.922240pt;}
.y1e8{bottom:779.846400pt;}
.y1a8{bottom:781.120000pt;}
.yc1{bottom:781.280000pt;}
.y2a9{bottom:781.632640pt;}
.ye3{bottom:781.958667pt;}
.y318{bottom:782.564000pt;}
.y3cd{bottom:783.220480pt;}
.y124{bottom:784.974080pt;}
.y445{bottom:785.863680pt;}
.y424{bottom:785.907200pt;}
.y14e{bottom:786.567680pt;}
.y3a6{bottom:786.570880pt;}
.y35e{bottom:787.040000pt;}
.y282{bottom:787.871680pt;}
.y37{bottom:788.424267pt;}
.y35d{bottom:789.120000pt;}
.yf5{bottom:791.228160pt;}
.y17a{bottom:791.360000pt;}
.y233{bottom:792.981760pt;}
.y7{bottom:795.242933pt;}
.y8d{bottom:795.368933pt;}
.y35c{bottom:797.600000pt;}
.y1e7{bottom:799.203200pt;}
.y17c{bottom:799.680000pt;}
.y36{bottom:800.424267pt;}
.y2a8{bottom:800.989440pt;}
.y400{bottom:801.888640pt;}
.y281{bottom:802.107840pt;}
.y3cc{bottom:802.577280pt;}
.y1a6{bottom:804.160000pt;}
.y317{bottom:804.320000pt;}
.y123{bottom:804.330880pt;}
.y14d{bottom:806.086400pt;}
.y3a5{bottom:806.089600pt;}
.y2ec{bottom:808.000000pt;}
.y357{bottom:808.320000pt;}
.y6{bottom:809.642933pt;}
.y8c{bottom:809.768933pt;}
.yf4{bottom:810.584960pt;}
.y444{bottom:810.830080pt;}
.y423{bottom:810.873600pt;}
.y20c{bottom:812.338560pt;}
.y35{bottom:812.424267pt;}
.y178{bottom:812.800000pt;}
.y35a{bottom:814.720000pt;}
.y280{bottom:816.183200pt;}
.y1e6{bottom:818.560000pt;}
.y315{bottom:820.160000pt;}
.y2a7{bottom:820.346240pt;}
.y3cb{bottom:822.096000pt;}
.y122{bottom:823.849600pt;}
.y14c{bottom:825.443200pt;}
.y3a4{bottom:825.446400pt;}
.y3ff{bottom:826.855040pt;}
.y1a5{bottom:827.528000pt;}
.yf3{bottom:830.103680pt;}
.y27f{bottom:830.258560pt;}
.y20b{bottom:831.857280pt;}
.y443{bottom:835.796480pt;}
.y422{bottom:835.840000pt;}
.y1e5{bottom:838.078720pt;}
.y176{bottom:838.720000pt;}
.y314{bottom:839.360000pt;}
.yc0{bottom:839.520000pt;}
.y2a6{bottom:839.864960pt;}
.y359{bottom:840.324000pt;}
.y3ca{bottom:841.452800pt;}
.y35b{bottom:842.400000pt;}
.y27e{bottom:844.333920pt;}
.y14b{bottom:844.800000pt;}
.y3a3{bottom:844.803200pt;}
.y1a4{bottom:845.444000pt;}
.y2eb{bottom:846.400000pt;}
.y175{bottom:849.280000pt;}
.yf2{bottom:849.460480pt;}
.y121{bottom:851.214080pt;}
.y3fe{bottom:851.821440pt;}
.y1e4{bottom:857.435520pt;}
.y27d{bottom:858.409280pt;}
.y2a5{bottom:859.221760pt;}
.ybf{bottom:860.640000pt;}
.y442{bottom:860.762880pt;}
.y421{bottom:860.794240pt;}
.y358{bottom:861.600000pt;}
.y3a2{bottom:864.160000pt;}
.y311{bottom:865.440000pt;}
.y1a2{bottom:866.720000pt;}
.yf1{bottom:868.817280pt;}
.y120{bottom:870.570880pt;}
.y2ea{bottom:872.000000pt;}
.y27c{bottom:872.484640pt;}
.y14a{bottom:872.640000pt;}
.y3fd{bottom:876.787840pt;}
.y2a4{bottom:878.578560pt;}
.y352{bottom:878.720000pt;}
.y312{bottom:883.360000pt;}
.ybe{bottom:883.836320pt;}
.y1e3{bottom:884.800000pt;}
.y441{bottom:885.888640pt;}
.y420{bottom:885.920000pt;}
.y27b{bottom:886.560000pt;}
.y174{bottom:887.832000pt;}
.y1a3{bottom:887.996000pt;}
.yf0{bottom:888.174080pt;}
.y11f{bottom:889.927680pt;}
.y313{bottom:891.520000pt;}
.y3a1{bottom:892.000000pt;}
.y173{bottom:892.476000pt;}
.y2e9{bottom:893.276000pt;}
.y354{bottom:893.600000pt;}
.y353{bottom:895.840000pt;}
.y20a{bottom:897.935360pt;}
.y27a{bottom:899.360000pt;}
.y3fc{bottom:901.913600pt;}
.y351{bottom:904.320000pt;}
.y1a1{bottom:905.760000pt;}
.yef{bottom:907.530880pt;}
.y11e{bottom:909.284480pt;}
.y310{bottom:909.440000pt;}
.y440{bottom:910.855040pt;}
.y41f{bottom:910.873600pt;}
.y2e6{bottom:911.040000pt;}
.ybd{bottom:912.160000pt;}
.y1e2{bottom:913.128000pt;}
.y149{bottom:917.292160pt;}
.y30f{bottom:920.160000pt;}
.y1a0{bottom:920.640000pt;}
.y34f{bottom:921.440000pt;}
.y34c{bottom:925.596000pt;}
.y2e5{bottom:926.240000pt;}
.y3fb{bottom:926.880000pt;}
.yee{bottom:927.049600pt;}
.y172{bottom:927.360000pt;}
.y11d{bottom:928.803200pt;}
.y1e1{bottom:934.884000pt;}
.y43f{bottom:935.821440pt;}
.y41e{bottom:935.840000pt;}
.y148{bottom:936.810880pt;}
.y2e7{bottom:936.960000pt;}
.yed{bottom:946.406400pt;}
.y350{bottom:947.040000pt;}
.y34e{bottom:947.044000pt;}
.y11c{bottom:948.160000pt;}
.y3fa{bottom:950.240000pt;}
.y171{bottom:950.880000pt;}
.y30e{bottom:953.276000pt;}
.y19f{bottom:954.880000pt;}
.y147{bottom:956.167680pt;}
.y279{bottom:956.640000pt;}
.ybb{bottom:957.280000pt;}
.y41d{bottom:960.787840pt;}
.yba{bottom:961.440000pt;}
.y1e0{bottom:961.920000pt;}
.yec{bottom:965.763200pt;}
.y2e4{bottom:966.240000pt;}
.y11b{bottom:967.516800pt;}
.y34d{bottom:968.320000pt;}
.y170{bottom:972.160000pt;}
.y146{bottom:975.524480pt;}
.y19e{bottom:977.120000pt;}
.y278{bottom:979.840000pt;}
.y1de{bottom:983.360000pt;}
.yeb{bottom:985.120000pt;}
.y349{bottom:985.440000pt;}
.y41c{bottom:985.754240pt;}
.y1df{bottom:989.760000pt;}
.y19d{bottom:992.960000pt;}
.y11a{bottom:994.881280pt;}
.y34b{bottom:1000.320000pt;}
.y34a{bottom:1002.400000pt;}
.y1dc{bottom:1005.760000pt;}
.y277{bottom:1008.160000pt;}
.y1db{bottom:1010.240000pt;}
.y41b{bottom:1010.880000pt;}
.y348{bottom:1011.040000pt;}
.y1dd{bottom:1012.160000pt;}
.yea{bottom:1013.120000pt;}
.y119{bottom:1014.400000pt;}
.y19c{bottom:1016.960000pt;}
.ye9{bottom:1039.520000pt;}
.h12{height:10.664062pt;}
.h1d{height:11.321333pt;}
.h1f{height:11.400000pt;}
.h2b{height:13.760000pt;}
.h46{height:13.920000pt;}
.h20{height:17.915625pt;}
.h3c{height:18.400000pt;}
.h30{height:18.401333pt;}
.h29{height:21.280000pt;}
.h26{height:21.281333pt;}
.h27{height:21.438667pt;}
.h2a{height:21.440000pt;}
.h32{height:21.600000pt;}
.h37{height:21.761333pt;}
.h28{height:28.687500pt;}
.h1e{height:32.399752pt;}
.h16{height:33.277500pt;}
.h23{height:33.328125pt;}
.h17{height:33.513125pt;}
.hc{height:33.705729pt;}
.h2c{height:34.945312pt;}
.h2{height:36.821333pt;}
.h18{height:38.441250pt;}
.hb{height:38.520833pt;}
.h13{height:38.713437pt;}
.h36{height:42.558667pt;}
.h3e{height:42.560000pt;}
.h11{height:42.656250pt;}
.h2e{height:42.720000pt;}
.ha{height:43.031250pt;}
.h5{height:43.335938pt;}
.h39{height:43.360000pt;}
.h33{height:44.000000pt;}
.h1b{height:44.437500pt;}
.h3a{height:44.687500pt;}
.h2f{height:44.703500pt;}
.h6{height:45.760000pt;}
.h1a{height:47.460610pt;}
.h19{height:47.475970pt;}
.h1c{height:47.621250pt;}
.h49{height:47.644290pt;}
.h48{height:47.646850pt;}
.h47{height:47.669890pt;}
.h4b{height:47.698050pt;}
.h4a{height:48.297090pt;}
.h34{height:50.711250pt;}
.h3b{height:51.335250pt;}
.h45{height:52.007250pt;}
.he{height:52.593750pt;}
.h21{height:52.785000pt;}
.h22{height:53.158750pt;}
.hd{height:55.373698pt;}
.h15{height:57.375000pt;}
.h7{height:57.781250pt;}
.h3d{height:64.000000pt;}
.h3f{height:64.001333pt;}
.h35{height:64.960000pt;}
.h4{height:66.937500pt;}
.h38{height:67.604062pt;}
.h14{height:76.849063pt;}
.h42{height:76.951250pt;}
.h41{height:77.591250pt;}
.h9{height:81.856771pt;}
.h25{height:85.271250pt;}
.h24{height:85.895250pt;}
.h2d{height:85.911250pt;}
.h40{height:94.199250pt;}
.h8{height:104.193542pt;}
.h43{height:106.560000pt;}
.h44{height:106.721333pt;}
.h3{height:139.638021pt;}
.h31{height:377.760000pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.hf{height:1122.560000pt;}
.h10{height:1122.666667pt;}
.w4{width:11.866667pt;}
.w12{width:26.880000pt;}
.w16{width:46.560000pt;}
.w1e{width:52.160000pt;}
.w19{width:52.320000pt;}
.w27{width:55.680000pt;}
.w15{width:56.000000pt;}
.w9{width:56.800000pt;}
.w25{width:58.241333pt;}
.w17{width:59.200000pt;}
.w20{width:64.000000pt;}
.w5{width:64.640000pt;}
.w18{width:65.440000pt;}
.wb{width:66.240000pt;}
.wd{width:66.400000pt;}
.we{width:66.720000pt;}
.wa{width:75.520000pt;}
.w1a{width:78.080000pt;}
.w1c{width:82.560000pt;}
.w6{width:84.160000pt;}
.w8{width:84.960000pt;}
.w7{width:85.121333pt;}
.w1b{width:96.640000pt;}
.w1d{width:111.200000pt;}
.w24{width:121.121333pt;}
.w14{width:123.360000pt;}
.w13{width:141.120000pt;}
.wc{width:141.760000pt;}
.w10{width:156.641333pt;}
.w23{width:156.798667pt;}
.w1f{width:163.361333pt;}
.w22{width:213.120000pt;}
.wf{width:529.120000pt;}
.w21{width:550.880000pt;}
.w26{width:568.160000pt;}
.w11{width:579.040000pt;}
.w1{width:627.333333pt;}
.w0{width:627.401333pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x37{left:7.200000pt;}
.x26{left:11.200000pt;}
.x4d{left:12.320000pt;}
.x18{left:13.541733pt;}
.x2d{left:15.520000pt;}
.x28{left:17.760000pt;}
.x4f{left:20.800000pt;}
.x27{left:22.240000pt;}
.x42{left:24.000000pt;}
.x31{left:25.600000pt;}
.x33{left:27.520000pt;}
.x1f{left:28.960000pt;}
.x23{left:30.720000pt;}
.x21{left:32.160000pt;}
.x61{left:33.120000pt;}
.x2e{left:34.080000pt;}
.x2c{left:35.520000pt;}
.x32{left:37.440000pt;}
.x2b{left:38.880000pt;}
.x75{left:40.160000pt;}
.x30{left:41.760000pt;}
.x2a{left:45.600000pt;}
.x7{left:48.000000pt;}
.x3a{left:57.920000pt;}
.x65{left:61.440000pt;}
.x69{left:68.160000pt;}
.x9{left:78.423733pt;}
.xa{left:83.360533pt;}
.x76{left:84.960000pt;}
.x67{left:95.040000pt;}
.x8{left:99.462133pt;}
.x11{left:102.080000pt;}
.x52{left:104.640000pt;}
.x3f{left:107.360000pt;}
.x41{left:109.120000pt;}
.xb{left:113.385867pt;}
.x3e{left:114.576000pt;}
.x78{left:117.272320pt;}
.xd{left:121.764667pt;}
.x13{left:122.880000pt;}
.x15{left:126.080000pt;}
.x16{left:128.480000pt;}
.x19{left:130.400000pt;}
.x34{left:132.320000pt;}
.x47{left:136.640000pt;}
.x6a{left:138.560000pt;}
.x1b{left:143.516000pt;}
.x43{left:147.520000pt;}
.x4{left:150.088400pt;}
.x5f{left:152.320000pt;}
.x54{left:153.440000pt;}
.x40{left:159.512000pt;}
.x3b{left:164.480000pt;}
.x1c{left:165.600000pt;}
.x1a{left:167.840000pt;}
.x17{left:172.337280pt;}
.x5a{left:185.440000pt;}
.x35{left:198.720000pt;}
.x1e{left:200.800000pt;}
.x38{left:207.840000pt;}
.x53{left:209.600000pt;}
.x60{left:211.840000pt;}
.x59{left:215.200000pt;}
.x3{left:225.292533pt;}
.x6{left:232.485333pt;}
.x6c{left:242.240000pt;}
.x5b{left:251.680000pt;}
.x6b{left:253.440000pt;}
.x5{left:257.471600pt;}
.x44{left:260.640000pt;}
.x20{left:265.440000pt;}
.x49{left:271.520000pt;}
.x64{left:308.320000pt;}
.x12{left:326.873280pt;}
.x14{left:331.040000pt;}
.x55{left:334.240000pt;}
.x22{left:349.600000pt;}
.x3c{left:353.120000pt;}
.x68{left:377.760000pt;}
.x3d{left:379.200000pt;}
.x10{left:396.800000pt;}
.x4a{left:402.400000pt;}
.xc{left:409.738533pt;}
.x6e{left:410.720000pt;}
.x57{left:412.320000pt;}
.x6f{left:413.280000pt;}
.x6d{left:417.280000pt;}
.x72{left:420.000000pt;}
.x45{left:421.440000pt;}
.x56{left:424.800000pt;}
.x48{left:428.160000pt;}
.x74{left:430.560000pt;}
.x24{left:434.720000pt;}
.x70{left:436.644000pt;}
.x1d{left:447.852000pt;}
.x46{left:451.520000pt;}
.x4c{left:459.040000pt;}
.x62{left:460.640000pt;}
.x4b{left:471.360000pt;}
.x36{left:477.280000pt;}
.x4e{left:506.400000pt;}
.x5c{left:508.960000pt;}
.xe{left:516.850400pt;}
.x25{left:519.680000pt;}
.x39{left:521.440000pt;}
.x58{left:560.000000pt;}
.x50{left:566.240000pt;}
.x63{left:579.360000pt;}
.x2f{left:595.200000pt;}
.x1{left:604.205733pt;}
.x66{left:610.400000pt;}
.x2{left:613.717467pt;}
.x5d{left:620.160000pt;}
.xf{left:630.080000pt;}
.x51{left:632.320000pt;}
.x29{left:645.920000pt;}
.x77{left:653.120000pt;}
.x5e{left:654.580000pt;}
.x71{left:666.880000pt;}
.x73{left:669.280000pt;}
}




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