
    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_93040792e7665fca7baa93ca.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.190918;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_aa042b022035f792326e0cb0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.191406;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_6bdd77d20e5598afc89b83ed.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.203000;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_c36c5aad59317d3db0410219.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946289;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_01e5e8d4cbf7c4fd220b5002.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.190918;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_d5d00b64665ddeb69c894d58.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_6c1a12d0c6ca117b36a936c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dbfdea5b2e4fb605ead308a2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.191406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_958fc9332f892968be8f55af.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.349000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_11635831818c472544cff41c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.362000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01e5e8d4cbf7c4fd220b5002.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.190918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c9bd1009e90867a60c6194bd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bfe4155ebec06660349bb335.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.939000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_01f0bb47f6b929cf9b5edad6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_eefe60eec34bcd63fc2cecea.woff2')format("woff");}.fff{font-family:fff;line-height:1.384000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_31be10acc8ad225f9e3e88da.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.200885;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_bfe4155ebec06660349bb335.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.939000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_1af97164da189b7d74ceaa29.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_0a67b43c7bded6239703d30b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_524fcfdd986994548b43de0b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.685000;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:ff15;src:url('chunks/assets/font_99dcd50ebdaabe15bf56561d.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.225182;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:ff16;src:url('chunks/assets/font_845325052db30465e3d376dc.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.927000;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:ff17;src:url('chunks/assets/font_bfe4155ebec06660349bb335.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.939000;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:ff18;src:url('chunks/assets/font_543cf98d00637220d8326b6d.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938000;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:ff19;src:url('chunks/assets/font_558c4fbd883b5ce81ac59ca2.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.702000;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:ff1a;src:url('chunks/assets/font_617e51c39c83cb89e4e8a757.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.392000;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:ff1b;src:url('chunks/assets/font_bfe4155ebec06660349bb335.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.939000;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:ff1c;src:url('chunks/assets/font_01f0bb47f6b929cf9b5edad6.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.938000;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:ff1d;src:url('chunks/assets/font_01f0bb47f6b929cf9b5edad6.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.938000;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:ff1e;src:url('chunks/assets/font_cda9d53d0a2892fe0c07e72e.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.807501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807501,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.820001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820001,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(1.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.212500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(1.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.237500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.337500,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);}
.v15{vertical-align:-67.405821px;}
.vd{vertical-align:-38.016000px;}
.v16{vertical-align:-32.845823px;}
.v19{vertical-align:-24.181521px;}
.v3{vertical-align:-20.400879px;}
.v8{vertical-align:-18.563965px;}
.v6{vertical-align:-17.339996px;}
.v18{vertical-align:-13.823999px;}
.v4{vertical-align:-10.848110px;}
.va{vertical-align:-9.330139px;}
.v9{vertical-align:-8.206055px;}
.ve{vertical-align:-6.234009px;}
.v1f{vertical-align:-1.276836px;}
.v0{vertical-align:0.000000px;}
.v1c{vertical-align:3.456299px;}
.vf{vertical-align:7.594417px;}
.v1b{vertical-align:8.629632px;}
.v11{vertical-align:10.788208px;}
.v10{vertical-align:12.316579px;}
.v7{vertical-align:14.382000px;}
.v2{vertical-align:16.800293px;}
.v5{vertical-align:18.563965px;}
.v1{vertical-align:20.400879px;}
.v1e{vertical-align:22.512000px;}
.v1d{vertical-align:29.492190px;}
.v12{vertical-align:31.768606px;}
.v1a{vertical-align:32.845823px;}
.v17{vertical-align:36.274174px;}
.v13{vertical-align:39.757822px;}
.v14{vertical-align:44.900350px;}
.vc{vertical-align:46.669822px;}
.vb{vertical-align:48.383998px;}
.ls11{letter-spacing:-9.180000px;}
.ls12b{letter-spacing:-4.860000px;}
.ls78{letter-spacing:-3.638544px;}
.ls32{letter-spacing:-3.041064px;}
.ls30{letter-spacing:-2.881008px;}
.lsc2{letter-spacing:-1.672011px;}
.ls123{letter-spacing:-1.596000px;}
.ls14f{letter-spacing:-1.512000px;}
.ls135{letter-spacing:-1.481917px;}
.ls177{letter-spacing:-1.440000px;}
.ls13b{letter-spacing:-1.307574px;}
.ls75{letter-spacing:-1.166202px;}
.ls12a{letter-spacing:-1.092000px;}
.ls129{letter-spacing:-1.050000px;}
.ls84{letter-spacing:-1.049582px;}
.ls29{letter-spacing:-1.037400px;}
.ls85{letter-spacing:-1.010708px;}
.ls12c{letter-spacing:-0.966000px;}
.ls76{letter-spacing:-0.909636px;}
.ls31{letter-spacing:-0.800280px;}
.ls124{letter-spacing:-0.798000px;}
.ls141{letter-spacing:-0.760360px;}
.ls43{letter-spacing:-0.752400px;}
.ls15d{letter-spacing:-0.722304px;}
.ls186{letter-spacing:-0.720000px;}
.ls4e{letter-spacing:-0.709800px;}
.ls140{letter-spacing:-0.701870px;}
.ls3e{letter-spacing:-0.651100px;}
.ls176{letter-spacing:-0.630000px;}
.lsfd{letter-spacing:-0.608256px;}
.ls5b{letter-spacing:-0.600600px;}
.ls181{letter-spacing:-0.585000px;}
.ls41{letter-spacing:-0.548294px;}
.ls38{letter-spacing:-0.547200px;}
.ls74{letter-spacing:-0.545782px;}
.ls15e{letter-spacing:-0.540000px;}
.ls7d{letter-spacing:-0.505354px;}
.ls126{letter-spacing:-0.504000px;}
.ls146{letter-spacing:-0.499908px;}
.ls172{letter-spacing:-0.495000px;}
.ls5c{letter-spacing:-0.491400px;}
.lscf{letter-spacing:-0.486000px;}
.ls111{letter-spacing:-0.442368px;}
.lsb4{letter-spacing:-0.418176px;}
.ls3c{letter-spacing:-0.410400px;}
.ls83{letter-spacing:-0.409336px;}
.ls171{letter-spacing:-0.405000px;}
.ls136{letter-spacing:-0.392272px;}
.ls59{letter-spacing:-0.382200px;}
.lsce{letter-spacing:-0.364802px;}
.ls17b{letter-spacing:-0.360000px;}
.ls7e{letter-spacing:-0.349861px;}
.ls132{letter-spacing:-0.348686px;}
.ls3f{letter-spacing:-0.342000px;}
.ls128{letter-spacing:-0.336000px;}
.ls173{letter-spacing:-0.315000px;}
.ls39{letter-spacing:-0.307800px;}
.lsb5{letter-spacing:-0.304128px;}
.ls57{letter-spacing:-0.273000px;}
.ls51{letter-spacing:-0.270000px;}
.ls88{letter-spacing:-0.227796px;}
.ls17c{letter-spacing:-0.225000px;}
.ls2a{letter-spacing:-0.218400px;}
.ls54{letter-spacing:-0.216000px;}
.ls73{letter-spacing:-0.181927px;}
.ls178{letter-spacing:-0.180000px;}
.ls11a{letter-spacing:-0.177450px;}
.ls52{letter-spacing:-0.175500px;}
.ls137{letter-spacing:-0.174343px;}
.ls127{letter-spacing:-0.168000px;}
.ls101{letter-spacing:-0.165888px;}
.ls17{letter-spacing:-0.163800px;}
.ls117{letter-spacing:-0.162000px;}
.ls2f{letter-spacing:-0.160056px;}
.ls145{letter-spacing:-0.149972px;}
.ls116{letter-spacing:-0.140400px;}
.ls3b{letter-spacing:-0.137074px;}
.ls89{letter-spacing:-0.136445px;}
.ls175{letter-spacing:-0.135000px;}
.ls134{letter-spacing:-0.130757px;}
.ls115{letter-spacing:-0.120000px;}
.ls7c{letter-spacing:-0.116620px;}
.lsb1{letter-spacing:-0.110592px;}
.ls12{letter-spacing:-0.109200px;}
.ls2d{letter-spacing:-0.108000px;}
.ls131{letter-spacing:-0.106470px;}
.ls81{letter-spacing:-0.104179px;}
.ls37{letter-spacing:-0.102600px;}
.lsc3{letter-spacing:-0.091201px;}
.ls77{letter-spacing:-0.090964px;}
.ls170{letter-spacing:-0.090000px;}
.ls13a{letter-spacing:-0.087172px;}
.ls34{letter-spacing:-0.080028px;}
.ls8a{letter-spacing:-0.077902px;}
.ls7a{letter-spacing:-0.077747px;}
.lsb8{letter-spacing:-0.076032px;}
.lsbe{letter-spacing:-0.076000px;}
.ls151{letter-spacing:-0.072252px;}
.ls4f{letter-spacing:-0.060000px;}
.ls13f{letter-spacing:-0.058489px;}
.ls13{letter-spacing:-0.054600px;}
.ls2c{letter-spacing:-0.054000px;}
.ls143{letter-spacing:-0.049991px;}
.ls152{letter-spacing:-0.048168px;}
.ls6f{letter-spacing:-0.045482px;}
.ls17a{letter-spacing:-0.045000px;}
.ls138{letter-spacing:-0.043586px;}
.ls33{letter-spacing:-0.040014px;}
.ls7b{letter-spacing:-0.038873px;}
.ls40{letter-spacing:-0.034268px;}
.ls36{letter-spacing:-0.034200px;}
.lsbf{letter-spacing:-0.030430px;}
.lsc9{letter-spacing:-0.030400px;}
.lsc1{letter-spacing:-0.025384px;}
.ls10{letter-spacing:0.000000px;}
.lsf3{letter-spacing:0.000014px;}
.ls97{letter-spacing:0.000017px;}
.lseb{letter-spacing:0.000020px;}
.lsa3{letter-spacing:0.000519px;}
.ls46{letter-spacing:0.005375px;}
.ls61{letter-spacing:0.005460px;}
.lsa2{letter-spacing:0.009554px;}
.lsa8{letter-spacing:0.010016px;}
.ls4{letter-spacing:0.011699px;}
.ls2{letter-spacing:0.013223px;}
.ls3{letter-spacing:0.013864px;}
.lsea{letter-spacing:0.022083px;}
.ls9d{letter-spacing:0.025384px;}
.lsa0{letter-spacing:0.028771px;}
.lsa5{letter-spacing:0.030400px;}
.lsaa{letter-spacing:0.031321px;}
.ls25{letter-spacing:0.034200px;}
.ls27{letter-spacing:0.034268px;}
.ls44{letter-spacing:0.035100px;}
.ls104{letter-spacing:0.038016px;}
.ls68{letter-spacing:0.038873px;}
.ls69{letter-spacing:0.038951px;}
.ls130{letter-spacing:0.043586px;}
.ls168{letter-spacing:0.045000px;}
.ls62{letter-spacing:0.045482px;}
.ls13d{letter-spacing:0.049991px;}
.ls9e{letter-spacing:0.050768px;}
.ls21{letter-spacing:0.054000px;}
.ls5{letter-spacing:0.054600px;}
.ls160{letter-spacing:0.055296px;}
.ls13c{letter-spacing:0.058489px;}
.lsa9{letter-spacing:0.059445px;}
.lsa7{letter-spacing:0.060800px;}
.ls24{letter-spacing:0.068400px;}
.ls16f{letter-spacing:0.070200px;}
.ls2b{letter-spacing:0.070980px;}
.lsba{letter-spacing:0.076032px;}
.ls63{letter-spacing:0.077747px;}
.lse9{letter-spacing:0.082232px;}
.lse8{letter-spacing:0.082781px;}
.ls12e{letter-spacing:0.087172px;}
.ls169{letter-spacing:0.090000px;}
.ls72{letter-spacing:0.090964px;}
.ls13e{letter-spacing:0.099982px;}
.ls1a{letter-spacing:0.106470px;}
.ls15c{letter-spacing:0.107136px;}
.lse6{letter-spacing:0.108000px;}
.ls20{letter-spacing:0.109200px;}
.ls64{letter-spacing:0.116620px;}
.ls60{letter-spacing:0.119005px;}
.ls14b{letter-spacing:0.120000px;}
.ls139{letter-spacing:0.130757px;}
.ls167{letter-spacing:0.135000px;}
.ls70{letter-spacing:0.136445px;}
.ls3d{letter-spacing:0.136800px;}
.ls4c{letter-spacing:0.141558px;}
.lse{letter-spacing:0.141960px;}
.lsdf{letter-spacing:0.144671px;}
.ls5f{letter-spacing:0.151884px;}
.lsf6{letter-spacing:0.152364px;}
.lsf7{letter-spacing:0.152544px;}
.ls79{letter-spacing:0.155494px;}
.lsf1{letter-spacing:0.159497px;}
.lsf0{letter-spacing:0.159502px;}
.ls158{letter-spacing:0.162000px;}
.ls19{letter-spacing:0.163800px;}
.lsde{letter-spacing:0.174707px;}
.ls142{letter-spacing:0.175468px;}
.ls118{letter-spacing:0.175500px;}
.ls1e{letter-spacing:0.177450px;}
.ls16a{letter-spacing:0.180000px;}
.lsca{letter-spacing:0.185592px;}
.ls98{letter-spacing:0.186600px;}
.ls99{letter-spacing:0.186602px;}
.ls65{letter-spacing:0.194367px;}
.lsf5{letter-spacing:0.196123px;}
.lsf4{letter-spacing:0.198687px;}
.ls125{letter-spacing:0.210000px;}
.ls159{letter-spacing:0.210600px;}
.ls14{letter-spacing:0.212940px;}
.ls153{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.218400px;}
.ls16b{letter-spacing:0.225000px;}
.lsb6{letter-spacing:0.228096px;}
.ls49{letter-spacing:0.230913px;}
.ls82{letter-spacing:0.233240px;}
.lsf2{letter-spacing:0.244829px;}
.ls53{letter-spacing:0.245700px;}
.ls58{letter-spacing:0.248430px;}
.ls23{letter-spacing:0.250255px;}
.ls4b{letter-spacing:0.270000px;}
.ls22{letter-spacing:0.273000px;}
.ls26{letter-spacing:0.273600px;}
.ls149{letter-spacing:0.280800px;}
.ls11b{letter-spacing:0.293418px;}
.lsed{letter-spacing:0.311388px;}
.lsef{letter-spacing:0.311480px;}
.lsee{letter-spacing:0.312029px;}
.ls17e{letter-spacing:0.315000px;}
.ls14e{letter-spacing:0.315900px;}
.ls15{letter-spacing:0.319410px;}
.ls5d{letter-spacing:0.322283px;}
.ls11d{letter-spacing:0.324000px;}
.ls6{letter-spacing:0.327600px;}
.ls4a{letter-spacing:0.333792px;}
.lscd{letter-spacing:0.334402px;}
.lsb9{letter-spacing:0.342144px;}
.ls6c{letter-spacing:0.345720px;}
.ls12f{letter-spacing:0.348686px;}
.ls80{letter-spacing:0.349861px;}
.ls6a{letter-spacing:0.350525px;}
.ls48{letter-spacing:0.354900px;}
.ls66{letter-spacing:0.356385px;}
.ls12d{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.376200px;}
.ls45{letter-spacing:0.378000px;}
.ls8e{letter-spacing:0.380160px;}
.ls1f{letter-spacing:0.382200px;}
.lsf9{letter-spacing:0.387072px;}
.ls96{letter-spacing:0.390390px;}
.ls16d{letter-spacing:0.405000px;}
.lsb7{letter-spacing:0.418176px;}
.ls14d{letter-spacing:0.421200px;}
.ls109{letter-spacing:0.425880px;}
.ls6e{letter-spacing:0.427607px;}
.ls11c{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.436800px;}
.ls3a{letter-spacing:0.444600px;}
.ls179{letter-spacing:0.450000px;}
.ls15b{letter-spacing:0.456300px;}
.ls11f{letter-spacing:0.483482px;}
.ls11e{letter-spacing:0.483666px;}
.ls5a{letter-spacing:0.486000px;}
.lsd{letter-spacing:0.491400px;}
.ls188{letter-spacing:0.495000px;}
.lsec{letter-spacing:0.496828px;}
.ls95{letter-spacing:0.496860px;}
.ls8d{letter-spacing:0.497664px;}
.ls7f{letter-spacing:0.500300px;}
.lsc6{letter-spacing:0.519238px;}
.lsf8{letter-spacing:0.525622px;}
.lsbb{letter-spacing:0.532224px;}
.ls2e{letter-spacing:0.532350px;}
.ls50{letter-spacing:0.540000px;}
.ls156{letter-spacing:0.540540px;}
.lsa{letter-spacing:0.546000px;}
.ls93{letter-spacing:0.549760px;}
.ls119{letter-spacing:0.567840px;}
.ls182{letter-spacing:0.585000px;}
.ls122{letter-spacing:0.594000px;}
.ls18{letter-spacing:0.600600px;}
.ls155{letter-spacing:0.608256px;}
.ls5e{letter-spacing:0.616568px;}
.ls8{letter-spacing:0.617449px;}
.lsf{letter-spacing:0.638185px;}
.ls14c{letter-spacing:0.648000px;}
.ls144{letter-spacing:0.649880px;}
.ls55{letter-spacing:0.655200px;}
.lse7{letter-spacing:0.658800px;}
.ls47{letter-spacing:0.674310px;}
.ls180{letter-spacing:0.675000px;}
.ls42{letter-spacing:0.684000px;}
.lsd9{letter-spacing:0.697341px;}
.ls15a{letter-spacing:0.702000px;}
.lsdb{letter-spacing:0.709800px;}
.lsfc{letter-spacing:0.718848px;}
.ls17f{letter-spacing:0.720000px;}
.ls114{letter-spacing:0.734400px;}
.ls121{letter-spacing:0.756000px;}
.ls162{letter-spacing:0.760320px;}
.lsbd{letter-spacing:0.764400px;}
.ls174{letter-spacing:0.765000px;}
.ls92{letter-spacing:0.768013px;}
.ls94{letter-spacing:0.788446px;}
.ls17d{letter-spacing:0.810000px;}
.lsc{letter-spacing:0.819000px;}
.ls71{letter-spacing:0.864154px;}
.ls9{letter-spacing:0.873600px;}
.lsdc{letter-spacing:0.879060px;}
.ls150{letter-spacing:0.918000px;}
.ls7{letter-spacing:0.928200px;}
.ls183{letter-spacing:0.945000px;}
.ls189{letter-spacing:0.972000px;}
.lsd8{letter-spacing:0.982800px;}
.ls187{letter-spacing:0.990000px;}
.ls35{letter-spacing:0.991800px;}
.ls1b{letter-spacing:1.020000px;}
.lsdd{letter-spacing:1.020991px;}
.ls56{letter-spacing:1.037400px;}
.ls133{letter-spacing:1.046059px;}
.lsd7{letter-spacing:1.080018px;}
.lsda{letter-spacing:1.092000px;}
.ls102{letter-spacing:1.105920px;}
.ls166{letter-spacing:1.125000px;}
.ls157{letter-spacing:1.255800px;}
.ls87{letter-spacing:1.360569px;}
.ls16c{letter-spacing:1.440000px;}
.lse5{letter-spacing:1.527129px;}
.ls10e{letter-spacing:1.548288px;}
.ls184{letter-spacing:1.800000px;}
.ls86{letter-spacing:1.827050px;}
.ls0{letter-spacing:2.592000px;}
.ls1d{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls1c{letter-spacing:3.108000px;}
.ls4d{letter-spacing:3.385200px;}
.ls154{letter-spacing:3.628598px;}
.ls185{letter-spacing:4.620000px;}
.lsc5{letter-spacing:5.559140px;}
.lsc7{letter-spacing:5.660677px;}
.lscc{letter-spacing:5.686061px;}
.ls14a{letter-spacing:6.120000px;}
.ls9b{letter-spacing:6.885159px;}
.ls9f{letter-spacing:6.885342px;}
.ls9c{letter-spacing:6.909329px;}
.lscb{letter-spacing:6.955271px;}
.ls9a{letter-spacing:8.351034px;}
.lsa6{letter-spacing:8.362005px;}
.ls67{letter-spacing:10.785083px;}
.ls6b{letter-spacing:10.790942px;}
.ls164{letter-spacing:11.138688px;}
.ls6d{letter-spacing:11.870750px;}
.lsfb{letter-spacing:14.929919px;}
.lsaf{letter-spacing:15.482879px;}
.lse4{letter-spacing:18.247679px;}
.ls10d{letter-spacing:18.524159px;}
.lse0{letter-spacing:20.608043px;}
.lsff{letter-spacing:20.680703px;}
.lsad{letter-spacing:30.907008px;}
.lsbc{letter-spacing:33.035904px;}
.lsac{letter-spacing:34.947070px;}
.lsa4{letter-spacing:37.795514px;}
.ls10c{letter-spacing:39.647230px;}
.lsd4{letter-spacing:44.126206px;}
.ls15f{letter-spacing:45.121534px;}
.lsc8{letter-spacing:45.357098px;}
.lsae{letter-spacing:45.895678px;}
.lsa1{letter-spacing:48.331517px;}
.lse2{letter-spacing:52.807678px;}
.lsd3{letter-spacing:64.088061px;}
.lsab{letter-spacing:64.143357px;}
.ls100{letter-spacing:74.262525px;}
.ls10b{letter-spacing:74.870781px;}
.ls103{letter-spacing:75.534333px;}
.lsb0{letter-spacing:80.621565px;}
.lsd0{letter-spacing:82.888700px;}
.ls110{letter-spacing:83.109884px;}
.lsc0{letter-spacing:87.651643px;}
.lsfa{letter-spacing:99.698684px;}
.ls113{letter-spacing:101.357564px;}
.ls8c{letter-spacing:109.817846px;}
.ls112{letter-spacing:140.009466px;}
.ls105{letter-spacing:151.234548px;}
.lsfe{letter-spacing:155.437049px;}
.ls10a{letter-spacing:165.390329px;}
.lse3{letter-spacing:167.823353px;}
.ls163{letter-spacing:173.581056px;}
.ls10f{letter-spacing:173.961216px;}
.ls161{letter-spacing:175.291776px;}
.ls106{letter-spacing:188.559352px;}
.lsd6{letter-spacing:191.047672px;}
.ls108{letter-spacing:206.751735px;}
.ls165{letter-spacing:230.605056px;}
.ls16e{letter-spacing:235.775232px;}
.lsd5{letter-spacing:242.085878px;}
.lsc4{letter-spacing:248.596654px;}
.lsd1{letter-spacing:275.982316px;}
.ls148{letter-spacing:281.848130px;}
.lse1{letter-spacing:297.105388px;}
.ls147{letter-spacing:309.842978px;}
.ls8b{letter-spacing:328.513514px;}
.ls8f{letter-spacing:340.395264px;}
.ls91{letter-spacing:374.951796px;}
.ls90{letter-spacing:397.419264px;}
.lsd2{letter-spacing:412.176359px;}
.ls120{letter-spacing:621.012000px;}
.lsb3{letter-spacing:659.570660px;}
.lsb2{letter-spacing:714.866657px;}
.ls107{letter-spacing:891.813850px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11b{word-spacing:-891.813850px;}
.wsdf{word-spacing:-714.866657px;}
.wse0{word-spacing:-659.570660px;}
.ws16e{word-spacing:-323.740421px;}
.ws16f{word-spacing:-295.745573px;}
.wsec{word-spacing:-248.596654px;}
.ws1a2{word-spacing:-244.404864px;}
.ws198{word-spacing:-239.234688px;}
.ws11c{word-spacing:-206.751735px;}
.ws11a{word-spacing:-188.559352px;}
.ws18e{word-spacing:-183.921408px;}
.ws190{word-spacing:-182.210688px;}
.ws103{word-spacing:-178.053112px;}
.ws11f{word-spacing:-173.961216px;}
.wsf8{word-spacing:-167.989241px;}
.ws10d{word-spacing:-152.561657px;}
.ws10e{word-spacing:-113.909755px;}
.wsf5{word-spacing:-112.250875px;}
.wsc9{word-spacing:-94.708450px;}
.wsb3{word-spacing:-93.173756px;}
.ws100{word-spacing:-92.454906px;}
.wsfe{word-spacing:-88.086524px;}
.ws104{word-spacing:-87.533564px;}
.ws121{word-spacing:-74.870781px;}
.ws118{word-spacing:-74.262525px;}
.wsae{word-spacing:-55.295998px;}
.wsd2{word-spacing:-53.808354px;}
.wse{word-spacing:-51.000000px;}
.ws19d{word-spacing:-45.121534px;}
.wsbf{word-spacing:-41.741568px;}
.ws5{word-spacing:-41.640000px;}
.wsdd{word-spacing:-34.947070px;}
.ws107{word-spacing:-31.076351px;}
.wsde{word-spacing:-30.907008px;}
.ws18d{word-spacing:-27.482111px;}
.ws193{word-spacing:-19.768320px;}
.ws165{word-spacing:-16.259998px;}
.ws167{word-spacing:-15.558127px;}
.ws169{word-spacing:-15.499638px;}
.ws3{word-spacing:-15.067500px;}
.ws2b{word-spacing:-14.700000px;}
.ws16a{word-spacing:-14.547323px;}
.ws16d{word-spacing:-13.897442px;}
.ws111{word-spacing:-13.823999px;}
.ws64{word-spacing:-13.650000px;}
.ws1a6{word-spacing:-13.596000px;}
.ws82{word-spacing:-13.508094px;}
.ws60{word-spacing:-13.500000px;}
.ws16c{word-spacing:-13.397534px;}
.ws10c{word-spacing:-13.271039px;}
.ws150{word-spacing:-13.162911px;}
.ws8f{word-spacing:-13.144240px;}
.ws114{word-spacing:-12.994800px;}
.ws65{word-spacing:-12.885600px;}
.ws176{word-spacing:-12.798000px;}
.ws81{word-spacing:-12.780386px;}
.ws83{word-spacing:-12.734904px;}
.ws85{word-spacing:-12.689422px;}
.ws30{word-spacing:-12.667200px;}
.ws105{word-spacing:-12.662783px;}
.ws89{word-spacing:-12.643940px;}
.ws97{word-spacing:-12.633855px;}
.ws102{word-spacing:-12.612600px;}
.ws9a{word-spacing:-12.507495px;}
.ws63{word-spacing:-12.503400px;}
.ws158{word-spacing:-12.465539px;}
.ws84{word-spacing:-12.462013px;}
.ws196{word-spacing:-12.448800px;}
.wsb4{word-spacing:-12.441599px;}
.ws61{word-spacing:-12.394200px;}
.wsfb{word-spacing:-12.386303px;}
.ws187{word-spacing:-12.374208px;}
.ws18a{word-spacing:-12.366000px;}
.ws6{word-spacing:-12.360000px;}
.wsc2{word-spacing:-12.285000px;}
.ws188{word-spacing:-12.267072px;}
.ws68{word-spacing:-12.258000px;}
.ws157{word-spacing:-12.247610px;}
.ws95{word-spacing:-12.234604px;}
.ws154{word-spacing:-12.204024px;}
.ws67{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.192000px;}
.ws99{word-spacing:-12.167374px;}
.ws159{word-spacing:-12.160438px;}
.ws14f{word-spacing:-12.116852px;}
.ws10b{word-spacing:-12.109823px;}
.ws155{word-spacing:-12.073266px;}
.ws151{word-spacing:-11.986095px;}
.wsfd{word-spacing:-11.943935px;}
.ws15a{word-spacing:-11.942509px;}
.ws18b{word-spacing:-11.826000px;}
.ws88{word-spacing:-11.734304px;}
.ws153{word-spacing:-11.724580px;}
.ws1fb{word-spacing:-11.718000px;}
.ws2c{word-spacing:-11.356800px;}
.ws1da{word-spacing:-11.160000px;}
.ws91{word-spacing:-11.156666px;}
.ws7{word-spacing:-11.124000px;}
.ws34{word-spacing:-11.083878px;}
.ws94{word-spacing:-11.040046px;}
.ws1dd{word-spacing:-11.025000px;}
.ws8b{word-spacing:-11.001172px;}
.ws31{word-spacing:-10.963836px;}
.ws8d{word-spacing:-10.884552px;}
.ws90{word-spacing:-10.867273px;}
.ws8c{word-spacing:-10.845679px;}
.ws87{word-spacing:-10.806805px;}
.ws1ee{word-spacing:-10.800000px;}
.ws9b{word-spacing:-10.729058px;}
.ws1d9{word-spacing:-10.665000px;}
.ws152{word-spacing:-10.634935px;}
.ws1e9{word-spacing:-10.620000px;}
.ws36{word-spacing:-10.499400px;}
.ws1ac{word-spacing:-10.485000px;}
.ws8e{word-spacing:-10.456945px;}
.ws1af{word-spacing:-10.440000px;}
.ws1ad{word-spacing:-10.395000px;}
.ws1ae{word-spacing:-10.350000px;}
.ws1a9{word-spacing:-10.305000px;}
.ws1ab{word-spacing:-10.260000px;}
.ws1a8{word-spacing:-10.215000px;}
.ws43{word-spacing:-10.191600px;}
.ws1dc{word-spacing:-10.170000px;}
.ws1c5{word-spacing:-10.125000px;}
.ws1b0{word-spacing:-10.080000px;}
.ws1db{word-spacing:-10.035000px;}
.ws1aa{word-spacing:-9.990000px;}
.ws3b{word-spacing:-9.952200px;}
.ws1c9{word-spacing:-9.945000px;}
.ws1cb{word-spacing:-9.900000px;}
.ws1{word-spacing:-9.888000px;}
.ws3d{word-spacing:-9.883800px;}
.ws1c3{word-spacing:-9.855000px;}
.ws1c8{word-spacing:-9.810000px;}
.ws1a7{word-spacing:-9.765000px;}
.ws134{word-spacing:-9.744000px;}
.ws1c2{word-spacing:-9.675000px;}
.ws3f{word-spacing:-9.644400px;}
.ws86{word-spacing:-9.640603px;}
.ws1e7{word-spacing:-9.630000px;}
.ws2{word-spacing:-9.600000px;}
.ws35{word-spacing:-9.576000px;}
.ws3c{word-spacing:-9.560884px;}
.ws3a{word-spacing:-9.541800px;}
.ws1ed{word-spacing:-9.540000px;}
.ws13e{word-spacing:-9.534000px;}
.ws45{word-spacing:-9.507600px;}
.ws38{word-spacing:-9.405000px;}
.wsbe{word-spacing:-9.237888px;}
.ws3e{word-spacing:-9.199800px;}
.ws13c{word-spacing:-9.198000px;}
.ws41{word-spacing:-9.165600px;}
.wsb9{word-spacing:-9.123840px;}
.ws12e{word-spacing:-9.114000px;}
.wsb7{word-spacing:-9.085824px;}
.wsbb{word-spacing:-9.047808px;}
.ws136{word-spacing:-9.030000px;}
.ws8a{word-spacing:-9.005396px;}
.ws42{word-spacing:-8.978321px;}
.ws39{word-spacing:-8.960400px;}
.wsbc{word-spacing:-8.933760px;}
.ws40{word-spacing:-8.875516px;}
.ws80{word-spacing:-8.872500px;}
.wsda{word-spacing:-8.785658px;}
.wsbd{word-spacing:-8.781696px;}
.ws44{word-spacing:-8.755200px;}
.ws130{word-spacing:-8.736000px;}
.ws62{word-spacing:-8.730540px;}
.wsb8{word-spacing:-8.705664px;}
.wsba{word-spacing:-8.629632px;}
.wsc0{word-spacing:-8.624070px;}
.ws2f{word-spacing:-8.588580px;}
.ws140{word-spacing:-8.568000px;}
.ws109{word-spacing:-8.553600px;}
.wsc1{word-spacing:-8.517600px;}
.ws139{word-spacing:-8.484000px;}
.ws101{word-spacing:-8.482110px;}
.wsc5{word-spacing:-8.459596px;}
.wsd9{word-spacing:-8.451256px;}
.ws186{word-spacing:-8.424000px;}
.wsb6{word-spacing:-8.401536px;}
.ws177{word-spacing:-8.388900px;}
.wsb{word-spacing:-8.375640px;}
.wscc{word-spacing:-8.360055px;}
.ws66{word-spacing:-8.304660px;}
.wsb5{word-spacing:-8.287488px;}
.ws178{word-spacing:-8.283600px;}
.ws9{word-spacing:-8.269170px;}
.ws32{word-spacing:-8.242884px;}
.ws5f{word-spacing:-8.213400px;}
.wsa{word-spacing:-8.198190px;}
.ws185{word-spacing:-8.178300px;}
.wsc{word-spacing:-8.162700px;}
.ws113{word-spacing:-8.143200px;}
.ws2d{word-spacing:-8.127210px;}
.wsdb{word-spacing:-8.086453px;}
.ws33{word-spacing:-8.082828px;}
.ws156{word-spacing:-8.077957px;}
.ws8{word-spacing:-8.056230px;}
.ws1a5{word-spacing:-8.037900px;}
.ws4{word-spacing:-8.034000px;}
.ws5d{word-spacing:-8.002800px;}
.ws189{word-spacing:-7.983360px;}
.wsdc{word-spacing:-7.967700px;}
.ws14e{word-spacing:-7.949760px;}
.ws115{word-spacing:-7.878780px;}
.ws112{word-spacing:-7.827300px;}
.ws5e{word-spacing:-7.792200px;}
.ws92{word-spacing:-7.136275px;}
.wsc7{word-spacing:-7.107576px;}
.wsc6{word-spacing:-7.056808px;}
.wscb{word-spacing:-6.779245px;}
.wsd{word-spacing:-6.630000px;}
.ws37{word-spacing:-6.370092px;}
.ws17a{word-spacing:-6.120000px;}
.ws13d{word-spacing:-5.924100px;}
.ws142{word-spacing:-5.874000px;}
.wsd3{word-spacing:-5.686061px;}
.wsed{word-spacing:-5.660677px;}
.ws15{word-spacing:-5.340000px;}
.ws1de{word-spacing:-4.620000px;}
.ws12{word-spacing:-3.840000px;}
.ws14{word-spacing:-3.600000px;}
.ws2e{word-spacing:-3.294000px;}
.ws11{word-spacing:-3.276000px;}
.ws2a{word-spacing:-3.108000px;}
.ws78{word-spacing:-2.184000px;}
.ws77{word-spacing:-1.965600px;}
.ws4d{word-spacing:-1.911000px;}
.ws149{word-spacing:-1.890000px;}
.ws79{word-spacing:-1.860000px;}
.ws17{word-spacing:-1.856400px;}
.ws50{word-spacing:-1.836000px;}
.wse8{word-spacing:-1.801800px;}
.ws1f9{word-spacing:-1.800000px;}
.ws1fa{word-spacing:-1.782000px;}
.ws1f1{word-spacing:-1.755000px;}
.ws129{word-spacing:-1.747200px;}
.ws17c{word-spacing:-1.740000px;}
.ws124{word-spacing:-1.728000px;}
.ws9d{word-spacing:-1.692600px;}
.ws1b2{word-spacing:-1.674000px;}
.ws19c{word-spacing:-1.620000px;}
.ws1d0{word-spacing:-1.575000px;}
.ws1b4{word-spacing:-1.530000px;}
.ws6f{word-spacing:-1.512000px;}
.ws24{word-spacing:-1.474200px;}
.ws1e8{word-spacing:-1.440000px;}
.ws20{word-spacing:-1.419600px;}
.ws1b1{word-spacing:-1.404000px;}
.ws12a{word-spacing:-1.386000px;}
.ws7c{word-spacing:-1.365000px;}
.ws1f8{word-spacing:-1.350000px;}
.ws4c{word-spacing:-1.310400px;}
.ws1d7{word-spacing:-1.305000px;}
.ws1b3{word-spacing:-1.275000px;}
.ws13{word-spacing:-1.260000px;}
.ws18{word-spacing:-1.255800px;}
.ws51{word-spacing:-1.242000px;}
.ws1b5{word-spacing:-1.215000px;}
.ws5c{word-spacing:-1.188000px;}
.ws69{word-spacing:-1.146600px;}
.ws16{word-spacing:-1.134000px;}
.ws1d8{word-spacing:-1.125000px;}
.ws21{word-spacing:-1.092000px;}
.ws1e6{word-spacing:-1.080000px;}
.ws128{word-spacing:-1.037400px;}
.ws1b6{word-spacing:-1.035000px;}
.ws17f{word-spacing:-1.026000px;}
.ws29{word-spacing:-1.020000px;}
.ws1e0{word-spacing:-0.990000px;}
.ws11d{word-spacing:-0.982800px;}
.ws19a{word-spacing:-0.972000px;}
.ws14c{word-spacing:-0.966000px;}
.ws10{word-spacing:-0.960000px;}
.ws6a{word-spacing:-0.928200px;}
.ws14b{word-spacing:-0.924000px;}
.ws182{word-spacing:-0.918000px;}
.ws14a{word-spacing:-0.873600px;}
.ws19b{word-spacing:-0.864000px;}
.ws1c1{word-spacing:-0.855000px;}
.ws1d6{word-spacing:-0.810000px;}
.ws1f5{word-spacing:-0.765000px;}
.wse4{word-spacing:-0.764400px;}
.ws19e{word-spacing:-0.760320px;}
.wsf2{word-spacing:-0.756000px;}
.ws122{word-spacing:-0.734400px;}
.ws1d5{word-spacing:-0.720000px;}
.ws127{word-spacing:-0.709800px;}
.ws144{word-spacing:-0.702000px;}
.ws1d4{word-spacing:-0.675000px;}
.ws72{word-spacing:-0.674310px;}
.ws143{word-spacing:-0.660000px;}
.ws22{word-spacing:-0.655200px;}
.ws6e{word-spacing:-0.648000px;}
.ws1b9{word-spacing:-0.630000px;}
.ws19{word-spacing:-0.600600px;}
.ws4f{word-spacing:-0.594000px;}
.ws1cf{word-spacing:-0.585000px;}
.ws74{word-spacing:-0.546000px;}
.ws1bb{word-spacing:-0.540000px;}
.ws28{word-spacing:-0.510000px;}
.ws16b{word-spacing:-0.499908px;}
.ws1b7{word-spacing:-0.495000px;}
.ws76{word-spacing:-0.491400px;}
.ws7b{word-spacing:-0.486000px;}
.ws1cd{word-spacing:-0.450000px;}
.ws1b{word-spacing:-0.436800px;}
.ws146{word-spacing:-0.432000px;}
.ws168{word-spacing:-0.409424px;}
.ws1e4{word-spacing:-0.405000px;}
.ws116{word-spacing:-0.387072px;}
.ws4e{word-spacing:-0.382200px;}
.ws199{word-spacing:-0.378000px;}
.ws1ec{word-spacing:-0.360000px;}
.wse2{word-spacing:-0.342144px;}
.ws1a{word-spacing:-0.327600px;}
.ws17e{word-spacing:-0.315900px;}
.ws1bd{word-spacing:-0.315000px;}
.ws58{word-spacing:-0.273600px;}
.ws4b{word-spacing:-0.273000px;}
.ws70{word-spacing:-0.270000px;}
.ws126{word-spacing:-0.248430px;}
.ws15e{word-spacing:-0.240000px;}
.wse1{word-spacing:-0.228096px;}
.ws1ce{word-spacing:-0.225000px;}
.ws75{word-spacing:-0.218400px;}
.wsf0{word-spacing:-0.185592px;}
.ws1c4{word-spacing:-0.180000px;}
.ws172{word-spacing:-0.175468px;}
.ws23{word-spacing:-0.163800px;}
.wsa3{word-spacing:-0.155494px;}
.ws48{word-spacing:-0.141960px;}
.wsa8{word-spacing:-0.136445px;}
.ws1ba{word-spacing:-0.135000px;}
.ws164{word-spacing:-0.130757px;}
.ws17d{word-spacing:-0.120000px;}
.wsa1{word-spacing:-0.116620px;}
.ws7e{word-spacing:-0.109200px;}
.ws7a{word-spacing:-0.108000px;}
.ws26{word-spacing:-0.106470px;}
.ws160{word-spacing:-0.087172px;}
.wsa0{word-spacing:-0.077747px;}
.ws55{word-spacing:-0.068400px;}
.wsf1{word-spacing:-0.060800px;}
.ws49{word-spacing:-0.054600px;}
.ws125{word-spacing:-0.054000px;}
.wsea{word-spacing:-0.050768px;}
.ws175{word-spacing:-0.049991px;}
.ws1be{word-spacing:-0.045000px;}
.wsa7{word-spacing:-0.038873px;}
.ws120{word-spacing:-0.038016px;}
.ws6d{word-spacing:-0.035100px;}
.ws5b{word-spacing:-0.034200px;}
.wseb{word-spacing:-0.030400px;}
.wsd0{word-spacing:-0.018544px;}
.wsf{word-spacing:0.000000px;}
.wsef{word-spacing:0.025384px;}
.wsee{word-spacing:0.030400px;}
.ws57{word-spacing:0.034200px;}
.wsc4{word-spacing:0.038000px;}
.wsa5{word-spacing:0.038873px;}
.ws162{word-spacing:0.043586px;}
.ws1cc{word-spacing:0.045000px;}
.ws9e{word-spacing:0.045482px;}
.ws173{word-spacing:0.049991px;}
.ws4a{word-spacing:0.054600px;}
.ws171{word-spacing:0.058489px;}
.ws6b{word-spacing:0.060000px;}
.ws184{word-spacing:0.072252px;}
.wse3{word-spacing:0.076032px;}
.wsa4{word-spacing:0.077747px;}
.wsab{word-spacing:0.077902px;}
.ws54{word-spacing:0.080028px;}
.ws163{word-spacing:0.087172px;}
.ws1e3{word-spacing:0.090000px;}
.wsa2{word-spacing:0.090964px;}
.wse9{word-spacing:0.109200px;}
.ws119{word-spacing:0.110592px;}
.ws166{word-spacing:0.116978px;}
.ws123{word-spacing:0.120000px;}
.ws1c7{word-spacing:0.135000px;}
.ws59{word-spacing:0.137074px;}
.ws174{word-spacing:0.149972px;}
.ws6c{word-spacing:0.162000px;}
.ws1e{word-spacing:0.163800px;}
.ws161{word-spacing:0.174343px;}
.ws1ca{word-spacing:0.180000px;}
.ws181{word-spacing:0.216000px;}
.ws7f{word-spacing:0.218400px;}
.wsaa{word-spacing:0.227796px;}
.ws1c0{word-spacing:0.270000px;}
.ws25{word-spacing:0.273000px;}
.ws56{word-spacing:0.307800px;}
.ws12c{word-spacing:0.327600px;}
.ws179{word-spacing:0.337176px;}
.ws15f{word-spacing:0.348686px;}
.ws15c{word-spacing:0.382200px;}
.ws1e5{word-spacing:0.405000px;}
.ws5a{word-spacing:0.410400px;}
.ws145{word-spacing:0.432000px;}
.ws71{word-spacing:0.436800px;}
.ws1e2{word-spacing:0.450000px;}
.ws1fe{word-spacing:0.486000px;}
.ws9c{word-spacing:0.491400px;}
.wsa6{word-spacing:0.505354px;}
.ws9f{word-spacing:0.545782px;}
.ws15d{word-spacing:0.546000px;}
.ws117{word-spacing:0.608256px;}
.ws1c6{word-spacing:0.630000px;}
.ws147{word-spacing:0.648000px;}
.ws17b{word-spacing:0.655200px;}
.wse6{word-spacing:0.709800px;}
.ws1d3{word-spacing:0.720000px;}
.ws52{word-spacing:0.764400px;}
.ws1df{word-spacing:0.765000px;}
.ws53{word-spacing:0.800280px;}
.ws1f{word-spacing:0.819000px;}
.ws1bc{word-spacing:0.855000px;}
.ws1d{word-spacing:0.873600px;}
.ws12b{word-spacing:0.928200px;}
.ws1e1{word-spacing:0.945000px;}
.ws1f3{word-spacing:0.990000px;}
.ws1d2{word-spacing:1.035000px;}
.wsa9{word-spacing:1.049582px;}
.ws183{word-spacing:1.080000px;}
.ws148{word-spacing:1.134000px;}
.ws1c{word-spacing:1.146600px;}
.ws1fc{word-spacing:1.188000px;}
.wse5{word-spacing:1.201200px;}
.ws1fd{word-spacing:1.242000px;}
.ws11e{word-spacing:1.255800px;}
.ws1f7{word-spacing:1.260000px;}
.ws1f6{word-spacing:1.305000px;}
.ws1eb{word-spacing:1.350000px;}
.ws73{word-spacing:1.365000px;}
.ws1f2{word-spacing:1.395000px;}
.ws27{word-spacing:1.428000px;}
.ws98{word-spacing:1.438316px;}
.ws1bf{word-spacing:1.440000px;}
.wse7{word-spacing:1.474200px;}
.ws1f4{word-spacing:1.530000px;}
.ws1d1{word-spacing:1.575000px;}
.ws1b8{word-spacing:1.800000px;}
.ws1f0{word-spacing:1.845000px;}
.ws19f{word-spacing:1.856400px;}
.ws1ea{word-spacing:1.890000px;}
.ws180{word-spacing:2.268000px;}
.ws1ef{word-spacing:2.295000px;}
.ws96{word-spacing:2.565644px;}
.ws1a0{word-spacing:3.112200px;}
.ws15b{word-spacing:3.356107px;}
.ws14d{word-spacing:3.672000px;}
.wsfc{word-spacing:3.704832px;}
.ws7d{word-spacing:7.152600px;}
.wsd4{word-spacing:7.678693px;}
.wscf{word-spacing:8.477263px;}
.wsd6{word-spacing:19.429717px;}
.wsd1{word-spacing:20.995471px;}
.wsd7{word-spacing:21.564408px;}
.wsc3{word-spacing:27.244240px;}
.wsce{word-spacing:28.592574px;}
.wsb2{word-spacing:37.656574px;}
.wsd8{word-spacing:38.608254px;}
.wscd{word-spacing:56.276768px;}
.ws106{word-spacing:63.535094px;}
.ws13f{word-spacing:69.959400px;}
.ws18f{word-spacing:86.870007px;}
.ws10a{word-spacing:87.975932px;}
.ws18c{word-spacing:88.639484px;}
.wsd5{word-spacing:91.707690px;}
.ws133{word-spacing:94.542000px;}
.ws13b{word-spacing:99.329990px;}
.ws191{word-spacing:107.606006px;}
.ws194{word-spacing:109.375483px;}
.ws131{word-spacing:129.065990px;}
.ws93{word-spacing:134.216966px;}
.ws138{word-spacing:138.011990px;}
.ws1a1{word-spacing:145.649658px;}
.ws137{word-spacing:146.412000px;}
.ws197{word-spacing:147.363834px;}
.wsfa{word-spacing:147.640314px;}
.ws1a3{word-spacing:149.078010px;}
.ws132{word-spacing:149.225990px;}
.wsf7{word-spacing:154.552313px;}
.ws192{word-spacing:161.682048px;}
.ws195{word-spacing:166.852224px;}
.ws12f{word-spacing:169.385990px;}
.ws141{word-spacing:180.264000px;}
.ws135{word-spacing:188.790000px;}
.ws10f{word-spacing:190.612224px;}
.wsf9{word-spacing:190.826488px;}
.ws1a4{word-spacing:203.157504px;}
.ws110{word-spacing:209.613242px;}
.wsc8{word-spacing:236.631503px;}
.wsf4{word-spacing:240.095210px;}
.wsca{word-spacing:262.371091px;}
.wsb0{word-spacing:275.595244px;}
.wsaf{word-spacing:284.829669px;}
.ws12d{word-spacing:300.678000px;}
.wsb1{word-spacing:334.319602px;}
.wsac{word-spacing:354.004962px;}
.ws46{word-spacing:364.301380px;}
.wsad{word-spacing:412.729326px;}
.wsf3{word-spacing:423.290862px;}
.ws13a{word-spacing:613.368000px;}
.wsf6{word-spacing:684.453859px;}
.ws108{word-spacing:789.073886px;}
.wsff{word-spacing:826.505856px;}
.ws170{word-spacing:991.017619px;}
.ws47{word-spacing:1401.437351px;}
._19{margin-left:-1520.805822px;}
._18{margin-left:-1076.190331px;}
._13{margin-left:-1064.456002px;}
._4c{margin-left:-947.032245px;}
._20{margin-left:-649.632446px;}
._4e{margin-left:-308.943144px;}
._50{margin-left:-280.898305px;}
._56{margin-left:-224.636544px;}
._55{margin-left:-219.504390px;}
._52{margin-left:-164.153094px;}
._53{margin-left:-162.480390px;}
._27{margin-left:-158.602740px;}
._25{margin-left:-156.045305px;}
._26{margin-left:-100.251644px;}
._29{margin-left:-97.597436px;}
._1f{margin-left:-87.880100px;}
._1a{margin-left:-81.008637px;}
._14{margin-left:-78.319658px;}
._17{margin-left:-68.222699px;}
._16{margin-left:-65.493791px;}
._11{margin-left:-63.174219px;}
._10{margin-left:-60.445311px;}
._f{margin-left:-57.943812px;}
._15{margin-left:-55.214904px;}
._12{margin-left:-45.436317px;}
._24{margin-left:-25.436159px;}
._28{margin-left:-19.643903px;}
._51{margin-left:-15.538175px;}
._d{margin-left:-12.797104px;}
._5b{margin-left:-11.115000px;}
._5{margin-left:-9.859878px;}
._4d{margin-left:-8.143950px;}
._9{margin-left:-6.125670px;}
._8{margin-left:-4.212000px;}
._3{margin-left:-3.128846px;}
._1{margin-left:-1.801950px;}
._0{width:1.728000px;}
._2{width:2.923348px;}
._6{width:4.376481px;}
._45{width:5.611039px;}
._a{width:8.310588px;}
._59{width:10.305000px;}
._58{width:12.330000px;}
._57{width:13.545000px;}
._b{width:15.552000px;}
._5a{width:17.460000px;}
._23{width:32.714589px;}
._1e{width:41.001972px;}
._7{width:42.331371px;}
._4{width:43.659614px;}
._1c{width:46.093969px;}
._c{width:47.661554px;}
._e{width:50.039424px;}
._1b{width:66.718746px;}
._22{width:68.059580px;}
._4b{width:86.851950px;}
._1d{width:91.278238px;}
._21{width:97.627633px;}
._44{width:125.710050px;}
._38{width:137.881940px;}
._2f{width:144.396000px;}
._47{width:148.848000px;}
._54{width:158.050755px;}
._31{width:169.932000px;}
._34{width:179.508000px;}
._48{width:180.516000px;}
._4a{width:188.025900px;}
._2c{width:190.092000px;}
._40{width:196.545900px;}
._37{width:199.668000px;}
._3d{width:206.677950px;}
._49{width:208.021950px;}
._35{width:220.416000px;}
._42{width:229.362000px;}
._2d{width:231.000000px;}
._32{width:240.576000px;}
._3a{width:260.148000px;}
._41{width:295.255950px;}
._2b{width:308.485950px;}
._2e{width:311.430000px;}
._3c{width:314.991900px;}
._3e{width:320.955900px;}
._36{width:331.207950px;}
._39{width:367.038000px;}
._3f{width:370.603950px;}
._43{width:399.411900px;}
._30{width:407.190000px;}
._46{width:411.809369px;}
._33{width:426.174000px;}
._3b{width:465.481950px;}
._2a{width:526.554000px;}
._4f{width:839.647724px;}
.fc6{color:transparent;}
.fc5{color:rgb(192,0,0);}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(52,152,195);}
.fs1f{font-size:16.872000px;}
.fs23{font-size:18.544200px;}
.fs24{font-size:20.215799px;}
.fs1d{font-size:20.246400px;}
.fs10{font-size:22.914000px;}
.fs2c{font-size:24.084000px;}
.fs1e{font-size:25.384200px;}
.fs22{font-size:25.414200px;}
.fs15{font-size:26.044799px;}
.fs27{font-size:27.300000px;}
.fs29{font-size:29.057399px;}
.fs25{font-size:29.376000px;}
.fs17{font-size:30.321000px;}
.fs20{font-size:30.400200px;}
.fs1c{font-size:30.430200px;}
.fsa{font-size:33.150000px;}
.fsf{font-size:34.199999px;}
.fs11{font-size:34.268400px;}
.fs6{font-size:35.100000px;}
.fs9{font-size:35.490000px;}
.fs1b{font-size:37.999800px;}
.fs1a{font-size:38.016000px;}
.fs13{font-size:38.873400px;}
.fs16{font-size:38.950799px;}
.fs4{font-size:39.000000px;}
.fse{font-size:40.014000px;}
.fs26{font-size:42.000000px;}
.fs28{font-size:43.585799px;}
.fs2e{font-size:45.000000px;}
.fs12{font-size:45.481799px;}
.fs18{font-size:45.559200px;}
.fs1{font-size:48.000000px;}
.fs2b{font-size:49.990800px;}
.fsb{font-size:51.000000px;}
.fs2d{font-size:53.568000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:54.600000px;}
.fs19{font-size:55.295998px;}
.fs14{font-size:58.309799px;}
.fs2a{font-size:58.489200px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fs7{font-size:66.000000px;}
.fs21{font-size:76.000200px;}
.fsc{font-size:84.000000px;}
.fsd{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y260{bottom:1.727394px;}
.y27b{bottom:1.727554px;}
.y26e{bottom:1.728001px;}
.y285{bottom:1.728241px;}
.y269{bottom:1.728447px;}
.y62{bottom:2.774826px;}
.y12f{bottom:3.023254px;}
.ye4{bottom:3.024605px;}
.ye7{bottom:3.888611px;}
.y253{bottom:4.752319px;}
.y125{bottom:5.183258px;}
.y25e{bottom:5.183395px;}
.y279{bottom:5.183550px;}
.y26f{bottom:5.184002px;}
.y267{bottom:5.184448px;}
.yef{bottom:5.184608px;}
.y14c{bottom:5.615205px;}
.y147{bottom:8.639282px;}
.y25f{bottom:13.391395px;}
.y26d{bottom:13.392014px;}
.y268{bottom:13.392448px;}
.y149{bottom:14.684662px;}
.y252{bottom:15.984329px;}
.y27d{bottom:16.847402px;}
.y287{bottom:16.848267px;}
.y2{bottom:27.177600px;}
.y1{bottom:27.197850px;}
.y150{bottom:32.399232px;}
.ydf{bottom:39.312607px;}
.y134{bottom:50.543243px;}
.y129{bottom:53.135284px;}
.y30{bottom:68.307899px;}
.ya8{bottom:68.544595px;}
.y187{bottom:68.548650px;}
.y1dd{bottom:68.551500px;}
.y2d2{bottom:68.767518px;}
.y278{bottom:69.482998px;}
.y230{bottom:72.879903px;}
.y27c{bottom:74.666548px;}
.y56{bottom:74.789247px;}
.y27e{bottom:74.982450px;}
.y277{bottom:74.986952px;}
.y19c{bottom:80.047650px;}
.y320{bottom:80.047797px;}
.y27a{bottom:80.714550px;}
.y2d1{bottom:81.513768px;}
.ya7{bottom:83.545945px;}
.y186{bottom:83.550000px;}
.yaf{bottom:85.291947px;}
.y2f{bottom:87.636898px;}
.y22f{bottom:87.884403px;}
.y55{bottom:89.790597px;}
.y1fd{bottom:90.540597px;}
.y2d0{bottom:94.260018px;}
.y19b{bottom:95.044946px;}
.y31f{bottom:95.046297px;}
.y276{bottom:95.107052px;}
.ya6{bottom:98.547295px;}
.yae{bottom:100.291947px;}
.y2e{bottom:102.636898px;}
.y22e{bottom:102.882903px;}
.y54{bottom:104.791947px;}
.y1fc{bottom:105.541947px;}
.y2cf{bottom:107.006268px;}
.y31e{bottom:110.044797px;}
.y19a{bottom:110.046296px;}
.y275{bottom:110.108402px;}
.yff{bottom:111.135900px;}
.y1dc{bottom:113.504255px;}
.ya5{bottom:113.548645px;}
.yad{bottom:115.289247px;}
.y22d{bottom:117.881403px;}
.y2ce{bottom:119.752518px;}
.y53{bottom:119.791947px;}
.y1fb{bottom:120.543297px;}
.y31d{bottom:125.043297px;}
.y199{bottom:125.046296px;}
.y274{bottom:125.103002px;}
.yfe{bottom:126.137250px;}
.y1db{bottom:128.505605px;}
.y185{bottom:128.548645px;}
.ya4{bottom:128.549995px;}
.yac{bottom:130.290597px;}
.y2cd{bottom:132.498768px;}
.y22c{bottom:132.879903px;}
.y52{bottom:134.791947px;}
.y1fa{bottom:135.539247px;}
.y2d{bottom:137.180249px;}
.y31c{bottom:140.043297px;}
.y198{bottom:140.043596px;}
.y273{bottom:140.104352px;}
.yfd{bottom:141.138600px;}
.y1da{bottom:143.506955px;}
.ya3{bottom:143.548645px;}
.y2cc{bottom:145.245018px;}
.yab{bottom:145.291947px;}
.y22b{bottom:147.884403px;}
.y51{bottom:149.793297px;}
.y1f9{bottom:150.540597px;}
.y2c{bottom:152.181599px;}
.y197{bottom:155.044946px;}
.y272{bottom:155.105702px;}
.yfc{bottom:156.139950px;}
.y2cb{bottom:157.991268px;}
.y1d9{bottom:158.508305px;}
.ya2{bottom:158.545945px;}
.y184{bottom:158.549995px;}
.yaa{bottom:160.291947px;}
.y22a{bottom:162.882903px;}
.y1f8{bottom:165.541947px;}
.y2b{bottom:167.182949px;}
.y196{bottom:170.046296px;}
.y271{bottom:170.107052px;}
.y2ca{bottom:170.737518px;}
.yfb{bottom:171.137239px;}
.y31b{bottom:173.313274px;}
.y1d8{bottom:173.509655px;}
.ya1{bottom:173.547295px;}
.y183{bottom:173.549995px;}
.ya9{bottom:175.293297px;}
.y26c{bottom:179.608498px;}
.y1f7{bottom:180.535197px;}
.y50{bottom:180.549297px;}
.y2a{bottom:182.184299px;}
.y2c9{bottom:183.483768px;}
.y195{bottom:185.047646px;}
.y270{bottom:185.108402px;}
.y26b{bottom:185.111708px;}
.y31a{bottom:186.059524px;}
.yfa{bottom:186.138589px;}
.y1d7{bottom:188.511005px;}
.ya0{bottom:188.548645px;}
.y229{bottom:193.635903px;}
.y1f6{bottom:195.536547px;}
.y4f{bottom:195.547797px;}
.y2c8{bottom:196.230018px;}
.y266{bottom:196.278008px;}
.y29{bottom:197.184311px;}
.y319{bottom:198.805774px;}
.yf9{bottom:201.139939px;}
.y265{bottom:201.777741px;}
.y26a{bottom:201.778358px;}
.y1d6{bottom:203.509644px;}
.y9f{bottom:203.548645px;}
.y182{bottom:203.549995px;}
.y228{bottom:208.634403px;}
.y2c7{bottom:208.976268px;}
.y1f5{bottom:210.537897px;}
.y4e{bottom:210.546297px;}
.y318{bottom:211.552024px;}
.y28{bottom:212.180261px;}
.yf8{bottom:216.137239px;}
.y264{bottom:218.444391px;}
.y1d5{bottom:218.510994px;}
.y9e{bottom:218.549995px;}
.y194{bottom:221.431646px;}
.y2c6{bottom:221.722518px;}
.y227{bottom:223.632903px;}
.y317{bottom:224.298274px;}
.y1f4{bottom:225.539247px;}
.y4d{bottom:225.544797px;}
.y27{bottom:227.181611px;}
.yf7{bottom:231.138589px;}
.ydc{bottom:231.660303px;}
.y263{bottom:233.445741px;}
.y1d4{bottom:233.509045px;}
.y9d{bottom:233.547295px;}
.y2c5{bottom:234.468768px;}
.y193{bottom:236.430146px;}
.y316{bottom:237.044524px;}
.y226{bottom:238.631403px;}
.y1f3{bottom:240.540597px;}
.y4c{bottom:240.543297px;}
.y26{bottom:242.182961px;}
.yf6{bottom:246.139939px;}
.ydb{bottom:246.658803px;}
.y2c4{bottom:247.215018px;}
.y262{bottom:248.447091px;}
.y1d3{bottom:248.510395px;}
.y9c{bottom:248.548645px;}
.y181{bottom:249.447304px;}
.y315{bottom:249.790774px;}
.y192{bottom:251.428646px;}
.y225{bottom:253.629903px;}
.y1f2{bottom:255.541947px;}
.y25{bottom:257.182961px;}
.y25d{bottom:257.949005px;}
.y2c3{bottom:259.961268px;}
.yf5{bottom:261.139939px;}
.yda{bottom:261.657303px;}
.y314{bottom:262.537024px;}
.y261{bottom:263.448441px;}
.y25c{bottom:263.448898px;}
.y1d2{bottom:263.511745px;}
.y9b{bottom:263.549995px;}
.y180{bottom:264.447304px;}
.y191{bottom:266.427146px;}
.y224{bottom:268.629903px;}
.y1f1{bottom:270.543297px;}
.y4b{bottom:271.291947px;}
.y24{bottom:272.184311px;}
.y2c2{bottom:272.707518px;}
.y313{bottom:275.283274px;}
.yf4{bottom:276.141289px;}
.y1d1{bottom:278.513095px;}
.y9a{bottom:278.554495px;}
.y17f{bottom:279.447304px;}
.y25b{bottom:280.115548px;}
.y190{bottom:281.425646px;}
.y223{bottom:283.626903px;}
.y2c1{bottom:285.453768px;}
.y4a{bottom:286.287897px;}
.y23{bottom:287.181611px;}
.y312{bottom:288.029524px;}
.y99{bottom:293.552995px;}
.y17e{bottom:294.447304px;}
.y25a{bottom:295.116898px;}
.yde{bottom:296.374489px;}
.y18f{bottom:296.424146px;}
.y2c0{bottom:298.200018px;}
.y311{bottom:300.775774px;}
.y49{bottom:301.289247px;}
.ycf{bottom:302.163139px;}
.y22{bottom:302.182961px;}
.yf2{bottom:304.151247px;}
.ye6{bottom:304.158001px;}
.ye9{bottom:307.603656px;}
.yed{bottom:307.607110px;}
.y98{bottom:308.551495px;}
.y17d{bottom:309.447304px;}
.y259{bottom:310.118248px;}
.ye5{bottom:310.199089px;}
.y2bf{bottom:310.946268px;}
.y1d0{bottom:311.273095px;}
.y18e{bottom:311.428646px;}
.yd0{bottom:311.471992px;}
.y310{bottom:313.522024px;}
.yeb{bottom:313.655245px;}
.yf3{bottom:313.655247px;}
.y222{bottom:314.379903px;}
.y48{bottom:316.290597px;}
.y21{bottom:317.184311px;}
.ye0{bottom:317.975258px;}
.ydd{bottom:319.703110px;}
.y20e{bottom:320.232453px;}
.y97{bottom:323.549995px;}
.y2be{bottom:323.692518px;}
.ye3{bottom:324.030170px;}
.y17c{bottom:324.448654px;}
.yec{bottom:325.753837px;}
.y30f{bottom:326.268274px;}
.y1cf{bottom:326.274445px;}
.y18d{bottom:326.427146px;}
.ye2{bottom:327.057625px;}
.yf0{bottom:327.911247px;}
.y221{bottom:329.378403px;}
.y47{bottom:331.291947px;}
.ye8{bottom:331.367111px;}
.yee{bottom:331.370565px;}
.y20{bottom:332.184311px;}
.ye1{bottom:333.098713px;}
.y20d{bottom:335.230953px;}
.y2bd{bottom:336.438768px;}
.yea{bottom:337.415245px;}
.yf1{bottom:337.415247px;}
.y30e{bottom:339.014524px;}
.y17b{bottom:339.445954px;}
.y1ce{bottom:341.275795px;}
.y18c{bottom:341.425646px;}
.y220{bottom:344.378403px;}
.y46{bottom:346.287920px;}
.y258{bottom:346.499271px;}
.y1f{bottom:347.181611px;}
.y2bc{bottom:349.185018px;}
.y20c{bottom:350.229453px;}
.y30d{bottom:351.760774px;}
.y96{bottom:353.671646px;}
.y17a{bottom:354.447304px;}
.y1cd{bottom:356.277145px;}
.y18b{bottom:356.424146px;}
.y21f{bottom:359.378403px;}
.y45{bottom:361.289270px;}
.y257{bottom:361.497771px;}
.y2bb{bottom:361.931268px;}
.y1e{bottom:362.182961px;}
.y30c{bottom:364.507024px;}
.y20b{bottom:365.227953px;}
.y95{bottom:368.667596px;}
.y179{bottom:369.447304px;}
.y1cc{bottom:371.273095px;}
.y18a{bottom:371.424168px;}
.y2ba{bottom:374.677518px;}
.y44{bottom:376.290620px;}
.y256{bottom:376.496271px;}
.y1d{bottom:377.184311px;}
.y30b{bottom:377.253274px;}
.y20a{bottom:380.226453px;}
.y94{bottom:383.668946px;}
.y178{bottom:384.447304px;}
.y1cb{bottom:386.274445px;}
.y189{bottom:386.422668px;}
.y2b9{bottom:387.423768px;}
.y30a{bottom:389.999524px;}
.y43{bottom:391.291970px;}
.y255{bottom:391.494771px;}
.y1c{bottom:392.182961px;}
.y21e{bottom:392.378403px;}
.y209{bottom:395.224953px;}
.y93{bottom:398.670296px;}
.y177{bottom:399.445954px;}
.y11b{bottom:399.631520px;}
.y2b8{bottom:400.170018px;}
.y1ca{bottom:401.275795px;}
.y188{bottom:401.422668px;}
.y251{bottom:401.492981px;}
.y309{bottom:402.745774px;}
.y42{bottom:406.293320px;}
.y1b{bottom:407.184311px;}
.y21d{bottom:407.373003px;}
.y208{bottom:410.223453px;}
.y254{bottom:412.293320px;}
.y2b7{bottom:412.916268px;}
.y92{bottom:413.671646px;}
.y176{bottom:414.447304px;}
.y11a{bottom:414.630020px;}
.y308{bottom:415.492024px;}
.y1c9{bottom:416.277145px;}
.y41{bottom:421.290620px;}
.y1a{bottom:422.182961px;}
.y21c{bottom:422.374353px;}
.y207{bottom:425.221953px;}
.y2b6{bottom:425.662518px;}
.y250{bottom:425.794820px;}
.y307{bottom:428.238274px;}
.y91{bottom:428.670296px;}
.y175{bottom:429.447304px;}
.y1c8{bottom:431.277920px;}
.yb0{bottom:435.438171px;}
.y40{bottom:436.291970px;}
.y19{bottom:437.184311px;}
.y21b{bottom:437.375703px;}
.y2b5{bottom:438.408768px;}
.y206{bottom:440.220453px;}
.y24f{bottom:440.796320px;}
.y306{bottom:440.984524px;}
.y107{bottom:442.444519px;}
.y90{bottom:443.671646px;}
.y174{bottom:444.447304px;}
.y1c7{bottom:446.279270px;}
.y2b4{bottom:451.155018px;}
.y3f{bottom:451.293320px;}
.y1bf{bottom:451.860168px;}
.y18{bottom:452.182961px;}
.y21a{bottom:452.377053px;}
.y305{bottom:453.730774px;}
.y205{bottom:455.218953px;}
.y24e{bottom:455.794820px;}
.y8f{bottom:458.659496px;}
.y173{bottom:459.447304px;}
.y2b3{bottom:463.901268px;}
.y3e{bottom:466.291970px;}
.y304{bottom:466.477024px;}
.y17{bottom:467.184311px;}
.y219{bottom:467.378403px;}
.y204{bottom:470.217453px;}
.yc3{bottom:472.075516px;}
.y8e{bottom:473.660846px;}
.y172{bottom:474.448654px;}
.y2b2{bottom:476.647518px;}
.y1c6{bottom:479.039270px;}
.y303{bottom:479.223274px;}
.y3d{bottom:481.293320px;}
.y1be{bottom:482.035668px;}
.y16{bottom:482.184311px;}
.y218{bottom:482.367603px;}
.y104{bottom:484.417531px;}
.y106{bottom:484.423370px;}
.y24d{bottom:486.547820px;}
.y8d{bottom:488.662196px;}
.y2b1{bottom:489.393768px;}
.y171{bottom:489.441904px;}
.y302{bottom:491.969524px;}
.y1c5{bottom:494.040620px;}
.y3c{bottom:496.291970px;}
.y217{bottom:497.368953px;}
.y1fe{bottom:498.031494px;}
.y1bd{bottom:499.476168px;}
.y24c{bottom:501.546320px;}
.y2b0{bottom:502.140018px;}
.y8c{bottom:503.663546px;}
.y170{bottom:504.443254px;}
.y301{bottom:504.715774px;}
.y1c4{bottom:509.041970px;}
.yba{bottom:510.908981px;}
.y3b{bottom:511.290620px;}
.y216{bottom:512.370303px;}
.y2af{bottom:514.886268px;}
.y24b{bottom:516.544820px;}
.y1bc{bottom:516.916668px;}
.y300{bottom:517.462024px;}
.y8b{bottom:518.664896px;}
.ybb{bottom:519.057129px;}
.y16f{bottom:519.444604px;}
.y1c3{bottom:524.043320px;}
.y3a{bottom:526.291970px;}
.y215{bottom:527.371653px;}
.y2ae{bottom:527.632518px;}
.y2ff{bottom:530.208274px;}
.y24a{bottom:531.555320px;}
.y8a{bottom:533.666246px;}
.y1bb{bottom:534.357168px;}
.y16e{bottom:534.445954px;}
.y1c2{bottom:539.040620px;}
.y2ad{bottom:540.378768px;}
.y39{bottom:541.286570px;}
.y15{bottom:541.458311px;}
.y214{bottom:542.373003px;}
.y2fe{bottom:542.954524px;}
.y249{bottom:546.553820px;}
.y89{bottom:548.667596px;}
.y16d{bottom:549.447304px;}
.y1ba{bottom:551.797668px;}
.y2ac{bottom:553.125018px;}
.y1c1{bottom:554.041970px;}
.y2fd{bottom:555.700774px;}
.y38{bottom:556.287920px;}
.y213{bottom:557.374353px;}
.y14{bottom:557.955311px;}
.y248{bottom:561.552320px;}
.y88{bottom:563.668946px;}
.y16c{bottom:564.448654px;}
.y2ab{bottom:565.871268px;}
.y2fc{bottom:568.447024px;}
.y1c0{bottom:569.043320px;}
.y37{bottom:571.289270px;}
.y212{bottom:572.375703px;}
.y13{bottom:574.452311px;}
.ybf{bottom:575.324982px;}
.y247{bottom:576.550820px;}
.yc0{bottom:577.462509px;}
.y2aa{bottom:578.617518px;}
.y87{bottom:578.670296px;}
.y16b{bottom:579.453154px;}
.y2fb{bottom:581.193274px;}
.y105{bottom:582.739334px;}
.y36{bottom:586.290620px;}
.y211{bottom:587.377053px;}
.y12{bottom:590.949311px;}
.y2a9{bottom:591.363768px;}
.y246{bottom:591.549320px;}
.y1ff{bottom:593.213837px;}
.y86{bottom:593.671646px;}
.y2fa{bottom:593.939524px;}
.y16a{bottom:594.451654px;}
.ybd{bottom:596.178648px;}
.y35{bottom:601.291970px;}
.y1b9{bottom:602.233820px;}
.y210{bottom:602.378403px;}
.y2a8{bottom:604.110018px;}
.y245{bottom:606.547820px;}
.y2f9{bottom:606.685774px;}
.y11{bottom:607.446311px;}
.ybc{bottom:607.840668px;}
.y85{bottom:608.662196px;}
.y169{bottom:609.450154px;}
.y33b{bottom:614.056820px;}
.y34{bottom:616.293320px;}
.y2a7{bottom:616.856268px;}
.y1b8{bottom:617.232320px;}
.y20f{bottom:617.378403px;}
.y2f8{bottom:619.432024px;}
.y244{bottom:621.546320px;}
.y1f0{bottom:622.927213px;}
.y84{bottom:623.663546px;}
.y10{bottom:623.943311px;}
.y168{bottom:624.463608px;}
.yc2{bottom:628.193128px;}
.y33a{bottom:629.055320px;}
.y2a6{bottom:629.602518px;}
.y119{bottom:629.872295px;}
.y2f7{bottom:632.178274px;}
.y1b7{bottom:632.230820px;}
.y243{bottom:636.544820px;}
.y1ef{bottom:637.925713px;}
.y83{bottom:638.664896px;}
.y118{bottom:638.992355px;}
.y167{bottom:639.462108px;}
.yc1{bottom:639.855148px;}
.yf{bottom:640.440311px;}
.y2a5{bottom:642.348768px;}
.y339{bottom:644.053820px;}
.y2f6{bottom:644.924524px;}
.y242{bottom:651.544820px;}
.y1ee{bottom:652.924213px;}
.y82{bottom:653.666246px;}
.y166{bottom:654.460608px;}
.y108{bottom:654.828461px;}
.y2a4{bottom:655.095018px;}
.ye{bottom:656.937311px;}
.yb9{bottom:657.387131px;}
.ybe{bottom:657.390840px;}
.y2f5{bottom:657.670774px;}
.y338{bottom:659.052320px;}
.y1b6{bottom:662.361274px;}
.y241{bottom:666.547820px;}
.yb7{bottom:667.762482px;}
.y2a3{bottom:667.841268px;}
.y1ed{bottom:667.922713px;}
.y81{bottom:668.667596px;}
.y165{bottom:669.459108px;}
.y2f4{bottom:670.417024px;}
.y23d{bottom:673.003220px;}
.yd{bottom:673.446311px;}
.y337{bottom:674.050820px;}
.yb8{bottom:675.520477px;}
.y65{bottom:677.143514px;}
.y1b5{bottom:679.801774px;}
.y2a2{bottom:680.587518px;}
.y100{bottom:680.678833px;}
.y240{bottom:681.546320px;}
.y1ec{bottom:682.921213px;}
.y2f3{bottom:683.163274px;}
.y80{bottom:683.668946px;}
.y164{bottom:684.457608px;}
.y23c{bottom:688.001720px;}
.y336{bottom:689.049320px;}
.yc{bottom:689.943311px;}
.y64{bottom:692.142014px;}
.y2a1{bottom:693.333768px;}
.y2f2{bottom:695.909524px;}
.y23f{bottom:696.544820px;}
.y1b4{bottom:697.242274px;}
.y1eb{bottom:697.919713px;}
.y7f{bottom:698.670296px;}
.y163{bottom:699.456108px;}
.y23b{bottom:703.000220px;}
.y335{bottom:704.047820px;}
.y2a0{bottom:706.080018px;}
.yb{bottom:706.440311px;}
.y2f1{bottom:708.655774px;}
.y23e{bottom:711.543320px;}
.y1ea{bottom:712.918213px;}
.y7e{bottom:713.671646px;}
.y162{bottom:714.454608px;}
.y1b3{bottom:714.682774px;}
.yc9{bottom:716.583740px;}
.y23a{bottom:717.998720px;}
.y29f{bottom:718.826268px;}
.y334{bottom:719.046320px;}
.y61{bottom:719.956512px;}
.y2f0{bottom:721.402024px;}
.ya{bottom:722.937311px;}
.y7d{bottom:728.671646px;}
.y161{bottom:729.453108px;}
.yc8{bottom:730.194168px;}
.y29e{bottom:731.572518px;}
.y1b2{bottom:732.123274px;}
.y60{bottom:732.992828px;}
.y239{bottom:732.997220px;}
.y333{bottom:734.044820px;}
.y2ef{bottom:734.148274px;}
.yc4{bottom:737.968643px;}
.yca{bottom:739.271988px;}
.y9{bottom:739.434311px;}
.y5f{bottom:743.252828px;}
.y7c{bottom:743.674692px;}
.y29d{bottom:744.318768px;}
.y160{bottom:744.451608px;}
.y2ee{bottom:746.894524px;}
.y238{bottom:747.995720px;}
.y332{bottom:749.043320px;}
.y1b1{bottom:749.563774px;}
.y5e{bottom:753.512827px;}
.y200{bottom:754.932312px;}
.y29c{bottom:757.065018px;}
.y7b{bottom:758.673192px;}
.y15f{bottom:759.450108px;}
.y2ed{bottom:759.640774px;}
.y282{bottom:759.903456px;}
.yc5{bottom:761.446518px;}
.y237{bottom:762.994220px;}
.y5d{bottom:763.772827px;}
.y1b0{bottom:767.004274px;}
.y29b{bottom:769.811268px;}
.y331{bottom:770.800774px;}
.y2ec{bottom:772.387024px;}
.y7a{bottom:773.676192px;}
.y5c{bottom:774.047882px;}
.y15e{bottom:774.450108px;}
.y281{bottom:774.901956px;}
.y8{bottom:775.434265px;}
.y110{bottom:775.710162px;}
.y236{bottom:777.992720px;}
.y29a{bottom:782.557518px;}
.y1e6{bottom:782.770895px;}
.y203{bottom:783.250593px;}
.y10f{bottom:783.652313px;}
.y1af{bottom:784.444774px;}
.y2eb{bottom:785.133274px;}
.y330{bottom:785.799274px;}
.y79{bottom:788.674692px;}
.y15d{bottom:789.450108px;}
.y280{bottom:789.900456px;}
.y58{bottom:792.228861px;}
.y235{bottom:792.991220px;}
.y7{bottom:793.434265px;}
.y299{bottom:795.303768px;}
.y1e5{bottom:795.813945px;}
.y2ea{bottom:797.879524px;}
.y202{bottom:798.247833px;}
.y1ae{bottom:801.885274px;}
.y78{bottom:803.673192px;}
.y15c{bottom:804.448608px;}
.y27f{bottom:804.898956px;}
.y32f{bottom:807.547774px;}
.y234{bottom:807.989720px;}
.y298{bottom:808.050018px;}
.y1e4{bottom:808.856995px;}
.yc7{bottom:810.393482px;}
.yc6{bottom:810.394684px;}
.y2e9{bottom:810.625774px;}
.y101{bottom:811.049835px;}
.y201{bottom:813.244812px;}
.y77{bottom:818.674692px;}
.y1ad{bottom:819.325774px;}
.y297{bottom:820.800018px;}
.y233{bottom:822.988220px;}
.y2e8{bottom:823.372024px;}
.y6{bottom:826.422265px;}
.y32e{bottom:829.296274px;}
.y76{bottom:833.673192px;}
.y2e7{bottom:836.118274px;}
.y1ac{bottom:836.755774px;}
.y14b{bottom:840.582000px;}
.y112{bottom:843.685364px;}
.yb5{bottom:844.366516px;}
.y151{bottom:847.061279px;}
.y1ab{bottom:848.001274px;}
.y14e{bottom:848.357294px;}
.y296{bottom:848.364582px;}
.y75{bottom:848.674692px;}
.y15a{bottom:848.775455px;}
.y155{bottom:848.803103px;}
.y2e6{bottom:848.864524px;}
.y32d{bottom:851.044774px;}
.y159{bottom:851.802911px;}
.y15b{bottom:852.245270px;}
.y154{bottom:852.687647px;}
.y14d{bottom:854.837219px;}
.y14f{bottom:855.701294px;}
.y158{bottom:856.558367px;}
.y232{bottom:856.862706px;}
.y153{bottom:858.728735px;}
.y14a{bottom:860.453247px;}
.y157{bottom:861.313823px;}
.y2e5{bottom:861.610774px;}
.y10b{bottom:862.458268px;}
.y295{bottom:863.358582px;}
.y74{bottom:863.673192px;}
.y231{bottom:864.118011px;}
.y152{bottom:864.769823px;}
.y1aa{bottom:865.441774px;}
.y32c{bottom:866.043274px;}
.y156{bottom:866.069278px;}
.y31{bottom:871.199432px;}
.y5{bottom:871.428265px;}
.y2e4{bottom:874.357024px;}
.y73{bottom:878.671692px;}
.y113{bottom:879.292236px;}
.y32b{bottom:881.043274px;}
.y1a9{bottom:882.882274px;}
.y2e3{bottom:887.103274px;}
.y294{bottom:891.110082px;}
.y1e3{bottom:893.239103px;}
.y72{bottom:893.671692px;}
.y2e2{bottom:899.849524px;}
.y1a8{bottom:900.322774px;}
.y146{bottom:906.071960px;}
.y293{bottom:906.110082px;}
.y1e2{bottom:906.282153px;}
.y148{bottom:911.255219px;}
.y2e1{bottom:912.595774px;}
.y32a{bottom:914.793274px;}
.yd8{bottom:915.870117px;}
.y4{bottom:916.434265px;}
.y1a7{bottom:917.763274px;}
.y1e1{bottom:919.314307px;}
.y292{bottom:921.111582px;}
.y71{bottom:923.793274px;}
.ycd{bottom:924.778473px;}
.y2e0{bottom:925.342024px;}
.y32{bottom:926.409576px;}
.yd7{bottom:927.556641px;}
.y329{bottom:929.793274px;}
.y1a6{bottom:935.203774px;}
.y291{bottom:936.110082px;}
.ycc{bottom:936.441193px;}
.y2df{bottom:938.088274px;}
.y70{bottom:938.781124px;}
.y10e{bottom:939.200867px;}
.y145{bottom:942.565911px;}
.yd6{bottom:945.049069px;}
.ycb{bottom:948.103638px;}
.y2de{bottom:950.834524px;}
.y290{bottom:951.108582px;}
.y1a5{bottom:952.644274px;}
.y6f{bottom:953.782474px;}
.yce{bottom:955.755341px;}
.yd5{bottom:956.711089px;}
.y328{bottom:956.800774px;}
.y144{bottom:957.564561px;}
.y117{bottom:958.180023px;}
.y2dd{bottom:963.580774px;}
.y10c{bottom:964.472260px;}
.y28f{bottom:966.108582px;}
.yd4{bottom:968.373109px;}
.y6e{bottom:968.783824px;}
.y1a4{bottom:970.084774px;}
.y327{bottom:971.799274px;}
.y143{bottom:972.565911px;}
.y2dc{bottom:976.327024px;}
.y116{bottom:978.190521px;}
.yd3{bottom:980.035129px;}
.y6d{bottom:983.785174px;}
.y326{bottom:986.797774px;}
.y1a3{bottom:987.525274px;}
.y142{bottom:987.565911px;}
.y2db{bottom:989.073274px;}
.yd2{bottom:991.697149px;}
.y28e{bottom:993.659228px;}
.y114{bottom:998.737586px;}
.y6c{bottom:998.786524px;}
.y1e0{bottom:1000.623614px;}
.yd9{bottom:1001.314087px;}
.y325{bottom:1001.796274px;}
.y2da{bottom:1001.819524px;}
.y141{bottom:1002.567261px;}
.yd1{bottom:1003.359169px;}
.y1a2{bottom:1004.965774px;}
.y28d{bottom:1008.660578px;}
.yb4{bottom:1009.190179px;}
.y1df{bottom:1013.666665px;}
.y6b{bottom:1013.787874px;}
.y2d9{bottom:1014.565774px;}
.y115{bottom:1016.449412px;}
.y324{bottom:1016.794774px;}
.yb3{bottom:1020.852199px;}
.y1a1{bottom:1022.406274px;}
.y124{bottom:1022.801971px;}
.y28c{bottom:1023.661928px;}
.y133{bottom:1026.699661px;}
.y1de{bottom:1026.720612px;}
.y2d8{bottom:1027.312024px;}
.y63{bottom:1028.066986px;}
.y6a{bottom:1028.789224px;}
.y102{bottom:1029.832214px;}
.y127{bottom:1030.149586px;}
.y132{bottom:1031.455117px;}
.y323{bottom:1031.793274px;}
.y136{bottom:1031.880134px;}
.y13c{bottom:1031.893958px;}
.yb2{bottom:1032.514219px;}
.y10d{bottom:1033.555756px;}
.y128{bottom:1033.604747px;}
.y11f{bottom:1033.618571px;}
.y13a{bottom:1033.621958px;}
.y123{bottom:1033.632395px;}
.y140{bottom:1035.764678px;}
.y139{bottom:1036.649414px;}
.y131{bottom:1037.496205px;}
.y28b{bottom:1038.663278px;}
.y1a0{bottom:1039.846774px;}
.y2d7{bottom:1040.058274px;}
.y13f{bottom:1040.520134px;}
.y138{bottom:1042.690502px;}
.y130{bottom:1043.537292px;}
.y69{bottom:1043.790574px;}
.yb1{bottom:1044.176239px;}
.y135{bottom:1044.833221px;}
.y11e{bottom:1044.843659px;}
.y122{bottom:1044.857483px;}
.y13e{bottom:1045.275589px;}
.y322{bottom:1046.793274px;}
.y137{bottom:1048.731589px;}
.y126{bottom:1049.585266px;}
.y13d{bottom:1050.031045px;}
.y12a{bottom:1051.313232px;}
.y5b{bottom:1052.590932px;}
.y2d6{bottom:1052.804524px;}
.y11c{bottom:1053.041290px;}
.y120{bottom:1053.055114px;}
.y28a{bottom:1053.664628px;}
.y13b{bottom:1056.943045px;}
.y19f{bottom:1057.287274px;}
.y12e{bottom:1057.381968px;}
.y68{bottom:1058.791924px;}
.y10a{bottom:1059.896576px;}
.y103{bottom:1059.934479px;}
.y12d{bottom:1061.266512px;}
.y5a{bottom:1062.850932px;}
.yb6{bottom:1063.668381px;}
.y2d5{bottom:1065.550774px;}
.y12c{bottom:1067.307600px;}
.y289{bottom:1068.665978px;}
.y59{bottom:1073.110931px;}
.y12b{bottom:1073.348687px;}
.y11d{bottom:1073.348745px;}
.y121{bottom:1073.362569px;}
.y67{bottom:1073.793274px;}
.y321{bottom:1073.794774px;}
.y19e{bottom:1074.727774px;}
.y1e9{bottom:1075.743978px;}
.y1e8{bottom:1075.852703px;}
.y283{bottom:1078.167023px;}
.y2d4{bottom:1078.297024px;}
.y286{bottom:1083.351471px;}
.y288{bottom:1083.667328px;}
.y109{bottom:1088.152679px;}
.y66{bottom:1088.793274px;}
.y1e7{bottom:1088.895754px;}
.y284{bottom:1089.399261px;}
.y2d3{bottom:1091.043274px;}
.y57{bottom:1091.443542px;}
.y19d{bottom:1092.168274px;}
.y111{bottom:1095.410431px;}
.y33{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.h46{height:14.737318px;}
.h68{height:17.533152px;}
.h3b{height:18.479698px;}
.h3c{height:18.485649px;}
.h43{height:18.501538px;}
.h40{height:18.632003px;}
.h6b{height:19.440000px;}
.h41{height:19.877233px;}
.h52{height:21.599999px;}
.h3f{height:22.131346px;}
.h3e{height:22.161746px;}
.h48{height:22.161883px;}
.h3a{height:22.183616px;}
.h6c{height:22.896000px;}
.h1a{height:24.897599px;}
.h19{height:24.931799px;}
.h1b{height:24.981664px;}
.h39{height:26.827859px;}
.h26{height:28.299835px;}
.h2b{height:28.302856px;}
.h2c{height:28.313105px;}
.h25{height:28.338709px;}
.h29{height:28.356182px;}
.h2e{height:28.395132px;}
.h58{height:29.052864px;}
.h18{height:29.170206px;}
.h57{height:29.434752px;}
.h10{height:31.194672px;}
.h60{height:31.774048px;}
.h61{height:31.862175px;}
.h27{height:33.110750px;}
.h24{height:33.156232px;}
.h2d{height:33.212657px;}
.h6d{height:35.411133px;}
.h2a{height:35.681537px;}
.h32{height:36.115200px;}
.h65{height:36.393302px;}
.h28{height:36.851793px;}
.h47{height:37.072612px;}
.h44{height:37.073345px;}
.h53{height:37.597824px;}
.h36{height:38.092032px;}
.h9{height:38.838867px;}
.h5c{height:41.538000px;}
.h64{height:42.580138px;}
.h5b{height:43.008000px;}
.h5e{height:43.344000px;}
.h6f{height:44.505000px;}
.h4e{height:45.010944px;}
.h70{height:45.090000px;}
.h54{height:45.360000px;}
.h3{height:45.744000px;}
.h6e{height:46.080000px;}
.h56{height:46.721664px;}
.ha{height:47.469727px;}
.h45{height:49.689851px;}
.h69{height:50.889600px;}
.h8{height:51.416016px;}
.h30{height:52.271999px;}
.h2f{height:52.531198px;}
.h11{height:52.632000px;}
.h17{height:53.406000px;}
.h6a{height:53.675136px;}
.hb{height:53.999400px;}
.hc{height:54.004800px;}
.h5f{height:54.007194px;}
.he{height:54.010200px;}
.h5a{height:54.010218px;}
.hf{height:54.015600px;}
.h38{height:54.015645px;}
.h15{height:54.020908px;}
.h16{height:54.021000px;}
.h14{height:54.026400px;}
.h62{height:54.031800px;}
.h20{height:54.037200px;}
.h66{height:54.042600px;}
.h1e{height:54.048000px;}
.h67{height:54.108000px;}
.h35{height:54.687742px;}
.hd{height:54.709200px;}
.h23{height:54.714600px;}
.h22{height:54.725400px;}
.h21{height:54.757800px;}
.h1d{height:55.296000px;}
.h42{height:55.328146px;}
.h34{height:55.406590px;}
.h2{height:57.099609px;}
.h7{height:57.128906px;}
.h4{height:58.527100px;}
.h4f{height:59.443197px;}
.h12{height:60.416016px;}
.h6{height:61.800293px;}
.h1f{height:62.841797px;}
.h5d{height:64.050000px;}
.h4d{height:66.095999px;}
.h37{height:86.486400px;}
.h55{height:87.533564px;}
.h51{height:88.805372px;}
.h4b{height:94.445564px;}
.h49{height:95.164412px;}
.h50{height:97.431548px;}
.h59{height:99.201020px;}
.h4c{height:99.588092px;}
.h4a{height:100.306940px;}
.h31{height:100.915196px;}
.h33{height:102.076412px;}
.h13{height:102.832031px;}
.h5{height:148.535156px;}
.h1c{height:383.837997px;}
.h63{height:605.763016px;}
.h3d{height:661.348480px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w7{width:47.520000px;}
.w8{width:89.855999px;}
.w9{width:94.607998px;}
.wa{width:95.471998px;}
.wb{width:104.111996px;}
.wc{width:104.976002px;}
.wd{width:105.408005px;}
.w3{width:598.751999px;}
.w5{width:599.183990px;}
.w4{width:657.541489px;}
.w6{width:675.822006px;}
.w2{width:684.001511px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x92{left:-3.887992px;}
.x96{left:-2.159866px;}
.x0{left:0.000000px;}
.x6{left:23.780700px;}
.x98{left:25.488144px;}
.x64{left:28.775690px;}
.x95{left:34.560150px;}
.x9c{left:39.312286px;}
.x2{left:61.191450px;}
.x97{left:78.624161px;}
.x9d{left:82.512268px;}
.xa0{left:84.239250px;}
.x17{left:85.982986px;}
.xa4{left:92.448303px;}
.x65{left:99.114603px;}
.x49{left:109.295700px;}
.x8e{left:122.298155px;}
.x67{left:124.232255px;}
.x7{left:140.952747px;}
.x16{left:147.954002px;}
.x8d{left:156.134995px;}
.x8f{left:159.656399px;}
.x79{left:167.615686px;}
.x22{left:172.444347px;}
.x5c{left:174.414000px;}
.x7b{left:181.871682px;}
.x68{left:186.157950px;}
.xb{left:192.656250px;}
.x7d{left:196.561066px;}
.x13{left:199.051804px;}
.xd{left:200.439463px;}
.xc{left:204.543458px;}
.x80{left:209.950470px;}
.x14{left:224.274902px;}
.x4{left:233.456406px;}
.x86{left:238.143906px;}
.x88{left:242.396850px;}
.x89{left:245.556820px;}
.x47{left:247.788300px;}
.x15{left:250.352401px;}
.x5{left:251.462995px;}
.x8{left:254.462841px;}
.x5d{left:256.721559px;}
.x93{left:259.376999px;}
.x3b{left:269.032950px;}
.x3d{left:271.811554px;}
.x7f{left:274.321060px;}
.x9f{left:278.630997px;}
.x99{left:282.360008px;}
.x1d{left:290.806068px;}
.x26{left:291.868781px;}
.x66{left:293.744110px;}
.x3a{left:296.782566px;}
.x29{left:299.470802px;}
.xa9{left:300.594749px;}
.x3c{left:306.138908px;}
.x57{left:312.701639px;}
.x27{left:317.525225px;}
.x25{left:320.051994px;}
.x28{left:321.801299px;}
.x73{left:324.468866px;}
.x48{left:327.074707px;}
.x6d{left:328.226555px;}
.xa5{left:338.501404px;}
.x87{left:340.643852px;}
.x4a{left:342.626700px;}
.x3e{left:343.668159px;}
.x55{left:345.592049px;}
.x4f{left:349.984547px;}
.x6f{left:357.314690px;}
.x4c{left:359.042702px;}
.x50{left:365.965091px;}
.x38{left:367.380295px;}
.x9a{left:372.343048px;}
.xa1{left:374.102394px;}
.x9b{left:378.816010px;}
.x56{left:380.222557px;}
.x4b{left:384.098694px;}
.xa6{left:386.419510px;}
.x8b{left:390.228964px;}
.x1c{left:396.687630px;}
.x24{left:398.227478px;}
.x7a{left:400.946686px;}
.x2d{left:402.616333px;}
.x1b{left:405.237625px;}
.x5f{left:406.961563px;}
.x74{left:408.712319px;}
.x19{left:412.924072px;}
.x18{left:415.061554px;}
.x75{left:417.352318px;}
.x6e{left:419.674715px;}
.x71{left:422.107777px;}
.x62{left:424.121567px;}
.xf{left:427.689903px;}
.xa{left:430.328578px;}
.x7e{left:438.314529px;}
.xe{left:442.310403px;}
.x2c{left:443.751022px;}
.x63{left:445.822338px;}
.x81{left:448.034546px;}
.x54{left:450.880050px;}
.x5e{left:453.821548px;}
.x60{left:455.776062px;}
.x1a{left:462.873171px;}
.xa7{left:464.679886px;}
.x2a{left:466.119003px;}
.x9{left:467.351532px;}
.x39{left:472.358667px;}
.x9e{left:473.551666px;}
.x2b{left:479.765854px;}
.x53{left:489.506699px;}
.x21{left:491.765556px;}
.x37{left:501.905869px;}
.x59{left:503.639557px;}
.x78{left:507.225590px;}
.x77{left:514.129844px;}
.x94{left:521.109009px;}
.x84{left:523.634537px;}
.x36{left:531.910355px;}
.x2e{left:533.101500px;}
.x72{left:536.584316px;}
.x58{left:546.536545px;}
.x35{left:552.109497px;}
.x8c{left:559.102391px;}
.x3f{left:560.119416px;}
.x46{left:563.812363px;}
.x40{left:567.019444px;}
.x2f{left:570.794541px;}
.x44{left:572.179888px;}
.x83{left:574.614848px;}
.x82{left:575.907392px;}
.x43{left:578.496816px;}
.x45{left:580.235870px;}
.x52{left:581.903528px;}
.x34{left:584.763016px;}
.x7c{left:588.852858px;}
.x76{left:593.135675px;}
.x41{left:594.532093px;}
.x1e{left:599.108550px;}
.x42{left:600.479724px;}
.x3{left:604.783493px;}
.x20{left:609.206093px;}
.x61{left:610.852066px;}
.x12{left:614.661296px;}
.x85{left:616.946548px;}
.x70{left:618.671222px;}
.x33{left:624.097410px;}
.x10{left:627.229795px;}
.x6b{left:630.408836px;}
.x1f{left:635.283595px;}
.x6a{left:638.335052px;}
.x32{left:641.104523px;}
.x51{left:661.024536px;}
.x11{left:675.366293px;}
.x31{left:677.902496px;}
.x6c{left:682.339050px;}
.x4e{left:683.474716px;}
.x30{left:689.563522px;}
.x4d{left:701.186719px;}
.xa2{left:711.484497px;}
.x69{left:720.506561px;}
.x8a{left:722.113050px;}
.x5b{left:737.887070px;}
.xa3{left:760.732819px;}
.x5a{left:780.568085px;}
.x91{left:782.239471px;}
.x90{left:816.003571px;}
.xa8{left:817.278168px;}
.x23{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v15{vertical-align:-59.916285pt;}
.vd{vertical-align:-33.792000pt;}
.v16{vertical-align:-29.196287pt;}
.v19{vertical-align:-21.494685pt;}
.v3{vertical-align:-18.134115pt;}
.v8{vertical-align:-16.501302pt;}
.v6{vertical-align:-15.413330pt;}
.v18{vertical-align:-12.287999pt;}
.v4{vertical-align:-9.642764pt;}
.va{vertical-align:-8.293457pt;}
.v9{vertical-align:-7.294271pt;}
.ve{vertical-align:-5.541341pt;}
.v1f{vertical-align:-1.134965pt;}
.v0{vertical-align:0.000000pt;}
.v1c{vertical-align:3.072266pt;}
.vf{vertical-align:6.750593pt;}
.v1b{vertical-align:7.670784pt;}
.v11{vertical-align:9.589518pt;}
.v10{vertical-align:10.948070pt;}
.v7{vertical-align:12.784000pt;}
.v2{vertical-align:14.933594pt;}
.v5{vertical-align:16.501302pt;}
.v1{vertical-align:18.134115pt;}
.v1e{vertical-align:20.010667pt;}
.v1d{vertical-align:26.215280pt;}
.v12{vertical-align:28.238761pt;}
.v1a{vertical-align:29.196287pt;}
.v17{vertical-align:32.243711pt;}
.v13{vertical-align:35.340286pt;}
.v14{vertical-align:39.911422pt;}
.vc{vertical-align:41.484286pt;}
.vb{vertical-align:43.007998pt;}
.ls11{letter-spacing:-8.160000pt;}
.ls12b{letter-spacing:-4.320000pt;}
.ls78{letter-spacing:-3.234261pt;}
.ls32{letter-spacing:-2.703168pt;}
.ls30{letter-spacing:-2.560896pt;}
.lsc2{letter-spacing:-1.486232pt;}
.ls123{letter-spacing:-1.418667pt;}
.ls14f{letter-spacing:-1.344000pt;}
.ls135{letter-spacing:-1.317260pt;}
.ls177{letter-spacing:-1.280000pt;}
.ls13b{letter-spacing:-1.162288pt;}
.ls75{letter-spacing:-1.036624pt;}
.ls12a{letter-spacing:-0.970667pt;}
.ls129{letter-spacing:-0.933333pt;}
.ls84{letter-spacing:-0.932962pt;}
.ls29{letter-spacing:-0.922133pt;}
.ls85{letter-spacing:-0.898407pt;}
.ls12c{letter-spacing:-0.858667pt;}
.ls76{letter-spacing:-0.808565pt;}
.ls31{letter-spacing:-0.711360pt;}
.ls124{letter-spacing:-0.709333pt;}
.ls141{letter-spacing:-0.675875pt;}
.ls43{letter-spacing:-0.668800pt;}
.ls15d{letter-spacing:-0.642048pt;}
.ls186{letter-spacing:-0.640000pt;}
.ls4e{letter-spacing:-0.630933pt;}
.ls140{letter-spacing:-0.623885pt;}
.ls3e{letter-spacing:-0.578755pt;}
.ls176{letter-spacing:-0.560000pt;}
.lsfd{letter-spacing:-0.540672pt;}
.ls5b{letter-spacing:-0.533867pt;}
.ls181{letter-spacing:-0.520000pt;}
.ls41{letter-spacing:-0.487373pt;}
.ls38{letter-spacing:-0.486400pt;}
.ls74{letter-spacing:-0.485139pt;}
.ls15e{letter-spacing:-0.480000pt;}
.ls7d{letter-spacing:-0.449204pt;}
.ls126{letter-spacing:-0.448000pt;}
.ls146{letter-spacing:-0.444363pt;}
.ls172{letter-spacing:-0.440000pt;}
.ls5c{letter-spacing:-0.436800pt;}
.lscf{letter-spacing:-0.432000pt;}
.ls111{letter-spacing:-0.393216pt;}
.lsb4{letter-spacing:-0.371712pt;}
.ls3c{letter-spacing:-0.364800pt;}
.ls83{letter-spacing:-0.363854pt;}
.ls171{letter-spacing:-0.360000pt;}
.ls136{letter-spacing:-0.348686pt;}
.ls59{letter-spacing:-0.339733pt;}
.lsce{letter-spacing:-0.324269pt;}
.ls17b{letter-spacing:-0.320000pt;}
.ls7e{letter-spacing:-0.310987pt;}
.ls132{letter-spacing:-0.309943pt;}
.ls3f{letter-spacing:-0.304000pt;}
.ls128{letter-spacing:-0.298667pt;}
.ls173{letter-spacing:-0.280000pt;}
.ls39{letter-spacing:-0.273600pt;}
.lsb5{letter-spacing:-0.270336pt;}
.ls57{letter-spacing:-0.242667pt;}
.ls51{letter-spacing:-0.240000pt;}
.ls88{letter-spacing:-0.202485pt;}
.ls17c{letter-spacing:-0.200000pt;}
.ls2a{letter-spacing:-0.194133pt;}
.ls54{letter-spacing:-0.192000pt;}
.ls73{letter-spacing:-0.161713pt;}
.ls178{letter-spacing:-0.160000pt;}
.ls11a{letter-spacing:-0.157733pt;}
.ls52{letter-spacing:-0.156000pt;}
.ls137{letter-spacing:-0.154972pt;}
.ls127{letter-spacing:-0.149333pt;}
.ls101{letter-spacing:-0.147456pt;}
.ls17{letter-spacing:-0.145600pt;}
.ls117{letter-spacing:-0.144000pt;}
.ls2f{letter-spacing:-0.142272pt;}
.ls145{letter-spacing:-0.133309pt;}
.ls116{letter-spacing:-0.124800pt;}
.ls3b{letter-spacing:-0.121843pt;}
.ls89{letter-spacing:-0.121285pt;}
.ls175{letter-spacing:-0.120000pt;}
.ls134{letter-spacing:-0.116229pt;}
.ls115{letter-spacing:-0.106667pt;}
.ls7c{letter-spacing:-0.103662pt;}
.lsb1{letter-spacing:-0.098304pt;}
.ls12{letter-spacing:-0.097067pt;}
.ls2d{letter-spacing:-0.096000pt;}
.ls131{letter-spacing:-0.094640pt;}
.ls81{letter-spacing:-0.092604pt;}
.ls37{letter-spacing:-0.091200pt;}
.lsc3{letter-spacing:-0.081067pt;}
.ls77{letter-spacing:-0.080857pt;}
.ls170{letter-spacing:-0.080000pt;}
.ls13a{letter-spacing:-0.077486pt;}
.ls34{letter-spacing:-0.071136pt;}
.ls8a{letter-spacing:-0.069246pt;}
.ls7a{letter-spacing:-0.069108pt;}
.lsb8{letter-spacing:-0.067584pt;}
.lsbe{letter-spacing:-0.067555pt;}
.ls151{letter-spacing:-0.064224pt;}
.ls4f{letter-spacing:-0.053333pt;}
.ls13f{letter-spacing:-0.051990pt;}
.ls13{letter-spacing:-0.048533pt;}
.ls2c{letter-spacing:-0.048000pt;}
.ls143{letter-spacing:-0.044436pt;}
.ls152{letter-spacing:-0.042816pt;}
.ls6f{letter-spacing:-0.040428pt;}
.ls17a{letter-spacing:-0.040000pt;}
.ls138{letter-spacing:-0.038743pt;}
.ls33{letter-spacing:-0.035568pt;}
.ls7b{letter-spacing:-0.034554pt;}
.ls40{letter-spacing:-0.030461pt;}
.ls36{letter-spacing:-0.030400pt;}
.lsbf{letter-spacing:-0.027049pt;}
.lsc9{letter-spacing:-0.027022pt;}
.lsc1{letter-spacing:-0.022564pt;}
.ls10{letter-spacing:0.000000pt;}
.lsf3{letter-spacing:0.000013pt;}
.ls97{letter-spacing:0.000015pt;}
.lseb{letter-spacing:0.000017pt;}
.lsa3{letter-spacing:0.000462pt;}
.ls46{letter-spacing:0.004778pt;}
.ls61{letter-spacing:0.004853pt;}
.lsa2{letter-spacing:0.008492pt;}
.lsa8{letter-spacing:0.008903pt;}
.ls4{letter-spacing:0.010399pt;}
.ls2{letter-spacing:0.011754pt;}
.ls3{letter-spacing:0.012324pt;}
.lsea{letter-spacing:0.019630pt;}
.ls9d{letter-spacing:0.022564pt;}
.lsa0{letter-spacing:0.025574pt;}
.lsa5{letter-spacing:0.027022pt;}
.lsaa{letter-spacing:0.027841pt;}
.ls25{letter-spacing:0.030400pt;}
.ls27{letter-spacing:0.030461pt;}
.ls44{letter-spacing:0.031200pt;}
.ls104{letter-spacing:0.033792pt;}
.ls68{letter-spacing:0.034554pt;}
.ls69{letter-spacing:0.034623pt;}
.ls130{letter-spacing:0.038743pt;}
.ls168{letter-spacing:0.040000pt;}
.ls62{letter-spacing:0.040428pt;}
.ls13d{letter-spacing:0.044436pt;}
.ls9e{letter-spacing:0.045127pt;}
.ls21{letter-spacing:0.048000pt;}
.ls5{letter-spacing:0.048533pt;}
.ls160{letter-spacing:0.049152pt;}
.ls13c{letter-spacing:0.051990pt;}
.lsa9{letter-spacing:0.052840pt;}
.lsa7{letter-spacing:0.054045pt;}
.ls24{letter-spacing:0.060800pt;}
.ls16f{letter-spacing:0.062400pt;}
.ls2b{letter-spacing:0.063093pt;}
.lsba{letter-spacing:0.067584pt;}
.ls63{letter-spacing:0.069108pt;}
.lse9{letter-spacing:0.073095pt;}
.lse8{letter-spacing:0.073583pt;}
.ls12e{letter-spacing:0.077486pt;}
.ls169{letter-spacing:0.080000pt;}
.ls72{letter-spacing:0.080857pt;}
.ls13e{letter-spacing:0.088873pt;}
.ls1a{letter-spacing:0.094640pt;}
.ls15c{letter-spacing:0.095232pt;}
.lse6{letter-spacing:0.096000pt;}
.ls20{letter-spacing:0.097067pt;}
.ls64{letter-spacing:0.103662pt;}
.ls60{letter-spacing:0.105782pt;}
.ls14b{letter-spacing:0.106667pt;}
.ls139{letter-spacing:0.116229pt;}
.ls167{letter-spacing:0.120000pt;}
.ls70{letter-spacing:0.121285pt;}
.ls3d{letter-spacing:0.121600pt;}
.ls4c{letter-spacing:0.125829pt;}
.lse{letter-spacing:0.126187pt;}
.lsdf{letter-spacing:0.128596pt;}
.ls5f{letter-spacing:0.135008pt;}
.lsf6{letter-spacing:0.135435pt;}
.lsf7{letter-spacing:0.135595pt;}
.ls79{letter-spacing:0.138217pt;}
.lsf1{letter-spacing:0.141776pt;}
.lsf0{letter-spacing:0.141780pt;}
.ls158{letter-spacing:0.144000pt;}
.ls19{letter-spacing:0.145600pt;}
.lsde{letter-spacing:0.155295pt;}
.ls142{letter-spacing:0.155971pt;}
.ls118{letter-spacing:0.156000pt;}
.ls1e{letter-spacing:0.157733pt;}
.ls16a{letter-spacing:0.160000pt;}
.lsca{letter-spacing:0.164971pt;}
.ls98{letter-spacing:0.165867pt;}
.ls99{letter-spacing:0.165868pt;}
.ls65{letter-spacing:0.172771pt;}
.lsf5{letter-spacing:0.174332pt;}
.lsf4{letter-spacing:0.176610pt;}
.ls125{letter-spacing:0.186667pt;}
.ls159{letter-spacing:0.187200pt;}
.ls14{letter-spacing:0.189280pt;}
.ls153{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.194133pt;}
.ls16b{letter-spacing:0.200000pt;}
.lsb6{letter-spacing:0.202752pt;}
.ls49{letter-spacing:0.205256pt;}
.ls82{letter-spacing:0.207325pt;}
.lsf2{letter-spacing:0.217626pt;}
.ls53{letter-spacing:0.218400pt;}
.ls58{letter-spacing:0.220827pt;}
.ls23{letter-spacing:0.222449pt;}
.ls4b{letter-spacing:0.240000pt;}
.ls22{letter-spacing:0.242667pt;}
.ls26{letter-spacing:0.243200pt;}
.ls149{letter-spacing:0.249600pt;}
.ls11b{letter-spacing:0.260816pt;}
.lsed{letter-spacing:0.276789pt;}
.lsef{letter-spacing:0.276871pt;}
.lsee{letter-spacing:0.277359pt;}
.ls17e{letter-spacing:0.280000pt;}
.ls14e{letter-spacing:0.280800pt;}
.ls15{letter-spacing:0.283920pt;}
.ls5d{letter-spacing:0.286474pt;}
.ls11d{letter-spacing:0.288000pt;}
.ls6{letter-spacing:0.291200pt;}
.ls4a{letter-spacing:0.296704pt;}
.lscd{letter-spacing:0.297246pt;}
.lsb9{letter-spacing:0.304128pt;}
.ls6c{letter-spacing:0.307307pt;}
.ls12f{letter-spacing:0.309943pt;}
.ls80{letter-spacing:0.310987pt;}
.ls6a{letter-spacing:0.311578pt;}
.ls48{letter-spacing:0.315467pt;}
.ls66{letter-spacing:0.316787pt;}
.ls12d{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.334400pt;}
.ls45{letter-spacing:0.336000pt;}
.ls8e{letter-spacing:0.337920pt;}
.ls1f{letter-spacing:0.339733pt;}
.lsf9{letter-spacing:0.344064pt;}
.ls96{letter-spacing:0.347013pt;}
.ls16d{letter-spacing:0.360000pt;}
.lsb7{letter-spacing:0.371712pt;}
.ls14d{letter-spacing:0.374400pt;}
.ls109{letter-spacing:0.378560pt;}
.ls6e{letter-spacing:0.380095pt;}
.ls11c{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.388267pt;}
.ls3a{letter-spacing:0.395200pt;}
.ls179{letter-spacing:0.400000pt;}
.ls15b{letter-spacing:0.405600pt;}
.ls11f{letter-spacing:0.429762pt;}
.ls11e{letter-spacing:0.429925pt;}
.ls5a{letter-spacing:0.432000pt;}
.lsd{letter-spacing:0.436800pt;}
.ls188{letter-spacing:0.440000pt;}
.lsec{letter-spacing:0.441625pt;}
.ls95{letter-spacing:0.441653pt;}
.ls8d{letter-spacing:0.442368pt;}
.ls7f{letter-spacing:0.444711pt;}
.lsc6{letter-spacing:0.461545pt;}
.lsf8{letter-spacing:0.467219pt;}
.lsbb{letter-spacing:0.473088pt;}
.ls2e{letter-spacing:0.473200pt;}
.ls50{letter-spacing:0.480000pt;}
.ls156{letter-spacing:0.480480pt;}
.lsa{letter-spacing:0.485333pt;}
.ls93{letter-spacing:0.488676pt;}
.ls119{letter-spacing:0.504747pt;}
.ls182{letter-spacing:0.520000pt;}
.ls122{letter-spacing:0.528000pt;}
.ls18{letter-spacing:0.533867pt;}
.ls155{letter-spacing:0.540672pt;}
.ls5e{letter-spacing:0.548061pt;}
.ls8{letter-spacing:0.548843pt;}
.lsf{letter-spacing:0.567275pt;}
.ls14c{letter-spacing:0.576000pt;}
.ls144{letter-spacing:0.577671pt;}
.ls55{letter-spacing:0.582400pt;}
.lse7{letter-spacing:0.585600pt;}
.ls47{letter-spacing:0.599387pt;}
.ls180{letter-spacing:0.600000pt;}
.ls42{letter-spacing:0.608000pt;}
.lsd9{letter-spacing:0.619858pt;}
.ls15a{letter-spacing:0.624000pt;}
.lsdb{letter-spacing:0.630933pt;}
.lsfc{letter-spacing:0.638976pt;}
.ls17f{letter-spacing:0.640000pt;}
.ls114{letter-spacing:0.652800pt;}
.ls121{letter-spacing:0.672000pt;}
.ls162{letter-spacing:0.675840pt;}
.lsbd{letter-spacing:0.679467pt;}
.ls174{letter-spacing:0.680000pt;}
.ls92{letter-spacing:0.682678pt;}
.ls94{letter-spacing:0.700840pt;}
.ls17d{letter-spacing:0.720000pt;}
.lsc{letter-spacing:0.728000pt;}
.ls71{letter-spacing:0.768137pt;}
.ls9{letter-spacing:0.776533pt;}
.lsdc{letter-spacing:0.781387pt;}
.ls150{letter-spacing:0.816000pt;}
.ls7{letter-spacing:0.825067pt;}
.ls183{letter-spacing:0.840000pt;}
.ls189{letter-spacing:0.864000pt;}
.lsd8{letter-spacing:0.873600pt;}
.ls187{letter-spacing:0.880000pt;}
.ls35{letter-spacing:0.881600pt;}
.ls1b{letter-spacing:0.906667pt;}
.lsdd{letter-spacing:0.907547pt;}
.ls56{letter-spacing:0.922133pt;}
.ls133{letter-spacing:0.929830pt;}
.lsd7{letter-spacing:0.960016pt;}
.lsda{letter-spacing:0.970667pt;}
.ls102{letter-spacing:0.983040pt;}
.ls166{letter-spacing:1.000000pt;}
.ls157{letter-spacing:1.116267pt;}
.ls87{letter-spacing:1.209395pt;}
.ls16c{letter-spacing:1.280000pt;}
.lse5{letter-spacing:1.357448pt;}
.ls10e{letter-spacing:1.376256pt;}
.ls184{letter-spacing:1.600000pt;}
.ls86{letter-spacing:1.624044pt;}
.ls0{letter-spacing:2.304000pt;}
.ls1d{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls1c{letter-spacing:2.762667pt;}
.ls4d{letter-spacing:3.009067pt;}
.ls154{letter-spacing:3.225420pt;}
.ls185{letter-spacing:4.106667pt;}
.lsc5{letter-spacing:4.941458pt;}
.lsc7{letter-spacing:5.031713pt;}
.lscc{letter-spacing:5.054276pt;}
.ls14a{letter-spacing:5.440000pt;}
.ls9b{letter-spacing:6.120142pt;}
.ls9f{letter-spacing:6.120304pt;}
.ls9c{letter-spacing:6.141626pt;}
.lscb{letter-spacing:6.182463pt;}
.ls9a{letter-spacing:7.423141pt;}
.lsa6{letter-spacing:7.432894pt;}
.ls67{letter-spacing:9.586740pt;}
.ls6b{letter-spacing:9.591949pt;}
.ls164{letter-spacing:9.901056pt;}
.ls6d{letter-spacing:10.551777pt;}
.lsfb{letter-spacing:13.271039pt;}
.lsaf{letter-spacing:13.762559pt;}
.lse4{letter-spacing:16.220159pt;}
.ls10d{letter-spacing:16.465919pt;}
.lse0{letter-spacing:18.318260pt;}
.lsff{letter-spacing:18.382847pt;}
.lsad{letter-spacing:27.472896pt;}
.lsbc{letter-spacing:29.365248pt;}
.lsac{letter-spacing:31.064063pt;}
.lsa4{letter-spacing:33.596013pt;}
.ls10c{letter-spacing:35.241982pt;}
.lsd4{letter-spacing:39.223294pt;}
.ls15f{letter-spacing:40.108030pt;}
.lsc8{letter-spacing:40.317421pt;}
.lsae{letter-spacing:40.796158pt;}
.lsa1{letter-spacing:42.961348pt;}
.lse2{letter-spacing:46.940158pt;}
.lsd3{letter-spacing:56.967166pt;}
.lsab{letter-spacing:57.016318pt;}
.ls100{letter-spacing:66.011133pt;}
.ls10b{letter-spacing:66.551805pt;}
.ls103{letter-spacing:67.141629pt;}
.lsb0{letter-spacing:71.663613pt;}
.lsd0{letter-spacing:73.678845pt;}
.ls110{letter-spacing:73.875453pt;}
.lsc0{letter-spacing:77.912571pt;}
.lsfa{letter-spacing:88.621052pt;}
.ls113{letter-spacing:90.095612pt;}
.ls8c{letter-spacing:97.615863pt;}
.ls112{letter-spacing:124.452859pt;}
.ls105{letter-spacing:134.430709pt;}
.lsfe{letter-spacing:138.166266pt;}
.ls10a{letter-spacing:147.013626pt;}
.lse3{letter-spacing:149.176314pt;}
.ls163{letter-spacing:154.294272pt;}
.ls10f{letter-spacing:154.632192pt;}
.ls161{letter-spacing:155.814912pt;}
.ls106{letter-spacing:167.608313pt;}
.lsd6{letter-spacing:169.820153pt;}
.ls108{letter-spacing:183.779320pt;}
.ls165{letter-spacing:204.982272pt;}
.ls16e{letter-spacing:209.577984pt;}
.lsd5{letter-spacing:215.187447pt;}
.lsc4{letter-spacing:220.974804pt;}
.lsd1{letter-spacing:245.317615pt;}
.ls148{letter-spacing:250.531671pt;}
.lse1{letter-spacing:264.093678pt;}
.ls147{letter-spacing:275.415981pt;}
.ls8b{letter-spacing:292.012013pt;}
.ls8f{letter-spacing:302.573568pt;}
.ls91{letter-spacing:333.290485pt;}
.ls90{letter-spacing:353.261568pt;}
.lsd2{letter-spacing:366.378985pt;}
.ls120{letter-spacing:552.010667pt;}
.lsb3{letter-spacing:586.285031pt;}
.lsb2{letter-spacing:635.437029pt;}
.ls107{letter-spacing:792.723422pt;}
.ws11b{word-spacing:-792.723422pt;}
.wsdf{word-spacing:-635.437029pt;}
.wse0{word-spacing:-586.285031pt;}
.ws16e{word-spacing:-287.769263pt;}
.ws16f{word-spacing:-262.884954pt;}
.wsec{word-spacing:-220.974804pt;}
.ws1a2{word-spacing:-217.248768pt;}
.ws198{word-spacing:-212.653056pt;}
.ws11c{word-spacing:-183.779320pt;}
.ws11a{word-spacing:-167.608313pt;}
.ws18e{word-spacing:-163.485696pt;}
.ws190{word-spacing:-161.965056pt;}
.ws103{word-spacing:-158.269433pt;}
.ws11f{word-spacing:-154.632192pt;}
.wsf8{word-spacing:-149.323770pt;}
.ws10d{word-spacing:-135.610362pt;}
.ws10e{word-spacing:-101.253116pt;}
.wsf5{word-spacing:-99.778556pt;}
.wsc9{word-spacing:-84.185289pt;}
.wsb3{word-spacing:-82.821116pt;}
.ws100{word-spacing:-82.182138pt;}
.wsfe{word-spacing:-78.299133pt;}
.ws104{word-spacing:-77.807613pt;}
.ws121{word-spacing:-66.551805pt;}
.ws118{word-spacing:-66.011133pt;}
.wsae{word-spacing:-49.151998pt;}
.wsd2{word-spacing:-47.829648pt;}
.wse{word-spacing:-45.333333pt;}
.ws19d{word-spacing:-40.108030pt;}
.wsbf{word-spacing:-37.103616pt;}
.ws5{word-spacing:-37.013333pt;}
.wsdd{word-spacing:-31.064063pt;}
.ws107{word-spacing:-27.623423pt;}
.wsde{word-spacing:-27.472896pt;}
.ws18d{word-spacing:-24.428543pt;}
.ws193{word-spacing:-17.571840pt;}
.ws165{word-spacing:-14.453331pt;}
.ws167{word-spacing:-13.829446pt;}
.ws169{word-spacing:-13.777456pt;}
.ws3{word-spacing:-13.393333pt;}
.ws2b{word-spacing:-13.066667pt;}
.ws16a{word-spacing:-12.930954pt;}
.ws16d{word-spacing:-12.353282pt;}
.ws111{word-spacing:-12.287999pt;}
.ws64{word-spacing:-12.133333pt;}
.ws1a6{word-spacing:-12.085333pt;}
.ws82{word-spacing:-12.007195pt;}
.ws60{word-spacing:-12.000000pt;}
.ws16c{word-spacing:-11.908919pt;}
.ws10c{word-spacing:-11.796479pt;}
.ws150{word-spacing:-11.700366pt;}
.ws8f{word-spacing:-11.683769pt;}
.ws114{word-spacing:-11.550933pt;}
.ws65{word-spacing:-11.453867pt;}
.ws176{word-spacing:-11.376000pt;}
.ws81{word-spacing:-11.360343pt;}
.ws83{word-spacing:-11.319914pt;}
.ws85{word-spacing:-11.279486pt;}
.ws30{word-spacing:-11.259733pt;}
.ws105{word-spacing:-11.255808pt;}
.ws89{word-spacing:-11.239058pt;}
.ws97{word-spacing:-11.230093pt;}
.ws102{word-spacing:-11.211200pt;}
.ws9a{word-spacing:-11.117773pt;}
.ws63{word-spacing:-11.114133pt;}
.ws158{word-spacing:-11.080479pt;}
.ws84{word-spacing:-11.077345pt;}
.ws196{word-spacing:-11.065600pt;}
.wsb4{word-spacing:-11.059200pt;}
.ws61{word-spacing:-11.017067pt;}
.wsfb{word-spacing:-11.010048pt;}
.ws187{word-spacing:-10.999296pt;}
.ws18a{word-spacing:-10.992000pt;}
.ws6{word-spacing:-10.986667pt;}
.wsc2{word-spacing:-10.920000pt;}
.ws188{word-spacing:-10.904064pt;}
.ws68{word-spacing:-10.896000pt;}
.ws157{word-spacing:-10.886764pt;}
.ws95{word-spacing:-10.875204pt;}
.ws154{word-spacing:-10.848021pt;}
.ws67{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws99{word-spacing:-10.815444pt;}
.ws159{word-spacing:-10.809278pt;}
.ws14f{word-spacing:-10.770535pt;}
.ws10b{word-spacing:-10.764288pt;}
.ws155{word-spacing:-10.731792pt;}
.ws151{word-spacing:-10.654306pt;}
.wsfd{word-spacing:-10.616832pt;}
.ws15a{word-spacing:-10.615564pt;}
.ws18b{word-spacing:-10.512000pt;}
.ws88{word-spacing:-10.430493pt;}
.ws153{word-spacing:-10.421849pt;}
.ws1fb{word-spacing:-10.416000pt;}
.ws2c{word-spacing:-10.094933pt;}
.ws1da{word-spacing:-9.920000pt;}
.ws91{word-spacing:-9.917036pt;}
.ws7{word-spacing:-9.888000pt;}
.ws34{word-spacing:-9.852336pt;}
.ws94{word-spacing:-9.813374pt;}
.ws1dd{word-spacing:-9.800000pt;}
.ws8b{word-spacing:-9.778820pt;}
.ws31{word-spacing:-9.745632pt;}
.ws8d{word-spacing:-9.675157pt;}
.ws90{word-spacing:-9.659798pt;}
.ws8c{word-spacing:-9.640603pt;}
.ws87{word-spacing:-9.606049pt;}
.ws1ee{word-spacing:-9.600000pt;}
.ws9b{word-spacing:-9.536941pt;}
.ws1d9{word-spacing:-9.480000pt;}
.ws152{word-spacing:-9.453276pt;}
.ws1e9{word-spacing:-9.440000pt;}
.ws36{word-spacing:-9.332800pt;}
.ws1ac{word-spacing:-9.320000pt;}
.ws8e{word-spacing:-9.295062pt;}
.ws1af{word-spacing:-9.280000pt;}
.ws1ad{word-spacing:-9.240000pt;}
.ws1ae{word-spacing:-9.200000pt;}
.ws1a9{word-spacing:-9.160000pt;}
.ws1ab{word-spacing:-9.120000pt;}
.ws1a8{word-spacing:-9.080000pt;}
.ws43{word-spacing:-9.059200pt;}
.ws1dc{word-spacing:-9.040000pt;}
.ws1c5{word-spacing:-9.000000pt;}
.ws1b0{word-spacing:-8.960000pt;}
.ws1db{word-spacing:-8.920000pt;}
.ws1aa{word-spacing:-8.880000pt;}
.ws3b{word-spacing:-8.846400pt;}
.ws1c9{word-spacing:-8.840000pt;}
.ws1cb{word-spacing:-8.800000pt;}
.ws1{word-spacing:-8.789333pt;}
.ws3d{word-spacing:-8.785600pt;}
.ws1c3{word-spacing:-8.760000pt;}
.ws1c8{word-spacing:-8.720000pt;}
.ws1a7{word-spacing:-8.680000pt;}
.ws134{word-spacing:-8.661333pt;}
.ws1c2{word-spacing:-8.600000pt;}
.ws3f{word-spacing:-8.572800pt;}
.ws86{word-spacing:-8.569425pt;}
.ws1e7{word-spacing:-8.560000pt;}
.ws2{word-spacing:-8.533333pt;}
.ws35{word-spacing:-8.512000pt;}
.ws3c{word-spacing:-8.498563pt;}
.ws3a{word-spacing:-8.481600pt;}
.ws1ed{word-spacing:-8.480000pt;}
.ws13e{word-spacing:-8.474667pt;}
.ws45{word-spacing:-8.451200pt;}
.ws38{word-spacing:-8.360000pt;}
.wsbe{word-spacing:-8.211456pt;}
.ws3e{word-spacing:-8.177600pt;}
.ws13c{word-spacing:-8.176000pt;}
.ws41{word-spacing:-8.147200pt;}
.wsb9{word-spacing:-8.110080pt;}
.ws12e{word-spacing:-8.101333pt;}
.wsb7{word-spacing:-8.076288pt;}
.wsbb{word-spacing:-8.042496pt;}
.ws136{word-spacing:-8.026667pt;}
.ws8a{word-spacing:-8.004797pt;}
.ws42{word-spacing:-7.980730pt;}
.ws39{word-spacing:-7.964800pt;}
.wsbc{word-spacing:-7.941120pt;}
.ws40{word-spacing:-7.889347pt;}
.ws80{word-spacing:-7.886667pt;}
.wsda{word-spacing:-7.809474pt;}
.wsbd{word-spacing:-7.805952pt;}
.ws44{word-spacing:-7.782400pt;}
.ws130{word-spacing:-7.765333pt;}
.ws62{word-spacing:-7.760480pt;}
.wsb8{word-spacing:-7.738368pt;}
.wsba{word-spacing:-7.670784pt;}
.wsc0{word-spacing:-7.665840pt;}
.ws2f{word-spacing:-7.634293pt;}
.ws140{word-spacing:-7.616000pt;}
.ws109{word-spacing:-7.603200pt;}
.wsc1{word-spacing:-7.571200pt;}
.ws139{word-spacing:-7.541333pt;}
.ws101{word-spacing:-7.539653pt;}
.wsc5{word-spacing:-7.519641pt;}
.wsd9{word-spacing:-7.512227pt;}
.ws186{word-spacing:-7.488000pt;}
.wsb6{word-spacing:-7.468032pt;}
.ws177{word-spacing:-7.456800pt;}
.wsb{word-spacing:-7.445013pt;}
.wscc{word-spacing:-7.431160pt;}
.ws66{word-spacing:-7.381920pt;}
.wsb5{word-spacing:-7.366656pt;}
.ws178{word-spacing:-7.363200pt;}
.ws9{word-spacing:-7.350373pt;}
.ws32{word-spacing:-7.327008pt;}
.ws5f{word-spacing:-7.300800pt;}
.wsa{word-spacing:-7.287280pt;}
.ws185{word-spacing:-7.269600pt;}
.wsc{word-spacing:-7.255733pt;}
.ws113{word-spacing:-7.238400pt;}
.ws2d{word-spacing:-7.224187pt;}
.wsdb{word-spacing:-7.187958pt;}
.ws33{word-spacing:-7.184736pt;}
.ws156{word-spacing:-7.180406pt;}
.ws8{word-spacing:-7.161093pt;}
.ws1a5{word-spacing:-7.144800pt;}
.ws4{word-spacing:-7.141333pt;}
.ws5d{word-spacing:-7.113600pt;}
.ws189{word-spacing:-7.096320pt;}
.wsdc{word-spacing:-7.082400pt;}
.ws14e{word-spacing:-7.066453pt;}
.ws115{word-spacing:-7.003360pt;}
.ws112{word-spacing:-6.957600pt;}
.ws5e{word-spacing:-6.926400pt;}
.ws92{word-spacing:-6.343355pt;}
.wsc7{word-spacing:-6.317845pt;}
.wsc6{word-spacing:-6.272718pt;}
.wscb{word-spacing:-6.025995pt;}
.wsd{word-spacing:-5.893333pt;}
.ws37{word-spacing:-5.662304pt;}
.ws17a{word-spacing:-5.440000pt;}
.ws13d{word-spacing:-5.265867pt;}
.ws142{word-spacing:-5.221333pt;}
.wsd3{word-spacing:-5.054276pt;}
.wsed{word-spacing:-5.031713pt;}
.ws15{word-spacing:-4.746667pt;}
.ws1de{word-spacing:-4.106667pt;}
.ws12{word-spacing:-3.413333pt;}
.ws14{word-spacing:-3.200000pt;}
.ws2e{word-spacing:-2.928000pt;}
.ws11{word-spacing:-2.912000pt;}
.ws2a{word-spacing:-2.762667pt;}
.ws78{word-spacing:-1.941333pt;}
.ws77{word-spacing:-1.747200pt;}
.ws4d{word-spacing:-1.698667pt;}
.ws149{word-spacing:-1.680000pt;}
.ws79{word-spacing:-1.653333pt;}
.ws17{word-spacing:-1.650133pt;}
.ws50{word-spacing:-1.632000pt;}
.wse8{word-spacing:-1.601600pt;}
.ws1f9{word-spacing:-1.600000pt;}
.ws1fa{word-spacing:-1.584000pt;}
.ws1f1{word-spacing:-1.560000pt;}
.ws129{word-spacing:-1.553067pt;}
.ws17c{word-spacing:-1.546667pt;}
.ws124{word-spacing:-1.536000pt;}
.ws9d{word-spacing:-1.504533pt;}
.ws1b2{word-spacing:-1.488000pt;}
.ws19c{word-spacing:-1.440000pt;}
.ws1d0{word-spacing:-1.400000pt;}
.ws1b4{word-spacing:-1.360000pt;}
.ws6f{word-spacing:-1.344000pt;}
.ws24{word-spacing:-1.310400pt;}
.ws1e8{word-spacing:-1.280000pt;}
.ws20{word-spacing:-1.261867pt;}
.ws1b1{word-spacing:-1.248000pt;}
.ws12a{word-spacing:-1.232000pt;}
.ws7c{word-spacing:-1.213333pt;}
.ws1f8{word-spacing:-1.200000pt;}
.ws4c{word-spacing:-1.164800pt;}
.ws1d7{word-spacing:-1.160000pt;}
.ws1b3{word-spacing:-1.133333pt;}
.ws13{word-spacing:-1.120000pt;}
.ws18{word-spacing:-1.116267pt;}
.ws51{word-spacing:-1.104000pt;}
.ws1b5{word-spacing:-1.080000pt;}
.ws5c{word-spacing:-1.056000pt;}
.ws69{word-spacing:-1.019200pt;}
.ws16{word-spacing:-1.008000pt;}
.ws1d8{word-spacing:-1.000000pt;}
.ws21{word-spacing:-0.970667pt;}
.ws1e6{word-spacing:-0.960000pt;}
.ws128{word-spacing:-0.922133pt;}
.ws1b6{word-spacing:-0.920000pt;}
.ws17f{word-spacing:-0.912000pt;}
.ws29{word-spacing:-0.906667pt;}
.ws1e0{word-spacing:-0.880000pt;}
.ws11d{word-spacing:-0.873600pt;}
.ws19a{word-spacing:-0.864000pt;}
.ws14c{word-spacing:-0.858667pt;}
.ws10{word-spacing:-0.853333pt;}
.ws6a{word-spacing:-0.825067pt;}
.ws14b{word-spacing:-0.821333pt;}
.ws182{word-spacing:-0.816000pt;}
.ws14a{word-spacing:-0.776533pt;}
.ws19b{word-spacing:-0.768000pt;}
.ws1c1{word-spacing:-0.760000pt;}
.ws1d6{word-spacing:-0.720000pt;}
.ws1f5{word-spacing:-0.680000pt;}
.wse4{word-spacing:-0.679467pt;}
.ws19e{word-spacing:-0.675840pt;}
.wsf2{word-spacing:-0.672000pt;}
.ws122{word-spacing:-0.652800pt;}
.ws1d5{word-spacing:-0.640000pt;}
.ws127{word-spacing:-0.630933pt;}
.ws144{word-spacing:-0.624000pt;}
.ws1d4{word-spacing:-0.600000pt;}
.ws72{word-spacing:-0.599387pt;}
.ws143{word-spacing:-0.586667pt;}
.ws22{word-spacing:-0.582400pt;}
.ws6e{word-spacing:-0.576000pt;}
.ws1b9{word-spacing:-0.560000pt;}
.ws19{word-spacing:-0.533867pt;}
.ws4f{word-spacing:-0.528000pt;}
.ws1cf{word-spacing:-0.520000pt;}
.ws74{word-spacing:-0.485333pt;}
.ws1bb{word-spacing:-0.480000pt;}
.ws28{word-spacing:-0.453333pt;}
.ws16b{word-spacing:-0.444363pt;}
.ws1b7{word-spacing:-0.440000pt;}
.ws76{word-spacing:-0.436800pt;}
.ws7b{word-spacing:-0.432000pt;}
.ws1cd{word-spacing:-0.400000pt;}
.ws1b{word-spacing:-0.388267pt;}
.ws146{word-spacing:-0.384000pt;}
.ws168{word-spacing:-0.363933pt;}
.ws1e4{word-spacing:-0.360000pt;}
.ws116{word-spacing:-0.344064pt;}
.ws4e{word-spacing:-0.339733pt;}
.ws199{word-spacing:-0.336000pt;}
.ws1ec{word-spacing:-0.320000pt;}
.wse2{word-spacing:-0.304128pt;}
.ws1a{word-spacing:-0.291200pt;}
.ws17e{word-spacing:-0.280800pt;}
.ws1bd{word-spacing:-0.280000pt;}
.ws58{word-spacing:-0.243200pt;}
.ws4b{word-spacing:-0.242667pt;}
.ws70{word-spacing:-0.240000pt;}
.ws126{word-spacing:-0.220827pt;}
.ws15e{word-spacing:-0.213333pt;}
.wse1{word-spacing:-0.202752pt;}
.ws1ce{word-spacing:-0.200000pt;}
.ws75{word-spacing:-0.194133pt;}
.wsf0{word-spacing:-0.164971pt;}
.ws1c4{word-spacing:-0.160000pt;}
.ws172{word-spacing:-0.155971pt;}
.ws23{word-spacing:-0.145600pt;}
.wsa3{word-spacing:-0.138217pt;}
.ws48{word-spacing:-0.126187pt;}
.wsa8{word-spacing:-0.121285pt;}
.ws1ba{word-spacing:-0.120000pt;}
.ws164{word-spacing:-0.116229pt;}
.ws17d{word-spacing:-0.106667pt;}
.wsa1{word-spacing:-0.103662pt;}
.ws7e{word-spacing:-0.097067pt;}
.ws7a{word-spacing:-0.096000pt;}
.ws26{word-spacing:-0.094640pt;}
.ws160{word-spacing:-0.077486pt;}
.wsa0{word-spacing:-0.069108pt;}
.ws55{word-spacing:-0.060800pt;}
.wsf1{word-spacing:-0.054045pt;}
.ws49{word-spacing:-0.048533pt;}
.ws125{word-spacing:-0.048000pt;}
.wsea{word-spacing:-0.045127pt;}
.ws175{word-spacing:-0.044436pt;}
.ws1be{word-spacing:-0.040000pt;}
.wsa7{word-spacing:-0.034554pt;}
.ws120{word-spacing:-0.033792pt;}
.ws6d{word-spacing:-0.031200pt;}
.ws5b{word-spacing:-0.030400pt;}
.wseb{word-spacing:-0.027022pt;}
.wsd0{word-spacing:-0.016484pt;}
.wsf{word-spacing:0.000000pt;}
.wsef{word-spacing:0.022564pt;}
.wsee{word-spacing:0.027022pt;}
.ws57{word-spacing:0.030400pt;}
.wsc4{word-spacing:0.033778pt;}
.wsa5{word-spacing:0.034554pt;}
.ws162{word-spacing:0.038743pt;}
.ws1cc{word-spacing:0.040000pt;}
.ws9e{word-spacing:0.040428pt;}
.ws173{word-spacing:0.044436pt;}
.ws4a{word-spacing:0.048533pt;}
.ws171{word-spacing:0.051990pt;}
.ws6b{word-spacing:0.053333pt;}
.ws184{word-spacing:0.064224pt;}
.wse3{word-spacing:0.067584pt;}
.wsa4{word-spacing:0.069108pt;}
.wsab{word-spacing:0.069246pt;}
.ws54{word-spacing:0.071136pt;}
.ws163{word-spacing:0.077486pt;}
.ws1e3{word-spacing:0.080000pt;}
.wsa2{word-spacing:0.080857pt;}
.wse9{word-spacing:0.097067pt;}
.ws119{word-spacing:0.098304pt;}
.ws166{word-spacing:0.103981pt;}
.ws123{word-spacing:0.106667pt;}
.ws1c7{word-spacing:0.120000pt;}
.ws59{word-spacing:0.121843pt;}
.ws174{word-spacing:0.133309pt;}
.ws6c{word-spacing:0.144000pt;}
.ws1e{word-spacing:0.145600pt;}
.ws161{word-spacing:0.154972pt;}
.ws1ca{word-spacing:0.160000pt;}
.ws181{word-spacing:0.192000pt;}
.ws7f{word-spacing:0.194133pt;}
.wsaa{word-spacing:0.202485pt;}
.ws1c0{word-spacing:0.240000pt;}
.ws25{word-spacing:0.242667pt;}
.ws56{word-spacing:0.273600pt;}
.ws12c{word-spacing:0.291200pt;}
.ws179{word-spacing:0.299712pt;}
.ws15f{word-spacing:0.309943pt;}
.ws15c{word-spacing:0.339733pt;}
.ws1e5{word-spacing:0.360000pt;}
.ws5a{word-spacing:0.364800pt;}
.ws145{word-spacing:0.384000pt;}
.ws71{word-spacing:0.388267pt;}
.ws1e2{word-spacing:0.400000pt;}
.ws1fe{word-spacing:0.432000pt;}
.ws9c{word-spacing:0.436800pt;}
.wsa6{word-spacing:0.449204pt;}
.ws9f{word-spacing:0.485139pt;}
.ws15d{word-spacing:0.485333pt;}
.ws117{word-spacing:0.540672pt;}
.ws1c6{word-spacing:0.560000pt;}
.ws147{word-spacing:0.576000pt;}
.ws17b{word-spacing:0.582400pt;}
.wse6{word-spacing:0.630933pt;}
.ws1d3{word-spacing:0.640000pt;}
.ws52{word-spacing:0.679467pt;}
.ws1df{word-spacing:0.680000pt;}
.ws53{word-spacing:0.711360pt;}
.ws1f{word-spacing:0.728000pt;}
.ws1bc{word-spacing:0.760000pt;}
.ws1d{word-spacing:0.776533pt;}
.ws12b{word-spacing:0.825067pt;}
.ws1e1{word-spacing:0.840000pt;}
.ws1f3{word-spacing:0.880000pt;}
.ws1d2{word-spacing:0.920000pt;}
.wsa9{word-spacing:0.932962pt;}
.ws183{word-spacing:0.960000pt;}
.ws148{word-spacing:1.008000pt;}
.ws1c{word-spacing:1.019200pt;}
.ws1fc{word-spacing:1.056000pt;}
.wse5{word-spacing:1.067733pt;}
.ws1fd{word-spacing:1.104000pt;}
.ws11e{word-spacing:1.116267pt;}
.ws1f7{word-spacing:1.120000pt;}
.ws1f6{word-spacing:1.160000pt;}
.ws1eb{word-spacing:1.200000pt;}
.ws73{word-spacing:1.213333pt;}
.ws1f2{word-spacing:1.240000pt;}
.ws27{word-spacing:1.269333pt;}
.ws98{word-spacing:1.278503pt;}
.ws1bf{word-spacing:1.280000pt;}
.wse7{word-spacing:1.310400pt;}
.ws1f4{word-spacing:1.360000pt;}
.ws1d1{word-spacing:1.400000pt;}
.ws1b8{word-spacing:1.600000pt;}
.ws1f0{word-spacing:1.640000pt;}
.ws19f{word-spacing:1.650133pt;}
.ws1ea{word-spacing:1.680000pt;}
.ws180{word-spacing:2.016000pt;}
.ws1ef{word-spacing:2.040000pt;}
.ws96{word-spacing:2.280573pt;}
.ws1a0{word-spacing:2.766400pt;}
.ws15b{word-spacing:2.983206pt;}
.ws14d{word-spacing:3.264000pt;}
.wsfc{word-spacing:3.293184pt;}
.ws7d{word-spacing:6.357867pt;}
.wsd4{word-spacing:6.825504pt;}
.wscf{word-spacing:7.535345pt;}
.wsd6{word-spacing:17.270859pt;}
.wsd1{word-spacing:18.662641pt;}
.wsd7{word-spacing:19.168363pt;}
.wsc3{word-spacing:24.217103pt;}
.wsce{word-spacing:25.415622pt;}
.wsb2{word-spacing:33.472511pt;}
.wsd8{word-spacing:34.318448pt;}
.wscd{word-spacing:50.023794pt;}
.ws106{word-spacing:56.475639pt;}
.ws13f{word-spacing:62.186133pt;}
.ws18f{word-spacing:77.217784pt;}
.ws10a{word-spacing:78.200829pt;}
.ws18c{word-spacing:78.790653pt;}
.wsd5{word-spacing:81.517947pt;}
.ws133{word-spacing:84.037333pt;}
.ws13b{word-spacing:88.293325pt;}
.ws191{word-spacing:95.649783pt;}
.ws194{word-spacing:97.222652pt;}
.ws131{word-spacing:114.725325pt;}
.ws93{word-spacing:119.303970pt;}
.ws138{word-spacing:122.677325pt;}
.ws1a1{word-spacing:129.466362pt;}
.ws137{word-spacing:130.144000pt;}
.ws197{word-spacing:130.990074pt;}
.wsfa{word-spacing:131.235834pt;}
.ws1a3{word-spacing:132.513786pt;}
.ws132{word-spacing:132.645325pt;}
.wsf7{word-spacing:137.379834pt;}
.ws192{word-spacing:143.717376pt;}
.ws195{word-spacing:148.313088pt;}
.ws12f{word-spacing:150.565325pt;}
.ws141{word-spacing:160.234667pt;}
.ws135{word-spacing:167.813333pt;}
.ws10f{word-spacing:169.433088pt;}
.wsf9{word-spacing:169.623545pt;}
.ws1a4{word-spacing:180.584448pt;}
.ws110{word-spacing:186.322881pt;}
.wsc8{word-spacing:210.339113pt;}
.wsf4{word-spacing:213.417965pt;}
.wsca{word-spacing:233.218748pt;}
.wsb0{word-spacing:244.973551pt;}
.wsaf{word-spacing:253.181928pt;}
.ws12d{word-spacing:267.269333pt;}
.wsb1{word-spacing:297.172979pt;}
.wsac{word-spacing:314.671077pt;}
.ws46{word-spacing:323.823449pt;}
.wsad{word-spacing:366.870512pt;}
.wsf3{word-spacing:376.258544pt;}
.ws13a{word-spacing:545.216000pt;}
.wsf6{word-spacing:608.403430pt;}
.ws108{word-spacing:701.399010pt;}
.wsff{word-spacing:734.671872pt;}
.ws170{word-spacing:880.904550pt;}
.ws47{word-spacing:1245.722089pt;}
._19{margin-left:-1351.827398pt;}
._18{margin-left:-956.613627pt;}
._13{margin-left:-946.183113pt;}
._4c{margin-left:-841.806440pt;}
._20{margin-left:-577.451063pt;}
._4e{margin-left:-274.616128pt;}
._50{margin-left:-249.687382pt;}
._56{margin-left:-199.676928pt;}
._55{margin-left:-195.115013pt;}
._52{margin-left:-145.913861pt;}
._53{margin-left:-144.427013pt;}
._27{margin-left:-140.980213pt;}
._25{margin-left:-138.706938pt;}
._26{margin-left:-89.112572pt;}
._29{margin-left:-86.753276pt;}
._1f{margin-left:-78.115645pt;}
._1a{margin-left:-72.007677pt;}
._14{margin-left:-69.617474pt;}
._17{margin-left:-60.642399pt;}
._16{margin-left:-58.216703pt;}
._11{margin-left:-56.154861pt;}
._10{margin-left:-53.729165pt;}
._f{margin-left:-51.505611pt;}
._15{margin-left:-49.079915pt;}
._12{margin-left:-40.387838pt;}
._24{margin-left:-22.609919pt;}
._28{margin-left:-17.461247pt;}
._51{margin-left:-13.811711pt;}
._d{margin-left:-11.375204pt;}
._5b{margin-left:-9.880000pt;}
._5{margin-left:-8.764336pt;}
._4d{margin-left:-7.239067pt;}
._9{margin-left:-5.445040pt;}
._8{margin-left:-3.744000pt;}
._3{margin-left:-2.781196pt;}
._1{margin-left:-1.601733pt;}
._0{width:1.536000pt;}
._2{width:2.598531pt;}
._6{width:3.890205pt;}
._45{width:4.987590pt;}
._a{width:7.387190pt;}
._59{width:9.160000pt;}
._58{width:10.960000pt;}
._57{width:12.040000pt;}
._b{width:13.824000pt;}
._5a{width:15.520000pt;}
._23{width:29.079635pt;}
._1e{width:36.446197pt;}
._7{width:37.627885pt;}
._4{width:38.808546pt;}
._1c{width:40.972417pt;}
._c{width:42.365826pt;}
._e{width:44.479488pt;}
._1b{width:59.305552pt;}
._22{width:60.497405pt;}
._4b{width:77.201733pt;}
._1d{width:81.136212pt;}
._21{width:86.780118pt;}
._44{width:111.742267pt;}
._38{width:122.561725pt;}
._2f{width:128.352000pt;}
._47{width:132.309333pt;}
._54{width:140.489560pt;}
._31{width:151.050667pt;}
._34{width:159.562667pt;}
._48{width:160.458667pt;}
._4a{width:167.134133pt;}
._2c{width:168.970667pt;}
._40{width:174.707467pt;}
._37{width:177.482667pt;}
._3d{width:183.713733pt;}
._49{width:184.908400pt;}
._35{width:195.925333pt;}
._42{width:203.877333pt;}
._2d{width:205.333333pt;}
._32{width:213.845333pt;}
._3a{width:231.242667pt;}
._41{width:262.449733pt;}
._2b{width:274.209733pt;}
._2e{width:276.826667pt;}
._3c{width:279.992800pt;}
._3e{width:285.294133pt;}
._36{width:294.407067pt;}
._39{width:326.256000pt;}
._3f{width:329.425733pt;}
._43{width:355.032800pt;}
._30{width:361.946667pt;}
._46{width:366.052772pt;}
._33{width:378.821333pt;}
._3b{width:413.761733pt;}
._2a{width:468.048000pt;}
._4f{width:746.353533pt;}
.fs1f{font-size:14.997333pt;}
.fs23{font-size:16.483733pt;}
.fs24{font-size:17.969599pt;}
.fs1d{font-size:17.996800pt;}
.fs10{font-size:20.368000pt;}
.fs2c{font-size:21.408000pt;}
.fs1e{font-size:22.563733pt;}
.fs22{font-size:22.590400pt;}
.fs15{font-size:23.150932pt;}
.fs27{font-size:24.266667pt;}
.fs29{font-size:25.828799pt;}
.fs25{font-size:26.112000pt;}
.fs17{font-size:26.952000pt;}
.fs20{font-size:27.022400pt;}
.fs1c{font-size:27.049067pt;}
.fsa{font-size:29.466667pt;}
.fsf{font-size:30.399999pt;}
.fs11{font-size:30.460800pt;}
.fs6{font-size:31.200000pt;}
.fs9{font-size:31.546667pt;}
.fs1b{font-size:33.777600pt;}
.fs1a{font-size:33.792000pt;}
.fs13{font-size:34.554133pt;}
.fs16{font-size:34.622932pt;}
.fs4{font-size:34.666667pt;}
.fse{font-size:35.568000pt;}
.fs26{font-size:37.333333pt;}
.fs28{font-size:38.742933pt;}
.fs2e{font-size:40.000000pt;}
.fs12{font-size:40.428266pt;}
.fs18{font-size:40.497067pt;}
.fs1{font-size:42.666667pt;}
.fs2b{font-size:44.436267pt;}
.fsb{font-size:45.333333pt;}
.fs2d{font-size:47.616000pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:48.533333pt;}
.fs19{font-size:49.151998pt;}
.fs14{font-size:51.830933pt;}
.fs2a{font-size:51.990400pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fs7{font-size:58.666667pt;}
.fs21{font-size:67.555733pt;}
.fsc{font-size:74.666667pt;}
.fsd{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y260{bottom:1.535461pt;}
.y27b{bottom:1.535604pt;}
.y26e{bottom:1.536001pt;}
.y285{bottom:1.536214pt;}
.y269{bottom:1.536397pt;}
.y62{bottom:2.466512pt;}
.y12f{bottom:2.687337pt;}
.ye4{bottom:2.688538pt;}
.ye7{bottom:3.456543pt;}
.y253{bottom:4.224284pt;}
.y125{bottom:4.607340pt;}
.y25e{bottom:4.607462pt;}
.y279{bottom:4.607600pt;}
.y26f{bottom:4.608002pt;}
.y267{bottom:4.608398pt;}
.yef{bottom:4.608541pt;}
.y14c{bottom:4.991293pt;}
.y147{bottom:7.679362pt;}
.y25f{bottom:11.903462pt;}
.y26d{bottom:11.904012pt;}
.y268{bottom:11.904399pt;}
.y149{bottom:13.053033pt;}
.y252{bottom:14.208293pt;}
.y27d{bottom:14.975469pt;}
.y287{bottom:14.976237pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175867pt;}
.y150{bottom:28.799317pt;}
.ydf{bottom:34.944539pt;}
.y134{bottom:44.927327pt;}
.y129{bottom:47.231364pt;}
.y30{bottom:60.718132pt;}
.ya8{bottom:60.928529pt;}
.y187{bottom:60.932133pt;}
.y1dd{bottom:60.934667pt;}
.y2d2{bottom:61.126683pt;}
.y278{bottom:61.762665pt;}
.y230{bottom:64.782136pt;}
.y27c{bottom:66.370265pt;}
.y56{bottom:66.479330pt;}
.y27e{bottom:66.651067pt;}
.y277{bottom:66.655069pt;}
.y19c{bottom:71.153467pt;}
.y320{bottom:71.153597pt;}
.y27a{bottom:71.746267pt;}
.y2d1{bottom:72.456683pt;}
.ya7{bottom:74.263063pt;}
.y186{bottom:74.266667pt;}
.yaf{bottom:75.815064pt;}
.y2f{bottom:77.899465pt;}
.y22f{bottom:78.119469pt;}
.y55{bottom:79.813864pt;}
.y1fd{bottom:80.480530pt;}
.y2d0{bottom:83.786683pt;}
.y19b{bottom:84.484396pt;}
.y31f{bottom:84.485597pt;}
.y276{bottom:84.539602pt;}
.ya6{bottom:87.597596pt;}
.yae{bottom:89.148397pt;}
.y2e{bottom:91.232798pt;}
.y22e{bottom:91.451469pt;}
.y54{bottom:93.148397pt;}
.y1fc{bottom:93.815064pt;}
.y2cf{bottom:95.116683pt;}
.y31e{bottom:97.817597pt;}
.y19a{bottom:97.818929pt;}
.y275{bottom:97.874135pt;}
.yff{bottom:98.787467pt;}
.y1dc{bottom:100.892671pt;}
.ya5{bottom:100.932129pt;}
.yad{bottom:102.479330pt;}
.y22d{bottom:104.783469pt;}
.y2ce{bottom:106.446683pt;}
.y53{bottom:106.481730pt;}
.y1fb{bottom:107.149597pt;}
.y31d{bottom:111.149597pt;}
.y199{bottom:111.152263pt;}
.y274{bottom:111.202669pt;}
.yfe{bottom:112.122000pt;}
.y1db{bottom:114.227205pt;}
.y185{bottom:114.265463pt;}
.ya4{bottom:114.266663pt;}
.yac{bottom:115.813864pt;}
.y2cd{bottom:117.776683pt;}
.y22c{bottom:118.115469pt;}
.y52{bottom:119.815064pt;}
.y1fa{bottom:120.479330pt;}
.y2d{bottom:121.938000pt;}
.y31c{bottom:124.482930pt;}
.y198{bottom:124.483196pt;}
.y273{bottom:124.537202pt;}
.yfd{bottom:125.456533pt;}
.y1da{bottom:127.561738pt;}
.ya3{bottom:127.598796pt;}
.y2cc{bottom:129.106683pt;}
.yab{bottom:129.148397pt;}
.y22b{bottom:131.452802pt;}
.y51{bottom:133.149597pt;}
.y1f9{bottom:133.813864pt;}
.y2c{bottom:135.272533pt;}
.y197{bottom:137.817729pt;}
.y272{bottom:137.871735pt;}
.yfc{bottom:138.791067pt;}
.y2cb{bottom:140.436683pt;}
.y1d9{bottom:140.896271pt;}
.ya2{bottom:140.929729pt;}
.y184{bottom:140.933329pt;}
.yaa{bottom:142.481730pt;}
.y22a{bottom:144.784802pt;}
.y1f8{bottom:147.148397pt;}
.y2b{bottom:148.607066pt;}
.y196{bottom:151.152263pt;}
.y271{bottom:151.206269pt;}
.y2ca{bottom:151.766683pt;}
.yfb{bottom:152.121990pt;}
.y31b{bottom:154.056243pt;}
.y1d8{bottom:154.230805pt;}
.ya1{bottom:154.264263pt;}
.y183{bottom:154.266663pt;}
.ya9{bottom:155.816264pt;}
.y26c{bottom:159.651998pt;}
.y1f7{bottom:160.475731pt;}
.y50{bottom:160.488264pt;}
.y2a{bottom:161.941600pt;}
.y2c9{bottom:163.096683pt;}
.y195{bottom:164.486796pt;}
.y270{bottom:164.540802pt;}
.y26b{bottom:164.543741pt;}
.y31a{bottom:165.386243pt;}
.yfa{bottom:165.456523pt;}
.y1d7{bottom:167.565338pt;}
.ya0{bottom:167.598796pt;}
.y229{bottom:172.120802pt;}
.y1f6{bottom:173.810264pt;}
.y4f{bottom:173.820264pt;}
.y2c8{bottom:174.426683pt;}
.y266{bottom:174.469340pt;}
.y29{bottom:175.274943pt;}
.y319{bottom:176.716243pt;}
.yf9{bottom:178.791057pt;}
.y265{bottom:179.357992pt;}
.y26a{bottom:179.358541pt;}
.y1d6{bottom:180.897461pt;}
.y9f{bottom:180.932129pt;}
.y182{bottom:180.933329pt;}
.y228{bottom:185.452802pt;}
.y2c7{bottom:185.756683pt;}
.y1f5{bottom:187.144797pt;}
.y4e{bottom:187.152264pt;}
.y318{bottom:188.046243pt;}
.y28{bottom:188.604676pt;}
.yf8{bottom:192.121990pt;}
.y264{bottom:194.172792pt;}
.y1d5{bottom:194.231995pt;}
.y9e{bottom:194.266663pt;}
.y194{bottom:196.828129pt;}
.y2c6{bottom:197.086683pt;}
.y227{bottom:198.784802pt;}
.y317{bottom:199.376243pt;}
.y1f4{bottom:200.479331pt;}
.y4d{bottom:200.484264pt;}
.y27{bottom:201.939210pt;}
.yf7{bottom:205.456523pt;}
.ydc{bottom:205.920269pt;}
.y263{bottom:207.507325pt;}
.y1d4{bottom:207.563596pt;}
.y9d{bottom:207.597596pt;}
.y2c5{bottom:208.416683pt;}
.y193{bottom:210.160129pt;}
.y316{bottom:210.706243pt;}
.y226{bottom:212.116802pt;}
.y1f3{bottom:213.813864pt;}
.y4c{bottom:213.816264pt;}
.y26{bottom:215.273743pt;}
.yf6{bottom:218.791057pt;}
.ydb{bottom:219.252269pt;}
.y2c4{bottom:219.746683pt;}
.y262{bottom:220.841858pt;}
.y1d3{bottom:220.898129pt;}
.y9c{bottom:220.932129pt;}
.y181{bottom:221.730937pt;}
.y315{bottom:222.036243pt;}
.y192{bottom:223.492129pt;}
.y225{bottom:225.448802pt;}
.y1f2{bottom:227.148397pt;}
.y25{bottom:228.607076pt;}
.y25d{bottom:229.288005pt;}
.y2c3{bottom:231.076683pt;}
.yf5{bottom:232.124390pt;}
.yda{bottom:232.584269pt;}
.y314{bottom:233.366243pt;}
.y261{bottom:234.176392pt;}
.y25c{bottom:234.176798pt;}
.y1d2{bottom:234.232663pt;}
.y9b{bottom:234.266663pt;}
.y180{bottom:235.064270pt;}
.y191{bottom:236.824129pt;}
.y224{bottom:238.782136pt;}
.y1f1{bottom:240.482931pt;}
.y4b{bottom:241.148397pt;}
.y24{bottom:241.941610pt;}
.y2c2{bottom:242.406683pt;}
.y313{bottom:244.696243pt;}
.yf4{bottom:245.458923pt;}
.y1d1{bottom:247.567196pt;}
.y9a{bottom:247.603996pt;}
.y17f{bottom:248.397604pt;}
.y25b{bottom:248.991598pt;}
.y190{bottom:250.156129pt;}
.y223{bottom:252.112802pt;}
.y2c1{bottom:253.736683pt;}
.y4a{bottom:254.478131pt;}
.y23{bottom:255.272543pt;}
.y312{bottom:256.026243pt;}
.y99{bottom:260.935996pt;}
.y17e{bottom:261.730937pt;}
.y25a{bottom:262.326132pt;}
.yde{bottom:263.443990pt;}
.y18f{bottom:263.488129pt;}
.y2c0{bottom:265.066683pt;}
.y311{bottom:267.356243pt;}
.y49{bottom:267.812664pt;}
.ycf{bottom:268.589457pt;}
.y22{bottom:268.607076pt;}
.yf2{bottom:270.356664pt;}
.ye6{bottom:270.362668pt;}
.ye9{bottom:273.425472pt;}
.yed{bottom:273.428542pt;}
.y98{bottom:274.267996pt;}
.y17d{bottom:275.064270pt;}
.y259{bottom:275.660665pt;}
.ye5{bottom:275.732524pt;}
.y2bf{bottom:276.396683pt;}
.y1d0{bottom:276.687196pt;}
.y18e{bottom:276.825463pt;}
.yd0{bottom:276.863993pt;}
.y310{bottom:278.686243pt;}
.yeb{bottom:278.804662pt;}
.yf3{bottom:278.804664pt;}
.y222{bottom:279.448802pt;}
.y48{bottom:281.147197pt;}
.y21{bottom:281.941610pt;}
.ye0{bottom:282.644674pt;}
.ydd{bottom:284.180542pt;}
.y20e{bottom:284.651069pt;}
.y97{bottom:287.599996pt;}
.y2be{bottom:287.726683pt;}
.ye3{bottom:288.026817pt;}
.y17c{bottom:288.398804pt;}
.yec{bottom:289.558966pt;}
.y30f{bottom:290.016243pt;}
.y1cf{bottom:290.021729pt;}
.y18d{bottom:290.157463pt;}
.ye2{bottom:290.717889pt;}
.yf0{bottom:291.476664pt;}
.y221{bottom:292.780802pt;}
.y47{bottom:294.481731pt;}
.ye8{bottom:294.548543pt;}
.yee{bottom:294.551614pt;}
.y20{bottom:295.274943pt;}
.ye1{bottom:296.087745pt;}
.y20d{bottom:297.983069pt;}
.y2bd{bottom:299.056683pt;}
.yea{bottom:299.924662pt;}
.yf1{bottom:299.924664pt;}
.y30e{bottom:301.346243pt;}
.y17b{bottom:301.729737pt;}
.y1ce{bottom:303.356263pt;}
.y18c{bottom:303.489463pt;}
.y220{bottom:306.114136pt;}
.y46{bottom:307.811484pt;}
.y258{bottom:307.999352pt;}
.y1f{bottom:308.605876pt;}
.y2bc{bottom:310.386683pt;}
.y20c{bottom:311.315069pt;}
.y30d{bottom:312.676243pt;}
.y96{bottom:314.374797pt;}
.y17a{bottom:315.064270pt;}
.y1cd{bottom:316.690796pt;}
.y18b{bottom:316.821463pt;}
.y21f{bottom:319.447469pt;}
.y45{bottom:321.146018pt;}
.y257{bottom:321.331352pt;}
.y2bb{bottom:321.716683pt;}
.y1e{bottom:321.940410pt;}
.y30c{bottom:324.006243pt;}
.y20b{bottom:324.647069pt;}
.y95{bottom:327.704530pt;}
.y179{bottom:328.397604pt;}
.y1cc{bottom:330.020529pt;}
.y18a{bottom:330.154816pt;}
.y2ba{bottom:333.046683pt;}
.y44{bottom:334.480551pt;}
.y256{bottom:334.663352pt;}
.y1d{bottom:335.274943pt;}
.y30b{bottom:335.336243pt;}
.y20a{bottom:337.979069pt;}
.y94{bottom:341.039063pt;}
.y178{bottom:341.730937pt;}
.y1cb{bottom:343.355063pt;}
.y189{bottom:343.486816pt;}
.y2b9{bottom:344.376683pt;}
.y30a{bottom:346.666243pt;}
.y43{bottom:347.815084pt;}
.y255{bottom:347.995352pt;}
.y1c{bottom:348.607076pt;}
.y21e{bottom:348.780802pt;}
.y209{bottom:351.311069pt;}
.y93{bottom:354.373597pt;}
.y177{bottom:355.063070pt;}
.y11b{bottom:355.228018pt;}
.y2b8{bottom:355.706683pt;}
.y1ca{bottom:356.689596pt;}
.y188{bottom:356.820150pt;}
.y251{bottom:356.882650pt;}
.y309{bottom:357.996243pt;}
.y42{bottom:361.149618pt;}
.y1b{bottom:361.941610pt;}
.y21d{bottom:362.109336pt;}
.y208{bottom:364.643069pt;}
.y254{bottom:366.482951pt;}
.y2b7{bottom:367.036683pt;}
.y92{bottom:367.708130pt;}
.y176{bottom:368.397604pt;}
.y11a{bottom:368.560018pt;}
.y308{bottom:369.326243pt;}
.y1c9{bottom:370.024129pt;}
.y41{bottom:374.480551pt;}
.y1a{bottom:375.273743pt;}
.y21c{bottom:375.443869pt;}
.y207{bottom:377.975069pt;}
.y2b6{bottom:378.366683pt;}
.y250{bottom:378.484284pt;}
.y307{bottom:380.656243pt;}
.y91{bottom:381.040263pt;}
.y175{bottom:381.730937pt;}
.y1c8{bottom:383.358151pt;}
.yb0{bottom:387.056152pt;}
.y40{bottom:387.815084pt;}
.y19{bottom:388.608276pt;}
.y21b{bottom:388.778402pt;}
.y2b5{bottom:389.696683pt;}
.y206{bottom:391.307069pt;}
.y24f{bottom:391.818951pt;}
.y306{bottom:391.986243pt;}
.y107{bottom:393.284017pt;}
.y90{bottom:394.374797pt;}
.y174{bottom:395.064270pt;}
.y1c7{bottom:396.692684pt;}
.y2b4{bottom:401.026683pt;}
.y3f{bottom:401.149618pt;}
.y1bf{bottom:401.653483pt;}
.y18{bottom:401.940410pt;}
.y21a{bottom:402.112936pt;}
.y305{bottom:403.316243pt;}
.y205{bottom:404.639069pt;}
.y24e{bottom:405.150951pt;}
.y8f{bottom:407.697330pt;}
.y173{bottom:408.397604pt;}
.y2b3{bottom:412.356683pt;}
.y3e{bottom:414.481751pt;}
.y304{bottom:414.646243pt;}
.y17{bottom:415.274943pt;}
.y219{bottom:415.447469pt;}
.y204{bottom:417.971069pt;}
.yc3{bottom:419.622681pt;}
.y8e{bottom:421.031863pt;}
.y172{bottom:421.732137pt;}
.y2b2{bottom:423.686683pt;}
.y1c6{bottom:425.812684pt;}
.y303{bottom:425.976243pt;}
.y3d{bottom:427.816284pt;}
.y1be{bottom:428.476150pt;}
.y16{bottom:428.608276pt;}
.y218{bottom:428.771202pt;}
.y104{bottom:430.593361pt;}
.y106{bottom:430.598551pt;}
.y24d{bottom:432.486951pt;}
.y8d{bottom:434.366397pt;}
.y2b1{bottom:435.016683pt;}
.y171{bottom:435.059470pt;}
.y302{bottom:437.306243pt;}
.y1c5{bottom:439.147218pt;}
.y3c{bottom:441.148418pt;}
.y217{bottom:442.105736pt;}
.y1fe{bottom:442.694661pt;}
.y1bd{bottom:443.978816pt;}
.y24c{bottom:445.818951pt;}
.y2b0{bottom:446.346683pt;}
.y8c{bottom:447.700930pt;}
.y170{bottom:448.394004pt;}
.y301{bottom:448.636243pt;}
.y1c4{bottom:452.481751pt;}
.yba{bottom:454.141317pt;}
.y3b{bottom:454.480551pt;}
.y216{bottom:455.440269pt;}
.y2af{bottom:457.676683pt;}
.y24b{bottom:459.150951pt;}
.y1bc{bottom:459.481483pt;}
.y300{bottom:459.966243pt;}
.y8b{bottom:461.035463pt;}
.ybb{bottom:461.384115pt;}
.y16f{bottom:461.728537pt;}
.y1c3{bottom:465.816284pt;}
.y3a{bottom:467.815084pt;}
.y215{bottom:468.774802pt;}
.y2ae{bottom:469.006683pt;}
.y2ff{bottom:471.296243pt;}
.y24a{bottom:472.493618pt;}
.y8a{bottom:474.369997pt;}
.y1bb{bottom:474.984150pt;}
.y16e{bottom:475.063070pt;}
.y1c2{bottom:479.147218pt;}
.y2ad{bottom:480.336683pt;}
.y39{bottom:481.143618pt;}
.y15{bottom:481.296276pt;}
.y214{bottom:482.109336pt;}
.y2fe{bottom:482.626243pt;}
.y249{bottom:485.825618pt;}
.y89{bottom:487.704530pt;}
.y16d{bottom:488.397604pt;}
.y1ba{bottom:490.486816pt;}
.y2ac{bottom:491.666683pt;}
.y1c1{bottom:492.481751pt;}
.y2fd{bottom:493.956243pt;}
.y38{bottom:494.478151pt;}
.y213{bottom:495.443869pt;}
.y14{bottom:495.960276pt;}
.y248{bottom:499.157618pt;}
.y88{bottom:501.039063pt;}
.y16c{bottom:501.732137pt;}
.y2ab{bottom:502.996683pt;}
.y2fc{bottom:505.286243pt;}
.y1c0{bottom:505.816284pt;}
.y37{bottom:507.812684pt;}
.y212{bottom:508.778402pt;}
.y13{bottom:510.624276pt;}
.ybf{bottom:511.399984pt;}
.y247{bottom:512.489618pt;}
.yc0{bottom:513.300008pt;}
.y2aa{bottom:514.326683pt;}
.y87{bottom:514.373597pt;}
.y16b{bottom:515.069470pt;}
.y2fb{bottom:516.616243pt;}
.y105{bottom:517.990519pt;}
.y36{bottom:521.147218pt;}
.y211{bottom:522.112936pt;}
.y12{bottom:525.288276pt;}
.y2a9{bottom:525.656683pt;}
.y246{bottom:525.821618pt;}
.y1ff{bottom:527.301188pt;}
.y86{bottom:527.708130pt;}
.y2fa{bottom:527.946243pt;}
.y16a{bottom:528.401470pt;}
.ybd{bottom:529.936576pt;}
.y35{bottom:534.481751pt;}
.y1b9{bottom:535.318951pt;}
.y210{bottom:535.447469pt;}
.y2a8{bottom:536.986683pt;}
.y245{bottom:539.153618pt;}
.y2f9{bottom:539.276243pt;}
.y11{bottom:539.952276pt;}
.ybc{bottom:540.302816pt;}
.y85{bottom:541.033063pt;}
.y169{bottom:541.733470pt;}
.y33b{bottom:545.828284pt;}
.y34{bottom:547.816284pt;}
.y2a7{bottom:548.316683pt;}
.y1b8{bottom:548.650951pt;}
.y20f{bottom:548.780802pt;}
.y2f8{bottom:550.606243pt;}
.y244{bottom:552.485618pt;}
.y1f0{bottom:553.713078pt;}
.y84{bottom:554.367597pt;}
.y10{bottom:554.616276pt;}
.y168{bottom:555.078763pt;}
.yc2{bottom:558.393892pt;}
.y33a{bottom:559.160284pt;}
.y2a6{bottom:559.646683pt;}
.y119{bottom:559.886485pt;}
.y2f7{bottom:561.936243pt;}
.y1b7{bottom:561.982951pt;}
.y243{bottom:565.817618pt;}
.y1ef{bottom:567.045078pt;}
.y83{bottom:567.702130pt;}
.y118{bottom:567.993205pt;}
.y167{bottom:568.410763pt;}
.yc1{bottom:568.760132pt;}
.yf{bottom:569.280276pt;}
.y2a5{bottom:570.976683pt;}
.y339{bottom:572.492284pt;}
.y2f6{bottom:573.266243pt;}
.y242{bottom:579.150951pt;}
.y1ee{bottom:580.377078pt;}
.y82{bottom:581.036663pt;}
.y166{bottom:581.742763pt;}
.y108{bottom:582.069743pt;}
.y2a4{bottom:582.306683pt;}
.ye{bottom:583.944276pt;}
.yb9{bottom:584.344116pt;}
.ybe{bottom:584.347413pt;}
.y2f5{bottom:584.596243pt;}
.y338{bottom:585.824284pt;}
.y1b6{bottom:588.765577pt;}
.y241{bottom:592.486951pt;}
.yb7{bottom:593.566650pt;}
.y2a3{bottom:593.636683pt;}
.y1ed{bottom:593.709078pt;}
.y81{bottom:594.371197pt;}
.y165{bottom:595.074763pt;}
.y2f4{bottom:595.926243pt;}
.y23d{bottom:598.225085pt;}
.yd{bottom:598.618943pt;}
.y337{bottom:599.156284pt;}
.yb8{bottom:600.462646pt;}
.y65{bottom:601.905345pt;}
.y1b5{bottom:604.268243pt;}
.y2a2{bottom:604.966683pt;}
.y100{bottom:605.047852pt;}
.y240{bottom:605.818951pt;}
.y1ec{bottom:607.041078pt;}
.y2f3{bottom:607.256243pt;}
.y80{bottom:607.705730pt;}
.y164{bottom:608.406763pt;}
.y23c{bottom:611.557085pt;}
.y336{bottom:612.488284pt;}
.yc{bottom:613.282943pt;}
.y64{bottom:615.237345pt;}
.y2a1{bottom:616.296683pt;}
.y2f2{bottom:618.586243pt;}
.y23f{bottom:619.150951pt;}
.y1b4{bottom:619.770910pt;}
.y1eb{bottom:620.373078pt;}
.y7f{bottom:621.040263pt;}
.y163{bottom:621.738763pt;}
.y23b{bottom:624.889085pt;}
.y335{bottom:625.820284pt;}
.y2a0{bottom:627.626683pt;}
.yb{bottom:627.946943pt;}
.y2f1{bottom:629.916243pt;}
.y23e{bottom:632.482951pt;}
.y1ea{bottom:633.705078pt;}
.y7e{bottom:634.374797pt;}
.y162{bottom:635.070763pt;}
.y1b3{bottom:635.273577pt;}
.yc9{bottom:636.963324pt;}
.y23a{bottom:638.221085pt;}
.y29f{bottom:638.956683pt;}
.y334{bottom:639.152284pt;}
.y61{bottom:639.961344pt;}
.y2f0{bottom:641.246243pt;}
.ya{bottom:642.610943pt;}
.y7d{bottom:647.708130pt;}
.y161{bottom:648.402763pt;}
.yc8{bottom:649.061483pt;}
.y29e{bottom:650.286683pt;}
.y1b2{bottom:650.776243pt;}
.y60{bottom:651.549181pt;}
.y239{bottom:651.553085pt;}
.y333{bottom:652.484284pt;}
.y2ef{bottom:652.576243pt;}
.yc4{bottom:655.972127pt;}
.yca{bottom:657.130656pt;}
.y9{bottom:657.274943pt;}
.y5f{bottom:660.669180pt;}
.y7c{bottom:661.044171pt;}
.y29d{bottom:661.616683pt;}
.y160{bottom:661.734763pt;}
.y2ee{bottom:663.906243pt;}
.y238{bottom:664.885085pt;}
.y332{bottom:665.816284pt;}
.y1b1{bottom:666.278910pt;}
.y5e{bottom:669.789180pt;}
.y200{bottom:671.050944pt;}
.y29c{bottom:672.946683pt;}
.y7b{bottom:674.376171pt;}
.y15f{bottom:675.066763pt;}
.y2ed{bottom:675.236243pt;}
.y282{bottom:675.469739pt;}
.yc5{bottom:676.841349pt;}
.y237{bottom:678.217085pt;}
.y5d{bottom:678.909180pt;}
.y1b0{bottom:681.781577pt;}
.y29b{bottom:684.276683pt;}
.y331{bottom:685.156243pt;}
.y2ec{bottom:686.566243pt;}
.y7a{bottom:687.712171pt;}
.y5c{bottom:688.042562pt;}
.y15e{bottom:688.400096pt;}
.y281{bottom:688.801739pt;}
.y8{bottom:689.274902pt;}
.y110{bottom:689.520144pt;}
.y236{bottom:691.549085pt;}
.y29a{bottom:695.606683pt;}
.y1e6{bottom:695.796351pt;}
.y203{bottom:696.222750pt;}
.y10f{bottom:696.579834pt;}
.y1af{bottom:697.284243pt;}
.y2eb{bottom:697.896243pt;}
.y330{bottom:698.488243pt;}
.y79{bottom:701.044171pt;}
.y15d{bottom:701.733430pt;}
.y280{bottom:702.133739pt;}
.y58{bottom:704.203432pt;}
.y235{bottom:704.881085pt;}
.y7{bottom:705.274902pt;}
.y299{bottom:706.936683pt;}
.y1e5{bottom:707.390173pt;}
.y2ea{bottom:709.226243pt;}
.y202{bottom:709.553630pt;}
.y1ae{bottom:712.786910pt;}
.y78{bottom:714.376171pt;}
.y15c{bottom:715.065430pt;}
.y27f{bottom:715.465739pt;}
.y32f{bottom:717.820243pt;}
.y234{bottom:718.213085pt;}
.y298{bottom:718.266683pt;}
.y1e4{bottom:718.983996pt;}
.yc7{bottom:720.349762pt;}
.yc6{bottom:720.350830pt;}
.y2e9{bottom:720.556243pt;}
.y101{bottom:720.933187pt;}
.y201{bottom:722.884277pt;}
.y77{bottom:727.710837pt;}
.y1ad{bottom:728.289577pt;}
.y297{bottom:729.600016pt;}
.y233{bottom:731.545085pt;}
.y2e8{bottom:731.886243pt;}
.y6{bottom:734.597569pt;}
.y32e{bottom:737.152243pt;}
.y76{bottom:741.042837pt;}
.y2e7{bottom:743.216243pt;}
.y1ac{bottom:743.782910pt;}
.y14b{bottom:747.184000pt;}
.y112{bottom:749.942546pt;}
.yb5{bottom:750.548014pt;}
.y151{bottom:752.943359pt;}
.y1ab{bottom:753.778910pt;}
.y14e{bottom:754.095372pt;}
.y296{bottom:754.101850pt;}
.y75{bottom:754.377504pt;}
.y15a{bottom:754.467071pt;}
.y155{bottom:754.491647pt;}
.y2e6{bottom:754.546243pt;}
.y32d{bottom:756.484243pt;}
.y159{bottom:757.158143pt;}
.y15b{bottom:757.551351pt;}
.y154{bottom:757.944575pt;}
.y14d{bottom:759.855306pt;}
.y14f{bottom:760.623372pt;}
.y158{bottom:761.385215pt;}
.y232{bottom:761.655739pt;}
.y153{bottom:763.314431pt;}
.y14a{bottom:764.847331pt;}
.y157{bottom:765.612287pt;}
.y2e5{bottom:765.876243pt;}
.y10b{bottom:766.629572pt;}
.y295{bottom:767.429850pt;}
.y74{bottom:767.709504pt;}
.y231{bottom:768.104899pt;}
.y152{bottom:768.684287pt;}
.y1aa{bottom:769.281577pt;}
.y32c{bottom:769.816243pt;}
.y156{bottom:769.839359pt;}
.y31{bottom:774.399495pt;}
.y5{bottom:774.602902pt;}
.y2e4{bottom:777.206243pt;}
.y73{bottom:781.041504pt;}
.y113{bottom:781.593099pt;}
.y32b{bottom:783.149577pt;}
.y1a9{bottom:784.784243pt;}
.y2e3{bottom:788.536243pt;}
.y294{bottom:792.097850pt;}
.y1e3{bottom:793.990313pt;}
.y72{bottom:794.374837pt;}
.y2e2{bottom:799.866243pt;}
.y1a8{bottom:800.286910pt;}
.y146{bottom:805.397298pt;}
.y293{bottom:805.431184pt;}
.y1e2{bottom:805.584136pt;}
.y148{bottom:810.004639pt;}
.y2e1{bottom:811.196243pt;}
.y32a{bottom:813.149577pt;}
.yd8{bottom:814.106771pt;}
.y4{bottom:814.608236pt;}
.y1a7{bottom:815.789577pt;}
.y1e1{bottom:817.168273pt;}
.y292{bottom:818.765850pt;}
.y71{bottom:821.149577pt;}
.ycd{bottom:822.025309pt;}
.y2e0{bottom:822.526243pt;}
.y32{bottom:823.475179pt;}
.yd7{bottom:824.494792pt;}
.y329{bottom:826.482910pt;}
.y1a6{bottom:831.292243pt;}
.y291{bottom:832.097850pt;}
.ycc{bottom:832.392171pt;}
.y2df{bottom:833.856243pt;}
.y70{bottom:834.472110pt;}
.y10e{bottom:834.845215pt;}
.y145{bottom:837.836365pt;}
.yd6{bottom:840.043617pt;}
.ycb{bottom:842.758789pt;}
.y2de{bottom:845.186243pt;}
.y290{bottom:845.429850pt;}
.y1a5{bottom:846.794910pt;}
.y6f{bottom:847.806643pt;}
.yce{bottom:849.560303pt;}
.yd5{bottom:850.409857pt;}
.y328{bottom:850.489577pt;}
.y144{bottom:851.168498pt;}
.y117{bottom:851.715576pt;}
.y2dd{bottom:856.516243pt;}
.y10c{bottom:857.308675pt;}
.y28f{bottom:858.763184pt;}
.yd4{bottom:860.776097pt;}
.y6e{bottom:861.141177pt;}
.y1a4{bottom:862.297577pt;}
.y327{bottom:863.821577pt;}
.y143{bottom:864.503032pt;}
.y2dc{bottom:867.846243pt;}
.y116{bottom:869.502686pt;}
.yd3{bottom:871.142337pt;}
.y6d{bottom:874.475710pt;}
.y326{bottom:877.153577pt;}
.y1a3{bottom:877.800243pt;}
.y142{bottom:877.836365pt;}
.y2db{bottom:879.176243pt;}
.yd2{bottom:881.508577pt;}
.y28e{bottom:883.252647pt;}
.y114{bottom:887.766744pt;}
.y6c{bottom:887.810243pt;}
.y1e0{bottom:889.443213pt;}
.yd9{bottom:890.056966pt;}
.y325{bottom:890.485577pt;}
.y2da{bottom:890.506243pt;}
.y141{bottom:891.170898pt;}
.yd1{bottom:891.874817pt;}
.y1a2{bottom:893.302910pt;}
.y28d{bottom:896.587180pt;}
.yb4{bottom:897.057937pt;}
.y1df{bottom:901.037035pt;}
.y6b{bottom:901.144777pt;}
.y2d9{bottom:901.836243pt;}
.y115{bottom:903.510588pt;}
.y324{bottom:903.817577pt;}
.yb3{bottom:907.424177pt;}
.y1a1{bottom:908.805577pt;}
.y124{bottom:909.157308pt;}
.y28c{bottom:909.921714pt;}
.y133{bottom:912.621921pt;}
.y1de{bottom:912.640544pt;}
.y2d8{bottom:913.166243pt;}
.y63{bottom:913.837321pt;}
.y6a{bottom:914.479310pt;}
.y102{bottom:915.406413pt;}
.y127{bottom:915.688521pt;}
.y132{bottom:916.848993pt;}
.y323{bottom:917.149577pt;}
.y136{bottom:917.226786pt;}
.y13c{bottom:917.239074pt;}
.yb2{bottom:917.790417pt;}
.y10d{bottom:918.716227pt;}
.y128{bottom:918.759775pt;}
.y11f{bottom:918.772063pt;}
.y13a{bottom:918.775074pt;}
.y123{bottom:918.784351pt;}
.y140{bottom:920.679714pt;}
.y139{bottom:921.466146pt;}
.y131{bottom:922.218849pt;}
.y28b{bottom:923.256247pt;}
.y1a0{bottom:924.308243pt;}
.y2d7{bottom:924.496243pt;}
.y13f{bottom:924.906785pt;}
.y138{bottom:926.836001pt;}
.y130{bottom:927.588704pt;}
.y69{bottom:927.813843pt;}
.yb1{bottom:928.156657pt;}
.y135{bottom:928.740641pt;}
.y11e{bottom:928.749919pt;}
.y122{bottom:928.762207pt;}
.y13e{bottom:929.133857pt;}
.y322{bottom:930.482910pt;}
.y137{bottom:932.205857pt;}
.y126{bottom:932.964681pt;}
.y13d{bottom:933.360929pt;}
.y12a{bottom:934.500651pt;}
.y5b{bottom:935.636384pt;}
.y2d6{bottom:935.826243pt;}
.y11c{bottom:936.036702pt;}
.y120{bottom:936.048990pt;}
.y28a{bottom:936.590780pt;}
.y13b{bottom:939.504929pt;}
.y19f{bottom:939.810910pt;}
.y12e{bottom:939.895083pt;}
.y68{bottom:941.148377pt;}
.y10a{bottom:942.130290pt;}
.y103{bottom:942.163981pt;}
.y12d{bottom:943.348011pt;}
.y5a{bottom:944.756384pt;}
.yb6{bottom:945.483005pt;}
.y2d5{bottom:947.156243pt;}
.y12c{bottom:948.717866pt;}
.y289{bottom:949.925314pt;}
.y59{bottom:953.876383pt;}
.y12b{bottom:954.087722pt;}
.y11d{bottom:954.087774pt;}
.y121{bottom:954.100062pt;}
.y67{bottom:954.482910pt;}
.y321{bottom:954.484243pt;}
.y19e{bottom:955.313577pt;}
.y1e9{bottom:956.216869pt;}
.y1e8{bottom:956.313514pt;}
.y283{bottom:958.370687pt;}
.y2d4{bottom:958.486243pt;}
.y286{bottom:962.979085pt;}
.y288{bottom:963.259847pt;}
.y109{bottom:967.246826pt;}
.y66{bottom:967.816243pt;}
.y1e7{bottom:967.907337pt;}
.y284{bottom:968.354899pt;}
.y2d3{bottom:969.816243pt;}
.y57{bottom:970.172038pt;}
.y19d{bottom:970.816243pt;}
.y111{bottom:973.698161pt;}
.y33{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.h46{height:13.099838pt;}
.h68{height:15.585024pt;}
.h3b{height:16.426398pt;}
.h3c{height:16.431688pt;}
.h43{height:16.445811pt;}
.h40{height:16.561780pt;}
.h6b{height:17.280000pt;}
.h41{height:17.668651pt;}
.h52{height:19.199999pt;}
.h3f{height:19.672307pt;}
.h3e{height:19.699330pt;}
.h48{height:19.699452pt;}
.h3a{height:19.718770pt;}
.h6c{height:20.352000pt;}
.h1a{height:22.131199pt;}
.h19{height:22.161599pt;}
.h1b{height:22.205923pt;}
.h39{height:23.846986pt;}
.h26{height:25.155409pt;}
.h2b{height:25.158094pt;}
.h2c{height:25.167205pt;}
.h25{height:25.189963pt;}
.h29{height:25.205495pt;}
.h2e{height:25.240118pt;}
.h58{height:25.824768pt;}
.h18{height:25.929072pt;}
.h57{height:26.164224pt;}
.h10{height:27.728597pt;}
.h60{height:28.243598pt;}
.h61{height:28.321933pt;}
.h27{height:29.431778pt;}
.h24{height:29.472206pt;}
.h2d{height:29.522362pt;}
.h6d{height:31.476562pt;}
.h2a{height:31.716922pt;}
.h32{height:32.102400pt;}
.h65{height:32.349602pt;}
.h28{height:32.757149pt;}
.h47{height:32.953433pt;}
.h44{height:32.954084pt;}
.h53{height:33.420288pt;}
.h36{height:33.859584pt;}
.h9{height:34.523438pt;}
.h5c{height:36.922667pt;}
.h64{height:37.849011pt;}
.h5b{height:38.229333pt;}
.h5e{height:38.528000pt;}
.h6f{height:39.560000pt;}
.h4e{height:40.009728pt;}
.h70{height:40.080000pt;}
.h54{height:40.320000pt;}
.h3{height:40.661333pt;}
.h6e{height:40.960000pt;}
.h56{height:41.530368pt;}
.ha{height:42.195312pt;}
.h45{height:44.168756pt;}
.h69{height:45.235200pt;}
.h8{height:45.703125pt;}
.h30{height:46.463999pt;}
.h2f{height:46.694398pt;}
.h11{height:46.784000pt;}
.h17{height:47.472000pt;}
.h6a{height:47.711232pt;}
.hb{height:47.999467pt;}
.hc{height:48.004267pt;}
.h5f{height:48.006395pt;}
.he{height:48.009067pt;}
.h5a{height:48.009082pt;}
.hf{height:48.013867pt;}
.h38{height:48.013907pt;}
.h15{height:48.018585pt;}
.h16{height:48.018667pt;}
.h14{height:48.023467pt;}
.h62{height:48.028267pt;}
.h20{height:48.033067pt;}
.h66{height:48.037867pt;}
.h1e{height:48.042667pt;}
.h67{height:48.096000pt;}
.h35{height:48.611326pt;}
.hd{height:48.630400pt;}
.h23{height:48.635200pt;}
.h22{height:48.644800pt;}
.h21{height:48.673600pt;}
.h1d{height:49.152000pt;}
.h42{height:49.180574pt;}
.h34{height:49.250302pt;}
.h2{height:50.755208pt;}
.h7{height:50.781250pt;}
.h4{height:52.024089pt;}
.h4f{height:52.838398pt;}
.h12{height:53.703125pt;}
.h6{height:54.933594pt;}
.h1f{height:55.859375pt;}
.h5d{height:56.933333pt;}
.h4d{height:58.751999pt;}
.h37{height:76.876800pt;}
.h55{height:77.807613pt;}
.h51{height:78.938109pt;}
.h4b{height:83.951612pt;}
.h49{height:84.590588pt;}
.h50{height:86.605820pt;}
.h59{height:88.178684pt;}
.h4c{height:88.522748pt;}
.h4a{height:89.161724pt;}
.h31{height:89.702396pt;}
.h33{height:90.734588pt;}
.h13{height:91.406250pt;}
.h5{height:132.031250pt;}
.h1c{height:341.189331pt;}
.h63{height:538.456014pt;}
.h3d{height:587.865316pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w7{width:42.240000pt;}
.w8{width:79.871999pt;}
.w9{width:84.095998pt;}
.wa{width:84.863998pt;}
.wb{width:92.543996pt;}
.wc{width:93.312002pt;}
.wd{width:93.696004pt;}
.w3{width:532.223999pt;}
.w5{width:532.607992pt;}
.w4{width:584.481323pt;}
.w6{width:600.730672pt;}
.w2{width:608.001343pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x92{left:-3.455993pt;}
.x96{left:-1.919881pt;}
.x0{left:0.000000pt;}
.x6{left:21.138400pt;}
.x98{left:22.656128pt;}
.x64{left:25.578391pt;}
.x95{left:30.720133pt;}
.x9c{left:34.944255pt;}
.x2{left:54.392400pt;}
.x97{left:69.888143pt;}
.x9d{left:73.344238pt;}
.xa0{left:74.879333pt;}
.x17{left:76.429321pt;}
.xa4{left:82.176269pt;}
.x65{left:88.101869pt;}
.x49{left:97.151733pt;}
.x8e{left:108.709472pt;}
.x67{left:110.428672pt;}
.x7{left:125.291331pt;}
.x16{left:131.514669pt;}
.x8d{left:138.786662pt;}
.x8f{left:141.916799pt;}
.x79{left:148.991721pt;}
.x22{left:153.283864pt;}
.x5c{left:155.034667pt;}
.x7b{left:161.663718pt;}
.x68{left:165.473733pt;}
.xb{left:171.250000pt;}
.x7d{left:174.720947pt;}
.x13{left:176.934937pt;}
.xd{left:178.168411pt;}
.xc{left:181.816407pt;}
.x80{left:186.622640pt;}
.x14{left:199.355469pt;}
.x4{left:207.516805pt;}
.x86{left:211.683472pt;}
.x88{left:215.463867pt;}
.x89{left:218.272729pt;}
.x47{left:220.256266pt;}
.x15{left:222.535468pt;}
.x5{left:223.522662pt;}
.x8{left:226.189192pt;}
.x5d{left:228.196941pt;}
.x93{left:230.557332pt;}
.x3b{left:239.140400pt;}
.x3d{left:241.610270pt;}
.x7f{left:243.840942pt;}
.x9f{left:247.671997pt;}
.x99{left:250.986674pt;}
.x1d{left:258.494283pt;}
.x26{left:259.438916pt;}
.x66{left:261.105876pt;}
.x3a{left:263.806725pt;}
.x29{left:266.196269pt;}
.xa9{left:267.195333pt;}
.x3c{left:272.123474pt;}
.x57{left:277.957012pt;}
.x27{left:282.244644pt;}
.x25{left:284.490662pt;}
.x28{left:286.045599pt;}
.x73{left:288.416770pt;}
.x48{left:290.733073pt;}
.x6d{left:291.756938pt;}
.xa5{left:300.890137pt;}
.x87{left:302.794535pt;}
.x4a{left:304.557067pt;}
.x3e{left:305.482808pt;}
.x55{left:307.192932pt;}
.x4f{left:311.097375pt;}
.x6f{left:317.613057pt;}
.x4c{left:319.149068pt;}
.x50{left:325.302303pt;}
.x38{left:326.560262pt;}
.x9a{left:330.971598pt;}
.xa1{left:332.535461pt;}
.x9b{left:336.725342pt;}
.x56{left:337.975606pt;}
.x4b{left:341.421061pt;}
.xa6{left:343.484009pt;}
.x8b{left:346.870190pt;}
.x1c{left:352.611227pt;}
.x24{left:353.979980pt;}
.x7a{left:356.397054pt;}
.x2d{left:357.881185pt;}
.x1b{left:360.211222pt;}
.x5f{left:361.743612pt;}
.x74{left:363.299839pt;}
.x19{left:367.043620pt;}
.x18{left:368.943604pt;}
.x75{left:370.979838pt;}
.x6e{left:373.044191pt;}
.x71{left:375.206913pt;}
.x62{left:376.996948pt;}
.xf{left:380.168803pt;}
.xa{left:382.514292pt;}
.x7e{left:389.612915pt;}
.xe{left:393.164803pt;}
.x2c{left:394.445353pt;}
.x63{left:396.286523pt;}
.x81{left:398.252930pt;}
.x54{left:400.782267pt;}
.x5e{left:403.396932pt;}
.x60{left:405.134277pt;}
.x1a{left:411.442818pt;}
.xa7{left:413.048787pt;}
.x2a{left:414.328003pt;}
.x9{left:415.423584pt;}
.x39{left:419.874370pt;}
.x9e{left:420.934814pt;}
.x2b{left:426.458537pt;}
.x53{left:435.117065pt;}
.x21{left:437.124939pt;}
.x37{left:446.138550pt;}
.x59{left:447.679606pt;}
.x78{left:450.867191pt;}
.x77{left:457.004306pt;}
.x94{left:463.208008pt;}
.x84{left:465.452922pt;}
.x36{left:472.809204pt;}
.x2e{left:473.868000pt;}
.x72{left:476.963836pt;}
.x58{left:485.810262pt;}
.x35{left:490.763997pt;}
.x8c{left:496.979903pt;}
.x3f{left:497.883925pt;}
.x46{left:501.166545pt;}
.x40{left:504.017284pt;}
.x2f{left:507.372926pt;}
.x44{left:508.604345pt;}
.x83{left:510.768754pt;}
.x82{left:511.917682pt;}
.x43{left:514.219392pt;}
.x45{left:515.765218pt;}
.x52{left:517.247580pt;}
.x34{left:519.789347pt;}
.x7c{left:523.424763pt;}
.x76{left:527.231711pt;}
.x41{left:528.472972pt;}
.x1e{left:532.540933pt;}
.x42{left:533.759754pt;}
.x3{left:537.585327pt;}
.x20{left:541.516527pt;}
.x61{left:542.979614pt;}
.x12{left:546.365597pt;}
.x85{left:548.396932pt;}
.x70{left:549.929975pt;}
.x33{left:554.753254pt;}
.x10{left:557.537595pt;}
.x6b{left:560.363410pt;}
.x1f{left:564.696529pt;}
.x6a{left:567.408936pt;}
.x32{left:569.870687pt;}
.x51{left:587.577365pt;}
.x11{left:600.325594pt;}
.x31{left:602.579997pt;}
.x6c{left:606.523600pt;}
.x4e{left:607.533081pt;}
.x30{left:612.945353pt;}
.x4d{left:623.277084pt;}
.xa2{left:632.430664pt;}
.x69{left:640.450277pt;}
.x8a{left:641.878266pt;}
.x5b{left:655.899618pt;}
.xa3{left:676.206950pt;}
.x5a{left:693.838298pt;}
.x91{left:695.323975pt;}
.x90{left:725.336507pt;}
.xa8{left:726.469482pt;}
.x23{left:732.628825pt;}
.x1{left:733.540283pt;}
}




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