
    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_f92407b6ada9e594027a6dcb.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_bede9a03884b1ab86222a39d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f2ab00c50149e37592a6855e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_6a466a4164f996746976e7be.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_aa66cb76bdc1cbd15e562342.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.568848;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_f62c37b496323a58609cf92a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.480469;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_b34329351dd2527c4f056302.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.480469;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_14d35c22c23b3288f9385762.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.733887;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_fb21a65a7a5fadb17a4a020e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_0ee9b52fbe1e9118c93fbf06.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_2f747e8b99a695982b0f1fdf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_95c70e5825515e1a6468ef3a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_77ae1499a243b6a496a81ce8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.709473;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_5fb4b36f17b2835eff11d06a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_bd12e5381c7a3b8e3481e52c.woff2')format("woff");}.fff{font-family:fff;line-height:0.674316;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_88b10940799e70efc5c285b8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a2134bf4b3a4240830be42fb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.861328;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_efe46ce05692c671a7470782.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.904297;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_984cf72459835df787e4a3ae.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_f784e5762c80db909520833f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{transform:matrix(0.000000,0.250073,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250073,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250073,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,0.249839,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249839,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249839,-0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249838,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249838,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249838,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249840,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249840,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249840,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.249981,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249981,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249981,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.250074,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250074,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250074,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);}
