
    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_cca035e564355fbcc6400e17.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_01650adf49bed10dd6f5cbfa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.191000;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_e58337b83028da4fc586fc35.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_326fa7dd497b1a820e65a38b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.068000;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_1ec78d158ffc52be9289fb79.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.691000;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_9138ead16249a70a562fe99a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.943000;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_3356e3cd3ab72ba7220b2a1f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900000;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_d16a4987a100c69e73ebfccc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000488;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_a1d77b9447f1be1c7c6832ae.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.206055;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_8427b1b0e184e7eb76d1a37f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.200195;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_45338977b1c7af5a142552d1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.988281;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_4145ddd0885bcfb109132386.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666000;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_30e5d66b2d8d7e85cbac55a1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000488;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_d91ace02ee9d3a8ddbdd8349.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.206055;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_bf18c3ef7f56416c01843011.woff2')format("woff");}.fff{font-family:fff;line-height:1.200195;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_e355bff29f8d20048d37e5ae.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000488;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_f39f6df066cb791e90156812.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.206055;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_e367a80b165e6b926a71a468.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.200195;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_56abf7a867580cd20f1b5f6b.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000488;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_9411163bc0f96656ea4c2c7c.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.206055;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_01684434db5f49d8f3b4d5fa.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.200195;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_5899afc546b45d26e4738bda.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000488;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_3ec1ec198392c7842e1b844d.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.206055;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_d32f37e494efabad1c708e5d.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.200195;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_c76bc49da4ef79afe40257c3.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.988281;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_42c0c95d89dbf9e9f580dba4.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000488;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_cce93b33b745c6e2befcf409.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.206055;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_3d255081340f47ddd3f7f10c.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.200195;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_faa6b858fec71b65bad5a3d1.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.988281;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_ca0d2701a96f2a8efffb8356.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.703000;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;}
