
    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_304b4a8e406d0df374584848.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c9e5434a2224f16f0bdcd130.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fe179561469ee352dcb1aab8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2ebf44a23e6d20331092b4f0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.952000;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_137bece0f5b22638afae2944.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.075000;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_356e59fe65d90a7924acc90d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908000;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_b76b221c5be8b060f5d4c0a9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736328;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_effa9786c637840140773842.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.712000;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_287018375124ddffea94ba4c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.995000;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_0b6d7b92fd072cf379d3ffcf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f8633806599760a2ce983a91.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_192e8759e76df9e1afc54226.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.712000;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_2ee928c6e48de6599899c600.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;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_9eb2e67ab1c6372235ce55bb.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_192e8759e76df9e1afc54226.woff2')format("woff");}.fff{font-family:fff;line-height:0.712000;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_6b5d83bb299760c93bcb5e12.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.106000;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_9d30040b88e8b8fdd54d9999.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.879000;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:ff12;src:url('chunks/assets/font_3b511fb1bb1fe02c3489d7a9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.684570;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:ff13;src:url('chunks/assets/font_52a1c5dbbacc359b2396aa41.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.936000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m4{transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);}
.m5{transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043412,0.246202,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);}
.m2{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);}
.v7{vertical-align:-23.152800px;}
.vc{vertical-align:-21.500400px;}
.v9{vertical-align:-18.811800px;}
.v4{vertical-align:-8.810400px;}
.va{vertical-align:-7.523400px;}
.vf{vertical-align:-4.221000px;}
.v2{vertical-align:-2.976000px;}
.vd{vertical-align:-1.636800px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.745280px;}
.v1{vertical-align:2.976000px;}
.v8{vertical-align:5.952000px;}
.v5{vertical-align:13.324200px;}
.ve{vertical-align:19.357800px;}
.vb{vertical-align:21.528000px;}
.v6{vertical-align:23.152800px;}
.ls63{letter-spacing:-6.652800px;}
.ls76{letter-spacing:-6.056400px;}
.ls9{letter-spacing:-5.429760px;}
.ls5a{letter-spacing:-2.745600px;}
.lsa{letter-spacing:-2.700000px;}
.ls61{letter-spacing:-2.646000px;}
.ls52{letter-spacing:-2.410800px;}
.ls3{letter-spacing:-2.400000px;}
.ls72{letter-spacing:-2.352000px;}
.ls56{letter-spacing:-2.331000px;}
.ls6c{letter-spacing:-2.293200px;}
.ls71{letter-spacing:-2.175600px;}
.ls4a{letter-spacing:-2.116800px;}
.ls55{letter-spacing:-2.115000px;}
.ls93{letter-spacing:-2.112000px;}
.ls28{letter-spacing:-2.058000px;}
.ls7a{letter-spacing:-1.999200px;}
.ls9d{letter-spacing:-1.920000px;}
.ls4f{letter-spacing:-1.881600px;}
.ls9c{letter-spacing:-1.872000px;}
.ls20{letter-spacing:-1.822800px;}
.ls17{letter-spacing:-1.764000px;}
.lse{letter-spacing:-1.728000px;}
.ls35{letter-spacing:-1.705200px;}
.ls96{letter-spacing:-1.680000px;}
.ls3c{letter-spacing:-1.646400px;}
.ls97{letter-spacing:-1.632000px;}
.ls53{letter-spacing:-1.620000px;}
.ls4d{letter-spacing:-1.587600px;}
.ls9a{letter-spacing:-1.584000px;}
.ls14{letter-spacing:-1.528800px;}
.ls7d{letter-spacing:-1.488000px;}
.ls15{letter-spacing:-1.470000px;}
.ls99{letter-spacing:-1.440000px;}
.ls18{letter-spacing:-1.411200px;}
.ls41{letter-spacing:-1.352400px;}
.ls2c{letter-spacing:-1.350000px;}
.ls62{letter-spacing:-1.320000px;}
.ls19{letter-spacing:-1.293600px;}
.ls94{letter-spacing:-1.248000px;}
.ls42{letter-spacing:-1.234800px;}
.lsc{letter-spacing:-1.200000px;}
.ls3f{letter-spacing:-1.199814px;}
.ls16{letter-spacing:-1.176000px;}
.ls2f{letter-spacing:-1.134000px;}
.ls1c{letter-spacing:-1.117200px;}
.ls92{letter-spacing:-1.104000px;}
.ls8{letter-spacing:-1.090800px;}
.ls2d{letter-spacing:-1.081710px;}
.ls31{letter-spacing:-1.080000px;}
.ls44{letter-spacing:-1.058400px;}
.ls5b{letter-spacing:-1.056000px;}
.ls4e{letter-spacing:-1.036800px;}
.ls34{letter-spacing:-1.030200px;}
.ls23{letter-spacing:-1.028412px;}
.ls33{letter-spacing:-1.026000px;}
.ls29{letter-spacing:-1.020000px;}
.ls95{letter-spacing:-1.008000px;}
.ls40{letter-spacing:-0.999600px;}
.ls10{letter-spacing:-0.990000px;}
.ls4b{letter-spacing:-0.972000px;}
.ls7b{letter-spacing:-0.960000px;}
.ls1a{letter-spacing:-0.940800px;}
.ls32{letter-spacing:-0.918000px;}
.ls98{letter-spacing:-0.912000px;}
.ls5e{letter-spacing:-0.906576px;}
.ls59{letter-spacing:-0.897600px;}
.ls74{letter-spacing:-0.891290px;}
.ls1f{letter-spacing:-0.882000px;}
.ls51{letter-spacing:-0.864000px;}
.ls24{letter-spacing:-0.857010px;}
.ls1e{letter-spacing:-0.823200px;}
.ls9e{letter-spacing:-0.816000px;}
.ls2a{letter-spacing:-0.810000px;}
.ls5d{letter-spacing:-0.799920px;}
.ls58{letter-spacing:-0.792000px;}
.ls13{letter-spacing:-0.780000px;}
.ls6{letter-spacing:-0.775680px;}
.lsd{letter-spacing:-0.768000px;}
.ls21{letter-spacing:-0.764400px;}
.lsb{letter-spacing:-0.720000px;}
.ls43{letter-spacing:-0.719888px;}
.ls39{letter-spacing:-0.705600px;}
.ls5f{letter-spacing:-0.693264px;}
.ls5c{letter-spacing:-0.686400px;}
.ls26{letter-spacing:-0.685608px;}
.ls9b{letter-spacing:-0.672000px;}
.ls30{letter-spacing:-0.648000px;}
.ls37{letter-spacing:-0.646800px;}
.ls64{letter-spacing:-0.633600px;}
.ls8f{letter-spacing:-0.624000px;}
.ls0{letter-spacing:-0.600000px;}
.ls2e{letter-spacing:-0.594000px;}
.ls1b{letter-spacing:-0.588000px;}
.ls6e{letter-spacing:-0.582767px;}
.ls8e{letter-spacing:-0.576000px;}
.lsf{letter-spacing:-0.570000px;}
.ls75{letter-spacing:-0.548486px;}
.ls2b{letter-spacing:-0.540000px;}
.ls3d{letter-spacing:-0.529200px;}
.ls90{letter-spacing:-0.528000px;}
.ls25{letter-spacing:-0.514206px;}
.ls5{letter-spacing:-0.484800px;}
.ls2{letter-spacing:-0.480000px;}
.ls3e{letter-spacing:-0.470400px;}
.ls54{letter-spacing:-0.450000px;}
.ls7e{letter-spacing:-0.432000px;}
.ls3b{letter-spacing:-0.411600px;}
.ls12{letter-spacing:-0.390000px;}
.ls88{letter-spacing:-0.384000px;}
.ls6d{letter-spacing:-0.377084px;}
.ls3a{letter-spacing:-0.352800px;}
.ls27{letter-spacing:-0.342804px;}
.ls7{letter-spacing:-0.339360px;}
.ls86{letter-spacing:-0.336000px;}
.ls6b{letter-spacing:-0.308524px;}
.ls22{letter-spacing:-0.294000px;}
.ls8b{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.279840px;}
.ls6f{letter-spacing:-0.274243px;}
.ls7f{letter-spacing:-0.240000px;}
.ls70{letter-spacing:-0.239963px;}
.ls49{letter-spacing:-0.235200px;}
.ls83{letter-spacing:-0.192000px;}
.ls36{letter-spacing:-0.176400px;}
.ls80{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.117600px;}
.ls7c{letter-spacing:-0.096000px;}
.ls4c{letter-spacing:-0.058800px;}
.ls84{letter-spacing:-0.048000px;}
.ls73{letter-spacing:-0.034280px;}
.ls1{letter-spacing:0.000000px;}
.ls78{letter-spacing:0.048000px;}
.ls45{letter-spacing:0.058800px;}
.ls85{letter-spacing:0.096000px;}
.ls46{letter-spacing:0.117600px;}
.ls77{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.145440px;}
.ls47{letter-spacing:0.176400px;}
.ls38{letter-spacing:0.235200px;}
.ls89{letter-spacing:0.240000px;}
.ls87{letter-spacing:0.288000px;}
.ls8d{letter-spacing:0.336000px;}
.ls48{letter-spacing:0.352800px;}
.ls91{letter-spacing:0.384000px;}
.ls82{letter-spacing:0.432000px;}
.ls60{letter-spacing:0.470400px;}
.ls8c{letter-spacing:0.528000px;}
.ls65{letter-spacing:0.535080px;}
.ls79{letter-spacing:0.576000px;}
.ls50{letter-spacing:0.646800px;}
.ls81{letter-spacing:0.672000px;}
.ls8a{letter-spacing:0.864000px;}
.ls68{letter-spacing:62.719349px;}
.ls67{letter-spacing:114.100800px;}
.ls69{letter-spacing:169.272586px;}
.ls6a{letter-spacing:186.014400px;}
.ls57{letter-spacing:282.268800px;}
.ls66{letter-spacing:379.473600px;}
.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;}
}
.ws1a{word-spacing:-16.146000px;}
.ws0{word-spacing:-16.080000px;}
.ws142{word-spacing:-15.628800px;}
.ws8d{word-spacing:-14.836800px;}
.ws6f{word-spacing:-13.465200px;}
.ws53{word-spacing:-13.413600px;}
.ws1{word-spacing:-13.344000px;}
.ws25{word-spacing:-13.289580px;}
.ws23{word-spacing:-13.238070px;}
.ws51{word-spacing:-13.171200px;}
.ws22{word-spacing:-13.158000px;}
.ws7e{word-spacing:-13.014000px;}
.ws2{word-spacing:-12.864000px;}
.wse1{word-spacing:-12.852048px;}
.ws52{word-spacing:-12.759600px;}
.wsb5{word-spacing:-12.724800px;}
.ws24{word-spacing:-12.366000px;}
.ws1c{word-spacing:-12.171600px;}
.ws56{word-spacing:-12.054000px;}
.wsc4{word-spacing:-12.052128px;}
.ws8e{word-spacing:-11.932800px;}
.ws141{word-spacing:-11.877600px;}
.ws152{word-spacing:-11.524800px;}
.ws19{word-spacing:-11.520000px;}
.ws171{word-spacing:-11.280000px;}
.ws13c{word-spacing:-11.054400px;}
.wsb{word-spacing:-10.896000px;}
.ws177{word-spacing:-10.704000px;}
.ws3{word-spacing:-10.665600px;}
.ws198{word-spacing:-10.656000px;}
.ws174{word-spacing:-10.608000px;}
.ws173{word-spacing:-10.512000px;}
.ws159{word-spacing:-10.416000px;}
.ws80{word-spacing:-10.395000px;}
.ws5{word-spacing:-10.180800px;}
.wsd{word-spacing:-10.176000px;}
.wse{word-spacing:-10.128000px;}
.ws8{word-spacing:-10.035360px;}
.ws197{word-spacing:-10.032000px;}
.wsaf{word-spacing:-9.979200px;}
.ws4{word-spacing:-9.744480px;}
.wsc{word-spacing:-9.696000px;}
.ws175{word-spacing:-9.408000px;}
.ws196{word-spacing:-9.360000px;}
.ws199{word-spacing:-9.264000px;}
.ws176{word-spacing:-9.120000px;}
.ws172{word-spacing:-8.880000px;}
.ws81{word-spacing:-8.730000px;}
.ws1b{word-spacing:-7.781651px;}
.wsf{word-spacing:-7.779552px;}
.ws151{word-spacing:-7.747370px;}
.ws140{word-spacing:-7.541688px;}
.ws13f{word-spacing:-7.507408px;}
.ws10{word-spacing:-7.499712px;}
.ws13b{word-spacing:-7.473127px;}
.ws21{word-spacing:-7.438847px;}
.ws10d{word-spacing:-7.418558px;}
.ws13d{word-spacing:-7.404566px;}
.ws155{word-spacing:-7.291200px;}
.ws1f{word-spacing:-7.267445px;}
.ws154{word-spacing:-7.233164px;}
.ws13e{word-spacing:-7.198884px;}
.ws20{word-spacing:-7.096043px;}
.ws55{word-spacing:-7.061762px;}
.ws1e{word-spacing:-6.924641px;}
.ws153{word-spacing:-6.890360px;}
.ws1d{word-spacing:-6.753239px;}
.ws54{word-spacing:-6.581837px;}
.ws11{word-spacing:-6.320886px;}
.ws7{word-spacing:-5.090400px;}
.ws17{word-spacing:-2.640000px;}
.ws49{word-spacing:-0.594000px;}
.ws87{word-spacing:-0.588000px;}
.ws4a{word-spacing:-0.540000px;}
.ws15{word-spacing:-0.484800px;}
.ws12{word-spacing:-0.480000px;}
.ws7d{word-spacing:-0.352800px;}
.ws50{word-spacing:-0.324000px;}
.ws65{word-spacing:-0.294000px;}
.ws182{word-spacing:-0.240000px;}
.ws18d{word-spacing:-0.192000px;}
.ws147{word-spacing:-0.117600px;}
.ws38{word-spacing:-0.058800px;}
.wsc3{word-spacing:-0.054540px;}
.ws7f{word-spacing:-0.054000px;}
.wsc5{word-spacing:-0.053328px;}
.ws8f{word-spacing:-0.052800px;}
.ws9{word-spacing:-0.048480px;}
.ws82{word-spacing:-0.045000px;}
.ws14{word-spacing:0.000000px;}
.ws15f{word-spacing:0.048000px;}
.ws138{word-spacing:0.054000px;}
.ws111{word-spacing:0.058800px;}
.ws195{word-spacing:0.096000px;}
.ws2e{word-spacing:0.117600px;}
.ws170{word-spacing:0.144000px;}
.wsbe{word-spacing:0.158400px;}
.ws62{word-spacing:0.176400px;}
.ws15e{word-spacing:0.192000px;}
.ws14e{word-spacing:0.211200px;}
.ws43{word-spacing:0.216000px;}
.ws29{word-spacing:0.235200px;}
.ws161{word-spacing:0.240000px;}
.ws114{word-spacing:0.264000px;}
.ws2a{word-spacing:0.294000px;}
.ws76{word-spacing:0.324000px;}
.ws19f{word-spacing:0.336000px;}
.ws63{word-spacing:0.342804px;}
.ws2d{word-spacing:0.352800px;}
.wsc0{word-spacing:0.369600px;}
.ws189{word-spacing:0.384000px;}
.ws18{word-spacing:0.390000px;}
.ws30{word-spacing:0.411600px;}
.ws8b{word-spacing:0.450000px;}
.ws33{word-spacing:0.470400px;}
.ws13{word-spacing:0.480000px;}
.ws18e{word-spacing:0.528000px;}
.ws28{word-spacing:0.529200px;}
.ws4f{word-spacing:0.540000px;}
.ws193{word-spacing:0.576000px;}
.ws113{word-spacing:0.580800px;}
.ws2f{word-spacing:0.588000px;}
.ws26{word-spacing:0.600000px;}
.ws16{word-spacing:0.624000px;}
.ws14d{word-spacing:0.633600px;}
.ws5f{word-spacing:0.646800px;}
.ws47{word-spacing:0.648000px;}
.ws19a{word-spacing:0.672000px;}
.wsef{word-spacing:0.693264px;}
.ws2b{word-spacing:0.705600px;}
.ws15d{word-spacing:0.720000px;}
.ws70{word-spacing:0.764400px;}
.ws184{word-spacing:0.768000px;}
.wsbb{word-spacing:0.792000px;}
.wsec{word-spacing:0.799920px;}
.ws85{word-spacing:0.810000px;}
.ws19e{word-spacing:0.816000px;}
.ws3d{word-spacing:0.823200px;}
.ws166{word-spacing:0.864000px;}
.ws32{word-spacing:0.882000px;}
.ws181{word-spacing:0.912000px;}
.ws34{word-spacing:0.940800px;}
.ws17f{word-spacing:0.960000px;}
.ws44{word-spacing:0.969000px;}
.ws35{word-spacing:0.999600px;}
.wsc2{word-spacing:1.003200px;}
.ws6{word-spacing:1.036260px;}
.ws13a{word-spacing:1.056000px;}
.ws148{word-spacing:1.058400px;}
.ws14c{word-spacing:1.080000px;}
.wseb{word-spacing:1.090800px;}
.ws19b{word-spacing:1.104000px;}
.wsc1{word-spacing:1.108800px;}
.ws37{word-spacing:1.117200px;}
.ws17a{word-spacing:1.152000px;}
.wsed{word-spacing:1.173216px;}
.ws3c{word-spacing:1.176000px;}
.ws180{word-spacing:1.200000px;}
.ws57{word-spacing:1.234800px;}
.ws137{word-spacing:1.242000px;}
.ws18a{word-spacing:1.248000px;}
.ws112{word-spacing:1.267200px;}
.ws6d{word-spacing:1.293600px;}
.ws165{word-spacing:1.296000px;}
.ws15a{word-spacing:1.344000px;}
.ws4e{word-spacing:1.350000px;}
.ws6e{word-spacing:1.352400px;}
.wsf1{word-spacing:1.386528px;}
.ws169{word-spacing:1.392000px;}
.ws3e{word-spacing:1.411200px;}
.ws115{word-spacing:1.425600px;}
.wsf0{word-spacing:1.439856px;}
.ws186{word-spacing:1.440000px;}
.ws6a{word-spacing:1.470000px;}
.ws17c{word-spacing:1.488000px;}
.ws7c{word-spacing:1.528800px;}
.ws187{word-spacing:1.536000px;}
.ws42{word-spacing:1.566000px;}
.ws1a0{word-spacing:1.584000px;}
.ws77{word-spacing:1.587600px;}
.ws4d{word-spacing:1.620000px;}
.ws40{word-spacing:1.632000px;}
.ws10e{word-spacing:1.646400px;}
.ws16b{word-spacing:1.680000px;}
.ws7a{word-spacing:1.705200px;}
.wsba{word-spacing:1.728000px;}
.ws5d{word-spacing:1.764000px;}
.ws16d{word-spacing:1.776000px;}
.ws139{word-spacing:1.795200px;}
.ws5c{word-spacing:1.822800px;}
.ws191{word-spacing:1.824000px;}
.wsbc{word-spacing:1.848000px;}
.ws162{word-spacing:1.872000px;}
.ws110{word-spacing:1.881600px;}
.ws194{word-spacing:1.920000px;}
.ws156{word-spacing:1.940400px;}
.ws19c{word-spacing:1.968000px;}
.ws46{word-spacing:1.998000px;}
.ws27{word-spacing:1.999200px;}
.ws18f{word-spacing:2.016000px;}
.ws39{word-spacing:2.058000px;}
.wsb9{word-spacing:2.106000px;}
.ws168{word-spacing:2.112000px;}
.ws8a{word-spacing:2.116800px;}
.ws3a{word-spacing:2.175600px;}
.ws192{word-spacing:2.208000px;}
.ws59{word-spacing:2.234400px;}
.wsea{word-spacing:2.236140px;}
.ws16c{word-spacing:2.256000px;}
.ws41{word-spacing:2.268000px;}
.ws2c{word-spacing:2.293200px;}
.ws17d{word-spacing:2.304000px;}
.ws18b{word-spacing:2.400000px;}
.ws67{word-spacing:2.410800px;}
.ws48{word-spacing:2.430000px;}
.ws17b{word-spacing:2.448000px;}
.ws6b{word-spacing:2.469600px;}
.ws183{word-spacing:2.496000px;}
.ws5e{word-spacing:2.528400px;}
.ws58{word-spacing:2.587200px;}
.ws16f{word-spacing:2.592000px;}
.ws3f{word-spacing:2.601000px;}
.ws72{word-spacing:2.646000px;}
.ws16a{word-spacing:2.688000px;}
.ws150{word-spacing:2.692800px;}
.ws149{word-spacing:2.704800px;}
.ws190{word-spacing:2.736000px;}
.wse9{word-spacing:2.781540px;}
.wsb8{word-spacing:2.822400px;}
.ws164{word-spacing:2.832000px;}
.ws15c{word-spacing:2.880000px;}
.ws14b{word-spacing:2.881200px;}
.ws157{word-spacing:2.940000px;}
.ws179{word-spacing:2.976000px;}
.ws88{word-spacing:2.998800px;}
.ws84{word-spacing:3.024000px;}
.ws14a{word-spacing:3.057600px;}
.ws185{word-spacing:3.072000px;}
.ws14f{word-spacing:3.115200px;}
.ws5a{word-spacing:3.116400px;}
.ws19d{word-spacing:3.168000px;}
.ws75{word-spacing:3.175200px;}
.ws69{word-spacing:3.234000px;}
.ws4c{word-spacing:3.240000px;}
.ws167{word-spacing:3.264000px;}
.ws86{word-spacing:3.292800px;}
.ws45{word-spacing:3.294000px;}
.ws163{word-spacing:3.312000px;}
.ws89{word-spacing:3.351600px;}
.ws17e{word-spacing:3.360000px;}
.ws16e{word-spacing:3.456000px;}
.ws3b{word-spacing:3.469200px;}
.ws178{word-spacing:3.504000px;}
.ws71{word-spacing:3.528000px;}
.ws160{word-spacing:3.552000px;}
.ws60{word-spacing:3.586800px;}
.ws15b{word-spacing:3.600000px;}
.ws64{word-spacing:3.645600px;}
.ws18c{word-spacing:3.648000px;}
.ws10f{word-spacing:3.704400px;}
.ws83{word-spacing:3.726000px;}
.ws73{word-spacing:3.763200px;}
.ws7b{word-spacing:3.822000px;}
.ws66{word-spacing:3.880800px;}
.ws158{word-spacing:3.939600px;}
.ws68{word-spacing:3.998400px;}
.wsbd{word-spacing:4.012800px;}
.ws4b{word-spacing:4.050000px;}
.ws6c{word-spacing:4.057200px;}
.ws61{word-spacing:4.116000px;}
.ws74{word-spacing:4.174800px;}
.wsbf{word-spacing:4.224000px;}
.ws5b{word-spacing:4.233600px;}
.wsee{word-spacing:4.266240px;}
.ws188{word-spacing:4.272000px;}
.ws36{word-spacing:4.351200px;}
.ws31{word-spacing:4.410000px;}
.ws78{word-spacing:4.704000px;}
.ws79{word-spacing:4.821600px;}
.ws8c{word-spacing:5.796000px;}
.wsa{word-spacing:6.080400px;}
.ws108{word-spacing:28.828800px;}
.ws11a{word-spacing:30.201600px;}
.wsf3{word-spacing:30.782400px;}
.ws102{word-spacing:40.708800px;}
.ws118{word-spacing:41.976000px;}
.wsf7{word-spacing:43.348800px;}
.wsf4{word-spacing:45.302400px;}
.ws130{word-spacing:48.945600px;}
.wsf2{word-spacing:50.001600px;}
.ws11b{word-spacing:50.107200px;}
.ws12d{word-spacing:50.899200px;}
.ws10b{word-spacing:51.585600px;}
.wsfc{word-spacing:52.060800px;}
.ws121{word-spacing:52.113600px;}
.ws10a{word-spacing:52.588800px;}
.ws10c{word-spacing:53.011200px;}
.ws100{word-spacing:53.433600px;}
.ws101{word-spacing:54.014400px;}
.ws135{word-spacing:54.067200px;}
.wsf5{word-spacing:54.964800px;}
.wsfa{word-spacing:55.387200px;}
.wsfe{word-spacing:55.968000px;}
.ws132{word-spacing:56.020800px;}
.wsf8{word-spacing:56.918400px;}
.ws119{word-spacing:57.393600px;}
.ws11d{word-spacing:59.347200px;}
.ws12c{word-spacing:59.980800px;}
.ws12e{word-spacing:60.720000px;}
.ws104{word-spacing:61.248000px;}
.ws12f{word-spacing:61.934400px;}
.ws109{word-spacing:62.092800px;}
.ws134{word-spacing:62.832000px;}
.ws136{word-spacing:64.310400px;}
.ws11c{word-spacing:64.627200px;}
.ws133{word-spacing:64.944000px;}
.ws12b{word-spacing:68.534400px;}
.ws103{word-spacing:70.224000px;}
.ws107{word-spacing:70.699200px;}
.ws131{word-spacing:70.752000px;}
.ws123{word-spacing:71.860800px;}
.ws120{word-spacing:73.550400px;}
.ws125{word-spacing:74.553600px;}
.ws124{word-spacing:75.504000px;}
.wsf6{word-spacing:75.609600px;}
.ws106{word-spacing:76.560000px;}
.wscc{word-spacing:79.352064px;}
.ws128{word-spacing:80.414400px;}
.ws11f{word-spacing:81.998400px;}
.ws143{word-spacing:82.948800px;}
.ws146{word-spacing:83.424000px;}
.ws145{word-spacing:83.899200px;}
.ws122{word-spacing:85.324800px;}
.wsfb{word-spacing:86.697600px;}
.ws144{word-spacing:86.856000px;}
.wsff{word-spacing:86.961600px;}
.ws126{word-spacing:87.278400px;}
.ws127{word-spacing:87.542400px;}
.wsfd{word-spacing:88.651200px;}
.ws11e{word-spacing:89.232000px;}
.ws12a{word-spacing:94.353600px;}
.wsf9{word-spacing:95.304000px;}
.ws97{word-spacing:98.683200px;}
.wsde{word-spacing:99.136752px;}
.ws129{word-spacing:101.376000px;}
.wsab{word-spacing:104.332800px;}
.wsb7{word-spacing:106.286400px;}
.wse5{word-spacing:110.122320px;}
.ws99{word-spacing:110.246400px;}
.ws105{word-spacing:111.302400px;}
.ws98{word-spacing:116.476800px;}
.wse3{word-spacing:123.987600px;}
.wsce{word-spacing:128.947104px;}
.wsb1{word-spacing:129.148800px;}
.wsd9{word-spacing:131.026896px;}
.wsdc{word-spacing:133.000032px;}
.wsb3{word-spacing:133.848000px;}
.wsd8{word-spacing:134.866512px;}
.wsd6{word-spacing:134.973168px;}
.wsd0{word-spacing:136.946304px;}
.wsa7{word-spacing:139.708800px;}
.wsa4{word-spacing:141.662400px;}
.wsb2{word-spacing:146.942400px;}
.wscd{word-spacing:147.131952px;}
.wsa9{word-spacing:147.892800px;}
.wsa5{word-spacing:149.846400px;}
.wsa2{word-spacing:151.800000px;}
.ws9c{word-spacing:153.753600px;}
.wsc8{word-spacing:153.797952px;}
.wse7{word-spacing:153.904608px;}
.wsd4{word-spacing:154.811184px;}
.wsc6{word-spacing:155.877744px;}
.ws96{word-spacing:158.452800px;}
.wsa0{word-spacing:160.406400px;}
.wsaa{word-spacing:163.732800px;}
.wsa3{word-spacing:165.686400px;}
.wse6{word-spacing:170.009664px;}
.ws90{word-spacing:170.544000px;}
.ws9d{word-spacing:171.547200px;}
.wsd2{word-spacing:178.755456px;}
.wse4{word-spacing:180.728592px;}
.ws92{word-spacing:183.057600px;}
.ws91{word-spacing:188.337600px;}
.wsa8{word-spacing:190.027200px;}
.wsb6{word-spacing:190.291200px;}
.wsa6{word-spacing:191.294400px;}
.wsdf{word-spacing:194.540544px;}
.wsdd{word-spacing:194.860512px;}
.ws9e{word-spacing:195.148800px;}
.wse8{word-spacing:196.833648px;}
.ws9f{word-spacing:197.102400px;}
.wsd7{word-spacing:200.779920px;}
.wsac{word-spacing:201.009600px;}
.wsca{word-spacing:203.606304px;}
.ws95{word-spacing:212.942400px;}
.ws93{word-spacing:219.542400px;}
.wsc7{word-spacing:219.711360px;}
.ws94{word-spacing:219.753600px;}
.wsad{word-spacing:220.545600px;}
.wsd1{word-spacing:221.684496px;}
.wsdb{word-spacing:222.697728px;}
.wsda{word-spacing:223.657632px;}
.wsc9{word-spacing:224.350896px;}
.wsb4{word-spacing:237.547200px;}
.wse0{word-spacing:239.496048px;}
.wsae{word-spacing:239.500800px;}
.wsb0{word-spacing:244.358400px;}
.wse2{word-spacing:244.562208px;}
.wscb{word-spacing:246.535344px;}
.wsd3{word-spacing:269.413056px;}
.wscf{word-spacing:299.703360px;}
.ws9a{word-spacing:312.206400px;}
.ws9b{word-spacing:313.209600px;}
.wsa1{word-spacing:329.155200px;}
.wsd5{word-spacing:349.458384px;}
.ws116{word-spacing:1289.952600px;}
.ws117{word-spacing:1328.155800px;}
._b{margin-left:-12.641130px;}
._5{margin-left:-9.240000px;}
._a{margin-left:-7.521600px;}
._9{margin-left:-5.605920px;}
._3{margin-left:-4.440000px;}
._4{margin-left:-3.240000px;}
._0{margin-left:-1.776000px;}
._1{width:1.080000px;}
._2{width:2.616000px;}
._c{width:3.643320px;}
._6{width:4.751040px;}
._80{width:6.850080px;}
._69{width:64.468800px;}
._5b{width:67.848000px;}
._60{width:69.076800px;}
._75{width:70.617600px;}
._7a{width:71.966400px;}
._74{width:73.689600px;}
._76{width:74.764800px;}
._62{width:76.368000px;}
._5e{width:77.966400px;}
._8{width:79.621800px;}
._61{width:82.156800px;}
._73{width:83.817600px;}
._5d{width:85.170720px;}
._5c{width:86.596800px;}
._7d{width:90.014400px;}
._64{width:92.381400px;}
._5f{width:93.681600px;}
._63{width:95.557920px;}
._86{width:96.715200px;}
._7c{width:98.683200px;}
._65{width:105.350400px;}
._66{width:107.481600px;}
._79{width:108.955680px;}
._68{width:111.335112px;}
._6c{width:112.761600px;}
._78{width:114.715200px;}
._92{width:117.198168px;}
._4e{width:127.453920px;}
._84{width:130.785600px;}
._6a{width:132.211200px;}
._81{width:135.590400px;}
._8a{width:137.966400px;}
._8c{width:139.603200px;}
._97{width:146.592000px;}
._2c{width:150.744000px;}
._82{width:157.132800px;}
._8b{width:164.736000px;}
._95{width:167.284800px;}
._90{width:169.118400px;}
._8f{width:170.341920px;}
._6b{width:178.358400px;}
._1d{width:188.020800px;}
._43{width:192.514080px;}
._67{width:205.972800px;}
._4c{width:207.339264px;}
._7b{width:209.352000px;}
._6d{width:215.899200px;}
._83{width:219.331200px;}
._41{width:223.977600px;}
._77{width:226.195200px;}
._20{width:231.844800px;}
._1b{width:237.230400px;}
._5a{width:245.256000px;}
._72{width:248.688000px;}
._1c{width:252.806400px;}
._7e{width:255.057600px;}
._88{width:264.498720px;}
._8e{width:266.274720px;}
._89{width:268.699200px;}
._96{width:271.176000px;}
._42{width:273.359328px;}
._38{width:311.755488px;}
._4f{width:312.768720px;}
._7f{width:315.110400px;}
._6e{width:317.644800px;}
._85{width:321.024000px;}
._12{width:324.139200px;}
._24{width:325.142400px;}
._13{width:339.715200px;}
._1f{width:341.193600px;}
._91{width:347.318400px;}
._39{width:361.137216px;}
._58{width:362.630400px;}
._94{width:425.971200px;}
._93{width:445.718400px;}
._6f{width:457.335000px;}
._d{width:461.565000px;}
._8d{width:512.107200px;}
._87{width:532.857600px;}
._e{width:537.840000px;}
._70{width:559.755000px;}
._57{width:764.846352px;}
._35{width:781.843200px;}
._3b{width:793.307328px;}
._15{width:809.899200px;}
._26{width:929.947200px;}
._45{width:1111.675488px;}
._22{width:1125.168000px;}
._54{width:1127.050128px;}
._48{width:1130.143152px;}
._49{width:1132.169616px;}
._40{width:1134.142752px;}
._29{width:1138.579200px;}
._32{width:1140.460800px;}
._27{width:1145.529600px;}
._1a{width:1147.430400px;}
._3a{width:1149.645024px;}
._4a{width:1154.924496px;}
._14{width:1162.708800px;}
._28{width:1167.936000px;}
._55{width:1176.042384px;}
._3d{width:1220.160816px;}
._59{width:1222.864368px;}
._17{width:1232.649600px;}
._36{width:1235.203200px;}
._44{width:1240.729248px;}
._53{width:1243.358496px;}
._33{width:1247.030400px;}
._21{width:1252.891200px;}
._1e{width:1264.507200px;}
._31{width:1267.444800px;}
._46{width:1275.925728px;}
._3f{width:1282.911696px;}
._23{width:1287.844800px;}
._52{width:1289.577696px;}
._4d{width:1293.683952px;}
._19{width:1294.761600px;}
._30{width:1301.256000px;}
._2f{width:1303.104000px;}
._2b{width:1305.321600px;}
._56{width:1309.469040px;}
._34{width:1320.950400px;}
._50{width:1323.014352px;}
._47{width:1326.427344px;}
._2d{width:1334.361600px;}
._25{width:1337.740800px;}
._37{width:1348.345152px;}
._11{width:1359.494400px;}
._71{width:1363.635000px;}
._51{width:1367.116608px;}
._f{width:1376.424000px;}
._2e{width:1378.027200px;}
._10{width:1387.795200px;}
._2a{width:1412.188800px;}
._4b{width:1422.471072px;}
._3e{width:1460.387280px;}
._18{width:1470.480000px;}
._7{width:1870.635600px;}
._16{width:2345.745600px;}
._3c{width:2349.418368px;}
.fc4{color:rgb(236,0,140);}
.fc1{color:rgb(142,33,38);}
.fc3{color:rgb(227,227,227);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:22.737000px;}
.fs6{font-size:27.000000px;}
.fsa{font-size:27.984000px;}
.fs1b{font-size:30.782400px;}
.fs10{font-size:34.280400px;}
.fsc{font-size:39.000000px;}
.fs15{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:48.480000px;}
.fs2{font-size:49.693267px;}
.fs11{font-size:51.000000px;}
.fs13{font-size:51.510000px;}
.fs17{font-size:52.800000px;}
.fs19{font-size:53.328000px;}
.fs18{font-size:53.614549px;}
.fs12{font-size:54.000000px;}
.fs1a{font-size:54.150676px;}
.fs5{font-size:54.540000px;}
.fs8{font-size:57.000000px;}
.fsf{font-size:58.800000px;}
.fs0{font-size:60.000000px;}
.fs16{font-size:63.000000px;}
.fs14{font-size:64.800000px;}
.fs9{font-size:66.000000px;}
.fse{font-size:78.000000px;}
.fs7{font-size:114.000000px;}
.fs3{font-size:120.000000px;}
.fsd{font-size:198.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:70.044750px;}
.y227{bottom:107.547450px;}
.yd{bottom:108.423300px;}
.y2d4{bottom:109.102350px;}
.y14f{bottom:109.152000px;}
.y13c{bottom:109.158900px;}
.y28c{bottom:109.831050px;}
.y315{bottom:110.122350px;}
.y1aa{bottom:110.136900px;}
.y1e3{bottom:110.872044px;}
.y122{bottom:112.381200px;}
.y102{bottom:112.388100px;}
.yb5{bottom:112.395000px;}
.y2a2{bottom:112.401900px;}
.y5a{bottom:121.135350px;}
.y351{bottom:121.474350px;}
.y226{bottom:122.542650px;}
.y2d3{bottom:124.102350px;}
.y26c{bottom:124.669800px;}
.y28b{bottom:124.835850px;}
.yc{bottom:124.927050px;}
.y314{bottom:125.122350px;}
.y1a9{bottom:125.132100px;}
.y1e2{bottom:126.017196px;}
.y14e{bottom:128.658900px;}
.y13b{bottom:128.665800px;}
.y121{bottom:131.888100px;}
.y101{bottom:131.895000px;}
.yb4{bottom:131.901900px;}
.y350{bottom:136.474350px;}
.y225{bottom:137.537850px;}
.y2d2{bottom:139.102350px;}
.y26b{bottom:139.684200px;}
.y28a{bottom:139.835850px;}
.y313{bottom:140.122350px;}
.y1a8{bottom:140.141700px;}
.y59{bottom:140.635350px;}
.y1e1{bottom:141.162348px;}
.yb{bottom:142.288500px;}
.y13a{bottom:146.931300px;}
.y14d{bottom:148.165800px;}
.yb3{bottom:150.167400px;}
.y120{bottom:151.395000px;}
.yde{bottom:151.401900px;}
.y34f{bottom:151.474350px;}
.y224{bottom:152.537850px;}
.y2d1{bottom:154.102350px;}
.y26a{bottom:154.679400px;}
.y289{bottom:154.831050px;}
.y312{bottom:155.122350px;}
.y1a7{bottom:155.136900px;}
.y1e0{bottom:156.307500px;}
.y6d{bottom:160.135200px;}
.y58{bottom:160.142250px;}
.ya{bottom:163.050060px;}
.y14c{bottom:166.431300px;}
.y34e{bottom:166.474350px;}
.y223{bottom:167.542650px;}
.y2d0{bottom:169.102350px;}
.yb2{bottom:169.667400px;}
.y269{bottom:169.674600px;}
.y288{bottom:169.831050px;}
.y311{bottom:170.122350px;}
.y1a6{bottom:170.132100px;}
.y2a9{bottom:170.888100px;}
.ydd{bottom:170.901900px;}
.y1df{bottom:171.467196px;}
.y9{bottom:177.000180px;}
.y57{bottom:179.635350px;}
.y6c{bottom:179.642100px;}
.y34d{bottom:181.474350px;}
.y222{bottom:182.493150px;}
.y2cf{bottom:184.102350px;}
.y268{bottom:184.674600px;}
.y287{bottom:184.823100px;}
.y310{bottom:185.122350px;}
.y1a5{bottom:185.249400px;}
.y1de{bottom:186.612348px;}
.y139{bottom:187.124250px;}
.ydc{bottom:189.167400px;}
.y11f{bottom:190.388100px;}
.y2a8{bottom:190.395000px;}
.y100{bottom:190.401900px;}
.y8{bottom:190.950300px;}
.y34c{bottom:196.474350px;}
.y221{bottom:197.488350px;}
.y6b{bottom:199.073100px;}
.y2ce{bottom:199.102350px;}
.y56{bottom:199.142250px;}
.y267{bottom:199.630800px;}
.y286{bottom:199.818300px;}
.y30f{bottom:200.122350px;}
.y1a4{bottom:200.244600px;}
.y1dd{bottom:201.757500px;}
.y7{bottom:206.431050px;}
.y14b{bottom:206.541600px;}
.y138{bottom:206.631150px;}
.y2a7{bottom:209.846700px;}
.yb1{bottom:209.895000px;}
.yff{bottom:209.901900px;}
.y34b{bottom:211.474350px;}
.y2cd{bottom:214.102350px;}
.y266{bottom:214.626000px;}
.y30e{bottom:215.122350px;}
.y1a3{bottom:215.239800px;}
.y1dc{bottom:216.834030px;}
.y220{bottom:217.156350px;}
.y6a{bottom:218.580000px;}
.y55{bottom:218.642250px;}
.y285{bottom:219.486300px;}
.y14a{bottom:226.048500px;}
.y137{bottom:226.138050px;}
.y34a{bottom:226.474350px;}
.y6{bottom:229.018050px;}
.y2cc{bottom:229.102350px;}
.y2a6{bottom:229.353600px;}
.ydb{bottom:229.360500px;}
.yfe{bottom:229.381200px;}
.y2a1{bottom:229.388100px;}
.yb0{bottom:229.401900px;}
.y30d{bottom:230.122350px;}
.y1a2{bottom:230.235000px;}
.y265{bottom:234.505200px;}
.y21f{bottom:236.190750px;}
.y1db{bottom:236.418738px;}
.y69{bottom:238.086900px;}
.y54{bottom:238.135350px;}
.y284{bottom:238.520700px;}
.y349{bottom:241.474350px;}
.y2cb{bottom:244.102350px;}
.y30c{bottom:245.122350px;}
.y149{bottom:245.555400px;}
.y136{bottom:245.644950px;}
.y11e{bottom:247.667400px;}
.y2a5{bottom:248.860500px;}
.yda{bottom:248.867400px;}
.yfd{bottom:248.888100px;}
.y2a0{bottom:248.895000px;}
.yaf{bottom:248.901900px;}
.y1a1{bottom:249.573000px;}
.y264{bottom:253.975200px;}
.y1da{bottom:255.163530px;}
.y21e{bottom:255.330750px;}
.y348{bottom:256.474350px;}
.y68{bottom:257.593800px;}
.y53{bottom:257.642250px;}
.y283{bottom:257.660700px;}
.y2ca{bottom:259.102350px;}
.y41{bottom:259.987500px;}
.y30b{bottom:260.122350px;}
.y148{bottom:265.062300px;}
.y135{bottom:265.151850px;}
.y1a0{bottom:267.973800px;}
.yae{bottom:268.367400px;}
.yd9{bottom:268.374300px;}
.yfc{bottom:268.395000px;}
.y29f{bottom:268.401900px;}
.y40{bottom:271.387500px;}
.y347{bottom:271.474350px;}
.y263{bottom:273.537600px;}
.y1d9{bottom:274.001646px;}
.y2c9{bottom:274.102350px;}
.y21d{bottom:274.470750px;}
.y30a{bottom:275.122350px;}
.y282{bottom:276.800700px;}
.y67{bottom:277.100700px;}
.y52{bottom:277.121400px;}
.y3f{bottom:282.787500px;}
.y147{bottom:284.569200px;}
.y134{bottom:284.658750px;}
.y19f{bottom:286.467000px;}
.y346{bottom:286.474350px;}
.yad{bottom:287.874300px;}
.yd8{bottom:287.881200px;}
.y11d{bottom:287.888100px;}
.y29e{bottom:287.895000px;}
.yfb{bottom:287.901900px;}
.y2c8{bottom:289.102350px;}
.y309{bottom:290.122350px;}
.y1d8{bottom:292.839762px;}
.y262{bottom:293.100000px;}
.y21c{bottom:293.610750px;}
.y3e{bottom:294.187500px;}
.y281{bottom:295.940700px;}
.y66{bottom:296.607600px;}
.y51{bottom:296.628300px;}
.y345{bottom:301.474350px;}
.y146{bottom:304.076100px;}
.y2c7{bottom:304.102350px;}
.y133{bottom:304.165650px;}
.y19e{bottom:304.960200px;}
.y308{bottom:305.122350px;}
.y3d{bottom:305.587500px;}
.yac{bottom:307.381200px;}
.yd7{bottom:307.388100px;}
.y11c{bottom:307.395000px;}
.yfa{bottom:307.401900px;}
.y1d7{bottom:311.677878px;}
.y261{bottom:312.662400px;}
.y21b{bottom:312.750750px;}
.y280{bottom:314.975100px;}
.y65{bottom:316.114500px;}
.y50{bottom:316.135200px;}
.y344{bottom:316.474350px;}
.y3c{bottom:316.987500px;}
.y2c6{bottom:319.102350px;}
.y307{bottom:320.122350px;}
.y19d{bottom:323.453400px;}
.y145{bottom:323.583000px;}
.y132{bottom:323.610600px;}
.yab{bottom:326.888100px;}
.yd6{bottom:326.895000px;}
.y11b{bottom:326.901900px;}
.y3b{bottom:328.387500px;}
.y1d6{bottom:330.515994px;}
.y343{bottom:331.474350px;}
.y21a{bottom:331.890750px;}
.y260{bottom:332.224800px;}
.y2c5{bottom:334.102350px;}
.y27e{bottom:334.637250px;}
.y306{bottom:335.122350px;}
.y64{bottom:335.621400px;}
.y4f{bottom:335.635200px;}
.y27f{bottom:339.431850px;}
.y3a{bottom:339.787500px;}
.y19c{bottom:341.946600px;}
.y144{bottom:343.089900px;}
.y131{bottom:343.117500px;}
.y11a{bottom:346.312200px;}
.yaa{bottom:346.395000px;}
.yd5{bottom:346.401900px;}
.y342{bottom:346.474350px;}
.y2c4{bottom:349.102350px;}
.y1d5{bottom:349.354110px;}
.y305{bottom:350.122350px;}
.y219{bottom:351.030750px;}
.y39{bottom:351.187500px;}
.y25f{bottom:351.787200px;}
.y63{bottom:355.128300px;}
.y4e{bottom:355.142100px;}
.y27d{bottom:356.387700px;}
.y19b{bottom:360.439800px;}
.y341{bottom:361.474350px;}
.y38{bottom:362.587500px;}
.y143{bottom:362.596800px;}
.y130{bottom:362.624400px;}
.y2c3{bottom:364.102350px;}
.y304{bottom:365.122350px;}
.y119{bottom:365.819100px;}
.y29d{bottom:365.832900px;}
.yd4{bottom:365.874300px;}
.yf9{bottom:365.881200px;}
.ya9{bottom:365.901900px;}
.y1d4{bottom:368.192226px;}
.y218{bottom:370.170750px;}
.y25e{bottom:371.349600px;}
.y37{bottom:373.987500px;}
.y62{bottom:374.635200px;}
.y4d{bottom:374.642100px;}
.y340{bottom:376.474350px;}
.y19a{bottom:378.933000px;}
.y2c2{bottom:379.102350px;}
.y303{bottom:380.122350px;}
.y142{bottom:382.103700px;}
.y12f{bottom:382.131300px;}
.y118{bottom:385.326000px;}
.y29c{bottom:385.339800px;}
.yd3{bottom:385.381200px;}
.y36{bottom:385.387500px;}
.yf8{bottom:385.388100px;}
.ya8{bottom:385.401900px;}
.y1d3{bottom:387.030342px;}
.y217{bottom:389.310750px;}
.y25d{bottom:390.912000px;}
.y33f{bottom:391.474350px;}
.y2c1{bottom:394.102350px;}
.y4c{bottom:394.142100px;}
.y302{bottom:395.122350px;}
.y35{bottom:396.787500px;}
.y199{bottom:397.426200px;}
.y141{bottom:401.610600px;}
.y12e{bottom:401.638200px;}
.y117{bottom:404.832900px;}
.y29b{bottom:404.846700px;}
.ya7{bottom:404.874300px;}
.yd2{bottom:404.888100px;}
.yf7{bottom:404.895000px;}
.y27c{bottom:404.901900px;}
.y1d2{bottom:405.868458px;}
.y33e{bottom:406.474350px;}
.y34{bottom:408.187500px;}
.y216{bottom:408.450750px;}
.y2c0{bottom:409.102350px;}
.y301{bottom:410.122350px;}
.y25c{bottom:410.474400px;}
.y61{bottom:413.628300px;}
.y4b{bottom:413.635200px;}
.y198{bottom:415.919400px;}
.y33{bottom:419.587500px;}
.y140{bottom:421.117500px;}
.y12d{bottom:421.145100px;}
.y33d{bottom:421.474350px;}
.y2bf{bottom:424.102350px;}
.y116{bottom:424.339800px;}
.y29a{bottom:424.353600px;}
.yf6{bottom:424.367400px;}
.ya6{bottom:424.381200px;}
.yd1{bottom:424.395000px;}
.y27b{bottom:424.401900px;}
.y1d1{bottom:424.706574px;}
.y300{bottom:425.122350px;}
.y215{bottom:427.485150px;}
.y25b{bottom:430.036800px;}
.y32{bottom:430.987500px;}
.y4a{bottom:433.135200px;}
.y197{bottom:434.412600px;}
.y33c{bottom:436.474350px;}
.y2be{bottom:439.102350px;}
.y2ff{bottom:440.122350px;}
.y13f{bottom:440.624400px;}
.y12c{bottom:440.652000px;}
.y31{bottom:442.387500px;}
.y1d0{bottom:443.544690px;}
.y115{bottom:443.846700px;}
.y299{bottom:443.860500px;}
.yf5{bottom:443.874300px;}
.ya5{bottom:443.888100px;}
.yd0{bottom:443.901900px;}
.y20b{bottom:447.147450px;}
.y213{bottom:447.153450px;}
.y20a{bottom:447.159450px;}
.y25a{bottom:449.506800px;}
.y33b{bottom:451.474350px;}
.y49{bottom:452.628300px;}
.y196{bottom:452.905800px;}
.y30{bottom:453.787500px;}
.y2bd{bottom:454.102350px;}
.y2fe{bottom:455.122350px;}
.y13e{bottom:460.131300px;}
.y12b{bottom:460.158900px;}
.y1cf{bottom:462.382806px;}
.y114{bottom:463.353600px;}
.y298{bottom:463.367400px;}
.yf4{bottom:463.381200px;}
.ya4{bottom:463.395000px;}
.y275{bottom:463.401900px;}
.y2f{bottom:465.187500px;}
.y212{bottom:465.897450px;}
.y209{bottom:465.903450px;}
.y20e{bottom:465.904650px;}
.y33a{bottom:466.474350px;}
.y2bc{bottom:469.102350px;}
.y251{bottom:469.381650px;}
.y250{bottom:469.387650px;}
.y2fd{bottom:470.122350px;}
.y195{bottom:471.399000px;}
.y48{bottom:472.135200px;}
.y20f{bottom:475.272450px;}
.y2e{bottom:476.587500px;}
.y13d{bottom:479.638200px;}
.y12a{bottom:479.665800px;}
.y214{bottom:480.067050px;}
.y1ce{bottom:481.220922px;}
.y339{bottom:481.474350px;}
.y274{bottom:482.832900px;}
.y113{bottom:482.860500px;}
.y297{bottom:482.874300px;}
.yf3{bottom:482.888100px;}
.ya3{bottom:482.901900px;}
.y2bb{bottom:484.102350px;}
.y208{bottom:484.647450px;}
.y20d{bottom:484.648650px;}
.y211{bottom:484.657650px;}
.y2fc{bottom:485.122350px;}
.y2d{bottom:487.987500px;}
.y24f{bottom:488.131650px;}
.y258{bottom:488.138850px;}
.y194{bottom:489.892200px;}
.y60{bottom:491.635200px;}
.y47{bottom:491.642100px;}
.y338{bottom:496.474350px;}
.y255{bottom:497.506650px;}
.y129{bottom:499.145100px;}
.y2c{bottom:499.387500px;}
.y1cd{bottom:500.059038px;}
.y2fb{bottom:500.122350px;}
.y2ba{bottom:501.673350px;}
.y259{bottom:502.301250px;}
.y273{bottom:502.339800px;}
.ycf{bottom:502.360500px;}
.y112{bottom:502.367400px;}
.y296{bottom:502.381200px;}
.ya2{bottom:502.388100px;}
.yf2{bottom:502.395000px;}
.y20c{bottom:503.392650px;}
.y207{bottom:503.397450px;}
.y210{bottom:503.401650px;}
.y253{bottom:506.881650px;}
.y254{bottom:506.882850px;}
.y24e{bottom:506.887650px;}
.y257{bottom:506.891850px;}
.y193{bottom:508.385400px;}
.y2b{bottom:510.787500px;}
.y5f{bottom:511.128300px;}
.y46{bottom:511.135200px;}
.y337{bottom:511.474350px;}
.y2fa{bottom:515.122350px;}
.y128{bottom:518.652000px;}
.y1cc{bottom:518.897154px;}
.y272{bottom:521.846700px;}
.yce{bottom:521.867400px;}
.y111{bottom:521.874300px;}
.y295{bottom:521.888100px;}
.ya1{bottom:521.895000px;}
.yf1{bottom:521.901900px;}
.y2a{bottom:522.187500px;}
.y206{bottom:525.147750px;}
.y252{bottom:525.626850px;}
.y24d{bottom:525.631650px;}
.y256{bottom:525.635850px;}
.y336{bottom:526.474350px;}
.y192{bottom:526.878600px;}
.y2b9{bottom:529.232250px;}
.y2f9{bottom:530.122350px;}
.y5e{bottom:530.635200px;}
.y45{bottom:530.642100px;}
.y29{bottom:533.587500px;}
.y1cb{bottom:537.735270px;}
.y127{bottom:538.158900px;}
.y271{bottom:541.353600px;}
.yf0{bottom:541.367400px;}
.ycd{bottom:541.374300px;}
.y110{bottom:541.381200px;}
.y294{bottom:541.395000px;}
.ya0{bottom:541.401900px;}
.y335{bottom:541.474350px;}
.y2b8{bottom:544.232250px;}
.y28{bottom:544.987500px;}
.y2f8{bottom:545.122350px;}
.y369{bottom:545.124000px;}
.y191{bottom:545.371800px;}
.y24c{bottom:547.382100px;}
.y5d{bottom:550.135200px;}
.y44{bottom:550.142100px;}
.y27{bottom:556.387500px;}
.y334{bottom:556.474350px;}
.y1ca{bottom:556.573386px;}
.y126{bottom:557.665800px;}
.y2b7{bottom:559.232250px;}
.y2f7{bottom:560.122350px;}
.y368{bottom:560.124000px;}
.y1f3{bottom:560.853600px;}
.y9f{bottom:560.860500px;}
.yef{bottom:560.874300px;}
.ycc{bottom:560.881200px;}
.y10f{bottom:560.888100px;}
.y293{bottom:560.895000px;}
.y205{bottom:560.901900px;}
.y190{bottom:563.865000px;}
.y26{bottom:567.787500px;}
.y5c{bottom:569.642100px;}
.y333{bottom:571.474350px;}
.y2b6{bottom:574.232250px;}
.y2f6{bottom:575.122350px;}
.y367{bottom:575.124000px;}
.y1c9{bottom:575.411502px;}
.y25{bottom:579.187500px;}
.y1f2{bottom:580.360500px;}
.y9e{bottom:580.367400px;}
.yee{bottom:580.381200px;}
.ycb{bottom:580.388100px;}
.y10e{bottom:580.395000px;}
.y204{bottom:580.401900px;}
.y18f{bottom:582.358200px;}
.y43{bottom:585.191850px;}
.y332{bottom:586.474350px;}
.y5b{bottom:589.142100px;}
.y2b5{bottom:589.232250px;}
.y2f5{bottom:590.122350px;}
.y366{bottom:590.124000px;}
.y24{bottom:590.587500px;}
.y1c8{bottom:594.249618px;}
.y24b{bottom:599.307900px;}
.y1f1{bottom:599.867400px;}
.y9d{bottom:599.874300px;}
.yed{bottom:599.888100px;}
.yca{bottom:599.895000px;}
.y10d{bottom:599.901900px;}
.y18e{bottom:600.851400px;}
.y23{bottom:601.987500px;}
.y2b4{bottom:604.232250px;}
.y2f4{bottom:605.122350px;}
.y365{bottom:605.124000px;}
.y331{bottom:607.003200px;}
.y125{bottom:609.988050px;}
.y1c7{bottom:613.087734px;}
.y22{bottom:613.387500px;}
.y24a{bottom:615.062400px;}
.y203{bottom:618.167400px;}
.y2b3{bottom:619.232250px;}
.y18d{bottom:619.344600px;}
.y1f0{bottom:619.374300px;}
.y9c{bottom:619.381200px;}
.yec{bottom:619.395000px;}
.yc9{bottom:619.401900px;}
.y2f3{bottom:620.122350px;}
.y364{bottom:620.124000px;}
.y21{bottom:624.787500px;}
.y124{bottom:625.742550px;}
.y249{bottom:630.816900px;}
.y1c6{bottom:631.925850px;}
.y2f2{bottom:635.122350px;}
.y363{bottom:635.124000px;}
.y20{bottom:636.187500px;}
.y2b2{bottom:636.803250px;}
.y202{bottom:637.667400px;}
.y18c{bottom:637.837800px;}
.y10c{bottom:638.874300px;}
.y1ef{bottom:638.881200px;}
.y9b{bottom:638.888100px;}
.yc8{bottom:638.901900px;}
.y123{bottom:641.497050px;}
.y330{bottom:645.612150px;}
.y1f{bottom:647.587500px;}
.y2f1{bottom:650.122350px;}
.y362{bottom:650.124000px;}
.y1c5{bottom:650.763966px;}
.y248{bottom:652.780200px;}
.y18b{bottom:656.331000px;}
.yeb{bottom:658.381200px;}
.yc7{bottom:658.388100px;}
.y9a{bottom:658.395000px;}
.y27a{bottom:658.401900px;}
.y1e{bottom:658.987500px;}
.y32f{bottom:660.612150px;}
.y172{bottom:663.010050px;}
.y2b1{bottom:664.362150px;}
.y2f0{bottom:665.122350px;}
.y361{bottom:665.124000px;}
.y242{bottom:667.101150px;}
.y1c4{bottom:669.602082px;}
.y1d{bottom:670.387500px;}
.y16a{bottom:674.142000px;}
.y18a{bottom:674.824200px;}
.y32e{bottom:675.612150px;}
.y201{bottom:677.853600px;}
.y292{bottom:677.867400px;}
.yea{bottom:677.888100px;}
.yc6{bottom:677.895000px;}
.y99{bottom:677.901900px;}
.y84{bottom:678.148500px;}
.y2ef{bottom:680.122350px;}
.y360{bottom:680.124000px;}
.y240{bottom:681.150750px;}
.y23b{bottom:681.162000px;}
.y1c{bottom:681.787500px;}
.y2b0{bottom:682.533150px;}
.y168{bottom:688.191450px;}
.y163{bottom:688.202700px;}
.y1c3{bottom:688.440198px;}
.y1b{bottom:688.486800px;}
.y228{bottom:688.527450px;}
.y22c{bottom:689.428200px;}
.y32d{bottom:690.612150px;}
.y189{bottom:693.317400px;}
.y83{bottom:694.396950px;}
.y2ee{bottom:695.122350px;}
.y35f{bottom:695.124000px;}
.y200{bottom:697.360500px;}
.y291{bottom:697.374300px;}
.y2a4{bottom:697.388100px;}
.y98{bottom:697.395000px;}
.yc5{bottom:697.401900px;}
.y171{bottom:697.987950px;}
.y22a{bottom:700.698750px;}
.y151{bottom:700.936500px;}
.y22b{bottom:702.928200px;}
.y1a{bottom:704.587500px;}
.y32c{bottom:705.612150px;}
.y1c2{bottom:707.278314px;}
.y22e{bottom:708.142500px;}
.y153{bottom:708.802650px;}
.y2ed{bottom:710.122350px;}
.y35e{bottom:710.124000px;}
.y2af{bottom:711.618150px;}
.y188{bottom:711.810600px;}
.y270{bottom:712.951500px;}
.y229{bottom:714.198750px;}
.y150{bottom:714.436500px;}
.y82{bottom:714.954900px;}
.y19{bottom:715.987500px;}
.y1ff{bottom:716.867400px;}
.yc4{bottom:716.881200px;}
.y97{bottom:716.895000px;}
.ye9{bottom:716.901900px;}
.y22d{bottom:721.642500px;}
.y152{bottom:722.302650px;}
.y32b{bottom:723.183150px;}
.y2ec{bottom:725.122350px;}
.y35d{bottom:725.124000px;}
.y1c1{bottom:726.116430px;}
.y2ae{bottom:726.618150px;}
.y23a{bottom:727.365750px;}
.y18{bottom:727.387500px;}
.y187{bottom:730.303800px;}
.y81{bottom:731.648850px;}
.y162{bottom:734.406450px;}
.y10b{bottom:735.167400px;}
.y1fe{bottom:736.374300px;}
.yc3{bottom:736.388100px;}
.ye8{bottom:736.395000px;}
.y96{bottom:736.401900px;}
.y170{bottom:736.530450px;}
.y2eb{bottom:740.122350px;}
.y35c{bottom:740.124000px;}
.y2ad{bottom:744.189000px;}
.y1c0{bottom:744.954546px;}
.y17{bottom:745.137750px;}
.y23f{bottom:745.838250px;}
.y186{bottom:748.797000px;}
.y80{bottom:752.673300px;}
.y32a{bottom:752.868150px;}
.y167{bottom:752.878950px;}
.y2ea{bottom:755.122350px;}
.y35b{bottom:755.124000px;}
.y1ee{bottom:755.860500px;}
.y1fd{bottom:755.881200px;}
.y279{bottom:755.888100px;}
.y95{bottom:755.895000px;}
.ye7{bottom:755.901900px;}
.y16{bottom:759.381750px;}
.y1bf{bottom:763.792662px;}
.y185{bottom:767.290200px;}
.y329{bottom:767.868150px;}
.y155{bottom:768.330150px;}
.y7f{bottom:769.170300px;}
.y2e9{bottom:770.122350px;}
.y35a{bottom:770.124000px;}
.y10a{bottom:771.451500px;}
.y15{bottom:772.881750px;}
.y239{bottom:773.569500px;}
.ye6{bottom:774.167400px;}
.y1ed{bottom:775.367400px;}
.y1fc{bottom:775.388100px;}
.yc2{bottom:775.395000px;}
.y94{bottom:775.401900px;}
.y2ac{bottom:776.151900px;}
.y161{bottom:780.610200px;}
.y154{bottom:781.830150px;}
.y1be{bottom:782.630778px;}
.y328{bottom:782.868150px;}
.y2e8{bottom:785.122350px;}
.y359{bottom:785.124000px;}
.y7e{bottom:785.667300px;}
.y184{bottom:785.783400px;}
.y14{bottom:786.381750px;}
.y1ec{bottom:794.874300px;}
.y93{bottom:794.895000px;}
.yc1{bottom:794.901900px;}
.y2ab{bottom:795.651900px;}
.y327{bottom:797.868150px;}
.y13{bottom:799.881750px;}
.y2e7{bottom:800.122350px;}
.y358{bottom:800.124000px;}
.y1bd{bottom:801.468894px;}
.y7d{bottom:802.164300px;}
.y183{bottom:804.276600px;}
.y23e{bottom:810.525750px;}
.y326{bottom:812.868150px;}
.yc0{bottom:813.167400px;}
.y12{bottom:813.381750px;}
.y2aa{bottom:813.917400px;}
.y1eb{bottom:814.381200px;}
.y278{bottom:814.388100px;}
.ye5{bottom:814.395000px;}
.y92{bottom:814.401900px;}
.y2e6{bottom:815.122350px;}
.y357{bottom:815.124000px;}
.y166{bottom:817.566450px;}
.y7c{bottom:818.661300px;}
.y238{bottom:819.773250px;}
.y1bc{bottom:820.307010px;}
.y182{bottom:822.769800px;}
.y160{bottom:826.813950px;}
.y11{bottom:826.881750px;}
.y325{bottom:827.868150px;}
.y241{bottom:829.305300px;}
.y2e5{bottom:830.122350px;}
.y356{bottom:830.124000px;}
.y91{bottom:833.881200px;}
.y1ea{bottom:833.888100px;}
.y26f{bottom:833.895000px;}
.ye4{bottom:833.901900px;}
.y233{bottom:834.000750px;}
.y15b{bottom:834.876300px;}
.y7b{bottom:835.158300px;}
.y169{bottom:836.346150px;}
.y1bb{bottom:839.145126px;}
.y10{bottom:840.381750px;}
.y181{bottom:841.263000px;}
.y324{bottom:842.868150px;}
.y2e4{bottom:845.122350px;}
.y355{bottom:845.124000px;}
.y15a{bottom:848.376300px;}
.y230{bottom:851.646450px;}
.y7a{bottom:851.655300px;}
.y232{bottom:852.071700px;}
.y90{bottom:853.388100px;}
.ybf{bottom:853.395000px;}
.y109{bottom:853.401900px;}
.yf{bottom:853.881750px;}
.y323{bottom:857.868150px;}
.y1ba{bottom:857.983242px;}
.y157{bottom:859.325100px;}
.y180{bottom:859.756200px;}
.y2e3{bottom:860.122350px;}
.y354{bottom:860.124000px;}
.y22f{bottom:865.146450px;}
.y231{bottom:865.571700px;}
.y237{bottom:865.977000px;}
.y79{bottom:868.152300px;}
.y108{bottom:871.667400px;}
.y156{bottom:872.825100px;}
.ybe{bottom:872.860500px;}
.y290{bottom:872.867400px;}
.y8f{bottom:872.895000px;}
.y1e9{bottom:872.901900px;}
.y15f{bottom:873.017700px;}
.y2e2{bottom:875.122350px;}
.y353{bottom:875.124000px;}
.y23d{bottom:875.213250px;}
.y322{bottom:875.439000px;}
.y1b9{bottom:876.821358px;}
.y17f{bottom:878.249400px;}
.y165{bottom:882.253950px;}
.y78{bottom:884.400900px;}
.y2e1{bottom:890.122350px;}
.y352{bottom:890.124000px;}
.ybd{bottom:892.367400px;}
.y28f{bottom:892.374300px;}
.y277{bottom:892.381200px;}
.y26e{bottom:892.388100px;}
.y2a3{bottom:892.395000px;}
.y8e{bottom:892.401900px;}
.y1b8{bottom:895.566150px;}
.y17e{bottom:896.650200px;}
.y2e0{bottom:905.122350px;}
.y321{bottom:905.124000px;}
.y77{bottom:905.416350px;}
.y1e8{bottom:910.667400px;}
.y1fb{bottom:911.853600px;}
.ye3{bottom:911.867400px;}
.ybc{bottom:911.874300px;}
.y28e{bottom:911.881200px;}
.y276{bottom:911.888100px;}
.y8d{bottom:911.895000px;}
.y107{bottom:911.901900px;}
.y4{bottom:912.009300px;}
.y236{bottom:912.180750px;}
.y1b6{bottom:915.180600px;}
.y1b5{bottom:915.186660px;}
.y17c{bottom:915.993600px;}
.y17b{bottom:915.999600px;}
.y159{bottom:918.214800px;}
.y15e{bottom:919.221450px;}
.y2df{bottom:920.122350px;}
.y320{bottom:920.124000px;}
.y76{bottom:921.913350px;}
.y1b2{bottom:924.649350px;}
.y1b1{bottom:924.655410px;}
.y178{bottom:925.368600px;}
.y177{bottom:925.374600px;}
.y1fa{bottom:931.360500px;}
.ye2{bottom:931.374300px;}
.ybb{bottom:931.381200px;}
.y28d{bottom:931.388100px;}
.y106{bottom:931.395000px;}
.y8c{bottom:931.401900px;}
.y158{bottom:931.714800px;}
.y1b4{bottom:934.118100px;}
.y17a{bottom:934.743600px;}
.y2de{bottom:935.122350px;}
.y31f{bottom:935.124000px;}
.y75{bottom:938.410350px;}
.y23c{bottom:939.900750px;}
.y1b0{bottom:943.586850px;}
.y176{bottom:944.118600px;}
.y3{bottom:945.009300px;}
.y164{bottom:946.941450px;}
.y2dd{bottom:950.122350px;}
.y31e{bottom:950.124000px;}
.y1f9{bottom:950.867400px;}
.y1e7{bottom:950.874300px;}
.ye1{bottom:950.881200px;}
.yba{bottom:950.888100px;}
.y8b{bottom:950.895000px;}
.y105{bottom:950.901900px;}
.y1b7{bottom:953.056812px;}
.y1b3{bottom:953.059842px;}
.y17d{bottom:953.494800px;}
.y179{bottom:953.497800px;}
.y74{bottom:954.907350px;}
.y235{bottom:958.384500px;}
.y2dc{bottom:965.122350px;}
.y31d{bottom:965.124000px;}
.y15d{bottom:965.425200px;}
.y1f8{bottom:970.374300px;}
.y1e6{bottom:970.381200px;}
.ye0{bottom:970.388100px;}
.y8a{bottom:970.395000px;}
.y26d{bottom:970.401900px;}
.y73{bottom:971.404350px;}
.y1af{bottom:974.967855px;}
.y175{bottom:975.239550px;}
.y2{bottom:978.009300px;}
.y2db{bottom:980.122350px;}
.y31c{bottom:980.124000px;}
.y72{bottom:987.698400px;}
.y1f7{bottom:989.881200px;}
.y1e5{bottom:989.888100px;}
.ydf{bottom:989.895000px;}
.y89{bottom:989.901900px;}
.y1ae{bottom:990.879900px;}
.y174{bottom:990.994050px;}
.y2da{bottom:995.122350px;}
.y31b{bottom:995.124000px;}
.y234{bottom:1004.588250px;}
.y71{bottom:1008.662250px;}
.y1f6{bottom:1009.388100px;}
.y88{bottom:1009.395000px;}
.yb9{bottom:1009.401900px;}
.y2d9{bottom:1010.122350px;}
.y31a{bottom:1010.124000px;}
.y15c{bottom:1011.628950px;}
.y16f{bottom:1012.796700px;}
.y16d{bottom:1013.269200px;}
.y247{bottom:1019.362200px;}
.y245{bottom:1019.834700px;}
.y2d8{bottom:1025.122350px;}
.y319{bottom:1025.124000px;}
.y70{bottom:1025.159250px;}
.y16e{bottom:1026.296700px;}
.y16c{bottom:1026.769200px;}
.y1ad{bottom:1028.873400px;}
.yb8{bottom:1028.888100px;}
.y1f5{bottom:1028.895000px;}
.y87{bottom:1028.901900px;}
.y246{bottom:1032.862200px;}
.y244{bottom:1033.334700px;}
.y2d7{bottom:1040.122350px;}
.y318{bottom:1040.124000px;}
.y6f{bottom:1041.656250px;}
.y104{bottom:1047.162600px;}
.y173{bottom:1047.167400px;}
.y1ac{bottom:1048.380300px;}
.yb7{bottom:1048.395000px;}
.y1e4{bottom:1048.401900px;}
.y16b{bottom:1054.999500px;}
.y2d6{bottom:1055.122350px;}
.y317{bottom:1055.124000px;}
.y243{bottom:1056.036150px;}
.y6e{bottom:1057.950450px;}
.y86{bottom:1063.951500px;}
.y103{bottom:1066.667400px;}
.y1f4{bottom:1067.856600px;}
.y1ab{bottom:1067.887200px;}
.yb6{bottom:1067.901900px;}
.y2d5{bottom:1070.122350px;}
.y316{bottom:1070.124000px;}
.y5{bottom:1097.127450px;}
.y85{bottom:1113.837150px;}
.y42{bottom:1115.718000px;}
.ye{bottom:1121.191050px;}
.hf{height:20.383365px;}
.h3c{height:27.457901px;}
.h4{height:33.328125px;}
.ha{height:33.585000px;}
.h3{height:34.503821px;}
.h10{height:34.962891px;}
.h8{height:38.723400px;}
.h43{height:39.264000px;}
.h42{height:39.474000px;}
.h7{height:39.656640px;}
.h2f{height:40.140000px;}
.h31{height:40.656000px;}
.h3b{height:40.675200px;}
.h35{height:41.062560px;}
.h32{height:41.283202px;}
.h9{height:41.401920px;}
.h44{height:41.497559px;}
.h36{height:41.696021px;}
.hb{height:42.240000px;}
.h21{height:43.031250px;}
.h2{height:43.681641px;}
.h1d{height:44.172000px;}
.h1c{height:44.983200px;}
.h1e{height:44.983800px;}
.h1f{height:45.165600px;}
.h20{height:45.166200px;}
.h30{height:45.865723px;}
.h28{height:45.878400px;}
.h6{height:46.007250px;}
.h3e{height:46.741800px;}
.h33{height:47.097600px;}
.h40{height:47.129400px;}
.h3f{height:47.253600px;}
.h3d{height:47.276400px;}
.h37{height:47.568576px;}
.h38{height:47.862456px;}
.h13{height:48.098400px;}
.h16{height:48.126000px;}
.h25{height:48.153600px;}
.h2d{height:48.168000px;}
.h2a{height:48.181200px;}
.h18{height:48.181800px;}
.h26{height:48.208800px;}
.he{height:48.216019px;}
.h27{height:48.236400px;}
.hd{height:48.240019px;}
.h24{height:48.264000px;}
.h39{height:48.279600px;}
.h3a{height:48.291600px;}
.h2e{height:48.318600px;}
.h1b{height:48.374400px;}
.h2c{height:48.457200px;}
.h34{height:48.649680px;}
.h19{height:49.541167px;}
.h17{height:49.541767px;}
.h1a{height:49.568767px;}
.h14{height:49.569367px;}
.h15{height:49.596967px;}
.h23{height:49.624567px;}
.h2b{height:49.679767px;}
.h29{height:49.707367px;}
.h41{height:49.762567px;}
.h12{height:55.224000px;}
.hc{height:79.914000px;}
.h5{height:84.960000px;}
.h11{height:131.274600px;}
.h22{height:138.798000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x7{left:-807.873900px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x4{left:86.923650px;}
.x26{left:89.995650px;}
.x7c{left:91.665300px;}
.x9{left:97.795200px;}
.x7d{left:104.169300px;}
.x63{left:106.845900px;}
.x1f{left:110.399250px;}
.x5f{left:120.688050px;}
.x19{left:124.241400px;}
.x60{left:125.986800px;}
.x1a{left:129.540150px;}
.x61{left:131.285550px;}
.x1b{left:134.838900px;}
.x65{left:162.820050px;}
.x2{left:165.447750px;}
.x66{left:171.212550px;}
.x3{left:175.509300px;}
.x8{left:180.005250px;}
.xe{left:182.834550px;}
.x58{left:187.399500px;}
.x24{left:194.043150px;}
.x77{left:198.529950px;}
.x5b{left:200.432250px;}
.x11{left:204.193500px;}
.x7b{left:206.422500px;}
.xf{left:207.957900px;}
.x3d{left:234.633750px;}
.x3e{left:244.626150px;}
.x6a{left:246.313350px;}
.x3c{left:247.807050px;}
.x3f{left:250.526550px;}
.x40{left:253.920600px;}
.x6b{left:257.163750px;}
.x41{left:261.376350px;}
.xc{left:308.374050px;}
.x43{left:310.841700px;}
.x44{left:320.834100px;}
.x6c{left:322.129650px;}
.x42{left:324.010350px;}
.x45{left:326.734500px;}
.x46{left:330.128700px;}
.x6d{left:331.501350px;}
.x5d{left:333.955950px;}
.x14{left:337.301100px;}
.x5a{left:339.631500px;}
.x15{left:342.971100px;}
.x21{left:370.380450px;}
.xd{left:378.943500px;}
.x67{left:381.496350px;}
.x47{left:386.305500px;}
.x48{left:403.201500px;}
.x49{left:444.651150px;}
.x4a{left:451.856250px;}
.x6e{left:459.139350px;}
.x32{left:461.765250px;}
.x27{left:464.165400px;}
.xa{left:467.716500px;}
.x7e{left:469.065300px;}
.x64{left:470.625900px;}
.x4b{left:473.319450px;}
.x20{left:475.248000px;}
.x28{left:477.853800px;}
.x33{left:479.018550px;}
.xb{left:480.472500px;}
.x62{left:484.468050px;}
.x34{left:486.548850px;}
.x1c{left:489.090150px;}
.x4c{left:490.969500px;}
.x1d{left:494.388900px;}
.x4d{left:496.632150px;}
.x1e{left:499.687650px;}
.x6f{left:501.529800px;}
.x70{left:509.911800px;}
.x69{left:525.770850px;}
.x23{left:530.395650px;}
.x4e{left:545.300550px;}
.x4f{left:550.369350px;}
.x36{left:552.546600px;}
.x50{left:557.759700px;}
.x5c{left:558.914700px;}
.x29{left:560.633400px;}
.x35{left:561.847986px;}
.x16{left:563.530800px;}
.x59{left:564.584550px;}
.x12{left:566.180100px;}
.x13{left:569.206350px;}
.x71{left:572.517450px;}
.x37{left:574.437744px;}
.x72{left:575.911950px;}
.x38{left:577.866000px;}
.x2a{left:583.403400px;}
.x39{left:585.396300px;}
.x2b{left:586.797300px;}
.x6{left:593.881950px;}
.x10{left:598.376700px;}
.x51{left:622.439550px;}
.x73{left:633.065700px;}
.x52{left:639.322800px;}
.x74{left:649.948500px;}
.x3a{left:654.782400px;}
.x2d{left:657.390450px;}
.x2c{left:672.753450px;}
.x2e{left:685.216050px;}
.x2f{left:688.610100px;}
.x75{left:690.236850px;}
.x53{left:693.096000px;}
.x30{left:696.065850px;}
.x25{left:697.458150px;}
.x5{left:699.965550px;}
.x17{left:702.145200px;}
.x5e{left:703.198650px;}
.x18{left:707.815200px;}
.x78{left:719.863200px;}
.x79{left:727.068150px;}
.x54{left:732.300750px;}
.x22{left:735.224400px;}
.x55{left:739.505700px;}
.x68{left:742.063350px;}
.x7a{left:774.620400px;}
.x56{left:778.991400px;}
.x31{left:780.903450px;}
.x3b{left:782.624850px;}
.x57{left:786.196350px;}
.x76{left:787.725900px;}
@media print{
.v7{vertical-align:-20.580267pt;}
.vc{vertical-align:-19.111467pt;}
.v9{vertical-align:-16.721600pt;}
.v4{vertical-align:-7.831467pt;}
.va{vertical-align:-6.687467pt;}
.vf{vertical-align:-3.752000pt;}
.v2{vertical-align:-2.645333pt;}
.vd{vertical-align:-1.454933pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.551360pt;}
.v1{vertical-align:2.645333pt;}
.v8{vertical-align:5.290667pt;}
.v5{vertical-align:11.843733pt;}
.ve{vertical-align:17.206933pt;}
.vb{vertical-align:19.136000pt;}
.v6{vertical-align:20.580267pt;}
.ls63{letter-spacing:-5.913600pt;}
.ls76{letter-spacing:-5.383467pt;}
.ls9{letter-spacing:-4.826453pt;}
.ls5a{letter-spacing:-2.440533pt;}
.lsa{letter-spacing:-2.400000pt;}
.ls61{letter-spacing:-2.352000pt;}
.ls52{letter-spacing:-2.142933pt;}
.ls3{letter-spacing:-2.133333pt;}
.ls72{letter-spacing:-2.090667pt;}
.ls56{letter-spacing:-2.072000pt;}
.ls6c{letter-spacing:-2.038400pt;}
.ls71{letter-spacing:-1.933867pt;}
.ls4a{letter-spacing:-1.881600pt;}
.ls55{letter-spacing:-1.880000pt;}
.ls93{letter-spacing:-1.877333pt;}
.ls28{letter-spacing:-1.829333pt;}
.ls7a{letter-spacing:-1.777067pt;}
.ls9d{letter-spacing:-1.706667pt;}
.ls4f{letter-spacing:-1.672533pt;}
.ls9c{letter-spacing:-1.664000pt;}
.ls20{letter-spacing:-1.620267pt;}
.ls17{letter-spacing:-1.568000pt;}
.lse{letter-spacing:-1.536000pt;}
.ls35{letter-spacing:-1.515733pt;}
.ls96{letter-spacing:-1.493333pt;}
.ls3c{letter-spacing:-1.463467pt;}
.ls97{letter-spacing:-1.450667pt;}
.ls53{letter-spacing:-1.440000pt;}
.ls4d{letter-spacing:-1.411200pt;}
.ls9a{letter-spacing:-1.408000pt;}
.ls14{letter-spacing:-1.358933pt;}
.ls7d{letter-spacing:-1.322667pt;}
.ls15{letter-spacing:-1.306667pt;}
.ls99{letter-spacing:-1.280000pt;}
.ls18{letter-spacing:-1.254400pt;}
.ls41{letter-spacing:-1.202133pt;}
.ls2c{letter-spacing:-1.200000pt;}
.ls62{letter-spacing:-1.173333pt;}
.ls19{letter-spacing:-1.149867pt;}
.ls94{letter-spacing:-1.109333pt;}
.ls42{letter-spacing:-1.097600pt;}
.lsc{letter-spacing:-1.066667pt;}
.ls3f{letter-spacing:-1.066501pt;}
.ls16{letter-spacing:-1.045333pt;}
.ls2f{letter-spacing:-1.008000pt;}
.ls1c{letter-spacing:-0.993067pt;}
.ls92{letter-spacing:-0.981333pt;}
.ls8{letter-spacing:-0.969600pt;}
.ls2d{letter-spacing:-0.961520pt;}
.ls31{letter-spacing:-0.960000pt;}
.ls44{letter-spacing:-0.940800pt;}
.ls5b{letter-spacing:-0.938667pt;}
.ls4e{letter-spacing:-0.921600pt;}
.ls34{letter-spacing:-0.915733pt;}
.ls23{letter-spacing:-0.914144pt;}
.ls33{letter-spacing:-0.912000pt;}
.ls29{letter-spacing:-0.906667pt;}
.ls95{letter-spacing:-0.896000pt;}
.ls40{letter-spacing:-0.888533pt;}
.ls10{letter-spacing:-0.880000pt;}
.ls4b{letter-spacing:-0.864000pt;}
.ls7b{letter-spacing:-0.853333pt;}
.ls1a{letter-spacing:-0.836267pt;}
.ls32{letter-spacing:-0.816000pt;}
.ls98{letter-spacing:-0.810667pt;}
.ls5e{letter-spacing:-0.805845pt;}
.ls59{letter-spacing:-0.797867pt;}
.ls74{letter-spacing:-0.792258pt;}
.ls1f{letter-spacing:-0.784000pt;}
.ls51{letter-spacing:-0.768000pt;}
.ls24{letter-spacing:-0.761787pt;}
.ls1e{letter-spacing:-0.731733pt;}
.ls9e{letter-spacing:-0.725333pt;}
.ls2a{letter-spacing:-0.720000pt;}
.ls5d{letter-spacing:-0.711040pt;}
.ls58{letter-spacing:-0.704000pt;}
.ls13{letter-spacing:-0.693333pt;}
.ls6{letter-spacing:-0.689493pt;}
.lsd{letter-spacing:-0.682667pt;}
.ls21{letter-spacing:-0.679467pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls43{letter-spacing:-0.639901pt;}
.ls39{letter-spacing:-0.627200pt;}
.ls5f{letter-spacing:-0.616235pt;}
.ls5c{letter-spacing:-0.610133pt;}
.ls26{letter-spacing:-0.609429pt;}
.ls9b{letter-spacing:-0.597333pt;}
.ls30{letter-spacing:-0.576000pt;}
.ls37{letter-spacing:-0.574933pt;}
.ls64{letter-spacing:-0.563200pt;}
.ls8f{letter-spacing:-0.554667pt;}
.ls0{letter-spacing:-0.533333pt;}
.ls2e{letter-spacing:-0.528000pt;}
.ls1b{letter-spacing:-0.522667pt;}
.ls6e{letter-spacing:-0.518015pt;}
.ls8e{letter-spacing:-0.512000pt;}
.lsf{letter-spacing:-0.506667pt;}
.ls75{letter-spacing:-0.487543pt;}
.ls2b{letter-spacing:-0.480000pt;}
.ls3d{letter-spacing:-0.470400pt;}
.ls90{letter-spacing:-0.469333pt;}
.ls25{letter-spacing:-0.457072pt;}
.ls5{letter-spacing:-0.430933pt;}
.ls2{letter-spacing:-0.426667pt;}
.ls3e{letter-spacing:-0.418133pt;}
.ls54{letter-spacing:-0.400000pt;}
.ls7e{letter-spacing:-0.384000pt;}
.ls3b{letter-spacing:-0.365867pt;}
.ls12{letter-spacing:-0.346667pt;}
.ls88{letter-spacing:-0.341333pt;}
.ls6d{letter-spacing:-0.335186pt;}
.ls3a{letter-spacing:-0.313600pt;}
.ls27{letter-spacing:-0.304715pt;}
.ls7{letter-spacing:-0.301653pt;}
.ls86{letter-spacing:-0.298667pt;}
.ls6b{letter-spacing:-0.274243pt;}
.ls22{letter-spacing:-0.261333pt;}
.ls8b{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.248747pt;}
.ls6f{letter-spacing:-0.243772pt;}
.ls7f{letter-spacing:-0.213333pt;}
.ls70{letter-spacing:-0.213300pt;}
.ls49{letter-spacing:-0.209067pt;}
.ls83{letter-spacing:-0.170667pt;}
.ls36{letter-spacing:-0.156800pt;}
.ls80{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.104533pt;}
.ls7c{letter-spacing:-0.085333pt;}
.ls4c{letter-spacing:-0.052267pt;}
.ls84{letter-spacing:-0.042667pt;}
.ls73{letter-spacing:-0.030471pt;}
.ls1{letter-spacing:0.000000pt;}
.ls78{letter-spacing:0.042667pt;}
.ls45{letter-spacing:0.052267pt;}
.ls85{letter-spacing:0.085333pt;}
.ls46{letter-spacing:0.104533pt;}
.ls77{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.129280pt;}
.ls47{letter-spacing:0.156800pt;}
.ls38{letter-spacing:0.209067pt;}
.ls89{letter-spacing:0.213333pt;}
.ls87{letter-spacing:0.256000pt;}
.ls8d{letter-spacing:0.298667pt;}
.ls48{letter-spacing:0.313600pt;}
.ls91{letter-spacing:0.341333pt;}
.ls82{letter-spacing:0.384000pt;}
.ls60{letter-spacing:0.418133pt;}
.ls8c{letter-spacing:0.469333pt;}
.ls65{letter-spacing:0.475627pt;}
.ls79{letter-spacing:0.512000pt;}
.ls50{letter-spacing:0.574933pt;}
.ls81{letter-spacing:0.597333pt;}
.ls8a{letter-spacing:0.768000pt;}
.ls68{letter-spacing:55.750532pt;}
.ls67{letter-spacing:101.422933pt;}
.ls69{letter-spacing:150.464521pt;}
.ls6a{letter-spacing:165.346133pt;}
.ls57{letter-spacing:250.905600pt;}
.ls66{letter-spacing:337.309867pt;}
.ws1a{word-spacing:-14.352000pt;}
.ws0{word-spacing:-14.293333pt;}
.ws142{word-spacing:-13.892267pt;}
.ws8d{word-spacing:-13.188267pt;}
.ws6f{word-spacing:-11.969067pt;}
.ws53{word-spacing:-11.923200pt;}
.ws1{word-spacing:-11.861333pt;}
.ws25{word-spacing:-11.812960pt;}
.ws23{word-spacing:-11.767173pt;}
.ws51{word-spacing:-11.707733pt;}
.ws22{word-spacing:-11.696000pt;}
.ws7e{word-spacing:-11.568000pt;}
.ws2{word-spacing:-11.434667pt;}
.wse1{word-spacing:-11.424043pt;}
.ws52{word-spacing:-11.341867pt;}
.wsb5{word-spacing:-11.310933pt;}
.ws24{word-spacing:-10.992000pt;}
.ws1c{word-spacing:-10.819200pt;}
.ws56{word-spacing:-10.714667pt;}
.wsc4{word-spacing:-10.713003pt;}
.ws8e{word-spacing:-10.606933pt;}
.ws141{word-spacing:-10.557867pt;}
.ws152{word-spacing:-10.244267pt;}
.ws19{word-spacing:-10.240000pt;}
.ws171{word-spacing:-10.026667pt;}
.ws13c{word-spacing:-9.826133pt;}
.wsb{word-spacing:-9.685333pt;}
.ws177{word-spacing:-9.514667pt;}
.ws3{word-spacing:-9.480533pt;}
.ws198{word-spacing:-9.472000pt;}
.ws174{word-spacing:-9.429333pt;}
.ws173{word-spacing:-9.344000pt;}
.ws159{word-spacing:-9.258667pt;}
.ws80{word-spacing:-9.240000pt;}
.ws5{word-spacing:-9.049600pt;}
.wsd{word-spacing:-9.045333pt;}
.wse{word-spacing:-9.002667pt;}
.ws8{word-spacing:-8.920320pt;}
.ws197{word-spacing:-8.917333pt;}
.wsaf{word-spacing:-8.870400pt;}
.ws4{word-spacing:-8.661760pt;}
.wsc{word-spacing:-8.618667pt;}
.ws175{word-spacing:-8.362667pt;}
.ws196{word-spacing:-8.320000pt;}
.ws199{word-spacing:-8.234667pt;}
.ws176{word-spacing:-8.106667pt;}
.ws172{word-spacing:-7.893333pt;}
.ws81{word-spacing:-7.760000pt;}
.ws1b{word-spacing:-6.917023pt;}
.wsf{word-spacing:-6.915157pt;}
.ws151{word-spacing:-6.886551pt;}
.ws140{word-spacing:-6.703723pt;}
.ws13f{word-spacing:-6.673251pt;}
.ws10{word-spacing:-6.666411pt;}
.ws13b{word-spacing:-6.642780pt;}
.ws21{word-spacing:-6.612308pt;}
.ws10d{word-spacing:-6.594274pt;}
.ws13d{word-spacing:-6.581837pt;}
.ws155{word-spacing:-6.481067pt;}
.ws1f{word-spacing:-6.459951pt;}
.ws154{word-spacing:-6.429479pt;}
.ws13e{word-spacing:-6.399008pt;}
.ws20{word-spacing:-6.307594pt;}
.ws55{word-spacing:-6.277122pt;}
.ws1e{word-spacing:-6.155236pt;}
.ws153{word-spacing:-6.124765pt;}
.ws1d{word-spacing:-6.002879pt;}
.ws54{word-spacing:-5.850522pt;}
.ws11{word-spacing:-5.618565pt;}
.ws7{word-spacing:-4.524800pt;}
.ws17{word-spacing:-2.346667pt;}
.ws49{word-spacing:-0.528000pt;}
.ws87{word-spacing:-0.522667pt;}
.ws4a{word-spacing:-0.480000pt;}
.ws15{word-spacing:-0.430933pt;}
.ws12{word-spacing:-0.426667pt;}
.ws7d{word-spacing:-0.313600pt;}
.ws50{word-spacing:-0.288000pt;}
.ws65{word-spacing:-0.261333pt;}
.ws182{word-spacing:-0.213333pt;}
.ws18d{word-spacing:-0.170667pt;}
.ws147{word-spacing:-0.104533pt;}
.ws38{word-spacing:-0.052267pt;}
.wsc3{word-spacing:-0.048480pt;}
.ws7f{word-spacing:-0.048000pt;}
.wsc5{word-spacing:-0.047403pt;}
.ws8f{word-spacing:-0.046933pt;}
.ws9{word-spacing:-0.043093pt;}
.ws82{word-spacing:-0.040000pt;}
.ws14{word-spacing:0.000000pt;}
.ws15f{word-spacing:0.042667pt;}
.ws138{word-spacing:0.048000pt;}
.ws111{word-spacing:0.052267pt;}
.ws195{word-spacing:0.085333pt;}
.ws2e{word-spacing:0.104533pt;}
.ws170{word-spacing:0.128000pt;}
.wsbe{word-spacing:0.140800pt;}
.ws62{word-spacing:0.156800pt;}
.ws15e{word-spacing:0.170667pt;}
.ws14e{word-spacing:0.187733pt;}
.ws43{word-spacing:0.192000pt;}
.ws29{word-spacing:0.209067pt;}
.ws161{word-spacing:0.213333pt;}
.ws114{word-spacing:0.234667pt;}
.ws2a{word-spacing:0.261333pt;}
.ws76{word-spacing:0.288000pt;}
.ws19f{word-spacing:0.298667pt;}
.ws63{word-spacing:0.304715pt;}
.ws2d{word-spacing:0.313600pt;}
.wsc0{word-spacing:0.328533pt;}
.ws189{word-spacing:0.341333pt;}
.ws18{word-spacing:0.346667pt;}
.ws30{word-spacing:0.365867pt;}
.ws8b{word-spacing:0.400000pt;}
.ws33{word-spacing:0.418133pt;}
.ws13{word-spacing:0.426667pt;}
.ws18e{word-spacing:0.469333pt;}
.ws28{word-spacing:0.470400pt;}
.ws4f{word-spacing:0.480000pt;}
.ws193{word-spacing:0.512000pt;}
.ws113{word-spacing:0.516267pt;}
.ws2f{word-spacing:0.522667pt;}
.ws26{word-spacing:0.533333pt;}
.ws16{word-spacing:0.554667pt;}
.ws14d{word-spacing:0.563200pt;}
.ws5f{word-spacing:0.574933pt;}
.ws47{word-spacing:0.576000pt;}
.ws19a{word-spacing:0.597333pt;}
.wsef{word-spacing:0.616235pt;}
.ws2b{word-spacing:0.627200pt;}
.ws15d{word-spacing:0.640000pt;}
.ws70{word-spacing:0.679467pt;}
.ws184{word-spacing:0.682667pt;}
.wsbb{word-spacing:0.704000pt;}
.wsec{word-spacing:0.711040pt;}
.ws85{word-spacing:0.720000pt;}
.ws19e{word-spacing:0.725333pt;}
.ws3d{word-spacing:0.731733pt;}
.ws166{word-spacing:0.768000pt;}
.ws32{word-spacing:0.784000pt;}
.ws181{word-spacing:0.810667pt;}
.ws34{word-spacing:0.836267pt;}
.ws17f{word-spacing:0.853333pt;}
.ws44{word-spacing:0.861333pt;}
.ws35{word-spacing:0.888533pt;}
.wsc2{word-spacing:0.891733pt;}
.ws6{word-spacing:0.921120pt;}
.ws13a{word-spacing:0.938667pt;}
.ws148{word-spacing:0.940800pt;}
.ws14c{word-spacing:0.960000pt;}
.wseb{word-spacing:0.969600pt;}
.ws19b{word-spacing:0.981333pt;}
.wsc1{word-spacing:0.985600pt;}
.ws37{word-spacing:0.993067pt;}
.ws17a{word-spacing:1.024000pt;}
.wsed{word-spacing:1.042859pt;}
.ws3c{word-spacing:1.045333pt;}
.ws180{word-spacing:1.066667pt;}
.ws57{word-spacing:1.097600pt;}
.ws137{word-spacing:1.104000pt;}
.ws18a{word-spacing:1.109333pt;}
.ws112{word-spacing:1.126400pt;}
.ws6d{word-spacing:1.149867pt;}
.ws165{word-spacing:1.152000pt;}
.ws15a{word-spacing:1.194667pt;}
.ws4e{word-spacing:1.200000pt;}
.ws6e{word-spacing:1.202133pt;}
.wsf1{word-spacing:1.232469pt;}
.ws169{word-spacing:1.237333pt;}
.ws3e{word-spacing:1.254400pt;}
.ws115{word-spacing:1.267200pt;}
.wsf0{word-spacing:1.279872pt;}
.ws186{word-spacing:1.280000pt;}
.ws6a{word-spacing:1.306667pt;}
.ws17c{word-spacing:1.322667pt;}
.ws7c{word-spacing:1.358933pt;}
.ws187{word-spacing:1.365333pt;}
.ws42{word-spacing:1.392000pt;}
.ws1a0{word-spacing:1.408000pt;}
.ws77{word-spacing:1.411200pt;}
.ws4d{word-spacing:1.440000pt;}
.ws40{word-spacing:1.450667pt;}
.ws10e{word-spacing:1.463467pt;}
.ws16b{word-spacing:1.493333pt;}
.ws7a{word-spacing:1.515733pt;}
.wsba{word-spacing:1.536000pt;}
.ws5d{word-spacing:1.568000pt;}
.ws16d{word-spacing:1.578667pt;}
.ws139{word-spacing:1.595733pt;}
.ws5c{word-spacing:1.620267pt;}
.ws191{word-spacing:1.621333pt;}
.wsbc{word-spacing:1.642667pt;}
.ws162{word-spacing:1.664000pt;}
.ws110{word-spacing:1.672533pt;}
.ws194{word-spacing:1.706667pt;}
.ws156{word-spacing:1.724800pt;}
.ws19c{word-spacing:1.749333pt;}
.ws46{word-spacing:1.776000pt;}
.ws27{word-spacing:1.777067pt;}
.ws18f{word-spacing:1.792000pt;}
.ws39{word-spacing:1.829333pt;}
.wsb9{word-spacing:1.872000pt;}
.ws168{word-spacing:1.877333pt;}
.ws8a{word-spacing:1.881600pt;}
.ws3a{word-spacing:1.933867pt;}
.ws192{word-spacing:1.962667pt;}
.ws59{word-spacing:1.986133pt;}
.wsea{word-spacing:1.987680pt;}
.ws16c{word-spacing:2.005333pt;}
.ws41{word-spacing:2.016000pt;}
.ws2c{word-spacing:2.038400pt;}
.ws17d{word-spacing:2.048000pt;}
.ws18b{word-spacing:2.133333pt;}
.ws67{word-spacing:2.142933pt;}
.ws48{word-spacing:2.160000pt;}
.ws17b{word-spacing:2.176000pt;}
.ws6b{word-spacing:2.195200pt;}
.ws183{word-spacing:2.218667pt;}
.ws5e{word-spacing:2.247467pt;}
.ws58{word-spacing:2.299733pt;}
.ws16f{word-spacing:2.304000pt;}
.ws3f{word-spacing:2.312000pt;}
.ws72{word-spacing:2.352000pt;}
.ws16a{word-spacing:2.389333pt;}
.ws150{word-spacing:2.393600pt;}
.ws149{word-spacing:2.404267pt;}
.ws190{word-spacing:2.432000pt;}
.wse9{word-spacing:2.472480pt;}
.wsb8{word-spacing:2.508800pt;}
.ws164{word-spacing:2.517333pt;}
.ws15c{word-spacing:2.560000pt;}
.ws14b{word-spacing:2.561067pt;}
.ws157{word-spacing:2.613333pt;}
.ws179{word-spacing:2.645333pt;}
.ws88{word-spacing:2.665600pt;}
.ws84{word-spacing:2.688000pt;}
.ws14a{word-spacing:2.717867pt;}
.ws185{word-spacing:2.730667pt;}
.ws14f{word-spacing:2.769067pt;}
.ws5a{word-spacing:2.770133pt;}
.ws19d{word-spacing:2.816000pt;}
.ws75{word-spacing:2.822400pt;}
.ws69{word-spacing:2.874667pt;}
.ws4c{word-spacing:2.880000pt;}
.ws167{word-spacing:2.901333pt;}
.ws86{word-spacing:2.926933pt;}
.ws45{word-spacing:2.928000pt;}
.ws163{word-spacing:2.944000pt;}
.ws89{word-spacing:2.979200pt;}
.ws17e{word-spacing:2.986667pt;}
.ws16e{word-spacing:3.072000pt;}
.ws3b{word-spacing:3.083733pt;}
.ws178{word-spacing:3.114667pt;}
.ws71{word-spacing:3.136000pt;}
.ws160{word-spacing:3.157333pt;}
.ws60{word-spacing:3.188267pt;}
.ws15b{word-spacing:3.200000pt;}
.ws64{word-spacing:3.240533pt;}
.ws18c{word-spacing:3.242667pt;}
.ws10f{word-spacing:3.292800pt;}
.ws83{word-spacing:3.312000pt;}
.ws73{word-spacing:3.345067pt;}
.ws7b{word-spacing:3.397333pt;}
.ws66{word-spacing:3.449600pt;}
.ws158{word-spacing:3.501867pt;}
.ws68{word-spacing:3.554133pt;}
.wsbd{word-spacing:3.566933pt;}
.ws4b{word-spacing:3.600000pt;}
.ws6c{word-spacing:3.606400pt;}
.ws61{word-spacing:3.658667pt;}
.ws74{word-spacing:3.710933pt;}
.wsbf{word-spacing:3.754667pt;}
.ws5b{word-spacing:3.763200pt;}
.wsee{word-spacing:3.792213pt;}
.ws188{word-spacing:3.797333pt;}
.ws36{word-spacing:3.867733pt;}
.ws31{word-spacing:3.920000pt;}
.ws78{word-spacing:4.181333pt;}
.ws79{word-spacing:4.285867pt;}
.ws8c{word-spacing:5.152000pt;}
.wsa{word-spacing:5.404800pt;}
.ws108{word-spacing:25.625600pt;}
.ws11a{word-spacing:26.845867pt;}
.wsf3{word-spacing:27.362133pt;}
.ws102{word-spacing:36.185600pt;}
.ws118{word-spacing:37.312000pt;}
.wsf7{word-spacing:38.532267pt;}
.wsf4{word-spacing:40.268800pt;}
.ws130{word-spacing:43.507200pt;}
.wsf2{word-spacing:44.445867pt;}
.ws11b{word-spacing:44.539733pt;}
.ws12d{word-spacing:45.243733pt;}
.ws10b{word-spacing:45.853867pt;}
.wsfc{word-spacing:46.276267pt;}
.ws121{word-spacing:46.323200pt;}
.ws10a{word-spacing:46.745600pt;}
.ws10c{word-spacing:47.121067pt;}
.ws100{word-spacing:47.496533pt;}
.ws101{word-spacing:48.012800pt;}
.ws135{word-spacing:48.059733pt;}
.wsf5{word-spacing:48.857600pt;}
.wsfa{word-spacing:49.233067pt;}
.wsfe{word-spacing:49.749333pt;}
.ws132{word-spacing:49.796267pt;}
.wsf8{word-spacing:50.594133pt;}
.ws119{word-spacing:51.016533pt;}
.ws11d{word-spacing:52.753067pt;}
.ws12c{word-spacing:53.316267pt;}
.ws12e{word-spacing:53.973333pt;}
.ws104{word-spacing:54.442667pt;}
.ws12f{word-spacing:55.052800pt;}
.ws109{word-spacing:55.193600pt;}
.ws134{word-spacing:55.850667pt;}
.ws136{word-spacing:57.164800pt;}
.ws11c{word-spacing:57.446400pt;}
.ws133{word-spacing:57.728000pt;}
.ws12b{word-spacing:60.919467pt;}
.ws103{word-spacing:62.421333pt;}
.ws107{word-spacing:62.843733pt;}
.ws131{word-spacing:62.890667pt;}
.ws123{word-spacing:63.876267pt;}
.ws120{word-spacing:65.378133pt;}
.ws125{word-spacing:66.269867pt;}
.ws124{word-spacing:67.114667pt;}
.wsf6{word-spacing:67.208533pt;}
.ws106{word-spacing:68.053333pt;}
.wscc{word-spacing:70.535168pt;}
.ws128{word-spacing:71.479467pt;}
.ws11f{word-spacing:72.887467pt;}
.ws143{word-spacing:73.732267pt;}
.ws146{word-spacing:74.154667pt;}
.ws145{word-spacing:74.577067pt;}
.ws122{word-spacing:75.844267pt;}
.wsfb{word-spacing:77.064533pt;}
.ws144{word-spacing:77.205333pt;}
.wsff{word-spacing:77.299200pt;}
.ws126{word-spacing:77.580800pt;}
.ws127{word-spacing:77.815467pt;}
.wsfd{word-spacing:78.801067pt;}
.ws11e{word-spacing:79.317333pt;}
.ws12a{word-spacing:83.869867pt;}
.wsf9{word-spacing:84.714667pt;}
.ws97{word-spacing:87.718400pt;}
.wsde{word-spacing:88.121557pt;}
.ws129{word-spacing:90.112000pt;}
.wsab{word-spacing:92.740267pt;}
.wsb7{word-spacing:94.476800pt;}
.wse5{word-spacing:97.886507pt;}
.ws99{word-spacing:97.996800pt;}
.ws105{word-spacing:98.935467pt;}
.ws98{word-spacing:103.534933pt;}
.wse3{word-spacing:110.211200pt;}
.wsce{word-spacing:114.619648pt;}
.wsb1{word-spacing:114.798933pt;}
.wsd9{word-spacing:116.468352pt;}
.wsdc{word-spacing:118.222251pt;}
.wsb3{word-spacing:118.976000pt;}
.wsd8{word-spacing:119.881344pt;}
.wsd6{word-spacing:119.976149pt;}
.wsd0{word-spacing:121.730048pt;}
.wsa7{word-spacing:124.185600pt;}
.wsa4{word-spacing:125.922133pt;}
.wsb2{word-spacing:130.615467pt;}
.wscd{word-spacing:130.783957pt;}
.wsa9{word-spacing:131.460267pt;}
.wsa5{word-spacing:133.196800pt;}
.wsa2{word-spacing:134.933333pt;}
.ws9c{word-spacing:136.669867pt;}
.wsc8{word-spacing:136.709291pt;}
.wse7{word-spacing:136.804096pt;}
.wsd4{word-spacing:137.609941pt;}
.wsc6{word-spacing:138.557995pt;}
.ws96{word-spacing:140.846933pt;}
.wsa0{word-spacing:142.583467pt;}
.wsaa{word-spacing:145.540267pt;}
.wsa3{word-spacing:147.276800pt;}
.wse6{word-spacing:151.119701pt;}
.ws90{word-spacing:151.594667pt;}
.ws9d{word-spacing:152.486400pt;}
.wsd2{word-spacing:158.893739pt;}
.wse4{word-spacing:160.647637pt;}
.ws92{word-spacing:162.717867pt;}
.ws91{word-spacing:167.411200pt;}
.wsa8{word-spacing:168.913067pt;}
.wsb6{word-spacing:169.147733pt;}
.wsa6{word-spacing:170.039467pt;}
.wsdf{word-spacing:172.924928pt;}
.wsdd{word-spacing:173.209344pt;}
.ws9e{word-spacing:173.465600pt;}
.wse8{word-spacing:174.963243pt;}
.ws9f{word-spacing:175.202133pt;}
.wsd7{word-spacing:178.471040pt;}
.wsac{word-spacing:178.675200pt;}
.wsca{word-spacing:180.983381pt;}
.ws95{word-spacing:189.282133pt;}
.ws93{word-spacing:195.148800pt;}
.wsc7{word-spacing:195.298987pt;}
.ws94{word-spacing:195.336533pt;}
.wsad{word-spacing:196.040533pt;}
.wsd1{word-spacing:197.052885pt;}
.wsdb{word-spacing:197.953536pt;}
.wsda{word-spacing:198.806784pt;}
.wsc9{word-spacing:199.423019pt;}
.wsb4{word-spacing:211.153067pt;}
.wse0{word-spacing:212.885376pt;}
.wsae{word-spacing:212.889600pt;}
.wsb0{word-spacing:217.207467pt;}
.wse2{word-spacing:217.388629pt;}
.wscb{word-spacing:219.142528pt;}
.wsd3{word-spacing:239.478272pt;}
.wscf{word-spacing:266.402987pt;}
.ws9a{word-spacing:277.516800pt;}
.ws9b{word-spacing:278.408533pt;}
.wsa1{word-spacing:292.582400pt;}
.wsd5{word-spacing:310.629675pt;}
.ws116{word-spacing:1146.624533pt;}
.ws117{word-spacing:1180.582933pt;}
._b{margin-left:-11.236560pt;}
._5{margin-left:-8.213333pt;}
._a{margin-left:-6.685867pt;}
._9{margin-left:-4.983040pt;}
._3{margin-left:-3.946667pt;}
._4{margin-left:-2.880000pt;}
._0{margin-left:-1.578667pt;}
._1{width:0.960000pt;}
._2{width:2.325333pt;}
._c{width:3.238507pt;}
._6{width:4.223147pt;}
._80{width:6.088960pt;}
._69{width:57.305600pt;}
._5b{width:60.309333pt;}
._60{width:61.401600pt;}
._75{width:62.771200pt;}
._7a{width:63.970133pt;}
._74{width:65.501867pt;}
._76{width:66.457600pt;}
._62{width:67.882667pt;}
._5e{width:69.303467pt;}
._8{width:70.774933pt;}
._61{width:73.028267pt;}
._73{width:74.504533pt;}
._5d{width:75.707307pt;}
._5c{width:76.974933pt;}
._7d{width:80.012800pt;}
._64{width:82.116800pt;}
._5f{width:83.272533pt;}
._63{width:84.940373pt;}
._86{width:85.969067pt;}
._7c{width:87.718400pt;}
._65{width:93.644800pt;}
._66{width:95.539200pt;}
._79{width:96.849493pt;}
._68{width:98.964544pt;}
._6c{width:100.232533pt;}
._78{width:101.969067pt;}
._92{width:104.176149pt;}
._4e{width:113.292373pt;}
._84{width:116.253867pt;}
._6a{width:117.521067pt;}
._81{width:120.524800pt;}
._8a{width:122.636800pt;}
._8c{width:124.091733pt;}
._97{width:130.304000pt;}
._2c{width:133.994667pt;}
._82{width:139.673600pt;}
._8b{width:146.432000pt;}
._95{width:148.697600pt;}
._90{width:150.327467pt;}
._8f{width:151.415040pt;}
._6b{width:158.540800pt;}
._1d{width:167.129600pt;}
._43{width:171.123627pt;}
._67{width:183.086933pt;}
._4c{width:184.301568pt;}
._7b{width:186.090667pt;}
._6d{width:191.910400pt;}
._83{width:194.961067pt;}
._41{width:199.091200pt;}
._77{width:201.062400pt;}
._20{width:206.084267pt;}
._1b{width:210.871467pt;}
._5a{width:218.005333pt;}
._72{width:221.056000pt;}
._1c{width:224.716800pt;}
._7e{width:226.717867pt;}
._88{width:235.109973pt;}
._8e{width:236.688640pt;}
._89{width:238.843733pt;}
._96{width:241.045333pt;}
._42{width:242.986069pt;}
._38{width:277.115989pt;}
._4f{width:278.016640pt;}
._7f{width:280.098133pt;}
._6e{width:282.350933pt;}
._85{width:285.354667pt;}
._12{width:288.123733pt;}
._24{width:289.015467pt;}
._13{width:301.969067pt;}
._1f{width:303.283200pt;}
._91{width:308.727467pt;}
._39{width:321.010859pt;}
._58{width:322.338133pt;}
._94{width:378.641067pt;}
._93{width:396.194133pt;}
._6f{width:406.520000pt;}
._d{width:410.280000pt;}
._8d{width:455.206400pt;}
._87{width:473.651200pt;}
._e{width:478.080000pt;}
._70{width:497.560000pt;}
._57{width:679.863424pt;}
._35{width:694.971733pt;}
._3b{width:705.162069pt;}
._15{width:719.910400pt;}
._26{width:826.619733pt;}
._45{width:988.155989pt;}
._22{width:1000.149333pt;}
._54{width:1001.822336pt;}
._48{width:1004.571691pt;}
._49{width:1006.372992pt;}
._40{width:1008.126891pt;}
._29{width:1012.070400pt;}
._32{width:1013.742933pt;}
._27{width:1018.248533pt;}
._1a{width:1019.938133pt;}
._3a{width:1021.906688pt;}
._4a{width:1026.599552pt;}
._14{width:1033.518933pt;}
._28{width:1038.165333pt;}
._55{width:1045.371008pt;}
._3d{width:1084.587392pt;}
._59{width:1086.990549pt;}
._17{width:1095.688533pt;}
._36{width:1097.958400pt;}
._44{width:1102.870443pt;}
._53{width:1105.207552pt;}
._33{width:1108.471467pt;}
._21{width:1113.681067pt;}
._1e{width:1124.006400pt;}
._31{width:1126.617600pt;}
._46{width:1134.156203pt;}
._3f{width:1140.365952pt;}
._23{width:1144.750933pt;}
._52{width:1146.291285pt;}
._4d{width:1149.941291pt;}
._19{width:1150.899200pt;}
._30{width:1156.672000pt;}
._2f{width:1158.314667pt;}
._2b{width:1160.285867pt;}
._56{width:1163.972480pt;}
._34{width:1174.178133pt;}
._50{width:1176.012757pt;}
._47{width:1179.046528pt;}
._2d{width:1186.099200pt;}
._25{width:1189.102933pt;}
._37{width:1198.529024pt;}
._11{width:1208.439467pt;}
._71{width:1212.120000pt;}
._51{width:1215.214763pt;}
._f{width:1223.488000pt;}
._2e{width:1224.913067pt;}
._10{width:1233.595733pt;}
._2a{width:1255.278933pt;}
._4b{width:1264.418731pt;}
._3e{width:1298.122027pt;}
._18{width:1307.093333pt;}
._7{width:1662.787200pt;}
._16{width:2085.107200pt;}
._3c{width:2088.371883pt;}
.fsb{font-size:20.210667pt;}
.fs6{font-size:24.000000pt;}
.fsa{font-size:24.874667pt;}
.fs1b{font-size:27.362133pt;}
.fs10{font-size:30.471467pt;}
.fsc{font-size:34.666667pt;}
.fs15{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:43.093333pt;}
.fs2{font-size:44.171793pt;}
.fs11{font-size:45.333333pt;}
.fs13{font-size:45.786667pt;}
.fs17{font-size:46.933333pt;}
.fs19{font-size:47.402667pt;}
.fs18{font-size:47.657377pt;}
.fs12{font-size:48.000000pt;}
.fs1a{font-size:48.133935pt;}
.fs5{font-size:48.480000pt;}
.fs8{font-size:50.666667pt;}
.fsf{font-size:52.266667pt;}
.fs0{font-size:53.333333pt;}
.fs16{font-size:56.000000pt;}
.fs14{font-size:57.600000pt;}
.fs9{font-size:58.666667pt;}
.fse{font-size:69.333333pt;}
.fs7{font-size:101.333333pt;}
.fs3{font-size:106.666667pt;}
.fsd{font-size:176.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:62.262000pt;}
.y227{bottom:95.597733pt;}
.yd{bottom:96.376267pt;}
.y2d4{bottom:96.979867pt;}
.y14f{bottom:97.024000pt;}
.y13c{bottom:97.030133pt;}
.y28c{bottom:97.627600pt;}
.y315{bottom:97.886533pt;}
.y1aa{bottom:97.899467pt;}
.y1e3{bottom:98.552928pt;}
.y122{bottom:99.894400pt;}
.y102{bottom:99.900533pt;}
.yb5{bottom:99.906667pt;}
.y2a2{bottom:99.912800pt;}
.y5a{bottom:107.675867pt;}
.y351{bottom:107.977200pt;}
.y226{bottom:108.926800pt;}
.y2d3{bottom:110.313200pt;}
.y26c{bottom:110.817600pt;}
.y28b{bottom:110.965200pt;}
.yc{bottom:111.046267pt;}
.y314{bottom:111.219867pt;}
.y1a9{bottom:111.228533pt;}
.y1e2{bottom:112.015285pt;}
.y14e{bottom:114.363467pt;}
.y13b{bottom:114.369600pt;}
.y121{bottom:117.233867pt;}
.y101{bottom:117.240000pt;}
.yb4{bottom:117.246133pt;}
.y350{bottom:121.310533pt;}
.y225{bottom:122.255867pt;}
.y2d2{bottom:123.646533pt;}
.y26b{bottom:124.163733pt;}
.y28a{bottom:124.298533pt;}
.y313{bottom:124.553200pt;}
.y1a8{bottom:124.570400pt;}
.y59{bottom:125.009200pt;}
.y1e1{bottom:125.477643pt;}
.yb{bottom:126.478667pt;}
.y13a{bottom:130.605600pt;}
.y14d{bottom:131.702933pt;}
.yb3{bottom:133.482133pt;}
.y120{bottom:134.573333pt;}
.yde{bottom:134.579467pt;}
.y34f{bottom:134.643867pt;}
.y224{bottom:135.589200pt;}
.y2d1{bottom:136.979867pt;}
.y26a{bottom:137.492800pt;}
.y289{bottom:137.627600pt;}
.y312{bottom:137.886533pt;}
.y1a7{bottom:137.899467pt;}
.y1e0{bottom:138.940000pt;}
.y6d{bottom:142.342400pt;}
.y58{bottom:142.348667pt;}
.ya{bottom:144.933387pt;}
.y14c{bottom:147.938933pt;}
.y34e{bottom:147.977200pt;}
.y223{bottom:148.926800pt;}
.y2d0{bottom:150.313200pt;}
.yb2{bottom:150.815467pt;}
.y269{bottom:150.821867pt;}
.y288{bottom:150.960933pt;}
.y311{bottom:151.219867pt;}
.y1a6{bottom:151.228533pt;}
.y2a9{bottom:151.900533pt;}
.ydd{bottom:151.912800pt;}
.y1df{bottom:152.415285pt;}
.y9{bottom:157.333493pt;}
.y57{bottom:159.675867pt;}
.y6c{bottom:159.681867pt;}
.y34d{bottom:161.310533pt;}
.y222{bottom:162.216133pt;}
.y2cf{bottom:163.646533pt;}
.y268{bottom:164.155200pt;}
.y287{bottom:164.287200pt;}
.y310{bottom:164.553200pt;}
.y1a5{bottom:164.666133pt;}
.y1de{bottom:165.877643pt;}
.y139{bottom:166.332667pt;}
.ydc{bottom:168.148800pt;}
.y11f{bottom:169.233867pt;}
.y2a8{bottom:169.240000pt;}
.y100{bottom:169.246133pt;}
.y8{bottom:169.733600pt;}
.y34c{bottom:174.643867pt;}
.y221{bottom:175.545200pt;}
.y6b{bottom:176.953867pt;}
.y2ce{bottom:176.979867pt;}
.y56{bottom:177.015333pt;}
.y267{bottom:177.449600pt;}
.y286{bottom:177.616267pt;}
.y30f{bottom:177.886533pt;}
.y1a4{bottom:177.995200pt;}
.y1dd{bottom:179.340000pt;}
.y7{bottom:183.494267pt;}
.y14b{bottom:183.592533pt;}
.y138{bottom:183.672133pt;}
.y2a7{bottom:186.530400pt;}
.yb1{bottom:186.573333pt;}
.yff{bottom:186.579467pt;}
.y34b{bottom:187.977200pt;}
.y2cd{bottom:190.313200pt;}
.y266{bottom:190.778667pt;}
.y30e{bottom:191.219867pt;}
.y1a3{bottom:191.324267pt;}
.y1dc{bottom:192.741360pt;}
.y220{bottom:193.027867pt;}
.y6a{bottom:194.293333pt;}
.y55{bottom:194.348667pt;}
.y285{bottom:195.098933pt;}
.y14a{bottom:200.932000pt;}
.y137{bottom:201.011600pt;}
.y34a{bottom:201.310533pt;}
.y6{bottom:203.571600pt;}
.y2cc{bottom:203.646533pt;}
.y2a6{bottom:203.869867pt;}
.ydb{bottom:203.876000pt;}
.yfe{bottom:203.894400pt;}
.y2a1{bottom:203.900533pt;}
.yb0{bottom:203.912800pt;}
.y30d{bottom:204.553200pt;}
.y1a2{bottom:204.653333pt;}
.y265{bottom:208.449067pt;}
.y21f{bottom:209.947333pt;}
.y1db{bottom:210.149989pt;}
.y69{bottom:211.632800pt;}
.y54{bottom:211.675867pt;}
.y284{bottom:212.018400pt;}
.y349{bottom:214.643867pt;}
.y2cb{bottom:216.979867pt;}
.y30c{bottom:217.886533pt;}
.y149{bottom:218.271467pt;}
.y136{bottom:218.351067pt;}
.y11e{bottom:220.148800pt;}
.y2a5{bottom:221.209333pt;}
.yda{bottom:221.215467pt;}
.yfd{bottom:221.233867pt;}
.y2a0{bottom:221.240000pt;}
.yaf{bottom:221.246133pt;}
.y1a1{bottom:221.842667pt;}
.y264{bottom:225.755733pt;}
.y1da{bottom:226.812027pt;}
.y21e{bottom:226.960667pt;}
.y348{bottom:227.977200pt;}
.y68{bottom:228.972267pt;}
.y53{bottom:229.015333pt;}
.y283{bottom:229.031733pt;}
.y2ca{bottom:230.313200pt;}
.y41{bottom:231.100000pt;}
.y30b{bottom:231.219867pt;}
.y148{bottom:235.610933pt;}
.y135{bottom:235.690533pt;}
.y1a0{bottom:238.198933pt;}
.yae{bottom:238.548800pt;}
.yd9{bottom:238.554933pt;}
.yfc{bottom:238.573333pt;}
.y29f{bottom:238.579467pt;}
.y40{bottom:241.233333pt;}
.y347{bottom:241.310533pt;}
.y263{bottom:243.144533pt;}
.y1d9{bottom:243.557019pt;}
.y2c9{bottom:243.646533pt;}
.y21d{bottom:243.974000pt;}
.y30a{bottom:244.553200pt;}
.y282{bottom:246.045067pt;}
.y67{bottom:246.311733pt;}
.y52{bottom:246.330133pt;}
.y3f{bottom:251.366667pt;}
.y147{bottom:252.950400pt;}
.y134{bottom:253.030000pt;}
.y19f{bottom:254.637333pt;}
.y346{bottom:254.643867pt;}
.yad{bottom:255.888267pt;}
.yd8{bottom:255.894400pt;}
.y11d{bottom:255.900533pt;}
.y29e{bottom:255.906667pt;}
.yfb{bottom:255.912800pt;}
.y2c8{bottom:256.979867pt;}
.y309{bottom:257.886533pt;}
.y1d8{bottom:260.302011pt;}
.y262{bottom:260.533333pt;}
.y21c{bottom:260.987333pt;}
.y3e{bottom:261.500000pt;}
.y281{bottom:263.058400pt;}
.y66{bottom:263.651200pt;}
.y51{bottom:263.669600pt;}
.y345{bottom:267.977200pt;}
.y146{bottom:270.289867pt;}
.y2c7{bottom:270.313200pt;}
.y133{bottom:270.369467pt;}
.y19e{bottom:271.075733pt;}
.y308{bottom:271.219867pt;}
.y3d{bottom:271.633333pt;}
.yac{bottom:273.227733pt;}
.yd7{bottom:273.233867pt;}
.y11c{bottom:273.240000pt;}
.yfa{bottom:273.246133pt;}
.y1d7{bottom:277.047003pt;}
.y261{bottom:277.922133pt;}
.y21b{bottom:278.000667pt;}
.y280{bottom:279.977867pt;}
.y65{bottom:280.990667pt;}
.y50{bottom:281.009067pt;}
.y344{bottom:281.310533pt;}
.y3c{bottom:281.766667pt;}
.y2c6{bottom:283.646533pt;}
.y307{bottom:284.553200pt;}
.y19d{bottom:287.514133pt;}
.y145{bottom:287.629333pt;}
.y132{bottom:287.653867pt;}
.yab{bottom:290.567200pt;}
.yd6{bottom:290.573333pt;}
.y11b{bottom:290.579467pt;}
.y3b{bottom:291.900000pt;}
.y1d6{bottom:293.791995pt;}
.y343{bottom:294.643867pt;}
.y21a{bottom:295.014000pt;}
.y260{bottom:295.310933pt;}
.y2c5{bottom:296.979867pt;}
.y27e{bottom:297.455333pt;}
.y306{bottom:297.886533pt;}
.y64{bottom:298.330133pt;}
.y4f{bottom:298.342400pt;}
.y27f{bottom:301.717200pt;}
.y3a{bottom:302.033333pt;}
.y19c{bottom:303.952533pt;}
.y144{bottom:304.968800pt;}
.y131{bottom:304.993333pt;}
.y11a{bottom:307.833067pt;}
.yaa{bottom:307.906667pt;}
.yd5{bottom:307.912800pt;}
.y342{bottom:307.977200pt;}
.y2c4{bottom:310.313200pt;}
.y1d5{bottom:310.536987pt;}
.y305{bottom:311.219867pt;}
.y219{bottom:312.027333pt;}
.y39{bottom:312.166667pt;}
.y25f{bottom:312.699733pt;}
.y63{bottom:315.669600pt;}
.y4e{bottom:315.681867pt;}
.y27d{bottom:316.789067pt;}
.y19b{bottom:320.390933pt;}
.y341{bottom:321.310533pt;}
.y38{bottom:322.300000pt;}
.y143{bottom:322.308267pt;}
.y130{bottom:322.332800pt;}
.y2c3{bottom:323.646533pt;}
.y304{bottom:324.553200pt;}
.y119{bottom:325.172533pt;}
.y29d{bottom:325.184800pt;}
.yd4{bottom:325.221600pt;}
.yf9{bottom:325.227733pt;}
.ya9{bottom:325.246133pt;}
.y1d4{bottom:327.281979pt;}
.y218{bottom:329.040667pt;}
.y25e{bottom:330.088533pt;}
.y37{bottom:332.433333pt;}
.y62{bottom:333.009067pt;}
.y4d{bottom:333.015200pt;}
.y340{bottom:334.643867pt;}
.y19a{bottom:336.829333pt;}
.y2c2{bottom:336.979867pt;}
.y303{bottom:337.886533pt;}
.y142{bottom:339.647733pt;}
.y12f{bottom:339.672267pt;}
.y118{bottom:342.512000pt;}
.y29c{bottom:342.524267pt;}
.yd3{bottom:342.561067pt;}
.y36{bottom:342.566667pt;}
.yf8{bottom:342.567200pt;}
.ya8{bottom:342.579467pt;}
.y1d3{bottom:344.026971pt;}
.y217{bottom:346.054000pt;}
.y25d{bottom:347.477333pt;}
.y33f{bottom:347.977200pt;}
.y2c1{bottom:350.313200pt;}
.y4c{bottom:350.348533pt;}
.y302{bottom:351.219867pt;}
.y35{bottom:352.700000pt;}
.y199{bottom:353.267733pt;}
.y141{bottom:356.987200pt;}
.y12e{bottom:357.011733pt;}
.y117{bottom:359.851467pt;}
.y29b{bottom:359.863733pt;}
.ya7{bottom:359.888267pt;}
.yd2{bottom:359.900533pt;}
.yf7{bottom:359.906667pt;}
.y27c{bottom:359.912800pt;}
.y1d2{bottom:360.771963pt;}
.y33e{bottom:361.310533pt;}
.y34{bottom:362.833333pt;}
.y216{bottom:363.067333pt;}
.y2c0{bottom:363.646533pt;}
.y301{bottom:364.553200pt;}
.y25c{bottom:364.866133pt;}
.y61{bottom:367.669600pt;}
.y4b{bottom:367.675733pt;}
.y198{bottom:369.706133pt;}
.y33{bottom:372.966667pt;}
.y140{bottom:374.326667pt;}
.y12d{bottom:374.351200pt;}
.y33d{bottom:374.643867pt;}
.y2bf{bottom:376.979867pt;}
.y116{bottom:377.190933pt;}
.y29a{bottom:377.203200pt;}
.yf6{bottom:377.215467pt;}
.ya6{bottom:377.227733pt;}
.yd1{bottom:377.240000pt;}
.y27b{bottom:377.246133pt;}
.y1d1{bottom:377.516955pt;}
.y300{bottom:377.886533pt;}
.y215{bottom:379.986800pt;}
.y25b{bottom:382.254933pt;}
.y32{bottom:383.100000pt;}
.y4a{bottom:385.009067pt;}
.y197{bottom:386.144533pt;}
.y33c{bottom:387.977200pt;}
.y2be{bottom:390.313200pt;}
.y2ff{bottom:391.219867pt;}
.y13f{bottom:391.666133pt;}
.y12c{bottom:391.690667pt;}
.y31{bottom:393.233333pt;}
.y1d0{bottom:394.261947pt;}
.y115{bottom:394.530400pt;}
.y299{bottom:394.542667pt;}
.yf5{bottom:394.554933pt;}
.ya5{bottom:394.567200pt;}
.yd0{bottom:394.579467pt;}
.y20b{bottom:397.464400pt;}
.y213{bottom:397.469733pt;}
.y20a{bottom:397.475067pt;}
.y25a{bottom:399.561600pt;}
.y33b{bottom:401.310533pt;}
.y49{bottom:402.336267pt;}
.y196{bottom:402.582933pt;}
.y30{bottom:403.366667pt;}
.y2bd{bottom:403.646533pt;}
.y2fe{bottom:404.553200pt;}
.y13e{bottom:409.005600pt;}
.y12b{bottom:409.030133pt;}
.y1cf{bottom:411.006939pt;}
.y114{bottom:411.869867pt;}
.y298{bottom:411.882133pt;}
.yf4{bottom:411.894400pt;}
.ya4{bottom:411.906667pt;}
.y275{bottom:411.912800pt;}
.y2f{bottom:413.500000pt;}
.y212{bottom:414.131067pt;}
.y209{bottom:414.136400pt;}
.y20e{bottom:414.137467pt;}
.y33a{bottom:414.643867pt;}
.y2bc{bottom:416.979867pt;}
.y251{bottom:417.228133pt;}
.y250{bottom:417.233467pt;}
.y2fd{bottom:417.886533pt;}
.y195{bottom:419.021333pt;}
.y48{bottom:419.675733pt;}
.y20f{bottom:422.464400pt;}
.y2e{bottom:423.633333pt;}
.y13d{bottom:426.345067pt;}
.y12a{bottom:426.369600pt;}
.y214{bottom:426.726267pt;}
.y1ce{bottom:427.751931pt;}
.y339{bottom:427.977200pt;}
.y274{bottom:429.184800pt;}
.y113{bottom:429.209333pt;}
.y297{bottom:429.221600pt;}
.yf3{bottom:429.233867pt;}
.ya3{bottom:429.246133pt;}
.y2bb{bottom:430.313200pt;}
.y208{bottom:430.797733pt;}
.y20d{bottom:430.798800pt;}
.y211{bottom:430.806800pt;}
.y2fc{bottom:431.219867pt;}
.y2d{bottom:433.766667pt;}
.y24f{bottom:433.894800pt;}
.y258{bottom:433.901200pt;}
.y194{bottom:435.459733pt;}
.y60{bottom:437.009067pt;}
.y47{bottom:437.015200pt;}
.y338{bottom:441.310533pt;}
.y255{bottom:442.228133pt;}
.y129{bottom:443.684533pt;}
.y2c{bottom:443.900000pt;}
.y1cd{bottom:444.496923pt;}
.y2fb{bottom:444.553200pt;}
.y2ba{bottom:445.931867pt;}
.y259{bottom:446.490000pt;}
.y273{bottom:446.524267pt;}
.ycf{bottom:446.542667pt;}
.y112{bottom:446.548800pt;}
.y296{bottom:446.561067pt;}
.ya2{bottom:446.567200pt;}
.yf2{bottom:446.573333pt;}
.y20c{bottom:447.460133pt;}
.y207{bottom:447.464400pt;}
.y210{bottom:447.468133pt;}
.y253{bottom:450.561467pt;}
.y254{bottom:450.562533pt;}
.y24e{bottom:450.566800pt;}
.y257{bottom:450.570533pt;}
.y193{bottom:451.898133pt;}
.y2b{bottom:454.033333pt;}
.y5f{bottom:454.336267pt;}
.y46{bottom:454.342400pt;}
.y337{bottom:454.643867pt;}
.y2fa{bottom:457.886533pt;}
.y128{bottom:461.024000pt;}
.y1cc{bottom:461.241915pt;}
.y272{bottom:463.863733pt;}
.yce{bottom:463.882133pt;}
.y111{bottom:463.888267pt;}
.y295{bottom:463.900533pt;}
.ya1{bottom:463.906667pt;}
.yf1{bottom:463.912800pt;}
.y2a{bottom:464.166667pt;}
.y206{bottom:466.798000pt;}
.y252{bottom:467.223867pt;}
.y24d{bottom:467.228133pt;}
.y256{bottom:467.231867pt;}
.y336{bottom:467.977200pt;}
.y192{bottom:468.336533pt;}
.y2b9{bottom:470.428667pt;}
.y2f9{bottom:471.219867pt;}
.y5e{bottom:471.675733pt;}
.y45{bottom:471.681867pt;}
.y29{bottom:474.300000pt;}
.y1cb{bottom:477.986907pt;}
.y127{bottom:478.363467pt;}
.y271{bottom:481.203200pt;}
.yf0{bottom:481.215467pt;}
.ycd{bottom:481.221600pt;}
.y110{bottom:481.227733pt;}
.y294{bottom:481.240000pt;}
.ya0{bottom:481.246133pt;}
.y335{bottom:481.310533pt;}
.y2b8{bottom:483.762000pt;}
.y28{bottom:484.433333pt;}
.y2f8{bottom:484.553200pt;}
.y369{bottom:484.554667pt;}
.y191{bottom:484.774933pt;}
.y24c{bottom:486.561867pt;}
.y5d{bottom:489.009067pt;}
.y44{bottom:489.015200pt;}
.y27{bottom:494.566667pt;}
.y334{bottom:494.643867pt;}
.y1ca{bottom:494.731899pt;}
.y126{bottom:495.702933pt;}
.y2b7{bottom:497.095333pt;}
.y2f7{bottom:497.886533pt;}
.y368{bottom:497.888000pt;}
.y1f3{bottom:498.536533pt;}
.y9f{bottom:498.542667pt;}
.yef{bottom:498.554933pt;}
.ycc{bottom:498.561067pt;}
.y10f{bottom:498.567200pt;}
.y293{bottom:498.573333pt;}
.y205{bottom:498.579467pt;}
.y190{bottom:501.213333pt;}
.y26{bottom:504.700000pt;}
.y5c{bottom:506.348533pt;}
.y333{bottom:507.977200pt;}
.y2b6{bottom:510.428667pt;}
.y2f6{bottom:511.219867pt;}
.y367{bottom:511.221333pt;}
.y1c9{bottom:511.476891pt;}
.y25{bottom:514.833333pt;}
.y1f2{bottom:515.876000pt;}
.y9e{bottom:515.882133pt;}
.yee{bottom:515.894400pt;}
.ycb{bottom:515.900533pt;}
.y10e{bottom:515.906667pt;}
.y204{bottom:515.912800pt;}
.y18f{bottom:517.651733pt;}
.y43{bottom:520.170533pt;}
.y332{bottom:521.310533pt;}
.y5b{bottom:523.681867pt;}
.y2b5{bottom:523.762000pt;}
.y2f5{bottom:524.553200pt;}
.y366{bottom:524.554667pt;}
.y24{bottom:524.966667pt;}
.y1c8{bottom:528.221883pt;}
.y24b{bottom:532.718133pt;}
.y1f1{bottom:533.215467pt;}
.y9d{bottom:533.221600pt;}
.yed{bottom:533.233867pt;}
.yca{bottom:533.240000pt;}
.y10d{bottom:533.246133pt;}
.y18e{bottom:534.090133pt;}
.y23{bottom:535.100000pt;}
.y2b4{bottom:537.095333pt;}
.y2f4{bottom:537.886533pt;}
.y365{bottom:537.888000pt;}
.y331{bottom:539.558400pt;}
.y125{bottom:542.211600pt;}
.y1c7{bottom:544.966875pt;}
.y22{bottom:545.233333pt;}
.y24a{bottom:546.722133pt;}
.y203{bottom:549.482133pt;}
.y2b3{bottom:550.428667pt;}
.y18d{bottom:550.528533pt;}
.y1f0{bottom:550.554933pt;}
.y9c{bottom:550.561067pt;}
.yec{bottom:550.573333pt;}
.yc9{bottom:550.579467pt;}
.y2f3{bottom:551.219867pt;}
.y364{bottom:551.221333pt;}
.y21{bottom:555.366667pt;}
.y124{bottom:556.215600pt;}
.y249{bottom:560.726133pt;}
.y1c6{bottom:561.711867pt;}
.y2f2{bottom:564.553200pt;}
.y363{bottom:564.554667pt;}
.y20{bottom:565.500000pt;}
.y2b2{bottom:566.047333pt;}
.y202{bottom:566.815467pt;}
.y18c{bottom:566.966933pt;}
.y10c{bottom:567.888267pt;}
.y1ef{bottom:567.894400pt;}
.y9b{bottom:567.900533pt;}
.yc8{bottom:567.912800pt;}
.y123{bottom:570.219600pt;}
.y330{bottom:573.877467pt;}
.y1f{bottom:575.633333pt;}
.y2f1{bottom:577.886533pt;}
.y362{bottom:577.888000pt;}
.y1c5{bottom:578.456859pt;}
.y248{bottom:580.249067pt;}
.y18b{bottom:583.405333pt;}
.yeb{bottom:585.227733pt;}
.yc7{bottom:585.233867pt;}
.y9a{bottom:585.240000pt;}
.y27a{bottom:585.246133pt;}
.y1e{bottom:585.766667pt;}
.y32f{bottom:587.210800pt;}
.y172{bottom:589.342267pt;}
.y2b1{bottom:590.544133pt;}
.y2f0{bottom:591.219867pt;}
.y361{bottom:591.221333pt;}
.y242{bottom:592.978800pt;}
.y1c4{bottom:595.201851pt;}
.y1d{bottom:595.900000pt;}
.y16a{bottom:599.237333pt;}
.y18a{bottom:599.843733pt;}
.y32e{bottom:600.544133pt;}
.y201{bottom:602.536533pt;}
.y292{bottom:602.548800pt;}
.yea{bottom:602.567200pt;}
.yc6{bottom:602.573333pt;}
.y99{bottom:602.579467pt;}
.y84{bottom:602.798667pt;}
.y2ef{bottom:604.553200pt;}
.y360{bottom:604.554667pt;}
.y240{bottom:605.467333pt;}
.y23b{bottom:605.477333pt;}
.y1c{bottom:606.033333pt;}
.y2b0{bottom:606.696133pt;}
.y168{bottom:611.725733pt;}
.y163{bottom:611.735733pt;}
.y1c3{bottom:611.946843pt;}
.y1b{bottom:611.988267pt;}
.y228{bottom:612.024400pt;}
.y22c{bottom:612.825067pt;}
.y32d{bottom:613.877467pt;}
.y189{bottom:616.282133pt;}
.y83{bottom:617.241733pt;}
.y2ee{bottom:617.886533pt;}
.y35f{bottom:617.888000pt;}
.y200{bottom:619.876000pt;}
.y291{bottom:619.888267pt;}
.y2a4{bottom:619.900533pt;}
.y98{bottom:619.906667pt;}
.yc5{bottom:619.912800pt;}
.y171{bottom:620.433733pt;}
.y22a{bottom:622.843333pt;}
.y151{bottom:623.054667pt;}
.y22b{bottom:624.825067pt;}
.y1a{bottom:626.300000pt;}
.y32c{bottom:627.210800pt;}
.y1c2{bottom:628.691835pt;}
.y22e{bottom:629.460000pt;}
.y153{bottom:630.046800pt;}
.y2ed{bottom:631.219867pt;}
.y35e{bottom:631.221333pt;}
.y2af{bottom:632.549467pt;}
.y188{bottom:632.720533pt;}
.y270{bottom:633.734667pt;}
.y229{bottom:634.843333pt;}
.y150{bottom:635.054667pt;}
.y82{bottom:635.515467pt;}
.y19{bottom:636.433333pt;}
.y1ff{bottom:637.215467pt;}
.yc4{bottom:637.227733pt;}
.y97{bottom:637.240000pt;}
.ye9{bottom:637.246133pt;}
.y22d{bottom:641.460000pt;}
.y152{bottom:642.046800pt;}
.y32b{bottom:642.829467pt;}
.y2ec{bottom:644.553200pt;}
.y35d{bottom:644.554667pt;}
.y1c1{bottom:645.436827pt;}
.y2ae{bottom:645.882800pt;}
.y23a{bottom:646.547333pt;}
.y18{bottom:646.566667pt;}
.y187{bottom:649.158933pt;}
.y81{bottom:650.354533pt;}
.y162{bottom:652.805733pt;}
.y10b{bottom:653.482133pt;}
.y1fe{bottom:654.554933pt;}
.yc3{bottom:654.567200pt;}
.ye8{bottom:654.573333pt;}
.y96{bottom:654.579467pt;}
.y170{bottom:654.693733pt;}
.y2eb{bottom:657.886533pt;}
.y35c{bottom:657.888000pt;}
.y2ad{bottom:661.501333pt;}
.y1c0{bottom:662.181819pt;}
.y17{bottom:662.344667pt;}
.y23f{bottom:662.967333pt;}
.y186{bottom:665.597333pt;}
.y80{bottom:669.042933pt;}
.y32a{bottom:669.216133pt;}
.y167{bottom:669.225733pt;}
.y2ea{bottom:671.219867pt;}
.y35b{bottom:671.221333pt;}
.y1ee{bottom:671.876000pt;}
.y1fd{bottom:671.894400pt;}
.y279{bottom:671.900533pt;}
.y95{bottom:671.906667pt;}
.ye7{bottom:671.912800pt;}
.y16{bottom:675.006000pt;}
.y1bf{bottom:678.926811pt;}
.y185{bottom:682.035733pt;}
.y329{bottom:682.549467pt;}
.y155{bottom:682.960133pt;}
.y7f{bottom:683.706933pt;}
.y2e9{bottom:684.553200pt;}
.y35a{bottom:684.554667pt;}
.y10a{bottom:685.734667pt;}
.y15{bottom:687.006000pt;}
.y239{bottom:687.617333pt;}
.ye6{bottom:688.148800pt;}
.y1ed{bottom:689.215467pt;}
.y1fc{bottom:689.233867pt;}
.yc2{bottom:689.240000pt;}
.y94{bottom:689.246133pt;}
.y2ac{bottom:689.912800pt;}
.y161{bottom:693.875733pt;}
.y154{bottom:694.960133pt;}
.y1be{bottom:695.671803pt;}
.y328{bottom:695.882800pt;}
.y2e8{bottom:697.886533pt;}
.y359{bottom:697.888000pt;}
.y7e{bottom:698.370933pt;}
.y184{bottom:698.474133pt;}
.y14{bottom:699.006000pt;}
.y1ec{bottom:706.554933pt;}
.y93{bottom:706.573333pt;}
.yc1{bottom:706.579467pt;}
.y2ab{bottom:707.246133pt;}
.y327{bottom:709.216133pt;}
.y13{bottom:711.006000pt;}
.y2e7{bottom:711.219867pt;}
.y358{bottom:711.221333pt;}
.y1bd{bottom:712.416795pt;}
.y7d{bottom:713.034933pt;}
.y183{bottom:714.912533pt;}
.y23e{bottom:720.467333pt;}
.y326{bottom:722.549467pt;}
.yc0{bottom:722.815467pt;}
.y12{bottom:723.006000pt;}
.y2aa{bottom:723.482133pt;}
.y1eb{bottom:723.894400pt;}
.y278{bottom:723.900533pt;}
.ye5{bottom:723.906667pt;}
.y92{bottom:723.912800pt;}
.y2e6{bottom:724.553200pt;}
.y357{bottom:724.554667pt;}
.y166{bottom:726.725733pt;}
.y7c{bottom:727.698933pt;}
.y238{bottom:728.687333pt;}
.y1bc{bottom:729.161787pt;}
.y182{bottom:731.350933pt;}
.y160{bottom:734.945733pt;}
.y11{bottom:735.006000pt;}
.y325{bottom:735.882800pt;}
.y241{bottom:737.160267pt;}
.y2e5{bottom:737.886533pt;}
.y356{bottom:737.888000pt;}
.y91{bottom:741.227733pt;}
.y1ea{bottom:741.233867pt;}
.y26f{bottom:741.240000pt;}
.ye4{bottom:741.246133pt;}
.y233{bottom:741.334000pt;}
.y15b{bottom:742.112267pt;}
.y7b{bottom:742.362933pt;}
.y169{bottom:743.418800pt;}
.y1bb{bottom:745.906779pt;}
.y10{bottom:747.006000pt;}
.y181{bottom:747.789333pt;}
.y324{bottom:749.216133pt;}
.y2e4{bottom:751.219867pt;}
.y355{bottom:751.221333pt;}
.y15a{bottom:754.112267pt;}
.y230{bottom:757.019067pt;}
.y7a{bottom:757.026933pt;}
.y232{bottom:757.397067pt;}
.y90{bottom:758.567200pt;}
.ybf{bottom:758.573333pt;}
.y109{bottom:758.579467pt;}
.yf{bottom:759.006000pt;}
.y323{bottom:762.549467pt;}
.y1ba{bottom:762.651771pt;}
.y157{bottom:763.844533pt;}
.y180{bottom:764.227733pt;}
.y2e3{bottom:764.553200pt;}
.y354{bottom:764.554667pt;}
.y22f{bottom:769.019067pt;}
.y231{bottom:769.397067pt;}
.y237{bottom:769.757333pt;}
.y79{bottom:771.690933pt;}
.y108{bottom:774.815467pt;}
.y156{bottom:775.844533pt;}
.ybe{bottom:775.876000pt;}
.y290{bottom:775.882133pt;}
.y8f{bottom:775.906667pt;}
.y1e9{bottom:775.912800pt;}
.y15f{bottom:776.015733pt;}
.y2e2{bottom:777.886533pt;}
.y353{bottom:777.888000pt;}
.y23d{bottom:777.967333pt;}
.y322{bottom:778.168000pt;}
.y1b9{bottom:779.396763pt;}
.y17f{bottom:780.666133pt;}
.y165{bottom:784.225733pt;}
.y78{bottom:786.134133pt;}
.y2e1{bottom:791.219867pt;}
.y352{bottom:791.221333pt;}
.ybd{bottom:793.215467pt;}
.y28f{bottom:793.221600pt;}
.y277{bottom:793.227733pt;}
.y26e{bottom:793.233867pt;}
.y2a3{bottom:793.240000pt;}
.y8e{bottom:793.246133pt;}
.y1b8{bottom:796.058800pt;}
.y17e{bottom:797.022400pt;}
.y2e0{bottom:804.553200pt;}
.y321{bottom:804.554667pt;}
.y77{bottom:804.814533pt;}
.y1e8{bottom:809.482133pt;}
.y1fb{bottom:810.536533pt;}
.ye3{bottom:810.548800pt;}
.ybc{bottom:810.554933pt;}
.y28e{bottom:810.561067pt;}
.y276{bottom:810.567200pt;}
.y8d{bottom:810.573333pt;}
.y107{bottom:810.579467pt;}
.y4{bottom:810.674933pt;}
.y236{bottom:810.827333pt;}
.y1b6{bottom:813.493867pt;}
.y1b5{bottom:813.499253pt;}
.y17c{bottom:814.216533pt;}
.y17b{bottom:814.221867pt;}
.y159{bottom:816.190933pt;}
.y15e{bottom:817.085733pt;}
.y2df{bottom:817.886533pt;}
.y320{bottom:817.888000pt;}
.y76{bottom:819.478533pt;}
.y1b2{bottom:821.910533pt;}
.y1b1{bottom:821.915920pt;}
.y178{bottom:822.549867pt;}
.y177{bottom:822.555200pt;}
.y1fa{bottom:827.876000pt;}
.ye2{bottom:827.888267pt;}
.ybb{bottom:827.894400pt;}
.y28d{bottom:827.900533pt;}
.y106{bottom:827.906667pt;}
.y8c{bottom:827.912800pt;}
.y158{bottom:828.190933pt;}
.y1b4{bottom:830.327200pt;}
.y17a{bottom:830.883200pt;}
.y2de{bottom:831.219867pt;}
.y31f{bottom:831.221333pt;}
.y75{bottom:834.142533pt;}
.y23c{bottom:835.467333pt;}
.y1b0{bottom:838.743867pt;}
.y176{bottom:839.216533pt;}
.y3{bottom:840.008267pt;}
.y164{bottom:841.725733pt;}
.y2dd{bottom:844.553200pt;}
.y31e{bottom:844.554667pt;}
.y1f9{bottom:845.215467pt;}
.y1e7{bottom:845.221600pt;}
.ye1{bottom:845.227733pt;}
.yba{bottom:845.233867pt;}
.y8b{bottom:845.240000pt;}
.y105{bottom:845.246133pt;}
.y1b7{bottom:847.161611pt;}
.y1b3{bottom:847.164304pt;}
.y17d{bottom:847.550933pt;}
.y179{bottom:847.553600pt;}
.y74{bottom:848.806533pt;}
.y235{bottom:851.897333pt;}
.y2dc{bottom:857.886533pt;}
.y31d{bottom:857.888000pt;}
.y15d{bottom:858.155733pt;}
.y1f8{bottom:862.554933pt;}
.y1e6{bottom:862.561067pt;}
.ye0{bottom:862.567200pt;}
.y8a{bottom:862.573333pt;}
.y26d{bottom:862.579467pt;}
.y73{bottom:863.470533pt;}
.y1af{bottom:866.638093pt;}
.y175{bottom:866.879600pt;}
.y2{bottom:869.341600pt;}
.y2db{bottom:871.219867pt;}
.y31c{bottom:871.221333pt;}
.y72{bottom:877.954133pt;}
.y1f7{bottom:879.894400pt;}
.y1e5{bottom:879.900533pt;}
.ydf{bottom:879.906667pt;}
.y89{bottom:879.912800pt;}
.y1ae{bottom:880.782133pt;}
.y174{bottom:880.883600pt;}
.y2da{bottom:884.553200pt;}
.y31b{bottom:884.554667pt;}
.y234{bottom:892.967333pt;}
.y71{bottom:896.588667pt;}
.y1f6{bottom:897.233867pt;}
.y88{bottom:897.240000pt;}
.yb9{bottom:897.246133pt;}
.y2d9{bottom:897.886533pt;}
.y31a{bottom:897.888000pt;}
.y15c{bottom:899.225733pt;}
.y16f{bottom:900.263733pt;}
.y16d{bottom:900.683733pt;}
.y247{bottom:906.099733pt;}
.y245{bottom:906.519733pt;}
.y2d8{bottom:911.219867pt;}
.y319{bottom:911.221333pt;}
.y70{bottom:911.252667pt;}
.y16e{bottom:912.263733pt;}
.y16c{bottom:912.683733pt;}
.y1ad{bottom:914.554133pt;}
.yb8{bottom:914.567200pt;}
.y1f5{bottom:914.573333pt;}
.y87{bottom:914.579467pt;}
.y246{bottom:918.099733pt;}
.y244{bottom:918.519733pt;}
.y2d7{bottom:924.553200pt;}
.y318{bottom:924.554667pt;}
.y6f{bottom:925.916667pt;}
.y104{bottom:930.811200pt;}
.y173{bottom:930.815467pt;}
.y1ac{bottom:931.893600pt;}
.yb7{bottom:931.906667pt;}
.y1e4{bottom:931.912800pt;}
.y16b{bottom:937.777333pt;}
.y2d6{bottom:937.886533pt;}
.y317{bottom:937.888000pt;}
.y243{bottom:938.698800pt;}
.y6e{bottom:940.400400pt;}
.y86{bottom:945.734667pt;}
.y103{bottom:948.148800pt;}
.y1f4{bottom:949.205867pt;}
.y1ab{bottom:949.233067pt;}
.yb6{bottom:949.246133pt;}
.y2d5{bottom:951.219867pt;}
.y316{bottom:951.221333pt;}
.y5{bottom:975.224400pt;}
.y85{bottom:990.077467pt;}
.y42{bottom:991.749333pt;}
.ye{bottom:996.614267pt;}
.hf{height:18.118547pt;}
.h3c{height:24.407023pt;}
.h4{height:29.625000pt;}
.ha{height:29.853333pt;}
.h3{height:30.670063pt;}
.h10{height:31.078125pt;}
.h8{height:34.420800pt;}
.h43{height:34.901333pt;}
.h42{height:35.088000pt;}
.h7{height:35.250347pt;}
.h2f{height:35.680000pt;}
.h31{height:36.138667pt;}
.h3b{height:36.155733pt;}
.h35{height:36.500053pt;}
.h32{height:36.696180pt;}
.h9{height:36.801707pt;}
.h44{height:36.886719pt;}
.h36{height:37.063130pt;}
.hb{height:37.546667pt;}
.h21{height:38.250000pt;}
.h2{height:38.828125pt;}
.h1d{height:39.264000pt;}
.h1c{height:39.985067pt;}
.h1e{height:39.985600pt;}
.h1f{height:40.147200pt;}
.h20{height:40.147733pt;}
.h30{height:40.769531pt;}
.h28{height:40.780800pt;}
.h6{height:40.895333pt;}
.h3e{height:41.548267pt;}
.h33{height:41.864533pt;}
.h40{height:41.892800pt;}
.h3f{height:42.003200pt;}
.h3d{height:42.023467pt;}
.h37{height:42.283179pt;}
.h38{height:42.544405pt;}
.h13{height:42.754133pt;}
.h16{height:42.778667pt;}
.h25{height:42.803200pt;}
.h2d{height:42.816000pt;}
.h2a{height:42.827733pt;}
.h18{height:42.828267pt;}
.h26{height:42.852267pt;}
.he{height:42.858683pt;}
.h27{height:42.876800pt;}
.hd{height:42.880017pt;}
.h24{height:42.901333pt;}
.h39{height:42.915200pt;}
.h3a{height:42.925867pt;}
.h2e{height:42.949867pt;}
.h1b{height:42.999467pt;}
.h2c{height:43.073067pt;}
.h34{height:43.244160pt;}
.h19{height:44.036593pt;}
.h17{height:44.037126pt;}
.h1a{height:44.061126pt;}
.h14{height:44.061660pt;}
.h15{height:44.086193pt;}
.h23{height:44.110726pt;}
.h2b{height:44.159793pt;}
.h29{height:44.184326pt;}
.h41{height:44.233393pt;}
.h12{height:49.088000pt;}
.hc{height:71.034667pt;}
.h5{height:75.520000pt;}
.h11{height:116.688533pt;}
.h22{height:123.376000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x7{left:-718.110133pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x4{left:77.265467pt;}
.x26{left:79.996133pt;}
.x7c{left:81.480267pt;}
.x9{left:86.929067pt;}
.x7d{left:92.594933pt;}
.x63{left:94.974133pt;}
.x1f{left:98.132667pt;}
.x5f{left:107.278267pt;}
.x19{left:110.436800pt;}
.x60{left:111.988267pt;}
.x1a{left:115.146800pt;}
.x61{left:116.698267pt;}
.x1b{left:119.856800pt;}
.x65{left:144.728933pt;}
.x2{left:147.064667pt;}
.x66{left:152.188933pt;}
.x3{left:156.008267pt;}
.x8{left:160.004667pt;}
.xe{left:162.519600pt;}
.x58{left:166.577333pt;}
.x24{left:172.482800pt;}
.x77{left:176.471067pt;}
.x5b{left:178.162000pt;}
.x11{left:181.505333pt;}
.x7b{left:183.486667pt;}
.xf{left:184.851467pt;}
.x3d{left:208.563333pt;}
.x3e{left:217.445467pt;}
.x6a{left:218.945200pt;}
.x3c{left:220.272933pt;}
.x3f{left:222.690267pt;}
.x40{left:225.707200pt;}
.x6b{left:228.590000pt;}
.x41{left:232.334533pt;}
.xc{left:274.110267pt;}
.x43{left:276.303733pt;}
.x44{left:285.185867pt;}
.x6c{left:286.337467pt;}
.x42{left:288.009200pt;}
.x45{left:290.430667pt;}
.x46{left:293.447733pt;}
.x6d{left:294.667867pt;}
.x5d{left:296.849733pt;}
.x14{left:299.823200pt;}
.x5a{left:301.894667pt;}
.x15{left:304.863200pt;}
.x21{left:329.227067pt;}
.xd{left:336.838667pt;}
.x67{left:339.107867pt;}
.x47{left:343.382667pt;}
.x48{left:358.401333pt;}
.x49{left:395.245467pt;}
.x4a{left:401.650000pt;}
.x6e{left:408.123867pt;}
.x32{left:410.458000pt;}
.x27{left:412.591467pt;}
.xa{left:415.748000pt;}
.x7e{left:416.946933pt;}
.x64{left:418.334133pt;}
.x4b{left:420.728400pt;}
.x20{left:422.442667pt;}
.x28{left:424.758933pt;}
.x33{left:425.794267pt;}
.xb{left:427.086667pt;}
.x62{left:430.638267pt;}
.x34{left:432.487867pt;}
.x1c{left:434.746800pt;}
.x4c{left:436.417333pt;}
.x1d{left:439.456800pt;}
.x4d{left:441.450800pt;}
.x1e{left:444.166800pt;}
.x6f{left:445.804267pt;}
.x70{left:453.254933pt;}
.x69{left:467.351867pt;}
.x23{left:471.462800pt;}
.x4e{left:484.711600pt;}
.x4f{left:489.217200pt;}
.x36{left:491.152533pt;}
.x50{left:495.786400pt;}
.x5c{left:496.813067pt;}
.x29{left:498.340800pt;}
.x35{left:499.420432pt;}
.x16{left:500.916267pt;}
.x59{left:501.852933pt;}
.x12{left:503.271200pt;}
.x13{left:505.961200pt;}
.x71{left:508.904400pt;}
.x37{left:510.611328pt;}
.x72{left:511.921733pt;}
.x38{left:513.658667pt;}
.x2a{left:518.580800pt;}
.x39{left:520.352267pt;}
.x2b{left:521.597600pt;}
.x6{left:527.895067pt;}
.x10{left:531.890400pt;}
.x51{left:553.279600pt;}
.x73{left:562.725067pt;}
.x52{left:568.286933pt;}
.x74{left:577.732000pt;}
.x3a{left:582.028800pt;}
.x2d{left:584.347067pt;}
.x2c{left:598.003067pt;}
.x2e{left:609.080933pt;}
.x2f{left:612.097867pt;}
.x75{left:613.543867pt;}
.x53{left:616.085333pt;}
.x30{left:618.725200pt;}
.x25{left:619.962800pt;}
.x5{left:622.191600pt;}
.x17{left:624.129067pt;}
.x5e{left:625.065467pt;}
.x18{left:629.169067pt;}
.x78{left:639.878400pt;}
.x79{left:646.282800pt;}
.x54{left:650.934000pt;}
.x22{left:653.532800pt;}
.x55{left:657.338400pt;}
.x68{left:659.611867pt;}
.x7a{left:688.551467pt;}
.x56{left:692.436800pt;}
.x31{left:694.136400pt;}
.x3b{left:695.666533pt;}
.x57{left:698.841200pt;}
.x76{left:700.200800pt;}
}




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