
    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_637fbceddcfeeec874183090.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_ac04a25545e83a1ea84ef7b8.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_724bf178f5ffacb940085c11.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.010000;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_6e7c05415102cdab6f71d23a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c880a8920fc82105c09b0b51.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_aea59ca60efde33f0db22799.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_c028fd543f31909642925746.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7ef676f4c748cc922210cfcb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_25b4319a931661ff0f45709c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e3a6810b9b9039290efce90d.woff2')format("woff");}.fff{font-family:fff;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_95c6e548200d93bc90148a9a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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_2c519ab01df7e10bb843eac9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.488000;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_b08a999028b54a045d440999.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_6c05cd42a9782149f6891513.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.653000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_a2b8505e67706f102fd1c600.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_84e007cf19ce01b1ad5be248.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_7ec3ade80ba8e96a86e6b9e6.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_1f4a9e1e71ef04c47ad5b1c5.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_ff59d6de84f7923cd50aac34.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.869000;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;}
.ma{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);}
.m17{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);}
.m16{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);}
.m1d{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);}
.m15{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);}
.m1a{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);}
.m11{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);}
.mc{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);}
.m5{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);}
.mf{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);}
.m6{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);}
.m21{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);}
.m7{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);}
.m19{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);}
.mb{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);}
.m10{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);}
.m2a{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);}
.m3{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);}
.me{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);}
.m22{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m2b{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);}
.m1f{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);}
.m1b{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);}
.m25{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);}
.m28{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);}
.m1e{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m12{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);}
.m4{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);}
.m26{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m9{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);}
.m8{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);}
.m27{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);}
.m29{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);}
.m20{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);}
.m2{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);}
.v6{vertical-align:-8.743680px;}
.v4{vertical-align:-6.177600px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:8.442720px;}
.v5{vertical-align:17.186400px;}
.v9{vertical-align:19.530000px;}
.v3{vertical-align:26.231040px;}
.v2{vertical-align:28.929120px;}
.v1{vertical-align:31.303800px;}
.v8{vertical-align:32.874000px;}
.va{vertical-align:36.720000px;}
.ls35{letter-spacing:-0.238075px;}
.ls33{letter-spacing:-0.205610px;}
.ls39{letter-spacing:-0.173146px;}
.ls37{letter-spacing:-0.156913px;}
.ls2b{letter-spacing:-0.129859px;}
.ls7e{letter-spacing:-0.120240px;}
.ls29{letter-spacing:-0.102805px;}
.ls24{letter-spacing:-0.097394px;}
.ls27{letter-spacing:-0.091984px;}
.ls2c{letter-spacing:-0.086573px;}
.ls7b{letter-spacing:-0.086184px;}
.ls36{letter-spacing:-0.081162px;}
.ls22{letter-spacing:-0.077566px;}
.ls2e{letter-spacing:-0.075751px;}
.ls26{letter-spacing:-0.064930px;}
.ls32{letter-spacing:-0.059519px;}
.ls86{letter-spacing:-0.059400px;}
.ls2a{letter-spacing:-0.054108px;}
.ls81{letter-spacing:-0.054000px;}
.ls3a{letter-spacing:-0.048697px;}
.ls25{letter-spacing:-0.043286px;}
.ls82{letter-spacing:-0.043200px;}
.ls30{letter-spacing:-0.037876px;}
.ls2f{letter-spacing:-0.032465px;}
.ls85{letter-spacing:-0.032400px;}
.ls7a{letter-spacing:-0.028728px;}
.ls2d{letter-spacing:-0.027054px;}
.ls21{letter-spacing:-0.025855px;}
.ls31{letter-spacing:-0.021643px;}
.ls83{letter-spacing:-0.021600px;}
.ls84{letter-spacing:-0.018036px;}
.ls23{letter-spacing:-0.016232px;}
.ls88{letter-spacing:-0.016200px;}
.ls38{letter-spacing:-0.010822px;}
.ls28{letter-spacing:-0.005411px;}
.ls87{letter-spacing:-0.005400px;}
.ls0{letter-spacing:0.000000px;}
.ls8f{letter-spacing:0.000309px;}
.ls92{letter-spacing:0.000443px;}
.ls93{letter-spacing:0.000566px;}
.ls43{letter-spacing:0.000997px;}
.lsc{letter-spacing:0.001518px;}
.ls45{letter-spacing:0.002171px;}
.lse{letter-spacing:0.002239px;}
.ls90{letter-spacing:0.002338px;}
.ls89{letter-spacing:0.002360px;}
.ls50{letter-spacing:0.002467px;}
.ls2{letter-spacing:0.002870px;}
.ls10{letter-spacing:0.002958px;}
.ls91{letter-spacing:0.003148px;}
.ls8{letter-spacing:0.003226px;}
.ls3b{letter-spacing:0.003280px;}
.ls8e{letter-spacing:0.003337px;}
.lsb{letter-spacing:0.003394px;}
.ls3f{letter-spacing:0.003396px;}
.ls79{letter-spacing:0.003435px;}
.ls5{letter-spacing:0.003488px;}
.ls7{letter-spacing:0.003494px;}
.lsf{letter-spacing:0.004200px;}
.ls9{letter-spacing:0.004403px;}
.ls69{letter-spacing:0.005400px;}
.ls15{letter-spacing:0.005411px;}
.ls4b{letter-spacing:0.005627px;}
.ls6e{letter-spacing:0.010800px;}
.ls1f{letter-spacing:0.010822px;}
.ls6b{letter-spacing:0.012024px;}
.ls1d{letter-spacing:0.016232px;}
.ls6f{letter-spacing:0.021600px;}
.ls6c{letter-spacing:0.024048px;}
.ls12{letter-spacing:0.025855px;}
.ls72{letter-spacing:0.027000px;}
.ls16{letter-spacing:0.027054px;}
.ls67{letter-spacing:0.028728px;}
.ls1b{letter-spacing:0.029160px;}
.ls6a{letter-spacing:0.032400px;}
.ls17{letter-spacing:0.032465px;}
.ls74{letter-spacing:0.037800px;}
.ls1c{letter-spacing:0.038880px;}
.ls14{letter-spacing:0.043286px;}
.ls77{letter-spacing:0.048600px;}
.ls1e{letter-spacing:0.048697px;}
.ls70{letter-spacing:0.054000px;}
.ls18{letter-spacing:0.054108px;}
.ls73{letter-spacing:0.059400px;}
.ls75{letter-spacing:0.064800px;}
.ls76{letter-spacing:0.070200px;}
.ls20{letter-spacing:0.070340px;}
.ls7f{letter-spacing:0.072144px;}
.ls71{letter-spacing:0.075600px;}
.ls19{letter-spacing:0.075751px;}
.ls80{letter-spacing:0.084168px;}
.ls1a{letter-spacing:0.086573px;}
.ls7d{letter-spacing:0.096192px;}
.ls78{letter-spacing:0.097200px;}
.ls7c{letter-spacing:0.102204px;}
.ls6d{letter-spacing:0.162324px;}
.ls13{letter-spacing:0.163750px;}
.ls11{letter-spacing:0.172368px;}
.ls68{letter-spacing:0.181944px;}
.ls66{letter-spacing:0.191520px;}
.ls34{letter-spacing:0.340880px;}
.ls61{letter-spacing:1.074422px;}
.ls6{letter-spacing:1.275394px;}
.ls3{letter-spacing:1.861130px;}
.ls42{letter-spacing:2.629968px;}
.ls51{letter-spacing:2.988600px;}
.ls41{letter-spacing:11.835006px;}
.ls44{letter-spacing:11.836704px;}
.ls64{letter-spacing:11.951700px;}
.ls4{letter-spacing:11.954850px;}
.ls65{letter-spacing:11.958019px;}
.ls4f{letter-spacing:13.448870px;}
.ls52{letter-spacing:13.450800px;}
.ls53{letter-spacing:13.454870px;}
.ls8a{letter-spacing:13.783593px;}
.ls46{letter-spacing:14.462448px;}
.ls40{letter-spacing:14.467728px;}
.ls60{letter-spacing:14.579547px;}
.ls5e{letter-spacing:14.582480px;}
.ls5f{letter-spacing:14.585634px;}
.ls54{letter-spacing:14.645022px;}
.ls49{letter-spacing:14.708083px;}
.ls4a{letter-spacing:14.714205px;}
.ls48{letter-spacing:14.860470px;}
.ls47{letter-spacing:14.865421px;}
.ls59{letter-spacing:14.879511px;}
.ls58{letter-spacing:14.882480px;}
.ls5a{letter-spacing:14.885669px;}
.ls5d{letter-spacing:14.912200px;}
.ls5b{letter-spacing:14.912372px;}
.ls5c{letter-spacing:14.916006px;}
.ls8d{letter-spacing:14.940124px;}
.lsa{letter-spacing:14.943900px;}
.ls3d{letter-spacing:14.944200px;}
.ls3e{letter-spacing:14.946124px;}
.lsd{letter-spacing:15.183002px;}
.ls4d{letter-spacing:16.298359px;}
.ls4c{letter-spacing:16.304241px;}
.ls4e{letter-spacing:16.440600px;}
.ls3c{letter-spacing:18.052231px;}
.ls57{letter-spacing:18.088671px;}
.ls56{letter-spacing:18.092477px;}
.ls55{letter-spacing:18.094725px;}
.ls8c{letter-spacing:20.298359px;}
.ls8b{letter-spacing:20.304241px;}
.ls1{letter-spacing:32.009510px;}
.ls63{letter-spacing:234.788870px;}
.ls62{letter-spacing:295.496870px;}
.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;}
}
.ws1{word-spacing:-22.718660px;}
.ws20{word-spacing:-17.394700px;}
.wse2{word-spacing:-15.655334px;}
.ws32{word-spacing:-14.943900px;}
.ws104{word-spacing:-13.933248px;}
.ws25{word-spacing:-13.915795px;}
.wsbc{word-spacing:-13.776694px;}
.wse1{word-spacing:-13.449600px;}
.wsaf{word-spacing:-13.307034px;}
.ws101{word-spacing:-12.161520px;}
.ws102{word-spacing:-11.970144px;}
.ws24{word-spacing:-11.955150px;}
.wsb8{word-spacing:-11.835648px;}
.wsae{word-spacing:-11.432160px;}
.ws60{word-spacing:-10.945368px;}
.ws150{word-spacing:-3.927283px;}
.ws148{word-spacing:-3.765863px;}
.ws62{word-spacing:-3.646312px;}
.ws134{word-spacing:-3.526760px;}
.ws12f{word-spacing:-3.407209px;}
.wsa6{word-spacing:-3.347434px;}
.wsf6{word-spacing:-3.287658px;}
.ws44{word-spacing:-3.048556px;}
.ws14e{word-spacing:-2.851315px;}
.ws67{word-spacing:-2.809453px;}
.ws5d{word-spacing:-2.689902px;}
.ws180{word-spacing:-2.636122px;}
.ws181{word-spacing:-2.582323px;}
.ws16{word-spacing:-2.570351px;}
.ws45{word-spacing:-2.450800px;}
.wsb6{word-spacing:-2.331248px;}
.ws145{word-spacing:-2.271473px;}
.ws16d{word-spacing:-2.205734px;}
.ws5a{word-spacing:-2.032370px;}
.wsb4{word-spacing:-1.972595px;}
.ws5{word-spacing:-1.908367px;}
.ws5c{word-spacing:-1.793268px;}
.ws18{word-spacing:-1.733492px;}
.ws143{word-spacing:-1.673717px;}
.ws151{word-spacing:-1.667750px;}
.ws172{word-spacing:-1.613952px;}
.ws135{word-spacing:-1.613941px;}
.ws160{word-spacing:-1.560154px;}
.ws4e{word-spacing:-1.554166px;}
.wsb5{word-spacing:-1.494390px;}
.ws4a{word-spacing:-1.374839px;}
.ws4{word-spacing:-1.322630px;}
.ws33{word-spacing:-1.315063px;}
.ws31{word-spacing:-1.255288px;}
.ws178{word-spacing:-1.237363px;}
.wsb7{word-spacing:-1.230907px;}
.wsb3{word-spacing:-1.195512px;}
.ws136{word-spacing:-1.135736px;}
.ws133{word-spacing:-1.016185px;}
.ws174{word-spacing:-0.914573px;}
.ws74{word-spacing:-0.914425px;}
.wsa4{word-spacing:-0.896634px;}
.ws9e{word-spacing:-0.881960px;}
.ws163{word-spacing:-0.860774px;}
.ws146{word-spacing:-0.836858px;}
.ws46{word-spacing:-0.777083px;}
.ws9d{word-spacing:-0.714226px;}
.wsa7{word-spacing:-0.657532px;}
.ws177{word-spacing:-0.645581px;}
.ws184{word-spacing:-0.591782px;}
.wsa0{word-spacing:-0.573545px;}
.ws19{word-spacing:-0.537980px;}
.ws162{word-spacing:-0.484186px;}
.ws179{word-spacing:-0.430387px;}
.ws68{word-spacing:-0.358654px;}
.ws83{word-spacing:-0.313826px;}
.ws12{word-spacing:-0.298878px;}
.ws158{word-spacing:-0.268992px;}
.ws109{word-spacing:-0.268128px;}
.ws11b{word-spacing:-0.248400px;}
.ws6b{word-spacing:-0.241315px;}
.ws9{word-spacing:-0.239102px;}
.wsd7{word-spacing:-0.235505px;}
.wsd8{word-spacing:-0.235332px;}
.wsfb{word-spacing:-0.227798px;}
.ws157{word-spacing:-0.215194px;}
.wsa2{word-spacing:-0.200200px;}
.ws11c{word-spacing:-0.199800px;}
.wsa1{word-spacing:-0.189378px;}
.ws15{word-spacing:-0.179327px;}
.ws118{word-spacing:-0.178200px;}
.ws14a{word-spacing:-0.161395px;}
.ws10{word-spacing:-0.119551px;}
.ws108{word-spacing:-0.114912px;}
.ws15c{word-spacing:-0.107597px;}
.ws6a{word-spacing:-0.103421px;}
.ws2a{word-spacing:-0.059776px;}
.ws107{word-spacing:-0.057456px;}
.ws2{word-spacing:-0.053798px;}
.ws69{word-spacing:-0.051710px;}
.ws3{word-spacing:-0.020218px;}
.ws154{word-spacing:-0.011933px;}
.ws17a{word-spacing:-0.010176px;}
.ws165{word-spacing:-0.008266px;}
.ws16f{word-spacing:-0.006710px;}
.ws10d{word-spacing:-0.006012px;}
.ws16b{word-spacing:-0.005933px;}
.wse5{word-spacing:-0.004637px;}
.wse7{word-spacing:-0.004042px;}
.ws159{word-spacing:-0.003888px;}
.wsd1{word-spacing:-0.003557px;}
.ws167{word-spacing:-0.003466px;}
.wsff{word-spacing:-0.002699px;}
.ws169{word-spacing:-0.002467px;}
.wse6{word-spacing:-0.001632px;}
.wsc0{word-spacing:-0.001436px;}
.ws23{word-spacing:-0.001225px;}
.wse8{word-spacing:-0.000355px;}
.wsc2{word-spacing:-0.000313px;}
.ws100{word-spacing:-0.000227px;}
.ws0{word-spacing:0.000000px;}
.wsbe{word-spacing:0.000220px;}
.wse4{word-spacing:0.000250px;}
.wsbd{word-spacing:0.000625px;}
.wse3{word-spacing:0.000710px;}
.wsbf{word-spacing:0.001200px;}
.wsc1{word-spacing:0.001723px;}
.ws13f{word-spacing:0.004181px;}
.ws85{word-spacing:0.010822px;}
.wsf9{word-spacing:0.010978px;}
.ws111{word-spacing:0.012024px;}
.wsa3{word-spacing:0.016232px;}
.ws110{word-spacing:0.024048px;}
.wsfa{word-spacing:0.034747px;}
.ws9c{word-spacing:0.037876px;}
.ws164{word-spacing:0.053798px;}
.wsc{word-spacing:0.059776px;}
.ws94{word-spacing:0.070340px;}
.ws88{word-spacing:0.081162px;}
.ws12b{word-spacing:0.086400px;}
.ws9b{word-spacing:0.086573px;}
.ws86{word-spacing:0.091984px;}
.ws14b{word-spacing:0.107597px;}
.ws11a{word-spacing:0.108000px;}
.ws89{word-spacing:0.108216px;}
.ws127{word-spacing:0.113400px;}
.ws117{word-spacing:0.114228px;}
.ws124{word-spacing:0.118800px;}
.ws82{word-spacing:0.119038px;}
.wsa{word-spacing:0.119551px;}
.ws11d{word-spacing:0.124200px;}
.ws84{word-spacing:0.124448px;}
.ws90{word-spacing:0.126360px;}
.ws128{word-spacing:0.129600px;}
.ws87{word-spacing:0.129859px;}
.ws12a{word-spacing:0.135000px;}
.ws8f{word-spacing:0.136080px;}
.ws121{word-spacing:0.145800px;}
.ws8a{word-spacing:0.146092px;}
.ws10b{word-spacing:0.151200px;}
.ws81{word-spacing:0.151502px;}
.ws126{word-spacing:0.156600px;}
.ws17c{word-spacing:0.161395px;}
.ws113{word-spacing:0.162000px;}
.ws114{word-spacing:0.172800px;}
.ws7d{word-spacing:0.173146px;}
.ws10a{word-spacing:0.178200px;}
.ws21{word-spacing:0.179327px;}
.ws123{word-spacing:0.183600px;}
.ws122{word-spacing:0.189000px;}
.ws129{word-spacing:0.199800px;}
.ws116{word-spacing:0.205200px;}
.ws17b{word-spacing:0.215194px;}
.ws11e{word-spacing:0.216000px;}
.ws10f{word-spacing:0.216432px;}
.ws115{word-spacing:0.226800px;}
.ws112{word-spacing:0.237600px;}
.wsb{word-spacing:0.239102px;}
.ws120{word-spacing:0.243000px;}
.ws166{word-spacing:0.268992px;}
.ws17{word-spacing:0.298878px;}
.ws4b{word-spacing:0.358654px;}
.ws1f{word-spacing:0.418429px;}
.ws1e{word-spacing:0.478205px;}
.ws12e{word-spacing:0.597756px;}
.ws47{word-spacing:0.657532px;}
.ws8e{word-spacing:0.692582px;}
.ws14{word-spacing:0.717307px;}
.ws13{word-spacing:0.777083px;}
.ws170{word-spacing:0.860774px;}
.ws4c{word-spacing:1.016185px;}
.ws132{word-spacing:1.075961px;}
.ws173{word-spacing:1.075968px;}
.ws70{word-spacing:1.103803px;}
.ws71{word-spacing:1.125446px;}
.ws15d{word-spacing:1.129766px;}
.ws66{word-spacing:1.135736px;}
.ws175{word-spacing:1.183565px;}
.ws38{word-spacing:1.195512px;}
.ws29{word-spacing:1.315063px;}
.wsdc{word-spacing:1.331186px;}
.wsdd{word-spacing:1.332680px;}
.wsd9{word-spacing:1.332715px;}
.wsdb{word-spacing:1.332745px;}
.wsda{word-spacing:1.334135px;}
.wsde{word-spacing:1.336283px;}
.ws61{word-spacing:1.374839px;}
.ws73{word-spacing:1.379754px;}
.ws156{word-spacing:1.398758px;}
.ws72{word-spacing:1.477148px;}
.ws2b{word-spacing:1.494390px;}
.ws15e{word-spacing:1.506355px;}
.ws16e{word-spacing:1.560154px;}
.ws15b{word-spacing:1.721549px;}
.ws155{word-spacing:1.775347px;}
.ws2e{word-spacing:1.793268px;}
.ws2f{word-spacing:1.853044px;}
.ws140{word-spacing:1.912819px;}
.ws34{word-spacing:1.972595px;}
.ws3a{word-spacing:2.032370px;}
.ws5e{word-spacing:2.151922px;}
.ws15a{word-spacing:2.205734px;}
.ws147{word-spacing:2.211697px;}
.ws16c{word-spacing:2.313331px;}
.ws77{word-spacing:2.321233px;}
.ws75{word-spacing:2.359109px;}
.ws14c{word-spacing:2.367130px;}
.wsf8{word-spacing:2.450800px;}
.ws76{word-spacing:2.456503px;}
.ws55{word-spacing:2.570351px;}
.ws142{word-spacing:2.689902px;}
.ws141{word-spacing:2.749678px;}
.ws15f{word-spacing:2.851315px;}
.ws11{word-spacing:2.869229px;}
.ws58{word-spacing:2.988780px;}
.wsb2{word-spacing:3.108331px;}
.ws5f{word-spacing:3.168107px;}
.ws8{word-spacing:3.227882px;}
.ws6d{word-spacing:3.284356px;}
.ws144{word-spacing:3.287658px;}
.ws17e{word-spacing:3.335501px;}
.ws6c{word-spacing:3.343874px;}
.ws3b{word-spacing:3.526760px;}
.ws3c{word-spacing:3.586536px;}
.ws43{word-spacing:3.646312px;}
.ws22{word-spacing:3.706087px;}
.ws152{word-spacing:3.712090px;}
.ws50{word-spacing:3.765863px;}
.ws161{word-spacing:3.981082px;}
.wsf7{word-spacing:4.011218px;}
.ws183{word-spacing:4.034880px;}
.ws52{word-spacing:4.244068px;}
.ws6f{word-spacing:4.247478px;}
.ws80{word-spacing:4.269121px;}
.ws130{word-spacing:4.303843px;}
.ws8d{word-spacing:4.323229px;}
.ws7{word-spacing:4.363619px;}
.ws6e{word-spacing:4.398980px;}
.ws49{word-spacing:4.483170px;}
.wsf{word-spacing:4.542946px;}
.ws56{word-spacing:4.602721px;}
.ws3d{word-spacing:4.722272px;}
.wsd6{word-spacing:4.841824px;}
.ws3f{word-spacing:4.901599px;}
.ws8c{word-spacing:4.945471px;}
.ws59{word-spacing:4.961375px;}
.ws48{word-spacing:5.021150px;}
.ws8b{word-spacing:5.048276px;}
.ws36{word-spacing:5.080926px;}
.ws182{word-spacing:5.110848px;}
.ws51{word-spacing:5.260253px;}
.ws7e{word-spacing:5.297173px;}
.ws35{word-spacing:5.320028px;}
.ws7f{word-spacing:5.345870px;}
.ws139{word-spacing:5.365535px;}
.ws13d{word-spacing:5.369811px;}
.ws13e{word-spacing:5.371305px;}
.ws13a{word-spacing:5.371340px;}
.ws13c{word-spacing:5.371370px;}
.ws13b{word-spacing:5.372760px;}
.ws16a{word-spacing:5.378179px;}
.ws171{word-spacing:5.378333px;}
.ws14d{word-spacing:5.378822px;}
.ws14f{word-spacing:5.379840px;}
.ws17f{word-spacing:5.381587px;}
.ws176{word-spacing:5.381789px;}
.ws17d{word-spacing:5.382528px;}
.ws1c{word-spacing:5.439580px;}
.ws168{word-spacing:5.487437px;}
.ws1d{word-spacing:5.499355px;}
.ws131{word-spacing:5.618906px;}
.ws27{word-spacing:5.678682px;}
.ws65{word-spacing:5.798233px;}
.ws6{word-spacing:5.858009px;}
.ws186{word-spacing:5.864026px;}
.ws57{word-spacing:5.917784px;}
.wsd{word-spacing:5.971475px;}
.wse{word-spacing:5.977560px;}
.ws39{word-spacing:6.037336px;}
.ws5b{word-spacing:6.156887px;}
.ws54{word-spacing:6.276438px;}
.ws3e{word-spacing:6.336214px;}
.ws28{word-spacing:6.694867px;}
.ws187{word-spacing:6.778598px;}
.ws7a{word-spacing:6.839251px;}
.ws63{word-spacing:6.933970px;}
.ws4f{word-spacing:7.173072px;}
.ws153{word-spacing:7.208986px;}
.ws30{word-spacing:7.232848px;}
.ws96{word-spacing:7.250472px;}
.ws78{word-spacing:7.272115px;}
.ws79{word-spacing:7.347866px;}
.ws185{word-spacing:7.370381px;}
.ws95{word-spacing:7.456082px;}
.ws53{word-spacing:7.830604px;}
.ws137{word-spacing:8.066683px;}
.ws64{word-spacing:8.607686px;}
.ws97{word-spacing:8.916998px;}
.ws98{word-spacing:8.992750px;}
.ws1a{word-spacing:9.205442px;}
.ws149{word-spacing:9.982525px;}
.ws92{word-spacing:10.459076px;}
.ws93{word-spacing:10.486130px;}
.wsa5{word-spacing:10.520506px;}
.ws2d{word-spacing:10.580281px;}
.ws91{word-spacing:11.313983px;}
.ws1b{word-spacing:11.357364px;}
.ws9a{word-spacing:11.535826px;}
.ws7c{word-spacing:11.725204px;}
.ws99{word-spacing:11.763079px;}
.ws7b{word-spacing:12.082316px;}
.ws138{word-spacing:13.274213px;}
.ws37{word-spacing:13.389734px;}
.ws40{word-spacing:13.748388px;}
.ws41{word-spacing:13.808164px;}
.ws2c{word-spacing:15.242778px;}
.ws42{word-spacing:17.275148px;}
.ws9f{word-spacing:20.247214px;}
.ws4d{word-spacing:22.296299px;}
.ws10e{word-spacing:73.105920px;}
.ws125{word-spacing:90.903600px;}
.wsfd{word-spacing:129.473664px;}
.wsab{word-spacing:145.508532px;}
.wsaa{word-spacing:145.554261px;}
.wsac{word-spacing:156.940692px;}
.wsb0{word-spacing:156.986421px;}
.ws103{word-spacing:163.380965px;}
.wsad{word-spacing:168.372852px;}
.wsb1{word-spacing:168.418581px;}
.wsce{word-spacing:174.552137px;}
.wsbb{word-spacing:175.735702px;}
.wsba{word-spacing:175.753527px;}
.wsc4{word-spacing:175.754363px;}
.wsc7{word-spacing:175.754439px;}
.wscc{word-spacing:176.351155px;}
.wsc8{word-spacing:176.919266px;}
.wsa8{word-spacing:182.503002px;}
.wsd0{word-spacing:186.387785px;}
.wsd4{word-spacing:188.186803px;}
.ws105{word-spacing:190.032871px;}
.wsed{word-spacing:199.699661px;}
.wsea{word-spacing:201.044621px;}
.wsb9{word-spacing:209.593224px;}
.wse0{word-spacing:213.149261px;}
.wsd3{word-spacing:224.593256px;}
.wscf{word-spacing:226.676330px;}
.wsd2{word-spacing:231.031849px;}
.wsc6{word-spacing:235.940390px;}
.wsc9{word-spacing:236.097506px;}
.wsd5{word-spacing:236.428904px;}
.wscd{word-spacing:243.909034px;}
.wsc5{word-spacing:244.571830px;}
.wsca{word-spacing:245.423997px;}
.ws119{word-spacing:245.424600px;}
.wscb{word-spacing:247.459728px;}
.wsc3{word-spacing:249.022034px;}
.wsfe{word-spacing:256.080384px;}
.wsf3{word-spacing:268.669210px;}
.wsf4{word-spacing:275.985792px;}
.wsf5{word-spacing:284.485939px;}
.wse9{word-spacing:284.539738px;}
.wsf2{word-spacing:290.618957px;}
.wsee{word-spacing:291.372134px;}
.wsf0{word-spacing:292.340506px;}
.wsef{word-spacing:295.191821px;}
.wsec{word-spacing:296.429184px;}
.wsdf{word-spacing:297.451354px;}
.wseb{word-spacing:297.989338px;}
.wsf1{word-spacing:308.103437px;}
.ws10c{word-spacing:485.913888px;}
.wsa9{word-spacing:517.397970px;}
.ws12c{word-spacing:613.137600px;}
.ws12d{word-spacing:723.265200px;}
.wsfc{word-spacing:790.974576px;}
.ws11f{word-spacing:800.053200px;}
.ws106{word-spacing:845.475211px;}
.ws26{word-spacing:908.256656px;}
._67{margin-left:-800.263800px;}
._72{margin-left:-723.864600px;}
._71{margin-left:-613.348200px;}
._4a{margin-left:-486.551160px;}
._4b{margin-left:-480.151090px;}
._5a{margin-left:-245.262600px;}
._6f{margin-left:-91.465200px;}
._50{margin-left:-73.983672px;}
._0{margin-left:-11.943245px;}
._d{margin-left:-7.277612px;}
._5{margin-left:-5.971622px;}
._2{margin-left:-4.949453px;}
._9{margin-left:-3.227882px;}
._7{margin-left:-2.047382px;}
._3{margin-left:-1.022170px;}
._8{width:1.091170px;}
._93{width:3.338544px;}
._17{width:4.363619px;}
._20{width:5.469603px;}
._91{width:10.888576px;}
._90{width:12.478089px;}
._1b{width:13.671099px;}
._1a{width:14.944969px;}
._e{width:16.094648px;}
._4{width:17.861069px;}
._6{width:19.797811px;}
._c{width:20.921460px;}
._f{width:22.027444px;}
._a{width:23.267720px;}
._12{width:24.322732px;}
._18{width:25.882835px;}
._19{width:28.214083px;}
._14{width:29.290044px;}
._11{width:30.799446px;}
._1c{width:31.979946px;}
._15{width:33.049969px;}
._b{width:34.430746px;}
._10{width:35.446931px;}
._1e{width:36.582667px;}
._1{width:37.658880px;}
._23{width:38.913916px;}
._1d{width:40.408306px;}
._92{width:41.721136px;}
._1f{width:43.531648px;}
._22{width:47.417062px;}
._13{width:56.302678px;}
._4d{width:58.427918px;}
._4c{width:60.234228px;}
._24{width:62.420738px;}
._55{width:71.756522px;}
._54{width:72.865440px;}
._5d{width:93.425400px;}
._4e{width:108.901368px;}
._38{width:120.882474px;}
._58{width:126.564928px;}
._57{width:129.035556px;}
._77{width:145.642118px;}
._60{width:156.729600px;}
._3f{width:158.257690px;}
._63{width:164.948400px;}
._2d{width:168.418581px;}
._2c{width:174.680753px;}
._3a{width:184.020655px;}
._41{width:187.487424px;}
._2b{width:191.237172px;}
._82{width:196.406123px;}
._42{width:207.823219px;}
._39{width:211.533157px;}
._51{width:215.794424px;}
._45{width:218.206310px;}
._46{width:219.228480px;}
._3e{width:227.864119px;}
._37{width:231.068346px;}
._40{width:240.870264px;}
._3d{width:247.077828px;}
._83{width:251.708188px;}
._43{width:255.381005px;}
._3c{width:257.218715px;}
._3b{width:260.849732px;}
._47{width:266.786266px;}
._73{width:279.478922px;}
._66{width:285.908400px;}
._44{width:288.029952px;}
._56{width:300.735971px;}
._48{width:317.087770px;}
._52{width:322.848354px;}
._2e{width:324.671149px;}
._53{width:331.453584px;}
._2f{width:340.632639px;}
._6c{width:348.267600px;}
._7c{width:364.036019px;}
._36{width:388.007510px;}
._4f{width:390.813362px;}
._2a{width:399.439670px;}
._31{width:418.565002px;}
._27{width:419.926101px;}
._30{width:425.276352px;}
._32{width:429.529116px;}
._28{width:433.233135px;}
._5b{width:436.266272px;}
._26{width:442.104492px;}
._29{width:444.665295px;}
._33{width:450.975848px;}
._35{width:456.097455px;}
._5e{width:491.605200px;}
._34{width:492.817553px;}
._75{width:497.620126px;}
._59{width:504.208800px;}
._65{width:507.454200px;}
._5f{width:509.614200px;}
._8e{width:543.588179px;}
._78{width:546.030089px;}
._7b{width:558.335397px;}
._6a{width:562.555800px;}
._6e{width:565.434000px;}
._61{width:570.429000px;}
._62{width:585.230400px;}
._89{width:597.549588px;}
._7f{width:609.423971px;}
._6d{width:612.257400px;}
._6b{width:616.939200px;}
._79{width:629.294410px;}
._5c{width:638.474400px;}
._81{width:654.000788px;}
._85{width:655.313447px;}
._80{width:657.543950px;}
._8c{width:670.567467px;}
._76{width:676.265255px;}
._87{width:679.780421px;}
._68{width:683.780400px;}
._25{width:684.859012px;}
._69{width:693.257400px;}
._64{width:705.483000px;}
._70{width:716.337000px;}
._7e{width:725.055562px;}
._7a{width:736.115975px;}
._84{width:748.277642px;}
._86{width:752.894061px;}
._8d{width:756.130056px;}
._8b{width:769.488737px;}
._8a{width:771.882766px;}
._74{width:774.516197px;}
._7d{width:819.523939px;}
._88{width:895.366771px;}
._21{width:1854.464220px;}
._8f{width:2047.317862px;}
._49{width:2060.515800px;}
._16{width:2071.227862px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:36.821664px;}
.fs14{font-size:41.842800px;}
.fsa{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:43.092000px;}
.fs13{font-size:45.429600px;}
.fs10{font-size:45.728640px;}
.fs9{font-size:47.236800px;}
.fs11{font-size:47.342592px;}
.fsb{font-size:47.820600px;}
.fs15{font-size:47.880000px;}
.fs18{font-size:47.880576px;}
.fse{font-size:48.600000px;}
.fs8{font-size:53.798400px;}
.fs16{font-size:54.000000px;}
.fsd{font-size:54.108000px;}
.fsf{font-size:56.700000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs17{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.y1af{bottom:-624.645411px;}
.y1d9{bottom:-584.866500px;}
.y1da{bottom:-584.866050px;}
.y1d8{bottom:-566.596950px;}
.y1d7{bottom:-547.606500px;}
.y1d4{bottom:-538.516950px;}
.y1d6{bottom:-529.426050px;}
.y1d3{bottom:-520.336500px;}
.y1d5{bottom:-511.246950px;}
.y1d2{bottom:-492.256500px;}
.y1d1{bottom:-474.076050px;}
.y1cf{bottom:-474.075150px;}
.y1d0{bottom:-455.805600px;}
.y1ce{bottom:-436.905600px;}
.y1cc{bottom:-418.636050px;}
.y1cd{bottom:-400.455600px;}
.y1cb{bottom:-381.466500px;}
.y1ca{bottom:-363.286050px;}
.y1c8{bottom:-363.285450px;}
.y1c9{bottom:-345.015900px;}
.ycc{bottom:-343.858870px;}
.y1c7{bottom:-326.115900px;}
.y1c6{bottom:-307.846350px;}
.yf0{bottom:-299.470241px;}
.y1c3{bottom:-298.756500px;}
.y1c5{bottom:-289.665900px;}
.yef{bottom:-281.326476px;}
.y1c4{bottom:-271.486500px;}
.yee{bottom:-263.101549px;}
.y1c2{bottom:-252.496050px;}
.yed{bottom:-244.876621px;}
.y1c1{bottom:-243.405900px;}
.yec{bottom:-226.651694px;}
.y1c0{bottom:-215.325900px;}
.yeb{bottom:-208.426767px;}
.y1bf{bottom:-206.236050px;}
.yea{bottom:-190.201840px;}
.y1be{bottom:-178.156050px;}
.ye9{bottom:-171.976913px;}
.y1bd{bottom:-169.066050px;}
.ye8{bottom:-153.833148px;}
.y1bc{bottom:-140.895600px;}
.ye7{bottom:-135.608221px;}
.ye6{bottom:-117.383294px;}
.y1bb{bottom:-112.096050px;}
.ye5{bottom:-99.158367px;}
.y1ba{bottom:-74.296050px;}
.ye4{bottom:-72.752310px;}
.ye3{bottom:-38.732445px;}
.y1b9{bottom:-36.406050px;}
.ye2{bottom:-16.780368px;}
.y1b8{bottom:-11.926050px;}
.y0{bottom:0.000000px;}
.y31{bottom:3.425340px;}
.y25{bottom:9.233944px;}
.y30{bottom:14.151273px;}
.y24{bottom:26.903761px;}
.y6{bottom:35.925007px;}
.y52{bottom:63.780000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y103{bottom:108.612000px;}
.y233{bottom:114.156000px;}
.y51{bottom:116.356500px;}
.yc3{bottom:122.196000px;}
.y241{bottom:125.289000px;}
.y83{bottom:125.572500px;}
.y274{bottom:128.325000px;}
.y102{bottom:128.875500px;}
.y174{bottom:133.462500px;}
.y232{bottom:134.419500px;}
.y50{bottom:136.620000px;}
.y22{bottom:139.264499px;}
.y9e{bottom:140.128500px;}
.yc2{bottom:142.459500px;}
.y240{bottom:144.657000px;}
.y82{bottom:145.837500px;}
.y273{bottom:147.691500px;}
.y101{bottom:149.139000px;}
.y277{bottom:153.570000px;}
.y173{bottom:153.727500px;}
.y231{bottom:154.683000px;}
.y4f{bottom:156.885000px;}
.y9d{bottom:160.392000px;}
.yc1{bottom:162.723000px;}
.y123{bottom:163.887375px;}
.y23f{bottom:164.023500px;}
.y81{bottom:166.101000px;}
.y272{bottom:167.059500px;}
.y100{bottom:169.404000px;}
.y276{bottom:172.938000px;}
.y171{bottom:173.991000px;}
.y230{bottom:174.948000px;}
.y4e{bottom:177.148500px;}
.y122{bottom:178.163550px;}
.y172{bottom:179.415000px;}
.y9c{bottom:180.657000px;}
.yc0{bottom:182.988000px;}
.y23e{bottom:183.391500px;}
.y80{bottom:186.364500px;}
.y11f{bottom:186.408975px;}
.y271{bottom:186.427500px;}
.y20a{bottom:187.258605px;}
.yff{bottom:189.667500px;}
.y275{bottom:192.306000px;}
.y121{bottom:192.439725px;}
.y170{bottom:194.254500px;}
.y22e{bottom:195.211500px;}
.y19{bottom:196.933500px;}
.y4d{bottom:197.412000px;}
.y22f{bottom:200.637000px;}
.y9b{bottom:200.920500px;}
.y207{bottom:201.644565px;}
.y209{bottom:202.206600px;}
.ybf{bottom:203.251500px;}
.y270{bottom:205.794000px;}
.y7f{bottom:206.629500px;}
.y120{bottom:206.715900px;}
.ye1{bottom:208.561867px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.yfe{bottom:209.932500px;}
.y23d{bottom:211.725000px;}
.y16f{bottom:214.519500px;}
.y22c{bottom:215.476500px;}
.y208{bottom:217.154595px;}
.y4c{bottom:217.677000px;}
.y22d{bottom:220.900500px;}
.y9a{bottom:221.184000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.ybe{bottom:223.516500px;}
.y26f{bottom:225.162000px;}
.ye0{bottom:226.786794px;}
.y7e{bottom:226.893000px;}
.y11e{bottom:227.114625px;}
.yfd{bottom:230.196000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y16e{bottom:234.783000px;}
.y22b{bottom:235.740000px;}
.y4b{bottom:237.940500px;}
.y206{bottom:238.513260px;}
.y11d{bottom:241.390800px;}
.y99{bottom:241.449000px;}
.ybd{bottom:243.780000px;}
.y26e{bottom:244.528500px;}
.y1ac{bottom:244.650000px;}
.ydf{bottom:245.011721px;}
.y7d{bottom:247.158000px;}
.y11a{bottom:248.144475px;}
.yfc{bottom:250.459500px;}
.y23c{bottom:251.178000px;}
.y205{bottom:253.461255px;}
.y16d{bottom:255.048000px;}
.y11c{bottom:255.666975px;}
.y22a{bottom:256.003500px;}
.y4a{bottom:258.205500px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y98{bottom:261.712500px;}
.yde{bottom:263.155487px;}
.y26d{bottom:263.896500px;}
.ybc{bottom:264.043500px;}
.y1ab{bottom:266.709000px;}
.y7c{bottom:267.421500px;}
.y204{bottom:268.409250px;}
.y11b{bottom:269.943150px;}
.yfb{bottom:270.724500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y16c{bottom:275.311500px;}
.y23b{bottom:275.341500px;}
.y200{bottom:275.798475px;}
.y229{bottom:276.268500px;}
.y49{bottom:278.469000px;}
.ydd{bottom:281.380414px;}
.y97{bottom:281.977500px;}
.y26c{bottom:283.264500px;}
.y203{bottom:283.357245px;}
.y1aa{bottom:283.504500px;}
.ybb{bottom:284.308500px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y1b7{bottom:285.523950px;}
.y7b{bottom:287.685000px;}
.y119{bottom:290.341875px;}
.yfa{bottom:290.988000px;}
.y16b{bottom:295.575000px;}
.y228{bottom:296.532000px;}
.y202{bottom:298.305240px;}
.y48{bottom:298.732500px;}
.y23a{bottom:299.506500px;}
.y1a9{bottom:300.300000px;}
.y96{bottom:302.241000px;}
.y26b{bottom:302.631000px;}
.y116{bottom:304.081275px;}
.yba{bottom:304.572000px;}
.y118{bottom:304.618050px;}
.y1b6{bottom:306.943545px;}
.y7a{bottom:307.950000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yf9{bottom:311.253000px;}
.y201{bottom:313.253235px;}
.y239{bottom:314.704500px;}
.y16a{bottom:315.840000px;}
.ydc{bottom:315.886438px;}
.y227{bottom:316.797000px;}
.y1a8{bottom:317.095500px;}
.y117{bottom:318.894225px;}
.y47{bottom:318.997500px;}
.y26a{bottom:321.999000px;}
.y95{bottom:322.504500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.yb9{bottom:324.837000px;}
.y79{bottom:328.213500px;}
.y1b5{bottom:328.362798px;}
.y238{bottom:329.902500px;}
.yf8{bottom:331.516500px;}
.y1a7{bottom:333.891000px;}
.y1ff{bottom:334.611900px;}
.y169{bottom:336.103500px;}
.y226{bottom:337.060500px;}
.y46{bottom:339.261000px;}
.y115{bottom:339.291675px;}
.y269{bottom:341.367000px;}
.y94{bottom:342.769500px;}
.y1fc{bottom:342.926280px;}
.yb8{bottom:345.100500px;}
.y10{bottom:348.133500px;}
.y78{bottom:348.478500px;}
.y1fe{bottom:349.559895px;}
.y1b4{bottom:349.693374px;}
.ydb{bottom:350.311300px;}
.yf7{bottom:351.780000px;}
.y114{bottom:353.567850px;}
.y168{bottom:356.368500px;}
.y225{bottom:357.324000px;}
.y1a6{bottom:357.531000px;}
.y1fb{bottom:357.556545px;}
.y45{bottom:359.526000px;}
.y268{bottom:360.733500px;}
.y93{bottom:363.033000px;}
.y1fd{bottom:364.507890px;}
.yb7{bottom:365.364000px;}
.y1a5{bottom:365.751000px;}
.y113{bottom:367.844025px;}
.y77{bottom:368.742000px;}
.y1b3{bottom:371.023950px;}
.yf6{bottom:372.045000px;}
.y10f{bottom:376.392900px;}
.y224{bottom:377.589000px;}
.y44{bottom:379.789500px;}
.y267{bottom:380.101500px;}
.y112{bottom:382.120200px;}
.y92{bottom:383.298000px;}
.yda{bottom:384.736163px;}
.yb6{bottom:385.629000px;}
.y1fa{bottom:385.865220px;}
.yf{bottom:386.785499px;}
.y76{bottom:389.005500px;}
.yf5{bottom:392.308500px;}
.y1b2{bottom:392.443950px;}
.y1f7{bottom:392.618985px;}
.y111{bottom:396.396375px;}
.y223{bottom:397.852500px;}
.y266{bottom:399.468000px;}
.y43{bottom:400.053000px;}
.y1f9{bottom:400.813215px;}
.y167{bottom:402.536760px;}
.y91{bottom:403.561500px;}
.y1a4{bottom:405.589500px;}
.yb5{bottom:405.892500px;}
.y1f6{bottom:407.249250px;}
.ye{bottom:408.044999px;}
.y75{bottom:409.270500px;}
.y110{bottom:410.672550px;}
.y163{bottom:410.757720px;}
.yf4{bottom:412.573500px;}
.y1b1{bottom:414.583950px;}
.y159{bottom:414.671520px;}
.y1f8{bottom:415.761210px;}
.y165{bottom:416.761080px;}
.y166{bottom:417.316800px;}
.y222{bottom:418.117500px;}
.y265{bottom:418.836000px;}
.yd9{bottom:419.079863px;}
.y42{bottom:420.318000px;}
.y90{bottom:423.825000px;}
.y162{bottom:425.223600px;}
.yb4{bottom:426.157500px;}
.y158{bottom:429.137400px;}
.y74{bottom:429.534000px;}
.y10e{bottom:431.071275px;}
.y164{bottom:432.096840px;}
.yf3{bottom:432.837000px;}
.y1f5{bottom:437.119875px;}
.yd8{bottom:437.304790px;}
.y10d{bottom:437.521500px;}
.y264{bottom:438.204000px;}
.y221{bottom:438.381000px;}
.y41{bottom:440.581500px;}
.y1a3{bottom:442.701000px;}
.y157{bottom:443.603280px;}
.y8f{bottom:444.090000px;}
.y1b0{bottom:445.993950px;}
.yb3{bottom:446.421000px;}
.y73{bottom:449.799000px;}
.y1f4{bottom:452.067870px;}
.y1f2{bottom:453.067785px;}
.y161{bottom:453.214200px;}
.yd7{bottom:455.448555px;}
.y263{bottom:457.570500px;}
.y156{bottom:458.069160px;}
.y220{bottom:458.644500px;}
.y15d{bottom:459.892080px;}
.y40{bottom:460.846500px;}
.yf2{bottom:462.067500px;}
.y1a2{bottom:462.966000px;}
.y8e{bottom:464.353500px;}
.y10c{bottom:465.746175px;}
.yb2{bottom:466.684500px;}
.y1f3{bottom:467.015865px;}
.y15f{bottom:467.438520px;}
.y160{bottom:467.994240px;}
.y72{bottom:470.062500px;}
.y155{bottom:472.533720px;}
.yd6{bottom:473.673701px;}
.y15c{bottom:474.357960px;}
.y262{bottom:476.938500px;}
.y21f{bottom:478.909500px;}
.y3f{bottom:481.110000px;}
.y15e{bottom:482.774280px;}
.y1ae{bottom:483.073950px;}
.y1a1{bottom:483.229500px;}
.y8d{bottom:484.618500px;}
.yb1{bottom:486.949500px;}
.y154{bottom:486.999600px;}
.y1f1{bottom:488.374530px;}
.y71{bottom:490.326000px;}
.yd5{bottom:491.898628px;}
.yf1{bottom:492.987000px;}
.y10b{bottom:494.833500px;}
.y261{bottom:496.305000px;}
.y21e{bottom:499.173000px;}
.y3e{bottom:501.373500px;}
.y153{bottom:501.465480px;}
.yd{bottom:502.864502px;}
.y1f0{bottom:503.322525px;}
.y1a0{bottom:503.493000px;}
.y15b{bottom:503.892960px;}
.y1ee{bottom:504.322440px;}
.y8c{bottom:504.882000px;}
.yb0{bottom:507.213000px;}
.yd4{bottom:510.123555px;}
.yd3{bottom:510.124154px;}
.y70{bottom:510.591000px;}
.yca{bottom:515.416500px;}
.y260{bottom:515.673000px;}
.y152{bottom:518.117280px;}
.y1ef{bottom:518.270520px;}
.y15a{bottom:518.673000px;}
.y21d{bottom:519.438000px;}
.y150{bottom:519.661680px;}
.yc{bottom:520.864502px;}
.y19f{bottom:523.758000px;}
.y8b{bottom:525.145500px;}
.yaf{bottom:527.478000px;}
.yd2{bottom:528.349082px;}
.y3d{bottom:530.604000px;}
.y6f{bottom:530.854500px;}
.y151{bottom:533.453040px;}
.y25f{bottom:535.041000px;}
.yb{bottom:538.864499px;}
.y1ed{bottom:539.627850px;}
.y21c{bottom:539.701500px;}
.y19e{bottom:544.021500px;}
.y8a{bottom:545.410500px;}
.yd1{bottom:546.574009px;}
.yae{bottom:547.741500px;}
.y6e{bottom:551.119500px;}
.y25e{bottom:554.407500px;}
.y14f{bottom:554.571720px;}
.y1ec{bottom:554.575845px;}
.y1ea{bottom:555.577095px;}
.ya{bottom:556.864499px;}
.y21b{bottom:559.965000px;}
.y19d{bottom:564.286500px;}
.yd0{bottom:564.798936px;}
.y89{bottom:565.674000px;}
.yad{bottom:568.005000px;}
.y14e{bottom:569.351760px;}
.y1eb{bottom:569.523840px;}
.y6d{bottom:571.383000px;}
.y25d{bottom:573.775500px;}
.y14c{bottom:576.342480px;}
.y14a{bottom:577.886880px;}
.y21a{bottom:580.230000px;}
.ycf{bottom:582.942701px;}
.y14d{bottom:584.131800px;}
.y19c{bottom:584.550000px;}
.y88{bottom:585.939000px;}
.yac{bottom:588.270000px;}
.y1e9{bottom:590.882505px;}
.y6c{bottom:591.646500px;}
.y25c{bottom:593.142000px;}
.y14b{bottom:598.911840px;}
.y219{bottom:600.493500px;}
.yce{bottom:601.167628px;}
.y19b{bottom:604.813500px;}
.y1e8{bottom:605.830500px;}
.y87{bottom:606.202500px;}
.y3c{bottom:606.699000px;}
.yab{bottom:608.533500px;}
.y6b{bottom:611.911500px;}
.y25b{bottom:612.510000px;}
.y1e5{bottom:614.463945px;}
.ycd{bottom:619.392555px;}
.y149{bottom:620.029200px;}
.y218{bottom:620.758500px;}
.y1e7{bottom:620.778495px;}
.y19a{bottom:625.078500px;}
.y237{bottom:626.466000px;}
.yaa{bottom:628.798500px;}
.y25a{bottom:631.878000px;}
.y10a{bottom:632.175000px;}
.y147{bottom:634.253520px;}
.y148{bottom:634.809240px;}
.y86{bottom:635.433000px;}
.y1e6{bottom:635.726490px;}
.y145{bottom:635.799240px;}
.y217{bottom:641.022000px;}
.y6a{bottom:641.142000px;}
.y139{bottom:642.153720px;}
.y3b{bottom:644.896500px;}
.y199{bottom:645.342000px;}
.y9{bottom:645.510000px;}
.y236{bottom:646.731000px;}
.ya9{bottom:649.062000px;}
.y146{bottom:649.589280px;}
.y259{bottom:651.244500px;}
.y109{bottom:652.438500px;}
.ycb{bottom:653.088555px;}
.y138{bottom:656.619600px;}
.y1e4{bottom:657.085155px;}
.y216{bottom:661.285500px;}
.y3a{bottom:665.160000px;}
.y1e3{bottom:665.399535px;}
.y198{bottom:665.607000px;}
.y8{bottom:666.771000px;}
.y235{bottom:666.994500px;}
.ya8{bottom:669.325500px;}
.y85{bottom:670.252500px;}
.y258{bottom:670.612500px;}
.y144{bottom:670.707960px;}
.y137{bottom:671.084160px;}
.y108{bottom:672.703500px;}
.y69{bottom:675.961500px;}
.y215{bottom:681.550500px;}
.y39{bottom:685.423500px;}
.y143{bottom:685.488000px;}
.y136{bottom:685.550040px;}
.ya7{bottom:689.590500px;}
.y257{bottom:689.979000px;}
.y84{bottom:690.516000px;}
.y141{bottom:692.480040px;}
.y107{bottom:692.967000px;}
.y1e2{bottom:693.390480px;}
.y13f{bottom:694.024440px;}
.y197{bottom:694.837500px;}
.y234{bottom:696.225000px;}
.y135{bottom:700.015920px;}
.y142{bottom:700.268040px;}
.y1e1{bottom:701.706195px;}
.y214{bottom:701.814000px;}
.y38{bottom:705.688500px;}
.y256{bottom:709.347000px;}
.ya6{bottom:709.854000px;}
.y68{bottom:710.781000px;}
.y106{bottom:713.232000px;}
.y134{bottom:714.481800px;}
.y140{bottom:715.048080px;}
.yc9{bottom:715.443000px;}
.y213{bottom:722.077500px;}
.y37{bottom:725.952000px;}
.y7{bottom:726.298500px;}
.y255{bottom:728.715000px;}
.y133{bottom:728.947680px;}
.y1e0{bottom:729.697140px;}
.ya5{bottom:730.119000px;}
.y67{bottom:731.044500px;}
.yc8{bottom:735.708000px;}
.y13e{bottom:736.166760px;}
.y1df{bottom:738.012855px;}
.y196{bottom:738.714000px;}
.y212{bottom:742.342500px;}
.y105{bottom:742.462500px;}
.y132{bottom:743.413560px;}
.y13d{bottom:744.387720px;}
.y36{bottom:746.217000px;}
.y254{bottom:748.081500px;}
.ya4{bottom:750.382500px;}
.y66{bottom:751.308000px;}
.y3{bottom:752.599495px;}
.y193{bottom:754.878000px;}
.y195{bottom:755.509500px;}
.yc7{bottom:755.971500px;}
.y211{bottom:762.606000px;}
.y1de{bottom:766.003800px;}
.y35{bottom:766.480500px;}
.y253{bottom:767.449500px;}
.ya3{bottom:770.646000px;}
.y65{bottom:771.573000px;}
.y13c{bottom:772.064160px;}
.y194{bottom:772.305000px;}
.yc6{bottom:776.235000px;}
.y104{bottom:777.282000px;}
.y13b{bottom:780.286440px;}
.y210{bottom:782.871000px;}
.y34{bottom:786.744000px;}
.y252{bottom:786.816000px;}
.ya2{bottom:790.911000px;}
.y64{bottom:791.836500px;}
.y1dd{bottom:795.765000px;}
.y192{bottom:796.302000px;}
.yc5{bottom:796.500000px;}
.y20f{bottom:803.134500px;}
.y251{bottom:806.184000px;}
.y33{bottom:807.009000px;}
.y13a{bottom:807.962880px;}
.y63{bottom:812.101500px;}
.y191{bottom:813.097500px;}
.y131{bottom:816.185160px;}
.ya1{bottom:820.141500px;}
.y20e{bottom:823.398000px;}
.y250{bottom:825.552000px;}
.yc4{bottom:825.730500px;}
.y32{bottom:827.272500px;}
.y1dc{bottom:828.976500px;}
.y190{bottom:829.893000px;}
.y62{bottom:832.365000px;}
.y182{bottom:836.893500px;}
.y18c{bottom:838.195500px;}
.y12f{bottom:843.547440px;}
.y20d{bottom:843.663000px;}
.y24f{bottom:844.918500px;}
.y18f{bottom:846.688500px;}
.y12e{bottom:850.779720px;}
.y61{bottom:852.628500px;}
.y181{bottom:853.332000px;}
.ya0{bottom:854.961000px;}
.y130{bottom:858.012000px;}
.y2f{bottom:862.705464px;}
.y2e{bottom:863.472000px;}
.y18e{bottom:863.484000px;}
.y20c{bottom:863.926500px;}
.y1db{bottom:863.977500px;}
.y24e{bottom:864.286500px;}
.y180{bottom:869.770500px;}
.y60{bottom:872.893500px;}
.y2{bottom:879.369000px;}
.y18d{bottom:880.279500px;}
.y24d{bottom:883.653000px;}
.y9f{bottom:884.191500px;}
.y17f{bottom:886.209000px;}
.y1ad{bottom:886.407000px;}
.y12d{bottom:887.607000px;}
.y5f{bottom:893.157000px;}
.y2d{bottom:902.478000px;}
.y17e{bottom:902.646000px;}
.y24c{bottom:903.021000px;}
.y18b{bottom:904.278000px;}
.y20b{bottom:904.455000px;}
.y5e{bottom:913.422000px;}
.y17d{bottom:919.084500px;}
.y188{bottom:920.442000px;}
.y2c{bottom:920.634000px;}
.y18a{bottom:921.073500px;}
.y24b{bottom:922.389000px;}
.y12c{bottom:924.718500px;}
.y5d{bottom:933.685500px;}
.y17c{bottom:935.523000px;}
.y189{bottom:937.869000px;}
.y2b{bottom:938.791500px;}
.y24a{bottom:941.755500px;}
.y12b{bottom:944.983500px;}
.y17b{bottom:951.961500px;}
.y5c{bottom:953.949000px;}
.y249{bottom:961.123500px;}
.y187{bottom:961.867500px;}
.y12a{bottom:965.247000px;}
.y2a{bottom:965.914500px;}
.y1{bottom:966.726000px;}
.y5b{bottom:974.214000px;}
.y186{bottom:978.663000px;}
.y248{bottom:980.490000px;}
.y129{bottom:985.512000px;}
.y5a{bottom:994.477500px;}
.y185{bottom:995.458500px;}
.y247{bottom:999.858000px;}
.y179{bottom:1003.761000px;}
.y128{bottom:1005.775500px;}
.y29{bottom:1010.451000px;}
.y184{bottom:1012.254000px;}
.y59{bottom:1014.742500px;}
.y246{bottom:1019.226000px;}
.y127{bottom:1026.039000px;}
.y183{bottom:1029.049500px;}
.y58{bottom:1035.006000px;}
.y245{bottom:1038.592500px;}
.y28{bottom:1040.848500px;}
.y17a{bottom:1045.845000px;}
.y126{bottom:1046.304000px;}
.y57{bottom:1055.269500px;}
.y244{bottom:1057.960500px;}
.y125{bottom:1066.567500px;}
.y177{bottom:1069.485000px;}
.y27{bottom:1071.244500px;}
.y56{bottom:1075.534500px;}
.y243{bottom:1077.327000px;}
.y176{bottom:1077.705000px;}
.y178{bottom:1085.923500px;}
.y124{bottom:1086.832500px;}
.y55{bottom:1095.798000px;}
.y242{bottom:1096.695000px;}
.y26{bottom:1100.145000px;}
.y54{bottom:1116.063000px;}
.y175{bottom:1117.543500px;}
.y23{bottom:1137.954000px;}
.y53{bottom:1168.366500px;}
.h10{height:25.508090px;}
.h1d{height:27.974981px;}
.h7{height:32.130000px;}
.h19{height:32.392090px;}
.h1e{height:32.924621px;}
.h29{height:33.072749px;}
.h12{height:33.112997px;}
.h20{height:33.290450px;}
.h22{height:34.086666px;}
.h11{height:34.199443px;}
.h26{height:34.465407px;}
.h37{height:34.474015px;}
.h25{height:34.749463px;}
.h39{height:34.857059px;}
.h14{height:35.100320px;}
.h28{height:35.248891px;}
.h3b{height:37.927872px;}
.h2b{height:38.734848px;}
.hf{height:39.165235px;}
.h34{height:39.445312px;}
.h2e{height:39.488026px;}
.h1c{height:39.524203px;}
.h17{height:39.851684px;}
.hd{height:43.038432px;}
.h13{height:43.516637px;}
.hb{height:43.875290px;}
.h24{height:43.992571px;}
.h30{height:44.279648px;}
.h1b{height:44.945508px;}
.h6{height:45.900000px;}
.h32{height:46.645840px;}
.h3{height:48.195000px;}
.he{height:49.117939px;}
.h31{height:49.939453px;}
.h2d{height:49.991558px;}
.h18{height:50.039332px;}
.h9{height:50.930649px;}
.h1a{height:52.435843px;}
.h15{height:54.575123px;}
.h2{height:55.080000px;}
.h33{height:55.599258px;}
.h23{height:60.696447px;}
.h27{height:60.701727px;}
.h38{height:61.386179px;}
.h3a{height:61.391519px;}
.ha{height:61.613006px;}
.h21{height:63.015786px;}
.h1f{height:64.594250px;}
.h2a{height:71.608848px;}
.h2c{height:71.614848px;}
.hc{height:77.469696px;}
.h5{height:78.030000px;}
.h36{height:86.297653px;}
.h35{height:86.659453px;}
.h4{height:119.055004px;}
.h16{height:177.083550px;}
.h2f{height:244.600500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:197.527766px;}
.w6{width:280.179000px;}
.w7{width:353.761500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x1b{left:-159.236550px;}
.x68{left:-156.040500px;}
.x71{left:-148.300500px;}
.x78{left:-141.460724px;}
.x74{left:-137.231039px;}
.x1d{left:-130.562550px;}
.x7c{left:-129.131462px;}
.x7a{left:-127.331334px;}
.x6e{left:-124.180500px;}
.x7d{left:-121.032093px;}
.x77{left:-113.830393px;}
.x70{left:-112.750083px;}
.x6a{left:-103.120500px;}
.x76{left:-97.271163px;}
.x6d{left:-41.200500px;}
.x0{left:0.000000px;}
.x69{left:16.849500px;}
.x7e{left:19.458626px;}
.x79{left:20.540149px;}
.x7b{left:21.709469px;}
.x75{left:23.239500px;}
.x73{left:25.579500px;}
.x72{left:26.929500px;}
.xa{left:29.274117px;}
.x6{left:58.054042px;}
.x1f{left:68.130450px;}
.x6f{left:74.269500px;}
.x6b{left:85.339500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:114.802500px;}
.xd{left:119.331000px;}
.x8{left:122.110500px;}
.x7{left:123.307500px;}
.x8f{left:125.449500px;}
.x83{left:128.623875px;}
.x90{left:131.875500px;}
.x89{left:133.837050px;}
.x81{left:134.925075px;}
.x87{left:141.000660px;}
.x85{left:144.854805px;}
.xc{left:146.692500px;}
.x98{left:148.650000px;}
.x66{left:150.321000px;}
.x8b{left:151.480410px;}
.x62{left:153.087000px;}
.x5a{left:155.601000px;}
.x48{left:159.582000px;}
.x53{left:164.736600px;}
.x10{left:165.820500px;}
.x5d{left:168.264000px;}
.x4f{left:171.819720px;}
.x4a{left:175.630560px;}
.x86{left:179.950620px;}
.x13{left:182.184000px;}
.x52{left:184.015200px;}
.x3d{left:185.749680px;}
.x55{left:189.483960px;}
.xb{left:192.090000px;}
.x4e{left:195.975720px;}
.x4{left:203.484001px;}
.x4d{left:210.332040px;}
.x26{left:214.147500px;}
.x12{left:222.115500px;}
.x7f{left:226.975500px;}
.x27{left:230.482500px;}
.x38{left:234.203250px;}
.x22{left:236.173500px;}
.x9f{left:251.667000px;}
.xa0{left:254.101500px;}
.x91{left:256.389000px;}
.x16{left:258.358500px;}
.x11{left:261.267000px;}
.x17{left:262.647000px;}
.x32{left:264.303450px;}
.x21{left:266.989500px;}
.x35{left:269.471025px;}
.x23{left:270.601500px;}
.x59{left:272.454000px;}
.x2f{left:279.519300px;}
.x15{left:286.618500px;}
.x1e{left:291.445234px;}
.x88{left:296.884605px;}
.x8a{left:297.980640px;}
.x2d{left:299.158500px;}
.x84{left:301.410255px;}
.x82{left:302.534325px;}
.x9d{left:304.290000px;}
.x1a{left:306.369000px;}
.x64{left:309.742500px;}
.xf{left:311.323500px;}
.x63{left:313.710000px;}
.x1c{left:315.585450px;}
.x5e{left:316.936500px;}
.x14{left:320.281500px;}
.xe{left:323.778000px;}
.x3e{left:330.774120px;}
.x99{left:335.470500px;}
.x50{left:337.964160px;}
.x54{left:339.046560px;}
.x4b{left:340.319040px;}
.x49{left:342.437640px;}
.x47{left:343.550400px;}
.x80{left:345.546000px;}
.x96{left:346.587000px;}
.x97{left:353.029500px;}
.x67{left:361.785000px;}
.x20{left:367.152000px;}
.x33{left:371.624025px;}
.x6c{left:377.029500px;}
.x2a{left:383.362500px;}
.x5c{left:387.898500px;}
.x5b{left:395.565000px;}
.x40{left:409.332600px;}
.x34{left:412.184325px;}
.x3f{left:415.927320px;}
.x31{left:424.948350px;}
.x9a{left:427.915500px;}
.x36{left:434.277525px;}
.x2e{left:435.785850px;}
.x30{left:439.112325px;}
.x37{left:440.702250px;}
.x3b{left:441.970875px;}
.x3a{left:444.828150px;}
.x39{left:451.150875px;}
.x3{left:454.959000px;}
.x24{left:465.688500px;}
.x25{left:478.696500px;}
.x9b{left:486.430500px;}
.x9c{left:494.539500px;}
.x56{left:497.142000px;}
.x4c{left:500.791440px;}
.x57{left:507.172500px;}
.x92{left:540.480000px;}
.x93{left:550.788000px;}
.x8c{left:551.893500px;}
.x94{left:578.923500px;}
.x95{left:586.267500px;}
.x65{left:592.411500px;}
.x18{left:594.207000px;}
.x19{left:598.495500px;}
.x8d{left:636.162000px;}
.x46{left:644.101200px;}
.x58{left:645.322500px;}
.x51{left:650.625960px;}
.x41{left:652.141320px;}
.x42{left:653.585400px;}
.x44{left:654.882960px;}
.x43{left:658.179000px;}
.x45{left:660.363600px;}
.x60{left:662.604000px;}
.x5f{left:663.822000px;}
.x2b{left:666.663000px;}
.x61{left:670.852500px;}
.x9e{left:673.096500px;}
.x9{left:701.339982px;}
.x3c{left:712.875000px;}
.x28{left:715.008000px;}
.x8e{left:722.788500px;}
.x29{left:771.838500px;}
.x2c{left:776.949000px;}
@media print{
.v6{vertical-align:-7.772160pt;}
.v4{vertical-align:-5.491200pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:7.504640pt;}
.v5{vertical-align:15.276800pt;}
.v9{vertical-align:17.360000pt;}
.v3{vertical-align:23.316480pt;}
.v2{vertical-align:25.714773pt;}
.v1{vertical-align:27.825600pt;}
.v8{vertical-align:29.221333pt;}
.va{vertical-align:32.640000pt;}
.ls35{letter-spacing:-0.211622pt;}
.ls33{letter-spacing:-0.182765pt;}
.ls39{letter-spacing:-0.153907pt;}
.ls37{letter-spacing:-0.139478pt;}
.ls2b{letter-spacing:-0.115430pt;}
.ls7e{letter-spacing:-0.106880pt;}
.ls29{letter-spacing:-0.091382pt;}
.ls24{letter-spacing:-0.086573pt;}
.ls27{letter-spacing:-0.081763pt;}
.ls2c{letter-spacing:-0.076954pt;}
.ls7b{letter-spacing:-0.076608pt;}
.ls36{letter-spacing:-0.072144pt;}
.ls22{letter-spacing:-0.068947pt;}
.ls2e{letter-spacing:-0.067334pt;}
.ls26{letter-spacing:-0.057715pt;}
.ls32{letter-spacing:-0.052906pt;}
.ls86{letter-spacing:-0.052800pt;}
.ls2a{letter-spacing:-0.048096pt;}
.ls81{letter-spacing:-0.048000pt;}
.ls3a{letter-spacing:-0.043286pt;}
.ls25{letter-spacing:-0.038477pt;}
.ls82{letter-spacing:-0.038400pt;}
.ls30{letter-spacing:-0.033667pt;}
.ls2f{letter-spacing:-0.028858pt;}
.ls85{letter-spacing:-0.028800pt;}
.ls7a{letter-spacing:-0.025536pt;}
.ls2d{letter-spacing:-0.024048pt;}
.ls21{letter-spacing:-0.022982pt;}
.ls31{letter-spacing:-0.019238pt;}
.ls83{letter-spacing:-0.019200pt;}
.ls84{letter-spacing:-0.016032pt;}
.ls23{letter-spacing:-0.014429pt;}
.ls88{letter-spacing:-0.014400pt;}
.ls38{letter-spacing:-0.009619pt;}
.ls28{letter-spacing:-0.004810pt;}
.ls87{letter-spacing:-0.004800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8f{letter-spacing:0.000274pt;}
.ls92{letter-spacing:0.000394pt;}
.ls93{letter-spacing:0.000503pt;}
.ls43{letter-spacing:0.000886pt;}
.lsc{letter-spacing:0.001349pt;}
.ls45{letter-spacing:0.001930pt;}
.lse{letter-spacing:0.001990pt;}
.ls90{letter-spacing:0.002078pt;}
.ls89{letter-spacing:0.002097pt;}
.ls50{letter-spacing:0.002193pt;}
.ls2{letter-spacing:0.002551pt;}
.ls10{letter-spacing:0.002630pt;}
.ls91{letter-spacing:0.002798pt;}
.ls8{letter-spacing:0.002868pt;}
.ls3b{letter-spacing:0.002916pt;}
.ls8e{letter-spacing:0.002966pt;}
.lsb{letter-spacing:0.003017pt;}
.ls3f{letter-spacing:0.003019pt;}
.ls79{letter-spacing:0.003053pt;}
.ls5{letter-spacing:0.003100pt;}
.ls7{letter-spacing:0.003106pt;}
.lsf{letter-spacing:0.003733pt;}
.ls9{letter-spacing:0.003914pt;}
.ls69{letter-spacing:0.004800pt;}
.ls15{letter-spacing:0.004810pt;}
.ls4b{letter-spacing:0.005002pt;}
.ls6e{letter-spacing:0.009600pt;}
.ls1f{letter-spacing:0.009619pt;}
.ls6b{letter-spacing:0.010688pt;}
.ls1d{letter-spacing:0.014429pt;}
.ls6f{letter-spacing:0.019200pt;}
.ls6c{letter-spacing:0.021376pt;}
.ls12{letter-spacing:0.022982pt;}
.ls72{letter-spacing:0.024000pt;}
.ls16{letter-spacing:0.024048pt;}
.ls67{letter-spacing:0.025536pt;}
.ls1b{letter-spacing:0.025920pt;}
.ls6a{letter-spacing:0.028800pt;}
.ls17{letter-spacing:0.028858pt;}
.ls74{letter-spacing:0.033600pt;}
.ls1c{letter-spacing:0.034560pt;}
.ls14{letter-spacing:0.038477pt;}
.ls77{letter-spacing:0.043200pt;}
.ls1e{letter-spacing:0.043286pt;}
.ls70{letter-spacing:0.048000pt;}
.ls18{letter-spacing:0.048096pt;}
.ls73{letter-spacing:0.052800pt;}
.ls75{letter-spacing:0.057600pt;}
.ls76{letter-spacing:0.062400pt;}
.ls20{letter-spacing:0.062525pt;}
.ls7f{letter-spacing:0.064128pt;}
.ls71{letter-spacing:0.067200pt;}
.ls19{letter-spacing:0.067334pt;}
.ls80{letter-spacing:0.074816pt;}
.ls1a{letter-spacing:0.076954pt;}
.ls7d{letter-spacing:0.085504pt;}
.ls78{letter-spacing:0.086400pt;}
.ls7c{letter-spacing:0.090848pt;}
.ls6d{letter-spacing:0.144288pt;}
.ls13{letter-spacing:0.145555pt;}
.ls11{letter-spacing:0.153216pt;}
.ls68{letter-spacing:0.161728pt;}
.ls66{letter-spacing:0.170240pt;}
.ls34{letter-spacing:0.303005pt;}
.ls61{letter-spacing:0.955042pt;}
.ls6{letter-spacing:1.133683pt;}
.ls3{letter-spacing:1.654338pt;}
.ls42{letter-spacing:2.337749pt;}
.ls51{letter-spacing:2.656533pt;}
.ls41{letter-spacing:10.520005pt;}
.ls44{letter-spacing:10.521515pt;}
.ls64{letter-spacing:10.623733pt;}
.ls4{letter-spacing:10.626533pt;}
.ls65{letter-spacing:10.629350pt;}
.ls4f{letter-spacing:11.954551pt;}
.ls52{letter-spacing:11.956267pt;}
.ls53{letter-spacing:11.959885pt;}
.ls8a{letter-spacing:12.252083pt;}
.ls46{letter-spacing:12.855509pt;}
.ls40{letter-spacing:12.860203pt;}
.ls60{letter-spacing:12.959597pt;}
.ls5e{letter-spacing:12.962205pt;}
.ls5f{letter-spacing:12.965008pt;}
.ls54{letter-spacing:13.017797pt;}
.ls49{letter-spacing:13.073851pt;}
.ls4a{letter-spacing:13.079294pt;}
.ls48{letter-spacing:13.209307pt;}
.ls47{letter-spacing:13.213708pt;}
.ls59{letter-spacing:13.226232pt;}
.ls58{letter-spacing:13.228871pt;}
.ls5a{letter-spacing:13.231706pt;}
.ls5d{letter-spacing:13.255289pt;}
.ls5b{letter-spacing:13.255442pt;}
.ls5c{letter-spacing:13.258672pt;}
.ls8d{letter-spacing:13.280110pt;}
.lsa{letter-spacing:13.283467pt;}
.ls3d{letter-spacing:13.283733pt;}
.ls3e{letter-spacing:13.285443pt;}
.lsd{letter-spacing:13.496002pt;}
.ls4d{letter-spacing:14.487430pt;}
.ls4c{letter-spacing:14.492659pt;}
.ls4e{letter-spacing:14.613867pt;}
.ls3c{letter-spacing:16.046428pt;}
.ls57{letter-spacing:16.078818pt;}
.ls56{letter-spacing:16.082201pt;}
.ls55{letter-spacing:16.084200pt;}
.ls8c{letter-spacing:18.042986pt;}
.ls8b{letter-spacing:18.048214pt;}
.ls1{letter-spacing:28.452898pt;}
.ls63{letter-spacing:208.701218pt;}
.ls62{letter-spacing:262.663885pt;}
.ws1{word-spacing:-20.194365pt;}
.ws20{word-spacing:-15.461955pt;}
.wse2{word-spacing:-13.915853pt;}
.ws32{word-spacing:-13.283467pt;}
.ws104{word-spacing:-12.385109pt;}
.ws25{word-spacing:-12.369595pt;}
.wsbc{word-spacing:-12.245950pt;}
.wse1{word-spacing:-11.955200pt;}
.wsaf{word-spacing:-11.828475pt;}
.ws101{word-spacing:-10.810240pt;}
.ws102{word-spacing:-10.640128pt;}
.ws24{word-spacing:-10.626800pt;}
.wsb8{word-spacing:-10.520576pt;}
.wsae{word-spacing:-10.161920pt;}
.ws60{word-spacing:-9.729216pt;}
.ws150{word-spacing:-3.490918pt;}
.ws148{word-spacing:-3.347434pt;}
.ws62{word-spacing:-3.241166pt;}
.ws134{word-spacing:-3.134898pt;}
.ws12f{word-spacing:-3.028630pt;}
.wsa6{word-spacing:-2.975497pt;}
.wsf6{word-spacing:-2.922363pt;}
.ws44{word-spacing:-2.709827pt;}
.ws14e{word-spacing:-2.534502pt;}
.ws67{word-spacing:-2.497292pt;}
.ws5d{word-spacing:-2.391024pt;}
.ws180{word-spacing:-2.343219pt;}
.ws181{word-spacing:-2.295398pt;}
.ws16{word-spacing:-2.284756pt;}
.ws45{word-spacing:-2.178489pt;}
.wsb6{word-spacing:-2.072221pt;}
.ws145{word-spacing:-2.019087pt;}
.ws16d{word-spacing:-1.960653pt;}
.ws5a{word-spacing:-1.806551pt;}
.wsb4{word-spacing:-1.753418pt;}
.ws5{word-spacing:-1.696326pt;}
.ws5c{word-spacing:-1.594016pt;}
.ws18{word-spacing:-1.540882pt;}
.ws143{word-spacing:-1.487748pt;}
.ws151{word-spacing:-1.482445pt;}
.ws172{word-spacing:-1.434624pt;}
.ws135{word-spacing:-1.434614pt;}
.ws160{word-spacing:-1.386803pt;}
.ws4e{word-spacing:-1.381481pt;}
.wsb5{word-spacing:-1.328347pt;}
.ws4a{word-spacing:-1.222079pt;}
.ws4{word-spacing:-1.175671pt;}
.ws33{word-spacing:-1.168945pt;}
.ws31{word-spacing:-1.115811pt;}
.ws178{word-spacing:-1.099878pt;}
.wsb7{word-spacing:-1.094140pt;}
.wsb3{word-spacing:-1.062677pt;}
.ws136{word-spacing:-1.009543pt;}
.ws133{word-spacing:-0.903276pt;}
.ws174{word-spacing:-0.812954pt;}
.ws74{word-spacing:-0.812822pt;}
.wsa4{word-spacing:-0.797008pt;}
.ws9e{word-spacing:-0.783965pt;}
.ws163{word-spacing:-0.765133pt;}
.ws146{word-spacing:-0.743874pt;}
.ws46{word-spacing:-0.690740pt;}
.ws9d{word-spacing:-0.634867pt;}
.wsa7{word-spacing:-0.584473pt;}
.ws177{word-spacing:-0.573850pt;}
.ws184{word-spacing:-0.526029pt;}
.wsa0{word-spacing:-0.509818pt;}
.ws19{word-spacing:-0.478205pt;}
.ws162{word-spacing:-0.430387pt;}
.ws179{word-spacing:-0.382566pt;}
.ws68{word-spacing:-0.318803pt;}
.ws83{word-spacing:-0.278957pt;}
.ws12{word-spacing:-0.265669pt;}
.ws158{word-spacing:-0.239104pt;}
.ws109{word-spacing:-0.238336pt;}
.ws11b{word-spacing:-0.220800pt;}
.ws6b{word-spacing:-0.214502pt;}
.ws9{word-spacing:-0.212535pt;}
.wsd7{word-spacing:-0.209338pt;}
.wsd8{word-spacing:-0.209184pt;}
.wsfb{word-spacing:-0.202487pt;}
.ws157{word-spacing:-0.191283pt;}
.wsa2{word-spacing:-0.177955pt;}
.ws11c{word-spacing:-0.177600pt;}
.wsa1{word-spacing:-0.168336pt;}
.ws15{word-spacing:-0.159402pt;}
.ws118{word-spacing:-0.158400pt;}
.ws14a{word-spacing:-0.143462pt;}
.ws10{word-spacing:-0.106268pt;}
.ws108{word-spacing:-0.102144pt;}
.ws15c{word-spacing:-0.095642pt;}
.ws6a{word-spacing:-0.091930pt;}
.ws2a{word-spacing:-0.053134pt;}
.ws107{word-spacing:-0.051072pt;}
.ws2{word-spacing:-0.047821pt;}
.ws69{word-spacing:-0.045965pt;}
.ws3{word-spacing:-0.017971pt;}
.ws154{word-spacing:-0.010607pt;}
.ws17a{word-spacing:-0.009045pt;}
.ws165{word-spacing:-0.007347pt;}
.ws16f{word-spacing:-0.005965pt;}
.ws10d{word-spacing:-0.005344pt;}
.ws16b{word-spacing:-0.005274pt;}
.wse5{word-spacing:-0.004122pt;}
.wse7{word-spacing:-0.003593pt;}
.ws159{word-spacing:-0.003456pt;}
.wsd1{word-spacing:-0.003161pt;}
.ws167{word-spacing:-0.003081pt;}
.wsff{word-spacing:-0.002399pt;}
.ws169{word-spacing:-0.002193pt;}
.wse6{word-spacing:-0.001451pt;}
.wsc0{word-spacing:-0.001277pt;}
.ws23{word-spacing:-0.001089pt;}
.wse8{word-spacing:-0.000316pt;}
.wsc2{word-spacing:-0.000278pt;}
.ws100{word-spacing:-0.000202pt;}
.ws0{word-spacing:0.000000pt;}
.wsbe{word-spacing:0.000195pt;}
.wse4{word-spacing:0.000222pt;}
.wsbd{word-spacing:0.000556pt;}
.wse3{word-spacing:0.000631pt;}
.wsbf{word-spacing:0.001066pt;}
.wsc1{word-spacing:0.001532pt;}
.ws13f{word-spacing:0.003716pt;}
.ws85{word-spacing:0.009619pt;}
.wsf9{word-spacing:0.009758pt;}
.ws111{word-spacing:0.010688pt;}
.wsa3{word-spacing:0.014429pt;}
.ws110{word-spacing:0.021376pt;}
.wsfa{word-spacing:0.030886pt;}
.ws9c{word-spacing:0.033667pt;}
.ws164{word-spacing:0.047821pt;}
.wsc{word-spacing:0.053134pt;}
.ws94{word-spacing:0.062525pt;}
.ws88{word-spacing:0.072144pt;}
.ws12b{word-spacing:0.076800pt;}
.ws9b{word-spacing:0.076954pt;}
.ws86{word-spacing:0.081763pt;}
.ws14b{word-spacing:0.095642pt;}
.ws11a{word-spacing:0.096000pt;}
.ws89{word-spacing:0.096192pt;}
.ws127{word-spacing:0.100800pt;}
.ws117{word-spacing:0.101536pt;}
.ws124{word-spacing:0.105600pt;}
.ws82{word-spacing:0.105811pt;}
.wsa{word-spacing:0.106268pt;}
.ws11d{word-spacing:0.110400pt;}
.ws84{word-spacing:0.110621pt;}
.ws90{word-spacing:0.112320pt;}
.ws128{word-spacing:0.115200pt;}
.ws87{word-spacing:0.115430pt;}
.ws12a{word-spacing:0.120000pt;}
.ws8f{word-spacing:0.120960pt;}
.ws121{word-spacing:0.129600pt;}
.ws8a{word-spacing:0.129859pt;}
.ws10b{word-spacing:0.134400pt;}
.ws81{word-spacing:0.134669pt;}
.ws126{word-spacing:0.139200pt;}
.ws17c{word-spacing:0.143462pt;}
.ws113{word-spacing:0.144000pt;}
.ws114{word-spacing:0.153600pt;}
.ws7d{word-spacing:0.153907pt;}
.ws10a{word-spacing:0.158400pt;}
.ws21{word-spacing:0.159402pt;}
.ws123{word-spacing:0.163200pt;}
.ws122{word-spacing:0.168000pt;}
.ws129{word-spacing:0.177600pt;}
.ws116{word-spacing:0.182400pt;}
.ws17b{word-spacing:0.191283pt;}
.ws11e{word-spacing:0.192000pt;}
.ws10f{word-spacing:0.192384pt;}
.ws115{word-spacing:0.201600pt;}
.ws112{word-spacing:0.211200pt;}
.wsb{word-spacing:0.212535pt;}
.ws120{word-spacing:0.216000pt;}
.ws166{word-spacing:0.239104pt;}
.ws17{word-spacing:0.265669pt;}
.ws4b{word-spacing:0.318803pt;}
.ws1f{word-spacing:0.371937pt;}
.ws1e{word-spacing:0.425071pt;}
.ws12e{word-spacing:0.531339pt;}
.ws47{word-spacing:0.584473pt;}
.ws8e{word-spacing:0.615629pt;}
.ws14{word-spacing:0.637606pt;}
.ws13{word-spacing:0.690740pt;}
.ws170{word-spacing:0.765133pt;}
.ws4c{word-spacing:0.903276pt;}
.ws132{word-spacing:0.956410pt;}
.ws173{word-spacing:0.956416pt;}
.ws70{word-spacing:0.981158pt;}
.ws71{word-spacing:1.000397pt;}
.ws15d{word-spacing:1.004237pt;}
.ws66{word-spacing:1.009543pt;}
.ws175{word-spacing:1.052058pt;}
.ws38{word-spacing:1.062677pt;}
.ws29{word-spacing:1.168945pt;}
.wsdc{word-spacing:1.183276pt;}
.wsdd{word-spacing:1.184604pt;}
.wsd9{word-spacing:1.184635pt;}
.wsdb{word-spacing:1.184662pt;}
.wsda{word-spacing:1.185898pt;}
.wsde{word-spacing:1.187807pt;}
.ws61{word-spacing:1.222079pt;}
.ws73{word-spacing:1.226448pt;}
.ws156{word-spacing:1.243341pt;}
.ws72{word-spacing:1.313021pt;}
.ws2b{word-spacing:1.328347pt;}
.ws15e{word-spacing:1.338982pt;}
.ws16e{word-spacing:1.386803pt;}
.ws15b{word-spacing:1.530266pt;}
.ws155{word-spacing:1.578086pt;}
.ws2e{word-spacing:1.594016pt;}
.ws2f{word-spacing:1.647150pt;}
.ws140{word-spacing:1.700284pt;}
.ws34{word-spacing:1.753418pt;}
.ws3a{word-spacing:1.806551pt;}
.ws5e{word-spacing:1.912819pt;}
.ws15a{word-spacing:1.960653pt;}
.ws147{word-spacing:1.965953pt;}
.ws16c{word-spacing:2.056294pt;}
.ws77{word-spacing:2.063318pt;}
.ws75{word-spacing:2.096986pt;}
.ws14c{word-spacing:2.104115pt;}
.wsf8{word-spacing:2.178489pt;}
.ws76{word-spacing:2.183558pt;}
.ws55{word-spacing:2.284756pt;}
.ws142{word-spacing:2.391024pt;}
.ws141{word-spacing:2.444158pt;}
.ws15f{word-spacing:2.534502pt;}
.ws11{word-spacing:2.550426pt;}
.ws58{word-spacing:2.656693pt;}
.wsb2{word-spacing:2.762961pt;}
.ws5f{word-spacing:2.816095pt;}
.ws8{word-spacing:2.869229pt;}
.ws6d{word-spacing:2.919427pt;}
.ws144{word-spacing:2.922363pt;}
.ws17e{word-spacing:2.964890pt;}
.ws6c{word-spacing:2.972333pt;}
.ws3b{word-spacing:3.134898pt;}
.ws3c{word-spacing:3.188032pt;}
.ws43{word-spacing:3.241166pt;}
.ws22{word-spacing:3.294300pt;}
.ws152{word-spacing:3.299635pt;}
.ws50{word-spacing:3.347434pt;}
.ws161{word-spacing:3.538739pt;}
.wsf7{word-spacing:3.565527pt;}
.ws183{word-spacing:3.586560pt;}
.ws52{word-spacing:3.772505pt;}
.ws6f{word-spacing:3.775536pt;}
.ws80{word-spacing:3.794774pt;}
.ws130{word-spacing:3.825638pt;}
.ws8d{word-spacing:3.842870pt;}
.ws7{word-spacing:3.878772pt;}
.ws6e{word-spacing:3.910205pt;}
.ws49{word-spacing:3.985040pt;}
.wsf{word-spacing:4.038174pt;}
.ws56{word-spacing:4.091308pt;}
.ws3d{word-spacing:4.197575pt;}
.wsd6{word-spacing:4.303843pt;}
.ws3f{word-spacing:4.356977pt;}
.ws8c{word-spacing:4.395974pt;}
.ws59{word-spacing:4.410111pt;}
.ws48{word-spacing:4.463245pt;}
.ws8b{word-spacing:4.487357pt;}
.ws36{word-spacing:4.516379pt;}
.ws182{word-spacing:4.542976pt;}
.ws51{word-spacing:4.675780pt;}
.ws7e{word-spacing:4.708598pt;}
.ws35{word-spacing:4.728914pt;}
.ws7f{word-spacing:4.751885pt;}
.ws139{word-spacing:4.769364pt;}
.ws13d{word-spacing:4.773165pt;}
.ws13e{word-spacing:4.774493pt;}
.ws13a{word-spacing:4.774525pt;}
.ws13c{word-spacing:4.774551pt;}
.ws13b{word-spacing:4.775787pt;}
.ws16a{word-spacing:4.780604pt;}
.ws171{word-spacing:4.780740pt;}
.ws14d{word-spacing:4.781175pt;}
.ws14f{word-spacing:4.782080pt;}
.ws17f{word-spacing:4.783633pt;}
.ws176{word-spacing:4.783812pt;}
.ws17d{word-spacing:4.784469pt;}
.ws1c{word-spacing:4.835182pt;}
.ws168{word-spacing:4.877722pt;}
.ws1d{word-spacing:4.888316pt;}
.ws131{word-spacing:4.994583pt;}
.ws27{word-spacing:5.047717pt;}
.ws65{word-spacing:5.153985pt;}
.ws6{word-spacing:5.207119pt;}
.ws186{word-spacing:5.212467pt;}
.ws57{word-spacing:5.260253pt;}
.wsd{word-spacing:5.307978pt;}
.wse{word-spacing:5.313387pt;}
.ws39{word-spacing:5.366521pt;}
.ws5b{word-spacing:5.472788pt;}
.ws54{word-spacing:5.579056pt;}
.ws3e{word-spacing:5.632190pt;}
.ws28{word-spacing:5.950993pt;}
.ws187{word-spacing:6.025421pt;}
.ws7a{word-spacing:6.079334pt;}
.ws63{word-spacing:6.163529pt;}
.ws4f{word-spacing:6.376064pt;}
.ws153{word-spacing:6.407987pt;}
.ws30{word-spacing:6.429198pt;}
.ws96{word-spacing:6.444864pt;}
.ws78{word-spacing:6.464102pt;}
.ws79{word-spacing:6.531437pt;}
.ws185{word-spacing:6.551450pt;}
.ws95{word-spacing:6.627629pt;}
.ws53{word-spacing:6.960537pt;}
.ws137{word-spacing:7.170385pt;}
.ws64{word-spacing:7.651277pt;}
.ws97{word-spacing:7.926221pt;}
.ws98{word-spacing:7.993555pt;}
.ws1a{word-spacing:8.182615pt;}
.ws149{word-spacing:8.873356pt;}
.ws92{word-spacing:9.296957pt;}
.ws93{word-spacing:9.321005pt;}
.wsa5{word-spacing:9.351561pt;}
.ws2d{word-spacing:9.404694pt;}
.ws91{word-spacing:10.056874pt;}
.ws1b{word-spacing:10.095435pt;}
.ws9a{word-spacing:10.254067pt;}
.ws7c{word-spacing:10.422403pt;}
.ws99{word-spacing:10.456070pt;}
.ws7b{word-spacing:10.739837pt;}
.ws138{word-spacing:11.799300pt;}
.ws37{word-spacing:11.901986pt;}
.ws40{word-spacing:12.220789pt;}
.ws41{word-spacing:12.273923pt;}
.ws2c{word-spacing:13.549136pt;}
.ws42{word-spacing:15.355687pt;}
.ws9f{word-spacing:17.997523pt;}
.ws4d{word-spacing:19.818932pt;}
.ws10e{word-spacing:64.983040pt;}
.ws125{word-spacing:80.803200pt;}
.wsfd{word-spacing:115.087701pt;}
.wsab{word-spacing:129.340918pt;}
.wsaa{word-spacing:129.381565pt;}
.wsac{word-spacing:139.502838pt;}
.wsb0{word-spacing:139.543485pt;}
.ws103{word-spacing:145.227525pt;}
.wsad{word-spacing:149.664758pt;}
.wsb1{word-spacing:149.705405pt;}
.wsce{word-spacing:155.157455pt;}
.wsbb{word-spacing:156.209512pt;}
.wsba{word-spacing:156.225357pt;}
.wsc4{word-spacing:156.226101pt;}
.wsc7{word-spacing:156.226168pt;}
.wscc{word-spacing:156.756582pt;}
.wsc8{word-spacing:157.261570pt;}
.wsa8{word-spacing:162.224891pt;}
.wsd0{word-spacing:165.678031pt;}
.wsd4{word-spacing:167.277158pt;}
.ws105{word-spacing:168.918108pt;}
.wsed{word-spacing:177.510810pt;}
.wsea{word-spacing:178.706330pt;}
.wsb9{word-spacing:186.305088pt;}
.wse0{word-spacing:189.466010pt;}
.wsd3{word-spacing:199.638450pt;}
.wscf{word-spacing:201.490072pt;}
.wsd2{word-spacing:205.361644pt;}
.wsc6{word-spacing:209.724791pt;}
.wsc9{word-spacing:209.864450pt;}
.wsd5{word-spacing:210.159026pt;}
.wscd{word-spacing:216.808030pt;}
.wsc5{word-spacing:217.397182pt;}
.wsca{word-spacing:218.154664pt;}
.ws119{word-spacing:218.155200pt;}
.wscb{word-spacing:219.964203pt;}
.wsc3{word-spacing:221.352919pt;}
.wsfe{word-spacing:227.627008pt;}
.wsf3{word-spacing:238.817075pt;}
.wsf4{word-spacing:245.320704pt;}
.wsf5{word-spacing:252.876390pt;}
.wse9{word-spacing:252.924211pt;}
.wsf2{word-spacing:258.327962pt;}
.wsee{word-spacing:258.997453pt;}
.wsf0{word-spacing:259.858227pt;}
.wsef{word-spacing:262.392730pt;}
.wsec{word-spacing:263.492608pt;}
.wsdf{word-spacing:264.401203pt;}
.wseb{word-spacing:264.879411pt;}
.wsf1{word-spacing:273.869722pt;}
.ws10c{word-spacing:431.923456pt;}
.wsa9{word-spacing:459.909307pt;}
.ws12c{word-spacing:545.011200pt;}
.ws12d{word-spacing:642.902400pt;}
.wsfc{word-spacing:703.088512pt;}
.ws11f{word-spacing:711.158400pt;}
.ws106{word-spacing:751.533521pt;}
.ws26{word-spacing:807.339250pt;}
._67{margin-left:-711.345600pt;}
._72{margin-left:-643.435200pt;}
._71{margin-left:-545.198400pt;}
._4a{margin-left:-432.489920pt;}
._4b{margin-left:-426.800969pt;}
._5a{margin-left:-218.011200pt;}
._6f{margin-left:-81.302400pt;}
._50{margin-left:-65.763264pt;}
._0{margin-left:-10.616218pt;}
._d{margin-left:-6.468988pt;}
._5{margin-left:-5.308109pt;}
._2{margin-left:-4.399514pt;}
._9{margin-left:-2.869229pt;}
._7{margin-left:-1.819895pt;}
._3{margin-left:-0.908595pt;}
._8{width:0.969929pt;}
._93{width:2.967594pt;}
._17{width:3.878772pt;}
._20{width:4.861869pt;}
._91{width:9.678734pt;}
._90{width:11.091635pt;}
._1b{width:12.152088pt;}
._1a{width:13.284417pt;}
._e{width:14.306354pt;}
._4{width:15.876506pt;}
._6{width:17.598054pt;}
._c{width:18.596853pt;}
._f{width:19.579950pt;}
._a{width:20.682418pt;}
._12{width:21.620206pt;}
._18{width:23.006964pt;}
._19{width:25.079185pt;}
._14{width:26.035595pt;}
._11{width:27.377285pt;}
._1c{width:28.426619pt;}
._15{width:29.377750pt;}
._b{width:30.605107pt;}
._10{width:31.508383pt;}
._1e{width:32.517926pt;}
._1{width:33.474560pt;}
._23{width:34.590147pt;}
._1d{width:35.918494pt;}
._92{width:37.085454pt;}
._1f{width:38.694799pt;}
._22{width:42.148500pt;}
._13{width:50.046825pt;}
._4d{width:51.935927pt;}
._4c{width:53.541536pt;}
._24{width:55.485100pt;}
._55{width:63.783575pt;}
._54{width:64.769280pt;}
._5d{width:83.044800pt;}
._4e{width:96.801216pt;}
._38{width:107.451088pt;}
._58{width:112.502158pt;}
._57{width:114.698272pt;}
._77{width:129.459660pt;}
._60{width:139.315200pt;}
._3f{width:140.673502pt;}
._63{width:146.620800pt;}
._2d{width:149.705405pt;}
._2c{width:155.271780pt;}
._3a{width:163.573916pt;}
._41{width:166.655488pt;}
._2b{width:169.988598pt;}
._82{width:174.583220pt;}
._42{width:184.731750pt;}
._39{width:188.029473pt;}
._51{width:191.817266pt;}
._45{width:193.961165pt;}
._46{width:194.869760pt;}
._3e{width:202.545884pt;}
._37{width:205.394085pt;}
._40{width:214.106902pt;}
._3d{width:219.624736pt;}
._83{width:223.740612pt;}
._43{width:227.005338pt;}
._3c{width:228.638858pt;}
._3b{width:231.866429pt;}
._47{width:237.143347pt;}
._73{width:248.425709pt;}
._66{width:254.140800pt;}
._44{width:256.026624pt;}
._56{width:267.320863pt;}
._48{width:281.855795pt;}
._52{width:286.976314pt;}
._2e{width:288.596577pt;}
._53{width:294.625408pt;}
._2f{width:302.784568pt;}
._6c{width:309.571200pt;}
._7c{width:323.587573pt;}
._36{width:344.895565pt;}
._4f{width:347.389655pt;}
._2a{width:355.057485pt;}
._31{width:372.057779pt;}
._27{width:373.267645pt;}
._30{width:378.023424pt;}
._32{width:381.803658pt;}
._28{width:385.096120pt;}
._5b{width:387.792242pt;}
._26{width:392.981770pt;}
._29{width:395.258040pt;}
._33{width:400.867420pt;}
._35{width:405.419960pt;}
._5e{width:436.982400pt;}
._34{width:438.060047pt;}
._75{width:442.329001pt;}
._59{width:448.185600pt;}
._65{width:451.070400pt;}
._5f{width:452.990400pt;}
._8e{width:483.189493pt;}
._78{width:485.360079pt;}
._7b{width:496.298130pt;}
._6a{width:500.049600pt;}
._6e{width:502.608000pt;}
._61{width:507.048000pt;}
._62{width:520.204800pt;}
._89{width:531.155190pt;}
._7f{width:541.710197pt;}
._6d{width:544.228800pt;}
._6b{width:548.390400pt;}
._79{width:559.372809pt;}
._5c{width:567.532800pt;}
._81{width:581.334033pt;}
._85{width:582.500842pt;}
._80{width:584.483511pt;}
._8c{width:596.059971pt;}
._76{width:601.124671pt;}
._87{width:604.249263pt;}
._68{width:607.804800pt;}
._25{width:608.763566pt;}
._69{width:616.228800pt;}
._64{width:627.096000pt;}
._70{width:636.744000pt;}
._7e{width:644.493833pt;}
._7a{width:654.325311pt;}
._84{width:665.135682pt;}
._86{width:669.239165pt;}
._8d{width:672.115606pt;}
._8b{width:683.989988pt;}
._8a{width:686.118014pt;}
._74{width:688.458842pt;}
._7d{width:728.465723pt;}
._88{width:795.881574pt;}
._21{width:1648.412640pt;}
._8f{width:1819.838100pt;}
._49{width:1831.569600pt;}
._16{width:1841.091433pt;}
.fs12{font-size:32.730368pt;}
.fs14{font-size:37.193600pt;}
.fsa{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:38.304000pt;}
.fs13{font-size:40.381867pt;}
.fs10{font-size:40.647680pt;}
.fs9{font-size:41.988267pt;}
.fs11{font-size:42.082304pt;}
.fsb{font-size:42.507200pt;}
.fs15{font-size:42.560000pt;}
.fs18{font-size:42.560512pt;}
.fse{font-size:43.200000pt;}
.fs8{font-size:47.820800pt;}
.fs16{font-size:48.000000pt;}
.fsd{font-size:48.096000pt;}
.fsf{font-size:50.400000pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs17{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.y1af{bottom:-555.240365pt;}
.y1d9{bottom:-519.881333pt;}
.y1da{bottom:-519.880933pt;}
.y1d8{bottom:-503.641733pt;}
.y1d7{bottom:-486.761333pt;}
.y1d4{bottom:-478.681733pt;}
.y1d6{bottom:-470.600933pt;}
.y1d3{bottom:-462.521333pt;}
.y1d5{bottom:-454.441733pt;}
.y1d2{bottom:-437.561333pt;}
.y1d1{bottom:-421.400933pt;}
.y1cf{bottom:-421.400133pt;}
.y1d0{bottom:-405.160533pt;}
.y1ce{bottom:-388.360533pt;}
.y1cc{bottom:-372.120933pt;}
.y1cd{bottom:-355.960533pt;}
.y1cb{bottom:-339.081333pt;}
.y1ca{bottom:-322.920933pt;}
.y1c8{bottom:-322.920400pt;}
.y1c9{bottom:-306.680800pt;}
.ycc{bottom:-305.652329pt;}
.y1c7{bottom:-289.880800pt;}
.y1c6{bottom:-273.641200pt;}
.yf0{bottom:-266.195770pt;}
.y1c3{bottom:-265.561333pt;}
.y1c5{bottom:-257.480800pt;}
.yef{bottom:-250.067978pt;}
.y1c4{bottom:-241.321333pt;}
.yee{bottom:-233.868043pt;}
.y1c2{bottom:-224.440933pt;}
.yed{bottom:-217.668108pt;}
.y1c1{bottom:-216.360800pt;}
.yec{bottom:-201.468173pt;}
.y1c0{bottom:-191.400800pt;}
.yeb{bottom:-185.268238pt;}
.y1bf{bottom:-183.320933pt;}
.yea{bottom:-169.068302pt;}
.y1be{bottom:-158.360933pt;}
.ye9{bottom:-152.868367pt;}
.y1bd{bottom:-150.280933pt;}
.ye8{bottom:-136.740576pt;}
.y1bc{bottom:-125.240533pt;}
.ye7{bottom:-120.540641pt;}
.ye6{bottom:-104.340706pt;}
.y1bb{bottom:-99.640933pt;}
.ye5{bottom:-88.140770pt;}
.y1ba{bottom:-66.040933pt;}
.ye4{bottom:-64.668720pt;}
.ye3{bottom:-34.428840pt;}
.y1b9{bottom:-32.360933pt;}
.ye2{bottom:-14.915882pt;}
.y1b8{bottom:-10.600933pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:3.044747pt;}
.y25{bottom:8.207950pt;}
.y30{bottom:12.578910pt;}
.y24{bottom:23.914454pt;}
.y6{bottom:31.933340pt;}
.y52{bottom:56.693333pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y103{bottom:96.544000pt;}
.y233{bottom:101.472000pt;}
.y51{bottom:103.428000pt;}
.yc3{bottom:108.618667pt;}
.y241{bottom:111.368000pt;}
.y83{bottom:111.620000pt;}
.y274{bottom:114.066667pt;}
.y102{bottom:114.556000pt;}
.y174{bottom:118.633333pt;}
.y232{bottom:119.484000pt;}
.y50{bottom:121.440000pt;}
.y22{bottom:123.790666pt;}
.y9e{bottom:124.558667pt;}
.yc2{bottom:126.630667pt;}
.y240{bottom:128.584000pt;}
.y82{bottom:129.633333pt;}
.y273{bottom:131.281333pt;}
.y101{bottom:132.568000pt;}
.y277{bottom:136.506667pt;}
.y173{bottom:136.646667pt;}
.y231{bottom:137.496000pt;}
.y4f{bottom:139.453333pt;}
.y9d{bottom:142.570667pt;}
.yc1{bottom:144.642667pt;}
.y123{bottom:145.677667pt;}
.y23f{bottom:145.798667pt;}
.y81{bottom:147.645333pt;}
.y272{bottom:148.497333pt;}
.y100{bottom:150.581333pt;}
.y276{bottom:153.722667pt;}
.y171{bottom:154.658667pt;}
.y230{bottom:155.509333pt;}
.y4e{bottom:157.465333pt;}
.y122{bottom:158.367600pt;}
.y172{bottom:159.480000pt;}
.y9c{bottom:160.584000pt;}
.yc0{bottom:162.656000pt;}
.y23e{bottom:163.014667pt;}
.y80{bottom:165.657333pt;}
.y11f{bottom:165.696867pt;}
.y271{bottom:165.713333pt;}
.y20a{bottom:166.452093pt;}
.yff{bottom:168.593333pt;}
.y275{bottom:170.938667pt;}
.y121{bottom:171.057533pt;}
.y170{bottom:172.670667pt;}
.y22e{bottom:173.521333pt;}
.y19{bottom:175.052000pt;}
.y4d{bottom:175.477333pt;}
.y22f{bottom:178.344000pt;}
.y9b{bottom:178.596000pt;}
.y207{bottom:179.239613pt;}
.y209{bottom:179.739200pt;}
.ybf{bottom:180.668000pt;}
.y270{bottom:182.928000pt;}
.y7f{bottom:183.670667pt;}
.y120{bottom:183.747467pt;}
.ye1{bottom:185.388326pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.yfe{bottom:186.606667pt;}
.y23d{bottom:188.200000pt;}
.y16f{bottom:190.684000pt;}
.y22c{bottom:191.534667pt;}
.y208{bottom:193.026307pt;}
.y4c{bottom:193.490667pt;}
.y22d{bottom:196.356000pt;}
.y9a{bottom:196.608000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.ybe{bottom:198.681333pt;}
.y26f{bottom:200.144000pt;}
.ye0{bottom:201.588262pt;}
.y7e{bottom:201.682667pt;}
.y11e{bottom:201.879667pt;}
.yfd{bottom:204.618667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y16e{bottom:208.696000pt;}
.y22b{bottom:209.546667pt;}
.y4b{bottom:211.502667pt;}
.y206{bottom:212.011787pt;}
.y11d{bottom:214.569600pt;}
.y99{bottom:214.621333pt;}
.ybd{bottom:216.693333pt;}
.y26e{bottom:217.358667pt;}
.y1ac{bottom:217.466667pt;}
.ydf{bottom:217.788197pt;}
.y7d{bottom:219.696000pt;}
.y11a{bottom:220.572867pt;}
.yfc{bottom:222.630667pt;}
.y23c{bottom:223.269333pt;}
.y205{bottom:225.298893pt;}
.y16d{bottom:226.709333pt;}
.y11c{bottom:227.259533pt;}
.y22a{bottom:227.558667pt;}
.y4a{bottom:229.516000pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y98{bottom:232.633333pt;}
.yde{bottom:233.915988pt;}
.y26d{bottom:234.574667pt;}
.ybc{bottom:234.705333pt;}
.y1ab{bottom:237.074667pt;}
.y7c{bottom:237.708000pt;}
.y204{bottom:238.586000pt;}
.y11b{bottom:239.949467pt;}
.yfb{bottom:240.644000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y16c{bottom:244.721333pt;}
.y23b{bottom:244.748000pt;}
.y200{bottom:245.154200pt;}
.y229{bottom:245.572000pt;}
.y49{bottom:247.528000pt;}
.ydd{bottom:250.115923pt;}
.y97{bottom:250.646667pt;}
.y26c{bottom:251.790667pt;}
.y203{bottom:251.873107pt;}
.y1aa{bottom:252.004000pt;}
.ybb{bottom:252.718667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y1b7{bottom:253.799067pt;}
.y7b{bottom:255.720000pt;}
.y119{bottom:258.081667pt;}
.yfa{bottom:258.656000pt;}
.y16b{bottom:262.733333pt;}
.y228{bottom:263.584000pt;}
.y202{bottom:265.160213pt;}
.y48{bottom:265.540000pt;}
.y23a{bottom:266.228000pt;}
.y1a9{bottom:266.933333pt;}
.y96{bottom:268.658667pt;}
.y26b{bottom:269.005333pt;}
.y116{bottom:270.294467pt;}
.yba{bottom:270.730667pt;}
.y118{bottom:270.771600pt;}
.y1b6{bottom:272.838707pt;}
.y7a{bottom:273.733333pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yf9{bottom:276.669333pt;}
.y201{bottom:278.447320pt;}
.y239{bottom:279.737333pt;}
.y16a{bottom:280.746667pt;}
.ydc{bottom:280.787945pt;}
.y227{bottom:281.597333pt;}
.y1a8{bottom:281.862667pt;}
.y117{bottom:283.461533pt;}
.y47{bottom:283.553333pt;}
.y26a{bottom:286.221333pt;}
.y95{bottom:286.670667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.yb9{bottom:288.744000pt;}
.y79{bottom:291.745333pt;}
.y1b5{bottom:291.878043pt;}
.y238{bottom:293.246667pt;}
.yf8{bottom:294.681333pt;}
.y1a7{bottom:296.792000pt;}
.y1ff{bottom:297.432800pt;}
.y169{bottom:298.758667pt;}
.y226{bottom:299.609333pt;}
.y46{bottom:301.565333pt;}
.y115{bottom:301.592600pt;}
.y269{bottom:303.437333pt;}
.y94{bottom:304.684000pt;}
.y1fc{bottom:304.823360pt;}
.yb8{bottom:306.756000pt;}
.y10{bottom:309.452000pt;}
.y78{bottom:309.758667pt;}
.y1fe{bottom:310.719907pt;}
.y1b4{bottom:310.838555pt;}
.ydb{bottom:311.387822pt;}
.yf7{bottom:312.693333pt;}
.y114{bottom:314.282533pt;}
.y168{bottom:316.772000pt;}
.y225{bottom:317.621333pt;}
.y1a6{bottom:317.805333pt;}
.y1fb{bottom:317.828040pt;}
.y45{bottom:319.578667pt;}
.y268{bottom:320.652000pt;}
.y93{bottom:322.696000pt;}
.y1fd{bottom:324.007013pt;}
.yb7{bottom:324.768000pt;}
.y1a5{bottom:325.112000pt;}
.y113{bottom:326.972467pt;}
.y77{bottom:327.770667pt;}
.y1b3{bottom:329.799067pt;}
.yf6{bottom:330.706667pt;}
.y10f{bottom:334.571467pt;}
.y224{bottom:335.634667pt;}
.y44{bottom:337.590667pt;}
.y267{bottom:337.868000pt;}
.y112{bottom:339.662400pt;}
.y92{bottom:340.709333pt;}
.yda{bottom:341.987700pt;}
.yb6{bottom:342.781333pt;}
.y1fa{bottom:342.991307pt;}
.yf{bottom:343.809333pt;}
.y76{bottom:345.782667pt;}
.yf5{bottom:348.718667pt;}
.y1b2{bottom:348.839067pt;}
.y1f7{bottom:348.994653pt;}
.y111{bottom:352.352333pt;}
.y223{bottom:353.646667pt;}
.y266{bottom:355.082667pt;}
.y43{bottom:355.602667pt;}
.y1f9{bottom:356.278413pt;}
.y167{bottom:357.810453pt;}
.y91{bottom:358.721333pt;}
.y1a4{bottom:360.524000pt;}
.yb5{bottom:360.793333pt;}
.y1f6{bottom:361.999333pt;}
.ye{bottom:362.706666pt;}
.y75{bottom:363.796000pt;}
.y110{bottom:365.042267pt;}
.y163{bottom:365.117973pt;}
.yf4{bottom:366.732000pt;}
.y1b1{bottom:368.519067pt;}
.y159{bottom:368.596907pt;}
.y1f8{bottom:369.565520pt;}
.y165{bottom:370.454293pt;}
.y166{bottom:370.948267pt;}
.y222{bottom:371.660000pt;}
.y265{bottom:372.298667pt;}
.yd9{bottom:372.515434pt;}
.y42{bottom:373.616000pt;}
.y90{bottom:376.733333pt;}
.y162{bottom:377.976533pt;}
.yb4{bottom:378.806667pt;}
.y158{bottom:381.455467pt;}
.y74{bottom:381.808000pt;}
.y10e{bottom:383.174467pt;}
.y164{bottom:384.086080pt;}
.yf3{bottom:384.744000pt;}
.y1f5{bottom:388.551000pt;}
.yd8{bottom:388.715369pt;}
.y10d{bottom:388.908000pt;}
.y264{bottom:389.514667pt;}
.y221{bottom:389.672000pt;}
.y41{bottom:391.628000pt;}
.y1a3{bottom:393.512000pt;}
.y157{bottom:394.314027pt;}
.y8f{bottom:394.746667pt;}
.y1b0{bottom:396.439067pt;}
.yb3{bottom:396.818667pt;}
.y73{bottom:399.821333pt;}
.y1f4{bottom:401.838107pt;}
.y1f2{bottom:402.726920pt;}
.y161{bottom:402.857067pt;}
.yd7{bottom:404.843160pt;}
.y263{bottom:406.729333pt;}
.y156{bottom:407.172587pt;}
.y220{bottom:407.684000pt;}
.y15d{bottom:408.792960pt;}
.y40{bottom:409.641333pt;}
.yf2{bottom:410.726667pt;}
.y1a2{bottom:411.525333pt;}
.y8e{bottom:412.758667pt;}
.y10c{bottom:413.996600pt;}
.yb2{bottom:414.830667pt;}
.y1f3{bottom:415.125213pt;}
.y15f{bottom:415.500907pt;}
.y160{bottom:415.994880pt;}
.y72{bottom:417.833333pt;}
.y155{bottom:420.029973pt;}
.yd6{bottom:421.043290pt;}
.y15c{bottom:421.651520pt;}
.y262{bottom:423.945333pt;}
.y21f{bottom:425.697333pt;}
.y3f{bottom:427.653333pt;}
.y15e{bottom:429.132693pt;}
.y1ae{bottom:429.399067pt;}
.y1a1{bottom:429.537333pt;}
.y8d{bottom:430.772000pt;}
.yb1{bottom:432.844000pt;}
.y154{bottom:432.888533pt;}
.y1f1{bottom:434.110693pt;}
.y71{bottom:435.845333pt;}
.yd5{bottom:437.243225pt;}
.yf1{bottom:438.210667pt;}
.y10b{bottom:439.852000pt;}
.y261{bottom:441.160000pt;}
.y21e{bottom:443.709333pt;}
.y3e{bottom:445.665333pt;}
.y153{bottom:445.747093pt;}
.yd{bottom:446.990669pt;}
.y1f0{bottom:447.397800pt;}
.y1a0{bottom:447.549333pt;}
.y15b{bottom:447.904853pt;}
.y1ee{bottom:448.286613pt;}
.y8c{bottom:448.784000pt;}
.yb0{bottom:450.856000pt;}
.yd4{bottom:453.443160pt;}
.yd3{bottom:453.443693pt;}
.y70{bottom:453.858667pt;}
.yca{bottom:458.148000pt;}
.y260{bottom:458.376000pt;}
.y152{bottom:460.548693pt;}
.y1ef{bottom:460.684907pt;}
.y15a{bottom:461.042667pt;}
.y21d{bottom:461.722667pt;}
.y150{bottom:461.921493pt;}
.yc{bottom:462.990669pt;}
.y19f{bottom:465.562667pt;}
.y8b{bottom:466.796000pt;}
.yaf{bottom:468.869333pt;}
.yd2{bottom:469.643628pt;}
.y3d{bottom:471.648000pt;}
.y6f{bottom:471.870667pt;}
.y151{bottom:474.180480pt;}
.y25f{bottom:475.592000pt;}
.yb{bottom:478.990666pt;}
.y1ed{bottom:479.669200pt;}
.y21c{bottom:479.734667pt;}
.y19e{bottom:483.574667pt;}
.y8a{bottom:484.809333pt;}
.yd1{bottom:485.843563pt;}
.yae{bottom:486.881333pt;}
.y6e{bottom:489.884000pt;}
.y25e{bottom:492.806667pt;}
.y14f{bottom:492.952640pt;}
.y1ec{bottom:492.956307pt;}
.y1ea{bottom:493.846307pt;}
.ya{bottom:494.990666pt;}
.y21b{bottom:497.746667pt;}
.y19d{bottom:501.588000pt;}
.yd0{bottom:502.043498pt;}
.y89{bottom:502.821333pt;}
.yad{bottom:504.893333pt;}
.y14e{bottom:506.090453pt;}
.y1eb{bottom:506.243413pt;}
.y6d{bottom:507.896000pt;}
.y25d{bottom:510.022667pt;}
.y14c{bottom:512.304427pt;}
.y14a{bottom:513.677227pt;}
.y21a{bottom:515.760000pt;}
.ycf{bottom:518.171290pt;}
.y14d{bottom:519.228267pt;}
.y19c{bottom:519.600000pt;}
.y88{bottom:520.834667pt;}
.yac{bottom:522.906667pt;}
.y1e9{bottom:525.228893pt;}
.y6c{bottom:525.908000pt;}
.y25c{bottom:527.237333pt;}
.y14b{bottom:532.366080pt;}
.y219{bottom:533.772000pt;}
.yce{bottom:534.371225pt;}
.y19b{bottom:537.612000pt;}
.y1e8{bottom:538.516000pt;}
.y87{bottom:538.846667pt;}
.y3c{bottom:539.288000pt;}
.yab{bottom:540.918667pt;}
.y6b{bottom:543.921333pt;}
.y25b{bottom:544.453333pt;}
.y1e5{bottom:546.190173pt;}
.ycd{bottom:550.571160pt;}
.y149{bottom:551.137067pt;}
.y218{bottom:551.785333pt;}
.y1e7{bottom:551.803107pt;}
.y19a{bottom:555.625333pt;}
.y237{bottom:556.858667pt;}
.yaa{bottom:558.932000pt;}
.y25a{bottom:561.669333pt;}
.y10a{bottom:561.933333pt;}
.y147{bottom:563.780907pt;}
.y148{bottom:564.274880pt;}
.y86{bottom:564.829333pt;}
.y1e6{bottom:565.090213pt;}
.y145{bottom:565.154880pt;}
.y217{bottom:569.797333pt;}
.y6a{bottom:569.904000pt;}
.y139{bottom:570.803307pt;}
.y3b{bottom:573.241333pt;}
.y199{bottom:573.637333pt;}
.y9{bottom:573.786667pt;}
.y236{bottom:574.872000pt;}
.ya9{bottom:576.944000pt;}
.y146{bottom:577.412693pt;}
.y259{bottom:578.884000pt;}
.y109{bottom:579.945333pt;}
.ycb{bottom:580.523160pt;}
.y138{bottom:583.661867pt;}
.y1e4{bottom:584.075693pt;}
.y216{bottom:587.809333pt;}
.y3a{bottom:591.253333pt;}
.y1e3{bottom:591.466253pt;}
.y198{bottom:591.650667pt;}
.y8{bottom:592.685334pt;}
.y235{bottom:592.884000pt;}
.ya8{bottom:594.956000pt;}
.y85{bottom:595.780000pt;}
.y258{bottom:596.100000pt;}
.y144{bottom:596.184853pt;}
.y137{bottom:596.519253pt;}
.y108{bottom:597.958667pt;}
.y69{bottom:600.854667pt;}
.y215{bottom:605.822667pt;}
.y39{bottom:609.265333pt;}
.y143{bottom:609.322667pt;}
.y136{bottom:609.377813pt;}
.ya7{bottom:612.969333pt;}
.y257{bottom:613.314667pt;}
.y84{bottom:613.792000pt;}
.y141{bottom:615.537813pt;}
.y107{bottom:615.970667pt;}
.y1e2{bottom:616.347093pt;}
.y13f{bottom:616.910613pt;}
.y197{bottom:617.633333pt;}
.y234{bottom:618.866667pt;}
.y135{bottom:622.236373pt;}
.y142{bottom:622.460480pt;}
.y1e1{bottom:623.738840pt;}
.y214{bottom:623.834667pt;}
.y38{bottom:627.278667pt;}
.y256{bottom:630.530667pt;}
.ya6{bottom:630.981333pt;}
.y68{bottom:631.805333pt;}
.y106{bottom:633.984000pt;}
.y134{bottom:635.094933pt;}
.y140{bottom:635.598293pt;}
.yc9{bottom:635.949333pt;}
.y213{bottom:641.846667pt;}
.y37{bottom:645.290667pt;}
.y7{bottom:645.598667pt;}
.y255{bottom:647.746667pt;}
.y133{bottom:647.953493pt;}
.y1e0{bottom:648.619680pt;}
.ya5{bottom:648.994667pt;}
.y67{bottom:649.817333pt;}
.yc8{bottom:653.962667pt;}
.y13e{bottom:654.370453pt;}
.y1df{bottom:656.011427pt;}
.y196{bottom:656.634667pt;}
.y212{bottom:659.860000pt;}
.y105{bottom:659.966667pt;}
.y132{bottom:660.812053pt;}
.y13d{bottom:661.677973pt;}
.y36{bottom:663.304000pt;}
.y254{bottom:664.961333pt;}
.ya4{bottom:667.006667pt;}
.y66{bottom:667.829333pt;}
.y3{bottom:668.977329pt;}
.y193{bottom:671.002667pt;}
.y195{bottom:671.564000pt;}
.yc7{bottom:671.974667pt;}
.y211{bottom:677.872000pt;}
.y1de{bottom:680.892267pt;}
.y35{bottom:681.316000pt;}
.y253{bottom:682.177333pt;}
.ya3{bottom:685.018667pt;}
.y65{bottom:685.842667pt;}
.y13c{bottom:686.279253pt;}
.y194{bottom:686.493333pt;}
.yc6{bottom:689.986667pt;}
.y104{bottom:690.917333pt;}
.y13b{bottom:693.587947pt;}
.y210{bottom:695.885333pt;}
.y34{bottom:699.328000pt;}
.y252{bottom:699.392000pt;}
.ya2{bottom:703.032000pt;}
.y64{bottom:703.854667pt;}
.y1dd{bottom:707.346667pt;}
.y192{bottom:707.824000pt;}
.yc5{bottom:708.000000pt;}
.y20f{bottom:713.897333pt;}
.y251{bottom:716.608000pt;}
.y33{bottom:717.341333pt;}
.y13a{bottom:718.189227pt;}
.y63{bottom:721.868000pt;}
.y191{bottom:722.753333pt;}
.y131{bottom:725.497920pt;}
.ya1{bottom:729.014667pt;}
.y20e{bottom:731.909333pt;}
.y250{bottom:733.824000pt;}
.yc4{bottom:733.982667pt;}
.y32{bottom:735.353333pt;}
.y1dc{bottom:736.868000pt;}
.y190{bottom:737.682667pt;}
.y62{bottom:739.880000pt;}
.y182{bottom:743.905333pt;}
.y18c{bottom:745.062667pt;}
.y12f{bottom:749.819947pt;}
.y20d{bottom:749.922667pt;}
.y24f{bottom:751.038667pt;}
.y18f{bottom:752.612000pt;}
.y12e{bottom:756.248640pt;}
.y61{bottom:757.892000pt;}
.y181{bottom:758.517333pt;}
.ya0{bottom:759.965333pt;}
.y130{bottom:762.677333pt;}
.y2f{bottom:766.849301pt;}
.y2e{bottom:767.530667pt;}
.y18e{bottom:767.541333pt;}
.y20c{bottom:767.934667pt;}
.y1db{bottom:767.980000pt;}
.y24e{bottom:768.254667pt;}
.y180{bottom:773.129333pt;}
.y60{bottom:775.905333pt;}
.y2{bottom:781.661334pt;}
.y18d{bottom:782.470667pt;}
.y24d{bottom:785.469333pt;}
.y9f{bottom:785.948000pt;}
.y17f{bottom:787.741333pt;}
.y1ad{bottom:787.917333pt;}
.y12d{bottom:788.984000pt;}
.y5f{bottom:793.917333pt;}
.y2d{bottom:802.202667pt;}
.y17e{bottom:802.352000pt;}
.y24c{bottom:802.685333pt;}
.y18b{bottom:803.802667pt;}
.y20b{bottom:803.960000pt;}
.y5e{bottom:811.930667pt;}
.y17d{bottom:816.964000pt;}
.y188{bottom:818.170667pt;}
.y2c{bottom:818.341333pt;}
.y18a{bottom:818.732000pt;}
.y24b{bottom:819.901333pt;}
.y12c{bottom:821.972000pt;}
.y5d{bottom:829.942667pt;}
.y17c{bottom:831.576000pt;}
.y189{bottom:833.661333pt;}
.y2b{bottom:834.481333pt;}
.y24a{bottom:837.116000pt;}
.y12b{bottom:839.985333pt;}
.y17b{bottom:846.188000pt;}
.y5c{bottom:847.954667pt;}
.y249{bottom:854.332000pt;}
.y187{bottom:854.993333pt;}
.y12a{bottom:857.997333pt;}
.y2a{bottom:858.590667pt;}
.y1{bottom:859.312000pt;}
.y5b{bottom:865.968000pt;}
.y186{bottom:869.922667pt;}
.y248{bottom:871.546667pt;}
.y129{bottom:876.010667pt;}
.y5a{bottom:883.980000pt;}
.y185{bottom:884.852000pt;}
.y247{bottom:888.762667pt;}
.y179{bottom:892.232000pt;}
.y128{bottom:894.022667pt;}
.y29{bottom:898.178667pt;}
.y184{bottom:899.781333pt;}
.y59{bottom:901.993333pt;}
.y246{bottom:905.978667pt;}
.y127{bottom:912.034667pt;}
.y183{bottom:914.710667pt;}
.y58{bottom:920.005333pt;}
.y245{bottom:923.193333pt;}
.y28{bottom:925.198667pt;}
.y17a{bottom:929.640000pt;}
.y126{bottom:930.048000pt;}
.y57{bottom:938.017333pt;}
.y244{bottom:940.409333pt;}
.y125{bottom:948.060000pt;}
.y177{bottom:950.653333pt;}
.y27{bottom:952.217333pt;}
.y56{bottom:956.030667pt;}
.y243{bottom:957.624000pt;}
.y176{bottom:957.960000pt;}
.y178{bottom:965.265333pt;}
.y124{bottom:966.073333pt;}
.y55{bottom:974.042667pt;}
.y242{bottom:974.840000pt;}
.y26{bottom:977.906667pt;}
.y54{bottom:992.056000pt;}
.y175{bottom:993.372000pt;}
.y23{bottom:1011.514667pt;}
.y53{bottom:1038.548000pt;}
.h10{height:22.673858pt;}
.h1d{height:24.866650pt;}
.h7{height:28.560000pt;}
.h19{height:28.792969pt;}
.h1e{height:29.266330pt;}
.h29{height:29.397999pt;}
.h12{height:29.433775pt;}
.h20{height:29.591511pt;}
.h22{height:30.299259pt;}
.h11{height:30.399505pt;}
.h26{height:30.635917pt;}
.h37{height:30.643569pt;}
.h25{height:30.888411pt;}
.h39{height:30.984053pt;}
.h14{height:31.200285pt;}
.h28{height:31.332348pt;}
.h3b{height:33.713664pt;}
.h2b{height:34.430976pt;}
.hf{height:34.813542pt;}
.h34{height:35.062500pt;}
.h2e{height:35.100467pt;}
.h1c{height:35.132625pt;}
.h17{height:35.423719pt;}
.hd{height:38.256384pt;}
.h13{height:38.681455pt;}
.hb{height:39.000258pt;}
.h24{height:39.104508pt;}
.h30{height:39.359687pt;}
.h1b{height:39.951563pt;}
.h6{height:40.800000pt;}
.h32{height:41.462969pt;}
.h3{height:42.840000pt;}
.he{height:43.660390pt;}
.h31{height:44.390625pt;}
.h2d{height:44.436941pt;}
.h18{height:44.479406pt;}
.h9{height:45.271688pt;}
.h1a{height:46.609638pt;}
.h15{height:48.511220pt;}
.h2{height:48.960000pt;}
.h33{height:49.421563pt;}
.h23{height:53.952397pt;}
.h27{height:53.957091pt;}
.h38{height:54.565493pt;}
.h3a{height:54.570239pt;}
.ha{height:54.767117pt;}
.h21{height:56.014032pt;}
.h1f{height:57.417111pt;}
.h2a{height:63.652309pt;}
.h2c{height:63.657643pt;}
.hc{height:68.861952pt;}
.h5{height:69.360000pt;}
.h36{height:76.709025pt;}
.h35{height:77.030625pt;}
.h4{height:105.826671pt;}
.h16{height:157.407600pt;}
.h2f{height:217.422667pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:175.580236pt;}
.w6{width:249.048000pt;}
.w7{width:314.454667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x1b{left:-141.543600pt;}
.x68{left:-138.702667pt;}
.x71{left:-131.822667pt;}
.x78{left:-125.742866pt;}
.x74{left:-121.983146pt;}
.x1d{left:-116.055600pt;}
.x7c{left:-114.783522pt;}
.x7a{left:-113.183408pt;}
.x6e{left:-110.382667pt;}
.x7d{left:-107.584083pt;}
.x77{left:-101.182572pt;}
.x70{left:-100.222296pt;}
.x6a{left:-91.662667pt;}
.x76{left:-86.463256pt;}
.x6d{left:-36.622667pt;}
.x0{left:0.000000pt;}
.x69{left:14.977333pt;}
.x7e{left:17.296556pt;}
.x79{left:18.257910pt;}
.x7b{left:19.297306pt;}
.x75{left:20.657333pt;}
.x73{left:22.737333pt;}
.x72{left:23.937333pt;}
.xa{left:26.021437pt;}
.x6{left:51.603593pt;}
.x1f{left:60.560400pt;}
.x6f{left:66.017333pt;}
.x6b{left:75.857333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:102.046667pt;}
.xd{left:106.072000pt;}
.x8{left:108.542667pt;}
.x7{left:109.606667pt;}
.x8f{left:111.510667pt;}
.x83{left:114.332333pt;}
.x90{left:117.222667pt;}
.x89{left:118.966267pt;}
.x81{left:119.933400pt;}
.x87{left:125.333920pt;}
.x85{left:128.759827pt;}
.xc{left:130.393333pt;}
.x98{left:132.133333pt;}
.x66{left:133.618667pt;}
.x8b{left:134.649253pt;}
.x62{left:136.077333pt;}
.x5a{left:138.312000pt;}
.x48{left:141.850667pt;}
.x53{left:146.432533pt;}
.x10{left:147.396000pt;}
.x5d{left:149.568000pt;}
.x4f{left:152.728640pt;}
.x4a{left:156.116053pt;}
.x86{left:159.956107pt;}
.x13{left:161.941333pt;}
.x52{left:163.569067pt;}
.x3d{left:165.110827pt;}
.x55{left:168.430187pt;}
.xb{left:170.746667pt;}
.x4e{left:174.200640pt;}
.x4{left:180.874667pt;}
.x4d{left:186.961813pt;}
.x26{left:190.353333pt;}
.x12{left:197.436000pt;}
.x7f{left:201.756000pt;}
.x27{left:204.873333pt;}
.x38{left:208.180667pt;}
.x22{left:209.932000pt;}
.x9f{left:223.704000pt;}
.xa0{left:225.868000pt;}
.x91{left:227.901333pt;}
.x16{left:229.652000pt;}
.x11{left:232.237333pt;}
.x17{left:233.464000pt;}
.x32{left:234.936400pt;}
.x21{left:237.324000pt;}
.x35{left:239.529800pt;}
.x23{left:240.534667pt;}
.x59{left:242.181333pt;}
.x2f{left:248.461600pt;}
.x15{left:254.772000pt;}
.x1e{left:259.062430pt;}
.x88{left:263.897427pt;}
.x8a{left:264.871680pt;}
.x2d{left:265.918667pt;}
.x84{left:267.920227pt;}
.x82{left:268.919400pt;}
.x9d{left:270.480000pt;}
.x1a{left:272.328000pt;}
.x64{left:275.326667pt;}
.xf{left:276.732000pt;}
.x63{left:278.853333pt;}
.x1c{left:280.520400pt;}
.x5e{left:281.721333pt;}
.x14{left:284.694667pt;}
.xe{left:287.802667pt;}
.x3e{left:294.021440pt;}
.x99{left:298.196000pt;}
.x50{left:300.412587pt;}
.x54{left:301.374720pt;}
.x4b{left:302.505813pt;}
.x49{left:304.389013pt;}
.x47{left:305.378133pt;}
.x80{left:307.152000pt;}
.x96{left:308.077333pt;}
.x97{left:313.804000pt;}
.x67{left:321.586667pt;}
.x20{left:326.357333pt;}
.x33{left:330.332467pt;}
.x6c{left:335.137333pt;}
.x2a{left:340.766667pt;}
.x5c{left:344.798667pt;}
.x5b{left:351.613333pt;}
.x40{left:363.851200pt;}
.x34{left:366.386067pt;}
.x3f{left:369.713173pt;}
.x31{left:377.731867pt;}
.x9a{left:380.369333pt;}
.x36{left:386.024467pt;}
.x2e{left:387.365200pt;}
.x30{left:390.322067pt;}
.x37{left:391.735333pt;}
.x3b{left:392.863000pt;}
.x3a{left:395.402800pt;}
.x39{left:401.023000pt;}
.x3{left:404.408000pt;}
.x24{left:413.945333pt;}
.x25{left:425.508000pt;}
.x9b{left:432.382667pt;}
.x9c{left:439.590667pt;}
.x56{left:441.904000pt;}
.x4c{left:445.147947pt;}
.x57{left:450.820000pt;}
.x92{left:480.426667pt;}
.x93{left:489.589333pt;}
.x8c{left:490.572000pt;}
.x94{left:514.598667pt;}
.x95{left:521.126667pt;}
.x65{left:526.588000pt;}
.x18{left:528.184000pt;}
.x19{left:531.996000pt;}
.x8d{left:565.477333pt;}
.x46{left:572.534400pt;}
.x58{left:573.620000pt;}
.x51{left:578.334187pt;}
.x41{left:579.681173pt;}
.x42{left:580.964800pt;}
.x44{left:582.118187pt;}
.x43{left:585.048000pt;}
.x45{left:586.989867pt;}
.x60{left:588.981333pt;}
.x5f{left:590.064000pt;}
.x2b{left:592.589333pt;}
.x61{left:596.313333pt;}
.x9e{left:598.308000pt;}
.x9{left:623.413317pt;}
.x3c{left:633.666667pt;}
.x28{left:635.562667pt;}
.x8e{left:642.478667pt;}
.x29{left:686.078667pt;}
.x2c{left:690.621333pt;}
}




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