
    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_5e680d70d21904f2c20b15d3.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_6ea8ea8ad148b961e395a2d3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c3d373c36686c039b4bc3b85.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a5e828e255a27b08754a2b51.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9b2b061234e2ad25a582ebd5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.885000;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_c22f289aeb637e6bf1dbb6c3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.710000;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_bcf6bcbc0518ad997977cf0b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fdfa9c22b9009866baac3e57.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_bb91818fa40f8f00717320fd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.987000;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_d14320aabf14d1ba38eebe59.woff2')format("woff");}.fff{font-family:fff;line-height:1.799000;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_841f417b4d4f20b7dea11111.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.580000;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_be31caa8d5ca3660c7bdcd53.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.712000;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_d68b65530a7031c3b0d4646e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.932000;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;}
.m5{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);}
.m24{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);}
.m20{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);}
.m14{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);}
.m18{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);}
.m1b{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);}
.m27{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);}
.m22{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);}
.m29{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);}
.m6{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);}
.m4{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);}
.m9{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);}
.m8{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);}
.m21{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);}
.md{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);}
.m1a{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);}
.m23{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);}
.m1d{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);}
.m28{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.mc{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);}
.m7{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);}
.m11{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);}
.m1f{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);}
.m13{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);}
.m26{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);}
.m2{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);}
.m16{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);}
.m1e{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);}
.me{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);}
.m1c{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);}
.mb{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);}
.m17{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);}
.m25{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);}
.m12{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);}
.m15{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);}
.m10{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);}
.m19{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);}
.v16{vertical-align:-66.378000px;}
.v17{vertical-align:-41.910000px;}
.vf{vertical-align:-26.952000px;}
.v2{vertical-align:-19.530000px;}
.v3{vertical-align:-17.358000px;}
.v11{vertical-align:-14.964000px;}
.v9{vertical-align:-11.760000px;}
.v5{vertical-align:-10.698000px;}
.v7{vertical-align:-8.964000px;}
.v1f{vertical-align:-7.176000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.796000px;}
.v1e{vertical-align:6.090000px;}
.v20{vertical-align:7.176000px;}
.v8{vertical-align:8.964000px;}
.va{vertical-align:11.760000px;}
.v12{vertical-align:18.348000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v10{vertical-align:23.022000px;}
.v15{vertical-align:24.474000px;}
.v1c{vertical-align:26.520000px;}
.v6{vertical-align:32.874000px;}
.vc{vertical-align:40.464000px;}
.v14{vertical-align:41.466000px;}
.v18{vertical-align:45.180000px;}
.v1d{vertical-align:46.404000px;}
.ve{vertical-align:53.256000px;}
.v13{vertical-align:54.528000px;}
.vd{vertical-align:65.016000px;}
.v19{vertical-align:66.378000px;}
.v1b{vertical-align:69.522000px;}
.v1a{vertical-align:84.726000px;}
.ls0{letter-spacing:0.000000px;}
.ls69{letter-spacing:0.080009px;}
.ls64{letter-spacing:0.086009px;}
.ls2b{letter-spacing:0.096583px;}
.ls67{letter-spacing:0.195600px;}
.ls5d{letter-spacing:0.201600px;}
.ls4e{letter-spacing:0.246600px;}
.ls49{letter-spacing:0.252600px;}
.ls5f{letter-spacing:0.428370px;}
.ls5c{letter-spacing:0.446755px;}
.ls8d{letter-spacing:0.504172px;}
.ls26{letter-spacing:0.542815px;}
.ls61{letter-spacing:0.547615px;}
.ls1f{letter-spacing:0.548815px;}
.ls58{letter-spacing:0.561943px;}
.ls24{letter-spacing:0.564600px;}
.ls48{letter-spacing:0.567943px;}
.lsf{letter-spacing:0.642088px;}
.ls11{letter-spacing:0.648088px;}
.lsb0{letter-spacing:0.669000px;}
.lsad{letter-spacing:0.675000px;}
.ls7b{letter-spacing:0.707607px;}
.ls4b{letter-spacing:0.720783px;}
.ls70{letter-spacing:0.728576px;}
.ls78{letter-spacing:0.742200px;}
.ls80{letter-spacing:0.748115px;}
.ls79{letter-spacing:0.748200px;}
.ls23{letter-spacing:0.888571px;}
.ls20{letter-spacing:0.992378px;}
.ls3a{letter-spacing:1.011292px;}
.ls5b{letter-spacing:1.012457px;}
.ls66{letter-spacing:1.018457px;}
.ls63{letter-spacing:1.112815px;}
.ls6c{letter-spacing:1.117615px;}
.ls6b{letter-spacing:1.135200px;}
.ls25{letter-spacing:1.137943px;}
.ls5e{letter-spacing:1.147363px;}
.ls1c{letter-spacing:1.221483px;}
.lsa{letter-spacing:1.275394px;}
.ls47{letter-spacing:1.313675px;}
.ls82{letter-spacing:1.316378px;}
.ls57{letter-spacing:1.319675px;}
.ls45{letter-spacing:1.420741px;}
.ls1e{letter-spacing:1.452571px;}
.ls55{letter-spacing:1.458571px;}
.ls51{letter-spacing:1.464783px;}
.ls44{letter-spacing:1.494390px;}
.ls6d{letter-spacing:1.672407px;}
.ls5{letter-spacing:1.861130px;}
.ls89{letter-spacing:1.994378px;}
.ls5a{letter-spacing:2.023615px;}
.ls54{letter-spacing:2.200741px;}
.ls87{letter-spacing:2.379962px;}
.ls72{letter-spacing:2.614741px;}
.ls46{letter-spacing:2.658783px;}
.ls4d{letter-spacing:2.664783px;}
.lsa4{letter-spacing:2.985300px;}
.ls1{letter-spacing:2.989200px;}
.lsb1{letter-spacing:2.991300px;}
.ls35{letter-spacing:3.287658px;}
.ls83{letter-spacing:3.404725px;}
.ls62{letter-spacing:3.553200px;}
.ls3e{letter-spacing:3.555943px;}
.ls60{letter-spacing:3.559200px;}
.ls99{letter-spacing:3.660600px;}
.lsa5{letter-spacing:3.666600px;}
.ls50{letter-spacing:3.733200px;}
.ls4a{letter-spacing:3.739200px;}
.ls3f{letter-spacing:4.108741px;}
.ls68{letter-spacing:4.255363px;}
.ls40{letter-spacing:4.299943px;}
.ls8a{letter-spacing:4.303258px;}
.ls75{letter-spacing:4.305634px;}
.ls1b{letter-spacing:4.305943px;}
.ls4f{letter-spacing:4.620571px;}
.ls7c{letter-spacing:5.079943px;}
.ls4c{letter-spacing:10.706100px;}
.ls56{letter-spacing:10.711200px;}
.ls3c{letter-spacing:10.712100px;}
.ls84{letter-spacing:11.427483px;}
.ls7a{letter-spacing:11.444012px;}
.ls7f{letter-spacing:11.652783px;}
.lsa3{letter-spacing:11.811688px;}
.ls22{letter-spacing:11.892783px;}
.ls9{letter-spacing:11.954850px;}
.ls1a{letter-spacing:12.194253px;}
.ls42{letter-spacing:12.339483px;}
.ls77{letter-spacing:12.345483px;}
.ls74{letter-spacing:12.580741px;}
.ls59{letter-spacing:13.080186px;}
.ls85{letter-spacing:13.086783px;}
.ls28{letter-spacing:13.089483px;}
.ls36{letter-spacing:13.111694px;}
.ls33{letter-spacing:13.114766px;}
.ls2e{letter-spacing:13.116017px;}
.ls29{letter-spacing:13.116973px;}
.ls31{letter-spacing:13.121108px;}
.lsbd{letter-spacing:13.436004px;}
.ls34{letter-spacing:13.686783px;}
.ls81{letter-spacing:13.699200px;}
.ls39{letter-spacing:13.709675px;}
.ls1d{letter-spacing:13.715675px;}
.ls7{letter-spacing:13.808164px;}
.ls73{letter-spacing:13.863483px;}
.ls86{letter-spacing:13.904725px;}
.ls8c{letter-spacing:13.910725px;}
.ls38{letter-spacing:13.989483px;}
.ls9b{letter-spacing:14.094088px;}
.ls30{letter-spacing:14.283483px;}
.ls2a{letter-spacing:14.286783px;}
.lsd{letter-spacing:14.346144px;}
.lsc{letter-spacing:14.645022px;}
.ls6{letter-spacing:14.764573px;}
.ls8{letter-spacing:14.943900px;}
.ls91{letter-spacing:15.302554px;}
.ls27{letter-spacing:15.361200px;}
.ls92{letter-spacing:15.392755px;}
.ls32{letter-spacing:15.774783px;}
.ls37{letter-spacing:15.921943px;}
.ls2c{letter-spacing:15.927943px;}
.ls2d{letter-spacing:16.077483px;}
.ls2f{letter-spacing:16.080783px;}
.ls21{letter-spacing:16.248571px;}
.ls90{letter-spacing:16.677392px;}
.ls2{letter-spacing:17.935200px;}
.ls6f{letter-spacing:18.069483px;}
.ls65{letter-spacing:18.349200px;}
.ls8e{letter-spacing:18.495943px;}
.ls8f{letter-spacing:18.501943px;}
.ls3d{letter-spacing:18.507943px;}
.ls43{letter-spacing:19.546200px;}
.ls53{letter-spacing:19.964383px;}
.ls7e{letter-spacing:20.907943px;}
.lsb{letter-spacing:21.041011px;}
.lsbc{letter-spacing:24.448220px;}
.ls76{letter-spacing:54.187200px;}
.ls7d{letter-spacing:58.071943px;}
.lse{letter-spacing:67.111200px;}
.ls3{letter-spacing:70.236600px;}
.ls4{letter-spacing:72.353510px;}
.ls9d{letter-spacing:75.390600px;}
.ls9e{letter-spacing:75.396600px;}
.ls41{letter-spacing:76.017483px;}
.ls3b{letter-spacing:82.605943px;}
.lsbb{letter-spacing:87.684600px;}
.lsa1{letter-spacing:97.182600px;}
.ls97{letter-spacing:97.854600px;}
.lsba{letter-spacing:104.766600px;}
.lsb7{letter-spacing:110.142600px;}
.ls9f{letter-spacing:110.736600px;}
.ls9c{letter-spacing:110.922600px;}
.lsb3{letter-spacing:111.678600px;}
.lsac{letter-spacing:111.870600px;}
.ls95{letter-spacing:116.010600px;}
.lsb4{letter-spacing:117.060600px;}
.lsa0{letter-spacing:118.326600px;}
.lsb8{letter-spacing:122.517000px;}
.lsa8{letter-spacing:124.239000px;}
.lsb9{letter-spacing:124.644600px;}
.lsae{letter-spacing:125.124600px;}
.lsb6{letter-spacing:126.552600px;}
.ls96{letter-spacing:127.224600px;}
.ls18{letter-spacing:129.804600px;}
.lsa6{letter-spacing:130.602600px;}
.lsa9{letter-spacing:132.009000px;}
.ls10{letter-spacing:136.830600px;}
.lsa2{letter-spacing:137.136600px;}
.lsaa{letter-spacing:139.518600px;}
.lsaf{letter-spacing:144.048600px;}
.ls9a{letter-spacing:145.476600px;}
.ls15{letter-spacing:146.904600px;}
.lsa7{letter-spacing:148.650600px;}
.ls98{letter-spacing:149.916600px;}
.ls12{letter-spacing:150.276600px;}
.lsb5{letter-spacing:150.480600px;}
.ls6e{letter-spacing:156.171943px;}
.lsab{letter-spacing:158.064600px;}
.lsb2{letter-spacing:166.506600px;}
.ls14{letter-spacing:172.740600px;}
.ls88{letter-spacing:172.779943px;}
.ls17{letter-spacing:182.418600px;}
.ls13{letter-spacing:186.192600px;}
.ls16{letter-spacing:199.866600px;}
.ls19{letter-spacing:269.070845px;}
.ls71{letter-spacing:356.766783px;}
.ls6a{letter-spacing:614.473363px;}
.ls52{letter-spacing:624.028741px;}
.ls8b{letter-spacing:658.521962px;}
.ls93{letter-spacing:916.344600px;}
.ls94{letter-spacing:928.242600px;}
.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;}
}
.ws8a{word-spacing:-75.366786px;}
.wsb7{word-spacing:-56.058000px;}
.ws8d{word-spacing:-47.324343px;}
.ws8b{word-spacing:-46.199221px;}
.ws40{word-spacing:-14.943900px;}
.ws6f{word-spacing:-13.449600px;}
.ws1b{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws86{word-spacing:-5.080926px;}
.ws8f{word-spacing:-3.459600px;}
.ws7a{word-spacing:-3.347434px;}
.ws7f{word-spacing:-3.287658px;}
.wsdd{word-spacing:-3.227882px;}
.ws3b{word-spacing:-2.809453px;}
.ws36{word-spacing:-2.630126px;}
.ws84{word-spacing:-2.575500px;}
.ws80{word-spacing:-2.570351px;}
.wsd3{word-spacing:-2.510575px;}
.ws2e{word-spacing:-2.391024px;}
.ws77{word-spacing:-2.032370px;}
.ws54{word-spacing:-1.912819px;}
.ws5{word-spacing:-1.908367px;}
.ws51{word-spacing:-1.793268px;}
.ws12{word-spacing:-1.733492px;}
.wsd8{word-spacing:-1.554166px;}
.ws13{word-spacing:-1.494390px;}
.ws17{word-spacing:-1.434614px;}
.wsa{word-spacing:-1.374839px;}
.ws4{word-spacing:-1.322630px;}
.ws75{word-spacing:-1.315063px;}
.ws94{word-spacing:-1.255288px;}
.wsd1{word-spacing:-0.956410px;}
.wse3{word-spacing:-0.914573px;}
.ws92{word-spacing:-0.896634px;}
.ws91{word-spacing:-0.836858px;}
.wsd7{word-spacing:-0.777083px;}
.ws48{word-spacing:-0.717307px;}
.ws53{word-spacing:-0.657532px;}
.ws27{word-spacing:-0.597756px;}
.wsdb{word-spacing:-0.478205px;}
.ws7d{word-spacing:-0.438061px;}
.ws22{word-spacing:-0.418429px;}
.ws9{word-spacing:-0.358654px;}
.wsf7{word-spacing:-0.322790px;}
.ws2b{word-spacing:-0.298878px;}
.wsad{word-spacing:-0.268992px;}
.ws8{word-spacing:-0.239102px;}
.wsfd{word-spacing:-0.215194px;}
.ws69{word-spacing:-0.191282px;}
.ws10{word-spacing:-0.179327px;}
.ws10c{word-spacing:-0.161395px;}
.ws4b{word-spacing:-0.143462px;}
.ws14{word-spacing:-0.119551px;}
.wse6{word-spacing:-0.107597px;}
.wscd{word-spacing:-0.095641px;}
.ws6{word-spacing:-0.059776px;}
.ws6d{word-spacing:-0.053798px;}
.ws1c{word-spacing:-0.047821px;}
.ws8c{word-spacing:-0.045430px;}
.ws1{word-spacing:-0.000673px;}
.ws0{word-spacing:0.000000px;}
.wsf0{word-spacing:0.053798px;}
.wse{word-spacing:0.059776px;}
.ws70{word-spacing:0.107597px;}
.ws7{word-spacing:0.119551px;}
.wse9{word-spacing:0.161395px;}
.ws11{word-spacing:0.179327px;}
.wsce{word-spacing:0.191282px;}
.wsf2{word-spacing:0.215194px;}
.ws25{word-spacing:0.239102px;}
.wsfc{word-spacing:0.268992px;}
.ws72{word-spacing:0.286924px;}
.ws29{word-spacing:0.298878px;}
.wsae{word-spacing:0.322790px;}
.ws26{word-spacing:0.358654px;}
.ws4d{word-spacing:0.418429px;}
.ws100{word-spacing:0.430387px;}
.ws4f{word-spacing:0.478205px;}
.wsf6{word-spacing:0.484186px;}
.ws2f{word-spacing:0.537980px;}
.ws28{word-spacing:0.597756px;}
.ws31{word-spacing:0.657532px;}
.ws39{word-spacing:0.717307px;}
.ws49{word-spacing:0.717309px;}
.wsef{word-spacing:0.753178px;}
.ws16{word-spacing:0.836858px;}
.ws4e{word-spacing:0.896634px;}
.ws83{word-spacing:0.956410px;}
.ws105{word-spacing:0.968371px;}
.ws57{word-spacing:1.022170px;}
.ws37{word-spacing:1.075961px;}
.wse0{word-spacing:1.075968px;}
.ws82{word-spacing:1.135736px;}
.ws38{word-spacing:1.195512px;}
.wsdc{word-spacing:1.255288px;}
.wsdf{word-spacing:1.344960px;}
.wsda{word-spacing:1.434614px;}
.ws52{word-spacing:1.494390px;}
.ws97{word-spacing:1.551166px;}
.ws3e{word-spacing:1.554166px;}
.ws76{word-spacing:1.613941px;}
.ws2a{word-spacing:1.733492px;}
.wsf4{word-spacing:1.829146px;}
.ws7b{word-spacing:2.032370px;}
.ws78{word-spacing:2.092146px;}
.ws112{word-spacing:2.098138px;}
.wsd4{word-spacing:2.151922px;}
.ws10a{word-spacing:2.151936px;}
.ws56{word-spacing:2.420928px;}
.ws93{word-spacing:2.566922px;}
.wsd6{word-spacing:2.570351px;}
.ws3c{word-spacing:2.689902px;}
.ws55{word-spacing:2.743718px;}
.ws21{word-spacing:2.809453px;}
.ws3d{word-spacing:2.929004px;}
.ws68{word-spacing:2.964877px;}
.wsd0{word-spacing:2.988780px;}
.ws81{word-spacing:3.048556px;}
.ws88{word-spacing:3.168107px;}
.wse1{word-spacing:3.224822px;}
.ws110{word-spacing:3.225926px;}
.ws10e{word-spacing:3.227866px;}
.ws41{word-spacing:3.227882px;}
.ws3{word-spacing:3.227904px;}
.wsea{word-spacing:3.230179px;}
.ws79{word-spacing:3.287658px;}
.wsd9{word-spacing:3.347434px;}
.wsd2{word-spacing:3.407209px;}
.ws2c{word-spacing:3.466985px;}
.wse8{word-spacing:3.496896px;}
.ws2d{word-spacing:3.526760px;}
.wsc{word-spacing:3.583475px;}
.wsd{word-spacing:3.586536px;}
.ws3a{word-spacing:3.646312px;}
.ws3f{word-spacing:3.706087px;}
.ws7e{word-spacing:3.750546px;}
.ws89{word-spacing:3.765863px;}
.ws46{word-spacing:3.825638px;}
.wsb{word-spacing:3.885414px;}
.ws103{word-spacing:3.927283px;}
.ws15{word-spacing:3.945190px;}
.ws44{word-spacing:4.004965px;}
.ws45{word-spacing:4.064741px;}
.ws18{word-spacing:4.303843px;}
.ws20{word-spacing:4.363619px;}
.ws4a{word-spacing:4.399495px;}
.wseb{word-spacing:4.895654px;}
.ws33{word-spacing:4.961375px;}
.ws34{word-spacing:5.021150px;}
.ws74{word-spacing:5.140702px;}
.ws1d{word-spacing:5.260253px;}
.wsf{word-spacing:5.320028px;}
.ws96{word-spacing:5.379804px;}
.wsd5{word-spacing:5.439580px;}
.wsde{word-spacing:5.499355px;}
.ws47{word-spacing:5.618906px;}
.wsec{word-spacing:5.702630px;}
.ws106{word-spacing:5.810227px;}
.ws73{word-spacing:5.858009px;}
.ws4c{word-spacing:6.097111px;}
.ws23{word-spacing:6.276438px;}
.ws7c{word-spacing:6.694867px;}
.wscf{word-spacing:6.754643px;}
.ws95{word-spacing:6.814418px;}
.ws10f{word-spacing:6.939994px;}
.ws43{word-spacing:7.412174px;}
.ws42{word-spacing:7.471950px;}
.ws19{word-spacing:7.531726px;}
.ws32{word-spacing:7.651277px;}
.ws1f{word-spacing:7.711052px;}
.ws24{word-spacing:8.129482px;}
.ws35{word-spacing:8.189257px;}
.ws85{word-spacing:8.412739px;}
.wsf8{word-spacing:8.715341px;}
.ws50{word-spacing:8.906564px;}
.ws1e{word-spacing:9.265218px;}
.ws30{word-spacing:10.998710px;}
.ws1a{word-spacing:11.906882px;}
.ws8e{word-spacing:11.991042px;}
.ws109{word-spacing:13.126810px;}
.wsfe{word-spacing:13.180608px;}
.ws10d{word-spacing:13.234406px;}
.ws107{word-spacing:13.342003px;}
.wse7{word-spacing:13.383437px;}
.ws113{word-spacing:13.384742px;}
.wse5{word-spacing:13.385904px;}
.wsee{word-spacing:13.387882px;}
.ws108{word-spacing:13.391616px;}
.wsff{word-spacing:13.391779px;}
.wsf5{word-spacing:13.392499px;}
.ws102{word-spacing:13.394246px;}
.wse2{word-spacing:13.395802px;}
.wsf1{word-spacing:13.449600px;}
.wse4{word-spacing:13.503398px;}
.wsf3{word-spacing:13.557197px;}
.ws101{word-spacing:13.772390px;}
.ws111{word-spacing:14.417971px;}
.wsfb{word-spacing:14.740762px;}
.ws10b{word-spacing:15.547738px;}
.wsc6{word-spacing:17.041632px;}
.ws104{word-spacing:17.323085px;}
.wsed{word-spacing:19.098432px;}
.ws87{word-spacing:26.062162px;}
.wsf9{word-spacing:26.845402px;}
.wsb6{word-spacing:28.645638px;}
.wsfa{word-spacing:30.342298px;}
.wscb{word-spacing:39.464832px;}
.ws9f{word-spacing:39.478608px;}
.wsbd{word-spacing:43.996608px;}
.wsbf{word-spacing:44.678226px;}
.wsc7{word-spacing:56.282232px;}
.wsab{word-spacing:58.600608px;}
.ws62{word-spacing:58.951670px;}
.wsac{word-spacing:59.626800px;}
.ws6c{word-spacing:63.428314px;}
.wsc9{word-spacing:68.176608px;}
.ws61{word-spacing:70.784966px;}
.wsca{word-spacing:71.754240px;}
.wsa7{word-spacing:77.566800px;}
.wsc0{word-spacing:79.317245px;}
.ws9e{word-spacing:81.396979px;}
.ws5a{word-spacing:84.787670px;}
.wsc8{word-spacing:87.841670px;}
.wsaa{word-spacing:90.448800px;}
.ws9b{word-spacing:93.232627px;}
.wsb9{word-spacing:95.653555px;}
.wsa1{word-spacing:98.242800px;}
.wsa8{word-spacing:100.630800px;}
.wsa2{word-spacing:100.682045px;}
.wscc{word-spacing:101.287670px;}
.ws5c{word-spacing:102.324557px;}
.ws9c{word-spacing:104.182800px;}
.wsb8{word-spacing:104.661600px;}
.ws5d{word-spacing:106.574630px;}
.wsbe{word-spacing:113.120966px;}
.ws9a{word-spacing:114.131645px;}
.wsb4{word-spacing:118.114800px;}
.ws59{word-spacing:118.410278px;}
.wsa9{word-spacing:120.702058px;}
.wsa6{word-spacing:124.071600px;}
.wsc3{word-spacing:125.109245px;}
.wsc1{word-spacing:125.504966px;}
.wsc5{word-spacing:127.623514px;}
.wsa4{word-spacing:128.280173px;}
.ws65{word-spacing:129.223757px;}
.ws67{word-spacing:129.277555px;}
.wsa3{word-spacing:129.736800px;}
.ws64{word-spacing:131.859878px;}
.wsc2{word-spacing:132.974400px;}
.wsbb{word-spacing:134.524800px;}
.ws99{word-spacing:135.464371px;}
.wsa5{word-spacing:141.154733px;}
.ws60{word-spacing:141.866381px;}
.wsba{word-spacing:142.503245px;}
.ws66{word-spacing:142.673357px;}
.wsa0{word-spacing:146.535600px;}
.ws5f{word-spacing:147.122400px;}
.ws5e{word-spacing:147.960576px;}
.ws6a{word-spacing:150.366528px;}
.ws58{word-spacing:150.850714px;}
.ws71{word-spacing:151.980480px;}
.wsb1{word-spacing:152.408966px;}
.ws6e{word-spacing:155.754566px;}
.ws5b{word-spacing:156.122957px;}
.wsb3{word-spacing:157.402800px;}
.wsbc{word-spacing:160.926576px;}
.wsb2{word-spacing:166.894800px;}
.ws63{word-spacing:174.022810px;}
.wsc4{word-spacing:184.740576px;}
.ws9d{word-spacing:195.234394px;}
.wsb5{word-spacing:201.930576px;}
.wsb0{word-spacing:229.584576px;}
.wsaf{word-spacing:280.773850px;}
.ws90{word-spacing:406.264922px;}
.ws6b{word-spacing:598.850419px;}
.ws98{word-spacing:918.015898px;}
._11{margin-left:-22.895748px;}
._3e{margin-left:-10.402210px;}
._3a{margin-left:-7.711052px;}
._1{margin-left:-6.635092px;}
._7{margin-left:-5.439580px;}
._3{margin-left:-3.981082px;}
._5{margin-left:-2.047382px;}
._2{margin-left:-1.022170px;}
._6{width:1.091170px;}
._0{width:2.990473px;}
._3d{width:4.042615px;}
._1b{width:5.080926px;}
._3b{width:6.966270px;}
._37{width:12.535027px;}
._18{width:13.808164px;}
._14{width:15.556668px;}
._4{width:16.677504px;}
._3f{width:17.708589px;}
._9{width:18.709763px;}
._8{width:19.800735px;}
._f{width:21.235350px;}
._16{width:22.511518px;}
._12{width:23.686149px;}
._13{width:25.598968px;}
._39{width:27.212910px;}
._1c{width:28.309795px;}
._17{width:29.588922px;}
._b{width:30.724658px;}
._c{width:32.045706px;}
._3c{width:33.549123px;}
._a{width:34.968726px;}
._64{width:37.061413px;}
._15{width:38.809376px;}
._1d{width:41.245164px;}
._1a{width:42.560227px;}
._10{width:47.730952px;}
._19{width:52.064548px;}
._65{width:58.403257px;}
._1f{width:71.767066px;}
._20{width:74.672179px;}
._60{width:85.888355px;}
._44{width:91.564877px;}
._33{width:94.200998px;}
._56{width:95.808528px;}
._42{width:99.311846px;}
._55{width:104.019437px;}
._32{width:105.068275px;}
._49{width:107.153779px;}
._5d{width:111.032774px;}
._4b{width:113.194368px;}
._4e{width:115.334269px;}
._54{width:116.957722px;}
._62{width:118.033690px;}
._4a{width:123.317645px;}
._4d{width:124.555786px;}
._4c{width:125.673062px;}
._31{width:129.492749px;}
._46{width:130.999104px;}
._5f{width:132.021811px;}
._4f{width:135.948557px;}
._1e{width:137.185920px;}
._41{width:140.216519px;}
._2e{width:142.673357px;}
._2c{width:144.341107px;}
._52{width:147.031027px;}
._48{width:148.278064px;}
._5e{width:152.691725px;}
._59{width:154.187232px;}
._2f{width:155.262182px;}
._50{width:157.232334px;}
._26{width:164.354112px;}
._36{width:165.430080px;}
._45{width:167.546106px;}
._24{width:169.572557px;}
._27{width:173.123251px;}
._43{width:176.315245px;}
._28{width:177.965107px;}
._23{width:182.376576px;}
._51{width:183.882931px;}
._5c{width:185.121043px;}
._30{width:187.499856px;}
._2b{width:191.199514px;}
._5a{width:193.405248px;}
._25{width:194.588813px;}
._22{width:195.610982px;}
._47{width:197.332531px;}
._53{width:199.484467px;}
._5b{width:203.842138px;}
._2d{width:204.918106px;}
._21{width:209.006784px;}
._61{width:210.835930px;}
._29{width:222.456384px;}
._2a{width:236.228774px;}
._58{width:271.650359px;}
._57{width:275.605115px;}
._34{width:719.500809px;}
._d{width:742.843700px;}
._35{width:802.295539px;}
._38{width:1036.748966px;}
._63{width:2036.631300px;}
._e{width:2060.541300px;}
._40{width:3540.231300px;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc4{color:transparent;}
.fc1{color:rgb(77,128,114);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:35.865600px;}
.fs13{font-size:37.371600px;}
.fs9{font-size:41.842800px;}
.fsc{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:45.429600px;}
.fsb{font-size:47.236800px;}
.fs12{font-size:47.337600px;}
.fsd{font-size:47.820600px;}
.fsa{font-size:53.798400px;}
.fsf{font-size:56.058000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs10{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs11{font-size:83.686200px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.fs5{font-size:128.507760px;}
.y0{bottom:0.000000px;}
.y31{bottom:3.425340px;}
.y30{bottom:14.151273px;}
.y24{bottom:16.704213px;}
.y51{bottom:63.780000px;}
.y6{bottom:66.525004px;}
.y5{bottom:97.125005px;}
.y50{bottom:112.593000px;}
.y123{bottom:112.978500px;}
.y8a{bottom:119.049000px;}
.y167{bottom:119.863500px;}
.y84{bottom:123.121500px;}
.y122{bottom:127.791000px;}
.y4f{bottom:132.856500px;}
.y89{bottom:133.246500px;}
.yde{bottom:136.729500px;}
.y18b{bottom:138.724500px;}
.y22{bottom:139.264499px;}
.y166{bottom:140.128500px;}
.y83{bottom:143.386500px;}
.y15b{bottom:144.330000px;}
.y88{bottom:147.444000px;}
.ydd{bottom:150.925500px;}
.y4e{bottom:153.121500px;}
.y18a{bottom:158.092500px;}
.y165{bottom:160.392000px;}
.y87{bottom:161.640000px;}
.y82{bottom:163.650000px;}
.y15a{bottom:164.595000px;}
.y86{bottom:165.979500px;}
.y1bb{bottom:167.059500px;}
.y4d{bottom:173.385000px;}
.ydc{bottom:176.434500px;}
.y189{bottom:177.460500px;}
.yfd{bottom:177.798000px;}
.y164{bottom:180.657000px;}
.y81{bottom:183.913500px;}
.y159{bottom:184.858500px;}
.y1ba{bottom:186.427500px;}
.yfc{bottom:192.610500px;}
.ydb{bottom:192.873000px;}
.y4c{bottom:193.648500px;}
.y188{bottom:196.827000px;}
.y19{bottom:196.933500px;}
.y163{bottom:200.920500px;}
.y80{bottom:204.178500px;}
.y158{bottom:205.122000px;}
.y1b9{bottom:205.794000px;}
.yd8{bottom:209.311500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y4b{bottom:213.913500px;}
.y187{bottom:216.195000px;}
.yd7{bottom:217.531500px;}
.y162{bottom:221.184000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y7f{bottom:224.442000px;}
.y1b8{bottom:225.162000px;}
.y157{bottom:225.387000px;}
.yda{bottom:225.750000px;}
.y4a{bottom:234.177000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y186{bottom:235.561500px;}
.y161{bottom:241.449000px;}
.yd9{bottom:242.188500px;}
.y1b7{bottom:244.528500px;}
.y7e{bottom:244.707000px;}
.y156{bottom:245.650500px;}
.yfb{bottom:248.461500px;}
.y49{bottom:254.442000px;}
.yf8{bottom:254.464500px;}
.y185{bottom:254.929500px;}
.yd6{bottom:258.627000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.yfa{bottom:261.609000px;}
.y160{bottom:261.712500px;}
.y1b6{bottom:263.896500px;}
.yf7{bottom:264.717000px;}
.y7d{bottom:264.970500px;}
.y155{bottom:265.915500px;}
.yd4{bottom:266.845500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y184{bottom:274.297500px;}
.y48{bottom:274.705500px;}
.yd2{bottom:275.065500px;}
.yf9{bottom:280.855500px;}
.y15f{bottom:281.977500px;}
.y1b5{bottom:283.264500px;}
.yd3{bottom:283.284000px;}
.yaa{bottom:284.307000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y7c{bottom:285.234000px;}
.y154{bottom:286.179000px;}
.yd5{bottom:291.504000px;}
.y183{bottom:293.664000px;}
.y47{bottom:294.969000px;}
.y15e{bottom:302.241000px;}
.y1b4{bottom:302.631000px;}
.y7b{bottom:305.499000px;}
.y153{bottom:306.442500px;}
.yd1{bottom:307.941000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yf6{bottom:312.873000px;}
.y182{bottom:313.032000px;}
.y46{bottom:315.234000px;}
.yd0{bottom:316.161000px;}
.y1b3{bottom:321.999000px;}
.y15d{bottom:322.504500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y7a{bottom:325.762500px;}
.y152{bottom:326.707500px;}
.y181{bottom:332.398500px;}
.yf5{bottom:333.138000px;}
.y45{bottom:335.497500px;}
.y1b2{bottom:341.367000px;}
.ya9{bottom:342.769500px;}
.y79{bottom:346.027500px;}
.y151{bottom:346.971000px;}
.y10{bottom:348.133500px;}
.ycf{bottom:348.394500px;}
.y180{bottom:351.766500px;}
.yf4{bottom:353.401500px;}
.y44{bottom:355.762500px;}
.y1b1{bottom:360.733500px;}
.ya8{bottom:363.033000px;}
.y78{bottom:366.291000px;}
.y17f{bottom:371.134500px;}
.yf3{bottom:373.665000px;}
.y43{bottom:376.026000px;}
.y1b0{bottom:380.101500px;}
.yce{bottom:382.138500px;}
.ya7{bottom:383.298000px;}
.y77{bottom:386.554500px;}
.yf{bottom:386.785499px;}
.y150{bottom:390.100500px;}
.y17e{bottom:390.501000px;}
.yf2{bottom:393.930000px;}
.y42{bottom:396.289500px;}
.y1af{bottom:399.468000px;}
.ya6{bottom:403.561500px;}
.y14f{bottom:404.296500px;}
.y76{bottom:406.819500px;}
.ye{bottom:408.044999px;}
.y17d{bottom:409.869000px;}
.yf1{bottom:414.193500px;}
.y41{bottom:416.554500px;}
.y14e{bottom:418.494000px;}
.y1ae{bottom:418.836000px;}
.ycd{bottom:419.961000px;}
.ya5{bottom:423.825000px;}
.y75{bottom:427.083000px;}
.y17c{bottom:429.237000px;}
.y14d{bottom:432.690000px;}
.ycc{bottom:434.157000px;}
.yf0{bottom:434.457000px;}
.y40{bottom:436.818000px;}
.y1ad{bottom:438.204000px;}
.y121{bottom:441.613500px;}
.ya4{bottom:444.090000px;}
.y14c{bottom:446.887500px;}
.y74{bottom:447.348000px;}
.ycb{bottom:448.354500px;}
.y17b{bottom:448.603500px;}
.yef{bottom:454.722000px;}
.y3f{bottom:457.083000px;}
.y1ac{bottom:457.570500px;}
.y14b{bottom:461.083500px;}
.y120{bottom:461.877000px;}
.yca{bottom:462.550500px;}
.ya3{bottom:464.353500px;}
.y73{bottom:467.611500px;}
.y17a{bottom:467.971500px;}
.yee{bottom:474.985500px;}
.y1ab{bottom:476.938500px;}
.y3e{bottom:477.346500px;}
.y11f{bottom:482.140500px;}
.y14a{bottom:482.784000px;}
.ya2{bottom:484.618500px;}
.y179{bottom:487.338000px;}
.y72{bottom:487.875000px;}
.yc9{bottom:487.984500px;}
.yed{bottom:495.250500px;}
.y1aa{bottom:496.305000px;}
.y3d{bottom:497.610000px;}
.y149{bottom:499.743000px;}
.y131{bottom:499.918500px;}
.y11e{bottom:502.405500px;}
.yd{bottom:502.864502px;}
.ya1{bottom:504.882000px;}
.yc8{bottom:504.943500px;}
.y178{bottom:506.706000px;}
.y71{bottom:508.140000px;}
.y130{bottom:514.114500px;}
.yec{bottom:515.514000px;}
.y1a9{bottom:515.673000px;}
.y148{bottom:516.702000px;}
.yc{bottom:520.864502px;}
.yc7{bottom:521.901000px;}
.y11d{bottom:522.669000px;}
.ya0{bottom:525.145500px;}
.y177{bottom:526.074000px;}
.y3c{bottom:526.840500px;}
.y70{bottom:528.403500px;}
.y15c{bottom:534.112500px;}
.y1a8{bottom:535.041000px;}
.yeb{bottom:535.777500px;}
.y12f{bottom:535.816500px;}
.yb{bottom:538.864499px;}
.y147{bottom:541.161000px;}
.y9f{bottom:545.410500px;}
.y176{bottom:545.440500px;}
.yc6{bottom:546.361500px;}
.y6f{bottom:548.667000px;}
.y11c{bottom:551.899500px;}
.y12e{bottom:552.774000px;}
.y1a7{bottom:554.407500px;}
.yea{bottom:556.042500px;}
.ya{bottom:556.864499px;}
.y175{bottom:564.808500px;}
.y146{bottom:565.101000px;}
.y9e{bottom:565.674000px;}
.y6e{bottom:568.932000px;}
.y12d{bottom:569.889000px;}
.yc5{bottom:570.300000px;}
.y1a6{bottom:573.775500px;}
.ye9{bottom:576.306000px;}
.y145{bottom:582.058500px;}
.y174{bottom:584.175000px;}
.y9d{bottom:585.939000px;}
.y11b{bottom:586.719000px;}
.yc4{bottom:586.738500px;}
.y6d{bottom:589.195500px;}
.y1a5{bottom:593.142000px;}
.y12c{bottom:593.829000px;}
.ye8{bottom:596.571000px;}
.y144{bottom:599.017500px;}
.y3b{bottom:602.352000px;}
.yc3{bottom:603.177000px;}
.y173{bottom:603.543000px;}
.y9c{bottom:606.202500px;}
.y11a{bottom:606.984000px;}
.y6c{bottom:609.460500px;}
.y1a4{bottom:612.510000px;}
.ye7{bottom:616.834500px;}
.y12b{bottom:617.769000px;}
.y119{bottom:622.660500px;}
.y172{bottom:622.911000px;}
.y143{bottom:623.476500px;}
.y9b{bottom:626.466000px;}
.yc2{bottom:627.117000px;}
.y118{bottom:627.247500px;}
.y6b{bottom:629.724000px;}
.y1a3{bottom:631.878000px;}
.y12a{bottom:634.726500px;}
.ye6{bottom:637.098000px;}
.y3a{bottom:640.549500px;}
.y171{bottom:642.277500px;}
.y9{bottom:645.510000px;}
.y9a{bottom:646.731000px;}
.y142{bottom:647.416500px;}
.y6a{bottom:649.987500px;}
.yc1{bottom:651.055500px;}
.y1a2{bottom:651.244500px;}
.y129{bottom:651.685500px;}
.y117{bottom:660.979500px;}
.y170{bottom:661.645500px;}
.y141{bottom:664.374000px;}
.y116{bottom:665.566500px;}
.y8{bottom:666.771000px;}
.y99{bottom:666.994500px;}
.yc0{bottom:667.494000px;}
.ye5{bottom:667.894500px;}
.y69{bottom:670.252500px;}
.y1a1{bottom:670.612500px;}
.y128{bottom:675.625500px;}
.y39{bottom:678.747000px;}
.y140{bottom:680.812500px;}
.y16f{bottom:681.012000px;}
.ye4{bottom:681.040500px;}
.ybf{bottom:683.932500px;}
.ye2{bottom:684.148500px;}
.y98{bottom:687.258000px;}
.y115{bottom:688.453500px;}
.y1a0{bottom:689.979000px;}
.y68{bottom:690.516000px;}
.y38{bottom:699.010500px;}
.y127{bottom:699.564000px;}
.y16e{bottom:700.380000px;}
.ye3{bottom:702.099000px;}
.y13f{bottom:705.273000px;}
.y97{bottom:707.523000px;}
.ybe{bottom:707.872500px;}
.y113{bottom:708.717000px;}
.y19f{bottom:709.347000px;}
.y67{bottom:710.781000px;}
.y114{bottom:714.142500px;}
.y126{bottom:716.002500px;}
.y85{bottom:716.205000px;}
.y37{bottom:719.274000px;}
.y16d{bottom:719.748000px;}
.y7{bottom:726.298500px;}
.y96{bottom:727.786500px;}
.y19e{bottom:728.715000px;}
.y112{bottom:728.982000px;}
.y13e{bottom:729.211500px;}
.y66{bottom:731.044500px;}
.ybd{bottom:731.812500px;}
.y36{bottom:739.539000px;}
.y111{bottom:744.658500px;}
.y125{bottom:747.622500px;}
.y95{bottom:748.051500px;}
.y16c{bottom:748.081500px;}
.y110{bottom:749.245500px;}
.y65{bottom:751.308000px;}
.y4{bottom:752.599495px;}
.y13d{bottom:753.151500px;}
.ye1{bottom:753.475500px;}
.ybc{bottom:755.751000px;}
.y35{bottom:759.802500px;}
.y19d{bottom:767.449500px;}
.y94{bottom:768.315000px;}
.y10e{bottom:769.060500px;}
.y10f{bottom:770.122500px;}
.y64{bottom:771.573000px;}
.y10d{bottom:774.585000px;}
.y13c{bottom:777.091500px;}
.ybb{bottom:779.691000px;}
.y34{bottom:780.067500px;}
.y19c{bottom:786.816000px;}
.y16b{bottom:787.533000px;}
.y93{bottom:788.578500px;}
.y63{bottom:791.836500px;}
.ye0{bottom:794.004000px;}
.y13b{bottom:794.049000px;}
.y10b{bottom:794.848500px;}
.yba{bottom:796.650000px;}
.y124{bottom:798.445500px;}
.y10c{bottom:800.274000px;}
.y33{bottom:800.331000px;}
.y19b{bottom:806.184000px;}
.y92{bottom:808.843500px;}
.y13a{bottom:811.008000px;}
.y16a{bottom:811.698000px;}
.y62{bottom:812.101500px;}
.yb9{bottom:813.607500px;}
.y32{bottom:820.594500px;}
.y19a{bottom:825.552000px;}
.y91{bottom:829.107000px;}
.y109{bottom:831.054000px;}
.y10a{bottom:831.645000px;}
.y61{bottom:832.365000px;}
.y139{bottom:835.467000px;}
.y169{bottom:835.861500px;}
.yb8{bottom:838.068000px;}
.y199{bottom:844.918500px;}
.y90{bottom:849.372000px;}
.y168{bottom:851.059500px;}
.y106{bottom:851.068500px;}
.y60{bottom:852.628500px;}
.y108{bottom:852.826500px;}
.y105{bottom:855.655500px;}
.y2f{bottom:858.650964px;}
.y138{bottom:859.407000px;}
.y107{bottom:861.591000px;}
.yb7{bottom:862.006500px;}
.y198{bottom:864.286500px;}
.y2e{bottom:866.226000px;}
.y1c4{bottom:867.022500px;}
.y8e{bottom:869.635500px;}
.y5f{bottom:872.893500px;}
.y8f{bottom:875.061000px;}
.y137{bottom:876.366000px;}
.yb6{bottom:878.445000px;}
.y3{bottom:879.369000px;}
.y197{bottom:883.653000px;}
.y1c3{bottom:886.389000px;}
.y8d{bottom:889.899000px;}
.y5e{bottom:893.157000px;}
.y136{bottom:893.323500px;}
.yb5{bottom:894.883500px;}
.y2d{bottom:898.416000px;}
.y104{bottom:902.818500px;}
.y196{bottom:903.021000px;}
.y1c2{bottom:905.757000px;}
.y1c1{bottom:906.162000px;}
.y8c{bottom:910.164000px;}
.y5d{bottom:913.422000px;}
.y2c{bottom:916.573500px;}
.y135{bottom:917.784000px;}
.yb4{bottom:918.823500px;}
.ydf{bottom:919.129500px;}
.y195{bottom:922.389000px;}
.y103{bottom:923.083500px;}
.y5c{bottom:933.685500px;}
.y1c0{bottom:938.707500px;}
.y8b{bottom:939.394500px;}
.y2b{bottom:939.612000px;}
.y134{bottom:941.722500px;}
.y194{bottom:941.755500px;}
.yb3{bottom:942.763500px;}
.y2{bottom:945.126001px;}
.y102{bottom:947.124000px;}
.y5b{bottom:953.949000px;}
.y2a{bottom:957.769500px;}
.y1bf{bottom:958.074000px;}
.y133{bottom:958.681500px;}
.yb2{bottom:959.200500px;}
.y101{bottom:960.270000px;}
.y193{bottom:961.123500px;}
.yff{bottom:963.378000px;}
.y1{bottom:966.726000px;}
.y5a{bottom:974.214000px;}
.y132{bottom:975.120000px;}
.yb1{bottom:975.639000px;}
.y29{bottom:975.927000px;}
.y100{bottom:979.518000px;}
.y192{bottom:980.490000px;}
.y1be{bottom:984.913500px;}
.y59{bottom:994.477500px;}
.y28{bottom:998.167500px;}
.yb0{bottom:999.579000px;}
.y191{bottom:999.858000px;}
.y1bd{bottom:1004.281500px;}
.yfe{bottom:1014.585000px;}
.y58{bottom:1014.742500px;}
.y190{bottom:1019.226000px;}
.yaf{bottom:1023.519000px;}
.y1bc{bottom:1031.121000px;}
.y57{bottom:1035.006000px;}
.y18f{bottom:1038.592500px;}
.y27{bottom:1040.848500px;}
.yae{bottom:1047.459000px;}
.y56{bottom:1055.269500px;}
.y18e{bottom:1057.960500px;}
.y26{bottom:1071.244500px;}
.y55{bottom:1075.534500px;}
.y18d{bottom:1077.327000px;}
.yad{bottom:1079.077500px;}
.y54{bottom:1095.798000px;}
.y18c{bottom:1096.695000px;}
.yac{bottom:1098.310500px;}
.y25{bottom:1100.145000px;}
.y53{bottom:1116.063000px;}
.yab{bottom:1117.543500px;}
.y23{bottom:1137.954000px;}
.y52{bottom:1168.366500px;}
.h2a{height:2.391024px;}
.h10{height:25.508090px;}
.h17{height:26.110157px;}
.he{height:30.461558px;}
.h7{height:32.130000px;}
.h16{height:33.072749px;}
.h12{height:33.112997px;}
.h22{height:33.299897px;}
.h11{height:34.199443px;}
.h1d{height:34.574294px;}
.h18{height:34.813397px;}
.h15{height:35.052500px;}
.h24{height:35.503200px;}
.h36{height:37.389888px;}
.h19{height:38.896243px;}
.hf{height:39.165235px;}
.h20{height:39.434227px;}
.h1a{height:42.043500px;}
.h32{height:42.500452px;}
.h13{height:43.217759px;}
.h14{height:43.516637px;}
.hb{height:43.815515px;}
.h6{height:45.900000px;}
.h31{height:46.445641px;}
.h21{height:46.714950px;}
.h3{height:48.195000px;}
.h1c{height:49.985558px;}
.h1b{height:49.991558px;}
.h9{height:50.930649px;}
.hd{height:54.547601px;}
.h2{height:55.080000px;}
.h2e{height:59.971200px;}
.h23{height:65.024177px;}
.h28{height:67.921200px;}
.h1e{height:72.039235px;}
.h1f{height:72.045235px;}
.h30{height:72.618749px;}
.hc{height:77.792486px;}
.h5{height:78.030000px;}
.h2f{height:79.476749px;}
.h2b{height:80.683200px;}
.h25{height:83.980637px;}
.h33{height:87.123024px;}
.ha{height:87.128261px;}
.h26{height:87.724950px;}
.h2c{height:89.481024px;}
.h27{height:111.730950px;}
.h4{height:119.055004px;}
.h29{height:120.415200px;}
.h2d{height:139.558637px;}
.h34{height:892.914000px;}
.h35{height:893.250000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:197.247128px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.w6{width:1262.835000px;}
.w7{width:1263.000000px;}
.x0{left:0.000000px;}
.xb{left:29.274117px;}
.x6{left:58.056593px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:114.802500px;}
.x56{left:119.871000px;}
.x9{left:122.110500px;}
.x7{left:123.307500px;}
.x96{left:126.727500px;}
.x57{left:131.833500px;}
.x2f{left:134.214000px;}
.x18{left:136.063500px;}
.x86{left:137.079000px;}
.x85{left:143.634000px;}
.x8{left:146.170500px;}
.x30{left:147.487500px;}
.x36{left:149.100000px;}
.x35{left:150.309000px;}
.x3d{left:151.876500px;}
.x87{left:156.039000px;}
.x7d{left:158.394000px;}
.x40{left:160.329000px;}
.x2d{left:162.324000px;}
.xa1{left:165.664500px;}
.x99{left:175.954500px;}
.x41{left:178.279500px;}
.x83{left:179.980500px;}
.x88{left:183.358500px;}
.x67{left:184.965000px;}
.x74{left:186.060000px;}
.xc{left:188.380500px;}
.x8e{left:190.476000px;}
.x32{left:194.665500px;}
.x89{left:196.621500px;}
.x98{left:198.207000px;}
.x25{left:200.215500px;}
.x9a{left:201.300000px;}
.x4{left:203.484001px;}
.x94{left:204.498000px;}
.x23{left:207.031500px;}
.x3e{left:213.472500px;}
.x2a{left:216.927000px;}
.x31{left:218.632500px;}
.x29{left:219.886500px;}
.x1f{left:224.865000px;}
.x3f{left:227.979000px;}
.x77{left:234.504000px;}
.x84{left:235.519500px;}
.x28{left:239.179500px;}
.xf{left:247.609500px;}
.x6f{left:251.260500px;}
.x10{left:253.206000px;}
.x47{left:254.895000px;}
.x20{left:257.719500px;}
.x52{left:261.741000px;}
.x42{left:270.321000px;}
.xd{left:273.843000px;}
.x24{left:277.434000px;}
.x43{left:279.211500px;}
.x72{left:284.557500px;}
.x48{left:287.049000px;}
.x62{left:288.925500px;}
.x11{left:290.058000px;}
.x33{left:297.637500px;}
.x5a{left:300.625500px;}
.x8c{left:302.689500px;}
.x92{left:305.728500px;}
.x93{left:307.453500px;}
.x27{left:314.026500px;}
.xa8{left:318.363000px;}
.x37{left:323.581500px;}
.x2e{left:328.027500px;}
.x53{left:330.348000px;}
.x38{left:334.651500px;}
.x21{left:335.994000px;}
.x5b{left:337.321500px;}
.x63{left:345.358500px;}
.x54{left:346.828500px;}
.x73{left:348.199500px;}
.x79{left:350.862000px;}
.xa5{left:359.062500px;}
.x55{left:361.092000px;}
.x7a{left:376.797000px;}
.xa6{left:383.862000px;}
.x7e{left:393.504000px;}
.x64{left:398.361000px;}
.x12{left:402.297000px;}
.x65{left:403.596000px;}
.x22{left:406.584000px;}
.x8f{left:407.983500px;}
.x68{left:411.361500px;}
.x13{left:414.780000px;}
.x69{left:419.551500px;}
.x9d{left:422.514000px;}
.x90{left:424.302000px;}
.x7b{left:426.223500px;}
.x66{left:427.557000px;}
.x7f{left:431.514000px;}
.x2b{left:434.059500px;}
.x26{left:436.746000px;}
.xa7{left:439.191000px;}
.x2c{left:441.369000px;}
.x80{left:446.266500px;}
.xa3{left:451.713000px;}
.xa2{left:453.921000px;}
.x3{left:454.959000px;}
.x19{left:457.753500px;}
.x1a{left:468.808500px;}
.x91{left:472.482000px;}
.x81{left:474.892500px;}
.x70{left:481.045500px;}
.x14{left:483.108000px;}
.x5c{left:493.690500px;}
.x44{left:499.339500px;}
.x82{left:504.981000px;}
.x8d{left:507.030000px;}
.x58{left:510.831000px;}
.x5d{left:512.857500px;}
.x15{left:514.123500px;}
.x16{left:519.531000px;}
.x9b{left:523.987500px;}
.x17{left:530.836500px;}
.x9c{left:535.950000px;}
.x71{left:537.453000px;}
.x45{left:541.251000px;}
.x6a{left:544.165500px;}
.x6b{left:553.074000px;}
.x78{left:554.788500px;}
.x1d{left:561.672000px;}
.x75{left:563.370000px;}
.x6c{left:582.583500px;}
.x97{left:585.309000px;}
.x1e{left:595.063500px;}
.x8a{left:596.812500px;}
.x7c{left:600.021000px;}
.x6d{left:608.188500px;}
.x8b{left:612.217500px;}
.x60{left:619.233000px;}
.x95{left:620.350500px;}
.xa4{left:622.105500px;}
.x4d{left:636.147000px;}
.x9f{left:639.346500px;}
.xe{left:640.701000px;}
.x6e{left:652.563000px;}
.x4e{left:654.162000px;}
.x5e{left:657.456000px;}
.x34{left:659.632500px;}
.x9e{left:668.841000px;}
.x61{left:670.738500px;}
.xa0{left:676.444500px;}
.x1b{left:678.493500px;}
.x5f{left:689.608500px;}
.x49{left:695.823000px;}
.xa{left:701.339982px;}
.x4f{left:707.373000px;}
.x4a{left:723.891000px;}
.x39{left:726.721500px;}
.x46{left:737.977500px;}
.x50{left:739.539000px;}
.x59{left:742.002000px;}
.x1c{left:749.194500px;}
.x4b{left:753.076500px;}
.x3a{left:757.737000px;}
.x3b{left:763.224000px;}
.x76{left:767.212500px;}
.x4c{left:771.091500px;}
.x3c{left:774.529500px;}
.x51{left:776.235000px;}
@media print{
.v16{vertical-align:-59.002667pt;}
.v17{vertical-align:-37.253333pt;}
.vf{vertical-align:-23.957333pt;}
.v2{vertical-align:-17.360000pt;}
.v3{vertical-align:-15.429333pt;}
.v11{vertical-align:-13.301333pt;}
.v9{vertical-align:-10.453333pt;}
.v5{vertical-align:-9.509333pt;}
.v7{vertical-align:-7.968000pt;}
.v1f{vertical-align:-6.378667pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:2.485333pt;}
.v1e{vertical-align:5.413333pt;}
.v20{vertical-align:6.378667pt;}
.v8{vertical-align:7.968000pt;}
.va{vertical-align:10.453333pt;}
.v12{vertical-align:16.309333pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v10{vertical-align:20.464000pt;}
.v15{vertical-align:21.754667pt;}
.v1c{vertical-align:23.573333pt;}
.v6{vertical-align:29.221333pt;}
.vc{vertical-align:35.968000pt;}
.v14{vertical-align:36.858667pt;}
.v18{vertical-align:40.160000pt;}
.v1d{vertical-align:41.248000pt;}
.ve{vertical-align:47.338667pt;}
.v13{vertical-align:48.469333pt;}
.vd{vertical-align:57.792000pt;}
.v19{vertical-align:59.002667pt;}
.v1b{vertical-align:61.797333pt;}
.v1a{vertical-align:75.312000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls69{letter-spacing:0.071119pt;}
.ls64{letter-spacing:0.076452pt;}
.ls2b{letter-spacing:0.085852pt;}
.ls67{letter-spacing:0.173867pt;}
.ls5d{letter-spacing:0.179200pt;}
.ls4e{letter-spacing:0.219200pt;}
.ls49{letter-spacing:0.224533pt;}
.ls5f{letter-spacing:0.380773pt;}
.ls5c{letter-spacing:0.397116pt;}
.ls8d{letter-spacing:0.448153pt;}
.ls26{letter-spacing:0.482502pt;}
.ls61{letter-spacing:0.486769pt;}
.ls1f{letter-spacing:0.487835pt;}
.ls58{letter-spacing:0.499505pt;}
.ls24{letter-spacing:0.501867pt;}
.ls48{letter-spacing:0.504838pt;}
.lsf{letter-spacing:0.570745pt;}
.ls11{letter-spacing:0.576078pt;}
.lsb0{letter-spacing:0.594667pt;}
.lsad{letter-spacing:0.600000pt;}
.ls7b{letter-spacing:0.628984pt;}
.ls4b{letter-spacing:0.640696pt;}
.ls70{letter-spacing:0.647623pt;}
.ls78{letter-spacing:0.659733pt;}
.ls80{letter-spacing:0.664991pt;}
.ls79{letter-spacing:0.665067pt;}
.ls23{letter-spacing:0.789841pt;}
.ls20{letter-spacing:0.882114pt;}
.ls3a{letter-spacing:0.898926pt;}
.ls5b{letter-spacing:0.899962pt;}
.ls66{letter-spacing:0.905295pt;}
.ls63{letter-spacing:0.989169pt;}
.ls6c{letter-spacing:0.993435pt;}
.ls6b{letter-spacing:1.009067pt;}
.ls25{letter-spacing:1.011505pt;}
.ls5e{letter-spacing:1.019878pt;}
.ls1c{letter-spacing:1.085762pt;}
.lsa{letter-spacing:1.133683pt;}
.ls47{letter-spacing:1.167711pt;}
.ls82{letter-spacing:1.170114pt;}
.ls57{letter-spacing:1.173044pt;}
.ls45{letter-spacing:1.262881pt;}
.ls1e{letter-spacing:1.291174pt;}
.ls55{letter-spacing:1.296508pt;}
.ls51{letter-spacing:1.302029pt;}
.ls44{letter-spacing:1.328347pt;}
.ls6d{letter-spacing:1.486584pt;}
.ls5{letter-spacing:1.654338pt;}
.ls89{letter-spacing:1.772781pt;}
.ls5a{letter-spacing:1.798769pt;}
.ls54{letter-spacing:1.956214pt;}
.ls87{letter-spacing:2.115521pt;}
.ls72{letter-spacing:2.324214pt;}
.ls46{letter-spacing:2.363362pt;}
.ls4d{letter-spacing:2.368696pt;}
.lsa4{letter-spacing:2.653600pt;}
.ls1{letter-spacing:2.657067pt;}
.lsb1{letter-spacing:2.658933pt;}
.ls35{letter-spacing:2.922363pt;}
.ls83{letter-spacing:3.026422pt;}
.ls62{letter-spacing:3.158400pt;}
.ls3e{letter-spacing:3.160838pt;}
.ls60{letter-spacing:3.163733pt;}
.ls99{letter-spacing:3.253867pt;}
.lsa5{letter-spacing:3.259200pt;}
.ls50{letter-spacing:3.318400pt;}
.ls4a{letter-spacing:3.323733pt;}
.ls3f{letter-spacing:3.652214pt;}
.ls68{letter-spacing:3.782545pt;}
.ls40{letter-spacing:3.822172pt;}
.ls8a{letter-spacing:3.825118pt;}
.ls75{letter-spacing:3.827230pt;}
.ls1b{letter-spacing:3.827505pt;}
.ls4f{letter-spacing:4.107174pt;}
.ls7c{letter-spacing:4.515505pt;}
.ls4c{letter-spacing:9.516533pt;}
.ls56{letter-spacing:9.521067pt;}
.ls3c{letter-spacing:9.521867pt;}
.ls84{letter-spacing:10.157762pt;}
.ls7a{letter-spacing:10.172455pt;}
.ls7f{letter-spacing:10.358029pt;}
.lsa3{letter-spacing:10.499278pt;}
.ls22{letter-spacing:10.571362pt;}
.ls9{letter-spacing:10.626533pt;}
.ls1a{letter-spacing:10.839336pt;}
.ls42{letter-spacing:10.968429pt;}
.ls77{letter-spacing:10.973762pt;}
.ls74{letter-spacing:11.182881pt;}
.ls59{letter-spacing:11.626832pt;}
.ls85{letter-spacing:11.632696pt;}
.ls28{letter-spacing:11.635096pt;}
.ls36{letter-spacing:11.654839pt;}
.ls33{letter-spacing:11.657570pt;}
.ls2e{letter-spacing:11.658682pt;}
.ls29{letter-spacing:11.659532pt;}
.ls31{letter-spacing:11.663207pt;}
.lsbd{letter-spacing:11.943115pt;}
.ls34{letter-spacing:12.166029pt;}
.ls81{letter-spacing:12.177067pt;}
.ls39{letter-spacing:12.186378pt;}
.ls1d{letter-spacing:12.191711pt;}
.ls7{letter-spacing:12.273923pt;}
.ls73{letter-spacing:12.323096pt;}
.ls86{letter-spacing:12.359756pt;}
.ls8c{letter-spacing:12.365089pt;}
.ls38{letter-spacing:12.435096pt;}
.ls9b{letter-spacing:12.528078pt;}
.ls30{letter-spacing:12.696429pt;}
.ls2a{letter-spacing:12.699362pt;}
.lsd{letter-spacing:12.752128pt;}
.lsc{letter-spacing:13.017797pt;}
.ls6{letter-spacing:13.124065pt;}
.ls8{letter-spacing:13.283467pt;}
.ls91{letter-spacing:13.602270pt;}
.ls27{letter-spacing:13.654400pt;}
.ls92{letter-spacing:13.682449pt;}
.ls32{letter-spacing:14.022029pt;}
.ls37{letter-spacing:14.152838pt;}
.ls2c{letter-spacing:14.158172pt;}
.ls2d{letter-spacing:14.291096pt;}
.ls2f{letter-spacing:14.294029pt;}
.ls21{letter-spacing:14.443174pt;}
.ls90{letter-spacing:14.824349pt;}
.ls2{letter-spacing:15.942400pt;}
.ls6f{letter-spacing:16.061762pt;}
.ls65{letter-spacing:16.310400pt;}
.ls8e{letter-spacing:16.440838pt;}
.ls8f{letter-spacing:16.446172pt;}
.ls3d{letter-spacing:16.451505pt;}
.ls43{letter-spacing:17.374400pt;}
.ls53{letter-spacing:17.746118pt;}
.ls7e{letter-spacing:18.584838pt;}
.lsb{letter-spacing:18.703121pt;}
.lsbc{letter-spacing:21.731751pt;}
.ls76{letter-spacing:48.166400pt;}
.ls7d{letter-spacing:51.619505pt;}
.lse{letter-spacing:59.654400pt;}
.ls3{letter-spacing:62.432533pt;}
.ls4{letter-spacing:64.314231pt;}
.ls9d{letter-spacing:67.013867pt;}
.ls9e{letter-spacing:67.019200pt;}
.ls41{letter-spacing:67.571096pt;}
.ls3b{letter-spacing:73.427505pt;}
.lsbb{letter-spacing:77.941867pt;}
.lsa1{letter-spacing:86.384533pt;}
.ls97{letter-spacing:86.981867pt;}
.lsba{letter-spacing:93.125867pt;}
.lsb7{letter-spacing:97.904533pt;}
.ls9f{letter-spacing:98.432533pt;}
.ls9c{letter-spacing:98.597867pt;}
.lsb3{letter-spacing:99.269867pt;}
.lsac{letter-spacing:99.440533pt;}
.ls95{letter-spacing:103.120533pt;}
.lsb4{letter-spacing:104.053867pt;}
.lsa0{letter-spacing:105.179200pt;}
.lsb8{letter-spacing:108.904000pt;}
.lsa8{letter-spacing:110.434667pt;}
.lsb9{letter-spacing:110.795200pt;}
.lsae{letter-spacing:111.221867pt;}
.lsb6{letter-spacing:112.491200pt;}
.ls96{letter-spacing:113.088533pt;}
.ls18{letter-spacing:115.381867pt;}
.lsa6{letter-spacing:116.091200pt;}
.lsa9{letter-spacing:117.341333pt;}
.ls10{letter-spacing:121.627200pt;}
.lsa2{letter-spacing:121.899200pt;}
.lsaa{letter-spacing:124.016533pt;}
.lsaf{letter-spacing:128.043200pt;}
.ls9a{letter-spacing:129.312533pt;}
.ls15{letter-spacing:130.581867pt;}
.lsa7{letter-spacing:132.133867pt;}
.ls98{letter-spacing:133.259200pt;}
.ls12{letter-spacing:133.579200pt;}
.lsb5{letter-spacing:133.760533pt;}
.ls6e{letter-spacing:138.819505pt;}
.lsab{letter-spacing:140.501867pt;}
.lsb2{letter-spacing:148.005867pt;}
.ls14{letter-spacing:153.547200pt;}
.ls88{letter-spacing:153.582172pt;}
.ls17{letter-spacing:162.149867pt;}
.ls13{letter-spacing:165.504533pt;}
.ls16{letter-spacing:177.659200pt;}
.ls19{letter-spacing:239.174084pt;}
.ls71{letter-spacing:317.126029pt;}
.ls6a{letter-spacing:546.198545pt;}
.ls52{letter-spacing:554.692214pt;}
.ls8b{letter-spacing:585.352855pt;}
.ls93{letter-spacing:814.528533pt;}
.ls94{letter-spacing:825.104533pt;}
.ws8a{word-spacing:-66.992699pt;}
.wsb7{word-spacing:-49.829333pt;}
.ws8d{word-spacing:-42.066082pt;}
.ws8b{word-spacing:-41.065974pt;}
.ws40{word-spacing:-13.283467pt;}
.ws6f{word-spacing:-11.955200pt;}
.ws1b{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws86{word-spacing:-4.516379pt;}
.ws8f{word-spacing:-3.075200pt;}
.ws7a{word-spacing:-2.975497pt;}
.ws7f{word-spacing:-2.922363pt;}
.wsdd{word-spacing:-2.869229pt;}
.ws3b{word-spacing:-2.497292pt;}
.ws36{word-spacing:-2.337890pt;}
.ws84{word-spacing:-2.289333pt;}
.ws80{word-spacing:-2.284756pt;}
.wsd3{word-spacing:-2.231622pt;}
.ws2e{word-spacing:-2.125355pt;}
.ws77{word-spacing:-1.806551pt;}
.ws54{word-spacing:-1.700284pt;}
.ws5{word-spacing:-1.696326pt;}
.ws51{word-spacing:-1.594016pt;}
.ws12{word-spacing:-1.540882pt;}
.wsd8{word-spacing:-1.381481pt;}
.ws13{word-spacing:-1.328347pt;}
.ws17{word-spacing:-1.275213pt;}
.wsa{word-spacing:-1.222079pt;}
.ws4{word-spacing:-1.175671pt;}
.ws75{word-spacing:-1.168945pt;}
.ws94{word-spacing:-1.115811pt;}
.wsd1{word-spacing:-0.850142pt;}
.wse3{word-spacing:-0.812954pt;}
.ws92{word-spacing:-0.797008pt;}
.ws91{word-spacing:-0.743874pt;}
.wsd7{word-spacing:-0.690740pt;}
.ws48{word-spacing:-0.637606pt;}
.ws53{word-spacing:-0.584473pt;}
.ws27{word-spacing:-0.531339pt;}
.wsdb{word-spacing:-0.425071pt;}
.ws7d{word-spacing:-0.389388pt;}
.ws22{word-spacing:-0.371937pt;}
.ws9{word-spacing:-0.318803pt;}
.wsf7{word-spacing:-0.286925pt;}
.ws2b{word-spacing:-0.265669pt;}
.wsad{word-spacing:-0.239104pt;}
.ws8{word-spacing:-0.212535pt;}
.wsfd{word-spacing:-0.191283pt;}
.ws69{word-spacing:-0.170029pt;}
.ws10{word-spacing:-0.159402pt;}
.ws10c{word-spacing:-0.143462pt;}
.ws4b{word-spacing:-0.127522pt;}
.ws14{word-spacing:-0.106268pt;}
.wse6{word-spacing:-0.095642pt;}
.wscd{word-spacing:-0.085014pt;}
.ws6{word-spacing:-0.053134pt;}
.ws6d{word-spacing:-0.047821pt;}
.ws1c{word-spacing:-0.042507pt;}
.ws8c{word-spacing:-0.040382pt;}
.ws1{word-spacing:-0.000598pt;}
.ws0{word-spacing:0.000000pt;}
.wsf0{word-spacing:0.047821pt;}
.wse{word-spacing:0.053134pt;}
.ws70{word-spacing:0.095642pt;}
.ws7{word-spacing:0.106268pt;}
.wse9{word-spacing:0.143462pt;}
.ws11{word-spacing:0.159402pt;}
.wsce{word-spacing:0.170029pt;}
.wsf2{word-spacing:0.191283pt;}
.ws25{word-spacing:0.212535pt;}
.wsfc{word-spacing:0.239104pt;}
.ws72{word-spacing:0.255043pt;}
.ws29{word-spacing:0.265669pt;}
.wsae{word-spacing:0.286925pt;}
.ws26{word-spacing:0.318803pt;}
.ws4d{word-spacing:0.371937pt;}
.ws100{word-spacing:0.382566pt;}
.ws4f{word-spacing:0.425071pt;}
.wsf6{word-spacing:0.430387pt;}
.ws2f{word-spacing:0.478205pt;}
.ws28{word-spacing:0.531339pt;}
.ws31{word-spacing:0.584473pt;}
.ws39{word-spacing:0.637606pt;}
.ws49{word-spacing:0.637608pt;}
.wsef{word-spacing:0.669491pt;}
.ws16{word-spacing:0.743874pt;}
.ws4e{word-spacing:0.797008pt;}
.ws83{word-spacing:0.850142pt;}
.ws105{word-spacing:0.860774pt;}
.ws57{word-spacing:0.908595pt;}
.ws37{word-spacing:0.956410pt;}
.wse0{word-spacing:0.956416pt;}
.ws82{word-spacing:1.009543pt;}
.ws38{word-spacing:1.062677pt;}
.wsdc{word-spacing:1.115811pt;}
.wsdf{word-spacing:1.195520pt;}
.wsda{word-spacing:1.275213pt;}
.ws52{word-spacing:1.328347pt;}
.ws97{word-spacing:1.378814pt;}
.ws3e{word-spacing:1.381481pt;}
.ws76{word-spacing:1.434614pt;}
.ws2a{word-spacing:1.540882pt;}
.wsf4{word-spacing:1.625907pt;}
.ws7b{word-spacing:1.806551pt;}
.ws78{word-spacing:1.859685pt;}
.ws112{word-spacing:1.865011pt;}
.wsd4{word-spacing:1.912819pt;}
.ws10a{word-spacing:1.912832pt;}
.ws56{word-spacing:2.151936pt;}
.ws93{word-spacing:2.281709pt;}
.wsd6{word-spacing:2.284756pt;}
.ws3c{word-spacing:2.391024pt;}
.ws55{word-spacing:2.438861pt;}
.ws21{word-spacing:2.497292pt;}
.ws3d{word-spacing:2.603559pt;}
.ws68{word-spacing:2.635446pt;}
.wsd0{word-spacing:2.656693pt;}
.ws81{word-spacing:2.709827pt;}
.ws88{word-spacing:2.816095pt;}
.wse1{word-spacing:2.866509pt;}
.ws110{word-spacing:2.867490pt;}
.ws10e{word-spacing:2.869214pt;}
.ws41{word-spacing:2.869229pt;}
.ws3{word-spacing:2.869248pt;}
.wsea{word-spacing:2.871270pt;}
.ws79{word-spacing:2.922363pt;}
.wsd9{word-spacing:2.975497pt;}
.wsd2{word-spacing:3.028630pt;}
.ws2c{word-spacing:3.081764pt;}
.wse8{word-spacing:3.108352pt;}
.ws2d{word-spacing:3.134898pt;}
.wsc{word-spacing:3.185311pt;}
.wsd{word-spacing:3.188032pt;}
.ws3a{word-spacing:3.241166pt;}
.ws3f{word-spacing:3.294300pt;}
.ws7e{word-spacing:3.333819pt;}
.ws89{word-spacing:3.347434pt;}
.ws46{word-spacing:3.400567pt;}
.wsb{word-spacing:3.453701pt;}
.ws103{word-spacing:3.490918pt;}
.ws15{word-spacing:3.506835pt;}
.ws44{word-spacing:3.559969pt;}
.ws45{word-spacing:3.613103pt;}
.ws18{word-spacing:3.825638pt;}
.ws20{word-spacing:3.878772pt;}
.ws4a{word-spacing:3.910662pt;}
.wseb{word-spacing:4.351693pt;}
.ws33{word-spacing:4.410111pt;}
.ws34{word-spacing:4.463245pt;}
.ws74{word-spacing:4.569513pt;}
.ws1d{word-spacing:4.675780pt;}
.wsf{word-spacing:4.728914pt;}
.ws96{word-spacing:4.782048pt;}
.wsd5{word-spacing:4.835182pt;}
.wsde{word-spacing:4.888316pt;}
.ws47{word-spacing:4.994583pt;}
.wsec{word-spacing:5.069005pt;}
.ws106{word-spacing:5.164646pt;}
.ws73{word-spacing:5.207119pt;}
.ws4c{word-spacing:5.419654pt;}
.ws23{word-spacing:5.579056pt;}
.ws7c{word-spacing:5.950993pt;}
.wscf{word-spacing:6.004127pt;}
.ws95{word-spacing:6.057261pt;}
.ws10f{word-spacing:6.168883pt;}
.ws43{word-spacing:6.588599pt;}
.ws42{word-spacing:6.641733pt;}
.ws19{word-spacing:6.694867pt;}
.ws32{word-spacing:6.801135pt;}
.ws1f{word-spacing:6.854269pt;}
.ws24{word-spacing:7.226206pt;}
.ws35{word-spacing:7.279340pt;}
.ws85{word-spacing:7.477990pt;}
.wsf8{word-spacing:7.746970pt;}
.ws50{word-spacing:7.916946pt;}
.ws1e{word-spacing:8.235749pt;}
.ws30{word-spacing:9.776631pt;}
.ws1a{word-spacing:10.583895pt;}
.ws8e{word-spacing:10.658704pt;}
.ws109{word-spacing:11.668275pt;}
.wsfe{word-spacing:11.716096pt;}
.ws10d{word-spacing:11.763917pt;}
.ws107{word-spacing:11.859558pt;}
.wse7{word-spacing:11.896388pt;}
.ws113{word-spacing:11.897549pt;}
.wse5{word-spacing:11.898581pt;}
.wsee{word-spacing:11.900339pt;}
.ws108{word-spacing:11.903659pt;}
.wsff{word-spacing:11.903804pt;}
.wsf5{word-spacing:11.904444pt;}
.ws102{word-spacing:11.905997pt;}
.wse2{word-spacing:11.907379pt;}
.wsf1{word-spacing:11.955200pt;}
.wse4{word-spacing:12.003021pt;}
.wsf3{word-spacing:12.050842pt;}
.ws101{word-spacing:12.242125pt;}
.ws111{word-spacing:12.815974pt;}
.wsfb{word-spacing:13.102899pt;}
.ws10b{word-spacing:13.820211pt;}
.wsc6{word-spacing:15.148117pt;}
.ws104{word-spacing:15.398298pt;}
.wsed{word-spacing:16.976384pt;}
.ws87{word-spacing:23.166366pt;}
.wsf9{word-spacing:23.862579pt;}
.wsb6{word-spacing:25.462789pt;}
.wsfa{word-spacing:26.970931pt;}
.wscb{word-spacing:35.079851pt;}
.ws9f{word-spacing:35.092096pt;}
.wsbd{word-spacing:39.108096pt;}
.wsbf{word-spacing:39.713979pt;}
.wsc7{word-spacing:50.028651pt;}
.wsab{word-spacing:52.089429pt;}
.ws62{word-spacing:52.401485pt;}
.wsac{word-spacing:53.001600pt;}
.ws6c{word-spacing:56.380723pt;}
.wsc9{word-spacing:60.601429pt;}
.ws61{word-spacing:62.919970pt;}
.wsca{word-spacing:63.781547pt;}
.wsa7{word-spacing:68.948267pt;}
.wsc0{word-spacing:70.504218pt;}
.ws9e{word-spacing:72.352870pt;}
.ws5a{word-spacing:75.366818pt;}
.wsc8{word-spacing:78.081485pt;}
.wsaa{word-spacing:80.398933pt;}
.ws9b{word-spacing:82.873446pt;}
.wsb9{word-spacing:85.025382pt;}
.wsa1{word-spacing:87.326933pt;}
.wsa8{word-spacing:89.449600pt;}
.wsa2{word-spacing:89.495151pt;}
.wscc{word-spacing:90.033485pt;}
.ws5c{word-spacing:90.955162pt;}
.ws9c{word-spacing:92.606933pt;}
.wsb8{word-spacing:93.032533pt;}
.ws5d{word-spacing:94.733005pt;}
.wsbe{word-spacing:100.551970pt;}
.ws9a{word-spacing:101.450351pt;}
.wsb4{word-spacing:104.990933pt;}
.ws59{word-spacing:105.253581pt;}
.wsa9{word-spacing:107.290718pt;}
.wsa6{word-spacing:110.285867pt;}
.wsc3{word-spacing:111.208218pt;}
.wsc1{word-spacing:111.559970pt;}
.wsc5{word-spacing:113.443123pt;}
.wsa4{word-spacing:114.026820pt;}
.ws65{word-spacing:114.865562pt;}
.ws67{word-spacing:114.913382pt;}
.wsa3{word-spacing:115.321600pt;}
.ws64{word-spacing:117.208781pt;}
.wsc2{word-spacing:118.199467pt;}
.wsbb{word-spacing:119.577600pt;}
.ws99{word-spacing:120.412774pt;}
.wsa5{word-spacing:125.470874pt;}
.ws60{word-spacing:126.103450pt;}
.wsba{word-spacing:126.669551pt;}
.ws66{word-spacing:126.820762pt;}
.wsa0{word-spacing:130.253867pt;}
.ws5f{word-spacing:130.775467pt;}
.ws5e{word-spacing:131.520512pt;}
.ws6a{word-spacing:133.659136pt;}
.ws58{word-spacing:134.089523pt;}
.ws71{word-spacing:135.093760pt;}
.wsb1{word-spacing:135.474637pt;}
.ws6e{word-spacing:138.448503pt;}
.ws5b{word-spacing:138.775962pt;}
.wsb3{word-spacing:139.913600pt;}
.wsbc{word-spacing:143.045845pt;}
.wsb2{word-spacing:148.350933pt;}
.ws63{word-spacing:154.686942pt;}
.wsc4{word-spacing:164.213845pt;}
.ws9d{word-spacing:173.541683pt;}
.wsb5{word-spacing:179.493845pt;}
.wsb0{word-spacing:204.075179pt;}
.wsaf{word-spacing:249.576755pt;}
.ws90{word-spacing:361.124375pt;}
.ws6b{word-spacing:532.311484pt;}
.ws98{word-spacing:816.014131pt;}
._11{margin-left:-20.351776pt;}
._3e{margin-left:-9.246409pt;}
._3a{margin-left:-6.854269pt;}
._1{margin-left:-5.897859pt;}
._7{margin-left:-4.835182pt;}
._3{margin-left:-3.538739pt;}
._5{margin-left:-1.819895pt;}
._2{margin-left:-0.908595pt;}
._6{width:0.969929pt;}
._0{width:2.658198pt;}
._3d{width:3.593435pt;}
._1b{width:4.516379pt;}
._3b{width:6.192240pt;}
._37{width:11.142246pt;}
._18{width:12.273923pt;}
._14{width:13.828149pt;}
._4{width:14.824448pt;}
._3f{width:15.740968pt;}
._9{width:16.630900pt;}
._8{width:17.600653pt;}
._f{width:18.875866pt;}
._16{width:20.010238pt;}
._12{width:21.054355pt;}
._13{width:22.754639pt;}
._39{width:24.189253pt;}
._1c{width:25.164262pt;}
._17{width:26.301264pt;}
._b{width:27.310807pt;}
._c{width:28.485072pt;}
._3c{width:29.821443pt;}
._a{width:31.083312pt;}
._64{width:32.943478pt;}
._15{width:34.497223pt;}
._1d{width:36.662368pt;}
._1a{width:37.831313pt;}
._10{width:42.427513pt;}
._19{width:46.279598pt;}
._65{width:51.914006pt;}
._1f{width:63.792947pt;}
._20{width:66.375270pt;}
._60{width:76.345204pt;}
._44{width:81.391002pt;}
._33{width:83.734221pt;}
._56{width:85.163136pt;}
._42{width:88.277197pt;}
._55{width:92.461722pt;}
._32{width:93.394022pt;}
._49{width:95.247804pt;}
._5d{width:98.695799pt;}
._4b{width:100.617216pt;}
._4e{width:102.519350pt;}
._54{width:103.962419pt;}
._62{width:104.918835pt;}
._4a{width:109.615684pt;}
._4d{width:110.716254pt;}
._4c{width:111.709389pt;}
._31{width:115.104666pt;}
._46{width:116.443648pt;}
._5f{width:117.352721pt;}
._4f{width:120.843162pt;}
._1e{width:121.943040pt;}
._41{width:124.636906pt;}
._2e{width:126.820762pt;}
._2c{width:128.303206pt;}
._52{width:130.694246pt;}
._48{width:131.802723pt;}
._5e{width:135.725978pt;}
._59{width:137.055317pt;}
._2f{width:138.010829pt;}
._50{width:139.762074pt;}
._26{width:146.092544pt;}
._36{width:147.048960pt;}
._45{width:148.929872pt;}
._24{width:150.731162pt;}
._27{width:153.887334pt;}
._43{width:156.724662pt;}
._28{width:158.191206pt;}
._23{width:162.112512pt;}
._51{width:163.451494pt;}
._5c{width:164.552038pt;}
._30{width:166.666539pt;}
._2b{width:169.955123pt;}
._5a{width:171.915776pt;}
._25{width:172.967834pt;}
._22{width:173.876429pt;}
._47{width:175.406694pt;}
._53{width:177.319526pt;}
._5b{width:181.193011pt;}
._2d{width:182.149427pt;}
._21{width:185.783808pt;}
._61{width:187.409715pt;}
._29{width:197.739008pt;}
._2a{width:209.981133pt;}
._58{width:241.466986pt;}
._57{width:244.982324pt;}
._34{width:639.556275pt;}
._d{width:660.305511pt;}
._35{width:713.151590pt;}
._38{width:921.554637pt;}
._63{width:1810.338933pt;}
._e{width:1831.592267pt;}
._40{width:3146.872267pt;}
.fse{font-size:31.880533pt;}
.fs13{font-size:33.219200pt;}
.fs9{font-size:37.193600pt;}
.fsc{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:40.381867pt;}
.fsb{font-size:41.988267pt;}
.fs12{font-size:42.077867pt;}
.fsd{font-size:42.507200pt;}
.fsa{font-size:47.820800pt;}
.fsf{font-size:49.829333pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs10{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs11{font-size:74.387733pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.fs5{font-size:114.229120pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:3.044747pt;}
.y30{bottom:12.578910pt;}
.y24{bottom:14.848190pt;}
.y51{bottom:56.693333pt;}
.y6{bottom:59.133337pt;}
.y5{bottom:86.333337pt;}
.y50{bottom:100.082667pt;}
.y123{bottom:100.425333pt;}
.y8a{bottom:105.821333pt;}
.y167{bottom:106.545333pt;}
.y84{bottom:109.441333pt;}
.y122{bottom:113.592000pt;}
.y4f{bottom:118.094667pt;}
.y89{bottom:118.441333pt;}
.yde{bottom:121.537333pt;}
.y18b{bottom:123.310667pt;}
.y22{bottom:123.790666pt;}
.y166{bottom:124.558667pt;}
.y83{bottom:127.454667pt;}
.y15b{bottom:128.293333pt;}
.y88{bottom:131.061333pt;}
.ydd{bottom:134.156000pt;}
.y4e{bottom:136.108000pt;}
.y18a{bottom:140.526667pt;}
.y165{bottom:142.570667pt;}
.y87{bottom:143.680000pt;}
.y82{bottom:145.466667pt;}
.y15a{bottom:146.306667pt;}
.y86{bottom:147.537333pt;}
.y1bb{bottom:148.497333pt;}
.y4d{bottom:154.120000pt;}
.ydc{bottom:156.830667pt;}
.y189{bottom:157.742667pt;}
.yfd{bottom:158.042667pt;}
.y164{bottom:160.584000pt;}
.y81{bottom:163.478667pt;}
.y159{bottom:164.318667pt;}
.y1ba{bottom:165.713333pt;}
.yfc{bottom:171.209333pt;}
.ydb{bottom:171.442667pt;}
.y4c{bottom:172.132000pt;}
.y188{bottom:174.957333pt;}
.y19{bottom:175.052000pt;}
.y163{bottom:178.596000pt;}
.y80{bottom:181.492000pt;}
.y158{bottom:182.330667pt;}
.y1b9{bottom:182.928000pt;}
.yd8{bottom:186.054667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y4b{bottom:190.145333pt;}
.y187{bottom:192.173333pt;}
.yd7{bottom:193.361333pt;}
.y162{bottom:196.608000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y7f{bottom:199.504000pt;}
.y1b8{bottom:200.144000pt;}
.y157{bottom:200.344000pt;}
.yda{bottom:200.666667pt;}
.y4a{bottom:208.157333pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y186{bottom:209.388000pt;}
.y161{bottom:214.621333pt;}
.yd9{bottom:215.278667pt;}
.y1b7{bottom:217.358667pt;}
.y7e{bottom:217.517333pt;}
.y156{bottom:218.356000pt;}
.yfb{bottom:220.854667pt;}
.y49{bottom:226.170667pt;}
.yf8{bottom:226.190667pt;}
.y185{bottom:226.604000pt;}
.yd6{bottom:229.890667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.yfa{bottom:232.541333pt;}
.y160{bottom:232.633333pt;}
.y1b6{bottom:234.574667pt;}
.yf7{bottom:235.304000pt;}
.y7d{bottom:235.529333pt;}
.y155{bottom:236.369333pt;}
.yd4{bottom:237.196000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y184{bottom:243.820000pt;}
.y48{bottom:244.182667pt;}
.yd2{bottom:244.502667pt;}
.yf9{bottom:249.649333pt;}
.y15f{bottom:250.646667pt;}
.y1b5{bottom:251.790667pt;}
.yd3{bottom:251.808000pt;}
.yaa{bottom:252.717333pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y7c{bottom:253.541333pt;}
.y154{bottom:254.381333pt;}
.yd5{bottom:259.114667pt;}
.y183{bottom:261.034667pt;}
.y47{bottom:262.194667pt;}
.y15e{bottom:268.658667pt;}
.y1b4{bottom:269.005333pt;}
.y7b{bottom:271.554667pt;}
.y153{bottom:272.393333pt;}
.yd1{bottom:273.725333pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yf6{bottom:278.109333pt;}
.y182{bottom:278.250667pt;}
.y46{bottom:280.208000pt;}
.yd0{bottom:281.032000pt;}
.y1b3{bottom:286.221333pt;}
.y15d{bottom:286.670667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y7a{bottom:289.566667pt;}
.y152{bottom:290.406667pt;}
.y181{bottom:295.465333pt;}
.yf5{bottom:296.122667pt;}
.y45{bottom:298.220000pt;}
.y1b2{bottom:303.437333pt;}
.ya9{bottom:304.684000pt;}
.y79{bottom:307.580000pt;}
.y151{bottom:308.418667pt;}
.y10{bottom:309.452000pt;}
.ycf{bottom:309.684000pt;}
.y180{bottom:312.681333pt;}
.yf4{bottom:314.134667pt;}
.y44{bottom:316.233333pt;}
.y1b1{bottom:320.652000pt;}
.ya8{bottom:322.696000pt;}
.y78{bottom:325.592000pt;}
.y17f{bottom:329.897333pt;}
.yf3{bottom:332.146667pt;}
.y43{bottom:334.245333pt;}
.y1b0{bottom:337.868000pt;}
.yce{bottom:339.678667pt;}
.ya7{bottom:340.709333pt;}
.y77{bottom:343.604000pt;}
.yf{bottom:343.809333pt;}
.y150{bottom:346.756000pt;}
.y17e{bottom:347.112000pt;}
.yf2{bottom:350.160000pt;}
.y42{bottom:352.257333pt;}
.y1af{bottom:355.082667pt;}
.ya6{bottom:358.721333pt;}
.y14f{bottom:359.374667pt;}
.y76{bottom:361.617333pt;}
.ye{bottom:362.706666pt;}
.y17d{bottom:364.328000pt;}
.yf1{bottom:368.172000pt;}
.y41{bottom:370.270667pt;}
.y14e{bottom:371.994667pt;}
.y1ae{bottom:372.298667pt;}
.ycd{bottom:373.298667pt;}
.ya5{bottom:376.733333pt;}
.y75{bottom:379.629333pt;}
.y17c{bottom:381.544000pt;}
.y14d{bottom:384.613333pt;}
.ycc{bottom:385.917333pt;}
.yf0{bottom:386.184000pt;}
.y40{bottom:388.282667pt;}
.y1ad{bottom:389.514667pt;}
.y121{bottom:392.545333pt;}
.ya4{bottom:394.746667pt;}
.y14c{bottom:397.233333pt;}
.y74{bottom:397.642667pt;}
.ycb{bottom:398.537333pt;}
.y17b{bottom:398.758667pt;}
.yef{bottom:404.197333pt;}
.y3f{bottom:406.296000pt;}
.y1ac{bottom:406.729333pt;}
.y14b{bottom:409.852000pt;}
.y120{bottom:410.557333pt;}
.yca{bottom:411.156000pt;}
.ya3{bottom:412.758667pt;}
.y73{bottom:415.654667pt;}
.y17a{bottom:415.974667pt;}
.yee{bottom:422.209333pt;}
.y1ab{bottom:423.945333pt;}
.y3e{bottom:424.308000pt;}
.y11f{bottom:428.569333pt;}
.y14a{bottom:429.141333pt;}
.ya2{bottom:430.772000pt;}
.y179{bottom:433.189333pt;}
.y72{bottom:433.666667pt;}
.yc9{bottom:433.764000pt;}
.yed{bottom:440.222667pt;}
.y1aa{bottom:441.160000pt;}
.y3d{bottom:442.320000pt;}
.y149{bottom:444.216000pt;}
.y131{bottom:444.372000pt;}
.y11e{bottom:446.582667pt;}
.yd{bottom:446.990669pt;}
.ya1{bottom:448.784000pt;}
.yc8{bottom:448.838667pt;}
.y178{bottom:450.405333pt;}
.y71{bottom:451.680000pt;}
.y130{bottom:456.990667pt;}
.yec{bottom:458.234667pt;}
.y1a9{bottom:458.376000pt;}
.y148{bottom:459.290667pt;}
.yc{bottom:462.990669pt;}
.yc7{bottom:463.912000pt;}
.y11d{bottom:464.594667pt;}
.ya0{bottom:466.796000pt;}
.y177{bottom:467.621333pt;}
.y3c{bottom:468.302667pt;}
.y70{bottom:469.692000pt;}
.y15c{bottom:474.766667pt;}
.y1a8{bottom:475.592000pt;}
.yeb{bottom:476.246667pt;}
.y12f{bottom:476.281333pt;}
.yb{bottom:478.990666pt;}
.y147{bottom:481.032000pt;}
.y9f{bottom:484.809333pt;}
.y176{bottom:484.836000pt;}
.yc6{bottom:485.654667pt;}
.y6f{bottom:487.704000pt;}
.y11c{bottom:490.577333pt;}
.y12e{bottom:491.354667pt;}
.y1a7{bottom:492.806667pt;}
.yea{bottom:494.260000pt;}
.ya{bottom:494.990666pt;}
.y175{bottom:502.052000pt;}
.y146{bottom:502.312000pt;}
.y9e{bottom:502.821333pt;}
.y6e{bottom:505.717333pt;}
.y12d{bottom:506.568000pt;}
.yc5{bottom:506.933333pt;}
.y1a6{bottom:510.022667pt;}
.ye9{bottom:512.272000pt;}
.y145{bottom:517.385333pt;}
.y174{bottom:519.266667pt;}
.y9d{bottom:520.834667pt;}
.y11b{bottom:521.528000pt;}
.yc4{bottom:521.545333pt;}
.y6d{bottom:523.729333pt;}
.y1a5{bottom:527.237333pt;}
.y12c{bottom:527.848000pt;}
.ye8{bottom:530.285333pt;}
.y144{bottom:532.460000pt;}
.y3b{bottom:535.424000pt;}
.yc3{bottom:536.157333pt;}
.y173{bottom:536.482667pt;}
.y9c{bottom:538.846667pt;}
.y11a{bottom:539.541333pt;}
.y6c{bottom:541.742667pt;}
.y1a4{bottom:544.453333pt;}
.ye7{bottom:548.297333pt;}
.y12b{bottom:549.128000pt;}
.y119{bottom:553.476000pt;}
.y172{bottom:553.698667pt;}
.y143{bottom:554.201333pt;}
.y9b{bottom:556.858667pt;}
.yc2{bottom:557.437333pt;}
.y118{bottom:557.553333pt;}
.y6b{bottom:559.754667pt;}
.y1a3{bottom:561.669333pt;}
.y12a{bottom:564.201333pt;}
.ye6{bottom:566.309333pt;}
.y3a{bottom:569.377333pt;}
.y171{bottom:570.913333pt;}
.y9{bottom:573.786667pt;}
.y9a{bottom:574.872000pt;}
.y142{bottom:575.481333pt;}
.y6a{bottom:577.766667pt;}
.yc1{bottom:578.716000pt;}
.y1a2{bottom:578.884000pt;}
.y129{bottom:579.276000pt;}
.y117{bottom:587.537333pt;}
.y170{bottom:588.129333pt;}
.y141{bottom:590.554667pt;}
.y116{bottom:591.614667pt;}
.y8{bottom:592.685334pt;}
.y99{bottom:592.884000pt;}
.yc0{bottom:593.328000pt;}
.ye5{bottom:593.684000pt;}
.y69{bottom:595.780000pt;}
.y1a1{bottom:596.100000pt;}
.y128{bottom:600.556000pt;}
.y39{bottom:603.330667pt;}
.y140{bottom:605.166667pt;}
.y16f{bottom:605.344000pt;}
.ye4{bottom:605.369333pt;}
.ybf{bottom:607.940000pt;}
.ye2{bottom:608.132000pt;}
.y98{bottom:610.896000pt;}
.y115{bottom:611.958667pt;}
.y1a0{bottom:613.314667pt;}
.y68{bottom:613.792000pt;}
.y38{bottom:621.342667pt;}
.y127{bottom:621.834667pt;}
.y16e{bottom:622.560000pt;}
.ye3{bottom:624.088000pt;}
.y13f{bottom:626.909333pt;}
.y97{bottom:628.909333pt;}
.ybe{bottom:629.220000pt;}
.y113{bottom:629.970667pt;}
.y19f{bottom:630.530667pt;}
.y67{bottom:631.805333pt;}
.y114{bottom:634.793333pt;}
.y126{bottom:636.446667pt;}
.y85{bottom:636.626667pt;}
.y37{bottom:639.354667pt;}
.y16d{bottom:639.776000pt;}
.y7{bottom:645.598667pt;}
.y96{bottom:646.921333pt;}
.y19e{bottom:647.746667pt;}
.y112{bottom:647.984000pt;}
.y13e{bottom:648.188000pt;}
.y66{bottom:649.817333pt;}
.ybd{bottom:650.500000pt;}
.y36{bottom:657.368000pt;}
.y111{bottom:661.918667pt;}
.y125{bottom:664.553333pt;}
.y95{bottom:664.934667pt;}
.y16c{bottom:664.961333pt;}
.y110{bottom:665.996000pt;}
.y65{bottom:667.829333pt;}
.y4{bottom:668.977329pt;}
.y13d{bottom:669.468000pt;}
.ye1{bottom:669.756000pt;}
.ybc{bottom:671.778667pt;}
.y35{bottom:675.380000pt;}
.y19d{bottom:682.177333pt;}
.y94{bottom:682.946667pt;}
.y10e{bottom:683.609333pt;}
.y10f{bottom:684.553333pt;}
.y64{bottom:685.842667pt;}
.y10d{bottom:688.520000pt;}
.y13c{bottom:690.748000pt;}
.ybb{bottom:693.058667pt;}
.y34{bottom:693.393333pt;}
.y19c{bottom:699.392000pt;}
.y16b{bottom:700.029333pt;}
.y93{bottom:700.958667pt;}
.y63{bottom:703.854667pt;}
.ye0{bottom:705.781333pt;}
.y13b{bottom:705.821333pt;}
.y10b{bottom:706.532000pt;}
.yba{bottom:708.133333pt;}
.y124{bottom:709.729333pt;}
.y10c{bottom:711.354667pt;}
.y33{bottom:711.405333pt;}
.y19b{bottom:716.608000pt;}
.y92{bottom:718.972000pt;}
.y13a{bottom:720.896000pt;}
.y16a{bottom:721.509333pt;}
.y62{bottom:721.868000pt;}
.yb9{bottom:723.206667pt;}
.y32{bottom:729.417333pt;}
.y19a{bottom:733.824000pt;}
.y91{bottom:736.984000pt;}
.y109{bottom:738.714667pt;}
.y10a{bottom:739.240000pt;}
.y61{bottom:739.880000pt;}
.y139{bottom:742.637333pt;}
.y169{bottom:742.988000pt;}
.yb8{bottom:744.949333pt;}
.y199{bottom:751.038667pt;}
.y90{bottom:754.997333pt;}
.y168{bottom:756.497333pt;}
.y106{bottom:756.505333pt;}
.y60{bottom:757.892000pt;}
.y108{bottom:758.068000pt;}
.y105{bottom:760.582667pt;}
.y2f{bottom:763.245301pt;}
.y138{bottom:763.917333pt;}
.y107{bottom:765.858667pt;}
.yb7{bottom:766.228000pt;}
.y198{bottom:768.254667pt;}
.y2e{bottom:769.978667pt;}
.y1c4{bottom:770.686667pt;}
.y8e{bottom:773.009333pt;}
.y5f{bottom:775.905333pt;}
.y8f{bottom:777.832000pt;}
.y137{bottom:778.992000pt;}
.yb6{bottom:780.840000pt;}
.y3{bottom:781.661334pt;}
.y197{bottom:785.469333pt;}
.y1c3{bottom:787.901333pt;}
.y8d{bottom:791.021333pt;}
.y5e{bottom:793.917333pt;}
.y136{bottom:794.065333pt;}
.yb5{bottom:795.452000pt;}
.y2d{bottom:798.592000pt;}
.y104{bottom:802.505333pt;}
.y196{bottom:802.685333pt;}
.y1c2{bottom:805.117333pt;}
.y1c1{bottom:805.477333pt;}
.y8c{bottom:809.034667pt;}
.y5d{bottom:811.930667pt;}
.y2c{bottom:814.732000pt;}
.y135{bottom:815.808000pt;}
.yb4{bottom:816.732000pt;}
.ydf{bottom:817.004000pt;}
.y195{bottom:819.901333pt;}
.y103{bottom:820.518667pt;}
.y5c{bottom:829.942667pt;}
.y1c0{bottom:834.406667pt;}
.y8b{bottom:835.017333pt;}
.y2b{bottom:835.210667pt;}
.y134{bottom:837.086667pt;}
.y194{bottom:837.116000pt;}
.yb3{bottom:838.012000pt;}
.y2{bottom:840.112001pt;}
.y102{bottom:841.888000pt;}
.y5b{bottom:847.954667pt;}
.y2a{bottom:851.350667pt;}
.y1bf{bottom:851.621333pt;}
.y133{bottom:852.161333pt;}
.yb2{bottom:852.622667pt;}
.y101{bottom:853.573333pt;}
.y193{bottom:854.332000pt;}
.yff{bottom:856.336000pt;}
.y1{bottom:859.312000pt;}
.y5a{bottom:865.968000pt;}
.y132{bottom:866.773333pt;}
.yb1{bottom:867.234667pt;}
.y29{bottom:867.490667pt;}
.y100{bottom:870.682667pt;}
.y192{bottom:871.546667pt;}
.y1be{bottom:875.478667pt;}
.y59{bottom:883.980000pt;}
.y28{bottom:887.260000pt;}
.yb0{bottom:888.514667pt;}
.y191{bottom:888.762667pt;}
.y1bd{bottom:892.694667pt;}
.yfe{bottom:901.853333pt;}
.y58{bottom:901.993333pt;}
.y190{bottom:905.978667pt;}
.yaf{bottom:909.794667pt;}
.y1bc{bottom:916.552000pt;}
.y57{bottom:920.005333pt;}
.y18f{bottom:923.193333pt;}
.y27{bottom:925.198667pt;}
.yae{bottom:931.074667pt;}
.y56{bottom:938.017333pt;}
.y18e{bottom:940.409333pt;}
.y26{bottom:952.217333pt;}
.y55{bottom:956.030667pt;}
.y18d{bottom:957.624000pt;}
.yad{bottom:959.180000pt;}
.y54{bottom:974.042667pt;}
.y18c{bottom:974.840000pt;}
.yac{bottom:976.276000pt;}
.y25{bottom:977.906667pt;}
.y53{bottom:992.056000pt;}
.yab{bottom:993.372000pt;}
.y23{bottom:1011.514667pt;}
.y52{bottom:1038.548000pt;}
.h2a{height:2.125355pt;}
.h10{height:22.673858pt;}
.h17{height:23.209028pt;}
.he{height:27.076941pt;}
.h7{height:28.560000pt;}
.h16{height:29.397999pt;}
.h12{height:29.433775pt;}
.h22{height:29.599908pt;}
.h11{height:30.399505pt;}
.h1d{height:30.732706pt;}
.h18{height:30.945242pt;}
.h15{height:31.157778pt;}
.h24{height:31.558400pt;}
.h36{height:33.235456pt;}
.h19{height:34.574438pt;}
.hf{height:34.813542pt;}
.h20{height:35.052646pt;}
.h1a{height:37.372000pt;}
.h32{height:37.778179pt;}
.h13{height:38.415786pt;}
.h14{height:38.681455pt;}
.hb{height:38.947124pt;}
.h6{height:40.800000pt;}
.h31{height:41.285014pt;}
.h21{height:41.524400pt;}
.h3{height:42.840000pt;}
.h1c{height:44.431607pt;}
.h1b{height:44.436941pt;}
.h9{height:45.271688pt;}
.hd{height:48.486756pt;}
.h2{height:48.960000pt;}
.h2e{height:53.307733pt;}
.h23{height:57.799269pt;}
.h28{height:60.374400pt;}
.h1e{height:64.034876pt;}
.h1f{height:64.040209pt;}
.h30{height:64.549999pt;}
.hc{height:69.148877pt;}
.h5{height:69.360000pt;}
.h2f{height:70.645999pt;}
.h2b{height:71.718400pt;}
.h25{height:74.649455pt;}
.h33{height:77.442688pt;}
.ha{height:77.447343pt;}
.h26{height:77.977733pt;}
.h2c{height:79.538688pt;}
.h27{height:99.316400pt;}
.h4{height:105.826671pt;}
.h29{height:107.035733pt;}
.h2d{height:124.052122pt;}
.h34{height:793.701333pt;}
.h35{height:794.000000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:175.330780pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.w6{width:1122.520000pt;}
.w7{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xb{left:26.021437pt;}
.x6{left:51.605861pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:102.046667pt;}
.x56{left:106.552000pt;}
.x9{left:108.542667pt;}
.x7{left:109.606667pt;}
.x96{left:112.646667pt;}
.x57{left:117.185333pt;}
.x2f{left:119.301333pt;}
.x18{left:120.945333pt;}
.x86{left:121.848000pt;}
.x85{left:127.674667pt;}
.x8{left:129.929333pt;}
.x30{left:131.100000pt;}
.x36{left:132.533333pt;}
.x35{left:133.608000pt;}
.x3d{left:135.001333pt;}
.x87{left:138.701333pt;}
.x7d{left:140.794667pt;}
.x40{left:142.514667pt;}
.x2d{left:144.288000pt;}
.xa1{left:147.257333pt;}
.x99{left:156.404000pt;}
.x41{left:158.470667pt;}
.x83{left:159.982667pt;}
.x88{left:162.985333pt;}
.x67{left:164.413333pt;}
.x74{left:165.386667pt;}
.xc{left:167.449333pt;}
.x8e{left:169.312000pt;}
.x32{left:173.036000pt;}
.x89{left:174.774667pt;}
.x98{left:176.184000pt;}
.x25{left:177.969333pt;}
.x9a{left:178.933333pt;}
.x4{left:180.874667pt;}
.x94{left:181.776000pt;}
.x23{left:184.028000pt;}
.x3e{left:189.753333pt;}
.x2a{left:192.824000pt;}
.x31{left:194.340000pt;}
.x29{left:195.454667pt;}
.x1f{left:199.880000pt;}
.x3f{left:202.648000pt;}
.x77{left:208.448000pt;}
.x84{left:209.350667pt;}
.x28{left:212.604000pt;}
.xf{left:220.097333pt;}
.x6f{left:223.342667pt;}
.x10{left:225.072000pt;}
.x47{left:226.573333pt;}
.x20{left:229.084000pt;}
.x52{left:232.658667pt;}
.x42{left:240.285333pt;}
.xd{left:243.416000pt;}
.x24{left:246.608000pt;}
.x43{left:248.188000pt;}
.x72{left:252.940000pt;}
.x48{left:255.154667pt;}
.x62{left:256.822667pt;}
.x11{left:257.829333pt;}
.x33{left:264.566667pt;}
.x5a{left:267.222667pt;}
.x8c{left:269.057333pt;}
.x92{left:271.758667pt;}
.x93{left:273.292000pt;}
.x27{left:279.134667pt;}
.xa8{left:282.989333pt;}
.x37{left:287.628000pt;}
.x2e{left:291.580000pt;}
.x53{left:293.642667pt;}
.x38{left:297.468000pt;}
.x21{left:298.661333pt;}
.x5b{left:299.841333pt;}
.x63{left:306.985333pt;}
.x54{left:308.292000pt;}
.x73{left:309.510667pt;}
.x79{left:311.877333pt;}
.xa5{left:319.166667pt;}
.x55{left:320.970667pt;}
.x7a{left:334.930667pt;}
.xa6{left:341.210667pt;}
.x7e{left:349.781333pt;}
.x64{left:354.098667pt;}
.x12{left:357.597333pt;}
.x65{left:358.752000pt;}
.x22{left:361.408000pt;}
.x8f{left:362.652000pt;}
.x68{left:365.654667pt;}
.x13{left:368.693333pt;}
.x69{left:372.934667pt;}
.x9d{left:375.568000pt;}
.x90{left:377.157333pt;}
.x7b{left:378.865333pt;}
.x66{left:380.050667pt;}
.x7f{left:383.568000pt;}
.x2b{left:385.830667pt;}
.x26{left:388.218667pt;}
.xa7{left:390.392000pt;}
.x2c{left:392.328000pt;}
.x80{left:396.681333pt;}
.xa3{left:401.522667pt;}
.xa2{left:403.485333pt;}
.x3{left:404.408000pt;}
.x19{left:406.892000pt;}
.x1a{left:416.718667pt;}
.x91{left:419.984000pt;}
.x81{left:422.126667pt;}
.x70{left:427.596000pt;}
.x14{left:429.429333pt;}
.x5c{left:438.836000pt;}
.x44{left:443.857333pt;}
.x82{left:448.872000pt;}
.x8d{left:450.693333pt;}
.x58{left:454.072000pt;}
.x5d{left:455.873333pt;}
.x15{left:456.998667pt;}
.x16{left:461.805333pt;}
.x9b{left:465.766667pt;}
.x17{left:471.854667pt;}
.x9c{left:476.400000pt;}
.x71{left:477.736000pt;}
.x45{left:481.112000pt;}
.x6a{left:483.702667pt;}
.x6b{left:491.621333pt;}
.x78{left:493.145333pt;}
.x1d{left:499.264000pt;}
.x75{left:500.773333pt;}
.x6c{left:517.852000pt;}
.x97{left:520.274667pt;}
.x1e{left:528.945333pt;}
.x8a{left:530.500000pt;}
.x7c{left:533.352000pt;}
.x6d{left:540.612000pt;}
.x8b{left:544.193333pt;}
.x60{left:550.429333pt;}
.x95{left:551.422667pt;}
.xa4{left:552.982667pt;}
.x4d{left:565.464000pt;}
.x9f{left:568.308000pt;}
.xe{left:569.512000pt;}
.x6e{left:580.056000pt;}
.x4e{left:581.477333pt;}
.x5e{left:584.405333pt;}
.x34{left:586.340000pt;}
.x9e{left:594.525333pt;}
.x61{left:596.212000pt;}
.xa0{left:601.284000pt;}
.x1b{left:603.105333pt;}
.x5f{left:612.985333pt;}
.x49{left:618.509333pt;}
.xa{left:623.413317pt;}
.x4f{left:628.776000pt;}
.x4a{left:643.458667pt;}
.x39{left:645.974667pt;}
.x46{left:655.980000pt;}
.x50{left:657.368000pt;}
.x59{left:659.557333pt;}
.x1c{left:665.950667pt;}
.x4b{left:669.401333pt;}
.x3a{left:673.544000pt;}
.x3b{left:678.421333pt;}
.x76{left:681.966667pt;}
.x4c{left:685.414667pt;}
.x3c{left:688.470667pt;}
.x51{left:689.986667pt;}
}




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