
    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_33bf02f00c955c4b483c93d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_c3ff67a0b1289d1eb58f8c38.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_1079071c3fce1e3fda029697.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6a29693506c7321c9dbe03bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.997000;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_c0f3f4c91c29cdb51a048037.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6e5117e147614ead0b5e75c0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e7d8b7905474eff6f3b51486.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.761000;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_add01c016107de01d149e076.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006348;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_bbf68d41cf2ba8cbda1e34a2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006836;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_009a8167ed5cbadc1fe684a4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.211426;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_a8fc6fbe44e28b6561ac28dd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.727539;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_23565e1ea9d73c17d7ff128e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.942871;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_4431b89b317a3b683df95536.woff2')format("woff");}.fff{font-family:fff;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_96392efcb10ee17838d5b2f1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.773000;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_0ca490ec4432d4510b680875.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.997000;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_89f46b9310037ef22a32b831.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.006348;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_6db8d2e8826208aed127c095.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.006836;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_08b2e7e709a224f31f6da8bc.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.211426;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_a8fc6fbe44e28b6561ac28dd.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.727539;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_9414d9bc45672169dcbd0a8e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.942871;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;}
.m6{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);}
.ma{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);}
.m7{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);}
.m12{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);}
.m25{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);}
.m26{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);}
.m20{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);}
.m21{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);}
.mc{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);}
.m1f{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);}
.m29{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);}
.m2{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);}
.m17{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);}
.m5{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);}
.m1e{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);}
.m22{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);}
.mf{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);}
.m4{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);}
.m11{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);}
.m2a{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.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);}
.m16{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);}
.m1a{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);}
.m10{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);}
.m1d{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);}
.m24{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);}
.me{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);}
.m13{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);}
.m27{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);}
.m15{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);}
.m9{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);}
.m14{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);}
.m8{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);}
.md{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);}
.m23{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);}
.m19{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);}
.m28{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);}
.m18{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);}
.m3{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.364000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:12.912000px;}
.v6{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:28.392000px;}
.v5{vertical-align:32.874000px;}
.ls60{letter-spacing:-0.296993px;}
.ls27{letter-spacing:-0.294588px;}
.ls5e{letter-spacing:-0.228456px;}
.ls69{letter-spacing:-0.194188px;}
.ls30{letter-spacing:-0.180360px;}
.ls34{letter-spacing:-0.168336px;}
.ls6b{letter-spacing:-0.154208px;}
.ls37{letter-spacing:-0.150300px;}
.ls31{letter-spacing:-0.132264px;}
.ls2c{letter-spacing:-0.120240px;}
.ls38{letter-spacing:-0.114228px;}
.ls68{letter-spacing:-0.102805px;}
.ls33{letter-spacing:-0.102204px;}
.ls66{letter-spacing:-0.085671px;}
.ls35{letter-spacing:-0.084168px;}
.ls28{letter-spacing:-0.078156px;}
.ls62{letter-spacing:-0.068537px;}
.ls64{letter-spacing:-0.062825px;}
.ls2b{letter-spacing:-0.060120px;}
.ls61{letter-spacing:-0.057114px;}
.ls63{letter-spacing:-0.039980px;}
.ls32{letter-spacing:-0.036072px;}
.ls5f{letter-spacing:-0.034268px;}
.ls2a{letter-spacing:-0.030060px;}
.ls5b{letter-spacing:-0.028557px;}
.ls2f{letter-spacing:-0.024048px;}
.ls65{letter-spacing:-0.022846px;}
.ls2e{letter-spacing:-0.018036px;}
.ls5a{letter-spacing:-0.017134px;}
.ls59{letter-spacing:-0.015390px;}
.ls3b{letter-spacing:-0.014400px;}
.ls2d{letter-spacing:-0.012024px;}
.ls5d{letter-spacing:-0.011423px;}
.ls26{letter-spacing:-0.010800px;}
.ls3a{letter-spacing:-0.007200px;}
.ls29{letter-spacing:-0.006012px;}
.ls5c{letter-spacing:-0.005711px;}
.ls25{letter-spacing:-0.004788px;}
.ls58{letter-spacing:-0.004549px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000435px;}
.ls7f{letter-spacing:0.000566px;}
.ls1{letter-spacing:0.000600px;}
.ls79{letter-spacing:0.000800px;}
.ls7c{letter-spacing:0.001036px;}
.ls7a{letter-spacing:0.001155px;}
.ls6{letter-spacing:0.001933px;}
.ls77{letter-spacing:0.002544px;}
.ls6c{letter-spacing:0.002669px;}
.ls3f{letter-spacing:0.002782px;}
.ls7e{letter-spacing:0.002928px;}
.ls81{letter-spacing:0.003634px;}
.ls80{letter-spacing:0.003846px;}
.ls7b{letter-spacing:0.003968px;}
.ls54{letter-spacing:0.005711px;}
.ls17{letter-spacing:0.006012px;}
.ls22{letter-spacing:0.007200px;}
.ls53{letter-spacing:0.011423px;}
.ls16{letter-spacing:0.012024px;}
.ls21{letter-spacing:0.014400px;}
.ls51{letter-spacing:0.017134px;}
.ls18{letter-spacing:0.018036px;}
.ls4c{letter-spacing:0.022846px;}
.ls48{letter-spacing:0.027292px;}
.ls4f{letter-spacing:0.028557px;}
.ls11{letter-spacing:0.028728px;}
.ls1a{letter-spacing:0.030060px;}
.ls4b{letter-spacing:0.030780px;}
.ls14{letter-spacing:0.032400px;}
.ls1b{letter-spacing:0.036072px;}
.ls56{letter-spacing:0.039980px;}
.ls1d{letter-spacing:0.042084px;}
.ls20{letter-spacing:0.048096px;}
.ls15{letter-spacing:0.054000px;}
.ls19{letter-spacing:0.054108px;}
.ls55{letter-spacing:0.057114px;}
.ls1f{letter-spacing:0.060120px;}
.ls52{letter-spacing:0.062825px;}
.ls1c{letter-spacing:0.066132px;}
.ls57{letter-spacing:0.068537px;}
.ls3c{letter-spacing:0.071820px;}
.ls67{letter-spacing:0.074248px;}
.ls1e{letter-spacing:0.078156px;}
.ls36{letter-spacing:0.084168px;}
.ls39{letter-spacing:0.096192px;}
.ls6a{letter-spacing:0.097094px;}
.ls4e{letter-spacing:0.114228px;}
.ls23{letter-spacing:0.129600px;}
.ls50{letter-spacing:0.142785px;}
.ls24{letter-spacing:0.153216px;}
.ls4d{letter-spacing:0.171342px;}
.ls4a{letter-spacing:0.172847px;}
.ls13{letter-spacing:0.177156px;}
.ls49{letter-spacing:0.181944px;}
.ls12{letter-spacing:0.191520px;}
.ls47{letter-spacing:0.572693px;}
.ls46{letter-spacing:0.578693px;}
.ls75{letter-spacing:2.988600px;}
.ls2{letter-spacing:2.989200px;}
.ls74{letter-spacing:6.235133px;}
.lsb{letter-spacing:11.954850px;}
.ls44{letter-spacing:11.955746px;}
.ls45{letter-spacing:12.530693px;}
.ls7d{letter-spacing:13.352228px;}
.ls76{letter-spacing:14.094088px;}
.ls6e{letter-spacing:14.525471px;}
.ls6f{letter-spacing:14.585246px;}
.ls72{letter-spacing:14.764573px;}
.lsf{letter-spacing:14.824349px;}
.ls73{letter-spacing:14.884124px;}
.ls8{letter-spacing:14.943900px;}
.ls4{letter-spacing:14.944200px;}
.ls3{letter-spacing:14.944766px;}
.ls3d{letter-spacing:15.003676px;}
.ls43{letter-spacing:15.123227px;}
.lsa{letter-spacing:15.272412px;}
.ls9{letter-spacing:15.302554px;}
.ls70{letter-spacing:16.318739px;}
.ls71{letter-spacing:16.378514px;}
.ls6d{letter-spacing:16.440600px;}
.ls78{letter-spacing:16.489035px;}
.lsd{letter-spacing:16.856719px;}
.ls42{letter-spacing:17.334924px;}
.ls10{letter-spacing:18.052231px;}
.lse{letter-spacing:18.530436px;}
.ls41{letter-spacing:20.383480px;}
.ls3e{letter-spacing:28.333634px;}
.ls40{letter-spacing:34.430746px;}
.ls5{letter-spacing:62.761200px;}
.ls7{letter-spacing:64.321654px;}
.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;}
}
.ws82{word-spacing:-60.120000px;}
.ws81{word-spacing:-15.030000px;}
.ws80{word-spacing:-14.969880px;}
.wse{word-spacing:-14.943900px;}
.ws142{word-spacing:-13.449600px;}
.ws7d{word-spacing:-12.161520px;}
.ws7e{word-spacing:-11.970000px;}
.ws2c{word-spacing:-11.955150px;}
.wse3{word-spacing:-11.553444px;}
.wse4{word-spacing:-11.371500px;}
.wsd{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws95{word-spacing:-3.511008px;}
.ws94{word-spacing:-3.156300px;}
.ws96{word-spacing:-3.138264px;}
.wsd3{word-spacing:-3.108331px;}
.ws14a{word-spacing:-2.958912px;}
.ws173{word-spacing:-2.689920px;}
.wsf2{word-spacing:-2.644378px;}
.ws174{word-spacing:-2.636122px;}
.ws104{word-spacing:-2.610110px;}
.wsc0{word-spacing:-2.519028px;}
.ws129{word-spacing:-2.510575px;}
.ws193{word-spacing:-2.474726px;}
.wsbf{word-spacing:-2.452896px;}
.wsd1{word-spacing:-2.331248px;}
.ws162{word-spacing:-2.313331px;}
.ws9f{word-spacing:-2.098188px;}
.wsa5{word-spacing:-2.092176px;}
.ws9d{word-spacing:-2.050092px;}
.ws10f{word-spacing:-2.033258px;}
.ws87{word-spacing:-2.032370px;}
.ws10e{word-spacing:-2.016124px;}
.ws11f{word-spacing:-1.964722px;}
.ws120{word-spacing:-1.947587px;}
.ws9c{word-spacing:-1.941876px;}
.ws65{word-spacing:-1.853044px;}
.ws16a{word-spacing:-1.829146px;}
.ws5d{word-spacing:-1.793268px;}
.ws141{word-spacing:-1.775347px;}
.ws69{word-spacing:-1.733492px;}
.ws92{word-spacing:-1.701396px;}
.ws118{word-spacing:-1.690574px;}
.ws93{word-spacing:-1.677348px;}
.ws128{word-spacing:-1.673717px;}
.ws9b{word-spacing:-1.647288px;}
.ws57{word-spacing:-1.613941px;}
.ws10a{word-spacing:-1.610615px;}
.ws119{word-spacing:-1.604903px;}
.ws101{word-spacing:-1.564924px;}
.ws131{word-spacing:-1.554166px;}
.ws50{word-spacing:-1.494390px;}
.ws99{word-spacing:-1.400796px;}
.ws9a{word-spacing:-1.376748px;}
.ws85{word-spacing:-1.374839px;}
.ws5{word-spacing:-1.338970px;}
.ws122{word-spacing:-1.315063px;}
.wscd{word-spacing:-1.255288px;}
.ws102{word-spacing:-1.250797px;}
.ws103{word-spacing:-1.239374px;}
.ws109{word-spacing:-1.216528px;}
.ws63{word-spacing:-1.195512px;}
.wsd0{word-spacing:-1.135736px;}
.ws161{word-spacing:-1.075968px;}
.ws6b{word-spacing:-1.016185px;}
.ws12a{word-spacing:-0.956410px;}
.wsd2{word-spacing:-0.836858px;}
.ws3f{word-spacing:-0.777083px;}
.ws123{word-spacing:-0.717307px;}
.wsaa{word-spacing:-0.703404px;}
.wsa9{word-spacing:-0.667332px;}
.ws4f{word-spacing:-0.657532px;}
.ws13f{word-spacing:-0.645581px;}
.wsec{word-spacing:-0.616831px;}
.wsed{word-spacing:-0.565429px;}
.ws154{word-spacing:-0.537984px;}
.ws46{word-spacing:-0.537980px;}
.ws10b{word-spacing:-0.508315px;}
.ws177{word-spacing:-0.484186px;}
.ws58{word-spacing:-0.478205px;}
.ws176{word-spacing:-0.430387px;}
.ws43{word-spacing:-0.418429px;}
.ws16{word-spacing:-0.376589px;}
.ws36{word-spacing:-0.358654px;}
.ws170{word-spacing:-0.322790px;}
.ws37{word-spacing:-0.298878px;}
.ws8a{word-spacing:-0.277704px;}
.ws13a{word-spacing:-0.268992px;}
.wse6{word-spacing:-0.263819px;}
.ws111{word-spacing:-0.257013px;}
.wsa6{word-spacing:-0.240480px;}
.ws1e{word-spacing:-0.239102px;}
.ws110{word-spacing:-0.234167px;}
.wseb{word-spacing:-0.228456px;}
.ws107{word-spacing:-0.222745px;}
.ws156{word-spacing:-0.215194px;}
.ws1f{word-spacing:-0.179327px;}
.ws137{word-spacing:-0.161395px;}
.ws39{word-spacing:-0.119551px;}
.ws15d{word-spacing:-0.107597px;}
.ws8b{word-spacing:-0.081396px;}
.wse7{word-spacing:-0.077326px;}
.ws7f{word-spacing:-0.060120px;}
.wsc{word-spacing:-0.059776px;}
.wse5{word-spacing:-0.057114px;}
.ws13b{word-spacing:-0.053798px;}
.ws2{word-spacing:-0.041843px;}
.ws186{word-spacing:-0.013142px;}
.ws190{word-spacing:-0.010406px;}
.ws18c{word-spacing:-0.010339px;}
.ws192{word-spacing:-0.010176px;}
.ws163{word-spacing:-0.010118px;}
.ws17a{word-spacing:-0.009302px;}
.ws15f{word-spacing:-0.008477px;}
.ws152{word-spacing:-0.008467px;}
.ws15b{word-spacing:-0.008438px;}
.ws178{word-spacing:-0.008400px;}
.ws159{word-spacing:-0.007910px;}
.ws18b{word-spacing:-0.007786px;}
.ws168{word-spacing:-0.006355px;}
.ws16f{word-spacing:-0.004800px;}
.ws15e{word-spacing:-0.003466px;}
.ws165{word-spacing:-0.003302px;}
.ws194{word-spacing:-0.001690px;}
.ws2b{word-spacing:-0.000448px;}
.ws0{word-spacing:0.000000px;}
.ws90{word-spacing:0.030060px;}
.ws15c{word-spacing:0.053798px;}
.ws2f{word-spacing:0.059776px;}
.ws100{word-spacing:0.085671px;}
.wsd7{word-spacing:0.095641px;}
.ws11{word-spacing:0.107597px;}
.wsb7{word-spacing:0.114228px;}
.ws34{word-spacing:0.119551px;}
.ws8e{word-spacing:0.129600px;}
.ws108{word-spacing:0.131362px;}
.wsd8{word-spacing:0.143462px;}
.wse9{word-spacing:0.143640px;}
.ws8d{word-spacing:0.151200px;}
.ws17{word-spacing:0.161395px;}
.ws91{word-spacing:0.174348px;}
.ws1c{word-spacing:0.179327px;}
.wsea{word-spacing:0.189810px;}
.ws117{word-spacing:0.194188px;}
.ws8f{word-spacing:0.194400px;}
.ws150{word-spacing:0.215194px;}
.ws35{word-spacing:0.239102px;}
.ws17f{word-spacing:0.264278px;}
.ws14c{word-spacing:0.268992px;}
.ws29{word-spacing:0.298878px;}
.wsef{word-spacing:0.319838px;}
.ws13c{word-spacing:0.322790px;}
.ws62{word-spacing:0.358654px;}
.ws184{word-spacing:0.376589px;}
.wsf7{word-spacing:0.416932px;}
.ws40{word-spacing:0.418429px;}
.ws14f{word-spacing:0.430387px;}
.wsee{word-spacing:0.439778px;}
.ws4a{word-spacing:0.478205px;}
.wsf8{word-spacing:0.491180px;}
.ws3a{word-spacing:0.537980px;}
.ws19{word-spacing:0.537984px;}
.ws17e{word-spacing:0.645581px;}
.ws25{word-spacing:0.657532px;}
.ws151{word-spacing:0.699379px;}
.wsfa{word-spacing:0.713925px;}
.ws2d{word-spacing:0.717307px;}
.wsf9{word-spacing:0.748193px;}
.ws113{word-spacing:0.782462px;}
.ws14{word-spacing:0.806976px;}
.ws7a{word-spacing:0.836858px;}
.ws138{word-spacing:0.860774px;}
.ws83{word-spacing:0.896634px;}
.ws18a{word-spacing:0.914573px;}
.ws149{word-spacing:0.968371px;}
.ws38{word-spacing:1.016185px;}
.ws157{word-spacing:1.022170px;}
.ws18e{word-spacing:1.029168px;}
.wsc8{word-spacing:1.075961px;}
.ws15{word-spacing:1.129766px;}
.ws32{word-spacing:1.135736px;}
.ws97{word-spacing:1.160316px;}
.wsa0{word-spacing:1.166328px;}
.ws33{word-spacing:1.195512px;}
.ws9e{word-spacing:1.196388px;}
.wsa1{word-spacing:1.202400px;}
.ws98{word-spacing:1.208412px;}
.wsc6{word-spacing:1.255288px;}
.ws4e{word-spacing:1.315063px;}
.ws26{word-spacing:1.374839px;}
.wsb{word-spacing:1.380812px;}
.ws13e{word-spacing:1.398758px;}
.ws53{word-spacing:1.434614px;}
.ws4b{word-spacing:1.494390px;}
.ws172{word-spacing:1.506355px;}
.wsb2{word-spacing:1.545084px;}
.ws41{word-spacing:1.554166px;}
.ws64{word-spacing:1.613941px;}
.ws169{word-spacing:1.613952px;}
.wsb1{word-spacing:1.623240px;}
.ws158{word-spacing:1.667750px;}
.wsab{word-spacing:1.671336px;}
.ws134{word-spacing:1.673717px;}
.ws61{word-spacing:1.733492px;}
.ws115{word-spacing:1.776245px;}
.ws11a{word-spacing:1.781957px;}
.ws3e{word-spacing:1.793268px;}
.ws114{word-spacing:1.816225px;}
.wsb8{word-spacing:1.827648px;}
.ws5b{word-spacing:1.853044px;}
.ws116{word-spacing:1.873339px;}
.ws18{word-spacing:1.882944px;}
.wsbe{word-spacing:1.893780px;}
.ws45{word-spacing:1.912819px;}
.ws16d{word-spacing:1.936742px;}
.ws5f{word-spacing:1.972595px;}
.ws164{word-spacing:1.990541px;}
.ws3b{word-spacing:2.032370px;}
.ws18d{word-spacing:2.044339px;}
.ws11c{word-spacing:2.044681px;}
.ws21{word-spacing:2.092146px;}
.ws175{word-spacing:2.098138px;}
.ws66{word-spacing:2.151922px;}
.wsf3{word-spacing:2.153198px;}
.ws11b{word-spacing:2.176043px;}
.ws2e{word-spacing:2.211697px;}
.ws70{word-spacing:2.271473px;}
.wsbd{word-spacing:2.272536px;}
.ws11d{word-spacing:2.295983px;}
.ws181{word-spacing:2.313331px;}
.ws5a{word-spacing:2.331248px;}
.ws17c{word-spacing:2.367130px;}
.wsf4{word-spacing:2.370231px;}
.ws56{word-spacing:2.391024px;}
.ws160{word-spacing:2.420928px;}
.ws6f{word-spacing:2.450800px;}
.wsfb{word-spacing:2.473036px;}
.ws49{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.wsfc{word-spacing:2.541573px;}
.wsfd{word-spacing:2.552996px;}
.ws48{word-spacing:2.570351px;}
.wsa3{word-spacing:2.579148px;}
.ws139{word-spacing:2.582323px;}
.wsc7{word-spacing:2.689902px;}
.ws88{word-spacing:2.749678px;}
.wsa4{word-spacing:2.795580px;}
.ws16e{word-spacing:2.797517px;}
.ws24{word-spacing:2.809453px;}
.ws5c{word-spacing:2.869229px;}
.wsf{word-spacing:2.869236px;}
.wsad{word-spacing:2.915820px;}
.ws12e{word-spacing:2.929004px;}
.wsb9{word-spacing:2.963916px;}
.wsba{word-spacing:2.981952px;}
.ws3c{word-spacing:2.988780px;}
.wsac{word-spacing:3.012012px;}
.ws15a{word-spacing:3.012710px;}
.ws16c{word-spacing:3.066509px;}
.ws59{word-spacing:3.108331px;}
.ws112{word-spacing:3.129847px;}
.ws4d{word-spacing:3.168107px;}
.ws167{word-spacing:3.217382px;}
.ws1a{word-spacing:3.219667px;}
.ws171{word-spacing:3.219686px;}
.ws14d{word-spacing:3.220080px;}
.ws179{word-spacing:3.222230px;}
.ws182{word-spacing:3.224218px;}
.ws14e{word-spacing:3.227904px;}
.wsfe{word-spacing:3.238364px;}
.ws188{word-spacing:3.281702px;}
.wsce{word-spacing:3.287658px;}
.ws42{word-spacing:3.347434px;}
.ws10{word-spacing:3.347746px;}
.ws140{word-spacing:3.390454px;}
.ws124{word-spacing:3.407209px;}
.ws14b{word-spacing:3.443098px;}
.ws78{word-spacing:3.466985px;}
.wsf0{word-spacing:3.483954px;}
.ws195{word-spacing:3.496896px;}
.ws121{word-spacing:3.526760px;}
.wsff{word-spacing:3.541068px;}
.ws180{word-spacing:3.550694px;}
.ws1b{word-spacing:3.586536px;}
.wsa2{word-spacing:3.631248px;}
.ws20{word-spacing:3.646312px;}
.wsb0{word-spacing:3.649284px;}
.wsb6{word-spacing:3.691368px;}
.ws76{word-spacing:3.706087px;}
.wsae{word-spacing:3.799584px;}
.ws155{word-spacing:3.819686px;}
.wsaf{word-spacing:3.865716px;}
.wsf1{word-spacing:3.883752px;}
.ws5e{word-spacing:3.885414px;}
.ws2a{word-spacing:3.945190px;}
.ws18f{word-spacing:3.981082px;}
.ws55{word-spacing:4.004965px;}
.wsc1{word-spacing:4.016016px;}
.wsc2{word-spacing:4.046076px;}
.ws125{word-spacing:4.064741px;}
.ws6c{word-spacing:4.124516px;}
.ws22{word-spacing:4.184292px;}
.ws3d{word-spacing:4.244068px;}
.ws12{word-spacing:4.250074px;}
.ws6e{word-spacing:4.303843px;}
.wsb3{word-spacing:4.334652px;}
.ws89{word-spacing:4.363619px;}
.wscc{word-spacing:4.423394px;}
.ws47{word-spacing:4.483170px;}
.ws17b{word-spacing:4.519066px;}
.ws130{word-spacing:4.542946px;}
.wsb4{word-spacing:4.569120px;}
.ws44{word-spacing:4.602721px;}
.ws127{word-spacing:4.662497px;}
.ws12f{word-spacing:4.722272px;}
.wsbc{word-spacing:4.743468px;}
.ws7c{word-spacing:4.782048px;}
.ws166{word-spacing:4.788058px;}
.ws77{word-spacing:4.841824px;}
.wsbb{word-spacing:4.893768px;}
.ws31{word-spacing:4.901599px;}
.ws16b{word-spacing:4.949453px;}
.wsc5{word-spacing:4.961375px;}
.ws84{word-spacing:5.080926px;}
.wsb5{word-spacing:5.134248px;}
.ws135{word-spacing:5.140702px;}
.ws75{word-spacing:5.200477px;}
.ws79{word-spacing:5.260253px;}
.ws17d{word-spacing:5.433638px;}
.wsd4{word-spacing:5.439580px;}
.ws9{word-spacing:5.481407px;}
.ws183{word-spacing:5.487437px;}
.ws133{word-spacing:5.499355px;}
.ws6a{word-spacing:5.559131px;}
.ws187{word-spacing:5.595034px;}
.ws7b{word-spacing:5.618906px;}
.ws132{word-spacing:5.678682px;}
.ws126{word-spacing:5.738458px;}
.ws153{word-spacing:5.756429px;}
.ws68{word-spacing:5.858009px;}
.wsf6{word-spacing:5.859896px;}
.ws12b{word-spacing:5.917784px;}
.ws185{word-spacing:5.917824px;}
.wsf5{word-spacing:5.939856px;}
.ws52{word-spacing:6.037336px;}
.ws51{word-spacing:6.097111px;}
.ws13d{word-spacing:6.184705px;}
.ws105{word-spacing:6.265406px;}
.ws54{word-spacing:6.336214px;}
.ws28{word-spacing:6.395989px;}
.ws30{word-spacing:6.575316px;}
.ws106{word-spacing:6.630935px;}
.ws12c{word-spacing:6.874194px;}
.ws11e{word-spacing:6.876526px;}
.ws4c{word-spacing:6.933970px;}
.ws6d{word-spacing:7.053521px;}
.ws13{word-spacing:7.101389px;}
.ws1d{word-spacing:7.113296px;}
.ws72{word-spacing:7.173072px;}
.ws10c{word-spacing:7.276324px;}
.ws10d{word-spacing:7.293458px;}
.ws23{word-spacing:7.352399px;}
.wsdc{word-spacing:7.531726px;}
.ws86{word-spacing:7.950155px;}
.wsd9{word-spacing:8.009930px;}
.ws136{word-spacing:8.069706px;}
.wsc3{word-spacing:8.122212px;}
.wsc4{word-spacing:8.140248px;}
.wsca{word-spacing:8.787013px;}
.wsc9{word-spacing:8.846789px;}
.ws12d{word-spacing:9.085891px;}
.ws7{word-spacing:9.833058px;}
.ws189{word-spacing:10.060301px;}
.ws67{word-spacing:10.520506px;}
.ws27{word-spacing:10.640057px;}
.wse8{word-spacing:11.034904px;}
.ws191{word-spacing:11.082470px;}
.ws8c{word-spacing:11.620476px;}
.wsa8{word-spacing:11.633220px;}
.wsa7{word-spacing:11.699352px;}
.ws8{word-spacing:11.841512px;}
.wscb{word-spacing:12.911530px;}
.ws4{word-spacing:15.481836px;}
.wsa{word-spacing:16.067635px;}
.wscf{word-spacing:16.258963px;}
.ws74{word-spacing:18.322370px;}
.ws73{word-spacing:18.331165px;}
.ws60{word-spacing:18.525325px;}
.ws6{word-spacing:22.339429px;}
.ws71{word-spacing:40.261172px;}
.wsd6{word-spacing:112.952257px;}
.wsd5{word-spacing:137.340763px;}
.wsdf{word-spacing:139.301408px;}
.wsde{word-spacing:159.625825px;}
.wse0{word-spacing:160.036500px;}
.wse2{word-spacing:199.364081px;}
.wse1{word-spacing:200.989982px;}
.wsda{word-spacing:298.149619px;}
.wsdb{word-spacing:345.547123px;}
.wsdd{word-spacing:496.567924px;}
.ws148{word-spacing:554.231117px;}
.ws146{word-spacing:630.409651px;}
.ws145{word-spacing:636.273677px;}
.ws147{word-spacing:651.229632px;}
.ws143{word-spacing:874.485619px;}
.ws144{word-spacing:959.363443px;}
._1a{margin-left:-22.899053px;}
._57{margin-left:-20.908645px;}
._54{margin-left:-18.895191px;}
._58{margin-left:-10.657595px;}
._14{margin-left:-7.113428px;}
._2{margin-left:-5.816149px;}
._7{margin-left:-3.891433px;}
._17{margin-left:-2.092146px;}
._1{margin-left:-1.046070px;}
._1b{width:1.163484px;}
._6{width:2.993778px;}
._15{width:5.110943px;}
._43{width:10.692625px;}
._0{width:12.636526px;}
._48{width:13.820197px;}
._10{width:14.822586px;}
._a{width:16.785101px;}
._53{width:17.819227px;}
._8{width:18.829440px;}
._d{width:19.881152px;}
._13{width:21.160562px;}
._b{width:23.073382px;}
._55{width:24.143814px;}
._3{width:25.314894px;}
._e{width:27.174026px;}
._9{width:29.212531px;}
._4{width:31.256572px;}
._5{width:33.355008px;}
._56{width:34.396076px;}
._19{width:35.536591px;}
._18{width:37.180423px;}
._f{width:38.196608px;}
._16{width:40.049652px;}
._c{width:41.334824px;}
._33{width:42.380900px;}
._1d{width:43.397218px;}
._40{width:123.360503px;}
._41{width:146.870131px;}
._1f{width:155.464771px;}
._20{width:162.111834px;}
._3a{width:193.962154px;}
._3e{width:208.354354px;}
._3b{width:211.319231px;}
._3c{width:232.934143px;}
._3d{width:254.501233px;}
._3f{width:258.137399px;}
._35{width:262.697587px;}
._38{width:316.388390px;}
._36{width:322.091021px;}
._39{width:324.141458px;}
._37{width:359.050522px;}
._2d{width:368.788205px;}
._50{width:370.401984px;}
._32{width:399.190147px;}
._1e{width:424.981672px;}
._27{width:430.673444px;}
._45{width:435.390451px;}
._28{width:441.385258px;}
._4f{width:448.840051px;}
._2b{width:462.086196px;}
._30{width:483.593506px;}
._46{width:499.410547px;}
._44{width:551.218406px;}
._4e{width:569.373734px;}
._29{width:570.734599px;}
._31{width:579.186885px;}
._51{width:609.912461px;}
._4d{width:625.150684px;}
._25{width:627.198767px;}
._2e{width:653.708722px;}
._47{width:664.679232px;}
._21{width:666.997467px;}
._2c{width:674.397700px;}
._52{width:678.882010px;}
._2f{width:717.787967px;}
._11{width:723.860422px;}
._2a{width:755.513398px;}
._22{width:804.039346px;}
._49{width:806.007629px;}
._4a{width:831.669466px;}
._4c{width:885.360269px;}
._4b{width:891.062899px;}
._26{width:919.298953px;}
._23{width:949.079226px;}
._24{width:1003.068683px;}
._42{width:1963.131232px;}
._1c{width:2090.287584px;}
._34{width:2500.851000px;}
._12{width:2524.761000px;}
.fc2{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc1{color:rgb(77,128,114);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.429600px;}
.fs12{font-size:45.486000px;}
.fsb{font-size:47.820600px;}
.fsd{font-size:47.880000px;}
.fs11{font-size:49.829400px;}
.fs14{font-size:51.300000px;}
.fsc{font-size:53.798400px;}
.fsf{font-size:54.000000px;}
.fs15{font-size:56.058000px;}
.fs13{font-size:57.114000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fse{font-size:60.120000px;}
.fs10{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.fs6{font-size:128.507760px;}
.y16c{bottom:-662.119068px;}
.y16b{bottom:-642.859626px;}
.y230{bottom:-639.613171px;}
.y16a{bottom:-623.690364px;}
.y22f{bottom:-621.316701px;}
.y169{bottom:-604.430922px;}
.y22e{bottom:-603.020231px;}
.y168{bottom:-585.261660px;}
.y22d{bottom:-584.809432px;}
.y22c{bottom:-566.512962px;}
.y167{bottom:-566.002218px;}
.y22b{bottom:-548.302163px;}
.y166{bottom:-546.742776px;}
.y22a{bottom:-530.005694px;}
.y165{bottom:-527.573514px;}
.y229{bottom:-511.709224px;}
.y164{bottom:-508.314072px;}
.y228{bottom:-493.496997px;}
.y163{bottom:-489.054630px;}
.y227{bottom:-475.200527px;}
.y162{bottom:-469.885368px;}
.y226{bottom:-456.989728px;}
.y161{bottom:-450.625926px;}
.y225{bottom:-438.693258px;}
.y160{bottom:-431.456664px;}
.y224{bottom:-420.396788px;}
.y15f{bottom:-412.197222px;}
.y223{bottom:-402.185989px;}
.y15e{bottom:-392.937780px;}
.y222{bottom:-383.889519px;}
.y15d{bottom:-373.768518px;}
.y221{bottom:-365.593050px;}
.y15c{bottom:-354.509076px;}
.y220{bottom:-347.382251px;}
.y15b{bottom:-335.339814px;}
.y21f{bottom:-329.085781px;}
.y15a{bottom:-316.080372px;}
.y21e{bottom:-310.874982px;}
.y159{bottom:-296.820930px;}
.y21d{bottom:-292.578512px;}
.y158{bottom:-277.650165px;}
.y21c{bottom:-274.282042px;}
.y157{bottom:-258.390723px;}
.y21b{bottom:-256.069815px;}
.y156{bottom:-239.219958px;}
.y21a{bottom:-237.773345px;}
.y155{bottom:-219.960516px;}
.y219{bottom:-219.562547px;}
.y218{bottom:-201.266077px;}
.y154{bottom:-200.701074px;}
.y217{bottom:-182.969607px;}
.y153{bottom:-181.530309px;}
.y216{bottom:-164.758808px;}
.y152{bottom:-162.270867px;}
.y215{bottom:-146.462338px;}
.y151{bottom:-143.011425px;}
.y214{bottom:-128.251539px;}
.y150{bottom:-123.842163px;}
.y213{bottom:-109.955069px;}
.y14f{bottom:-104.582721px;}
.y212{bottom:-91.658599px;}
.y14e{bottom:-80.911974px;}
.y211{bottom:-73.447800px;}
.y14d{bottom:-57.152550px;}
.y210{bottom:-50.876348px;}
.y14c{bottom:-20.342550px;}
.y20f{bottom:-15.906848px;}
.y0{bottom:0.000000px;}
.y20e{bottom:5.468152px;}
.y14b{bottom:6.300789px;}
.y3b{bottom:16.704213px;}
.y16e{bottom:22.407450px;}
.y69{bottom:31.890000px;}
.y14a{bottom:34.560195px;}
.y6{bottom:35.925007px;}
.y149{bottom:62.819601px;}
.y5{bottom:66.525004px;}
.y172{bottom:84.147450px;}
.y148{bottom:90.988827px;}
.y4{bottom:97.125005px;}
.y68{bottom:103.621500px;}
.y39{bottom:104.646000px;}
.y231{bottom:106.806000px;}
.y173{bottom:110.607450px;}
.y199{bottom:112.825500px;}
.y264{bottom:113.157000px;}
.y116{bottom:115.561500px;}
.y305{bottom:116.458500px;}
.y1b3{bottom:116.907000px;}
.y2a1{bottom:117.355500px;}
.y9f{bottom:117.802500px;}
.yc8{bottom:118.699500px;}
.y147{bottom:119.248233px;}
.y280{bottom:119.596500px;}
.y2cf{bottom:120.880500px;}
.y174{bottom:121.407450px;}
.y170{bottom:122.217450px;}
.y67{bottom:122.449500px;}
.y38{bottom:122.535000px;}
.y198{bottom:131.653500px;}
.y263{bottom:131.986500px;}
.y20b{bottom:132.225000px;}
.y304{bottom:133.719000px;}
.y115{bottom:134.391000px;}
.y1b2{bottom:135.736500px;}
.y2a0{bottom:136.185000px;}
.y9e{bottom:136.632000px;}
.yc7{bottom:137.529000px;}
.y2ce{bottom:138.141000px;}
.y27f{bottom:138.426000px;}
.y22{bottom:139.264499px;}
.y37{bottom:140.422500px;}
.y66{bottom:141.279000px;}
.y146{bottom:147.507639px;}
.y197{bottom:150.483000px;}
.y262{bottom:150.816000px;}
.y303{bottom:150.978000px;}
.y114{bottom:153.220500px;}
.y1ea{bottom:153.849000px;}
.y1b1{bottom:154.566000px;}
.y29f{bottom:155.013000px;}
.y2cd{bottom:155.401500px;}
.y9d{bottom:155.461500px;}
.yc6{bottom:156.358500px;}
.y27e{bottom:157.255500px;}
.y36{bottom:158.310000px;}
.ye4{bottom:158.601000px;}
.y65{bottom:160.108500px;}
.y302{bottom:168.238500px;}
.y196{bottom:169.312500px;}
.y261{bottom:169.645500px;}
.y113{bottom:172.050000px;}
.y1e9{bottom:172.678500px;}
.y1b0{bottom:173.395500px;}
.y29e{bottom:173.842500px;}
.y9c{bottom:174.291000px;}
.yc5{bottom:175.188000px;}
.y145{bottom:175.678368px;}
.y27d{bottom:176.085000px;}
.y35{bottom:176.199000px;}
.y2cc{bottom:177.145500px;}
.y64{bottom:178.938000px;}
.y301{bottom:185.499000px;}
.y195{bottom:188.142000px;}
.y260{bottom:188.475000px;}
.y112{bottom:190.879500px;}
.y1e8{bottom:191.508000px;}
.y175{bottom:191.607450px;}
.y1af{bottom:192.225000px;}
.y29d{bottom:192.672000px;}
.y9b{bottom:193.120500px;}
.yc4{bottom:194.017500px;}
.y34{bottom:194.086500px;}
.y27c{bottom:194.914500px;}
.ye3{bottom:195.363000px;}
.y19{bottom:196.933500px;}
.y63{bottom:197.767500px;}
.y300{bottom:202.759500px;}
.y144{bottom:203.937774px;}
.y16d{bottom:204.117450px;}
.y194{bottom:206.971500px;}
.y25f{bottom:207.304500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y111{bottom:209.709000px;}
.y1e7{bottom:210.337500px;}
.y1ae{bottom:211.054500px;}
.y29c{bottom:211.501500px;}
.y9a{bottom:211.950000px;}
.y33{bottom:211.974000px;}
.yc3{bottom:212.847000px;}
.y27b{bottom:213.744000px;}
.ye2{bottom:214.192500px;}
.y308{bottom:215.461500px;}
.y16f{bottom:215.907450px;}
.y62{bottom:216.597000px;}
.y2cb{bottom:219.468000px;}
.y2ff{bottom:220.020000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y193{bottom:225.801000px;}
.y25e{bottom:226.134000px;}
.y110{bottom:228.538500px;}
.y1e6{bottom:229.167000px;}
.y32{bottom:229.863000px;}
.y1ad{bottom:229.884000px;}
.y99{bottom:230.779500px;}
.yc2{bottom:231.676500px;}
.y143{bottom:232.108503px;}
.y27a{bottom:232.573500px;}
.y307{bottom:232.722000px;}
.ye1{bottom:233.022000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y29b{bottom:234.814500px;}
.y61{bottom:235.426500px;}
.y2a7{bottom:236.160000px;}
.y2fe{bottom:237.280500px;}
.y2ca{bottom:243.109500px;}
.y192{bottom:244.630500px;}
.y25d{bottom:244.963500px;}
.y10f{bottom:247.368000px;}
.y1e5{bottom:247.996500px;}
.y1ac{bottom:248.712000px;}
.y98{bottom:249.609000px;}
.y306{bottom:249.982500px;}
.yc1{bottom:250.506000px;}
.y279{bottom:251.403000px;}
.ye0{bottom:251.851500px;}
.y176{bottom:251.907450px;}
.y60{bottom:254.256000px;}
.y2fd{bottom:254.541000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y142{bottom:260.367909px;}
.y191{bottom:263.460000px;}
.y25c{bottom:263.793000px;}
.y10e{bottom:266.197500px;}
.y2c9{bottom:266.749500px;}
.y1e4{bottom:266.826000px;}
.y1ab{bottom:267.541500px;}
.y97{bottom:268.438500px;}
.yc0{bottom:269.335500px;}
.y2a6{bottom:269.784000px;}
.y278{bottom:270.232500px;}
.ydf{bottom:270.681000px;}
.y2fc{bottom:271.801500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y5f{bottom:273.085500px;}
.y190{bottom:282.289500px;}
.y25b{bottom:282.622500px;}
.y10d{bottom:285.027000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y1e3{bottom:285.655500px;}
.y1aa{bottom:286.371000px;}
.y96{bottom:287.268000px;}
.ybf{bottom:288.165000px;}
.y2a5{bottom:288.613500px;}
.y141{bottom:288.627315px;}
.y277{bottom:289.062000px;}
.yde{bottom:289.509000px;}
.y2c8{bottom:290.391000px;}
.y5e{bottom:291.915000px;}
.y31{bottom:297.166500px;}
.y18f{bottom:301.119000px;}
.y25a{bottom:301.452000px;}
.y10c{bottom:303.856500px;}
.y1a9{bottom:305.200500px;}
.y95{bottom:306.097500px;}
.y2fb{bottom:306.321000px;}
.y171{bottom:306.717450px;}
.y2a4{bottom:307.443000px;}
.y276{bottom:307.891500px;}
.ydd{bottom:308.338500px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y5d{bottom:310.744500px;}
.ybe{bottom:311.478000px;}
.y2c7{bottom:314.031000px;}
.y30{bottom:315.054000px;}
.y140{bottom:316.798044px;}
.y18e{bottom:319.948500px;}
.y259{bottom:320.281500px;}
.y10b{bottom:322.686000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y2fa{bottom:323.581500px;}
.y1a8{bottom:324.030000px;}
.y94{bottom:324.927000px;}
.y2a3{bottom:326.272500px;}
.y275{bottom:326.719500px;}
.ydc{bottom:327.168000px;}
.y13b{bottom:328.962000px;}
.y5c{bottom:329.574000px;}
.y2f{bottom:332.943000px;}
.y1e2{bottom:333.433500px;}
.y2c6{bottom:337.672500px;}
.y18d{bottom:338.778000px;}
.y258{bottom:339.111000px;}
.y2f9{bottom:340.842000px;}
.y10a{bottom:341.515500px;}
.y1a7{bottom:342.859500px;}
.y93{bottom:343.756500px;}
.y13f{bottom:345.057450px;}
.ybd{bottom:345.102000px;}
.y274{bottom:345.549000px;}
.ydb{bottom:345.997500px;}
.y1e1{bottom:347.629500px;}
.y13a{bottom:347.791500px;}
.y10{bottom:348.133500px;}
.y5b{bottom:348.403500px;}
.y2e{bottom:350.830500px;}
.y18c{bottom:357.607500px;}
.y257{bottom:357.940500px;}
.y2f8{bottom:358.102500px;}
.y109{bottom:360.345000px;}
.y1de{bottom:360.906000px;}
.y1a6{bottom:361.689000px;}
.y92{bottom:362.586000px;}
.ybc{bottom:363.931500px;}
.y273{bottom:364.378500px;}
.yda{bottom:364.827000px;}
.y139{bottom:366.621000px;}
.y5a{bottom:367.233000px;}
.y1e0{bottom:369.028500px;}
.y2c5{bottom:369.291000px;}
.y20d{bottom:370.211281px;}
.y2f7{bottom:375.363000px;}
.y18b{bottom:376.437000px;}
.y256{bottom:376.770000px;}
.y108{bottom:379.174500px;}
.y2d{bottom:379.179000px;}
.y20c{bottom:379.359652px;}
.y91{bottom:381.415500px;}
.ybb{bottom:382.761000px;}
.y272{bottom:383.208000px;}
.y1df{bottom:383.226000px;}
.yd9{bottom:383.656500px;}
.y1a5{bottom:385.002000px;}
.y138{bottom:385.450500px;}
.y59{bottom:386.062500px;}
.yf{bottom:386.785499px;}
.y2f6{bottom:392.623500px;}
.y18a{bottom:395.266500px;}
.y255{bottom:395.599500px;}
.y107{bottom:398.002500px;}
.y13e{bottom:399.777585px;}
.y90{bottom:400.245000px;}
.yba{bottom:401.589000px;}
.y271{bottom:402.037500px;}
.yd8{bottom:402.486000px;}
.y137{bottom:404.280000px;}
.y1dd{bottom:404.625000px;}
.y58{bottom:404.892000px;}
.y2c{bottom:406.033500px;}
.ye{bottom:408.044999px;}
.y13d{bottom:409.407450px;}
.y2f5{bottom:409.884000px;}
.y189{bottom:414.096000px;}
.y254{bottom:414.429000px;}
.y106{bottom:416.832000px;}
.y1a4{bottom:418.626000px;}
.y1dc{bottom:418.821000px;}
.y8f{bottom:419.074500px;}
.y2c4{bottom:419.845500px;}
.yb9{bottom:420.418500px;}
.y270{bottom:420.867000px;}
.yd7{bottom:421.315500px;}
.y136{bottom:423.109500px;}
.y57{bottom:423.721500px;}
.y2b{bottom:423.921000px;}
.y2f4{bottom:427.144500px;}
.y188{bottom:432.925500px;}
.y253{bottom:433.258500px;}
.y105{bottom:435.661500px;}
.y1a3{bottom:437.455500px;}
.y8e{bottom:437.904000px;}
.yb8{bottom:439.248000px;}
.y26f{bottom:439.696500px;}
.yd6{bottom:440.145000px;}
.y1db{bottom:440.221500px;}
.y2a{bottom:441.810000px;}
.y135{bottom:441.939000px;}
.y2c3{bottom:443.487000px;}
.y2f3{bottom:444.403500px;}
.y56{bottom:447.034500px;}
.y1d7{bottom:447.772500px;}
.y187{bottom:451.755000px;}
.y252{bottom:452.088000px;}
.y1da{bottom:454.417500px;}
.y104{bottom:454.491000px;}
.y1a2{bottom:456.285000px;}
.y8d{bottom:456.733500px;}
.yb7{bottom:458.077500px;}
.y26e{bottom:458.526000px;}
.yd5{bottom:458.974500px;}
.y29{bottom:459.697500px;}
.y134{bottom:460.768500px;}
.y2f2{bottom:461.664000px;}
.y2c2{bottom:467.127000px;}
.y186{bottom:470.584500px;}
.y251{bottom:470.917500px;}
.y103{bottom:473.320500px;}
.y1a1{bottom:475.114500px;}
.y8c{bottom:475.563000px;}
.y1d9{bottom:475.816500px;}
.yb6{bottom:476.907000px;}
.y26d{bottom:477.355500px;}
.y28{bottom:477.585000px;}
.yd4{bottom:477.804000px;}
.y2f1{bottom:478.924500px;}
.y133{bottom:479.598000px;}
.y2c1{bottom:483.565500px;}
.y185{bottom:489.414000px;}
.y250{bottom:489.747000px;}
.y1d8{bottom:490.014000px;}
.y102{bottom:492.150000px;}
.y1a0{bottom:493.944000px;}
.y8b{bottom:494.392500px;}
.y27{bottom:495.474000px;}
.yb5{bottom:495.736500px;}
.y26c{bottom:496.185000px;}
.yd3{bottom:496.633500px;}
.y132{bottom:498.427500px;}
.y20a{bottom:498.963000px;}
.yd{bottom:502.864502px;}
.y2c0{bottom:507.207000px;}
.y184{bottom:508.243500px;}
.y24f{bottom:508.575000px;}
.y101{bottom:510.979500px;}
.y1d6{bottom:511.413000px;}
.y19f{bottom:512.773500px;}
.y8a{bottom:513.222000px;}
.y26{bottom:513.361500px;}
.y2f0{bottom:513.445500px;}
.yb4{bottom:514.566000px;}
.y26b{bottom:515.014500px;}
.yd2{bottom:515.463000px;}
.y131{bottom:517.257000px;}
.y2a2{bottom:519.049500px;}
.y209{bottom:520.362000px;}
.yc{bottom:520.864502px;}
.y55{bottom:522.184500px;}
.y1d5{bottom:525.609000px;}
.y183{bottom:527.073000px;}
.y24e{bottom:527.404500px;}
.y100{bottom:529.809000px;}
.y2ef{bottom:530.706000px;}
.y2bf{bottom:530.847000px;}
.y25{bottom:531.249000px;}
.y19e{bottom:531.603000px;}
.y89{bottom:532.051500px;}
.yb3{bottom:533.395500px;}
.y26a{bottom:533.844000px;}
.yd1{bottom:534.292500px;}
.y130{bottom:536.086500px;}
.yb{bottom:538.864499px;}
.y208{bottom:541.761000px;}
.y182{bottom:545.902500px;}
.y24d{bottom:546.234000px;}
.y1d4{bottom:547.008000px;}
.y2ee{bottom:547.966500px;}
.yff{bottom:548.638500px;}
.y24{bottom:549.138000px;}
.y19d{bottom:550.432500px;}
.y88{bottom:550.881000px;}
.yb2{bottom:552.225000px;}
.y269{bottom:552.673500px;}
.yd0{bottom:553.122000px;}
.y2be{bottom:554.488500px;}
.y12f{bottom:554.916000px;}
.ya{bottom:556.864499px;}
.y54{bottom:559.573500px;}
.y1d3{bottom:561.205500px;}
.y207{bottom:563.160000px;}
.y181{bottom:564.732000px;}
.y24c{bottom:565.063500px;}
.y2ed{bottom:565.227000px;}
.y23{bottom:567.025500px;}
.yfe{bottom:567.468000px;}
.y19c{bottom:569.262000px;}
.y87{bottom:569.710500px;}
.yb1{bottom:571.054500px;}
.y268{bottom:571.503000px;}
.ycf{bottom:571.951500px;}
.y12e{bottom:573.745500px;}
.y1ce{bottom:574.402500px;}
.y2bd{bottom:578.128500px;}
.y53{bottom:579.031500px;}
.y2ec{bottom:582.487500px;}
.y1d2{bottom:582.604500px;}
.y180{bottom:583.561500px;}
.y24b{bottom:583.893000px;}
.y206{bottom:584.559000px;}
.yfd{bottom:586.297500px;}
.y29a{bottom:588.538500px;}
.yb0{bottom:589.884000px;}
.y267{bottom:590.332500px;}
.yce{bottom:590.781000px;}
.y12d{bottom:592.573500px;}
.y86{bottom:593.022000px;}
.y1d1{bottom:596.800500px;}
.y52{bottom:598.488000px;}
.y2eb{bottom:599.746500px;}
.y2bc{bottom:601.770000px;}
.y17f{bottom:602.391000px;}
.y24a{bottom:602.722500px;}
.y205{bottom:605.958000px;}
.y299{bottom:607.368000px;}
.yaf{bottom:608.713500px;}
.y266{bottom:609.162000px;}
.ycd{bottom:609.610500px;}
.y12c{bottom:611.403000px;}
.y19b{bottom:612.748500px;}
.y85{bottom:613.197000px;}
.y2ea{bottom:617.007000px;}
.y51{bottom:617.944500px;}
.y1d0{bottom:618.199500px;}
.y17e{bottom:621.220500px;}
.y249{bottom:621.552000px;}
.y2bb{bottom:625.605000px;}
.y298{bottom:626.197500px;}
.y203{bottom:627.357000px;}
.yae{bottom:627.543000px;}
.y265{bottom:627.991500px;}
.ycc{bottom:628.440000px;}
.y12b{bottom:630.232500px;}
.y1cf{bottom:632.397000px;}
.y2e9{bottom:634.267500px;}
.y202{bottom:634.456500px;}
.y50{bottom:637.402500px;}
.y17d{bottom:640.048500px;}
.y248{bottom:640.381500px;}
.y204{bottom:641.554500px;}
.yfc{bottom:643.234500px;}
.y297{bottom:645.027000px;}
.y9{bottom:645.510000px;}
.yad{bottom:646.372500px;}
.y84{bottom:646.821000px;}
.ycb{bottom:647.269500px;}
.y12a{bottom:649.062000px;}
.y2e8{bottom:651.528000px;}
.y1cd{bottom:653.796000px;}
.y4f{bottom:656.859000px;}
.y2ba{bottom:657.418500px;}
.y17c{bottom:658.878000px;}
.y247{bottom:659.211000px;}
.y296{bottom:663.856500px;}
.yac{bottom:665.202000px;}
.y83{bottom:665.650500px;}
.y8{bottom:666.771000px;}
.y129{bottom:667.891500px;}
.y1cc{bottom:667.993500px;}
.y2e7{bottom:668.788500px;}
.yca{bottom:670.582500px;}
.y201{bottom:674.593500px;}
.y4e{bottom:676.315500px;}
.y17b{bottom:677.707500px;}
.y246{bottom:678.040500px;}
.yfb{bottom:679.996500px;}
.y295{bottom:682.686000px;}
.yab{bottom:684.031500px;}
.y82{bottom:684.480000px;}
.y2e6{bottom:686.049000px;}
.y128{bottom:686.721000px;}
.y1cb{bottom:689.392500px;}
.y4d{bottom:695.773500px;}
.y17a{bottom:696.537000px;}
.y245{bottom:696.870000px;}
.yfa{bottom:698.826000px;}
.y2b9{bottom:700.440000px;}
.y294{bottom:701.515500px;}
.yaa{bottom:702.861000px;}
.y81{bottom:703.309500px;}
.y1ca{bottom:703.588500px;}
.yc9{bottom:704.206500px;}
.y127{bottom:705.550500px;}
.y200{bottom:711.697500px;}
.y4c{bottom:715.230000px;}
.y244{bottom:715.699500px;}
.yf9{bottom:717.655500px;}
.y179{bottom:719.850000px;}
.y293{bottom:720.345000px;}
.y2e5{bottom:720.570000px;}
.ya9{bottom:721.690500px;}
.y80{bottom:722.139000px;}
.y126{bottom:724.380000px;}
.y1c9{bottom:724.987500px;}
.y7{bottom:726.298500px;}
.y1ff{bottom:730.527000px;}
.y243{bottom:734.529000px;}
.y4b{bottom:734.688000px;}
.yf8{bottom:736.485000px;}
.y2b8{bottom:737.202000px;}
.y2e4{bottom:737.829000px;}
.y1c3{bottom:738.184500px;}
.y292{bottom:739.174500px;}
.y1c8{bottom:739.185000px;}
.y178{bottom:740.025000px;}
.ya8{bottom:740.520000px;}
.y7f{bottom:740.968500px;}
.y125{bottom:743.209500px;}
.y1fe{bottom:749.356500px;}
.y3{bottom:752.599495px;}
.y242{bottom:753.358500px;}
.y2e3{bottom:755.089500px;}
.yf7{bottom:755.314500px;}
.y291{bottom:758.004000px;}
.ya7{bottom:759.349500px;}
.y7e{bottom:759.798000px;}
.y1c7{bottom:760.584000px;}
.y124{bottom:762.039000px;}
.y2b7{bottom:763.743000px;}
.y1fd{bottom:768.186000px;}
.y177{bottom:770.452500px;}
.y241{bottom:772.188000px;}
.y2e2{bottom:772.350000px;}
.y4a{bottom:772.660500px;}
.yf6{bottom:774.144000px;}
.y1c6{bottom:774.780000px;}
.y290{bottom:776.833500px;}
.ya6{bottom:778.179000px;}
.y7d{bottom:778.627500px;}
.y123{bottom:780.868500px;}
.y2b6{bottom:781.317000px;}
.y1fb{bottom:787.015500px;}
.y49{bottom:788.799000px;}
.y2e1{bottom:789.610500px;}
.y240{bottom:791.017500px;}
.y1fc{bottom:792.439500px;}
.yf5{bottom:792.973500px;}
.y28f{bottom:795.663000px;}
.y13c{bottom:795.870000px;}
.y1c5{bottom:796.179000px;}
.ya5{bottom:797.008500px;}
.y7c{bottom:797.457000px;}
.y2b5{bottom:798.891000px;}
.y122{bottom:799.698000px;}
.y1fa{bottom:805.845000px;}
.y2e0{bottom:806.871000px;}
.y48{bottom:809.278500px;}
.y23f{bottom:809.847000px;}
.y1c4{bottom:810.376500px;}
.yf4{bottom:811.803000px;}
.y28e{bottom:814.492500px;}
.ya4{bottom:815.838000px;}
.y7b{bottom:816.286500px;}
.y2b4{bottom:816.465000px;}
.y121{bottom:818.527500px;}
.y47{bottom:821.079000px;}
.y2df{bottom:824.131500px;}
.y1f9{bottom:824.674500px;}
.y23e{bottom:828.676500px;}
.yf3{bottom:830.632500px;}
.y1c2{bottom:831.775500px;}
.y28d{bottom:833.322000px;}
.ya3{bottom:834.667500px;}
.y7a{bottom:835.114500px;}
.y120{bottom:837.357000px;}
.y19a{bottom:839.149500px;}
.y2de{bottom:841.392000px;}
.y46{bottom:841.558500px;}
.y2b3{bottom:843.006000px;}
.y1f8{bottom:843.504000px;}
.y1c1{bottom:845.971500px;}
.y23d{bottom:847.506000px;}
.yf2{bottom:849.462000px;}
.y28c{bottom:852.151500px;}
.y45{bottom:853.357500px;}
.ya2{bottom:853.497000px;}
.y79{bottom:853.944000px;}
.y11f{bottom:856.186500px;}
.y2dd{bottom:858.652500px;}
.y1f6{bottom:862.333500px;}
.y23c{bottom:866.335500px;}
.y1c0{bottom:867.370500px;}
.y1f7{bottom:867.757500px;}
.yf1{bottom:868.291500px;}
.y2b2{bottom:869.547000px;}
.y28b{bottom:870.981000px;}
.ya1{bottom:872.326500px;}
.y78{bottom:872.773500px;}
.y44{bottom:873.837000px;}
.y11e{bottom:875.016000px;}
.y2dc{bottom:875.913000px;}
.y2{bottom:879.369000px;}
.y1f5{bottom:881.163000px;}
.y1bf{bottom:881.568000px;}
.y23b{bottom:885.165000px;}
.y43{bottom:885.637500px;}
.yf0{bottom:887.121000px;}
.y28a{bottom:889.810500px;}
.y77{bottom:891.603000px;}
.y2db{bottom:893.172000px;}
.ya0{bottom:895.638000px;}
.y1b8{bottom:895.843500px;}
.y2b1{bottom:896.086500px;}
.y11d{bottom:898.329000px;}
.y1be{bottom:902.967000px;}
.y23a{bottom:903.994500px;}
.y1f4{bottom:904.474500px;}
.yef{bottom:905.950500px;}
.y42{bottom:906.117000px;}
.y289{bottom:908.640000px;}
.y1b7{bottom:910.041000px;}
.y76{bottom:910.432500px;}
.y2b0{bottom:913.660500px;}
.y1bd{bottom:917.164500px;}
.y239{bottom:922.824000px;}
.y1b6{bottom:924.237000px;}
.yee{bottom:924.778500px;}
.y288{bottom:927.469500px;}
.y2da{bottom:927.693000px;}
.y75{bottom:929.262000px;}
.y2af{bottom:931.234500px;}
.y11c{bottom:931.953000px;}
.y1bc{bottom:938.563500px;}
.y238{bottom:941.653500px;}
.yed{bottom:943.608000px;}
.y2d9{bottom:944.953500px;}
.y287{bottom:946.299000px;}
.y74{bottom:948.091500px;}
.y1f3{bottom:949.788000px;}
.y41{bottom:950.181000px;}
.y11b{bottom:950.782500px;}
.y1bb{bottom:952.759500px;}
.y2ae{bottom:957.775500px;}
.y237{bottom:960.483000px;}
.y2d8{bottom:962.214000px;}
.yec{bottom:962.437500px;}
.y286{bottom:965.128500px;}
.y1{bottom:966.726000px;}
.y73{bottom:966.921000px;}
.y40{bottom:969.009000px;}
.y1f2{bottom:973.428000px;}
.y1ba{bottom:974.158500px;}
.y2ad{bottom:975.349500px;}
.y236{bottom:979.312500px;}
.y2d7{bottom:979.474500px;}
.yeb{bottom:981.267000px;}
.y285{bottom:983.958000px;}
.y72{bottom:985.750500px;}
.y11a{bottom:987.544500px;}
.y1b9{bottom:988.356000px;}
.y2ac{bottom:992.923500px;}
.y2d6{bottom:996.735000px;}
.y1f1{bottom:997.069500px;}
.y235{bottom:998.142000px;}
.yea{bottom:1000.096500px;}
.y284{bottom:1002.787500px;}
.y71{bottom:1004.580000px;}
.y119{bottom:1006.374000px;}
.y3f{bottom:1008.363000px;}
.y1b5{bottom:1009.755000px;}
.y2ab{bottom:1010.497500px;}
.y2d5{bottom:1013.995500px;}
.ye9{bottom:1018.926000px;}
.y1f0{bottom:1020.709500px;}
.y234{bottom:1021.453500px;}
.y283{bottom:1021.617000px;}
.y70{bottom:1023.409500px;}
.y2aa{bottom:1028.073000px;}
.y2d4{bottom:1031.254500px;}
.y3e{bottom:1036.606500px;}
.ye8{bottom:1037.755500px;}
.y6f{bottom:1042.239000px;}
.y1b4{bottom:1042.794000px;}
.y118{bottom:1043.136000px;}
.y1ef{bottom:1044.351000px;}
.y282{bottom:1044.928500px;}
.y2a9{bottom:1045.647000px;}
.y2d3{bottom:1048.515000px;}
.ye7{bottom:1056.585000px;}
.y6e{bottom:1061.068500px;}
.y117{bottom:1061.965500px;}
.y2a8{bottom:1063.221000px;}
.y233{bottom:1063.777500px;}
.y3d{bottom:1064.851500px;}
.y281{bottom:1065.103500px;}
.y2d2{bottom:1065.775500px;}
.y1ed{bottom:1067.991000px;}
.ye6{bottom:1075.414500px;}
.y1ec{bottom:1076.211000px;}
.y6d{bottom:1079.898000px;}
.y2d1{bottom:1083.036000px;}
.y1ee{bottom:1084.429500px;}
.y232{bottom:1087.419000px;}
.y3c{bottom:1093.095000px;}
.ye5{bottom:1094.244000px;}
.y6c{bottom:1098.727500px;}
.y2d0{bottom:1100.296500px;}
.y6b{bottom:1117.557000px;}
.y1eb{bottom:1119.037500px;}
.y3a{bottom:1136.581500px;}
.y6a{bottom:1177.662000px;}
.h25{height:31.691498px;}
.h7{height:32.130000px;}
.h10{height:32.565965px;}
.h1d{height:34.574294px;}
.h9{height:37.993262px;}
.h21{height:38.896243px;}
.h1c{height:39.614278px;}
.h22{height:41.250077px;}
.h2a{height:42.054645px;}
.h27{height:42.309976px;}
.h13{height:43.217759px;}
.h11{height:43.421105px;}
.h19{height:43.622227px;}
.hc{height:43.815515px;}
.h17{height:44.268047px;}
.h16{height:44.536816px;}
.h6{height:45.900000px;}
.h29{height:47.718018px;}
.h3{height:48.195000px;}
.h12{height:48.848947px;}
.h2c{height:49.002344px;}
.h1b{height:49.992188px;}
.h18{height:50.229492px;}
.ha{height:50.930649px;}
.h28{height:53.126060px;}
.h14{height:54.276245px;}
.hf{height:54.541601px;}
.he{height:54.547601px;}
.h2{height:55.080000px;}
.h1a{height:55.922168px;}
.h2b{height:57.523262px;}
.h2e{height:61.760947px;}
.h23{height:62.966294px;}
.h24{height:63.115756px;}
.h20{height:71.770243px;}
.h1e{height:71.813105px;}
.h1f{height:71.819105px;}
.hd{height:77.792486px;}
.h5{height:78.030000px;}
.h2d{height:81.728947px;}
.hb{height:87.128261px;}
.h4{height:119.055004px;}
.h26{height:336.297150px;}
.h15{height:336.631500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.247128px;}
.w2{width:637.794021px;}
.w6{width:674.189017px;}
.w5{width:747.760800px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x40{left:-35.966858px;}
.x0{left:0.000000px;}
.xc{left:4.149300px;}
.x12{left:15.309300px;}
.x11{left:17.379300px;}
.x13{left:24.399300px;}
.x5{left:53.574000px;}
.x6{left:58.056593px;}
.x3a{left:62.601000px;}
.x3c{left:63.628500px;}
.x21{left:67.498500px;}
.xb{left:72.364200px;}
.x1f{left:74.103000px;}
.x37{left:75.865500px;}
.x38{left:79.774500px;}
.x22{left:85.125000px;}
.x23{left:86.398500px;}
.x1e{left:88.987500px;}
.x39{left:91.915500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1c{left:110.082000px;}
.x24{left:113.121000px;}
.x3d{left:144.145500px;}
.x42{left:149.824643px;}
.x3e{left:156.967500px;}
.x30{left:164.082000px;}
.x43{left:180.091542px;}
.xd{left:199.719300px;}
.x4{left:203.484001px;}
.x20{left:228.672000px;}
.xe{left:231.579194px;}
.x16{left:245.889300px;}
.x9{left:248.526000px;}
.x7{left:249.591000px;}
.x25{left:259.936500px;}
.x8{left:269.914500px;}
.x4c{left:273.469500px;}
.xa{left:281.479500px;}
.x17{left:289.989300px;}
.x45{left:291.349500px;}
.x18{left:310.689300px;}
.x10{left:313.209300px;}
.x4d{left:314.947500px;}
.x14{left:316.089300px;}
.x44{left:317.932500px;}
.x47{left:319.137000px;}
.x48{left:325.309500px;}
.x4f{left:327.468000px;}
.x4e{left:328.935000px;}
.x50{left:335.208000px;}
.x51{left:336.217500px;}
.x4a{left:338.967000px;}
.x49{left:340.399500px;}
.x31{left:346.983000px;}
.x3f{left:354.120000px;}
.x4b{left:360.594000px;}
.x15{left:361.989300px;}
.x46{left:364.057500px;}
.x27{left:380.319000px;}
.x26{left:384.609000px;}
.x2f{left:390.871500px;}
.x19{left:424.089300px;}
.x32{left:426.714000px;}
.x33{left:431.692500px;}
.x3{left:454.959000px;}
.x29{left:504.438000px;}
.x34{left:507.528000px;}
.x28{left:515.655000px;}
.x1d{left:556.801500px;}
.x36{left:598.405500px;}
.xf{left:599.769300px;}
.x1a{left:611.560500px;}
.x35{left:619.171500px;}
.x2d{left:620.241000px;}
.x1b{left:623.851500px;}
.x2e{left:626.667000px;}
.x2a{left:634.551000px;}
.x41{left:670.348642px;}
.x2c{left:739.620000px;}
.x2b{left:760.546500px;}
.x3b{left:767.731500px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:11.477333pt;}
.v6{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:25.237333pt;}
.v5{vertical-align:29.221333pt;}
.ls60{letter-spacing:-0.263994pt;}
.ls27{letter-spacing:-0.261856pt;}
.ls5e{letter-spacing:-0.203072pt;}
.ls69{letter-spacing:-0.172611pt;}
.ls30{letter-spacing:-0.160320pt;}
.ls34{letter-spacing:-0.149632pt;}
.ls6b{letter-spacing:-0.137074pt;}
.ls37{letter-spacing:-0.133600pt;}
.ls31{letter-spacing:-0.117568pt;}
.ls2c{letter-spacing:-0.106880pt;}
.ls38{letter-spacing:-0.101536pt;}
.ls68{letter-spacing:-0.091382pt;}
.ls33{letter-spacing:-0.090848pt;}
.ls66{letter-spacing:-0.076152pt;}
.ls35{letter-spacing:-0.074816pt;}
.ls28{letter-spacing:-0.069472pt;}
.ls62{letter-spacing:-0.060922pt;}
.ls64{letter-spacing:-0.055845pt;}
.ls2b{letter-spacing:-0.053440pt;}
.ls61{letter-spacing:-0.050768pt;}
.ls63{letter-spacing:-0.035538pt;}
.ls32{letter-spacing:-0.032064pt;}
.ls5f{letter-spacing:-0.030461pt;}
.ls2a{letter-spacing:-0.026720pt;}
.ls5b{letter-spacing:-0.025384pt;}
.ls2f{letter-spacing:-0.021376pt;}
.ls65{letter-spacing:-0.020307pt;}
.ls2e{letter-spacing:-0.016032pt;}
.ls5a{letter-spacing:-0.015230pt;}
.ls59{letter-spacing:-0.013680pt;}
.ls3b{letter-spacing:-0.012800pt;}
.ls2d{letter-spacing:-0.010688pt;}
.ls5d{letter-spacing:-0.010154pt;}
.ls26{letter-spacing:-0.009600pt;}
.ls3a{letter-spacing:-0.006400pt;}
.ls29{letter-spacing:-0.005344pt;}
.ls5c{letter-spacing:-0.005077pt;}
.ls25{letter-spacing:-0.004256pt;}
.ls58{letter-spacing:-0.004043pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000387pt;}
.ls7f{letter-spacing:0.000503pt;}
.ls1{letter-spacing:0.000533pt;}
.ls79{letter-spacing:0.000711pt;}
.ls7c{letter-spacing:0.000921pt;}
.ls7a{letter-spacing:0.001026pt;}
.ls6{letter-spacing:0.001718pt;}
.ls77{letter-spacing:0.002262pt;}
.ls6c{letter-spacing:0.002372pt;}
.ls3f{letter-spacing:0.002473pt;}
.ls7e{letter-spacing:0.002603pt;}
.ls81{letter-spacing:0.003230pt;}
.ls80{letter-spacing:0.003418pt;}
.ls7b{letter-spacing:0.003527pt;}
.ls54{letter-spacing:0.005077pt;}
.ls17{letter-spacing:0.005344pt;}
.ls22{letter-spacing:0.006400pt;}
.ls53{letter-spacing:0.010154pt;}
.ls16{letter-spacing:0.010688pt;}
.ls21{letter-spacing:0.012800pt;}
.ls51{letter-spacing:0.015230pt;}
.ls18{letter-spacing:0.016032pt;}
.ls4c{letter-spacing:0.020307pt;}
.ls48{letter-spacing:0.024259pt;}
.ls4f{letter-spacing:0.025384pt;}
.ls11{letter-spacing:0.025536pt;}
.ls1a{letter-spacing:0.026720pt;}
.ls4b{letter-spacing:0.027360pt;}
.ls14{letter-spacing:0.028800pt;}
.ls1b{letter-spacing:0.032064pt;}
.ls56{letter-spacing:0.035538pt;}
.ls1d{letter-spacing:0.037408pt;}
.ls20{letter-spacing:0.042752pt;}
.ls15{letter-spacing:0.048000pt;}
.ls19{letter-spacing:0.048096pt;}
.ls55{letter-spacing:0.050768pt;}
.ls1f{letter-spacing:0.053440pt;}
.ls52{letter-spacing:0.055845pt;}
.ls1c{letter-spacing:0.058784pt;}
.ls57{letter-spacing:0.060922pt;}
.ls3c{letter-spacing:0.063840pt;}
.ls67{letter-spacing:0.065998pt;}
.ls1e{letter-spacing:0.069472pt;}
.ls36{letter-spacing:0.074816pt;}
.ls39{letter-spacing:0.085504pt;}
.ls6a{letter-spacing:0.086306pt;}
.ls4e{letter-spacing:0.101536pt;}
.ls23{letter-spacing:0.115200pt;}
.ls50{letter-spacing:0.126920pt;}
.ls24{letter-spacing:0.136192pt;}
.ls4d{letter-spacing:0.152304pt;}
.ls4a{letter-spacing:0.153642pt;}
.ls13{letter-spacing:0.157472pt;}
.ls49{letter-spacing:0.161728pt;}
.ls12{letter-spacing:0.170240pt;}
.ls47{letter-spacing:0.509060pt;}
.ls46{letter-spacing:0.514393pt;}
.ls75{letter-spacing:2.656533pt;}
.ls2{letter-spacing:2.657067pt;}
.ls74{letter-spacing:5.542340pt;}
.lsb{letter-spacing:10.626533pt;}
.ls44{letter-spacing:10.627330pt;}
.ls45{letter-spacing:11.138393pt;}
.ls7d{letter-spacing:11.868647pt;}
.ls76{letter-spacing:12.528078pt;}
.ls6e{letter-spacing:12.911530pt;}
.ls6f{letter-spacing:12.964663pt;}
.ls72{letter-spacing:13.124065pt;}
.lsf{letter-spacing:13.177199pt;}
.ls73{letter-spacing:13.230333pt;}
.ls8{letter-spacing:13.283467pt;}
.ls4{letter-spacing:13.283733pt;}
.ls3{letter-spacing:13.284237pt;}
.ls3d{letter-spacing:13.336601pt;}
.ls43{letter-spacing:13.442868pt;}
.lsa{letter-spacing:13.575477pt;}
.ls9{letter-spacing:13.602270pt;}
.ls70{letter-spacing:14.505546pt;}
.ls71{letter-spacing:14.558679pt;}
.ls6d{letter-spacing:14.613867pt;}
.ls78{letter-spacing:14.656920pt;}
.lsd{letter-spacing:14.983750pt;}
.ls42{letter-spacing:15.408821pt;}
.ls10{letter-spacing:16.046428pt;}
.lse{letter-spacing:16.471499pt;}
.ls41{letter-spacing:18.118649pt;}
.ls3e{letter-spacing:25.185453pt;}
.ls40{letter-spacing:30.605107pt;}
.ls5{letter-spacing:55.787733pt;}
.ls7{letter-spacing:57.174803pt;}
.ws82{word-spacing:-53.440000pt;}
.ws81{word-spacing:-13.360000pt;}
.ws80{word-spacing:-13.306560pt;}
.wse{word-spacing:-13.283467pt;}
.ws142{word-spacing:-11.955200pt;}
.ws7d{word-spacing:-10.810240pt;}
.ws7e{word-spacing:-10.640000pt;}
.ws2c{word-spacing:-10.626800pt;}
.wse3{word-spacing:-10.269728pt;}
.wse4{word-spacing:-10.108000pt;}
.wsd{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws95{word-spacing:-3.120896pt;}
.ws94{word-spacing:-2.805600pt;}
.ws96{word-spacing:-2.789568pt;}
.wsd3{word-spacing:-2.762961pt;}
.ws14a{word-spacing:-2.630144pt;}
.ws173{word-spacing:-2.391040pt;}
.wsf2{word-spacing:-2.350558pt;}
.ws174{word-spacing:-2.343219pt;}
.ws104{word-spacing:-2.320098pt;}
.wsc0{word-spacing:-2.239136pt;}
.ws129{word-spacing:-2.231622pt;}
.ws193{word-spacing:-2.199757pt;}
.wsbf{word-spacing:-2.180352pt;}
.wsd1{word-spacing:-2.072221pt;}
.ws162{word-spacing:-2.056294pt;}
.ws9f{word-spacing:-1.865056pt;}
.wsa5{word-spacing:-1.859712pt;}
.ws9d{word-spacing:-1.822304pt;}
.ws10f{word-spacing:-1.807341pt;}
.ws87{word-spacing:-1.806551pt;}
.ws10e{word-spacing:-1.792110pt;}
.ws11f{word-spacing:-1.746419pt;}
.ws120{word-spacing:-1.731189pt;}
.ws9c{word-spacing:-1.726112pt;}
.ws65{word-spacing:-1.647150pt;}
.ws16a{word-spacing:-1.625907pt;}
.ws5d{word-spacing:-1.594016pt;}
.ws141{word-spacing:-1.578086pt;}
.ws69{word-spacing:-1.540882pt;}
.ws92{word-spacing:-1.512352pt;}
.ws118{word-spacing:-1.502733pt;}
.ws93{word-spacing:-1.490976pt;}
.ws128{word-spacing:-1.487748pt;}
.ws9b{word-spacing:-1.464256pt;}
.ws57{word-spacing:-1.434614pt;}
.ws10a{word-spacing:-1.431658pt;}
.ws119{word-spacing:-1.426581pt;}
.ws101{word-spacing:-1.391043pt;}
.ws131{word-spacing:-1.381481pt;}
.ws50{word-spacing:-1.328347pt;}
.ws99{word-spacing:-1.245152pt;}
.ws9a{word-spacing:-1.223776pt;}
.ws85{word-spacing:-1.222079pt;}
.ws5{word-spacing:-1.190195pt;}
.ws122{word-spacing:-1.168945pt;}
.wscd{word-spacing:-1.115811pt;}
.ws102{word-spacing:-1.111819pt;}
.ws103{word-spacing:-1.101666pt;}
.ws109{word-spacing:-1.081358pt;}
.ws63{word-spacing:-1.062677pt;}
.wsd0{word-spacing:-1.009543pt;}
.ws161{word-spacing:-0.956416pt;}
.ws6b{word-spacing:-0.903276pt;}
.ws12a{word-spacing:-0.850142pt;}
.wsd2{word-spacing:-0.743874pt;}
.ws3f{word-spacing:-0.690740pt;}
.ws123{word-spacing:-0.637606pt;}
.wsaa{word-spacing:-0.625248pt;}
.wsa9{word-spacing:-0.593184pt;}
.ws4f{word-spacing:-0.584473pt;}
.ws13f{word-spacing:-0.573850pt;}
.wsec{word-spacing:-0.548294pt;}
.wsed{word-spacing:-0.502603pt;}
.ws154{word-spacing:-0.478208pt;}
.ws46{word-spacing:-0.478205pt;}
.ws10b{word-spacing:-0.451835pt;}
.ws177{word-spacing:-0.430387pt;}
.ws58{word-spacing:-0.425071pt;}
.ws176{word-spacing:-0.382566pt;}
.ws43{word-spacing:-0.371937pt;}
.ws16{word-spacing:-0.334746pt;}
.ws36{word-spacing:-0.318803pt;}
.ws170{word-spacing:-0.286925pt;}
.ws37{word-spacing:-0.265669pt;}
.ws8a{word-spacing:-0.246848pt;}
.ws13a{word-spacing:-0.239104pt;}
.wse6{word-spacing:-0.234506pt;}
.ws111{word-spacing:-0.228456pt;}
.wsa6{word-spacing:-0.213760pt;}
.ws1e{word-spacing:-0.212535pt;}
.ws110{word-spacing:-0.208149pt;}
.wseb{word-spacing:-0.203072pt;}
.ws107{word-spacing:-0.197995pt;}
.ws156{word-spacing:-0.191283pt;}
.ws1f{word-spacing:-0.159402pt;}
.ws137{word-spacing:-0.143462pt;}
.ws39{word-spacing:-0.106268pt;}
.ws15d{word-spacing:-0.095642pt;}
.ws8b{word-spacing:-0.072352pt;}
.wse7{word-spacing:-0.068734pt;}
.ws7f{word-spacing:-0.053440pt;}
.wsc{word-spacing:-0.053134pt;}
.wse5{word-spacing:-0.050768pt;}
.ws13b{word-spacing:-0.047821pt;}
.ws2{word-spacing:-0.037194pt;}
.ws186{word-spacing:-0.011682pt;}
.ws190{word-spacing:-0.009250pt;}
.ws18c{word-spacing:-0.009190pt;}
.ws192{word-spacing:-0.009045pt;}
.ws163{word-spacing:-0.008994pt;}
.ws17a{word-spacing:-0.008269pt;}
.ws15f{word-spacing:-0.007535pt;}
.ws152{word-spacing:-0.007526pt;}
.ws15b{word-spacing:-0.007501pt;}
.ws178{word-spacing:-0.007467pt;}
.ws159{word-spacing:-0.007031pt;}
.ws18b{word-spacing:-0.006921pt;}
.ws168{word-spacing:-0.005649pt;}
.ws16f{word-spacing:-0.004267pt;}
.ws15e{word-spacing:-0.003081pt;}
.ws165{word-spacing:-0.002935pt;}
.ws194{word-spacing:-0.001502pt;}
.ws2b{word-spacing:-0.000398pt;}
.ws0{word-spacing:0.000000pt;}
.ws90{word-spacing:0.026720pt;}
.ws15c{word-spacing:0.047821pt;}
.ws2f{word-spacing:0.053134pt;}
.ws100{word-spacing:0.076152pt;}
.wsd7{word-spacing:0.085014pt;}
.ws11{word-spacing:0.095642pt;}
.wsb7{word-spacing:0.101536pt;}
.ws34{word-spacing:0.106268pt;}
.ws8e{word-spacing:0.115200pt;}
.ws108{word-spacing:0.116766pt;}
.wsd8{word-spacing:0.127522pt;}
.wse9{word-spacing:0.127680pt;}
.ws8d{word-spacing:0.134400pt;}
.ws17{word-spacing:0.143462pt;}
.ws91{word-spacing:0.154976pt;}
.ws1c{word-spacing:0.159402pt;}
.wsea{word-spacing:0.168720pt;}
.ws117{word-spacing:0.172611pt;}
.ws8f{word-spacing:0.172800pt;}
.ws150{word-spacing:0.191283pt;}
.ws35{word-spacing:0.212535pt;}
.ws17f{word-spacing:0.234914pt;}
.ws14c{word-spacing:0.239104pt;}
.ws29{word-spacing:0.265669pt;}
.wsef{word-spacing:0.284301pt;}
.ws13c{word-spacing:0.286925pt;}
.ws62{word-spacing:0.318803pt;}
.ws184{word-spacing:0.334746pt;}
.wsf7{word-spacing:0.370606pt;}
.ws40{word-spacing:0.371937pt;}
.ws14f{word-spacing:0.382566pt;}
.wsee{word-spacing:0.390914pt;}
.ws4a{word-spacing:0.425071pt;}
.wsf8{word-spacing:0.436605pt;}
.ws3a{word-spacing:0.478205pt;}
.ws19{word-spacing:0.478208pt;}
.ws17e{word-spacing:0.573850pt;}
.ws25{word-spacing:0.584473pt;}
.ws151{word-spacing:0.621670pt;}
.wsfa{word-spacing:0.634600pt;}
.ws2d{word-spacing:0.637606pt;}
.wsf9{word-spacing:0.665061pt;}
.ws113{word-spacing:0.695522pt;}
.ws14{word-spacing:0.717312pt;}
.ws7a{word-spacing:0.743874pt;}
.ws138{word-spacing:0.765133pt;}
.ws83{word-spacing:0.797008pt;}
.ws18a{word-spacing:0.812954pt;}
.ws149{word-spacing:0.860774pt;}
.ws38{word-spacing:0.903276pt;}
.ws157{word-spacing:0.908595pt;}
.ws18e{word-spacing:0.914816pt;}
.wsc8{word-spacing:0.956410pt;}
.ws15{word-spacing:1.004237pt;}
.ws32{word-spacing:1.009543pt;}
.ws97{word-spacing:1.031392pt;}
.wsa0{word-spacing:1.036736pt;}
.ws33{word-spacing:1.062677pt;}
.ws9e{word-spacing:1.063456pt;}
.wsa1{word-spacing:1.068800pt;}
.ws98{word-spacing:1.074144pt;}
.wsc6{word-spacing:1.115811pt;}
.ws4e{word-spacing:1.168945pt;}
.ws26{word-spacing:1.222079pt;}
.wsb{word-spacing:1.227389pt;}
.ws13e{word-spacing:1.243341pt;}
.ws53{word-spacing:1.275213pt;}
.ws4b{word-spacing:1.328347pt;}
.ws172{word-spacing:1.338982pt;}
.wsb2{word-spacing:1.373408pt;}
.ws41{word-spacing:1.381481pt;}
.ws64{word-spacing:1.434614pt;}
.ws169{word-spacing:1.434624pt;}
.wsb1{word-spacing:1.442880pt;}
.ws158{word-spacing:1.482445pt;}
.wsab{word-spacing:1.485632pt;}
.ws134{word-spacing:1.487748pt;}
.ws61{word-spacing:1.540882pt;}
.ws115{word-spacing:1.578885pt;}
.ws11a{word-spacing:1.583962pt;}
.ws3e{word-spacing:1.594016pt;}
.ws114{word-spacing:1.614422pt;}
.wsb8{word-spacing:1.624576pt;}
.ws5b{word-spacing:1.647150pt;}
.ws116{word-spacing:1.665190pt;}
.ws18{word-spacing:1.673728pt;}
.wsbe{word-spacing:1.683360pt;}
.ws45{word-spacing:1.700284pt;}
.ws16d{word-spacing:1.721549pt;}
.ws5f{word-spacing:1.753418pt;}
.ws164{word-spacing:1.769370pt;}
.ws3b{word-spacing:1.806551pt;}
.ws18d{word-spacing:1.817190pt;}
.ws11c{word-spacing:1.817494pt;}
.ws21{word-spacing:1.859685pt;}
.ws175{word-spacing:1.865011pt;}
.ws66{word-spacing:1.912819pt;}
.wsf3{word-spacing:1.913954pt;}
.ws11b{word-spacing:1.934261pt;}
.ws2e{word-spacing:1.965953pt;}
.ws70{word-spacing:2.019087pt;}
.wsbd{word-spacing:2.020032pt;}
.ws11d{word-spacing:2.040874pt;}
.ws181{word-spacing:2.056294pt;}
.ws5a{word-spacing:2.072221pt;}
.ws17c{word-spacing:2.104115pt;}
.wsf4{word-spacing:2.106872pt;}
.ws56{word-spacing:2.125355pt;}
.ws160{word-spacing:2.151936pt;}
.ws6f{word-spacing:2.178489pt;}
.wsfb{word-spacing:2.198254pt;}
.ws49{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.wsfc{word-spacing:2.259176pt;}
.wsfd{word-spacing:2.269330pt;}
.ws48{word-spacing:2.284756pt;}
.wsa3{word-spacing:2.292576pt;}
.ws139{word-spacing:2.295398pt;}
.wsc7{word-spacing:2.391024pt;}
.ws88{word-spacing:2.444158pt;}
.wsa4{word-spacing:2.484960pt;}
.ws16e{word-spacing:2.486682pt;}
.ws24{word-spacing:2.497292pt;}
.ws5c{word-spacing:2.550426pt;}
.wsf{word-spacing:2.550432pt;}
.wsad{word-spacing:2.591840pt;}
.ws12e{word-spacing:2.603559pt;}
.wsb9{word-spacing:2.634592pt;}
.wsba{word-spacing:2.650624pt;}
.ws3c{word-spacing:2.656693pt;}
.wsac{word-spacing:2.677344pt;}
.ws15a{word-spacing:2.677965pt;}
.ws16c{word-spacing:2.725786pt;}
.ws59{word-spacing:2.762961pt;}
.ws112{word-spacing:2.782086pt;}
.ws4d{word-spacing:2.816095pt;}
.ws167{word-spacing:2.859895pt;}
.ws1a{word-spacing:2.861926pt;}
.ws171{word-spacing:2.861943pt;}
.ws14d{word-spacing:2.862293pt;}
.ws179{word-spacing:2.864205pt;}
.ws182{word-spacing:2.865971pt;}
.ws14e{word-spacing:2.869248pt;}
.wsfe{word-spacing:2.878546pt;}
.ws188{word-spacing:2.917069pt;}
.wsce{word-spacing:2.922363pt;}
.ws42{word-spacing:2.975497pt;}
.ws10{word-spacing:2.975774pt;}
.ws140{word-spacing:3.013736pt;}
.ws124{word-spacing:3.028630pt;}
.ws14b{word-spacing:3.060531pt;}
.ws78{word-spacing:3.081764pt;}
.wsf0{word-spacing:3.096848pt;}
.ws195{word-spacing:3.108352pt;}
.ws121{word-spacing:3.134898pt;}
.wsff{word-spacing:3.147616pt;}
.ws180{word-spacing:3.156173pt;}
.ws1b{word-spacing:3.188032pt;}
.wsa2{word-spacing:3.227776pt;}
.ws20{word-spacing:3.241166pt;}
.wsb0{word-spacing:3.243808pt;}
.wsb6{word-spacing:3.281216pt;}
.ws76{word-spacing:3.294300pt;}
.wsae{word-spacing:3.377408pt;}
.ws155{word-spacing:3.395277pt;}
.wsaf{word-spacing:3.436192pt;}
.wsf1{word-spacing:3.452224pt;}
.ws5e{word-spacing:3.453701pt;}
.ws2a{word-spacing:3.506835pt;}
.ws18f{word-spacing:3.538739pt;}
.ws55{word-spacing:3.559969pt;}
.wsc1{word-spacing:3.569792pt;}
.wsc2{word-spacing:3.596512pt;}
.ws125{word-spacing:3.613103pt;}
.ws6c{word-spacing:3.666237pt;}
.ws22{word-spacing:3.719371pt;}
.ws3d{word-spacing:3.772505pt;}
.ws12{word-spacing:3.777843pt;}
.ws6e{word-spacing:3.825638pt;}
.wsb3{word-spacing:3.853024pt;}
.ws89{word-spacing:3.878772pt;}
.wscc{word-spacing:3.931906pt;}
.ws47{word-spacing:3.985040pt;}
.ws17b{word-spacing:4.016947pt;}
.ws130{word-spacing:4.038174pt;}
.wsb4{word-spacing:4.061440pt;}
.ws44{word-spacing:4.091308pt;}
.ws127{word-spacing:4.144442pt;}
.ws12f{word-spacing:4.197575pt;}
.wsbc{word-spacing:4.216416pt;}
.ws7c{word-spacing:4.250709pt;}
.ws166{word-spacing:4.256051pt;}
.ws77{word-spacing:4.303843pt;}
.wsbb{word-spacing:4.350016pt;}
.ws31{word-spacing:4.356977pt;}
.ws16b{word-spacing:4.399514pt;}
.wsc5{word-spacing:4.410111pt;}
.ws84{word-spacing:4.516379pt;}
.wsb5{word-spacing:4.563776pt;}
.ws135{word-spacing:4.569513pt;}
.ws75{word-spacing:4.622646pt;}
.ws79{word-spacing:4.675780pt;}
.ws17d{word-spacing:4.829901pt;}
.wsd4{word-spacing:4.835182pt;}
.ws9{word-spacing:4.872362pt;}
.ws183{word-spacing:4.877722pt;}
.ws133{word-spacing:4.888316pt;}
.ws6a{word-spacing:4.941450pt;}
.ws187{word-spacing:4.973363pt;}
.ws7b{word-spacing:4.994583pt;}
.ws132{word-spacing:5.047717pt;}
.ws126{word-spacing:5.100851pt;}
.ws153{word-spacing:5.116826pt;}
.ws68{word-spacing:5.207119pt;}
.wsf6{word-spacing:5.208797pt;}
.ws12b{word-spacing:5.260253pt;}
.ws185{word-spacing:5.260288pt;}
.wsf5{word-spacing:5.279872pt;}
.ws52{word-spacing:5.366521pt;}
.ws51{word-spacing:5.419654pt;}
.ws13d{word-spacing:5.497515pt;}
.ws105{word-spacing:5.569250pt;}
.ws54{word-spacing:5.632190pt;}
.ws28{word-spacing:5.685324pt;}
.ws30{word-spacing:5.844725pt;}
.ws106{word-spacing:5.894165pt;}
.ws12c{word-spacing:6.110395pt;}
.ws11e{word-spacing:6.112467pt;}
.ws4c{word-spacing:6.163529pt;}
.ws6d{word-spacing:6.269796pt;}
.ws13{word-spacing:6.312346pt;}
.ws1d{word-spacing:6.322930pt;}
.ws72{word-spacing:6.376064pt;}
.ws10c{word-spacing:6.467843pt;}
.ws10d{word-spacing:6.483074pt;}
.ws23{word-spacing:6.535466pt;}
.wsdc{word-spacing:6.694867pt;}
.ws86{word-spacing:7.066804pt;}
.wsd9{word-spacing:7.119938pt;}
.ws136{word-spacing:7.173072pt;}
.wsc3{word-spacing:7.219744pt;}
.wsc4{word-spacing:7.235776pt;}
.wsca{word-spacing:7.810678pt;}
.wsc9{word-spacing:7.863812pt;}
.ws12d{word-spacing:8.076348pt;}
.ws7{word-spacing:8.740496pt;}
.ws189{word-spacing:8.942490pt;}
.ws67{word-spacing:9.351561pt;}
.ws27{word-spacing:9.457828pt;}
.wse8{word-spacing:9.808803pt;}
.ws191{word-spacing:9.851085pt;}
.ws8c{word-spacing:10.329312pt;}
.wsa8{word-spacing:10.340640pt;}
.wsa7{word-spacing:10.399424pt;}
.ws8{word-spacing:10.525789pt;}
.wscb{word-spacing:11.476915pt;}
.ws4{word-spacing:13.761632pt;}
.wsa{word-spacing:14.282342pt;}
.wscf{word-spacing:14.452412pt;}
.ws74{word-spacing:16.286551pt;}
.ws73{word-spacing:16.294369pt;}
.ws60{word-spacing:16.466956pt;}
.ws6{word-spacing:19.857270pt;}
.ws71{word-spacing:35.787709pt;}
.wsd6{word-spacing:100.402006pt;}
.wsd5{word-spacing:122.080678pt;}
.wsdf{word-spacing:123.823474pt;}
.wsde{word-spacing:141.889622pt;}
.wse0{word-spacing:142.254667pt;}
.wse2{word-spacing:177.212517pt;}
.wse1{word-spacing:178.657762pt;}
.wsda{word-spacing:265.021884pt;}
.wsdb{word-spacing:307.152998pt;}
.wsdd{word-spacing:441.393710pt;}
.ws148{word-spacing:492.649882pt;}
.ws146{word-spacing:560.364134pt;}
.ws145{word-spacing:565.576602pt;}
.ws147{word-spacing:578.870784pt;}
.ws143{word-spacing:777.320550pt;}
.ws144{word-spacing:852.767505pt;}
._1a{margin-left:-20.354714pt;}
._57{margin-left:-18.585462pt;}
._54{margin-left:-16.795726pt;}
._58{margin-left:-9.473418pt;}
._14{margin-left:-6.323047pt;}
._2{margin-left:-5.169910pt;}
._7{margin-left:-3.459051pt;}
._17{margin-left:-1.859685pt;}
._1{margin-left:-0.929840pt;}
._1b{width:1.034208pt;}
._6{width:2.661136pt;}
._15{width:4.543060pt;}
._43{width:9.504555pt;}
._0{width:11.232467pt;}
._48{width:12.284620pt;}
._10{width:13.175632pt;}
._a{width:14.920090pt;}
._53{width:15.839313pt;}
._8{width:16.737280pt;}
._d{width:17.672135pt;}
._13{width:18.809389pt;}
._b{width:20.509673pt;}
._55{width:21.461168pt;}
._3{width:22.502128pt;}
._e{width:24.154690pt;}
._9{width:25.966694pt;}
._4{width:27.783619pt;}
._5{width:29.648896pt;}
._56{width:30.574290pt;}
._19{width:31.588081pt;}
._18{width:33.049265pt;}
._f{width:33.952541pt;}
._16{width:35.599691pt;}
._c{width:36.742066pt;}
._33{width:37.671911pt;}
._1d{width:38.575305pt;}
._40{width:109.653781pt;}
._41{width:130.551228pt;}
._1f{width:138.190907pt;}
._20{width:144.099408pt;}
._3a{width:172.410803pt;}
._3e{width:185.203870pt;}
._3b{width:187.839317pt;}
._3c{width:207.052571pt;}
._3d{width:226.223318pt;}
._3f{width:229.455466pt;}
._35{width:233.508966pt;}
._38{width:281.234125pt;}
._36{width:286.303130pt;}
._39{width:288.125741pt;}
._37{width:319.156019pt;}
._2d{width:327.811738pt;}
._50{width:329.246208pt;}
._32{width:354.835686pt;}
._1e{width:377.761486pt;}
._27{width:382.820839pt;}
._45{width:387.013734pt;}
._28{width:392.342452pt;}
._4f{width:398.968934pt;}
._2b{width:410.743285pt;}
._30{width:429.860894pt;}
._46{width:443.920486pt;}
._44{width:489.971917pt;}
._4e{width:506.109986pt;}
._29{width:507.319644pt;}
._31{width:514.832787pt;}
._51{width:542.144410pt;}
._4d{width:555.689497pt;}
._25{width:557.510015pt;}
._2e{width:581.074420pt;}
._47{width:590.825984pt;}
._21{width:592.886637pt;}
._2c{width:599.464622pt;}
._52{width:603.450675pt;}
._2f{width:638.033749pt;}
._11{width:643.431486pt;}
._2a{width:671.567465pt;}
._22{width:714.701641pt;}
._49{width:716.451226pt;}
._4a{width:739.261747pt;}
._4c{width:786.986906pt;}
._4b{width:792.055910pt;}
._26{width:817.154625pt;}
._23{width:843.625979pt;}
._24{width:891.616607pt;}
._42{width:1745.005539pt;}
._1c{width:1858.033408pt;}
._34{width:2222.978667pt;}
._12{width:2244.232000pt;}
.fsa{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.381867pt;}
.fs12{font-size:40.432000pt;}
.fsb{font-size:42.507200pt;}
.fsd{font-size:42.560000pt;}
.fs11{font-size:44.292800pt;}
.fs14{font-size:45.600000pt;}
.fsc{font-size:47.820800pt;}
.fsf{font-size:48.000000pt;}
.fs15{font-size:49.829333pt;}
.fs13{font-size:50.768000pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fse{font-size:53.440000pt;}
.fs10{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.fs6{font-size:114.229120pt;}
.y16c{bottom:-588.550283pt;}
.y16b{bottom:-571.430779pt;}
.y230{bottom:-568.545041pt;}
.y16a{bottom:-554.391435pt;}
.y22f{bottom:-552.281512pt;}
.y169{bottom:-537.271931pt;}
.y22e{bottom:-536.017983pt;}
.y168{bottom:-520.232587pt;}
.y22d{bottom:-519.830606pt;}
.y22c{bottom:-503.567078pt;}
.y167{bottom:-503.113083pt;}
.y22b{bottom:-487.379701pt;}
.y166{bottom:-485.993579pt;}
.y22a{bottom:-471.116172pt;}
.y165{bottom:-468.954235pt;}
.y229{bottom:-454.852643pt;}
.y164{bottom:-451.834731pt;}
.y228{bottom:-438.663997pt;}
.y163{bottom:-434.715227pt;}
.y227{bottom:-422.400468pt;}
.y162{bottom:-417.675883pt;}
.y226{bottom:-406.213092pt;}
.y161{bottom:-400.556379pt;}
.y225{bottom:-389.949563pt;}
.y160{bottom:-383.517035pt;}
.y224{bottom:-373.686034pt;}
.y15f{bottom:-366.397531pt;}
.y223{bottom:-357.498657pt;}
.y15e{bottom:-349.278027pt;}
.y222{bottom:-341.235128pt;}
.y15d{bottom:-332.238683pt;}
.y221{bottom:-324.971600pt;}
.y15c{bottom:-315.119179pt;}
.y220{bottom:-308.784223pt;}
.y15b{bottom:-298.079835pt;}
.y21f{bottom:-292.520694pt;}
.y15a{bottom:-280.960331pt;}
.y21e{bottom:-276.333317pt;}
.y159{bottom:-263.840827pt;}
.y21d{bottom:-260.069788pt;}
.y158{bottom:-246.800147pt;}
.y21c{bottom:-243.806260pt;}
.y157{bottom:-229.680643pt;}
.y21b{bottom:-227.617614pt;}
.y156{bottom:-212.639963pt;}
.y21a{bottom:-211.354085pt;}
.y155{bottom:-195.520459pt;}
.y219{bottom:-195.166708pt;}
.y218{bottom:-178.903179pt;}
.y154{bottom:-178.400955pt;}
.y217{bottom:-162.639650pt;}
.y153{bottom:-161.360275pt;}
.y216{bottom:-146.452274pt;}
.y152{bottom:-144.240771pt;}
.y215{bottom:-130.188745pt;}
.y151{bottom:-127.121267pt;}
.y214{bottom:-114.001368pt;}
.y150{bottom:-110.081923pt;}
.y213{bottom:-97.737839pt;}
.y14f{bottom:-92.962419pt;}
.y212{bottom:-81.474310pt;}
.y14e{bottom:-71.921755pt;}
.y211{bottom:-65.286934pt;}
.y14d{bottom:-50.802267pt;}
.y210{bottom:-45.223420pt;}
.y14c{bottom:-18.082267pt;}
.y20f{bottom:-14.139420pt;}
.y0{bottom:0.000000pt;}
.y20e{bottom:4.860580pt;}
.y14b{bottom:5.600701pt;}
.y3b{bottom:14.848190pt;}
.y16e{bottom:19.917733pt;}
.y69{bottom:28.346667pt;}
.y14a{bottom:30.720173pt;}
.y6{bottom:31.933340pt;}
.y149{bottom:55.839645pt;}
.y5{bottom:59.133337pt;}
.y172{bottom:74.797733pt;}
.y148{bottom:80.878957pt;}
.y4{bottom:86.333337pt;}
.y68{bottom:92.108000pt;}
.y39{bottom:93.018667pt;}
.y231{bottom:94.938667pt;}
.y173{bottom:98.317733pt;}
.y199{bottom:100.289333pt;}
.y264{bottom:100.584000pt;}
.y116{bottom:102.721333pt;}
.y305{bottom:103.518667pt;}
.y1b3{bottom:103.917333pt;}
.y2a1{bottom:104.316000pt;}
.y9f{bottom:104.713333pt;}
.yc8{bottom:105.510667pt;}
.y147{bottom:105.998429pt;}
.y280{bottom:106.308000pt;}
.y2cf{bottom:107.449333pt;}
.y174{bottom:107.917733pt;}
.y170{bottom:108.637733pt;}
.y67{bottom:108.844000pt;}
.y38{bottom:108.920000pt;}
.y198{bottom:117.025333pt;}
.y263{bottom:117.321333pt;}
.y20b{bottom:117.533333pt;}
.y304{bottom:118.861333pt;}
.y115{bottom:119.458667pt;}
.y1b2{bottom:120.654667pt;}
.y2a0{bottom:121.053333pt;}
.y9e{bottom:121.450667pt;}
.yc7{bottom:122.248000pt;}
.y2ce{bottom:122.792000pt;}
.y27f{bottom:123.045333pt;}
.y22{bottom:123.790666pt;}
.y37{bottom:124.820000pt;}
.y66{bottom:125.581333pt;}
.y146{bottom:131.117901pt;}
.y197{bottom:133.762667pt;}
.y262{bottom:134.058667pt;}
.y303{bottom:134.202667pt;}
.y114{bottom:136.196000pt;}
.y1ea{bottom:136.754667pt;}
.y1b1{bottom:137.392000pt;}
.y29f{bottom:137.789333pt;}
.y2cd{bottom:138.134667pt;}
.y9d{bottom:138.188000pt;}
.yc6{bottom:138.985333pt;}
.y27e{bottom:139.782667pt;}
.y36{bottom:140.720000pt;}
.ye4{bottom:140.978667pt;}
.y65{bottom:142.318667pt;}
.y302{bottom:149.545333pt;}
.y196{bottom:150.500000pt;}
.y261{bottom:150.796000pt;}
.y113{bottom:152.933333pt;}
.y1e9{bottom:153.492000pt;}
.y1b0{bottom:154.129333pt;}
.y29e{bottom:154.526667pt;}
.y9c{bottom:154.925333pt;}
.yc5{bottom:155.722667pt;}
.y145{bottom:156.158549pt;}
.y27d{bottom:156.520000pt;}
.y35{bottom:156.621333pt;}
.y2cc{bottom:157.462667pt;}
.y64{bottom:159.056000pt;}
.y301{bottom:164.888000pt;}
.y195{bottom:167.237333pt;}
.y260{bottom:167.533333pt;}
.y112{bottom:169.670667pt;}
.y1e8{bottom:170.229333pt;}
.y175{bottom:170.317733pt;}
.y1af{bottom:170.866667pt;}
.y29d{bottom:171.264000pt;}
.y9b{bottom:171.662667pt;}
.yc4{bottom:172.460000pt;}
.y34{bottom:172.521333pt;}
.y27c{bottom:173.257333pt;}
.ye3{bottom:173.656000pt;}
.y19{bottom:175.052000pt;}
.y63{bottom:175.793333pt;}
.y300{bottom:180.230667pt;}
.y144{bottom:181.278021pt;}
.y16d{bottom:181.437733pt;}
.y194{bottom:183.974667pt;}
.y25f{bottom:184.270667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y111{bottom:186.408000pt;}
.y1e7{bottom:186.966667pt;}
.y1ae{bottom:187.604000pt;}
.y29c{bottom:188.001333pt;}
.y9a{bottom:188.400000pt;}
.y33{bottom:188.421333pt;}
.yc3{bottom:189.197333pt;}
.y27b{bottom:189.994667pt;}
.ye2{bottom:190.393333pt;}
.y308{bottom:191.521333pt;}
.y16f{bottom:191.917733pt;}
.y62{bottom:192.530667pt;}
.y2cb{bottom:195.082667pt;}
.y2ff{bottom:195.573333pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y193{bottom:200.712000pt;}
.y25e{bottom:201.008000pt;}
.y110{bottom:203.145333pt;}
.y1e6{bottom:203.704000pt;}
.y32{bottom:204.322667pt;}
.y1ad{bottom:204.341333pt;}
.y99{bottom:205.137333pt;}
.yc2{bottom:205.934667pt;}
.y143{bottom:206.318669pt;}
.y27a{bottom:206.732000pt;}
.y307{bottom:206.864000pt;}
.ye1{bottom:207.130667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y29b{bottom:208.724000pt;}
.y61{bottom:209.268000pt;}
.y2a7{bottom:209.920000pt;}
.y2fe{bottom:210.916000pt;}
.y2ca{bottom:216.097333pt;}
.y192{bottom:217.449333pt;}
.y25d{bottom:217.745333pt;}
.y10f{bottom:219.882667pt;}
.y1e5{bottom:220.441333pt;}
.y1ac{bottom:221.077333pt;}
.y98{bottom:221.874667pt;}
.y306{bottom:222.206667pt;}
.yc1{bottom:222.672000pt;}
.y279{bottom:223.469333pt;}
.ye0{bottom:223.868000pt;}
.y176{bottom:223.917733pt;}
.y60{bottom:226.005333pt;}
.y2fd{bottom:226.258667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y142{bottom:231.438141pt;}
.y191{bottom:234.186667pt;}
.y25c{bottom:234.482667pt;}
.y10e{bottom:236.620000pt;}
.y2c9{bottom:237.110667pt;}
.y1e4{bottom:237.178667pt;}
.y1ab{bottom:237.814667pt;}
.y97{bottom:238.612000pt;}
.yc0{bottom:239.409333pt;}
.y2a6{bottom:239.808000pt;}
.y278{bottom:240.206667pt;}
.ydf{bottom:240.605333pt;}
.y2fc{bottom:241.601333pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y5f{bottom:242.742667pt;}
.y190{bottom:250.924000pt;}
.y25b{bottom:251.220000pt;}
.y10d{bottom:253.357333pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y1e3{bottom:253.916000pt;}
.y1aa{bottom:254.552000pt;}
.y96{bottom:255.349333pt;}
.ybf{bottom:256.146667pt;}
.y2a5{bottom:256.545333pt;}
.y141{bottom:256.557613pt;}
.y277{bottom:256.944000pt;}
.yde{bottom:257.341333pt;}
.y2c8{bottom:258.125333pt;}
.y5e{bottom:259.480000pt;}
.y31{bottom:264.148000pt;}
.y18f{bottom:267.661333pt;}
.y25a{bottom:267.957333pt;}
.y10c{bottom:270.094667pt;}
.y1a9{bottom:271.289333pt;}
.y95{bottom:272.086667pt;}
.y2fb{bottom:272.285333pt;}
.y171{bottom:272.637733pt;}
.y2a4{bottom:273.282667pt;}
.y276{bottom:273.681333pt;}
.ydd{bottom:274.078667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y5d{bottom:276.217333pt;}
.ybe{bottom:276.869333pt;}
.y2c7{bottom:279.138667pt;}
.y30{bottom:280.048000pt;}
.y140{bottom:281.598261pt;}
.y18e{bottom:284.398667pt;}
.y259{bottom:284.694667pt;}
.y10b{bottom:286.832000pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y2fa{bottom:287.628000pt;}
.y1a8{bottom:288.026667pt;}
.y94{bottom:288.824000pt;}
.y2a3{bottom:290.020000pt;}
.y275{bottom:290.417333pt;}
.ydc{bottom:290.816000pt;}
.y13b{bottom:292.410667pt;}
.y5c{bottom:292.954667pt;}
.y2f{bottom:295.949333pt;}
.y1e2{bottom:296.385333pt;}
.y2c6{bottom:300.153333pt;}
.y18d{bottom:301.136000pt;}
.y258{bottom:301.432000pt;}
.y2f9{bottom:302.970667pt;}
.y10a{bottom:303.569333pt;}
.y1a7{bottom:304.764000pt;}
.y93{bottom:305.561333pt;}
.y13f{bottom:306.717733pt;}
.ybd{bottom:306.757333pt;}
.y274{bottom:307.154667pt;}
.ydb{bottom:307.553333pt;}
.y1e1{bottom:309.004000pt;}
.y13a{bottom:309.148000pt;}
.y10{bottom:309.452000pt;}
.y5b{bottom:309.692000pt;}
.y2e{bottom:311.849333pt;}
.y18c{bottom:317.873333pt;}
.y257{bottom:318.169333pt;}
.y2f8{bottom:318.313333pt;}
.y109{bottom:320.306667pt;}
.y1de{bottom:320.805333pt;}
.y1a6{bottom:321.501333pt;}
.y92{bottom:322.298667pt;}
.ybc{bottom:323.494667pt;}
.y273{bottom:323.892000pt;}
.yda{bottom:324.290667pt;}
.y139{bottom:325.885333pt;}
.y5a{bottom:326.429333pt;}
.y1e0{bottom:328.025333pt;}
.y2c5{bottom:328.258667pt;}
.y20d{bottom:329.076694pt;}
.y2f7{bottom:333.656000pt;}
.y18b{bottom:334.610667pt;}
.y256{bottom:334.906667pt;}
.y108{bottom:337.044000pt;}
.y2d{bottom:337.048000pt;}
.y20c{bottom:337.208580pt;}
.y91{bottom:339.036000pt;}
.ybb{bottom:340.232000pt;}
.y272{bottom:340.629333pt;}
.y1df{bottom:340.645333pt;}
.yd9{bottom:341.028000pt;}
.y1a5{bottom:342.224000pt;}
.y138{bottom:342.622667pt;}
.y59{bottom:343.166667pt;}
.yf{bottom:343.809333pt;}
.y2f6{bottom:348.998667pt;}
.y18a{bottom:351.348000pt;}
.y255{bottom:351.644000pt;}
.y107{bottom:353.780000pt;}
.y13e{bottom:355.357853pt;}
.y90{bottom:355.773333pt;}
.yba{bottom:356.968000pt;}
.y271{bottom:357.366667pt;}
.yd8{bottom:357.765333pt;}
.y137{bottom:359.360000pt;}
.y1dd{bottom:359.666667pt;}
.y58{bottom:359.904000pt;}
.y2c{bottom:360.918667pt;}
.ye{bottom:362.706666pt;}
.y13d{bottom:363.917733pt;}
.y2f5{bottom:364.341333pt;}
.y189{bottom:368.085333pt;}
.y254{bottom:368.381333pt;}
.y106{bottom:370.517333pt;}
.y1a4{bottom:372.112000pt;}
.y1dc{bottom:372.285333pt;}
.y8f{bottom:372.510667pt;}
.y2c4{bottom:373.196000pt;}
.yb9{bottom:373.705333pt;}
.y270{bottom:374.104000pt;}
.yd7{bottom:374.502667pt;}
.y136{bottom:376.097333pt;}
.y57{bottom:376.641333pt;}
.y2b{bottom:376.818667pt;}
.y2f4{bottom:379.684000pt;}
.y188{bottom:384.822667pt;}
.y253{bottom:385.118667pt;}
.y105{bottom:387.254667pt;}
.y1a3{bottom:388.849333pt;}
.y8e{bottom:389.248000pt;}
.yb8{bottom:390.442667pt;}
.y26f{bottom:390.841333pt;}
.yd6{bottom:391.240000pt;}
.y1db{bottom:391.308000pt;}
.y2a{bottom:392.720000pt;}
.y135{bottom:392.834667pt;}
.y2c3{bottom:394.210667pt;}
.y2f3{bottom:395.025333pt;}
.y56{bottom:397.364000pt;}
.y1d7{bottom:398.020000pt;}
.y187{bottom:401.560000pt;}
.y252{bottom:401.856000pt;}
.y1da{bottom:403.926667pt;}
.y104{bottom:403.992000pt;}
.y1a2{bottom:405.586667pt;}
.y8d{bottom:405.985333pt;}
.yb7{bottom:407.180000pt;}
.y26e{bottom:407.578667pt;}
.yd5{bottom:407.977333pt;}
.y29{bottom:408.620000pt;}
.y134{bottom:409.572000pt;}
.y2f2{bottom:410.368000pt;}
.y2c2{bottom:415.224000pt;}
.y186{bottom:418.297333pt;}
.y251{bottom:418.593333pt;}
.y103{bottom:420.729333pt;}
.y1a1{bottom:422.324000pt;}
.y8c{bottom:422.722667pt;}
.y1d9{bottom:422.948000pt;}
.yb6{bottom:423.917333pt;}
.y26d{bottom:424.316000pt;}
.y28{bottom:424.520000pt;}
.yd4{bottom:424.714667pt;}
.y2f1{bottom:425.710667pt;}
.y133{bottom:426.309333pt;}
.y2c1{bottom:429.836000pt;}
.y185{bottom:435.034667pt;}
.y250{bottom:435.330667pt;}
.y1d8{bottom:435.568000pt;}
.y102{bottom:437.466667pt;}
.y1a0{bottom:439.061333pt;}
.y8b{bottom:439.460000pt;}
.y27{bottom:440.421333pt;}
.yb5{bottom:440.654667pt;}
.y26c{bottom:441.053333pt;}
.yd3{bottom:441.452000pt;}
.y132{bottom:443.046667pt;}
.y20a{bottom:443.522667pt;}
.yd{bottom:446.990669pt;}
.y2c0{bottom:450.850667pt;}
.y184{bottom:451.772000pt;}
.y24f{bottom:452.066667pt;}
.y101{bottom:454.204000pt;}
.y1d6{bottom:454.589333pt;}
.y19f{bottom:455.798667pt;}
.y8a{bottom:456.197333pt;}
.y26{bottom:456.321333pt;}
.y2f0{bottom:456.396000pt;}
.yb4{bottom:457.392000pt;}
.y26b{bottom:457.790667pt;}
.yd2{bottom:458.189333pt;}
.y131{bottom:459.784000pt;}
.y2a2{bottom:461.377333pt;}
.y209{bottom:462.544000pt;}
.yc{bottom:462.990669pt;}
.y55{bottom:464.164000pt;}
.y1d5{bottom:467.208000pt;}
.y183{bottom:468.509333pt;}
.y24e{bottom:468.804000pt;}
.y100{bottom:470.941333pt;}
.y2ef{bottom:471.738667pt;}
.y2bf{bottom:471.864000pt;}
.y25{bottom:472.221333pt;}
.y19e{bottom:472.536000pt;}
.y89{bottom:472.934667pt;}
.yb3{bottom:474.129333pt;}
.y26a{bottom:474.528000pt;}
.yd1{bottom:474.926667pt;}
.y130{bottom:476.521333pt;}
.yb{bottom:478.990666pt;}
.y208{bottom:481.565333pt;}
.y182{bottom:485.246667pt;}
.y24d{bottom:485.541333pt;}
.y1d4{bottom:486.229333pt;}
.y2ee{bottom:487.081333pt;}
.yff{bottom:487.678667pt;}
.y24{bottom:488.122667pt;}
.y19d{bottom:489.273333pt;}
.y88{bottom:489.672000pt;}
.yb2{bottom:490.866667pt;}
.y269{bottom:491.265333pt;}
.yd0{bottom:491.664000pt;}
.y2be{bottom:492.878667pt;}
.y12f{bottom:493.258667pt;}
.ya{bottom:494.990666pt;}
.y54{bottom:497.398667pt;}
.y1d3{bottom:498.849333pt;}
.y207{bottom:500.586667pt;}
.y181{bottom:501.984000pt;}
.y24c{bottom:502.278667pt;}
.y2ed{bottom:502.424000pt;}
.y23{bottom:504.022667pt;}
.yfe{bottom:504.416000pt;}
.y19c{bottom:506.010667pt;}
.y87{bottom:506.409333pt;}
.yb1{bottom:507.604000pt;}
.y268{bottom:508.002667pt;}
.ycf{bottom:508.401333pt;}
.y12e{bottom:509.996000pt;}
.y1ce{bottom:510.580000pt;}
.y2bd{bottom:513.892000pt;}
.y53{bottom:514.694667pt;}
.y2ec{bottom:517.766667pt;}
.y1d2{bottom:517.870667pt;}
.y180{bottom:518.721333pt;}
.y24b{bottom:519.016000pt;}
.y206{bottom:519.608000pt;}
.yfd{bottom:521.153333pt;}
.y29a{bottom:523.145333pt;}
.yb0{bottom:524.341333pt;}
.y267{bottom:524.740000pt;}
.yce{bottom:525.138667pt;}
.y12d{bottom:526.732000pt;}
.y86{bottom:527.130667pt;}
.y1d1{bottom:530.489333pt;}
.y52{bottom:531.989333pt;}
.y2eb{bottom:533.108000pt;}
.y2bc{bottom:534.906667pt;}
.y17f{bottom:535.458667pt;}
.y24a{bottom:535.753333pt;}
.y205{bottom:538.629333pt;}
.y299{bottom:539.882667pt;}
.yaf{bottom:541.078667pt;}
.y266{bottom:541.477333pt;}
.ycd{bottom:541.876000pt;}
.y12c{bottom:543.469333pt;}
.y19b{bottom:544.665333pt;}
.y85{bottom:545.064000pt;}
.y2ea{bottom:548.450667pt;}
.y51{bottom:549.284000pt;}
.y1d0{bottom:549.510667pt;}
.y17e{bottom:552.196000pt;}
.y249{bottom:552.490667pt;}
.y2bb{bottom:556.093333pt;}
.y298{bottom:556.620000pt;}
.y203{bottom:557.650667pt;}
.yae{bottom:557.816000pt;}
.y265{bottom:558.214667pt;}
.ycc{bottom:558.613333pt;}
.y12b{bottom:560.206667pt;}
.y1cf{bottom:562.130667pt;}
.y2e9{bottom:563.793333pt;}
.y202{bottom:563.961333pt;}
.y50{bottom:566.580000pt;}
.y17d{bottom:568.932000pt;}
.y248{bottom:569.228000pt;}
.y204{bottom:570.270667pt;}
.yfc{bottom:571.764000pt;}
.y297{bottom:573.357333pt;}
.y9{bottom:573.786667pt;}
.yad{bottom:574.553333pt;}
.y84{bottom:574.952000pt;}
.ycb{bottom:575.350667pt;}
.y12a{bottom:576.944000pt;}
.y2e8{bottom:579.136000pt;}
.y1cd{bottom:581.152000pt;}
.y4f{bottom:583.874667pt;}
.y2ba{bottom:584.372000pt;}
.y17c{bottom:585.669333pt;}
.y247{bottom:585.965333pt;}
.y296{bottom:590.094667pt;}
.yac{bottom:591.290667pt;}
.y83{bottom:591.689333pt;}
.y8{bottom:592.685334pt;}
.y129{bottom:593.681333pt;}
.y1cc{bottom:593.772000pt;}
.y2e7{bottom:594.478667pt;}
.yca{bottom:596.073333pt;}
.y201{bottom:599.638667pt;}
.y4e{bottom:601.169333pt;}
.y17b{bottom:602.406667pt;}
.y246{bottom:602.702667pt;}
.yfb{bottom:604.441333pt;}
.y295{bottom:606.832000pt;}
.yab{bottom:608.028000pt;}
.y82{bottom:608.426667pt;}
.y2e6{bottom:609.821333pt;}
.y128{bottom:610.418667pt;}
.y1cb{bottom:612.793333pt;}
.y4d{bottom:618.465333pt;}
.y17a{bottom:619.144000pt;}
.y245{bottom:619.440000pt;}
.yfa{bottom:621.178667pt;}
.y2b9{bottom:622.613333pt;}
.y294{bottom:623.569333pt;}
.yaa{bottom:624.765333pt;}
.y81{bottom:625.164000pt;}
.y1ca{bottom:625.412000pt;}
.yc9{bottom:625.961333pt;}
.y127{bottom:627.156000pt;}
.y200{bottom:632.620000pt;}
.y4c{bottom:635.760000pt;}
.y244{bottom:636.177333pt;}
.yf9{bottom:637.916000pt;}
.y179{bottom:639.866667pt;}
.y293{bottom:640.306667pt;}
.y2e5{bottom:640.506667pt;}
.ya9{bottom:641.502667pt;}
.y80{bottom:641.901333pt;}
.y126{bottom:643.893333pt;}
.y1c9{bottom:644.433333pt;}
.y7{bottom:645.598667pt;}
.y1ff{bottom:649.357333pt;}
.y243{bottom:652.914667pt;}
.y4b{bottom:653.056000pt;}
.yf8{bottom:654.653333pt;}
.y2b8{bottom:655.290667pt;}
.y2e4{bottom:655.848000pt;}
.y1c3{bottom:656.164000pt;}
.y292{bottom:657.044000pt;}
.y1c8{bottom:657.053333pt;}
.y178{bottom:657.800000pt;}
.ya8{bottom:658.240000pt;}
.y7f{bottom:658.638667pt;}
.y125{bottom:660.630667pt;}
.y1fe{bottom:666.094667pt;}
.y3{bottom:668.977329pt;}
.y242{bottom:669.652000pt;}
.y2e3{bottom:671.190667pt;}
.yf7{bottom:671.390667pt;}
.y291{bottom:673.781333pt;}
.ya7{bottom:674.977333pt;}
.y7e{bottom:675.376000pt;}
.y1c7{bottom:676.074667pt;}
.y124{bottom:677.368000pt;}
.y2b7{bottom:678.882667pt;}
.y1fd{bottom:682.832000pt;}
.y177{bottom:684.846667pt;}
.y241{bottom:686.389333pt;}
.y2e2{bottom:686.533333pt;}
.y4a{bottom:686.809333pt;}
.yf6{bottom:688.128000pt;}
.y1c6{bottom:688.693333pt;}
.y290{bottom:690.518667pt;}
.ya6{bottom:691.714667pt;}
.y7d{bottom:692.113333pt;}
.y123{bottom:694.105333pt;}
.y2b6{bottom:694.504000pt;}
.y1fb{bottom:699.569333pt;}
.y49{bottom:701.154667pt;}
.y2e1{bottom:701.876000pt;}
.y240{bottom:703.126667pt;}
.y1fc{bottom:704.390667pt;}
.yf5{bottom:704.865333pt;}
.y28f{bottom:707.256000pt;}
.y13c{bottom:707.440000pt;}
.y1c5{bottom:707.714667pt;}
.ya5{bottom:708.452000pt;}
.y7c{bottom:708.850667pt;}
.y2b5{bottom:710.125333pt;}
.y122{bottom:710.842667pt;}
.y1fa{bottom:716.306667pt;}
.y2e0{bottom:717.218667pt;}
.y48{bottom:719.358667pt;}
.y23f{bottom:719.864000pt;}
.y1c4{bottom:720.334667pt;}
.yf4{bottom:721.602667pt;}
.y28e{bottom:723.993333pt;}
.ya4{bottom:725.189333pt;}
.y7b{bottom:725.588000pt;}
.y2b4{bottom:725.746667pt;}
.y121{bottom:727.580000pt;}
.y47{bottom:729.848000pt;}
.y2df{bottom:732.561333pt;}
.y1f9{bottom:733.044000pt;}
.y23e{bottom:736.601333pt;}
.yf3{bottom:738.340000pt;}
.y1c2{bottom:739.356000pt;}
.y28d{bottom:740.730667pt;}
.ya3{bottom:741.926667pt;}
.y7a{bottom:742.324000pt;}
.y120{bottom:744.317333pt;}
.y19a{bottom:745.910667pt;}
.y2de{bottom:747.904000pt;}
.y46{bottom:748.052000pt;}
.y2b3{bottom:749.338667pt;}
.y1f8{bottom:749.781333pt;}
.y1c1{bottom:751.974667pt;}
.y23d{bottom:753.338667pt;}
.yf2{bottom:755.077333pt;}
.y28c{bottom:757.468000pt;}
.y45{bottom:758.540000pt;}
.ya2{bottom:758.664000pt;}
.y79{bottom:759.061333pt;}
.y11f{bottom:761.054667pt;}
.y2dd{bottom:763.246667pt;}
.y1f6{bottom:766.518667pt;}
.y23c{bottom:770.076000pt;}
.y1c0{bottom:770.996000pt;}
.y1f7{bottom:771.340000pt;}
.yf1{bottom:771.814667pt;}
.y2b2{bottom:772.930667pt;}
.y28b{bottom:774.205333pt;}
.ya1{bottom:775.401333pt;}
.y78{bottom:775.798667pt;}
.y44{bottom:776.744000pt;}
.y11e{bottom:777.792000pt;}
.y2dc{bottom:778.589333pt;}
.y2{bottom:781.661334pt;}
.y1f5{bottom:783.256000pt;}
.y1bf{bottom:783.616000pt;}
.y23b{bottom:786.813333pt;}
.y43{bottom:787.233333pt;}
.yf0{bottom:788.552000pt;}
.y28a{bottom:790.942667pt;}
.y77{bottom:792.536000pt;}
.y2db{bottom:793.930667pt;}
.ya0{bottom:796.122667pt;}
.y1b8{bottom:796.305333pt;}
.y2b1{bottom:796.521333pt;}
.y11d{bottom:798.514667pt;}
.y1be{bottom:802.637333pt;}
.y23a{bottom:803.550667pt;}
.y1f4{bottom:803.977333pt;}
.yef{bottom:805.289333pt;}
.y42{bottom:805.437333pt;}
.y289{bottom:807.680000pt;}
.y1b7{bottom:808.925333pt;}
.y76{bottom:809.273333pt;}
.y2b0{bottom:812.142667pt;}
.y1bd{bottom:815.257333pt;}
.y239{bottom:820.288000pt;}
.y1b6{bottom:821.544000pt;}
.yee{bottom:822.025333pt;}
.y288{bottom:824.417333pt;}
.y2da{bottom:824.616000pt;}
.y75{bottom:826.010667pt;}
.y2af{bottom:827.764000pt;}
.y11c{bottom:828.402667pt;}
.y1bc{bottom:834.278667pt;}
.y238{bottom:837.025333pt;}
.yed{bottom:838.762667pt;}
.y2d9{bottom:839.958667pt;}
.y287{bottom:841.154667pt;}
.y74{bottom:842.748000pt;}
.y1f3{bottom:844.256000pt;}
.y41{bottom:844.605333pt;}
.y11b{bottom:845.140000pt;}
.y1bb{bottom:846.897333pt;}
.y2ae{bottom:851.356000pt;}
.y237{bottom:853.762667pt;}
.y2d8{bottom:855.301333pt;}
.yec{bottom:855.500000pt;}
.y286{bottom:857.892000pt;}
.y1{bottom:859.312000pt;}
.y73{bottom:859.485333pt;}
.y40{bottom:861.341333pt;}
.y1f2{bottom:865.269333pt;}
.y1ba{bottom:865.918667pt;}
.y2ad{bottom:866.977333pt;}
.y236{bottom:870.500000pt;}
.y2d7{bottom:870.644000pt;}
.yeb{bottom:872.237333pt;}
.y285{bottom:874.629333pt;}
.y72{bottom:876.222667pt;}
.y11a{bottom:877.817333pt;}
.y1b9{bottom:878.538667pt;}
.y2ac{bottom:882.598667pt;}
.y2d6{bottom:885.986667pt;}
.y1f1{bottom:886.284000pt;}
.y235{bottom:887.237333pt;}
.yea{bottom:888.974667pt;}
.y284{bottom:891.366667pt;}
.y71{bottom:892.960000pt;}
.y119{bottom:894.554667pt;}
.y3f{bottom:896.322667pt;}
.y1b5{bottom:897.560000pt;}
.y2ab{bottom:898.220000pt;}
.y2d5{bottom:901.329333pt;}
.ye9{bottom:905.712000pt;}
.y1f0{bottom:907.297333pt;}
.y234{bottom:907.958667pt;}
.y283{bottom:908.104000pt;}
.y70{bottom:909.697333pt;}
.y2aa{bottom:913.842667pt;}
.y2d4{bottom:916.670667pt;}
.y3e{bottom:921.428000pt;}
.ye8{bottom:922.449333pt;}
.y6f{bottom:926.434667pt;}
.y1b4{bottom:926.928000pt;}
.y118{bottom:927.232000pt;}
.y1ef{bottom:928.312000pt;}
.y282{bottom:928.825333pt;}
.y2a9{bottom:929.464000pt;}
.y2d3{bottom:932.013333pt;}
.ye7{bottom:939.186667pt;}
.y6e{bottom:943.172000pt;}
.y117{bottom:943.969333pt;}
.y2a8{bottom:945.085333pt;}
.y233{bottom:945.580000pt;}
.y3d{bottom:946.534667pt;}
.y281{bottom:946.758667pt;}
.y2d2{bottom:947.356000pt;}
.y1ed{bottom:949.325333pt;}
.ye6{bottom:955.924000pt;}
.y1ec{bottom:956.632000pt;}
.y6d{bottom:959.909333pt;}
.y2d1{bottom:962.698667pt;}
.y1ee{bottom:963.937333pt;}
.y232{bottom:966.594667pt;}
.y3c{bottom:971.640000pt;}
.ye5{bottom:972.661333pt;}
.y6c{bottom:976.646667pt;}
.y2d0{bottom:978.041333pt;}
.y6b{bottom:993.384000pt;}
.y1eb{bottom:994.700000pt;}
.y3a{bottom:1010.294667pt;}
.y6a{bottom:1046.810667pt;}
.h25{height:28.170221pt;}
.h7{height:28.560000pt;}
.h10{height:28.947524pt;}
.h1d{height:30.732706pt;}
.h9{height:33.771789pt;}
.h21{height:34.574438pt;}
.h1c{height:35.212691pt;}
.h22{height:36.666735pt;}
.h2a{height:37.381906pt;}
.h27{height:37.608867pt;}
.h13{height:38.415786pt;}
.h11{height:38.596538pt;}
.h19{height:38.775312pt;}
.hc{height:38.947124pt;}
.h17{height:39.349375pt;}
.h16{height:39.588281pt;}
.h6{height:40.800000pt;}
.h29{height:42.416016pt;}
.h3{height:42.840000pt;}
.h12{height:43.421286pt;}
.h2c{height:43.557639pt;}
.h1b{height:44.437500pt;}
.h18{height:44.648438pt;}
.ha{height:45.271688pt;}
.h28{height:47.223164pt;}
.h14{height:48.245551pt;}
.hf{height:48.481423pt;}
.he{height:48.486756pt;}
.h2{height:48.960000pt;}
.h1a{height:49.708594pt;}
.h2b{height:51.131789pt;}
.h2e{height:54.898620pt;}
.h23{height:55.970039pt;}
.h24{height:56.102894pt;}
.h20{height:63.795772pt;}
.h1e{height:63.833871pt;}
.h1f{height:63.839204pt;}
.hd{height:69.148877pt;}
.h5{height:69.360000pt;}
.h2d{height:72.647953pt;}
.hb{height:77.447343pt;}
.h4{height:105.826671pt;}
.h26{height:298.930800pt;}
.h15{height:299.228000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.330780pt;}
.w2{width:566.928019pt;}
.w6{width:599.279127pt;}
.w5{width:664.676267pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x40{left:-31.970540pt;}
.x0{left:0.000000pt;}
.xc{left:3.688267pt;}
.x12{left:13.608267pt;}
.x11{left:15.448267pt;}
.x13{left:21.688267pt;}
.x5{left:47.621333pt;}
.x6{left:51.605861pt;}
.x3a{left:55.645333pt;}
.x3c{left:56.558667pt;}
.x21{left:59.998667pt;}
.xb{left:64.323733pt;}
.x1f{left:65.869333pt;}
.x37{left:67.436000pt;}
.x38{left:70.910667pt;}
.x22{left:75.666667pt;}
.x23{left:76.798667pt;}
.x1e{left:79.100000pt;}
.x39{left:81.702667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1c{left:97.850667pt;}
.x24{left:100.552000pt;}
.x3d{left:128.129333pt;}
.x42{left:133.177460pt;}
.x3e{left:139.526667pt;}
.x30{left:145.850667pt;}
.x43{left:160.081371pt;}
.xd{left:177.528267pt;}
.x4{left:180.874667pt;}
.x20{left:203.264000pt;}
.xe{left:205.848173pt;}
.x16{left:218.568267pt;}
.x9{left:220.912000pt;}
.x7{left:221.858667pt;}
.x25{left:231.054667pt;}
.x8{left:239.924000pt;}
.x4c{left:243.084000pt;}
.xa{left:250.204000pt;}
.x17{left:257.768267pt;}
.x45{left:258.977333pt;}
.x18{left:276.168267pt;}
.x10{left:278.408267pt;}
.x4d{left:279.953333pt;}
.x14{left:280.968267pt;}
.x44{left:282.606667pt;}
.x47{left:283.677333pt;}
.x48{left:289.164000pt;}
.x4f{left:291.082667pt;}
.x4e{left:292.386667pt;}
.x50{left:297.962667pt;}
.x51{left:298.860000pt;}
.x4a{left:301.304000pt;}
.x49{left:302.577333pt;}
.x31{left:308.429333pt;}
.x3f{left:314.773333pt;}
.x4b{left:320.528000pt;}
.x15{left:321.768267pt;}
.x46{left:323.606667pt;}
.x27{left:338.061333pt;}
.x26{left:341.874667pt;}
.x2f{left:347.441333pt;}
.x19{left:376.968267pt;}
.x32{left:379.301333pt;}
.x33{left:383.726667pt;}
.x3{left:404.408000pt;}
.x29{left:448.389333pt;}
.x34{left:451.136000pt;}
.x28{left:458.360000pt;}
.x1d{left:494.934667pt;}
.x36{left:531.916000pt;}
.xf{left:533.128267pt;}
.x1a{left:543.609333pt;}
.x35{left:550.374667pt;}
.x2d{left:551.325333pt;}
.x1b{left:554.534667pt;}
.x2e{left:557.037333pt;}
.x2a{left:564.045333pt;}
.x41{left:595.865460pt;}
.x2c{left:657.440000pt;}
.x2b{left:676.041333pt;}
.x3b{left:682.428000pt;}
}




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