
    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_3adecbf4f4e199259a037d68.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_45df301ca0408065d193b43c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_45df301ca0408065d193b43c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941000;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_3adecbf4f4e199259a037d68.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_8bc453ef26982cdf790a0bb8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.930000;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_6b7a92be9dc2301dc5575013.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.042000;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_c8b11f00506f5580fe19ee22.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fa34dfcfd6cf12e9b3d81be0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.930000;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_f8560a43d8234061724bd773.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_27d8fc6a9b3e5be2e7dc2aaa.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_4fe27aca02acfbb3a1760997.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e1c814bec030732aa534ac98.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_77ea54b8764288a80ab9d7e0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a6560265ce511e7221a29959.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_80fec06fa5ca4302f7428a65.woff2')format("woff");}.fff{font-family:fff;line-height:1.281250;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:ff10;src:url('chunks/assets/font_3adecbf4f4e199259a037d68.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.942000;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:ff11;src:url('chunks/assets/font_45df301ca0408065d193b43c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.941000;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;}
.m2{transform:matrix(0.249419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249419,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.v6{vertical-align:-24.114000px;}
.v7{vertical-align:-8.997000px;}
.v1{vertical-align:-6.214886px;}
.v3{vertical-align:-1.792775px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.119400px;}
.v5{vertical-align:24.105962px;}
.v4{vertical-align:30.228041px;}
.lse5{letter-spacing:-7.145620px;}
.lsf2{letter-spacing:-7.132091px;}
.ls7f{letter-spacing:-6.005002px;}
.ls62{letter-spacing:-5.004335px;}
.ls101{letter-spacing:-3.497589px;}
.lse7{letter-spacing:-1.738926px;}
.lsf4{letter-spacing:-1.726654px;}
.ls80{letter-spacing:-1.325651px;}
.ls115{letter-spacing:-0.868320px;}
.ls5e{letter-spacing:-0.599286px;}
.ls10e{letter-spacing:-0.578880px;}
.lsea{letter-spacing:-0.569750px;}
.ls1a{letter-spacing:-0.537840px;}
.lsec{letter-spacing:-0.522271px;}
.lsf8{letter-spacing:-0.522150px;}
.lsfc{letter-spacing:-0.516216px;}
.ls82{letter-spacing:-0.514432px;}
.ls69{letter-spacing:-0.510525px;}
.lse9{letter-spacing:-0.510401px;}
.lsf0{letter-spacing:-0.504467px;}
.lsf7{letter-spacing:-0.504349px;}
.ls92{letter-spacing:-0.503832px;}
.lse6{letter-spacing:-0.498532px;}
.lsfd{letter-spacing:-0.498416px;}
.lsf3{letter-spacing:-0.492482px;}
.ls64{letter-spacing:-0.486780px;}
.lsef{letter-spacing:-0.486662px;}
.ls68{letter-spacing:-0.480844px;}
.lsff{letter-spacing:-0.480615px;}
.ls63{letter-spacing:-0.463035px;}
.ls67{letter-spacing:-0.457098px;}
.ls66{letter-spacing:-0.433353px;}
.ls65{letter-spacing:-0.409607px;}
.lseb{letter-spacing:-0.385769px;}
.lsfb{letter-spacing:-0.373812px;}
.ls5{letter-spacing:-0.331200px;}
.ls17{letter-spacing:-0.298800px;}
.lsb6{letter-spacing:-0.290533px;}
.ls8{letter-spacing:-0.288000px;}
.lsd0{letter-spacing:-0.287904px;}
.ls112{letter-spacing:-0.241200px;}
.ls114{letter-spacing:-0.192960px;}
.ls15{letter-spacing:-0.191520px;}
.lsc2{letter-spacing:-0.179940px;}
.lsa2{letter-spacing:-0.158347px;}
.ls97{letter-spacing:-0.156187px;}
.ls10f{letter-spacing:-0.144720px;}
.ls7{letter-spacing:-0.144000px;}
.ls35{letter-spacing:-0.143952px;}
.ls34{letter-spacing:-0.136754px;}
.ls36{letter-spacing:-0.129557px;}
.ls41{letter-spacing:-0.122359px;}
.ls1b{letter-spacing:-0.119520px;}
.ls39{letter-spacing:-0.115162px;}
.lsa{letter-spacing:-0.108000px;}
.lsaa{letter-spacing:-0.107964px;}
.ls4d{letter-spacing:-0.105696px;}
.ls9f{letter-spacing:-0.101055px;}
.ls3d{letter-spacing:-0.100766px;}
.lsa3{letter-spacing:-0.096844px;}
.ls3e{letter-spacing:-0.093569px;}
.ls3b{letter-spacing:-0.086371px;}
.ls59{letter-spacing:-0.085903px;}
.ls53{letter-spacing:-0.079174px;}
.ls73{letter-spacing:-0.078094px;}
.lsd9{letter-spacing:-0.076870px;}
.ls90{letter-spacing:-0.071976px;}
.ls6{letter-spacing:-0.066240px;}
.ls3a{letter-spacing:-0.064778px;}
.lsa0{letter-spacing:-0.063159px;}
.ls9e{letter-spacing:-0.062475px;}
.ls19{letter-spacing:-0.059760px;}
.ls81{letter-spacing:-0.059358px;}
.ls57{letter-spacing:-0.057653px;}
.ls37{letter-spacing:-0.057581px;}
.lsad{letter-spacing:-0.054738px;}
.lsa9{letter-spacing:-0.050527px;}
.ls38{letter-spacing:-0.050383px;}
.ls83{letter-spacing:-0.047740px;}
.ls40{letter-spacing:-0.043186px;}
.ls6b{letter-spacing:-0.041840px;}
.ls74{letter-spacing:-0.041790px;}
.ls33{letter-spacing:-0.038435px;}
.lsab{letter-spacing:-0.037896px;}
.ls3c{letter-spacing:-0.035988px;}
.lsb7{letter-spacing:-0.033685px;}
.ls91{letter-spacing:-0.029474px;}
.ls4f{letter-spacing:-0.028790px;}
.ls4c{letter-spacing:-0.026343px;}
.lsa4{letter-spacing:-0.025264px;}
.ls51{letter-spacing:-0.021593px;}
.lsa1{letter-spacing:-0.021053px;}
.ls60{letter-spacing:-0.019757px;}
.ls6a{letter-spacing:-0.017936px;}
.lsa5{letter-spacing:-0.016842px;}
.lsbf{letter-spacing:-0.015619px;}
.ls4e{letter-spacing:-0.014395px;}
.ls52{letter-spacing:-0.008421px;}
.ls50{letter-spacing:-0.007198px;}
.ls2{letter-spacing:0.000000px;}
.ls87{letter-spacing:0.002120px;}
.ls5f{letter-spacing:0.006586px;}
.ls45{letter-spacing:0.007198px;}
.ls102{letter-spacing:0.009609px;}
.lsa7{letter-spacing:0.012632px;}
.ls44{letter-spacing:0.014395px;}
.ls55{letter-spacing:0.016770px;}
.lsbb{letter-spacing:0.016842px;}
.ls47{letter-spacing:0.021053px;}
.ls43{letter-spacing:0.021593px;}
.ls2d{letter-spacing:0.022744px;}
.ls8b{letter-spacing:0.025156px;}
.ls9a{letter-spacing:0.025271px;}
.lsb9{letter-spacing:0.025871px;}
.ls6d{letter-spacing:0.026343px;}
.ls14{letter-spacing:0.027360px;}
.ls4b{letter-spacing:0.028790px;}
.lsc1{letter-spacing:0.029474px;}
.ls9b{letter-spacing:0.031271px;}
.lsdf{letter-spacing:0.032929px;}
.lsb8{letter-spacing:0.033685px;}
.ls48{letter-spacing:0.035988px;}
.ls24{letter-spacing:0.039803px;}
.ls32{letter-spacing:0.043186px;}
.ls29{letter-spacing:0.045489px;}
.ls5a{letter-spacing:0.046100px;}
.ls49{letter-spacing:0.046317px;}
.ls10d{letter-spacing:0.048240px;}
.ls58{letter-spacing:0.050311px;}
.ls9c{letter-spacing:0.050383px;}
.ls23{letter-spacing:0.051175px;}
.ls27{letter-spacing:0.056861px;}
.ls4a{letter-spacing:0.057581px;}
.lsde{letter-spacing:0.058696px;}
.ls18{letter-spacing:0.059760px;}
.ls26{letter-spacing:0.062547px;}
.ls8c{letter-spacing:0.064778px;}
.lsb0{letter-spacing:0.065360px;}
.ls79{letter-spacing:0.065643px;}
.ls98{letter-spacing:0.065858px;}
.lsca{letter-spacing:0.065960px;}
.ls89{letter-spacing:0.066816px;}
.lsda{letter-spacing:0.067081px;}
.ls2e{letter-spacing:0.067296px;}
.lscf{letter-spacing:0.067370px;}
.lsa6{letter-spacing:0.068856px;}
.ls31{letter-spacing:0.070536px;}
.lscb{letter-spacing:0.070760px;}
.lsae{letter-spacing:0.071360px;}
.ls94{letter-spacing:0.071581px;}
.ls2c{letter-spacing:0.071736px;}
.ls93{letter-spacing:0.071976px;}
.ls8e{letter-spacing:0.072216px;}
.lsb4{letter-spacing:0.072816px;}
.lsc4{letter-spacing:0.073416px;}
.ls96{letter-spacing:0.075467px;}
.ls99{letter-spacing:0.075576px;}
.ls4{letter-spacing:0.084240px;}
.ls2f{letter-spacing:0.085291px;}
.lsdc{letter-spacing:0.086371px;}
.ls30{letter-spacing:0.090977px;}
.lsc9{letter-spacing:0.093569px;}
.lse{letter-spacing:0.096480px;}
.lsc8{letter-spacing:0.100766px;}
.lsb5{letter-spacing:0.109476px;}
.lsbe{letter-spacing:0.115643px;}
.lsbd{letter-spacing:0.116243px;}
.lsc3{letter-spacing:0.117897px;}
.ls77{letter-spacing:0.119351px;}
.ls1d{letter-spacing:0.119520px;}
.ls2b{letter-spacing:0.125094px;}
.ls7a{letter-spacing:0.137253px;}
.ls22{letter-spacing:0.143832px;}
.ls46{letter-spacing:0.143952px;}
.lsd{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.144312px;}
.ls111{letter-spacing:0.144720px;}
.lsc6{letter-spacing:0.145632px;}
.ls103{letter-spacing:0.150190px;}
.ls7b{letter-spacing:0.161124px;}
.ls8f{letter-spacing:0.165545px;}
.ls78{letter-spacing:0.167091px;}
.ls10b{letter-spacing:0.168480px;}
.ls71{letter-spacing:0.179098px;}
.ls105{letter-spacing:0.179280px;}
.ls72{letter-spacing:0.185068px;}
.lsd2{letter-spacing:0.185267px;}
.ls86{letter-spacing:0.194335px;}
.ls28{letter-spacing:0.215328px;}
.lsac{letter-spacing:0.215928px;}
.ls2a{letter-spacing:0.216528px;}
.ls70{letter-spacing:0.220888px;}
.ls88{letter-spacing:0.221149px;}
.ls6e{letter-spacing:0.227373px;}
.ls10c{letter-spacing:0.239040px;}
.ls107{letter-spacing:0.241200px;}
.lsba{letter-spacing:0.251916px;}
.lsb1{letter-spacing:0.252637px;}
.lsd3{letter-spacing:0.255146px;}
.ls113{letter-spacing:0.270000px;}
.lscc{letter-spacing:0.273502px;}
.ls7c{letter-spacing:0.280474px;}
.ls104{letter-spacing:0.286848px;}
.ls9{letter-spacing:0.288000px;}
.ls106{letter-spacing:0.289440px;}
.lsb{letter-spacing:0.290880px;}
.lsc{letter-spacing:0.298800px;}
.ls1e{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.336960px;}
.ls110{letter-spacing:0.337680px;}
.lsb2{letter-spacing:0.347519px;}
.ls6f{letter-spacing:0.353295px;}
.lsc5{letter-spacing:0.353519px;}
.ls1c{letter-spacing:0.358560px;}
.ls109{letter-spacing:0.366624px;}
.ls16{letter-spacing:0.383040px;}
.ls9d{letter-spacing:0.385271px;}
.lsc0{letter-spacing:0.387377px;}
.lsbc{letter-spacing:0.428086px;}
.lsc7{letter-spacing:0.431360px;}
.ls8d{letter-spacing:0.433486px;}
.lsb3{letter-spacing:0.475643px;}
.ls85{letter-spacing:0.495306px;}
.ls3f{letter-spacing:0.503832px;}
.ls76{letter-spacing:0.620874px;}
.ls75{letter-spacing:0.680573px;}
.ls6c{letter-spacing:0.681394px;}
.ls7d{letter-spacing:1.459206px;}
.ls5d{letter-spacing:1.578316px;}
.ls5c{letter-spacing:1.607984px;}
.lse3{letter-spacing:1.608358px;}
.lsfa{letter-spacing:1.619851px;}
.lse4{letter-spacing:1.632098px;}
.lsf1{letter-spacing:1.655452px;}
.ls61{letter-spacing:1.709666px;}
.lsee{letter-spacing:1.721121px;}
.lsf6{letter-spacing:1.726654px;}
.lsfe{letter-spacing:1.732588px;}
.lsce{letter-spacing:1.869515px;}
.ls13{letter-spacing:2.450880px;}
.lsf9{letter-spacing:3.678782px;}
.lsed{letter-spacing:4.831009px;}
.lsf5{letter-spacing:4.841752px;}
.ls7e{letter-spacing:5.307552px;}
.lsdd{letter-spacing:8.133288px;}
.ls10{letter-spacing:8.904240px;}
.ls0{letter-spacing:8.929440px;}
.lsf{letter-spacing:9.650880px;}
.lsaf{letter-spacing:11.372208px;}
.ls11{letter-spacing:22.589280px;}
.ls95{letter-spacing:23.998163px;}
.ls12{letter-spacing:26.234640px;}
.ls1{letter-spacing:30.569760px;}
.lscd{letter-spacing:31.165608px;}
.ls56{letter-spacing:34.270231px;}
.ls42{letter-spacing:49.225677px;}
.ls54{letter-spacing:49.581202px;}
.ls100{letter-spacing:64.778400px;}
.lsd4{letter-spacing:66.577800px;}
.ls20{letter-spacing:67.888537px;}
.ls5b{letter-spacing:74.855040px;}
.ls21{letter-spacing:76.166137px;}
.lsd5{letter-spacing:80.973000px;}
.ls25{letter-spacing:88.400737px;}
.ls108{letter-spacing:110.035440px;}
.ls8a{letter-spacing:112.858368px;}
.ls10a{letter-spacing:117.946800px;}
.lsd1{letter-spacing:136.250568px;}
.lse8{letter-spacing:146.372439px;}
.lsa8{letter-spacing:197.070288px;}
.lse2{letter-spacing:221.128439px;}
.lse1{letter-spacing:221.134374px;}
.lsd7{letter-spacing:229.828486px;}
.lse0{letter-spacing:253.580472px;}
.ls84{letter-spacing:321.232678px;}
.lsd6{letter-spacing:848.453688px;}
.lsdb{letter-spacing:965.052888px;}
.lsd8{letter-spacing:1344.007848px;}
.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;}
}
.wsed{word-spacing:-321.292354px;}
.ws211{word-spacing:-162.871461px;}
.ws212{word-spacing:-59.349000px;}
.ws2{word-spacing:-29.376000px;}
.ws3{word-spacing:-21.816000px;}
.wse{word-spacing:-19.726560px;}
.ws4c{word-spacing:-19.409695px;}
.ws25c{word-spacing:-17.184960px;}
.ws0{word-spacing:-17.100720px;}
.ws94{word-spacing:-16.954834px;}
.ws30{word-spacing:-15.762744px;}
.ws114{word-spacing:-15.618720px;}
.ws16a{word-spacing:-15.402864px;}
.ws16b{word-spacing:-15.316493px;}
.ws31{word-spacing:-15.302098px;}
.ws29{word-spacing:-15.258912px;}
.ws2e{word-spacing:-15.122158px;}
.ws41{word-spacing:-14.762278px;}
.ws11{word-spacing:-14.688000px;}
.wsfd{word-spacing:-14.603930px;}
.ws258{word-spacing:-14.582338px;}
.wsd{word-spacing:-14.544000px;}
.ws1e8{word-spacing:-14.539152px;}
.ws257{word-spacing:-14.517559px;}
.wsfb{word-spacing:-14.510362px;}
.ws256{word-spacing:-14.431188px;}
.wsf{word-spacing:-14.256000px;}
.ws47{word-spacing:-14.042518px;}
.ws1{word-spacing:-13.976640px;}
.ws3b{word-spacing:-13.322758px;}
.ws12{word-spacing:-13.027680px;}
.ws2b{word-spacing:-12.970075px;}
.wsc{word-spacing:-12.967920px;}
.ws1fb{word-spacing:-12.739752px;}
.ws10{word-spacing:-12.728880px;}
.ws25d{word-spacing:-12.669120px;}
.ws25e{word-spacing:-12.609360px;}
.ws14{word-spacing:-12.430080px;}
.wse8{word-spacing:-12.425508px;}
.ws25f{word-spacing:-12.370320px;}
.ws42{word-spacing:-12.279106px;}
.ws3c{word-spacing:-12.264710px;}
.ws4a{word-spacing:-12.257513px;}
.ws49{word-spacing:-12.250315px;}
.ws43{word-spacing:-12.243118px;}
.ws13{word-spacing:-12.191040px;}
.ws2d{word-spacing:-12.179583px;}
.ws2f{word-spacing:-12.139781px;}
.ws2c{word-spacing:-12.117036px;}
.ws2a{word-spacing:-12.094292px;}
.ws260{word-spacing:-12.011760px;}
.ws1a9{word-spacing:-11.228256px;}
.ws3d{word-spacing:-11.163478px;}
.ws263{word-spacing:-10.564560px;}
.ws262{word-spacing:-10.468080px;}
.ws259{word-spacing:-10.450915px;}
.ws266{word-spacing:-10.371600px;}
.ws265{word-spacing:-10.033920px;}
.ws264{word-spacing:-9.985680px;}
.ws261{word-spacing:-9.648000px;}
.ws22f{word-spacing:-9.363095px;}
.ws267{word-spacing:-9.358560px;}
.ws214{word-spacing:-9.353402px;}
.ws1d6{word-spacing:-9.111782px;}
.ws1a6{word-spacing:-8.955989px;}
.wsd3{word-spacing:-8.926514px;}
.ws4d{word-spacing:-8.918093px;}
.wsfc{word-spacing:-8.897040px;}
.ws12c{word-spacing:-8.825460px;}
.ws25a{word-spacing:-7.917360px;}
.ws34{word-spacing:-7.571875px;}
.ws36{word-spacing:-7.557480px;}
.ws3f{word-spacing:-6.535421px;}
.ws45{word-spacing:-6.528223px;}
.ws25b{word-spacing:-5.772475px;}
.wsfa{word-spacing:-5.728001px;}
.ws229{word-spacing:-5.086209px;}
.ws33{word-spacing:-5.038320px;}
.ws48{word-spacing:-4.685638px;}
.ws235{word-spacing:-3.927990px;}
.ws18a{word-spacing:-3.757147px;}
.ws123{word-spacing:-3.735554px;}
.ws158{word-spacing:-3.685171px;}
.wsa2{word-spacing:-3.677974px;}
.ws24a{word-spacing:-3.670776px;}
.wsf8{word-spacing:-3.641986px;}
.ws223{word-spacing:-3.613195px;}
.ws4b{word-spacing:-3.605998px;}
.ws224{word-spacing:-3.555614px;}
.ws1e4{word-spacing:-3.426058px;}
.ws6b{word-spacing:-3.411662px;}
.ws8f{word-spacing:-3.382872px;}
.ws18f{word-spacing:-3.375674px;}
.ws17b{word-spacing:-3.325291px;}
.ws1dd{word-spacing:-3.318094px;}
.ws4f{word-spacing:-3.289303px;}
.wse4{word-spacing:-3.282106px;}
.ws6a{word-spacing:-3.267710px;}
.ws7f{word-spacing:-3.238920px;}
.ws8d{word-spacing:-3.008597px;}
.ws24e{word-spacing:-3.001399px;}
.ws1aa{word-spacing:-2.972609px;}
.ws1b3{word-spacing:-2.965411px;}
.ws93{word-spacing:-2.951016px;}
.ws8a{word-spacing:-2.850250px;}
.ws1a3{word-spacing:-2.670310px;}
.ws70{word-spacing:-2.663112px;}
.ws1d9{word-spacing:-2.648717px;}
.ws19e{word-spacing:-2.641519px;}
.ws245{word-spacing:-2.627124px;}
.ws205{word-spacing:-2.612729px;}
.ws1f7{word-spacing:-2.605531px;}
.ws11a{word-spacing:-2.576741px;}
.ws1a0{word-spacing:-2.569543px;}
.ws1f9{word-spacing:-2.540753px;}
.ws51{word-spacing:-2.526358px;}
.ws19f{word-spacing:-2.519160px;}
.ws1ed{word-spacing:-2.504765px;}
.ws1a2{word-spacing:-2.483172px;}
.wsf5{word-spacing:-2.303232px;}
.ws58{word-spacing:-2.296034px;}
.wscd{word-spacing:-2.288837px;}
.wse3{word-spacing:-2.274442px;}
.ws17c{word-spacing:-2.260046px;}
.ws7d{word-spacing:-2.245651px;}
.ws184{word-spacing:-2.216861px;}
.ws96{word-spacing:-2.180873px;}
.ws32{word-spacing:-2.166478px;}
.ws26{word-spacing:-2.151360px;}
.ws1fe{word-spacing:-1.986538px;}
.ws234{word-spacing:-1.975862px;}
.ws1f3{word-spacing:-1.936154px;}
.wsc2{word-spacing:-1.921759px;}
.ws67{word-spacing:-1.907364px;}
.ws233{word-spacing:-1.904660px;}
.ws210{word-spacing:-1.892969px;}
.ws226{word-spacing:-1.887298px;}
.ws10c{word-spacing:-1.864178px;}
.ws1ae{word-spacing:-1.856981px;}
.ws1e2{word-spacing:-1.835388px;}
.wsce{word-spacing:-1.820993px;}
.ws13c{word-spacing:-1.597867px;}
.ws182{word-spacing:-1.576274px;}
.wsa4{word-spacing:-1.569077px;}
.ws24b{word-spacing:-1.561879px;}
.ws1e6{word-spacing:-1.540286px;}
.wsa5{word-spacing:-1.533089px;}
.ws17e{word-spacing:-1.525891px;}
.ws1e7{word-spacing:-1.518694px;}
.ws154{word-spacing:-1.482706px;}
.wse6{word-spacing:-1.468310px;}
.ws3a{word-spacing:-1.439520px;}
.ws23{word-spacing:-1.434240px;}
.ws13e{word-spacing:-1.432322px;}
.ws1a1{word-spacing:-1.385294px;}
.ws1ab{word-spacing:-1.266778px;}
.ws1ac{word-spacing:-1.245185px;}
.ws183{word-spacing:-1.230790px;}
.ws108{word-spacing:-1.223592px;}
.ws1ad{word-spacing:-1.209197px;}
.wsb4{word-spacing:-1.201999px;}
.ws167{word-spacing:-1.180406px;}
.wsf7{word-spacing:-1.173209px;}
.wsd0{word-spacing:-1.166011px;}
.wsc4{word-spacing:-1.151616px;}
.ws122{word-spacing:-1.144418px;}
.ws107{word-spacing:-1.130023px;}
.ws272{word-spacing:-0.972000px;}
.ws26e{word-spacing:-0.916560px;}
.ws230{word-spacing:-0.870910px;}
.ws1ec{word-spacing:-0.856514px;}
.ws78{word-spacing:-0.849317px;}
.ws127{word-spacing:-0.806131px;}
.ws89{word-spacing:-0.784538px;}
.ws53{word-spacing:-0.770143px;}
.ws1ce{word-spacing:-0.748550px;}
.ws25{word-spacing:-0.717120px;}
.ws129{word-spacing:-0.698167px;}
.ws166{word-spacing:-0.593697px;}
.wsf2{word-spacing:-0.554981px;}
.ws13d{word-spacing:-0.551591px;}
.ws1d7{word-spacing:-0.511030px;}
.ws14e{word-spacing:-0.503832px;}
.ws18c{word-spacing:-0.489437px;}
.ws26f{word-spacing:-0.482400px;}
.wsa0{word-spacing:-0.482239px;}
.ws8e{word-spacing:-0.460646px;}
.ws188{word-spacing:-0.453449px;}
.ws7e{word-spacing:-0.446251px;}
.ws126{word-spacing:-0.417461px;}
.ws14c{word-spacing:-0.410263px;}
.ws9f{word-spacing:-0.388670px;}
.ws1c9{word-spacing:-0.359880px;}
.wsf3{word-spacing:-0.340150px;}
.ws20f{word-spacing:-0.338287px;}
.ws7{word-spacing:-0.331200px;}
.wsfe{word-spacing:-0.309497px;}
.ws24{word-spacing:-0.298800px;}
.ws270{word-spacing:-0.289440px;}
.wsa{word-spacing:-0.288000px;}
.ws178{word-spacing:-0.282112px;}
.wsd6{word-spacing:-0.280587px;}
.ws14d{word-spacing:-0.273690px;}
.ws28{word-spacing:-0.270000px;}
.ws46{word-spacing:-0.267246px;}
.ws141{word-spacing:-0.266311px;}
.wsd8{word-spacing:-0.244768px;}
.ws39{word-spacing:-0.238815px;}
.ws133{word-spacing:-0.234281px;}
.ws77{word-spacing:-0.230323px;}
.ws35{word-spacing:-0.227443px;}
.ws271{word-spacing:-0.216000px;}
.ws1bf{word-spacing:-0.215928px;}
.ws192{word-spacing:-0.208730px;}
.ws65{word-spacing:-0.201533px;}
.wsf0{word-spacing:-0.196929px;}
.ws1d5{word-spacing:-0.194335px;}
.ws26d{word-spacing:-0.192960px;}
.ws15a{word-spacing:-0.187138px;}
.ws62{word-spacing:-0.179940px;}
.wsee{word-spacing:-0.179026px;}
.ws10e{word-spacing:-0.172742px;}
.ws10f{word-spacing:-0.165545px;}
.ws38{word-spacing:-0.158347px;}
.ws57{word-spacing:-0.151150px;}
.ws97{word-spacing:-0.143952px;}
.ws90{word-spacing:-0.136754px;}
.ws82{word-spacing:-0.129557px;}
.ws9a{word-spacing:-0.122359px;}
.ws15c{word-spacing:-0.115162px;}
.wsb{word-spacing:-0.108000px;}
.ws40{word-spacing:-0.107964px;}
.wsb5{word-spacing:-0.100766px;}
.ws1d8{word-spacing:-0.100622px;}
.ws69{word-spacing:-0.093569px;}
.ws1e9{word-spacing:-0.092237px;}
.ws37{word-spacing:-0.086371px;}
.ws6{word-spacing:-0.084240px;}
.ws209{word-spacing:-0.083852px;}
.ws44{word-spacing:-0.079174px;}
.ws9c{word-spacing:-0.075467px;}
.ws5d{word-spacing:-0.071976px;}
.ws87{word-spacing:-0.064778px;}
.ws26a{word-spacing:-0.059760px;}
.ws128{word-spacing:-0.057581px;}
.wse0{word-spacing:-0.050383px;}
.ws132{word-spacing:-0.043186px;}
.wsbf{word-spacing:-0.041850px;}
.ws8c{word-spacing:-0.035988px;}
.wsae{word-spacing:-0.032929px;}
.ws1b4{word-spacing:-0.028790px;}
.ws63{word-spacing:-0.021593px;}
.ws225{word-spacing:-0.019757px;}
.wsca{word-spacing:-0.017931px;}
.wsd4{word-spacing:-0.017910px;}
.wsb2{word-spacing:-0.014395px;}
.wsd9{word-spacing:-0.013172px;}
.wsec{word-spacing:-0.011935px;}
.wsdc{word-spacing:-0.007809px;}
.ws80{word-spacing:-0.007198px;}
.ws4{word-spacing:0.000000px;}
.wsc8{word-spacing:0.006586px;}
.wsc7{word-spacing:0.007198px;}
.wsf4{word-spacing:0.013172px;}
.ws110{word-spacing:0.014395px;}
.ws64{word-spacing:0.025264px;}
.ws5f{word-spacing:0.028790px;}
.wsc1{word-spacing:0.032929px;}
.ws138{word-spacing:0.035988px;}
.ws191{word-spacing:0.037896px;}
.ws153{word-spacing:0.043186px;}
.ws274{word-spacing:0.048240px;}
.wsa3{word-spacing:0.050383px;}
.ws61{word-spacing:0.050527px;}
.ws71{word-spacing:0.057581px;}
.ws164{word-spacing:0.058949px;}
.ws1b{word-spacing:0.059760px;}
.ws15b{word-spacing:0.064778px;}
.ws16e{word-spacing:0.075791px;}
.ws187{word-spacing:0.078094px;}
.ws145{word-spacing:0.080002px;}
.ws170{word-spacing:0.086371px;}
.ws115{word-spacing:0.092201px;}
.ws13b{word-spacing:0.092634px;}
.ws273{word-spacing:0.096480px;}
.ws146{word-spacing:0.096844px;}
.ws4e{word-spacing:0.098787px;}
.ws137{word-spacing:0.101055px;}
.ws16f{word-spacing:0.105266px;}
.ws151{word-spacing:0.109476px;}
.ws269{word-spacing:0.119520px;}
.ws14f{word-spacing:0.122108px;}
.ws1db{word-spacing:0.122359px;}
.ws106{word-spacing:0.125778px;}
.ws144{word-spacing:0.129557px;}
.ws139{word-spacing:0.134740px;}
.ws9{word-spacing:0.144000px;}
.ws117{word-spacing:0.158347px;}
.ws275{word-spacing:0.162000px;}
.ws157{word-spacing:0.179940px;}
.wsa6{word-spacing:0.201533px;}
.ws12f{word-spacing:0.215928px;}
.ws1e5{word-spacing:0.230323px;}
.ws169{word-spacing:0.237521px;}
.ws26c{word-spacing:0.239040px;}
.ws276{word-spacing:0.241200px;}
.ws23a{word-spacing:0.244718px;}
.ws5{word-spacing:0.252720px;}
.ws79{word-spacing:0.266311px;}
.ws15{word-spacing:0.287280px;}
.ws5c{word-spacing:0.287904px;}
.ws18{word-spacing:0.298800px;}
.wsf6{word-spacing:0.316694px;}
.ws27{word-spacing:0.358560px;}
.ws1bb{word-spacing:0.359880px;}
.ws26b{word-spacing:0.478080px;}
.ws1f{word-spacing:0.537840px;}
.wse5{word-spacing:0.561413px;}
.ws15e{word-spacing:0.583006px;}
.ws24d{word-spacing:0.590203px;}
.ws19c{word-spacing:0.597401px;}
.ws21{word-spacing:0.597600px;}
.ws91{word-spacing:0.604598px;}
.ws252{word-spacing:0.611796px;}
.ws3e{word-spacing:0.640586px;}
.ws8{word-spacing:0.662400px;}
.ws19b{word-spacing:0.683772px;}
.ws186{word-spacing:0.712562px;}
.ws19d{word-spacing:0.719760px;}
.ws1b2{word-spacing:0.863712px;}
.ws1b0{word-spacing:0.921293px;}
.wsa1{word-spacing:0.928490px;}
.ws142{word-spacing:0.935688px;}
.ws1b1{word-spacing:0.957281px;}
.ws73{word-spacing:0.971676px;}
.ws1e0{word-spacing:1.036454px;}
.ws16{word-spacing:1.053360px;}
.ws196{word-spacing:1.132657px;}
.ws1c1{word-spacing:1.170552px;}
.ws1d4{word-spacing:1.266778px;}
.ws55{word-spacing:1.295568px;}
.wsdf{word-spacing:1.317161px;}
.ws1f2{word-spacing:1.331556px;}
.ws1b8{word-spacing:1.345951px;}
.ws9d{word-spacing:1.360346px;}
.ws194{word-spacing:1.403532px;}
.wsaf{word-spacing:1.468310px;}
.ws240{word-spacing:1.477446px;}
.ws22a{word-spacing:1.483725px;}
.ws20a{word-spacing:1.518694px;}
.ws1c0{word-spacing:1.554682px;}
.ws1c2{word-spacing:1.576274px;}
.wsd2{word-spacing:1.641053px;}
.ws1df{word-spacing:1.669843px;}
.ws6d{word-spacing:1.713029px;}
.ws250{word-spacing:1.720226px;}
.ws195{word-spacing:1.727424px;}
.ws9b{word-spacing:1.734622px;}
.ws6c{word-spacing:1.792202px;}
.ws193{word-spacing:1.878574px;}
.wsde{word-spacing:1.986538px;}
.wsdd{word-spacing:2.015328px;}
.ws23c{word-spacing:2.022526px;}
.ws95{word-spacing:2.036921px;}
.ws19a{word-spacing:2.044118px;}
.ws177{word-spacing:2.072909px;}
.ws1c4{word-spacing:2.080106px;}
.ws121{word-spacing:2.087304px;}
.ws199{word-spacing:2.130490px;}
.ws22{word-spacing:2.151360px;}
.ws1e1{word-spacing:2.173675px;}
.ws23b{word-spacing:2.209663px;}
.ws222{word-spacing:2.360813px;}
.ws204{word-spacing:2.368010px;}
.ws207{word-spacing:2.375208px;}
.ws92{word-spacing:2.382406px;}
.ws203{word-spacing:2.389603px;}
.ws174{word-spacing:2.396801px;}
.ws149{word-spacing:2.403998px;}
.wsb3{word-spacing:2.425591px;}
.ws7b{word-spacing:2.432789px;}
.wsc6{word-spacing:2.439986px;}
.ws12d{word-spacing:2.447184px;}
.ws14b{word-spacing:2.454382px;}
.ws125{word-spacing:2.461579px;}
.ws14a{word-spacing:2.483172px;}
.ws1cc{word-spacing:2.706298px;}
.ws86{word-spacing:2.720693px;}
.ws18b{word-spacing:2.727890px;}
.wsc3{word-spacing:2.735088px;}
.ws160{word-spacing:2.756681px;}
.ws109{word-spacing:2.763878px;}
.ws1bd{word-spacing:2.778274px;}
.ws9e{word-spacing:2.792669px;}
.ws50{word-spacing:2.807064px;}
.ws1bc{word-spacing:2.821459px;}
.ws1cb{word-spacing:2.835854px;}
.ws1c7{word-spacing:3.037387px;}
.ws1ea{word-spacing:3.051782px;}
.ws241{word-spacing:3.080573px;}
.ws155{word-spacing:3.087770px;}
.ws163{word-spacing:3.102166px;}
.ws17a{word-spacing:3.109363px;}
.ws76{word-spacing:3.123758px;}
.ws244{word-spacing:3.138154px;}
.ws1c6{word-spacing:3.159746px;}
.ws66{word-spacing:3.174142px;}
.ws18d{word-spacing:3.217327px;}
.ws140{word-spacing:3.339022px;}
.ws84{word-spacing:3.483638px;}
.ws1eb{word-spacing:3.490836px;}
.ws83{word-spacing:3.505231px;}
.ws59{word-spacing:3.512429px;}
.ws11d{word-spacing:3.541219px;}
.ws11c{word-spacing:3.793135px;}
.ws1f0{word-spacing:3.807530px;}
.ws232{word-spacing:3.814728px;}
.ws118{word-spacing:3.821926px;}
.ws54{word-spacing:3.829123px;}
.ws1f1{word-spacing:3.843518px;}
.ws52{word-spacing:3.857914px;}
.ws68{word-spacing:3.872309px;}
.ws12b{word-spacing:3.879506px;}
.wsf9{word-spacing:3.893902px;}
.ws7a{word-spacing:3.929890px;}
.ws1fc{word-spacing:4.167410px;}
.ws75{word-spacing:4.196201px;}
.wsc5{word-spacing:4.203398px;}
.ws23e{word-spacing:4.210596px;}
.ws1f4{word-spacing:4.246584px;}
.ws168{word-spacing:4.253782px;}
.ws1b5{word-spacing:4.260979px;}
.ws13a{word-spacing:4.289770px;}
.ws113{word-spacing:4.527290px;}
.ws8b{word-spacing:4.548883px;}
.ws1d2{word-spacing:4.570476px;}
.ws7c{word-spacing:4.577674px;}
.ws254{word-spacing:4.599266px;}
.ws24c{word-spacing:4.707230px;}
.wse7{word-spacing:4.773334px;}
.ws100{word-spacing:4.786404px;}
.ws246{word-spacing:4.851182px;}
.ws102{word-spacing:4.858380px;}
.ws185{word-spacing:4.872775px;}
.ws85{word-spacing:4.915961px;}
.ws176{word-spacing:4.923158px;}
.ws156{word-spacing:4.951949px;}
.ws98{word-spacing:4.959146px;}
.ws101{word-spacing:4.973542px;}
.wsff{word-spacing:5.146284px;}
.ws18e{word-spacing:5.297434px;}
.ws5a{word-spacing:5.333422px;}
.ws12e{word-spacing:5.376607px;}
.ws1fd{word-spacing:5.599733px;}
.ws23d{word-spacing:5.621326px;}
.ws13f{word-spacing:5.642918px;}
.ws255{word-spacing:5.657314px;}
.ws173{word-spacing:5.664511px;}
.ws200{word-spacing:5.714894px;}
.ws243{word-spacing:5.758080px;}
.ws17f{word-spacing:5.959613px;}
.ws161{word-spacing:5.966810px;}
.ws251{word-spacing:5.995601px;}
.ws5b{word-spacing:6.110762px;}
.ws180{word-spacing:6.125158px;}
.ws1ff{word-spacing:6.355481px;}
.ws143{word-spacing:6.362678px;}
.wsdb{word-spacing:6.405864px;}
.ws124{word-spacing:6.420259px;}
.ws134{word-spacing:6.463445px;}
.ws20b{word-spacing:6.679373px;}
.ws6f{word-spacing:6.686570px;}
.ws12a{word-spacing:6.700966px;}
.ws11b{word-spacing:6.722558px;}
.ws23f{word-spacing:6.882883px;}
.ws1b6{word-spacing:7.046450px;}
.ws1b9{word-spacing:7.060846px;}
.ws162{word-spacing:7.075241px;}
.ws1dc{word-spacing:7.096834px;}
.ws130{word-spacing:7.111229px;}
.ws11e{word-spacing:7.132822px;}
.ws1d3{word-spacing:7.406330px;}
.ws1a7{word-spacing:7.420726px;}
.ws197{word-spacing:7.435121px;}
.ws1c3{word-spacing:7.449516px;}
.ws72{word-spacing:7.463911px;}
.ws74{word-spacing:7.528690px;}
.ws198{word-spacing:7.543085px;}
.ws16d{word-spacing:7.773408px;}
.wscf{word-spacing:7.787803px;}
.ws16c{word-spacing:7.802198px;}
.wsd1{word-spacing:7.838186px;}
.ws10d{word-spacing:7.852582px;}
.ws20c{word-spacing:8.140486px;}
.ws135{word-spacing:8.212462px;}
.ws181{word-spacing:8.485970px;}
.ws20e{word-spacing:8.493168px;}
.ws1cd{word-spacing:8.500366px;}
.ws5e{word-spacing:8.507563px;}
.ws208{word-spacing:8.550749px;}
.ws88{word-spacing:8.572342px;}
.ws24f{word-spacing:8.579539px;}
.ws1a{word-spacing:8.665200px;}
.ws15f{word-spacing:8.745084px;}
.ws20d{word-spacing:8.860246px;}
.ws242{word-spacing:8.881838px;}
.ws1b7{word-spacing:9.025790px;}
.wsda{word-spacing:9.263311px;}
.ws17{word-spacing:9.382320px;}
.wsb0{word-spacing:9.544018px;}
.ws99{word-spacing:9.572808px;}
.ws116{word-spacing:9.615994px;}
.ws231{word-spacing:9.651982px;}
.ws249{word-spacing:9.918293px;}
.ws1f6{word-spacing:9.975874px;}
.ws1da{word-spacing:10.026257px;}
.ws248{word-spacing:10.055047px;}
.ws56{word-spacing:10.062245px;}
.ws112{word-spacing:10.270975px;}
.ws206{word-spacing:10.306963px;}
.wse2{word-spacing:10.350149px;}
.ws10a{word-spacing:10.393334px;}
.wse1{word-spacing:10.522891px;}
.ws1de{word-spacing:10.652448px;}
.ws172{word-spacing:11.026723px;}
.ws120{word-spacing:11.113094px;}
.ws6e{word-spacing:11.365010px;}
.ws136{word-spacing:11.825657px;}
.ws119{word-spacing:12.149549px;}
.ws253{word-spacing:13.200398px;}
.ws11f{word-spacing:13.243584px;}
.ws1cf{word-spacing:13.560278px;}
.ws268{word-spacing:13.685040px;}
.ws247{word-spacing:13.884170px;}
.ws152{word-spacing:14.193667px;}
.ws131{word-spacing:14.603930px;}
.ws10b{word-spacing:14.647116px;}
.ws1ba{word-spacing:14.978206px;}
.ws189{word-spacing:15.330888px;}
.ws175{word-spacing:15.345283px;}
.ws1af{word-spacing:16.043450px;}
.ws1d0{word-spacing:16.050648px;}
.ws17d{word-spacing:16.122624px;}
.ws81{word-spacing:16.396133px;}
.wsb1{word-spacing:17.540551px;}
.ws1e3{word-spacing:18.577006px;}
.ws1d{word-spacing:18.704880px;}
.ws171{word-spacing:20.690987px;}
.ws1f5{word-spacing:20.843182px;}
.ws1e{word-spacing:22.290480px;}
.ws148{word-spacing:24.385469px;}
.ws20{word-spacing:25.935840px;}
.wsc9{word-spacing:30.506851px;}
.ws1c{word-spacing:31.672800px;}
.wsa7{word-spacing:34.034671px;}
.ws1fa{word-spacing:39.327191px;}
.ws19{word-spacing:45.357840px;}
.ws228{word-spacing:50.143970px;}
.wseb{word-spacing:64.951966px;}
.ws150{word-spacing:68.341212px;}
.ws165{word-spacing:78.691361px;}
.ws227{word-spacing:82.590068px;}
.ws15d{word-spacing:90.927281px;}
.ws213{word-spacing:91.575507px;}
.wsea{word-spacing:91.929959px;}
.ws1a4{word-spacing:94.857170px;}
.ws159{word-spacing:108.251904px;}
.ws22b{word-spacing:109.396308px;}
.wsbe{word-spacing:113.360349px;}
.ws190{word-spacing:115.564677px;}
.wse9{word-spacing:118.007696px;}
.ws217{word-spacing:126.140365px;}
.ws219{word-spacing:126.146299px;}
.wsb6{word-spacing:127.856891px;}
.ws147{word-spacing:130.456500px;}
.wsad{word-spacing:137.420323px;}
.ws21e{word-spacing:141.553300px;}
.ws237{word-spacing:141.555987px;}
.wsbd{word-spacing:143.101412px;}
.ws1a8{word-spacing:145.283556px;}
.wsb7{word-spacing:145.820256px;}
.ws201{word-spacing:158.217643px;}
.ws215{word-spacing:158.568658px;}
.ws21a{word-spacing:158.580528px;}
.ws21b{word-spacing:158.586463px;}
.ws216{word-spacing:159.025645px;}
.ws218{word-spacing:159.049385px;}
.wsbc{word-spacing:162.299536px;}
.ws22c{word-spacing:164.103363px;}
.ws22d{word-spacing:164.263568px;}
.ws22e{word-spacing:164.352570px;}
.wsb9{word-spacing:178.179245px;}
.ws1f8{word-spacing:179.940360px;}
.wsac{word-spacing:186.045520px;}
.ws1d1{word-spacing:187.000846px;}
.wsbb{word-spacing:191.541946px;}
.wsba{word-spacing:194.670398px;}
.ws60{word-spacing:196.926336px;}
.ws179{word-spacing:197.012707px;}
.ws104{word-spacing:197.041498px;}
.ws105{word-spacing:197.048695px;}
.ws111{word-spacing:197.055893px;}
.ws1c8{word-spacing:197.063090px;}
.ws103{word-spacing:197.077486px;}
.ws1c5{word-spacing:197.091881px;}
.ws1be{word-spacing:197.099078px;}
.ws1a5{word-spacing:197.149462px;}
.ws1ca{word-spacing:197.192647px;}
.ws202{word-spacing:199.814972px;}
.wsf1{word-spacing:200.013343px;}
.wsef{word-spacing:200.015979px;}
.ws21c{word-spacing:206.006314px;}
.wsab{word-spacing:218.448472px;}
.wsb8{word-spacing:224.221498px;}
.ws238{word-spacing:233.561148px;}
.ws21f{word-spacing:233.567990px;}
.ws220{word-spacing:266.779690px;}
.ws239{word-spacing:266.800727px;}
.wscc{word-spacing:281.863991px;}
.ws221{word-spacing:315.475544px;}
.wsd7{word-spacing:355.439369px;}
.ws1ee{word-spacing:367.279133px;}
.ws1ef{word-spacing:367.293528px;}
.ws236{word-spacing:459.379052px;}
.ws21d{word-spacing:459.390934px;}
.wsc0{word-spacing:487.868981px;}
.wsd5{word-spacing:519.205682px;}
.wscb{word-spacing:531.708443px;}
.wsa9{word-spacing:551.953831px;}
.wsa8{word-spacing:553.004064px;}
.wsaa{word-spacing:568.158274px;}
._72{margin-left:-367.437480px;}
._25{margin-left:-321.280419px;}
._2c{margin-left:-197.214240px;}
._79{margin-left:-194.695080px;}
._5c{margin-left:-187.115904px;}
._4b{margin-left:-180.712543px;}
._59{margin-left:-170.223240px;}
._5a{margin-left:-163.745400px;}
._73{margin-left:-162.305880px;}
._53{margin-left:-153.668760px;}
._7f{margin-left:-148.111364px;}
._4e{margin-left:-145.391520px;}
._55{margin-left:-141.792720px;}
._33{margin-left:-130.982110px;}
._37{margin-left:-108.117741px;}
._4a{margin-left:-94.450665px;}
._3a{margin-left:-91.285834px;}
._3b{margin-left:-79.227032px;}
._5d{margin-left:-77.342533px;}
._36{margin-left:-68.592529px;}
._60{margin-left:-60.997111px;}
._26{margin-left:-30.189785px;}
._54{margin-left:-28.790400px;}
._35{margin-left:-24.471840px;}
._30{margin-left:-22.312560px;}
._74{margin-left:-20.866610px;}
._24{margin-left:-15.455929px;}
._47{margin-left:-12.874229px;}
._4{margin-left:-11.083104px;}
._5{margin-left:-8.859046px;}
._7{margin-left:-7.549082px;}
._6{margin-left:-5.758080px;}
._9{margin-left:-4.539143px;}
._2{margin-left:-2.921400px;}
._0{margin-left:-1.423656px;}
._1{width:1.344672px;}
._3{width:3.365365px;}
._13{width:4.440382px;}
._a{width:5.484217px;}
._11{width:6.630892px;}
._b{width:8.473067px;}
._12{width:9.848388px;}
._50{width:11.156280px;}
._8a{width:12.545176px;}
._1e{width:14.044875px;}
._63{width:17.274240px;}
._7b{width:19.244091px;}
._3f{width:25.493899px;}
._67{width:27.319798px;}
._4c{width:28.341509px;}
._52{width:29.871888px;}
._2d{width:32.890524px;}
._2a{width:39.915598px;}
._3c{width:42.386666px;}
._75{width:43.444714px;}
._2f{width:46.190957px;}
._28{width:49.406618px;}
._4d{width:51.587003px;}
._5b{width:52.871278px;}
._10{width:54.704832px;}
._48{width:55.990130px;}
._3e{width:59.689697px;}
._7c{width:61.228460px;}
._1d{width:66.018284px;}
._61{width:71.944918px;}
._58{width:73.917061px;}
._32{width:76.238426px;}
._6d{width:78.367469px;}
._66{width:79.972406px;}
._2e{width:83.596881px;}
._27{width:85.291560px;}
._3d{width:86.292026px;}
._38{width:87.932217px;}
._85{width:89.894177px;}
._70{width:95.065901px;}
._44{width:97.743408px;}
._41{width:101.648265px;}
._39{width:108.530019px;}
._42{width:110.663100px;}
._40{width:117.533687px;}
._71{width:120.768530px;}
._69{width:129.743938px;}
._49{width:131.741839px;}
._65{width:141.432840px;}
._64{width:142.841278px;}
._8{width:147.033974px;}
._76{width:149.805658px;}
._31{width:151.917382px;}
._62{width:154.177498px;}
._51{width:156.747893px;}
._57{width:158.474465px;}
._5f{width:159.755638px;}
._77{width:161.980947px;}
._5e{width:164.002222px;}
._56{width:165.364860px;}
._68{width:171.045557px;}
._34{width:172.742400px;}
._78{width:176.053296px;}
._6a{width:179.167525px;}
._46{width:180.191916px;}
._2b{width:182.099280px;}
._7a{width:184.258560px;}
._43{width:185.711275px;}
._f{width:189.053814px;}
._18{width:190.734604px;}
._45{width:192.823704px;}
._17{width:193.863055px;}
._29{width:196.525562px;}
._22{width:197.902918px;}
._23{width:199.540196px;}
._4f{width:208.550100px;}
._e{width:221.818712px;}
._16{width:223.099530px;}
._21{width:226.939139px;}
._88{width:232.101502px;}
._6e{width:235.663819px;}
._d{width:238.023155px;}
._86{width:248.305945px;}
._20{width:253.187653px;}
._1f{width:265.090684px;}
._87{width:270.301504px;}
._82{width:273.549776px;}
._c{width:286.636484px;}
._14{width:298.231934px;}
._8c{width:306.749219px;}
._15{width:313.559830px;}
._1b{width:328.688906px;}
._81{width:339.188445px;}
._6b{width:357.130877px;}
._80{width:359.524762px;}
._6f{width:367.437480px;}
._8b{width:371.487108px;}
._19{width:541.210407px;}
._1c{width:550.506077px;}
._1a{width:563.411194px;}
._6c{width:664.190208px;}
._7e{width:694.448659px;}
._7d{width:699.671551px;}
._89{width:848.460286px;}
._84{width:865.499877px;}
._83{width:899.074509px;}
.fc6{color:rgb(127,20,22);}
.fc5{color:rgb(57,83,164);}
.fc3{color:transparent;}
.fc2{color:rgb(185,82,159);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs18{font-size:18.000000px;}
.fsc{font-size:42.106200px;}
.fs17{font-size:48.240000px;}
.fs14{font-size:49.464600px;}
.fs3{font-size:54.000000px;}
.fsb{font-size:56.860800px;}
.fsf{font-size:59.335200px;}
.fs16{font-size:59.349000px;}
.fs10{font-size:59.363400px;}
.fs15{font-size:59.675400px;}
.fs13{font-size:59.699400px;}
.fs5{font-size:59.760000px;}
.fs12{font-size:59.771400px;}
.fs11{font-size:59.786400px;}
.fsa{font-size:65.857800px;}
.fs1{font-size:66.240000px;}
.fs9{font-size:71.976000px;}
.fs7{font-size:72.000000px;}
.fse{font-size:78.093600px;}
.fsd{font-size:83.851800px;}
.fs0{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs8{font-size:96.087600px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y169{bottom:2.789550px;}
.y42a{bottom:5.040000px;}
.y28{bottom:12.240000px;}
.y22{bottom:13.320000px;}
.y3f{bottom:13.500000px;}
.y2a{bottom:13.680000px;}
.y25{bottom:15.660000px;}
.y1f{bottom:16.740000px;}
.y429{bottom:20.700000px;}
.y3e7{bottom:23.940000px;}
.y3ea{bottom:28.080000px;}
.y3d8{bottom:30.420000px;}
.y3dc{bottom:32.400000px;}
.y427{bottom:36.360000px;}
.y3c{bottom:38.340000px;}
.y21{bottom:43.560000px;}
.y3e6{bottom:43.740000px;}
.y4b{bottom:47.340000px;}
.y24{bottom:48.420000px;}
.y3db{bottom:51.840000px;}
.y42f{bottom:57.426480px;}
.y52{bottom:57.427200px;}
.y3e4{bottom:63.540000px;}
.y3a{bottom:63.900000px;}
.y425{bottom:67.500000px;}
.y6e{bottom:70.702200px;}
.y40f{bottom:71.460000px;}
.y4e{bottom:71.640000px;}
.y4a{bottom:71.820000px;}
.y42e{bottom:76.139280px;}
.y51{bottom:76.140000px;}
.y423{bottom:83.160000px;}
.y3e2{bottom:83.340000px;}
.y38{bottom:89.280000px;}
.y40e{bottom:89.820000px;}
.y1d{bottom:95.729760px;}
.y421{bottom:98.640000px;}
.y3e0{bottom:102.960000px;}
.y28f{bottom:103.181490px;}
.y40c{bottom:105.480000px;}
.y2af{bottom:106.783349px;}
.y131{bottom:106.962299px;}
.y1e0{bottom:108.491039px;}
.y209{bottom:108.851309px;}
.y41f{bottom:114.300000px;}
.y36{bottom:114.660000px;}
.y270{bottom:117.846420px;}
.y406{bottom:118.260000px;}
.y40a{bottom:120.960000px;}
.y32f{bottom:122.614350px;}
.y3df{bottom:122.760000px;}
.y24b{bottom:127.023960px;}
.y301{bottom:127.832940px;}
.y303{bottom:128.102850px;}
.y2e3{bottom:129.814019px;}
.y41e{bottom:129.960000px;}
.y99{bottom:130.447588px;}
.y2ae{bottom:130.895309px;}
.y130{bottom:131.074259px;}
.y1df{bottom:132.603479px;}
.y1be{bottom:132.698278px;}
.y28e{bottom:136.380420px;}
.y405{bottom:136.620000px;}
.y1c{bottom:138.752640px;}
.y22b{bottom:139.175818px;}
.y34{bottom:140.220000px;}
.y208{bottom:142.050239px;}
.y32e{bottom:142.588350px;}
.y41c{bottom:145.620000px;}
.y166{bottom:146.819849px;}
.y26f{bottom:151.045110px;}
.y403{bottom:152.280000px;}
.y98{bottom:153.927959px;}
.y12f{bottom:155.274390px;}
.y1bd{bottom:156.898408px;}
.y300{bottom:157.163160px;}
.y302{bottom:157.433070px;}
.y10c{bottom:160.132200px;}
.y24a{bottom:160.132920px;}
.y3ad{bottom:160.681586px;}
.y41a{bottom:161.100000px;}
.y2e2{bottom:162.921180px;}
.y22a{bottom:163.375948px;}
.y2ad{bottom:164.092439px;}
.y32{bottom:165.599850px;}
.y45{bottom:165.600000px;}
.y1de{bottom:165.802409px;}
.y402{bottom:167.760000px;}
.y42d{bottom:168.660000px;}
.y28d{bottom:169.583039px;}
.y32d{bottom:170.213848px;}
.y165{bottom:171.021779px;}
.y207{bottom:175.159199px;}
.y419{bottom:176.760000px;}
.y97{bottom:177.320159px;}
.y34f{bottom:180.474219px;}
.y1bc{bottom:181.098539px;}
.yc3{bottom:181.299742px;}
.y1b{bottom:181.775520px;}
.y410{bottom:183.060000px;}
.y400{bottom:183.420000px;}
.y26e{bottom:184.154070px;}
.y249{bottom:184.336409px;}
.y3ac{bottom:184.791747px;}
.y2ff{bottom:186.583350px;}
.y10b{bottom:187.669978px;}
.y42b{bottom:188.100000px;}
.y2ac{bottom:188.204399px;}
.y12e{bottom:188.383350px;}
.y50{bottom:189.000000px;}
.y1dd{bottom:189.912570px;}
.y43{bottom:190.980000px;}
.y30{bottom:191.160000px;}
.y417{bottom:192.420000px;}
.y164{bottom:195.131939px;}
.y2e1{bottom:196.120110px;}
.y229{bottom:196.574878px;}
.y123{bottom:196.935580px;}
.y3ff{bottom:199.080000px;}
.y96{bottom:200.712359px;}
.y34e{bottom:200.716679px;}
.y4d{bottom:202.140000px;}
.y28c{bottom:202.690199px;}
.yc2{bottom:204.690142px;}
.y1bb{bottom:205.210499px;}
.y415{bottom:207.900000px;}
.y26d{bottom:208.356570px;}
.y206{bottom:208.358129px;}
.y12d{bottom:208.446000px;}
.y3ab{bottom:208.993677px;}
.y2ab{bottom:212.406329px;}
.y1dc{bottom:214.115369px;}
.y3fd{bottom:214.740000px;}
.y11d{bottom:216.452850px;}
.y2e{bottom:216.540000px;}
.y2fe{bottom:217.173000px;}
.y248{bottom:217.443570px;}
.y163{bottom:219.333869px;}
.y428{bottom:219.420000px;}
.y2e0{bottom:220.232070px;}
.y228{bottom:220.685039px;}
.y34d{bottom:220.959139px;}
.y413{bottom:223.560000px;}
.y95{bottom:224.104559px;}
.y1a{bottom:224.616240px;}
.y28b{bottom:226.892129px;}
.yc1{bottom:228.080543px;}
.y3fc{bottom:230.220000px;}
.y205{bottom:232.560059px;}
.y426{bottom:234.900000px;}
.y12c{bottom:235.979819px;}
.y412{bottom:235.980000px;}
.y2aa{bottom:236.608259px;}
.y1ba{bottom:238.409429px;}
.y34c{bottom:241.201600px;}
.y26c{bottom:241.556909px;}
.y247{bottom:241.646369px;}
.y2d{bottom:241.920000px;}
.y3aa{bottom:244.351887px;}
.y13d{bottom:245.334824px;}
.y411{bottom:245.700000px;}
.y3fb{bottom:245.880000px;}
.y42c{bottom:246.960000px;}
.y1db{bottom:247.313040px;}
.y94{bottom:247.496759px;}
.y4f{bottom:249.480000px;}
.y28a{bottom:251.004089px;}
.y2fd{bottom:251.092290px;}
.yc0{bottom:251.470943px;}
.y162{bottom:252.531000px;}
.y2df{bottom:253.433999px;}
.y227{bottom:253.883969px;}
.y34b{bottom:261.444060px;}
.y3f9{bottom:261.540000px;}
.y1b9{bottom:262.519589px;}
.y137{bottom:264.768000px;}
.y204{bottom:265.667220px;}
.y246{bottom:265.847190px;}
.y424{bottom:266.220000px;}
.y19{bottom:267.639120px;}
.y3a9{bottom:268.553817px;}
.y2a9{bottom:269.715420px;}
.y93{bottom:270.888959px;}
.y161{bottom:272.505000px;}
.y11e{bottom:273.224521px;}
.y26b{bottom:274.664070px;}
.ybf{bottom:274.861344px;}
.y289{bottom:275.204220px;}
.y2fc{bottom:275.294220px;}
.y3f7{bottom:277.020000px;}
.y226{bottom:277.995929px;}
.y14f{bottom:278.805689px;}
.y1da{bottom:280.422570px;}
.y34a{bottom:281.597497px;}
.y422{bottom:281.700000px;}
.y2de{bottom:286.632929px;}
.y1b8{bottom:286.721519px;}
.y49{bottom:287.100000px;}
.y203{bottom:289.869690px;}
.y245{bottom:289.960589px;}
.y3a8{bottom:292.665777px;}
.y3f6{bottom:292.680000px;}
.y2a8{bottom:293.917350px;}
.y92{bottom:294.281159px;}
.y420{bottom:297.360000px;}
.ybe{bottom:298.251745px;}
.y160{bottom:300.039958px;}
.y349{bottom:301.839957px;}
.y14e{bottom:303.005819px;}
.y26a{bottom:307.865279px;}
.y3f4{bottom:308.340000px;}
.y288{bottom:308.406269px;}
.y2fb{bottom:308.497438px;}
.y18{bottom:310.662000px;}
.y225{bottom:311.193059px;}
.y1d9{bottom:313.622279px;}
.y244{bottom:314.160720px;}
.y91{bottom:317.673359px;}
.y2a7{bottom:318.029310px;}
.y184{bottom:318.838650px;}
.y2dd{bottom:319.740089px;}
.y1b7{bottom:319.918650px;}
.y202{bottom:321.448650px;}
.y138{bottom:321.628533px;}
.ybd{bottom:321.733915px;}
.y348{bottom:322.082417px;}
.y201{bottom:322.981499px;}
.y3f2{bottom:324.000000px;}
.y14d{bottom:327.117779px;}
.y3a7{bottom:328.113957px;}
.y41d{bottom:328.680000px;}
.y11f{bottom:330.085871px;}
.y269{bottom:331.977239px;}
.y4c{bottom:334.440000px;}
.y224{bottom:335.394989px;}
.y1d8{bottom:337.824209px;}
.y243{bottom:338.362650px;}
.y183{bottom:338.543356px;}
.y3f0{bottom:339.480000px;}
.y90{bottom:341.153729px;}
.y287{bottom:341.513429px;}
.y2fa{bottom:341.604599px;}
.y2a6{bottom:342.231240px;}
.y347{bottom:342.324877px;}
.y2dc{bottom:343.942019px;}
.y41b{bottom:344.160000px;}
.y1b6{bottom:345.111150px;}
.ybc{bottom:345.124315px;}
.y14c{bottom:351.319709px;}
.y3ef{bottom:351.900000px;}
.y3a6{bottom:352.225917px;}
.y17{bottom:353.684880px;}
.y200{bottom:356.180429px;}
.y17c{bottom:357.976650px;}
.y3ed{bottom:361.620000px;}
.y1d7{bottom:361.936169px;}
.y346{bottom:362.565853px;}
.y6d{bottom:364.455209px;}
.y8f{bottom:364.545929px;}
.y268{bottom:365.174370px;}
.y2a5{bottom:366.433170px;}
.y324{bottom:368.323739px;}
.y223{bottom:368.502150px;}
.ybb{bottom:368.514716px;}
.y242{bottom:371.472150px;}
.y241{bottom:371.478118px;}
.y41{bottom:372.240000px;}
.y286{bottom:374.712359px;}
.y2f9{bottom:374.803529px;}
.y418{bottom:375.480000px;}
.y14b{bottom:375.521639px;}
.y2db{bottom:377.139150px;}
.y139{bottom:378.490560px;}
.y3ec{bottom:378.540000px;}
.y1ff{bottom:380.382359px;}
.yec{bottom:380.567307px;}
.y120{bottom:386.948716px;}
.y3a5{bottom:387.674097px;}
.y8e{bottom:387.938129px;}
.y1b5{bottom:388.935117px;}
.y267{bottom:389.377139px;}
.y2a4{bottom:390.545130px;}
.y416{bottom:390.960000px;}
.yba{bottom:391.905116px;}
.y323{bottom:392.525669px;}
.y1d6{bottom:395.133840px;}
.y16{bottom:396.707760px;}
.y6c{bottom:397.654139px;}
.y2f8{bottom:398.915489px;}
.y14a{bottom:399.632370px;}
.y35f{bottom:399.903419px;}
.y2da{bottom:401.611800px;}
.y222{bottom:401.701650px;}
.y17d{bottom:402.331883px;}
.y345{bottom:402.604173px;}
.y1fe{bottom:404.494319px;}
.y240{bottom:404.677048px;}
.yeb{bottom:404.677468px;}
.y414{bottom:406.620000px;}
.y285{bottom:407.819520px;}
.y8d{bottom:411.330329px;}
.y1b4{bottom:413.047077px;}
.y266{bottom:413.488020px;}
.y2a3{bottom:414.747060px;}
.yb9{bottom:415.295517px;}
.y1d5{bottom:419.245590px;}
.y3a4{bottom:420.873027px;}
.ydd{bottom:422.670118px;}
.y344{bottom:422.846633px;}
.y149{bottom:423.837419px;}
.y35e{bottom:424.195319px;}
.y322{bottom:425.722800px;}
.y23f{bottom:428.789008px;}
.y6b{bottom:430.761300px;}
.y2f7{bottom:432.114419px;}
.y8c{bottom:434.720730px;}
.y221{bottom:434.810520px;}
.y13a{bottom:435.261436px;}
.y1b3{bottom:437.249007px;}
.y1fd{bottom:437.693249px;}
.yea{bottom:437.876398px;}
.y19d{bottom:438.052229px;}
.yb8{bottom:438.685918px;}
.y2a2{bottom:438.859020px;}
.y15{bottom:439.730640px;}
.y3eb{bottom:440.460000px;}
.y284{bottom:441.019020px;}
.y121{bottom:443.811561px;}
.y265{bottom:445.156800px;}
.y2d9{bottom:446.150009px;}
.y17e{bottom:446.687116px;}
.y264{bottom:446.687789px;}
.ydc{bottom:446.872048px;}
.y35d{bottom:448.395450px;}
.y321{bottom:450.195300px;}
.y37d{bottom:452.181628px;}
.y1d4{bottom:452.444520px;}
.y23e{bottom:452.989138px;}
.y3a3{bottom:453.981987px;}
.y148{bottom:456.944579px;}
.y8b{bottom:458.112930px;}
.y1fc{bottom:461.803409px;}
.ye9{bottom:461.986558px;}
.yb7{bottom:462.076318px;}
.y19c{bottom:462.252359px;}
.y343{bottom:463.242530px;}
.y6a{bottom:463.960950px;}
.y2f6{bottom:465.313349px;}
.y220{bottom:468.010020px;}
.y35c{bottom:468.458847px;}
.y2d8{bottom:470.350139px;}
.y1b2{bottom:470.446138px;}
.y2a1{bottom:472.059509px;}
.y283{bottom:474.230096px;}
.y1d3{bottom:476.646990px;}
.y3a2{bottom:478.182118px;}
.y263{bottom:478.266300px;}
.y262{bottom:479.795520px;}
.ydb{bottom:479.979209px;}
.y147{bottom:481.146509px;}
.y8a{bottom:481.505130px;}
.y14{bottom:482.571360px;}
.y342{bottom:483.484990px;}
.y37c{bottom:485.378758px;}
.yb6{bottom:485.466719px;}
.y1fb{bottom:486.005339px;}
.y23d{bottom:486.188068px;}
.ye8{bottom:486.188488px;}
.y19b{bottom:486.364319px;}
.y48{bottom:486.900000px;}
.y35b{bottom:487.353450px;}
.y17f{bottom:490.952836px;}
.y13b{bottom:492.123463px;}
.y1b1{bottom:494.558098px;}
.y320{bottom:494.730390px;}
.y69{bottom:497.158950px;}
.y2f5{bottom:498.420509px;}
.y122{bottom:500.674406px;}
.y21f{bottom:501.209939px;}
.y2d7{bottom:503.549069px;}
.y341{bottom:503.727450px;}
.yda{bottom:504.179339px;}
.y89{bottom:504.987300px;}
.y2a0{bottom:505.258439px;}
.y146{bottom:505.348439px;}
.y35a{bottom:505.980539px;}
.y282{bottom:507.337256px;}
.yb5{bottom:508.948889px;}
.y1d2{bottom:509.756729px;}
.y1fa{bottom:510.207269px;}
.y23c{bottom:510.298229px;}
.y47{bottom:512.460000px;}
.y261{bottom:512.996009px;}
.y3a1{bottom:513.542127px;}
.y36f{bottom:516.322083px;}
.y37b{bottom:518.487718px;}
.y1b0{bottom:518.758228px;}
.y31f{bottom:518.932320px;}
.y19a{bottom:519.562170px;}
.ye7{bottom:521.546698px;}
.y2f4{bottom:522.622439px;}
.y13{bottom:525.594240px;}
.y2d6{bottom:527.661029px;}
.yd9{bottom:528.379470px;}
.y88{bottom:528.379500px;}
.y68{bottom:530.268600px;}
.yb4{bottom:532.341089px;}
.y21e{bottom:534.321359px;}
.y23b{bottom:534.500159px;}
.y180{bottom:535.308069px;}
.y36e{bottom:536.565770px;}
.y3a0{bottom:537.744057px;}
.y46{bottom:537.840000px;}
.y29f{bottom:538.366170px;}
.y145{bottom:538.455600px;}
.y281{bottom:540.534387px;}
.y37a{bottom:542.687849px;}
.y1af{bottom:542.870188px;}
.y1d1{bottom:542.955659px;}
.y1f9{bottom:543.314430px;}
.y350{bottom:544.222756px;}
.ye6{bottom:545.746829px;}
.y40d{bottom:545.940000px;}
.y260{bottom:546.193140px;}
.y13c{bottom:548.985490px;}
.y10a{bottom:551.416888px;}
.y87{bottom:551.771700px;}
.y2d5{bottom:551.861160px;}
.y31e{bottom:552.131250px;}
.y199{bottom:552.761670px;}
.y2f3{bottom:555.730500px;}
.yb3{bottom:555.733289px;}
.y36d{bottom:556.809457px;}
.y23a{bottom:558.612119px;}
.y40b{bottom:561.420000px;}
.yd8{bottom:561.488430px;}
.y39f{bottom:561.856017px;}
.y144{bottom:562.928100px;}
.y44{bottom:563.220000px;}
.y67{bottom:563.468100px;}
.y1d0{bottom:567.067619px;}
.y1ae{bottom:567.070319px;}
.y1f8{bottom:567.516360px;}
.y21d{bottom:567.520289px;}
.y12{bottom:568.617120px;}
.ye5{bottom:569.946959px;}
.y29e{bottom:570.035100px;}
.y25f{bottom:570.313677px;}
.y29d{bottom:571.567559px;}
.y280{bottom:573.731518px;}
.y86{bottom:575.163900px;}
.y109{bottom:575.528848px;}
.y379{bottom:575.886779px;}
.y2d4{bottom:575.973120px;}
.y31d{bottom:576.333180px;}
.y36c{bottom:577.051660px;}
.y409{bottom:577.080000px;}
.y32c{bottom:578.855789px;}
.yb2{bottom:579.125489px;}
.y181{bottom:579.663302px;}
.y239{bottom:582.812249px;}
.yd7{bottom:585.690360px;}
.y198{bottom:585.967048px;}
.y66{bottom:587.489100px;}
.y42{bottom:588.780000px;}
.y2f2{bottom:588.929430px;}
.y1ad{bottom:591.270449px;}
.y1f7{bottom:591.718290px;}
.y404{bottom:592.740000px;}
.y25e{bottom:594.515607px;}
.y36b{bottom:597.206344px;}
.y39e{bottom:597.304197px;}
.y85{bottom:598.579972px;}
.y12b{bottom:599.726729px;}
.y108{bottom:599.728979px;}
.y378{bottom:599.996939px;}
.y2d3{bottom:600.175050px;}
.y1cf{bottom:600.264540px;}
.y21c{bottom:600.717419px;}
.y31c{bottom:600.805020px;}
.yb1{bottom:602.517689px;}
.y32b{bottom:603.057719px;}
.y29c{bottom:604.764689px;}
.ye4{bottom:605.305169px;}
.y27f{bottom:606.840478px;}
.y143{bottom:607.552080px;}
.y408{bottom:608.220000px;}
.yd6{bottom:609.802320px;}
.y197{bottom:610.528858px;}
.y65{bottom:611.421600px;}
.y11{bottom:611.640000px;}
.y238{bottom:616.011179px;}
.y36a{bottom:617.450031px;}
.y2c2{bottom:620.780069px;}
.y39d{bottom:621.504328px;}
.y84{bottom:621.972172px;}
.y2f1{bottom:622.128360px;}
.y1f6{bottom:623.297250px;}
.y12a{bottom:623.838689px;}
.y401{bottom:623.880000px;}
.y182{bottom:623.929021px;}
.y377{bottom:624.198869px;}
.y1ac{bottom:624.379409px;}
.y1f5{bottom:624.828119px;}
.y21b{bottom:624.829379px;}
.y31b{bottom:624.916980px;}
.yb0{bottom:625.909889px;}
.y3e{bottom:627.300000px;}
.y25d{bottom:627.712738px;}
.y29b{bottom:628.876649px;}
.ye3{bottom:629.507099px;}
.y27e{bottom:631.040608px;}
.y142{bottom:631.754010px;}
.y107{bottom:632.837939px;}
.y2d2{bottom:633.373980px;}
.y196{bottom:634.910728px;}
.y1ce{bottom:635.622271px;}
.y64{bottom:635.622750px;}
.y32a{bottom:636.254849px;}
.y369{bottom:637.692235px;}
.y40{bottom:640.800000px;}
.yd5{bottom:643.001250px;}
.y83{bottom:645.364372px;}
.y2f0{bottom:646.240320px;}
.y129{bottom:648.040619px;}
.y1ab{bottom:648.579540px;}
.y21a{bottom:649.029510px;}
.y237{bottom:649.118340px;}
.y31a{bottom:649.208880px;}
.yaf{bottom:649.302089px;}
.y2c1{bottom:650.560139px;}
.y25c{bottom:651.824698px;}
.y3fe{bottom:655.200000px;}
.y141{bottom:655.865970px;}
.y1f4{bottom:656.496900px;}
.y39c{bottom:656.862538px;}
.y3d{bottom:657.000000px;}
.y106{bottom:657.038069px;}
.y376{bottom:657.397799px;}
.y2d1{bottom:657.845820px;}
.y368{bottom:657.935922px;}
.y1f3{bottom:658.027379px;}
.y63{bottom:659.645250px;}
.y3bf{bottom:660.100288px;}
.y329{bottom:660.366809px;}
.y29a{bottom:662.073780px;}
.y15f{bottom:663.786869px;}
.y27d{bottom:664.149568px;}
.ye2{bottom:664.865309px;}
.yd4{bottom:667.472250px;}
.y195{bottom:668.107858px;}
.y82{bottom:668.756572px;}
.y10{bottom:670.680000px;}
.y1cd{bottom:671.074949px;}
.y1aa{bottom:672.691500px;}
.yae{bottom:672.782459px;}
.y219{bottom:673.141470px;}
.y25b{bottom:676.024828px;}
.y367{bottom:678.179608px;}
.y2ef{bottom:679.439250px;}
.y39b{bottom:681.064468px;}
.y128{bottom:681.237750px;}
.y105{bottom:681.238200px;}
.y375{bottom:681.777870px;}
.y236{bottom:682.317270px;}
.y319{bottom:682.587750px;}
.y62{bottom:683.577900px;}
.y2c0{bottom:683.759069px;}
.y3be{bottom:684.212248px;}
.y328{bottom:684.566940px;}
.y3d6{bottom:685.736250px;}
.y2c{bottom:686.880000px;}
.y15e{bottom:687.988799px;}
.y140{bottom:689.064900px;}
.ye1{bottom:689.065440px;}
.y2d0{bottom:691.044750px;}
.y1f2{bottom:691.136339px;}
.y194{bottom:692.219818px;}
.y81{bottom:692.238742px;}
.yad{bottom:696.174659px;}
.y1a9{bottom:696.893430px;}
.y27c{bottom:697.348498px;}
.y299{bottom:697.433789px;}
.y366{bottom:698.332809px;}
.y127{bottom:701.211900px;}
.y3fa{bottom:702.000000px;}
.y2ee{bottom:703.910400px;}
.y104{bottom:705.350160px;}
.y374{bottom:706.249710px;}
.y218{bottom:706.341269px;}
.y235{bottom:706.429230px;}
.y1cc{bottom:706.433159px;}
.y318{bottom:708.228900px;}
.y13f{bottom:709.038900px;}
.y25a{bottom:709.133788px;}
.yf{bottom:709.920000px;}
.y15d{bottom:712.098959px;}
.yd3{bottom:712.101869px;}
.y1f1{bottom:715.338269px;}
.y80{bottom:715.629142px;}
.y193{bottom:716.419949px;}
.y39a{bottom:716.422678px;}
.y61{bottom:716.775900px;}
.y2bf{bottom:716.957999px;}
.y3f8{bottom:717.480000px;}
.y327{bottom:717.675900px;}
.y365{bottom:718.576496px;}
.yac{bottom:719.566859px;}
.y3bd{bottom:719.660428px;}
.y1a8{bottom:721.095360px;}
.y27b{bottom:721.548629px;}
.ye0{bottom:722.174400px;}
.y2cf{bottom:724.962900px;}
.y373{bottom:726.672900px;}
.y126{bottom:728.743799px;}
.y103{bottom:729.552090px;}
.y234{bottom:730.631160px;}
.y1cb{bottom:730.635089px;}
.y298{bottom:732.881969px;}
.y407{bottom:733.140000px;}
.y259{bottom:733.335718px;}
.yd2{bottom:736.213829px;}
.y15c{bottom:736.300889px;}
.y13e{bottom:736.661159px;}
.ye{bottom:737.460000px;}
.y326{bottom:737.739900px;}
.y136{bottom:738.100868px;}
.y364{bottom:738.369235px;}
.y7f{bottom:739.019543px;}
.y217{bottom:739.542389px;}
.y3d5{bottom:739.808400px;}
.y192{bottom:740.620079px;}
.y399{bottom:740.624608px;}
.y2be{bottom:741.069959px;}
.ydf{bottom:742.238400px;}
.yab{bottom:742.959059px;}
.y3bc{bottom:743.862358px;}
.y3ca{bottom:745.123108px;}
.y1a7{bottom:745.207320px;}
.y27a{bottom:745.660589px;}
.y372{bottom:746.646900px;}
.y1f0{bottom:748.536959px;}
.y2ed{bottom:748.538849px;}
.y158{bottom:748.715400px;}
.y3f5{bottom:748.800000px;}
.y60{bottom:749.975400px;}
.y3b{bottom:750.780000px;}
.y317{bottom:753.399148px;}
.y233{bottom:754.833090px;}
.y132{bottom:757.532550px;}
.y258{bottom:757.537648px;}
.yd{bottom:758.520000px;}
.y371{bottom:758.609955px;}
.y363{bottom:758.612922px;}
.y2ce{bottom:758.792550px;}
.yd1{bottom:760.413959px;}
.y7e{bottom:762.409943px;}
.y102{bottom:762.661050px;}
.y1ca{bottom:763.834019px;}
.y3f3{bottom:764.460000px;}
.y398{bottom:764.734768px;}
.y191{bottom:764.820210px;}
.y325{bottom:765.269400px;}
.y2bd{bottom:765.270090px;}
.yaa{bottom:766.351259px;}
.y3bb{bottom:767.974318px;}
.y297{bottom:768.240179px;}
.y15b{bottom:769.408050px;}
.y1a6{bottom:769.409250px;}
.yde{bottom:769.767900px;}
.y3d4{bottom:770.398050px;}
.y2ec{bottom:772.650809px;}
.y216{bottom:772.651349px;}
.y5f{bottom:774.086550px;}
.y38b{bottom:775.523564px;}
.y33f{bottom:775.538887px;}
.y157{bottom:775.885861px;}
.y39{bottom:776.160000px;}
.y316{bottom:777.511108px;}
.y279{bottom:778.857719px;}
.yff{bottom:779.211552px;}
.y3f1{bottom:779.940000px;}
.y1ef{bottom:781.645919px;}
.y257{bottom:781.649608px;}
.y101{bottom:782.723550px;}
.yd0{bottom:784.614090px;}
.y7d{bottom:785.800344px;}
.y3c9{bottom:787.317238px;}
.y232{bottom:787.942050px;}
.y1c9{bottom:787.944179px;}
.y15a{bottom:789.472050px;}
.ya9{bottom:789.743459px;}
.y3ba{bottom:792.174449px;}
.y296{bottom:792.440310px;}
.y2cd{bottom:792.710550px;}
.y1a5{bottom:793.611180px;}
.y150{bottom:795.410550px;}
.y38a{bottom:795.767250px;}
.y33e{bottom:795.781347px;}
.y2eb{bottom:796.850939px;}
.y5e{bottom:798.109050px;}
.y190{bottom:798.289050px;}
.y2bc{bottom:798.379050px;}
.y362{bottom:799.098812px;}
.yfe{bottom:799.453755px;}
.yc{bottom:799.740000px;}
.y397{bottom:800.182948px;}
.y3d3{bottom:800.897550px;}
.y37{bottom:801.540000px;}
.y315{bottom:801.711239px;}
.y3ee{bottom:802.080000px;}
.y278{bottom:802.969679px;}
.y1ee{bottom:805.846590px;}
.y215{bottom:805.848479px;}
.y256{bottom:805.849739px;}
.y7c{bottom:809.190745px;}
.y100{bottom:810.254550px;}
.y1c8{bottom:812.146109px;}
.ya8{bottom:813.135659px;}
.y231{bottom:813.224550px;}
.y389{bottom:816.010937px;}
.y33d{bottom:816.023807px;}
.y295{bottom:816.552270px;}
.y159{bottom:817.003200px;}
.ycf{bottom:817.723050px;}
.y1a4{bottom:817.723140px;}
.y361{bottom:819.252013px;}
.y11c{bottom:819.523712px;}
.yfd{bottom:819.695959px;}
.y3c8{bottom:820.426198px;}
.y5d{bottom:822.131700px;}
.y18f{bottom:823.840050px;}
.y396{bottom:824.384878px;}
.y17b{bottom:825.188555px;}
.y314{bottom:825.823199px;}
.y35{bottom:827.100000px;}
.y277{bottom:827.169810px;}
.y3b9{bottom:827.532659px;}
.y3e9{bottom:829.440000px;}
.y2ea{bottom:829.959899px;}
.y214{bottom:829.960439px;}
.y255{bottom:829.961699px;}
.y3d2{bottom:831.398550px;}
.y2bb{bottom:832.297560px;}
.y7b{bottom:832.581145px;}
.y388{bottom:836.254624px;}
.y33c{bottom:836.266267px;}
.y2cc{bottom:836.346030px;}
.y1c7{bottom:836.348039px;}
.ya7{bottom:836.527859px;}
.y1ed{bottom:837.425700px;}
.y1ec{bottom:838.955250px;}
.y360{bottom:839.495700px;}
.y11b{bottom:839.766631px;}
.yfc{bottom:839.850643px;}
.yb{bottom:841.140000px;}
.y17a{bottom:842.012702px;}
.yce{bottom:843.364200px;}
.y3c7{bottom:844.988008px;}
.y5c{bottom:846.062550px;}
.y151{bottom:846.513236px;}
.y395{bottom:848.496838px;}
.y294{bottom:849.751200px;}
.y313{bottom:850.023329px;}
.y1a3{bottom:850.922070px;}
.y3b8{bottom:851.734589px;}
.y133{bottom:852.271713px;}
.y33{bottom:852.479850px;}
.y254{bottom:854.161829px;}
.y213{bottom:854.162369px;}
.y7a{bottom:855.971546px;}
.y387{bottom:856.498311px;}
.y33b{bottom:856.508727px;}
.y230{bottom:856.952849px;}
.y179{bottom:858.928359px;}
.ya6{bottom:860.008230px;}
.y11a{bottom:860.009550px;}
.yfb{bottom:860.094330px;}
.y276{bottom:860.368740px;}
.y3d1{bottom:861.988200px;}
.y2b9{bottom:867.745740px;}
.y18e{bottom:869.005890px;}
.y1c6{bottom:869.455200px;}
.y2cb{bottom:870.264720px;}
.y3de{bottom:870.660000px;}
.y1eb{bottom:872.154180px;}
.y312{bottom:874.225259px;}
.y1a2{bottom:875.034030px;}
.y293{bottom:875.393700px;}
.y178{bottom:875.752506px;}
.y3b7{bottom:875.844749px;}
.y386{bottom:876.651512px;}
.y33a{bottom:876.662164px;}
.y31{bottom:878.040000px;}
.y3c6{bottom:878.096968px;}
.y2e9{bottom:878.363759px;}
.y212{bottom:878.364299px;}
.y5b{bottom:879.262200px;}
.y79{bottom:879.453716px;}
.y370{bottom:879.980107px;}
.y119{bottom:880.252470px;}
.yfa{bottom:880.336533px;}
.y22f{bottom:881.154779px;}
.ya5{bottom:883.400430px;}
.y394{bottom:883.945018px;}
.y253{bottom:887.360759px;}
.ycd{bottom:888.439919px;}
.y3d0{bottom:892.487700px;}
.y177{bottom:892.576653px;}
.y275{bottom:893.476920px;}
.y2ca{bottom:894.466650px;}
.y3e8{bottom:894.600000px;}
.y1c5{bottom:894.736200px;}
.y1ea{bottom:896.356110px;}
.y385{bottom:896.895198px;}
.y339{bottom:896.903140px;}
.y152{bottom:897.615923px;}
.y311{bottom:898.337219px;}
.y1a1{bottom:899.235960px;}
.y118{bottom:900.495389px;}
.yf9{bottom:900.580220px;}
.y18d{bottom:902.115719px;}
.y2e8{bottom:902.475719px;}
.y211{bottom:902.476259px;}
.y3c5{bottom:902.656979px;}
.y78{bottom:902.844116px;}
.y2ba{bottom:903.103950px;}
.y2f{bottom:903.420000px;}
.y2b8{bottom:905.353200px;}
.y22e{bottom:905.356709px;}
.ya{bottom:905.587380px;}
.y359{bottom:905.807219px;}
.ya4{bottom:906.792630px;}
.y393{bottom:908.055179px;}
.y176{bottom:909.491073px;}
.y3b6{bottom:911.294729px;}
.y252{bottom:911.472719px;}
.y5a{bottom:912.460350px;}
.ycc{bottom:912.641849px;}
.y384{bottom:917.138885px;}
.y338{bottom:917.145601px;}
.y2c9{bottom:918.668580px;}
.y1e9{bottom:920.468070px;}
.y292{bottom:920.470259px;}
.y117{bottom:920.738309px;}
.yf8{bottom:920.823907px;}
.y3cf{bottom:922.987350px;}
.y1a0{bottom:923.437890px;}
.y77{bottom:926.234517px;}
.y175{bottom:926.315220px;}
.y210{bottom:926.676390px;}
.y274{bottom:926.677409px;}
.y358{bottom:930.007349px;}
.ya3{bottom:930.184830px;}
.y310{bottom:931.534350px;}
.y392{bottom:932.257109px;}
.y3e5{bottom:934.200000px;}
.y18c{bottom:935.314859px;}
.y3b5{bottom:935.404889px;}
.y251{bottom:935.673180px;}
.y2e7{bottom:935.674019px;}
.y3c4{bottom:935.765939px;}
.y59{bottom:936.572850px;}
.y383{bottom:937.382572px;}
.y337{bottom:937.388061px;}
.y1c4{bottom:938.463869px;}
.y2b6{bottom:939.271920px;}
.y116{bottom:940.981228px;}
.yf7{bottom:941.067594px;}
.y29{bottom:941.940000px;}
.y2c8{bottom:943.140420px;}
.y174{bottom:943.230877px;}
.y1e8{bottom:944.670000px;}
.y291{bottom:944.670390px;}
.ycb{bottom:945.840779px;}
.y134{bottom:947.010877px;}
.y153{bottom:948.718609px;}
.y76{bottom:949.624918px;}
.y3ce{bottom:953.486850px;}
.ya2{bottom:953.577030px;}
.y3e3{bottom:954.000000px;}
.y357{bottom:954.299249px;}
.y2b{bottom:955.620000px;}
.y19f{bottom:956.546850px;}
.y9{bottom:956.700000px;}
.y382{bottom:957.624776px;}
.y336{bottom:957.630521px;}
.y250{bottom:959.785140px;}
.y20f{bottom:959.786369px;}
.y173{bottom:960.055024px;}
.y3c3{bottom:960.327749px;}
.y58{bottom:960.595350px;}
.y115{bottom:961.135102px;}
.yf6{bottom:961.220794px;}
.y30d{bottom:961.584090px;}
.y30f{bottom:961.945769px;}
.y1c3{bottom:962.665799px;}
.y391{bottom:967.615319px;}
.y18b{bottom:968.513789px;}
.y2e6{bottom:968.782979px;}
.yca{bottom:969.952739px;}
.y3b4{bottom:970.853069px;}
.y27{bottom:971.820000px;}
.y75{bottom:973.015318px;}
.y3e1{bottom:973.620000px;}
.y2b7{bottom:974.720100px;}
.y2c7{bottom:976.339350px;}
.ya1{bottom:976.969230px;}
.y2b5{bottom:976.969350px;}
.y172{bottom:976.969444px;}
.y1e7{bottom:977.778960px;}
.y335{bottom:977.872981px;}
.y356{bottom:978.591149px;}
.y8{bottom:979.920000px;}
.y114{bottom:981.378022px;}
.yf5{bottom:981.464481px;}
.y19e{bottom:982.187850px;}
.y24f{bottom:983.987070px;}
.y3cd{bottom:984.076500px;}
.y57{bottom:984.616350px;}
.y1c2{bottom:986.777759px;}
.y30c{bottom:991.004280px;}
.y30e{bottom:991.275989px;}
.y20e{bottom:991.455000px;}
.y390{bottom:991.815449px;}
.y20d{bottom:992.983920px;}
.y2e5{bottom:992.984909px;}
.y3c2{bottom:993.434909px;}
.y171{bottom:993.793591px;}
.yc9{bottom:994.154669px;}
.y3b3{bottom:995.054999px;}
.y74{bottom:996.405719px;}
.y23{bottom:997.200000px;}
.y381{bottom:997.661202px;}
.y334{bottom:997.665873px;}
.y7{bottom:999.552600px;}
.y154{bottom:999.910845px;}
.ya0{bottom:1000.361430px;}
.y113{bottom:1001.620941px;}
.y18a{bottom:1001.620950px;}
.yf4{bottom:1001.708168px;}
.y2c6{bottom:1001.890500px;}
.y1e6{bottom:1001.980890px;}
.y355{bottom:1002.791280px;}
.y3da{bottom:1006.560000px;}
.y24e{bottom:1008.189839px;}
.y170{bottom:1010.709247px;}
.y2b3{bottom:1010.887080px;}
.y1c1{bottom:1010.979689px;}
.y26{bottom:1012.860000px;}
.y3cc{bottom:1014.577500px;}
.y38f{bottom:1016.015580px;}
.y2e4{bottom:1017.186839px;}
.y273{bottom:1017.188129px;}
.y56{bottom:1017.726000px;}
.y380{bottom:1017.904889px;}
.y333{bottom:1017.908333px;}
.y3c1{bottom:1017.996719px;}
.y73{bottom:1019.796119px;}
.y22d{bottom:1019.976689px;}
.y30b{bottom:1020.334500px;}
.y112{bottom:1021.863861px;}
.yf3{bottom:1021.951855px;}
.y354{bottom:1023.124500px;}
.y6{bottom:1023.666300px;}
.y9f{bottom:1023.843600px;}
.y1e5{bottom:1026.182820px;}
.y20c{bottom:1026.183330px;}
.yc8{bottom:1027.263629px;}
.y16f{bottom:1027.533395px;}
.y3b2{bottom:1030.503179px;}
.y189{bottom:1034.819880px;}
.y2b2{bottom:1034.999040px;}
.y1c0{bottom:1035.181619px;}
.y3dd{bottom:1038.960000px;}
.y24d{bottom:1041.297720px;}
.y135{bottom:1041.750040px;}
.y111{bottom:1042.106780px;}
.yf2{bottom:1042.195542px;}
.y72{bottom:1043.278289px;}
.y22c{bottom:1044.178619px;}
.y16e{bottom:1044.357542px;}
.y3cb{bottom:1045.077000px;}
.y2c5{bottom:1047.056190px;}
.y9e{bottom:1047.235800px;}
.y353{bottom:1047.595500px;}
.y5{bottom:1047.780000px;}
.y290{bottom:1050.294780px;}
.y272{bottom:1050.295290px;}
.y307{bottom:1050.744210px;}
.y55{bottom:1050.924690px;}
.y155{bottom:1051.013531px;}
.y309{bottom:1051.015919px;}
.y3c0{bottom:1051.105679px;}
.y38e{bottom:1051.373790px;}
.yc7{bottom:1051.465559px;}
.y3b1{bottom:1054.793280px;}
.y37f{bottom:1058.301776px;}
.y332{bottom:1058.304230px;}
.y1e4{bottom:1059.291780px;}
.y20b{bottom:1059.292290px;}
.y16d{bottom:1061.271962px;}
.y110{bottom:1062.349699px;}
.yf1{bottom:1062.439229px;}
.y71{bottom:1066.670489px;}
.y20{bottom:1067.220000px;}
.y188{bottom:1068.018810px;}
.y1bf{bottom:1068.288780px;}
.y2b4{bottom:1070.357250px;}
.y9d{bottom:1070.628000px;}
.y2c4{bottom:1071.168150px;}
.y3d7{bottom:1071.540000px;}
.y2b1{bottom:1072.606500px;}
.y24c{bottom:1074.496710px;}
.y271{bottom:1074.497220px;}
.y38d{bottom:1075.575720px;}
.yc6{bottom:1075.667489px;}
.y16c{bottom:1078.096109px;}
.y37e{bottom:1078.545463px;}
.y331{bottom:1078.546690px;}
.y3b0{bottom:1078.995210px;}
.y306{bottom:1080.074430px;}
.y308{bottom:1080.346139px;}
.yf0{bottom:1080.793089px;}
.y10f{bottom:1080.793908px;}
.y1e3{bottom:1083.493710px;}
.y20a{bottom:1083.494220px;}
.y54{bottom:1084.033650px;}
.y187{bottom:1092.130770px;}
.y352{bottom:1092.310770px;}
.y125{bottom:1092.490710px;}
.y16b{bottom:1093.480836px;}
.y9c{bottom:1094.020200px;}
.y4{bottom:1095.120000px;}
.y330{bottom:1098.789150px;}
.y70{bottom:1099.777650px;}
.yef{bottom:1101.036776px;}
.y10e{bottom:1101.038311px;}
.y3d9{bottom:1101.960000px;}
.y156{bottom:1102.116218px;}
.y2c3{bottom:1105.806150px;}
.y2b0{bottom:1106.616150px;}
.y1e2{bottom:1107.695640px;}
.yc5{bottom:1108.774650px;}
.y305{bottom:1109.404650px;}
.y30a{bottom:1109.676359px;}
.y16a{bottom:1110.395256px;}
.y3af{bottom:1114.443390px;}
.y186{bottom:1116.332670px;}
.y351{bottom:1116.602670px;}
.y124{bottom:1116.692640px;}
.y9b{bottom:1117.412400px;}
.y53{bottom:1120.111500px;}
.yee{bottom:1121.280463px;}
.y10d{bottom:1121.281231px;}
.y6f{bottom:1126.229550px;}
.y1e{bottom:1126.800000px;}
.yc4{bottom:1135.226550px;}
.y3ae{bottom:1138.555350px;}
.y38c{bottom:1139.272074px;}
.y1e1{bottom:1139.275050px;}
.y340{bottom:1139.285940px;}
.y304{bottom:1140.084750px;}
.y185{bottom:1140.534600px;}
.y9a{bottom:1140.804600px;}
.y168{bottom:1141.254000px;}
.yed{bottom:1141.524150px;}
.y3{bottom:1141.747380px;}
.y167{bottom:1144.043550px;}
.y2{bottom:1192.860000px;}
.y1{bottom:1243.980000px;}
.h3d{height:12.978000px;}
.h23{height:14.215200px;}
.hc{height:25.380000px;}
.h11{height:29.700000px;}
.h8{height:29.880000px;}
.he{height:29.881500px;}
.h3c{height:34.781040px;}
.h6{height:38.934000px;}
.h24{height:40.589762px;}
.h21{height:40.606086px;}
.h20{height:40.655059px;}
.h1f{height:40.665261px;}
.h3a{height:41.220000px;}
.hd{height:43.086960px;}
.h1c{height:47.483474px;}
.h4{height:47.759040px;}
.h22{height:51.590032px;}
.h17{height:51.894696px;}
.hf{height:51.912000px;}
.h16{height:59.164272px;}
.h25{height:59.164392px;}
.h27{height:59.165112px;}
.h30{height:59.165232px;}
.h32{height:59.165832px;}
.h26{height:59.166190px;}
.h2c{height:59.166312px;}
.h31{height:59.167392px;}
.ha{height:59.581500px;}
.h34{height:60.457148px;}
.h3{height:60.737040px;}
.h1d{height:61.884759px;}
.h35{height:61.899152px;}
.h1e{height:61.914171px;}
.h38{height:64.980000px;}
.h2a{height:65.277672px;}
.h2d{height:65.278272px;}
.h2e{height:65.278872px;}
.h28{height:65.282472px;}
.h29{height:65.283672px;}
.h2b{height:65.284272px;}
.h2f{height:65.284872px;}
.h9{height:69.042960px;}
.h33{height:69.273882px;}
.h15{height:69.279160px;}
.hb{height:70.018500px;}
.h18{height:70.270273px;}
.h36{height:70.605363px;}
.h7{height:77.868000px;}
.h1b{height:81.449184px;}
.h14{height:84.961500px;}
.h13{height:85.138500px;}
.h37{height:85.140000px;}
.h1a{height:87.454807px;}
.h19{height:100.216364px;}
.h5{height:103.824000px;}
.h39{height:135.900000px;}
.h10{height:255.060000px;}
.h12{height:255.061500px;}
.h3e{height:257.400000px;}
.h3b{height:388.980000px;}
.h2{height:1262.866500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:53.892000px;}
.w9{width:345.418500px;}
.w8{width:345.600000px;}
.w3{width:669.958500px;}
.w7{width:691.018500px;}
.w5{width:892.500000px;}
.w4{width:892.830000px;}
.w2{width:892.965000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:8.100000px;}
.x38{left:53.891550px;}
.x15{left:98.100000px;}
.x17{left:106.207920px;}
.x75{left:112.680000px;}
.x4{left:114.300000px;}
.x18{left:119.929800px;}
.x7a{left:127.260000px;}
.x1{left:129.240000px;}
.x1f{left:133.245450px;}
.x19{left:134.954850px;}
.x78{left:139.320000px;}
.x65{left:141.300000px;}
.x66{left:144.000000px;}
.x1a{left:149.889900px;}
.x20{left:160.236450px;}
.x43{left:163.654800px;}
.x1b{left:164.914800px;}
.x45{left:168.873300px;}
.x1e{left:170.403300px;}
.x4a{left:175.981800px;}
.x69{left:177.660000px;}
.x2c{left:179.940964px;}
.x2{left:182.160000px;}
.x62{left:187.227450px;}
.x32{left:188.937444px;}
.x3f{left:191.995518px;}
.x79{left:193.500000px;}
.x2f{left:195.865120px;}
.x3e{left:199.643304px;}
.x77{left:201.960000px;}
.x31{left:203.513094px;}
.x2b{left:206.571450px;}
.x2e{left:211.069950px;}
.x68{left:212.580000px;}
.x41{left:219.706950px;}
.x6a{left:221.580000px;}
.x2d{left:224.296228px;}
.x30{left:228.794728px;}
.x40{left:235.630776px;}
.x44{left:239.769450px;}
.x58{left:244.267950px;}
.xb{left:246.780000px;}
.x5f{left:253.624950px;}
.x6c{left:255.060000px;}
.x56{left:258.213450px;}
.x27{left:259.653450px;}
.x6{left:266.400000px;}
.x64{left:271.620000px;}
.x6b{left:273.240000px;}
.x11{left:280.260000px;}
.x47{left:284.304450px;}
.x48{left:288.083100px;}
.x67{left:292.500000px;}
.x6d{left:304.020000px;}
.x33{left:308.237100px;}
.x60{left:315.884100px;}
.x36{left:318.044100px;}
.x46{left:320.832600px;}
.xc{left:322.020000px;}
.x59{left:323.074140px;}
.x3a{left:325.960861px;}
.x3b{left:327.040531px;}
.x3d{left:332.709724px;}
.x3c{left:336.037778px;}
.x5b{left:339.456600px;}
.x28{left:346.473600px;}
.x2a{left:347.823939px;}
.x5c{left:350.254087px;}
.x24{left:351.781724px;}
.x21{left:353.132250px;}
.x23{left:355.831819px;}
.x22{left:359.880431px;}
.x29{left:364.017644px;}
.x61{left:371.128340px;}
.x6e{left:388.080000px;}
.x4f{left:392.987641px;}
.x4c{left:396.136591px;}
.x63{left:397.980000px;}
.x5a{left:402.698997px;}
.x12{left:406.440000px;}
.x5e{left:408.287063px;}
.x5d{left:413.683585px;}
.x4b{left:415.210231px;}
.x76{left:416.880000px;}
.x42{left:429.336750px;}
.x1c{left:433.565250px;}
.x37{left:442.923000px;}
.x16{left:446.400000px;}
.x5{left:451.800000px;}
.x70{left:472.860000px;}
.x54{left:479.538781px;}
.x52{left:481.066471px;}
.x4e{left:484.217221px;}
.x51{left:488.713921px;}
.x39{left:500.232900px;}
.x3{left:507.602880px;}
.x4d{left:510.938311px;}
.x10{left:525.780000px;}
.x6f{left:538.560000px;}
.x50{left:542.336041px;}
.x74{left:547.560000px;}
.xa{left:551.340000px;}
.x53{left:558.620611px;}
.x49{left:560.693040px;}
.x25{left:562.312050px;}
.x1d{left:567.800550px;}
.x57{left:575.626141px;}
.x34{left:589.123050px;}
.x55{left:594.791700px;}
.x14{left:595.800000px;}
.x13{left:599.760000px;}
.xf{left:613.080000px;}
.x71{left:618.840000px;}
.x72{left:649.620000px;}
.xe{left:686.520000px;}
.x8{left:719.640000px;}
.x26{left:722.997001px;}
.x35{left:724.076641px;}
.x7{left:752.400000px;}
.x73{left:762.480000px;}
.x9{left:775.980000px;}
@media print{
.v6{vertical-align:-21.434667pt;}
.v7{vertical-align:-7.997333pt;}
.v1{vertical-align:-5.524343pt;}
.v3{vertical-align:-1.593577pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.439467pt;}
.v5{vertical-align:21.427522pt;}
.v4{vertical-align:26.869370pt;}
.lse5{letter-spacing:-6.351662pt;}
.lsf2{letter-spacing:-6.339636pt;}
.ls7f{letter-spacing:-5.337780pt;}
.ls62{letter-spacing:-4.448297pt;}
.ls101{letter-spacing:-3.108968pt;}
.lse7{letter-spacing:-1.545712pt;}
.lsf4{letter-spacing:-1.534804pt;}
.ls80{letter-spacing:-1.178357pt;}
.ls115{letter-spacing:-0.771840pt;}
.ls5e{letter-spacing:-0.532698pt;}
.ls10e{letter-spacing:-0.514560pt;}
.lsea{letter-spacing:-0.506445pt;}
.ls1a{letter-spacing:-0.478080pt;}
.lsec{letter-spacing:-0.464241pt;}
.lsf8{letter-spacing:-0.464133pt;}
.lsfc{letter-spacing:-0.458859pt;}
.ls82{letter-spacing:-0.457273pt;}
.ls69{letter-spacing:-0.453800pt;}
.lse9{letter-spacing:-0.453690pt;}
.lsf0{letter-spacing:-0.448415pt;}
.lsf7{letter-spacing:-0.448310pt;}
.ls92{letter-spacing:-0.447851pt;}
.lse6{letter-spacing:-0.443139pt;}
.lsfd{letter-spacing:-0.443036pt;}
.lsf3{letter-spacing:-0.437762pt;}
.ls64{letter-spacing:-0.432693pt;}
.lsef{letter-spacing:-0.432588pt;}
.ls68{letter-spacing:-0.427416pt;}
.lsff{letter-spacing:-0.427213pt;}
.ls63{letter-spacing:-0.411586pt;}
.ls67{letter-spacing:-0.406309pt;}
.ls66{letter-spacing:-0.385203pt;}
.ls65{letter-spacing:-0.364096pt;}
.lseb{letter-spacing:-0.342905pt;}
.lsfb{letter-spacing:-0.332277pt;}
.ls5{letter-spacing:-0.294400pt;}
.ls17{letter-spacing:-0.265600pt;}
.lsb6{letter-spacing:-0.258251pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsd0{letter-spacing:-0.255915pt;}
.ls112{letter-spacing:-0.214400pt;}
.ls114{letter-spacing:-0.171520pt;}
.ls15{letter-spacing:-0.170240pt;}
.lsc2{letter-spacing:-0.159947pt;}
.lsa2{letter-spacing:-0.140753pt;}
.ls97{letter-spacing:-0.138833pt;}
.ls10f{letter-spacing:-0.128640pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls35{letter-spacing:-0.127957pt;}
.ls34{letter-spacing:-0.121559pt;}
.ls36{letter-spacing:-0.115162pt;}
.ls41{letter-spacing:-0.108764pt;}
.ls1b{letter-spacing:-0.106240pt;}
.ls39{letter-spacing:-0.102366pt;}
.lsa{letter-spacing:-0.096000pt;}
.lsaa{letter-spacing:-0.095968pt;}
.ls4d{letter-spacing:-0.093952pt;}
.ls9f{letter-spacing:-0.089827pt;}
.ls3d{letter-spacing:-0.089570pt;}
.lsa3{letter-spacing:-0.086084pt;}
.ls3e{letter-spacing:-0.083172pt;}
.ls3b{letter-spacing:-0.076774pt;}
.ls59{letter-spacing:-0.076358pt;}
.ls53{letter-spacing:-0.070377pt;}
.ls73{letter-spacing:-0.069417pt;}
.lsd9{letter-spacing:-0.068329pt;}
.ls90{letter-spacing:-0.063979pt;}
.ls6{letter-spacing:-0.058880pt;}
.ls3a{letter-spacing:-0.057581pt;}
.lsa0{letter-spacing:-0.056142pt;}
.ls9e{letter-spacing:-0.055533pt;}
.ls19{letter-spacing:-0.053120pt;}
.ls81{letter-spacing:-0.052762pt;}
.ls57{letter-spacing:-0.051247pt;}
.ls37{letter-spacing:-0.051183pt;}
.lsad{letter-spacing:-0.048656pt;}
.lsa9{letter-spacing:-0.044913pt;}
.ls38{letter-spacing:-0.044785pt;}
.ls83{letter-spacing:-0.042436pt;}
.ls40{letter-spacing:-0.038387pt;}
.ls6b{letter-spacing:-0.037191pt;}
.ls74{letter-spacing:-0.037146pt;}
.ls33{letter-spacing:-0.034164pt;}
.lsab{letter-spacing:-0.033685pt;}
.ls3c{letter-spacing:-0.031989pt;}
.lsb7{letter-spacing:-0.029942pt;}
.ls91{letter-spacing:-0.026199pt;}
.ls4f{letter-spacing:-0.025591pt;}
.ls4c{letter-spacing:-0.023416pt;}
.lsa4{letter-spacing:-0.022457pt;}
.ls51{letter-spacing:-0.019194pt;}
.lsa1{letter-spacing:-0.018714pt;}
.ls60{letter-spacing:-0.017562pt;}
.ls6a{letter-spacing:-0.015943pt;}
.lsa5{letter-spacing:-0.014971pt;}
.lsbf{letter-spacing:-0.013883pt;}
.ls4e{letter-spacing:-0.012796pt;}
.ls52{letter-spacing:-0.007486pt;}
.ls50{letter-spacing:-0.006398pt;}
.ls2{letter-spacing:0.000000pt;}
.ls87{letter-spacing:0.001885pt;}
.ls5f{letter-spacing:0.005854pt;}
.ls45{letter-spacing:0.006398pt;}
.ls102{letter-spacing:0.008541pt;}
.lsa7{letter-spacing:0.011228pt;}
.ls44{letter-spacing:0.012796pt;}
.ls55{letter-spacing:0.014907pt;}
.lsbb{letter-spacing:0.014971pt;}
.ls47{letter-spacing:0.018714pt;}
.ls43{letter-spacing:0.019194pt;}
.ls2d{letter-spacing:0.020217pt;}
.ls8b{letter-spacing:0.022360pt;}
.ls9a{letter-spacing:0.022463pt;}
.lsb9{letter-spacing:0.022996pt;}
.ls6d{letter-spacing:0.023416pt;}
.ls14{letter-spacing:0.024320pt;}
.ls4b{letter-spacing:0.025591pt;}
.lsc1{letter-spacing:0.026199pt;}
.ls9b{letter-spacing:0.027796pt;}
.lsdf{letter-spacing:0.029270pt;}
.lsb8{letter-spacing:0.029942pt;}
.ls48{letter-spacing:0.031989pt;}
.ls24{letter-spacing:0.035380pt;}
.ls32{letter-spacing:0.038387pt;}
.ls29{letter-spacing:0.040434pt;}
.ls5a{letter-spacing:0.040978pt;}
.ls49{letter-spacing:0.041171pt;}
.ls10d{letter-spacing:0.042880pt;}
.ls58{letter-spacing:0.044721pt;}
.ls9c{letter-spacing:0.044785pt;}
.ls23{letter-spacing:0.045489pt;}
.ls27{letter-spacing:0.050543pt;}
.ls4a{letter-spacing:0.051183pt;}
.lsde{letter-spacing:0.052174pt;}
.ls18{letter-spacing:0.053120pt;}
.ls26{letter-spacing:0.055597pt;}
.ls8c{letter-spacing:0.057581pt;}
.lsb0{letter-spacing:0.058098pt;}
.ls79{letter-spacing:0.058349pt;}
.ls98{letter-spacing:0.058541pt;}
.lsca{letter-spacing:0.058631pt;}
.ls89{letter-spacing:0.059392pt;}
.lsda{letter-spacing:0.059628pt;}
.ls2e{letter-spacing:0.059819pt;}
.lscf{letter-spacing:0.059884pt;}
.lsa6{letter-spacing:0.061205pt;}
.ls31{letter-spacing:0.062699pt;}
.lscb{letter-spacing:0.062898pt;}
.lsae{letter-spacing:0.063431pt;}
.ls94{letter-spacing:0.063627pt;}
.ls2c{letter-spacing:0.063765pt;}
.ls93{letter-spacing:0.063979pt;}
.ls8e{letter-spacing:0.064192pt;}
.lsb4{letter-spacing:0.064725pt;}
.lsc4{letter-spacing:0.065259pt;}
.ls96{letter-spacing:0.067081pt;}
.ls99{letter-spacing:0.067179pt;}
.ls4{letter-spacing:0.074880pt;}
.ls2f{letter-spacing:0.075814pt;}
.lsdc{letter-spacing:0.076774pt;}
.ls30{letter-spacing:0.080869pt;}
.lsc9{letter-spacing:0.083172pt;}
.lse{letter-spacing:0.085760pt;}
.lsc8{letter-spacing:0.089570pt;}
.lsb5{letter-spacing:0.097312pt;}
.lsbe{letter-spacing:0.102794pt;}
.lsbd{letter-spacing:0.103327pt;}
.lsc3{letter-spacing:0.104798pt;}
.ls77{letter-spacing:0.106090pt;}
.ls1d{letter-spacing:0.106240pt;}
.ls2b{letter-spacing:0.111194pt;}
.ls7a{letter-spacing:0.122003pt;}
.ls22{letter-spacing:0.127851pt;}
.ls46{letter-spacing:0.127957pt;}
.lsd{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.128277pt;}
.ls111{letter-spacing:0.128640pt;}
.lsc6{letter-spacing:0.129451pt;}
.ls103{letter-spacing:0.133502pt;}
.ls7b{letter-spacing:0.143221pt;}
.ls8f{letter-spacing:0.147151pt;}
.ls78{letter-spacing:0.148525pt;}
.ls10b{letter-spacing:0.149760pt;}
.ls71{letter-spacing:0.159198pt;}
.ls105{letter-spacing:0.159360pt;}
.ls72{letter-spacing:0.164505pt;}
.lsd2{letter-spacing:0.164682pt;}
.ls86{letter-spacing:0.172742pt;}
.ls28{letter-spacing:0.191403pt;}
.lsac{letter-spacing:0.191936pt;}
.ls2a{letter-spacing:0.192469pt;}
.ls70{letter-spacing:0.196345pt;}
.ls88{letter-spacing:0.196577pt;}
.ls6e{letter-spacing:0.202110pt;}
.ls10c{letter-spacing:0.212480pt;}
.ls107{letter-spacing:0.214400pt;}
.lsba{letter-spacing:0.223925pt;}
.lsb1{letter-spacing:0.224566pt;}
.lsd3{letter-spacing:0.226796pt;}
.ls113{letter-spacing:0.240000pt;}
.lscc{letter-spacing:0.243113pt;}
.ls7c{letter-spacing:0.249311pt;}
.ls104{letter-spacing:0.254976pt;}
.ls9{letter-spacing:0.256000pt;}
.ls106{letter-spacing:0.257280pt;}
.lsb{letter-spacing:0.258560pt;}
.lsc{letter-spacing:0.265600pt;}
.ls1e{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.299520pt;}
.ls110{letter-spacing:0.300160pt;}
.lsb2{letter-spacing:0.308906pt;}
.ls6f{letter-spacing:0.314040pt;}
.lsc5{letter-spacing:0.314239pt;}
.ls1c{letter-spacing:0.318720pt;}
.ls109{letter-spacing:0.325888pt;}
.ls16{letter-spacing:0.340480pt;}
.ls9d{letter-spacing:0.342463pt;}
.lsc0{letter-spacing:0.344335pt;}
.lsbc{letter-spacing:0.380521pt;}
.lsc7{letter-spacing:0.383431pt;}
.ls8d{letter-spacing:0.385321pt;}
.lsb3{letter-spacing:0.422794pt;}
.ls85{letter-spacing:0.440272pt;}
.ls3f{letter-spacing:0.447851pt;}
.ls76{letter-spacing:0.551888pt;}
.ls75{letter-spacing:0.604954pt;}
.ls6c{letter-spacing:0.605684pt;}
.ls7d{letter-spacing:1.297072pt;}
.ls5d{letter-spacing:1.402948pt;}
.ls5c{letter-spacing:1.429319pt;}
.lse3{letter-spacing:1.429651pt;}
.lsfa{letter-spacing:1.439868pt;}
.lse4{letter-spacing:1.450753pt;}
.lsf1{letter-spacing:1.471513pt;}
.ls61{letter-spacing:1.519703pt;}
.lsee{letter-spacing:1.529885pt;}
.lsf6{letter-spacing:1.534804pt;}
.lsfe{letter-spacing:1.540078pt;}
.lsce{letter-spacing:1.661791pt;}
.ls13{letter-spacing:2.178560pt;}
.lsf9{letter-spacing:3.270029pt;}
.lsed{letter-spacing:4.294230pt;}
.lsf5{letter-spacing:4.303780pt;}
.ls7e{letter-spacing:4.717824pt;}
.lsdd{letter-spacing:7.229589pt;}
.ls10{letter-spacing:7.914880pt;}
.ls0{letter-spacing:7.937280pt;}
.lsf{letter-spacing:8.578560pt;}
.lsaf{letter-spacing:10.108629pt;}
.ls11{letter-spacing:20.079360pt;}
.ls95{letter-spacing:21.331701pt;}
.ls12{letter-spacing:23.319680pt;}
.ls1{letter-spacing:27.173120pt;}
.lscd{letter-spacing:27.702763pt;}
.ls56{letter-spacing:30.462427pt;}
.ls42{letter-spacing:43.756158pt;}
.ls54{letter-spacing:44.072179pt;}
.ls100{letter-spacing:57.580800pt;}
.lsd4{letter-spacing:59.180267pt;}
.ls20{letter-spacing:60.345366pt;}
.ls5b{letter-spacing:66.537813pt;}
.ls21{letter-spacing:67.703233pt;}
.lsd5{letter-spacing:71.976000pt;}
.ls25{letter-spacing:78.578433pt;}
.ls108{letter-spacing:97.809280pt;}
.ls8a{letter-spacing:100.318549pt;}
.ls10a{letter-spacing:104.841600pt;}
.lsd1{letter-spacing:121.111616pt;}
.lse8{letter-spacing:130.108834pt;}
.lsa8{letter-spacing:175.173589pt;}
.lse2{letter-spacing:196.558613pt;}
.lse1{letter-spacing:196.563888pt;}
.lsd7{letter-spacing:204.291987pt;}
.lse0{letter-spacing:225.404864pt;}
.ls84{letter-spacing:285.540158pt;}
.lsd6{letter-spacing:754.181056pt;}
.lsdb{letter-spacing:857.824789pt;}
.lsd8{letter-spacing:1194.673643pt;}
.wsed{word-spacing:-285.593203pt;}
.ws211{word-spacing:-144.774632pt;}
.ws212{word-spacing:-52.754667pt;}
.ws2{word-spacing:-26.112000pt;}
.ws3{word-spacing:-19.392000pt;}
.wse{word-spacing:-17.534720pt;}
.ws4c{word-spacing:-17.253062pt;}
.ws25c{word-spacing:-15.275520pt;}
.ws0{word-spacing:-15.200640pt;}
.ws94{word-spacing:-15.070964pt;}
.ws30{word-spacing:-14.011328pt;}
.ws114{word-spacing:-13.883307pt;}
.ws16a{word-spacing:-13.691435pt;}
.ws16b{word-spacing:-13.614660pt;}
.ws31{word-spacing:-13.601865pt;}
.ws29{word-spacing:-13.563477pt;}
.ws2e{word-spacing:-13.441918pt;}
.ws41{word-spacing:-13.122025pt;}
.ws11{word-spacing:-13.056000pt;}
.wsfd{word-spacing:-12.981271pt;}
.ws258{word-spacing:-12.962078pt;}
.wsd{word-spacing:-12.928000pt;}
.ws1e8{word-spacing:-12.923691pt;}
.ws257{word-spacing:-12.904497pt;}
.wsfb{word-spacing:-12.898099pt;}
.ws256{word-spacing:-12.827723pt;}
.wsf{word-spacing:-12.672000pt;}
.ws47{word-spacing:-12.482238pt;}
.ws1{word-spacing:-12.423680pt;}
.ws3b{word-spacing:-11.842451pt;}
.ws12{word-spacing:-11.580160pt;}
.ws2b{word-spacing:-11.528956pt;}
.wsc{word-spacing:-11.527040pt;}
.ws1fb{word-spacing:-11.324224pt;}
.ws10{word-spacing:-11.314560pt;}
.ws25d{word-spacing:-11.261440pt;}
.ws25e{word-spacing:-11.208320pt;}
.ws14{word-spacing:-11.048960pt;}
.wse8{word-spacing:-11.044896pt;}
.ws25f{word-spacing:-10.995840pt;}
.ws42{word-spacing:-10.914761pt;}
.ws3c{word-spacing:-10.901965pt;}
.ws4a{word-spacing:-10.895567pt;}
.ws49{word-spacing:-10.889169pt;}
.ws43{word-spacing:-10.882771pt;}
.ws13{word-spacing:-10.836480pt;}
.ws2d{word-spacing:-10.826296pt;}
.ws2f{word-spacing:-10.790916pt;}
.ws2c{word-spacing:-10.770699pt;}
.ws2a{word-spacing:-10.750482pt;}
.ws260{word-spacing:-10.677120pt;}
.ws1a9{word-spacing:-9.980672pt;}
.ws3d{word-spacing:-9.923091pt;}
.ws263{word-spacing:-9.390720pt;}
.ws262{word-spacing:-9.304960pt;}
.ws259{word-spacing:-9.289702pt;}
.ws266{word-spacing:-9.219200pt;}
.ws265{word-spacing:-8.919040pt;}
.ws264{word-spacing:-8.876160pt;}
.ws261{word-spacing:-8.576000pt;}
.ws22f{word-spacing:-8.322751pt;}
.ws267{word-spacing:-8.318720pt;}
.ws214{word-spacing:-8.314135pt;}
.ws1d6{word-spacing:-8.099361pt;}
.ws1a6{word-spacing:-7.960879pt;}
.wsd3{word-spacing:-7.934679pt;}
.ws4d{word-spacing:-7.927194pt;}
.wsfc{word-spacing:-7.908480pt;}
.ws12c{word-spacing:-7.844853pt;}
.ws25a{word-spacing:-7.037653pt;}
.ws34{word-spacing:-6.730556pt;}
.ws36{word-spacing:-6.717760pt;}
.ws3f{word-spacing:-5.809263pt;}
.ws45{word-spacing:-5.802865pt;}
.ws25b{word-spacing:-5.131089pt;}
.wsfa{word-spacing:-5.091556pt;}
.ws229{word-spacing:-4.521075pt;}
.ws33{word-spacing:-4.478507pt;}
.ws48{word-spacing:-4.165011pt;}
.ws235{word-spacing:-3.491547pt;}
.ws18a{word-spacing:-3.339686pt;}
.ws123{word-spacing:-3.320493pt;}
.ws158{word-spacing:-3.275708pt;}
.wsa2{word-spacing:-3.269310pt;}
.ws24a{word-spacing:-3.262912pt;}
.wsf8{word-spacing:-3.237321pt;}
.ws223{word-spacing:-3.211729pt;}
.ws4b{word-spacing:-3.205331pt;}
.ws224{word-spacing:-3.160546pt;}
.ws1e4{word-spacing:-3.045385pt;}
.ws6b{word-spacing:-3.032589pt;}
.ws8f{word-spacing:-3.006997pt;}
.ws18f{word-spacing:-3.000599pt;}
.ws17b{word-spacing:-2.955814pt;}
.ws1dd{word-spacing:-2.949417pt;}
.ws4f{word-spacing:-2.923825pt;}
.wse4{word-spacing:-2.917427pt;}
.ws6a{word-spacing:-2.904631pt;}
.ws7f{word-spacing:-2.879040pt;}
.ws8d{word-spacing:-2.674308pt;}
.ws24e{word-spacing:-2.667910pt;}
.ws1aa{word-spacing:-2.642319pt;}
.ws1b3{word-spacing:-2.635921pt;}
.ws93{word-spacing:-2.623125pt;}
.ws8a{word-spacing:-2.533555pt;}
.ws1a3{word-spacing:-2.373609pt;}
.ws70{word-spacing:-2.367211pt;}
.ws1d9{word-spacing:-2.354415pt;}
.ws19e{word-spacing:-2.348017pt;}
.ws245{word-spacing:-2.335221pt;}
.ws205{word-spacing:-2.322426pt;}
.ws1f7{word-spacing:-2.316028pt;}
.ws11a{word-spacing:-2.290436pt;}
.ws1a0{word-spacing:-2.284038pt;}
.ws1f9{word-spacing:-2.258447pt;}
.ws51{word-spacing:-2.245651pt;}
.ws19f{word-spacing:-2.239253pt;}
.ws1ed{word-spacing:-2.226458pt;}
.ws1a2{word-spacing:-2.207264pt;}
.wsf5{word-spacing:-2.047317pt;}
.ws58{word-spacing:-2.040919pt;}
.wscd{word-spacing:-2.034522pt;}
.wse3{word-spacing:-2.021726pt;}
.ws17c{word-spacing:-2.008930pt;}
.ws7d{word-spacing:-1.996134pt;}
.ws184{word-spacing:-1.970543pt;}
.ws96{word-spacing:-1.938554pt;}
.ws32{word-spacing:-1.925758pt;}
.ws26{word-spacing:-1.912320pt;}
.ws1fe{word-spacing:-1.765811pt;}
.ws234{word-spacing:-1.756322pt;}
.ws1f3{word-spacing:-1.721026pt;}
.wsc2{word-spacing:-1.708230pt;}
.ws67{word-spacing:-1.695435pt;}
.ws233{word-spacing:-1.693031pt;}
.ws210{word-spacing:-1.682639pt;}
.ws226{word-spacing:-1.677598pt;}
.ws10c{word-spacing:-1.657047pt;}
.ws1ae{word-spacing:-1.650650pt;}
.ws1e2{word-spacing:-1.631456pt;}
.wsce{word-spacing:-1.618660pt;}
.ws13c{word-spacing:-1.420326pt;}
.ws182{word-spacing:-1.401133pt;}
.wsa4{word-spacing:-1.394735pt;}
.ws24b{word-spacing:-1.388337pt;}
.ws1e6{word-spacing:-1.369143pt;}
.wsa5{word-spacing:-1.362746pt;}
.ws17e{word-spacing:-1.356348pt;}
.ws1e7{word-spacing:-1.349950pt;}
.ws154{word-spacing:-1.317961pt;}
.wse6{word-spacing:-1.305165pt;}
.ws3a{word-spacing:-1.279573pt;}
.ws23{word-spacing:-1.274880pt;}
.ws13e{word-spacing:-1.273175pt;}
.ws1a1{word-spacing:-1.231372pt;}
.ws1ab{word-spacing:-1.126025pt;}
.ws1ac{word-spacing:-1.106831pt;}
.ws183{word-spacing:-1.094035pt;}
.ws108{word-spacing:-1.087637pt;}
.ws1ad{word-spacing:-1.074842pt;}
.wsb4{word-spacing:-1.068444pt;}
.ws167{word-spacing:-1.049250pt;}
.wsf7{word-spacing:-1.042852pt;}
.wsd0{word-spacing:-1.036454pt;}
.wsc4{word-spacing:-1.023659pt;}
.ws122{word-spacing:-1.017261pt;}
.ws107{word-spacing:-1.004465pt;}
.ws272{word-spacing:-0.864000pt;}
.ws26e{word-spacing:-0.814720pt;}
.ws230{word-spacing:-0.774142pt;}
.ws1ec{word-spacing:-0.761346pt;}
.ws78{word-spacing:-0.754948pt;}
.ws127{word-spacing:-0.716561pt;}
.ws89{word-spacing:-0.697367pt;}
.ws53{word-spacing:-0.684572pt;}
.ws1ce{word-spacing:-0.665378pt;}
.ws25{word-spacing:-0.637440pt;}
.ws129{word-spacing:-0.620593pt;}
.ws166{word-spacing:-0.527731pt;}
.wsf2{word-spacing:-0.493317pt;}
.ws13d{word-spacing:-0.490303pt;}
.ws1d7{word-spacing:-0.454249pt;}
.ws14e{word-spacing:-0.447851pt;}
.ws18c{word-spacing:-0.435055pt;}
.ws26f{word-spacing:-0.428800pt;}
.wsa0{word-spacing:-0.428657pt;}
.ws8e{word-spacing:-0.409463pt;}
.ws188{word-spacing:-0.403066pt;}
.ws7e{word-spacing:-0.396668pt;}
.ws126{word-spacing:-0.371076pt;}
.ws14c{word-spacing:-0.364678pt;}
.ws9f{word-spacing:-0.345485pt;}
.ws1c9{word-spacing:-0.319893pt;}
.wsf3{word-spacing:-0.302355pt;}
.ws20f{word-spacing:-0.300700pt;}
.ws7{word-spacing:-0.294400pt;}
.wsfe{word-spacing:-0.275108pt;}
.ws24{word-spacing:-0.265600pt;}
.ws270{word-spacing:-0.257280pt;}
.wsa{word-spacing:-0.256000pt;}
.ws178{word-spacing:-0.250766pt;}
.wsd6{word-spacing:-0.249411pt;}
.ws14d{word-spacing:-0.243280pt;}
.ws28{word-spacing:-0.240000pt;}
.ws46{word-spacing:-0.237552pt;}
.ws141{word-spacing:-0.236721pt;}
.wsd8{word-spacing:-0.217571pt;}
.ws39{word-spacing:-0.212280pt;}
.ws133{word-spacing:-0.208250pt;}
.ws77{word-spacing:-0.204732pt;}
.ws35{word-spacing:-0.202172pt;}
.ws271{word-spacing:-0.192000pt;}
.ws1bf{word-spacing:-0.191936pt;}
.ws192{word-spacing:-0.185538pt;}
.ws65{word-spacing:-0.179140pt;}
.wsf0{word-spacing:-0.175048pt;}
.ws1d5{word-spacing:-0.172742pt;}
.ws26d{word-spacing:-0.171520pt;}
.ws15a{word-spacing:-0.166345pt;}
.ws62{word-spacing:-0.159947pt;}
.wsee{word-spacing:-0.159134pt;}
.ws10e{word-spacing:-0.153549pt;}
.ws10f{word-spacing:-0.147151pt;}
.ws38{word-spacing:-0.140753pt;}
.ws57{word-spacing:-0.134355pt;}
.ws97{word-spacing:-0.127957pt;}
.ws90{word-spacing:-0.121559pt;}
.ws82{word-spacing:-0.115162pt;}
.ws9a{word-spacing:-0.108764pt;}
.ws15c{word-spacing:-0.102366pt;}
.wsb{word-spacing:-0.096000pt;}
.ws40{word-spacing:-0.095968pt;}
.wsb5{word-spacing:-0.089570pt;}
.ws1d8{word-spacing:-0.089442pt;}
.ws69{word-spacing:-0.083172pt;}
.ws1e9{word-spacing:-0.081988pt;}
.ws37{word-spacing:-0.076774pt;}
.ws6{word-spacing:-0.074880pt;}
.ws209{word-spacing:-0.074535pt;}
.ws44{word-spacing:-0.070377pt;}
.ws9c{word-spacing:-0.067081pt;}
.ws5d{word-spacing:-0.063979pt;}
.ws87{word-spacing:-0.057581pt;}
.ws26a{word-spacing:-0.053120pt;}
.ws128{word-spacing:-0.051183pt;}
.wse0{word-spacing:-0.044785pt;}
.ws132{word-spacing:-0.038387pt;}
.wsbf{word-spacing:-0.037200pt;}
.ws8c{word-spacing:-0.031989pt;}
.wsae{word-spacing:-0.029270pt;}
.ws1b4{word-spacing:-0.025591pt;}
.ws63{word-spacing:-0.019194pt;}
.ws225{word-spacing:-0.017562pt;}
.wsca{word-spacing:-0.015939pt;}
.wsd4{word-spacing:-0.015920pt;}
.wsb2{word-spacing:-0.012796pt;}
.wsd9{word-spacing:-0.011708pt;}
.wsec{word-spacing:-0.010609pt;}
.wsdc{word-spacing:-0.006942pt;}
.ws80{word-spacing:-0.006398pt;}
.ws4{word-spacing:0.000000pt;}
.wsc8{word-spacing:0.005854pt;}
.wsc7{word-spacing:0.006398pt;}
.wsf4{word-spacing:0.011708pt;}
.ws110{word-spacing:0.012796pt;}
.ws64{word-spacing:0.022457pt;}
.ws5f{word-spacing:0.025591pt;}
.wsc1{word-spacing:0.029270pt;}
.ws138{word-spacing:0.031989pt;}
.ws191{word-spacing:0.033685pt;}
.ws153{word-spacing:0.038387pt;}
.ws274{word-spacing:0.042880pt;}
.wsa3{word-spacing:0.044785pt;}
.ws61{word-spacing:0.044913pt;}
.ws71{word-spacing:0.051183pt;}
.ws164{word-spacing:0.052399pt;}
.ws1b{word-spacing:0.053120pt;}
.ws15b{word-spacing:0.057581pt;}
.ws16e{word-spacing:0.067370pt;}
.ws187{word-spacing:0.069417pt;}
.ws145{word-spacing:0.071113pt;}
.ws170{word-spacing:0.076774pt;}
.ws115{word-spacing:0.081956pt;}
.ws13b{word-spacing:0.082341pt;}
.ws273{word-spacing:0.085760pt;}
.ws146{word-spacing:0.086084pt;}
.ws4e{word-spacing:0.087810pt;}
.ws137{word-spacing:0.089827pt;}
.ws16f{word-spacing:0.093569pt;}
.ws151{word-spacing:0.097312pt;}
.ws269{word-spacing:0.106240pt;}
.ws14f{word-spacing:0.108540pt;}
.ws1db{word-spacing:0.108764pt;}
.ws106{word-spacing:0.111802pt;}
.ws144{word-spacing:0.115162pt;}
.ws139{word-spacing:0.119769pt;}
.ws9{word-spacing:0.128000pt;}
.ws117{word-spacing:0.140753pt;}
.ws275{word-spacing:0.144000pt;}
.ws157{word-spacing:0.159947pt;}
.wsa6{word-spacing:0.179140pt;}
.ws12f{word-spacing:0.191936pt;}
.ws1e5{word-spacing:0.204732pt;}
.ws169{word-spacing:0.211130pt;}
.ws26c{word-spacing:0.212480pt;}
.ws276{word-spacing:0.214400pt;}
.ws23a{word-spacing:0.217527pt;}
.ws5{word-spacing:0.224640pt;}
.ws79{word-spacing:0.236721pt;}
.ws15{word-spacing:0.255360pt;}
.ws5c{word-spacing:0.255915pt;}
.ws18{word-spacing:0.265600pt;}
.wsf6{word-spacing:0.281506pt;}
.ws27{word-spacing:0.318720pt;}
.ws1bb{word-spacing:0.319893pt;}
.ws26b{word-spacing:0.424960pt;}
.ws1f{word-spacing:0.478080pt;}
.wse5{word-spacing:0.499034pt;}
.ws15e{word-spacing:0.518227pt;}
.ws24d{word-spacing:0.524625pt;}
.ws19c{word-spacing:0.531023pt;}
.ws21{word-spacing:0.531200pt;}
.ws91{word-spacing:0.537421pt;}
.ws252{word-spacing:0.543819pt;}
.ws3e{word-spacing:0.569410pt;}
.ws8{word-spacing:0.588800pt;}
.ws19b{word-spacing:0.607797pt;}
.ws186{word-spacing:0.633389pt;}
.ws19d{word-spacing:0.639787pt;}
.ws1b2{word-spacing:0.767744pt;}
.ws1b0{word-spacing:0.818927pt;}
.wsa1{word-spacing:0.825325pt;}
.ws142{word-spacing:0.831723pt;}
.ws1b1{word-spacing:0.850916pt;}
.ws73{word-spacing:0.863712pt;}
.ws1e0{word-spacing:0.921293pt;}
.ws16{word-spacing:0.936320pt;}
.ws196{word-spacing:1.006806pt;}
.ws1c1{word-spacing:1.040491pt;}
.ws1d4{word-spacing:1.126025pt;}
.ws55{word-spacing:1.151616pt;}
.wsdf{word-spacing:1.170810pt;}
.ws1f2{word-spacing:1.183605pt;}
.ws1b8{word-spacing:1.196401pt;}
.ws9d{word-spacing:1.209197pt;}
.ws194{word-spacing:1.247584pt;}
.wsaf{word-spacing:1.305165pt;}
.ws240{word-spacing:1.313286pt;}
.ws22a{word-spacing:1.318867pt;}
.ws20a{word-spacing:1.349950pt;}
.ws1c0{word-spacing:1.381939pt;}
.ws1c2{word-spacing:1.401133pt;}
.wsd2{word-spacing:1.458714pt;}
.ws1df{word-spacing:1.484305pt;}
.ws6d{word-spacing:1.522692pt;}
.ws250{word-spacing:1.529090pt;}
.ws195{word-spacing:1.535488pt;}
.ws9b{word-spacing:1.541886pt;}
.ws6c{word-spacing:1.593069pt;}
.ws193{word-spacing:1.669843pt;}
.wsde{word-spacing:1.765811pt;}
.wsdd{word-spacing:1.791403pt;}
.ws23c{word-spacing:1.797801pt;}
.ws95{word-spacing:1.810596pt;}
.ws19a{word-spacing:1.816994pt;}
.ws177{word-spacing:1.842586pt;}
.ws1c4{word-spacing:1.848983pt;}
.ws121{word-spacing:1.855381pt;}
.ws199{word-spacing:1.893769pt;}
.ws22{word-spacing:1.912320pt;}
.ws1e1{word-spacing:1.932156pt;}
.ws23b{word-spacing:1.964145pt;}
.ws222{word-spacing:2.098500pt;}
.ws204{word-spacing:2.104898pt;}
.ws207{word-spacing:2.111296pt;}
.ws92{word-spacing:2.117694pt;}
.ws203{word-spacing:2.124092pt;}
.ws174{word-spacing:2.130490pt;}
.ws149{word-spacing:2.136887pt;}
.wsb3{word-spacing:2.156081pt;}
.ws7b{word-spacing:2.162479pt;}
.wsc6{word-spacing:2.168877pt;}
.ws12d{word-spacing:2.175275pt;}
.ws14b{word-spacing:2.181673pt;}
.ws125{word-spacing:2.188070pt;}
.ws14a{word-spacing:2.207264pt;}
.ws1cc{word-spacing:2.405598pt;}
.ws86{word-spacing:2.418394pt;}
.ws18b{word-spacing:2.424791pt;}
.wsc3{word-spacing:2.431189pt;}
.ws160{word-spacing:2.450383pt;}
.ws109{word-spacing:2.456781pt;}
.ws1bd{word-spacing:2.469577pt;}
.ws9e{word-spacing:2.482372pt;}
.ws50{word-spacing:2.495168pt;}
.ws1bc{word-spacing:2.507964pt;}
.ws1cb{word-spacing:2.520759pt;}
.ws1c7{word-spacing:2.699900pt;}
.ws1ea{word-spacing:2.712695pt;}
.ws241{word-spacing:2.738287pt;}
.ws155{word-spacing:2.744685pt;}
.ws163{word-spacing:2.757481pt;}
.ws17a{word-spacing:2.763878pt;}
.ws76{word-spacing:2.776674pt;}
.ws244{word-spacing:2.789470pt;}
.ws1c6{word-spacing:2.808663pt;}
.ws66{word-spacing:2.821459pt;}
.ws18d{word-spacing:2.859846pt;}
.ws140{word-spacing:2.968019pt;}
.ws84{word-spacing:3.096567pt;}
.ws1eb{word-spacing:3.102965pt;}
.ws83{word-spacing:3.115761pt;}
.ws59{word-spacing:3.122159pt;}
.ws11d{word-spacing:3.147750pt;}
.ws11c{word-spacing:3.371676pt;}
.ws1f0{word-spacing:3.384471pt;}
.ws232{word-spacing:3.390869pt;}
.ws118{word-spacing:3.397267pt;}
.ws54{word-spacing:3.403665pt;}
.ws1f1{word-spacing:3.416461pt;}
.ws52{word-spacing:3.429257pt;}
.ws68{word-spacing:3.442052pt;}
.ws12b{word-spacing:3.448450pt;}
.wsf9{word-spacing:3.461246pt;}
.ws7a{word-spacing:3.493235pt;}
.ws1fc{word-spacing:3.704365pt;}
.ws75{word-spacing:3.729956pt;}
.wsc5{word-spacing:3.736354pt;}
.ws23e{word-spacing:3.742752pt;}
.ws1f4{word-spacing:3.774741pt;}
.ws168{word-spacing:3.781139pt;}
.ws1b5{word-spacing:3.787537pt;}
.ws13a{word-spacing:3.813129pt;}
.ws113{word-spacing:4.024258pt;}
.ws8b{word-spacing:4.043452pt;}
.ws1d2{word-spacing:4.062645pt;}
.ws7c{word-spacing:4.069043pt;}
.ws254{word-spacing:4.088237pt;}
.ws24c{word-spacing:4.184205pt;}
.wse7{word-spacing:4.242963pt;}
.ws100{word-spacing:4.254581pt;}
.ws246{word-spacing:4.312162pt;}
.ws102{word-spacing:4.318560pt;}
.ws185{word-spacing:4.331356pt;}
.ws85{word-spacing:4.369743pt;}
.ws176{word-spacing:4.376141pt;}
.ws156{word-spacing:4.401732pt;}
.ws98{word-spacing:4.408130pt;}
.ws101{word-spacing:4.420926pt;}
.wsff{word-spacing:4.574475pt;}
.ws18e{word-spacing:4.708830pt;}
.ws5a{word-spacing:4.740819pt;}
.ws12e{word-spacing:4.779206pt;}
.ws1fd{word-spacing:4.977540pt;}
.ws23d{word-spacing:4.996734pt;}
.ws13f{word-spacing:5.015927pt;}
.ws255{word-spacing:5.028723pt;}
.ws173{word-spacing:5.035121pt;}
.ws200{word-spacing:5.079906pt;}
.ws243{word-spacing:5.118293pt;}
.ws17f{word-spacing:5.297434pt;}
.ws161{word-spacing:5.303831pt;}
.ws251{word-spacing:5.329423pt;}
.ws5b{word-spacing:5.431789pt;}
.ws180{word-spacing:5.444585pt;}
.ws1ff{word-spacing:5.649316pt;}
.ws143{word-spacing:5.655714pt;}
.wsdb{word-spacing:5.694101pt;}
.ws124{word-spacing:5.706897pt;}
.ws134{word-spacing:5.745284pt;}
.ws20b{word-spacing:5.937220pt;}
.ws6f{word-spacing:5.943618pt;}
.ws12a{word-spacing:5.956414pt;}
.ws11b{word-spacing:5.975607pt;}
.ws23f{word-spacing:6.118118pt;}
.ws1b6{word-spacing:6.263511pt;}
.ws1b9{word-spacing:6.276307pt;}
.ws162{word-spacing:6.289103pt;}
.ws1dc{word-spacing:6.308297pt;}
.ws130{word-spacing:6.321092pt;}
.ws11e{word-spacing:6.340286pt;}
.ws1d3{word-spacing:6.583405pt;}
.ws1a7{word-spacing:6.596201pt;}
.ws197{word-spacing:6.608996pt;}
.ws1c3{word-spacing:6.621792pt;}
.ws72{word-spacing:6.634588pt;}
.ws74{word-spacing:6.692169pt;}
.ws198{word-spacing:6.704964pt;}
.ws16d{word-spacing:6.909696pt;}
.wscf{word-spacing:6.922492pt;}
.ws16c{word-spacing:6.935287pt;}
.wsd1{word-spacing:6.967277pt;}
.ws10d{word-spacing:6.980073pt;}
.ws20c{word-spacing:7.235987pt;}
.ws135{word-spacing:7.299966pt;}
.ws181{word-spacing:7.543085pt;}
.ws20e{word-spacing:7.549483pt;}
.ws1cd{word-spacing:7.555881pt;}
.ws5e{word-spacing:7.562278pt;}
.ws208{word-spacing:7.600666pt;}
.ws88{word-spacing:7.619859pt;}
.ws24f{word-spacing:7.626257pt;}
.ws1a{word-spacing:7.702400pt;}
.ws15f{word-spacing:7.773408pt;}
.ws20d{word-spacing:7.875774pt;}
.ws242{word-spacing:7.894967pt;}
.ws1b7{word-spacing:8.022925pt;}
.wsda{word-spacing:8.234054pt;}
.ws17{word-spacing:8.339840pt;}
.wsb0{word-spacing:8.483571pt;}
.ws99{word-spacing:8.509163pt;}
.ws116{word-spacing:8.547550pt;}
.ws231{word-spacing:8.579539pt;}
.ws249{word-spacing:8.816260pt;}
.ws1f6{word-spacing:8.867443pt;}
.ws1da{word-spacing:8.912228pt;}
.ws248{word-spacing:8.937820pt;}
.ws56{word-spacing:8.944218pt;}
.ws112{word-spacing:9.129756pt;}
.ws206{word-spacing:9.161745pt;}
.wse2{word-spacing:9.200132pt;}
.ws10a{word-spacing:9.238519pt;}
.wse1{word-spacing:9.353681pt;}
.ws1de{word-spacing:9.468843pt;}
.ws172{word-spacing:9.801532pt;}
.ws120{word-spacing:9.878306pt;}
.ws6e{word-spacing:10.102231pt;}
.ws136{word-spacing:10.511695pt;}
.ws119{word-spacing:10.799599pt;}
.ws253{word-spacing:11.733687pt;}
.ws11f{word-spacing:11.772075pt;}
.ws1cf{word-spacing:12.053581pt;}
.ws268{word-spacing:12.164480pt;}
.ws247{word-spacing:12.341485pt;}
.ws152{word-spacing:12.616593pt;}
.ws131{word-spacing:12.981271pt;}
.ws10b{word-spacing:13.019659pt;}
.ws1ba{word-spacing:13.313961pt;}
.ws189{word-spacing:13.627456pt;}
.ws175{word-spacing:13.640252pt;}
.ws1af{word-spacing:14.260845pt;}
.ws1d0{word-spacing:14.267243pt;}
.ws17d{word-spacing:14.331221pt;}
.ws81{word-spacing:14.574340pt;}
.wsb1{word-spacing:15.591601pt;}
.ws1e3{word-spacing:16.512894pt;}
.ws1d{word-spacing:16.626560pt;}
.ws171{word-spacing:18.391988pt;}
.ws1f5{word-spacing:18.527273pt;}
.ws1e{word-spacing:19.813760pt;}
.ws148{word-spacing:21.675972pt;}
.ws20{word-spacing:23.054080pt;}
.wsc9{word-spacing:27.117201pt;}
.ws1c{word-spacing:28.153600pt;}
.wsa7{word-spacing:30.253041pt;}
.ws1fa{word-spacing:34.957503pt;}
.ws19{word-spacing:40.318080pt;}
.ws228{word-spacing:44.572418pt;}
.wseb{word-spacing:57.735081pt;}
.ws150{word-spacing:60.747744pt;}
.ws165{word-spacing:69.947876pt;}
.ws227{word-spacing:73.413394pt;}
.ws15d{word-spacing:80.824250pt;}
.ws213{word-spacing:81.400451pt;}
.wsea{word-spacing:81.715519pt;}
.ws1a4{word-spacing:84.317485pt;}
.ws159{word-spacing:96.223915pt;}
.ws22b{word-spacing:97.241163pt;}
.wsbe{word-spacing:100.764754pt;}
.ws190{word-spacing:102.724157pt;}
.wse9{word-spacing:104.895730pt;}
.ws217{word-spacing:112.124769pt;}
.ws219{word-spacing:112.130044pt;}
.wsb6{word-spacing:113.650570pt;}
.ws147{word-spacing:115.961333pt;}
.wsad{word-spacing:122.151398pt;}
.ws21e{word-spacing:125.825155pt;}
.ws237{word-spacing:125.827544pt;}
.wsbd{word-spacing:127.201255pt;}
.ws1a8{word-spacing:129.140939pt;}
.wsb7{word-spacing:129.618005pt;}
.ws201{word-spacing:140.637905pt;}
.ws215{word-spacing:140.949918pt;}
.ws21a{word-spacing:140.960469pt;}
.ws21b{word-spacing:140.965745pt;}
.ws216{word-spacing:141.356129pt;}
.ws218{word-spacing:141.377231pt;}
.wsbc{word-spacing:144.266254pt;}
.ws22c{word-spacing:145.869656pt;}
.ws22d{word-spacing:146.012060pt;}
.ws22e{word-spacing:146.091174pt;}
.wsb9{word-spacing:158.381551pt;}
.ws1f8{word-spacing:159.946987pt;}
.wsac{word-spacing:165.373795pt;}
.ws1d1{word-spacing:166.222974pt;}
.wsbb{word-spacing:170.259508pt;}
.wsba{word-spacing:173.040353pt;}
.ws60{word-spacing:175.045632pt;}
.ws179{word-spacing:175.122406pt;}
.ws104{word-spacing:175.147998pt;}
.ws105{word-spacing:175.154396pt;}
.ws111{word-spacing:175.160794pt;}
.ws1c8{word-spacing:175.167191pt;}
.ws103{word-spacing:175.179987pt;}
.ws1c5{word-spacing:175.192783pt;}
.ws1be{word-spacing:175.199181pt;}
.ws1a5{word-spacing:175.243966pt;}
.ws1ca{word-spacing:175.282353pt;}
.ws202{word-spacing:177.613309pt;}
.wsf1{word-spacing:177.789638pt;}
.wsef{word-spacing:177.791982pt;}
.ws21c{word-spacing:183.116723pt;}
.wsab{word-spacing:194.176420pt;}
.wsb8{word-spacing:199.307998pt;}
.ws238{word-spacing:207.609909pt;}
.ws21f{word-spacing:207.615991pt;}
.ws220{word-spacing:237.137502pt;}
.ws239{word-spacing:237.156202pt;}
.wscc{word-spacing:250.545770pt;}
.ws221{word-spacing:280.422706pt;}
.wsd7{word-spacing:315.946106pt;}
.ws1ee{word-spacing:326.470340pt;}
.ws1ef{word-spacing:326.483136pt;}
.ws236{word-spacing:408.336935pt;}
.ws21d{word-spacing:408.347497pt;}
.wsc0{word-spacing:433.661317pt;}
.wsd5{word-spacing:461.516162pt;}
.wscb{word-spacing:472.629727pt;}
.wsa9{word-spacing:490.625628pt;}
.wsa8{word-spacing:491.559168pt;}
.wsaa{word-spacing:505.029577pt;}
._72{margin-left:-326.611093pt;}
._25{margin-left:-285.582594pt;}
._2c{margin-left:-175.301547pt;}
._79{margin-left:-173.062293pt;}
._5c{margin-left:-166.325248pt;}
._4b{margin-left:-160.633372pt;}
._59{margin-left:-151.309547pt;}
._5a{margin-left:-145.551467pt;}
._73{margin-left:-144.271893pt;}
._53{margin-left:-136.594453pt;}
._7f{margin-left:-131.654546pt;}
._4e{margin-left:-129.236907pt;}
._55{margin-left:-126.037973pt;}
._33{margin-left:-116.428542pt;}
._37{margin-left:-96.104659pt;}
._4a{margin-left:-83.956147pt;}
._3a{margin-left:-81.142963pt;}
._3b{margin-left:-70.424028pt;}
._5d{margin-left:-68.748918pt;}
._36{margin-left:-60.971137pt;}
._60{margin-left:-54.219654pt;}
._26{margin-left:-26.835364pt;}
._54{margin-left:-25.591467pt;}
._35{margin-left:-21.752747pt;}
._30{margin-left:-19.833387pt;}
._74{margin-left:-18.548098pt;}
._24{margin-left:-13.738603pt;}
._47{margin-left:-11.443759pt;}
._4{margin-left:-9.851648pt;}
._5{margin-left:-7.874707pt;}
._7{margin-left:-6.710295pt;}
._6{margin-left:-5.118293pt;}
._9{margin-left:-4.034794pt;}
._2{margin-left:-2.596800pt;}
._0{margin-left:-1.265472pt;}
._1{width:1.195264pt;}
._3{width:2.991436pt;}
._13{width:3.947007pt;}
._a{width:4.874860pt;}
._11{width:5.894126pt;}
._b{width:7.531615pt;}
._12{width:8.754123pt;}
._50{width:9.916693pt;}
._8a{width:11.151268pt;}
._1e{width:12.484333pt;}
._63{width:15.354880pt;}
._7b{width:17.105859pt;}
._3f{width:22.661244pt;}
._67{width:24.284265pt;}
._4c{width:25.192452pt;}
._52{width:26.552789pt;}
._2d{width:29.236022pt;}
._2a{width:35.480532pt;}
._3c{width:37.677037pt;}
._75{width:38.617523pt;}
._2f{width:41.058628pt;}
._28{width:43.916994pt;}
._4d{width:45.855114pt;}
._5b{width:46.996692pt;}
._10{width:48.626518pt;}
._48{width:49.769005pt;}
._3e{width:53.057508pt;}
._7c{width:54.425297pt;}
._1d{width:58.682919pt;}
._61{width:63.951038pt;}
._58{width:65.704054pt;}
._32{width:67.767490pt;}
._6d{width:69.659972pt;}
._66{width:71.086583pt;}
._2e{width:74.308339pt;}
._27{width:75.814720pt;}
._3d{width:76.704023pt;}
._38{width:78.161970pt;}
._85{width:79.905935pt;}
._70{width:84.503023pt;}
._44{width:86.883029pt;}
._41{width:90.354013pt;}
._39{width:96.471128pt;}
._42{width:98.367200pt;}
._40{width:104.474389pt;}
._71{width:107.349805pt;}
._69{width:115.327945pt;}
._49{width:117.103857pt;}
._65{width:125.718080pt;}
._64{width:126.970025pt;}
._8{width:130.696866pt;}
._76{width:133.160585pt;}
._31{width:135.037673pt;}
._62{width:137.046665pt;}
._51{width:139.331460pt;}
._57{width:140.866191pt;}
._5f{width:142.005012pt;}
._77{width:143.983064pt;}
._5e{width:145.779753pt;}
._56{width:146.990987pt;}
._68{width:152.040495pt;}
._34{width:153.548800pt;}
._78{width:156.491819pt;}
._6a{width:159.260023pt;}
._46{width:160.170592pt;}
._2b{width:161.866027pt;}
._7a{width:163.785387pt;}
._43{width:165.076689pt;}
._f{width:168.047835pt;}
._18{width:169.541870pt;}
._45{width:171.398848pt;}
._17{width:172.322716pt;}
._29{width:174.689388pt;}
._22{width:175.913705pt;}
._23{width:177.369063pt;}
._4f{width:185.377867pt;}
._e{width:197.172188pt;}
._16{width:198.310693pt;}
._21{width:201.723679pt;}
._88{width:206.312446pt;}
._6e{width:209.478950pt;}
._d{width:211.576138pt;}
._86{width:220.716396pt;}
._20{width:225.055691pt;}
._1f{width:235.636164pt;}
._87{width:240.268003pt;}
._82{width:243.155356pt;}
._c{width:254.787986pt;}
._14{width:265.095052pt;}
._8c{width:272.665972pt;}
._15{width:278.719849pt;}
._1b{width:292.167916pt;}
._81{width:301.500840pt;}
._6b{width:317.449668pt;}
._80{width:319.577567pt;}
._6f{width:326.611093pt;}
._8b{width:330.210763pt;}
._19{width:481.075918pt;}
._1c{width:489.338735pt;}
._1a{width:500.809950pt;}
._6c{width:590.391296pt;}
._7e{width:617.287697pt;}
._7d{width:621.930267pt;}
._89{width:754.186921pt;}
._84{width:769.333224pt;}
._83{width:799.177341pt;}
.fs18{font-size:16.000000pt;}
.fsc{font-size:37.427733pt;}
.fs17{font-size:42.880000pt;}
.fs14{font-size:43.968533pt;}
.fs3{font-size:48.000000pt;}
.fsb{font-size:50.542933pt;}
.fsf{font-size:52.742400pt;}
.fs16{font-size:52.754667pt;}
.fs10{font-size:52.767467pt;}
.fs15{font-size:53.044800pt;}
.fs13{font-size:53.066133pt;}
.fs5{font-size:53.120000pt;}
.fs12{font-size:53.130133pt;}
.fs11{font-size:53.143467pt;}
.fsa{font-size:58.540267pt;}
.fs1{font-size:58.880000pt;}
.fs9{font-size:63.978667pt;}
.fs7{font-size:64.000000pt;}
.fse{font-size:69.416533pt;}
.fsd{font-size:74.534933pt;}
.fs0{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs8{font-size:85.411200pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y169{bottom:2.479600pt;}
.y42a{bottom:4.480000pt;}
.y28{bottom:10.880000pt;}
.y22{bottom:11.840000pt;}
.y3f{bottom:12.000000pt;}
.y2a{bottom:12.160000pt;}
.y25{bottom:13.920000pt;}
.y1f{bottom:14.880000pt;}
.y429{bottom:18.400000pt;}
.y3e7{bottom:21.280000pt;}
.y3ea{bottom:24.960000pt;}
.y3d8{bottom:27.040000pt;}
.y3dc{bottom:28.800000pt;}
.y427{bottom:32.320000pt;}
.y3c{bottom:34.080000pt;}
.y21{bottom:38.720000pt;}
.y3e6{bottom:38.880000pt;}
.y4b{bottom:42.080000pt;}
.y24{bottom:43.040000pt;}
.y3db{bottom:46.080000pt;}
.y42f{bottom:51.045760pt;}
.y52{bottom:51.046400pt;}
.y3e4{bottom:56.480000pt;}
.y3a{bottom:56.800000pt;}
.y425{bottom:60.000000pt;}
.y6e{bottom:62.846400pt;}
.y40f{bottom:63.520000pt;}
.y4e{bottom:63.680000pt;}
.y4a{bottom:63.840000pt;}
.y42e{bottom:67.679360pt;}
.y51{bottom:67.680000pt;}
.y423{bottom:73.920000pt;}
.y3e2{bottom:74.080000pt;}
.y38{bottom:79.360000pt;}
.y40e{bottom:79.840000pt;}
.y1d{bottom:85.093120pt;}
.y421{bottom:87.680000pt;}
.y3e0{bottom:91.520000pt;}
.y28f{bottom:91.716880pt;}
.y40c{bottom:93.760000pt;}
.y2af{bottom:94.918532pt;}
.y131{bottom:95.077599pt;}
.y1e0{bottom:96.436479pt;}
.y209{bottom:96.756719pt;}
.y41f{bottom:101.600000pt;}
.y36{bottom:101.920000pt;}
.y270{bottom:104.752373pt;}
.y406{bottom:105.120000pt;}
.y40a{bottom:107.520000pt;}
.y32f{bottom:108.990533pt;}
.y3df{bottom:109.120000pt;}
.y24b{bottom:112.910187pt;}
.y301{bottom:113.629280pt;}
.y303{bottom:113.869200pt;}
.y2e3{bottom:115.390239pt;}
.y41e{bottom:115.520000pt;}
.y99{bottom:115.953412pt;}
.y2ae{bottom:116.351386pt;}
.y130{bottom:116.510453pt;}
.y1df{bottom:117.869759pt;}
.y1be{bottom:117.954025pt;}
.y28e{bottom:121.227040pt;}
.y405{bottom:121.440000pt;}
.y1c{bottom:123.335680pt;}
.y22b{bottom:123.711838pt;}
.y34{bottom:124.640000pt;}
.y208{bottom:126.266879pt;}
.y32e{bottom:126.745200pt;}
.y41c{bottom:129.440000pt;}
.y166{bottom:130.506532pt;}
.y26f{bottom:134.262320pt;}
.y403{bottom:135.360000pt;}
.y98{bottom:136.824852pt;}
.y12f{bottom:138.021680pt;}
.y1bd{bottom:139.465252pt;}
.y300{bottom:139.700587pt;}
.y302{bottom:139.940507pt;}
.y10c{bottom:142.339733pt;}
.y24a{bottom:142.340373pt;}
.y3ad{bottom:142.828077pt;}
.y41a{bottom:143.200000pt;}
.y2e2{bottom:144.818827pt;}
.y22a{bottom:145.223065pt;}
.y2ad{bottom:145.859946pt;}
.y32{bottom:147.199867pt;}
.y45{bottom:147.200000pt;}
.y1de{bottom:147.379919pt;}
.y402{bottom:149.120000pt;}
.y42d{bottom:149.920000pt;}
.y28d{bottom:150.740479pt;}
.y32d{bottom:151.301198pt;}
.y165{bottom:152.019359pt;}
.y207{bottom:155.697066pt;}
.y419{bottom:157.120000pt;}
.y97{bottom:157.617919pt;}
.y34f{bottom:160.421528pt;}
.y1bc{bottom:160.976479pt;}
.yc3{bottom:161.155326pt;}
.y1b{bottom:161.578240pt;}
.y410{bottom:162.720000pt;}
.y400{bottom:163.040000pt;}
.y26e{bottom:163.692507pt;}
.y249{bottom:163.854586pt;}
.y3ac{bottom:164.259331pt;}
.y2ff{bottom:165.851867pt;}
.y10b{bottom:166.817758pt;}
.y42b{bottom:167.200000pt;}
.y2ac{bottom:167.292799pt;}
.y12e{bottom:167.451867pt;}
.y50{bottom:168.000000pt;}
.y1dd{bottom:168.811173pt;}
.y43{bottom:169.760000pt;}
.y30{bottom:169.920000pt;}
.y417{bottom:171.040000pt;}
.y164{bottom:173.450613pt;}
.y2e1{bottom:174.328987pt;}
.y229{bottom:174.733225pt;}
.y123{bottom:175.053849pt;}
.y3ff{bottom:176.960000pt;}
.y96{bottom:178.410986pt;}
.y34e{bottom:178.414826pt;}
.y4d{bottom:179.680000pt;}
.y28c{bottom:180.169066pt;}
.yc2{bottom:181.946793pt;}
.y1bb{bottom:182.409332pt;}
.y415{bottom:184.800000pt;}
.y26d{bottom:185.205840pt;}
.y206{bottom:185.207226pt;}
.y12d{bottom:185.285333pt;}
.y3ab{bottom:185.772157pt;}
.y2ab{bottom:188.805626pt;}
.y1dc{bottom:190.324773pt;}
.y3fd{bottom:190.880000pt;}
.y11d{bottom:192.402533pt;}
.y2e{bottom:192.480000pt;}
.y2fe{bottom:193.042667pt;}
.y248{bottom:193.283173pt;}
.y163{bottom:194.963439pt;}
.y428{bottom:195.040000pt;}
.y2e0{bottom:195.761840pt;}
.y228{bottom:196.164479pt;}
.y34d{bottom:196.408124pt;}
.y413{bottom:198.720000pt;}
.y95{bottom:199.204052pt;}
.y1a{bottom:199.658880pt;}
.y28b{bottom:201.681893pt;}
.yc1{bottom:202.738260pt;}
.y3fc{bottom:204.640000pt;}
.y205{bottom:206.720053pt;}
.y426{bottom:208.800000pt;}
.y12c{bottom:209.759839pt;}
.y412{bottom:209.760000pt;}
.y2aa{bottom:210.318453pt;}
.y1ba{bottom:211.919492pt;}
.y34c{bottom:214.401422pt;}
.y26c{bottom:214.717253pt;}
.y247{bottom:214.796773pt;}
.y2d{bottom:215.040000pt;}
.y3aa{bottom:217.201677pt;}
.y13d{bottom:218.075399pt;}
.y411{bottom:218.400000pt;}
.y3fb{bottom:218.560000pt;}
.y42c{bottom:219.520000pt;}
.y1db{bottom:219.833813pt;}
.y94{bottom:219.997119pt;}
.y4f{bottom:221.760000pt;}
.y28a{bottom:223.114746pt;}
.y2fd{bottom:223.193147pt;}
.yc0{bottom:223.529727pt;}
.y162{bottom:224.472000pt;}
.y2df{bottom:225.274666pt;}
.y227{bottom:225.674639pt;}
.y34b{bottom:232.394720pt;}
.y3f9{bottom:232.480000pt;}
.y1b9{bottom:233.350746pt;}
.y137{bottom:235.349333pt;}
.y204{bottom:236.148640pt;}
.y246{bottom:236.308613pt;}
.y424{bottom:236.640000pt;}
.y19{bottom:237.901440pt;}
.y3a9{bottom:238.714504pt;}
.y2a9{bottom:239.747040pt;}
.y93{bottom:240.790186pt;}
.y161{bottom:242.226667pt;}
.y11e{bottom:242.866241pt;}
.y26b{bottom:244.145840pt;}
.ybf{bottom:244.321195pt;}
.y289{bottom:244.625973pt;}
.y2fc{bottom:244.705973pt;}
.y3f7{bottom:246.240000pt;}
.y226{bottom:247.107492pt;}
.y14f{bottom:247.827279pt;}
.y1da{bottom:249.264507pt;}
.y34a{bottom:250.308886pt;}
.y422{bottom:250.400000pt;}
.y2de{bottom:254.784826pt;}
.y1b8{bottom:254.863573pt;}
.y49{bottom:255.200000pt;}
.y203{bottom:257.661947pt;}
.y245{bottom:257.742746pt;}
.y3a8{bottom:260.147357pt;}
.y3f6{bottom:260.160000pt;}
.y2a8{bottom:261.259867pt;}
.y92{bottom:261.583252pt;}
.y420{bottom:264.320000pt;}
.ybe{bottom:265.112662pt;}
.y160{bottom:266.702185pt;}
.y349{bottom:268.302184pt;}
.y14e{bottom:269.338506pt;}
.y26a{bottom:273.658026pt;}
.y3f4{bottom:274.080000pt;}
.y288{bottom:274.138906pt;}
.y2fb{bottom:274.219945pt;}
.y18{bottom:276.144000pt;}
.y225{bottom:276.616053pt;}
.y1d9{bottom:278.775359pt;}
.y244{bottom:279.253973pt;}
.y91{bottom:282.376319pt;}
.y2a7{bottom:282.692720pt;}
.y184{bottom:283.412133pt;}
.y2dd{bottom:284.213413pt;}
.y1b7{bottom:284.372133pt;}
.y202{bottom:285.732133pt;}
.y138{bottom:285.892029pt;}
.ybd{bottom:285.985702pt;}
.y348{bottom:286.295482pt;}
.y201{bottom:287.094666pt;}
.y3f2{bottom:288.000000pt;}
.y14d{bottom:290.771359pt;}
.y3a7{bottom:291.656851pt;}
.y41d{bottom:292.160000pt;}
.y11f{bottom:293.409663pt;}
.y269{bottom:295.090879pt;}
.y4c{bottom:297.280000pt;}
.y224{bottom:298.128879pt;}
.y1d8{bottom:300.288186pt;}
.y243{bottom:300.766800pt;}
.y183{bottom:300.927428pt;}
.y3f0{bottom:301.760000pt;}
.y90{bottom:303.247759pt;}
.y287{bottom:303.567493pt;}
.y2fa{bottom:303.648532pt;}
.y2a6{bottom:304.205547pt;}
.y347{bottom:304.288780pt;}
.y2dc{bottom:305.726239pt;}
.y41b{bottom:305.920000pt;}
.y1b6{bottom:306.765467pt;}
.ybc{bottom:306.777169pt;}
.y14c{bottom:312.284186pt;}
.y3ef{bottom:312.800000pt;}
.y3a6{bottom:313.089704pt;}
.y17{bottom:314.386560pt;}
.y200{bottom:316.604826pt;}
.y17c{bottom:318.201467pt;}
.y3ed{bottom:321.440000pt;}
.y1d7{bottom:321.721039pt;}
.y346{bottom:322.280759pt;}
.y6d{bottom:323.960186pt;}
.y8f{bottom:324.040826pt;}
.y268{bottom:324.599440pt;}
.y2a5{bottom:325.718373pt;}
.y324{bottom:327.398879pt;}
.y223{bottom:327.557467pt;}
.ybb{bottom:327.568636pt;}
.y242{bottom:330.197467pt;}
.y241{bottom:330.202771pt;}
.y41{bottom:330.880000pt;}
.y286{bottom:333.077653pt;}
.y2f9{bottom:333.158692pt;}
.y418{bottom:333.760000pt;}
.y14b{bottom:333.797013pt;}
.y2db{bottom:335.234800pt;}
.y139{bottom:336.436053pt;}
.y3ec{bottom:336.480000pt;}
.y1ff{bottom:338.117652pt;}
.yec{bottom:338.282051pt;}
.y120{bottom:343.954414pt;}
.y3a5{bottom:344.599197pt;}
.y8e{bottom:344.833893pt;}
.y1b5{bottom:345.720104pt;}
.y267{bottom:346.113013pt;}
.y2a4{bottom:347.151227pt;}
.y416{bottom:347.520000pt;}
.yba{bottom:348.360103pt;}
.y323{bottom:348.911706pt;}
.y1d6{bottom:351.230080pt;}
.y16{bottom:352.629120pt;}
.y6c{bottom:353.470346pt;}
.y2f8{bottom:354.591546pt;}
.y14a{bottom:355.228773pt;}
.y35f{bottom:355.469706pt;}
.y2da{bottom:356.988267pt;}
.y222{bottom:357.068133pt;}
.y17d{bottom:357.628340pt;}
.y345{bottom:357.870376pt;}
.y1fe{bottom:359.550506pt;}
.y240{bottom:359.712931pt;}
.yeb{bottom:359.713305pt;}
.y414{bottom:361.440000pt;}
.y285{bottom:362.506240pt;}
.y8d{bottom:365.626959pt;}
.y1b4{bottom:367.152957pt;}
.y266{bottom:367.544907pt;}
.y2a3{bottom:368.664053pt;}
.yb9{bottom:369.151571pt;}
.y1d5{bottom:372.662747pt;}
.y3a4{bottom:374.109357pt;}
.ydd{bottom:375.706772pt;}
.y344{bottom:375.863674pt;}
.y149{bottom:376.744372pt;}
.y35e{bottom:377.062506pt;}
.y322{bottom:378.420267pt;}
.y23f{bottom:381.145785pt;}
.y6b{bottom:382.898933pt;}
.y2f7{bottom:384.101706pt;}
.y8c{bottom:386.418427pt;}
.y221{bottom:386.498240pt;}
.y13a{bottom:386.899054pt;}
.y1b3{bottom:388.665784pt;}
.y1fd{bottom:389.060666pt;}
.yea{bottom:389.223465pt;}
.y19d{bottom:389.379759pt;}
.yb8{bottom:389.943038pt;}
.y2a2{bottom:390.096907pt;}
.y15{bottom:390.871680pt;}
.y3eb{bottom:391.520000pt;}
.y284{bottom:392.016907pt;}
.y121{bottom:394.499166pt;}
.y265{bottom:395.694933pt;}
.y2d9{bottom:396.577786pt;}
.y17e{bottom:397.055214pt;}
.y264{bottom:397.055813pt;}
.ydc{bottom:397.219598pt;}
.y35d{bottom:398.573733pt;}
.y321{bottom:400.173600pt;}
.y37d{bottom:401.939225pt;}
.y1d4{bottom:402.172907pt;}
.y23e{bottom:402.657012pt;}
.y3a3{bottom:403.539544pt;}
.y148{bottom:406.172959pt;}
.y8b{bottom:407.211493pt;}
.y1fc{bottom:410.491919pt;}
.ye9{bottom:410.654718pt;}
.yb7{bottom:410.734505pt;}
.y19c{bottom:410.890986pt;}
.y343{bottom:411.771137pt;}
.y6a{bottom:412.409733pt;}
.y2f6{bottom:413.611866pt;}
.y220{bottom:416.008907pt;}
.y35c{bottom:416.407864pt;}
.y2d8{bottom:418.089013pt;}
.y1b2{bottom:418.174345pt;}
.y2a1{bottom:419.608453pt;}
.y283{bottom:421.537863pt;}
.y1d3{bottom:423.686213pt;}
.y3a2{bottom:425.050771pt;}
.y263{bottom:425.125600pt;}
.y262{bottom:426.484907pt;}
.ydb{bottom:426.648186pt;}
.y147{bottom:427.685786pt;}
.y8a{bottom:428.004560pt;}
.y14{bottom:428.952320pt;}
.y342{bottom:429.764435pt;}
.y37c{bottom:431.447785pt;}
.yb6{bottom:431.525972pt;}
.y1fb{bottom:432.004746pt;}
.y23d{bottom:432.167172pt;}
.ye8{bottom:432.167545pt;}
.y19b{bottom:432.323839pt;}
.y48{bottom:432.800000pt;}
.y35b{bottom:433.203067pt;}
.y17f{bottom:436.402521pt;}
.y13b{bottom:437.443078pt;}
.y1b1{bottom:439.607198pt;}
.y320{bottom:439.760347pt;}
.y69{bottom:441.919067pt;}
.y2f5{bottom:443.040453pt;}
.y122{bottom:445.043917pt;}
.y21f{bottom:445.519946pt;}
.y2d7{bottom:447.599173pt;}
.y341{bottom:447.757733pt;}
.yda{bottom:448.159413pt;}
.y89{bottom:448.877600pt;}
.y2a0{bottom:449.118613pt;}
.y146{bottom:449.198613pt;}
.y35a{bottom:449.760479pt;}
.y282{bottom:450.966450pt;}
.yb5{bottom:452.399012pt;}
.y1d2{bottom:453.117093pt;}
.y1fa{bottom:453.517573pt;}
.y23c{bottom:453.598426pt;}
.y47{bottom:455.520000pt;}
.y261{bottom:455.996453pt;}
.y3a1{bottom:456.481891pt;}
.y36f{bottom:458.952963pt;}
.y37b{bottom:460.877972pt;}
.y1b0{bottom:461.118425pt;}
.y31f{bottom:461.273173pt;}
.y19a{bottom:461.833040pt;}
.ye7{bottom:463.597065pt;}
.y2f4{bottom:464.553279pt;}
.y13{bottom:467.194880pt;}
.y2d6{bottom:469.032026pt;}
.yd9{bottom:469.670640pt;}
.y88{bottom:469.670667pt;}
.y68{bottom:471.349867pt;}
.yb4{bottom:473.192079pt;}
.y21e{bottom:474.952319pt;}
.y23b{bottom:475.111252pt;}
.y180{bottom:475.829394pt;}
.y36e{bottom:476.947351pt;}
.y3a0{bottom:477.994717pt;}
.y46{bottom:478.080000pt;}
.y29f{bottom:478.547707pt;}
.y145{bottom:478.627200pt;}
.y281{bottom:480.475011pt;}
.y37a{bottom:482.389199pt;}
.y1af{bottom:482.551278pt;}
.y1d1{bottom:482.627253pt;}
.y1f9{bottom:482.946160pt;}
.y350{bottom:483.753561pt;}
.ye6{bottom:485.108292pt;}
.y40d{bottom:485.280000pt;}
.y260{bottom:485.505013pt;}
.y13c{bottom:487.987102pt;}
.y10a{bottom:490.148345pt;}
.y87{bottom:490.463733pt;}
.y2d5{bottom:490.543253pt;}
.y31e{bottom:490.783333pt;}
.y199{bottom:491.343707pt;}
.y2f3{bottom:493.982667pt;}
.yb3{bottom:493.985146pt;}
.y36d{bottom:494.941739pt;}
.y23a{bottom:496.544106pt;}
.y40b{bottom:499.040000pt;}
.yd8{bottom:499.100827pt;}
.y39f{bottom:499.427571pt;}
.y144{bottom:500.380533pt;}
.y44{bottom:500.640000pt;}
.y67{bottom:500.860533pt;}
.y1d0{bottom:504.060106pt;}
.y1ae{bottom:504.062506pt;}
.y1f8{bottom:504.458987pt;}
.y21d{bottom:504.462479pt;}
.y12{bottom:505.437440pt;}
.ye5{bottom:506.619519pt;}
.y29e{bottom:506.697867pt;}
.y25f{bottom:506.945491pt;}
.y29d{bottom:508.060052pt;}
.y280{bottom:509.983571pt;}
.y86{bottom:511.256800pt;}
.y109{bottom:511.581198pt;}
.y379{bottom:511.899359pt;}
.y2d4{bottom:511.976107pt;}
.y31d{bottom:512.296160pt;}
.y36c{bottom:512.934809pt;}
.y409{bottom:512.960000pt;}
.y32c{bottom:514.538479pt;}
.yb2{bottom:514.778212pt;}
.y181{bottom:515.256268pt;}
.y239{bottom:518.055333pt;}
.yd7{bottom:520.613653pt;}
.y198{bottom:520.859598pt;}
.y66{bottom:522.212533pt;}
.y42{bottom:523.360000pt;}
.y2f2{bottom:523.492827pt;}
.y1ad{bottom:525.573733pt;}
.y1f7{bottom:525.971813pt;}
.y404{bottom:526.880000pt;}
.y25e{bottom:528.458317pt;}
.y36b{bottom:530.850084pt;}
.y39e{bottom:530.937064pt;}
.y85{bottom:532.071086pt;}
.y12b{bottom:533.090426pt;}
.y108{bottom:533.092426pt;}
.y378{bottom:533.330613pt;}
.y2d3{bottom:533.488933pt;}
.y1cf{bottom:533.568480pt;}
.y21c{bottom:533.971039pt;}
.y31c{bottom:534.048907pt;}
.yb1{bottom:535.571279pt;}
.y32b{bottom:536.051306pt;}
.y29c{bottom:537.568613pt;}
.ye4{bottom:538.049039pt;}
.y27f{bottom:539.413758pt;}
.y143{bottom:540.046293pt;}
.y408{bottom:540.640000pt;}
.yd6{bottom:542.046507pt;}
.y197{bottom:542.692318pt;}
.y65{bottom:543.485867pt;}
.y11{bottom:543.680000pt;}
.y238{bottom:547.565493pt;}
.y36a{bottom:548.844472pt;}
.y2c2{bottom:551.804506pt;}
.y39d{bottom:552.448291pt;}
.y84{bottom:552.864153pt;}
.y2f1{bottom:553.002987pt;}
.y1f6{bottom:554.042000pt;}
.y12a{bottom:554.523279pt;}
.y401{bottom:554.560000pt;}
.y182{bottom:554.603575pt;}
.y377{bottom:554.843439pt;}
.y1ac{bottom:555.003919pt;}
.y1f5{bottom:555.402773pt;}
.y21b{bottom:555.403893pt;}
.y31b{bottom:555.481760pt;}
.yb0{bottom:556.364346pt;}
.y3e{bottom:557.600000pt;}
.y25d{bottom:557.966878pt;}
.y29b{bottom:559.001466pt;}
.ye3{bottom:559.561866pt;}
.y27e{bottom:560.924985pt;}
.y142{bottom:561.559120pt;}
.y107{bottom:562.522612pt;}
.y2d2{bottom:562.999093pt;}
.y196{bottom:564.365091pt;}
.y1ce{bottom:564.997574pt;}
.y64{bottom:564.998000pt;}
.y32a{bottom:565.559866pt;}
.y369{bottom:566.837542pt;}
.y40{bottom:569.600000pt;}
.yd5{bottom:571.556667pt;}
.y83{bottom:573.657219pt;}
.y2f0{bottom:574.435840pt;}
.y129{bottom:576.036106pt;}
.y1ab{bottom:576.515147pt;}
.y21a{bottom:576.915120pt;}
.y237{bottom:576.994080pt;}
.y31a{bottom:577.074560pt;}
.yaf{bottom:577.157412pt;}
.y2c1{bottom:578.275679pt;}
.y25c{bottom:579.399731pt;}
.y3fe{bottom:582.400000pt;}
.y141{bottom:582.991973pt;}
.y1f4{bottom:583.552800pt;}
.y39c{bottom:583.877811pt;}
.y3d{bottom:584.000000pt;}
.y106{bottom:584.033839pt;}
.y376{bottom:584.353599pt;}
.y2d1{bottom:584.751840pt;}
.y368{bottom:584.831930pt;}
.y1f3{bottom:584.913226pt;}
.y63{bottom:586.351333pt;}
.y3bf{bottom:586.755812pt;}
.y329{bottom:586.992719pt;}
.y29a{bottom:588.510027pt;}
.y15f{bottom:590.032772pt;}
.y27d{bottom:590.355172pt;}
.ye2{bottom:590.991386pt;}
.yd4{bottom:593.308667pt;}
.y195{bottom:593.873652pt;}
.y82{bottom:594.450286pt;}
.y10{bottom:596.160000pt;}
.y1cd{bottom:596.511066pt;}
.y1aa{bottom:597.948000pt;}
.yae{bottom:598.028853pt;}
.y219{bottom:598.347973pt;}
.y25b{bottom:600.910958pt;}
.y367{bottom:602.826319pt;}
.y2ef{bottom:603.946000pt;}
.y39b{bottom:605.390638pt;}
.y128{bottom:605.544667pt;}
.y105{bottom:605.545067pt;}
.y375{bottom:606.024773pt;}
.y236{bottom:606.504240pt;}
.y319{bottom:606.744667pt;}
.y62{bottom:607.624800pt;}
.y2c0{bottom:607.785839pt;}
.y3be{bottom:608.188665pt;}
.y328{bottom:608.503947pt;}
.y3d6{bottom:609.543333pt;}
.y2c{bottom:610.560000pt;}
.y15e{bottom:611.545599pt;}
.y140{bottom:612.502133pt;}
.ye1{bottom:612.502613pt;}
.y2d0{bottom:614.262000pt;}
.y1f2{bottom:614.343413pt;}
.y194{bottom:615.306505pt;}
.y81{bottom:615.323326pt;}
.yad{bottom:618.821919pt;}
.y1a9{bottom:619.460827pt;}
.y27c{bottom:619.865332pt;}
.y299{bottom:619.941146pt;}
.y366{bottom:620.740275pt;}
.y127{bottom:623.299467pt;}
.y3fa{bottom:624.000000pt;}
.y2ee{bottom:625.698133pt;}
.y104{bottom:626.977920pt;}
.y374{bottom:627.777520pt;}
.y218{bottom:627.858906pt;}
.y235{bottom:627.937093pt;}
.y1cc{bottom:627.940586pt;}
.y318{bottom:629.536800pt;}
.y13f{bottom:630.256800pt;}
.y25a{bottom:630.341145pt;}
.yf{bottom:631.040000pt;}
.y15d{bottom:632.976853pt;}
.yd3{bottom:632.979439pt;}
.y1f1{bottom:635.856239pt;}
.y80{bottom:636.114793pt;}
.y193{bottom:636.817732pt;}
.y39a{bottom:636.820158pt;}
.y61{bottom:637.134133pt;}
.y2bf{bottom:637.295999pt;}
.y3f8{bottom:637.760000pt;}
.y327{bottom:637.934133pt;}
.y365{bottom:638.734663pt;}
.yac{bottom:639.614986pt;}
.y3bd{bottom:639.698158pt;}
.y1a8{bottom:640.973653pt;}
.y27b{bottom:641.376559pt;}
.ye0{bottom:641.932800pt;}
.y2cf{bottom:644.411467pt;}
.y373{bottom:645.931467pt;}
.y126{bottom:647.772266pt;}
.y103{bottom:648.490747pt;}
.y234{bottom:649.449920pt;}
.y1cb{bottom:649.453412pt;}
.y298{bottom:651.450639pt;}
.y407{bottom:651.680000pt;}
.y259{bottom:651.853972pt;}
.yd2{bottom:654.412292pt;}
.y15c{bottom:654.489679pt;}
.y13e{bottom:654.809919pt;}
.ye{bottom:655.520000pt;}
.y326{bottom:655.768800pt;}
.y136{bottom:656.089660pt;}
.y364{bottom:656.328209pt;}
.y7f{bottom:656.906260pt;}
.y217{bottom:657.371012pt;}
.y3d5{bottom:657.607467pt;}
.y192{bottom:658.328959pt;}
.y399{bottom:658.332985pt;}
.y2be{bottom:658.728853pt;}
.ydf{bottom:659.767467pt;}
.yab{bottom:660.408053pt;}
.y3bc{bottom:661.210985pt;}
.y3ca{bottom:662.331651pt;}
.y1a7{bottom:662.406507pt;}
.y27a{bottom:662.809412pt;}
.y372{bottom:663.686133pt;}
.y1f0{bottom:665.366186pt;}
.y2ed{bottom:665.367866pt;}
.y158{bottom:665.524800pt;}
.y3f5{bottom:665.600000pt;}
.y60{bottom:666.644800pt;}
.y3b{bottom:667.360000pt;}
.y317{bottom:669.688132pt;}
.y233{bottom:670.962747pt;}
.y132{bottom:673.362267pt;}
.y258{bottom:673.366798pt;}
.yd{bottom:674.240000pt;}
.y371{bottom:674.319960pt;}
.y363{bottom:674.322597pt;}
.y2ce{bottom:674.482267pt;}
.yd1{bottom:675.923519pt;}
.y7e{bottom:677.697727pt;}
.y102{bottom:677.920933pt;}
.y1ca{bottom:678.963572pt;}
.y3f3{bottom:679.520000pt;}
.y398{bottom:679.764238pt;}
.y191{bottom:679.840187pt;}
.y325{bottom:680.239467pt;}
.y2bd{bottom:680.240080pt;}
.yaa{bottom:681.201119pt;}
.y3bb{bottom:682.643838pt;}
.y297{bottom:682.880159pt;}
.y15b{bottom:683.918267pt;}
.y1a6{bottom:683.919333pt;}
.yde{bottom:684.238133pt;}
.y3d4{bottom:684.798267pt;}
.y2ec{bottom:686.800719pt;}
.y216{bottom:686.801199pt;}
.y5f{bottom:688.076933pt;}
.y38b{bottom:689.354279pt;}
.y33f{bottom:689.367899pt;}
.y157{bottom:689.676321pt;}
.y39{bottom:689.920000pt;}
.y316{bottom:691.120985pt;}
.y279{bottom:692.317973pt;}
.yff{bottom:692.632490pt;}
.y3f1{bottom:693.280000pt;}
.y1ef{bottom:694.796373pt;}
.y257{bottom:694.799652pt;}
.y101{bottom:695.754267pt;}
.yd0{bottom:697.434747pt;}
.y7d{bottom:698.489195pt;}
.y3c9{bottom:699.837545pt;}
.y232{bottom:700.392933pt;}
.y1c9{bottom:700.394826pt;}
.y15a{bottom:701.752933pt;}
.ya9{bottom:701.994186pt;}
.y3ba{bottom:704.155066pt;}
.y296{bottom:704.391387pt;}
.y2cd{bottom:704.631600pt;}
.y1a5{bottom:705.432160pt;}
.y150{bottom:707.031600pt;}
.y38a{bottom:707.348667pt;}
.y33e{bottom:707.361197pt;}
.y2eb{bottom:708.311946pt;}
.y5e{bottom:709.430267pt;}
.y190{bottom:709.590267pt;}
.y2bc{bottom:709.670267pt;}
.y362{bottom:710.310056pt;}
.yfe{bottom:710.625560pt;}
.yc{bottom:710.880000pt;}
.y397{bottom:711.273732pt;}
.y3d3{bottom:711.908933pt;}
.y37{bottom:712.480000pt;}
.y315{bottom:712.632212pt;}
.y3ee{bottom:712.960000pt;}
.y278{bottom:713.750826pt;}
.y1ee{bottom:716.308080pt;}
.y215{bottom:716.309759pt;}
.y256{bottom:716.310879pt;}
.y7c{bottom:719.280662pt;}
.y100{bottom:720.226267pt;}
.y1c8{bottom:721.907653pt;}
.ya8{bottom:722.787253pt;}
.y231{bottom:722.866267pt;}
.y389{bottom:725.343055pt;}
.y33d{bottom:725.354495pt;}
.y295{bottom:725.824240pt;}
.y159{bottom:726.225067pt;}
.ycf{bottom:726.864933pt;}
.y1a4{bottom:726.865013pt;}
.y361{bottom:728.224012pt;}
.y11c{bottom:728.465521pt;}
.yfd{bottom:728.618630pt;}
.y3c8{bottom:729.267732pt;}
.y5d{bottom:730.783733pt;}
.y18f{bottom:732.302267pt;}
.y396{bottom:732.786558pt;}
.y17b{bottom:733.500938pt;}
.y314{bottom:734.065066pt;}
.y35{bottom:735.200000pt;}
.y277{bottom:735.262053pt;}
.y3b9{bottom:735.584586pt;}
.y3e9{bottom:737.280000pt;}
.y2ea{bottom:737.742133pt;}
.y214{bottom:737.742613pt;}
.y255{bottom:737.743732pt;}
.y3d2{bottom:739.020933pt;}
.y2bb{bottom:739.820053pt;}
.y7b{bottom:740.072129pt;}
.y388{bottom:743.337444pt;}
.y33c{bottom:743.347793pt;}
.y2cc{bottom:743.418693pt;}
.y1c7{bottom:743.420479pt;}
.ya7{bottom:743.580319pt;}
.y1ed{bottom:744.378400pt;}
.y1ec{bottom:745.738000pt;}
.y360{bottom:746.218400pt;}
.y11b{bottom:746.459228pt;}
.yfc{bottom:746.533905pt;}
.yb{bottom:747.680000pt;}
.y17a{bottom:748.455735pt;}
.yce{bottom:749.657067pt;}
.y3c7{bottom:751.100452pt;}
.y5c{bottom:752.055600pt;}
.y151{bottom:752.456210pt;}
.y395{bottom:754.219412pt;}
.y294{bottom:755.334400pt;}
.y313{bottom:755.576293pt;}
.y1a3{bottom:756.375173pt;}
.y3b8{bottom:757.097412pt;}
.y133{bottom:757.574856pt;}
.y33{bottom:757.759867pt;}
.y254{bottom:759.254959pt;}
.y213{bottom:759.255439pt;}
.y7a{bottom:760.863596pt;}
.y387{bottom:761.331832pt;}
.y33b{bottom:761.341091pt;}
.y230{bottom:761.735866pt;}
.y179{bottom:763.491875pt;}
.ya6{bottom:764.451760pt;}
.y11a{bottom:764.452934pt;}
.yfb{bottom:764.528293pt;}
.y276{bottom:764.772213pt;}
.y3d1{bottom:766.211733pt;}
.y2b9{bottom:771.329547pt;}
.y18e{bottom:772.449680pt;}
.y1c6{bottom:772.849067pt;}
.y2cb{bottom:773.568640pt;}
.y3de{bottom:773.920000pt;}
.y1eb{bottom:775.248160pt;}
.y312{bottom:777.089119pt;}
.y1a2{bottom:777.808027pt;}
.y293{bottom:778.127733pt;}
.y178{bottom:778.446672pt;}
.y3b7{bottom:778.528666pt;}
.y386{bottom:779.245788pt;}
.y33a{bottom:779.255257pt;}
.y31{bottom:780.480000pt;}
.y3c6{bottom:780.530638pt;}
.y2e9{bottom:780.767786pt;}
.y212{bottom:780.768266pt;}
.y5b{bottom:781.566400pt;}
.y79{bottom:781.736636pt;}
.y370{bottom:782.204540pt;}
.y119{bottom:782.446640pt;}
.yfa{bottom:782.521363pt;}
.y22f{bottom:783.248692pt;}
.ya5{bottom:785.244827pt;}
.y394{bottom:785.728905pt;}
.y253{bottom:788.765119pt;}
.ycd{bottom:789.724373pt;}
.y3d0{bottom:793.322400pt;}
.y177{bottom:793.401469pt;}
.y275{bottom:794.201707pt;}
.y2ca{bottom:795.081467pt;}
.y3e8{bottom:795.200000pt;}
.y1c5{bottom:795.321067pt;}
.y1ea{bottom:796.760987pt;}
.y385{bottom:797.240176pt;}
.y339{bottom:797.247236pt;}
.y152{bottom:797.880820pt;}
.y311{bottom:798.521973pt;}
.y1a1{bottom:799.320853pt;}
.y118{bottom:800.440346pt;}
.yf9{bottom:800.515751pt;}
.y18d{bottom:801.880639pt;}
.y2e8{bottom:802.200639pt;}
.y211{bottom:802.201119pt;}
.y3c5{bottom:802.361759pt;}
.y78{bottom:802.528103pt;}
.y2ba{bottom:802.759067pt;}
.y2f{bottom:803.040000pt;}
.y2b8{bottom:804.758400pt;}
.y22e{bottom:804.761519pt;}
.ya{bottom:804.966560pt;}
.y359{bottom:805.161972pt;}
.ya4{bottom:806.037893pt;}
.y393{bottom:807.160159pt;}
.y176{bottom:808.436509pt;}
.y3b6{bottom:810.039759pt;}
.y252{bottom:810.197973pt;}
.y5a{bottom:811.075867pt;}
.ycc{bottom:811.237199pt;}
.y384{bottom:815.234565pt;}
.y338{bottom:815.240534pt;}
.y2c9{bottom:816.594293pt;}
.y1e9{bottom:818.193840pt;}
.y292{bottom:818.195786pt;}
.y117{bottom:818.434052pt;}
.yf8{bottom:818.510139pt;}
.y3cf{bottom:820.433200pt;}
.y1a0{bottom:820.833680pt;}
.y77{bottom:823.319571pt;}
.y175{bottom:823.391307pt;}
.y210{bottom:823.712347pt;}
.y274{bottom:823.713253pt;}
.y358{bottom:826.673199pt;}
.ya3{bottom:826.830960pt;}
.y310{bottom:828.030533pt;}
.y392{bottom:828.672986pt;}
.y3e5{bottom:830.400000pt;}
.y18c{bottom:831.390986pt;}
.y3b5{bottom:831.471013pt;}
.y251{bottom:831.709493pt;}
.y2e7{bottom:831.710239pt;}
.y3c4{bottom:831.791946pt;}
.y59{bottom:832.509200pt;}
.y383{bottom:833.228953pt;}
.y337{bottom:833.233832pt;}
.y1c4{bottom:834.190106pt;}
.y2b6{bottom:834.908373pt;}
.y116{bottom:836.427758pt;}
.yf7{bottom:836.504528pt;}
.y29{bottom:837.280000pt;}
.y2c8{bottom:838.347040pt;}
.y174{bottom:838.427446pt;}
.y1e8{bottom:839.706667pt;}
.y291{bottom:839.707013pt;}
.ycb{bottom:840.747359pt;}
.y134{bottom:841.787446pt;}
.y153{bottom:843.305430pt;}
.y76{bottom:844.111038pt;}
.y3ce{bottom:847.543867pt;}
.ya2{bottom:847.624027pt;}
.y3e3{bottom:848.000000pt;}
.y357{bottom:848.265999pt;}
.y2b{bottom:849.440000pt;}
.y19f{bottom:850.263867pt;}
.y9{bottom:850.400000pt;}
.y382{bottom:851.222023pt;}
.y336{bottom:851.227130pt;}
.y250{bottom:853.142347pt;}
.y20f{bottom:853.143439pt;}
.y173{bottom:853.382243pt;}
.y3c3{bottom:853.624666pt;}
.y58{bottom:853.862533pt;}
.y115{bottom:854.342313pt;}
.yf6{bottom:854.418484pt;}
.y30d{bottom:854.741413pt;}
.y30f{bottom:855.062906pt;}
.y1c3{bottom:855.702933pt;}
.y391{bottom:860.102506pt;}
.y18b{bottom:860.901146pt;}
.y2e6{bottom:861.140426pt;}
.yca{bottom:862.180213pt;}
.y3b4{bottom:862.980506pt;}
.y27{bottom:863.840000pt;}
.y75{bottom:864.902505pt;}
.y3e1{bottom:865.440000pt;}
.y2b7{bottom:866.417867pt;}
.y2c7{bottom:867.857200pt;}
.ya1{bottom:868.417093pt;}
.y2b5{bottom:868.417200pt;}
.y172{bottom:868.417283pt;}
.y1e7{bottom:869.136853pt;}
.y335{bottom:869.220428pt;}
.y356{bottom:869.858799pt;}
.y8{bottom:871.040000pt;}
.y114{bottom:872.336019pt;}
.yf5{bottom:872.412872pt;}
.y19e{bottom:873.055867pt;}
.y24f{bottom:874.655173pt;}
.y3cd{bottom:874.734667pt;}
.y57{bottom:875.214533pt;}
.y1c2{bottom:877.135786pt;}
.y30c{bottom:880.892693pt;}
.y30e{bottom:881.134213pt;}
.y20e{bottom:881.293333pt;}
.y390{bottom:881.613733pt;}
.y20d{bottom:882.652373pt;}
.y2e5{bottom:882.653253pt;}
.y3c2{bottom:883.053253pt;}
.y171{bottom:883.372081pt;}
.yc9{bottom:883.693039pt;}
.y3b3{bottom:884.493333pt;}
.y74{bottom:885.693972pt;}
.y23{bottom:886.400000pt;}
.y381{bottom:886.809957pt;}
.y334{bottom:886.814109pt;}
.y7{bottom:888.491200pt;}
.y154{bottom:888.809640pt;}
.ya0{bottom:889.210160pt;}
.y113{bottom:890.329725pt;}
.y18a{bottom:890.329733pt;}
.yf4{bottom:890.407261pt;}
.y2c6{bottom:890.569333pt;}
.y1e6{bottom:890.649680pt;}
.y355{bottom:891.370027pt;}
.y3da{bottom:894.720000pt;}
.y24e{bottom:896.168746pt;}
.y170{bottom:898.408220pt;}
.y2b3{bottom:898.566293pt;}
.y1c1{bottom:898.648613pt;}
.y26{bottom:900.320000pt;}
.y3cc{bottom:901.846667pt;}
.y38f{bottom:903.124960pt;}
.y2e4{bottom:904.166079pt;}
.y273{bottom:904.167226pt;}
.y56{bottom:904.645333pt;}
.y380{bottom:904.804346pt;}
.y333{bottom:904.807407pt;}
.y3c1{bottom:904.885973pt;}
.y73{bottom:906.485439pt;}
.y22d{bottom:906.645946pt;}
.y30b{bottom:906.964000pt;}
.y112{bottom:908.323432pt;}
.yf3{bottom:908.401649pt;}
.y354{bottom:909.444000pt;}
.y6{bottom:909.925600pt;}
.y9f{bottom:910.083200pt;}
.y1e5{bottom:912.162507pt;}
.y20c{bottom:912.162960pt;}
.yc8{bottom:913.123226pt;}
.y16f{bottom:913.363017pt;}
.y3b2{bottom:916.002826pt;}
.y189{bottom:919.839893pt;}
.y2b2{bottom:919.999147pt;}
.y1c0{bottom:920.161439pt;}
.y3dd{bottom:923.520000pt;}
.y24d{bottom:925.597973pt;}
.y135{bottom:926.000035pt;}
.y111{bottom:926.317138pt;}
.yf2{bottom:926.396037pt;}
.y72{bottom:927.358479pt;}
.y22c{bottom:928.158773pt;}
.y16e{bottom:928.317815pt;}
.y3cb{bottom:928.957333pt;}
.y2c5{bottom:930.716613pt;}
.y9e{bottom:930.876267pt;}
.y353{bottom:931.196000pt;}
.y5{bottom:931.360000pt;}
.y290{bottom:933.595360pt;}
.y272{bottom:933.595813pt;}
.y307{bottom:933.994853pt;}
.y55{bottom:934.155280pt;}
.y155{bottom:934.234250pt;}
.y309{bottom:934.236373pt;}
.y3c0{bottom:934.316159pt;}
.y38e{bottom:934.554480pt;}
.yc7{bottom:934.636053pt;}
.y3b1{bottom:937.594027pt;}
.y37f{bottom:940.712690pt;}
.y332{bottom:940.714871pt;}
.y1e4{bottom:941.592693pt;}
.y20b{bottom:941.593147pt;}
.y16d{bottom:943.352855pt;}
.y110{bottom:944.310844pt;}
.yf1{bottom:944.390425pt;}
.y71{bottom:948.151546pt;}
.y20{bottom:948.640000pt;}
.y188{bottom:949.350053pt;}
.y1bf{bottom:949.590027pt;}
.y2b4{bottom:951.428667pt;}
.y9d{bottom:951.669333pt;}
.y2c4{bottom:952.149467pt;}
.y3d7{bottom:952.480000pt;}
.y2b1{bottom:953.428000pt;}
.y24c{bottom:955.108187pt;}
.y271{bottom:955.108640pt;}
.y38d{bottom:956.067307pt;}
.yc6{bottom:956.148879pt;}
.y16c{bottom:958.307652pt;}
.y37e{bottom:958.707078pt;}
.y331{bottom:958.708169pt;}
.y3b0{bottom:959.106853pt;}
.y306{bottom:960.066160pt;}
.y308{bottom:960.307679pt;}
.yf0{bottom:960.704968pt;}
.y10f{bottom:960.705696pt;}
.y1e3{bottom:963.105520pt;}
.y20a{bottom:963.105973pt;}
.y54{bottom:963.585467pt;}
.y187{bottom:970.782907pt;}
.y352{bottom:970.942907pt;}
.y125{bottom:971.102853pt;}
.y16b{bottom:971.982965pt;}
.y9c{bottom:972.462400pt;}
.y4{bottom:973.440000pt;}
.y330{bottom:976.701467pt;}
.y70{bottom:977.580133pt;}
.yef{bottom:978.699357pt;}
.y10e{bottom:978.700721pt;}
.y3d9{bottom:979.520000pt;}
.y156{bottom:979.658860pt;}
.y2c3{bottom:982.938800pt;}
.y2b0{bottom:983.658800pt;}
.y1e2{bottom:984.618347pt;}
.yc5{bottom:985.577467pt;}
.y305{bottom:986.137467pt;}
.y30a{bottom:986.378986pt;}
.y16a{bottom:987.018005pt;}
.y3af{bottom:990.616347pt;}
.y186{bottom:992.295707pt;}
.y351{bottom:992.535707pt;}
.y124{bottom:992.615680pt;}
.y9b{bottom:993.255467pt;}
.y53{bottom:995.654667pt;}
.yee{bottom:996.693745pt;}
.y10d{bottom:996.694427pt;}
.y6f{bottom:1001.092933pt;}
.y1e{bottom:1001.600000pt;}
.yc4{bottom:1009.090267pt;}
.y3ae{bottom:1012.049200pt;}
.y38c{bottom:1012.686288pt;}
.y1e1{bottom:1012.688933pt;}
.y340{bottom:1012.698613pt;}
.y304{bottom:1013.408667pt;}
.y185{bottom:1013.808533pt;}
.y9a{bottom:1014.048533pt;}
.y168{bottom:1014.448000pt;}
.yed{bottom:1014.688133pt;}
.y3{bottom:1014.886560pt;}
.y167{bottom:1016.927600pt;}
.y2{bottom:1060.320000pt;}
.y1{bottom:1105.760000pt;}
.h3d{height:11.536000pt;}
.h23{height:12.635733pt;}
.hc{height:22.560000pt;}
.h11{height:26.400000pt;}
.h8{height:26.560000pt;}
.he{height:26.561333pt;}
.h3c{height:30.916480pt;}
.h6{height:34.608000pt;}
.h24{height:36.079788pt;}
.h21{height:36.094299pt;}
.h20{height:36.137830pt;}
.h1f{height:36.146899pt;}
.h3a{height:36.640000pt;}
.hd{height:38.299520pt;}
.h1c{height:42.207532pt;}
.h4{height:42.452480pt;}
.h22{height:45.857806pt;}
.h17{height:46.128619pt;}
.hf{height:46.144000pt;}
.h16{height:52.590464pt;}
.h25{height:52.590571pt;}
.h27{height:52.591211pt;}
.h30{height:52.591317pt;}
.h32{height:52.591851pt;}
.h26{height:52.592169pt;}
.h2c{height:52.592277pt;}
.h31{height:52.593237pt;}
.ha{height:52.961333pt;}
.h34{height:53.739687pt;}
.h3{height:53.988480pt;}
.h1d{height:55.008675pt;}
.h35{height:55.021469pt;}
.h1e{height:55.034819pt;}
.h38{height:57.760000pt;}
.h2a{height:58.024597pt;}
.h2d{height:58.025131pt;}
.h2e{height:58.025664pt;}
.h28{height:58.028864pt;}
.h29{height:58.029931pt;}
.h2b{height:58.030464pt;}
.h2f{height:58.030997pt;}
.h9{height:61.371520pt;}
.h33{height:61.576784pt;}
.h15{height:61.581475pt;}
.hb{height:62.238667pt;}
.h18{height:62.462465pt;}
.h36{height:62.760323pt;}
.h7{height:69.216000pt;}
.h1b{height:72.399275pt;}
.h14{height:75.521333pt;}
.h13{height:75.678667pt;}
.h37{height:75.680000pt;}
.h1a{height:77.737606pt;}
.h19{height:89.081213pt;}
.h5{height:92.288000pt;}
.h39{height:120.800000pt;}
.h10{height:226.720000pt;}
.h12{height:226.721333pt;}
.h3e{height:228.800000pt;}
.h3b{height:345.760000pt;}
.h2{height:1122.548000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:47.904000pt;}
.w9{width:307.038667pt;}
.w8{width:307.200000pt;}
.w3{width:595.518667pt;}
.w7{width:614.238667pt;}
.w5{width:793.333333pt;}
.w4{width:793.626667pt;}
.w2{width:793.746667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.200000pt;}
.x38{left:47.903600pt;}
.x15{left:87.200000pt;}
.x17{left:94.407040pt;}
.x75{left:100.160000pt;}
.x4{left:101.600000pt;}
.x18{left:106.604267pt;}
.x7a{left:113.120000pt;}
.x1{left:114.880000pt;}
.x1f{left:118.440400pt;}
.x19{left:119.959867pt;}
.x78{left:123.840000pt;}
.x65{left:125.600000pt;}
.x66{left:128.000000pt;}
.x1a{left:133.235467pt;}
.x20{left:142.432400pt;}
.x43{left:145.470933pt;}
.x1b{left:146.590933pt;}
.x45{left:150.109600pt;}
.x1e{left:151.469600pt;}
.x4a{left:156.428267pt;}
.x69{left:157.920000pt;}
.x2c{left:159.947524pt;}
.x2{left:161.920000pt;}
.x62{left:166.424400pt;}
.x32{left:167.944395pt;}
.x3f{left:170.662683pt;}
.x79{left:172.000000pt;}
.x2f{left:174.102329pt;}
.x3e{left:177.460715pt;}
.x77{left:179.520000pt;}
.x31{left:180.900528pt;}
.x2b{left:183.619067pt;}
.x2e{left:187.617733pt;}
.x68{left:188.960000pt;}
.x41{left:195.295067pt;}
.x6a{left:196.960000pt;}
.x2d{left:199.374425pt;}
.x30{left:203.373092pt;}
.x40{left:209.449579pt;}
.x44{left:213.128400pt;}
.x58{left:217.127067pt;}
.xb{left:219.360000pt;}
.x5f{left:225.444400pt;}
.x6c{left:226.720000pt;}
.x56{left:229.523067pt;}
.x27{left:230.803067pt;}
.x6{left:236.800000pt;}
.x64{left:241.440000pt;}
.x6b{left:242.880000pt;}
.x11{left:249.120000pt;}
.x47{left:252.715067pt;}
.x48{left:256.073867pt;}
.x67{left:260.000000pt;}
.x6d{left:270.240000pt;}
.x33{left:273.988533pt;}
.x60{left:280.785867pt;}
.x36{left:282.705867pt;}
.x46{left:285.184533pt;}
.xc{left:286.240000pt;}
.x59{left:287.177014pt;}
.x3a{left:289.742988pt;}
.x3b{left:290.702694pt;}
.x3d{left:295.741977pt;}
.x3c{left:298.700247pt;}
.x5b{left:301.739200pt;}
.x28{left:307.976533pt;}
.x2a{left:309.176835pt;}
.x5c{left:311.336966pt;}
.x24{left:312.694866pt;}
.x21{left:313.895333pt;}
.x23{left:316.294950pt;}
.x22{left:319.893716pt;}
.x29{left:323.571239pt;}
.x61{left:329.891857pt;}
.x6e{left:344.960000pt;}
.x4f{left:349.322347pt;}
.x4c{left:352.121414pt;}
.x63{left:353.760000pt;}
.x5a{left:357.954664pt;}
.x12{left:361.280000pt;}
.x5e{left:362.921834pt;}
.x5d{left:367.718742pt;}
.x4b{left:369.075761pt;}
.x76{left:370.560000pt;}
.x42{left:381.632667pt;}
.x1c{left:385.391333pt;}
.x37{left:393.709333pt;}
.x16{left:396.800000pt;}
.x5{left:401.600000pt;}
.x70{left:420.320000pt;}
.x54{left:426.256694pt;}
.x52{left:427.614641pt;}
.x4e{left:430.415307pt;}
.x51{left:434.412374pt;}
.x39{left:444.651467pt;}
.x3{left:451.202560pt;}
.x4d{left:454.167387pt;}
.x10{left:467.360000pt;}
.x6f{left:478.720000pt;}
.x50{left:482.076481pt;}
.x74{left:486.720000pt;}
.xa{left:490.080000pt;}
.x53{left:496.551654pt;}
.x49{left:498.393813pt;}
.x25{left:499.832933pt;}
.x1d{left:504.711600pt;}
.x57{left:511.667681pt;}
.x34{left:523.664933pt;}
.x55{left:528.703733pt;}
.x14{left:529.600000pt;}
.x13{left:533.120000pt;}
.xf{left:544.960000pt;}
.x71{left:550.080000pt;}
.x72{left:577.440000pt;}
.xe{left:610.240000pt;}
.x8{left:639.680000pt;}
.x26{left:642.664001pt;}
.x35{left:643.623681pt;}
.x7{left:668.800000pt;}
.x73{left:677.760000pt;}
.x9{left:689.760000pt;}
}




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