.me{transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);}
.mf{transform:matrix(0.236548,0.000000,-0.080903,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080903,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080903,0.236548,0,0);}
.m7{transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250021,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250162,0.000000,0.000000,0.250000,0,0);}
.vc{vertical-align:-150.116473px;}
.va{vertical-align:-102.244686px;}
.v14{vertical-align:-82.081384px;}
.vb{vertical-align:-75.956473px;}
.v15{vertical-align:-74.877316px;}
.v17{vertical-align:-73.452653px;}
.v12{vertical-align:-66.598961px;}
.v16{vertical-align:-55.441959px;}
.vf{vertical-align:-54.360000px;}
.v18{vertical-align:-52.920000px;}
.v1a{vertical-align:-50.755820px;}
.v2{vertical-align:-47.529360px;}
.v19{vertical-align:-45.726090px;}
.v7{vertical-align:-35.640000px;}
.v4{vertical-align:-26.640000px;}
.v3{vertical-align:-25.200000px;}
.vd{vertical-align:-20.159474px;}
.v9{vertical-align:-17.640000px;}
.v8{vertical-align:-16.194852px;}
.v11{vertical-align:-5.034626px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:34.197108px;}
.v1c{vertical-align:35.640000px;}
.v1b{vertical-align:42.840000px;}
.v6{vertical-align:50.400936px;}
.v10{vertical-align:53.631249px;}
.v13{vertical-align:91.789088px;}
.v1{vertical-align:95.763600px;}
.v5{vertical-align:102.237603px;}
.ls87{letter-spacing:-7.097572px;}
.lsb0{letter-spacing:-5.911656px;}
.lsaf{letter-spacing:-1.787872px;}
.lsb9{letter-spacing:-1.286536px;}
.lsb8{letter-spacing:-1.021661px;}
.lsb4{letter-spacing:-0.913825px;}
.lse3{letter-spacing:-0.635149px;}
.lse5{letter-spacing:-0.627497px;}
.ls71{letter-spacing:-0.597675px;}
.ls72{letter-spacing:-0.588886px;}
.ls70{letter-spacing:-0.580096px;}
.ls93{letter-spacing:-0.577420px;}
.lsed{letter-spacing:-0.576000px;}
.lsac{letter-spacing:-0.559857px;}
.lsaa{letter-spacing:-0.544886px;}
.ls66{letter-spacing:-0.527360px;}
.ls63{letter-spacing:-0.483414px;}
.ls62{letter-spacing:-0.474624px;}
.lse6{letter-spacing:-0.465994px;}
.lse7{letter-spacing:-0.448298px;}
.lsea{letter-spacing:-0.424704px;}
.ls8b{letter-spacing:-0.413120px;}
.lse9{letter-spacing:-0.389312px;}
.ls6b{letter-spacing:-0.386731px;}
.ls69{letter-spacing:-0.369152px;}
.ls92{letter-spacing:-0.368907px;}
.lsab{letter-spacing:-0.363257px;}
.ls8c{letter-spacing:-0.328619px;}
.lse0{letter-spacing:-0.300996px;}
.ls65{letter-spacing:-0.290048px;}
.ls85{letter-spacing:-0.176434px;}
.lsf3{letter-spacing:-0.158400px;}
.lsf7{letter-spacing:-0.153504px;}
.ls88{letter-spacing:-0.149423px;}
.ls94{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.134316px;}
.ls1f{letter-spacing:-0.129600px;}
.ls6d{letter-spacing:-0.123051px;}
.lsf6{letter-spacing:-0.120060px;}
.ls1a{letter-spacing:-0.118800px;}
.ls2a{letter-spacing:-0.115200px;}
.ls28{letter-spacing:-0.115128px;}
.ls4d{letter-spacing:-0.108000px;}
.ls64{letter-spacing:-0.105472px;}
.ls2b{letter-spacing:-0.100800px;}
.lsd{letter-spacing:-0.096048px;}
.ls8{letter-spacing:-0.095940px;}
.ls8a{letter-spacing:-0.093891px;}
.lsca{letter-spacing:-0.093600px;}
.ls1e{letter-spacing:-0.086400px;}
.lsc6{letter-spacing:-0.079200px;}
.lsa{letter-spacing:-0.076752px;}
.lsee{letter-spacing:-0.075600px;}
.ls5c{letter-spacing:-0.072036px;}
.ls1{letter-spacing:-0.072000px;}
.ls42{letter-spacing:-0.071316px;}
.lse8{letter-spacing:-0.070784px;}
.ls5a{letter-spacing:-0.064800px;}
.lsc8{letter-spacing:-0.057600px;}
.ls9{letter-spacing:-0.057564px;}
.ls89{letter-spacing:-0.053365px;}
.ls43{letter-spacing:-0.050940px;}
.lsc2{letter-spacing:-0.050400px;}
.ls6{letter-spacing:-0.048024px;}
.ls8d{letter-spacing:-0.046946px;}
.ls2{letter-spacing:-0.043200px;}
.ls3e{letter-spacing:-0.040752px;}
.lsbd{letter-spacing:-0.039528px;}
.ls7{letter-spacing:-0.038376px;}
.lsc9{letter-spacing:-0.036000px;}
.ls18{letter-spacing:-0.032400px;}
.lsc1{letter-spacing:-0.028800px;}
.ls83{letter-spacing:-0.024012px;}
.ls1d{letter-spacing:-0.021600px;}
.ls3d{letter-spacing:-0.020376px;}
.lsbe{letter-spacing:-0.019764px;}
.lse{letter-spacing:-0.019188px;}
.lsc5{letter-spacing:-0.014400px;}
.lsbb{letter-spacing:-0.013176px;}
.ls19{letter-spacing:-0.010800px;}
.ls46{letter-spacing:-0.010188px;}
.lsf{letter-spacing:0.000000px;}
.lsc3{letter-spacing:0.007200px;}
.ls84{letter-spacing:0.008020px;}
.ls47{letter-spacing:0.009612px;}
.ls38{letter-spacing:0.010188px;}
.ls90{letter-spacing:0.010666px;}
.ls16{letter-spacing:0.010800px;}
.ls29{letter-spacing:0.012816px;}
.lsc4{letter-spacing:0.014400px;}
.ls11{letter-spacing:0.016812px;}
.ls33{letter-spacing:0.020376px;}
.ls15{letter-spacing:0.021600px;}
.ls13{letter-spacing:0.024012px;}
.ls1b{letter-spacing:0.028800px;}
.ls4{letter-spacing:0.028836px;}
.ls14{letter-spacing:0.032400px;}
.ls9e{letter-spacing:0.032940px;}
.ls24{letter-spacing:0.033408px;}
.ls5d{letter-spacing:0.038376px;}
.ls9b{letter-spacing:0.039528px;}
.lsa4{letter-spacing:0.042084px;}
.ls1c{letter-spacing:0.043200px;}
.ls27{letter-spacing:0.046080px;}
.lsa7{letter-spacing:0.046116px;}
.ls12{letter-spacing:0.050436px;}
.ls44{letter-spacing:0.050940px;}
.ls7d{letter-spacing:0.053331px;}
.ls17{letter-spacing:0.054000px;}
.ls8e{letter-spacing:0.056335px;}
.ls3{letter-spacing:0.057672px;}
.lsa5{letter-spacing:0.059292px;}
.ls60{letter-spacing:0.061525px;}
.lsc7{letter-spacing:0.064800px;}
.lsf2{letter-spacing:0.067248px;}
.ls45{letter-spacing:0.071316px;}
.ls9f{letter-spacing:0.072468px;}
.ls30{letter-spacing:0.073584px;}
.ls51{letter-spacing:0.075600px;}
.ls39{letter-spacing:0.077760px;}
.ls9d{letter-spacing:0.079056px;}
.ls61{letter-spacing:0.079104px;}
.ls31{letter-spacing:0.081504px;}
.ls10{letter-spacing:0.084060px;}
.ls77{letter-spacing:0.084502px;}
.lsa0{letter-spacing:0.085644px;}
.ls3c{letter-spacing:0.091692px;}
.ls2d{letter-spacing:0.092592px;}
.ls4f{letter-spacing:0.095940px;}
.ls86{letter-spacing:0.096237px;}
.ls59{letter-spacing:0.097200px;}
.ls0{letter-spacing:0.105552px;}
.ls2c{letter-spacing:0.115128px;}
.lsa8{letter-spacing:0.115416px;}
.lsbf{letter-spacing:0.118584px;}
.ls2e{letter-spacing:0.119520px;}
.ls7f{letter-spacing:0.120296px;}
.ls82{letter-spacing:0.127440px;}
.lsa9{letter-spacing:0.131040px;}
.ls3f{letter-spacing:0.132444px;}
.ls4c{letter-spacing:0.136800px;}
.ls49{letter-spacing:0.140400px;}
.ls79{letter-spacing:0.140837px;}
.ls58{letter-spacing:0.144000px;}
.lsd5{letter-spacing:0.147467px;}
.ls68{letter-spacing:0.158208px;}
.lsb7{letter-spacing:0.158925px;}
.ls7b{letter-spacing:0.159992px;}
.ls67{letter-spacing:0.166997px;}
.ls26{letter-spacing:0.172692px;}
.ls3a{letter-spacing:0.180000px;}
.ls8f{letter-spacing:0.181324px;}
.ls40{letter-spacing:0.183384px;}
.ls7a{letter-spacing:0.206560px;}
.lse2{letter-spacing:0.214267px;}
.ls3b{letter-spacing:0.224136px;}
.ls5b{letter-spacing:0.237600px;}
.ls91{letter-spacing:0.264651px;}
.lsd2{letter-spacing:0.282206px;}
.ls78{letter-spacing:0.300451px;}
.lse4{letter-spacing:0.321401px;}
.ls6a{letter-spacing:0.325206px;}
.ls5f{letter-spacing:0.333995px;}
.lsdf{letter-spacing:0.342122px;}
.lsd3{letter-spacing:0.344358px;}
.ls74{letter-spacing:0.393219px;}
.ls4b{letter-spacing:0.399600px;}
.lsb3{letter-spacing:0.476778px;}
.ls41{letter-spacing:0.499212px;}
.ls6e{letter-spacing:0.580096px;}
.ls80{letter-spacing:0.585440px;}
.lsbc{letter-spacing:0.599508px;}
.ls6f{letter-spacing:0.606464px;}
.ls9a{letter-spacing:0.612997px;}
.lsad{letter-spacing:0.675236px;}
.ls6c{letter-spacing:0.694358px;}
.ls7c{letter-spacing:0.714631px;}
.lsba{letter-spacing:0.718947px;}
.ls75{letter-spacing:0.736440px;}
.lse1{letter-spacing:0.874838px;}
.ls97{letter-spacing:0.943349px;}
.lsb5{letter-spacing:0.983355px;}
.ls95{letter-spacing:1.310752px;}
.ls98{letter-spacing:1.321073px;}
.lsb6{letter-spacing:1.410469px;}
.ls7e{letter-spacing:1.439929px;}
.lsae{letter-spacing:1.698020px;}
.lsb1{letter-spacing:1.760919px;}
.lsd4{letter-spacing:1.783009px;}
.ls96{letter-spacing:2.174657px;}
.ls76{letter-spacing:2.177300px;}
.lsb2{letter-spacing:2.425756px;}
.lsce{letter-spacing:5.465320px;}
.ls99{letter-spacing:10.677846px;}
.lsf1{letter-spacing:12.816000px;}
.ls4e{letter-spacing:17.424000px;}
.lsa1{letter-spacing:17.609760px;}
.ls9c{letter-spacing:17.833716px;}
.lsa6{letter-spacing:18.131040px;}
.lsa3{letter-spacing:18.182880px;}
.lsa2{letter-spacing:18.189468px;}
.ls36{letter-spacing:28.169820px;}
.ls34{letter-spacing:28.373580px;}
.ls32{letter-spacing:28.669032px;}
.ls35{letter-spacing:28.882980px;}
.ls52{letter-spacing:29.448000px;}
.ls57{letter-spacing:29.736000px;}
.ls48{letter-spacing:29.916000px;}
.ls53{letter-spacing:29.991600px;}
.ls4a{letter-spacing:30.024000px;}
.ls54{letter-spacing:30.096000px;}
.ls56{letter-spacing:30.240000px;}
.ls55{letter-spacing:30.272400px;}
.ls50{letter-spacing:38.372400px;}
.ls2f{letter-spacing:38.632896px;}
.lsf5{letter-spacing:39.437280px;}
.ls22{letter-spacing:53.326080px;}
.ls21{letter-spacing:53.572896px;}
.ls25{letter-spacing:53.686080px;}
.ls37{letter-spacing:57.719520px;}
.lsdb{letter-spacing:62.246553px;}
.lsec{letter-spacing:70.481823px;}
.lsda{letter-spacing:71.242209px;}
.ls81{letter-spacing:80.047440px;}
.lscc{letter-spacing:99.783561px;}
.ls73{letter-spacing:112.480056px;}
.lsc{letter-spacing:120.794220px;}
.lsf0{letter-spacing:129.240000px;}
.ls20{letter-spacing:152.467848px;}
.ls23{letter-spacing:159.951168px;}
.ls5{letter-spacing:160.718688px;}
.lsef{letter-spacing:169.044660px;}
.lsf4{letter-spacing:177.480000px;}
.lsc0{letter-spacing:227.898720px;}
.lsd9{letter-spacing:235.685860px;}
.ls5e{letter-spacing:288.530550px;}
.lsde{letter-spacing:302.623664px;}
.lscf{letter-spacing:343.961010px;}
.lsd0{letter-spacing:399.201428px;}
.lscd{letter-spacing:499.568918px;}
.lsd1{letter-spacing:651.452731px;}
.lscb{letter-spacing:699.617872px;}
.lseb{letter-spacing:847.894464px;}
.lsd8{letter-spacing:890.475432px;}
.lsdd{letter-spacing:1019.507984px;}
.lsd7{letter-spacing:1133.240678px;}
.lsdc{letter-spacing:1167.228092px;}
.lsd6{letter-spacing:1202.685264px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd7{word-spacing:-144.000000px;}
.ws34{word-spacing:-108.000000px;}
.wsc9{word-spacing:-106.661400px;}
.ws53{word-spacing:-101.880000px;}
.wsdf{word-spacing:-99.299400px;}
.ws112{word-spacing:-94.068600px;}
.wsc4{word-spacing:-93.891000px;}
.wse6{word-spacing:-89.842800px;}
.wse4{word-spacing:-83.931144px;}
.wscd{word-spacing:-80.197200px;}
.ws114{word-spacing:-76.524000px;}
.wsef{word-spacing:-75.678600px;}
.ws10d{word-spacing:-75.063013px;}
.wsd2{word-spacing:-72.467341px;}
.wsc2{word-spacing:-72.249125px;}
.wsf6{word-spacing:-65.880000px;}
.ws119{word-spacing:-58.986600px;}
.ws4c{word-spacing:-53.457768px;}
.ws82{word-spacing:-53.438580px;}
.ws3a{word-spacing:-53.342640px;}
.ws39{word-spacing:-48.737520px;}
.ws38{word-spacing:-46.243080px;}
.wsd9{word-spacing:-39.988800px;}
.wsd8{word-spacing:-34.704000px;}
.wsd6{word-spacing:-34.560000px;}
.wsd5{word-spacing:-32.999700px;}
.ws127{word-spacing:-32.091300px;}
.ws85{word-spacing:-30.056400px;}
.ws7a{word-spacing:-30.045600px;}
.ws26{word-spacing:-30.034800px;}
.ws6b{word-spacing:-30.024000px;}
.ws94{word-spacing:-29.894400px;}
.ws5a{word-spacing:-28.821852px;}
.ws4f{word-spacing:-28.322640px;}
.ws13e{word-spacing:-26.721360px;}
.ws6e{word-spacing:-26.028000px;}
.ws6f{word-spacing:-25.920000px;}
.ws59{word-spacing:-24.634584px;}
.wsae{word-spacing:-21.498726px;}
.ws89{word-spacing:-20.016000px;}
.ws126{word-spacing:-18.720000px;}
.wsf7{word-spacing:-18.373932px;}
.ws86{word-spacing:-18.288000px;}
.wsf5{word-spacing:-15.995664px;}
.wsf8{word-spacing:-12.209760px;}
.wsf2{word-spacing:-2.556144px;}
.wse7{word-spacing:-2.515598px;}
.wse1{word-spacing:-2.273956px;}
.wse5{word-spacing:-1.850762px;}
.wse0{word-spacing:-1.797319px;}
.wseb{word-spacing:-1.509798px;}
.ws21{word-spacing:-1.112904px;}
.ws25{word-spacing:-1.093716px;}
.wsea{word-spacing:-1.082684px;}
.wsaa{word-spacing:-1.055340px;}
.ws1d{word-spacing:-1.042344px;}
.ws61{word-spacing:-1.036152px;}
.ws16{word-spacing:-0.978588px;}
.wsc{word-spacing:-0.940212px;}
.ws19{word-spacing:-0.921024px;}
.ws96{word-spacing:-0.901836px;}
.ws9c{word-spacing:-0.896400px;}
.ws10f{word-spacing:-0.885600px;}
.ws150{word-spacing:-0.882648px;}
.ws29{word-spacing:-0.874800px;}
.wsba{word-spacing:-0.844272px;}
.wsa0{word-spacing:-0.831600px;}
.wsbc{word-spacing:-0.825084px;}
.ws12d{word-spacing:-0.805896px;}
.wsf0{word-spacing:-0.794625px;}
.wsa{word-spacing:-0.786708px;}
.wsde{word-spacing:-0.774535px;}
.wsdb{word-spacing:-0.767520px;}
.wsdc{word-spacing:-0.748332px;}
.ws12b{word-spacing:-0.744372px;}
.wsab{word-spacing:-0.729144px;}
.ws4{word-spacing:-0.720000px;}
.ws23{word-spacing:-0.709956px;}
.ws1b{word-spacing:-0.706104px;}
.ws146{word-spacing:-0.691200px;}
.wsa9{word-spacing:-0.690768px;}
.ws11{word-spacing:-0.671580px;}
.ws92{word-spacing:-0.669600px;}
.ws147{word-spacing:-0.652392px;}
.ws72{word-spacing:-0.648000px;}
.ws14e{word-spacing:-0.633204px;}
.wsd{word-spacing:-0.614016px;}
.ws1f{word-spacing:-0.594828px;}
.wse8{word-spacing:-0.576107px;}
.wsaf{word-spacing:-0.575640px;}
.ws3f{word-spacing:-0.556452px;}
.wsf4{word-spacing:-0.540216px;}
.ws15{word-spacing:-0.537264px;}
.ws109{word-spacing:-0.532800px;}
.ws80{word-spacing:-0.529200px;}
.ws14d{word-spacing:-0.518076px;}
.ws2b{word-spacing:-0.507600px;}
.ws78{word-spacing:-0.496800px;}
.ws6d{word-spacing:-0.486000px;}
.ws151{word-spacing:-0.480240px;}
.wse{word-spacing:-0.479700px;}
.ws2d{word-spacing:-0.475200px;}
.wsbe{word-spacing:-0.473468px;}
.ws6{word-spacing:-0.460512px;}
.ws14a{word-spacing:-0.441324px;}
.ws36{word-spacing:-0.432000px;}
.ws14b{word-spacing:-0.422136px;}
.ws42{word-spacing:-0.402948px;}
.ws118{word-spacing:-0.401109px;}
.ws79{word-spacing:-0.399600px;}
.ws116{word-spacing:-0.397925px;}
.wsc3{word-spacing:-0.394342px;}
.ws35{word-spacing:-0.388800px;}
.wsfb{word-spacing:-0.388692px;}
.wsac{word-spacing:-0.383760px;}
.ws7b{word-spacing:-0.378000px;}
.ws111{word-spacing:-0.376274px;}
.ws7d{word-spacing:-0.367200px;}
.ws5f{word-spacing:-0.364572px;}
.wsfc{word-spacing:-0.362340px;}
.ws140{word-spacing:-0.360000px;}
.wsfd{word-spacing:-0.349164px;}
.ws48{word-spacing:-0.345600px;}
.ws13{word-spacing:-0.345384px;}
.wscc{word-spacing:-0.344848px;}
.wsfa{word-spacing:-0.335988px;}
.ws7c{word-spacing:-0.334800px;}
.wsdd{word-spacing:-0.331200px;}
.ws1a{word-spacing:-0.326196px;}
.ws77{word-spacing:-0.324000px;}
.ws90{word-spacing:-0.313200px;}
.wsf{word-spacing:-0.307008px;}
.ws74{word-spacing:-0.302400px;}
.wsc7{word-spacing:-0.300451px;}
.ws76{word-spacing:-0.291600px;}
.ws113{word-spacing:-0.290791px;}
.ws47{word-spacing:-0.288000px;}
.wsca{word-spacing:-0.287986px;}
.wsb{word-spacing:-0.287820px;}
.ws2e{word-spacing:-0.280800px;}
.wsbb{word-spacing:-0.268632px;}
.wsc8{word-spacing:-0.266654px;}
.wsf9{word-spacing:-0.263520px;}
.ws7e{word-spacing:-0.259200px;}
.ws14f{word-spacing:-0.249444px;}
.wsc6{word-spacing:-0.234728px;}
.wsec{word-spacing:-0.234604px;}
.ws45{word-spacing:-0.230256px;}
.ws12c{word-spacing:-0.211068px;}
.ws11e{word-spacing:-0.206453px;}
.wscf{word-spacing:-0.200493px;}
.ws10a{word-spacing:-0.192112px;}
.ws13c{word-spacing:-0.192096px;}
.ws12{word-spacing:-0.191880px;}
.ws13f{word-spacing:-0.187200px;}
.ws2a{word-spacing:-0.183600px;}
.ws41{word-spacing:-0.172692px;}
.ws2f{word-spacing:-0.162000px;}
.wscb{word-spacing:-0.159992px;}
.ws44{word-spacing:-0.153792px;}
.ws3c{word-spacing:-0.153504px;}
.ws2c{word-spacing:-0.151200px;}
.ws5e{word-spacing:-0.144072px;}
.ws43{word-spacing:-0.144000px;}
.ws10e{word-spacing:-0.141251px;}
.ws122{word-spacing:-0.141239px;}
.ws7f{word-spacing:-0.140400px;}
.ws152{word-spacing:-0.134316px;}
.ws125{word-spacing:-0.128365px;}
.ws27{word-spacing:-0.120060px;}
.ws9b{word-spacing:-0.118800px;}
.ws132{word-spacing:-0.115200px;}
.ws46{word-spacing:-0.115128px;}
.ws31{word-spacing:-0.108000px;}
.ws120{word-spacing:-0.106516px;}
.ws50{word-spacing:-0.101880px;}
.ws130{word-spacing:-0.100872px;}
.wsda{word-spacing:-0.096048px;}
.ws3e{word-spacing:-0.095940px;}
.wse2{word-spacing:-0.089843px;}
.wsad{word-spacing:-0.086400px;}
.ws121{word-spacing:-0.082389px;}
.ws13d{word-spacing:-0.072036px;}
.ws3{word-spacing:-0.072000px;}
.ws32{word-spacing:-0.064800px;}
.ws65{word-spacing:-0.061128px;}
.ws97{word-spacing:-0.057564px;}
.wsa8{word-spacing:-0.048024px;}
.wsc5{word-spacing:-0.046945px;}
.wsf3{word-spacing:-0.046116px;}
.ws6c{word-spacing:-0.043200px;}
.ws3d{word-spacing:-0.038376px;}
.ws88{word-spacing:-0.032400px;}
.ws3b{word-spacing:-0.019188px;}
.ws1e{word-spacing:-0.016812px;}
.ws81{word-spacing:-0.010800px;}
.ws2{word-spacing:0.000000px;}
.ws11c{word-spacing:0.011797px;}
.ws136{word-spacing:0.014400px;}
.ws24{word-spacing:0.019188px;}
.ws124{word-spacing:0.021600px;}
.ws133{word-spacing:0.028800px;}
.ws123{word-spacing:0.032400px;}
.ws10{word-spacing:0.038376px;}
.wsc0{word-spacing:0.042692px;}
.wsa3{word-spacing:0.043200px;}
.ws7{word-spacing:0.057564px;}
.ws141{word-spacing:0.057600px;}
.ws9{word-spacing:0.057672px;}
.ws69{word-spacing:0.061128px;}
.ws9a{word-spacing:0.064800px;}
.ws1c{word-spacing:0.067248px;}
.ws142{word-spacing:0.072000px;}
.ws9f{word-spacing:0.075600px;}
.wsbd{word-spacing:0.076752px;}
.ws70{word-spacing:0.076896px;}
.ws73{word-spacing:0.086400px;}
.ws28{word-spacing:0.096048px;}
.ws57{word-spacing:0.112068px;}
.ws67{word-spacing:0.122256px;}
.wsa6{word-spacing:0.129600px;}
.ws17{word-spacing:0.134316px;}
.ws37{word-spacing:0.140400px;}
.ws139{word-spacing:0.144000px;}
.ws145{word-spacing:0.158400px;}
.ws8e{word-spacing:0.162000px;}
.ws144{word-spacing:0.172800px;}
.wsa2{word-spacing:0.183600px;}
.wsb2{word-spacing:0.184576px;}
.ws13a{word-spacing:0.201600px;}
.ws40{word-spacing:0.211068px;}
.ws75{word-spacing:0.216000px;}
.ws12e{word-spacing:0.223200px;}
.ws71{word-spacing:0.226800px;}
.ws60{word-spacing:0.230256px;}
.ws0{word-spacing:0.237492px;}
.ws9d{word-spacing:0.259200px;}
.ws12f{word-spacing:0.264132px;}
.ws8{word-spacing:0.269136px;}
.ws98{word-spacing:0.280800px;}
.ws30{word-spacing:0.288000px;}
.wsa1{word-spacing:0.302400px;}
.wsc1{word-spacing:0.319229px;}
.ws11d{word-spacing:0.330325px;}
.ws62{word-spacing:0.336204px;}
.ws14{word-spacing:0.345384px;}
.ws9e{word-spacing:0.345600px;}
.ws14c{word-spacing:0.364572px;}
.ws11f{word-spacing:0.365717px;}
.ws99{word-spacing:0.367200px;}
.ws5{word-spacing:0.374400px;}
.ws135{word-spacing:0.388800px;}
.ws11b{word-spacing:0.389312px;}
.ws20{word-spacing:0.402948px;}
.ws148{word-spacing:0.403200px;}
.ws11a{word-spacing:0.407008px;}
.wsf1{word-spacing:0.415044px;}
.ws4e{word-spacing:0.417708px;}
.ws18{word-spacing:0.422136px;}
.ws54{word-spacing:0.427896px;}
.wsb0{word-spacing:0.457046px;}
.ws8d{word-spacing:0.464400px;}
.ws68{word-spacing:0.478836px;}
.wsd0{word-spacing:0.497223px;}
.ws63{word-spacing:0.499212px;}
.ws6a{word-spacing:0.509400px;}
.ws84{word-spacing:0.529200px;}
.ws143{word-spacing:0.532800px;}
.ws138{word-spacing:0.547200px;}
.ws117{word-spacing:0.550973px;}
.ws1{word-spacing:0.554148px;}
.ws115{word-spacing:0.558625px;}
.ws64{word-spacing:0.570528px;}
.ws131{word-spacing:0.571608px;}
.wsa7{word-spacing:0.615600px;}
.wsa4{word-spacing:0.626400px;}
.wsa5{word-spacing:0.637200px;}
.ws137{word-spacing:0.720000px;}
.ws22{word-spacing:0.767520px;}
.ws13b{word-spacing:0.792000px;}
.wse9{word-spacing:0.814496px;}
.wsb1{word-spacing:0.826198px;}
.ws4b{word-spacing:0.849600px;}
.ws55{word-spacing:0.978048px;}
.wsee{word-spacing:1.210858px;}
.ws4a{word-spacing:1.281600px;}
.ws49{word-spacing:1.382400px;}
.ws66{word-spacing:1.599516px;}
.ws149{word-spacing:1.656000px;}
.wse3{word-spacing:1.698029px;}
.ws52{word-spacing:1.803276px;}
.wsb3{word-spacing:1.810604px;}
.ws134{word-spacing:1.872000px;}
.wsbf{word-spacing:6.990841px;}
.ws95{word-spacing:11.523600px;}
.ws12a{word-spacing:11.678400px;}
.ws129{word-spacing:11.743200px;}
.ws8a{word-spacing:41.742000px;}
.ws5d{word-spacing:57.042612px;}
.wsb9{word-spacing:58.176641px;}
.wsb8{word-spacing:58.185431px;}
.ws10c{word-spacing:68.412793px;}
.ws8c{word-spacing:71.636400px;}
.ws107{word-spacing:90.338400px;}
.wsb6{word-spacing:101.622349px;}
.wsb7{word-spacing:101.727821px;}
.ws83{word-spacing:107.622000px;}
.ws4d{word-spacing:113.912028px;}
.ws106{word-spacing:130.118400px;}
.ws100{word-spacing:130.132800px;}
.ws8b{word-spacing:131.738400px;}
.ws8f{word-spacing:131.760000px;}
.ws104{word-spacing:132.998400px;}
.wsd4{word-spacing:141.991109px;}
.ws5c{word-spacing:142.723692px;}
.wsb5{word-spacing:144.821955px;}
.wsb4{word-spacing:144.848323px;}
.ws108{word-spacing:145.598400px;}
.ws105{word-spacing:150.436800px;}
.ws102{word-spacing:152.640000px;}
.ws103{word-spacing:163.224000px;}
.wsfe{word-spacing:170.172000px;}
.ws101{word-spacing:172.886400px;}
.wsff{word-spacing:175.377600px;}
.ws91{word-spacing:191.516400px;}
.ws87{word-spacing:197.618400px;}
.ws110{word-spacing:197.876535px;}
.ws51{word-spacing:199.593108px;}
.ws5b{word-spacing:228.048192px;}
.wsed{word-spacing:234.800924px;}
.wsce{word-spacing:242.017293px;}
.ws93{word-spacing:251.640000px;}
.ws56{word-spacing:284.917608px;}
.wsd1{word-spacing:309.972782px;}
.ws58{word-spacing:427.478292px;}
.ws10b{word-spacing:486.712005px;}
.wsd3{word-spacing:1091.069519px;}
.ws33{word-spacing:1178.528400px;}
.ws128{word-spacing:1197.170901px;}
._22{margin-left:-961.677257px;}
._20{margin-left:-592.582213px;}
._3d{margin-left:-540.961026px;}
._41{margin-left:-521.188385px;}
._23{margin-left:-483.590804px;}
._3f{margin-left:-450.230976px;}
._34{margin-left:-441.493047px;}
._35{margin-left:-399.645373px;}
._38{margin-left:-397.465626px;}
._3e{margin-left:-369.409373px;}
._37{margin-left:-357.761456px;}
._21{margin-left:-348.952028px;}
._40{margin-left:-321.490643px;}
._36{margin-left:-314.485313px;}
._24{margin-left:-307.953200px;}
._3c{margin-left:-248.853798px;}
._1e{margin-left:-57.310316px;}
._11{margin-left:-15.510323px;}
._6{margin-left:-11.998800px;}
._8{margin-left:-10.944000px;}
._c{margin-left:-9.795600px;}
._2{margin-left:-7.295508px;}
._7{margin-left:-6.037200px;}
._9{margin-left:-4.328856px;}
._3{margin-left:-3.114288px;}
._4{margin-left:-1.557144px;}
._1{width:1.814400px;}
._26{width:3.080346px;}
._25{width:5.747107px;}
._1f{width:7.268340px;}
._1b{width:28.645656px;}
._16{width:30.143640px;}
._0{width:41.270400px;}
._19{width:63.297060px;}
._f{width:64.714275px;}
._1c{width:72.303272px;}
._5{width:80.260200px;}
._10{width:81.452245px;}
._1a{width:82.629783px;}
._e{width:95.428800px;}
._14{width:118.223538px;}
._15{width:126.775309px;}
._3b{width:146.870538px;}
._3a{width:159.445555px;}
._12{width:161.980178px;}
._39{width:172.093424px;}
._13{width:180.587210px;}
._31{width:183.204000px;}
._30{width:185.724000px;}
._2d{width:192.918456px;}
._33{width:194.004000px;}
._2c{width:203.018400px;}
._28{width:205.855200px;}
._17{width:207.160948px;}
._2b{width:214.171200px;}
._29{width:215.888400px;}
._2f{width:217.292400px;}
._32{width:219.767544px;}
._18{width:223.720064px;}
._27{width:225.669600px;}
._d{width:232.572708px;}
._2a{width:239.954400px;}
._2e{width:241.947144px;}
._1d{width:268.149945px;}
._b{width:329.734800px;}
._a{width:509.727600px;}
.fc7{color:rgb(51,51,204);}
.fc5{color:rgb(252,1,40);}
.fc3{color:rgb(101,154,255);}
.fc8{color:rgb(0,176,80);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,112,192);}
.fc6{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,154);}
.fs1d{font-size:43.920000px;}
.fs30{font-size:44.381400px;}
.fs1e{font-size:47.880000px;}
.fs2d{font-size:51.016200px;}
.fs3e{font-size:53.485200px;}
.fs14{font-size:54.999600px;}
.fs29{font-size:56.970000px;}
.fs25{font-size:58.140000px;}
.fs36{font-size:58.341000px;}
.fs39{font-size:58.848600px;}
.fs2c{font-size:58.986600px;}
.fs31{font-size:62.133600px;}
.fs1c{font-size:65.880000px;}
.fs9{font-size:68.040000px;}
.fsa{font-size:72.000000px;}
.fs3c{font-size:74.880000px;}
.fs18{font-size:75.656400px;}
.fs17{font-size:75.678600px;}
.fs2f{font-size:76.524000px;}
.fs15{font-size:76.999200px;}
.fsd{font-size:78.517800px;}
.fs27{font-size:79.756800px;}
.fs21{font-size:80.046600px;}
.fsf{font-size:80.197200px;}
.fs10{font-size:80.248800px;}
.fs22{font-size:81.339000px;}
.fs24{font-size:81.395400px;}
.fs34{font-size:81.676200px;}
.fs37{font-size:82.389000px;}
.fs2b{font-size:82.395000px;}
.fsc{font-size:87.893400px;}
.fs1a{font-size:89.842800px;}
.fs12{font-size:93.891000px;}
.fs2e{font-size:94.068600px;}
.fs2{font-size:96.120000px;}
.fse{font-size:97.269000px;}
.fs19{font-size:99.299400px;}
.fs1b{font-size:99.328800px;}
.fs8{font-size:101.880000px;}
.fs32{font-size:106.516200px;}
.fs13{font-size:106.661400px;}
.fs11{font-size:106.730400px;}
.fs6{font-size:108.000000px;}
.fs1f{font-size:112.065600px;}
.fs33{font-size:112.573800px;}
.fsb{font-size:114.142021px;}
.fs7{font-size:128.160000px;}
.fs3d{font-size:128.365200px;}
.fs16{font-size:131.998800px;}
.fs28{font-size:136.726800px;}
.fs23{font-size:139.439400px;}
.fs26{font-size:139.535400px;}
.fs35{font-size:140.017800px;}
.fs38{font-size:141.239400px;}
.fs2a{font-size:141.250800px;}
.fs1{font-size:144.000000px;}
.fs3b{font-size:149.271691px;}
.fs5{font-size:168.120000px;}
.fs4{font-size:191.880000px;}
.fs20{font-size:192.112200px;}
.fs3a{font-size:211.860000px;}
.fs3{font-size:240.120000px;}
.fs0{font-size:263.880000px;}
.y0{bottom:0.000000px;}
.y178{bottom:7.020000px;}
.yc9{bottom:53.220000px;}
.y7{bottom:53.310150px;}
.y14{bottom:84.170649px;}
.y6d{bottom:93.090360px;}
.y12a{bottom:95.160000px;}
.y186{bottom:100.650000px;}
.y7c{bottom:105.870900px;}
.y194{bottom:109.470000px;}
.y1a9{bottom:109.819443px;}
.yd4{bottom:110.010150px;}
.y16d{bottom:113.160000px;}
.yf4{bottom:114.330150px;}
.y9c{bottom:115.231800px;}
.ybd{bottom:120.720000px;}
.y128{bottom:121.530000px;}
.y1b0{bottom:127.098237px;}
.y29{bottom:127.107831px;}
.y6c{bottom:129.810459px;}
.ya6{bottom:133.856463px;}
.yd6{bottom:134.130000px;}
.y13{bottom:136.011828px;}
.y3f{bottom:136.380000px;}
.y11f{bottom:137.100150px;}
.y7b{bottom:138.270900px;}
.y97{bottom:139.350900px;}
.y185{bottom:139.530000px;}
.y5c{bottom:142.770000px;}
.y16c{bottom:145.560000px;}
.y9b{bottom:147.631800px;}
.y193{bottom:148.350000px;}
.ye1{bottom:151.230000px;}
.ybc{bottom:151.773577px;}
.y51{bottom:154.289010px;}
.yd3{bottom:156.540000px;}
.y3d{bottom:161.490000px;}
.y1a8{bottom:161.660622px;}
.y6b{bottom:166.530558px;}
.yc6{bottom:170.574213px;}
.y7a{bottom:170.670900px;}
.yd1{bottom:171.030000px;}
.yf2{bottom:171.478371px;}
.yf1{bottom:171.569186px;}
.yf0{bottom:171.660000px;}
.y96{bottom:171.750900px;}
.yd2{bottom:172.200000px;}
.y120{bottom:172.290081px;}
.yf3{bottom:174.090000px;}
.ybb{bottom:176.972614px;}
.y16b{bottom:177.960000px;}
.yca{bottom:178.050000px;}
.ye9{bottom:178.406216px;}
.ye2{bottom:178.410000px;}
.y1af{bottom:178.939416px;}
.y9a{bottom:180.031800px;}
.y5b{bottom:181.650000px;}
.ya5{bottom:185.697642px;}
.y192{bottom:187.230000px;}
.y12{bottom:187.853007px;}
.y184{bottom:191.370000px;}
.y3c{bottom:193.890000px;}
.y28{bottom:196.227804px;}
.y11b{bottom:201.450000px;}
.yba{bottom:202.441924px;}
.y79{bottom:203.070900px;}
.y6a{bottom:203.250657px;}
.y95{bottom:204.150900px;}
.y50{bottom:206.130189px;}
.y1f{bottom:206.304681px;}
.y121{bottom:207.480012px;}
.y16a{bottom:210.360000px;}
.y130{bottom:210.450000px;}
.y99{bottom:212.431800px;}
.y1a7{bottom:213.501801px;}
.y5a{bottom:220.530000px;}
.yea{bottom:221.785190px;}
.ye3{bottom:221.788974px;}
.y80{bottom:221.879100px;}
.y129{bottom:222.060000px;}
.ycb{bottom:223.589980px;}
.y1a0{bottom:225.831774px;}
.yb9{bottom:227.640962px;}
.y11e{bottom:229.078656px;}
.y11d{bottom:229.082188px;}
.y1ae{bottom:230.780595px;}
.y12f{bottom:231.600000px;}
.y78{bottom:235.470900px;}
.y94{bottom:236.550900px;}
.y48{bottom:237.360000px;}
.ya4{bottom:237.538821px;}
.yc5{bottom:239.694186px;}
.y69{bottom:239.970756px;}
.y122{bottom:242.669943px;}
.y169{bottom:242.760000px;}
.y183{bottom:243.210000px;}
.y98{bottom:244.831800px;}
.y27{bottom:248.068983px;}
.y11c{bottom:251.311532px;}
.y12e{bottom:252.750000px;}
.yb8{bottom:252.840000px;}
.y7f{bottom:254.190000px;}
.y11{bottom:256.972980px;}
.y4f{bottom:258.241080px;}
.y59{bottom:259.410000px;}
.y1e{bottom:261.746454px;}
.yeb{bottom:265.164163px;}
.ye4{bottom:265.167947px;}
.y1a6{bottom:265.342980px;}
.y77{bottom:267.870900px;}
.y93{bottom:268.950900px;}
.ycc{bottom:269.039738px;}
.y18d{bottom:273.540000px;}
.y12d{bottom:273.900000px;}
.y168{bottom:275.160000px;}
.y132{bottom:276.060194px;}
.y68{bottom:276.779307px;}
.y19f{bottom:277.672953px;}
.y123{bottom:277.859874px;}
.yb7{bottom:278.040000px;}
.y182{bottom:282.090000px;}
.y1ad{bottom:282.621774px;}
.y7e{bottom:286.590000px;}
.ya3{bottom:289.380000px;}
.y34{bottom:290.730000px;}
.yc4{bottom:291.535365px;}
.y131{bottom:293.970000px;}
.y12c{bottom:295.140000px;}
.y76{bottom:300.360000px;}
.y58{bottom:300.990243px;}
.y92{bottom:301.350900px;}
.yac{bottom:304.682524px;}
.y18c{bottom:305.940000px;}
.y167{bottom:307.560000px;}
.yec{bottom:308.543137px;}
.ye5{bottom:308.546921px;}
.y10{bottom:308.814159px;}
.y109{bottom:310.800000px;}
.y89{bottom:311.070000px;}
.y124{bottom:312.959850px;}
.y67{bottom:313.499406px;}
.ycd{bottom:314.579718px;}
.y12b{bottom:316.290000px;}
.y133{bottom:317.010000px;}
.y1a5{bottom:317.184159px;}
.y1d{bottom:317.188227px;}
.y26{bottom:317.188956px;}
.y7d{bottom:318.990000px;}
.y33{bottom:323.130000px;}
.y4e{bottom:327.269910px;}
.y19e{bottom:329.514132px;}
.yab{bottom:329.881562px;}
.yaf{bottom:329.883759px;}
.yb2{bottom:329.885956px;}
.yb5{bottom:329.888154px;}
.y108{bottom:332.400000px;}
.y75{bottom:332.670900px;}
.y91{bottom:333.839100px;}
.y181{bottom:333.930000px;}
.y1ac{bottom:334.462953px;}
.y18b{bottom:338.340000px;}
.y166{bottom:339.960000px;}
.yc3{bottom:343.376544px;}
.y125{bottom:348.149781px;}
.y88{bottom:349.950000px;}
.y66{bottom:350.130360px;}
.yed{bottom:352.012924px;}
.ye6{bottom:352.016708px;}
.y6{bottom:353.460000px;}
.y107{bottom:354.000000px;}
.yaa{bottom:355.080599px;}
.yae{bottom:355.082797px;}
.yb1{bottom:355.084994px;}
.yb4{bottom:355.087191px;}
.y32{bottom:355.530000px;}
.yce{bottom:360.119698px;}
.yc8{bottom:360.655338px;}
.y74{bottom:365.159100px;}
.y90{bottom:366.150000px;}
.y57{bottom:370.110216px;}
.y165{bottom:372.360000px;}
.y1c{bottom:372.630000px;}
.y180{bottom:372.810000px;}
.y106{bottom:375.600000px;}
.yf{bottom:377.934132px;}
.y4d{bottom:378.928803px;}
.y87{bottom:379.110900px;}
.ya9{bottom:380.640000px;}
.yad{bottom:380.642197px;}
.yb0{bottom:380.644395px;}
.yb3{bottom:380.646592px;}
.yb6{bottom:380.648789px;}
.y47{bottom:381.000000px;}
.y19d{bottom:381.355311px;}
.y126{bottom:383.339712px;}
.y116{bottom:383.970723px;}
.y1a4{bottom:386.304132px;}
.y25{bottom:386.308929px;}
.y65{bottom:386.850459px;}
.y31{bottom:387.930000px;}
.y171{bottom:388.470000px;}
.y119{bottom:392.970000px;}
.yee{bottom:395.391898px;}
.ye7{bottom:395.395682px;}
.y105{bottom:397.200000px;}
.y73{bottom:397.559100px;}
.y8f{bottom:398.550000px;}
.y5{bottom:400.980000px;}
.ya2{bottom:404.484105px;}
.ycf{bottom:405.659678px;}
.y46{bottom:407.460000px;}
.y115{bottom:407.820000px;}
.y86{bottom:408.270900px;}
.y39{bottom:409.710000px;}
.yc2{bottom:412.496517px;}
.y172{bottom:413.219712px;}
.y10b{bottom:414.570402px;}
.y127{bottom:418.529643px;}
.y104{bottom:418.800000px;}
.y174{bottom:421.228955px;}
.y176{bottom:421.230000px;}
.y56{bottom:421.951395px;}
.y64{bottom:423.570558px;}
.y17f{bottom:424.650000px;}
.y1b{bottom:429.421296px;}
.ye{bottom:429.775311px;}
.y72{bottom:429.870000px;}
.y8e{bottom:430.950000px;}
.y4c{bottom:432.657759px;}
.y175{bottom:433.110000px;}
.y3b{bottom:433.559100px;}
.y177{bottom:434.100000px;}
.y1a3{bottom:438.145311px;}
.yef{bottom:438.770872px;}
.ye8{bottom:438.774655px;}
.y102{bottom:440.400000px;}
.y173{bottom:441.119143px;}
.y38{bottom:442.110000px;}
.y156{bottom:446.250972px;}
.y15b{bottom:446.253032px;}
.y85{bottom:447.150900px;}
.y10a{bottom:448.050000px;}
.y4{bottom:448.500000px;}
.y163{bottom:450.210000px;}
.y159{bottom:450.211823px;}
.y19c{bottom:450.475284px;}
.y113{bottom:451.019868px;}
.yd0{bottom:451.199658px;}
.yfe{bottom:451.200000px;}
.y10d{bottom:452.101171px;}
.y160{bottom:455.070000px;}
.y1ab{bottom:455.424105px;}
.y24{bottom:455.428902px;}
.ya1{bottom:456.325284px;}
.y114{bottom:459.750000px;}
.y63{bottom:460.290657px;}
.y101{bottom:461.910000px;}
.y103{bottom:462.000000px;}
.y71{bottom:462.270000px;}
.y8d{bottom:463.350000px;}
.y10f{bottom:464.069118px;}
.yc1{bottom:464.337696px;}
.y30{bottom:465.510000px;}
.y3a{bottom:465.959100px;}
.y118{bottom:467.040000px;}
.y161{bottom:468.300000px;}
.y155{bottom:470.910000px;}
.y15a{bottom:470.912060px;}
.yfd{bottom:472.710000px;}
.y15e{bottom:473.433163px;}
.yf5{bottom:474.420000px;}
.y37{bottom:474.510000px;}
.y112{bottom:475.410000px;}
.y1a{bottom:475.501278px;}
.y17e{bottom:476.490000px;}
.y13a{bottom:478.380971px;}
.yc7{bottom:481.616490px;}
.y164{bottom:482.250000px;}
.y162{bottom:482.251523px;}
.y10c{bottom:482.431726px;}
.yd5{bottom:482.880000px;}
.yd7{bottom:482.970000px;}
.y100{bottom:483.510000px;}
.y145{bottom:485.041359px;}
.y84{bottom:486.030900px;}
.yd8{bottom:487.740000px;}
.y1a2{bottom:489.986490px;}
.y55{bottom:491.338785px;}
.yfc{bottom:494.310000px;}
.y10e{bottom:494.490085px;}
.y70{bottom:494.670000px;}
.y158{bottom:495.301263px;}
.y15d{bottom:495.303323px;}
.y8c{bottom:495.750000px;}
.yda{bottom:496.020000px;}
.y139{bottom:496.921637px;}
.y62{bottom:497.010756px;}
.y2f{bottom:497.910000px;}
.yd{bottom:498.895284px;}
.y4b{bottom:500.072340px;}
.y19b{bottom:502.316463px;}
.y18a{bottom:503.310000px;}
.y15f{bottom:504.210718px;}
.yff{bottom:505.110000px;}
.y14e{bottom:505.561041px;}
.y1aa{bottom:507.265284px;}
.y170{bottom:507.268821px;}
.ya0{bottom:508.166463px;}
.y134{bottom:510.870000px;}
.y141{bottom:514.743107px;}
.y17d{bottom:515.370000px;}
.y13c{bottom:515.372209px;}
.yc0{bottom:516.178875px;}
.y157{bottom:519.960291px;}
.y15c{bottom:519.962351px;}
.y14c{bottom:521.400000px;}
.y149{bottom:521.403327px;}
.ydc{bottom:521.759766px;}
.ydf{bottom:521.760000px;}
.y146{bottom:522.031773px;}
.yfb{bottom:522.750351px;}
.y45{bottom:523.470900px;}
.y23{bottom:524.548875px;}
.y83{bottom:524.999100px;}
.y6f{bottom:527.070000px;}
.y8b{bottom:528.150000px;}
.y2e{bottom:530.310000px;}
.y3{bottom:530.938461px;}
.y135{bottom:531.389740px;}
.y110{bottom:532.740000px;}
.y140{bottom:533.372313px;}
.y61{bottom:533.820810px;}
.y13b{bottom:534.001416px;}
.yd9{bottom:534.449640px;}
.y117{bottom:535.080000px;}
.y143{bottom:535.262728px;}
.y189{bottom:535.710000px;}
.y19{bottom:538.860054px;}
.ydd{bottom:539.129266px;}
.y111{bottom:541.470000px;}
.y14d{bottom:541.920346px;}
.y14b{bottom:541.923673px;}
.y14f{bottom:542.100000px;}
.yfa{bottom:542.459766px;}
.ydb{bottom:542.638676px;}
.y54{bottom:543.088821px;}
.yde{bottom:547.410433px;}
.y191{bottom:550.110000px;}
.yc{bottom:550.736463px;}
.y137{bottom:551.551051px;}
.y13e{bottom:551.552605px;}
.y142{bottom:551.822886px;}
.y197{bottom:552.807642px;}
.y19a{bottom:554.157642px;}
.y44{bottom:555.870900px;}
.y147{bottom:558.212663px;}
.y14a{bottom:558.484279px;}
.y1a1{bottom:559.106463px;}
.y16f{bottom:559.110000px;}
.y6e{bottom:559.470000px;}
.y9f{bottom:560.007642px;}
.y11a{bottom:560.280000px;}
.y8a{bottom:560.550000px;}
.yf9{bottom:562.258713px;}
.y2d{bottom:562.710000px;}
.y82{bottom:564.870000px;}
.ybf{bottom:568.020054px;}
.y188{bottom:568.110000px;}
.y17c{bottom:568.561278px;}
.y4a{bottom:569.192313px;}
.y152{bottom:569.549329px;}
.y136{bottom:570.180258px;}
.y13d{bottom:570.181811px;}
.y60{bottom:571.440000px;}
.y154{bottom:578.280490px;}
.yf8{bottom:582.058947px;}
.y18{bottom:584.940036px;}
.y43{bottom:588.270900px;}
.y138{bottom:588.630830px;}
.y13f{bottom:588.632384px;}
.y190{bottom:588.990000px;}
.y150{bottom:592.049080px;}
.y22{bottom:593.668848px;}
.y151{bottom:593.939884px;}
.y36{bottom:594.930000px;}
.y53{bottom:594.931107px;}
.y2c{bottom:595.110000px;}
.y144{bottom:595.290952px;}
.y148{bottom:595.293615px;}
.y2{bottom:599.877111px;}
.y187{bottom:600.510000px;}
.y153{bottom:600.781350px;}
.ye0{bottom:601.770000px;}
.yf7{bottom:601.949766px;}
.yb{bottom:602.577642px;}
.y196{bottom:604.648821px;}
.y199{bottom:605.998821px;}
.y16e{bottom:610.947642px;}
.y9e{bottom:611.848821px;}
.y5f{bottom:612.298821px;}
.y81{bottom:614.371125px;}
.ya8{bottom:619.139100px;}
.y42{bottom:620.670900px;}
.yf6{bottom:621.750000px;}
.y35{bottom:627.330000px;}
.y2b{bottom:627.510000px;}
.y18f{bottom:627.870000px;}
.y17b{bottom:629.042448px;}
.y41{bottom:629.130000px;}
.y17{bottom:631.020018px;}
.ybe{bottom:637.140027px;}
.y49{bottom:638.130000px;}
.y52{bottom:646.590000px;}
.ya7{bottom:653.610000px;}
.ya{bottom:654.418821px;}
.y195{bottom:656.490000px;}
.y198{bottom:657.840000px;}
.y3e{bottom:661.350000px;}
.y40{bottom:661.530000px;}
.y21{bottom:662.788821px;}
.y9d{bottom:663.690000px;}
.y5e{bottom:664.140000px;}
.y18e{bottom:666.750000px;}
.y1{bottom:668.730000px;}
.y17a{bottom:674.401224px;}
.y16{bottom:677.100000px;}
.y9{bottom:706.260000px;}
.y20{bottom:714.630000px;}
.y5d{bottom:715.980000px;}
.y179{bottom:719.760000px;}
.y2a{bottom:720.658695px;}
.y8{bottom:775.650000px;}
.y15{bottom:783.300000px;}
.h3f{height:37.041548px;}
.h56{height:37.980000px;}
.h3e{height:42.828650px;}
.h42{height:43.536246px;}
.h2d{height:47.994609px;}
.h2e{height:47.999757px;}
.h29{height:51.718242px;}
.h28{height:51.733418px;}
.h31{height:52.417969px;}
.h32{height:52.453125px;}
.h23{height:53.952244px;}
.h1e{height:54.822305px;}
.h1f{height:54.857578px;}
.h41{height:55.562104px;}
.h50{height:57.205644px;}
.h4d{height:57.727948px;}
.h43{height:60.950392px;}
.h2b{height:65.232541px;}
.h21{height:68.171834px;}
.h40{height:68.300785px;}
.h2f{height:68.710781px;}
.h2a{height:72.098734px;}
.h2c{height:72.120081px;}
.h52{height:73.454062px;}
.h54{height:73.490625px;}
.h47{height:73.958026px;}
.h11{height:74.171426px;}
.h12{height:74.221172px;}
.h24{height:75.532907px;}
.h30{height:77.106621px;}
.h22{height:77.444093px;}
.h20{height:77.494192px;}
.h46{height:78.164035px;}
.h3a{height:78.237994px;}
.hb{height:78.626953px;}
.ha{height:78.679688px;}
.h18{height:79.252907px;}
.h36{height:79.790064px;}
.h38{height:79.845390px;}
.h49{height:80.120843px;}
.h4b{height:80.820069px;}
.h1b{height:86.262565px;}
.h57{height:89.128571px;}
.h1d{height:95.464204px;}
.h5{height:96.870938px;}
.h4e{height:98.067591px;}
.h3d{height:98.075507px;}
.h4f{height:101.375922px;}
.h51{height:103.644700px;}
.h45{height:104.487815px;}
.h48{height:104.539825px;}
.h3{height:104.835938px;}
.h4{height:104.906250px;}
.h14{height:106.257656px;}
.h33{height:109.931538px;}
.h15{height:112.640625px;}
.h10{height:119.241387px;}
.h13{height:119.244159px;}
.h59{height:122.395957px;}
.h9{height:122.478047px;}
.h53{height:125.920746px;}
.h55{height:125.983424px;}
.h16{height:126.404297px;}
.h1a{height:126.407897px;}
.h25{height:129.485151px;}
.h26{height:129.549604px;}
.h35{height:133.390404px;}
.h17{height:136.740234px;}
.h37{height:136.784060px;}
.h39{height:136.878232px;}
.h4a{height:137.351445px;}
.h4c{height:138.549783px;}
.h3c{height:138.560965px;}
.h8{height:139.693887px;}
.he{height:139.702851px;}
.h7{height:139.787578px;}
.h58{height:155.480625px;}
.h3b{height:168.320224px;}
.h27{height:168.539062px;}
.hc{height:174.443287px;}
.h6{height:174.813926px;}
.h34{height:188.453813px;}
.h1c{height:188.500168px;}
.h2{height:192.111855px;}
.h44{height:196.276903px;}
.h19{height:200.124844px;}
.hf{height:224.578301px;}
.hd{height:242.941816px;}
.h1{height:892.500000px;}
.h0{height:892.830000px;}
.w1{width:17.640000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.xc{left:100.155750px;}
.x9{left:108.615900px;}
.xdc{left:112.935900px;}
.x1d{left:117.165750px;}
.x2a{left:121.305750px;}
.x8{left:126.165750px;}
.x1{left:128.865900px;}
.x20{left:130.845750px;}
.x33{left:131.925750px;}
.x10{left:133.905750px;}
.x9d{left:138.585750px;}
.x80{left:140.925750px;}
.x9c{left:143.085750px;}
.x31{left:149.025900px;}
.xb{left:151.545750px;}
.x81{left:152.805750px;}
.xb0{left:155.055750px;}
.xd{left:157.124922px;}
.x4{left:159.645750px;}
.x2{left:161.897079px;}
.xa{left:165.585072px;}
.x1e{left:167.474850px;}
.xf{left:169.545750px;}
.x2c{left:172.155750px;}
.x34{left:173.774922px;}
.x2b{left:178.274922px;}
.xe{left:179.625750px;}
.x21{left:181.424850px;}
.x32{left:182.594922px;}
.x7{left:186.645750px;}
.xae{left:187.995895px;}
.x11{left:190.874922px;}
.xaf{left:192.045750px;}
.x3e{left:196.272852px;}
.xc1{left:202.489534px;}
.xbc{left:217.784803px;}
.x6{left:222.825750px;}
.xaa{left:225.616944px;}
.x2d{left:229.125750px;}
.x83{left:237.135750px;}
.xa8{left:239.385750px;}
.x3f{left:241.182366px;}
.x24{left:243.526650px;}
.x3c{left:246.135750px;}
.x1c{left:248.296650px;}
.x35{left:250.005750px;}
.xa7{left:251.446737px;}
.x1b{left:253.515750px;}
.x82{left:255.135750px;}
.xa6{left:258.195750px;}
.xdd{left:259.815750px;}
.x3d{left:270.165750px;}
.xad{left:278.265750px;}
.xba{left:281.594457px;}
.xb9{left:283.214590px;}
.xa9{left:293.565750px;}
.xc0{left:304.638570px;}
.xac{left:307.965750px;}
.xbb{left:313.004545px;}
.x64{left:319.035750px;}
.xb1{left:324.795750px;}
.xbf{left:327.499610px;}
.x56{left:331.365750px;}
.x86{left:333.525750px;}
.xab{left:336.135750px;}
.x85{left:342.975750px;}
.x84{left:344.505750px;}
.x43{left:345.947739px;}
.x42{left:356.117268px;}
.xd9{left:357.372531px;}
.x41{left:366.286797px;}
.xd8{left:376.995894px;}
.x36{left:379.425750px;}
.xc3{left:386.621445px;}
.x7a{left:398.865750px;}
.x44{left:402.915750px;}
.xbe{left:408.228238px;}
.x5d{left:410.207941px;}
.x67{left:412.274418px;}
.xb8{left:417.134245px;}
.xb7{left:418.754379px;}
.x66{left:421.814690px;}
.x5{left:426.135750px;}
.x23{left:428.835750px;}
.x45{left:432.344991px;}
.xb6{left:434.325059px;}
.x89{left:435.945750px;}
.x87{left:440.445750px;}
.x88{left:451.425750px;}
.x22{left:457.455750px;}
.x29{left:460.065750px;}
.x46{left:461.774232px;}
.x68{left:466.095750px;}
.x57{left:475.725750px;}
.x37{left:482.746639px;}
.x5b{left:486.255750px;}
.x47{left:491.293753px;}
.x69{left:493.006731px;}
.x5c{left:494.086579px;}
.x59{left:497.415750px;}
.x8b{left:502.275750px;}
.xc2{left:503.445750px;}
.x5a{left:504.615175px;}
.x3{left:512.356107px;}
.xbd{left:515.956059px;}
.x48{left:520.722995px;}
.xb5{left:521.986248px;}
.x8a{left:524.775750px;}
.x7b{left:527.745750px;}
.xdb{left:531.525750px;}
.x6a{left:546.828694px;}
.x1f{left:550.245750px;}
.x58{left:563.115750px;}
.x6b{left:573.739676px;}
.x7d{left:577.156209px;}
.xb3{left:578.235750px;}
.x49{left:579.581477px;}
.x7e{left:586.155417px;}
.x28{left:596.145750px;}
.x38{left:600.196392px;}
.x7f{left:604.156380px;}
.x4a{left:609.010718px;}
.x7c{left:610.185750px;}
.xd7{left:612.255750px;}
.xda{left:616.666500px;}
.x30{left:618.915750px;}
.x8c{left:621.975750px;}
.x6c{left:627.561639px;}
.xde{left:634.035750px;}
.xe0{left:636.736650px;}
.x4b{left:638.439959px;}
.x27{left:642.319350px;}
.xdf{left:649.066650px;}
.xd1{left:651.855750px;}
.xb4{left:652.935750px;}
.x6d{left:654.472620px;}
.xc7{left:663.553961px;}
.xe1{left:666.617550px;}
.x4c{left:667.869201px;}
.x25{left:671.838450px;}
.xc6{left:675.884779px;}
.xc5{left:678.045114px;}
.x6e{left:681.383602px;}
.xd0{left:687.045750px;}
.x16{left:689.477550px;}
.x2e{left:693.345750px;}
.x8e{left:695.145750px;}
.x4d{left:697.298442px;}
.x39{left:698.566685px;}
.x15{left:701.446650px;}
.x12{left:705.315750px;}
.x6f{left:708.383480px;}
.x8d{left:711.165750px;}
.x1a{left:721.426650px;}
.x8f{left:722.595750px;}
.x19{left:725.295750px;}
.x13{left:726.915750px;}
.x70{left:735.294461px;}
.xb2{left:736.635750px;}
.xcf{left:740.417735px;}
.x14{left:747.975750px;}
.xcd{left:751.579299px;}
.xcc{left:753.558695px;}
.x4e{left:756.156924px;}
.x71{left:762.205443px;}
.x18{left:765.795750px;}
.xc4{left:767.235524px;}
.x90{left:773.355750px;}
.x17{left:776.598450px;}
.x92{left:780.375750px;}
.x26{left:781.998450px;}
.x4f{left:785.586165px;}
.x72{left:789.116424px;}
.x91{left:798.825750px;}
.xa4{left:803.955835px;}
.x50{left:815.015406px;}
.x73{left:816.027406px;}
.x3a{left:825.016723px;}
.xa2{left:832.124343px;}
.x74{left:842.938387px;}
.x51{left:844.444648px;}
.x95{left:846.795750px;}
.x62{left:850.755868px;}
.x93{left:853.365750px;}
.x96{left:862.365750px;}
.x75{left:869.849368px;}
.x52{left:873.964169px;}
.x94{left:878.835750px;}
.xa5{left:887.746556px;}
.xd4{left:894.765750px;}
.x76{left:896.760350px;}
.xd6{left:898.637550px;}
.xd3{left:901.515750px;}
.x53{left:903.393410px;}
.xd5{left:918.795750px;}
.xca{left:921.496313px;}
.x77{left:923.760228px;}
.x54{left:932.822651px;}
.x3b{left:933.916645px;}
.xd2{left:936.885750px;}
.x97{left:938.775750px;}
.xa0{left:945.344219px;}
.x9f{left:948.313957px;}
.x99{left:949.395750px;}
.x78{left:950.671209px;}
.x98{left:954.795750px;}
.x40{left:972.975750px;}
.xce{left:977.025509px;}
.xa3{left:985.573906px;}
.x65{left:988.365750px;}
.xa1{left:1001.323788px;}
.xc9{left:1002.676254px;}
.xcb{left:1003.936806px;}
.xc8{left:1005.555750px;}
.x9a{left:1035.705750px;}
.x9b{left:1041.915750px;}
.x9e{left:1043.625750px;}
.x55{left:1048.305750px;}
.x79{left:1061.715750px;}
.x63{left:1064.505750px;}
.x2f{left:1084.845750px;}
.x61{left:1090.426089px;}
.x60{left:1094.745750px;}
.x5f{left:1109.416469px;}
.x5e{left:1118.415750px;}
@media print{
.vc{vertical-align:-133.436865pt;}
.va{vertical-align:-90.884165pt;}
.v14{vertical-align:-72.961230pt;}
.vb{vertical-align:-67.516865pt;}
.v15{vertical-align:-66.557614pt;}
.v17{vertical-align:-65.291247pt;}
.v12{vertical-align:-59.199077pt;}
.v16{vertical-align:-49.281741pt;}
.vf{vertical-align:-48.320000pt;}
.v18{vertical-align:-47.040000pt;}
.v1a{vertical-align:-45.116284pt;}
.v2{vertical-align:-42.248320pt;}
.v19{vertical-align:-40.645413pt;}
.v7{vertical-align:-31.680000pt;}
.v4{vertical-align:-23.680000pt;}
.v3{vertical-align:-22.400000pt;}
.vd{vertical-align:-17.919532pt;}
.v9{vertical-align:-15.680000pt;}
.v8{vertical-align:-14.395424pt;}
.v11{vertical-align:-4.475223pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:30.397430pt;}
.v1c{vertical-align:31.680000pt;}
.v1b{vertical-align:38.080000pt;}
.v6{vertical-align:44.800832pt;}
.v10{vertical-align:47.672221pt;}
.v13{vertical-align:81.590300pt;}
.v1{vertical-align:85.123200pt;}
.v5{vertical-align:90.877869pt;}
.ls87{letter-spacing:-6.308953pt;}
.lsb0{letter-spacing:-5.254806pt;}
.lsaf{letter-spacing:-1.589219pt;}
.lsb9{letter-spacing:-1.143588pt;}
.lsb8{letter-spacing:-0.908143pt;}
.lsb4{letter-spacing:-0.812289pt;}
.lse3{letter-spacing:-0.564577pt;}
.lse5{letter-spacing:-0.557775pt;}
.ls71{letter-spacing:-0.531267pt;}
.ls72{letter-spacing:-0.523454pt;}
.ls70{letter-spacing:-0.515641pt;}
.ls93{letter-spacing:-0.513262pt;}
.lsed{letter-spacing:-0.512000pt;}
.lsac{letter-spacing:-0.497651pt;}
.lsaa{letter-spacing:-0.484343pt;}
.ls66{letter-spacing:-0.468765pt;}
.ls63{letter-spacing:-0.429701pt;}
.ls62{letter-spacing:-0.421888pt;}
.lse6{letter-spacing:-0.414217pt;}
.lse7{letter-spacing:-0.398487pt;}
.lsea{letter-spacing:-0.377514pt;}
.ls8b{letter-spacing:-0.367218pt;}
.lse9{letter-spacing:-0.346055pt;}
.ls6b{letter-spacing:-0.343761pt;}
.ls69{letter-spacing:-0.328135pt;}
.ls92{letter-spacing:-0.327917pt;}
.lsab{letter-spacing:-0.322895pt;}
.ls8c{letter-spacing:-0.292105pt;}
.lse0{letter-spacing:-0.267552pt;}
.ls65{letter-spacing:-0.257821pt;}
.ls85{letter-spacing:-0.156830pt;}
.lsf3{letter-spacing:-0.140800pt;}
.lsf7{letter-spacing:-0.136448pt;}
.ls88{letter-spacing:-0.132820pt;}
.ls94{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.119392pt;}
.ls1f{letter-spacing:-0.115200pt;}
.ls6d{letter-spacing:-0.109378pt;}
.lsf6{letter-spacing:-0.106720pt;}
.ls1a{letter-spacing:-0.105600pt;}
.ls2a{letter-spacing:-0.102400pt;}
.ls28{letter-spacing:-0.102336pt;}
.ls4d{letter-spacing:-0.096000pt;}
.ls64{letter-spacing:-0.093753pt;}
.ls2b{letter-spacing:-0.089600pt;}
.lsd{letter-spacing:-0.085376pt;}
.ls8{letter-spacing:-0.085280pt;}
.ls8a{letter-spacing:-0.083459pt;}
.lsca{letter-spacing:-0.083200pt;}
.ls1e{letter-spacing:-0.076800pt;}
.lsc6{letter-spacing:-0.070400pt;}
.lsa{letter-spacing:-0.068224pt;}
.lsee{letter-spacing:-0.067200pt;}
.ls5c{letter-spacing:-0.064032pt;}
.ls1{letter-spacing:-0.064000pt;}
.ls42{letter-spacing:-0.063392pt;}
.lse8{letter-spacing:-0.062919pt;}
.ls5a{letter-spacing:-0.057600pt;}
.lsc8{letter-spacing:-0.051200pt;}
.ls9{letter-spacing:-0.051168pt;}
.ls89{letter-spacing:-0.047436pt;}
.ls43{letter-spacing:-0.045280pt;}
.lsc2{letter-spacing:-0.044800pt;}
.ls6{letter-spacing:-0.042688pt;}
.ls8d{letter-spacing:-0.041729pt;}
.ls2{letter-spacing:-0.038400pt;}
.ls3e{letter-spacing:-0.036224pt;}
.lsbd{letter-spacing:-0.035136pt;}
.ls7{letter-spacing:-0.034112pt;}
.lsc9{letter-spacing:-0.032000pt;}
.ls18{letter-spacing:-0.028800pt;}
.lsc1{letter-spacing:-0.025600pt;}
.ls83{letter-spacing:-0.021344pt;}
.ls1d{letter-spacing:-0.019200pt;}
.ls3d{letter-spacing:-0.018112pt;}
.lsbe{letter-spacing:-0.017568pt;}
.lse{letter-spacing:-0.017056pt;}
.lsc5{letter-spacing:-0.012800pt;}
.lsbb{letter-spacing:-0.011712pt;}
.ls19{letter-spacing:-0.009600pt;}
.ls46{letter-spacing:-0.009056pt;}
.lsf{letter-spacing:0.000000pt;}
.lsc3{letter-spacing:0.006400pt;}
.ls84{letter-spacing:0.007129pt;}
.ls47{letter-spacing:0.008544pt;}
.ls38{letter-spacing:0.009056pt;}
.ls90{letter-spacing:0.009481pt;}
.ls16{letter-spacing:0.009600pt;}
.ls29{letter-spacing:0.011392pt;}
.lsc4{letter-spacing:0.012800pt;}
.ls11{letter-spacing:0.014944pt;}
.ls33{letter-spacing:0.018112pt;}
.ls15{letter-spacing:0.019200pt;}
.ls13{letter-spacing:0.021344pt;}
.ls1b{letter-spacing:0.025600pt;}
.ls4{letter-spacing:0.025632pt;}
.ls14{letter-spacing:0.028800pt;}
.ls9e{letter-spacing:0.029280pt;}
.ls24{letter-spacing:0.029696pt;}
.ls5d{letter-spacing:0.034112pt;}
.ls9b{letter-spacing:0.035136pt;}
.lsa4{letter-spacing:0.037408pt;}
.ls1c{letter-spacing:0.038400pt;}
.ls27{letter-spacing:0.040960pt;}
.lsa7{letter-spacing:0.040992pt;}
.ls12{letter-spacing:0.044832pt;}
.ls44{letter-spacing:0.045280pt;}
.ls7d{letter-spacing:0.047405pt;}
.ls17{letter-spacing:0.048000pt;}
.ls8e{letter-spacing:0.050075pt;}
.ls3{letter-spacing:0.051264pt;}
.lsa5{letter-spacing:0.052704pt;}
.ls60{letter-spacing:0.054689pt;}
.lsc7{letter-spacing:0.057600pt;}
.lsf2{letter-spacing:0.059776pt;}
.ls45{letter-spacing:0.063392pt;}
.ls9f{letter-spacing:0.064416pt;}
.ls30{letter-spacing:0.065408pt;}
.ls51{letter-spacing:0.067200pt;}
.ls39{letter-spacing:0.069120pt;}
.ls9d{letter-spacing:0.070272pt;}
.ls61{letter-spacing:0.070315pt;}
.ls31{letter-spacing:0.072448pt;}
.ls10{letter-spacing:0.074720pt;}
.ls77{letter-spacing:0.075113pt;}
.lsa0{letter-spacing:0.076128pt;}
.ls3c{letter-spacing:0.081504pt;}
.ls2d{letter-spacing:0.082304pt;}
.ls4f{letter-spacing:0.085280pt;}
.ls86{letter-spacing:0.085544pt;}
.ls59{letter-spacing:0.086400pt;}
.ls0{letter-spacing:0.093824pt;}
.ls2c{letter-spacing:0.102336pt;}
.lsa8{letter-spacing:0.102592pt;}
.lsbf{letter-spacing:0.105408pt;}
.ls2e{letter-spacing:0.106240pt;}
.ls7f{letter-spacing:0.106930pt;}
.ls82{letter-spacing:0.113280pt;}
.lsa9{letter-spacing:0.116480pt;}
.ls3f{letter-spacing:0.117728pt;}
.ls4c{letter-spacing:0.121600pt;}
.ls49{letter-spacing:0.124800pt;}
.ls79{letter-spacing:0.125188pt;}
.ls58{letter-spacing:0.128000pt;}
.lsd5{letter-spacing:0.131081pt;}
.ls68{letter-spacing:0.140629pt;}
.lsb7{letter-spacing:0.141267pt;}
.ls7b{letter-spacing:0.142215pt;}
.ls67{letter-spacing:0.148442pt;}
.ls26{letter-spacing:0.153504pt;}
.ls3a{letter-spacing:0.160000pt;}
.ls8f{letter-spacing:0.161177pt;}
.ls40{letter-spacing:0.163008pt;}
.ls7a{letter-spacing:0.183609pt;}
.lse2{letter-spacing:0.190460pt;}
.ls3b{letter-spacing:0.199232pt;}
.ls5b{letter-spacing:0.211200pt;}
.ls91{letter-spacing:0.235245pt;}
.lsd2{letter-spacing:0.250850pt;}
.ls78{letter-spacing:0.267068pt;}
.lse4{letter-spacing:0.285690pt;}
.ls6a{letter-spacing:0.289072pt;}
.ls5f{letter-spacing:0.296884pt;}
.lsdf{letter-spacing:0.304109pt;}
.lsd3{letter-spacing:0.306096pt;}
.ls74{letter-spacing:0.349528pt;}
.ls4b{letter-spacing:0.355200pt;}
.lsb3{letter-spacing:0.423803pt;}
.ls41{letter-spacing:0.443744pt;}
.ls6e{letter-spacing:0.515641pt;}
.ls80{letter-spacing:0.520391pt;}
.lsbc{letter-spacing:0.532896pt;}
.ls6f{letter-spacing:0.539080pt;}
.ls9a{letter-spacing:0.544886pt;}
.lsad{letter-spacing:0.600210pt;}
.ls6c{letter-spacing:0.617207pt;}
.ls7c{letter-spacing:0.635228pt;}
.lsba{letter-spacing:0.639064pt;}
.ls75{letter-spacing:0.654613pt;}
.lse1{letter-spacing:0.777634pt;}
.ls97{letter-spacing:0.838533pt;}
.lsb5{letter-spacing:0.874093pt;}
.ls95{letter-spacing:1.165113pt;}
.ls98{letter-spacing:1.174287pt;}
.lsb6{letter-spacing:1.253750pt;}
.ls7e{letter-spacing:1.279937pt;}
.lsae{letter-spacing:1.509351pt;}
.lsb1{letter-spacing:1.565261pt;}
.lsd4{letter-spacing:1.584897pt;}
.ls96{letter-spacing:1.933028pt;}
.ls76{letter-spacing:1.935378pt;}
.lsb2{letter-spacing:2.156227pt;}
.lsce{letter-spacing:4.858062pt;}
.ls99{letter-spacing:9.491419pt;}
.lsf1{letter-spacing:11.392000pt;}
.ls4e{letter-spacing:15.488000pt;}
.lsa1{letter-spacing:15.653120pt;}
.ls9c{letter-spacing:15.852192pt;}
.lsa6{letter-spacing:16.116480pt;}
.lsa3{letter-spacing:16.162560pt;}
.lsa2{letter-spacing:16.168416pt;}
.ls36{letter-spacing:25.039840pt;}
.ls34{letter-spacing:25.220960pt;}
.ls32{letter-spacing:25.483584pt;}
.ls35{letter-spacing:25.673760pt;}
.ls52{letter-spacing:26.176000pt;}
.ls57{letter-spacing:26.432000pt;}
.ls48{letter-spacing:26.592000pt;}
.ls53{letter-spacing:26.659200pt;}
.ls4a{letter-spacing:26.688000pt;}
.ls54{letter-spacing:26.752000pt;}
.ls56{letter-spacing:26.880000pt;}
.ls55{letter-spacing:26.908800pt;}
.ls50{letter-spacing:34.108800pt;}
.ls2f{letter-spacing:34.340352pt;}
.lsf5{letter-spacing:35.055360pt;}
.ls22{letter-spacing:47.400960pt;}
.ls21{letter-spacing:47.620352pt;}
.ls25{letter-spacing:47.720960pt;}
.ls37{letter-spacing:51.306240pt;}
.lsdb{letter-spacing:55.330269pt;}
.lsec{letter-spacing:62.650510pt;}
.lsda{letter-spacing:63.326408pt;}
.ls81{letter-spacing:71.153280pt;}
.lscc{letter-spacing:88.696499pt;}
.ls73{letter-spacing:99.982272pt;}
.lsc{letter-spacing:107.372640pt;}
.lsf0{letter-spacing:114.880000pt;}
.ls20{letter-spacing:135.526976pt;}
.ls23{letter-spacing:142.178816pt;}
.ls5{letter-spacing:142.861056pt;}
.lsef{letter-spacing:150.261920pt;}
.lsf4{letter-spacing:157.760000pt;}
.lsc0{letter-spacing:202.576640pt;}
.lsd9{letter-spacing:209.498543pt;}
.ls5e{letter-spacing:256.471600pt;}
.lsde{letter-spacing:268.998813pt;}
.lscf{letter-spacing:305.743120pt;}
.lsd0{letter-spacing:354.845713pt;}
.lscd{letter-spacing:444.061260pt;}
.lsd1{letter-spacing:579.069094pt;}
.lscb{letter-spacing:621.882553pt;}
.lseb{letter-spacing:753.683968pt;}
.lsd8{letter-spacing:791.533717pt;}
.lsdd{letter-spacing:906.229319pt;}
.lsd7{letter-spacing:1007.325047pt;}
.lsdc{letter-spacing:1037.536082pt;}
.lsd6{letter-spacing:1069.053568pt;}
.wsd7{word-spacing:-128.000000pt;}
.ws34{word-spacing:-96.000000pt;}
.wsc9{word-spacing:-94.810133pt;}
.ws53{word-spacing:-90.560000pt;}
.wsdf{word-spacing:-88.266133pt;}
.ws112{word-spacing:-83.616533pt;}
.wsc4{word-spacing:-83.458667pt;}
.wse6{word-spacing:-79.860267pt;}
.wse4{word-spacing:-74.605461pt;}
.wscd{word-spacing:-71.286400pt;}
.ws114{word-spacing:-68.021333pt;}
.wsef{word-spacing:-67.269867pt;}
.ws10d{word-spacing:-66.722678pt;}
.wsd2{word-spacing:-64.415414pt;}
.wsc2{word-spacing:-64.221444pt;}
.wsf6{word-spacing:-58.560000pt;}
.ws119{word-spacing:-52.432533pt;}
.ws4c{word-spacing:-47.518016pt;}
.ws82{word-spacing:-47.500960pt;}
.ws3a{word-spacing:-47.415680pt;}
.ws39{word-spacing:-43.322240pt;}
.ws38{word-spacing:-41.104960pt;}
.wsd9{word-spacing:-35.545600pt;}
.wsd8{word-spacing:-30.848000pt;}
.wsd6{word-spacing:-30.720000pt;}
.wsd5{word-spacing:-29.333067pt;}
.ws127{word-spacing:-28.525600pt;}
.ws85{word-spacing:-26.716800pt;}
.ws7a{word-spacing:-26.707200pt;}
.ws26{word-spacing:-26.697600pt;}
.ws6b{word-spacing:-26.688000pt;}
.ws94{word-spacing:-26.572800pt;}
.ws5a{word-spacing:-25.619424pt;}
.ws4f{word-spacing:-25.175680pt;}
.ws13e{word-spacing:-23.752320pt;}
.ws6e{word-spacing:-23.136000pt;}
.ws6f{word-spacing:-23.040000pt;}
.ws59{word-spacing:-21.897408pt;}
.wsae{word-spacing:-19.109978pt;}
.ws89{word-spacing:-17.792000pt;}
.ws126{word-spacing:-16.640000pt;}
.wsf7{word-spacing:-16.332384pt;}
.ws86{word-spacing:-16.256000pt;}
.wsf5{word-spacing:-14.218368pt;}
.wsf8{word-spacing:-10.853120pt;}
.wsf2{word-spacing:-2.272128pt;}
.wse7{word-spacing:-2.236087pt;}
.wse1{word-spacing:-2.021294pt;}
.wse5{word-spacing:-1.645121pt;}
.wse0{word-spacing:-1.597617pt;}
.wseb{word-spacing:-1.342042pt;}
.ws21{word-spacing:-0.989248pt;}
.ws25{word-spacing:-0.972192pt;}
.wsea{word-spacing:-0.962386pt;}
.wsaa{word-spacing:-0.938080pt;}
.ws1d{word-spacing:-0.926528pt;}
.ws61{word-spacing:-0.921024pt;}
.ws16{word-spacing:-0.869856pt;}
.wsc{word-spacing:-0.835744pt;}
.ws19{word-spacing:-0.818688pt;}
.ws96{word-spacing:-0.801632pt;}
.ws9c{word-spacing:-0.796800pt;}
.ws10f{word-spacing:-0.787200pt;}
.ws150{word-spacing:-0.784576pt;}
.ws29{word-spacing:-0.777600pt;}
.wsba{word-spacing:-0.750464pt;}
.wsa0{word-spacing:-0.739200pt;}
.wsbc{word-spacing:-0.733408pt;}
.ws12d{word-spacing:-0.716352pt;}
.wsf0{word-spacing:-0.706334pt;}
.wsa{word-spacing:-0.699296pt;}
.wsde{word-spacing:-0.688476pt;}
.wsdb{word-spacing:-0.682240pt;}
.wsdc{word-spacing:-0.665184pt;}
.ws12b{word-spacing:-0.661664pt;}
.wsab{word-spacing:-0.648128pt;}
.ws4{word-spacing:-0.640000pt;}
.ws23{word-spacing:-0.631072pt;}
.ws1b{word-spacing:-0.627648pt;}
.ws146{word-spacing:-0.614400pt;}
.wsa9{word-spacing:-0.614016pt;}
.ws11{word-spacing:-0.596960pt;}
.ws92{word-spacing:-0.595200pt;}
.ws147{word-spacing:-0.579904pt;}
.ws72{word-spacing:-0.576000pt;}
.ws14e{word-spacing:-0.562848pt;}
.wsd{word-spacing:-0.545792pt;}
.ws1f{word-spacing:-0.528736pt;}
.wse8{word-spacing:-0.512095pt;}
.wsaf{word-spacing:-0.511680pt;}
.ws3f{word-spacing:-0.494624pt;}
.wsf4{word-spacing:-0.480192pt;}
.ws15{word-spacing:-0.477568pt;}
.ws109{word-spacing:-0.473600pt;}
.ws80{word-spacing:-0.470400pt;}
.ws14d{word-spacing:-0.460512pt;}
.ws2b{word-spacing:-0.451200pt;}
.ws78{word-spacing:-0.441600pt;}
.ws6d{word-spacing:-0.432000pt;}
.ws151{word-spacing:-0.426880pt;}
.wse{word-spacing:-0.426400pt;}
.ws2d{word-spacing:-0.422400pt;}
.wsbe{word-spacing:-0.420860pt;}
.ws6{word-spacing:-0.409344pt;}
.ws14a{word-spacing:-0.392288pt;}
.ws36{word-spacing:-0.384000pt;}
.ws14b{word-spacing:-0.375232pt;}
.ws42{word-spacing:-0.358176pt;}
.ws118{word-spacing:-0.356541pt;}
.ws79{word-spacing:-0.355200pt;}
.ws116{word-spacing:-0.353711pt;}
.wsc3{word-spacing:-0.350526pt;}
.ws35{word-spacing:-0.345600pt;}
.wsfb{word-spacing:-0.345504pt;}
.wsac{word-spacing:-0.341120pt;}
.ws7b{word-spacing:-0.336000pt;}
.ws111{word-spacing:-0.334466pt;}
.ws7d{word-spacing:-0.326400pt;}
.ws5f{word-spacing:-0.324064pt;}
.wsfc{word-spacing:-0.322080pt;}
.ws140{word-spacing:-0.320000pt;}
.wsfd{word-spacing:-0.310368pt;}
.ws48{word-spacing:-0.307200pt;}
.ws13{word-spacing:-0.307008pt;}
.wscc{word-spacing:-0.306532pt;}
.wsfa{word-spacing:-0.298656pt;}
.ws7c{word-spacing:-0.297600pt;}
.wsdd{word-spacing:-0.294400pt;}
.ws1a{word-spacing:-0.289952pt;}
.ws77{word-spacing:-0.288000pt;}
.ws90{word-spacing:-0.278400pt;}
.wsf{word-spacing:-0.272896pt;}
.ws74{word-spacing:-0.268800pt;}
.wsc7{word-spacing:-0.267068pt;}
.ws76{word-spacing:-0.259200pt;}
.ws113{word-spacing:-0.258481pt;}
.ws47{word-spacing:-0.256000pt;}
.wsca{word-spacing:-0.255987pt;}
.wsb{word-spacing:-0.255840pt;}
.ws2e{word-spacing:-0.249600pt;}
.wsbb{word-spacing:-0.238784pt;}
.wsc8{word-spacing:-0.237025pt;}
.wsf9{word-spacing:-0.234240pt;}
.ws7e{word-spacing:-0.230400pt;}
.ws14f{word-spacing:-0.221728pt;}
.wsc6{word-spacing:-0.208647pt;}
.wsec{word-spacing:-0.208537pt;}
.ws45{word-spacing:-0.204672pt;}
.ws12c{word-spacing:-0.187616pt;}
.ws11e{word-spacing:-0.183514pt;}
.wscf{word-spacing:-0.178216pt;}
.ws10a{word-spacing:-0.170766pt;}
.ws13c{word-spacing:-0.170752pt;}
.ws12{word-spacing:-0.170560pt;}
.ws13f{word-spacing:-0.166400pt;}
.ws2a{word-spacing:-0.163200pt;}
.ws41{word-spacing:-0.153504pt;}
.ws2f{word-spacing:-0.144000pt;}
.wscb{word-spacing:-0.142215pt;}
.ws44{word-spacing:-0.136704pt;}
.ws3c{word-spacing:-0.136448pt;}
.ws2c{word-spacing:-0.134400pt;}
.ws5e{word-spacing:-0.128064pt;}
.ws43{word-spacing:-0.128000pt;}
.ws10e{word-spacing:-0.125556pt;}
.ws122{word-spacing:-0.125546pt;}
.ws7f{word-spacing:-0.124800pt;}
.ws152{word-spacing:-0.119392pt;}
.ws125{word-spacing:-0.114102pt;}
.ws27{word-spacing:-0.106720pt;}
.ws9b{word-spacing:-0.105600pt;}
.ws132{word-spacing:-0.102400pt;}
.ws46{word-spacing:-0.102336pt;}
.ws31{word-spacing:-0.096000pt;}
.ws120{word-spacing:-0.094681pt;}
.ws50{word-spacing:-0.090560pt;}
.ws130{word-spacing:-0.089664pt;}
.wsda{word-spacing:-0.085376pt;}
.ws3e{word-spacing:-0.085280pt;}
.wse2{word-spacing:-0.079860pt;}
.wsad{word-spacing:-0.076800pt;}
.ws121{word-spacing:-0.073235pt;}
.ws13d{word-spacing:-0.064032pt;}
.ws3{word-spacing:-0.064000pt;}
.ws32{word-spacing:-0.057600pt;}
.ws65{word-spacing:-0.054336pt;}
.ws97{word-spacing:-0.051168pt;}
.wsa8{word-spacing:-0.042688pt;}
.wsc5{word-spacing:-0.041729pt;}
.wsf3{word-spacing:-0.040992pt;}
.ws6c{word-spacing:-0.038400pt;}
.ws3d{word-spacing:-0.034112pt;}
.ws88{word-spacing:-0.028800pt;}
.ws3b{word-spacing:-0.017056pt;}
.ws1e{word-spacing:-0.014944pt;}
.ws81{word-spacing:-0.009600pt;}
.ws2{word-spacing:0.000000pt;}
.ws11c{word-spacing:0.010487pt;}
.ws136{word-spacing:0.012800pt;}
.ws24{word-spacing:0.017056pt;}
.ws124{word-spacing:0.019200pt;}
.ws133{word-spacing:0.025600pt;}
.ws123{word-spacing:0.028800pt;}
.ws10{word-spacing:0.034112pt;}
.wsc0{word-spacing:0.037949pt;}
.wsa3{word-spacing:0.038400pt;}
.ws7{word-spacing:0.051168pt;}
.ws141{word-spacing:0.051200pt;}
.ws9{word-spacing:0.051264pt;}
.ws69{word-spacing:0.054336pt;}
.ws9a{word-spacing:0.057600pt;}
.ws1c{word-spacing:0.059776pt;}
.ws142{word-spacing:0.064000pt;}
.ws9f{word-spacing:0.067200pt;}
.wsbd{word-spacing:0.068224pt;}
.ws70{word-spacing:0.068352pt;}
.ws73{word-spacing:0.076800pt;}
.ws28{word-spacing:0.085376pt;}
.ws57{word-spacing:0.099616pt;}
.ws67{word-spacing:0.108672pt;}
.wsa6{word-spacing:0.115200pt;}
.ws17{word-spacing:0.119392pt;}
.ws37{word-spacing:0.124800pt;}
.ws139{word-spacing:0.128000pt;}
.ws145{word-spacing:0.140800pt;}
.ws8e{word-spacing:0.144000pt;}
.ws144{word-spacing:0.153600pt;}
.wsa2{word-spacing:0.163200pt;}
.wsb2{word-spacing:0.164068pt;}
.ws13a{word-spacing:0.179200pt;}
.ws40{word-spacing:0.187616pt;}
.ws75{word-spacing:0.192000pt;}
.ws12e{word-spacing:0.198400pt;}
.ws71{word-spacing:0.201600pt;}
.ws60{word-spacing:0.204672pt;}
.ws0{word-spacing:0.211104pt;}
.ws9d{word-spacing:0.230400pt;}
.ws12f{word-spacing:0.234784pt;}
.ws8{word-spacing:0.239232pt;}
.ws98{word-spacing:0.249600pt;}
.ws30{word-spacing:0.256000pt;}
.wsa1{word-spacing:0.268800pt;}
.wsc1{word-spacing:0.283759pt;}
.ws11d{word-spacing:0.293622pt;}
.ws62{word-spacing:0.298848pt;}
.ws14{word-spacing:0.307008pt;}
.ws9e{word-spacing:0.307200pt;}
.ws14c{word-spacing:0.324064pt;}
.ws11f{word-spacing:0.325082pt;}
.ws99{word-spacing:0.326400pt;}
.ws5{word-spacing:0.332800pt;}
.ws135{word-spacing:0.345600pt;}
.ws11b{word-spacing:0.346055pt;}
.ws20{word-spacing:0.358176pt;}
.ws148{word-spacing:0.358400pt;}
.ws11a{word-spacing:0.361784pt;}
.wsf1{word-spacing:0.368928pt;}
.ws4e{word-spacing:0.371296pt;}
.ws18{word-spacing:0.375232pt;}
.ws54{word-spacing:0.380352pt;}
.wsb0{word-spacing:0.406263pt;}
.ws8d{word-spacing:0.412800pt;}
.ws68{word-spacing:0.425632pt;}
.wsd0{word-spacing:0.441976pt;}
.ws63{word-spacing:0.443744pt;}
.ws6a{word-spacing:0.452800pt;}
.ws84{word-spacing:0.470400pt;}
.ws143{word-spacing:0.473600pt;}
.ws138{word-spacing:0.486400pt;}
.ws117{word-spacing:0.489754pt;}
.ws1{word-spacing:0.492576pt;}
.ws115{word-spacing:0.496556pt;}
.ws64{word-spacing:0.507136pt;}
.ws131{word-spacing:0.508096pt;}
.wsa7{word-spacing:0.547200pt;}
.wsa4{word-spacing:0.556800pt;}
.wsa5{word-spacing:0.566400pt;}
.ws137{word-spacing:0.640000pt;}
.ws22{word-spacing:0.682240pt;}
.ws13b{word-spacing:0.704000pt;}
.wse9{word-spacing:0.723997pt;}
.wsb1{word-spacing:0.734398pt;}
.ws4b{word-spacing:0.755200pt;}
.ws55{word-spacing:0.869376pt;}
.wsee{word-spacing:1.076318pt;}
.ws4a{word-spacing:1.139200pt;}
.ws49{word-spacing:1.228800pt;}
.ws66{word-spacing:1.421792pt;}
.ws149{word-spacing:1.472000pt;}
.wse3{word-spacing:1.509359pt;}
.ws52{word-spacing:1.602912pt;}
.wsb3{word-spacing:1.609426pt;}
.ws134{word-spacing:1.664000pt;}
.wsbf{word-spacing:6.214081pt;}
.ws95{word-spacing:10.243200pt;}
.ws12a{word-spacing:10.380800pt;}
.ws129{word-spacing:10.438400pt;}
.ws8a{word-spacing:37.104000pt;}
.ws5d{word-spacing:50.704544pt;}
.wsb9{word-spacing:51.712570pt;}
.wsb8{word-spacing:51.720383pt;}
.ws10c{word-spacing:60.811371pt;}
.ws8c{word-spacing:63.676800pt;}
.ws107{word-spacing:80.300800pt;}
.wsb6{word-spacing:90.330977pt;}
.wsb7{word-spacing:90.424730pt;}
.ws83{word-spacing:95.664000pt;}
.ws4d{word-spacing:101.255136pt;}
.ws106{word-spacing:115.660800pt;}
.ws100{word-spacing:115.673600pt;}
.ws8b{word-spacing:117.100800pt;}
.ws8f{word-spacing:117.120000pt;}
.ws104{word-spacing:118.220800pt;}
.wsd4{word-spacing:126.214319pt;}
.ws5c{word-spacing:126.865504pt;}
.wsb5{word-spacing:128.730627pt;}
.wsb4{word-spacing:128.754065pt;}
.ws108{word-spacing:129.420800pt;}
.ws105{word-spacing:133.721600pt;}
.ws102{word-spacing:135.680000pt;}
.ws103{word-spacing:145.088000pt;}
.wsfe{word-spacing:151.264000pt;}
.ws101{word-spacing:153.676800pt;}
.wsff{word-spacing:155.891200pt;}
.ws91{word-spacing:170.236800pt;}
.ws87{word-spacing:175.660800pt;}
.ws110{word-spacing:175.890253pt;}
.ws51{word-spacing:177.416096pt;}
.ws5b{word-spacing:202.709504pt;}
.wsed{word-spacing:208.711933pt;}
.wsce{word-spacing:215.126483pt;}
.ws93{word-spacing:223.680000pt;}
.ws56{word-spacing:253.260096pt;}
.wsd1{word-spacing:275.531362pt;}
.ws58{word-spacing:379.980704pt;}
.ws10b{word-spacing:432.632893pt;}
.wsd3{word-spacing:969.839572pt;}
.ws33{word-spacing:1047.580800pt;}
.ws128{word-spacing:1064.151912pt;}
._22{margin-left:-854.824229pt;}
._20{margin-left:-526.739745pt;}
._3d{margin-left:-480.854245pt;}
._41{margin-left:-463.278564pt;}
._23{margin-left:-429.858492pt;}
._3f{margin-left:-400.205312pt;}
._34{margin-left:-392.438264pt;}
._35{margin-left:-355.240332pt;}
._38{margin-left:-353.302779pt;}
._3e{margin-left:-328.363887pt;}
._37{margin-left:-318.010183pt;}
._21{margin-left:-310.179580pt;}
._40{margin-left:-285.769461pt;}
._36{margin-left:-279.542500pt;}
._24{margin-left:-273.736178pt;}
._3c{margin-left:-221.203376pt;}
._1e{margin-left:-50.942503pt;}
._11{margin-left:-13.786954pt;}
._6{margin-left:-10.665600pt;}
._8{margin-left:-9.728000pt;}
._c{margin-left:-8.707200pt;}
._2{margin-left:-6.484896pt;}
._7{margin-left:-5.366400pt;}
._9{margin-left:-3.847872pt;}
._3{margin-left:-2.768256pt;}
._4{margin-left:-1.384128pt;}
._1{width:1.612800pt;}
._26{width:2.738086pt;}
._25{width:5.108539pt;}
._1f{width:6.460747pt;}
._1b{width:25.462806pt;}
._16{width:26.794347pt;}
._0{width:36.684800pt;}
._19{width:56.264054pt;}
._f{width:57.523800pt;}
._1c{width:64.269575pt;}
._5{width:71.342400pt;}
._10{width:72.401995pt;}
._1a{width:73.448696pt;}
._e{width:84.825600pt;}
._14{width:105.087589pt;}
._15{width:112.689164pt;}
._3b{width:130.551589pt;}
._3a{width:141.729383pt;}
._12{width:143.982380pt;}
._39{width:152.971932pt;}
._13{width:160.521965pt;}
._31{width:162.848000pt;}
._30{width:165.088000pt;}
._2d{width:171.483072pt;}
._33{width:172.448000pt;}
._2c{width:180.460800pt;}
._28{width:182.982400pt;}
._17{width:184.143065pt;}
._2b{width:190.374400pt;}
._29{width:191.900800pt;}
._2f{width:193.148800pt;}
._32{width:195.348928pt;}
._18{width:198.862279pt;}
._27{width:200.595200pt;}
._d{width:206.731296pt;}
._2a{width:213.292800pt;}
._2e{width:215.064128pt;}
._1d{width:238.355506pt;}
._b{width:293.097600pt;}
._a{width:453.091200pt;}
.fs1d{font-size:39.040000pt;}
.fs30{font-size:39.450133pt;}
.fs1e{font-size:42.560000pt;}
.fs2d{font-size:45.347733pt;}
.fs3e{font-size:47.542400pt;}
.fs14{font-size:48.888533pt;}
.fs29{font-size:50.640000pt;}
.fs25{font-size:51.680000pt;}
.fs36{font-size:51.858667pt;}
.fs39{font-size:52.309867pt;}
.fs2c{font-size:52.432533pt;}
.fs31{font-size:55.229867pt;}
.fs1c{font-size:58.560000pt;}
.fs9{font-size:60.480000pt;}
.fsa{font-size:64.000000pt;}
.fs3c{font-size:66.560000pt;}
.fs18{font-size:67.250133pt;}
.fs17{font-size:67.269867pt;}
.fs2f{font-size:68.021333pt;}
.fs15{font-size:68.443733pt;}
.fsd{font-size:69.793600pt;}
.fs27{font-size:70.894933pt;}
.fs21{font-size:71.152533pt;}
.fsf{font-size:71.286400pt;}
.fs10{font-size:71.332267pt;}
.fs22{font-size:72.301333pt;}
.fs24{font-size:72.351467pt;}
.fs34{font-size:72.601067pt;}
.fs37{font-size:73.234667pt;}
.fs2b{font-size:73.240000pt;}
.fsc{font-size:78.127467pt;}
.fs1a{font-size:79.860267pt;}
.fs12{font-size:83.458667pt;}
.fs2e{font-size:83.616533pt;}
.fs2{font-size:85.440000pt;}
.fse{font-size:86.461333pt;}
.fs19{font-size:88.266133pt;}
.fs1b{font-size:88.292267pt;}
.fs8{font-size:90.560000pt;}
.fs32{font-size:94.681067pt;}
.fs13{font-size:94.810133pt;}
.fs11{font-size:94.871467pt;}
.fs6{font-size:96.000000pt;}
.fs1f{font-size:99.613867pt;}
.fs33{font-size:100.065600pt;}
.fsb{font-size:101.459575pt;}
.fs7{font-size:113.920000pt;}
.fs3d{font-size:114.102400pt;}
.fs16{font-size:117.332267pt;}
.fs28{font-size:121.534933pt;}
.fs23{font-size:123.946133pt;}
.fs26{font-size:124.031467pt;}
.fs35{font-size:124.460267pt;}
.fs38{font-size:125.546133pt;}
.fs2a{font-size:125.556267pt;}
.fs1{font-size:128.000000pt;}
.fs3b{font-size:132.685948pt;}
.fs5{font-size:149.440000pt;}
.fs4{font-size:170.560000pt;}
.fs20{font-size:170.766400pt;}
.fs3a{font-size:188.320000pt;}
.fs3{font-size:213.440000pt;}
.fs0{font-size:234.560000pt;}
.y0{bottom:0.000000pt;}
.y178{bottom:6.240000pt;}
.yc9{bottom:47.306667pt;}
.y7{bottom:47.386800pt;}
.y14{bottom:74.818355pt;}
.y6d{bottom:82.746987pt;}
.y12a{bottom:84.586667pt;}
.y186{bottom:89.466667pt;}
.y7c{bottom:94.107467pt;}
.y194{bottom:97.306667pt;}
.y1a9{bottom:97.617283pt;}
.yd4{bottom:97.786800pt;}
.y16d{bottom:100.586667pt;}
.yf4{bottom:101.626800pt;}
.y9c{bottom:102.428267pt;}
.ybd{bottom:107.306667pt;}
.y128{bottom:108.026667pt;}
.y1b0{bottom:112.976211pt;}
.y29{bottom:112.984739pt;}
.y6c{bottom:115.387075pt;}
.ya6{bottom:118.983523pt;}
.yd6{bottom:119.226667pt;}
.y13{bottom:120.899403pt;}
.y3f{bottom:121.226667pt;}
.y11f{bottom:121.866800pt;}
.y7b{bottom:122.907467pt;}
.y97{bottom:123.867467pt;}
.y185{bottom:124.026667pt;}
.y5c{bottom:126.906667pt;}
.y16c{bottom:129.386667pt;}
.y9b{bottom:131.228267pt;}
.y193{bottom:131.866667pt;}
.ye1{bottom:134.426667pt;}
.ybc{bottom:134.909846pt;}
.y51{bottom:137.145787pt;}
.yd3{bottom:139.146667pt;}
.y3d{bottom:143.546667pt;}
.y1a8{bottom:143.698331pt;}
.y6b{bottom:148.027163pt;}
.yc6{bottom:151.621523pt;}
.y7a{bottom:151.707467pt;}
.yd1{bottom:152.026667pt;}
.yf2{bottom:152.425219pt;}
.yf1{bottom:152.505943pt;}
.yf0{bottom:152.586667pt;}
.y96{bottom:152.667467pt;}
.yd2{bottom:153.066667pt;}
.y120{bottom:153.146739pt;}
.yf3{bottom:154.746667pt;}
.ybb{bottom:157.308991pt;}
.y16b{bottom:158.186667pt;}
.yca{bottom:158.266667pt;}
.ye9{bottom:158.583303pt;}
.ye2{bottom:158.586667pt;}
.y1af{bottom:159.057259pt;}
.y9a{bottom:160.028267pt;}
.y5b{bottom:161.466667pt;}
.ya5{bottom:165.064571pt;}
.y192{bottom:166.426667pt;}
.y12{bottom:166.980451pt;}
.y184{bottom:170.106667pt;}
.y3c{bottom:172.346667pt;}
.y28{bottom:174.424715pt;}
.y11b{bottom:179.066667pt;}
.yba{bottom:179.948377pt;}
.y79{bottom:180.507467pt;}
.y6a{bottom:180.667251pt;}
.y95{bottom:181.467467pt;}
.y50{bottom:183.226835pt;}
.y1f{bottom:183.381939pt;}
.y121{bottom:184.426677pt;}
.y16a{bottom:186.986667pt;}
.y130{bottom:187.066667pt;}
.y99{bottom:188.828267pt;}
.y1a7{bottom:189.779379pt;}
.y5a{bottom:196.026667pt;}
.yea{bottom:197.142391pt;}
.ye3{bottom:197.145754pt;}
.y80{bottom:197.225867pt;}
.y129{bottom:197.386667pt;}
.ycb{bottom:198.746649pt;}
.y1a0{bottom:200.739355pt;}
.yb9{bottom:202.347522pt;}
.y11e{bottom:203.625472pt;}
.y11d{bottom:203.628611pt;}
.y1ae{bottom:205.138307pt;}
.y12f{bottom:205.866667pt;}
.y78{bottom:209.307467pt;}
.y94{bottom:210.267467pt;}
.y48{bottom:210.986667pt;}
.ya4{bottom:211.145619pt;}
.yc5{bottom:213.061499pt;}
.y69{bottom:213.307339pt;}
.y122{bottom:215.706616pt;}
.y169{bottom:215.786667pt;}
.y183{bottom:216.186667pt;}
.y98{bottom:217.628267pt;}
.y27{bottom:220.505763pt;}
.y11c{bottom:223.388029pt;}
.y12e{bottom:224.666667pt;}
.yb8{bottom:224.746667pt;}
.y7f{bottom:225.946667pt;}
.y11{bottom:228.420427pt;}
.y4f{bottom:229.547627pt;}
.y59{bottom:230.586667pt;}
.y1e{bottom:232.663515pt;}
.yeb{bottom:235.701478pt;}
.ye4{bottom:235.704842pt;}
.y1a6{bottom:235.860427pt;}
.y77{bottom:238.107467pt;}
.y93{bottom:239.067467pt;}
.ycc{bottom:239.146434pt;}
.y18d{bottom:243.146667pt;}
.y12d{bottom:243.466667pt;}
.y168{bottom:244.586667pt;}
.y132{bottom:245.386839pt;}
.y68{bottom:246.026051pt;}
.y19f{bottom:246.820403pt;}
.y123{bottom:246.986554pt;}
.yb7{bottom:247.146667pt;}
.y182{bottom:250.746667pt;}
.y1ad{bottom:251.219355pt;}
.y7e{bottom:254.746667pt;}
.ya3{bottom:257.226667pt;}
.y34{bottom:258.426667pt;}
.yc4{bottom:259.142547pt;}
.y131{bottom:261.306667pt;}
.y12c{bottom:262.346667pt;}
.y76{bottom:266.986667pt;}
.y58{bottom:267.546883pt;}
.y92{bottom:267.867467pt;}
.yac{bottom:270.828910pt;}
.y18c{bottom:271.946667pt;}
.y167{bottom:273.386667pt;}
.yec{bottom:274.260566pt;}
.ye5{bottom:274.263929pt;}
.y10{bottom:274.501475pt;}
.y109{bottom:276.266667pt;}
.y89{bottom:276.506667pt;}
.y124{bottom:278.186533pt;}
.y67{bottom:278.666139pt;}
.ycd{bottom:279.626416pt;}
.y12b{bottom:281.146667pt;}
.y133{bottom:281.786667pt;}
.y1a5{bottom:281.941475pt;}
.y1d{bottom:281.945091pt;}
.y26{bottom:281.945739pt;}
.y7d{bottom:283.546667pt;}
.y33{bottom:287.226667pt;}
.y4e{bottom:290.906587pt;}
.y19e{bottom:292.901451pt;}
.yab{bottom:293.228055pt;}
.yaf{bottom:293.230008pt;}
.yb2{bottom:293.231961pt;}
.yb5{bottom:293.233914pt;}
.y108{bottom:295.466667pt;}
.y75{bottom:295.707467pt;}
.y91{bottom:296.745867pt;}
.y181{bottom:296.826667pt;}
.y1ac{bottom:297.300403pt;}
.y18b{bottom:300.746667pt;}
.y166{bottom:302.186667pt;}
.yc3{bottom:305.223595pt;}
.y125{bottom:309.466472pt;}
.y88{bottom:311.066667pt;}
.y66{bottom:311.226987pt;}
.yed{bottom:312.900377pt;}
.ye6{bottom:312.903741pt;}
.y6{bottom:314.186667pt;}
.y107{bottom:314.666667pt;}
.yaa{bottom:315.627199pt;}
.yae{bottom:315.629153pt;}
.yb1{bottom:315.631106pt;}
.yb4{bottom:315.633059pt;}
.y32{bottom:316.026667pt;}
.yce{bottom:320.106398pt;}
.yc8{bottom:320.582523pt;}
.y74{bottom:324.585867pt;}
.y90{bottom:325.466667pt;}
.y57{bottom:328.986859pt;}
.y165{bottom:330.986667pt;}
.y1c{bottom:331.226667pt;}
.y180{bottom:331.386667pt;}
.y106{bottom:333.866667pt;}
.yf{bottom:335.941451pt;}
.y4d{bottom:336.825603pt;}
.y87{bottom:336.987467pt;}
.ya9{bottom:338.346667pt;}
.yad{bottom:338.348620pt;}
.yb0{bottom:338.350573pt;}
.yb3{bottom:338.352526pt;}
.yb6{bottom:338.354479pt;}
.y47{bottom:338.666667pt;}
.y19d{bottom:338.982499pt;}
.y126{bottom:340.746410pt;}
.y116{bottom:341.307309pt;}
.y1a4{bottom:343.381451pt;}
.y25{bottom:343.385715pt;}
.y65{bottom:343.867075pt;}
.y31{bottom:344.826667pt;}
.y171{bottom:345.306667pt;}
.y119{bottom:349.306667pt;}
.yee{bottom:351.459465pt;}
.ye7{bottom:351.462828pt;}
.y105{bottom:353.066667pt;}
.y73{bottom:353.385867pt;}
.y8f{bottom:354.266667pt;}
.y5{bottom:356.426667pt;}
.ya2{bottom:359.541427pt;}
.ycf{bottom:360.586381pt;}
.y46{bottom:362.186667pt;}
.y115{bottom:362.506667pt;}
.y86{bottom:362.907467pt;}
.y39{bottom:364.186667pt;}
.yc2{bottom:366.663571pt;}
.y172{bottom:367.306411pt;}
.y10b{bottom:368.507024pt;}
.y127{bottom:372.026349pt;}
.y104{bottom:372.266667pt;}
.y174{bottom:374.425738pt;}
.y176{bottom:374.426667pt;}
.y56{bottom:375.067907pt;}
.y64{bottom:376.507163pt;}
.y17f{bottom:377.466667pt;}
.y1b{bottom:381.707819pt;}
.ye{bottom:382.022499pt;}
.y72{bottom:382.106667pt;}
.y8e{bottom:383.066667pt;}
.y4c{bottom:384.584675pt;}
.y175{bottom:384.986667pt;}
.y3b{bottom:385.385867pt;}
.y177{bottom:385.866667pt;}
.y1a3{bottom:389.462499pt;}
.yef{bottom:390.018552pt;}
.ye8{bottom:390.021916pt;}
.y102{bottom:391.466667pt;}
.y173{bottom:392.105905pt;}
.y38{bottom:392.986667pt;}
.y156{bottom:396.667531pt;}
.y15b{bottom:396.669362pt;}
.y85{bottom:397.467467pt;}
.y10a{bottom:398.266667pt;}
.y4{bottom:398.666667pt;}
.y163{bottom:400.186667pt;}
.y159{bottom:400.188288pt;}
.y19c{bottom:400.422475pt;}
.y113{bottom:400.906550pt;}
.yd0{bottom:401.066363pt;}
.yfe{bottom:401.066667pt;}
.y10d{bottom:401.867708pt;}
.y160{bottom:404.506667pt;}
.y1ab{bottom:404.821427pt;}
.y24{bottom:404.825691pt;}
.ya1{bottom:405.622475pt;}
.y114{bottom:408.666667pt;}
.y63{bottom:409.147251pt;}
.y101{bottom:410.586667pt;}
.y103{bottom:410.666667pt;}
.y71{bottom:410.906667pt;}
.y8d{bottom:411.866667pt;}
.y10f{bottom:412.505883pt;}
.yc1{bottom:412.744619pt;}
.y30{bottom:413.786667pt;}
.y3a{bottom:414.185867pt;}
.y118{bottom:415.146667pt;}
.y161{bottom:416.266667pt;}
.y155{bottom:418.586667pt;}
.y15a{bottom:418.588498pt;}
.yfd{bottom:420.186667pt;}
.y15e{bottom:420.829478pt;}
.yf5{bottom:421.706667pt;}
.y37{bottom:421.786667pt;}
.y112{bottom:422.586667pt;}
.y1a{bottom:422.667803pt;}
.y17e{bottom:423.546667pt;}
.y13a{bottom:425.227529pt;}
.yc7{bottom:428.103547pt;}
.y164{bottom:428.666667pt;}
.y162{bottom:428.668020pt;}
.y10c{bottom:428.828201pt;}
.yd5{bottom:429.226667pt;}
.yd7{bottom:429.306667pt;}
.y100{bottom:429.786667pt;}
.y145{bottom:431.147875pt;}
.y84{bottom:432.027467pt;}
.yd8{bottom:433.546667pt;}
.y1a2{bottom:435.543547pt;}
.y55{bottom:436.745587pt;}
.yfc{bottom:439.386667pt;}
.y10e{bottom:439.546742pt;}
.y70{bottom:439.706667pt;}
.y158{bottom:440.267790pt;}
.y15d{bottom:440.269621pt;}
.y8c{bottom:440.666667pt;}
.yda{bottom:440.906667pt;}
.y139{bottom:441.708122pt;}
.y62{bottom:441.787339pt;}
.y2f{bottom:442.586667pt;}
.yd{bottom:443.462475pt;}
.y4b{bottom:444.508747pt;}
.y19b{bottom:446.503523pt;}
.y18a{bottom:447.386667pt;}
.y15f{bottom:448.187305pt;}
.yff{bottom:448.986667pt;}
.y14e{bottom:449.387592pt;}
.y1aa{bottom:450.902475pt;}
.y170{bottom:450.905619pt;}
.ya0{bottom:451.703523pt;}
.y134{bottom:454.106667pt;}
.y141{bottom:457.549428pt;}
.y17d{bottom:458.106667pt;}
.y13c{bottom:458.108631pt;}
.yc0{bottom:458.825667pt;}
.y157{bottom:462.186925pt;}
.y15c{bottom:462.188756pt;}
.y14c{bottom:463.466667pt;}
.y149{bottom:463.469624pt;}
.ydc{bottom:463.786459pt;}
.ydf{bottom:463.786667pt;}
.y146{bottom:464.028242pt;}
.yfb{bottom:464.666979pt;}
.y45{bottom:465.307467pt;}
.y23{bottom:466.265667pt;}
.y83{bottom:466.665867pt;}
.y6f{bottom:468.506667pt;}
.y8b{bottom:469.466667pt;}
.y2e{bottom:471.386667pt;}
.y3{bottom:471.945299pt;}
.y135{bottom:472.346436pt;}
.y110{bottom:473.546667pt;}
.y140{bottom:474.108723pt;}
.y61{bottom:474.507387pt;}
.y13b{bottom:474.667925pt;}
.yd9{bottom:475.066346pt;}
.y117{bottom:475.626667pt;}
.y143{bottom:475.789092pt;}
.y189{bottom:476.186667pt;}
.y19{bottom:478.986715pt;}
.ydd{bottom:479.226014pt;}
.y111{bottom:481.306667pt;}
.y14d{bottom:481.706974pt;}
.y14b{bottom:481.709932pt;}
.y14f{bottom:481.866667pt;}
.yfa{bottom:482.186459pt;}
.ydb{bottom:482.345490pt;}
.y54{bottom:482.745619pt;}
.yde{bottom:486.587051pt;}
.y191{bottom:488.986667pt;}
.yc{bottom:489.543523pt;}
.y137{bottom:490.267601pt;}
.y13e{bottom:490.268982pt;}
.y142{bottom:490.509232pt;}
.y197{bottom:491.384571pt;}
.y19a{bottom:492.584571pt;}
.y44{bottom:494.107467pt;}
.y147{bottom:496.189034pt;}
.y14a{bottom:496.430470pt;}
.y1a1{bottom:496.983523pt;}
.y16f{bottom:496.986667pt;}
.y6e{bottom:497.306667pt;}
.y9f{bottom:497.784571pt;}
.y11a{bottom:498.026667pt;}
.y8a{bottom:498.266667pt;}
.yf9{bottom:499.785523pt;}
.y2d{bottom:500.186667pt;}
.y82{bottom:502.106667pt;}
.ybf{bottom:504.906715pt;}
.y188{bottom:504.986667pt;}
.y17c{bottom:505.387803pt;}
.y4a{bottom:505.948723pt;}
.y152{bottom:506.266070pt;}
.y136{bottom:506.826896pt;}
.y13d{bottom:506.828277pt;}
.y60{bottom:507.946667pt;}
.y154{bottom:514.027102pt;}
.yf8{bottom:517.385731pt;}
.y18{bottom:519.946699pt;}
.y43{bottom:522.907467pt;}
.y138{bottom:523.227405pt;}
.y13f{bottom:523.228786pt;}
.y190{bottom:523.546667pt;}
.y150{bottom:526.265849pt;}
.y22{bottom:527.705643pt;}
.y151{bottom:527.946564pt;}
.y36{bottom:528.826667pt;}
.y53{bottom:528.827651pt;}
.y2c{bottom:528.986667pt;}
.y144{bottom:529.147513pt;}
.y148{bottom:529.149880pt;}
.y2{bottom:533.224099pt;}
.y187{bottom:533.786667pt;}
.y153{bottom:534.027867pt;}
.ye0{bottom:534.906667pt;}
.yf7{bottom:535.066459pt;}
.yb{bottom:535.624571pt;}
.y196{bottom:537.465619pt;}
.y199{bottom:538.665619pt;}
.y16e{bottom:543.064571pt;}
.y9e{bottom:543.865619pt;}
.y5f{bottom:544.265619pt;}
.y81{bottom:546.107667pt;}
.ya8{bottom:550.345867pt;}
.y42{bottom:551.707467pt;}
.yf6{bottom:552.666667pt;}
.y35{bottom:557.626667pt;}
.y2b{bottom:557.786667pt;}
.y18f{bottom:558.106667pt;}
.y17b{bottom:559.148843pt;}
.y41{bottom:559.226667pt;}
.y17{bottom:560.906683pt;}
.ybe{bottom:566.346691pt;}
.y49{bottom:567.226667pt;}
.y52{bottom:574.746667pt;}
.ya7{bottom:580.986667pt;}
.ya{bottom:581.705619pt;}
.y195{bottom:583.546667pt;}
.y198{bottom:584.746667pt;}
.y3e{bottom:587.866667pt;}
.y40{bottom:588.026667pt;}
.y21{bottom:589.145619pt;}
.y9d{bottom:589.946667pt;}
.y5e{bottom:590.346667pt;}
.y18e{bottom:592.666667pt;}
.y1{bottom:594.426667pt;}
.y17a{bottom:599.467755pt;}
.y16{bottom:601.866667pt;}
.y9{bottom:627.786667pt;}
.y20{bottom:635.226667pt;}
.y5d{bottom:636.426667pt;}
.y179{bottom:639.786667pt;}
.y2a{bottom:640.585507pt;}
.y8{bottom:689.466667pt;}
.y15{bottom:696.266667pt;}
.h3f{height:32.925820pt;}
.h56{height:33.760000pt;}
.h3e{height:38.069911pt;}
.h42{height:38.698886pt;}
.h2d{height:42.661875pt;}
.h2e{height:42.666451pt;}
.h29{height:45.971771pt;}
.h28{height:45.985260pt;}
.h31{height:46.593750pt;}
.h32{height:46.625000pt;}
.h23{height:47.957551pt;}
.h1e{height:48.730938pt;}
.h1f{height:48.762292pt;}
.h41{height:49.388536pt;}
.h50{height:50.849461pt;}
.h4d{height:51.313732pt;}
.h43{height:54.178126pt;}
.h2b{height:57.984481pt;}
.h21{height:60.597186pt;}
.h40{height:60.711809pt;}
.h2f{height:61.076250pt;}
.h2a{height:64.087764pt;}
.h2c{height:64.106739pt;}
.h52{height:65.292500pt;}
.h54{height:65.325000pt;}
.h47{height:65.740467pt;}
.h11{height:65.930156pt;}
.h12{height:65.974375pt;}
.h24{height:67.140361pt;}
.h30{height:68.539219pt;}
.h22{height:68.839193pt;}
.h20{height:68.883726pt;}
.h46{height:69.479142pt;}
.h3a{height:69.544883pt;}
.hb{height:69.890625pt;}
.ha{height:69.937500pt;}
.h18{height:70.447029pt;}
.h36{height:70.924501pt;}
.h38{height:70.973680pt;}
.h49{height:71.218527pt;}
.h4b{height:71.840061pt;}
.h1b{height:76.677836pt;}
.h57{height:79.225397pt;}
.h1d{height:84.857070pt;}
.h5{height:86.107500pt;}
.h4e{height:87.171192pt;}
.h3d{height:87.178228pt;}
.h4f{height:90.111930pt;}
.h51{height:92.128622pt;}
.h45{height:92.878058pt;}
.h48{height:92.924289pt;}
.h3{height:93.187500pt;}
.h4{height:93.250000pt;}
.h14{height:94.451250pt;}
.h33{height:97.716923pt;}
.h15{height:100.125000pt;}
.h10{height:105.992344pt;}
.h13{height:105.994808pt;}
.h59{height:108.796406pt;}
.h9{height:108.869375pt;}
.h53{height:111.929552pt;}
.h55{height:111.985266pt;}
.h16{height:112.359375pt;}
.h1a{height:112.362575pt;}
.h25{height:115.097912pt;}
.h26{height:115.155203pt;}
.h35{height:118.569248pt;}
.h17{height:121.546875pt;}
.h37{height:121.585831pt;}
.h39{height:121.669539pt;}
.h4a{height:122.090174pt;}
.h4c{height:123.155362pt;}
.h3c{height:123.165303pt;}
.h8{height:124.172344pt;}
.he{height:124.180312pt;}
.h7{height:124.255625pt;}
.h58{height:138.205000pt;}
.h3b{height:149.617977pt;}
.h27{height:149.812500pt;}
.hc{height:155.060700pt;}
.h6{height:155.390156pt;}
.h34{height:167.514501pt;}
.h1c{height:167.555705pt;}
.h2{height:170.766094pt;}
.h44{height:174.468358pt;}
.h19{height:177.888750pt;}
.hf{height:199.625156pt;}
.hd{height:215.948281pt;}
.h1{height:793.333333pt;}
.h0{height:793.626667pt;}
.w1{width:15.680000pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xc{left:89.027333pt;}
.x9{left:96.547467pt;}
.xdc{left:100.387467pt;}
.x1d{left:104.147333pt;}
.x2a{left:107.827333pt;}
.x8{left:112.147333pt;}
.x1{left:114.547467pt;}
.x20{left:116.307333pt;}
.x33{left:117.267333pt;}
.x10{left:119.027333pt;}
.x9d{left:123.187333pt;}
.x80{left:125.267333pt;}
.x9c{left:127.187333pt;}
.x31{left:132.467467pt;}
.xb{left:134.707333pt;}
.x81{left:135.827333pt;}
.xb0{left:137.827333pt;}
.xd{left:139.666597pt;}
.x4{left:141.907333pt;}
.x2{left:143.908515pt;}
.xa{left:147.186731pt;}
.x1e{left:148.866533pt;}
.xf{left:150.707333pt;}
.x2c{left:153.027333pt;}
.x34{left:154.466597pt;}
.x2b{left:158.466597pt;}
.xe{left:159.667333pt;}
.x21{left:161.266533pt;}
.x32{left:162.306597pt;}
.x7{left:165.907333pt;}
.xae{left:167.107462pt;}
.x11{left:169.666597pt;}
.xaf{left:170.707333pt;}
.x3e{left:174.464757pt;}
.xc1{left:179.990697pt;}
.xbc{left:193.586491pt;}
.x6{left:198.067333pt;}
.xaa{left:200.548395pt;}
.x2d{left:203.667333pt;}
.x83{left:210.787333pt;}
.xa8{left:212.787333pt;}
.x3f{left:214.384325pt;}
.x24{left:216.468133pt;}
.x3c{left:218.787333pt;}
.x1c{left:220.708133pt;}
.x35{left:222.227333pt;}
.xa7{left:223.508211pt;}
.x1b{left:225.347333pt;}
.x82{left:226.787333pt;}
.xa6{left:229.507333pt;}
.xdd{left:230.947333pt;}
.x3d{left:240.147333pt;}
.xad{left:247.347333pt;}
.xba{left:250.306184pt;}
.xb9{left:251.746302pt;}
.xa9{left:260.947333pt;}
.xc0{left:270.789840pt;}
.xac{left:273.747333pt;}
.xbb{left:278.226262pt;}
.x64{left:283.587333pt;}
.xb1{left:288.707333pt;}
.xbf{left:291.110764pt;}
.x56{left:294.547333pt;}
.x86{left:296.467333pt;}
.xab{left:298.787333pt;}
.x85{left:304.867333pt;}
.x84{left:306.227333pt;}
.x43{left:307.509101pt;}
.x42{left:316.548683pt;}
.xd9{left:317.664472pt;}
.x41{left:325.588264pt;}
.xd8{left:335.107461pt;}
.x36{left:337.267333pt;}
.xc3{left:343.663506pt;}
.x7a{left:354.547333pt;}
.x44{left:358.147333pt;}
.xbe{left:362.869545pt;}
.x5d{left:364.629281pt;}
.x67{left:366.466149pt;}
.xb8{left:370.785996pt;}
.xb7{left:372.226114pt;}
.x66{left:374.946391pt;}
.x5{left:378.787333pt;}
.x23{left:381.187333pt;}
.x45{left:384.306659pt;}
.xb6{left:386.066719pt;}
.x89{left:387.507333pt;}
.x87{left:391.507333pt;}
.x88{left:401.267333pt;}
.x22{left:406.627333pt;}
.x29{left:408.947333pt;}
.x46{left:410.465984pt;}
.x68{left:414.307333pt;}
.x57{left:422.867333pt;}
.x37{left:429.108124pt;}
.x5b{left:432.227333pt;}
.x47{left:436.705559pt;}
.x69{left:438.228206pt;}
.x5c{left:439.188070pt;}
.x59{left:442.147333pt;}
.x8b{left:446.467333pt;}
.xc2{left:447.507333pt;}
.x5a{left:448.546822pt;}
.x3{left:455.427651pt;}
.xbd{left:458.627608pt;}
.x48{left:462.864884pt;}
.xb5{left:463.987776pt;}
.x8a{left:466.467333pt;}
.x7b{left:469.107333pt;}
.xdb{left:472.467333pt;}
.x6a{left:486.069951pt;}
.x1f{left:489.107333pt;}
.x58{left:500.547333pt;}
.x6b{left:509.990823pt;}
.x7d{left:513.027741pt;}
.xb3{left:513.987333pt;}
.x49{left:515.183535pt;}
.x7e{left:521.027037pt;}
.x28{left:529.907333pt;}
.x38{left:533.507904pt;}
.x7f{left:537.027893pt;}
.x4a{left:541.342861pt;}
.x7c{left:542.387333pt;}
.xd7{left:544.227333pt;}
.xda{left:548.148000pt;}
.x30{left:550.147333pt;}
.x8c{left:552.867333pt;}
.x6c{left:557.832568pt;}
.xde{left:563.587333pt;}
.xe0{left:565.988133pt;}
.x4b{left:567.502186pt;}
.x27{left:570.950533pt;}
.xdf{left:576.948133pt;}
.xd1{left:579.427333pt;}
.xb4{left:580.387333pt;}
.x6d{left:581.753440pt;}
.xc7{left:589.825743pt;}
.xe1{left:592.548933pt;}
.x4c{left:593.661512pt;}
.x25{left:597.189733pt;}
.xc6{left:600.786470pt;}
.xc5{left:602.706768pt;}
.x6e{left:605.674313pt;}
.xd0{left:610.707333pt;}
.x16{left:612.868933pt;}
.x2e{left:616.307333pt;}
.x8e{left:617.907333pt;}
.x4d{left:619.820837pt;}
.x39{left:620.948165pt;}
.x15{left:623.508133pt;}
.x12{left:626.947333pt;}
.x6f{left:629.674204pt;}
.x8d{left:632.147333pt;}
.x1a{left:641.268133pt;}
.x8f{left:642.307333pt;}
.x19{left:644.707333pt;}
.x13{left:646.147333pt;}
.x70{left:653.595077pt;}
.xb2{left:654.787333pt;}
.xcf{left:658.149098pt;}
.x14{left:664.867333pt;}
.xcd{left:668.070488pt;}
.xcc{left:669.829951pt;}
.x4e{left:672.139488pt;}
.x71{left:677.515949pt;}
.x18{left:680.707333pt;}
.xc4{left:681.987133pt;}
.x90{left:687.427333pt;}
.x17{left:690.309733pt;}
.x92{left:693.667333pt;}
.x26{left:695.109733pt;}
.x4f{left:698.298814pt;}
.x72{left:701.436821pt;}
.x91{left:710.067333pt;}
.xa4{left:714.627409pt;}
.x50{left:724.458139pt;}
.x73{left:725.357694pt;}
.x3a{left:733.348198pt;}
.xa2{left:739.666083pt;}
.x74{left:749.278566pt;}
.x51{left:750.617465pt;}
.x95{left:752.707333pt;}
.x62{left:756.227438pt;}
.x93{left:758.547333pt;}
.x96{left:766.547333pt;}
.x75{left:773.199439pt;}
.x52{left:776.857039pt;}
.x94{left:781.187333pt;}
.xa5{left:789.108049pt;}
.xd4{left:795.347333pt;}
.x76{left:797.120311pt;}
.xd6{left:798.788933pt;}
.xd3{left:801.347333pt;}
.x53{left:803.016364pt;}
.xd5{left:816.707333pt;}
.xca{left:819.107834pt;}
.x77{left:821.120202pt;}
.x54{left:829.175690pt;}
.x3b{left:830.148129pt;}
.xd2{left:832.787333pt;}
.x97{left:834.467333pt;}
.xa0{left:840.305972pt;}
.x9f{left:842.945740pt;}
.x99{left:843.907333pt;}
.x78{left:845.041075pt;}
.x98{left:848.707333pt;}
.x40{left:864.867333pt;}
.xce{left:868.467119pt;}
.xa3{left:876.065694pt;}
.x65{left:878.547333pt;}
.xa1{left:890.065589pt;}
.xc9{left:891.267782pt;}
.xcb{left:892.388272pt;}
.xc8{left:893.827333pt;}
.x9a{left:920.627333pt;}
.x9b{left:926.147333pt;}
.x9e{left:927.667333pt;}
.x55{left:931.827333pt;}
.x79{left:943.747333pt;}
.x63{left:946.227333pt;}
.x2f{left:964.307333pt;}
.x61{left:969.267635pt;}
.x60{left:973.107333pt;}
.x5f{left:986.147972pt;}
.x5e{left:994.147333pt;}
}




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