
    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_86eb0c53c7d171e101de0a82.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_547791f179bfb19260d6418c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a6a18a310659751ac6c04e85.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dc2b6f07a8328864514f5695.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.142090;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_8a060261235952a28f079462.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e57d4ac829d532f941596702.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.943848;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;}
.mc{transform:matrix(0.000000,-0.210468,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.210468,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.210468,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.232327,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.232327,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.232327,0.250000,0.000000,0,0);}
.m12{transform:matrix(0.000000,-0.255699,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.255699,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.255699,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.262522,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.262522,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.262522,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.176621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176621,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.176845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176845,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.181489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181489,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.210468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210468,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.232327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232327,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m7{transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);}
.m8{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);}
.m5{transform:matrix(0.236550,0.000000,-0.080896,0.236550,0,0);-ms-transform:matrix(0.236550,0.000000,-0.080896,0.236550,0,0);-webkit-transform:matrix(0.236550,0.000000,-0.080896,0.236550,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);}
.m11{transform:matrix(0.255696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255696,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.255699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255699,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.262522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262522,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.262526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262526,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vc{vertical-align:-36.002880px;}
.vb{vertical-align:-27.000000px;}
.v8{vertical-align:-8.895600px;}
.v9{vertical-align:-4.678200px;}
.v11{vertical-align:-1.101240px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:1.101240px;}
.v14{vertical-align:4.692240px;}
.vd{vertical-align:9.000000px;}
.v7{vertical-align:18.009328px;}
.v13{vertical-align:20.880000px;}
.v15{vertical-align:24.120000px;}
.ve{vertical-align:25.920000px;}
.v4{vertical-align:27.693330px;}
.va{vertical-align:29.880600px;}
.v6{vertical-align:32.400000px;}
.v1{vertical-align:34.920000px;}
.v2{vertical-align:59.400000px;}
.v16{vertical-align:63.018000px;}
.v5{vertical-align:68.777280px;}
.v3{vertical-align:73.584084px;}
.vf{vertical-align:118.800000px;}
.v10{vertical-align:178.920000px;}
.ls80{letter-spacing:-2.442486px;}
.lsb5{letter-spacing:-2.116750px;}
.ls9a{letter-spacing:-1.895638px;}
.ls7a{letter-spacing:-1.567070px;}
.ls99{letter-spacing:-1.552520px;}
.ls7b{letter-spacing:-1.487388px;}
.ls7e{letter-spacing:-1.479583px;}
.ls7f{letter-spacing:-1.362156px;}
.ls79{letter-spacing:-1.126165px;}
.ls77{letter-spacing:-1.104917px;}
.lsb3{letter-spacing:-1.009044px;}
.ls8e{letter-spacing:-0.985790px;}
.ls78{letter-spacing:-0.743694px;}
.ls96{letter-spacing:-0.723604px;}
.ls92{letter-spacing:-0.701168px;}
.lsb4{letter-spacing:-0.654757px;}
.ls8d{letter-spacing:-0.598516px;}
.ls6c{letter-spacing:-0.426852px;}
.lsb8{letter-spacing:-0.408816px;}
.ls97{letter-spacing:-0.380486px;}
.ls6e{letter-spacing:-0.361584px;}
.ls45{letter-spacing:-0.306612px;}
.ls98{letter-spacing:-0.289289px;}
.ls3e{letter-spacing:-0.264528px;}
.ls6f{letter-spacing:-0.240480px;}
.ls6b{letter-spacing:-0.222444px;}
.ls6d{letter-spacing:-0.210420px;}
.ls90{letter-spacing:-0.200679px;}
.ls40{letter-spacing:-0.180360px;}
.ls41{letter-spacing:-0.174348px;}
.ls1f{letter-spacing:-0.168336px;}
.ls3f{letter-spacing:-0.162324px;}
.ls10{letter-spacing:-0.156312px;}
.ls19{letter-spacing:-0.150300px;}
.ls17{letter-spacing:-0.144288px;}
.ls2f{letter-spacing:-0.138276px;}
.ls1e{letter-spacing:-0.132264px;}
.ls24{letter-spacing:-0.126252px;}
.ls2e{letter-spacing:-0.120240px;}
.ls12{letter-spacing:-0.114228px;}
.ls7d{letter-spacing:-0.111556px;}
.ls26{letter-spacing:-0.108216px;}
.ls95{letter-spacing:-0.105336px;}
.ls2d{letter-spacing:-0.102204px;}
.lsb1{letter-spacing:-0.097200px;}
.ls23{letter-spacing:-0.096192px;}
.ls1a{letter-spacing:-0.090180px;}
.ls28{letter-spacing:-0.084168px;}
.ls20{letter-spacing:-0.078156px;}
.ls22{letter-spacing:-0.072144px;}
.ls21{letter-spacing:-0.066132px;}
.ls70{letter-spacing:-0.060120px;}
.ls18{letter-spacing:-0.054108px;}
.lsb6{letter-spacing:-0.054000px;}
.ls74{letter-spacing:-0.048096px;}
.ls7c{letter-spacing:-0.047809px;}
.ls27{letter-spacing:-0.042084px;}
.ls13{letter-spacing:-0.036072px;}
.ls25{letter-spacing:-0.030060px;}
.ls1c{letter-spacing:-0.024048px;}
.lsaf{letter-spacing:-0.021600px;}
.ls11{letter-spacing:-0.019764px;}
.ls1b{letter-spacing:-0.018036px;}
.ls15{letter-spacing:-0.012024px;}
.ls1d{letter-spacing:-0.006012px;}
.lsae{letter-spacing:-0.005400px;}
.lsb9{letter-spacing:-0.003888px;}
.ls16{letter-spacing:0.000000px;}
.ls87{letter-spacing:0.004788px;}
.lsac{letter-spacing:0.005400px;}
.ls9{letter-spacing:0.006012px;}
.lsd{letter-spacing:0.012024px;}
.ls64{letter-spacing:0.012960px;}
.ls9e{letter-spacing:0.016200px;}
.ls67{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.018036px;}
.ls9c{letter-spacing:0.021600px;}
.ls8a{letter-spacing:0.023940px;}
.lsc{letter-spacing:0.024048px;}
.ls9d{letter-spacing:0.027000px;}
.ls2c{letter-spacing:0.030060px;}
.lsa1{letter-spacing:0.032400px;}
.ls7{letter-spacing:0.036072px;}
.ls93{letter-spacing:0.037121px;}
.lsa9{letter-spacing:0.037800px;}
.ls73{letter-spacing:0.042084px;}
.lsa7{letter-spacing:0.043200px;}
.ls82{letter-spacing:0.047880px;}
.ls6{letter-spacing:0.048096px;}
.lsb7{letter-spacing:0.054000px;}
.ls29{letter-spacing:0.054108px;}
.lsaa{letter-spacing:0.059400px;}
.ls3a{letter-spacing:0.060120px;}
.ls0{letter-spacing:0.066132px;}
.lsa2{letter-spacing:0.070200px;}
.ls4{letter-spacing:0.072144px;}
.lsa8{letter-spacing:0.075600px;}
.lse{letter-spacing:0.078156px;}
.ls59{letter-spacing:0.080280px;}
.lsad{letter-spacing:0.081000px;}
.ls84{letter-spacing:0.081396px;}
.lsf{letter-spacing:0.084168px;}
.lsa4{letter-spacing:0.086400px;}
.ls5b{letter-spacing:0.087840px;}
.ls5e{letter-spacing:0.089280px;}
.ls4e{letter-spacing:0.089640px;}
.ls14{letter-spacing:0.090180px;}
.ls9f{letter-spacing:0.091800px;}
.ls5{letter-spacing:0.096192px;}
.ls4c{letter-spacing:0.099720px;}
.ls50{letter-spacing:0.100080px;}
.ls54{letter-spacing:0.100440px;}
.ls83{letter-spacing:0.100548px;}
.ls5d{letter-spacing:0.101160px;}
.ls1{letter-spacing:0.102204px;}
.ls57{letter-spacing:0.106452px;}
.ls63{letter-spacing:0.107712px;}
.lsa{letter-spacing:0.108216px;}
.ls61{letter-spacing:0.109764px;}
.ls56{letter-spacing:0.111168px;}
.ls60{letter-spacing:0.111600px;}
.ls5f{letter-spacing:0.113652px;}
.ls34{letter-spacing:0.114228px;}
.ls58{letter-spacing:0.114372px;}
.ls55{letter-spacing:0.119160px;}
.ls51{letter-spacing:0.119520px;}
.ls86{letter-spacing:0.119700px;}
.ls3b{letter-spacing:0.120240px;}
.lsb{letter-spacing:0.126252px;}
.ls5c{letter-spacing:0.127512px;}
.ls4f{letter-spacing:0.127800px;}
.ls52{letter-spacing:0.128160px;}
.ls5a{letter-spacing:0.128520px;}
.ls62{letter-spacing:0.129240px;}
.lsb0{letter-spacing:0.129600px;}
.ls31{letter-spacing:0.132264px;}
.ls3c{letter-spacing:0.138276px;}
.ls53{letter-spacing:0.140040px;}
.ls2b{letter-spacing:0.144288px;}
.lsb2{letter-spacing:0.145800px;}
.ls3{letter-spacing:0.150300px;}
.ls72{letter-spacing:0.156312px;}
.ls89{letter-spacing:0.180000px;}
.ls30{letter-spacing:0.180360px;}
.ls85{letter-spacing:0.181944px;}
.ls8f{letter-spacing:0.186596px;}
.lsa0{letter-spacing:0.198000px;}
.lsa3{letter-spacing:0.216000px;}
.ls69{letter-spacing:0.216432px;}
.ls8b{letter-spacing:0.287280px;}
.ls88{letter-spacing:0.307476px;}
.ls4b{letter-spacing:0.360000px;}
.ls4d{letter-spacing:0.361584px;}
.ls66{letter-spacing:0.453240px;}
.ls76{letter-spacing:0.480960px;}
.lsa6{letter-spacing:1.062860px;}
.ls8c{letter-spacing:1.182226px;}
.ls68{letter-spacing:1.563120px;}
.ls91{letter-spacing:1.739216px;}
.lsa5{letter-spacing:1.861126px;}
.ls71{letter-spacing:2.585160px;}
.ls94{letter-spacing:4.739073px;}
.ls48{letter-spacing:8.087040px;}
.ls47{letter-spacing:12.874377px;}
.ls65{letter-spacing:33.667200px;}
.ls2a{letter-spacing:36.192240px;}
.ls8{letter-spacing:38.717280px;}
.ls42{letter-spacing:53.617678px;}
.ls35{letter-spacing:55.123425px;}
.ls38{letter-spacing:56.489046px;}
.ls49{letter-spacing:58.643620px;}
.ls32{letter-spacing:59.638081px;}
.ls4a{letter-spacing:59.702396px;}
.ls75{letter-spacing:63.546840px;}
.ls43{letter-spacing:117.089519px;}
.ls46{letter-spacing:158.818338px;}
.ls3d{letter-spacing:197.367948px;}
.ls37{letter-spacing:217.046736px;}
.ls36{letter-spacing:323.640000px;}
.ls6a{letter-spacing:326.828386px;}
.ls33{letter-spacing:415.377082px;}
.ls39{letter-spacing:622.181880px;}
.ls44{letter-spacing:772.172565px;}
.lsab{letter-spacing:1083.780000px;}
.ls9b{letter-spacing:1092.420000px;}
.ls81{letter-spacing:1194.366600px;}
.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;}
}
.ws7a{word-spacing:-114.806702px;}
.wsb1{word-spacing:-39.563575px;}
.ws7b{word-spacing:-39.551058px;}
.wsb9{word-spacing:-39.504942px;}
.wse6{word-spacing:-39.500001px;}
.wse2{word-spacing:-33.005880px;}
.ws71{word-spacing:-25.545629px;}
.ws109{word-spacing:-19.764000px;}
.wsb0{word-spacing:-18.016200px;}
.ws7c{word-spacing:-18.010500px;}
.ws76{word-spacing:-18.000000px;}
.wse9{word-spacing:-17.987250px;}
.wsbe{word-spacing:-17.985900px;}
.ws170{word-spacing:-16.205239px;}
.ws49{word-spacing:-15.210360px;}
.wse4{word-spacing:-15.168276px;}
.ws1a4{word-spacing:-15.162264px;}
.ws48{word-spacing:-15.138216px;}
.ws175{word-spacing:-15.126192px;}
.wsb2{word-spacing:-15.108156px;}
.ws77{word-spacing:-15.102144px;}
.ws7d{word-spacing:-15.090120px;}
.ws3{word-spacing:-15.048036px;}
.ws4{word-spacing:-15.030000px;}
.ws1{word-spacing:-15.017976px;}
.ws0{word-spacing:-14.993928px;}
.wsb5{word-spacing:-14.975850px;}
.wsb3{word-spacing:-14.963868px;}
.ws78{word-spacing:-14.957856px;}
.ws142{word-spacing:-14.951844px;}
.ws10b{word-spacing:-14.945832px;}
.ws5{word-spacing:-14.939820px;}
.wsac{word-spacing:-14.903748px;}
.ws2{word-spacing:-14.879700px;}
.ws122{word-spacing:-14.861664px;}
.wse3{word-spacing:-14.807556px;}
.ws149{word-spacing:-14.719829px;}
.ws14a{word-spacing:-14.566844px;}
.ws146{word-spacing:-14.023944px;}
.ws145{word-spacing:-13.662721px;}
.ws147{word-spacing:-13.641473px;}
.ws184{word-spacing:-13.530159px;}
.ws14c{word-spacing:-13.316244px;}
.ws148{word-spacing:-13.200569px;}
.ws14b{word-spacing:-13.198817px;}
.ws14d{word-spacing:-12.235914px;}
.ws73{word-spacing:-11.632800px;}
.ws16d{word-spacing:-11.526706px;}
.ws16f{word-spacing:-11.503286px;}
.ws183{word-spacing:-11.458255px;}
.ws16e{word-spacing:-10.764997px;}
.ws16b{word-spacing:-9.974086px;}
.ws7e{word-spacing:-9.720000px;}
.ws1bf{word-spacing:-9.716112px;}
.ws16c{word-spacing:-9.586812px;}
.wse5{word-spacing:-9.358416px;}
.ws169{word-spacing:-9.188975px;}
.ws172{word-spacing:-9.063730px;}
.wsae{word-spacing:-9.008100px;}
.ws75{word-spacing:-9.000000px;}
.wse7{word-spacing:-8.993700px;}
.wsbb{word-spacing:-8.992950px;}
.wsb8{word-spacing:-8.985600px;}
.ws16a{word-spacing:-8.801700px;}
.ws171{word-spacing:-8.720612px;}
.ws173{word-spacing:-7.891696px;}
.ws174{word-spacing:-7.548578px;}
.ws193{word-spacing:-0.591972px;}
.wsf8{word-spacing:-0.450900px;}
.wsd{word-spacing:-0.420840px;}
.ws1bc{word-spacing:-0.414828px;}
.wsf4{word-spacing:-0.408816px;}
.ws80{word-spacing:-0.378756px;}
.wsf3{word-spacing:-0.361584px;}
.wsf1{word-spacing:-0.360720px;}
.ws151{word-spacing:-0.342684px;}
.ws182{word-spacing:-0.336323px;}
.wsb{word-spacing:-0.288576px;}
.wsc7{word-spacing:-0.282564px;}
.ws17a{word-spacing:-0.272916px;}
.ws139{word-spacing:-0.264528px;}
.ws1b2{word-spacing:-0.252504px;}
.ws152{word-spacing:-0.246492px;}
.ws1b1{word-spacing:-0.228456px;}
.ws17b{word-spacing:-0.210672px;}
.ws1a6{word-spacing:-0.204408px;}
.ws81{word-spacing:-0.198396px;}
.ws177{word-spacing:-0.191520px;}
.ws1b9{word-spacing:-0.186372px;}
.ws1cc{word-spacing:-0.180360px;}
.ws179{word-spacing:-0.172368px;}
.ws1b7{word-spacing:-0.138276px;}
.ws17e{word-spacing:-0.114912px;}
.ws6{word-spacing:-0.114228px;}
.wsfa{word-spacing:-0.060120px;}
.ws1be{word-spacing:-0.048096px;}
.ws1c7{word-spacing:-0.042084px;}
.ws10c{word-spacing:-0.036072px;}
.wscd{word-spacing:-0.030060px;}
.wscc{word-spacing:-0.024048px;}
.ws24{word-spacing:-0.018036px;}
.ws9{word-spacing:-0.012024px;}
.wsc2{word-spacing:-0.006012px;}
.wsc{word-spacing:0.000000px;}
.ws59{word-spacing:0.006012px;}
.ws4e{word-spacing:0.012024px;}
.ws11{word-spacing:0.018036px;}
.ws8{word-spacing:0.024048px;}
.ws8a{word-spacing:0.030060px;}
.ws51{word-spacing:0.036072px;}
.wsf5{word-spacing:0.042084px;}
.ws18a{word-spacing:0.048600px;}
.wsfb{word-spacing:0.054108px;}
.wsfc{word-spacing:0.066132px;}
.ws4a{word-spacing:0.072144px;}
.wsf9{word-spacing:0.078156px;}
.ws30{word-spacing:0.084168px;}
.ws18e{word-spacing:0.086400px;}
.ws46{word-spacing:0.090180px;}
.ws192{word-spacing:0.091800px;}
.ws15a{word-spacing:0.096192px;}
.ws1a2{word-spacing:0.097200px;}
.wsf2{word-spacing:0.102204px;}
.ws190{word-spacing:0.108000px;}
.ws47{word-spacing:0.108216px;}
.ws7{word-spacing:0.111996px;}
.wsed{word-spacing:0.114228px;}
.ws8c{word-spacing:0.120240px;}
.ws1a5{word-spacing:0.124200px;}
.wsec{word-spacing:0.126252px;}
.ws5f{word-spacing:0.132264px;}
.ws108{word-spacing:0.144288px;}
.ws1a1{word-spacing:0.145800px;}
.ws101{word-spacing:0.150300px;}
.ws18c{word-spacing:0.151200px;}
.ws8f{word-spacing:0.156312px;}
.ws18b{word-spacing:0.156600px;}
.ws18d{word-spacing:0.162000px;}
.ws4f{word-spacing:0.162324px;}
.ws124{word-spacing:0.168336px;}
.ws1a0{word-spacing:0.172800px;}
.ws18f{word-spacing:0.178200px;}
.wsc3{word-spacing:0.180360px;}
.ws1a3{word-spacing:0.183600px;}
.ws4b{word-spacing:0.186372px;}
.ws4d{word-spacing:0.192384px;}
.ws188{word-spacing:0.199800px;}
.wsa{word-spacing:0.204408px;}
.ws50{word-spacing:0.210420px;}
.ws4c{word-spacing:0.216432px;}
.ws141{word-spacing:0.228456px;}
.wsf7{word-spacing:0.234468px;}
.ws17d{word-spacing:0.244188px;}
.ws82{word-spacing:0.252504px;}
.wsfd{word-spacing:0.258516px;}
.ws17c{word-spacing:0.263340px;}
.ws191{word-spacing:0.275400px;}
.ws5b{word-spacing:0.300600px;}
.ws5e{word-spacing:0.306612px;}
.wsa0{word-spacing:0.312624px;}
.ws12b{word-spacing:0.318636px;}
.ws28{word-spacing:0.324648px;}
.ws11d{word-spacing:0.330660px;}
.ws27{word-spacing:0.354708px;}
.ws90{word-spacing:0.396792px;}
.ws6d{word-spacing:0.414828px;}
.ws6b{word-spacing:0.420840px;}
.ws5a{word-spacing:0.450900px;}
.ws10d{word-spacing:0.468936px;}
.ws1b0{word-spacing:0.498996px;}
.wsf6{word-spacing:0.517032px;}
.ws5d{word-spacing:0.565128px;}
.ws12c{word-spacing:0.577152px;}
.ws6c{word-spacing:0.595188px;}
.ws129{word-spacing:0.697392px;}
.ws12a{word-spacing:0.853704px;}
.ws138{word-spacing:0.895788px;}
.ws137{word-spacing:0.913824px;}
.ws114{word-spacing:1.064124px;}
.ws104{word-spacing:1.070136px;}
.ws117{word-spacing:1.082160px;}
.ws15{word-spacing:1.094184px;}
.ws65{word-spacing:1.100196px;}
.ws180{word-spacing:1.172340px;}
.ws181{word-spacing:1.196388px;}
.wsaa{word-spacing:1.226448px;}
.wsc1{word-spacing:1.238472px;}
.ws31{word-spacing:1.244484px;}
.wsc0{word-spacing:1.262520px;}
.ws32{word-spacing:1.268532px;}
.wsd6{word-spacing:1.274544px;}
.ws11e{word-spacing:1.292580px;}
.ws107{word-spacing:1.310616px;}
.ws125{word-spacing:1.322640px;}
.ws106{word-spacing:1.436868px;}
.ws53{word-spacing:1.442880px;}
.ws136{word-spacing:1.448892px;}
.ws105{word-spacing:1.490976px;}
.ws52{word-spacing:1.521036px;}
.ws43{word-spacing:1.545084px;}
.ws44{word-spacing:1.551096px;}
.wsab{word-spacing:1.563120px;}
.wsa1{word-spacing:1.581156px;}
.ws199{word-spacing:1.582200px;}
.ws198{word-spacing:1.598400px;}
.wsa2{word-spacing:1.617228px;}
.ws13c{word-spacing:1.629252px;}
.ws45{word-spacing:1.641276px;}
.ws56{word-spacing:1.665324px;}
.ws19a{word-spacing:1.674000px;}
.wsa9{word-spacing:1.683360px;}
.ws58{word-spacing:1.797588px;}
.ws18{word-spacing:1.803600px;}
.ws15f{word-spacing:1.815624px;}
.wsda{word-spacing:1.887768px;}
.ws1a9{word-spacing:1.899792px;}
.ws1aa{word-spacing:1.905804px;}
.ws57{word-spacing:1.923840px;}
.ws1b6{word-spacing:1.947888px;}
.wsd5{word-spacing:1.977948px;}
.wsdb{word-spacing:1.995984px;}
.ws5c{word-spacing:2.146284px;}
.ws1a8{word-spacing:2.170332px;}
.ws116{word-spacing:2.176344px;}
.ws17{word-spacing:2.200392px;}
.ws9b{word-spacing:2.212416px;}
.ws11b{word-spacing:2.230452px;}
.ws9c{word-spacing:2.248488px;}
.ws11c{word-spacing:2.266524px;}
.ws17f{word-spacing:2.332656px;}
.ws13a{word-spacing:2.356704px;}
.ws132{word-spacing:2.452896px;}
.ws131{word-spacing:2.507004px;}
.ws102{word-spacing:2.525040px;}
.wsbf{word-spacing:2.531052px;}
.ws9e{word-spacing:2.537064px;}
.ws154{word-spacing:2.561112px;}
.ws2a{word-spacing:2.585160px;}
.ws2b{word-spacing:2.597184px;}
.ws196{word-spacing:2.608200px;}
.ws153{word-spacing:2.609208px;}
.ws155{word-spacing:2.621232px;}
.ws29{word-spacing:2.645280px;}
.ws197{word-spacing:2.656800px;}
.ws195{word-spacing:2.673000px;}
.ws9d{word-spacing:2.681352px;}
.ws1b3{word-spacing:2.687364px;}
.ws8b{word-spacing:2.693376px;}
.ws12{word-spacing:2.699388px;}
.ws13{word-spacing:2.723436px;}
.ws1b5{word-spacing:2.765520px;}
.ws66{word-spacing:2.873736px;}
.wsd9{word-spacing:2.879748px;}
.ws156{word-spacing:2.951892px;}
.ws167{word-spacing:2.957904px;}
.ws166{word-spacing:2.963916px;}
.ws111{word-spacing:2.981952px;}
.ws157{word-spacing:3.006000px;}
.ws1b4{word-spacing:3.054096px;}
.ws110{word-spacing:3.072132px;}
.ws135{word-spacing:3.144276px;}
.ws115{word-spacing:3.258504px;}
.ws134{word-spacing:3.336660px;}
.ws194{word-spacing:3.385903px;}
.ws186{word-spacing:3.408804px;}
.ws118{word-spacing:3.414816px;}
.ws38{word-spacing:3.438864px;}
.ws39{word-spacing:3.444876px;}
.ws133{word-spacing:3.462912px;}
.ws37{word-spacing:3.480948px;}
.wsdd{word-spacing:3.583152px;}
.ws13b{word-spacing:3.601188px;}
.wsd0{word-spacing:3.613212px;}
.wsef{word-spacing:3.625236px;}
.ws61{word-spacing:3.667320px;}
.wsf0{word-spacing:3.697380px;}
.wsee{word-spacing:3.709404px;}
.ws62{word-spacing:3.727440px;}
.ws63{word-spacing:3.745476px;}
.ws64{word-spacing:3.769524px;}
.wsde{word-spacing:3.943872px;}
.ws20{word-spacing:3.955896px;}
.ws9f{word-spacing:3.967920px;}
.ws10e{word-spacing:3.979944px;}
.wsce{word-spacing:4.028040px;}
.ws1ba{word-spacing:4.070124px;}
.ws1bb{word-spacing:4.082148px;}
.wsc4{word-spacing:4.118220px;}
.wsc5{word-spacing:4.136256px;}
.wsdc{word-spacing:4.154292px;}
.ws14e{word-spacing:4.340664px;}
.ws13f{word-spacing:4.370724px;}
.ws150{word-spacing:4.400784px;}
.ws13d{word-spacing:4.418820px;}
.ws13e{word-spacing:4.424832px;}
.ws14f{word-spacing:4.430844px;}
.wsd2{word-spacing:4.515012px;}
.ws119{word-spacing:4.551084px;}
.wsd3{word-spacing:4.557096px;}
.ws87{word-spacing:4.659300px;}
.ws6e{word-spacing:4.665312px;}
.ws15e{word-spacing:4.677336px;}
.ws159{word-spacing:4.701384px;}
.ws162{word-spacing:4.707396px;}
.ws6f{word-spacing:4.773528px;}
.ws86{word-spacing:4.881744px;}
.ws83{word-spacing:4.911804px;}
.ws84{word-spacing:4.923828px;}
.ws88{word-spacing:4.941864px;}
.ws85{word-spacing:4.947876px;}
.ws160{word-spacing:5.134248px;}
.ws161{word-spacing:5.140260px;}
.wsa5{word-spacing:5.218416px;}
.wsa6{word-spacing:5.224428px;}
.wsa8{word-spacing:5.410800px;}
.ws14{word-spacing:5.416812px;}
.wscf{word-spacing:5.458896px;}
.wse0{word-spacing:5.476932px;}
.wsdf{word-spacing:5.555088px;}
.ws55{word-spacing:5.609196px;}
.ws11f{word-spacing:5.759496px;}
.ws21{word-spacing:5.801580px;}
.ws120{word-spacing:5.825628px;}
.ws22{word-spacing:5.873724px;}
.ws7f{word-spacing:5.957892px;}
.ws33{word-spacing:5.975928px;}
.ws23{word-spacing:5.981940px;}
.ws121{word-spacing:5.987952px;}
.wsff{word-spacing:6.072120px;}
.ws96{word-spacing:6.090156px;}
.wsfe{word-spacing:6.114204px;}
.ws1ab{word-spacing:6.138252px;}
.ws98{word-spacing:6.210396px;}
.ws99{word-spacing:6.216408px;}
.ws97{word-spacing:6.234444px;}
.ws100{word-spacing:6.300576px;}
.ws16{word-spacing:6.474924px;}
.wsc8{word-spacing:6.492960px;}
.ws3a{word-spacing:6.535044px;}
.ws3b{word-spacing:6.565104px;}
.ws3c{word-spacing:6.613200px;}
.ws140{word-spacing:6.619212px;}
.ws185{word-spacing:6.835644px;}
.ws67{word-spacing:7.040052px;}
.ws68{word-spacing:7.070112px;}
.ws123{word-spacing:7.208388px;}
.wsca{word-spacing:7.226424px;}
.ws1ad{word-spacing:7.232436px;}
.wscb{word-spacing:7.256484px;}
.ws1ac{word-spacing:7.268508px;}
.wsc9{word-spacing:7.292556px;}
.ws1ae{word-spacing:7.334640px;}
.ws158{word-spacing:7.551072px;}
.ws1c6{word-spacing:7.623216px;}
.ws95{word-spacing:7.899768px;}
.ws54{word-spacing:7.911792px;}
.ws1a7{word-spacing:7.917804px;}
.wsd7{word-spacing:7.929828px;}
.ws94{word-spacing:7.971912px;}
.ws163{word-spacing:8.007984px;}
.ws1c5{word-spacing:8.032032px;}
.ws1c4{word-spacing:8.086140px;}
.ws93{word-spacing:8.110188px;}
.ws164{word-spacing:8.128224px;}
.ws69{word-spacing:8.236440px;}
.ws92{word-spacing:8.302572px;}
.ws2c{word-spacing:8.332632px;}
.ws2d{word-spacing:8.344656px;}
.ws91{word-spacing:8.446860px;}
.ws6a{word-spacing:8.464896px;}
.ws8d{word-spacing:8.663292px;}
.ws8e{word-spacing:8.825616px;}
.ws41{word-spacing:9.078120px;}
.ws40{word-spacing:9.174312px;}
.ws42{word-spacing:9.186336px;}
.ws15b{word-spacing:9.360684px;}
.ws1ca{word-spacing:9.414792px;}
.ws19d{word-spacing:9.455400px;}
.ws1cb{word-spacing:9.456876px;}
.ws19b{word-spacing:9.471600px;}
.ws19c{word-spacing:9.541800px;}
.ws1c0{word-spacing:9.577116px;}
.ws1af{word-spacing:9.721404px;}
.ws1c9{word-spacing:9.829620px;}
.ws1c8{word-spacing:9.853668px;}
.ws113{word-spacing:9.943848px;}
.ws112{word-spacing:9.949860px;}
.ws60{word-spacing:10.094148px;}
.ws168{word-spacing:10.442844px;}
.ws3d{word-spacing:10.454868px;}
.ws1e{word-spacing:10.521000px;}
.ws3e{word-spacing:10.527012px;}
.ws3f{word-spacing:10.623204px;}
.wsd4{word-spacing:10.785528px;}
.ws10f{word-spacing:10.803564px;}
.ws1c{word-spacing:10.887732px;}
.ws1f{word-spacing:10.893744px;}
.ws1d{word-spacing:10.911780px;}
.ws165{word-spacing:11.007972px;}
.ws12e{word-spacing:11.116188px;}
.ws89{word-spacing:11.176308px;}
.ws12f{word-spacing:11.212380px;}
.ws12d{word-spacing:11.242440px;}
.ws130{word-spacing:11.260476px;}
.ws1bd{word-spacing:11.741436px;}
.ws15c{word-spacing:11.963880px;}
.ws15d{word-spacing:11.975904px;}
.ws2f{word-spacing:12.036024px;}
.ws2e{word-spacing:12.060072px;}
.ws126{word-spacing:12.258468px;}
.ws103{word-spacing:12.595140px;}
.ws34{word-spacing:12.613176px;}
.ws35{word-spacing:12.697344px;}
.ws36{word-spacing:12.721392px;}
.wsd1{word-spacing:12.781512px;}
.ws11a{word-spacing:13.316580px;}
.ws1b8{word-spacing:13.683312px;}
.wsc6{word-spacing:13.887720px;}
.wsa7{word-spacing:14.038020px;}
.ws9a{word-spacing:14.056056px;}
.wsd8{word-spacing:14.404752px;}
.ws26{word-spacing:15.288516px;}
.ws25{word-spacing:15.378696px;}
.ws127{word-spacing:15.835608px;}
.ws1b{word-spacing:15.895728px;}
.ws1a{word-spacing:15.913764px;}
.ws19{word-spacing:15.949836px;}
.ws128{word-spacing:15.955848px;}
.ws1c3{word-spacing:16.989912px;}
.ws1c2{word-spacing:17.007948px;}
.ws1c1{word-spacing:17.025984px;}
.wsa4{word-spacing:19.070064px;}
.wsa3{word-spacing:19.238400px;}
.wse1{word-spacing:20.855102px;}
.wse{word-spacing:22.346604px;}
.ws10{word-spacing:22.466844px;}
.wsf{word-spacing:22.911732px;}
.wsb4{word-spacing:45.706294px;}
.wsb6{word-spacing:59.835000px;}
.wsad{word-spacing:65.139365px;}
.ws70{word-spacing:91.823711px;}
.ws143{word-spacing:144.016092px;}
.ws144{word-spacing:147.976092px;}
.wse8{word-spacing:265.370972px;}
.ws176{word-spacing:304.780140px;}
.ws79{word-spacing:321.136609px;}
.wseb{word-spacing:334.131156px;}
.wsbd{word-spacing:334.178022px;}
.ws74{word-spacing:344.280940px;}
.wsb7{word-spacing:359.517500px;}
.ws19e{word-spacing:363.063600px;}
.ws187{word-spacing:384.307200px;}
.ws178{word-spacing:427.046508px;}
.wsaf{word-spacing:488.485757px;}
.ws72{word-spacing:499.166338px;}
.ws19f{word-spacing:500.941800px;}
.ws189{word-spacing:522.180000px;}
.ws10a{word-spacing:577.043950px;}
.wsba{word-spacing:593.849795px;}
.wsea{word-spacing:594.410972px;}
.wsbc{word-spacing:627.152417px;}
._11{margin-left:-923.875306px;}
._12{margin-left:-478.358880px;}
._59{margin-left:-384.102000px;}
._5e{margin-left:-362.896200px;}
._3c{margin-left:-345.473167px;}
._14{margin-left:-342.703794px;}
._18{margin-left:-333.770586px;}
._53{margin-left:-304.899840px;}
._49{margin-left:-295.576460px;}
._3b{margin-left:-279.644773px;}
._4{margin-left:-267.637474px;}
._3d{margin-left:-255.579639px;}
._7{margin-left:-241.889678px;}
._16{margin-left:-233.344038px;}
._46{margin-left:-215.148500px;}
._41{margin-left:-201.801798px;}
._17{margin-left:-199.700424px;}
._43{margin-left:-198.335880px;}
._1b{margin-left:-197.253720px;}
._42{margin-left:-194.088935px;}
._2b{margin-left:-182.468074px;}
._19{margin-left:-167.929902px;}
._3f{margin-left:-165.901942px;}
._47{margin-left:-160.806015px;}
._34{margin-left:-157.785556px;}
._4c{margin-left:-150.119640px;}
._3e{margin-left:-141.009456px;}
._40{margin-left:-136.692840px;}
._15{margin-left:-131.692776px;}
._45{margin-left:-129.148455px;}
._8{margin-left:-115.477310px;}
._9{margin-left:-110.511600px;}
._e{margin-left:-107.280000px;}
._13{margin-left:-105.325404px;}
._6{margin-left:-99.966590px;}
._5{margin-left:-98.880840px;}
._28{margin-left:-97.851636px;}
._1a{margin-left:-95.023398px;}
._d{margin-left:-92.880000px;}
._29{margin-left:-89.296906px;}
._c{margin-left:-85.968000px;}
._32{margin-left:-83.145919px;}
._33{margin-left:-81.708238px;}
._2a{margin-left:-79.426937px;}
._30{margin-left:-78.293744px;}
._b{margin-left:-69.264000px;}
._31{margin-left:-66.073450px;}
._3{margin-left:-60.164842px;}
._4b{margin-left:-54.720000px;}
._4a{margin-left:-53.028000px;}
._1f{margin-left:-15.150240px;}
._4e{margin-left:-5.290560px;}
._52{margin-left:-3.835804px;}
._51{margin-left:-2.348544px;}
._2{margin-left:-1.022040px;}
._0{width:1.202400px;}
._50{width:2.963916px;}
._2c{width:4.168440px;}
._39{width:16.232400px;}
._22{width:26.272440px;}
._21{width:31.142160px;}
._4f{width:36.853560px;}
._1d{width:39.739320px;}
._1e{width:43.406640px;}
._4d{width:61.623000px;}
._26{width:64.809360px;}
._20{width:67.214160px;}
._1c{width:75.570840px;}
._2f{width:86.693040px;}
._2e{width:132.865200px;}
._44{width:138.937320px;}
._36{width:157.815000px;}
._f{width:159.702115px;}
._10{width:166.645685px;}
._27{width:171.342000px;}
._58{width:174.004884px;}
._48{width:182.163600px;}
._a{width:196.832880px;}
._24{width:198.095400px;}
._2d{width:272.800512px;}
._35{width:349.622791px;}
._1{width:376.357212px;}
._37{width:391.856148px;}
._5f{width:401.025600px;}
._25{width:409.717800px;}
._23{width:412.272900px;}
._61{width:523.526040px;}
._54{width:587.114136px;}
._38{width:597.749112px;}
._5b{width:599.642544px;}
._3a{width:622.091700px;}
._60{width:642.856680px;}
._62{width:665.362440px;}
._5c{width:674.002440px;}
._5a{width:716.376240px;}
._56{width:757.145592px;}
._57{width:823.023684px;}
._55{width:861.184044px;}
._63{width:917.643600px;}
._5d{width:926.283600px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2d{font-size:23.519400px;}
.fs2b{font-size:29.880000px;}
.fs2f{font-size:31.048800px;}
.fs2c{font-size:33.972000px;}
.fs28{font-size:35.206800px;}
.fs18{font-size:35.942400px;}
.fs1d{font-size:35.971800px;}
.fs23{font-size:35.974800px;}
.fs1a{font-size:35.979000px;}
.fsa{font-size:36.000000px;}
.fs15{font-size:36.032400px;}
.fsc{font-size:38.046952px;}
.fs13{font-size:38.880000px;}
.fs29{font-size:41.245200px;}
.fs10{font-size:42.024000px;}
.fs9{font-size:43.200000px;}
.fs2e{font-size:44.846400px;}
.fs5{font-size:46.531200px;}
.fs2a{font-size:47.880000px;}
.fs7{font-size:49.177441px;}
.fs26{font-size:53.121000px;}
.fs2{font-size:54.000000px;}
.fs27{font-size:58.713600px;}
.fs17{font-size:59.903400px;}
.fs0{font-size:60.120000px;}
.fs12{font-size:63.539045px;}
.fs1{font-size:65.880000px;}
.fs1e{font-size:71.943600px;}
.fs22{font-size:71.949000px;}
.fs1b{font-size:71.958000px;}
.fsb{font-size:72.000000px;}
.fs11{font-size:72.042000px;}
.fs14{font-size:72.064800px;}
.fs1f{font-size:76.034908px;}
.fs24{font-size:76.040794px;}
.fs20{font-size:76.094487px;}
.fs6{font-size:77.553600px;}
.fse{font-size:95.117400px;}
.fs8{font-size:97.650000px;}
.fs3{font-size:105.181800px;}
.fs19{font-size:107.827200px;}
.fs1c{font-size:107.916000px;}
.fs21{font-size:107.925600px;}
.fs25{font-size:108.000000px;}
.fsf{font-size:108.063600px;}
.fs16{font-size:108.097200px;}
.fsd{font-size:129.600000px;}
.fs4{font-size:139.597200px;}
.y0{bottom:0.000000px;}
.ye6{bottom:3.960450px;}
.yeb{bottom:5.940450px;}
.yec{bottom:91.920450px;}
.yea{bottom:97.500000px;}
.yee{bottom:103.171257px;}
.ye9{bottom:103.440450px;}
.yed{bottom:107.580450px;}
.y1a5{bottom:111.156600px;}
.yaa{bottom:113.879910px;}
.y177{bottom:114.315690px;}
.y15a{bottom:114.846240px;}
.y202{bottom:118.817340px;}
.y287{bottom:121.241730px;}
.y58{bottom:123.648600px;}
.y24b{bottom:127.105950px;}
.y1a4{bottom:128.441100px;}
.y11e{bottom:128.550450px;}
.ya9{bottom:131.074230px;}
.y34{bottom:134.554260px;}
.y286{bottom:138.436050px;}
.y11d{bottom:140.070450px;}
.y176{bottom:140.497950px;}
.y57{bottom:140.842920px;}
.y159{bottom:141.118680px;}
.y120{bottom:142.049994px;}
.y24a{bottom:142.671450px;}
.y201{bottom:145.089780px;}
.y1a3{bottom:145.635420px;}
.y121{bottom:146.550450px;}
.y1f5{bottom:150.960600px;}
.y1f6{bottom:154.289856px;}
.y11f{bottom:154.560230px;}
.y285{bottom:155.720550px;}
.y1e4{bottom:156.270450px;}
.y1ea{bottom:156.900450px;}
.ya8{bottom:157.346670px;}
.y175{bottom:157.782450px;}
.y56{bottom:158.127420px;}
.y24c{bottom:158.155950px;}
.ybe{bottom:160.154940px;}
.y33{bottom:160.916880px;}
.y1a2{bottom:164.092260px;}
.y1e5{bottom:164.730450px;}
.y158{bottom:167.391120px;}
.y1eb{bottom:168.600450px;}
.y200{bottom:171.272040px;}
.y284{bottom:173.005050px;}
.y1e6{bottom:173.190450px;}
.y248{bottom:174.450450px;}
.y174{bottom:174.976770px;}
.y55{bottom:175.411920px;}
.y32{bottom:178.201380px;}
.y1ec{bottom:179.760450px;}
.y1a1{bottom:181.286580px;}
.y1e7{bottom:181.740450px;}
.ya7{bottom:183.619110px;}
.y90{bottom:183.634140px;}
.y157{bottom:184.585440px;}
.ybd{bottom:186.427380px;}
.y247{bottom:190.015950px;}
.y283{bottom:190.199370px;}
.y1e8{bottom:190.830450px;}
.y173{bottom:192.261270px;}
.y54{bottom:192.606240px;}
.y31{bottom:195.485880px;}
.y1ff{bottom:197.544480px;}
.y1a0{bottom:198.571080px;}
.y1e9{bottom:199.380450px;}
.y11c{bottom:199.736130px;}
.ya6{bottom:200.813430px;}
.y8f{bottom:200.828460px;}
.y156{bottom:201.869940px;}
.y1ed{bottom:201.990450px;}
.ye8{bottom:204.147783px;}
.ye0{bottom:204.150450px;}
.y246{bottom:205.230450px;}
.y249{bottom:205.500450px;}
.y282{bottom:207.483870px;}
.ye1{bottom:208.650450px;}
.y172{bottom:209.545770px;}
.y53{bottom:209.890740px;}
.y30{bottom:212.680200px;}
.y19f{bottom:215.855580px;}
.y11b{bottom:216.930450px;}
.y11a{bottom:216.936870px;}
.ya5{bottom:218.097930px;}
.y155{bottom:219.064260px;}
.y245{bottom:221.520450px;}
.ye7{bottom:222.690450px;}
.ye4{bottom:222.696682px;}
.y1ee{bottom:223.500450px;}
.y1fe{bottom:223.816920px;}
.y281{bottom:224.678190px;}
.y171{bottom:226.740090px;}
.y2f{bottom:229.964700px;}
.ye2{bottom:230.160600px;}
.ye5{bottom:230.700000px;}
.y19e{bottom:233.049900px;}
.ye3{bottom:234.659700px;}
.ya4{bottom:235.382430px;}
.y52{bottom:236.163180px;}
.y154{bottom:236.348760px;}
.y244{bottom:238.075950px;}
.y280{bottom:241.962690px;}
.y119{bottom:244.381650px;}
.y1fd{bottom:249.999180px;}
.y19d{bottom:250.334400px;}
.y170{bottom:253.012530px;}
.y153{bottom:253.633260px;}
.y1ef{bottom:254.190450px;}
.y2e{bottom:256.237140px;}
.y27f{bottom:259.247190px;}
.ybc{bottom:260.675580px;}
.ya3{bottom:261.564690px;}
.y51{bottom:262.345440px;}
.y243{bottom:263.280450px;}
.y19c{bottom:267.618900px;}
.y113{bottom:270.661530px;}
.y152{bottom:270.827580px;}
.y1f7{bottom:274.530450px;}
.y1fc{bottom:276.271620px;}
.y27e{bottom:276.441510px;}
.y16f{bottom:279.284970px;}
.y50{bottom:279.629940px;}
.y2d{bottom:282.419400px;}
.y1f0{bottom:284.970450px;}
.ybb{bottom:286.948020px;}
.ya2{bottom:287.837130px;}
.y242{bottom:287.850450px;}
.y8e{bottom:287.852160px;}
.y151{bottom:288.112080px;}
.y116{bottom:288.930450px;}
.y27d{bottom:293.726010px;}
.y19b{bottom:293.801160px;}
.y16e{bottom:296.479290px;}
.y4f{bottom:296.914440px;}
.y2c{bottom:299.703900px;}
.y114{bottom:300.450450px;}
.y118{bottom:302.429994px;}
.y1fb{bottom:302.544060px;}
.y241{bottom:303.334950px;}
.yba{bottom:304.142340px;}
.ydf{bottom:304.148310px;}
.ya1{bottom:305.031450px;}
.y8d{bottom:305.046480px;}
.y150{bottom:305.396580px;}
.y115{bottom:306.930450px;}
.y27c{bottom:311.010510px;}
.y16d{bottom:313.763790px;}
.y4e{bottom:314.108760px;}
.y117{bottom:314.940230px;}
.y1f1{bottom:315.660450px;}
.y2b{bottom:316.988400px;}
.y240{bottom:318.900450px;}
.y19a{bottom:320.070600px;}
.ya0{bottom:322.315950px;}
.y14f{bottom:322.598820px;}
.y27b{bottom:328.204830px;}
.y1fa{bottom:328.726320px;}
.yde{bottom:330.420750px;}
.y16c{bottom:331.048290px;}
.y4d{bottom:331.393260px;}
.y2a{bottom:334.182720px;}
.y23f{bottom:334.384950px;}
.y9f{bottom:339.582270px;}
.y14e{bottom:339.883320px;}
.y27a{bottom:345.489330px;}
.y1f2{bottom:346.350450px;}
.y18a{bottom:346.376100px;}
.y112{bottom:346.442790px;}
.y16b{bottom:348.242610px;}
.y4c{bottom:348.677760px;}
.y29{bottom:351.467220px;}
.y1f9{bottom:354.998760px;}
.yb9{bottom:356.612070px;}
.y9e{bottom:356.776590px;}
.y23e{bottom:358.954950px;}
.y279{bottom:362.773830px;}
.y16a{bottom:365.527110px;}
.y4b{bottom:365.872080px;}
.y1f3{bottom:366.597762px;}
.y191{bottom:366.780450px;}
.y28{bottom:368.661540px;}
.y192{bottom:370.565321px;}
.y1f4{bottom:372.270450px;}
.y111{bottom:372.625050px;}
.ydd{bottom:373.440450px;}
.y9d{bottom:374.061090px;}
.y14d{bottom:374.978370px;}
.y278{bottom:379.968150px;}
.y1f8{bottom:381.271200px;}
.y169{bottom:382.811610px;}
.y4a{bottom:383.156580px;}
.y228{bottom:383.470950px;}
.ydc{bottom:386.130150px;}
.ydb{bottom:389.820450px;}
.y110{bottom:389.909550px;}
.y199{bottom:391.329810px;}
.y9c{bottom:391.345590px;}
.y18b{bottom:394.410450px;}
.y27{bottom:394.933980px;}
.y277{bottom:397.252650px;}
.y168{bottom:400.005930px;}
.y49{bottom:400.443960px;}
.y14c{bottom:401.340990px;}
.y10f{bottom:407.114490px;}
.y1e3{bottom:407.474460px;}
.y227{bottom:408.040950px;}
.y198{bottom:408.797106px;}
.y23b{bottom:413.490450px;}
.y276{bottom:414.537150px;}
.y167{bottom:417.290430px;}
.y9b{bottom:417.527850px;}
.y48{bottom:417.638280px;}
.y23c{bottom:417.806916px;}
.y229{bottom:420.420450px;}
.y26{bottom:421.206420px;}
.y22f{bottom:421.230450px;}
.y1e2{bottom:424.758960px;}
.y197{bottom:425.633231px;}
.yb8{bottom:426.456480px;}
.y14b{bottom:427.613430px;}
.y275{bottom:431.731470px;}
.y226{bottom:432.516450px;}
.y18c{bottom:432.840600px;}
.y10e{bottom:433.206570px;}
.y166{bottom:434.574930px;}
.y25{bottom:438.400740px;}
.y22d{bottom:438.508314px;}
.y22a{bottom:439.410600px;}
.y196{bottom:442.014325px;}
.y1e1{bottom:442.043460px;}
.yda{bottom:443.725950px;}
.y9a{bottom:443.800290px;}
.y8c{bottom:443.815320px;}
.y14a{bottom:444.897930px;}
.y22e{bottom:446.070450px;}
.y230{bottom:446.250450px;}
.y18d{bottom:446.790600px;}
.y274{bottom:449.015970px;}
.y10d{bottom:450.491070px;}
.y233{bottom:451.466623px;}
.y165{bottom:451.769250px;}
.y47{bottom:452.733330px;}
.y24{bottom:455.685240px;}
.y225{bottom:457.086450px;}
.y22b{bottom:458.310450px;}
.y195{bottom:458.850450px;}
.y234{bottom:459.030600px;}
.yd9{bottom:460.984350px;}
.yb7{bottom:461.010450px;}
.y99{bottom:461.084790px;}
.y8b{bottom:461.099820px;}
.y149{bottom:462.092250px;}
.y273{bottom:466.300470px;}
.y1e0{bottom:468.225720px;}
.y164{bottom:469.053750px;}
.y231{bottom:471.270600px;}
.y23{bottom:472.969740px;}
.y10c{bottom:476.853690px;}
.y22c{bottom:477.300450px;}
.y98{bottom:478.279110px;}
.y46{bottom:479.095950px;}
.y148{bottom:479.376750px;}
.y224{bottom:481.561950px;}
.y272{bottom:483.494790px;}
.yd8{bottom:487.166610px;}
.y18e{bottom:489.090600px;}
.y22{bottom:490.164060px;}
.y1df{bottom:494.498160px;}
.y163{bottom:495.326190px;}
.y97{bottom:495.563610px;}
.y232{bottom:496.290600px;}
.y147{bottom:496.661250px;}
.y271{bottom:500.779290px;}
.y10b{bottom:503.126130px;}
.y45{bottom:505.368390px;}
.y223{bottom:506.037450px;}
.y21{bottom:507.448560px;}
.y235{bottom:509.250600px;}
.y194{bottom:509.343934px;}
.y96{bottom:512.848110px;}
.yb6{bottom:513.484140px;}
.y146{bottom:513.855570px;}
.y270{bottom:518.063790px;}
.y10a{bottom:520.333410px;}
.y1de{bottom:520.770600px;}
.y162{bottom:521.508450px;}
.y44{bottom:522.652890px;}
.y193{bottom:524.377177px;}
.y95{bottom:530.042430px;}
.y222{bottom:530.607450px;}
.y18f{bottom:532.380450px;}
.yc1{bottom:532.740450px;}
.y20{bottom:533.721000px;}
.yc0{bottom:534.718118px;}
.y26f{bottom:535.258110px;}
.y1dc{bottom:538.244760px;}
.ybf{bottom:539.220450px;}
.y43{bottom:539.847210px;}
.y145{bottom:539.947650px;}
.y236{bottom:541.110450px;}
.y94{bottom:547.326930px;}
.y109{bottom:547.778190px;}
.y161{bottom:547.780890px;}
.y23d{bottom:549.840450px;}
.y1db{bottom:552.010260px;}
.y26e{bottom:552.542610px;}
.y221{bottom:555.082950px;}
.y42{bottom:557.131710px;}
.y1f{bottom:559.903260px;}
.y1da{bottom:565.500450px;}
.y1dd{bottom:565.787730px;}
.y144{bottom:566.395680px;}
.y26d{bottom:569.736930px;}
.y93{bottom:573.599370px;}
.y237{bottom:573.960450px;}
.y160{bottom:573.961650px;}
.y108{bottom:573.965850px;}
.y41{bottom:574.416210px;}
.y190{bottom:575.040450px;}
.y1e{bottom:577.187760px;}
.y220{bottom:579.652950px;}
.y1d8{bottom:580.356750px;}
.y143{bottom:583.597500px;}
.y26c{bottom:587.021430px;}
.yb5{bottom:587.912700px;}
.y40{bottom:591.610530px;}
.y1d7{bottom:594.122250px;}
.y1d{bottom:594.472260px;}
.y8a{bottom:599.781630px;}
.y107{bottom:601.325850px;}
.y21f{bottom:604.128450px;}
.y26b{bottom:604.305930px;}
.y238{bottom:606.720450px;}
.y1d6{bottom:606.810450px;}
.y1d9{bottom:607.983510px;}
.y3f{bottom:608.895030px;}
.y142{bottom:610.952100px;}
.y1c{bottom:611.666580px;}
.yd7{bottom:614.155080px;}
.yb4{bottom:614.185140px;}
.y89{bottom:617.066130px;}
.y26a{bottom:621.319890px;}
.y1d4{bottom:622.476750px;}
.y106{bottom:628.685670px;}
.y21e{bottom:628.698450px;}
.y1b{bottom:628.951080px;}
.yd6{bottom:631.349400px;}
.yb3{bottom:631.379460px;}
.y92{bottom:634.260450px;}
.y91{bottom:634.263600px;}
.y3e{bottom:635.167470px;}
.y1d3{bottom:636.242250px;}
.y13a{bottom:637.247100px;}
.y239{bottom:638.580450px;}
.y269{bottom:638.604390px;}
.y1a{bottom:646.205880px;}
.yd5{bottom:648.633900px;}
.y1d2{bottom:648.930450px;}
.y1d5{bottom:650.103510px;}
.y87{bottom:652.707180px;}
.y21d{bottom:653.173950px;}
.y141{bottom:655.320450px;}
.y268{bottom:656.069250px;}
.y105{bottom:656.135850px;}
.y13c{bottom:659.820450px;}
.y3d{bottom:661.358760px;}
.y1d0{bottom:664.599000px;}
.yd4{bottom:665.918400px;}
.y140{bottom:667.469576px;}
.y13b{bottom:669.630450px;}
.y88{bottom:669.901440px;}
.y86{bottom:669.901500px;}
.y23a{bottom:671.340450px;}
.y13e{bottom:671.970450px;}
.y21c{bottom:677.743950px;}
.y13f{bottom:678.450450px;}
.y1cf{bottom:678.460260px;}
.y13d{bottom:678.990000px;}
.y19{bottom:681.210750px;}
.y267{bottom:682.251510px;}
.y104{bottom:683.495850px;}
.y189{bottom:684.596190px;}
.y7b{bottom:687.448146px;}
.y3c{bottom:687.631200px;}
.y81{bottom:688.412989px;}
.y7e{bottom:688.431000px;}
.y85{bottom:690.610270px;}
.yd3{bottom:691.920300px;}
.y1ce{bottom:691.950450px;}
.y1d1{bottom:692.225760px;}
.y266{bottom:699.536010px;}
.y79{bottom:700.500450px;}
.y188{bottom:701.790510px;}
.y21b{bottom:702.219450px;}
.y80{bottom:703.181599px;}
.y7d{bottom:703.199610px;}
.y83{bottom:704.604429px;}
.y7c{bottom:704.640450px;}
.y78{bottom:704.730450px;}
.y1cd{bottom:706.530450px;}
.y103{bottom:710.855850px;}
.y29d{bottom:711.391350px;}
.y82{bottom:714.690309px;}
.y7f{bottom:714.708319px;}
.y84{bottom:716.077117px;}
.y265{bottom:716.640150px;}
.yd2{bottom:718.373100px;}
.yb2{bottom:718.403160px;}
.y187{bottom:719.075010px;}
.y1cc{bottom:721.290450px;}
.y139{bottom:721.580430px;}
.y7a{bottom:723.000450px;}
.y18{bottom:725.669490px;}
.y21a{bottom:726.789450px;}
.y29c{bottom:728.675850px;}
.yd1{bottom:735.657600px;}
.yb1{bottom:735.687660px;}
.y186{bottom:736.269330px;}
.y102{bottom:738.215850px;}
.y264{bottom:742.822410px;}
.y17{bottom:742.953990px;}
.y1cb{bottom:745.408890px;}
.y29b{bottom:746.050530px;}
.y138{bottom:747.762690px;}
.y219{bottom:751.264950px;}
.yd0{bottom:752.851920px;}
.y185{bottom:753.553830px;}
.y77{bottom:755.226750px;}
.y16{bottom:760.148310px;}
.y29a{bottom:763.335030px;}
.y137{bottom:765.047190px;}
.y101{bottom:765.570450px;}
.y263{bottom:769.275210px;}
.ycf{bottom:770.136420px;}
.y184{bottom:770.838330px;}
.y1ca{bottom:771.681330px;}
.y218{bottom:775.834950px;}
.y15{bottom:777.432810px;}
.y299{bottom:780.619530px;}
.y76{bottom:781.499190px;}
.yce{bottom:787.420920px;}
.y1c9{bottom:788.875650px;}
.y136{bottom:791.319630px;}
.y100{bottom:792.930450px;}
.y14{bottom:794.627130px;}
.y262{bottom:795.547650px;}
.y183{bottom:796.840230px;}
.y298{bottom:797.813850px;}
.y75{bottom:798.693510px;}
.y217{bottom:800.310450px;}
.ycd{bottom:804.615240px;}
.y1c8{bottom:806.160150px;}
.y13{bottom:811.911630px;}
.y261{bottom:812.741970px;}
.y297{bottom:815.098350px;}
.y74{bottom:815.978010px;}
.y215{bottom:816.600450px;}
.y135{bottom:817.501950px;}
.yff{bottom:820.385850px;}
.y182{bottom:823.112670px;}
.y1c7{bottom:828.930600px;}
.y12{bottom:829.196130px;}
.y260{bottom:830.026470px;}
.ycc{bottom:830.887680px;}
.y213{bottom:831.895950px;}
.y214{bottom:832.165950px;}
.y296{bottom:832.382850px;}
.y131{bottom:836.580450px;}
.y1b4{bottom:840.540600px;}
.y130{bottom:842.160000px;}
.y73{bottom:842.160300px;}
.y1c4{bottom:842.520450px;}
.y1b5{bottom:843.964461px;}
.y1a6{bottom:845.940450px;}
.y11{bottom:846.390450px;}
.y1c5{bottom:846.479989px;}
.y1ab{bottom:846.660450px;}
.y25f{bottom:847.310970px;}
.y212{bottom:847.380450px;}
.y216{bottom:847.650450px;}
.yfe{bottom:847.740450px;}
.y134{bottom:847.741486px;}
.y1b7{bottom:848.820450px;}
.y181{bottom:849.565470px;}
.y295{bottom:849.577170px;}
.y1bb{bottom:849.630450px;}
.y132{bottom:852.240450px;}
.y1a7{bottom:856.830450px;}
.ycb{bottom:857.160120px;}
.yb0{bottom:857.190180px;}
.y133{bottom:860.343818px;}
.y1ac{bottom:861.510450px;}
.y6a{bottom:861.514050px;}
.y10{bottom:863.450130px;}
.y210{bottom:863.935950px;}
.y25e{bottom:864.505290px;}
.y71{bottom:864.750450px;}
.y1b8{bottom:866.280450px;}
.y294{bottom:866.861670px;}
.y6d{bottom:867.180450px;}
.y15f{bottom:867.468990px;}
.y1a8{bottom:868.350450px;}
.y1bc{bottom:872.670450px;}
.yca{bottom:874.354440px;}
.yaf{bottom:874.384500px;}
.yfd{bottom:875.121060px;}
.y6f{bottom:875.280450px;}
.y180{bottom:875.747730px;}
.y1ad{bottom:876.450450px;}
.y1a9{bottom:879.150450px;}
.y20f{bottom:879.501450px;}
.y70{bottom:879.960450px;}
.yf{bottom:880.914990px;}
.y6c{bottom:881.220450px;}
.y67{bottom:881.310450px;}
.y25d{bottom:881.789790px;}
.y1b9{bottom:883.740450px;}
.y293{bottom:884.146170px;}
.y15e{bottom:884.663310px;}
.y68{bottom:886.980450px;}
.y1aa{bottom:890.670450px;}
.y12f{bottom:891.058710px;}
.y72{bottom:891.480450px;}
.yc9{bottom:891.638940px;}
.y6e{bottom:892.560450px;}
.y17f{bottom:893.032230px;}
.y20e{bottom:893.730450px;}
.y211{bottom:894.985950px;}
.y1bd{bottom:895.620450px;}
.ye{bottom:898.109310px;}
.y25c{bottom:899.074290px;}
.y1ba{bottom:901.200450px;}
.y292{bottom:901.340490px;}
.y69{bottom:901.830450px;}
.yfc{bottom:902.565840px;}
.y1ae{bottom:905.520450px;}
.y6b{bottom:907.410450px;}
.yc8{bottom:908.923440px;}
.y17e{bottom:910.316730px;}
.y15d{bottom:910.935750px;}
.y20c{bottom:911.275950px;}
.yd{bottom:915.393810px;}
.y1af{bottom:915.690450px;}
.y25b{bottom:916.268610px;}
.y12e{bottom:917.331150px;}
.y291{bottom:918.624990px;}
.y1be{bottom:918.660450px;}
.yc7{bottom:926.117760px;}
.y20b{bottom:926.841450px;}
.yfb{bottom:928.748100px;}
.y1bf{bottom:930.540600px;}
.yc{bottom:932.678310px;}
.y290{bottom:935.909490px;}
.y17d{bottom:936.498990px;}
.y15c{bottom:937.208190px;}
.y20a{bottom:941.070450px;}
.y20d{bottom:942.325950px;}
.y25a{bottom:942.541050px;}
.y66{bottom:942.981510px;}
.yc6{bottom:943.402260px;}
.y12d{bottom:943.513410px;}
.yfa{bottom:945.942420px;}
.y1b0{bottom:947.550450px;}
.yb{bottom:949.872630px;}
.y28f{bottom:953.103810px;}
.y208{bottom:958.620450px;}
.yc5{bottom:960.596580px;}
.y17c{bottom:962.771430px;}
.y15b{bottom:963.390450px;}
.ya{bottom:967.157130px;}
.y1c0{bottom:967.800450px;}
.y1b6{bottom:967.890450px;}
.y259{bottom:968.542950px;}
.y65{bottom:969.163770px;}
.y12c{bottom:969.781350px;}
.y28e{bottom:970.388310px;}
.yf9{bottom:973.387200px;}
.y207{bottom:974.104950px;}
.yc4{bottom:977.881080px;}
.y1b1{bottom:979.320450px;}
.y9{bottom:984.441630px;}
.y125{bottom:987.510450px;}
.y28d{bottom:987.582630px;}
.y206{bottom:989.400450px;}
.y209{bottom:989.670450px;}
.y17b{bottom:990.126030px;}
.y1c6{bottom:991.740450px;}
.y127{bottom:992.010450px;}
.y258{bottom:994.815390px;}
.yc3{bottom:995.161170px;}
.y63{bottom:995.430150px;}
.y64{bottom:995.436210px;}
.yf8{bottom:999.661200px;}
.y8{bottom:1001.635950px;}
.y28c{bottom:1004.867130px;}
.y1c1{bottom:1005.060450px;}
.y205{bottom:1005.690450px;}
.y129{bottom:1006.050450px;}
.y12b{bottom:1006.058492px;}
.y1b2{bottom:1011.180450px;}
.y126{bottom:1013.523267px;}
.y128{bottom:1014.060000px;}
.y5f{bottom:1014.065948px;}
.y17a{bottom:1017.410070px;}
.yf5{bottom:1017.750450px;}
.y12a{bottom:1018.020013px;}
.y7{bottom:1018.902990px;}
.y257{bottom:1021.268190px;}
.y3b{bottom:1021.333260px;}
.y28b{bottom:1022.151630px;}
.y204{bottom:1022.160450px;}
.yf2{bottom:1022.250450px;}
.y5d{bottom:1028.910450px;}
.yf7{bottom:1029.899576px;}
.yae{bottom:1030.155510px;}
.yf1{bottom:1032.060450px;}
.yf4{bottom:1034.400450px;}
.y6{bottom:1036.187490px;}
.y61{bottom:1038.270450px;}
.y5c{bottom:1038.360450px;}
.y3a{bottom:1038.617760px;}
.y28a{bottom:1039.345950px;}
.yf6{bottom:1040.880450px;}
.yf3{bottom:1041.420000px;}
.y1c2{bottom:1042.410450px;}
.y1b3{bottom:1043.040450px;}
.y179{bottom:1044.764670px;}
.y62{bottom:1047.000450px;}
.y60{bottom:1047.010038px;}
.y256{bottom:1047.450450px;}
.y203{bottom:1047.620370px;}
.yc2{bottom:1047.630900px;}
.y5{bottom:1053.381810px;}
.y39{bottom:1055.902260px;}
.y289{bottom:1056.621630px;}
.y5e{bottom:1063.470450px;}
.y124{bottom:1064.925750px;}
.y254{bottom:1065.360450px;}
.y4{bottom:1070.666310px;}
.y178{bottom:1072.029090px;}
.y38{bottom:1073.096580px;}
.yad{bottom:1073.892810px;}
.y288{bottom:1073.906130px;}
.y1c3{bottom:1079.670450px;}
.y252{bottom:1080.574950px;}
.y253{bottom:1080.844950px;}
.y3{bottom:1087.770450px;}
.y37{bottom:1090.381080px;}
.yf0{bottom:1090.395750px;}
.yac{bottom:1091.087130px;}
.y123{bottom:1091.108010px;}
.y251{bottom:1096.140450px;}
.y255{bottom:1096.410450px;}
.y5b{bottom:1099.383690px;}
.y36{bottom:1107.665580px;}
.yab{bottom:1108.371630px;}
.y24f{bottom:1112.605950px;}
.yef{bottom:1116.668190px;}
.y122{bottom:1117.380450px;}
.y2{bottom:1123.320450px;}
.y5a{bottom:1125.656130px;}
.y24e{bottom:1128.171450px;}
.y24d{bottom:1142.400450px;}
.y35{bottom:1142.670450px;}
.y59{bottom:1142.850450px;}
.y250{bottom:1143.655950px;}
.y1{bottom:1215.210450px;}
.h5e{height:17.340964px;}
.h3b{height:21.510000px;}
.h33{height:21.960000px;}
.h66{height:22.892426px;}
.h5d{height:25.047715px;}
.h57{height:25.958139px;}
.h35{height:29.610000px;}
.h58{height:30.410279px;}
.h65{height:33.065461px;}
.h2e{height:33.292350px;}
.h36{height:33.319582px;}
.h4d{height:33.345703px;}
.h11{height:35.241733px;}
.h44{height:35.289733px;}
.h30{height:35.311421px;}
.hf{height:35.314453px;}
.h12{height:35.332031px;}
.h3c{height:35.346236px;}
.h1a{height:38.925551px;}
.h16{height:40.014844px;}
.h1f{height:41.223738px;}
.h1d{height:41.244258px;}
.he{height:42.377344px;}
.h13{height:42.398438px;}
.h9{height:43.100433px;}
.hb{height:45.551565px;}
.hc{height:45.667828px;}
.h5b{height:46.991602px;}
.h59{height:47.152823px;}
.h5a{height:48.254063px;}
.h5c{height:51.683842px;}
.h61{height:52.998047px;}
.h5f{height:53.341875px;}
.h60{height:54.421875px;}
.h54{height:55.403543px;}
.h55{height:57.624187px;}
.h63{height:58.020047px;}
.h2c{height:58.791911px;}
.h23{height:58.854281px;}
.h3e{height:58.922052px;}
.h24{height:58.975137px;}
.h1{height:59.004492px;}
.h51{height:59.010492px;}
.h22{height:59.011332px;}
.h56{height:59.016492px;}
.h2a{height:59.022132px;}
.h4b{height:59.022492px;}
.h4{height:59.074332px;}
.h2b{height:59.108892px;}
.h6{height:59.123292px;}
.h62{height:60.401250px;}
.h46{height:60.564008px;}
.h3{height:60.589687px;}
.h2f{height:62.257950px;}
.h5{height:62.703281px;}
.h52{height:65.061129px;}
.h40{height:65.136994px;}
.h41{height:65.137714px;}
.h47{height:65.139609px;}
.h3f{height:65.158594px;}
.h69{height:65.193874px;}
.h68{height:65.211874px;}
.h25{height:65.231314px;}
.h2{height:66.394687px;}
.h43{height:66.644167px;}
.h31{height:66.652503px;}
.h17{height:66.691406px;}
.h1b{height:66.730310px;}
.h29{height:66.751429px;}
.h37{height:67.686790px;}
.h39{height:70.428819px;}
.h49{height:70.434271px;}
.h3a{height:70.484005px;}
.h4a{height:70.578877px;}
.h32{height:70.587706px;}
.h10{height:70.628906px;}
.h20{height:70.670106px;}
.h26{height:70.692472px;}
.h1e{height:70.705283px;}
.h4f{height:70.727660px;}
.h50{height:70.746740px;}
.ha{height:80.565108px;}
.h3d{height:84.754924px;}
.h18{height:88.104350px;}
.h38{height:88.245483px;}
.h45{height:88.580703px;}
.h48{height:88.615834px;}
.h4e{height:88.688329px;}
.h27{height:88.736988px;}
.hd{height:90.450220px;}
.h14{height:92.745703px;}
.h2d{height:95.198850px;}
.h7{height:97.426697px;}
.h34{height:99.959303px;}
.h42{height:99.968195px;}
.h4c{height:100.037109px;}
.h19{height:100.096020px;}
.h28{height:100.127143px;}
.h1c{height:114.828342px;}
.h64{height:116.016047px;}
.h67{height:116.340047px;}
.h15{height:120.044531px;}
.h21{height:127.781772px;}
.h8{height:129.304633px;}
.h53{height:234.323543px;}
.h0{height:1263.000000px;}
.w4{width:11.160000px;}
.w2{width:16.020000px;}
.w3{width:19.260000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.xa{left:85.054950px;}
.x32{left:92.579400px;}
.x33{left:96.748740px;}
.x72{left:104.760000px;}
.x70{left:108.900000px;}
.x38{left:110.852730px;}
.x6e{left:112.680000px;}
.x6f{left:120.240000px;}
.x5f{left:137.970630px;}
.x6d{left:142.200000px;}
.x8a{left:143.725500px;}
.x2{left:146.790000px;}
.x34{left:159.750000px;}
.x7e{left:163.440000px;}
.x39{left:165.591990px;}
.x71{left:166.681585px;}
.x35{left:168.030000px;}
.x6c{left:171.630000px;}
.x6b{left:201.150000px;}
.x65{left:210.329722px;}
.x5e{left:222.739830px;}
.x93{left:224.370000px;}
.x90{left:228.686165px;}
.x64{left:231.660000px;}
.x6a{left:237.600000px;}
.x62{left:239.130000px;}
.x91{left:243.720000px;}
.x63{left:251.010000px;}
.x68{left:253.890000px;}
.x88{left:259.560000px;}
.x85{left:265.140000px;}
.x25{left:268.650000px;}
.x92{left:270.992726px;}
.x2f{left:273.702368px;}
.x86{left:276.118550px;}
.x31{left:281.115720px;}
.x84{left:282.960000px;}
.x46{left:291.429202px;}
.x29{left:293.330551px;}
.x53{left:294.570000px;}
.x45{left:297.415890px;}
.x67{left:303.570900px;}
.x4c{left:305.370000px;}
.x7{left:306.916020px;}
.x14{left:312.390000px;}
.xc{left:313.650000px;}
.x5a{left:316.170000px;}
.x19{left:317.340000px;}
.x2e{left:318.692597px;}
.x2c{left:320.492488px;}
.x5{left:323.103330px;}
.x1{left:325.260000px;}
.x43{left:329.400000px;}
.xb{left:331.015350px;}
.x3f{left:333.810000px;}
.x23{left:336.240000px;}
.x61{left:337.950000px;}
.x10{left:339.660000px;}
.x26{left:342.810000px;}
.x3{left:343.980000px;}
.x4{left:345.873780px;}
.x42{left:347.040000px;}
.x3e{left:348.660000px;}
.x22{left:349.740000px;}
.x27{left:352.260000px;}
.x2a{left:355.946124px;}
.xd{left:358.110000px;}
.xe{left:361.983106px;}
.x1e{left:363.150000px;}
.x4e{left:364.590000px;}
.x56{left:369.090000px;}
.x4a{left:370.800000px;}
.x5c{left:373.050000px;}
.x21{left:378.630000px;}
.x9{left:382.694040px;}
.x57{left:384.570000px;}
.x6{left:386.469810px;}
.x16{left:388.260000px;}
.x4d{left:390.870000px;}
.x83{left:393.120000px;}
.x20{left:394.473600px;}
.x1f{left:396.990000px;}
.x1d{left:400.676400px;}
.x1c{left:402.210000px;}
.x69{left:407.700000px;}
.x4f{left:410.219198px;}
.x5d{left:412.470000px;}
.xf{left:415.621946px;}
.x5b{left:422.640000px;}
.x60{left:424.890000px;}
.x12{left:429.300000px;}
.x8b{left:431.100000px;}
.x11{left:434.970000px;}
.x18{left:441.810000px;}
.x48{left:443.250000px;}
.x7f{left:444.420000px;}
.x8{left:446.496390px;}
.x41{left:453.690000px;}
.x7c{left:456.120000px;}
.x3d{left:457.200000px;}
.x47{left:459.360000px;}
.x15{left:461.700000px;}
.x1b{left:464.490000px;}
.x1a{left:469.080000px;}
.x55{left:470.160000px;}
.x4b{left:471.330000px;}
.x17{left:473.940000px;}
.x49{left:477.090007px;}
.x87{left:479.340000px;}
.x54{left:487.890000px;}
.x3a{left:492.249780px;}
.x59{left:493.830000px;}
.x79{left:496.260000px;}
.x58{left:501.300622px;}
.x8c{left:503.280000px;}
.x28{left:505.080000px;}
.x80{left:511.470000px;}
.x7b{left:518.224128px;}
.x37{left:519.232860px;}
.x2b{left:532.350000px;}
.x51{left:534.690000px;}
.x78{left:537.570000px;}
.x52{left:542.970000px;}
.x81{left:545.040000px;}
.x3c{left:558.021060px;}
.x2d{left:561.240000px;}
.x8d{left:575.460000px;}
.x82{left:578.610000px;}
.x94{left:591.304500px;}
.x77{left:593.550000px;}
.x89{left:596.160000px;}
.x73{left:610.830000px;}
.x50{left:617.580000px;}
.x36{left:627.358680px;}
.x40{left:638.811540px;}
.x8e{left:646.740000px;}
.x8f{left:650.250000px;}
.x74{left:665.460000px;}
.x3b{left:675.450450px;}
.x7a{left:677.430000px;}
.x44{left:681.478950px;}
.x66{left:693.540000px;}
.x75{left:720.090000px;}
.x13{left:726.019380px;}
.x76{left:773.999850px;}
.x24{left:775.349400px;}
.x30{left:779.120370px;}
.x7d{left:799.560000px;}
@media print{
.vc{vertical-align:-32.002560pt;}
.vb{vertical-align:-24.000000pt;}
.v8{vertical-align:-7.907200pt;}
.v9{vertical-align:-4.158400pt;}
.v11{vertical-align:-0.978880pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:0.978880pt;}
.v14{vertical-align:4.170880pt;}
.vd{vertical-align:8.000000pt;}
.v7{vertical-align:16.008291pt;}
.v13{vertical-align:18.560000pt;}
.v15{vertical-align:21.440000pt;}
.ve{vertical-align:23.040000pt;}
.v4{vertical-align:24.616293pt;}
.va{vertical-align:26.560533pt;}
.v6{vertical-align:28.800000pt;}
.v1{vertical-align:31.040000pt;}
.v2{vertical-align:52.800000pt;}
.v16{vertical-align:56.016000pt;}
.v5{vertical-align:61.135360pt;}
.v3{vertical-align:65.408075pt;}
.vf{vertical-align:105.600000pt;}
.v10{vertical-align:159.040000pt;}
.ls80{letter-spacing:-2.171098pt;}
.lsb5{letter-spacing:-1.881556pt;}
.ls9a{letter-spacing:-1.685011pt;}
.ls7a{letter-spacing:-1.392951pt;}
.ls99{letter-spacing:-1.380018pt;}
.ls7b{letter-spacing:-1.322123pt;}
.ls7e{letter-spacing:-1.315185pt;}
.ls7f{letter-spacing:-1.210805pt;}
.ls79{letter-spacing:-1.001036pt;}
.ls77{letter-spacing:-0.982148pt;}
.lsb3{letter-spacing:-0.896928pt;}
.ls8e{letter-spacing:-0.876258pt;}
.ls78{letter-spacing:-0.661061pt;}
.ls96{letter-spacing:-0.643203pt;}
.ls92{letter-spacing:-0.623261pt;}
.lsb4{letter-spacing:-0.582007pt;}
.ls8d{letter-spacing:-0.532014pt;}
.ls6c{letter-spacing:-0.379424pt;}
.lsb8{letter-spacing:-0.363392pt;}
.ls97{letter-spacing:-0.338210pt;}
.ls6e{letter-spacing:-0.321408pt;}
.ls45{letter-spacing:-0.272544pt;}
.ls98{letter-spacing:-0.257145pt;}
.ls3e{letter-spacing:-0.235136pt;}
.ls6f{letter-spacing:-0.213760pt;}
.ls6b{letter-spacing:-0.197728pt;}
.ls6d{letter-spacing:-0.187040pt;}
.ls90{letter-spacing:-0.178381pt;}
.ls40{letter-spacing:-0.160320pt;}
.ls41{letter-spacing:-0.154976pt;}
.ls1f{letter-spacing:-0.149632pt;}
.ls3f{letter-spacing:-0.144288pt;}
.ls10{letter-spacing:-0.138944pt;}
.ls19{letter-spacing:-0.133600pt;}
.ls17{letter-spacing:-0.128256pt;}
.ls2f{letter-spacing:-0.122912pt;}
.ls1e{letter-spacing:-0.117568pt;}
.ls24{letter-spacing:-0.112224pt;}
.ls2e{letter-spacing:-0.106880pt;}
.ls12{letter-spacing:-0.101536pt;}
.ls7d{letter-spacing:-0.099161pt;}
.ls26{letter-spacing:-0.096192pt;}
.ls95{letter-spacing:-0.093632pt;}
.ls2d{letter-spacing:-0.090848pt;}
.lsb1{letter-spacing:-0.086400pt;}
.ls23{letter-spacing:-0.085504pt;}
.ls1a{letter-spacing:-0.080160pt;}
.ls28{letter-spacing:-0.074816pt;}
.ls20{letter-spacing:-0.069472pt;}
.ls22{letter-spacing:-0.064128pt;}
.ls21{letter-spacing:-0.058784pt;}
.ls70{letter-spacing:-0.053440pt;}
.ls18{letter-spacing:-0.048096pt;}
.lsb6{letter-spacing:-0.048000pt;}
.ls74{letter-spacing:-0.042752pt;}
.ls7c{letter-spacing:-0.042497pt;}
.ls27{letter-spacing:-0.037408pt;}
.ls13{letter-spacing:-0.032064pt;}
.ls25{letter-spacing:-0.026720pt;}
.ls1c{letter-spacing:-0.021376pt;}
.lsaf{letter-spacing:-0.019200pt;}
.ls11{letter-spacing:-0.017568pt;}
.ls1b{letter-spacing:-0.016032pt;}
.ls15{letter-spacing:-0.010688pt;}
.ls1d{letter-spacing:-0.005344pt;}
.lsae{letter-spacing:-0.004800pt;}
.lsb9{letter-spacing:-0.003456pt;}
.ls16{letter-spacing:0.000000pt;}
.ls87{letter-spacing:0.004256pt;}
.lsac{letter-spacing:0.004800pt;}
.ls9{letter-spacing:0.005344pt;}
.lsd{letter-spacing:0.010688pt;}
.ls64{letter-spacing:0.011520pt;}
.ls9e{letter-spacing:0.014400pt;}
.ls67{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.016032pt;}
.ls9c{letter-spacing:0.019200pt;}
.ls8a{letter-spacing:0.021280pt;}
.lsc{letter-spacing:0.021376pt;}
.ls9d{letter-spacing:0.024000pt;}
.ls2c{letter-spacing:0.026720pt;}
.lsa1{letter-spacing:0.028800pt;}
.ls7{letter-spacing:0.032064pt;}
.ls93{letter-spacing:0.032996pt;}
.lsa9{letter-spacing:0.033600pt;}
.ls73{letter-spacing:0.037408pt;}
.lsa7{letter-spacing:0.038400pt;}
.ls82{letter-spacing:0.042560pt;}
.ls6{letter-spacing:0.042752pt;}
.lsb7{letter-spacing:0.048000pt;}
.ls29{letter-spacing:0.048096pt;}
.lsaa{letter-spacing:0.052800pt;}
.ls3a{letter-spacing:0.053440pt;}
.ls0{letter-spacing:0.058784pt;}
.lsa2{letter-spacing:0.062400pt;}
.ls4{letter-spacing:0.064128pt;}
.lsa8{letter-spacing:0.067200pt;}
.lse{letter-spacing:0.069472pt;}
.ls59{letter-spacing:0.071360pt;}
.lsad{letter-spacing:0.072000pt;}
.ls84{letter-spacing:0.072352pt;}
.lsf{letter-spacing:0.074816pt;}
.lsa4{letter-spacing:0.076800pt;}
.ls5b{letter-spacing:0.078080pt;}
.ls5e{letter-spacing:0.079360pt;}
.ls4e{letter-spacing:0.079680pt;}
.ls14{letter-spacing:0.080160pt;}
.ls9f{letter-spacing:0.081600pt;}
.ls5{letter-spacing:0.085504pt;}
.ls4c{letter-spacing:0.088640pt;}
.ls50{letter-spacing:0.088960pt;}
.ls54{letter-spacing:0.089280pt;}
.ls83{letter-spacing:0.089376pt;}
.ls5d{letter-spacing:0.089920pt;}
.ls1{letter-spacing:0.090848pt;}
.ls57{letter-spacing:0.094624pt;}
.ls63{letter-spacing:0.095744pt;}
.lsa{letter-spacing:0.096192pt;}
.ls61{letter-spacing:0.097568pt;}
.ls56{letter-spacing:0.098816pt;}
.ls60{letter-spacing:0.099200pt;}
.ls5f{letter-spacing:0.101024pt;}
.ls34{letter-spacing:0.101536pt;}
.ls58{letter-spacing:0.101664pt;}
.ls55{letter-spacing:0.105920pt;}
.ls51{letter-spacing:0.106240pt;}
.ls86{letter-spacing:0.106400pt;}
.ls3b{letter-spacing:0.106880pt;}
.lsb{letter-spacing:0.112224pt;}
.ls5c{letter-spacing:0.113344pt;}
.ls4f{letter-spacing:0.113600pt;}
.ls52{letter-spacing:0.113920pt;}
.ls5a{letter-spacing:0.114240pt;}
.ls62{letter-spacing:0.114880pt;}
.lsb0{letter-spacing:0.115200pt;}
.ls31{letter-spacing:0.117568pt;}
.ls3c{letter-spacing:0.122912pt;}
.ls53{letter-spacing:0.124480pt;}
.ls2b{letter-spacing:0.128256pt;}
.lsb2{letter-spacing:0.129600pt;}
.ls3{letter-spacing:0.133600pt;}
.ls72{letter-spacing:0.138944pt;}
.ls89{letter-spacing:0.160000pt;}
.ls30{letter-spacing:0.160320pt;}
.ls85{letter-spacing:0.161728pt;}
.ls8f{letter-spacing:0.165863pt;}
.lsa0{letter-spacing:0.176000pt;}
.lsa3{letter-spacing:0.192000pt;}
.ls69{letter-spacing:0.192384pt;}
.ls8b{letter-spacing:0.255360pt;}
.ls88{letter-spacing:0.273312pt;}
.ls4b{letter-spacing:0.320000pt;}
.ls4d{letter-spacing:0.321408pt;}
.ls66{letter-spacing:0.402880pt;}
.ls76{letter-spacing:0.427520pt;}
.lsa6{letter-spacing:0.944764pt;}
.ls8c{letter-spacing:1.050867pt;}
.ls68{letter-spacing:1.389440pt;}
.ls91{letter-spacing:1.545970pt;}
.lsa5{letter-spacing:1.654334pt;}
.ls71{letter-spacing:2.297920pt;}
.ls94{letter-spacing:4.212510pt;}
.ls48{letter-spacing:7.188480pt;}
.ls47{letter-spacing:11.443890pt;}
.ls65{letter-spacing:29.926400pt;}
.ls2a{letter-spacing:32.170880pt;}
.ls8{letter-spacing:34.415360pt;}
.ls42{letter-spacing:47.660159pt;}
.ls35{letter-spacing:48.998600pt;}
.ls38{letter-spacing:50.212485pt;}
.ls49{letter-spacing:52.127662pt;}
.ls32{letter-spacing:53.011627pt;}
.ls4a{letter-spacing:53.068797pt;}
.ls75{letter-spacing:56.486080pt;}
.ls43{letter-spacing:104.079573pt;}
.ls46{letter-spacing:141.171856pt;}
.ls3d{letter-spacing:175.438176pt;}
.ls37{letter-spacing:192.930432pt;}
.ls36{letter-spacing:287.680000pt;}
.ls6a{letter-spacing:290.514121pt;}
.ls33{letter-spacing:369.224073pt;}
.ls39{letter-spacing:553.050560pt;}
.ls44{letter-spacing:686.375613pt;}
.lsab{letter-spacing:963.360000pt;}
.ls9b{letter-spacing:971.040000pt;}
.ls81{letter-spacing:1061.659200pt;}
.ws7a{word-spacing:-102.050402pt;}
.wsb1{word-spacing:-35.167622pt;}
.ws7b{word-spacing:-35.156496pt;}
.wsb9{word-spacing:-35.115504pt;}
.wse6{word-spacing:-35.111112pt;}
.wse2{word-spacing:-29.338560pt;}
.ws71{word-spacing:-22.707226pt;}
.ws109{word-spacing:-17.568000pt;}
.wsb0{word-spacing:-16.014400pt;}
.ws7c{word-spacing:-16.009333pt;}
.ws76{word-spacing:-16.000000pt;}
.wse9{word-spacing:-15.988667pt;}
.wsbe{word-spacing:-15.987467pt;}
.ws170{word-spacing:-14.404657pt;}
.ws49{word-spacing:-13.520320pt;}
.wse4{word-spacing:-13.482912pt;}
.ws1a4{word-spacing:-13.477568pt;}
.ws48{word-spacing:-13.456192pt;}
.ws175{word-spacing:-13.445504pt;}
.wsb2{word-spacing:-13.429472pt;}
.ws77{word-spacing:-13.424128pt;}
.ws7d{word-spacing:-13.413440pt;}
.ws3{word-spacing:-13.376032pt;}
.ws4{word-spacing:-13.360000pt;}
.ws1{word-spacing:-13.349312pt;}
.ws0{word-spacing:-13.327936pt;}
.wsb5{word-spacing:-13.311867pt;}
.wsb3{word-spacing:-13.301216pt;}
.ws78{word-spacing:-13.295872pt;}
.ws142{word-spacing:-13.290528pt;}
.ws10b{word-spacing:-13.285184pt;}
.ws5{word-spacing:-13.279840pt;}
.wsac{word-spacing:-13.247776pt;}
.ws2{word-spacing:-13.226400pt;}
.ws122{word-spacing:-13.210368pt;}
.wse3{word-spacing:-13.162272pt;}
.ws149{word-spacing:-13.084293pt;}
.ws14a{word-spacing:-12.948306pt;}
.ws146{word-spacing:-12.465728pt;}
.ws145{word-spacing:-12.144641pt;}
.ws147{word-spacing:-12.125754pt;}
.ws184{word-spacing:-12.026808pt;}
.ws14c{word-spacing:-11.836662pt;}
.ws148{word-spacing:-11.733839pt;}
.ws14b{word-spacing:-11.732282pt;}
.ws14d{word-spacing:-10.876368pt;}
.ws73{word-spacing:-10.340267pt;}
.ws16d{word-spacing:-10.245961pt;}
.ws16f{word-spacing:-10.225143pt;}
.ws183{word-spacing:-10.185116pt;}
.ws16e{word-spacing:-9.568886pt;}
.ws16b{word-spacing:-8.865855pt;}
.ws7e{word-spacing:-8.640000pt;}
.ws1bf{word-spacing:-8.636544pt;}
.ws16c{word-spacing:-8.521610pt;}
.wse5{word-spacing:-8.318592pt;}
.ws169{word-spacing:-8.167978pt;}
.ws172{word-spacing:-8.056649pt;}
.wsae{word-spacing:-8.007200pt;}
.ws75{word-spacing:-8.000000pt;}
.wse7{word-spacing:-7.994400pt;}
.wsbb{word-spacing:-7.993733pt;}
.wsb8{word-spacing:-7.987200pt;}
.ws16a{word-spacing:-7.823733pt;}
.ws171{word-spacing:-7.751655pt;}
.ws173{word-spacing:-7.014841pt;}
.ws174{word-spacing:-6.709847pt;}
.ws193{word-spacing:-0.526198pt;}
.wsf8{word-spacing:-0.400800pt;}
.wsd{word-spacing:-0.374080pt;}
.ws1bc{word-spacing:-0.368736pt;}
.wsf4{word-spacing:-0.363392pt;}
.ws80{word-spacing:-0.336672pt;}
.wsf3{word-spacing:-0.321408pt;}
.wsf1{word-spacing:-0.320640pt;}
.ws151{word-spacing:-0.304608pt;}
.ws182{word-spacing:-0.298954pt;}
.wsb{word-spacing:-0.256512pt;}
.wsc7{word-spacing:-0.251168pt;}
.ws17a{word-spacing:-0.242592pt;}
.ws139{word-spacing:-0.235136pt;}
.ws1b2{word-spacing:-0.224448pt;}
.ws152{word-spacing:-0.219104pt;}
.ws1b1{word-spacing:-0.203072pt;}
.ws17b{word-spacing:-0.187264pt;}
.ws1a6{word-spacing:-0.181696pt;}
.ws81{word-spacing:-0.176352pt;}
.ws177{word-spacing:-0.170240pt;}
.ws1b9{word-spacing:-0.165664pt;}
.ws1cc{word-spacing:-0.160320pt;}
.ws179{word-spacing:-0.153216pt;}
.ws1b7{word-spacing:-0.122912pt;}
.ws17e{word-spacing:-0.102144pt;}
.ws6{word-spacing:-0.101536pt;}
.wsfa{word-spacing:-0.053440pt;}
.ws1be{word-spacing:-0.042752pt;}
.ws1c7{word-spacing:-0.037408pt;}
.ws10c{word-spacing:-0.032064pt;}
.wscd{word-spacing:-0.026720pt;}
.wscc{word-spacing:-0.021376pt;}
.ws24{word-spacing:-0.016032pt;}
.ws9{word-spacing:-0.010688pt;}
.wsc2{word-spacing:-0.005344pt;}
.wsc{word-spacing:0.000000pt;}
.ws59{word-spacing:0.005344pt;}
.ws4e{word-spacing:0.010688pt;}
.ws11{word-spacing:0.016032pt;}
.ws8{word-spacing:0.021376pt;}
.ws8a{word-spacing:0.026720pt;}
.ws51{word-spacing:0.032064pt;}
.wsf5{word-spacing:0.037408pt;}
.ws18a{word-spacing:0.043200pt;}
.wsfb{word-spacing:0.048096pt;}
.wsfc{word-spacing:0.058784pt;}
.ws4a{word-spacing:0.064128pt;}
.wsf9{word-spacing:0.069472pt;}
.ws30{word-spacing:0.074816pt;}
.ws18e{word-spacing:0.076800pt;}
.ws46{word-spacing:0.080160pt;}
.ws192{word-spacing:0.081600pt;}
.ws15a{word-spacing:0.085504pt;}
.ws1a2{word-spacing:0.086400pt;}
.wsf2{word-spacing:0.090848pt;}
.ws190{word-spacing:0.096000pt;}
.ws47{word-spacing:0.096192pt;}
.ws7{word-spacing:0.099552pt;}
.wsed{word-spacing:0.101536pt;}
.ws8c{word-spacing:0.106880pt;}
.ws1a5{word-spacing:0.110400pt;}
.wsec{word-spacing:0.112224pt;}
.ws5f{word-spacing:0.117568pt;}
.ws108{word-spacing:0.128256pt;}
.ws1a1{word-spacing:0.129600pt;}
.ws101{word-spacing:0.133600pt;}
.ws18c{word-spacing:0.134400pt;}
.ws8f{word-spacing:0.138944pt;}
.ws18b{word-spacing:0.139200pt;}
.ws18d{word-spacing:0.144000pt;}
.ws4f{word-spacing:0.144288pt;}
.ws124{word-spacing:0.149632pt;}
.ws1a0{word-spacing:0.153600pt;}
.ws18f{word-spacing:0.158400pt;}
.wsc3{word-spacing:0.160320pt;}
.ws1a3{word-spacing:0.163200pt;}
.ws4b{word-spacing:0.165664pt;}
.ws4d{word-spacing:0.171008pt;}
.ws188{word-spacing:0.177600pt;}
.wsa{word-spacing:0.181696pt;}
.ws50{word-spacing:0.187040pt;}
.ws4c{word-spacing:0.192384pt;}
.ws141{word-spacing:0.203072pt;}
.wsf7{word-spacing:0.208416pt;}
.ws17d{word-spacing:0.217056pt;}
.ws82{word-spacing:0.224448pt;}
.wsfd{word-spacing:0.229792pt;}
.ws17c{word-spacing:0.234080pt;}
.ws191{word-spacing:0.244800pt;}
.ws5b{word-spacing:0.267200pt;}
.ws5e{word-spacing:0.272544pt;}
.wsa0{word-spacing:0.277888pt;}
.ws12b{word-spacing:0.283232pt;}
.ws28{word-spacing:0.288576pt;}
.ws11d{word-spacing:0.293920pt;}
.ws27{word-spacing:0.315296pt;}
.ws90{word-spacing:0.352704pt;}
.ws6d{word-spacing:0.368736pt;}
.ws6b{word-spacing:0.374080pt;}
.ws5a{word-spacing:0.400800pt;}
.ws10d{word-spacing:0.416832pt;}
.ws1b0{word-spacing:0.443552pt;}
.wsf6{word-spacing:0.459584pt;}
.ws5d{word-spacing:0.502336pt;}
.ws12c{word-spacing:0.513024pt;}
.ws6c{word-spacing:0.529056pt;}
.ws129{word-spacing:0.619904pt;}
.ws12a{word-spacing:0.758848pt;}
.ws138{word-spacing:0.796256pt;}
.ws137{word-spacing:0.812288pt;}
.ws114{word-spacing:0.945888pt;}
.ws104{word-spacing:0.951232pt;}
.ws117{word-spacing:0.961920pt;}
.ws15{word-spacing:0.972608pt;}
.ws65{word-spacing:0.977952pt;}
.ws180{word-spacing:1.042080pt;}
.ws181{word-spacing:1.063456pt;}
.wsaa{word-spacing:1.090176pt;}
.wsc1{word-spacing:1.100864pt;}
.ws31{word-spacing:1.106208pt;}
.wsc0{word-spacing:1.122240pt;}
.ws32{word-spacing:1.127584pt;}
.wsd6{word-spacing:1.132928pt;}
.ws11e{word-spacing:1.148960pt;}
.ws107{word-spacing:1.164992pt;}
.ws125{word-spacing:1.175680pt;}
.ws106{word-spacing:1.277216pt;}
.ws53{word-spacing:1.282560pt;}
.ws136{word-spacing:1.287904pt;}
.ws105{word-spacing:1.325312pt;}
.ws52{word-spacing:1.352032pt;}
.ws43{word-spacing:1.373408pt;}
.ws44{word-spacing:1.378752pt;}
.wsab{word-spacing:1.389440pt;}
.wsa1{word-spacing:1.405472pt;}
.ws199{word-spacing:1.406400pt;}
.ws198{word-spacing:1.420800pt;}
.wsa2{word-spacing:1.437536pt;}
.ws13c{word-spacing:1.448224pt;}
.ws45{word-spacing:1.458912pt;}
.ws56{word-spacing:1.480288pt;}
.ws19a{word-spacing:1.488000pt;}
.wsa9{word-spacing:1.496320pt;}
.ws58{word-spacing:1.597856pt;}
.ws18{word-spacing:1.603200pt;}
.ws15f{word-spacing:1.613888pt;}
.wsda{word-spacing:1.678016pt;}
.ws1a9{word-spacing:1.688704pt;}
.ws1aa{word-spacing:1.694048pt;}
.ws57{word-spacing:1.710080pt;}
.ws1b6{word-spacing:1.731456pt;}
.wsd5{word-spacing:1.758176pt;}
.wsdb{word-spacing:1.774208pt;}
.ws5c{word-spacing:1.907808pt;}
.ws1a8{word-spacing:1.929184pt;}
.ws116{word-spacing:1.934528pt;}
.ws17{word-spacing:1.955904pt;}
.ws9b{word-spacing:1.966592pt;}
.ws11b{word-spacing:1.982624pt;}
.ws9c{word-spacing:1.998656pt;}
.ws11c{word-spacing:2.014688pt;}
.ws17f{word-spacing:2.073472pt;}
.ws13a{word-spacing:2.094848pt;}
.ws132{word-spacing:2.180352pt;}
.ws131{word-spacing:2.228448pt;}
.ws102{word-spacing:2.244480pt;}
.wsbf{word-spacing:2.249824pt;}
.ws9e{word-spacing:2.255168pt;}
.ws154{word-spacing:2.276544pt;}
.ws2a{word-spacing:2.297920pt;}
.ws2b{word-spacing:2.308608pt;}
.ws196{word-spacing:2.318400pt;}
.ws153{word-spacing:2.319296pt;}
.ws155{word-spacing:2.329984pt;}
.ws29{word-spacing:2.351360pt;}
.ws197{word-spacing:2.361600pt;}
.ws195{word-spacing:2.376000pt;}
.ws9d{word-spacing:2.383424pt;}
.ws1b3{word-spacing:2.388768pt;}
.ws8b{word-spacing:2.394112pt;}
.ws12{word-spacing:2.399456pt;}
.ws13{word-spacing:2.420832pt;}
.ws1b5{word-spacing:2.458240pt;}
.ws66{word-spacing:2.554432pt;}
.wsd9{word-spacing:2.559776pt;}
.ws156{word-spacing:2.623904pt;}
.ws167{word-spacing:2.629248pt;}
.ws166{word-spacing:2.634592pt;}
.ws111{word-spacing:2.650624pt;}
.ws157{word-spacing:2.672000pt;}
.ws1b4{word-spacing:2.714752pt;}
.ws110{word-spacing:2.730784pt;}
.ws135{word-spacing:2.794912pt;}
.ws115{word-spacing:2.896448pt;}
.ws134{word-spacing:2.965920pt;}
.ws194{word-spacing:3.009692pt;}
.ws186{word-spacing:3.030048pt;}
.ws118{word-spacing:3.035392pt;}
.ws38{word-spacing:3.056768pt;}
.ws39{word-spacing:3.062112pt;}
.ws133{word-spacing:3.078144pt;}
.ws37{word-spacing:3.094176pt;}
.wsdd{word-spacing:3.185024pt;}
.ws13b{word-spacing:3.201056pt;}
.wsd0{word-spacing:3.211744pt;}
.wsef{word-spacing:3.222432pt;}
.ws61{word-spacing:3.259840pt;}
.wsf0{word-spacing:3.286560pt;}
.wsee{word-spacing:3.297248pt;}
.ws62{word-spacing:3.313280pt;}
.ws63{word-spacing:3.329312pt;}
.ws64{word-spacing:3.350688pt;}
.wsde{word-spacing:3.505664pt;}
.ws20{word-spacing:3.516352pt;}
.ws9f{word-spacing:3.527040pt;}
.ws10e{word-spacing:3.537728pt;}
.wsce{word-spacing:3.580480pt;}
.ws1ba{word-spacing:3.617888pt;}
.ws1bb{word-spacing:3.628576pt;}
.wsc4{word-spacing:3.660640pt;}
.wsc5{word-spacing:3.676672pt;}
.wsdc{word-spacing:3.692704pt;}
.ws14e{word-spacing:3.858368pt;}
.ws13f{word-spacing:3.885088pt;}
.ws150{word-spacing:3.911808pt;}
.ws13d{word-spacing:3.927840pt;}
.ws13e{word-spacing:3.933184pt;}
.ws14f{word-spacing:3.938528pt;}
.wsd2{word-spacing:4.013344pt;}
.ws119{word-spacing:4.045408pt;}
.wsd3{word-spacing:4.050752pt;}
.ws87{word-spacing:4.141600pt;}
.ws6e{word-spacing:4.146944pt;}
.ws15e{word-spacing:4.157632pt;}
.ws159{word-spacing:4.179008pt;}
.ws162{word-spacing:4.184352pt;}
.ws6f{word-spacing:4.243136pt;}
.ws86{word-spacing:4.339328pt;}
.ws83{word-spacing:4.366048pt;}
.ws84{word-spacing:4.376736pt;}
.ws88{word-spacing:4.392768pt;}
.ws85{word-spacing:4.398112pt;}
.ws160{word-spacing:4.563776pt;}
.ws161{word-spacing:4.569120pt;}
.wsa5{word-spacing:4.638592pt;}
.wsa6{word-spacing:4.643936pt;}
.wsa8{word-spacing:4.809600pt;}
.ws14{word-spacing:4.814944pt;}
.wscf{word-spacing:4.852352pt;}
.wse0{word-spacing:4.868384pt;}
.wsdf{word-spacing:4.937856pt;}
.ws55{word-spacing:4.985952pt;}
.ws11f{word-spacing:5.119552pt;}
.ws21{word-spacing:5.156960pt;}
.ws120{word-spacing:5.178336pt;}
.ws22{word-spacing:5.221088pt;}
.ws7f{word-spacing:5.295904pt;}
.ws33{word-spacing:5.311936pt;}
.ws23{word-spacing:5.317280pt;}
.ws121{word-spacing:5.322624pt;}
.wsff{word-spacing:5.397440pt;}
.ws96{word-spacing:5.413472pt;}
.wsfe{word-spacing:5.434848pt;}
.ws1ab{word-spacing:5.456224pt;}
.ws98{word-spacing:5.520352pt;}
.ws99{word-spacing:5.525696pt;}
.ws97{word-spacing:5.541728pt;}
.ws100{word-spacing:5.600512pt;}
.ws16{word-spacing:5.755488pt;}
.wsc8{word-spacing:5.771520pt;}
.ws3a{word-spacing:5.808928pt;}
.ws3b{word-spacing:5.835648pt;}
.ws3c{word-spacing:5.878400pt;}
.ws140{word-spacing:5.883744pt;}
.ws185{word-spacing:6.076128pt;}
.ws67{word-spacing:6.257824pt;}
.ws68{word-spacing:6.284544pt;}
.ws123{word-spacing:6.407456pt;}
.wsca{word-spacing:6.423488pt;}
.ws1ad{word-spacing:6.428832pt;}
.wscb{word-spacing:6.450208pt;}
.ws1ac{word-spacing:6.460896pt;}
.wsc9{word-spacing:6.482272pt;}
.ws1ae{word-spacing:6.519680pt;}
.ws158{word-spacing:6.712064pt;}
.ws1c6{word-spacing:6.776192pt;}
.ws95{word-spacing:7.022016pt;}
.ws54{word-spacing:7.032704pt;}
.ws1a7{word-spacing:7.038048pt;}
.wsd7{word-spacing:7.048736pt;}
.ws94{word-spacing:7.086144pt;}
.ws163{word-spacing:7.118208pt;}
.ws1c5{word-spacing:7.139584pt;}
.ws1c4{word-spacing:7.187680pt;}
.ws93{word-spacing:7.209056pt;}
.ws164{word-spacing:7.225088pt;}
.ws69{word-spacing:7.321280pt;}
.ws92{word-spacing:7.380064pt;}
.ws2c{word-spacing:7.406784pt;}
.ws2d{word-spacing:7.417472pt;}
.ws91{word-spacing:7.508320pt;}
.ws6a{word-spacing:7.524352pt;}
.ws8d{word-spacing:7.700704pt;}
.ws8e{word-spacing:7.844992pt;}
.ws41{word-spacing:8.069440pt;}
.ws40{word-spacing:8.154944pt;}
.ws42{word-spacing:8.165632pt;}
.ws15b{word-spacing:8.320608pt;}
.ws1ca{word-spacing:8.368704pt;}
.ws19d{word-spacing:8.404800pt;}
.ws1cb{word-spacing:8.406112pt;}
.ws19b{word-spacing:8.419200pt;}
.ws19c{word-spacing:8.481600pt;}
.ws1c0{word-spacing:8.512992pt;}
.ws1af{word-spacing:8.641248pt;}
.ws1c9{word-spacing:8.737440pt;}
.ws1c8{word-spacing:8.758816pt;}
.ws113{word-spacing:8.838976pt;}
.ws112{word-spacing:8.844320pt;}
.ws60{word-spacing:8.972576pt;}
.ws168{word-spacing:9.282528pt;}
.ws3d{word-spacing:9.293216pt;}
.ws1e{word-spacing:9.352000pt;}
.ws3e{word-spacing:9.357344pt;}
.ws3f{word-spacing:9.442848pt;}
.wsd4{word-spacing:9.587136pt;}
.ws10f{word-spacing:9.603168pt;}
.ws1c{word-spacing:9.677984pt;}
.ws1f{word-spacing:9.683328pt;}
.ws1d{word-spacing:9.699360pt;}
.ws165{word-spacing:9.784864pt;}
.ws12e{word-spacing:9.881056pt;}
.ws89{word-spacing:9.934496pt;}
.ws12f{word-spacing:9.966560pt;}
.ws12d{word-spacing:9.993280pt;}
.ws130{word-spacing:10.009312pt;}
.ws1bd{word-spacing:10.436832pt;}
.ws15c{word-spacing:10.634560pt;}
.ws15d{word-spacing:10.645248pt;}
.ws2f{word-spacing:10.698688pt;}
.ws2e{word-spacing:10.720064pt;}
.ws126{word-spacing:10.896416pt;}
.ws103{word-spacing:11.195680pt;}
.ws34{word-spacing:11.211712pt;}
.ws35{word-spacing:11.286528pt;}
.ws36{word-spacing:11.307904pt;}
.wsd1{word-spacing:11.361344pt;}
.ws11a{word-spacing:11.836960pt;}
.ws1b8{word-spacing:12.162944pt;}
.wsc6{word-spacing:12.344640pt;}
.wsa7{word-spacing:12.478240pt;}
.ws9a{word-spacing:12.494272pt;}
.wsd8{word-spacing:12.804224pt;}
.ws26{word-spacing:13.589792pt;}
.ws25{word-spacing:13.669952pt;}
.ws127{word-spacing:14.076096pt;}
.ws1b{word-spacing:14.129536pt;}
.ws1a{word-spacing:14.145568pt;}
.ws19{word-spacing:14.177632pt;}
.ws128{word-spacing:14.182976pt;}
.ws1c3{word-spacing:15.102144pt;}
.ws1c2{word-spacing:15.118176pt;}
.ws1c1{word-spacing:15.134208pt;}
.wsa4{word-spacing:16.951168pt;}
.wsa3{word-spacing:17.100800pt;}
.wse1{word-spacing:18.537869pt;}
.wse{word-spacing:19.863648pt;}
.ws10{word-spacing:19.970528pt;}
.wsf{word-spacing:20.365984pt;}
.wsb4{word-spacing:40.627817pt;}
.wsb6{word-spacing:53.186667pt;}
.wsad{word-spacing:57.901658pt;}
.ws70{word-spacing:81.621077pt;}
.ws143{word-spacing:128.014304pt;}
.ws144{word-spacing:131.534304pt;}
.wse8{word-spacing:235.885309pt;}
.ws176{word-spacing:270.915680pt;}
.ws79{word-spacing:285.454764pt;}
.wseb{word-spacing:297.005472pt;}
.wsbd{word-spacing:297.047131pt;}
.ws74{word-spacing:306.027502pt;}
.wsb7{word-spacing:319.571111pt;}
.ws19e{word-spacing:322.723200pt;}
.ws187{word-spacing:341.606400pt;}
.ws178{word-spacing:379.596896pt;}
.wsaf{word-spacing:434.209562pt;}
.ws72{word-spacing:443.703411pt;}
.ws19f{word-spacing:445.281600pt;}
.ws189{word-spacing:464.160000pt;}
.ws10a{word-spacing:512.927955pt;}
.wsba{word-spacing:527.866484pt;}
.wsea{word-spacing:528.365309pt;}
.wsbc{word-spacing:557.468815pt;}
._11{margin-left:-821.222494pt;}
._12{margin-left:-425.207893pt;}
._59{margin-left:-341.424000pt;}
._5e{margin-left:-322.574400pt;}
._3c{margin-left:-307.087260pt;}
._14{margin-left:-304.625595pt;}
._18{margin-left:-296.684965pt;}
._53{margin-left:-271.022080pt;}
._49{margin-left:-262.734631pt;}
._3b{margin-left:-248.573132pt;}
._4{margin-left:-237.899977pt;}
._3d{margin-left:-227.181901pt;}
._7{margin-left:-215.013047pt;}
._16{margin-left:-207.416923pt;}
._46{margin-left:-191.243111pt;}
._41{margin-left:-179.379376pt;}
._17{margin-left:-177.511488pt;}
._43{margin-left:-176.298560pt;}
._1b{margin-left:-175.336640pt;}
._42{margin-left:-172.523498pt;}
._2b{margin-left:-162.193843pt;}
._19{margin-left:-149.271024pt;}
._3f{margin-left:-147.468393pt;}
._47{margin-left:-142.938680pt;}
._34{margin-left:-140.253827pt;}
._4c{margin-left:-133.439680pt;}
._3e{margin-left:-125.341739pt;}
._40{margin-left:-121.504747pt;}
._15{margin-left:-117.060245pt;}
._45{margin-left:-114.798627pt;}
._8{margin-left:-102.646498pt;}
._9{margin-left:-98.232533pt;}
._e{margin-left:-95.360000pt;}
._13{margin-left:-93.622581pt;}
._6{margin-left:-88.859191pt;}
._5{margin-left:-87.894080pt;}
._28{margin-left:-86.979232pt;}
._1a{margin-left:-84.465243pt;}
._d{margin-left:-82.560000pt;}
._29{margin-left:-79.375027pt;}
._c{margin-left:-76.416000pt;}
._32{margin-left:-73.907484pt;}
._33{margin-left:-72.629545pt;}
._2a{margin-left:-70.601722pt;}
._30{margin-left:-69.594439pt;}
._b{margin-left:-61.568000pt;}
._31{margin-left:-58.731956pt;}
._3{margin-left:-53.479859pt;}
._4b{margin-left:-48.640000pt;}
._4a{margin-left:-47.136000pt;}
._1f{margin-left:-13.466880pt;}
._4e{margin-left:-4.702720pt;}
._52{margin-left:-3.409603pt;}
._51{margin-left:-2.087595pt;}
._2{margin-left:-0.908480pt;}
._0{width:1.068800pt;}
._50{width:2.634592pt;}
._2c{width:3.705280pt;}
._39{width:14.428800pt;}
._22{width:23.353280pt;}
._21{width:27.681920pt;}
._4f{width:32.758720pt;}
._1d{width:35.323840pt;}
._1e{width:38.583680pt;}
._4d{width:54.776000pt;}
._26{width:57.608320pt;}
._20{width:59.745920pt;}
._1c{width:67.174080pt;}
._2f{width:77.060480pt;}
._2e{width:118.102400pt;}
._44{width:123.499840pt;}
._36{width:140.280000pt;}
._f{width:141.957435pt;}
._10{width:148.129498pt;}
._27{width:152.304000pt;}
._58{width:154.671008pt;}
._48{width:161.923200pt;}
._a{width:174.962560pt;}
._24{width:176.084800pt;}
._2d{width:242.489344pt;}
._35{width:310.775814pt;}
._1{width:334.539744pt;}
._37{width:348.316576pt;}
._5f{width:356.467200pt;}
._25{width:364.193600pt;}
._23{width:366.464800pt;}
._61{width:465.356480pt;}
._54{width:521.879232pt;}
._38{width:531.332544pt;}
._5b{width:533.015595pt;}
._3a{width:552.970400pt;}
._60{width:571.428160pt;}
._62{width:591.433280pt;}
._5c{width:599.113280pt;}
._5a{width:636.778880pt;}
._56{width:673.018304pt;}
._57{width:731.576608pt;}
._55{width:765.496928pt;}
._63{width:815.683200pt;}
._5d{width:823.363200pt;}
.fs2d{font-size:20.906133pt;}
.fs2b{font-size:26.560000pt;}
.fs2f{font-size:27.598933pt;}
.fs2c{font-size:30.197333pt;}
.fs28{font-size:31.294933pt;}
.fs18{font-size:31.948800pt;}
.fs1d{font-size:31.974933pt;}
.fs23{font-size:31.977600pt;}
.fs1a{font-size:31.981333pt;}
.fsa{font-size:32.000000pt;}
.fs15{font-size:32.028800pt;}
.fsc{font-size:33.819513pt;}
.fs13{font-size:34.560000pt;}
.fs29{font-size:36.662400pt;}
.fs10{font-size:37.354667pt;}
.fs9{font-size:38.400000pt;}
.fs2e{font-size:39.863467pt;}
.fs5{font-size:41.361067pt;}
.fs2a{font-size:42.560000pt;}
.fs7{font-size:43.713281pt;}
.fs26{font-size:47.218667pt;}
.fs2{font-size:48.000000pt;}
.fs27{font-size:52.189867pt;}
.fs17{font-size:53.247467pt;}
.fs0{font-size:53.440000pt;}
.fs12{font-size:56.479151pt;}
.fs1{font-size:58.560000pt;}
.fs1e{font-size:63.949867pt;}
.fs22{font-size:63.954667pt;}
.fs1b{font-size:63.962667pt;}
.fsb{font-size:64.000000pt;}
.fs11{font-size:64.037333pt;}
.fs14{font-size:64.057600pt;}
.fs1f{font-size:67.586585pt;}
.fs24{font-size:67.591817pt;}
.fs20{font-size:67.639544pt;}
.fs6{font-size:68.936533pt;}
.fse{font-size:84.548800pt;}
.fs8{font-size:86.800000pt;}
.fs3{font-size:93.494933pt;}
.fs19{font-size:95.846400pt;}
.fs1c{font-size:95.925333pt;}
.fs21{font-size:95.933867pt;}
.fs25{font-size:96.000000pt;}
.fsf{font-size:96.056533pt;}
.fs16{font-size:96.086400pt;}
.fsd{font-size:115.200000pt;}
.fs4{font-size:124.086400pt;}
.y0{bottom:0.000000pt;}
.ye6{bottom:3.520400pt;}
.yeb{bottom:5.280400pt;}
.yec{bottom:81.707067pt;}
.yea{bottom:86.666667pt;}
.yee{bottom:91.707784pt;}
.ye9{bottom:91.947067pt;}
.yed{bottom:95.627067pt;}
.y1a5{bottom:98.805867pt;}
.yaa{bottom:101.226587pt;}
.y177{bottom:101.613947pt;}
.y15a{bottom:102.085547pt;}
.y202{bottom:105.615413pt;}
.y287{bottom:107.770427pt;}
.y58{bottom:109.909867pt;}
.y24b{bottom:112.983067pt;}
.y1a4{bottom:114.169867pt;}
.y11e{bottom:114.267067pt;}
.ya9{bottom:116.510427pt;}
.y34{bottom:119.603787pt;}
.y286{bottom:123.054267pt;}
.y11d{bottom:124.507067pt;}
.y176{bottom:124.887067pt;}
.y57{bottom:125.193707pt;}
.y159{bottom:125.438827pt;}
.y120{bottom:126.266661pt;}
.y24a{bottom:126.819067pt;}
.y201{bottom:128.968693pt;}
.y1a3{bottom:129.453707pt;}
.y121{bottom:130.267067pt;}
.y1f5{bottom:134.187200pt;}
.y1f6{bottom:137.146539pt;}
.y11f{bottom:137.386871pt;}
.y285{bottom:138.418267pt;}
.y1e4{bottom:138.907067pt;}
.y1ea{bottom:139.467067pt;}
.ya8{bottom:139.863707pt;}
.y175{bottom:140.251067pt;}
.y56{bottom:140.557707pt;}
.y24c{bottom:140.583067pt;}
.ybe{bottom:142.359947pt;}
.y33{bottom:143.037227pt;}
.y1a2{bottom:145.859787pt;}
.y1e5{bottom:146.427067pt;}
.y158{bottom:148.792107pt;}
.y1eb{bottom:149.867067pt;}
.y200{bottom:152.241813pt;}
.y284{bottom:153.782267pt;}
.y1e6{bottom:153.947067pt;}
.y248{bottom:155.067067pt;}
.y174{bottom:155.534907pt;}
.y55{bottom:155.921707pt;}
.y32{bottom:158.401227pt;}
.y1ec{bottom:159.787067pt;}
.y1a1{bottom:161.143627pt;}
.y1e7{bottom:161.547067pt;}
.ya7{bottom:163.216987pt;}
.y90{bottom:163.230347pt;}
.y157{bottom:164.075947pt;}
.ybd{bottom:165.713227pt;}
.y247{bottom:168.903067pt;}
.y283{bottom:169.066107pt;}
.y1e8{bottom:169.627067pt;}
.y173{bottom:170.898907pt;}
.y54{bottom:171.205547pt;}
.y31{bottom:173.765227pt;}
.y1ff{bottom:175.595093pt;}
.y1a0{bottom:176.507627pt;}
.y1e9{bottom:177.227067pt;}
.y11c{bottom:177.543227pt;}
.ya6{bottom:178.500827pt;}
.y8f{bottom:178.514187pt;}
.y156{bottom:179.439947pt;}
.y1ed{bottom:179.547067pt;}
.ye8{bottom:181.464696pt;}
.ye0{bottom:181.467067pt;}
.y246{bottom:182.427067pt;}
.y249{bottom:182.667067pt;}
.y282{bottom:184.430107pt;}
.ye1{bottom:185.467067pt;}
.y172{bottom:186.262907pt;}
.y53{bottom:186.569547pt;}
.y30{bottom:189.049067pt;}
.y19f{bottom:191.871627pt;}
.y11b{bottom:192.827067pt;}
.y11a{bottom:192.832773pt;}
.ya5{bottom:193.864827pt;}
.y155{bottom:194.723787pt;}
.y245{bottom:196.907067pt;}
.ye7{bottom:197.947067pt;}
.ye4{bottom:197.952607pt;}
.y1ee{bottom:198.667067pt;}
.y1fe{bottom:198.948373pt;}
.y281{bottom:199.713947pt;}
.y171{bottom:201.546747pt;}
.y2f{bottom:204.413067pt;}
.ye2{bottom:204.587200pt;}
.ye5{bottom:205.066667pt;}
.y19e{bottom:207.155467pt;}
.ye3{bottom:208.586400pt;}
.ya4{bottom:209.228827pt;}
.y52{bottom:209.922827pt;}
.y154{bottom:210.087787pt;}
.y244{bottom:211.623067pt;}
.y280{bottom:215.077947pt;}
.y119{bottom:217.228133pt;}
.y1fd{bottom:222.221493pt;}
.y19d{bottom:222.519467pt;}
.y170{bottom:224.900027pt;}
.y153{bottom:225.451787pt;}
.y1ef{bottom:225.947067pt;}
.y2e{bottom:227.766347pt;}
.y27f{bottom:230.441947pt;}
.ybc{bottom:231.711627pt;}
.ya3{bottom:232.501947pt;}
.y51{bottom:233.195947pt;}
.y243{bottom:234.027067pt;}
.y19c{bottom:237.883467pt;}
.y113{bottom:240.588027pt;}
.y152{bottom:240.735627pt;}
.y1f7{bottom:244.027067pt;}
.y1fc{bottom:245.574773pt;}
.y27e{bottom:245.725787pt;}
.y16f{bottom:248.253307pt;}
.y50{bottom:248.559947pt;}
.y2d{bottom:251.039467pt;}
.y1f0{bottom:253.307067pt;}
.ybb{bottom:255.064907pt;}
.ya2{bottom:255.855227pt;}
.y242{bottom:255.867067pt;}
.y8e{bottom:255.868587pt;}
.y151{bottom:256.099627pt;}
.y116{bottom:256.827067pt;}
.y27d{bottom:261.089787pt;}
.y19b{bottom:261.156587pt;}
.y16e{bottom:263.537147pt;}
.y4f{bottom:263.923947pt;}
.y2c{bottom:266.403467pt;}
.y114{bottom:267.067067pt;}
.y118{bottom:268.826661pt;}
.y1fb{bottom:268.928053pt;}
.y241{bottom:269.631067pt;}
.yba{bottom:270.348747pt;}
.ydf{bottom:270.354053pt;}
.ya1{bottom:271.139067pt;}
.y8d{bottom:271.152427pt;}
.y150{bottom:271.463627pt;}
.y115{bottom:272.827067pt;}
.y27c{bottom:276.453787pt;}
.y16d{bottom:278.901147pt;}
.y4e{bottom:279.207787pt;}
.y117{bottom:279.946871pt;}
.y1f1{bottom:280.587067pt;}
.y2b{bottom:281.767467pt;}
.y240{bottom:283.467067pt;}
.y19a{bottom:284.507200pt;}
.ya0{bottom:286.503067pt;}
.y14f{bottom:286.754507pt;}
.y27b{bottom:291.737627pt;}
.y1fa{bottom:292.201173pt;}
.yde{bottom:293.707333pt;}
.y16c{bottom:294.265147pt;}
.y4d{bottom:294.571787pt;}
.y2a{bottom:297.051307pt;}
.y23f{bottom:297.231067pt;}
.y9f{bottom:301.850907pt;}
.y14e{bottom:302.118507pt;}
.y27a{bottom:307.101627pt;}
.y1f2{bottom:307.867067pt;}
.y18a{bottom:307.889867pt;}
.y112{bottom:307.949147pt;}
.y16b{bottom:309.548987pt;}
.y4c{bottom:309.935787pt;}
.y29{bottom:312.415307pt;}
.y1f9{bottom:315.554453pt;}
.yb9{bottom:316.988507pt;}
.y9e{bottom:317.134747pt;}
.y23e{bottom:319.071067pt;}
.y279{bottom:322.465627pt;}
.y16a{bottom:324.912987pt;}
.y4b{bottom:325.219627pt;}
.y1f3{bottom:325.864677pt;}
.y191{bottom:326.027067pt;}
.y28{bottom:327.699147pt;}
.y192{bottom:329.391397pt;}
.y1f4{bottom:330.907067pt;}
.y111{bottom:331.222267pt;}
.ydd{bottom:331.947067pt;}
.y9d{bottom:332.498747pt;}
.y14d{bottom:333.314107pt;}
.y278{bottom:337.749467pt;}
.y1f8{bottom:338.907733pt;}
.y169{bottom:340.276987pt;}
.y4a{bottom:340.583627pt;}
.y228{bottom:340.863067pt;}
.ydc{bottom:343.226800pt;}
.ydb{bottom:346.507067pt;}
.y110{bottom:346.586267pt;}
.y199{bottom:347.848720pt;}
.y9c{bottom:347.862747pt;}
.y18b{bottom:350.587067pt;}
.y27{bottom:351.052427pt;}
.y277{bottom:353.113467pt;}
.y168{bottom:355.560827pt;}
.y49{bottom:355.950187pt;}
.y14c{bottom:356.747547pt;}
.y10f{bottom:361.879547pt;}
.y1e3{bottom:362.199520pt;}
.y227{bottom:362.703067pt;}
.y198{bottom:363.375205pt;}
.y23b{bottom:367.547067pt;}
.y276{bottom:368.477467pt;}
.y167{bottom:370.924827pt;}
.y9b{bottom:371.135867pt;}
.y48{bottom:371.234027pt;}
.y23c{bottom:371.383925pt;}
.y229{bottom:373.707067pt;}
.y26{bottom:374.405707pt;}
.y22f{bottom:374.427067pt;}
.y1e2{bottom:377.563520pt;}
.y197{bottom:378.340650pt;}
.yb8{bottom:379.072427pt;}
.y14b{bottom:380.100827pt;}
.y275{bottom:383.761307pt;}
.y226{bottom:384.459067pt;}
.y18c{bottom:384.747200pt;}
.y10e{bottom:385.072507pt;}
.y166{bottom:386.288827pt;}
.y25{bottom:389.689547pt;}
.y22d{bottom:389.785168pt;}
.y22a{bottom:390.587200pt;}
.y196{bottom:392.901622pt;}
.y1e1{bottom:392.927520pt;}
.yda{bottom:394.423067pt;}
.y9a{bottom:394.489147pt;}
.y8c{bottom:394.502507pt;}
.y14a{bottom:395.464827pt;}
.y22e{bottom:396.507067pt;}
.y230{bottom:396.667067pt;}
.y18d{bottom:397.147200pt;}
.y274{bottom:399.125307pt;}
.y10d{bottom:400.436507pt;}
.y233{bottom:401.303665pt;}
.y165{bottom:401.572667pt;}
.y47{bottom:402.429627pt;}
.y24{bottom:405.053547pt;}
.y225{bottom:406.299067pt;}
.y22b{bottom:407.387067pt;}
.y195{bottom:407.867067pt;}
.y234{bottom:408.027200pt;}
.yd9{bottom:409.763867pt;}
.yb7{bottom:409.787067pt;}
.y99{bottom:409.853147pt;}
.y8b{bottom:409.866507pt;}
.y149{bottom:410.748667pt;}
.y273{bottom:414.489307pt;}
.y1e0{bottom:416.200640pt;}
.y164{bottom:416.936667pt;}
.y231{bottom:418.907200pt;}
.y23{bottom:420.417547pt;}
.y10c{bottom:423.869947pt;}
.y22c{bottom:424.267067pt;}
.y98{bottom:425.136987pt;}
.y46{bottom:425.863067pt;}
.y148{bottom:426.112667pt;}
.y224{bottom:428.055067pt;}
.y272{bottom:429.773147pt;}
.yd8{bottom:433.036987pt;}
.y18e{bottom:434.747200pt;}
.y22{bottom:435.701387pt;}
.y1df{bottom:439.553920pt;}
.y163{bottom:440.289947pt;}
.y97{bottom:440.500987pt;}
.y232{bottom:441.147200pt;}
.y147{bottom:441.476667pt;}
.y271{bottom:445.137147pt;}
.y10b{bottom:447.223227pt;}
.y45{bottom:449.216347pt;}
.y223{bottom:449.811067pt;}
.y21{bottom:451.065387pt;}
.y235{bottom:452.667200pt;}
.y194{bottom:452.750163pt;}
.y96{bottom:455.864987pt;}
.yb6{bottom:456.430347pt;}
.y146{bottom:456.760507pt;}
.y270{bottom:460.501147pt;}
.y10a{bottom:462.518587pt;}
.y1de{bottom:462.907200pt;}
.y162{bottom:463.563067pt;}
.y44{bottom:464.580347pt;}
.y193{bottom:466.113046pt;}
.y95{bottom:471.148827pt;}
.y222{bottom:471.651067pt;}
.y18f{bottom:473.227067pt;}
.yc1{bottom:473.547067pt;}
.y20{bottom:474.418667pt;}
.yc0{bottom:475.304994pt;}
.y26f{bottom:475.784987pt;}
.y1dc{bottom:478.439787pt;}
.ybf{bottom:479.307067pt;}
.y43{bottom:479.864187pt;}
.y145{bottom:479.953467pt;}
.y236{bottom:480.987067pt;}
.y94{bottom:486.512827pt;}
.y109{bottom:486.913947pt;}
.y161{bottom:486.916347pt;}
.y23d{bottom:488.747067pt;}
.y1db{bottom:490.675787pt;}
.y26e{bottom:491.148987pt;}
.y221{bottom:493.407067pt;}
.y42{bottom:495.228187pt;}
.y1f{bottom:497.691787pt;}
.y1da{bottom:502.667067pt;}
.y1dd{bottom:502.922427pt;}
.y144{bottom:503.462827pt;}
.y26d{bottom:506.432827pt;}
.y93{bottom:509.866107pt;}
.y237{bottom:510.187067pt;}
.y160{bottom:510.188133pt;}
.y108{bottom:510.191867pt;}
.y41{bottom:510.592187pt;}
.y190{bottom:511.147067pt;}
.y1e{bottom:513.055787pt;}
.y220{bottom:515.247067pt;}
.y1d8{bottom:515.872667pt;}
.y143{bottom:518.753333pt;}
.y26c{bottom:521.796827pt;}
.yb5{bottom:522.589067pt;}
.y40{bottom:525.876027pt;}
.y1d7{bottom:528.108667pt;}
.y1d{bottom:528.419787pt;}
.y8a{bottom:533.139227pt;}
.y107{bottom:534.511867pt;}
.y21f{bottom:537.003067pt;}
.y26b{bottom:537.160827pt;}
.y238{bottom:539.307067pt;}
.y1d6{bottom:539.387067pt;}
.y1d9{bottom:540.429787pt;}
.y3f{bottom:541.240027pt;}
.y142{bottom:543.068533pt;}
.y1c{bottom:543.703627pt;}
.yd7{bottom:545.915627pt;}
.yb4{bottom:545.942347pt;}
.y89{bottom:548.503227pt;}
.y26a{bottom:552.284347pt;}
.y1d4{bottom:553.312667pt;}
.y106{bottom:558.831707pt;}
.y21e{bottom:558.843067pt;}
.y1b{bottom:559.067627pt;}
.yd6{bottom:561.199467pt;}
.yb3{bottom:561.226187pt;}
.y92{bottom:563.787067pt;}
.y91{bottom:563.789867pt;}
.y3e{bottom:564.593307pt;}
.y1d3{bottom:565.548667pt;}
.y13a{bottom:566.441867pt;}
.y239{bottom:567.627067pt;}
.y269{bottom:567.648347pt;}
.y1a{bottom:574.405227pt;}
.yd5{bottom:576.563467pt;}
.y1d2{bottom:576.827067pt;}
.y1d5{bottom:577.869787pt;}
.y87{bottom:580.184160pt;}
.y21d{bottom:580.599067pt;}
.y141{bottom:582.507067pt;}
.y268{bottom:583.172667pt;}
.y105{bottom:583.231867pt;}
.y13c{bottom:586.507067pt;}
.y3d{bottom:587.874453pt;}
.y1d0{bottom:590.754667pt;}
.yd4{bottom:591.927467pt;}
.y140{bottom:593.306290pt;}
.y13b{bottom:595.227067pt;}
.y88{bottom:595.467947pt;}
.y86{bottom:595.468000pt;}
.y23a{bottom:596.747067pt;}
.y13e{bottom:597.307067pt;}
.y21c{bottom:602.439067pt;}
.y13f{bottom:603.067067pt;}
.y1cf{bottom:603.075787pt;}
.y13d{bottom:603.546667pt;}
.y19{bottom:605.520667pt;}
.y267{bottom:606.445787pt;}
.y104{bottom:607.551867pt;}
.y189{bottom:608.529947pt;}
.y7b{bottom:611.065019pt;}
.y3c{bottom:611.227733pt;}
.y81{bottom:611.922657pt;}
.y7e{bottom:611.938667pt;}
.y85{bottom:613.875796pt;}
.yd3{bottom:615.040267pt;}
.y1ce{bottom:615.067067pt;}
.y1d1{bottom:615.311787pt;}
.y266{bottom:621.809787pt;}
.y79{bottom:622.667067pt;}
.y188{bottom:623.813787pt;}
.y21b{bottom:624.195067pt;}
.y80{bottom:625.050311pt;}
.y7d{bottom:625.066320pt;}
.y83{bottom:626.315048pt;}
.y7c{bottom:626.347067pt;}
.y78{bottom:626.427067pt;}
.y1cd{bottom:628.027067pt;}
.y103{bottom:631.871867pt;}
.y29d{bottom:632.347867pt;}
.y82{bottom:635.280275pt;}
.y7f{bottom:635.296284pt;}
.y84{bottom:636.512993pt;}
.y265{bottom:637.013467pt;}
.yd2{bottom:638.553867pt;}
.yb2{bottom:638.580587pt;}
.y187{bottom:639.177787pt;}
.y1cc{bottom:641.147067pt;}
.y139{bottom:641.404827pt;}
.y7a{bottom:642.667067pt;}
.y18{bottom:645.039547pt;}
.y21a{bottom:646.035067pt;}
.y29c{bottom:647.711867pt;}
.yd1{bottom:653.917867pt;}
.yb1{bottom:653.944587pt;}
.y186{bottom:654.461627pt;}
.y102{bottom:656.191867pt;}
.y264{bottom:660.286587pt;}
.y17{bottom:660.403547pt;}
.y1cb{bottom:662.585680pt;}
.y29b{bottom:663.156027pt;}
.y138{bottom:664.677947pt;}
.y219{bottom:667.791067pt;}
.yd0{bottom:669.201707pt;}
.y185{bottom:669.825627pt;}
.y77{bottom:671.312667pt;}
.y16{bottom:675.687387pt;}
.y29a{bottom:678.520027pt;}
.y137{bottom:680.041947pt;}
.y101{bottom:680.507067pt;}
.y263{bottom:683.800187pt;}
.ycf{bottom:684.565707pt;}
.y184{bottom:685.189627pt;}
.y1ca{bottom:685.938960pt;}
.y218{bottom:689.631067pt;}
.y15{bottom:691.051387pt;}
.y299{bottom:693.884027pt;}
.y76{bottom:694.665947pt;}
.yce{bottom:699.929707pt;}
.y1c9{bottom:701.222800pt;}
.y136{bottom:703.395227pt;}
.y100{bottom:704.827067pt;}
.y14{bottom:706.335227pt;}
.y262{bottom:707.153467pt;}
.y183{bottom:708.302427pt;}
.y298{bottom:709.167867pt;}
.y75{bottom:709.949787pt;}
.y217{bottom:711.387067pt;}
.ycd{bottom:715.213547pt;}
.y1c8{bottom:716.586800pt;}
.y13{bottom:721.699227pt;}
.y261{bottom:722.437307pt;}
.y297{bottom:724.531867pt;}
.y74{bottom:725.313787pt;}
.y215{bottom:725.867067pt;}
.y135{bottom:726.668400pt;}
.yff{bottom:729.231867pt;}
.y182{bottom:731.655707pt;}
.y1c7{bottom:736.827200pt;}
.y12{bottom:737.063227pt;}
.y260{bottom:737.801307pt;}
.ycc{bottom:738.566827pt;}
.y213{bottom:739.463067pt;}
.y214{bottom:739.703067pt;}
.y296{bottom:739.895867pt;}
.y131{bottom:743.627067pt;}
.y1b4{bottom:747.147200pt;}
.y130{bottom:748.586667pt;}
.y73{bottom:748.586933pt;}
.y1c4{bottom:748.907067pt;}
.y1b5{bottom:750.190632pt;}
.y1a6{bottom:751.947067pt;}
.y11{bottom:752.347067pt;}
.y1c5{bottom:752.426657pt;}
.y1ab{bottom:752.587067pt;}
.y25f{bottom:753.165307pt;}
.y212{bottom:753.227067pt;}
.y216{bottom:753.467067pt;}
.yfe{bottom:753.547067pt;}
.y134{bottom:753.547987pt;}
.y1b7{bottom:754.507067pt;}
.y181{bottom:755.169307pt;}
.y295{bottom:755.179707pt;}
.y1bb{bottom:755.227067pt;}
.y132{bottom:757.547067pt;}
.y1a7{bottom:761.627067pt;}
.ycb{bottom:761.920107pt;}
.yb0{bottom:761.946827pt;}
.y133{bottom:764.750060pt;}
.y1ac{bottom:765.787067pt;}
.y6a{bottom:765.790267pt;}
.y10{bottom:767.511227pt;}
.y210{bottom:767.943067pt;}
.y25e{bottom:768.449147pt;}
.y71{bottom:768.667067pt;}
.y1b8{bottom:770.027067pt;}
.y294{bottom:770.543707pt;}
.y6d{bottom:770.827067pt;}
.y15f{bottom:771.083547pt;}
.y1a8{bottom:771.867067pt;}
.y1bc{bottom:775.707067pt;}
.yca{bottom:777.203947pt;}
.yaf{bottom:777.230667pt;}
.yfd{bottom:777.885387pt;}
.y6f{bottom:778.027067pt;}
.y180{bottom:778.442427pt;}
.y1ad{bottom:779.067067pt;}
.y1a9{bottom:781.467067pt;}
.y20f{bottom:781.779067pt;}
.y70{bottom:782.187067pt;}
.yf{bottom:783.035547pt;}
.y6c{bottom:783.307067pt;}
.y67{bottom:783.387067pt;}
.y25d{bottom:783.813147pt;}
.y1b9{bottom:785.547067pt;}
.y293{bottom:785.907707pt;}
.y15e{bottom:786.367387pt;}
.y68{bottom:788.427067pt;}
.y1aa{bottom:791.707067pt;}
.y12f{bottom:792.052187pt;}
.y72{bottom:792.427067pt;}
.yc9{bottom:792.567947pt;}
.y6e{bottom:793.387067pt;}
.y17f{bottom:793.806427pt;}
.y20e{bottom:794.427067pt;}
.y211{bottom:795.543067pt;}
.y1bd{bottom:796.107067pt;}
.ye{bottom:798.319387pt;}
.y25c{bottom:799.177147pt;}
.y1ba{bottom:801.067067pt;}
.y292{bottom:801.191547pt;}
.y69{bottom:801.627067pt;}
.yfc{bottom:802.280747pt;}
.y1ae{bottom:804.907067pt;}
.y6b{bottom:806.587067pt;}
.yc8{bottom:807.931947pt;}
.y17e{bottom:809.170427pt;}
.y15d{bottom:809.720667pt;}
.y20c{bottom:810.023067pt;}
.yd{bottom:813.683387pt;}
.y1af{bottom:813.947067pt;}
.y25b{bottom:814.460987pt;}
.y12e{bottom:815.405467pt;}
.y291{bottom:816.555547pt;}
.y1be{bottom:816.587067pt;}
.yc7{bottom:823.215787pt;}
.y20b{bottom:823.859067pt;}
.yfb{bottom:825.553867pt;}
.y1bf{bottom:827.147200pt;}
.yc{bottom:829.047387pt;}
.y290{bottom:831.919547pt;}
.y17d{bottom:832.443547pt;}
.y15c{bottom:833.073947pt;}
.y20a{bottom:836.507067pt;}
.y20d{bottom:837.623067pt;}
.y25a{bottom:837.814267pt;}
.y66{bottom:838.205787pt;}
.yc6{bottom:838.579787pt;}
.y12d{bottom:838.678587pt;}
.yfa{bottom:840.837707pt;}
.y1b0{bottom:842.267067pt;}
.yb{bottom:844.331227pt;}
.y28f{bottom:847.203387pt;}
.y208{bottom:852.107067pt;}
.yc5{bottom:853.863627pt;}
.y17c{bottom:855.796827pt;}
.y15b{bottom:856.347067pt;}
.ya{bottom:859.695227pt;}
.y1c0{bottom:860.267067pt;}
.y1b6{bottom:860.347067pt;}
.y259{bottom:860.927067pt;}
.y65{bottom:861.478907pt;}
.y12c{bottom:862.027867pt;}
.y28e{bottom:862.567387pt;}
.yf9{bottom:865.233067pt;}
.y207{bottom:865.871067pt;}
.yc4{bottom:869.227627pt;}
.y1b1{bottom:870.507067pt;}
.y9{bottom:875.059227pt;}
.y125{bottom:877.787067pt;}
.y28d{bottom:877.851227pt;}
.y206{bottom:879.467067pt;}
.y209{bottom:879.707067pt;}
.y17b{bottom:880.112027pt;}
.y1c6{bottom:881.547067pt;}
.y127{bottom:881.787067pt;}
.y258{bottom:884.280347pt;}
.yc3{bottom:884.587707pt;}
.y63{bottom:884.826800pt;}
.y64{bottom:884.832187pt;}
.yf8{bottom:888.587733pt;}
.y8{bottom:890.343067pt;}
.y28c{bottom:893.215227pt;}
.y1c1{bottom:893.387067pt;}
.y205{bottom:893.947067pt;}
.y129{bottom:894.267067pt;}
.y12b{bottom:894.274215pt;}
.y1b2{bottom:898.827067pt;}
.y126{bottom:900.909571pt;}
.y128{bottom:901.386667pt;}
.y5f{bottom:901.391954pt;}
.y17a{bottom:904.364507pt;}
.yf5{bottom:904.667067pt;}
.y12a{bottom:904.906679pt;}
.y7{bottom:905.691547pt;}
.y257{bottom:907.793947pt;}
.y3b{bottom:907.851787pt;}
.y28b{bottom:908.579227pt;}
.y204{bottom:908.587067pt;}
.yf2{bottom:908.667067pt;}
.y5d{bottom:914.587067pt;}
.yf7{bottom:915.466290pt;}
.yae{bottom:915.693787pt;}
.yf1{bottom:917.387067pt;}
.yf4{bottom:919.467067pt;}
.y6{bottom:921.055547pt;}
.y61{bottom:922.907067pt;}
.y5c{bottom:922.987067pt;}
.y3a{bottom:923.215787pt;}
.y28a{bottom:923.863067pt;}
.yf6{bottom:925.227067pt;}
.yf3{bottom:925.706667pt;}
.y1c2{bottom:926.587067pt;}
.y1b3{bottom:927.147067pt;}
.y179{bottom:928.679707pt;}
.y62{bottom:930.667067pt;}
.y60{bottom:930.675589pt;}
.y256{bottom:931.067067pt;}
.y203{bottom:931.218107pt;}
.yc2{bottom:931.227467pt;}
.y5{bottom:936.339387pt;}
.y39{bottom:938.579787pt;}
.y289{bottom:939.219227pt;}
.y5e{bottom:945.307067pt;}
.y124{bottom:946.600667pt;}
.y254{bottom:946.987067pt;}
.y4{bottom:951.703387pt;}
.y178{bottom:952.914747pt;}
.y38{bottom:953.863627pt;}
.yad{bottom:954.571387pt;}
.y288{bottom:954.583227pt;}
.y1c3{bottom:959.707067pt;}
.y252{bottom:960.511067pt;}
.y253{bottom:960.751067pt;}
.y3{bottom:966.907067pt;}
.y37{bottom:969.227627pt;}
.yf0{bottom:969.240667pt;}
.yac{bottom:969.855227pt;}
.y123{bottom:969.873787pt;}
.y251{bottom:974.347067pt;}
.y255{bottom:974.587067pt;}
.y5b{bottom:977.229947pt;}
.y36{bottom:984.591627pt;}
.yab{bottom:985.219227pt;}
.y24f{bottom:988.983067pt;}
.yef{bottom:992.593947pt;}
.y122{bottom:993.227067pt;}
.y2{bottom:998.507067pt;}
.y5a{bottom:1000.583227pt;}
.y24e{bottom:1002.819067pt;}
.y24d{bottom:1015.467067pt;}
.y35{bottom:1015.707067pt;}
.y59{bottom:1015.867067pt;}
.y250{bottom:1016.583067pt;}
.y1{bottom:1080.187067pt;}
.h5e{height:15.414190pt;}
.h3b{height:19.120000pt;}
.h33{height:19.520000pt;}
.h66{height:20.348823pt;}
.h5d{height:22.264635pt;}
.h57{height:23.073901pt;}
.h35{height:26.320000pt;}
.h58{height:27.031359pt;}
.h65{height:29.391521pt;}
.h2e{height:29.593200pt;}
.h36{height:29.617407pt;}
.h4d{height:29.640625pt;}
.h11{height:31.325984pt;}
.h44{height:31.368652pt;}
.h30{height:31.387930pt;}
.hf{height:31.390625pt;}
.h12{height:31.406250pt;}
.h3c{height:31.418877pt;}
.h1a{height:34.600490pt;}
.h16{height:35.568750pt;}
.h1f{height:36.643323pt;}
.h1d{height:36.661563pt;}
.he{height:37.668750pt;}
.h13{height:37.687500pt;}
.h9{height:38.311496pt;}
.hb{height:40.490280pt;}
.hc{height:40.593625pt;}
.h5b{height:41.770312pt;}
.h59{height:41.913620pt;}
.h5a{height:42.892500pt;}
.h5c{height:45.941192pt;}
.h61{height:47.109375pt;}
.h5f{height:47.415000pt;}
.h60{height:48.375000pt;}
.h54{height:49.247594pt;}
.h55{height:51.221500pt;}
.h63{height:51.573375pt;}
.h2c{height:52.259477pt;}
.h23{height:52.314917pt;}
.h3e{height:52.375157pt;}
.h24{height:52.422344pt;}
.h1{height:52.448437pt;}
.h51{height:52.453771pt;}
.h22{height:52.454518pt;}
.h56{height:52.459104pt;}
.h2a{height:52.464118pt;}
.h4b{height:52.464438pt;}
.h4{height:52.510518pt;}
.h2b{height:52.541237pt;}
.h6{height:52.554037pt;}
.h62{height:53.690000pt;}
.h46{height:53.834673pt;}
.h3{height:53.857500pt;}
.h2f{height:55.340400pt;}
.h5{height:55.736250pt;}
.h52{height:57.832115pt;}
.h40{height:57.899550pt;}
.h41{height:57.900190pt;}
.h47{height:57.901875pt;}
.h3f{height:57.918750pt;}
.h69{height:57.950110pt;}
.h68{height:57.966110pt;}
.h25{height:57.983390pt;}
.h2{height:59.017500pt;}
.h43{height:59.239259pt;}
.h31{height:59.246669pt;}
.h17{height:59.281250pt;}
.h1b{height:59.315831pt;}
.h29{height:59.334603pt;}
.h37{height:60.166036pt;}
.h39{height:62.603395pt;}
.h49{height:62.608241pt;}
.h3a{height:62.652449pt;}
.h4a{height:62.736780pt;}
.h32{height:62.744628pt;}
.h10{height:62.781250pt;}
.h20{height:62.817872pt;}
.h26{height:62.837753pt;}
.h1e{height:62.849141pt;}
.h4f{height:62.869031pt;}
.h50{height:62.885991pt;}
.ha{height:71.613429pt;}
.h3d{height:75.337710pt;}
.h18{height:78.314977pt;}
.h38{height:78.440429pt;}
.h45{height:78.738402pt;}
.h48{height:78.769630pt;}
.h4e{height:78.834070pt;}
.h27{height:78.877322pt;}
.hd{height:80.400195pt;}
.h14{height:82.440625pt;}
.h2d{height:84.621200pt;}
.h7{height:86.601508pt;}
.h34{height:88.852714pt;}
.h42{height:88.860618pt;}
.h4c{height:88.921875pt;}
.h19{height:88.974240pt;}
.h28{height:89.001905pt;}
.h1c{height:102.069637pt;}
.h64{height:103.125375pt;}
.h67{height:103.413375pt;}
.h15{height:106.706250pt;}
.h21{height:113.583797pt;}
.h8{height:114.937452pt;}
.h53{height:208.287594pt;}
.h0{height:1122.666667pt;}
.w4{width:9.920000pt;}
.w2{width:14.240000pt;}
.w3{width:17.120000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.xa{left:75.604400pt;}
.x32{left:82.292800pt;}
.x33{left:85.998880pt;}
.x72{left:93.120000pt;}
.x70{left:96.800000pt;}
.x38{left:98.535760pt;}
.x6e{left:100.160000pt;}
.x6f{left:106.880000pt;}
.x5f{left:122.640560pt;}
.x6d{left:126.400000pt;}
.x8a{left:127.756000pt;}
.x2{left:130.480000pt;}
.x34{left:142.000000pt;}
.x7e{left:145.280000pt;}
.x39{left:147.192880pt;}
.x71{left:148.161409pt;}
.x35{left:149.360000pt;}
.x6c{left:152.560000pt;}
.x6b{left:178.800000pt;}
.x65{left:186.959753pt;}
.x5e{left:197.990960pt;}
.x93{left:199.440000pt;}
.x90{left:203.276591pt;}
.x64{left:205.920000pt;}
.x6a{left:211.200000pt;}
.x62{left:212.560000pt;}
.x91{left:216.640000pt;}
.x63{left:223.120000pt;}
.x68{left:225.680000pt;}
.x88{left:230.720000pt;}
.x85{left:235.680000pt;}
.x25{left:238.800000pt;}
.x92{left:240.882423pt;}
.x2f{left:243.290993pt;}
.x86{left:245.438711pt;}
.x31{left:249.880640pt;}
.x84{left:251.520000pt;}
.x46{left:259.048180pt;}
.x29{left:260.738268pt;}
.x53{left:261.840000pt;}
.x45{left:264.369680pt;}
.x67{left:269.840800pt;}
.x4c{left:271.440000pt;}
.x7{left:272.814240pt;}
.x14{left:277.680000pt;}
.xc{left:278.800000pt;}
.x5a{left:281.040000pt;}
.x19{left:282.080000pt;}
.x2e{left:283.282308pt;}
.x2c{left:284.882212pt;}
.x5{left:287.202960pt;}
.x1{left:289.120000pt;}
.x43{left:292.800000pt;}
.xb{left:294.235867pt;}
.x3f{left:296.720000pt;}
.x23{left:298.880000pt;}
.x61{left:300.400000pt;}
.x10{left:301.920000pt;}
.x26{left:304.720000pt;}
.x3{left:305.760000pt;}
.x4{left:307.443360pt;}
.x42{left:308.480000pt;}
.x3e{left:309.920000pt;}
.x22{left:310.880000pt;}
.x27{left:313.120000pt;}
.x2a{left:316.396555pt;}
.xd{left:318.320000pt;}
.xe{left:321.762761pt;}
.x1e{left:322.800000pt;}
.x4e{left:324.080000pt;}
.x56{left:328.080000pt;}
.x4a{left:329.600000pt;}
.x5c{left:331.600000pt;}
.x21{left:336.560000pt;}
.x9{left:340.172480pt;}
.x57{left:341.840000pt;}
.x6{left:343.528720pt;}
.x16{left:345.120000pt;}
.x4d{left:347.440000pt;}
.x83{left:349.440000pt;}
.x20{left:350.643200pt;}
.x1f{left:352.880000pt;}
.x1d{left:356.156800pt;}
.x1c{left:357.520000pt;}
.x69{left:362.400000pt;}
.x4f{left:364.639287pt;}
.x5d{left:366.640000pt;}
.xf{left:369.441730pt;}
.x5b{left:375.680000pt;}
.x60{left:377.680000pt;}
.x12{left:381.600000pt;}
.x8b{left:383.200000pt;}
.x11{left:386.640000pt;}
.x18{left:392.720000pt;}
.x48{left:394.000000pt;}
.x7f{left:395.040000pt;}
.x8{left:396.885680pt;}
.x41{left:403.280000pt;}
.x7c{left:405.440000pt;}
.x3d{left:406.400000pt;}
.x47{left:408.320000pt;}
.x15{left:410.400000pt;}
.x1b{left:412.880000pt;}
.x1a{left:416.960000pt;}
.x55{left:417.920000pt;}
.x4b{left:418.960000pt;}
.x17{left:421.280000pt;}
.x49{left:424.080007pt;}
.x87{left:426.080000pt;}
.x54{left:433.680000pt;}
.x3a{left:437.555360pt;}
.x59{left:438.960000pt;}
.x79{left:441.120000pt;}
.x58{left:445.600553pt;}
.x8c{left:447.360000pt;}
.x28{left:448.960000pt;}
.x80{left:454.640000pt;}
.x7b{left:460.643669pt;}
.x37{left:461.540320pt;}
.x2b{left:473.200000pt;}
.x51{left:475.280000pt;}
.x78{left:477.840000pt;}
.x52{left:482.640000pt;}
.x81{left:484.480000pt;}
.x3c{left:496.018720pt;}
.x2d{left:498.880000pt;}
.x8d{left:511.520000pt;}
.x82{left:514.320000pt;}
.x94{left:525.604000pt;}
.x77{left:527.600000pt;}
.x89{left:529.920000pt;}
.x73{left:542.960000pt;}
.x50{left:548.960000pt;}
.x36{left:557.652160pt;}
.x40{left:567.832480pt;}
.x8e{left:574.880000pt;}
.x8f{left:578.000000pt;}
.x74{left:591.520000pt;}
.x3b{left:600.400400pt;}
.x7a{left:602.160000pt;}
.x44{left:605.759067pt;}
.x66{left:616.480000pt;}
.x75{left:640.080000pt;}
.x13{left:645.350560pt;}
.x76{left:687.999867pt;}
.x24{left:689.199467pt;}
.x30{left:692.551440pt;}
.x7d{left:710.720000pt;}
}




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