
    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_997710c06867cdf2281441a2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_ba67755f32d2f0438c0df1ff.woff')format("woff");}.ff2{font-family:ff2;line-height:0.963379;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_71807ab79d8c3f34ece90c72.woff')format("woff");}.ff3{font-family:ff3;line-height:0.953125;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_a3c5c0c0484ee5657a649abf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.891602;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_8f0717f6be276545fe86f649.woff')format("woff");}.ff5{font-family:ff5;line-height:0.968262;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_63e67b8e504b9791d1757ef3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.032715;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_85db24681ca14691b6cb3527.woff')format("woff");}.ff7{font-family:ff7;line-height:1.026855;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_f18f75b987d676b685e74c3f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.973633;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_7ed3dae9e31f2914fe965f36.woff')format("woff");}.ff9{font-family:ff9;line-height:1.127000;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_eeb304662458fc63aba79594.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000048;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_c8856a87970ceaf44b9ecbec.woff')format("woff");}.ffb{font-family:ffb;line-height:0.710938;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_6b7837153973285c2fb293dd.woff')format("woff");}.ffc{font-family:ffc;line-height:0.953125;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_13ae4262283a8ec4f327ea7b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.966309;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_aa6f5e7dbda4441e456509d0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.966309;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_8e591941b7c371dbeec141a5.woff')format("woff");}.fff{font-family:fff;line-height:0.902832;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_d8bb31d0a915088c48d04b31.woff')format("woff");}.ff10{font-family:ff10;line-height:0.984000;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_9d32713539152865c592cb2e.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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_351a7815962dfdb90ee583b3.woff')format("woff");}.ff12{font-family:ff12;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_c2114f7b1d6c67ad088e4c5b.woff')format("woff");}.ff13{font-family:ff13;line-height:0.913086;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_716176c1d6de624808d9237d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.858000;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_0af510bfd6c778dc317e0d27.woff')format("woff");}.ff15{font-family:ff15;line-height:0.698000;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_1b1ab2f592f172e2406cb0ca.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_869034916b8c3934b3775e5e.woff')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_234ab0c3f1937b2440c7bdfc.woff')format("woff");}.ff18{font-family:ff18;line-height:0.858000;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_0af510bfd6c778dc317e0d27.woff')format("woff");}.ff19{font-family:ff19;line-height:0.698000;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_1b1ab2f592f172e2406cb0ca.woff')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_869034916b8c3934b3775e5e.woff')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_1b1ab2f592f172e2406cb0ca.woff')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_e1ffaa0f74e9fa9fa2cff880.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.698000;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_228af26166053aa3fddef981.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.858000;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:ff1f;src:url('chunks/assets/font_74803862bfd2b08c54075d33.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.770020;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244997,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v4{vertical-align:-32.838000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.270000px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:23.985000px;}
.v3{vertical-align:56.823000px;}
.ls6f{letter-spacing:-1.188000px;}
.ls71{letter-spacing:-0.972000px;}
.ls4f{letter-spacing:-0.948168px;}
.ls42{letter-spacing:-0.932365px;}
.ls6d{letter-spacing:-0.924000px;}
.ls5b{letter-spacing:-0.907076px;}
.ls58{letter-spacing:-0.862828px;}
.lsa{letter-spacing:-0.792000px;}
.ls4a{letter-spacing:-0.790140px;}
.ls12{letter-spacing:-0.780000px;}
.ls43{letter-spacing:-0.774337px;}
.ls7{letter-spacing:-0.756000px;}
.ls6{letter-spacing:-0.691200px;}
.ls41{letter-spacing:-0.663718px;}
.ls6e{letter-spacing:-0.660000px;}
.ls11{letter-spacing:-0.624000px;}
.lsc{letter-spacing:-0.594000px;}
.ls46{letter-spacing:-0.584704px;}
.ls3a{letter-spacing:-0.568901px;}
.ls56{letter-spacing:-0.486724px;}
.ls77{letter-spacing:-0.472230px;}
.lsd{letter-spacing:-0.462000px;}
.ls5d{letter-spacing:-0.442476px;}
.ls5{letter-spacing:-0.408000px;}
.ls5a{letter-spacing:-0.398228px;}
.ls73{letter-spacing:-0.378000px;}
.ls37{letter-spacing:-0.347662px;}
.ls8{letter-spacing:-0.330000px;}
.ls3c{letter-spacing:-0.316056px;}
.ls66{letter-spacing:-0.309733px;}
.ls3b{letter-spacing:-0.300253px;}
.ls52{letter-spacing:-0.292030px;}
.ls54{letter-spacing:-0.287609px;}
.ls67{letter-spacing:-0.284450px;}
.ls44{letter-spacing:-0.268648px;}
.ls60{letter-spacing:-0.265486px;}
.ls9{letter-spacing:-0.264000px;}
.ls69{letter-spacing:-0.252845px;}
.ls64{letter-spacing:-0.243362px;}
.ls5f{letter-spacing:-0.221238px;}
.ls75{letter-spacing:-0.216000px;}
.ls4c{letter-spacing:-0.212386px;}
.ls38{letter-spacing:-0.205436px;}
.ls55{letter-spacing:-0.199114px;}
.ls4d{letter-spacing:-0.173831px;}
.ls40{letter-spacing:-0.158028px;}
.ls61{letter-spacing:-0.154867px;}
.ls5e{letter-spacing:-0.132743px;}
.lsb{letter-spacing:-0.132000px;}
.ls36{letter-spacing:-0.127053px;}
.ls7a{letter-spacing:-0.120000px;}
.ls65{letter-spacing:-0.110619px;}
.ls76{letter-spacing:-0.108000px;}
.ls62{letter-spacing:-0.088495px;}
.ls10{letter-spacing:-0.066000px;}
.ls72{letter-spacing:-0.054000px;}
.ls3f{letter-spacing:-0.031606px;}
.ls53{letter-spacing:-0.026548px;}
.ls3{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.015803px;}
.ls27{letter-spacing:0.021634px;}
.ls29{letter-spacing:0.026548px;}
.ls14{letter-spacing:0.031606px;}
.ls13{letter-spacing:0.042351px;}
.ls15{letter-spacing:0.047408px;}
.ls6c{letter-spacing:0.052465px;}
.ls24{letter-spacing:0.053096px;}
.lsf{letter-spacing:0.059400px;}
.ls1c{letter-spacing:0.063211px;}
.ls18{letter-spacing:0.079014px;}
.ls19{letter-spacing:0.094817px;}
.ls6a{letter-spacing:0.104929px;}
.ls22{letter-spacing:0.110620px;}
.ls1f{letter-spacing:0.123506px;}
.ls17{letter-spacing:0.126422px;}
.ls28{letter-spacing:0.132741px;}
.ls63{letter-spacing:0.132743px;}
.ls2c{letter-spacing:0.154867px;}
.ls35{letter-spacing:0.157394px;}
.ls33{letter-spacing:0.158028px;}
.ls26{letter-spacing:0.159289px;}
.ls2f{letter-spacing:0.176990px;}
.ls32{letter-spacing:0.189634px;}
.ls31{letter-spacing:0.199114px;}
.ls1d{letter-spacing:0.205436px;}
.ls23{letter-spacing:0.238934px;}
.lse{letter-spacing:0.250630px;}
.ls68{letter-spacing:0.252845px;}
.ls30{letter-spacing:0.265486px;}
.ls16{letter-spacing:0.268648px;}
.ls1a{letter-spacing:0.300253px;}
.ls4{letter-spacing:0.306000px;}
.ls2a{letter-spacing:0.309733px;}
.ls1b{letter-spacing:0.316056px;}
.ls74{letter-spacing:0.324000px;}
.ls2b{letter-spacing:0.331857px;}
.ls2e{letter-spacing:0.376105px;}
.ls2{letter-spacing:0.378000px;}
.ls2d{letter-spacing:0.398228px;}
.ls59{letter-spacing:0.442476px;}
.ls70{letter-spacing:0.594000px;}
.ls45{letter-spacing:0.726929px;}
.ls57{letter-spacing:0.796457px;}
.ls5c{letter-spacing:0.929200px;}
.ls78{letter-spacing:1.020000px;}
.ls21{letter-spacing:1.280027px;}
.ls20{letter-spacing:1.295830px;}
.ls50{letter-spacing:1.517069px;}
.ls79{letter-spacing:1.740000px;}
.ls4e{letter-spacing:2.307209px;}
.ls48{letter-spacing:2.749687px;}
.ls49{letter-spacing:2.923518px;}
.ls47{letter-spacing:4.140334px;}
.ls39{letter-spacing:4.171939px;}
.ls3d{letter-spacing:4.187742px;}
.ls3e{letter-spacing:4.203545px;}
.ls51{letter-spacing:4.219348px;}
.ls4b{letter-spacing:4.937965px;}
.ls25{letter-spacing:5.548574px;}
.ls34{letter-spacing:8.027822px;}
.ls6b{letter-spacing:11.699606px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.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;}
}
.ws8{word-spacing:-17.928000px;}
.ws79{word-spacing:-16.500000px;}
.ws98{word-spacing:-16.434000px;}
.ws7a{word-spacing:-16.038000px;}
.ws14c{word-spacing:-15.840000px;}
.ws1bf{word-spacing:-15.420000px;}
.ws107{word-spacing:-15.170688px;}
.ws7{word-spacing:-14.940000px;}
.ws15c{word-spacing:-14.094000px;}
.ws1a0{word-spacing:-13.824000px;}
.ws15d{word-spacing:-13.500000px;}
.ws1b0{word-spacing:-13.392000px;}
.ws188{word-spacing:-13.122000px;}
.ws16d{word-spacing:-12.528000px;}
.ws9{word-spacing:-12.366000px;}
.wsa{word-spacing:-12.150000px;}
.ws110{word-spacing:-11.752070px;}
.wsdb{word-spacing:-10.937858px;}
.ws5{word-spacing:-10.896000px;}
.ws6{word-spacing:-9.892800px;}
.wsaf{word-spacing:-9.750000px;}
.ws4{word-spacing:-9.618000px;}
.wsb8{word-spacing:-9.571326px;}
.wse3{word-spacing:-8.612526px;}
.wsc7{word-spacing:-8.596723px;}
.wsc5{word-spacing:-8.580920px;}
.wsbf{word-spacing:-8.565118px;}
.wsd6{word-spacing:-8.533512px;}
.ws1be{word-spacing:-7.398270px;}
.ws10d{word-spacing:-7.395710px;}
.ws105{word-spacing:-7.332499px;}
.wsd8{word-spacing:-7.316696px;}
.ws108{word-spacing:-7.300894px;}
.ws10b{word-spacing:-7.269288px;}
.wsd7{word-spacing:-7.142866px;}
.ws109{word-spacing:-7.111260px;}
.wsf6{word-spacing:-7.079616px;}
.wsee{word-spacing:-6.946873px;}
.ws106{word-spacing:-6.858415px;}
.wse0{word-spacing:-6.700387px;}
.wsfb{word-spacing:-6.548645px;}
.wsfc{word-spacing:-6.526521px;}
.wsf0{word-spacing:-6.482273px;}
.wsf8{word-spacing:-6.460150px;}
.wsed{word-spacing:-6.349531px;}
.wsfe{word-spacing:-6.327407px;}
.wsf5{word-spacing:-6.305283px;}
.ws100{word-spacing:-6.283159px;}
.wsda{word-spacing:-6.238827px;}
.wse8{word-spacing:-6.159182px;}
.wsf3{word-spacing:-6.150416px;}
.wsff{word-spacing:-6.061921px;}
.wse6{word-spacing:-6.052990px;}
.ws102{word-spacing:-6.039797px;}
.wsea{word-spacing:-6.026441px;}
.wsf9{word-spacing:-6.017674px;}
.wse9{word-spacing:-5.999893px;}
.ws104{word-spacing:-5.995550px;}
.wsec{word-spacing:-5.951302px;}
.wsfa{word-spacing:-5.929178px;}
.wse2{word-spacing:-5.910247px;}
.ws101{word-spacing:-5.907055px;}
.wsfd{word-spacing:-5.884931px;}
.wseb{word-spacing:-5.862807px;}
.ws103{word-spacing:-5.840683px;}
.wsf1{word-spacing:-5.752188px;}
.wsf7{word-spacing:-5.707940px;}
.wse7{word-spacing:-5.707863px;}
.wsf4{word-spacing:-5.663693px;}
.wsef{word-spacing:-5.287588px;}
.wsf2{word-spacing:-5.243341px;}
.ws190{word-spacing:-5.130000px;}
.wsd1{word-spacing:-5.120107px;}
.wsc2{word-spacing:-4.709234px;}
.wsbc{word-spacing:-4.693432px;}
.wsba{word-spacing:-4.661826px;}
.wsb9{word-spacing:-4.598615px;}
.wsc0{word-spacing:-4.519601px;}
.wsc6{word-spacing:-4.487995px;}
.wsc4{word-spacing:-4.472192px;}
.wsd0{word-spacing:-4.456390px;}
.wsbb{word-spacing:-4.440587px;}
.wsc3{word-spacing:-4.424784px;}
.wsd3{word-spacing:-4.408981px;}
.wsdf{word-spacing:-4.393178px;}
.wsc8{word-spacing:-4.361573px;}
.ws3e{word-spacing:-4.356000px;}
.wsc9{word-spacing:-4.235150px;}
.wsde{word-spacing:-4.219348px;}
.wsbe{word-spacing:-4.187742px;}
.wscf{word-spacing:-4.124531px;}
.wsd2{word-spacing:-4.092925px;}
.wscc{word-spacing:-4.077122px;}
.ws18b{word-spacing:-4.050000px;}
.wsd5{word-spacing:-4.045517px;}
.ws175{word-spacing:-3.942000px;}
.ws85{word-spacing:-3.894000px;}
.ws149{word-spacing:-3.828000px;}
.wsc1{word-spacing:-3.824278px;}
.wsd4{word-spacing:-3.808475px;}
.wsca{word-spacing:-3.729461px;}
.wscd{word-spacing:-3.618841px;}
.wsd9{word-spacing:-3.603038px;}
.wscb{word-spacing:-3.460813px;}
.wse1{word-spacing:-3.445010px;}
.ws17e{word-spacing:-3.402000px;}
.ws65{word-spacing:-3.234000px;}
.ws4e{word-spacing:-3.168000px;}
.ws32{word-spacing:-3.102000px;}
.ws51{word-spacing:-3.036000px;}
.ws64{word-spacing:-2.970000px;}
.ws5d{word-spacing:-2.904000px;}
.ws61{word-spacing:-2.838000px;}
.ws150{word-spacing:-2.706000px;}
.ws1c4{word-spacing:-2.700000px;}
.ws1b1{word-spacing:-2.646000px;}
.ws199{word-spacing:-2.592000px;}
.ws147{word-spacing:-2.574000px;}
.ws82{word-spacing:-2.508000px;}
.ws1b3{word-spacing:-2.484000px;}
.ws137{word-spacing:-2.442000px;}
.ws1c5{word-spacing:-2.430000px;}
.ws23{word-spacing:-2.376000px;}
.ws1b6{word-spacing:-2.322000px;}
.wsa3{word-spacing:-2.310000px;}
.ws197{word-spacing:-2.268000px;}
.ws2b{word-spacing:-2.244000px;}
.ws1a2{word-spacing:-2.214000px;}
.wsbd{word-spacing:-2.180786px;}
.ws33{word-spacing:-2.178000px;}
.ws1c8{word-spacing:-2.160000px;}
.ws75{word-spacing:-2.112000px;}
.ws3a{word-spacing:-2.046000px;}
.wsdd{word-spacing:-1.964567px;}
.wsa8{word-spacing:-1.914000px;}
.ws179{word-spacing:-1.890000px;}
.ws15a{word-spacing:-1.848000px;}
.ws198{word-spacing:-1.836000px;}
.ws46{word-spacing:-1.782000px;}
.wse5{word-spacing:-1.778729px;}
.ws1ca{word-spacing:-1.740000px;}
.ws18a{word-spacing:-1.728000px;}
.ws53{word-spacing:-1.716000px;}
.ws18d{word-spacing:-1.674000px;}
.ws136{word-spacing:-1.650000px;}
.ws1a1{word-spacing:-1.566000px;}
.wse4{word-spacing:-1.564477px;}
.ws60{word-spacing:-1.518000px;}
.ws19e{word-spacing:-1.512000px;}
.ws1ae{word-spacing:-1.458000px;}
.ws5b{word-spacing:-1.452000px;}
.wsce{word-spacing:-1.422252px;}
.ws17f{word-spacing:-1.404000px;}
.ws13f{word-spacing:-1.320000px;}
.wsb6{word-spacing:-1.296000px;}
.ws15b{word-spacing:-1.188000px;}
.ws99{word-spacing:-1.122000px;}
.ws18f{word-spacing:-1.080000px;}
.ws68{word-spacing:-1.056000px;}
.ws1cb{word-spacing:-1.026000px;}
.ws1c9{word-spacing:-1.020000px;}
.ws50{word-spacing:-0.990000px;}
.wsb4{word-spacing:-0.972000px;}
.ws5e{word-spacing:-0.924000px;}
.ws97{word-spacing:-0.864000px;}
.ws90{word-spacing:-0.858000px;}
.ws1b{word-spacing:-0.810000px;}
.ws5a{word-spacing:-0.792000px;}
.ws14f{word-spacing:-0.726000px;}
.ws96{word-spacing:-0.702000px;}
.ws7f{word-spacing:-0.660000px;}
.ws17b{word-spacing:-0.648000px;}
.ws163{word-spacing:-0.594000px;}
.ws4a{word-spacing:-0.528000px;}
.ws83{word-spacing:-0.462000px;}
.ws12c{word-spacing:-0.442476px;}
.ws191{word-spacing:-0.432000px;}
.ws0{word-spacing:-0.408000px;}
.ws13{word-spacing:-0.378000px;}
.ws12e{word-spacing:-0.331857px;}
.ws6e{word-spacing:-0.330000px;}
.ws1a6{word-spacing:-0.324000px;}
.ws11d{word-spacing:-0.316056px;}
.ws133{word-spacing:-0.309733px;}
.ws120{word-spacing:-0.300253px;}
.ws16a{word-spacing:-0.270000px;}
.ws118{word-spacing:-0.268648px;}
.ws146{word-spacing:-0.264000px;}
.ws92{word-spacing:-0.250630px;}
.ws121{word-spacing:-0.238934px;}
.wsf{word-spacing:-0.216000px;}
.ws125{word-spacing:-0.205436px;}
.ws8d{word-spacing:-0.198000px;}
.ws12a{word-spacing:-0.176990px;}
.ws1b7{word-spacing:-0.162000px;}
.ws11b{word-spacing:-0.158028px;}
.ws10f{word-spacing:-0.157394px;}
.ws12f{word-spacing:-0.154867px;}
.ws127{word-spacing:-0.132741px;}
.ws84{word-spacing:-0.132000px;}
.wsb{word-spacing:-0.111318px;}
.ws19{word-spacing:-0.108000px;}
.ws123{word-spacing:-0.094817px;}
.wsdc{word-spacing:-0.079645px;}
.ws59{word-spacing:-0.066000px;}
.ws11e{word-spacing:-0.063211px;}
.ws135{word-spacing:-0.052465px;}
.ws115{word-spacing:-0.047408px;}
.ws113{word-spacing:-0.042351px;}
.ws11c{word-spacing:-0.031606px;}
.ws124{word-spacing:-0.015803px;}
.wsc{word-spacing:0.000000px;}
.ws128{word-spacing:0.026548px;}
.ws117{word-spacing:0.031606px;}
.ws18c{word-spacing:0.054000px;}
.ws8f{word-spacing:0.066000px;}
.ws95{word-spacing:0.108000px;}
.ws1cd{word-spacing:0.120000px;}
.ws114{word-spacing:0.127053px;}
.ws57{word-spacing:0.132000px;}
.ws130{word-spacing:0.154867px;}
.ws11f{word-spacing:0.158028px;}
.ws1b5{word-spacing:0.162000px;}
.ws86{word-spacing:0.198000px;}
.ws12b{word-spacing:0.199114px;}
.ws122{word-spacing:0.212386px;}
.ws1b4{word-spacing:0.216000px;}
.ws131{word-spacing:0.221238px;}
.ws134{word-spacing:0.252845px;}
.ws3d{word-spacing:0.264000px;}
.ws12d{word-spacing:0.287609px;}
.ws119{word-spacing:0.300253px;}
.ws11a{word-spacing:0.316056px;}
.ws1a{word-spacing:0.324000px;}
.ws116{word-spacing:0.347662px;}
.ws9a{word-spacing:0.396000px;}
.wsd{word-spacing:0.408000px;}
.ws77{word-spacing:0.432000px;}
.ws87{word-spacing:0.462000px;}
.ws16c{word-spacing:0.486000px;}
.ws129{word-spacing:0.486724px;}
.ws151{word-spacing:0.528000px;}
.ws10a{word-spacing:0.568901px;}
.ws145{word-spacing:0.594000px;}
.ws10c{word-spacing:0.600506px;}
.wsb7{word-spacing:0.624000px;}
.ws19f{word-spacing:0.648000px;}
.ws5f{word-spacing:0.660000px;}
.ws126{word-spacing:0.663718px;}
.ws10{word-spacing:0.691200px;}
.ws1b8{word-spacing:0.702000px;}
.ws38{word-spacing:0.726000px;}
.ws19a{word-spacing:0.756000px;}
.ws3c{word-spacing:0.792000px;}
.ws42{word-spacing:0.858000px;}
.ws132{word-spacing:0.862828px;}
.ws78{word-spacing:0.864000px;}
.ws1e{word-spacing:0.918000px;}
.ws54{word-spacing:0.924000px;}
.ws189{word-spacing:0.972000px;}
.ws26{word-spacing:0.990000px;}
.ws1d{word-spacing:1.020000px;}
.ws7c{word-spacing:1.056000px;}
.ws16b{word-spacing:1.080000px;}
.ws2d{word-spacing:1.188000px;}
.ws18{word-spacing:1.242000px;}
.ws20{word-spacing:1.254000px;}
.ws91{word-spacing:1.320000px;}
.ws93{word-spacing:1.350000px;}
.ws6d{word-spacing:1.386000px;}
.ws15{word-spacing:1.404000px;}
.ws48{word-spacing:1.452000px;}
.ws1a7{word-spacing:1.458000px;}
.ws171{word-spacing:1.512000px;}
.ws187{word-spacing:1.566000px;}
.ws6b{word-spacing:1.584000px;}
.ws1af{word-spacing:1.620000px;}
.ws156{word-spacing:1.650000px;}
.wsb5{word-spacing:1.674000px;}
.ws1bc{word-spacing:1.728000px;}
.ws70{word-spacing:1.782000px;}
.ws169{word-spacing:1.836000px;}
.ws144{word-spacing:1.848000px;}
.ws180{word-spacing:1.890000px;}
.ws3b{word-spacing:1.914000px;}
.ws166{word-spacing:1.944000px;}
.wse{word-spacing:1.980000px;}
.ws177{word-spacing:1.998000px;}
.ws159{word-spacing:2.046000px;}
.ws182{word-spacing:2.052000px;}
.ws18e{word-spacing:2.106000px;}
.ws14d{word-spacing:2.112000px;}
.ws14{word-spacing:2.160000px;}
.ws31{word-spacing:2.178000px;}
.ws173{word-spacing:2.214000px;}
.ws45{word-spacing:2.244000px;}
.ws6a{word-spacing:2.310000px;}
.ws17{word-spacing:2.322000px;}
.ws67{word-spacing:2.376000px;}
.ws184{word-spacing:2.430000px;}
.wsa0{word-spacing:2.442000px;}
.ws1bd{word-spacing:2.484000px;}
.ws8a{word-spacing:2.508000px;}
.ws52{word-spacing:2.574000px;}
.ws111{word-spacing:2.592000px;}
.ws4c{word-spacing:2.640000px;}
.ws192{word-spacing:2.646000px;}
.ws1a9{word-spacing:2.700000px;}
.ws43{word-spacing:2.706000px;}
.ws24{word-spacing:2.772000px;}
.wsa6{word-spacing:2.838000px;}
.ws37{word-spacing:2.904000px;}
.ws1a3{word-spacing:2.916000px;}
.ws30{word-spacing:2.970000px;}
.ws1c2{word-spacing:3.024000px;}
.ws49{word-spacing:3.036000px;}
.ws178{word-spacing:3.078000px;}
.ws58{word-spacing:3.102000px;}
.ws170{word-spacing:3.132000px;}
.ws88{word-spacing:3.168000px;}
.ws1a4{word-spacing:3.186000px;}
.ws21{word-spacing:3.234000px;}
.ws41{word-spacing:3.300000px;}
.ws66{word-spacing:3.366000px;}
.ws13b{word-spacing:3.402000px;}
.ws14a{word-spacing:3.432000px;}
.ws80{word-spacing:3.498000px;}
.ws17a{word-spacing:3.510000px;}
.ws36{word-spacing:3.564000px;}
.ws186{word-spacing:3.618000px;}
.ws44{word-spacing:3.630000px;}
.ws4b{word-spacing:3.762000px;}
.ws176{word-spacing:3.780000px;}
.ws1aa{word-spacing:3.888000px;}
.ws55{word-spacing:3.894000px;}
.ws3f{word-spacing:3.960000px;}
.ws5c{word-spacing:4.026000px;}
.ws185{word-spacing:4.050000px;}
.ws39{word-spacing:4.092000px;}
.ws16{word-spacing:4.104000px;}
.ws13c{word-spacing:4.158000px;}
.ws19d{word-spacing:4.212000px;}
.ws9e{word-spacing:4.224000px;}
.ws183{word-spacing:4.266000px;}
.ws34{word-spacing:4.290000px;}
.ws94{word-spacing:4.320000px;}
.ws89{word-spacing:4.356000px;}
.ws112{word-spacing:4.374000px;}
.ws4f{word-spacing:4.488000px;}
.ws165{word-spacing:4.536000px;}
.ws62{word-spacing:4.554000px;}
.wsa1{word-spacing:4.620000px;}
.ws181{word-spacing:4.644000px;}
.ws140{word-spacing:4.686000px;}
.ws1c1{word-spacing:4.698000px;}
.ws8e{word-spacing:4.752000px;}
.ws148{word-spacing:4.818000px;}
.ws17d{word-spacing:4.860000px;}
.ws74{word-spacing:4.884000px;}
.ws174{word-spacing:4.914000px;}
.ws40{word-spacing:4.950000px;}
.ws193{word-spacing:4.968000px;}
.ws47{word-spacing:5.016000px;}
.ws1c0{word-spacing:5.022000px;}
.ws25{word-spacing:5.082000px;}
.ws1c{word-spacing:5.130000px;}
.ws28{word-spacing:5.214000px;}
.ws152{word-spacing:5.280000px;}
.ws1a8{word-spacing:5.292000px;}
.ws8c{word-spacing:5.346000px;}
.ws1ba{word-spacing:5.400000px;}
.wsa7{word-spacing:5.412000px;}
.wsa9{word-spacing:5.478000px;}
.ws29{word-spacing:5.544000px;}
.ws172{word-spacing:5.562000px;}
.ws56{word-spacing:5.610000px;}
.ws168{word-spacing:5.616000px;}
.wsaa{word-spacing:5.676000px;}
.ws2e{word-spacing:5.742000px;}
.ws1bb{word-spacing:5.778000px;}
.ws153{word-spacing:5.808000px;}
.ws15e{word-spacing:5.832000px;}
.ws9f{word-spacing:5.874000px;}
.ws157{word-spacing:6.006000px;}
.ws73{word-spacing:6.138000px;}
.ws16e{word-spacing:6.156000px;}
.ws1ab{word-spacing:6.264000px;}
.ws1cc{word-spacing:6.318000px;}
.ws141{word-spacing:6.336000px;}
.ws1a5{word-spacing:6.372000px;}
.ws7d{word-spacing:6.402000px;}
.wsb3{word-spacing:6.468000px;}
.ws194{word-spacing:6.534000px;}
.ws2c{word-spacing:6.600000px;}
.ws1b2{word-spacing:6.696000px;}
.ws9d{word-spacing:6.798000px;}
.ws196{word-spacing:6.858000px;}
.ws1f{word-spacing:6.864000px;}
.ws1c3{word-spacing:6.912000px;}
.ws12{word-spacing:6.966000px;}
.ws14e{word-spacing:7.062000px;}
.ws143{word-spacing:7.128000px;}
.ws17c{word-spacing:7.182000px;}
.ws7e{word-spacing:7.194000px;}
.ws16f{word-spacing:7.236000px;}
.ws2a{word-spacing:7.260000px;}
.ws2f{word-spacing:7.326000px;}
.ws6f{word-spacing:7.392000px;}
.ws22{word-spacing:7.458000px;}
.ws19c{word-spacing:7.506000px;}
.ws72{word-spacing:7.524000px;}
.ws9c{word-spacing:7.590000px;}
.ws1b9{word-spacing:7.614000px;}
.ws71{word-spacing:7.722000px;}
.ws14b{word-spacing:7.920000px;}
.ws13a{word-spacing:8.052000px;}
.ws63{word-spacing:8.118000px;}
.ws167{word-spacing:8.154000px;}
.ws8b{word-spacing:8.250000px;}
.ws11{word-spacing:8.262000px;}
.ws142{word-spacing:8.316000px;}
.ws13e{word-spacing:8.382000px;}
.wsb2{word-spacing:8.448000px;}
.ws6c{word-spacing:8.514000px;}
.ws81{word-spacing:8.580000px;}
.ws195{word-spacing:8.694000px;}
.ws138{word-spacing:8.712000px;}
.wsa4{word-spacing:8.844000px;}
.wsa5{word-spacing:8.910000px;}
.wsa2{word-spacing:8.976000px;}
.ws4d{word-spacing:9.042000px;}
.ws13d{word-spacing:9.108000px;}
.ws154{word-spacing:9.174000px;}
.ws35{word-spacing:9.570000px;}
.ws158{word-spacing:9.636000px;}
.ws27{word-spacing:9.768000px;}
.ws19b{word-spacing:9.828000px;}
.ws9b{word-spacing:9.834000px;}
.ws162{word-spacing:10.098000px;}
.ws7b{word-spacing:10.824000px;}
.ws76{word-spacing:12.012000px;}
.ws1c7{word-spacing:12.474000px;}
.ws139{word-spacing:12.804000px;}
.ws1c6{word-spacing:13.230000px;}
.ws160{word-spacing:13.284000px;}
.ws161{word-spacing:16.470000px;}
.ws155{word-spacing:17.160000px;}
.ws1ac{word-spacing:24.462000px;}
.ws164{word-spacing:29.862000px;}
.wsb0{word-spacing:33.267000px;}
.ws1{word-spacing:33.645441px;}
.ws3{word-spacing:33.650535px;}
.ws2{word-spacing:33.651135px;}
.ws1ad{word-spacing:48.870000px;}
.ws15f{word-spacing:68.742000px;}
.wsae{word-spacing:139.815000px;}
.wsb1{word-spacing:140.907000px;}
.wsad{word-spacing:143.013000px;}
.wsab{word-spacing:214.656000px;}
.wsac{word-spacing:265.629000px;}
.ws69{word-spacing:505.479000px;}
.ws10e{word-spacing:1026.469899px;}
._8{margin-left:-11.088000px;}
._4a{margin-left:-9.844200px;}
._6{margin-left:-8.829000px;}
._17{margin-left:-7.801200px;}
._7{margin-left:-6.679800px;}
._5{margin-left:-4.708800px;}
._1{margin-left:-3.029400px;}
._0{margin-left:-1.285200px;}
._3{width:1.060800px;}
._2{width:2.070600px;}
._16{width:4.092000px;}
._a{width:7.854000px;}
._15{width:10.824000px;}
._9{width:34.776000px;}
._4{width:36.369600px;}
._49{width:43.195800px;}
._27{width:47.073000px;}
._3e{width:49.530000px;}
._3f{width:51.246000px;}
._2e{width:54.561000px;}
._3a{width:57.330000px;}
._22{width:62.049000px;}
._26{width:65.793000px;}
._21{width:73.320000px;}
._33{width:79.521000px;}
._2d{width:80.769000px;}
._25{width:82.797000px;}
._3d{width:86.303400px;}
._24{width:88.569000px;}
._18{width:90.246000px;}
._20{width:96.057000px;}
._2c{width:97.773000px;}
._36{width:99.177000px;}
._1e{width:100.345200px;}
._47{width:103.192200px;}
._3c{width:104.676000px;}
._38{width:106.665000px;}
._32{width:107.757000px;}
._34{width:109.551000px;}
._3b{width:110.561400px;}
._28{width:112.905000px;}
._29{width:117.078000px;}
._37{width:119.145000px;}
._23{width:120.393000px;}
._31{width:123.630000px;}
._2f{width:126.867000px;}
._2b{width:131.196000px;}
._1f{width:138.684000px;}
._41{width:140.907000px;}
._1a{width:142.272000px;}
._1d{width:146.367000px;}
._43{width:154.438200px;}
._30{width:162.979200px;}
._2a{width:164.721600px;}
._19{width:170.389200px;}
._42{width:174.135000px;}
._46{width:183.688200px;}
._1c{width:188.097000px;}
._45{width:193.635000px;}
._35{width:198.120000px;}
._40{width:218.818200px;}
._b{width:222.807000px;}
._10{width:227.253000px;}
._44{width:233.721600px;}
._48{width:235.233600px;}
._39{width:242.060400px;}
._14{width:253.539000px;}
._13{width:263.289000px;}
._11{width:273.039000px;}
._1b{width:314.418000px;}
._d{width:334.776000px;}
._f{width:415.857000px;}
._12{width:469.404000px;}
._e{width:479.154000px;}
._c{width:541.045200px;}
.fc9{color:rgb(64,62,158);}
.fc7{color:rgb(71,78,170);}
.fc6{color:rgb(205,30,37);}
.fc3{color:rgb(67,33,78);}
.fc5{color:rgb(54,63,158);}
.fc1{color:rgb(59,28,68);}
.fc8{color:rgb(68,186,59);}
.fc4{color:rgb(45,157,64);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:15.802800px;}
.fs9{font-size:22.096800px;}
.fs10{font-size:22.123800px;}
.fsf{font-size:26.548200px;}
.fs13{font-size:31.482000px;}
.fs11{font-size:31.605600px;}
.fs3{font-size:38.478000px;}
.fsb{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:42.351000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs12{font-size:52.464600px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.fsa{font-size:111.318000px;}
.fsc{font-size:125.314800px;}
.y0{bottom:0.000000px;}
.y3d{bottom:1.204950px;}
.y211{bottom:1.795650px;}
.y3e{bottom:45.774196px;}
.y1{bottom:68.124750px;}
.y40{bottom:71.212050px;}
.y41{bottom:75.040050px;}
.y3b{bottom:94.655850px;}
.y2c4{bottom:112.790850px;}
.y73{bottom:112.862850px;}
.yf2{bottom:112.879350px;}
.ya1{bottom:112.886250px;}
.yc6{bottom:112.924200px;}
.y294{bottom:113.054850px;}
.y100{bottom:113.069700px;}
.y26b{bottom:113.078850px;}
.yfc{bottom:120.478350px;}
.y258{bottom:120.496350px;}
.y2c3{bottom:133.796850px;}
.y72{bottom:133.867350px;}
.yf1{bottom:133.883850px;}
.ya0{bottom:133.890750px;}
.yc5{bottom:133.928700px;}
.y293{bottom:134.060850px;}
.yff{bottom:134.074200px;}
.y2a{bottom:138.185700px;}
.y10{bottom:138.219750px;}
.y26a{bottom:139.937100px;}
.yfb{bottom:140.282850px;}
.y257{bottom:140.300850px;}
.yf{bottom:152.616150px;}
.y2c2{bottom:154.802850px;}
.y71{bottom:154.871850px;}
.yf0{bottom:154.888350px;}
.y9f{bottom:154.895250px;}
.yc4{bottom:154.933200px;}
.y292{bottom:155.066850px;}
.yfe{bottom:155.078700px;}
.y2de{bottom:158.047350px;}
.y29{bottom:159.190200px;}
.yfa{bottom:160.087350px;}
.ye{bottom:167.012550px;}
.y269{bottom:169.441050px;}
.y2c1{bottom:175.808850px;}
.y70{bottom:175.876350px;}
.yef{bottom:175.892850px;}
.y9e{bottom:175.899750px;}
.yc3{bottom:175.937700px;}
.y2dd{bottom:176.042850px;}
.y291{bottom:176.072850px;}
.yf9{bottom:179.891850px;}
.y28{bottom:180.194700px;}
.yd{bottom:181.412550px;}
.y2c0{bottom:196.814850px;}
.y6f{bottom:196.880850px;}
.yee{bottom:196.897350px;}
.y9d{bottom:196.904250px;}
.yc2{bottom:196.942200px;}
.y2dc{bottom:197.048850px;}
.y290{bottom:197.078850px;}
.y139{bottom:197.124450px;}
.y13c{bottom:199.144650px;}
.yf8{bottom:199.696350px;}
.y27{bottom:201.199200px;}
.y138{bottom:213.163200px;}
.y2bf{bottom:217.820850px;}
.y6e{bottom:217.885350px;}
.yed{bottom:217.901850px;}
.y9c{bottom:217.908750px;}
.yc1{bottom:217.946700px;}
.y268{bottom:218.015850px;}
.y2db{bottom:218.054850px;}
.y13b{bottom:218.949150px;}
.yf7{bottom:219.500850px;}
.y26{bottom:222.203700px;}
.y38{bottom:224.471250px;}
.y137{bottom:229.201950px;}
.y28f{bottom:232.440900px;}
.y13a{bottom:238.753650px;}
.y2be{bottom:238.826850px;}
.y6d{bottom:238.889850px;}
.yec{bottom:238.906350px;}
.y9b{bottom:238.913250px;}
.yc0{bottom:238.951200px;}
.y267{bottom:239.020350px;}
.y2da{bottom:239.060850px;}
.y37{bottom:242.466750px;}
.y25{bottom:243.208200px;}
.y136{bottom:245.240700px;}
.y210{bottom:259.509000px;}
.y2bd{bottom:259.832850px;}
.y6c{bottom:259.894350px;}
.yeb{bottom:259.910850px;}
.y9a{bottom:259.917750px;}
.ybf{bottom:259.955700px;}
.y266{bottom:260.024850px;}
.y2d9{bottom:260.066850px;}
.y36{bottom:260.462250px;}
.y135{bottom:261.279450px;}
.y24{bottom:264.212700px;}
.y134{bottom:277.318200px;}
.y35{bottom:278.457750px;}
.y2bc{bottom:280.838850px;}
.y6b{bottom:280.898850px;}
.yea{bottom:280.915350px;}
.y99{bottom:280.922250px;}
.ybe{bottom:280.960200px;}
.y265{bottom:281.029350px;}
.y28e{bottom:281.072850px;}
.y226{bottom:284.325261px;}
.y21a{bottom:291.344037px;}
.y133{bottom:293.356950px;}
.y34{bottom:296.453250px;}
.y23{bottom:298.004400px;}
.y241{bottom:298.390467px;}
.y2bb{bottom:301.844850px;}
.y6a{bottom:301.903350px;}
.ye9{bottom:301.919850px;}
.y98{bottom:301.926750px;}
.ybd{bottom:301.964700px;}
.y264{bottom:302.033850px;}
.y28d{bottom:302.078850px;}
.y245{bottom:305.425836px;}
.y132{bottom:309.395700px;}
.y228{bottom:312.450142px;}
.y33{bottom:314.448750px;}
.y217{bottom:319.468918px;}
.y2ba{bottom:322.850850px;}
.y69{bottom:322.907850px;}
.ye8{bottom:322.924350px;}
.y97{bottom:322.931250px;}
.ybc{bottom:322.969200px;}
.y263{bottom:323.038350px;}
.y131{bottom:325.434450px;}
.y240{bottom:326.515348px;}
.y28c{bottom:328.529250px;}
.y32{bottom:332.444250px;}
.y232{bottom:333.539654px;}
.y2d8{bottom:339.513600px;}
.y242{bottom:340.575023px;}
.y130{bottom:341.473200px;}
.y2b9{bottom:343.856850px;}
.y68{bottom:343.912350px;}
.ye7{bottom:343.928850px;}
.y96{bottom:343.935750px;}
.ybb{bottom:343.973700px;}
.y262{bottom:344.042850px;}
.y23c{bottom:347.604860px;}
.y31{bottom:350.439750px;}
.y22b{bottom:354.634698px;}
.y12f{bottom:357.511950px;}
.y21f{bottom:361.664535px;}
.y2b8{bottom:364.862850px;}
.y67{bottom:364.916850px;}
.ye6{bottom:364.933350px;}
.yba{bottom:364.978200px;}
.y261{bottom:365.047350px;}
.y28b{bottom:365.072850px;}
.y30{bottom:368.435250px;}
.y224{bottom:368.694373px;}
.y22{bottom:370.023600px;}
.y2d7{bottom:371.811000px;}
.y12e{bottom:373.550700px;}
.y230{bottom:375.724210px;}
.y95{bottom:379.295250px;}
.y216{bottom:382.748517px;}
.y2b7{bottom:385.868850px;}
.y66{bottom:385.921350px;}
.ye5{bottom:385.937850px;}
.yb9{bottom:385.982700px;}
.y260{bottom:386.051850px;}
.y28a{bottom:386.072850px;}
.y2f{bottom:386.430750px;}
.y12d{bottom:389.589450px;}
.y223{bottom:389.789416px;}
.y21{bottom:389.828100px;}
.y23e{bottom:396.824784px;}
.yf6{bottom:397.254231px;}
.y231{bottom:403.849091px;}
.y12c{bottom:405.628200px;}
.y2b6{bottom:406.874850px;}
.y65{bottom:406.925850px;}
.ye4{bottom:406.942350px;}
.yb8{bottom:406.987200px;}
.y25f{bottom:407.056350px;}
.y289{bottom:407.072850px;}
.y229{bottom:410.884459px;}
.y235{bottom:417.914297px;}
.y2e{bottom:421.436250px;}
.y12b{bottom:421.666950px;}
.y236{bottom:424.944134px;}
.y2b5{bottom:427.880850px;}
.y64{bottom:427.930350px;}
.y94{bottom:427.937250px;}
.ye3{bottom:427.946850px;}
.yb7{bottom:427.991700px;}
.y25e{bottom:428.060850px;}
.y288{bottom:428.072850px;}
.y20{bottom:430.829400px;}
.y2d6{bottom:431.047350px;}
.y219{bottom:431.968441px;}
.y12a{bottom:437.705700px;}
.y220{bottom:439.009340px;}
.y2d{bottom:439.436250px;}
.y248{bottom:444.844650px;}
.y22e{bottom:446.033646px;}
.y2b4{bottom:448.886850px;}
.y63{bottom:448.934850px;}
.y93{bottom:448.941750px;}
.ye2{bottom:448.951350px;}
.yb6{bottom:448.996200px;}
.y2d5{bottom:449.042850px;}
.y25d{bottom:449.065350px;}
.y287{bottom:449.072850px;}
.y1f{bottom:450.633900px;}
.y22c{bottom:453.069015px;}
.y129{bottom:453.744450px;}
.y2c{bottom:457.436250px;}
.y21e{bottom:460.098852px;}
.yfd{bottom:463.306350px;}
.y237{bottom:467.128690px;}
.y2b3{bottom:469.892850px;}
.y62{bottom:469.939350px;}
.y92{bottom:469.946250px;}
.ye1{bottom:469.955850px;}
.yb5{bottom:470.000700px;}
.y2d4{bottom:470.048850px;}
.y25c{bottom:470.069850px;}
.y286{bottom:470.072850px;}
.y128{bottom:470.212200px;}
.y1e{bottom:470.438400px;}
.y21d{bottom:474.158527px;}
.y2b{bottom:475.436250px;}
.y213{bottom:481.182834px;}
.y127{bottom:487.048650px;}
.y227{bottom:488.229264px;}
.y1d{bottom:490.242900px;}
.y2b2{bottom:490.898850px;}
.y61{bottom:490.943850px;}
.y91{bottom:490.950750px;}
.ye0{bottom:490.960350px;}
.yb4{bottom:491.005200px;}
.y2d3{bottom:491.054850px;}
.y285{bottom:491.072850px;}
.y25b{bottom:491.074350px;}
.y215{bottom:495.248040px;}
.y225{bottom:502.288939px;}
.y126{bottom:503.896650px;}
.y222{bottom:509.318776px;}
.y1c{bottom:510.047400px;}
.y2b1{bottom:511.904850px;}
.y60{bottom:511.948350px;}
.y90{bottom:511.955250px;}
.ydf{bottom:511.964850px;}
.yb3{bottom:512.009700px;}
.y2d2{bottom:512.060850px;}
.y284{bottom:512.072850px;}
.y25a{bottom:512.078850px;}
.y234{bottom:516.348614px;}
.y125{bottom:520.744650px;}
.y21b{bottom:523.372920px;}
.y1b{bottom:529.851900px;}
.y23b{bottom:530.413820px;}
.y2b0{bottom:532.910850px;}
.y5f{bottom:532.952850px;}
.y8f{bottom:532.959750px;}
.yde{bottom:532.969350px;}
.yb2{bottom:533.014200px;}
.y2d1{bottom:533.066850px;}
.y283{bottom:533.072850px;}
.y247{bottom:533.227620px;}
.y21c{bottom:537.438126px;}
.y124{bottom:537.592650px;}
.y246{bottom:542.709300px;}
.y233{bottom:544.473495px;}
.y259{bottom:547.441050px;}
.y1a{bottom:549.656400px;}
.y22d{bottom:551.503332px;}
.y2af{bottom:553.916850px;}
.y5e{bottom:553.957350px;}
.y8e{bottom:553.964250px;}
.ydd{bottom:553.973850px;}
.y2d0{bottom:554.072850px;}
.y282{bottom:554.078850px;}
.y123{bottom:554.440650px;}
.y22a{bottom:558.538700px;}
.y214{bottom:565.557476px;}
.yb1{bottom:568.373700px;}
.y19{bottom:569.460900px;}
.y122{bottom:571.288650px;}
.y239{bottom:572.598375px;}
.y2ae{bottom:574.922850px;}
.y5d{bottom:574.961850px;}
.y8d{bottom:574.968750px;}
.ydc{bottom:574.978350px;}
.y2cf{bottom:575.078850px;}
.y244{bottom:579.639275px;}
.y281{bottom:580.529400px;}
.y121{bottom:583.290900px;}
.y221{bottom:588.134814px;}
.y18{bottom:589.265400px;}
.y22f{bottom:593.687888px;}
.y2ad{bottom:595.928850px;}
.y5c{bottom:595.966350px;}
.y8c{bottom:595.973250px;}
.ydb{bottom:595.982850px;}
.y256{bottom:596.069850px;}
.yf5{bottom:596.818050px;}
.y249{bottom:599.010300px;}
.y120{bottom:600.138900px;}
.y23a{bottom:600.723256px;}
.y23d{bottom:607.758624px;}
.y17{bottom:609.069900px;}
.y2ce{bottom:609.513600px;}
.y212{bottom:614.777400px;}
.y2ac{bottom:616.934850px;}
.y5b{bottom:616.970850px;}
.y8b{bottom:616.977750px;}
.y11f{bottom:616.986900px;}
.yda{bottom:616.987350px;}
.yb0{bottom:617.015700px;}
.y280{bottom:617.060850px;}
.y255{bottom:617.074350px;}
.y2f1{bottom:620.047350px;}
.y243{bottom:621.823830px;}
.y16{bottom:628.874400px;}
.y23f{bottom:629.329329px;}
.y2cd{bottom:630.513600px;}
.y11e{bottom:633.834900px;}
.y238{bottom:635.877974px;}
.y2ab{bottom:637.940850px;}
.y5a{bottom:637.975350px;}
.y8a{bottom:637.982250px;}
.yd9{bottom:637.991850px;}
.yaf{bottom:638.020200px;}
.y2f0{bottom:638.042850px;}
.y27f{bottom:638.066850px;}
.y254{bottom:638.078850px;}
.y218{bottom:642.902281px;}
.y15{bottom:648.678900px;}
.y11d{bottom:650.682900px;}
.y2cc{bottom:651.513600px;}
.y2aa{bottom:658.946850px;}
.y59{bottom:658.979850px;}
.y89{bottom:658.986750px;}
.yd8{bottom:658.996350px;}
.yae{bottom:659.024700px;}
.y2ef{bottom:659.048850px;}
.y27e{bottom:659.072850px;}
.y11c{bottom:667.530900px;}
.y14{bottom:668.483400px;}
.y24b{bottom:670.460700px;}
.y253{bottom:673.441050px;}
.y2a9{bottom:679.952850px;}
.y58{bottom:679.984350px;}
.y88{bottom:679.991250px;}
.yd7{bottom:680.000850px;}
.yad{bottom:680.029200px;}
.y2ee{bottom:680.054850px;}
.y27d{bottom:680.078850px;}
.y2cb{bottom:683.811150px;}
.y11b{bottom:684.378900px;}
.y13{bottom:688.287900px;}
.y2a8{bottom:700.958850px;}
.y57{bottom:700.988850px;}
.y87{bottom:700.995750px;}
.yd6{bottom:701.005350px;}
.yac{bottom:701.033700px;}
.y2ed{bottom:701.060850px;}
.y11a{bottom:701.226900px;}
.y27c{bottom:706.529400px;}
.y119{bottom:713.229150px;}
.y141{bottom:717.626400px;}
.y12{bottom:719.385300px;}
.y2a7{bottom:721.964850px;}
.y56{bottom:721.993350px;}
.y86{bottom:722.000250px;}
.yd5{bottom:722.009850px;}
.yab{bottom:722.038200px;}
.y2ec{bottom:722.066850px;}
.y199{bottom:722.785950px;}
.y118{bottom:730.077150px;}
.y178{bottom:733.894906px;}
.y19b{bottom:736.605757px;}
.y1f4{bottom:739.955207px;}
.y181{bottom:740.765173px;}
.y2a6{bottom:742.970850px;}
.y55{bottom:742.997850px;}
.y85{bottom:743.004750px;}
.y27b{bottom:743.012850px;}
.yd4{bottom:743.014350px;}
.yaa{bottom:743.042700px;}
.y2ca{bottom:743.042850px;}
.y2eb{bottom:743.072850px;}
.y1a8{bottom:743.294292px;}
.y155{bottom:744.351245px;}
.y1f1{bottom:746.643742px;}
.y117{bottom:746.925150px;}
.y167{bottom:749.048628px;}
.y205{bottom:751.428040px;}
.y1a7{bottom:753.325119px;}
.y15b{bottom:753.568229px;}
.y1f0{bottom:756.674570px;}
.y164{bottom:758.158942px;}
.y1ce{bottom:760.590457px;}
.y14a{bottom:762.413846px;}
.y1eb{bottom:763.639654px;}
.y116{bottom:763.773150px;}
.y2a5{bottom:763.976850px;}
.y54{bottom:764.002350px;}
.y84{bottom:764.009250px;}
.yd3{bottom:764.018850px;}
.ya9{bottom:764.047200px;}
.y2c9{bottom:764.048850px;}
.y2ea{bottom:764.078850px;}
.y14d{bottom:766.676651px;}
.y1e5{bottom:767.365164px;}
.y1bf{bottom:770.036580px;}
.y156{bottom:772.017998px;}
.y1c2{bottom:773.382823px;}
.y20f{bottom:774.936611px;}
.y1c7{bottom:776.725115px;}
.y180{bottom:778.055831px;}
.y1ad{bottom:780.071358px;}
.y115{bottom:780.621150px;}
.y153{bottom:781.898698px;}
.y20e{bottom:782.834700px;}
.y209{bottom:783.408956px;}
.y2a4{bottom:784.982850px;}
.y53{bottom:785.006850px;}
.y83{bottom:785.013750px;}
.yd2{bottom:785.023350px;}
.y27a{bottom:785.024850px;}
.ya8{bottom:785.051700px;}
.y2c8{bottom:785.054850px;}
.y159{bottom:785.948166px;}
.y1d6{bottom:786.755943px;}
.y1d3{bottom:790.102186px;}
.y151{bottom:790.613942px;}
.y1ea{bottom:793.451636px;}
.y154{bottom:794.414516px;}
.y1f6{bottom:796.793928px;}
.y114{bottom:797.469150px;}
.y16f{bottom:799.285729px;}
.y1b6{bottom:800.125112px;}
.y2e9{bottom:801.513600px;}
.yf4{bottom:802.138050px;}
.y17b{bottom:802.818818px;}
.y1d2{bottom:803.475305px;}
.y2a3{bottom:805.988850px;}
.y52{bottom:806.011350px;}
.y82{bottom:806.018250px;}
.y252{bottom:806.027850px;}
.y279{bottom:806.030850px;}
.ya7{bottom:806.056200px;}
.y2c7{bottom:806.060850px;}
.y1b9{bottom:806.813647px;}
.y189{bottom:807.788799px;}
.y113{bottom:809.471400px;}
.y1bd{bottom:810.159889px;}
.y173{bottom:812.240074px;}
.y208{bottom:813.501438px;}
.y192{bottom:816.199839px;}
.yc{bottom:816.666900px;}
.y1c3{bottom:816.848425px;}
.yd1{bottom:820.382850px;}
.y176{bottom:820.569313px;}
.y1d1{bottom:821.830257px;}
.y2e8{bottom:822.513600px;}
.y201{bottom:823.536216px;}
.y15f{bottom:825.123307px;}
.y112{bottom:826.319400px;}
.y1af{bottom:826.879252px;}
.y2a2{bottom:826.994850px;}
.y51{bottom:827.015850px;}
.y81{bottom:827.022750px;}
.y251{bottom:827.032350px;}
.y278{bottom:827.036850px;}
.ya6{bottom:827.060700px;}
.y2c6{bottom:827.066850px;}
.y150{bottom:829.678464px;}
.y1be{bottom:830.221544px;}
.y1aa{bottom:833.567787px;}
.y188{bottom:834.230834px;}
.yb{bottom:834.666900px;}
.y1b1{bottom:836.388587px;}
.y15c{bottom:838.788778px;}
.y19d{bottom:840.260273px;}
.y111{bottom:843.167400px;}
.y14f{bottom:843.347886px;}
.y1e4{bottom:843.771702px;}
.y1e8{bottom:847.279923px;}
.y157{bottom:847.899092px;}
.y2a1{bottom:848.000850px;}
.y50{bottom:848.020350px;}
.y80{bottom:848.027250px;}
.y250{bottom:848.036850px;}
.y277{bottom:848.042850px;}
.ya5{bottom:848.065200px;}
.y2c5{bottom:848.072850px;}
.y1e0{bottom:850.286406px;}
.ya{bottom:852.666900px;}
.y203{bottom:853.628698px;}
.y18e{bottom:853.960630px;}
.y2e7{bottom:854.811000px;}
.y1e3{bottom:856.974941px;}
.y143{bottom:858.099800px;}
.y197{bottom:859.762050px;}
.y110{bottom:860.015400px;}
.y1b8{bottom:860.310075px;}
.y163{bottom:862.046549px;}
.y1a1{bottom:863.664220px;}
.y1fd{bottom:867.001818px;}
.y158{bottom:867.016530px;}
.y2a0{bottom:869.006850px;}
.y4f{bottom:869.024850px;}
.y7f{bottom:869.031750px;}
.y24f{bottom:869.041350px;}
.y276{bottom:869.048850px;}
.ya4{bottom:869.069700px;}
.y1d7{bottom:870.348061px;}
.y9{bottom:870.666900px;}
.y186{bottom:871.316055px;}
.y24a{bottom:871.867950px;}
.y1fc{bottom:873.690353px;}
.y16a{bottom:875.526337px;}
.y10f{bottom:876.863400px;}
.y20b{bottom:877.028694px;}
.y165{bottom:879.793093px;}
.y1f3{bottom:880.386789px;}
.y1d5{bottom:883.717973px;}
.y193{bottom:883.851626px;}
.y1ca{bottom:887.064216px;}
.y172{bottom:888.500436px;}
.y8{bottom:888.666900px;}
.y29f{bottom:890.012850px;}
.y4e{bottom:890.029350px;}
.y7e{bottom:890.036250px;}
.y24e{bottom:890.045850px;}
.y275{bottom:890.054850px;}
.y1f5{bottom:890.066004px;}
.ya3{bottom:890.074200px;}
.y20d{bottom:891.387150px;}
.y14e{bottom:893.462516px;}
.y10e{bottom:893.711400px;}
.y1a0{bottom:893.756701px;}
.y1bc{bottom:896.929114px;}
.y17a{bottom:898.868237px;}
.y1dc{bottom:900.440542px;}
.y17f{bottom:902.573993px;}
.y19c{bottom:903.787529px;}
.y7{bottom:906.666900px;}
.y1e1{bottom:907.334514px;}
.y185{bottom:907.646692px;}
.y1a9{bottom:910.472113px;}
.y10d{bottom:910.559400px;}
.y29e{bottom:911.018850px;}
.y4d{bottom:911.033850px;}
.y7d{bottom:911.040750px;}
.y24d{bottom:911.050350px;}
.y274{bottom:911.060850px;}
.ya2{bottom:911.078700px;}
.y195{bottom:912.660130px;}
.y1b2{bottom:913.810455px;}
.y2e6{bottom:914.047350px;}
.y145{bottom:916.712385px;}
.y1bb{bottom:917.152747px;}
.y1a3{bottom:920.099969px;}
.y18c{bottom:920.794622px;}
.y1e7{bottom:923.133363px;}
.y6{bottom:924.666900px;}
.y175{bottom:926.032086px;}
.y1e2{bottom:927.190732px;}
.y10c{bottom:927.407400px;}
.y1ae{bottom:930.529817px;}
.y183{bottom:930.584456px;}
.y29d{bottom:932.024850px;}
.y4c{bottom:932.038350px;}
.y2e5{bottom:932.042850px;}
.y7c{bottom:932.045250px;}
.y273{bottom:932.066850px;}
.y1dd{bottom:933.713338px;}
.y15e{bottom:935.339936px;}
.y1e6{bottom:937.225510px;}
.y184{bottom:939.935763px;}
.y1c8{bottom:940.560644px;}
.y196{bottom:942.548250px;}
.y1ac{bottom:943.906887px;}
.y10b{bottom:944.255400px;}
.y194{bottom:944.878089px;}
.y24c{bottom:946.409850px;}
.y1f2{bottom:947.260288px;}
.y17e{bottom:948.876197px;}
.yd0{bottom:949.742100px;}
.y202{bottom:950.590728px;}
.y29c{bottom:953.030850px;}
.y4b{bottom:953.042850px;}
.y2e4{bottom:953.048850px;}
.y7b{bottom:953.049750px;}
.y272{bottom:953.072850px;}
.y18a{bottom:953.427404px;}
.y1ec{bottom:953.940922px;}
.y1c0{bottom:957.276056px;}
.y152{bottom:958.783389px;}
.y5{bottom:959.674800px;}
.y206{bottom:960.621556px;}
.y10a{bottom:961.103400px;}
.y18d{bottom:962.928837px;}
.y19f{bottom:963.972493px;}
.y149{bottom:966.352931px;}
.ycf{bottom:966.590100px;}
.y1de{bottom:967.310091px;}
.y1d9{bottom:970.656334px;}
.y174{bottom:971.986629px;}
.y1cc{bottom:973.995419px;}
.y29b{bottom:974.036850px;}
.y4a{bottom:974.047350px;}
.y7a{bottom:974.054250px;}
.y2e3{bottom:974.054850px;}
.y271{bottom:974.078850px;}
.y191{bottom:975.468359px;}
.y1ef{bottom:977.348819px;}
.y109{bottom:977.951400px;}
.y4{bottom:979.474800px;}
.y144{bottom:980.018402px;}
.y1ee{bottom:980.691112px;}
.yce{bottom:983.438100px;}
.y1c4{bottom:984.026246px;}
.y18b{bottom:984.578673px;}
.y204{bottom:987.371745px;}
.y169{bottom:989.136617px;}
.y1a6{bottom:990.718732px;}
.y16e{bottom:993.691775px;}
.y1ed{bottom:994.064231px;}
.y29a{bottom:995.042850px;}
.y49{bottom:995.051850px;}
.y79{bottom:995.058750px;}
.y2e2{bottom:995.060850px;}
.y108{bottom:995.101650px;}
.y107{bottom:997.314900px;}
.y1cf{bottom:997.399365px;}
.y177{bottom:998.252046px;}
.ycd{bottom:1000.286100px;}
.y270{bottom:1000.529250px;}
.y1b3{bottom:1000.741657px;}
.y182{bottom:1002.803252px;}
.y106{bottom:1003.320900px;}
.y1c5{bottom:1004.087900px;}
.y148{bottom:1007.357246px;}
.y1f8{bottom:1007.437351px;}
.y1fa{bottom:1010.779643px;}
.y16d{bottom:1011.916354px;}
.y1fb{bottom:1014.121935px;}
.y299{bottom:1016.048850px;}
.y48{bottom:1016.056350px;}
.y78{bottom:1016.063250px;}
.y2e1{bottom:1016.066850px;}
.y3{bottom:1016.285550px;}
.y147{bottom:1016.467560px;}
.ycc{bottom:1017.134100px;}
.y1c9{bottom:1017.464971px;}
.y1cb{bottom:1020.807263px;}
.y171{bottom:1022.061751px;}
.y207{bottom:1024.148812px;}
.y166{bottom:1026.545796px;}
.y1df{bottom:1027.495055px;}
.y1ab{bottom:1030.838090px;}
.y15d{bottom:1031.626396px;}
.ycb{bottom:1033.982100px;}
.y200{bottom:1034.179639px;}
.y142{bottom:1035.035850px;}
.y298{bottom:1037.054850px;}
.y47{bottom:1037.060850px;}
.y77{bottom:1037.067750px;}
.y2e0{bottom:1037.072850px;}
.y26f{bottom:1037.078850px;}
.y1a5{bottom:1037.530576px;}
.y105{bottom:1040.064750px;}
.y16b{bottom:1040.772266px;}
.y1b4{bottom:1040.864967px;}
.y1b5{bottom:1044.207259px;}
.y187{bottom:1045.075742px;}
.y20c{bottom:1045.914900px;}
.y1c6{bottom:1047.553502px;}
.y179{bottom:1049.267435px;}
.y2{bottom:1049.282550px;}
.y1ba{bottom:1050.895794px;}
.yca{bottom:1051.132350px;}
.y18f{bottom:1053.143072px;}
.y1b7{bottom:1054.238086px;}
.y140{bottom:1056.018354px;}
.y170{bottom:1057.475826px;}
.y1c1{bottom:1057.584329px;}
.y297{bottom:1058.060850px;}
.y46{bottom:1058.065350px;}
.y76{bottom:1058.072250px;}
.y2df{bottom:1058.078850px;}
.y104{bottom:1059.869250px;}
.y1b0{bottom:1060.930572px;}
.y190{bottom:1062.032147px;}
.y26e{bottom:1063.529250px;}
.y1da{bottom:1064.276071px;}
.y14b{bottom:1066.613795px;}
.y13f{bottom:1066.659043px;}
.y1f9{bottom:1067.622314px;}
.y19a{bottom:1070.965350px;}
.y15a{bottom:1071.172903px;}
.y1f7{bottom:1074.310849px;}
.y198{bottom:1075.374450px;}
.y162{bottom:1075.728060px;}
.y13e{bottom:1077.024450px;}
.y1d0{bottom:1077.645984px;}
.y296{bottom:1079.066850px;}
.y45{bottom:1079.069850px;}
.y103{bottom:1079.673750px;}
.yc9{bottom:1079.673900px;}
.y168{bottom:1080.287168px;}
.y19e{bottom:1080.996177px;}
.y1d8{bottom:1084.337726px;}
.y16c{bottom:1084.842325px;}
.y1db{bottom:1087.680018px;}
.y13d{bottom:1089.097200px;}
.y146{bottom:1089.393531px;}
.y1a2{bottom:1091.027005px;}
.y75{bottom:1092.029250px;}
.y1d4{bottom:1094.365346px;}
.y14c{bottom:1094.845497px;}
.y1a4{bottom:1097.715540px;}
.y102{bottom:1099.478250px;}
.yc8{bottom:1099.478400px;}
.y17d{bottom:1099.891705px;}
.y295{bottom:1100.072850px;}
.y44{bottom:1100.074350px;}
.y26d{bottom:1100.078850px;}
.y20a{bottom:1101.049187px;}
.y1fe{bottom:1104.395430px;}
.y161{bottom:1104.560269px;}
.y1ff{bottom:1107.737722px;}
.y17c{bottom:1107.781253px;}
.y11{bottom:1109.815500px;}
.y1e9{bottom:1111.087916px;}
.y160{bottom:1113.208351px;}
.y1cd{bottom:1114.427001px;}
.y101{bottom:1119.282750px;}
.yc7{bottom:1119.282900px;}
.y43{bottom:1121.078850px;}
.y74{bottom:1124.326650px;}
.yf3{bottom:1124.326800px;}
.y26c{bottom:1125.451800px;}
.y3c{bottom:1135.732500px;}
.y3f{bottom:1152.015600px;}
.y3a{bottom:1159.189500px;}
.y39{bottom:1178.689500px;}
.y42{bottom:1178.692050px;}
.h1c{height:11.504438px;}
.h1e{height:11.509093px;}
.h20{height:11.517268px;}
.h1d{height:11.520241px;}
.h22{height:16.106126px;}
.h23{height:16.128250px;}
.h10{height:16.788389px;}
.h1f{height:18.052776px;}
.h24{height:21.491808px;}
.h14{height:27.885000px;}
.h19{height:27.886857px;}
.h1b{height:28.798680px;}
.h15{height:33.462000px;}
.h1a{height:33.508200px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h25{height:35.675928px;}
.h12{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h8{height:40.500000px;}
.h28{height:42.900000px;}
.he{height:43.057617px;}
.hd{height:43.321289px;}
.h9{height:45.615234px;}
.ha{height:46.332000px;}
.h26{height:46.356000px;}
.h27{height:46.620000px;}
.h13{height:50.176758px;}
.hf{height:50.566500px;}
.h4{height:50.836500px;}
.h17{height:51.870000px;}
.hb{height:54.738281px;}
.hc{height:56.628000px;}
.h3{height:76.500000px;}
.h11{height:80.825130px;}
.h18{height:84.708000px;}
.h16{height:87.093786px;}
.h21{height:882.568500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:185.884500px;}
.w3{width:696.156000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.987600px;}
.xc{left:107.063850px;}
.xe{left:108.289650px;}
.xb{left:111.091350px;}
.x12{left:112.838100px;}
.x52{left:115.387500px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.x1a{left:137.450400px;}
.x1b{left:148.180200px;}
.x37{left:212.054474px;}
.x33{left:217.079764px;}
.x61{left:221.566950px;}
.x11{left:249.250950px;}
.x1c{left:270.576750px;}
.x5{left:300.189000px;}
.x10{left:304.440600px;}
.x23{left:309.558478px;}
.x1f{left:311.652349px;}
.x31{left:313.611897px;}
.x22{left:314.619325px;}
.xd{left:317.200500px;}
.x3b{left:318.237437px;}
.x1e{left:319.952770px;}
.x26{left:321.505395px;}
.x27{left:323.690132px;}
.x28{left:325.305969px;}
.x20{left:327.190453px;}
.x2e{left:329.379140px;}
.xf{left:332.549850px;}
.x36{left:334.229871px;}
.x2f{left:338.588222px;}
.x2a{left:340.081587px;}
.x25{left:341.484085px;}
.x3a{left:343.711551px;}
.x24{left:344.731561px;}
.x2c{left:347.880269px;}
.x21{left:350.973667px;}
.x34{left:352.098887px;}
.x32{left:354.655719px;}
.x38{left:362.512932px;}
.x35{left:368.087370px;}
.x13{left:372.314850px;}
.x39{left:385.727246px;}
.x4{left:396.050700px;}
.x30{left:398.674418px;}
.x29{left:399.958396px;}
.x3c{left:409.291200px;}
.x1d{left:413.244600px;}
.x5e{left:417.614975px;}
.x54{left:419.738860px;}
.x2d{left:423.168758px;}
.x3d{left:425.342700px;}
.x2b{left:428.999992px;}
.x58{left:439.224396px;}
.x53{left:442.039650px;}
.x5b{left:443.201149px;}
.x62{left:452.416650px;}
.x40{left:461.570971px;}
.x5d{left:464.008583px;}
.x57{left:486.265126px;}
.x14{left:501.219600px;}
.x5a{left:508.427643px;}
.x55{left:530.551443px;}
.x3f{left:548.652300px;}
.x46{left:551.473100px;}
.x15{left:554.610600px;}
.x5f{left:556.333800px;}
.x5c{left:558.449555px;}
.x3e{left:569.232600px;}
.x42{left:577.808466px;}
.x41{left:579.898386px;}
.x45{left:581.802624px;}
.x60{left:594.689400px;}
.x59{left:597.857573px;}
.x16{left:605.573850px;}
.x4d{left:609.482686px;}
.x4a{left:611.389416px;}
.x43{left:637.744536px;}
.x4c{left:639.037872px;}
.xa{left:651.923700px;}
.x4e{left:653.692650px;}
.x17{left:661.324350px;}
.x56{left:665.810825px;}
.x49{left:667.351082px;}
.x4b{left:668.421721px;}
.x47{left:670.100769px;}
.x9{left:672.551700px;}
.x4f{left:692.459100px;}
.x48{left:697.194669px;}
.x44{left:699.130512px;}
.x18{left:718.868850px;}
.x19{left:740.533350px;}
.x50{left:774.718650px;}
.x51{left:788.782559px;}
.x1{left:801.157500px;}
@media print{
.v4{vertical-align:-29.189333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.240000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:21.320000pt;}
.v3{vertical-align:50.509333pt;}
.ls6f{letter-spacing:-1.056000pt;}
.ls71{letter-spacing:-0.864000pt;}
.ls4f{letter-spacing:-0.842816pt;}
.ls42{letter-spacing:-0.828769pt;}
.ls6d{letter-spacing:-0.821333pt;}
.ls5b{letter-spacing:-0.806290pt;}
.ls58{letter-spacing:-0.766958pt;}
.lsa{letter-spacing:-0.704000pt;}
.ls4a{letter-spacing:-0.702347pt;}
.ls12{letter-spacing:-0.693333pt;}
.ls43{letter-spacing:-0.688300pt;}
.ls7{letter-spacing:-0.672000pt;}
.ls6{letter-spacing:-0.614400pt;}
.ls41{letter-spacing:-0.589971pt;}
.ls6e{letter-spacing:-0.586667pt;}
.ls11{letter-spacing:-0.554667pt;}
.lsc{letter-spacing:-0.528000pt;}
.ls46{letter-spacing:-0.519737pt;}
.ls3a{letter-spacing:-0.505690pt;}
.ls56{letter-spacing:-0.432643pt;}
.ls77{letter-spacing:-0.419760pt;}
.lsd{letter-spacing:-0.410667pt;}
.ls5d{letter-spacing:-0.393312pt;}
.ls5{letter-spacing:-0.362667pt;}
.ls5a{letter-spacing:-0.353981pt;}
.ls73{letter-spacing:-0.336000pt;}
.ls37{letter-spacing:-0.309033pt;}
.ls8{letter-spacing:-0.293333pt;}
.ls3c{letter-spacing:-0.280939pt;}
.ls66{letter-spacing:-0.275318pt;}
.ls3b{letter-spacing:-0.266892pt;}
.ls52{letter-spacing:-0.259582pt;}
.ls54{letter-spacing:-0.255653pt;}
.ls67{letter-spacing:-0.252845pt;}
.ls44{letter-spacing:-0.238798pt;}
.ls60{letter-spacing:-0.235987pt;}
.ls9{letter-spacing:-0.234667pt;}
.ls69{letter-spacing:-0.224751pt;}
.ls64{letter-spacing:-0.216322pt;}
.ls5f{letter-spacing:-0.196656pt;}
.ls75{letter-spacing:-0.192000pt;}
.ls4c{letter-spacing:-0.188787pt;}
.ls38{letter-spacing:-0.182610pt;}
.ls55{letter-spacing:-0.176990pt;}
.ls4d{letter-spacing:-0.154516pt;}
.ls40{letter-spacing:-0.140469pt;}
.ls61{letter-spacing:-0.137659pt;}
.ls5e{letter-spacing:-0.117994pt;}
.lsb{letter-spacing:-0.117333pt;}
.ls36{letter-spacing:-0.112936pt;}
.ls7a{letter-spacing:-0.106667pt;}
.ls65{letter-spacing:-0.098328pt;}
.ls76{letter-spacing:-0.096000pt;}
.ls62{letter-spacing:-0.078662pt;}
.ls10{letter-spacing:-0.058667pt;}
.ls72{letter-spacing:-0.048000pt;}
.ls3f{letter-spacing:-0.028094pt;}
.ls53{letter-spacing:-0.023598pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.014047pt;}
.ls27{letter-spacing:0.019230pt;}
.ls29{letter-spacing:0.023598pt;}
.ls14{letter-spacing:0.028094pt;}
.ls13{letter-spacing:0.037645pt;}
.ls15{letter-spacing:0.042141pt;}
.ls6c{letter-spacing:0.046635pt;}
.ls24{letter-spacing:0.047197pt;}
.lsf{letter-spacing:0.052800pt;}
.ls1c{letter-spacing:0.056188pt;}
.ls18{letter-spacing:0.070235pt;}
.ls19{letter-spacing:0.084282pt;}
.ls6a{letter-spacing:0.093270pt;}
.ls22{letter-spacing:0.098329pt;}
.ls1f{letter-spacing:0.109783pt;}
.ls17{letter-spacing:0.112375pt;}
.ls28{letter-spacing:0.117992pt;}
.ls63{letter-spacing:0.117994pt;}
.ls2c{letter-spacing:0.137659pt;}
.ls35{letter-spacing:0.139906pt;}
.ls33{letter-spacing:0.140469pt;}
.ls26{letter-spacing:0.141590pt;}
.ls2f{letter-spacing:0.157325pt;}
.ls32{letter-spacing:0.168563pt;}
.ls31{letter-spacing:0.176990pt;}
.ls1d{letter-spacing:0.182610pt;}
.ls23{letter-spacing:0.212386pt;}
.lse{letter-spacing:0.222782pt;}
.ls68{letter-spacing:0.224751pt;}
.ls30{letter-spacing:0.235987pt;}
.ls16{letter-spacing:0.238798pt;}
.ls1a{letter-spacing:0.266892pt;}
.ls4{letter-spacing:0.272000pt;}
.ls2a{letter-spacing:0.275318pt;}
.ls1b{letter-spacing:0.280939pt;}
.ls74{letter-spacing:0.288000pt;}
.ls2b{letter-spacing:0.294984pt;}
.ls2e{letter-spacing:0.334315pt;}
.ls2{letter-spacing:0.336000pt;}
.ls2d{letter-spacing:0.353981pt;}
.ls59{letter-spacing:0.393312pt;}
.ls70{letter-spacing:0.528000pt;}
.ls45{letter-spacing:0.646159pt;}
.ls57{letter-spacing:0.707962pt;}
.ls5c{letter-spacing:0.825955pt;}
.ls78{letter-spacing:0.906667pt;}
.ls21{letter-spacing:1.137802pt;}
.ls20{letter-spacing:1.151849pt;}
.ls50{letter-spacing:1.348506pt;}
.ls79{letter-spacing:1.546667pt;}
.ls4e{letter-spacing:2.050852pt;}
.ls48{letter-spacing:2.444166pt;}
.ls49{letter-spacing:2.598683pt;}
.ls47{letter-spacing:3.680297pt;}
.ls39{letter-spacing:3.708390pt;}
.ls3d{letter-spacing:3.722437pt;}
.ls3e{letter-spacing:3.736484pt;}
.ls51{letter-spacing:3.750531pt;}
.ls4b{letter-spacing:4.389302pt;}
.ls25{letter-spacing:4.932066pt;}
.ls34{letter-spacing:7.135842pt;}
.ls6b{letter-spacing:10.399650pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ws8{word-spacing:-15.936000pt;}
.ws79{word-spacing:-14.666667pt;}
.ws98{word-spacing:-14.608000pt;}
.ws7a{word-spacing:-14.256000pt;}
.ws14c{word-spacing:-14.080000pt;}
.ws1bf{word-spacing:-13.706667pt;}
.ws107{word-spacing:-13.485056pt;}
.ws7{word-spacing:-13.280000pt;}
.ws15c{word-spacing:-12.528000pt;}
.ws1a0{word-spacing:-12.288000pt;}
.ws15d{word-spacing:-12.000000pt;}
.ws1b0{word-spacing:-11.904000pt;}
.ws188{word-spacing:-11.664000pt;}
.ws16d{word-spacing:-11.136000pt;}
.ws9{word-spacing:-10.992000pt;}
.wsa{word-spacing:-10.800000pt;}
.ws110{word-spacing:-10.446285pt;}
.wsdb{word-spacing:-9.722541pt;}
.ws5{word-spacing:-9.685333pt;}
.ws6{word-spacing:-8.793600pt;}
.wsaf{word-spacing:-8.666667pt;}
.ws4{word-spacing:-8.549333pt;}
.wsb8{word-spacing:-8.507845pt;}
.wse3{word-spacing:-7.655579pt;}
.wsc7{word-spacing:-7.641532pt;}
.wsc5{word-spacing:-7.627485pt;}
.wsbf{word-spacing:-7.613438pt;}
.wsd6{word-spacing:-7.585344pt;}
.ws1be{word-spacing:-6.576240pt;}
.ws10d{word-spacing:-6.573965pt;}
.ws105{word-spacing:-6.517777pt;}
.wsd8{word-spacing:-6.503730pt;}
.ws108{word-spacing:-6.489683pt;}
.ws10b{word-spacing:-6.461589pt;}
.wsd7{word-spacing:-6.349214pt;}
.ws109{word-spacing:-6.321120pt;}
.wsf6{word-spacing:-6.292992pt;}
.wsee{word-spacing:-6.174998pt;}
.ws106{word-spacing:-6.096369pt;}
.wse0{word-spacing:-5.955900pt;}
.wsfb{word-spacing:-5.821018pt;}
.wsfc{word-spacing:-5.801352pt;}
.wsf0{word-spacing:-5.762021pt;}
.wsf8{word-spacing:-5.742355pt;}
.wsed{word-spacing:-5.644027pt;}
.wsfe{word-spacing:-5.624362pt;}
.wsf5{word-spacing:-5.604696pt;}
.ws100{word-spacing:-5.585030pt;}
.wsda{word-spacing:-5.545624pt;}
.wse8{word-spacing:-5.474829pt;}
.wsf3{word-spacing:-5.467037pt;}
.wsff{word-spacing:-5.388374pt;}
.wse6{word-spacing:-5.380435pt;}
.ws102{word-spacing:-5.368709pt;}
.wsea{word-spacing:-5.356837pt;}
.wsf9{word-spacing:-5.349043pt;}
.wse9{word-spacing:-5.333238pt;}
.ws104{word-spacing:-5.329378pt;}
.wsec{word-spacing:-5.290046pt;}
.wsfa{word-spacing:-5.270381pt;}
.wse2{word-spacing:-5.253553pt;}
.ws101{word-spacing:-5.250715pt;}
.wsfd{word-spacing:-5.231050pt;}
.wseb{word-spacing:-5.211384pt;}
.ws103{word-spacing:-5.191718pt;}
.wsf1{word-spacing:-5.113056pt;}
.wsf7{word-spacing:-5.073725pt;}
.wse7{word-spacing:-5.073656pt;}
.wsf4{word-spacing:-5.034394pt;}
.wsef{word-spacing:-4.700078pt;}
.wsf2{word-spacing:-4.660747pt;}
.ws190{word-spacing:-4.560000pt;}
.wsd1{word-spacing:-4.551206pt;}
.wsc2{word-spacing:-4.185986pt;}
.wsbc{word-spacing:-4.171939pt;}
.wsba{word-spacing:-4.143845pt;}
.wsb9{word-spacing:-4.087658pt;}
.wsc0{word-spacing:-4.017423pt;}
.wsc6{word-spacing:-3.989329pt;}
.wsc4{word-spacing:-3.975282pt;}
.wsd0{word-spacing:-3.961235pt;}
.wsbb{word-spacing:-3.947188pt;}
.wsc3{word-spacing:-3.933141pt;}
.wsd3{word-spacing:-3.919094pt;}
.wsdf{word-spacing:-3.905047pt;}
.wsc8{word-spacing:-3.876954pt;}
.ws3e{word-spacing:-3.872000pt;}
.wsc9{word-spacing:-3.764578pt;}
.wsde{word-spacing:-3.750531pt;}
.wsbe{word-spacing:-3.722437pt;}
.wscf{word-spacing:-3.666250pt;}
.wsd2{word-spacing:-3.638156pt;}
.wscc{word-spacing:-3.624109pt;}
.ws18b{word-spacing:-3.600000pt;}
.wsd5{word-spacing:-3.596015pt;}
.ws175{word-spacing:-3.504000pt;}
.ws85{word-spacing:-3.461333pt;}
.ws149{word-spacing:-3.402667pt;}
.wsc1{word-spacing:-3.399358pt;}
.wsd4{word-spacing:-3.385311pt;}
.wsca{word-spacing:-3.315076pt;}
.wscd{word-spacing:-3.216748pt;}
.wsd9{word-spacing:-3.202701pt;}
.wscb{word-spacing:-3.076278pt;}
.wse1{word-spacing:-3.062231pt;}
.ws17e{word-spacing:-3.024000pt;}
.ws65{word-spacing:-2.874667pt;}
.ws4e{word-spacing:-2.816000pt;}
.ws32{word-spacing:-2.757333pt;}
.ws51{word-spacing:-2.698667pt;}
.ws64{word-spacing:-2.640000pt;}
.ws5d{word-spacing:-2.581333pt;}
.ws61{word-spacing:-2.522667pt;}
.ws150{word-spacing:-2.405333pt;}
.ws1c4{word-spacing:-2.400000pt;}
.ws1b1{word-spacing:-2.352000pt;}
.ws199{word-spacing:-2.304000pt;}
.ws147{word-spacing:-2.288000pt;}
.ws82{word-spacing:-2.229333pt;}
.ws1b3{word-spacing:-2.208000pt;}
.ws137{word-spacing:-2.170667pt;}
.ws1c5{word-spacing:-2.160000pt;}
.ws23{word-spacing:-2.112000pt;}
.ws1b6{word-spacing:-2.064000pt;}
.wsa3{word-spacing:-2.053333pt;}
.ws197{word-spacing:-2.016000pt;}
.ws2b{word-spacing:-1.994667pt;}
.ws1a2{word-spacing:-1.968000pt;}
.wsbd{word-spacing:-1.938477pt;}
.ws33{word-spacing:-1.936000pt;}
.ws1c8{word-spacing:-1.920000pt;}
.ws75{word-spacing:-1.877333pt;}
.ws3a{word-spacing:-1.818667pt;}
.wsdd{word-spacing:-1.746282pt;}
.wsa8{word-spacing:-1.701333pt;}
.ws179{word-spacing:-1.680000pt;}
.ws15a{word-spacing:-1.642667pt;}
.ws198{word-spacing:-1.632000pt;}
.ws46{word-spacing:-1.584000pt;}
.wse5{word-spacing:-1.581093pt;}
.ws1ca{word-spacing:-1.546667pt;}
.ws18a{word-spacing:-1.536000pt;}
.ws53{word-spacing:-1.525333pt;}
.ws18d{word-spacing:-1.488000pt;}
.ws136{word-spacing:-1.466667pt;}
.ws1a1{word-spacing:-1.392000pt;}
.wse4{word-spacing:-1.390646pt;}
.ws60{word-spacing:-1.349333pt;}
.ws19e{word-spacing:-1.344000pt;}
.ws1ae{word-spacing:-1.296000pt;}
.ws5b{word-spacing:-1.290667pt;}
.wsce{word-spacing:-1.264224pt;}
.ws17f{word-spacing:-1.248000pt;}
.ws13f{word-spacing:-1.173333pt;}
.wsb6{word-spacing:-1.152000pt;}
.ws15b{word-spacing:-1.056000pt;}
.ws99{word-spacing:-0.997333pt;}
.ws18f{word-spacing:-0.960000pt;}
.ws68{word-spacing:-0.938667pt;}
.ws1cb{word-spacing:-0.912000pt;}
.ws1c9{word-spacing:-0.906667pt;}
.ws50{word-spacing:-0.880000pt;}
.wsb4{word-spacing:-0.864000pt;}
.ws5e{word-spacing:-0.821333pt;}
.ws97{word-spacing:-0.768000pt;}
.ws90{word-spacing:-0.762667pt;}
.ws1b{word-spacing:-0.720000pt;}
.ws5a{word-spacing:-0.704000pt;}
.ws14f{word-spacing:-0.645333pt;}
.ws96{word-spacing:-0.624000pt;}
.ws7f{word-spacing:-0.586667pt;}
.ws17b{word-spacing:-0.576000pt;}
.ws163{word-spacing:-0.528000pt;}
.ws4a{word-spacing:-0.469333pt;}
.ws83{word-spacing:-0.410667pt;}
.ws12c{word-spacing:-0.393312pt;}
.ws191{word-spacing:-0.384000pt;}
.ws0{word-spacing:-0.362667pt;}
.ws13{word-spacing:-0.336000pt;}
.ws12e{word-spacing:-0.294984pt;}
.ws6e{word-spacing:-0.293333pt;}
.ws1a6{word-spacing:-0.288000pt;}
.ws11d{word-spacing:-0.280939pt;}
.ws133{word-spacing:-0.275318pt;}
.ws120{word-spacing:-0.266892pt;}
.ws16a{word-spacing:-0.240000pt;}
.ws118{word-spacing:-0.238798pt;}
.ws146{word-spacing:-0.234667pt;}
.ws92{word-spacing:-0.222782pt;}
.ws121{word-spacing:-0.212386pt;}
.wsf{word-spacing:-0.192000pt;}
.ws125{word-spacing:-0.182610pt;}
.ws8d{word-spacing:-0.176000pt;}
.ws12a{word-spacing:-0.157325pt;}
.ws1b7{word-spacing:-0.144000pt;}
.ws11b{word-spacing:-0.140469pt;}
.ws10f{word-spacing:-0.139906pt;}
.ws12f{word-spacing:-0.137659pt;}
.ws127{word-spacing:-0.117992pt;}
.ws84{word-spacing:-0.117333pt;}
.wsb{word-spacing:-0.098949pt;}
.ws19{word-spacing:-0.096000pt;}
.ws123{word-spacing:-0.084282pt;}
.wsdc{word-spacing:-0.070795pt;}
.ws59{word-spacing:-0.058667pt;}
.ws11e{word-spacing:-0.056188pt;}
.ws135{word-spacing:-0.046635pt;}
.ws115{word-spacing:-0.042141pt;}
.ws113{word-spacing:-0.037645pt;}
.ws11c{word-spacing:-0.028094pt;}
.ws124{word-spacing:-0.014047pt;}
.wsc{word-spacing:0.000000pt;}
.ws128{word-spacing:0.023598pt;}
.ws117{word-spacing:0.028094pt;}
.ws18c{word-spacing:0.048000pt;}
.ws8f{word-spacing:0.058667pt;}
.ws95{word-spacing:0.096000pt;}
.ws1cd{word-spacing:0.106667pt;}
.ws114{word-spacing:0.112936pt;}
.ws57{word-spacing:0.117333pt;}
.ws130{word-spacing:0.137659pt;}
.ws11f{word-spacing:0.140469pt;}
.ws1b5{word-spacing:0.144000pt;}
.ws86{word-spacing:0.176000pt;}
.ws12b{word-spacing:0.176990pt;}
.ws122{word-spacing:0.188787pt;}
.ws1b4{word-spacing:0.192000pt;}
.ws131{word-spacing:0.196656pt;}
.ws134{word-spacing:0.224751pt;}
.ws3d{word-spacing:0.234667pt;}
.ws12d{word-spacing:0.255653pt;}
.ws119{word-spacing:0.266892pt;}
.ws11a{word-spacing:0.280939pt;}
.ws1a{word-spacing:0.288000pt;}
.ws116{word-spacing:0.309033pt;}
.ws9a{word-spacing:0.352000pt;}
.wsd{word-spacing:0.362667pt;}
.ws77{word-spacing:0.384000pt;}
.ws87{word-spacing:0.410667pt;}
.ws16c{word-spacing:0.432000pt;}
.ws129{word-spacing:0.432643pt;}
.ws151{word-spacing:0.469333pt;}
.ws10a{word-spacing:0.505690pt;}
.ws145{word-spacing:0.528000pt;}
.ws10c{word-spacing:0.533783pt;}
.wsb7{word-spacing:0.554667pt;}
.ws19f{word-spacing:0.576000pt;}
.ws5f{word-spacing:0.586667pt;}
.ws126{word-spacing:0.589971pt;}
.ws10{word-spacing:0.614400pt;}
.ws1b8{word-spacing:0.624000pt;}
.ws38{word-spacing:0.645333pt;}
.ws19a{word-spacing:0.672000pt;}
.ws3c{word-spacing:0.704000pt;}
.ws42{word-spacing:0.762667pt;}
.ws132{word-spacing:0.766958pt;}
.ws78{word-spacing:0.768000pt;}
.ws1e{word-spacing:0.816000pt;}
.ws54{word-spacing:0.821333pt;}
.ws189{word-spacing:0.864000pt;}
.ws26{word-spacing:0.880000pt;}
.ws1d{word-spacing:0.906667pt;}
.ws7c{word-spacing:0.938667pt;}
.ws16b{word-spacing:0.960000pt;}
.ws2d{word-spacing:1.056000pt;}
.ws18{word-spacing:1.104000pt;}
.ws20{word-spacing:1.114667pt;}
.ws91{word-spacing:1.173333pt;}
.ws93{word-spacing:1.200000pt;}
.ws6d{word-spacing:1.232000pt;}
.ws15{word-spacing:1.248000pt;}
.ws48{word-spacing:1.290667pt;}
.ws1a7{word-spacing:1.296000pt;}
.ws171{word-spacing:1.344000pt;}
.ws187{word-spacing:1.392000pt;}
.ws6b{word-spacing:1.408000pt;}
.ws1af{word-spacing:1.440000pt;}
.ws156{word-spacing:1.466667pt;}
.wsb5{word-spacing:1.488000pt;}
.ws1bc{word-spacing:1.536000pt;}
.ws70{word-spacing:1.584000pt;}
.ws169{word-spacing:1.632000pt;}
.ws144{word-spacing:1.642667pt;}
.ws180{word-spacing:1.680000pt;}
.ws3b{word-spacing:1.701333pt;}
.ws166{word-spacing:1.728000pt;}
.wse{word-spacing:1.760000pt;}
.ws177{word-spacing:1.776000pt;}
.ws159{word-spacing:1.818667pt;}
.ws182{word-spacing:1.824000pt;}
.ws18e{word-spacing:1.872000pt;}
.ws14d{word-spacing:1.877333pt;}
.ws14{word-spacing:1.920000pt;}
.ws31{word-spacing:1.936000pt;}
.ws173{word-spacing:1.968000pt;}
.ws45{word-spacing:1.994667pt;}
.ws6a{word-spacing:2.053333pt;}
.ws17{word-spacing:2.064000pt;}
.ws67{word-spacing:2.112000pt;}
.ws184{word-spacing:2.160000pt;}
.wsa0{word-spacing:2.170667pt;}
.ws1bd{word-spacing:2.208000pt;}
.ws8a{word-spacing:2.229333pt;}
.ws52{word-spacing:2.288000pt;}
.ws111{word-spacing:2.304000pt;}
.ws4c{word-spacing:2.346667pt;}
.ws192{word-spacing:2.352000pt;}
.ws1a9{word-spacing:2.400000pt;}
.ws43{word-spacing:2.405333pt;}
.ws24{word-spacing:2.464000pt;}
.wsa6{word-spacing:2.522667pt;}
.ws37{word-spacing:2.581333pt;}
.ws1a3{word-spacing:2.592000pt;}
.ws30{word-spacing:2.640000pt;}
.ws1c2{word-spacing:2.688000pt;}
.ws49{word-spacing:2.698667pt;}
.ws178{word-spacing:2.736000pt;}
.ws58{word-spacing:2.757333pt;}
.ws170{word-spacing:2.784000pt;}
.ws88{word-spacing:2.816000pt;}
.ws1a4{word-spacing:2.832000pt;}
.ws21{word-spacing:2.874667pt;}
.ws41{word-spacing:2.933333pt;}
.ws66{word-spacing:2.992000pt;}
.ws13b{word-spacing:3.024000pt;}
.ws14a{word-spacing:3.050667pt;}
.ws80{word-spacing:3.109333pt;}
.ws17a{word-spacing:3.120000pt;}
.ws36{word-spacing:3.168000pt;}
.ws186{word-spacing:3.216000pt;}
.ws44{word-spacing:3.226667pt;}
.ws4b{word-spacing:3.344000pt;}
.ws176{word-spacing:3.360000pt;}
.ws1aa{word-spacing:3.456000pt;}
.ws55{word-spacing:3.461333pt;}
.ws3f{word-spacing:3.520000pt;}
.ws5c{word-spacing:3.578667pt;}
.ws185{word-spacing:3.600000pt;}
.ws39{word-spacing:3.637333pt;}
.ws16{word-spacing:3.648000pt;}
.ws13c{word-spacing:3.696000pt;}
.ws19d{word-spacing:3.744000pt;}
.ws9e{word-spacing:3.754667pt;}
.ws183{word-spacing:3.792000pt;}
.ws34{word-spacing:3.813333pt;}
.ws94{word-spacing:3.840000pt;}
.ws89{word-spacing:3.872000pt;}
.ws112{word-spacing:3.888000pt;}
.ws4f{word-spacing:3.989333pt;}
.ws165{word-spacing:4.032000pt;}
.ws62{word-spacing:4.048000pt;}
.wsa1{word-spacing:4.106667pt;}
.ws181{word-spacing:4.128000pt;}
.ws140{word-spacing:4.165333pt;}
.ws1c1{word-spacing:4.176000pt;}
.ws8e{word-spacing:4.224000pt;}
.ws148{word-spacing:4.282667pt;}
.ws17d{word-spacing:4.320000pt;}
.ws74{word-spacing:4.341333pt;}
.ws174{word-spacing:4.368000pt;}
.ws40{word-spacing:4.400000pt;}
.ws193{word-spacing:4.416000pt;}
.ws47{word-spacing:4.458667pt;}
.ws1c0{word-spacing:4.464000pt;}
.ws25{word-spacing:4.517333pt;}
.ws1c{word-spacing:4.560000pt;}
.ws28{word-spacing:4.634667pt;}
.ws152{word-spacing:4.693333pt;}
.ws1a8{word-spacing:4.704000pt;}
.ws8c{word-spacing:4.752000pt;}
.ws1ba{word-spacing:4.800000pt;}
.wsa7{word-spacing:4.810667pt;}
.wsa9{word-spacing:4.869333pt;}
.ws29{word-spacing:4.928000pt;}
.ws172{word-spacing:4.944000pt;}
.ws56{word-spacing:4.986667pt;}
.ws168{word-spacing:4.992000pt;}
.wsaa{word-spacing:5.045333pt;}
.ws2e{word-spacing:5.104000pt;}
.ws1bb{word-spacing:5.136000pt;}
.ws153{word-spacing:5.162667pt;}
.ws15e{word-spacing:5.184000pt;}
.ws9f{word-spacing:5.221333pt;}
.ws157{word-spacing:5.338667pt;}
.ws73{word-spacing:5.456000pt;}
.ws16e{word-spacing:5.472000pt;}
.ws1ab{word-spacing:5.568000pt;}
.ws1cc{word-spacing:5.616000pt;}
.ws141{word-spacing:5.632000pt;}
.ws1a5{word-spacing:5.664000pt;}
.ws7d{word-spacing:5.690667pt;}
.wsb3{word-spacing:5.749333pt;}
.ws194{word-spacing:5.808000pt;}
.ws2c{word-spacing:5.866667pt;}
.ws1b2{word-spacing:5.952000pt;}
.ws9d{word-spacing:6.042667pt;}
.ws196{word-spacing:6.096000pt;}
.ws1f{word-spacing:6.101333pt;}
.ws1c3{word-spacing:6.144000pt;}
.ws12{word-spacing:6.192000pt;}
.ws14e{word-spacing:6.277333pt;}
.ws143{word-spacing:6.336000pt;}
.ws17c{word-spacing:6.384000pt;}
.ws7e{word-spacing:6.394667pt;}
.ws16f{word-spacing:6.432000pt;}
.ws2a{word-spacing:6.453333pt;}
.ws2f{word-spacing:6.512000pt;}
.ws6f{word-spacing:6.570667pt;}
.ws22{word-spacing:6.629333pt;}
.ws19c{word-spacing:6.672000pt;}
.ws72{word-spacing:6.688000pt;}
.ws9c{word-spacing:6.746667pt;}
.ws1b9{word-spacing:6.768000pt;}
.ws71{word-spacing:6.864000pt;}
.ws14b{word-spacing:7.040000pt;}
.ws13a{word-spacing:7.157333pt;}
.ws63{word-spacing:7.216000pt;}
.ws167{word-spacing:7.248000pt;}
.ws8b{word-spacing:7.333333pt;}
.ws11{word-spacing:7.344000pt;}
.ws142{word-spacing:7.392000pt;}
.ws13e{word-spacing:7.450667pt;}
.wsb2{word-spacing:7.509333pt;}
.ws6c{word-spacing:7.568000pt;}
.ws81{word-spacing:7.626667pt;}
.ws195{word-spacing:7.728000pt;}
.ws138{word-spacing:7.744000pt;}
.wsa4{word-spacing:7.861333pt;}
.wsa5{word-spacing:7.920000pt;}
.wsa2{word-spacing:7.978667pt;}
.ws4d{word-spacing:8.037333pt;}
.ws13d{word-spacing:8.096000pt;}
.ws154{word-spacing:8.154667pt;}
.ws35{word-spacing:8.506667pt;}
.ws158{word-spacing:8.565333pt;}
.ws27{word-spacing:8.682667pt;}
.ws19b{word-spacing:8.736000pt;}
.ws9b{word-spacing:8.741333pt;}
.ws162{word-spacing:8.976000pt;}
.ws7b{word-spacing:9.621333pt;}
.ws76{word-spacing:10.677333pt;}
.ws1c7{word-spacing:11.088000pt;}
.ws139{word-spacing:11.381333pt;}
.ws1c6{word-spacing:11.760000pt;}
.ws160{word-spacing:11.808000pt;}
.ws161{word-spacing:14.640000pt;}
.ws155{word-spacing:15.253333pt;}
.ws1ac{word-spacing:21.744000pt;}
.ws164{word-spacing:26.544000pt;}
.wsb0{word-spacing:29.570667pt;}
.ws1{word-spacing:29.907059pt;}
.ws3{word-spacing:29.911587pt;}
.ws2{word-spacing:29.912120pt;}
.ws1ad{word-spacing:43.440000pt;}
.ws15f{word-spacing:61.104000pt;}
.wsae{word-spacing:124.280000pt;}
.wsb1{word-spacing:125.250667pt;}
.wsad{word-spacing:127.122667pt;}
.wsab{word-spacing:190.805333pt;}
.wsac{word-spacing:236.114667pt;}
.ws69{word-spacing:449.314667pt;}
.ws10e{word-spacing:912.417688pt;}
._8{margin-left:-9.856000pt;}
._4a{margin-left:-8.750400pt;}
._6{margin-left:-7.848000pt;}
._17{margin-left:-6.934400pt;}
._7{margin-left:-5.937600pt;}
._5{margin-left:-4.185600pt;}
._1{margin-left:-2.692800pt;}
._0{margin-left:-1.142400pt;}
._3{width:0.942933pt;}
._2{width:1.840533pt;}
._16{width:3.637333pt;}
._a{width:6.981333pt;}
._15{width:9.621333pt;}
._9{width:30.912000pt;}
._4{width:32.328533pt;}
._49{width:38.396267pt;}
._27{width:41.842667pt;}
._3e{width:44.026667pt;}
._3f{width:45.552000pt;}
._2e{width:48.498667pt;}
._3a{width:50.960000pt;}
._22{width:55.154667pt;}
._26{width:58.482667pt;}
._21{width:65.173333pt;}
._33{width:70.685333pt;}
._2d{width:71.794667pt;}
._25{width:73.597333pt;}
._3d{width:76.714133pt;}
._24{width:78.728000pt;}
._18{width:80.218667pt;}
._20{width:85.384000pt;}
._2c{width:86.909333pt;}
._36{width:88.157333pt;}
._1e{width:89.195733pt;}
._47{width:91.726400pt;}
._3c{width:93.045333pt;}
._38{width:94.813333pt;}
._32{width:95.784000pt;}
._34{width:97.378667pt;}
._3b{width:98.276800pt;}
._28{width:100.360000pt;}
._29{width:104.069333pt;}
._37{width:105.906667pt;}
._23{width:107.016000pt;}
._31{width:109.893333pt;}
._2f{width:112.770667pt;}
._2b{width:116.618667pt;}
._1f{width:123.274667pt;}
._41{width:125.250667pt;}
._1a{width:126.464000pt;}
._1d{width:130.104000pt;}
._43{width:137.278400pt;}
._30{width:144.870400pt;}
._2a{width:146.419200pt;}
._19{width:151.457067pt;}
._42{width:154.786667pt;}
._46{width:163.278400pt;}
._1c{width:167.197333pt;}
._45{width:172.120000pt;}
._35{width:176.106667pt;}
._40{width:194.505067pt;}
._b{width:198.050667pt;}
._10{width:202.002667pt;}
._44{width:207.752533pt;}
._48{width:209.096533pt;}
._39{width:215.164800pt;}
._14{width:225.368000pt;}
._13{width:234.034667pt;}
._11{width:242.701333pt;}
._1b{width:279.482667pt;}
._d{width:297.578667pt;}
._f{width:369.650667pt;}
._12{width:417.248000pt;}
._e{width:425.914667pt;}
._c{width:480.929067pt;}
.fse{font-size:14.046933pt;}
.fs9{font-size:19.641600pt;}
.fs10{font-size:19.665600pt;}
.fsf{font-size:23.598400pt;}
.fs13{font-size:27.984000pt;}
.fs11{font-size:28.093867pt;}
.fs3{font-size:34.202667pt;}
.fsb{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:37.645333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs12{font-size:46.635200pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.fsa{font-size:98.949333pt;}
.fsc{font-size:111.390933pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:1.071067pt;}
.y211{bottom:1.596133pt;}
.y3e{bottom:40.688174pt;}
.y1{bottom:60.555333pt;}
.y40{bottom:63.299600pt;}
.y41{bottom:66.702267pt;}
.y3b{bottom:84.138533pt;}
.y2c4{bottom:100.258533pt;}
.y73{bottom:100.322533pt;}
.yf2{bottom:100.337200pt;}
.ya1{bottom:100.343333pt;}
.yc6{bottom:100.377067pt;}
.y294{bottom:100.493200pt;}
.y100{bottom:100.506400pt;}
.y26b{bottom:100.514533pt;}
.yfc{bottom:107.091867pt;}
.y258{bottom:107.107867pt;}
.y2c3{bottom:118.930533pt;}
.y72{bottom:118.993200pt;}
.yf1{bottom:119.007867pt;}
.ya0{bottom:119.014000pt;}
.yc5{bottom:119.047733pt;}
.y293{bottom:119.165200pt;}
.yff{bottom:119.177067pt;}
.y2a{bottom:122.831733pt;}
.y10{bottom:122.862000pt;}
.y26a{bottom:124.388533pt;}
.yfb{bottom:124.695867pt;}
.y257{bottom:124.711867pt;}
.yf{bottom:135.658800pt;}
.y2c2{bottom:137.602533pt;}
.y71{bottom:137.663867pt;}
.yf0{bottom:137.678533pt;}
.y9f{bottom:137.684667pt;}
.yc4{bottom:137.718400pt;}
.y292{bottom:137.837200pt;}
.yfe{bottom:137.847733pt;}
.y2de{bottom:140.486533pt;}
.y29{bottom:141.502400pt;}
.yfa{bottom:142.299867pt;}
.ye{bottom:148.455600pt;}
.y269{bottom:150.614267pt;}
.y2c1{bottom:156.274533pt;}
.y70{bottom:156.334533pt;}
.yef{bottom:156.349200pt;}
.y9e{bottom:156.355333pt;}
.yc3{bottom:156.389067pt;}
.y2dd{bottom:156.482533pt;}
.y291{bottom:156.509200pt;}
.yf9{bottom:159.903867pt;}
.y28{bottom:160.173067pt;}
.yd{bottom:161.255600pt;}
.y2c0{bottom:174.946533pt;}
.y6f{bottom:175.005200pt;}
.yee{bottom:175.019867pt;}
.y9d{bottom:175.026000pt;}
.yc2{bottom:175.059733pt;}
.y2dc{bottom:175.154533pt;}
.y290{bottom:175.181200pt;}
.y139{bottom:175.221733pt;}
.y13c{bottom:177.017467pt;}
.yf8{bottom:177.507867pt;}
.y27{bottom:178.843733pt;}
.y138{bottom:189.478400pt;}
.y2bf{bottom:193.618533pt;}
.y6e{bottom:193.675867pt;}
.yed{bottom:193.690533pt;}
.y9c{bottom:193.696667pt;}
.yc1{bottom:193.730400pt;}
.y268{bottom:193.791867pt;}
.y2db{bottom:193.826533pt;}
.y13b{bottom:194.621467pt;}
.yf7{bottom:195.111867pt;}
.y26{bottom:197.514400pt;}
.y38{bottom:199.530000pt;}
.y137{bottom:203.735067pt;}
.y28f{bottom:206.614133pt;}
.y13a{bottom:212.225467pt;}
.y2be{bottom:212.290533pt;}
.y6d{bottom:212.346533pt;}
.yec{bottom:212.361200pt;}
.y9b{bottom:212.367333pt;}
.yc0{bottom:212.401067pt;}
.y267{bottom:212.462533pt;}
.y2da{bottom:212.498533pt;}
.y37{bottom:215.526000pt;}
.y25{bottom:216.185067pt;}
.y136{bottom:217.991733pt;}
.y210{bottom:230.674667pt;}
.y2bd{bottom:230.962533pt;}
.y6c{bottom:231.017200pt;}
.yeb{bottom:231.031867pt;}
.y9a{bottom:231.038000pt;}
.ybf{bottom:231.071733pt;}
.y266{bottom:231.133200pt;}
.y2d9{bottom:231.170533pt;}
.y36{bottom:231.522000pt;}
.y135{bottom:232.248400pt;}
.y24{bottom:234.855733pt;}
.y134{bottom:246.505067pt;}
.y35{bottom:247.518000pt;}
.y2bc{bottom:249.634533pt;}
.y6b{bottom:249.687867pt;}
.yea{bottom:249.702533pt;}
.y99{bottom:249.708667pt;}
.ybe{bottom:249.742400pt;}
.y265{bottom:249.803867pt;}
.y28e{bottom:249.842533pt;}
.y226{bottom:252.733566pt;}
.y21a{bottom:258.972477pt;}
.y133{bottom:260.761733pt;}
.y34{bottom:263.514000pt;}
.y23{bottom:264.892800pt;}
.y241{bottom:265.235971pt;}
.y2bb{bottom:268.306533pt;}
.y6a{bottom:268.358533pt;}
.ye9{bottom:268.373200pt;}
.y98{bottom:268.379333pt;}
.ybd{bottom:268.413067pt;}
.y264{bottom:268.474533pt;}
.y28d{bottom:268.514533pt;}
.y245{bottom:271.489632pt;}
.y132{bottom:275.018400pt;}
.y228{bottom:277.733460pt;}
.y33{bottom:279.510000pt;}
.y217{bottom:283.972371pt;}
.y2ba{bottom:286.978533pt;}
.y69{bottom:287.029200pt;}
.ye8{bottom:287.043867pt;}
.y97{bottom:287.050000pt;}
.ybc{bottom:287.083733pt;}
.y263{bottom:287.145200pt;}
.y131{bottom:289.275067pt;}
.y240{bottom:290.235865pt;}
.y28c{bottom:292.026000pt;}
.y32{bottom:295.506000pt;}
.y232{bottom:296.479693pt;}
.y2d8{bottom:301.789867pt;}
.y242{bottom:302.733354pt;}
.y130{bottom:303.531733pt;}
.y2b9{bottom:305.650533pt;}
.y68{bottom:305.699867pt;}
.ye7{bottom:305.714533pt;}
.y96{bottom:305.720667pt;}
.ybb{bottom:305.754400pt;}
.y262{bottom:305.815867pt;}
.y23c{bottom:308.982098pt;}
.y31{bottom:311.502000pt;}
.y22b{bottom:315.230842pt;}
.y12f{bottom:317.788400pt;}
.y21f{bottom:321.479587pt;}
.y2b8{bottom:324.322533pt;}
.y67{bottom:324.370533pt;}
.ye6{bottom:324.385200pt;}
.yba{bottom:324.425067pt;}
.y261{bottom:324.486533pt;}
.y28b{bottom:324.509200pt;}
.y30{bottom:327.498000pt;}
.y224{bottom:327.728331pt;}
.y22{bottom:328.909867pt;}
.y2d7{bottom:330.498667pt;}
.y12e{bottom:332.045067pt;}
.y230{bottom:333.977076pt;}
.y95{bottom:337.151333pt;}
.y216{bottom:340.220904pt;}
.y2b7{bottom:342.994533pt;}
.y66{bottom:343.041200pt;}
.ye5{bottom:343.055867pt;}
.yb9{bottom:343.095733pt;}
.y260{bottom:343.157200pt;}
.y28a{bottom:343.175867pt;}
.y2f{bottom:343.494000pt;}
.y12d{bottom:346.301733pt;}
.y223{bottom:346.479481pt;}
.y21{bottom:346.513867pt;}
.y23e{bottom:352.733142pt;}
.yf6{bottom:353.114872pt;}
.y231{bottom:358.976970pt;}
.y12c{bottom:360.558400pt;}
.y2b6{bottom:361.666533pt;}
.y65{bottom:361.711867pt;}
.ye4{bottom:361.726533pt;}
.yb8{bottom:361.766400pt;}
.y25f{bottom:361.827867pt;}
.y289{bottom:361.842533pt;}
.y229{bottom:365.230630pt;}
.y235{bottom:371.479375pt;}
.y2e{bottom:374.610000pt;}
.y12b{bottom:374.815067pt;}
.y236{bottom:377.728119pt;}
.y2b5{bottom:380.338533pt;}
.y64{bottom:380.382533pt;}
.y94{bottom:380.388667pt;}
.ye3{bottom:380.397200pt;}
.yb7{bottom:380.437067pt;}
.y25e{bottom:380.498533pt;}
.y288{bottom:380.509200pt;}
.y20{bottom:382.959467pt;}
.y2d6{bottom:383.153200pt;}
.y219{bottom:383.971947pt;}
.y12a{bottom:389.071733pt;}
.y220{bottom:390.230524pt;}
.y2d{bottom:390.610000pt;}
.y248{bottom:395.417467pt;}
.y22e{bottom:396.474352pt;}
.y2b4{bottom:399.010533pt;}
.y63{bottom:399.053200pt;}
.y93{bottom:399.059333pt;}
.ye2{bottom:399.067867pt;}
.yb6{bottom:399.107733pt;}
.y2d5{bottom:399.149200pt;}
.y25d{bottom:399.169200pt;}
.y287{bottom:399.175867pt;}
.y1f{bottom:400.563467pt;}
.y22c{bottom:402.728013pt;}
.y129{bottom:403.328400pt;}
.y2c{bottom:406.610000pt;}
.y21e{bottom:408.976758pt;}
.yfd{bottom:411.827867pt;}
.y237{bottom:415.225502pt;}
.y2b3{bottom:417.682533pt;}
.y62{bottom:417.723867pt;}
.y92{bottom:417.730000pt;}
.ye1{bottom:417.738533pt;}
.yb5{bottom:417.778400pt;}
.y2d4{bottom:417.821200pt;}
.y25c{bottom:417.839867pt;}
.y286{bottom:417.842533pt;}
.y128{bottom:417.966400pt;}
.y1e{bottom:418.167467pt;}
.y21d{bottom:421.474246pt;}
.y2b{bottom:422.610000pt;}
.y213{bottom:427.718074pt;}
.y127{bottom:432.932133pt;}
.y227{bottom:433.981568pt;}
.y1d{bottom:435.771467pt;}
.y2b2{bottom:436.354533pt;}
.y61{bottom:436.394533pt;}
.y91{bottom:436.400667pt;}
.ye0{bottom:436.409200pt;}
.yb4{bottom:436.449067pt;}
.y2d3{bottom:436.493200pt;}
.y285{bottom:436.509200pt;}
.y25b{bottom:436.510533pt;}
.y215{bottom:440.220480pt;}
.y225{bottom:446.479057pt;}
.y126{bottom:447.908133pt;}
.y222{bottom:452.727801pt;}
.y1c{bottom:453.375467pt;}
.y2b1{bottom:455.026533pt;}
.y60{bottom:455.065200pt;}
.y90{bottom:455.071333pt;}
.ydf{bottom:455.079867pt;}
.yb3{bottom:455.119733pt;}
.y2d2{bottom:455.165200pt;}
.y284{bottom:455.175867pt;}
.y25a{bottom:455.181200pt;}
.y234{bottom:458.976546pt;}
.y125{bottom:462.884133pt;}
.y21b{bottom:465.220374pt;}
.y1b{bottom:470.979467pt;}
.y23b{bottom:471.478951pt;}
.y2b0{bottom:473.698533pt;}
.y5f{bottom:473.735867pt;}
.y8f{bottom:473.742000pt;}
.yde{bottom:473.750533pt;}
.yb2{bottom:473.790400pt;}
.y2d1{bottom:473.837200pt;}
.y283{bottom:473.842533pt;}
.y247{bottom:473.980107pt;}
.y21c{bottom:477.722779pt;}
.y124{bottom:477.860133pt;}
.y246{bottom:482.408267pt;}
.y233{bottom:483.976440pt;}
.y259{bottom:486.614267pt;}
.y1a{bottom:488.583467pt;}
.y22d{bottom:490.225184pt;}
.y2af{bottom:492.370533pt;}
.y5e{bottom:492.406533pt;}
.y8e{bottom:492.412667pt;}
.ydd{bottom:492.421200pt;}
.y2d0{bottom:492.509200pt;}
.y282{bottom:492.514533pt;}
.y123{bottom:492.836133pt;}
.y22a{bottom:496.478845pt;}
.y214{bottom:502.717756pt;}
.yb1{bottom:505.221067pt;}
.y19{bottom:506.187467pt;}
.y122{bottom:507.812133pt;}
.y239{bottom:508.976334pt;}
.y2ae{bottom:511.042533pt;}
.y5d{bottom:511.077200pt;}
.y8d{bottom:511.083333pt;}
.ydc{bottom:511.091867pt;}
.y2cf{bottom:511.181200pt;}
.y244{bottom:515.234911pt;}
.y281{bottom:516.026133pt;}
.y121{bottom:518.480800pt;}
.y221{bottom:522.786501pt;}
.y18{bottom:523.791467pt;}
.y22f{bottom:527.722567pt;}
.y2ad{bottom:529.714533pt;}
.y5c{bottom:529.747867pt;}
.y8c{bottom:529.754000pt;}
.ydb{bottom:529.762533pt;}
.y256{bottom:529.839867pt;}
.yf5{bottom:530.504933pt;}
.y249{bottom:532.453600pt;}
.y120{bottom:533.456800pt;}
.y23a{bottom:533.976228pt;}
.y23d{bottom:540.229888pt;}
.y17{bottom:541.395467pt;}
.y2ce{bottom:541.789867pt;}
.y212{bottom:546.468800pt;}
.y2ac{bottom:548.386533pt;}
.y5b{bottom:548.418533pt;}
.y8b{bottom:548.424667pt;}
.y11f{bottom:548.432800pt;}
.yda{bottom:548.433200pt;}
.yb0{bottom:548.458400pt;}
.y280{bottom:548.498533pt;}
.y255{bottom:548.510533pt;}
.y2f1{bottom:551.153200pt;}
.y243{bottom:552.732294pt;}
.y16{bottom:558.999467pt;}
.y23f{bottom:559.403848pt;}
.y2cd{bottom:560.456533pt;}
.y11e{bottom:563.408800pt;}
.y238{bottom:565.224866pt;}
.y2ab{bottom:567.058533pt;}
.y5a{bottom:567.089200pt;}
.y8a{bottom:567.095333pt;}
.yd9{bottom:567.103867pt;}
.yaf{bottom:567.129067pt;}
.y2f0{bottom:567.149200pt;}
.y27f{bottom:567.170533pt;}
.y254{bottom:567.181200pt;}
.y218{bottom:571.468694pt;}
.y15{bottom:576.603467pt;}
.y11d{bottom:578.384800pt;}
.y2cc{bottom:579.123200pt;}
.y2aa{bottom:585.730533pt;}
.y59{bottom:585.759867pt;}
.y89{bottom:585.766000pt;}
.yd8{bottom:585.774533pt;}
.yae{bottom:585.799733pt;}
.y2ef{bottom:585.821200pt;}
.y27e{bottom:585.842533pt;}
.y11c{bottom:593.360800pt;}
.y14{bottom:594.207467pt;}
.y24b{bottom:595.965067pt;}
.y253{bottom:598.614267pt;}
.y2a9{bottom:604.402533pt;}
.y58{bottom:604.430533pt;}
.y88{bottom:604.436667pt;}
.yd7{bottom:604.445200pt;}
.yad{bottom:604.470400pt;}
.y2ee{bottom:604.493200pt;}
.y27d{bottom:604.514533pt;}
.y2cb{bottom:607.832133pt;}
.y11b{bottom:608.336800pt;}
.y13{bottom:611.811467pt;}
.y2a8{bottom:623.074533pt;}
.y57{bottom:623.101200pt;}
.y87{bottom:623.107333pt;}
.yd6{bottom:623.115867pt;}
.yac{bottom:623.141067pt;}
.y2ed{bottom:623.165200pt;}
.y11a{bottom:623.312800pt;}
.y27c{bottom:628.026133pt;}
.y119{bottom:633.981467pt;}
.y141{bottom:637.890133pt;}
.y12{bottom:639.453600pt;}
.y2a7{bottom:641.746533pt;}
.y56{bottom:641.771867pt;}
.y86{bottom:641.778000pt;}
.yd5{bottom:641.786533pt;}
.yab{bottom:641.811733pt;}
.y2ec{bottom:641.837200pt;}
.y199{bottom:642.476400pt;}
.y118{bottom:648.957467pt;}
.y178{bottom:652.351028pt;}
.y19b{bottom:654.760673pt;}
.y1f4{bottom:657.737962pt;}
.y181{bottom:658.457932pt;}
.y2a6{bottom:660.418533pt;}
.y55{bottom:660.442533pt;}
.y85{bottom:660.448667pt;}
.y27b{bottom:660.455867pt;}
.yd4{bottom:660.457200pt;}
.yaa{bottom:660.482400pt;}
.y2ca{bottom:660.482533pt;}
.y2eb{bottom:660.509200pt;}
.y1a8{bottom:660.706037pt;}
.y155{bottom:661.645551pt;}
.y1f1{bottom:663.683326pt;}
.y117{bottom:663.933467pt;}
.y167{bottom:665.821002pt;}
.y205{bottom:667.936035pt;}
.y1a7{bottom:669.622328pt;}
.y15b{bottom:669.838425pt;}
.y1f0{bottom:672.599617pt;}
.y164{bottom:673.919059pt;}
.y1ce{bottom:676.080406pt;}
.y14a{bottom:677.701196pt;}
.y1eb{bottom:678.790803pt;}
.y116{bottom:678.909467pt;}
.y2a5{bottom:679.090533pt;}
.y54{bottom:679.113200pt;}
.y84{bottom:679.119333pt;}
.yd3{bottom:679.127867pt;}
.ya9{bottom:679.153067pt;}
.y2c9{bottom:679.154533pt;}
.y2ea{bottom:679.181200pt;}
.y14d{bottom:681.490357pt;}
.y1e5{bottom:682.102368pt;}
.y1bf{bottom:684.476960pt;}
.y156{bottom:686.238220pt;}
.y1c2{bottom:687.451398pt;}
.y20f{bottom:688.832543pt;}
.y1c7{bottom:690.422325pt;}
.y180{bottom:691.605183pt;}
.y1ad{bottom:693.396763pt;}
.y115{bottom:693.885467pt;}
.y153{bottom:695.021065pt;}
.y20e{bottom:695.853067pt;}
.y209{bottom:696.363517pt;}
.y2a4{bottom:697.762533pt;}
.y53{bottom:697.783867pt;}
.y83{bottom:697.790000pt;}
.yd2{bottom:697.798533pt;}
.y27a{bottom:697.799867pt;}
.ya8{bottom:697.823733pt;}
.y2c8{bottom:697.826533pt;}
.y159{bottom:698.620592pt;}
.y1d6{bottom:699.338616pt;}
.y1d3{bottom:702.313054pt;}
.y151{bottom:702.767949pt;}
.y1ea{bottom:705.290343pt;}
.y154{bottom:706.146236pt;}
.y1f6{bottom:708.261269pt;}
.y114{bottom:708.861467pt;}
.y16f{bottom:710.476203pt;}
.y1b6{bottom:711.222321pt;}
.y2e9{bottom:712.456533pt;}
.yf4{bottom:713.011600pt;}
.y17b{bottom:713.616727pt;}
.y1d2{bottom:714.200271pt;}
.y2a3{bottom:716.434533pt;}
.y52{bottom:716.454533pt;}
.y82{bottom:716.460667pt;}
.y252{bottom:716.469200pt;}
.y279{bottom:716.471867pt;}
.ya7{bottom:716.494400pt;}
.y2c7{bottom:716.498533pt;}
.y1b9{bottom:717.167686pt;}
.y189{bottom:718.034488pt;}
.y113{bottom:719.530133pt;}
.y1bd{bottom:720.142124pt;}
.y173{bottom:721.991177pt;}
.y208{bottom:723.112390pt;}
.y192{bottom:725.510968pt;}
.yc{bottom:725.926133pt;}
.y1c3{bottom:726.087489pt;}
.yd1{bottom:729.229200pt;}
.y176{bottom:729.394945pt;}
.y1d1{bottom:730.515784pt;}
.y2e8{bottom:731.123200pt;}
.y201{bottom:732.032192pt;}
.y15f{bottom:733.442939pt;}
.y112{bottom:734.506133pt;}
.y1af{bottom:735.003779pt;}
.y2a2{bottom:735.106533pt;}
.y51{bottom:735.125200pt;}
.y81{bottom:735.131333pt;}
.y251{bottom:735.139867pt;}
.y278{bottom:735.143867pt;}
.ya6{bottom:735.165067pt;}
.y2c6{bottom:735.170533pt;}
.y150{bottom:737.491968pt;}
.y1be{bottom:737.974706pt;}
.y1aa{bottom:740.949144pt;}
.y188{bottom:741.538519pt;}
.yb{bottom:741.926133pt;}
.y1b1{bottom:743.456522pt;}
.y15c{bottom:745.590025pt;}
.y19d{bottom:746.898020pt;}
.y111{bottom:749.482133pt;}
.y14f{bottom:749.642565pt;}
.y1e4{bottom:750.019290pt;}
.y1e8{bottom:753.137710pt;}
.y157{bottom:753.688082pt;}
.y2a1{bottom:753.778533pt;}
.y50{bottom:753.795867pt;}
.y80{bottom:753.802000pt;}
.y250{bottom:753.810533pt;}
.y277{bottom:753.815867pt;}
.ya5{bottom:753.835733pt;}
.y2c5{bottom:753.842533pt;}
.y1e0{bottom:755.810139pt;}
.ya{bottom:757.926133pt;}
.y203{bottom:758.781065pt;}
.y18e{bottom:759.076115pt;}
.y2e7{bottom:759.832000pt;}
.y1e3{bottom:761.755503pt;}
.y143{bottom:762.755378pt;}
.y197{bottom:764.232933pt;}
.y110{bottom:764.458133pt;}
.y1b8{bottom:764.720067pt;}
.y163{bottom:766.263599pt;}
.y1a1{bottom:767.701529pt;}
.y1fd{bottom:770.668282pt;}
.y158{bottom:770.681360pt;}
.y2a0{bottom:772.450533pt;}
.y4f{bottom:772.466533pt;}
.y7f{bottom:772.472667pt;}
.y24f{bottom:772.481200pt;}
.y276{bottom:772.487867pt;}
.ya4{bottom:772.506400pt;}
.y1d7{bottom:773.642721pt;}
.y9{bottom:773.926133pt;}
.y186{bottom:774.503160pt;}
.y24a{bottom:774.993733pt;}
.y1fc{bottom:776.613647pt;}
.y16a{bottom:778.245633pt;}
.y10f{bottom:779.434133pt;}
.y20b{bottom:779.581062pt;}
.y165{bottom:782.038305pt;}
.y1f3{bottom:782.566035pt;}
.y1d5{bottom:785.527087pt;}
.y193{bottom:785.645890pt;}
.y1ca{bottom:788.501525pt;}
.y172{bottom:789.778166pt;}
.y8{bottom:789.926133pt;}
.y29f{bottom:791.122533pt;}
.y4e{bottom:791.137200pt;}
.y7e{bottom:791.143333pt;}
.y24e{bottom:791.151867pt;}
.y275{bottom:791.159867pt;}
.y1f5{bottom:791.169782pt;}
.ya3{bottom:791.177067pt;}
.y20d{bottom:792.344133pt;}
.y14e{bottom:794.188903pt;}
.y10e{bottom:794.410133pt;}
.y1a0{bottom:794.450401pt;}
.y1bc{bottom:797.270323pt;}
.y17a{bottom:798.993988pt;}
.y1dc{bottom:800.391593pt;}
.y17f{bottom:802.287994pt;}
.y19c{bottom:803.366692pt;}
.y7{bottom:805.926133pt;}
.y1e1{bottom:806.519568pt;}
.y185{bottom:806.797060pt;}
.y1a9{bottom:809.308545pt;}
.y10d{bottom:809.386133pt;}
.y29e{bottom:809.794533pt;}
.y4d{bottom:809.807867pt;}
.y7d{bottom:809.814000pt;}
.y24d{bottom:809.822533pt;}
.y274{bottom:809.831867pt;}
.ya2{bottom:809.847733pt;}
.y195{bottom:811.253449pt;}
.y1b2{bottom:812.275960pt;}
.y2e6{bottom:812.486533pt;}
.y145{bottom:814.855453pt;}
.y1bb{bottom:815.246886pt;}
.y1a3{bottom:817.866639pt;}
.y18c{bottom:818.484108pt;}
.y1e7{bottom:820.562990pt;}
.y6{bottom:821.926133pt;}
.y175{bottom:823.139632pt;}
.y1e2{bottom:824.169540pt;}
.y10c{bottom:824.362133pt;}
.y1ae{bottom:827.137615pt;}
.y183{bottom:827.186183pt;}
.y29d{bottom:828.466533pt;}
.y4c{bottom:828.478533pt;}
.y2e5{bottom:828.482533pt;}
.y7c{bottom:828.484667pt;}
.y273{bottom:828.503867pt;}
.y1dd{bottom:829.967411pt;}
.y15e{bottom:831.413276pt;}
.y1e6{bottom:833.089342pt;}
.y184{bottom:835.498456pt;}
.y1c8{bottom:836.053906pt;}
.y196{bottom:837.820667pt;}
.y1ac{bottom:839.028344pt;}
.y10b{bottom:839.338133pt;}
.y194{bottom:839.891635pt;}
.y24c{bottom:841.253200pt;}
.y1f2{bottom:842.009145pt;}
.y17e{bottom:843.445509pt;}
.yd0{bottom:844.215200pt;}
.y202{bottom:844.969536pt;}
.y29c{bottom:847.138533pt;}
.y4b{bottom:847.149200pt;}
.y2e4{bottom:847.154533pt;}
.y7b{bottom:847.155333pt;}
.y272{bottom:847.175867pt;}
.y18a{bottom:847.491026pt;}
.y1ec{bottom:847.947486pt;}
.y1c0{bottom:850.912050pt;}
.y152{bottom:852.251902pt;}
.y5{bottom:853.044267pt;}
.y206{bottom:853.885827pt;}
.y10a{bottom:854.314133pt;}
.y18d{bottom:855.936744pt;}
.y19f{bottom:856.864438pt;}
.y149{bottom:858.980383pt;}
.ycf{bottom:859.191200pt;}
.y1de{bottom:859.831192pt;}
.y1d9{bottom:862.805630pt;}
.y174{bottom:863.988114pt;}
.y1cc{bottom:865.773705pt;}
.y29b{bottom:865.810533pt;}
.y4a{bottom:865.819867pt;}
.y7a{bottom:865.826000pt;}
.y2e3{bottom:865.826533pt;}
.y271{bottom:865.847867pt;}
.y191{bottom:867.082986pt;}
.y1ef{bottom:868.754506pt;}
.y109{bottom:869.290133pt;}
.y4{bottom:870.644267pt;}
.y144{bottom:871.127468pt;}
.y1ee{bottom:871.725433pt;}
.yce{bottom:874.167200pt;}
.y1c4{bottom:874.689996pt;}
.y18b{bottom:875.181043pt;}
.y204{bottom:877.663774pt;}
.y169{bottom:879.232549pt;}
.y1a6{bottom:880.638873pt;}
.y16e{bottom:883.281577pt;}
.y1ed{bottom:883.612650pt;}
.y29a{bottom:884.482533pt;}
.y49{bottom:884.490533pt;}
.y79{bottom:884.496667pt;}
.y2e2{bottom:884.498533pt;}
.y108{bottom:884.534800pt;}
.y107{bottom:886.502133pt;}
.y1cf{bottom:886.577214pt;}
.y177{bottom:887.335152pt;}
.ycd{bottom:889.143200pt;}
.y270{bottom:889.359333pt;}
.y1b3{bottom:889.548140pt;}
.y182{bottom:891.380669pt;}
.y106{bottom:891.840800pt;}
.y1c5{bottom:892.522578pt;}
.y148{bottom:895.428663pt;}
.y1f8{bottom:895.499867pt;}
.y1fa{bottom:898.470794pt;}
.y16d{bottom:899.481203pt;}
.y1fb{bottom:901.441720pt;}
.y299{bottom:903.154533pt;}
.y48{bottom:903.161200pt;}
.y78{bottom:903.167333pt;}
.y2e1{bottom:903.170533pt;}
.y3{bottom:903.364933pt;}
.y147{bottom:903.526720pt;}
.ycc{bottom:904.119200pt;}
.y1c9{bottom:904.413307pt;}
.y1cb{bottom:907.384234pt;}
.y171{bottom:908.499334pt;}
.y207{bottom:910.354499pt;}
.y166{bottom:912.485152pt;}
.y1df{bottom:913.328937pt;}
.y1ab{bottom:916.300525pt;}
.y15d{bottom:917.001241pt;}
.ycb{bottom:919.095200pt;}
.y200{bottom:919.270790pt;}
.y142{bottom:920.031867pt;}
.y298{bottom:921.826533pt;}
.y47{bottom:921.831867pt;}
.y77{bottom:921.838000pt;}
.y2e0{bottom:921.842533pt;}
.y26f{bottom:921.847867pt;}
.y1a5{bottom:922.249401pt;}
.y105{bottom:924.502000pt;}
.y16b{bottom:925.130903pt;}
.y1b4{bottom:925.213304pt;}
.y1b5{bottom:928.184230pt;}
.y187{bottom:928.956215pt;}
.y20c{bottom:929.702133pt;}
.y1c6{bottom:931.158668pt;}
.y179{bottom:932.682165pt;}
.y2{bottom:932.695600pt;}
.y1ba{bottom:934.129595pt;}
.yca{bottom:934.339867pt;}
.y18f{bottom:936.127175pt;}
.y1b7{bottom:937.100521pt;}
.y140{bottom:938.682981pt;}
.y170{bottom:939.978512pt;}
.y1c1{bottom:940.074959pt;}
.y297{bottom:940.498533pt;}
.y46{bottom:940.502533pt;}
.y76{bottom:940.508667pt;}
.y2df{bottom:940.514533pt;}
.y104{bottom:942.106000pt;}
.y1b0{bottom:943.049397pt;}
.y190{bottom:944.028575pt;}
.y26e{bottom:945.359333pt;}
.y1da{bottom:946.023175pt;}
.y14b{bottom:948.101151pt;}
.y13f{bottom:948.141371pt;}
.y1f9{bottom:948.997613pt;}
.y19a{bottom:951.969200pt;}
.y15a{bottom:952.153691pt;}
.y1f7{bottom:954.942977pt;}
.y198{bottom:955.888400pt;}
.y162{bottom:956.202720pt;}
.y13e{bottom:957.355067pt;}
.y1d0{bottom:957.907541pt;}
.y296{bottom:959.170533pt;}
.y45{bottom:959.173200pt;}
.y103{bottom:959.710000pt;}
.yc9{bottom:959.710133pt;}
.y168{bottom:960.255260pt;}
.y19e{bottom:960.885491pt;}
.y1d8{bottom:963.855757pt;}
.y16c{bottom:964.304289pt;}
.y1db{bottom:966.826683pt;}
.y13d{bottom:968.086400pt;}
.y146{bottom:968.349806pt;}
.y1a2{bottom:969.801782pt;}
.y75{bottom:970.692667pt;}
.y1d4{bottom:972.769197pt;}
.y14c{bottom:973.195998pt;}
.y1a4{bottom:975.747146pt;}
.y102{bottom:977.314000pt;}
.yc8{bottom:977.314133pt;}
.y17d{bottom:977.681515pt;}
.y295{bottom:977.842533pt;}
.y44{bottom:977.843867pt;}
.y26d{bottom:977.847867pt;}
.y20a{bottom:978.710389pt;}
.y1fe{bottom:981.684827pt;}
.y161{bottom:981.831350pt;}
.y1ff{bottom:984.655753pt;}
.y17c{bottom:984.694447pt;}
.y11{bottom:986.502667pt;}
.y1e9{bottom:987.633703pt;}
.y160{bottom:989.518534pt;}
.y1cd{bottom:990.601778pt;}
.y101{bottom:994.918000pt;}
.yc7{bottom:994.918133pt;}
.y43{bottom:996.514533pt;}
.y74{bottom:999.401467pt;}
.yf3{bottom:999.401600pt;}
.y26c{bottom:1000.401600pt;}
.y3c{bottom:1009.540000pt;}
.y3f{bottom:1024.013867pt;}
.y3a{bottom:1030.390667pt;}
.y39{bottom:1047.724000pt;}
.y42{bottom:1047.726267pt;}
.h1c{height:10.226167pt;}
.h1e{height:10.230305pt;}
.h20{height:10.237571pt;}
.h1d{height:10.240214pt;}
.h22{height:14.316557pt;}
.h23{height:14.336222pt;}
.h10{height:14.923012pt;}
.h1f{height:16.046912pt;}
.h24{height:19.103829pt;}
.h14{height:24.786667pt;}
.h19{height:24.788317pt;}
.h1b{height:25.598827pt;}
.h15{height:29.744000pt;}
.h1a{height:29.785067pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h25{height:31.711936pt;}
.h12{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h8{height:36.000000pt;}
.h28{height:38.133333pt;}
.he{height:38.273438pt;}
.hd{height:38.507812pt;}
.h9{height:40.546875pt;}
.ha{height:41.184000pt;}
.h26{height:41.205333pt;}
.h27{height:41.440000pt;}
.h13{height:44.601562pt;}
.hf{height:44.948000pt;}
.h4{height:45.188000pt;}
.h17{height:46.106667pt;}
.hb{height:48.656250pt;}
.hc{height:50.336000pt;}
.h3{height:68.000000pt;}
.h11{height:71.844560pt;}
.h18{height:75.296000pt;}
.h16{height:77.416699pt;}
.h21{height:784.505333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:165.230667pt;}
.w3{width:618.805333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.877867pt;}
.xc{left:95.167867pt;}
.xe{left:96.257467pt;}
.xb{left:98.747867pt;}
.x12{left:100.300533pt;}
.x52{left:102.566667pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.x1a{left:122.178133pt;}
.x1b{left:131.715733pt;}
.x37{left:188.492865pt;}
.x33{left:192.959790pt;}
.x61{left:196.948400pt;}
.x11{left:221.556400pt;}
.x1c{left:240.512667pt;}
.x5{left:266.834667pt;}
.x10{left:270.613867pt;}
.x23{left:275.163092pt;}
.x1f{left:277.024311pt;}
.x31{left:278.766130pt;}
.x22{left:279.661622pt;}
.xd{left:281.956000pt;}
.x3b{left:282.877722pt;}
.x1e{left:284.402462pt;}
.x26{left:285.782574pt;}
.x27{left:287.724562pt;}
.x28{left:289.160861pt;}
.x20{left:290.835958pt;}
.x2e{left:292.781458pt;}
.xf{left:295.599867pt;}
.x36{left:297.093219pt;}
.x2f{left:300.967309pt;}
.x2a{left:302.294744pt;}
.x25{left:303.541409pt;}
.x3a{left:305.521379pt;}
.x24{left:306.428054pt;}
.x2c{left:309.226905pt;}
.x21{left:311.976593pt;}
.x34{left:312.976789pt;}
.x32{left:315.249528pt;}
.x38{left:322.233718pt;}
.x35{left:327.188773pt;}
.x13{left:330.946533pt;}
.x39{left:342.868663pt;}
.x4{left:352.045067pt;}
.x30{left:354.377261pt;}
.x29{left:355.518574pt;}
.x3c{left:363.814400pt;}
.x1d{left:367.328533pt;}
.x5e{left:371.213311pt;}
.x54{left:373.101209pt;}
.x2d{left:376.150007pt;}
.x3d{left:378.082400pt;}
.x2b{left:381.333326pt;}
.x58{left:390.421686pt;}
.x53{left:392.924133pt;}
.x5b{left:393.956577pt;}
.x62{left:402.148133pt;}
.x40{left:410.285307pt;}
.x5d{left:412.452074pt;}
.x57{left:432.235668pt;}
.x14{left:445.528533pt;}
.x5a{left:451.935683pt;}
.x55{left:471.601283pt;}
.x3f{left:487.690933pt;}
.x46{left:490.198311pt;}
.x15{left:492.987200pt;}
.x5f{left:494.518933pt;}
.x5c{left:496.399604pt;}
.x3e{left:505.984533pt;}
.x42{left:513.607525pt;}
.x41{left:515.465232pt;}
.x45{left:517.157888pt;}
.x60{left:528.612800pt;}
.x59{left:531.428954pt;}
.x16{left:538.287867pt;}
.x4d{left:541.762387pt;}
.x4a{left:543.457259pt;}
.x43{left:566.884032pt;}
.x4c{left:568.033664pt;}
.xa{left:579.487733pt;}
.x4e{left:581.060133pt;}
.x17{left:587.843867pt;}
.x56{left:591.831845pt;}
.x49{left:593.200961pt;}
.x4b{left:594.152641pt;}
.x47{left:595.645128pt;}
.x9{left:597.823733pt;}
.x4f{left:615.519200pt;}
.x48{left:619.728595pt;}
.x44{left:621.449344pt;}
.x18{left:638.994533pt;}
.x19{left:658.251867pt;}
.x50{left:688.638800pt;}
.x51{left:701.140052pt;}
.x1{left:712.140000pt;}
}




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