.md{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m25{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.123000px;}
.v4{vertical-align:19.524000px;}
.v1{vertical-align:21.696000px;}
.ls8c{letter-spacing:-0.348395px;}
.ls9a{letter-spacing:-0.336672px;}
.lsc3{letter-spacing:-0.324648px;}
.ls99{letter-spacing:-0.282564px;}
.ls8a{letter-spacing:-0.279859px;}
.ls7c{letter-spacing:-0.257013px;}
.ls7d{letter-spacing:-0.245590px;}
.lsbe{letter-spacing:-0.234468px;}
.ls2a{letter-spacing:-0.228456px;}
.ls87{letter-spacing:-0.205610px;}
.lsc4{letter-spacing:-0.180360px;}
.lsc2{letter-spacing:-0.174348px;}
.ls79{letter-spacing:-0.171342px;}
.ls7e{letter-spacing:-0.159919px;}
.ls52{letter-spacing:-0.152104px;}
.ls54{letter-spacing:-0.145490px;}
.lsc1{letter-spacing:-0.144288px;}
.ls5b{letter-spacing:-0.142560px;}
.lsab{letter-spacing:-0.138276px;}
.lsbf{letter-spacing:-0.126252px;}
.ls51{letter-spacing:-0.125651px;}
.lsc0{letter-spacing:-0.120240px;}
.ls88{letter-spacing:-0.102805px;}
.ls80{letter-spacing:-0.097094px;}
.lsae{letter-spacing:-0.091800px;}
.lsaf{letter-spacing:-0.086400px;}
.ls4e{letter-spacing:-0.085972px;}
.ls86{letter-spacing:-0.082080px;}
.lsac{letter-spacing:-0.081000px;}
.ls57{letter-spacing:-0.077220px;}
.ls8b{letter-spacing:-0.074248px;}
.lsaa{letter-spacing:-0.066132px;}
.ls5a{letter-spacing:-0.065340px;}
.ls96{letter-spacing:-0.059400px;}
.ls9b{letter-spacing:-0.054108px;}
.lsad{letter-spacing:-0.054000px;}
.ls34{letter-spacing:-0.048600px;}
.ls5e{letter-spacing:-0.047520px;}
.ls7b{letter-spacing:-0.045691px;}
.ls83{letter-spacing:-0.041040px;}
.ls98{letter-spacing:-0.036072px;}
.ls85{letter-spacing:-0.035910px;}
.ls7a{letter-spacing:-0.034268px;}
.ls2b{letter-spacing:-0.030060px;}
.ls59{letter-spacing:-0.029700px;}
.ls53{letter-spacing:-0.026453px;}
.ls2f{letter-spacing:-0.024048px;}
.ls56{letter-spacing:-0.023760px;}
.ls78{letter-spacing:-0.022846px;}
.ls30{letter-spacing:-0.021600px;}
.ls84{letter-spacing:-0.020520px;}
.ls2d{letter-spacing:-0.018036px;}
.ls58{letter-spacing:-0.017820px;}
.ls89{letter-spacing:-0.017134px;}
.ls33{letter-spacing:-0.016200px;}
.ls81{letter-spacing:-0.015390px;}
.ls4f{letter-spacing:-0.013226px;}
.ls2c{letter-spacing:-0.012024px;}
.ls5c{letter-spacing:-0.011880px;}
.ls8d{letter-spacing:-0.011423px;}
.ls95{letter-spacing:-0.010800px;}
.ls55{letter-spacing:-0.006613px;}
.ls29{letter-spacing:-0.006012px;}
.ls5d{letter-spacing:-0.005940px;}
.ls77{letter-spacing:-0.005711px;}
.ls31{letter-spacing:-0.005400px;}
.ls82{letter-spacing:-0.005130px;}
.ls11{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000178px;}
.ls4{letter-spacing:0.000583px;}
.lsde{letter-spacing:0.000676px;}
.lse5{letter-spacing:0.000701px;}
.lscd{letter-spacing:0.000741px;}
.lsd4{letter-spacing:0.000800px;}
.lsda{letter-spacing:0.000823px;}
.lscb{letter-spacing:0.001036px;}
.lsd5{letter-spacing:0.001155px;}
.lse2{letter-spacing:0.001276px;}
.lse4{letter-spacing:0.001449px;}
.lsd{letter-spacing:0.001573px;}
.lsdf{letter-spacing:0.001584px;}
.lse{letter-spacing:0.001634px;}
.lse3{letter-spacing:0.001701px;}
.ls9d{letter-spacing:0.001801px;}
.lsc{letter-spacing:0.001952px;}
.lsc9{letter-spacing:0.001996px;}
.lsd0{letter-spacing:0.002074px;}
.lse0{letter-spacing:0.002096px;}
.lsca{letter-spacing:0.002544px;}
.lsdc{letter-spacing:0.002841px;}
.lsec{letter-spacing:0.002856px;}
.lsea{letter-spacing:0.003040px;}
.lscc{letter-spacing:0.003090px;}
.ls9c{letter-spacing:0.003409px;}
.lsc8{letter-spacing:0.003668px;}
.lse8{letter-spacing:0.003846px;}
.lse1{letter-spacing:0.003940px;}
.lsdd{letter-spacing:0.004028px;}
.ls7{letter-spacing:0.004200px;}
.lsd2{letter-spacing:0.004221px;}
.lseb{letter-spacing:0.004315px;}
.lsd9{letter-spacing:0.004749px;}
.ls9{letter-spacing:0.004766px;}
.lsd6{letter-spacing:0.004800px;}
.ls71{letter-spacing:0.005130px;}
.lsa6{letter-spacing:0.005400px;}
.ls62{letter-spacing:0.005711px;}
.lse9{letter-spacing:0.005888px;}
.ls47{letter-spacing:0.005940px;}
.ls19{letter-spacing:0.006012px;}
.ls3d{letter-spacing:0.006613px;}
.ls24{letter-spacing:0.010800px;}
.ls6d{letter-spacing:0.011423px;}
.ls20{letter-spacing:0.012024px;}
.ls3f{letter-spacing:0.013226px;}
.ls6f{letter-spacing:0.015390px;}
.ls28{letter-spacing:0.016200px;}
.ls65{letter-spacing:0.017134px;}
.ls45{letter-spacing:0.017820px;}
.ls1a{letter-spacing:0.018036px;}
.ls5f{letter-spacing:0.018194px;}
.ls12{letter-spacing:0.019152px;}
.ls35{letter-spacing:0.021067px;}
.ls22{letter-spacing:0.021600px;}
.ls69{letter-spacing:0.022846px;}
.ls18{letter-spacing:0.024048px;}
.ls6e{letter-spacing:0.025650px;}
.ls38{letter-spacing:0.026453px;}
.ls21{letter-spacing:0.027000px;}
.ls6b{letter-spacing:0.028557px;}
.ls4b{letter-spacing:0.029700px;}
.ls17{letter-spacing:0.030060px;}
.ls73{letter-spacing:0.030780px;}
.ls8e{letter-spacing:0.032400px;}
.ls40{letter-spacing:0.033066px;}
.ls63{letter-spacing:0.034268px;}
.ls92{letter-spacing:0.036072px;}
.ls27{letter-spacing:0.037800px;}
.ls3a{letter-spacing:0.039679px;}
.ls67{letter-spacing:0.039980px;}
.ls42{letter-spacing:0.041580px;}
.ls1b{letter-spacing:0.042084px;}
.lsa5{letter-spacing:0.043200px;}
.ls74{letter-spacing:0.046170px;}
.ls4c{letter-spacing:0.047520px;}
.ls1c{letter-spacing:0.048096px;}
.ls8f{letter-spacing:0.048600px;}
.ls72{letter-spacing:0.051300px;}
.ls68{letter-spacing:0.051403px;}
.ls48{letter-spacing:0.053460px;}
.lsbd{letter-spacing:0.054000px;}
.ls16{letter-spacing:0.054108px;}
.ls6a{letter-spacing:0.057114px;}
.ls46{letter-spacing:0.059400px;}
.ls39{letter-spacing:0.059519px;}
.ls1e{letter-spacing:0.060120px;}
.ls66{letter-spacing:0.062825px;}
.ls44{letter-spacing:0.065340px;}
.ls1d{letter-spacing:0.066132px;}
.ls70{letter-spacing:0.066690px;}
.ls23{letter-spacing:0.070200px;}
.ls49{letter-spacing:0.071280px;}
.ls15{letter-spacing:0.072144px;}
.ls3e{letter-spacing:0.072745px;}
.ls90{letter-spacing:0.075600px;}
.ls4a{letter-spacing:0.077220px;}
.lsbb{letter-spacing:0.078156px;}
.ls3b{letter-spacing:0.079358px;}
.ls64{letter-spacing:0.079960px;}
.ls1f{letter-spacing:0.084168px;}
.ls6c{letter-spacing:0.085671px;}
.ls41{letter-spacing:0.085972px;}
.lsbc{letter-spacing:0.086400px;}
.ls2e{letter-spacing:0.090180px;}
.lsa7{letter-spacing:0.091800px;}
.ls50{letter-spacing:0.092585px;}
.ls91{letter-spacing:0.096192px;}
.lsa3{letter-spacing:0.102204px;}
.ls25{letter-spacing:0.108000px;}
.lsa1{letter-spacing:0.108216px;}
.ls75{letter-spacing:0.108517px;}
.lsa2{letter-spacing:0.114228px;}
.ls43{letter-spacing:0.118800px;}
.ls26{letter-spacing:0.124200px;}
.ls97{letter-spacing:0.126252px;}
.lsa4{letter-spacing:0.138276px;}
.ls3c{letter-spacing:0.145490px;}
.ls61{letter-spacing:0.159201px;}
.ls14{letter-spacing:0.167580px;}
.lsb9{letter-spacing:0.172368px;}
.ls60{letter-spacing:0.172847px;}
.lsba{letter-spacing:0.180360px;}
.ls13{letter-spacing:0.181944px;}
.ls37{letter-spacing:0.184338px;}
.ls36{letter-spacing:0.200138px;}
.ls32{letter-spacing:0.378000px;}
.ls7f{letter-spacing:1.113723px;}
.lsc7{letter-spacing:1.467483px;}
.ls6{letter-spacing:2.989200px;}
.ls8{letter-spacing:2.998354px;}
.lsb5{letter-spacing:3.559200px;}
.ls2{letter-spacing:10.461116px;}
.ls1{letter-spacing:10.461299px;}
.ls0{letter-spacing:10.461300px;}
.ls10{letter-spacing:11.954850px;}
.lse6{letter-spacing:12.093257px;}
.lsd7{letter-spacing:13.383402px;}
.lsd3{letter-spacing:13.442184px;}
.lscf{letter-spacing:13.448400px;}
.ls4d{letter-spacing:13.450800px;}
.lsa9{letter-spacing:13.451674px;}
.lsce{letter-spacing:13.454400px;}
.lsee{letter-spacing:13.626388px;}
.lsd1{letter-spacing:14.156282px;}
.lsed{letter-spacing:14.491576px;}
.lsc6{letter-spacing:14.535729px;}
.lsb3{letter-spacing:14.703916px;}
.lsb0{letter-spacing:14.835139px;}
.lsc5{letter-spacing:14.852499px;}
.ls9f{letter-spacing:14.901807px;}
.ls3{letter-spacing:14.944200px;}
.lsb6{letter-spacing:14.944766px;}
.ls94{letter-spacing:15.072846px;}
.lsb7{letter-spacing:15.246964px;}
.lsef{letter-spacing:15.250400px;}
.lsb4{letter-spacing:15.508200px;}
.ls9e{letter-spacing:15.600061px;}
.lsb2{letter-spacing:15.663483px;}
.ls76{letter-spacing:15.706682px;}
.lsd8{letter-spacing:16.115106px;}
.ls93{letter-spacing:16.434600px;}
.lsb1{letter-spacing:16.506318px;}
.lse7{letter-spacing:19.226871px;}
.lsdb{letter-spacing:21.026871px;}
.lsb8{letter-spacing:21.223590px;}
.lsa0{letter-spacing:21.494178px;}
.ls5{letter-spacing:57.415200px;}
.lsa{letter-spacing:62.761200px;}
.lsf{letter-spacing:64.321654px;}
.lsa8{letter-spacing:848.972556px;}
.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;}
}
.ws60{word-spacing:-60.120000px;}
.ws1a7{word-spacing:-54.000000px;}
.wsac{word-spacing:-16.572679px;}
.wsad{word-spacing:-16.533000px;}
.ws152{word-spacing:-15.030000px;}
.wsd{word-spacing:-14.943900px;}
.wsae{word-spacing:-14.850000px;}
.ws17{word-spacing:-14.355754px;}
.ws105{word-spacing:-14.295634px;}
.ws104{word-spacing:-14.032910px;}
.ws107{word-spacing:-13.930105px;}
.ws61{word-spacing:-13.500000px;}
.ws1a9{word-spacing:-13.449600px;}
.wsaa{word-spacing:-13.367138px;}
.wsa9{word-spacing:-13.188067px;}
.wsab{word-spacing:-13.167000px;}
.ws106{word-spacing:-12.825000px;}
.ws5e{word-spacing:-12.151944px;}
.ws5d{word-spacing:-11.989152px;}
.ws5f{word-spacing:-11.970000px;}
.ws1e{word-spacing:-11.955150px;}
.ws102{word-spacing:-11.544347px;}
.ws101{word-spacing:-11.389694px;}
.ws103{word-spacing:-11.371500px;}
.ws11{word-spacing:-11.357400px;}
.ws2{word-spacing:-10.460700px;}
.ws151{word-spacing:-8.280000px;}
.ws5a{word-spacing:-3.706087px;}
.ws31{word-spacing:-3.604493px;}
.ws18a{word-spacing:-3.601188px;}
.ws69{word-spacing:-3.204396px;}
.ws22c{word-spacing:-3.168107px;}
.ws189{word-spacing:-3.162312px;}
.ws167{word-spacing:-3.072600px;}
.ws18d{word-spacing:-3.048556px;}
.wsd7{word-spacing:-3.011580px;}
.ws196{word-spacing:-2.988780px;}
.ws72{word-spacing:-2.849688px;}
.ws20b{word-spacing:-2.825640px;}
.ws30{word-spacing:-2.797517px;}
.ws1ba{word-spacing:-2.795580px;}
.ws71{word-spacing:-2.759508px;}
.ws1d4{word-spacing:-2.721600px;}
.ws258{word-spacing:-2.690231px;}
.wsd5{word-spacing:-2.613600px;}
.ws154{word-spacing:-2.582323px;}
.wsd4{word-spacing:-2.548260px;}
.wsd6{word-spacing:-2.494800px;}
.ws73{word-spacing:-2.416824px;}
.ws1e9{word-spacing:-2.391024px;}
.ws21b{word-spacing:-2.381400px;}
.ws1cf{word-spacing:-2.359800px;}
.ws1d0{word-spacing:-2.349000px;}
.ws1e8{word-spacing:-2.331248px;}
.ws257{word-spacing:-2.313331px;}
.ws130{word-spacing:-2.287980px;}
.ws21a{word-spacing:-2.284200px;}
.ws22d{word-spacing:-2.271473px;}
.ws12e{word-spacing:-2.246940px;}
.ws12f{word-spacing:-2.236680px;}
.ws109{word-spacing:-2.205734px;}
.ws108{word-spacing:-2.151936px;}
.ws213{word-spacing:-2.134260px;}
.ws215{word-spacing:-2.128248px;}
.ws216{word-spacing:-2.098188px;}
.ws1b4{word-spacing:-2.080152px;}
.ws214{word-spacing:-2.056104px;}
.ws16a{word-spacing:-2.050092px;}
.ws225{word-spacing:-2.038068px;}
.ws1b3{word-spacing:-2.001996px;}
.ws1a1{word-spacing:-1.972595px;}
.ws18f{word-spacing:-1.912819px;}
.ws15a{word-spacing:-1.853044px;}
.ws16d{word-spacing:-1.833660px;}
.ws26d{word-spacing:-1.775347px;}
.ws1f9{word-spacing:-1.767528px;}
.ws226{word-spacing:-1.755504px;}
.ws8e{word-spacing:-1.737468px;}
.ws87{word-spacing:-1.719432px;}
.ws201{word-spacing:-1.671336px;}
.ws32{word-spacing:-1.667750px;}
.ws9c{word-spacing:-1.657800px;}
.ws161{word-spacing:-1.652400px;}
.ws9b{word-spacing:-1.614600px;}
.ws148{word-spacing:-1.587769px;}
.ws25a{word-spacing:-1.560154px;}
.wsa8{word-spacing:-1.554166px;}
.ws1ff{word-spacing:-1.527048px;}
.ws23f{word-spacing:-1.506355px;}
.ws1a2{word-spacing:-1.494390px;}
.ws62{word-spacing:-1.452557px;}
.ws1f8{word-spacing:-1.442880px;}
.ws16c{word-spacing:-1.418832px;}
.ws1fd{word-spacing:-1.412820px;}
.ws8b{word-spacing:-1.400796px;}
.ws46{word-spacing:-1.374839px;}
.ws1fe{word-spacing:-1.364724px;}
.ws200{word-spacing:-1.340676px;}
.ws11d{word-spacing:-1.325045px;}
.ws3e{word-spacing:-1.315063px;}
.ws1d6{word-spacing:-1.306800px;}
.ws18e{word-spacing:-1.255288px;}
.ws22b{word-spacing:-1.195512px;}
.ws3{word-spacing:-1.171598px;}
.ws1d5{word-spacing:-1.166400px;}
.wsdb{word-spacing:-1.057320px;}
.wsdf{word-spacing:-1.051380px;}
.ws8f{word-spacing:-1.046088px;}
.ws5{word-spacing:-1.046070px;}
.wsed{word-spacing:-1.039500px;}
.ws191{word-spacing:-1.016185px;}
.ws16f{word-spacing:-1.016028px;}
.wsdd{word-spacing:-1.009800px;}
.ws11e{word-spacing:-0.993784px;}
.ws123{word-spacing:-0.970938px;}
.wsee{word-spacing:-0.968220px;}
.ws14c{word-spacing:-0.965227px;}
.ws1c0{word-spacing:-0.937872px;}
.wsdc{word-spacing:-0.926640px;}
.wsde{word-spacing:-0.914760px;}
.wsb1{word-spacing:-0.914573px;}
.ws195{word-spacing:-0.896634px;}
.wsb3{word-spacing:-0.879340px;}
.wsb2{word-spacing:-0.860774px;}
.ws1c1{word-spacing:-0.853704px;}
.ws206{word-spacing:-0.847692px;}
.ws207{word-spacing:-0.817632px;}
.ws1e4{word-spacing:-0.777083px;}
.ws174{word-spacing:-0.673344px;}
.ws1da{word-spacing:-0.657532px;}
.ws14b{word-spacing:-0.628254px;}
.ws173{word-spacing:-0.625248px;}
.ws14d{word-spacing:-0.616831px;}
.ws111{word-spacing:-0.597756px;}
.ws248{word-spacing:-0.591782px;}
.ws1cb{word-spacing:-0.588600px;}
.ws1d1{word-spacing:-0.583200px;}
.ws1cc{word-spacing:-0.556200px;}
.ws1d3{word-spacing:-0.550800px;}
.ws190{word-spacing:-0.537980px;}
.ws1d2{word-spacing:-0.518400px;}
.ws59{word-spacing:-0.478205px;}
.ws126{word-spacing:-0.439778px;}
.ws1de{word-spacing:-0.418429px;}
.ws1b2{word-spacing:-0.384768px;}
.ws43{word-spacing:-0.358654px;}
.ws125{word-spacing:-0.342684px;}
.wsd3{word-spacing:-0.330660px;}
.ws1b1{word-spacing:-0.324648px;}
.ws23{word-spacing:-0.322790px;}
.ws185{word-spacing:-0.306612px;}
.wsb7{word-spacing:-0.300208px;}
.ws38{word-spacing:-0.298878px;}
.ws116{word-spacing:-0.291281px;}
.ws176{word-spacing:-0.288576px;}
.ws208{word-spacing:-0.282564px;}
.ws67{word-spacing:-0.272916px;}
.ws25{word-spacing:-0.268992px;}
.ws112{word-spacing:-0.259270px;}
.ws12c{word-spacing:-0.257013px;}
.ws86{word-spacing:-0.252504px;}
.ws114{word-spacing:-0.251302px;}
.ws1f1{word-spacing:-0.246492px;}
.ws18c{word-spacing:-0.240480px;}
.ws3d{word-spacing:-0.239102px;}
.ws16e{word-spacing:-0.234468px;}
.wse7{word-spacing:-0.225720px;}
.ws183{word-spacing:-0.216432px;}
.ws63{word-spacing:-0.215194px;}
.wsb9{word-spacing:-0.211622px;}
.ws124{word-spacing:-0.211322px;}
.wse8{word-spacing:-0.196020px;}
.wse9{word-spacing:-0.184140px;}
.ws3b{word-spacing:-0.179327px;}
.ws22{word-spacing:-0.161395px;}
.ws37{word-spacing:-0.119551px;}
.ws20{word-spacing:-0.107597px;}
.ws1f{word-spacing:-0.095641px;}
.ws14f{word-spacing:-0.068444px;}
.ws150{word-spacing:-0.067081px;}
.wse{word-spacing:-0.059776px;}
.ws26{word-spacing:-0.053798px;}
.ws1d{word-spacing:-0.047821px;}
.ws22f{word-spacing:-0.012725px;}
.ws27d{word-spacing:-0.008976px;}
.ws27b{word-spacing:-0.007421px;}
.ws20a{word-spacing:-0.006012px;}
.ws13{word-spacing:-0.004517px;}
.ws16{word-spacing:-0.003908px;}
.ws26a{word-spacing:-0.003667px;}
.ws268{word-spacing:-0.003466px;}
.ws1c{word-spacing:-0.002392px;}
.ws18{word-spacing:-0.002282px;}
.ws27e{word-spacing:-0.002141px;}
.ws10{word-spacing:-0.002058px;}
.ws14{word-spacing:-0.001500px;}
.ws33{word-spacing:-0.000868px;}
.ws12{word-spacing:-0.000233px;}
.ws1{word-spacing:0.000000px;}
.ws1b{word-spacing:0.001483px;}
.ws19{word-spacing:0.002150px;}
.ws117{word-spacing:0.005711px;}
.ws85{word-spacing:0.006012px;}
.ws217{word-spacing:0.012024px;}
.wsca{word-spacing:0.013226px;}
.ws172{word-spacing:0.018036px;}
.wscf{word-spacing:0.019840px;}
.ws84{word-spacing:0.030060px;}
.ws1b7{word-spacing:0.036072px;}
.ws1fc{word-spacing:0.042084px;}
.ws175{word-spacing:0.048096px;}
.ws66{word-spacing:0.053798px;}
.ws20f{word-spacing:0.054108px;}
.ws36{word-spacing:0.059776px;}
.ws1d7{word-spacing:0.086400px;}
.ws1f4{word-spacing:0.090180px;}
.ws6b{word-spacing:0.096192px;}
.ws14e{word-spacing:0.097094px;}
.ws168{word-spacing:0.102600px;}
.ws64{word-spacing:0.107597px;}
.ws94{word-spacing:0.108000px;}
.ws184{word-spacing:0.108216px;}
.ws147{word-spacing:0.108517px;}
.ws83{word-spacing:0.114228px;}
.ws222{word-spacing:0.118800px;}
.ws42{word-spacing:0.119551px;}
.ws11f{word-spacing:0.119939px;}
.ws209{word-spacing:0.120240px;}
.wseb{word-spacing:0.124740px;}
.ws169{word-spacing:0.145800px;}
.ws13e{word-spacing:0.153900px;}
.ws10e{word-spacing:0.155914px;}
.ws93{word-spacing:0.156600px;}
.ws146{word-spacing:0.159919px;}
.ws21{word-spacing:0.161395px;}
.ws10f{word-spacing:0.164189px;}
.wsa2{word-spacing:0.167400px;}
.ws3a{word-spacing:0.179327px;}
.ws12d{word-spacing:0.182765px;}
.ws280{word-spacing:0.207483px;}
.wsaf{word-spacing:0.215194px;}
.ws35{word-spacing:0.239102px;}
.ws1d8{word-spacing:0.264600px;}
.ws24{word-spacing:0.268992px;}
.ws41{word-spacing:0.298878px;}
.ws6d{word-spacing:0.318636px;}
.ws153{word-spacing:0.322790px;}
.ws1bb{word-spacing:0.354708px;}
.ws47{word-spacing:0.358654px;}
.ws145{word-spacing:0.365530px;}
.ws6a{word-spacing:0.378756px;}
.ws7e{word-spacing:0.402804px;}
.ws210{word-spacing:0.414828px;}
.ws15c{word-spacing:0.418429px;}
.ws182{word-spacing:0.426852px;}
.ws26b{word-spacing:0.430387px;}
.ws17a{word-spacing:0.432864px;}
.ws7c{word-spacing:0.474948px;}
.ws1a0{word-spacing:0.478205px;}
.ws163{word-spacing:0.529200px;}
.ws4d{word-spacing:0.537980px;}
.ws24f{word-spacing:0.537984px;}
.wsea{word-spacing:0.546480px;}
.ws164{word-spacing:0.561600px;}
.ws28{word-spacing:0.591782px;}
.wsec{word-spacing:0.594000px;}
.wsa4{word-spacing:0.597756px;}
.ws162{word-spacing:0.599400px;}
.ws1a4{word-spacing:0.657532px;}
.ws120{word-spacing:0.691079px;}
.ws251{word-spacing:0.699379px;}
.ws122{word-spacing:0.713925px;}
.wsa7{word-spacing:0.717307px;}
.ws7b{word-spacing:0.721440px;}
.wsc1{word-spacing:0.747292px;}
.ws121{word-spacing:0.748193px;}
.wsb0{word-spacing:0.753178px;}
.ws14a{word-spacing:0.771039px;}
.wsc3{word-spacing:0.820037px;}
.ws1f5{word-spacing:0.823644px;}
.ws1e2{word-spacing:0.836858px;}
.ws7a{word-spacing:0.841680px;}
.ws1c9{word-spacing:0.858600px;}
.ws234{word-spacing:0.860774px;}
.ws1ca{word-spacing:0.885600px;}
.wsc2{word-spacing:0.886169px;}
.ws1c8{word-spacing:0.891000px;}
.ws1a8{word-spacing:0.914573px;}
.ws1d9{word-spacing:0.956410px;}
.ws4{word-spacing:1.004227px;}
.ws5b{word-spacing:1.016185px;}
.ws282{word-spacing:1.022170px;}
.ws1f6{word-spacing:1.046088px;}
.ws1dc{word-spacing:1.075961px;}
.ws12b{word-spacing:1.102300px;}
.ws1e5{word-spacing:1.135736px;}
.ws218{word-spacing:1.171800px;}
.ws80{word-spacing:1.178352px;}
.ws54{word-spacing:1.195512px;}
.ws219{word-spacing:1.209600px;}
.wscd{word-spacing:1.223442px;}
.ws23b{word-spacing:1.237363px;}
.ws95{word-spacing:1.247400px;}
.ws19f{word-spacing:1.255288px;}
.wsbc{word-spacing:1.263121px;}
.ws96{word-spacing:1.279800px;}
.ws252{word-spacing:1.291162px;}
.ws13f{word-spacing:1.342179px;}
.ws285{word-spacing:1.398758px;}
.ws140{word-spacing:1.399293px;}
.ws231{word-spacing:1.434614px;}
.ws224{word-spacing:1.478952px;}
.ws7f{word-spacing:1.484964px;}
.ws78{word-spacing:1.509012px;}
.ws1df{word-spacing:1.554166px;}
.ws23a{word-spacing:1.560154px;}
.ws97{word-spacing:1.582200px;}
.wsc0{word-spacing:1.600394px;}
.ws9a{word-spacing:1.603800px;}
.ws242{word-spacing:1.613952px;}
.ws99{word-spacing:1.620000px;}
.ws9e{word-spacing:1.625400px;}
.ws9d{word-spacing:1.636200px;}
.ws283{word-spacing:1.667750px;}
.ws9f{word-spacing:1.668600px;}
.wsf7{word-spacing:1.673717px;}
.ws4a{word-spacing:1.733492px;}
.ws286{word-spacing:1.775347px;}
.ws1b0{word-spacing:1.779552px;}
.ws79{word-spacing:1.815624px;}
.ws4f{word-spacing:1.853044px;}
.wsda{word-spacing:1.859220px;}
.ws1ae{word-spacing:1.875744px;}
.wsb5{word-spacing:1.912819px;}
.ws1af{word-spacing:1.953900px;}
.ws1ef{word-spacing:1.972595px;}
.wsbb{word-spacing:1.983960px;}
.ws98{word-spacing:1.987200px;}
.ws15b{word-spacing:2.032370px;}
.wsba{word-spacing:2.089771px;}
.ws45{word-spacing:2.092146px;}
.ws25b{word-spacing:2.098138px;}
.ws115{word-spacing:2.130352px;}
.ws19a{word-spacing:2.151922px;}
.ws137{word-spacing:2.169990px;}
.ws1b6{word-spacing:2.200392px;}
.wsbf{word-spacing:2.202196px;}
.ws19b{word-spacing:2.211697px;}
.ws6f{word-spacing:2.218428px;}
.ws139{word-spacing:2.236680px;}
.ws10c{word-spacing:2.246050px;}
.ws138{word-spacing:2.257200px;}
.ws65{word-spacing:2.259533px;}
.ws156{word-spacing:2.271473px;}
.ws15e{word-spacing:2.311200px;}
.ws23e{word-spacing:2.313331px;}
.ws221{word-spacing:2.316600px;}
.ws15f{word-spacing:2.338200px;}
.ws160{word-spacing:2.349000px;}
.wsf8{word-spacing:2.391024px;}
.ws149{word-spacing:2.455902px;}
.ws23d{word-spacing:2.474726px;}
.ws194{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws180{word-spacing:2.531052px;}
.ws1ad{word-spacing:2.549088px;}
.ws8c{word-spacing:2.555100px;}
.ws179{word-spacing:2.567124px;}
.ws188{word-spacing:2.573136px;}
.ws17f{word-spacing:2.591172px;}
.ws6e{word-spacing:2.615220px;}
.ws1ab{word-spacing:2.621232px;}
.wsa0{word-spacing:2.683800px;}
.ws3c{word-spacing:2.689902px;}
.ws25c{word-spacing:2.689920px;}
.wsa1{word-spacing:2.721600px;}
.wsfb{word-spacing:2.809453px;}
.wsc5{word-spacing:2.837063px;}
.ws247{word-spacing:2.851315px;}
.wsc4{word-spacing:2.856902px;}
.ws13c{word-spacing:2.862540px;}
.ws48{word-spacing:2.869229px;}
.ws13a{word-spacing:2.877930px;}
.ws13d{word-spacing:2.883060px;}
.ws1aa{word-spacing:2.909808px;}
.ws6c{word-spacing:2.915820px;}
.ws20e{word-spacing:2.921832px;}
.ws249{word-spacing:2.958912px;}
.ws51{word-spacing:2.988780px;}
.ws13b{word-spacing:2.990790px;}
.ws21f{word-spacing:3.007800px;}
.ws2e{word-spacing:3.008464px;}
.ws2b{word-spacing:3.012710px;}
.ws1c4{word-spacing:3.018600px;}
.ws2d{word-spacing:3.018984px;}
.ws5c{word-spacing:3.048556px;}
.ws220{word-spacing:3.051000px;}
.ws1cd{word-spacing:3.056400px;}
.wsff{word-spacing:3.064033px;}
.ws237{word-spacing:3.066509px;}
.ws21e{word-spacing:3.067200px;}
.ws1c5{word-spacing:3.072600px;}
.ws1c2{word-spacing:3.083400px;}
.ws39{word-spacing:3.108331px;}
.ws1ce{word-spacing:3.115800px;}
.ws23c{word-spacing:3.120307px;}
.ws1c3{word-spacing:3.142800px;}
.ws22e{word-spacing:3.168107px;}
.ws26e{word-spacing:3.221030px;}
.ws24d{word-spacing:3.221309px;}
.ws271{word-spacing:3.221808px;}
.ws27a{word-spacing:3.221981px;}
.ws26c{word-spacing:3.222365px;}
.ws27f{word-spacing:3.222547px;}
.ws272{word-spacing:3.222768px;}
.ws281{word-spacing:3.223267px;}
.ws24c{word-spacing:3.224851px;}
.ws276{word-spacing:3.225216px;}
.ws255{word-spacing:3.225571px;}
.ws274{word-spacing:3.225869px;}
.ws56{word-spacing:3.227882px;}
.ws24a{word-spacing:3.227904px;}
.ws17c{word-spacing:3.234456px;}
.ws19e{word-spacing:3.287658px;}
.wse2{word-spacing:3.314520px;}
.wsf4{word-spacing:3.320460px;}
.ws77{word-spacing:3.324636px;}
.ws187{word-spacing:3.330648px;}
.ws27c{word-spacing:3.335501px;}
.ws3f{word-spacing:3.347434px;}
.wse1{word-spacing:3.350160px;}
.wse0{word-spacing:3.362040px;}
.wsf5{word-spacing:3.373920px;}
.ws1eb{word-spacing:3.389299px;}
.wsf3{word-spacing:3.391740px;}
.ws1e7{word-spacing:3.407209px;}
.ws256{word-spacing:3.443098px;}
.ws4c{word-spacing:3.466985px;}
.ws199{word-spacing:3.526760px;}
.ws275{word-spacing:3.550694px;}
.ws34{word-spacing:3.586536px;}
.ws1ac{word-spacing:3.625236px;}
.ws76{word-spacing:3.631248px;}
.ws7d{word-spacing:3.637260px;}
.ws1ed{word-spacing:3.646312px;}
.ws17b{word-spacing:3.661308px;}
.wsc7{word-spacing:3.690166px;}
.ws1fb{word-spacing:3.697380px;}
.ws22a{word-spacing:3.706087px;}
.ws75{word-spacing:3.709404px;}
.ws230{word-spacing:3.765863px;}
.ws203{word-spacing:3.811608px;}
.ws202{word-spacing:3.817620px;}
.ws2c{word-spacing:3.819686px;}
.ws40{word-spacing:3.825638px;}
.ws235{word-spacing:3.873485px;}
.ws50{word-spacing:3.885414px;}
.ws100{word-spacing:3.919479px;}
.ws236{word-spacing:3.927283px;}
.ws1ea{word-spacing:3.945190px;}
.ws1b9{word-spacing:3.949884px;}
.ws27{word-spacing:3.981082px;}
.ws4b{word-spacing:4.004965px;}
.ws1bc{word-spacing:4.010004px;}
.ws277{word-spacing:4.034880px;}
.ws1fa{word-spacing:4.040064px;}
.wsd0{word-spacing:4.053892px;}
.ws57{word-spacing:4.064741px;}
.wse5{word-spacing:4.080780px;}
.wse3{word-spacing:4.086720px;}
.ws155{word-spacing:4.088678px;}
.ws239{word-spacing:4.142477px;}
.wsc6{word-spacing:4.212608px;}
.wsb4{word-spacing:4.250074px;}
.wse4{word-spacing:4.300560px;}
.ws110{word-spacing:4.303843px;}
.ws89{word-spacing:4.340664px;}
.ws24b{word-spacing:4.357670px;}
.ws198{word-spacing:4.363619px;}
.wscc{word-spacing:4.364712px;}
.ws181{word-spacing:4.394772px;}
.wsfa{word-spacing:4.423394px;}
.ws1b8{word-spacing:4.424832px;}
.wscb{word-spacing:4.444070px;}
.ws21d{word-spacing:4.471200px;}
.ws143{word-spacing:4.472026px;}
.ws58{word-spacing:4.483170px;}
.ws21c{word-spacing:4.503600px;}
.ws10a{word-spacing:4.519066px;}
.ws44{word-spacing:4.542946px;}
.ws26f{word-spacing:4.572864px;}
.wsd8{word-spacing:4.573800px;}
.wsd9{word-spacing:4.585680px;}
.ws19d{word-spacing:4.602721px;}
.ws1ec{word-spacing:4.662497px;}
.ws240{word-spacing:4.680461px;}
.ws186{word-spacing:4.707396px;}
.ws1f7{word-spacing:4.719420px;}
.ws1e0{word-spacing:4.722272px;}
.ws243{word-spacing:4.734259px;}
.wsb{word-spacing:4.770079px;}
.ws1e1{word-spacing:4.782048px;}
.ws11c{word-spacing:4.808999px;}
.wsb6{word-spacing:4.841824px;}
.wsc{word-spacing:4.853765px;}
.ws144{word-spacing:4.866113px;}
.wse6{word-spacing:4.882680px;}
.ws142{word-spacing:4.888958px;}
.ws2f{word-spacing:4.895654px;}
.ws159{word-spacing:4.901599px;}
.ws10b{word-spacing:5.003251px;}
.ws55{word-spacing:5.021150px;}
.ws205{word-spacing:5.074128px;}
.wsa5{word-spacing:5.080926px;}
.ws20c{word-spacing:5.086152px;}
.ws246{word-spacing:5.110848px;}
.wsa6{word-spacing:5.140702px;}
.ws233{word-spacing:5.164646px;}
.ws158{word-spacing:5.200477px;}
.ws250{word-spacing:5.218445px;}
.ws92{word-spacing:5.221800px;}
.ws238{word-spacing:5.272243px;}
.ws17e{word-spacing:5.428836px;}
.wsf9{word-spacing:5.439580px;}
.ws1f2{word-spacing:5.440860px;}
.ws232{word-spacing:5.487437px;}
.ws15d{word-spacing:5.499355px;}
.ws82{word-spacing:5.519016px;}
.ws90{word-spacing:5.551200px;}
.ws91{word-spacing:5.578200px;}
.ws204{word-spacing:5.609196px;}
.ws192{word-spacing:5.678682px;}
.ws1dd{word-spacing:5.738458px;}
.ws270{word-spacing:5.756429px;}
.ws171{word-spacing:5.783544px;}
.ws1e3{word-spacing:5.798233px;}
.ws170{word-spacing:5.837652px;}
.ws1f3{word-spacing:5.843664px;}
.ws1ee{word-spacing:5.858009px;}
.ws127{word-spacing:5.871319px;}
.ws241{word-spacing:5.917824px;}
.ws244{word-spacing:5.971622px;}
.ws254{word-spacing:6.025421px;}
.ws253{word-spacing:6.079219px;}
.ws129{word-spacing:6.162601px;}
.ws25d{word-spacing:6.186816px;}
.ws12a{word-spacing:6.225426px;}
.ws1e6{word-spacing:6.276438px;}
.ws128{word-spacing:6.276829px;}
.ws245{word-spacing:6.294413px;}
.ws136{word-spacing:6.309900px;}
.ws135{word-spacing:6.320160px;}
.ws134{word-spacing:6.345810px;}
.ws1a6{word-spacing:6.515540px;}
.ws1a5{word-spacing:6.575316px;}
.ws2a{word-spacing:6.617203px;}
.ws49{word-spacing:6.694867px;}
.ws279{word-spacing:6.724800px;}
.wsfc{word-spacing:6.754643px;}
.wsfd{word-spacing:6.760516px;}
.wsbd{word-spacing:6.765304px;}
.wsfe{word-spacing:6.773656px;}
.ws278{word-spacing:6.778598px;}
.wsa3{word-spacing:6.814418px;}
.ws118{word-spacing:6.933640px;}
.ws193{word-spacing:7.113296px;}
.wsc8{word-spacing:7.162096px;}
.wsbe{word-spacing:7.168709px;}
.ws16b{word-spacing:7.244460px;}
.ws17d{word-spacing:7.250472px;}
.ws20d{word-spacing:7.256484px;}
.ws119{word-spacing:7.287746px;}
.ws52{word-spacing:7.292623px;}
.ws29{word-spacing:7.316582px;}
.ws165{word-spacing:7.333200px;}
.ws197{word-spacing:7.352399px;}
.ws263{word-spacing:7.370381px;}
.wsc9{word-spacing:7.373718px;}
.ws166{word-spacing:7.398000px;}
.ws19c{word-spacing:7.412174px;}
.ws273{word-spacing:7.424179px;}
.ws157{word-spacing:7.531726px;}
.ws88{word-spacing:7.563096px;}
.ws265{word-spacing:7.585574px;}
.ws74{word-spacing:7.599168px;}
.ws8a{word-spacing:7.605180px;}
.ws1c7{word-spacing:7.705800px;}
.ws53{word-spacing:7.711052px;}
.ws1a3{word-spacing:7.770828px;}
.ws9{word-spacing:7.782761px;}
.ws228{word-spacing:7.818641px;}
.ws1c6{word-spacing:7.819200px;}
.ws227{word-spacing:7.822279px;}
.ws229{word-spacing:7.830604px;}
.ws11a{word-spacing:7.933135px;}
.ws223{word-spacing:7.977924px;}
.ws70{word-spacing:7.983936px;}
.ws141{word-spacing:8.053074px;}
.ws10d{word-spacing:8.069706px;}
.ws11b{word-spacing:8.121611px;}
.ws4e{word-spacing:8.129482px;}
.ws1db{word-spacing:8.249033px;}
.wsd2{word-spacing:8.372311px;}
.wsd1{word-spacing:8.438443px;}
.ws1bf{word-spacing:8.591148px;}
.wsce{word-spacing:8.815396px;}
.ws1bd{word-spacing:9.024012px;}
.ws18b{word-spacing:9.036036px;}
.ws1be{word-spacing:9.108180px;}
.ws212{word-spacing:9.378720px;}
.ws266{word-spacing:9.576115px;}
.wsef{word-spacing:9.622800px;}
.wsf0{word-spacing:9.694080px;}
.ws132{word-spacing:9.752130px;}
.ws131{word-spacing:9.762390px;}
.ws211{word-spacing:9.769500px;}
.ws133{word-spacing:9.788040px;}
.ws1b5{word-spacing:10.154268px;}
.ws177{word-spacing:10.508976px;}
.ws178{word-spacing:10.533024px;}
.ws113{word-spacing:11.039452px;}
.ws259{word-spacing:11.082470px;}
.ws8d{word-spacing:11.224404px;}
.ws262{word-spacing:11.227671px;}
.ws1f0{word-spacing:11.615688px;}
.ws68{word-spacing:11.620476px;}
.ws81{word-spacing:11.903760px;}
.ws267{word-spacing:12.050842px;}
.ws7{word-spacing:12.176255px;}
.wsb8{word-spacing:12.782524px;}
.ws25e{word-spacing:14.740762px;}
.ws269{word-spacing:15.386342px;}
.ws8{word-spacing:16.109478px;}
.wsf2{word-spacing:17.623980px;}
.wsf1{word-spacing:17.641800px;}
.ws260{word-spacing:18.452851px;}
.ws261{word-spacing:18.506650px;}
.ws284{word-spacing:18.614246px;}
.ws264{word-spacing:21.734554px;}
.ws25f{word-spacing:22.218739px;}
.wsa{word-spacing:26.109907px;}
.ws6{word-spacing:26.840252px;}
.ws1a{word-spacing:39.479734px;}
.ws15{word-spacing:40.042186px;}
.wsf{word-spacing:46.627738px;}
.ws24e{word-spacing:75.317760px;}
.wsf6{word-spacing:935.597520px;}
._27{margin-left:-8.429338px;}
._a{margin-left:-7.317746px;}
._1{margin-left:-6.150892px;}
._0{margin-left:-4.602708px;}
._b{margin-left:-3.287658px;}
._2{margin-left:-1.506341px;}
._1f{width:1.196388px;}
._5{width:2.301354px;}
._9{width:4.243842px;}
._14{width:8.069702px;}
._13{width:9.629914px;}
._6{width:11.582422px;}
._3{width:12.971268px;}
._d{width:15.009633px;}
._f{width:16.731288px;}
._10{width:18.721814px;}
._19{width:19.797674px;}
._20{width:21.351840px;}
._12{width:22.463777px;}
._18{width:24.268894px;}
._4{width:25.946136px;}
._1d{width:27.317449px;}
._17{width:28.393410px;}
._7{width:30.587087px;}
._1c{width:31.812570px;}
._8{width:33.355008px;}
._21{width:34.994401px;}
._24{width:36.104462px;}
._29{width:37.282291px;}
._11{width:39.003797px;}
._1b{width:41.006062px;}
._1a{width:43.456861px;}
._28{width:46.271897px;}
._e{width:56.810873px;}
._2a{width:61.868160px;}
._c{width:69.984859px;}
._15{width:538.631555px;}
._23{width:2290.220100px;}
._26{width:2386.999944px;}
._1e{width:2410.758000px;}
._25{width:2429.072700px;}
._16{width:2452.982700px;}
._22{width:2651.833800px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(45,70,152);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:33.120000px;}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fsf{font-size:45.486000px;}
.fs14{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:47.880000px;}
.fs11{font-size:51.300000px;}
.fsc{font-size:52.668000px;}
.fs7{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fsb{font-size:56.058000px;}
.fs10{font-size:57.114000px;}
.fse{font-size:59.400000px;}
.fs2{font-size:59.775600px;}
.fs9{font-size:60.120000px;}
.fs13{font-size:62.286600px;}
.fsd{font-size:66.132000px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:136.067040px;}
.y176{bottom:-704.293356px;}
.y175{bottom:-685.033914px;}
.y174{bottom:-665.864652px;}
.y173{bottom:-646.605210px;}
.y172{bottom:-627.345768px;}
.y171{bottom:-608.176506px;}
.y170{bottom:-588.917064px;}
.y16f{bottom:-569.657622px;}
.y16e{bottom:-550.488360px;}
.y16d{bottom:-531.228918px;}
.y16c{bottom:-512.059656px;}
.y16b{bottom:-492.800214px;}
.y16a{bottom:-473.540772px;}
.y169{bottom:-454.371510px;}
.y168{bottom:-435.112068px;}
.y167{bottom:-415.942806px;}
.y166{bottom:-396.683364px;}
.y165{bottom:-377.423922px;}
.y13f{bottom:-366.052675px;}
.y164{bottom:-358.254660px;}
.y13e{bottom:-347.756205px;}
.y163{bottom:-338.995218px;}
.y13d{bottom:-329.545406px;}
.y162{bottom:-319.825956px;}
.y13c{bottom:-311.248936px;}
.y161{bottom:-300.566514px;}
.y13b{bottom:-292.952466px;}
.y160{bottom:-281.307072px;}
.yf6{bottom:-277.473735px;}
.y13a{bottom:-270.465256px;}
.y15f{bottom:-262.137810px;}
.yf5{bottom:-258.366240px;}
.yf4{bottom:-239.258745px;}
.y15e{bottom:-238.378386px;}
.y139{bottom:-235.068855px;}
.yf3{bottom:-220.250745px;}
.y138{bottom:-216.772385px;}
.y1ef{bottom:-214.505550px;}
.y249{bottom:-203.033196px;}
.yf2{bottom:-201.242745px;}
.y15d{bottom:-201.119016px;}
.y137{bottom:-198.561586px;}
.y248{bottom:-183.863934px;}
.yf1{bottom:-182.234745px;}
.y15c{bottom:-181.949754px;}
.y136{bottom:-180.265116px;}
.y1ee{bottom:-174.816900px;}
.y247{bottom:-164.604492px;}
.yc9{bottom:-163.572900px;}
.yf0{bottom:-163.127250px;}
.y15b{bottom:-162.690312px;}
.y135{bottom:-162.054317px;}
.y1ed{bottom:-157.446450px;}
.yc8{bottom:-146.202450px;}
.y246{bottom:-145.345050px;}
.yef{bottom:-144.119250px;}
.y134{bottom:-143.757847px;}
.y15a{bottom:-143.521050px;}
.y1ec{bottom:-140.166450px;}
.yc7{bottom:-128.922450px;}
.yee{bottom:-125.111250px;}
.y1eb{bottom:-122.796000px;}
.yc6{bottom:-111.642450px;}
.y133{bottom:-108.789060px;}
.y245{bottom:-108.625050px;}
.y159{bottom:-106.711800px;}
.yed{bottom:-106.103250px;}
.y1ea{bottom:-105.516000px;}
.yc5{bottom:-94.272000px;}
.y132{bottom:-92.287132px;}
.y244{bottom:-91.165500px;}
.y158{bottom:-89.341350px;}
.y1e9{bottom:-88.236000px;}
.yec{bottom:-86.995755px;}
.yc4{bottom:-76.992000px;}
.y131{bottom:-75.871132px;}
.y243{bottom:-73.885500px;}
.y157{bottom:-71.970900px;}
.y1e8{bottom:-70.956000px;}
.yeb{bottom:-67.987755px;}
.yc3{bottom:-59.712000px;}
.y130{bottom:-59.369205px;}
.y242{bottom:-56.605500px;}
.y156{bottom:-54.690900px;}
.y1e7{bottom:-53.585550px;}
.yea{bottom:-48.979755px;}
.y12f{bottom:-42.953205px;}
.yc2{bottom:-42.432000px;}
.y241{bottom:-39.325500px;}
.y155{bottom:-37.410900px;}
.y1e6{bottom:-36.305550px;}
.ye9{bottom:-29.971755px;}
.y12e{bottom:-26.537205px;}
.yc1{bottom:-25.061550px;}
.y240{bottom:-21.955050px;}
.y154{bottom:-20.130900px;}
.y1e5{bottom:-19.025550px;}
.ye8{bottom:-5.311805px;}
.y12d{bottom:-5.241683px;}
.yc0{bottom:-2.641146px;}
.y0{bottom:0.000000px;}
.y23f{bottom:0.374004px;}
.y153{bottom:2.278950px;}
.y1e4{bottom:3.481830px;}
.y20{bottom:13.870617px;}
.y4c{bottom:31.890000px;}
.y197{bottom:91.665000px;}
.y83{bottom:103.158000px;}
.y201{bottom:103.179000px;}
.y1e{bottom:104.646000px;}
.y27c{bottom:105.847500px;}
.y21d{bottom:106.744500px;}
.yd2{bottom:106.972500px;}
.y1bc{bottom:107.641500px;}
.y25d{bottom:110.026500px;}
.y196{bottom:110.494500px;}
.y2ac{bottom:112.641000px;}
.y107{bottom:116.971500px;}
.y14f{bottom:121.378500px;}
.y31b{bottom:121.762500px;}
.y82{bottom:121.987500px;}
.y200{bottom:122.008500px;}
.y1d{bottom:122.535000px;}
.y27b{bottom:124.677000px;}
.y21c{bottom:125.574000px;}
.yd1{bottom:126.204000px;}
.y1bb{bottom:126.471000px;}
.y25c{bottom:128.856000px;}
.y195{bottom:129.324000px;}
.y2ab{bottom:130.215000px;}
.y2e5{bottom:131.671500px;}
.y106{bottom:135.801000px;}
.y31a{bottom:139.023000px;}
.y14e{bottom:140.208000px;}
.y1c{bottom:140.422500px;}
.y81{bottom:140.817000px;}
.y1ff{bottom:140.838000px;}
.y27a{bottom:143.506500px;}
.y21b{bottom:144.403500px;}
.y1ba{bottom:145.300500px;}
.yd0{bottom:145.437000px;}
.y25b{bottom:147.685500px;}
.y2aa{bottom:147.789000px;}
.y194{bottom:148.153500px;}
.y2e4{bottom:148.932000px;}
.y105{bottom:154.630500px;}
.y319{bottom:156.283500px;}
.y1b{bottom:158.310000px;}
.y14d{bottom:159.037500px;}
.y80{bottom:159.646500px;}
.y1fe{bottom:159.667500px;}
.y21a{bottom:163.233000px;}
.y1b9{bottom:164.130000px;}
.ycf{bottom:164.670000px;}
.y2a9{bottom:165.363000px;}
.y2e3{bottom:166.192500px;}
.y25a{bottom:166.515000px;}
.y279{bottom:166.819500px;}
.y193{bottom:166.983000px;}
.y104{bottom:173.460000px;}
.y318{bottom:173.544000px;}
.y1a{bottom:176.199000px;}
.y7f{bottom:178.476000px;}
.y1fd{bottom:178.497000px;}
.y219{bottom:182.062500px;}
.y14c{bottom:182.349000px;}
.y1b8{bottom:182.959500px;}
.y2e2{bottom:183.451500px;}
.yce{bottom:183.903000px;}
.y259{bottom:185.344500px;}
.y192{bottom:185.812500px;}
.y317{bottom:190.804500px;}
.y2a8{bottom:191.904000px;}
.y19{bottom:194.086500px;}
.y7e{bottom:197.305500px;}
.y1fc{bottom:197.326500px;}
.y278{bottom:200.443500px;}
.y2e1{bottom:200.712000px;}
.y4b{bottom:200.833500px;}
.y218{bottom:200.892000px;}
.y1b7{bottom:201.789000px;}
.ycd{bottom:203.136000px;}
.y258{bottom:204.174000px;}
.y191{bottom:204.642000px;}
.y103{bottom:207.025500px;}
.y316{bottom:208.065000px;}
.y2a7{bottom:209.478000px;}
.y18{bottom:211.974000px;}
.y14b{bottom:215.973000px;}
.y7d{bottom:216.135000px;}
.y1fb{bottom:216.156000px;}
.y2e0{bottom:217.972500px;}
.y277{bottom:219.273000px;}
.y217{bottom:219.721500px;}
.y1b6{bottom:220.618500px;}
.ycc{bottom:222.369000px;}
.y257{bottom:223.003500px;}
.y190{bottom:223.471500px;}
.y315{bottom:225.325500px;}
.y102{bottom:226.258500px;}
.y2a6{bottom:227.052000px;}
.y17{bottom:229.863000px;}
.y14a{bottom:234.802500px;}
.y7c{bottom:234.964500px;}
.y2df{bottom:235.233000px;}
.y276{bottom:238.102500px;}
.y4a{bottom:238.224000px;}
.y216{bottom:238.551000px;}
.y1b5{bottom:239.446500px;}
.y1fa{bottom:239.469000px;}
.ycb{bottom:241.602000px;}
.y256{bottom:241.833000px;}
.y18f{bottom:242.301000px;}
.y314{bottom:242.586000px;}
.y101{bottom:245.490000px;}
.y2de{bottom:252.493500px;}
.y2a5{bottom:253.593000px;}
.y149{bottom:253.632000px;}
.y7b{bottom:253.794000px;}
.y275{bottom:256.932000px;}
.y215{bottom:257.380500px;}
.y49{bottom:257.680500px;}
.y1b4{bottom:258.276000px;}
.y313{bottom:259.846500px;}
.y23e{bottom:259.934589px;}
.y255{bottom:260.662500px;}
.yca{bottom:260.835000px;}
.y18e{bottom:261.130500px;}
.y100{bottom:264.723000px;}
.y12c{bottom:268.529992px;}
.y2dd{bottom:269.754000px;}
.y1f9{bottom:269.896500px;}
.y2a4{bottom:271.167000px;}
.y148{bottom:272.461500px;}
.y7a{bottom:272.623500px;}
.y274{bottom:275.761500px;}
.y214{bottom:276.210000px;}
.y1b3{bottom:277.105500px;}
.y48{bottom:277.138500px;}
.y23d{bottom:279.194031px;}
.y18d{bottom:279.960000px;}
.ya0{bottom:283.264500px;}
.yff{bottom:283.956000px;}
.y254{bottom:283.975500px;}
.y12b{bottom:286.826462px;}
.y2dc{bottom:287.014500px;}
.y1f8{bottom:289.129500px;}
.ybf{bottom:289.588647px;}
.y147{bottom:291.291000px;}
.y79{bottom:291.453000px;}
.y312{bottom:294.366000px;}
.y273{bottom:294.591000px;}
.y1b2{bottom:295.935000px;}
.y47{bottom:296.595000px;}
.y2a3{bottom:297.706500px;}
.y23c{bottom:298.453473px;}
.y18c{bottom:298.789500px;}
.y213{bottom:299.523000px;}
.y16{bottom:300.154500px;}
.yfe{bottom:303.189000px;}
.y2db{bottom:304.275000px;}
.y12a{bottom:305.037261px;}
.y1f7{bottom:308.362500px;}
.ybe{bottom:308.759412px;}
.y146{bottom:310.120500px;}
.y78{bottom:310.282500px;}
.y311{bottom:311.626500px;}
.y272{bottom:313.420500px;}
.y1b1{bottom:314.764500px;}
.y2a2{bottom:315.280500px;}
.y46{bottom:316.051500px;}
.y253{bottom:317.599500px;}
.y18b{bottom:317.619000px;}
.y23b{bottom:317.622735px;}
.y15{bottom:318.043500px;}
.y2d9{bottom:321.534000px;}
.y2da{bottom:321.535500px;}
.yfd{bottom:322.422000px;}
.y129{bottom:323.333731px;}
.y1f6{bottom:327.594000px;}
.ybd{bottom:328.018854px;}
.y310{bottom:328.887000px;}
.y77{bottom:329.112000px;}
.y271{bottom:332.250000px;}
.y2a1{bottom:332.856000px;}
.y212{bottom:333.145500px;}
.y1b0{bottom:333.594000px;}
.y45{bottom:335.509500px;}
.y14{bottom:335.931000px;}
.y252{bottom:336.429000px;}
.y18a{bottom:336.448500px;}
.y23a{bottom:336.882177px;}
.y2d8{bottom:338.794500px;}
.y128{bottom:341.630201px;}
.yfc{bottom:341.655000px;}
.y145{bottom:343.686000px;}
.y30f{bottom:346.147500px;}
.y1f5{bottom:346.827000px;}
.ybc{bottom:347.278296px;}
.y76{bottom:347.940000px;}
.y2a0{bottom:350.430000px;}
.y270{bottom:351.079500px;}
.y211{bottom:351.975000px;}
.y1af{bottom:352.423500px;}
.y13{bottom:353.818500px;}
.y1e3{bottom:354.841146px;}
.y44{bottom:354.966000px;}
.y251{bottom:355.257000px;}
.y189{bottom:355.278000px;}
.y239{bottom:356.052942px;}
.y2d7{bottom:356.055000px;}
.y127{bottom:359.842428px;}
.yfb{bottom:360.888000px;}
.y152{bottom:362.279085px;}
.y144{bottom:362.919000px;}
.y30e{bottom:363.408000px;}
.y1f4{bottom:366.060000px;}
.ybb{bottom:366.447558px;}
.y75{bottom:366.769500px;}
.y29f{bottom:368.004000px;}
.y26f{bottom:369.909000px;}
.y210{bottom:370.804500px;}
.y1ae{bottom:371.253000px;}
.y151{bottom:371.908950px;}
.y2d6{bottom:373.315500px;}
.y1e2{bottom:374.010408px;}
.y250{bottom:374.086500px;}
.y188{bottom:374.107500px;}
.y43{bottom:374.424000px;}
.y238{bottom:375.312384px;}
.y126{bottom:378.138898px;}
.yfa{bottom:380.121000px;}
.y30d{bottom:380.668500px;}
.y12{bottom:380.673000px;}
.y143{bottom:382.152000px;}
.y1f3{bottom:385.293000px;}
.y29e{bottom:385.578000px;}
.y74{bottom:385.599000px;}
.yba{bottom:385.707000px;}
.y20f{bottom:389.634000px;}
.y1ad{bottom:390.082500px;}
.y2d5{bottom:390.576000px;}
.y187{bottom:392.937000px;}
.y26e{bottom:393.220500px;}
.y1e1{bottom:393.269850px;}
.y42{bottom:393.880500px;}
.y237{bottom:394.571826px;}
.y125{bottom:396.351125px;}
.y30c{bottom:397.929000px;}
.y11{bottom:398.562000px;}
.yf9{bottom:399.354000px;}
.y142{bottom:401.385000px;}
.y29d{bottom:403.152000px;}
.y73{bottom:404.428500px;}
.y1f2{bottom:404.526000px;}
.yb9{bottom:404.877765px;}
.y24f{bottom:407.653500px;}
.y2d4{bottom:407.836500px;}
.y20e{bottom:408.463500px;}
.y1ac{bottom:408.912000px;}
.y186{bottom:411.766500px;}
.y1e0{bottom:412.440615px;}
.y41{bottom:413.337000px;}
.y236{bottom:413.741088px;}
.y124{bottom:414.647594px;}
.y30b{bottom:415.188000px;}
.y10{bottom:416.449500px;}
.yf8{bottom:418.587000px;}
.y141{bottom:420.618000px;}
.y72{bottom:423.258000px;}
.y1f1{bottom:423.759000px;}
.yb8{bottom:424.137207px;}
.y2d3{bottom:425.097000px;}
.y26d{bottom:426.844500px;}
.y24e{bottom:426.885000px;}
.y20d{bottom:427.293000px;}
.y1ab{bottom:427.741500px;}
.y29c{bottom:429.693000px;}
.y185{bottom:430.596000px;}
.y1df{bottom:431.700057px;}
.y30a{bottom:432.448500px;}
.y40{bottom:432.795000px;}
.y123{bottom:432.944064px;}
.y235{bottom:433.000530px;}
.yf7{bottom:437.818500px;}
.y140{bottom:439.851000px;}
.y71{bottom:442.087500px;}
.y2d2{bottom:442.357500px;}
.y1f0{bottom:442.992000px;}
.yb7{bottom:443.396649px;}
.yf{bottom:444.798000px;}
.y26c{bottom:445.674000px;}
.ye7{bottom:445.830779px;}
.y24d{bottom:446.118000px;}
.y20c{bottom:446.122500px;}
.y1aa{bottom:446.571000px;}
.y29b{bottom:447.267000px;}
.y184{bottom:449.425500px;}
.y309{bottom:449.709000px;}
.y1de{bottom:450.959499px;}
.y122{bottom:451.154863px;}
.y234{bottom:452.171295px;}
.y3f{bottom:452.251500px;}
.y2d1{bottom:459.618000px;}
.y70{bottom:460.917000px;}
.y119{bottom:462.280500px;}
.yb6{bottom:462.565911px;}
.ye{bottom:462.685500px;}
.yd3{bottom:463.237500px;}
.y26b{bottom:464.503500px;}
.y29a{bottom:464.841000px;}
.y20b{bottom:464.952000px;}
.y24c{bottom:465.351000px;}
.y1a9{bottom:465.400500px;}
.y1cc{bottom:465.421500px;}
.y308{bottom:466.969500px;}
.ye6{bottom:467.016165px;}
.y183{bottom:468.255000px;}
.y121{bottom:469.451333px;}
.y1dd{bottom:470.128761px;}
.y233{bottom:471.430737px;}
.y3e{bottom:471.708000px;}
.y2d0{bottom:476.877000px;}
.y6f{bottom:479.746500px;}
.y299{bottom:482.415000px;}
.y26a{bottom:483.333000px;}
.y20a{bottom:483.781500px;}
.y1a8{bottom:484.230000px;}
.y24b{bottom:484.584000px;}
.yb5{bottom:486.236658px;}
.y182{bottom:487.084500px;}
.y120{bottom:487.662132px;}
.ye5{bottom:488.201551px;}
.y1dc{bottom:489.388203px;}
.yd{bottom:489.540000px;}
.y3d{bottom:491.166000px;}
.y2cf{bottom:494.137500px;}
.y232{bottom:495.101484px;}
.y6e{bottom:498.576000px;}
.y298{bottom:499.989000px;}
.y307{bottom:501.490500px;}
.y269{bottom:502.162500px;}
.y209{bottom:502.611000px;}
.y1a7{bottom:503.059500px;}
.y24a{bottom:503.817000px;}
.y11f{bottom:505.958602px;}
.yc{bottom:507.429000px;}
.y1db{bottom:508.647645px;}
.ye4{bottom:509.287739px;}
.yb4{bottom:509.996082px;}
.y181{bottom:510.396000px;}
.y3c{bottom:510.622500px;}
.y2ce{bottom:511.398000px;}
.y6d{bottom:517.405500px;}
.y297{bottom:517.563000px;}
.y306{bottom:518.751000px;}
.y268{bottom:520.992000px;}
.y208{bottom:521.440500px;}
.y1a6{bottom:521.889000px;}
.y11e{bottom:524.255072px;}
.yb{bottom:525.316500px;}
.y220{bottom:526.246500px;}
.y1da{bottom:527.818410px;}
.y2cd{bottom:528.658500px;}
.y3b{bottom:530.080500px;}
.ye3{bottom:530.473126px;}
.y231{bottom:532.360854px;}
.y296{bottom:535.137000px;}
.y305{bottom:536.011500px;}
.y6c{bottom:536.235000px;}
.y267{bottom:539.821500px;}
.y207{bottom:540.270000px;}
.y1a5{bottom:540.718500px;}
.y11d{bottom:542.465871px;}
.ya{bottom:543.204000px;}
.y180{bottom:544.020000px;}
.y2cc{bottom:545.919000px;}
.y1d9{bottom:547.077852px;}
.yb3{bottom:547.255452px;}
.y3a{bottom:549.537000px;}
.y230{bottom:551.620296px;}
.ye2{bottom:551.658512px;}
.y295{bottom:552.711000px;}
.y304{bottom:553.272000px;}
.y6b{bottom:555.064500px;}
.y9f{bottom:557.754000px;}
.y266{bottom:558.651000px;}
.y1a4{bottom:559.548000px;}
.y9{bottom:561.093000px;}
.y17f{bottom:562.849500px;}
.y2cb{bottom:563.179500px;}
.y206{bottom:563.583000px;}
.y11c{bottom:564.951653px;}
.y1d8{bottom:566.248617px;}
.yb2{bottom:566.514894px;}
.y39{bottom:568.993500px;}
.y294{bottom:570.285000px;}
.y303{bottom:570.531000px;}
.y22f{bottom:570.879738px;}
.ye1{bottom:572.746353px;}
.y6a{bottom:573.894000px;}
.y9e{bottom:576.583500px;}
.y265{bottom:577.480500px;}
.y1a3{bottom:578.377500px;}
.y8{bottom:578.980500px;}
.y2ca{bottom:580.440000px;}
.y17e{bottom:581.679000px;}
.y1d7{bottom:585.508059px;}
.yb1{bottom:585.684156px;}
.y302{bottom:587.791500px;}
.y293{bottom:587.859000px;}
.y38{bottom:588.451500px;}
.y22e{bottom:590.050503px;}
.y69{bottom:592.723500px;}
.ye0{bottom:593.931740px;}
.y9d{bottom:595.413000px;}
.y264{bottom:596.310000px;}
.y7{bottom:596.868000px;}
.y1a2{bottom:597.207000px;}
.y2c9{bottom:597.700500px;}
.y17d{bottom:600.508500px;}
.y1d6{bottom:604.767501px;}
.yb0{bottom:604.943598px;}
.y301{bottom:605.052000px;}
.y292{bottom:605.434500px;}
.y22d{bottom:609.309945px;}
.y68{bottom:611.553000px;}
.y9c{bottom:614.242500px;}
.y6{bottom:614.757000px;}
.y2c7{bottom:614.959500px;}
.y2c8{bottom:614.961000px;}
.ydf{bottom:615.019581px;}
.y263{bottom:615.139500px;}
.y11b{bottom:615.567781px;}
.y1a1{bottom:616.036500px;}
.y300{bottom:622.312500px;}
.y291{bottom:623.008500px;}
.yaf{bottom:624.203040px;}
.y11a{bottom:624.716152px;}
.y37{bottom:627.036000px;}
.y1d5{bottom:628.436745px;}
.y22c{bottom:628.480710px;}
.y67{bottom:630.382500px;}
.y2c6{bottom:632.220000px;}
.y17c{bottom:632.308500px;}
.y5{bottom:632.644500px;}
.y9b{bottom:633.072000px;}
.y262{bottom:633.969000px;}
.y1a0{bottom:634.866000px;}
.yde{bottom:636.204967px;}
.y2ff{bottom:639.573000px;}
.y290{bottom:640.582500px;}
.y36{bottom:643.176000px;}
.yae{bottom:643.373805px;}
.y22b{bottom:647.740152px;}
.y66{bottom:649.212000px;}
.y2c5{bottom:649.480500px;}
.y4{bottom:650.532000px;}
.y17b{bottom:651.541500px;}
.y9a{bottom:651.901500px;}
.y1d4{bottom:652.107492px;}
.y19f{bottom:653.695500px;}
.y2fe{bottom:656.833500px;}
.y261{bottom:657.282000px;}
.ydd{bottom:657.390353px;}
.y28f{bottom:658.156500px;}
.y35{bottom:659.316000px;}
.yad{bottom:662.633247px;}
.y2c4{bottom:666.741000px;}
.y22a{bottom:666.999594px;}
.y65{bottom:668.041500px;}
.y3{bottom:668.421000px;}
.y99{bottom:670.731000px;}
.y17a{bottom:670.773000px;}
.y19e{bottom:672.525000px;}
.y2fd{bottom:674.094000px;}
.y28e{bottom:675.730500px;}
.y205{bottom:677.949000px;}
.ydc{bottom:678.476542px;}
.y34{bottom:679.795500px;}
.yac{bottom:681.804012px;}
.y2c3{bottom:684.001500px;}
.y229{bottom:686.168856px;}
.y2{bottom:686.308500px;}
.y64{bottom:686.871000px;}
.y1d3{bottom:689.366862px;}
.y98{bottom:689.560500px;}
.y179{bottom:690.006000px;}
.y260{bottom:690.906000px;}
.y19d{bottom:691.354500px;}
.y33{bottom:691.594500px;}
.y28d{bottom:693.304500px;}
.ydb{bottom:699.661928px;}
.yab{bottom:701.063454px;}
.y2c2{bottom:701.262000px;}
.y1{bottom:704.196000px;}
.y228{bottom:705.428298px;}
.y63{bottom:705.700500px;}
.y97{bottom:708.390000px;}
.y2fc{bottom:708.613500px;}
.y1d2{bottom:708.626304px;}
.y178{bottom:709.239000px;}
.y25f{bottom:709.735500px;}
.y19c{bottom:710.184000px;}
.y28c{bottom:710.878500px;}
.y32{bottom:712.074000px;}
.y2c1{bottom:718.522500px;}
.yaa{bottom:720.322896px;}
.yda{bottom:720.748116px;}
.y31{bottom:723.874500px;}
.y62{bottom:724.530000px;}
.y227{bottom:724.597560px;}
.y2fb{bottom:725.874000px;}
.y96{bottom:727.219500px;}
.y1d1{bottom:727.885746px;}
.y28b{bottom:728.452500px;}
.y177{bottom:728.472000px;}
.y118{bottom:728.565000px;}
.y19b{bottom:729.013500px;}
.y2c0{bottom:735.783000px;}
.ya9{bottom:739.492158px;}
.yd9{bottom:741.933502px;}
.y2fa{bottom:743.134500px;}
.y61{bottom:743.359500px;}
.y226{bottom:743.857002px;}
.y30{bottom:744.352500px;}
.y1d0{bottom:747.055008px;}
.y117{bottom:747.394500px;}
.y19a{bottom:747.843000px;}
.y95{bottom:750.532500px;}
.y2bf{bottom:753.043500px;}
.y150{bottom:753.891000px;}
.y28a{bottom:754.993500px;}
.y2f{bottom:756.153000px;}
.ya8{bottom:758.751600px;}
.y2f9{bottom:760.395000px;}
.y60{bottom:762.189000px;}
.y225{bottom:763.116444px;}
.yd8{bottom:763.118888px;}
.y116{bottom:766.224000px;}
.y1cf{bottom:766.314450px;}
.y199{bottom:766.671000px;}
.y2be{bottom:770.302500px;}
.y94{bottom:770.706000px;}
.y204{bottom:772.096500px;}
.y289{bottom:772.567500px;}
.y2e{bottom:776.632500px;}
.y2f8{bottom:777.655500px;}
.ya7{bottom:777.920862px;}
.y5f{bottom:781.018500px;}
.y224{bottom:782.285706px;}
.yd7{bottom:784.205077px;}
.y115{bottom:785.053500px;}
.y198{bottom:785.500500px;}
.y2bd{bottom:787.563000px;}
.y2d{bottom:788.431500px;}
.y288{bottom:790.141500px;}
.y2f7{bottom:794.916000px;}
.ya6{bottom:797.180304px;}
.y5e{bottom:799.848000px;}
.y114{bottom:803.883000px;}
.y93{bottom:804.330000px;}
.y2c{bottom:804.571500px;}
.y2bc{bottom:804.823500px;}
.y223{bottom:805.954950px;}
.y287{bottom:807.715500px;}
.y21f{bottom:809.307000px;}
.yd6{bottom:810.241245px;}
.y2f6{bottom:812.176500px;}
.ya5{bottom:816.439746px;}
.y1cb{bottom:817.332000px;}
.y5d{bottom:818.677500px;}
.y1ce{bottom:819.504585px;}
.y2b{bottom:820.711500px;}
.y2bb{bottom:822.084000px;}
.y113{bottom:822.712500px;}
.y92{bottom:823.159500px;}
.y286{bottom:825.289500px;}
.y1cd{bottom:829.134450px;}
.y2f5{bottom:829.437000px;}
.ya4{bottom:835.609008px;}
.y1ca{bottom:836.161500px;}
.y2a{bottom:836.850000px;}
.y5c{bottom:837.507000px;}
.y2ba{bottom:839.344500px;}
.y112{bottom:841.540500px;}
.y91{bottom:841.989000px;}
.y285{bottom:842.863500px;}
.y2f4{bottom:846.697500px;}
.ya3{bottom:854.868450px;}
.y1c9{bottom:854.991000px;}
.y5b{bottom:856.335000px;}
.y2b9{bottom:856.605000px;}
.y29{bottom:857.329500px;}
.y222{bottom:859.235085px;}
.y111{bottom:860.370000px;}
.y284{bottom:860.437500px;}
.y90{bottom:860.818500px;}
.y2f3{bottom:863.956500px;}
.yd5{bottom:868.849394px;}
.y221{bottom:868.864950px;}
.y1c8{bottom:873.820500px;}
.y2b8{bottom:873.865500px;}
.y5a{bottom:875.164500px;}
.y283{bottom:878.011500px;}
.y110{bottom:879.199500px;}
.yd4{bottom:879.442245px;}
.y8f{bottom:879.648000px;}
.y2f2{bottom:881.217000px;}
.y25e{bottom:883.683000px;}
.y2b7{bottom:891.126000px;}
.y1c7{bottom:892.650000px;}
.y59{bottom:893.994000px;}
.y282{bottom:895.587000px;}
.y10f{bottom:898.029000px;}
.y8e{bottom:898.477500px;}
.y28{bottom:902.007000px;}
.ya2{bottom:908.058585px;}
.y2b6{bottom:908.386500px;}
.y1c6{bottom:911.479500px;}
.y58{bottom:912.823500px;}
.y2f1{bottom:915.738000px;}
.y10e{bottom:916.858500px;}
.y8d{bottom:917.307000px;}
.ya1{bottom:917.688450px;}
.y27{bottom:920.836500px;}
.y281{bottom:922.126500px;}
.y2b5{bottom:925.645500px;}
.y1c5{bottom:930.309000px;}
.y57{bottom:931.653000px;}
.y2f0{bottom:932.998500px;}
.y10d{bottom:935.688000px;}
.y8c{bottom:936.136500px;}
.y26{bottom:939.666000px;}
.y280{bottom:940.171500px;}
.y2b4{bottom:942.906000px;}
.y1c4{bottom:949.138500px;}
.y2ef{bottom:950.259000px;}
.y56{bottom:950.482500px;}
.y10c{bottom:954.517500px;}
.y8b{bottom:954.966000px;}
.y27f{bottom:958.216500px;}
.y2b3{bottom:960.166500px;}
.y2ee{bottom:967.519500px;}
.y1c3{bottom:967.968000px;}
.y55{bottom:969.312000px;}
.y10b{bottom:973.347000px;}
.y8a{bottom:973.795500px;}
.y27e{bottom:976.261500px;}
.y2b2{bottom:977.427000px;}
.y25{bottom:979.996500px;}
.y2ed{bottom:984.780000px;}
.y1c2{bottom:986.797500px;}
.y54{bottom:988.141500px;}
.y10a{bottom:992.176500px;}
.y89{bottom:992.625000px;}
.y27d{bottom:994.306500px;}
.y2b1{bottom:994.687500px;}
.y2eb{bottom:1002.039000px;}
.y2ec{bottom:1002.040500px;}
.y1c1{bottom:1005.627000px;}
.y53{bottom:1006.971000px;}
.y24{bottom:1008.240000px;}
.y203{bottom:1008.724500px;}
.y109{bottom:1011.006000px;}
.y88{bottom:1011.454500px;}
.y2b0{bottom:1011.948000px;}
.y21e{bottom:1015.489500px;}
.y2ea{bottom:1019.299500px;}
.y1c0{bottom:1024.456500px;}
.y52{bottom:1025.800500px;}
.y87{bottom:1030.284000px;}
.y2af{bottom:1033.690500px;}
.y108{bottom:1034.319000px;}
.y202{bottom:1035.708000px;}
.y23{bottom:1036.485000px;}
.y2e9{bottom:1036.560000px;}
.y1bf{bottom:1043.284500px;}
.y51{bottom:1044.630000px;}
.y86{bottom:1049.113500px;}
.y2e8{bottom:1053.820500px;}
.y1be{bottom:1062.114000px;}
.y50{bottom:1063.459500px;}
.y22{bottom:1064.728500px;}
.y85{bottom:1067.943000px;}
.y2ae{bottom:1070.454000px;}
.y2e7{bottom:1071.081000px;}
.y4f{bottom:1082.289000px;}
.y1bd{bottom:1085.427000px;}
.y84{bottom:1086.772500px;}
.y2ad{bottom:1088.028000px;}
.y2e6{bottom:1088.341500px;}
.y21{bottom:1092.972000px;}
.y4e{bottom:1105.602000px;}
.y1f{bottom:1136.460000px;}
.y4d{bottom:1168.366500px;}
.h2f{height:31.526842px;}
.h9{height:32.565965px;}
.h1a{height:37.334628px;}
.he{height:37.551283px;}
.h2{height:37.993262px;}
.h3{height:38.202476px;}
.hc{height:38.734848px;}
.h25{height:41.106463px;}
.h30{height:41.250077px;}
.h2d{height:41.482876px;}
.h11{height:41.723369px;}
.h32{height:41.842920px;}
.h24{height:42.065666px;}
.h23{height:42.309976px;}
.hf{height:43.038432px;}
.h17{height:43.269961px;}
.hb{height:43.421105px;}
.ha{height:43.660208px;}
.h6{height:43.815515px;}
.h14{height:44.279648px;}
.h13{height:44.536816px;}
.h28{height:47.442480px;}
.h1e{height:47.596957px;}
.h27{height:47.718018px;}
.h1d{height:48.707613px;}
.hd{height:48.848947px;}
.h1c{height:48.990498px;}
.h33{height:49.117939px;}
.h19{height:49.939453px;}
.h2a{height:49.942453px;}
.h18{height:50.229492px;}
.h4{height:50.930649px;}
.h26{height:52.819295px;}
.h10{height:54.276245px;}
.h2c{height:54.575123px;}
.h21{height:54.933398px;}
.h20{height:55.252441px;}
.h8{height:55.352206px;}
.h15{height:55.599258px;}
.h16{height:55.922168px;}
.h2b{height:57.517262px;}
.h1f{height:61.159184px;}
.h7{height:77.469696px;}
.h5{height:92.253453px;}
.h31{height:239.649000px;}
.h22{height:242.644725px;}
.h12{height:259.816500px;}
.h29{height:318.480000px;}
.h2e{height:334.248000px;}
.h1b{height:425.944200px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:241.345133px;}
.w7{width:544.885500px;}
.w3{width:555.528000px;}
.w5{width:572.162295px;}
.w6{width:590.923500px;}
.w8{width:601.644750px;}
.w4{width:659.034915px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x3c{left:-193.851000px;}
.x67{left:-192.586500px;}
.x51{left:-100.849485px;}
.xa5{left:-95.465250px;}
.x5a{left:-89.493705px;}
.x0{left:0.000000px;}
.x3d{left:1.719000px;}
.x69{left:2.983500px;}
.x3e{left:33.579594px;}
.x6a{left:34.843500px;}
.x1{left:53.574000px;}
.x2{left:58.056971px;}
.xb7{left:85.848000px;}
.x5b{left:96.297795px;}
.xa6{left:100.104750px;}
.x52{left:114.277515px;}
.x50{left:116.725335px;}
.x5c{left:126.565359px;}
.xa7{left:131.965344px;}
.x53{left:149.324168px;}
.x66{left:150.783000px;}
.xc3{left:163.182000px;}
.xbc{left:171.897000px;}
.xc0{left:187.323000px;}
.xc6{left:194.827500px;}
.xbe{left:221.848500px;}
.x3a{left:247.348500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x5f{left:253.714500px;}
.x60{left:262.686000px;}
.x4{left:269.914500px;}
.x9f{left:278.341500px;}
.xd{left:281.479500px;}
.x77{left:284.148000px;}
.x87{left:285.873000px;}
.x2b{left:286.891500px;}
.x79{left:290.229000px;}
.x78{left:299.091000px;}
.x88{left:300.816000px;}
.x2c{left:301.836000px;}
.x7a{left:305.173500px;}
.x40{left:306.261000px;}
.x6{left:308.133000px;}
.xb2{left:310.035000px;}
.x6f{left:311.985000px;}
.x46{left:316.438500px;}
.xb{left:318.024000px;}
.x12{left:320.844000px;}
.xae{left:323.056500px;}
.x47{left:325.410000px;}
.x96{left:327.085500px;}
.x13{left:328.315500px;}
.x97{left:333.511500px;}
.x20{left:335.130000px;}
.x32{left:338.275500px;}
.xaa{left:341.098500px;}
.xab{left:350.070000px;}
.x33{left:352.752000px;}
.x9c{left:356.494500px;}
.x34{left:357.828000px;}
.x70{left:361.899000px;}
.x9d{left:363.300000px;}
.x4c{left:366.210000px;}
.x61{left:367.444500px;}
.x35{left:372.771000px;}
.xb6{left:377.092500px;}
.xb1{left:390.699000px;}
.x93{left:398.190000px;}
.x7{left:404.001000px;}
.x8{left:412.185000px;}
.x94{left:414.214500px;}
.xaf{left:417.768000px;}
.x83{left:426.688500px;}
.xb5{left:428.004000px;}
.xb4{left:434.967000px;}
.x89{left:436.795500px;}
.x10{left:446.388000px;}
.x9{left:447.900000px;}
.x8a{left:451.738500px;}
.x9a{left:452.842500px;}
.x11{left:453.859500px;}
.x7d{left:455.646000px;}
.xa{left:456.756000px;}
.x23{left:458.152500px;}
.x9b{left:466.404000px;}
.x7e{left:470.590500px;}
.x24{left:473.097000px;}
.x7f{left:474.402000px;}
.xa9{left:480.637500px;}
.x2d{left:485.169000px;}
.xb3{left:488.584500px;}
.x2e{left:490.185000px;}
.x8b{left:494.739000px;}
.x2f{left:505.129500px;}
.x8c{left:509.682000px;}
.x64{left:516.570000px;}
.x62{left:517.912500px;}
.x63{left:526.882500px;}
.x14{left:529.429500px;}
.x65{left:531.513000px;}
.x15{left:536.901000px;}
.x91{left:538.484364px;}
.x57{left:540.003000px;}
.x48{left:542.077500px;}
.x58{left:549.712500px;}
.x49{left:551.788500px;}
.x29{left:556.482000px;}
.x3f{left:562.420665px;}
.x5d{left:564.923876px;}
.x36{left:568.197000px;}
.x2a{left:570.100500px;}
.x6b{left:578.970000px;}
.x37{left:581.034000px;}
.x6c{left:582.082500px;}
.x25{left:585.013500px;}
.x68{left:591.313500px;}
.xa8{left:596.276613px;}
.x21{left:598.933500px;}
.x26{left:599.958000px;}
.x8e{left:605.902500px;}
.xc4{left:609.966000px;}
.x1e{left:611.628000px;}
.x80{left:613.779000px;}
.xe{left:619.095000px;}
.x8f{left:620.847000px;}
.x1f{left:626.572500px;}
.xf{left:628.995000px;}
.x90{left:634.989000px;}
.x38{left:638.914500px;}
.x39{left:648.754500px;}
.x22{left:650.908500px;}
.x6d{left:652.750500px;}
.x7b{left:656.467500px;}
.x54{left:661.448723px;}
.x92{left:663.544500px;}
.x4a{left:665.563500px;}
.x6e{left:667.695000px;}
.x7c{left:669.004500px;}
.x4d{left:672.015000px;}
.x8d{left:675.352500px;}
.x4b{left:676.767000px;}
.x56{left:681.934500px;}
.x4e{left:683.077500px;}
.xa2{left:686.763000px;}
.x74{left:691.095000px;}
.x59{left:692.922000px;}
.x30{left:697.920000px;}
.xa3{left:701.707500px;}
.xb0{left:703.849500px;}
.xbb{left:709.185000px;}
.x31{left:710.745000px;}
.xc1{left:711.964500px;}
.x81{left:720.393000px;}
.xa4{left:723.418500px;}
.x9e{left:726.825000px;}
.xbd{left:728.206500px;}
.x82{left:729.486000px;}
.x5e{left:732.529500px;}
.xa0{left:736.099500px;}
.xc2{left:738.862500px;}
.x84{left:741.340500px;}
.xc{left:742.603500px;}
.x16{left:744.504000px;}
.x55{left:745.945500px;}
.xc5{left:748.135500px;}
.x3b{left:749.185500px;}
.x1c{left:750.486000px;}
.x17{left:751.975500px;}
.x18{left:755.722500px;}
.x1d{left:757.959000px;}
.x73{left:760.680000px;}
.x19{left:763.195500px;}
.x44{left:767.940000px;}
.x85{left:770.365500px;}
.xbf{left:772.239000px;}
.xba{left:775.744500px;}
.x1a{left:776.959500px;}
.x45{left:778.402500px;}
.x1b{left:784.432500px;}
.xac{left:786.354000px;}
.x41{left:787.872000px;}
.xc7{left:789.193500px;}
.x98{left:790.675500px;}
.x42{left:794.515500px;}
.x75{left:798.981000px;}
.xad{left:801.297000px;}
.xa1{left:803.187000px;}
.x43{left:805.719000px;}
.xb8{left:810.289500px;}
.x76{left:813.924000px;}
.x71{left:817.810500px;}
.x27{left:818.968500px;}
.x86{left:821.152500px;}
.x95{left:828.106500px;}
.x99{left:829.819500px;}
.x72{left:832.755000px;}
.x28{left:833.911500px;}
.x4f{left:835.531500px;}
.xb9{left:837.189000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.442667pt;}
.v4{vertical-align:17.354667pt;}
.v1{vertical-align:19.285333pt;}
.ls8c{letter-spacing:-0.309685pt;}
.ls9a{letter-spacing:-0.299264pt;}
.lsc3{letter-spacing:-0.288576pt;}
.ls99{letter-spacing:-0.251168pt;}
.ls8a{letter-spacing:-0.248763pt;}
.ls7c{letter-spacing:-0.228456pt;}
.ls7d{letter-spacing:-0.218302pt;}
.lsbe{letter-spacing:-0.208416pt;}
.ls2a{letter-spacing:-0.203072pt;}
.ls87{letter-spacing:-0.182765pt;}
.lsc4{letter-spacing:-0.160320pt;}
.lsc2{letter-spacing:-0.154976pt;}
.ls79{letter-spacing:-0.152304pt;}
.ls7e{letter-spacing:-0.142150pt;}
.ls52{letter-spacing:-0.135203pt;}
.ls54{letter-spacing:-0.129325pt;}
.lsc1{letter-spacing:-0.128256pt;}
.ls5b{letter-spacing:-0.126720pt;}
.lsab{letter-spacing:-0.122912pt;}
.lsbf{letter-spacing:-0.112224pt;}
.ls51{letter-spacing:-0.111690pt;}
.lsc0{letter-spacing:-0.106880pt;}
.ls88{letter-spacing:-0.091382pt;}
.ls80{letter-spacing:-0.086306pt;}
.lsae{letter-spacing:-0.081600pt;}
.lsaf{letter-spacing:-0.076800pt;}
.ls4e{letter-spacing:-0.076419pt;}
.ls86{letter-spacing:-0.072960pt;}
.lsac{letter-spacing:-0.072000pt;}
.ls57{letter-spacing:-0.068640pt;}
.ls8b{letter-spacing:-0.065998pt;}
.lsaa{letter-spacing:-0.058784pt;}
.ls5a{letter-spacing:-0.058080pt;}
.ls96{letter-spacing:-0.052800pt;}
.ls9b{letter-spacing:-0.048096pt;}
.lsad{letter-spacing:-0.048000pt;}
.ls34{letter-spacing:-0.043200pt;}
.ls5e{letter-spacing:-0.042240pt;}
.ls7b{letter-spacing:-0.040614pt;}
.ls83{letter-spacing:-0.036480pt;}
.ls98{letter-spacing:-0.032064pt;}
.ls85{letter-spacing:-0.031920pt;}
.ls7a{letter-spacing:-0.030461pt;}
.ls2b{letter-spacing:-0.026720pt;}
.ls59{letter-spacing:-0.026400pt;}
.ls53{letter-spacing:-0.023514pt;}
.ls2f{letter-spacing:-0.021376pt;}
.ls56{letter-spacing:-0.021120pt;}
.ls78{letter-spacing:-0.020307pt;}
.ls30{letter-spacing:-0.019200pt;}
.ls84{letter-spacing:-0.018240pt;}
.ls2d{letter-spacing:-0.016032pt;}
.ls58{letter-spacing:-0.015840pt;}
.ls89{letter-spacing:-0.015230pt;}
.ls33{letter-spacing:-0.014400pt;}
.ls81{letter-spacing:-0.013680pt;}
.ls4f{letter-spacing:-0.011757pt;}
.ls2c{letter-spacing:-0.010688pt;}
.ls5c{letter-spacing:-0.010560pt;}
.ls8d{letter-spacing:-0.010154pt;}
.ls95{letter-spacing:-0.009600pt;}
.ls55{letter-spacing:-0.005878pt;}
.ls29{letter-spacing:-0.005344pt;}
.ls5d{letter-spacing:-0.005280pt;}
.ls77{letter-spacing:-0.005077pt;}
.ls31{letter-spacing:-0.004800pt;}
.ls82{letter-spacing:-0.004560pt;}
.ls11{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000158pt;}
.ls4{letter-spacing:0.000518pt;}
.lsde{letter-spacing:0.000600pt;}
.lse5{letter-spacing:0.000623pt;}
.lscd{letter-spacing:0.000659pt;}
.lsd4{letter-spacing:0.000711pt;}
.lsda{letter-spacing:0.000732pt;}
.lscb{letter-spacing:0.000921pt;}
.lsd5{letter-spacing:0.001026pt;}
.lse2{letter-spacing:0.001134pt;}
.lse4{letter-spacing:0.001288pt;}
.lsd{letter-spacing:0.001398pt;}
.lsdf{letter-spacing:0.001408pt;}
.lse{letter-spacing:0.001452pt;}
.lse3{letter-spacing:0.001512pt;}
.ls9d{letter-spacing:0.001601pt;}
.lsc{letter-spacing:0.001735pt;}
.lsc9{letter-spacing:0.001774pt;}
.lsd0{letter-spacing:0.001843pt;}
.lse0{letter-spacing:0.001863pt;}
.lsca{letter-spacing:0.002262pt;}
.lsdc{letter-spacing:0.002525pt;}
.lsec{letter-spacing:0.002538pt;}
.lsea{letter-spacing:0.002703pt;}
.lscc{letter-spacing:0.002746pt;}
.ls9c{letter-spacing:0.003031pt;}
.lsc8{letter-spacing:0.003261pt;}
.lse8{letter-spacing:0.003418pt;}
.lse1{letter-spacing:0.003502pt;}
.lsdd{letter-spacing:0.003581pt;}
.ls7{letter-spacing:0.003733pt;}
.lsd2{letter-spacing:0.003752pt;}
.lseb{letter-spacing:0.003836pt;}
.lsd9{letter-spacing:0.004221pt;}
.ls9{letter-spacing:0.004237pt;}
.lsd6{letter-spacing:0.004267pt;}
.ls71{letter-spacing:0.004560pt;}
.lsa6{letter-spacing:0.004800pt;}
.ls62{letter-spacing:0.005077pt;}
.lse9{letter-spacing:0.005234pt;}
.ls47{letter-spacing:0.005280pt;}
.ls19{letter-spacing:0.005344pt;}
.ls3d{letter-spacing:0.005878pt;}
.ls24{letter-spacing:0.009600pt;}
.ls6d{letter-spacing:0.010154pt;}
.ls20{letter-spacing:0.010688pt;}
.ls3f{letter-spacing:0.011757pt;}
.ls6f{letter-spacing:0.013680pt;}
.ls28{letter-spacing:0.014400pt;}
.ls65{letter-spacing:0.015230pt;}
.ls45{letter-spacing:0.015840pt;}
.ls1a{letter-spacing:0.016032pt;}
.ls5f{letter-spacing:0.016173pt;}
.ls12{letter-spacing:0.017024pt;}
.ls35{letter-spacing:0.018726pt;}
.ls22{letter-spacing:0.019200pt;}
.ls69{letter-spacing:0.020307pt;}
.ls18{letter-spacing:0.021376pt;}
.ls6e{letter-spacing:0.022800pt;}
.ls38{letter-spacing:0.023514pt;}
.ls21{letter-spacing:0.024000pt;}
.ls6b{letter-spacing:0.025384pt;}
.ls4b{letter-spacing:0.026400pt;}
.ls17{letter-spacing:0.026720pt;}
.ls73{letter-spacing:0.027360pt;}
.ls8e{letter-spacing:0.028800pt;}
.ls40{letter-spacing:0.029392pt;}
.ls63{letter-spacing:0.030461pt;}
.ls92{letter-spacing:0.032064pt;}
.ls27{letter-spacing:0.033600pt;}
.ls3a{letter-spacing:0.035270pt;}
.ls67{letter-spacing:0.035538pt;}
.ls42{letter-spacing:0.036960pt;}
.ls1b{letter-spacing:0.037408pt;}
.lsa5{letter-spacing:0.038400pt;}
.ls74{letter-spacing:0.041040pt;}
.ls4c{letter-spacing:0.042240pt;}
.ls1c{letter-spacing:0.042752pt;}
.ls8f{letter-spacing:0.043200pt;}
.ls72{letter-spacing:0.045600pt;}
.ls68{letter-spacing:0.045691pt;}
.ls48{letter-spacing:0.047520pt;}
.lsbd{letter-spacing:0.048000pt;}
.ls16{letter-spacing:0.048096pt;}
.ls6a{letter-spacing:0.050768pt;}
.ls46{letter-spacing:0.052800pt;}
.ls39{letter-spacing:0.052906pt;}
.ls1e{letter-spacing:0.053440pt;}
.ls66{letter-spacing:0.055845pt;}
.ls44{letter-spacing:0.058080pt;}
.ls1d{letter-spacing:0.058784pt;}
.ls70{letter-spacing:0.059280pt;}
.ls23{letter-spacing:0.062400pt;}
.ls49{letter-spacing:0.063360pt;}
.ls15{letter-spacing:0.064128pt;}
.ls3e{letter-spacing:0.064662pt;}
.ls90{letter-spacing:0.067200pt;}
.ls4a{letter-spacing:0.068640pt;}
.lsbb{letter-spacing:0.069472pt;}
.ls3b{letter-spacing:0.070541pt;}
.ls64{letter-spacing:0.071075pt;}
.ls1f{letter-spacing:0.074816pt;}
.ls6c{letter-spacing:0.076152pt;}
.ls41{letter-spacing:0.076419pt;}
.lsbc{letter-spacing:0.076800pt;}
.ls2e{letter-spacing:0.080160pt;}
.lsa7{letter-spacing:0.081600pt;}
.ls50{letter-spacing:0.082298pt;}
.ls91{letter-spacing:0.085504pt;}
.lsa3{letter-spacing:0.090848pt;}
.ls25{letter-spacing:0.096000pt;}
.lsa1{letter-spacing:0.096192pt;}
.ls75{letter-spacing:0.096459pt;}
.lsa2{letter-spacing:0.101536pt;}
.ls43{letter-spacing:0.105600pt;}
.ls26{letter-spacing:0.110400pt;}
.ls97{letter-spacing:0.112224pt;}
.lsa4{letter-spacing:0.122912pt;}
.ls3c{letter-spacing:0.129325pt;}
.ls61{letter-spacing:0.141512pt;}
.ls14{letter-spacing:0.148960pt;}
.lsb9{letter-spacing:0.153216pt;}
.ls60{letter-spacing:0.153642pt;}
.lsba{letter-spacing:0.160320pt;}
.ls13{letter-spacing:0.161728pt;}
.ls37{letter-spacing:0.163856pt;}
.ls36{letter-spacing:0.177901pt;}
.ls32{letter-spacing:0.336000pt;}
.ls7f{letter-spacing:0.989976pt;}
.lsc7{letter-spacing:1.304429pt;}
.ls6{letter-spacing:2.657067pt;}
.ls8{letter-spacing:2.665203pt;}
.lsb5{letter-spacing:3.163733pt;}
.ls2{letter-spacing:9.298770pt;}
.ls1{letter-spacing:9.298932pt;}
.ls0{letter-spacing:9.298933pt;}
.ls10{letter-spacing:10.626533pt;}
.lse6{letter-spacing:10.749562pt;}
.lsd7{letter-spacing:11.896357pt;}
.lsd3{letter-spacing:11.948608pt;}
.lscf{letter-spacing:11.954133pt;}
.ls4d{letter-spacing:11.956267pt;}
.lsa9{letter-spacing:11.957043pt;}
.lsce{letter-spacing:11.959467pt;}
.lsee{letter-spacing:12.112345pt;}
.lsd1{letter-spacing:12.583362pt;}
.lsed{letter-spacing:12.881401pt;}
.lsc6{letter-spacing:12.920648pt;}
.lsb3{letter-spacing:13.070148pt;}
.lsb0{letter-spacing:13.186791pt;}
.lsc5{letter-spacing:13.202221pt;}
.ls9f{letter-spacing:13.246051pt;}
.ls3{letter-spacing:13.283733pt;}
.lsb6{letter-spacing:13.284237pt;}
.ls94{letter-spacing:13.398085pt;}
.lsb7{letter-spacing:13.552857pt;}
.lsef{letter-spacing:13.555911pt;}
.lsb4{letter-spacing:13.785067pt;}
.ls9e{letter-spacing:13.866720pt;}
.lsb2{letter-spacing:13.923096pt;}
.ls76{letter-spacing:13.961495pt;}
.lsd8{letter-spacing:14.324539pt;}
.ls93{letter-spacing:14.608533pt;}
.lsb1{letter-spacing:14.672282pt;}
.lse7{letter-spacing:17.090552pt;}
.lsdb{letter-spacing:18.690552pt;}
.lsb8{letter-spacing:18.865413pt;}
.lsa0{letter-spacing:19.105936pt;}
.ls5{letter-spacing:51.035733pt;}
.lsa{letter-spacing:55.787733pt;}
.lsf{letter-spacing:57.174803pt;}
.lsa8{letter-spacing:754.642272pt;}
.ws60{word-spacing:-53.440000pt;}
.ws1a7{word-spacing:-48.000000pt;}
.wsac{word-spacing:-14.731270pt;}
.wsad{word-spacing:-14.696000pt;}
.ws152{word-spacing:-13.360000pt;}
.wsd{word-spacing:-13.283467pt;}
.wsae{word-spacing:-13.200000pt;}
.ws17{word-spacing:-12.760670pt;}
.ws105{word-spacing:-12.707230pt;}
.ws104{word-spacing:-12.473698pt;}
.ws107{word-spacing:-12.382315pt;}
.ws61{word-spacing:-12.000000pt;}
.ws1a9{word-spacing:-11.955200pt;}
.wsaa{word-spacing:-11.881901pt;}
.wsa9{word-spacing:-11.722726pt;}
.wsab{word-spacing:-11.704000pt;}
.ws106{word-spacing:-11.400000pt;}
.ws5e{word-spacing:-10.801728pt;}
.ws5d{word-spacing:-10.657024pt;}
.ws5f{word-spacing:-10.640000pt;}
.ws1e{word-spacing:-10.626800pt;}
.ws102{word-spacing:-10.261642pt;}
.ws101{word-spacing:-10.124173pt;}
.ws103{word-spacing:-10.108000pt;}
.ws11{word-spacing:-10.095467pt;}
.ws2{word-spacing:-9.298400pt;}
.ws151{word-spacing:-7.360000pt;}
.ws5a{word-spacing:-3.294300pt;}
.ws31{word-spacing:-3.203994pt;}
.ws18a{word-spacing:-3.201056pt;}
.ws69{word-spacing:-2.848352pt;}
.ws22c{word-spacing:-2.816095pt;}
.ws189{word-spacing:-2.810944pt;}
.ws167{word-spacing:-2.731200pt;}
.ws18d{word-spacing:-2.709827pt;}
.wsd7{word-spacing:-2.676960pt;}
.ws196{word-spacing:-2.656693pt;}
.ws72{word-spacing:-2.533056pt;}
.ws20b{word-spacing:-2.511680pt;}
.ws30{word-spacing:-2.486682pt;}
.ws1ba{word-spacing:-2.484960pt;}
.ws71{word-spacing:-2.452896pt;}
.ws1d4{word-spacing:-2.419200pt;}
.ws258{word-spacing:-2.391317pt;}
.wsd5{word-spacing:-2.323200pt;}
.ws154{word-spacing:-2.295398pt;}
.wsd4{word-spacing:-2.265120pt;}
.wsd6{word-spacing:-2.217600pt;}
.ws73{word-spacing:-2.148288pt;}
.ws1e9{word-spacing:-2.125355pt;}
.ws21b{word-spacing:-2.116800pt;}
.ws1cf{word-spacing:-2.097600pt;}
.ws1d0{word-spacing:-2.088000pt;}
.ws1e8{word-spacing:-2.072221pt;}
.ws257{word-spacing:-2.056294pt;}
.ws130{word-spacing:-2.033760pt;}
.ws21a{word-spacing:-2.030400pt;}
.ws22d{word-spacing:-2.019087pt;}
.ws12e{word-spacing:-1.997280pt;}
.ws12f{word-spacing:-1.988160pt;}
.ws109{word-spacing:-1.960653pt;}
.ws108{word-spacing:-1.912832pt;}
.ws213{word-spacing:-1.897120pt;}
.ws215{word-spacing:-1.891776pt;}
.ws216{word-spacing:-1.865056pt;}
.ws1b4{word-spacing:-1.849024pt;}
.ws214{word-spacing:-1.827648pt;}
.ws16a{word-spacing:-1.822304pt;}
.ws225{word-spacing:-1.811616pt;}
.ws1b3{word-spacing:-1.779552pt;}
.ws1a1{word-spacing:-1.753418pt;}
.ws18f{word-spacing:-1.700284pt;}
.ws15a{word-spacing:-1.647150pt;}
.ws16d{word-spacing:-1.629920pt;}
.ws26d{word-spacing:-1.578086pt;}
.ws1f9{word-spacing:-1.571136pt;}
.ws226{word-spacing:-1.560448pt;}
.ws8e{word-spacing:-1.544416pt;}
.ws87{word-spacing:-1.528384pt;}
.ws201{word-spacing:-1.485632pt;}
.ws32{word-spacing:-1.482445pt;}
.ws9c{word-spacing:-1.473600pt;}
.ws161{word-spacing:-1.468800pt;}
.ws9b{word-spacing:-1.435200pt;}
.ws148{word-spacing:-1.411350pt;}
.ws25a{word-spacing:-1.386803pt;}
.wsa8{word-spacing:-1.381481pt;}
.ws1ff{word-spacing:-1.357376pt;}
.ws23f{word-spacing:-1.338982pt;}
.ws1a2{word-spacing:-1.328347pt;}
.ws62{word-spacing:-1.291162pt;}
.ws1f8{word-spacing:-1.282560pt;}
.ws16c{word-spacing:-1.261184pt;}
.ws1fd{word-spacing:-1.255840pt;}
.ws8b{word-spacing:-1.245152pt;}
.ws46{word-spacing:-1.222079pt;}
.ws1fe{word-spacing:-1.213088pt;}
.ws200{word-spacing:-1.191712pt;}
.ws11d{word-spacing:-1.177818pt;}
.ws3e{word-spacing:-1.168945pt;}
.ws1d6{word-spacing:-1.161600pt;}
.ws18e{word-spacing:-1.115811pt;}
.ws22b{word-spacing:-1.062677pt;}
.ws3{word-spacing:-1.041421pt;}
.ws1d5{word-spacing:-1.036800pt;}
.wsdb{word-spacing:-0.939840pt;}
.wsdf{word-spacing:-0.934560pt;}
.ws8f{word-spacing:-0.929856pt;}
.ws5{word-spacing:-0.929840pt;}
.wsed{word-spacing:-0.924000pt;}
.ws191{word-spacing:-0.903276pt;}
.ws16f{word-spacing:-0.903136pt;}
.wsdd{word-spacing:-0.897600pt;}
.ws11e{word-spacing:-0.883363pt;}
.ws123{word-spacing:-0.863056pt;}
.wsee{word-spacing:-0.860640pt;}
.ws14c{word-spacing:-0.857979pt;}
.ws1c0{word-spacing:-0.833664pt;}
.wsdc{word-spacing:-0.823680pt;}
.wsde{word-spacing:-0.813120pt;}
.wsb1{word-spacing:-0.812954pt;}
.ws195{word-spacing:-0.797008pt;}
.wsb3{word-spacing:-0.781636pt;}
.wsb2{word-spacing:-0.765133pt;}
.ws1c1{word-spacing:-0.758848pt;}
.ws206{word-spacing:-0.753504pt;}
.ws207{word-spacing:-0.726784pt;}
.ws1e4{word-spacing:-0.690740pt;}
.ws174{word-spacing:-0.598528pt;}
.ws1da{word-spacing:-0.584473pt;}
.ws14b{word-spacing:-0.558448pt;}
.ws173{word-spacing:-0.555776pt;}
.ws14d{word-spacing:-0.548294pt;}
.ws111{word-spacing:-0.531339pt;}
.ws248{word-spacing:-0.526029pt;}
.ws1cb{word-spacing:-0.523200pt;}
.ws1d1{word-spacing:-0.518400pt;}
.ws1cc{word-spacing:-0.494400pt;}
.ws1d3{word-spacing:-0.489600pt;}
.ws190{word-spacing:-0.478205pt;}
.ws1d2{word-spacing:-0.460800pt;}
.ws59{word-spacing:-0.425071pt;}
.ws126{word-spacing:-0.390914pt;}
.ws1de{word-spacing:-0.371937pt;}
.ws1b2{word-spacing:-0.342016pt;}
.ws43{word-spacing:-0.318803pt;}
.ws125{word-spacing:-0.304608pt;}
.wsd3{word-spacing:-0.293920pt;}
.ws1b1{word-spacing:-0.288576pt;}
.ws23{word-spacing:-0.286925pt;}
.ws185{word-spacing:-0.272544pt;}
.wsb7{word-spacing:-0.266851pt;}
.ws38{word-spacing:-0.265669pt;}
.ws116{word-spacing:-0.258917pt;}
.ws176{word-spacing:-0.256512pt;}
.ws208{word-spacing:-0.251168pt;}
.ws67{word-spacing:-0.242592pt;}
.ws25{word-spacing:-0.239104pt;}
.ws112{word-spacing:-0.230462pt;}
.ws12c{word-spacing:-0.228456pt;}
.ws86{word-spacing:-0.224448pt;}
.ws114{word-spacing:-0.223379pt;}
.ws1f1{word-spacing:-0.219104pt;}
.ws18c{word-spacing:-0.213760pt;}
.ws3d{word-spacing:-0.212535pt;}
.ws16e{word-spacing:-0.208416pt;}
.wse7{word-spacing:-0.200640pt;}
.ws183{word-spacing:-0.192384pt;}
.ws63{word-spacing:-0.191283pt;}
.wsb9{word-spacing:-0.188109pt;}
.ws124{word-spacing:-0.187842pt;}
.wse8{word-spacing:-0.174240pt;}
.wse9{word-spacing:-0.163680pt;}
.ws3b{word-spacing:-0.159402pt;}
.ws22{word-spacing:-0.143462pt;}
.ws37{word-spacing:-0.106268pt;}
.ws20{word-spacing:-0.095642pt;}
.ws1f{word-spacing:-0.085014pt;}
.ws14f{word-spacing:-0.060839pt;}
.ws150{word-spacing:-0.059628pt;}
.wse{word-spacing:-0.053134pt;}
.ws26{word-spacing:-0.047821pt;}
.ws1d{word-spacing:-0.042507pt;}
.ws22f{word-spacing:-0.011311pt;}
.ws27d{word-spacing:-0.007979pt;}
.ws27b{word-spacing:-0.006596pt;}
.ws20a{word-spacing:-0.005344pt;}
.ws13{word-spacing:-0.004015pt;}
.ws16{word-spacing:-0.003474pt;}
.ws26a{word-spacing:-0.003260pt;}
.ws268{word-spacing:-0.003081pt;}
.ws1c{word-spacing:-0.002126pt;}
.ws18{word-spacing:-0.002029pt;}
.ws27e{word-spacing:-0.001903pt;}
.ws10{word-spacing:-0.001829pt;}
.ws14{word-spacing:-0.001333pt;}
.ws33{word-spacing:-0.000772pt;}
.ws12{word-spacing:-0.000207pt;}
.ws1{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.001318pt;}
.ws19{word-spacing:0.001911pt;}
.ws117{word-spacing:0.005077pt;}
.ws85{word-spacing:0.005344pt;}
.ws217{word-spacing:0.010688pt;}
.wsca{word-spacing:0.011757pt;}
.ws172{word-spacing:0.016032pt;}
.wscf{word-spacing:0.017635pt;}
.ws84{word-spacing:0.026720pt;}
.ws1b7{word-spacing:0.032064pt;}
.ws1fc{word-spacing:0.037408pt;}
.ws175{word-spacing:0.042752pt;}
.ws66{word-spacing:0.047821pt;}
.ws20f{word-spacing:0.048096pt;}
.ws36{word-spacing:0.053134pt;}
.ws1d7{word-spacing:0.076800pt;}
.ws1f4{word-spacing:0.080160pt;}
.ws6b{word-spacing:0.085504pt;}
.ws14e{word-spacing:0.086306pt;}
.ws168{word-spacing:0.091200pt;}
.ws64{word-spacing:0.095642pt;}
.ws94{word-spacing:0.096000pt;}
.ws184{word-spacing:0.096192pt;}
.ws147{word-spacing:0.096459pt;}
.ws83{word-spacing:0.101536pt;}
.ws222{word-spacing:0.105600pt;}
.ws42{word-spacing:0.106268pt;}
.ws11f{word-spacing:0.106613pt;}
.ws209{word-spacing:0.106880pt;}
.wseb{word-spacing:0.110880pt;}
.ws169{word-spacing:0.129600pt;}
.ws13e{word-spacing:0.136800pt;}
.ws10e{word-spacing:0.138590pt;}
.ws93{word-spacing:0.139200pt;}
.ws146{word-spacing:0.142150pt;}
.ws21{word-spacing:0.143462pt;}
.ws10f{word-spacing:0.145946pt;}
.wsa2{word-spacing:0.148800pt;}
.ws3a{word-spacing:0.159402pt;}
.ws12d{word-spacing:0.162458pt;}
.ws280{word-spacing:0.184430pt;}
.wsaf{word-spacing:0.191283pt;}
.ws35{word-spacing:0.212535pt;}
.ws1d8{word-spacing:0.235200pt;}
.ws24{word-spacing:0.239104pt;}
.ws41{word-spacing:0.265669pt;}
.ws6d{word-spacing:0.283232pt;}
.ws153{word-spacing:0.286925pt;}
.ws1bb{word-spacing:0.315296pt;}
.ws47{word-spacing:0.318803pt;}
.ws145{word-spacing:0.324915pt;}
.ws6a{word-spacing:0.336672pt;}
.ws7e{word-spacing:0.358048pt;}
.ws210{word-spacing:0.368736pt;}
.ws15c{word-spacing:0.371937pt;}
.ws182{word-spacing:0.379424pt;}
.ws26b{word-spacing:0.382566pt;}
.ws17a{word-spacing:0.384768pt;}
.ws7c{word-spacing:0.422176pt;}
.ws1a0{word-spacing:0.425071pt;}
.ws163{word-spacing:0.470400pt;}
.ws4d{word-spacing:0.478205pt;}
.ws24f{word-spacing:0.478208pt;}
.wsea{word-spacing:0.485760pt;}
.ws164{word-spacing:0.499200pt;}
.ws28{word-spacing:0.526029pt;}
.wsec{word-spacing:0.528000pt;}
.wsa4{word-spacing:0.531339pt;}
.ws162{word-spacing:0.532800pt;}
.ws1a4{word-spacing:0.584473pt;}
.ws120{word-spacing:0.614293pt;}
.ws251{word-spacing:0.621670pt;}
.ws122{word-spacing:0.634600pt;}
.wsa7{word-spacing:0.637606pt;}
.ws7b{word-spacing:0.641280pt;}
.wsc1{word-spacing:0.664259pt;}
.ws121{word-spacing:0.665061pt;}
.wsb0{word-spacing:0.669491pt;}
.ws14a{word-spacing:0.685368pt;}
.wsc3{word-spacing:0.728922pt;}
.ws1f5{word-spacing:0.732128pt;}
.ws1e2{word-spacing:0.743874pt;}
.ws7a{word-spacing:0.748160pt;}
.ws1c9{word-spacing:0.763200pt;}
.ws234{word-spacing:0.765133pt;}
.ws1ca{word-spacing:0.787200pt;}
.wsc2{word-spacing:0.787706pt;}
.ws1c8{word-spacing:0.792000pt;}
.ws1a8{word-spacing:0.812954pt;}
.ws1d9{word-spacing:0.850142pt;}
.ws4{word-spacing:0.892646pt;}
.ws5b{word-spacing:0.903276pt;}
.ws282{word-spacing:0.908595pt;}
.ws1f6{word-spacing:0.929856pt;}
.ws1dc{word-spacing:0.956410pt;}
.ws12b{word-spacing:0.979822pt;}
.ws1e5{word-spacing:1.009543pt;}
.ws218{word-spacing:1.041600pt;}
.ws80{word-spacing:1.047424pt;}
.ws54{word-spacing:1.062677pt;}
.ws219{word-spacing:1.075200pt;}
.wscd{word-spacing:1.087504pt;}
.ws23b{word-spacing:1.099878pt;}
.ws95{word-spacing:1.108800pt;}
.ws19f{word-spacing:1.115811pt;}
.wsbc{word-spacing:1.122774pt;}
.ws96{word-spacing:1.137600pt;}
.ws252{word-spacing:1.147699pt;}
.ws13f{word-spacing:1.193048pt;}
.ws285{word-spacing:1.243341pt;}
.ws140{word-spacing:1.243816pt;}
.ws231{word-spacing:1.275213pt;}
.ws224{word-spacing:1.314624pt;}
.ws7f{word-spacing:1.319968pt;}
.ws78{word-spacing:1.341344pt;}
.ws1df{word-spacing:1.381481pt;}
.ws23a{word-spacing:1.386803pt;}
.ws97{word-spacing:1.406400pt;}
.wsc0{word-spacing:1.422573pt;}
.ws9a{word-spacing:1.425600pt;}
.ws242{word-spacing:1.434624pt;}
.ws99{word-spacing:1.440000pt;}
.ws9e{word-spacing:1.444800pt;}
.ws9d{word-spacing:1.454400pt;}
.ws283{word-spacing:1.482445pt;}
.ws9f{word-spacing:1.483200pt;}
.wsf7{word-spacing:1.487748pt;}
.ws4a{word-spacing:1.540882pt;}
.ws286{word-spacing:1.578086pt;}
.ws1b0{word-spacing:1.581824pt;}
.ws79{word-spacing:1.613888pt;}
.ws4f{word-spacing:1.647150pt;}
.wsda{word-spacing:1.652640pt;}
.ws1ae{word-spacing:1.667328pt;}
.wsb5{word-spacing:1.700284pt;}
.ws1af{word-spacing:1.736800pt;}
.ws1ef{word-spacing:1.753418pt;}
.wsbb{word-spacing:1.763520pt;}
.ws98{word-spacing:1.766400pt;}
.ws15b{word-spacing:1.806551pt;}
.wsba{word-spacing:1.857574pt;}
.ws45{word-spacing:1.859685pt;}
.ws25b{word-spacing:1.865011pt;}
.ws115{word-spacing:1.893646pt;}
.ws19a{word-spacing:1.912819pt;}
.ws137{word-spacing:1.928880pt;}
.ws1b6{word-spacing:1.955904pt;}
.wsbf{word-spacing:1.957507pt;}
.ws19b{word-spacing:1.965953pt;}
.ws6f{word-spacing:1.971936pt;}
.ws139{word-spacing:1.988160pt;}
.ws10c{word-spacing:1.996489pt;}
.ws138{word-spacing:2.006400pt;}
.ws65{word-spacing:2.008474pt;}
.ws156{word-spacing:2.019087pt;}
.ws15e{word-spacing:2.054400pt;}
.ws23e{word-spacing:2.056294pt;}
.ws221{word-spacing:2.059200pt;}
.ws15f{word-spacing:2.078400pt;}
.ws160{word-spacing:2.088000pt;}
.wsf8{word-spacing:2.125355pt;}
.ws149{word-spacing:2.183024pt;}
.ws23d{word-spacing:2.199757pt;}
.ws194{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws180{word-spacing:2.249824pt;}
.ws1ad{word-spacing:2.265856pt;}
.ws8c{word-spacing:2.271200pt;}
.ws179{word-spacing:2.281888pt;}
.ws188{word-spacing:2.287232pt;}
.ws17f{word-spacing:2.303264pt;}
.ws6e{word-spacing:2.324640pt;}
.ws1ab{word-spacing:2.329984pt;}
.wsa0{word-spacing:2.385600pt;}
.ws3c{word-spacing:2.391024pt;}
.ws25c{word-spacing:2.391040pt;}
.wsa1{word-spacing:2.419200pt;}
.wsfb{word-spacing:2.497292pt;}
.wsc5{word-spacing:2.521834pt;}
.ws247{word-spacing:2.534502pt;}
.wsc4{word-spacing:2.539469pt;}
.ws13c{word-spacing:2.544480pt;}
.ws48{word-spacing:2.550426pt;}
.ws13a{word-spacing:2.558160pt;}
.ws13d{word-spacing:2.562720pt;}
.ws1aa{word-spacing:2.586496pt;}
.ws6c{word-spacing:2.591840pt;}
.ws20e{word-spacing:2.597184pt;}
.ws249{word-spacing:2.630144pt;}
.ws51{word-spacing:2.656693pt;}
.ws13b{word-spacing:2.658480pt;}
.ws21f{word-spacing:2.673600pt;}
.ws2e{word-spacing:2.674190pt;}
.ws2b{word-spacing:2.677965pt;}
.ws1c4{word-spacing:2.683200pt;}
.ws2d{word-spacing:2.683541pt;}
.ws5c{word-spacing:2.709827pt;}
.ws220{word-spacing:2.712000pt;}
.ws1cd{word-spacing:2.716800pt;}
.wsff{word-spacing:2.723585pt;}
.ws237{word-spacing:2.725786pt;}
.ws21e{word-spacing:2.726400pt;}
.ws1c5{word-spacing:2.731200pt;}
.ws1c2{word-spacing:2.740800pt;}
.ws39{word-spacing:2.762961pt;}
.ws1ce{word-spacing:2.769600pt;}
.ws23c{word-spacing:2.773606pt;}
.ws1c3{word-spacing:2.793600pt;}
.ws22e{word-spacing:2.816095pt;}
.ws26e{word-spacing:2.863138pt;}
.ws24d{word-spacing:2.863386pt;}
.ws271{word-spacing:2.863829pt;}
.ws27a{word-spacing:2.863983pt;}
.ws26c{word-spacing:2.864324pt;}
.ws27f{word-spacing:2.864486pt;}
.ws272{word-spacing:2.864683pt;}
.ws281{word-spacing:2.865126pt;}
.ws24c{word-spacing:2.866534pt;}
.ws276{word-spacing:2.866859pt;}
.ws255{word-spacing:2.867174pt;}
.ws274{word-spacing:2.867439pt;}
.ws56{word-spacing:2.869229pt;}
.ws24a{word-spacing:2.869248pt;}
.ws17c{word-spacing:2.875072pt;}
.ws19e{word-spacing:2.922363pt;}
.wse2{word-spacing:2.946240pt;}
.wsf4{word-spacing:2.951520pt;}
.ws77{word-spacing:2.955232pt;}
.ws187{word-spacing:2.960576pt;}
.ws27c{word-spacing:2.964890pt;}
.ws3f{word-spacing:2.975497pt;}
.wse1{word-spacing:2.977920pt;}
.wse0{word-spacing:2.988480pt;}
.wsf5{word-spacing:2.999040pt;}
.ws1eb{word-spacing:3.012710pt;}
.wsf3{word-spacing:3.014880pt;}
.ws1e7{word-spacing:3.028630pt;}
.ws256{word-spacing:3.060531pt;}
.ws4c{word-spacing:3.081764pt;}
.ws199{word-spacing:3.134898pt;}
.ws275{word-spacing:3.156173pt;}
.ws34{word-spacing:3.188032pt;}
.ws1ac{word-spacing:3.222432pt;}
.ws76{word-spacing:3.227776pt;}
.ws7d{word-spacing:3.233120pt;}
.ws1ed{word-spacing:3.241166pt;}
.ws17b{word-spacing:3.254496pt;}
.wsc7{word-spacing:3.280147pt;}
.ws1fb{word-spacing:3.286560pt;}
.ws22a{word-spacing:3.294300pt;}
.ws75{word-spacing:3.297248pt;}
.ws230{word-spacing:3.347434pt;}
.ws203{word-spacing:3.388096pt;}
.ws202{word-spacing:3.393440pt;}
.ws2c{word-spacing:3.395277pt;}
.ws40{word-spacing:3.400567pt;}
.ws235{word-spacing:3.443098pt;}
.ws50{word-spacing:3.453701pt;}
.ws100{word-spacing:3.483981pt;}
.ws236{word-spacing:3.490918pt;}
.ws1ea{word-spacing:3.506835pt;}
.ws1b9{word-spacing:3.511008pt;}
.ws27{word-spacing:3.538739pt;}
.ws4b{word-spacing:3.559969pt;}
.ws1bc{word-spacing:3.564448pt;}
.ws277{word-spacing:3.586560pt;}
.ws1fa{word-spacing:3.591168pt;}
.wsd0{word-spacing:3.603459pt;}
.ws57{word-spacing:3.613103pt;}
.wse5{word-spacing:3.627360pt;}
.wse3{word-spacing:3.632640pt;}
.ws155{word-spacing:3.634381pt;}
.ws239{word-spacing:3.682202pt;}
.wsc6{word-spacing:3.744541pt;}
.wsb4{word-spacing:3.777843pt;}
.wse4{word-spacing:3.822720pt;}
.ws110{word-spacing:3.825638pt;}
.ws89{word-spacing:3.858368pt;}
.ws24b{word-spacing:3.873485pt;}
.ws198{word-spacing:3.878772pt;}
.wscc{word-spacing:3.879744pt;}
.ws181{word-spacing:3.906464pt;}
.wsfa{word-spacing:3.931906pt;}
.ws1b8{word-spacing:3.933184pt;}
.wscb{word-spacing:3.950285pt;}
.ws21d{word-spacing:3.974400pt;}
.ws143{word-spacing:3.975134pt;}
.ws58{word-spacing:3.985040pt;}
.ws21c{word-spacing:4.003200pt;}
.ws10a{word-spacing:4.016947pt;}
.ws44{word-spacing:4.038174pt;}
.ws26f{word-spacing:4.064768pt;}
.wsd8{word-spacing:4.065600pt;}
.wsd9{word-spacing:4.076160pt;}
.ws19d{word-spacing:4.091308pt;}
.ws1ec{word-spacing:4.144442pt;}
.ws240{word-spacing:4.160410pt;}
.ws186{word-spacing:4.184352pt;}
.ws1f7{word-spacing:4.195040pt;}
.ws1e0{word-spacing:4.197575pt;}
.ws243{word-spacing:4.208230pt;}
.wsb{word-spacing:4.240070pt;}
.ws1e1{word-spacing:4.250709pt;}
.ws11c{word-spacing:4.274666pt;}
.wsb6{word-spacing:4.303843pt;}
.wsc{word-spacing:4.314458pt;}
.ws144{word-spacing:4.325434pt;}
.wse6{word-spacing:4.340160pt;}
.ws142{word-spacing:4.345741pt;}
.ws2f{word-spacing:4.351693pt;}
.ws159{word-spacing:4.356977pt;}
.ws10b{word-spacing:4.447334pt;}
.ws55{word-spacing:4.463245pt;}
.ws205{word-spacing:4.510336pt;}
.wsa5{word-spacing:4.516379pt;}
.ws20c{word-spacing:4.521024pt;}
.ws246{word-spacing:4.542976pt;}
.wsa6{word-spacing:4.569513pt;}
.ws233{word-spacing:4.590797pt;}
.ws158{word-spacing:4.622646pt;}
.ws250{word-spacing:4.638618pt;}
.ws92{word-spacing:4.641600pt;}
.ws238{word-spacing:4.686438pt;}
.ws17e{word-spacing:4.825632pt;}
.wsf9{word-spacing:4.835182pt;}
.ws1f2{word-spacing:4.836320pt;}
.ws232{word-spacing:4.877722pt;}
.ws15d{word-spacing:4.888316pt;}
.ws82{word-spacing:4.905792pt;}
.ws90{word-spacing:4.934400pt;}
.ws91{word-spacing:4.958400pt;}
.ws204{word-spacing:4.985952pt;}
.ws192{word-spacing:5.047717pt;}
.ws1dd{word-spacing:5.100851pt;}
.ws270{word-spacing:5.116826pt;}
.ws171{word-spacing:5.140928pt;}
.ws1e3{word-spacing:5.153985pt;}
.ws170{word-spacing:5.189024pt;}
.ws1f3{word-spacing:5.194368pt;}
.ws1ee{word-spacing:5.207119pt;}
.ws127{word-spacing:5.218950pt;}
.ws241{word-spacing:5.260288pt;}
.ws244{word-spacing:5.308109pt;}
.ws254{word-spacing:5.355930pt;}
.ws253{word-spacing:5.403750pt;}
.ws129{word-spacing:5.477867pt;}
.ws25d{word-spacing:5.499392pt;}
.ws12a{word-spacing:5.533712pt;}
.ws1e6{word-spacing:5.579056pt;}
.ws128{word-spacing:5.579403pt;}
.ws245{word-spacing:5.595034pt;}
.ws136{word-spacing:5.608800pt;}
.ws135{word-spacing:5.617920pt;}
.ws134{word-spacing:5.640720pt;}
.ws1a6{word-spacing:5.791591pt;}
.ws1a5{word-spacing:5.844725pt;}
.ws2a{word-spacing:5.881958pt;}
.ws49{word-spacing:5.950993pt;}
.ws279{word-spacing:5.977600pt;}
.wsfc{word-spacing:6.004127pt;}
.wsfd{word-spacing:6.009347pt;}
.wsbd{word-spacing:6.013603pt;}
.wsfe{word-spacing:6.021028pt;}
.ws278{word-spacing:6.025421pt;}
.wsa3{word-spacing:6.057261pt;}
.ws118{word-spacing:6.163235pt;}
.ws193{word-spacing:6.322930pt;}
.wsc8{word-spacing:6.366307pt;}
.wsbe{word-spacing:6.372186pt;}
.ws16b{word-spacing:6.439520pt;}
.ws17d{word-spacing:6.444864pt;}
.ws20d{word-spacing:6.450208pt;}
.ws119{word-spacing:6.477997pt;}
.ws52{word-spacing:6.482332pt;}
.ws29{word-spacing:6.503629pt;}
.ws165{word-spacing:6.518400pt;}
.ws197{word-spacing:6.535466pt;}
.ws263{word-spacing:6.551450pt;}
.wsc9{word-spacing:6.554416pt;}
.ws166{word-spacing:6.576000pt;}
.ws19c{word-spacing:6.588599pt;}
.ws273{word-spacing:6.599270pt;}
.ws157{word-spacing:6.694867pt;}
.ws88{word-spacing:6.722752pt;}
.ws265{word-spacing:6.742733pt;}
.ws74{word-spacing:6.754816pt;}
.ws8a{word-spacing:6.760160pt;}
.ws1c7{word-spacing:6.849600pt;}
.ws53{word-spacing:6.854269pt;}
.ws1a3{word-spacing:6.907403pt;}
.ws9{word-spacing:6.918010pt;}
.ws228{word-spacing:6.949903pt;}
.ws1c6{word-spacing:6.950400pt;}
.ws227{word-spacing:6.953137pt;}
.ws229{word-spacing:6.960537pt;}
.ws11a{word-spacing:7.051675pt;}
.ws223{word-spacing:7.091488pt;}
.ws70{word-spacing:7.096832pt;}
.ws141{word-spacing:7.158288pt;}
.ws10d{word-spacing:7.173072pt;}
.ws11b{word-spacing:7.219210pt;}
.ws4e{word-spacing:7.226206pt;}
.ws1db{word-spacing:7.332474pt;}
.wsd2{word-spacing:7.442054pt;}
.wsd1{word-spacing:7.500838pt;}
.ws1bf{word-spacing:7.636576pt;}
.wsce{word-spacing:7.835907pt;}
.ws1bd{word-spacing:8.021344pt;}
.ws18b{word-spacing:8.032032pt;}
.ws1be{word-spacing:8.096160pt;}
.ws212{word-spacing:8.336640pt;}
.ws266{word-spacing:8.512102pt;}
.wsef{word-spacing:8.553600pt;}
.wsf0{word-spacing:8.616960pt;}
.ws132{word-spacing:8.668560pt;}
.ws131{word-spacing:8.677680pt;}
.ws211{word-spacing:8.684000pt;}
.ws133{word-spacing:8.700480pt;}
.ws1b5{word-spacing:9.026016pt;}
.ws177{word-spacing:9.341312pt;}
.ws178{word-spacing:9.362688pt;}
.ws113{word-spacing:9.812846pt;}
.ws259{word-spacing:9.851085pt;}
.ws8d{word-spacing:9.977248pt;}
.ws262{word-spacing:9.980152pt;}
.ws1f0{word-spacing:10.325056pt;}
.ws68{word-spacing:10.329312pt;}
.ws81{word-spacing:10.581120pt;}
.ws267{word-spacing:10.711859pt;}
.ws7{word-spacing:10.823338pt;}
.wsb8{word-spacing:11.362243pt;}
.ws25e{word-spacing:13.102899pt;}
.ws269{word-spacing:13.676749pt;}
.ws8{word-spacing:14.319536pt;}
.wsf2{word-spacing:15.665760pt;}
.wsf1{word-spacing:15.681600pt;}
.ws260{word-spacing:16.402534pt;}
.ws261{word-spacing:16.450355pt;}
.ws284{word-spacing:16.545997pt;}
.ws264{word-spacing:19.319603pt;}
.ws25f{word-spacing:19.749990pt;}
.wsa{word-spacing:23.208806pt;}
.ws6{word-spacing:23.858002pt;}
.ws1a{word-spacing:35.093097pt;}
.ws15{word-spacing:35.593054pt;}
.wsf{word-spacing:41.446878pt;}
.ws24e{word-spacing:66.949120pt;}
.wsf6{word-spacing:831.642240pt;}
._27{margin-left:-7.492745pt;}
._a{margin-left:-6.504663pt;}
._1{margin-left:-5.467459pt;}
._0{margin-left:-4.091296pt;}
._b{margin-left:-2.922363pt;}
._2{margin-left:-1.338970pt;}
._1f{width:1.063456pt;}
._5{width:2.045648pt;}
._9{width:3.772304pt;}
._14{width:7.173069pt;}
._13{width:8.559923pt;}
._6{width:10.295486pt;}
._3{width:11.530016pt;}
._d{width:13.341896pt;}
._f{width:14.872256pt;}
._10{width:16.641613pt;}
._19{width:17.597933pt;}
._20{width:18.979413pt;}
._12{width:19.967802pt;}
._18{width:21.572350pt;}
._4{width:23.063232pt;}
._1d{width:24.282177pt;}
._17{width:25.238587pt;}
._7{width:27.188522pt;}
._1c{width:28.277840pt;}
._8{width:29.648896pt;}
._21{width:31.106135pt;}
._24{width:32.092855pt;}
._29{width:33.139814pt;}
._11{width:34.670042pt;}
._1b{width:36.449833pt;}
._1a{width:38.628321pt;}
._28{width:41.130575pt;}
._e{width:50.498554pt;}
._2a{width:54.993920pt;}
._c{width:62.208764pt;}
._15{width:478.783605pt;}
._23{width:2035.751200pt;}
._26{width:2121.777728pt;}
._1e{width:2142.896000pt;}
._25{width:2159.175733pt;}
._16{width:2180.429067pt;}
._22{width:2357.185600pt;}
.fs12{font-size:29.440000pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fsf{font-size:40.432000pt;}
.fs14{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:42.560000pt;}
.fs11{font-size:45.600000pt;}
.fsc{font-size:46.816000pt;}
.fs7{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fsb{font-size:49.829333pt;}
.fs10{font-size:50.768000pt;}
.fse{font-size:52.800000pt;}
.fs2{font-size:53.133867pt;}
.fs9{font-size:53.440000pt;}
.fs13{font-size:55.365867pt;}
.fsd{font-size:58.784000pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:120.948480pt;}
.y176{bottom:-626.038539pt;}
.y175{bottom:-608.919035pt;}
.y174{bottom:-591.879691pt;}
.y173{bottom:-574.760187pt;}
.y172{bottom:-557.640683pt;}
.y171{bottom:-540.601339pt;}
.y170{bottom:-523.481835pt;}
.y16f{bottom:-506.362331pt;}
.y16e{bottom:-489.322987pt;}
.y16d{bottom:-472.203483pt;}
.y16c{bottom:-455.164139pt;}
.y16b{bottom:-438.044635pt;}
.y16a{bottom:-420.925131pt;}
.y169{bottom:-403.885787pt;}
.y168{bottom:-386.766283pt;}
.y167{bottom:-369.726939pt;}
.y166{bottom:-352.607435pt;}
.y165{bottom:-335.487931pt;}
.y13f{bottom:-325.380155pt;}
.y164{bottom:-318.448587pt;}
.y13e{bottom:-309.116627pt;}
.y163{bottom:-301.329083pt;}
.y13d{bottom:-292.929250pt;}
.y162{bottom:-284.289739pt;}
.y13c{bottom:-276.665721pt;}
.y161{bottom:-267.170235pt;}
.y13b{bottom:-260.402192pt;}
.y160{bottom:-250.050731pt;}
.yf6{bottom:-246.643320pt;}
.y13a{bottom:-240.413561pt;}
.y15f{bottom:-233.011387pt;}
.yf5{bottom:-229.658880pt;}
.yf4{bottom:-212.674440pt;}
.y15e{bottom:-211.891899pt;}
.y139{bottom:-208.950093pt;}
.yf3{bottom:-195.778440pt;}
.y138{bottom:-192.686565pt;}
.y1ef{bottom:-190.671600pt;}
.y249{bottom:-180.473952pt;}
.yf2{bottom:-178.882440pt;}
.y15d{bottom:-178.772459pt;}
.y137{bottom:-176.499188pt;}
.y248{bottom:-163.434608pt;}
.yf1{bottom:-161.986440pt;}
.y15c{bottom:-161.733115pt;}
.y136{bottom:-160.235659pt;}
.y1ee{bottom:-155.392800pt;}
.y247{bottom:-146.315104pt;}
.yc9{bottom:-145.398133pt;}
.yf0{bottom:-145.002000pt;}
.y15b{bottom:-144.613611pt;}
.y135{bottom:-144.048282pt;}
.y1ed{bottom:-139.952400pt;}
.yc8{bottom:-129.957733pt;}
.y246{bottom:-129.195600pt;}
.yef{bottom:-128.106000pt;}
.y134{bottom:-127.784753pt;}
.y15a{bottom:-127.574267pt;}
.y1ec{bottom:-124.592400pt;}
.yc7{bottom:-114.597733pt;}
.yee{bottom:-111.210000pt;}
.y1eb{bottom:-109.152000pt;}
.yc6{bottom:-99.237733pt;}
.y133{bottom:-96.701387pt;}
.y245{bottom:-96.555600pt;}
.y159{bottom:-94.854933pt;}
.yed{bottom:-94.314000pt;}
.y1ea{bottom:-93.792000pt;}
.yc5{bottom:-83.797333pt;}
.y132{bottom:-82.033007pt;}
.y244{bottom:-81.036000pt;}
.y158{bottom:-79.414533pt;}
.y1e9{bottom:-78.432000pt;}
.yec{bottom:-77.329560pt;}
.yc4{bottom:-68.437333pt;}
.y131{bottom:-67.441007pt;}
.y243{bottom:-65.676000pt;}
.y157{bottom:-63.974133pt;}
.y1e8{bottom:-63.072000pt;}
.yeb{bottom:-60.433560pt;}
.yc3{bottom:-53.077333pt;}
.y130{bottom:-52.772627pt;}
.y242{bottom:-50.316000pt;}
.y156{bottom:-48.614133pt;}
.y1e7{bottom:-47.631600pt;}
.yea{bottom:-43.537560pt;}
.y12f{bottom:-38.180627pt;}
.yc2{bottom:-37.717333pt;}
.y241{bottom:-34.956000pt;}
.y155{bottom:-33.254133pt;}
.y1e6{bottom:-32.271600pt;}
.ye9{bottom:-26.641560pt;}
.y12e{bottom:-23.588627pt;}
.yc1{bottom:-22.276933pt;}
.y240{bottom:-19.515600pt;}
.y154{bottom:-17.894133pt;}
.y1e5{bottom:-16.911600pt;}
.ye8{bottom:-4.721605pt;}
.y12d{bottom:-4.659274pt;}
.yc0{bottom:-2.347685pt;}
.y0{bottom:0.000000pt;}
.y23f{bottom:0.332448pt;}
.y153{bottom:2.025733pt;}
.y1e4{bottom:3.094960pt;}
.y20{bottom:12.329438pt;}
.y4c{bottom:28.346667pt;}
.y197{bottom:81.480000pt;}
.y83{bottom:91.696000pt;}
.y201{bottom:91.714667pt;}
.y1e{bottom:93.018667pt;}
.y27c{bottom:94.086667pt;}
.y21d{bottom:94.884000pt;}
.yd2{bottom:95.086667pt;}
.y1bc{bottom:95.681333pt;}
.y25d{bottom:97.801333pt;}
.y196{bottom:98.217333pt;}
.y2ac{bottom:100.125333pt;}
.y107{bottom:103.974667pt;}
.y14f{bottom:107.892000pt;}
.y31b{bottom:108.233333pt;}
.y82{bottom:108.433333pt;}
.y200{bottom:108.452000pt;}
.y1d{bottom:108.920000pt;}
.y27b{bottom:110.824000pt;}
.y21c{bottom:111.621333pt;}
.yd1{bottom:112.181333pt;}
.y1bb{bottom:112.418667pt;}
.y25c{bottom:114.538667pt;}
.y195{bottom:114.954667pt;}
.y2ab{bottom:115.746667pt;}
.y2e5{bottom:117.041333pt;}
.y106{bottom:120.712000pt;}
.y31a{bottom:123.576000pt;}
.y14e{bottom:124.629333pt;}
.y1c{bottom:124.820000pt;}
.y81{bottom:125.170667pt;}
.y1ff{bottom:125.189333pt;}
.y27a{bottom:127.561333pt;}
.y21b{bottom:128.358667pt;}
.y1ba{bottom:129.156000pt;}
.yd0{bottom:129.277333pt;}
.y25b{bottom:131.276000pt;}
.y2aa{bottom:131.368000pt;}
.y194{bottom:131.692000pt;}
.y2e4{bottom:132.384000pt;}
.y105{bottom:137.449333pt;}
.y319{bottom:138.918667pt;}
.y1b{bottom:140.720000pt;}
.y14d{bottom:141.366667pt;}
.y80{bottom:141.908000pt;}
.y1fe{bottom:141.926667pt;}
.y21a{bottom:145.096000pt;}
.y1b9{bottom:145.893333pt;}
.ycf{bottom:146.373333pt;}
.y2a9{bottom:146.989333pt;}
.y2e3{bottom:147.726667pt;}
.y25a{bottom:148.013333pt;}
.y279{bottom:148.284000pt;}
.y193{bottom:148.429333pt;}
.y104{bottom:154.186667pt;}
.y318{bottom:154.261333pt;}
.y1a{bottom:156.621333pt;}
.y7f{bottom:158.645333pt;}
.y1fd{bottom:158.664000pt;}
.y219{bottom:161.833333pt;}
.y14c{bottom:162.088000pt;}
.y1b8{bottom:162.630667pt;}
.y2e2{bottom:163.068000pt;}
.yce{bottom:163.469333pt;}
.y259{bottom:164.750667pt;}
.y192{bottom:165.166667pt;}
.y317{bottom:169.604000pt;}
.y2a8{bottom:170.581333pt;}
.y19{bottom:172.521333pt;}
.y7e{bottom:175.382667pt;}
.y1fc{bottom:175.401333pt;}
.y278{bottom:178.172000pt;}
.y2e1{bottom:178.410667pt;}
.y4b{bottom:178.518667pt;}
.y218{bottom:178.570667pt;}
.y1b7{bottom:179.368000pt;}
.ycd{bottom:180.565333pt;}
.y258{bottom:181.488000pt;}
.y191{bottom:181.904000pt;}
.y103{bottom:184.022667pt;}
.y316{bottom:184.946667pt;}
.y2a7{bottom:186.202667pt;}
.y18{bottom:188.421333pt;}
.y14b{bottom:191.976000pt;}
.y7d{bottom:192.120000pt;}
.y1fb{bottom:192.138667pt;}
.y2e0{bottom:193.753333pt;}
.y277{bottom:194.909333pt;}
.y217{bottom:195.308000pt;}
.y1b6{bottom:196.105333pt;}
.ycc{bottom:197.661333pt;}
.y257{bottom:198.225333pt;}
.y190{bottom:198.641333pt;}
.y315{bottom:200.289333pt;}
.y102{bottom:201.118667pt;}
.y2a6{bottom:201.824000pt;}
.y17{bottom:204.322667pt;}
.y14a{bottom:208.713333pt;}
.y7c{bottom:208.857333pt;}
.y2df{bottom:209.096000pt;}
.y276{bottom:211.646667pt;}
.y4a{bottom:211.754667pt;}
.y216{bottom:212.045333pt;}
.y1b5{bottom:212.841333pt;}
.y1fa{bottom:212.861333pt;}
.ycb{bottom:214.757333pt;}
.y256{bottom:214.962667pt;}
.y18f{bottom:215.378667pt;}
.y314{bottom:215.632000pt;}
.y101{bottom:218.213333pt;}
.y2de{bottom:224.438667pt;}
.y2a5{bottom:225.416000pt;}
.y149{bottom:225.450667pt;}
.y7b{bottom:225.594667pt;}
.y275{bottom:228.384000pt;}
.y215{bottom:228.782667pt;}
.y49{bottom:229.049333pt;}
.y1b4{bottom:229.578667pt;}
.y313{bottom:230.974667pt;}
.y23e{bottom:231.052968pt;}
.y255{bottom:231.700000pt;}
.yca{bottom:231.853333pt;}
.y18e{bottom:232.116000pt;}
.y100{bottom:235.309333pt;}
.y12c{bottom:238.693327pt;}
.y2dd{bottom:239.781333pt;}
.y1f9{bottom:239.908000pt;}
.y2a4{bottom:241.037333pt;}
.y148{bottom:242.188000pt;}
.y7a{bottom:242.332000pt;}
.y274{bottom:245.121333pt;}
.y214{bottom:245.520000pt;}
.y1b3{bottom:246.316000pt;}
.y48{bottom:246.345333pt;}
.y23d{bottom:248.172472pt;}
.y18d{bottom:248.853333pt;}
.ya0{bottom:251.790667pt;}
.yff{bottom:252.405333pt;}
.y254{bottom:252.422667pt;}
.y12b{bottom:254.956855pt;}
.y2dc{bottom:255.124000pt;}
.y1f8{bottom:257.004000pt;}
.ybf{bottom:257.412131pt;}
.y147{bottom:258.925333pt;}
.y79{bottom:259.069333pt;}
.y312{bottom:261.658667pt;}
.y273{bottom:261.858667pt;}
.y1b2{bottom:263.053333pt;}
.y47{bottom:263.640000pt;}
.y2a3{bottom:264.628000pt;}
.y23c{bottom:265.291976pt;}
.y18c{bottom:265.590667pt;}
.y213{bottom:266.242667pt;}
.y16{bottom:266.804000pt;}
.yfe{bottom:269.501333pt;}
.y2db{bottom:270.466667pt;}
.y12a{bottom:271.144232pt;}
.y1f7{bottom:274.100000pt;}
.ybe{bottom:274.452811pt;}
.y146{bottom:275.662667pt;}
.y78{bottom:275.806667pt;}
.y311{bottom:277.001333pt;}
.y272{bottom:278.596000pt;}
.y1b1{bottom:279.790667pt;}
.y2a2{bottom:280.249333pt;}
.y46{bottom:280.934667pt;}
.y253{bottom:282.310667pt;}
.y18b{bottom:282.328000pt;}
.y23b{bottom:282.331320pt;}
.y15{bottom:282.705333pt;}
.y2d9{bottom:285.808000pt;}
.y2da{bottom:285.809333pt;}
.yfd{bottom:286.597333pt;}
.y129{bottom:287.407761pt;}
.y1f6{bottom:291.194667pt;}
.ybd{bottom:291.572315pt;}
.y310{bottom:292.344000pt;}
.y77{bottom:292.544000pt;}
.y271{bottom:295.333333pt;}
.y2a1{bottom:295.872000pt;}
.y212{bottom:296.129333pt;}
.y1b0{bottom:296.528000pt;}
.y45{bottom:298.230667pt;}
.y14{bottom:298.605333pt;}
.y252{bottom:299.048000pt;}
.y18a{bottom:299.065333pt;}
.y23a{bottom:299.450824pt;}
.y2d8{bottom:301.150667pt;}
.y128{bottom:303.671290pt;}
.yfc{bottom:303.693333pt;}
.y145{bottom:305.498667pt;}
.y30f{bottom:307.686667pt;}
.y1f5{bottom:308.290667pt;}
.ybc{bottom:308.691819pt;}
.y76{bottom:309.280000pt;}
.y2a0{bottom:311.493333pt;}
.y270{bottom:312.070667pt;}
.y211{bottom:312.866667pt;}
.y1af{bottom:313.265333pt;}
.y13{bottom:314.505333pt;}
.y1e3{bottom:315.414352pt;}
.y44{bottom:315.525333pt;}
.y251{bottom:315.784000pt;}
.y189{bottom:315.802667pt;}
.y239{bottom:316.491504pt;}
.y2d7{bottom:316.493333pt;}
.y127{bottom:319.859936pt;}
.yfb{bottom:320.789333pt;}
.y152{bottom:322.025853pt;}
.y144{bottom:322.594667pt;}
.y30e{bottom:323.029333pt;}
.y1f4{bottom:325.386667pt;}
.ybb{bottom:325.731163pt;}
.y75{bottom:326.017333pt;}
.y29f{bottom:327.114667pt;}
.y26f{bottom:328.808000pt;}
.y210{bottom:329.604000pt;}
.y1ae{bottom:330.002667pt;}
.y151{bottom:330.585733pt;}
.y2d6{bottom:331.836000pt;}
.y1e2{bottom:332.453696pt;}
.y250{bottom:332.521333pt;}
.y188{bottom:332.540000pt;}
.y43{bottom:332.821333pt;}
.y238{bottom:333.611008pt;}
.y126{bottom:336.123465pt;}
.yfa{bottom:337.885333pt;}
.y30d{bottom:338.372000pt;}
.y12{bottom:338.376000pt;}
.y143{bottom:339.690667pt;}
.y1f3{bottom:342.482667pt;}
.y29e{bottom:342.736000pt;}
.y74{bottom:342.754667pt;}
.yba{bottom:342.850667pt;}
.y20f{bottom:346.341333pt;}
.y1ad{bottom:346.740000pt;}
.y2d5{bottom:347.178667pt;}
.y187{bottom:349.277333pt;}
.y26e{bottom:349.529333pt;}
.y1e1{bottom:349.573200pt;}
.y42{bottom:350.116000pt;}
.y237{bottom:350.730512pt;}
.y125{bottom:352.312111pt;}
.y30c{bottom:353.714667pt;}
.y11{bottom:354.277333pt;}
.yf9{bottom:354.981333pt;}
.y142{bottom:356.786667pt;}
.y29d{bottom:358.357333pt;}
.y73{bottom:359.492000pt;}
.y1f2{bottom:359.578667pt;}
.yb9{bottom:359.891347pt;}
.y24f{bottom:362.358667pt;}
.y2d4{bottom:362.521333pt;}
.y20e{bottom:363.078667pt;}
.y1ac{bottom:363.477333pt;}
.y186{bottom:366.014667pt;}
.y1e0{bottom:366.613880pt;}
.y41{bottom:367.410667pt;}
.y236{bottom:367.769856pt;}
.y124{bottom:368.575639pt;}
.y30b{bottom:369.056000pt;}
.y10{bottom:370.177333pt;}
.yf8{bottom:372.077333pt;}
.y141{bottom:373.882667pt;}
.y72{bottom:376.229333pt;}
.y1f1{bottom:376.674667pt;}
.yb8{bottom:377.010851pt;}
.y2d3{bottom:377.864000pt;}
.y26d{bottom:379.417333pt;}
.y24e{bottom:379.453333pt;}
.y20d{bottom:379.816000pt;}
.y1ab{bottom:380.214667pt;}
.y29c{bottom:381.949333pt;}
.y185{bottom:382.752000pt;}
.y1df{bottom:383.733384pt;}
.y30a{bottom:384.398667pt;}
.y40{bottom:384.706667pt;}
.y123{bottom:384.839168pt;}
.y235{bottom:384.889360pt;}
.yf7{bottom:389.172000pt;}
.y140{bottom:390.978667pt;}
.y71{bottom:392.966667pt;}
.y2d2{bottom:393.206667pt;}
.y1f0{bottom:393.770667pt;}
.yb7{bottom:394.130355pt;}
.yf{bottom:395.376000pt;}
.y26c{bottom:396.154667pt;}
.ye7{bottom:396.294026pt;}
.y24d{bottom:396.549333pt;}
.y20c{bottom:396.553333pt;}
.y1aa{bottom:396.952000pt;}
.y29b{bottom:397.570667pt;}
.y184{bottom:399.489333pt;}
.y309{bottom:399.741333pt;}
.y1de{bottom:400.852888pt;}
.y122{bottom:401.026545pt;}
.y234{bottom:401.930040pt;}
.y3f{bottom:402.001333pt;}
.y2d1{bottom:408.549333pt;}
.y70{bottom:409.704000pt;}
.y119{bottom:410.916000pt;}
.yb6{bottom:411.169699pt;}
.ye{bottom:411.276000pt;}
.yd3{bottom:411.766667pt;}
.y26b{bottom:412.892000pt;}
.y29a{bottom:413.192000pt;}
.y20b{bottom:413.290667pt;}
.y24c{bottom:413.645333pt;}
.y1a9{bottom:413.689333pt;}
.y1cc{bottom:413.708000pt;}
.y308{bottom:415.084000pt;}
.ye6{bottom:415.125480pt;}
.y183{bottom:416.226667pt;}
.y121{bottom:417.290074pt;}
.y1dd{bottom:417.892232pt;}
.y233{bottom:419.049544pt;}
.y3e{bottom:419.296000pt;}
.y2d0{bottom:423.890667pt;}
.y6f{bottom:426.441333pt;}
.y299{bottom:428.813333pt;}
.y26a{bottom:429.629333pt;}
.y20a{bottom:430.028000pt;}
.y1a8{bottom:430.426667pt;}
.y24b{bottom:430.741333pt;}
.yb5{bottom:432.210363pt;}
.y182{bottom:432.964000pt;}
.y120{bottom:433.477451pt;}
.ye5{bottom:433.956934pt;}
.y1dc{bottom:435.011736pt;}
.yd{bottom:435.146667pt;}
.y3d{bottom:436.592000pt;}
.y2cf{bottom:439.233333pt;}
.y232{bottom:440.090208pt;}
.y6e{bottom:443.178667pt;}
.y298{bottom:444.434667pt;}
.y307{bottom:445.769333pt;}
.y269{bottom:446.366667pt;}
.y209{bottom:446.765333pt;}
.y1a7{bottom:447.164000pt;}
.y24a{bottom:447.837333pt;}
.y11f{bottom:449.740979pt;}
.yc{bottom:451.048000pt;}
.y1db{bottom:452.131240pt;}
.ye4{bottom:452.700213pt;}
.yb4{bottom:453.329851pt;}
.y181{bottom:453.685333pt;}
.y3c{bottom:453.886667pt;}
.y2ce{bottom:454.576000pt;}
.y6d{bottom:459.916000pt;}
.y297{bottom:460.056000pt;}
.y306{bottom:461.112000pt;}
.y268{bottom:463.104000pt;}
.y208{bottom:463.502667pt;}
.y1a6{bottom:463.901333pt;}
.y11e{bottom:466.004508pt;}
.yb{bottom:466.948000pt;}
.y220{bottom:467.774667pt;}
.y1da{bottom:469.171920pt;}
.y2cd{bottom:469.918667pt;}
.y3b{bottom:471.182667pt;}
.ye3{bottom:471.531667pt;}
.y231{bottom:473.209648pt;}
.y296{bottom:475.677333pt;}
.y305{bottom:476.454667pt;}
.y6c{bottom:476.653333pt;}
.y267{bottom:479.841333pt;}
.y207{bottom:480.240000pt;}
.y1a5{bottom:480.638667pt;}
.y11d{bottom:482.191885pt;}
.ya{bottom:482.848000pt;}
.y180{bottom:483.573333pt;}
.y2cc{bottom:485.261333pt;}
.y1d9{bottom:486.291424pt;}
.yb3{bottom:486.449291pt;}
.y3a{bottom:488.477333pt;}
.y230{bottom:490.329152pt;}
.ye2{bottom:490.363122pt;}
.y295{bottom:491.298667pt;}
.y304{bottom:491.797333pt;}
.y6b{bottom:493.390667pt;}
.y9f{bottom:495.781333pt;}
.y266{bottom:496.578667pt;}
.y1a4{bottom:497.376000pt;}
.y9{bottom:498.749333pt;}
.y17f{bottom:500.310667pt;}
.y2cb{bottom:500.604000pt;}
.y206{bottom:500.962667pt;}
.y11c{bottom:502.179247pt;}
.y1d8{bottom:503.332104pt;}
.yb2{bottom:503.568795pt;}
.y39{bottom:505.772000pt;}
.y294{bottom:506.920000pt;}
.y303{bottom:507.138667pt;}
.y22f{bottom:507.448656pt;}
.ye1{bottom:509.107870pt;}
.y6a{bottom:510.128000pt;}
.y9e{bottom:512.518667pt;}
.y265{bottom:513.316000pt;}
.y1a3{bottom:514.113333pt;}
.y8{bottom:514.649333pt;}
.y2ca{bottom:515.946667pt;}
.y17e{bottom:517.048000pt;}
.y1d7{bottom:520.451608pt;}
.yb1{bottom:520.608139pt;}
.y302{bottom:522.481333pt;}
.y293{bottom:522.541333pt;}
.y38{bottom:523.068000pt;}
.y22e{bottom:524.489336pt;}
.y69{bottom:526.865333pt;}
.ye0{bottom:527.939324pt;}
.y9d{bottom:529.256000pt;}
.y264{bottom:530.053333pt;}
.y7{bottom:530.549333pt;}
.y1a2{bottom:530.850667pt;}
.y2c9{bottom:531.289333pt;}
.y17d{bottom:533.785333pt;}
.y1d6{bottom:537.571112pt;}
.yb0{bottom:537.727643pt;}
.y301{bottom:537.824000pt;}
.y292{bottom:538.164000pt;}
.y22d{bottom:541.608840pt;}
.y68{bottom:543.602667pt;}
.y9c{bottom:545.993333pt;}
.y6{bottom:546.450667pt;}
.y2c7{bottom:546.630667pt;}
.y2c8{bottom:546.632000pt;}
.ydf{bottom:546.684072pt;}
.y263{bottom:546.790667pt;}
.y11b{bottom:547.171361pt;}
.y1a1{bottom:547.588000pt;}
.y300{bottom:553.166667pt;}
.y291{bottom:553.785333pt;}
.yaf{bottom:554.847147pt;}
.y11a{bottom:555.303247pt;}
.y37{bottom:557.365333pt;}
.y1d5{bottom:558.610440pt;}
.y22c{bottom:558.649520pt;}
.y67{bottom:560.340000pt;}
.y2c6{bottom:561.973333pt;}
.y17c{bottom:562.052000pt;}
.y5{bottom:562.350667pt;}
.y9b{bottom:562.730667pt;}
.y262{bottom:563.528000pt;}
.y1a0{bottom:564.325333pt;}
.yde{bottom:565.515526pt;}
.y2ff{bottom:568.509333pt;}
.y290{bottom:569.406667pt;}
.y36{bottom:571.712000pt;}
.yae{bottom:571.887827pt;}
.y22b{bottom:575.769024pt;}
.y66{bottom:577.077333pt;}
.y2c5{bottom:577.316000pt;}
.y4{bottom:578.250667pt;}
.y17b{bottom:579.148000pt;}
.y9a{bottom:579.468000pt;}
.y1d4{bottom:579.651104pt;}
.y19f{bottom:581.062667pt;}
.y2fe{bottom:583.852000pt;}
.y261{bottom:584.250667pt;}
.ydd{bottom:584.346981pt;}
.y28f{bottom:585.028000pt;}
.y35{bottom:586.058667pt;}
.yad{bottom:589.007331pt;}
.y2c4{bottom:592.658667pt;}
.y22a{bottom:592.888528pt;}
.y65{bottom:593.814667pt;}
.y3{bottom:594.152000pt;}
.y99{bottom:596.205333pt;}
.y17a{bottom:596.242667pt;}
.y19e{bottom:597.800000pt;}
.y2fd{bottom:599.194667pt;}
.y28e{bottom:600.649333pt;}
.y205{bottom:602.621333pt;}
.ydc{bottom:603.090259pt;}
.y34{bottom:604.262667pt;}
.yac{bottom:606.048011pt;}
.y2c3{bottom:608.001333pt;}
.y229{bottom:609.927872pt;}
.y2{bottom:610.052000pt;}
.y64{bottom:610.552000pt;}
.y1d3{bottom:612.770544pt;}
.y98{bottom:612.942667pt;}
.y179{bottom:613.338667pt;}
.y260{bottom:614.138667pt;}
.y19d{bottom:614.537333pt;}
.y33{bottom:614.750667pt;}
.y28d{bottom:616.270667pt;}
.ydb{bottom:621.921714pt;}
.yab{bottom:623.167515pt;}
.y2c2{bottom:623.344000pt;}
.y1{bottom:625.952000pt;}
.y228{bottom:627.047376pt;}
.y63{bottom:627.289333pt;}
.y97{bottom:629.680000pt;}
.y2fc{bottom:629.878667pt;}
.y1d2{bottom:629.890048pt;}
.y178{bottom:630.434667pt;}
.y25f{bottom:630.876000pt;}
.y19c{bottom:631.274667pt;}
.y28c{bottom:631.892000pt;}
.y32{bottom:632.954667pt;}
.y2c1{bottom:638.686667pt;}
.yaa{bottom:640.287019pt;}
.yda{bottom:640.664992pt;}
.y31{bottom:643.444000pt;}
.y62{bottom:644.026667pt;}
.y227{bottom:644.086720pt;}
.y2fb{bottom:645.221333pt;}
.y96{bottom:646.417333pt;}
.y1d1{bottom:647.009552pt;}
.y28b{bottom:647.513333pt;}
.y177{bottom:647.530667pt;}
.y118{bottom:647.613333pt;}
.y19b{bottom:648.012000pt;}
.y2c0{bottom:654.029333pt;}
.ya9{bottom:657.326363pt;}
.yd9{bottom:659.496446pt;}
.y2fa{bottom:660.564000pt;}
.y61{bottom:660.764000pt;}
.y226{bottom:661.206224pt;}
.y30{bottom:661.646667pt;}
.y1d0{bottom:664.048896pt;}
.y117{bottom:664.350667pt;}
.y19a{bottom:664.749333pt;}
.y95{bottom:667.140000pt;}
.y2bf{bottom:669.372000pt;}
.y150{bottom:670.125333pt;}
.y28a{bottom:671.105333pt;}
.y2f{bottom:672.136000pt;}
.ya8{bottom:674.445867pt;}
.y2f9{bottom:675.906667pt;}
.y60{bottom:677.501333pt;}
.y225{bottom:678.325728pt;}
.yd8{bottom:678.327901pt;}
.y116{bottom:681.088000pt;}
.y1cf{bottom:681.168400pt;}
.y199{bottom:681.485333pt;}
.y2be{bottom:684.713333pt;}
.y94{bottom:685.072000pt;}
.y204{bottom:686.308000pt;}
.y289{bottom:686.726667pt;}
.y2e{bottom:690.340000pt;}
.y2f8{bottom:691.249333pt;}
.ya7{bottom:691.485211pt;}
.y5f{bottom:694.238667pt;}
.y224{bottom:695.365072pt;}
.yd7{bottom:697.071179pt;}
.y115{bottom:697.825333pt;}
.y198{bottom:698.222667pt;}
.y2bd{bottom:700.056000pt;}
.y2d{bottom:700.828000pt;}
.y288{bottom:702.348000pt;}
.y2f7{bottom:706.592000pt;}
.ya6{bottom:708.604715pt;}
.y5e{bottom:710.976000pt;}
.y114{bottom:714.562667pt;}
.y93{bottom:714.960000pt;}
.y2c{bottom:715.174667pt;}
.y2bc{bottom:715.398667pt;}
.y223{bottom:716.404400pt;}
.y287{bottom:717.969333pt;}
.y21f{bottom:719.384000pt;}
.yd6{bottom:720.214440pt;}
.y2f6{bottom:721.934667pt;}
.ya5{bottom:725.724219pt;}
.y1cb{bottom:726.517333pt;}
.y5d{bottom:727.713333pt;}
.y1ce{bottom:728.448520pt;}
.y2b{bottom:729.521333pt;}
.y2bb{bottom:730.741333pt;}
.y113{bottom:731.300000pt;}
.y92{bottom:731.697333pt;}
.y286{bottom:733.590667pt;}
.y1cd{bottom:737.008400pt;}
.y2f5{bottom:737.277333pt;}
.ya4{bottom:742.763563pt;}
.y1ca{bottom:743.254667pt;}
.y2a{bottom:743.866667pt;}
.y5c{bottom:744.450667pt;}
.y2ba{bottom:746.084000pt;}
.y112{bottom:748.036000pt;}
.y91{bottom:748.434667pt;}
.y285{bottom:749.212000pt;}
.y2f4{bottom:752.620000pt;}
.ya3{bottom:759.883067pt;}
.y1c9{bottom:759.992000pt;}
.y5b{bottom:761.186667pt;}
.y2b9{bottom:761.426667pt;}
.y29{bottom:762.070667pt;}
.y222{bottom:763.764520pt;}
.y111{bottom:764.773333pt;}
.y284{bottom:764.833333pt;}
.y90{bottom:765.172000pt;}
.y2f3{bottom:767.961333pt;}
.yd5{bottom:772.310572pt;}
.y221{bottom:772.324400pt;}
.y1c8{bottom:776.729333pt;}
.y2b8{bottom:776.769333pt;}
.y5a{bottom:777.924000pt;}
.y283{bottom:780.454667pt;}
.y110{bottom:781.510667pt;}
.yd4{bottom:781.726440pt;}
.y8f{bottom:781.909333pt;}
.y2f2{bottom:783.304000pt;}
.y25e{bottom:785.496000pt;}
.y2b7{bottom:792.112000pt;}
.y1c7{bottom:793.466667pt;}
.y59{bottom:794.661333pt;}
.y282{bottom:796.077333pt;}
.y10f{bottom:798.248000pt;}
.y8e{bottom:798.646667pt;}
.y28{bottom:801.784000pt;}
.ya2{bottom:807.163187pt;}
.y2b6{bottom:807.454667pt;}
.y1c6{bottom:810.204000pt;}
.y58{bottom:811.398667pt;}
.y2f1{bottom:813.989333pt;}
.y10e{bottom:814.985333pt;}
.y8d{bottom:815.384000pt;}
.ya1{bottom:815.723067pt;}
.y27{bottom:818.521333pt;}
.y281{bottom:819.668000pt;}
.y2b5{bottom:822.796000pt;}
.y1c5{bottom:826.941333pt;}
.y57{bottom:828.136000pt;}
.y2f0{bottom:829.332000pt;}
.y10d{bottom:831.722667pt;}
.y8c{bottom:832.121333pt;}
.y26{bottom:835.258667pt;}
.y280{bottom:835.708000pt;}
.y2b4{bottom:838.138667pt;}
.y1c4{bottom:843.678667pt;}
.y2ef{bottom:844.674667pt;}
.y56{bottom:844.873333pt;}
.y10c{bottom:848.460000pt;}
.y8b{bottom:848.858667pt;}
.y27f{bottom:851.748000pt;}
.y2b3{bottom:853.481333pt;}
.y2ee{bottom:860.017333pt;}
.y1c3{bottom:860.416000pt;}
.y55{bottom:861.610667pt;}
.y10b{bottom:865.197333pt;}
.y8a{bottom:865.596000pt;}
.y27e{bottom:867.788000pt;}
.y2b2{bottom:868.824000pt;}
.y25{bottom:871.108000pt;}
.y2ed{bottom:875.360000pt;}
.y1c2{bottom:877.153333pt;}
.y54{bottom:878.348000pt;}
.y10a{bottom:881.934667pt;}
.y89{bottom:882.333333pt;}
.y27d{bottom:883.828000pt;}
.y2b1{bottom:884.166667pt;}
.y2eb{bottom:890.701333pt;}
.y2ec{bottom:890.702667pt;}
.y1c1{bottom:893.890667pt;}
.y53{bottom:895.085333pt;}
.y24{bottom:896.213333pt;}
.y203{bottom:896.644000pt;}
.y109{bottom:898.672000pt;}
.y88{bottom:899.070667pt;}
.y2b0{bottom:899.509333pt;}
.y21e{bottom:902.657333pt;}
.y2ea{bottom:906.044000pt;}
.y1c0{bottom:910.628000pt;}
.y52{bottom:911.822667pt;}
.y87{bottom:915.808000pt;}
.y2af{bottom:918.836000pt;}
.y108{bottom:919.394667pt;}
.y202{bottom:920.629333pt;}
.y23{bottom:921.320000pt;}
.y2e9{bottom:921.386667pt;}
.y1bf{bottom:927.364000pt;}
.y51{bottom:928.560000pt;}
.y86{bottom:932.545333pt;}
.y2e8{bottom:936.729333pt;}
.y1be{bottom:944.101333pt;}
.y50{bottom:945.297333pt;}
.y22{bottom:946.425333pt;}
.y85{bottom:949.282667pt;}
.y2ae{bottom:951.514667pt;}
.y2e7{bottom:952.072000pt;}
.y4f{bottom:962.034667pt;}
.y1bd{bottom:964.824000pt;}
.y84{bottom:966.020000pt;}
.y2ad{bottom:967.136000pt;}
.y2e6{bottom:967.414667pt;}
.y21{bottom:971.530667pt;}
.y4e{bottom:982.757333pt;}
.y1f{bottom:1010.186667pt;}
.y4d{bottom:1038.548000pt;}
.h2f{height:28.023859pt;}
.h9{height:28.947524pt;}
.h1a{height:33.186336pt;}
.he{height:33.378918pt;}
.h2{height:33.771789pt;}
.h3{height:33.957757pt;}
.hc{height:34.430976pt;}
.h25{height:36.539078pt;}
.h30{height:36.666735pt;}
.h2d{height:36.873667pt;}
.h11{height:37.087439pt;}
.h32{height:37.193707pt;}
.h24{height:37.391703pt;}
.h23{height:37.608867pt;}
.hf{height:38.256384pt;}
.h17{height:38.462187pt;}
.hb{height:38.596538pt;}
.ha{height:38.809074pt;}
.h6{height:38.947124pt;}
.h14{height:39.359687pt;}
.h13{height:39.588281pt;}
.h28{height:42.171094pt;}
.h1e{height:42.308406pt;}
.h27{height:42.416016pt;}
.h1d{height:43.295656pt;}
.hd{height:43.421286pt;}
.h1c{height:43.547109pt;}
.h33{height:43.660390pt;}
.h19{height:44.390625pt;}
.h2a{height:44.393292pt;}
.h18{height:44.648438pt;}
.h4{height:45.271688pt;}
.h26{height:46.950484pt;}
.h10{height:48.245551pt;}
.h2c{height:48.511220pt;}
.h21{height:48.829687pt;}
.h20{height:49.113281pt;}
.h8{height:49.201961pt;}
.h15{height:49.421563pt;}
.h16{height:49.708594pt;}
.h2b{height:51.126455pt;}
.h1f{height:54.363719pt;}
.h7{height:68.861952pt;}
.h5{height:82.003069pt;}
.h31{height:213.021333pt;}
.h22{height:215.684200pt;}
.h12{height:230.948000pt;}
.h29{height:283.093333pt;}
.h2e{height:297.109333pt;}
.h1b{height:378.617067pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:214.529007pt;}
.w7{width:484.342667pt;}
.w3{width:493.802667pt;}
.w5{width:508.588707pt;}
.w6{width:525.265333pt;}
.w8{width:534.795333pt;}
.w4{width:585.808813pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x3c{left:-172.312000pt;}
.x67{left:-171.188000pt;}
.x51{left:-89.643987pt;}
.xa5{left:-84.858000pt;}
.x5a{left:-79.549960pt;}
.x0{left:0.000000pt;}
.x3d{left:1.528000pt;}
.x69{left:2.652000pt;}
.x3e{left:29.848528pt;}
.x6a{left:30.972000pt;}
.x1{left:47.621333pt;}
.x2{left:51.606197pt;}
.xb7{left:76.309333pt;}
.x5b{left:85.598040pt;}
.xa6{left:88.982000pt;}
.x52{left:101.580013pt;}
.x50{left:103.755853pt;}
.x5c{left:112.502542pt;}
.xa7{left:117.302528pt;}
.x53{left:132.732594pt;}
.x66{left:134.029333pt;}
.xc3{left:145.050667pt;}
.xbc{left:152.797333pt;}
.xc0{left:166.509333pt;}
.xc6{left:173.180000pt;}
.xbe{left:197.198667pt;}
.x3a{left:219.865333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x5f{left:225.524000pt;}
.x60{left:233.498667pt;}
.x4{left:239.924000pt;}
.x9f{left:247.414667pt;}
.xd{left:250.204000pt;}
.x77{left:252.576000pt;}
.x87{left:254.109333pt;}
.x2b{left:255.014667pt;}
.x79{left:257.981333pt;}
.x78{left:265.858667pt;}
.x88{left:267.392000pt;}
.x2c{left:268.298667pt;}
.x7a{left:271.265333pt;}
.x40{left:272.232000pt;}
.x6{left:273.896000pt;}
.xb2{left:275.586667pt;}
.x6f{left:277.320000pt;}
.x46{left:281.278667pt;}
.xb{left:282.688000pt;}
.x12{left:285.194667pt;}
.xae{left:287.161333pt;}
.x47{left:289.253333pt;}
.x96{left:290.742667pt;}
.x13{left:291.836000pt;}
.x97{left:296.454667pt;}
.x20{left:297.893333pt;}
.x32{left:300.689333pt;}
.xaa{left:303.198667pt;}
.xab{left:311.173333pt;}
.x33{left:313.557333pt;}
.x9c{left:316.884000pt;}
.x34{left:318.069333pt;}
.x70{left:321.688000pt;}
.x9d{left:322.933333pt;}
.x4c{left:325.520000pt;}
.x61{left:326.617333pt;}
.x35{left:331.352000pt;}
.xb6{left:335.193333pt;}
.xb1{left:347.288000pt;}
.x93{left:353.946667pt;}
.x7{left:359.112000pt;}
.x8{left:366.386667pt;}
.x94{left:368.190667pt;}
.xaf{left:371.349333pt;}
.x83{left:379.278667pt;}
.xb5{left:380.448000pt;}
.xb4{left:386.637333pt;}
.x89{left:388.262667pt;}
.x10{left:396.789333pt;}
.x9{left:398.133333pt;}
.x8a{left:401.545333pt;}
.x9a{left:402.526667pt;}
.x11{left:403.430667pt;}
.x7d{left:405.018667pt;}
.xa{left:406.005333pt;}
.x23{left:407.246667pt;}
.x9b{left:414.581333pt;}
.x7e{left:418.302667pt;}
.x24{left:420.530667pt;}
.x7f{left:421.690667pt;}
.xa9{left:427.233333pt;}
.x2d{left:431.261333pt;}
.xb3{left:434.297333pt;}
.x2e{left:435.720000pt;}
.x8b{left:439.768000pt;}
.x2f{left:449.004000pt;}
.x8c{left:453.050667pt;}
.x64{left:459.173333pt;}
.x62{left:460.366667pt;}
.x63{left:468.340000pt;}
.x14{left:470.604000pt;}
.x65{left:472.456000pt;}
.x15{left:477.245333pt;}
.x91{left:478.652768pt;}
.x57{left:480.002667pt;}
.x48{left:481.846667pt;}
.x58{left:488.633333pt;}
.x49{left:490.478667pt;}
.x29{left:494.650667pt;}
.x3f{left:499.929480pt;}
.x5d{left:502.154557pt;}
.x36{left:505.064000pt;}
.x2a{left:506.756000pt;}
.x6b{left:514.640000pt;}
.x37{left:516.474667pt;}
.x6c{left:517.406667pt;}
.x25{left:520.012000pt;}
.x68{left:525.612000pt;}
.xa8{left:530.023656pt;}
.x21{left:532.385333pt;}
.x26{left:533.296000pt;}
.x8e{left:538.580000pt;}
.xc4{left:542.192000pt;}
.x1e{left:543.669333pt;}
.x80{left:545.581333pt;}
.xe{left:550.306667pt;}
.x8f{left:551.864000pt;}
.x1f{left:556.953333pt;}
.xf{left:559.106667pt;}
.x90{left:564.434667pt;}
.x38{left:567.924000pt;}
.x39{left:576.670667pt;}
.x22{left:578.585333pt;}
.x6d{left:580.222667pt;}
.x7b{left:583.526667pt;}
.x54{left:587.954421pt;}
.x92{left:589.817333pt;}
.x4a{left:591.612000pt;}
.x6e{left:593.506667pt;}
.x7c{left:594.670667pt;}
.x4d{left:597.346667pt;}
.x8d{left:600.313333pt;}
.x4b{left:601.570667pt;}
.x56{left:606.164000pt;}
.x4e{left:607.180000pt;}
.xa2{left:610.456000pt;}
.x74{left:614.306667pt;}
.x59{left:615.930667pt;}
.x30{left:620.373333pt;}
.xa3{left:623.740000pt;}
.xb0{left:625.644000pt;}
.xbb{left:630.386667pt;}
.x31{left:631.773333pt;}
.xc1{left:632.857333pt;}
.x81{left:640.349333pt;}
.xa4{left:643.038667pt;}
.x9e{left:646.066667pt;}
.xbd{left:647.294667pt;}
.x82{left:648.432000pt;}
.x5e{left:651.137333pt;}
.xa0{left:654.310667pt;}
.xc2{left:656.766667pt;}
.x84{left:658.969333pt;}
.xc{left:660.092000pt;}
.x16{left:661.781333pt;}
.x55{left:663.062667pt;}
.xc5{left:665.009333pt;}
.x3b{left:665.942667pt;}
.x1c{left:667.098667pt;}
.x17{left:668.422667pt;}
.x18{left:671.753333pt;}
.x1d{left:673.741333pt;}
.x73{left:676.160000pt;}
.x19{left:678.396000pt;}
.x44{left:682.613333pt;}
.x85{left:684.769333pt;}
.xbf{left:686.434667pt;}
.xba{left:689.550667pt;}
.x1a{left:690.630667pt;}
.x45{left:691.913333pt;}
.x1b{left:697.273333pt;}
.xac{left:698.981333pt;}
.x41{left:700.330667pt;}
.xc7{left:701.505333pt;}
.x98{left:702.822667pt;}
.x42{left:706.236000pt;}
.x75{left:710.205333pt;}
.xad{left:712.264000pt;}
.xa1{left:713.944000pt;}
.x43{left:716.194667pt;}
.xb8{left:720.257333pt;}
.x76{left:723.488000pt;}
.x71{left:726.942667pt;}
.x27{left:727.972000pt;}
.x86{left:729.913333pt;}
.x95{left:736.094667pt;}
.x99{left:737.617333pt;}
.x72{left:740.226667pt;}
.x28{left:741.254667pt;}
.x4f{left:742.694667pt;}
.xb9{left:744.168000pt;}
}




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