
    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_3c475ecc1d556fdc3e19ab87.woff')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_ad878695505dcaa60ea0f35d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4d72b0f932d5a073318e59ee.woff')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_70b012da444d70016ebae93c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.142000;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_5fa8dd7c941ab70008238457.woff')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_83f71b847a3f55f0b815e0f1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7a9ad8f8888c6bb093cbacc4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.684000;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_cdbc1e52ce006a3844b23a74.woff')format("woff");}.ff8{font-family:ff8;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b08c6e309906aad372e19a82.woff')format("woff");}.ff9{font-family:ff9;line-height:1.025000;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_fa9f5367a18432585cfea6de.woff')format("woff");}.ffa{font-family:ffa;line-height:1.142000;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_85a218ec7c52e61185325a5d.woff')format("woff");}.ffb{font-family:ffb;line-height:2.262000;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_ea75ed1672bcb18b42635b81.woff')format("woff");}.ffc{font-family:ffc;line-height:0.635000;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_6d70a8cdf1435936d191d127.woff')format("woff");}.ffd{font-family:ffd;line-height:1.001000;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_fef33d026b1cf48e962eb3b8.woff')format("woff");}.ffe{font-family:ffe;line-height:0.919000;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_a37dbe7ecb05ffea938ed719.woff')format("woff");}.fff{font-family:fff;line-height:0.923000;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_5e8ecc94b230851db667e1f9.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_010b8b3b3c69800e1aa989d3.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_0db859a675fdfed9f8187a08.woff')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_6d1ac52eb7f23c9b66071747.woff')format("woff");}.ff13{font-family:ff13;line-height:0.999000;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_18d15e46db250103e0b60565.woff')format("woff");}.ff14{font-family:ff14;line-height:0.844000;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_6505786e82e8740dcc743743.woff')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_b09e6a457c310d2ce70cc6f7.woff')format("woff");}.ff16{font-family:ff16;line-height:0.046000;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_66732d0a9c83e9615455d2e7.woff')format("woff");}.ff17{font-family:ff17;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_7afa6aada2ca219e2398c04f.woff')format("woff");}.ff18{font-family:ff18;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_6ed15193a40ca7b8a3eb1ca3.woff')format("woff");}.ff19{font-family:ff19;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_2b17578f7e74eb7c57ecd01d.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_30632af97afaa587a7fb860a.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_cb7070d4b687e7566b930ba6.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.687000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_c97f4aece2d2360d592cf723.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_97c659ed868557e103a9495f.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_22a1c3eca232b94bf1827667.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.142000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m1e{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);}
.m24{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);}
.m1c{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);}
.m23{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);}
.m10{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);}
.m12{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);}
.m17{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);}
.m11{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);}
.m0{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);}
.m20{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);}
.ma{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);}
.m4{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);}
.m7{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m19{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);}
.m9{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);}
.m1{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);}
.m2{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);}
.m22{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m14{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m1d{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);}
.m1f{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);}
.m1b{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);}
.m16{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);}
.mf{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);}
.m18{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);}
.me{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);}
.m25{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);}
.mb{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);}
.m6{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);}
.m8{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);}
.v10{vertical-align:-53.100000px;}
.v11{vertical-align:-49.836000px;}
.vf{vertical-align:-46.920000px;}
.v5{vertical-align:-22.854000px;}
.v26{vertical-align:-16.518000px;}
.v6{vertical-align:-10.398000px;}
.v2{vertical-align:-8.964000px;}
.vc{vertical-align:-7.044000px;}
.v0{vertical-align:0.000000px;}
.v27{vertical-align:10.398000px;}
.vb{vertical-align:12.354000px;}
.va{vertical-align:15.054000px;}
.v19{vertical-align:16.182000px;}
.v29{vertical-align:19.020000px;}
.v12{vertical-align:22.548000px;}
.v4{vertical-align:23.754000px;}
.v28{vertical-align:25.770000px;}
.v17{vertical-align:27.024000px;}
.ve{vertical-align:35.082000px;}
.v2a{vertical-align:38.544000px;}
.v1a{vertical-align:41.952000px;}
.vd{vertical-align:44.898000px;}
.v25{vertical-align:46.248000px;}
.v1{vertical-align:48.156000px;}
.v3{vertical-align:49.842000px;}
.v22{vertical-align:51.000000px;}
.v14{vertical-align:53.388000px;}
.v21{vertical-align:59.040000px;}
.v9{vertical-align:63.852000px;}
.v18{vertical-align:66.018000px;}
.v7{vertical-align:67.770000px;}
.v1d{vertical-align:74.100000px;}
.v1b{vertical-align:80.778000px;}
.v8{vertical-align:82.782000px;}
.v15{vertical-align:97.668000px;}
.v23{vertical-align:99.894000px;}
.v1f{vertical-align:101.124000px;}
.v16{vertical-align:107.484000px;}
.v20{vertical-align:108.876000px;}
.v24{vertical-align:112.182000px;}
.v1e{vertical-align:123.936000px;}
.v13{vertical-align:130.980000px;}
.v1c{vertical-align:141.870000px;}
.ls4{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.000588px;}
.ls69{letter-spacing:0.000621px;}
.ls23{letter-spacing:0.000705px;}
.ls62{letter-spacing:0.000843px;}
.ls86{letter-spacing:0.001048px;}
.ls80{letter-spacing:0.001050px;}
.ls61{letter-spacing:0.001610px;}
.ls40{letter-spacing:0.001739px;}
.ls5b{letter-spacing:0.002012px;}
.ls56{letter-spacing:0.002706px;}
.ls15{letter-spacing:0.003239px;}
.ls2f{letter-spacing:0.003242px;}
.lsf{letter-spacing:0.003791px;}
.ls1d{letter-spacing:0.003962px;}
.ls7c{letter-spacing:0.004335px;}
.ls2d{letter-spacing:0.004344px;}
.ls3b{letter-spacing:0.005747px;}
.ls51{letter-spacing:0.006357px;}
.ls45{letter-spacing:0.006843px;}
.ls98{letter-spacing:0.009071px;}
.ls21{letter-spacing:0.009740px;}
.ls26{letter-spacing:0.015740px;}
.lsa1{letter-spacing:0.018408px;}
.ls77{letter-spacing:0.029845px;}
.ls55{letter-spacing:0.030964px;}
.ls24{letter-spacing:1.284829px;}
.ls27{letter-spacing:1.290829px;}
.ls6a{letter-spacing:1.434618px;}
.ls6b{letter-spacing:1.713332px;}
.ls73{letter-spacing:1.799944px;}
.ls78{letter-spacing:1.805944px;}
.ls7a{letter-spacing:1.830335px;}
.ls63{letter-spacing:1.832729px;}
.ls1{letter-spacing:2.141577px;}
.ls3e{letter-spacing:2.337729px;}
.lsd{letter-spacing:2.344815px;}
.ls95{letter-spacing:2.347568px;}
.ls57{letter-spacing:2.351942px;}
.ls18{letter-spacing:2.360647px;}
.ls13{letter-spacing:2.981971px;}
.ls3a{letter-spacing:2.984915px;}
.ls1a{letter-spacing:2.985543px;}
.ls14{letter-spacing:2.988532px;}
.ls79{letter-spacing:2.988593px;}
.ls4b{letter-spacing:2.990325px;}
.ls7f{letter-spacing:2.990915px;}
.ls1e{letter-spacing:2.991543px;}
.ls74{letter-spacing:2.994593px;}
.ls64{letter-spacing:7.200110px;}
.ls42{letter-spacing:7.265461px;}
.ls1b{letter-spacing:7.396370px;}
.ls44{letter-spacing:9.199526px;}
.ls47{letter-spacing:9.216843px;}
.ls35{letter-spacing:10.865464px;}
.ls76{letter-spacing:10.905507px;}
.ls66{letter-spacing:10.911962px;}
.ls1c{letter-spacing:10.930918px;}
.ls97{letter-spacing:13.255568px;}
.ls8f{letter-spacing:13.256156px;}
.ls37{letter-spacing:13.745466px;}
.ls22{letter-spacing:13.892915px;}
.ls70{letter-spacing:13.898325px;}
.ls96{letter-spacing:13.899543px;}
.ls39{letter-spacing:14.409543px;}
.ls81{letter-spacing:14.465467px;}
.ls17{letter-spacing:14.530921px;}
.ls5a{letter-spacing:14.546012px;}
.ls16{letter-spacing:14.547962px;}
.ls67{letter-spacing:14.550843px;}
.ls53{letter-spacing:14.552012px;}
.ls2a{letter-spacing:14.596376px;}
.ls72{letter-spacing:14.816012px;}
.ls71{letter-spacing:16.560014px;}
.ls87{letter-spacing:17.528915px;}
.ls20{letter-spacing:17.534915px;}
.ls8{letter-spacing:18.065470px;}
.ls65{letter-spacing:18.080915px;}
.ls92{letter-spacing:18.130924px;}
.ls6f{letter-spacing:18.131756px;}
.ls75{letter-spacing:18.179412px;}
.ls49{letter-spacing:18.183859px;}
.ls1f{letter-spacing:18.196379px;}
.ls48{letter-spacing:18.506650px;}
.ls9e{letter-spacing:19.243652px;}
.lsa2{letter-spacing:19.701835px;}
.lsb{letter-spacing:19.719507px;}
.ls0{letter-spacing:19.965050px;}
.ls3{letter-spacing:20.084602px;}
.ls82{letter-spacing:20.094562px;}
.ls8c{letter-spacing:20.421835px;}
.ls9a{letter-spacing:20.618199px;}
.ls11{letter-spacing:20.749108px;}
.ls7{letter-spacing:20.814563px;}
.ls9f{letter-spacing:21.164915px;}
.ls4e{letter-spacing:21.170325px;}
.ls9b{letter-spacing:21.170915px;}
.ls9c{letter-spacing:21.212915px;}
.ls60{letter-spacing:21.272745px;}
.ls91{letter-spacing:21.469109px;}
.ls7e{letter-spacing:21.534563px;}
.ls2{letter-spacing:21.591962px;}
.ls7d{letter-spacing:21.600018px;}
.ls90{letter-spacing:21.665473px;}
.ls54{letter-spacing:21.713412px;}
.ls68{letter-spacing:21.719412px;}
.ls9{letter-spacing:21.730927px;}
.lsa{letter-spacing:21.796382px;}
.ls5{letter-spacing:21.861836px;}
.ls8d{letter-spacing:21.927291px;}
.ls12{letter-spacing:22.058200px;}
.lsa0{letter-spacing:22.123655px;}
.ls10{letter-spacing:22.189109px;}
.ls9d{letter-spacing:22.254564px;}
.ls8e{letter-spacing:22.281507px;}
.lse{letter-spacing:22.533962px;}
.ls93{letter-spacing:23.170928px;}
.ls38{letter-spacing:23.825474px;}
.ls6d{letter-spacing:23.890929px;}
.ls8b{letter-spacing:24.021838px;}
.ls5f{letter-spacing:24.480020px;}
.ls2e{letter-spacing:24.800915px;}
.ls4a{letter-spacing:24.806325px;}
.ls30{letter-spacing:24.806915px;}
.ls6e{letter-spacing:25.330930px;}
.ls3d{letter-spacing:25.461839px;}
.ls8a{letter-spacing:25.634915px;}
.ls5e{letter-spacing:25.854567px;}
.ls3f{letter-spacing:26.560677px;}
.ls19{letter-spacing:26.566677px;}
.ls33{letter-spacing:26.899200px;}
.ls5d{letter-spacing:30.240025px;}
.lsc{letter-spacing:30.632753px;}
.ls3c{letter-spacing:32.072915px;}
.ls6{letter-spacing:32.727300px;}
.ls4c{letter-spacing:32.727507px;}
.ls59{letter-spacing:32.732012px;}
.ls52{letter-spacing:35.714915px;}
.ls94{letter-spacing:36.261848px;}
.ls34{letter-spacing:36.392758px;}
.ls4f{letter-spacing:39.992761px;}
.ls28{letter-spacing:54.078532px;}
.ls7b{letter-spacing:64.145508px;}
.ls50{letter-spacing:66.043691px;}
.ls99{letter-spacing:68.438915px;}
.ls25{letter-spacing:68.622532px;}
.ls58{letter-spacing:79.556915px;}
.ls4d{letter-spacing:141.840118px;}
.ls6c{letter-spacing:177.251057px;}
.ls29{letter-spacing:266.727495px;}
.ls83{letter-spacing:347.450915px;}
.ls31{letter-spacing:418.904915px;}
.ls5c{letter-spacing:420.153077px;}
.ls2c{letter-spacing:444.362915px;}
.ls32{letter-spacing:456.218562px;}
.ls2b{letter-spacing:466.887662px;}
.ls84{letter-spacing:467.018571px;}
.ls89{letter-spacing:538.736915px;}
.ls88{letter-spacing:769.586915px;}
.ls85{letter-spacing:788.597021px;}
.ls41{letter-spacing:790.102477px;}
.ls43{letter-spacing:850.975255px;}
.ls36{letter-spacing:969.709899px;}
.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;}
}
.ws93{word-spacing:-65.454600px;}
.ws18{word-spacing:-48.418425px;}
.ws69{word-spacing:-47.324343px;}
.ws86{word-spacing:-47.258221px;}
.ws34{word-spacing:-42.637126px;}
.wsd{word-spacing:-38.937826px;}
.wsb4{word-spacing:-37.636395px;}
.ws6d{word-spacing:-36.071827px;}
.ws24{word-spacing:-33.453846px;}
.ws87{word-spacing:-33.211407px;}
.ws2f{word-spacing:-32.727300px;}
.ws46{word-spacing:-31.706208px;}
.ws4{word-spacing:-29.887800px;}
.ws8c{word-spacing:-29.388273px;}
.ws63{word-spacing:-29.349843px;}
.ws73{word-spacing:-27.646998px;}
.ws8a{word-spacing:-26.255705px;}
.ws88{word-spacing:-20.840745px;}
.ws57{word-spacing:-18.922925px;}
.ws83{word-spacing:-18.196379px;}
.ws33{word-spacing:-18.183288px;}
.wsf0{word-spacing:-16.952741px;}
.ws3b{word-spacing:-16.139475px;}
.ws82{word-spacing:-16.036377px;}
.wsa5{word-spacing:-15.840013px;}
.ws3e{word-spacing:-15.774559px;}
.wsb6{word-spacing:-15.709104px;}
.wse1{word-spacing:-15.250922px;}
.ws3c{word-spacing:-15.185467px;}
.wsb8{word-spacing:-15.054558px;}
.wsf7{word-spacing:-14.989103px;}
.ws61{word-spacing:-14.792740px;}
.ws29{word-spacing:-14.661830px;}
.ws7d{word-spacing:-14.596376px;}
.ws11{word-spacing:-14.525471px;}
.ws3f{word-spacing:-14.472012px;}
.ws102{word-spacing:-14.465467px;}
.ws42{word-spacing:-14.400012px;}
.ws16{word-spacing:-13.867939px;}
.wsc7{word-spacing:-13.614557px;}
.wsf4{word-spacing:-13.483648px;}
.ws60{word-spacing:-13.449600px;}
.wsf3{word-spacing:-13.352738px;}
.wsb9{word-spacing:-13.287284px;}
.wsa6{word-spacing:-13.221829px;}
.ws3d{word-spacing:-13.156375px;}
.ws58{word-spacing:-13.090920px;}
.ws4a{word-spacing:-13.025465px;}
.ws9f{word-spacing:-12.960011px;}
.wsd4{word-spacing:-12.894556px;}
.wsca{word-spacing:-12.763647px;}
.wscf{word-spacing:-12.698192px;}
.ws1b{word-spacing:-12.567283px;}
.ws48{word-spacing:-12.501829px;}
.ws2d{word-spacing:-12.436374px;}
.ws76{word-spacing:-12.370919px;}
.wsc2{word-spacing:-12.305465px;}
.wsb5{word-spacing:-12.240010px;}
.ws84{word-spacing:-12.174556px;}
.wse8{word-spacing:-12.109101px;}
.ws85{word-spacing:-12.041705px;}
.ws91{word-spacing:-12.035705px;}
.wsc8{word-spacing:-11.984737px;}
.ws45{word-spacing:-11.978192px;}
.ws49{word-spacing:-11.919283px;}
.ws25{word-spacing:-11.912737px;}
.wsf5{word-spacing:-11.788373px;}
.ws3{word-spacing:-11.735224px;}
.wse6{word-spacing:-11.716373px;}
.wsef{word-spacing:-11.657464px;}
.ws2e{word-spacing:-11.461100px;}
.ws7c{word-spacing:-11.454555px;}
.ws59{word-spacing:-11.389100px;}
.ws5a{word-spacing:-11.323646px;}
.ws36{word-spacing:-11.258191px;}
.ws9d{word-spacing:-11.192737px;}
.ws81{word-spacing:-11.127282px;}
.ws4f{word-spacing:-11.061827px;}
.ws22{word-spacing:-10.996373px;}
.ws1c{word-spacing:-10.930918px;}
.ws26{word-spacing:-10.872009px;}
.ws1f{word-spacing:-10.865464px;}
.ws2a{word-spacing:-10.800009px;}
.ws28{word-spacing:-10.734554px;}
.ws2c{word-spacing:-10.669100px;}
.ws38{word-spacing:-10.603645px;}
.ws37{word-spacing:-10.538191px;}
.ws5b{word-spacing:-10.479281px;}
.wsf1{word-spacing:-10.472736px;}
.ws101{word-spacing:-10.348372px;}
.ws9a{word-spacing:-10.341827px;}
.ws6a{word-spacing:-10.217463px;}
.ws95{word-spacing:-10.210918px;}
.ws50{word-spacing:-10.152008px;}
.ws7{word-spacing:-10.102076px;}
.ws23{word-spacing:-10.086554px;}
.ws67{word-spacing:-10.080008px;}
.ws5{word-spacing:-10.042301px;}
.ws27{word-spacing:-10.021099px;}
.ws3a{word-spacing:-10.014554px;}
.wsa4{word-spacing:-9.955645px;}
.ws9{word-spacing:-9.922750px;}
.wsd0{word-spacing:-9.890190px;}
.wsb{word-spacing:-9.862974px;}
.ws2b{word-spacing:-9.824735px;}
.wse{word-spacing:-9.803198px;}
.wse2{word-spacing:-9.693826px;}
.wsc9{word-spacing:-9.628372px;}
.wse4{word-spacing:-9.621826px;}
.wsde{word-spacing:-9.562917px;}
.wsd7{word-spacing:-9.556372px;}
.wsd6{word-spacing:-9.490917px;}
.ws71{word-spacing:-9.463139px;}
.wsf2{word-spacing:-9.360008px;}
.ws8{word-spacing:-9.330971px;}
.ws7e{word-spacing:-9.294553px;}
.ws6b{word-spacing:-9.247945px;}
.ws4e{word-spacing:-9.194147px;}
.wsa8{word-spacing:-9.163644px;}
.ws12{word-spacing:-9.151644px;}
.ws6c{word-spacing:-9.140348px;}
.wse7{word-spacing:-9.098189px;}
.wsa{word-spacing:-9.091869px;}
.ws70{word-spacing:-8.978953px;}
.wse3{word-spacing:-8.908371px;}
.ws64{word-spacing:-8.901826px;}
.ws72{word-spacing:-8.871356px;}
.ws7f{word-spacing:-8.770916px;}
.wsbc{word-spacing:-8.705462px;}
.wsdb{word-spacing:-8.581098px;}
.wseb{word-spacing:-8.574553px;}
.wsa7{word-spacing:-8.515643px;}
.ws74{word-spacing:-8.509098px;}
.wscc{word-spacing:-8.443643px;}
.wsf{word-spacing:-8.308808px;}
.ws103{word-spacing:-8.181825px;}
.wsaa{word-spacing:-8.116370px;}
.wsdf{word-spacing:-7.854552px;}
.ws6{word-spacing:-7.776806px;}
.wsea{word-spacing:-7.658188px;}
.ws104{word-spacing:-7.599279px;}
.wsbb{word-spacing:-7.461824px;}
.wsba{word-spacing:-7.396370px;}
.wscd{word-spacing:-7.265461px;}
.wsce{word-spacing:-7.200006px;}
.wse9{word-spacing:-7.134551px;}
.ws7a{word-spacing:-6.938188px;}
.ws79{word-spacing:-6.872733px;}
.ws89{word-spacing:-6.466914px;}
.ws8b{word-spacing:-6.439176px;}
.wsee{word-spacing:-6.218187px;}
.wse0{word-spacing:-6.159278px;}
.ws80{word-spacing:-5.890914px;}
.wsff{word-spacing:-5.563641px;}
.wsfd{word-spacing:-5.498186px;}
.ws78{word-spacing:-5.367277px;}
.wsdd{word-spacing:-5.301823px;}
.wsbe{word-spacing:-5.236368px;}
.ws100{word-spacing:-5.177459px;}
.wsbf{word-spacing:-5.170913px;}
.wsdc{word-spacing:-4.915640px;}
.wsec{word-spacing:-4.850186px;}
.ws105{word-spacing:-4.843640px;}
.ws4d{word-spacing:-4.320004px;}
.ws65{word-spacing:-4.189094px;}
.ws4c{word-spacing:-4.058185px;}
.ws30{word-spacing:-3.992731px;}
.wsfe{word-spacing:-3.933821px;}
.ws66{word-spacing:-3.868367px;}
.ws39{word-spacing:-3.861821px;}
.ws4b{word-spacing:-3.802912px;}
.ws51{word-spacing:-3.796367px;}
.ws35{word-spacing:-3.730912px;}
.ws97{word-spacing:-3.652367px;}
.wsc5{word-spacing:-3.600003px;}
.ws98{word-spacing:-3.586912px;}
.ws31{word-spacing:-3.469094px;}
.wsc1{word-spacing:-3.338185px;}
.wsed{word-spacing:-3.272730px;}
.ws9b{word-spacing:-3.259639px;}
.wscb{word-spacing:-3.141821px;}
.ws13{word-spacing:-3.048556px;}
.ws6e{word-spacing:-3.039610px;}
.ws47{word-spacing:-3.010912px;}
.ws77{word-spacing:-2.487275px;}
.ws40{word-spacing:-2.225456px;}
.wsfc{word-spacing:-2.029093px;}
.ws41{word-spacing:-1.898183px;}
.wsc6{word-spacing:-1.636365px;}
.wsd8{word-spacing:-1.374547px;}
.ws21{word-spacing:-1.309092px;}
.wsda{word-spacing:-1.178183px;}
.ws43{word-spacing:-0.981819px;}
.wsa1{word-spacing:-0.248727px;}
.ws44{word-spacing:-0.065455px;}
.ws53{word-spacing:-0.052364px;}
.ws52{word-spacing:-0.047821px;}
.ws90{word-spacing:-0.039999px;}
.ws56{word-spacing:-0.035866px;}
.ws17{word-spacing:0.000000px;}
.ws54{word-spacing:0.013091px;}
.wsc3{word-spacing:0.065455px;}
.wsc{word-spacing:0.071731px;}
.wsa3{word-spacing:0.144000px;}
.wsc0{word-spacing:0.209455px;}
.wsf6{word-spacing:0.274909px;}
.wsd3{word-spacing:0.340364px;}
.ws6f{word-spacing:0.403488px;}
.ws99{word-spacing:1.322183px;}
.wse5{word-spacing:2.434911px;}
.ws10{word-spacing:3.060511px;}
.ws15{word-spacing:3.419164px;}
.ws9e{word-spacing:3.613094px;}
.ws96{word-spacing:3.678549px;}
.wsbd{word-spacing:4.005822px;}
.ws9c{word-spacing:4.202185px;}
.wsa9{word-spacing:5.380368px;}
.ws8e{word-spacing:8.864855px;}
.ws62{word-spacing:10.100638px;}
.ws14{word-spacing:10.114032px;}
.ws1e{word-spacing:10.341827px;}
.ws1d{word-spacing:10.407281px;}
.wsb7{word-spacing:10.800009px;}
.ws32{word-spacing:12.776738px;}
.wsb3{word-spacing:16.167286px;}
.wsa2{word-spacing:17.382094px;}
.ws8f{word-spacing:17.490094px;}
.ws68{word-spacing:18.144015px;}
.wsc4{word-spacing:18.602197px;}
.ws92{word-spacing:21.143438px;}
.ws1a{word-spacing:22.909110px;}
.ws94{word-spacing:24.759688px;}
.ws2{word-spacing:25.034189px;}
.wsd9{word-spacing:26.509113px;}
.wsd5{word-spacing:26.574568px;}
.wsfb{word-spacing:28.210933px;}
.wsa0{word-spacing:28.538206px;}
.wsf8{word-spacing:29.127297px;}
.ws7b{word-spacing:29.192752px;}
.ws1{word-spacing:31.091012px;}
.ws0{word-spacing:31.297597px;}
.wsd2{word-spacing:32.858209px;}
.wsb1{word-spacing:34.101847px;}
.wsd1{word-spacing:37.832759px;}
.ws5c{word-spacing:39.010942px;}
.wsf9{word-spacing:42.152762px;}
.wsb2{word-spacing:44.509128px;}
.ws20{word-spacing:48.418425px;}
.wsb0{word-spacing:49.941860px;}
.wsab{word-spacing:55.374592px;}
.wsad{word-spacing:60.807323px;}
.wsfa{word-spacing:70.821877px;}
.wsac{word-spacing:93.534623px;}
.ws55{word-spacing:99.202992px;}
.wsae{word-spacing:111.731002px;}
.ws8d{word-spacing:120.212325px;}
.wsaf{word-spacing:128.094652px;}
.ws5d{word-spacing:170.901961px;}
.ws75{word-spacing:252.759483px;}
.ws5e{word-spacing:288.733332px;}
.ws5f{word-spacing:339.657010px;}
.ws19{word-spacing:2351.803905px;}
._e{margin-left:-32.792755px;}
._1f{margin-left:-10.759650px;}
._0{margin-left:-8.160100px;}
._13{margin-left:-7.126294px;}
._3{margin-left:-5.810227px;}
._20{margin-left:-4.669002px;}
._2{margin-left:-3.586560px;}
._1{margin-left:-2.479018px;}
._5{margin-left:-1.007507px;}
._34{width:1.004237px;}
._4{width:2.008474px;}
._19{width:3.586560px;}
._28{width:7.393503px;}
._38{width:9.631534px;}
._39{width:10.930918px;}
._55{width:16.387292px;}
._7{width:17.662020px;}
._23{width:19.693577px;}
._21{width:21.358819px;}
._29{width:22.415266px;}
._1d{width:23.772382px;}
._11{width:25.151997px;}
._6{width:26.361040px;}
._1b{width:28.162909px;}
._1a{width:29.183030px;}
._1c{width:30.894571px;}
._4a{width:31.934942px;}
._22{width:33.219544px;}
._25{width:34.289953px;}
._3a{width:35.922214px;}
._35{width:37.955411px;}
._48{width:39.853594px;}
._4b{width:40.926556px;}
._37{width:42.040748px;}
._4c{width:44.028528px;}
._15{width:45.818220px;}
._36{width:47.318689px;}
._33{width:49.086118px;}
._14{width:52.506951px;}
._24{width:53.541863px;}
._9{width:60.545505px;}
._d{width:61.963806px;}
._10{width:63.417250px;}
._12{width:64.538236px;}
._49{width:65.728780px;}
._c{width:66.894601px;}
._27{width:71.290515px;}
._3b{width:72.384530px;}
._32{width:80.697600px;}
._51{width:89.991818px;}
._4e{width:94.450988px;}
._1e{width:96.836850px;}
._44{width:103.546426px;}
._3f{width:114.477345px;}
._50{width:119.912827px;}
._47{width:124.381171px;}
._3d{width:147.207395px;}
._46{width:160.625588px;}
._53{width:161.738317px;}
._41{width:165.403774px;}
._26{width:178.887422px;}
._43{width:198.065620px;}
._2b{width:203.626510px;}
._31{width:212.138359px;}
._2e{width:229.156555px;}
._54{width:231.185647px;}
._3e{width:233.214740px;}
._3c{width:246.960206px;}
._40{width:256.058395px;}
._42{width:258.676579px;}
._45{width:288.609950px;}
._52{width:300.305705px;}
._2a{width:332.378459px;}
._30{width:351.163929px;}
._2f{width:353.782113px;}
._2c{width:367.527579px;}
._4f{width:372.960311px;}
._2d{width:383.236683px;}
._4d{width:712.669685px;}
._18{width:780.239451px;}
._b{width:1774.711808px;}
._a{width:1885.043869px;}
._17{width:2158.050139px;}
._8{width:2170.912844px;}
._16{width:2242.095450px;}
._f{width:2343.104989px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y12{bottom:61.467000px;}
.yab{bottom:101.544000px;}
.y77{bottom:106.299000px;}
.y76{bottom:122.737500px;}
.ye0{bottom:126.622500px;}
.y12f{bottom:129.720000px;}
.ya9{bottom:135.448500px;}
.ya5{bottom:135.580500px;}
.y75{bottom:139.176000px;}
.y162{bottom:142.765500px;}
.ydf{bottom:146.947500px;}
.ya6{bottom:148.462500px;}
.y4a{bottom:148.488000px;}
.y12e{bottom:150.043500px;}
.ya4{bottom:154.105500px;}
.y74{bottom:155.614500px;}
.y161{bottom:163.089000px;}
.yaa{bottom:166.564500px;}
.ya8{bottom:168.657000px;}
.y12d{bottom:170.367000px;}
.y72{bottom:172.053000px;}
.y49{bottom:172.407000px;}
.ya7{bottom:173.140500px;}
.yde{bottom:177.838500px;}
.y160{bottom:183.412500px;}
.y73{bottom:183.783000px;}
.y71{bottom:188.491500px;}
.y106{bottom:189.826500px;}
.y12c{bottom:190.690500px;}
.y48{bottom:192.730500px;}
.y70{bottom:194.205000px;}
.ya3{bottom:196.543500px;}
.y105{bottom:210.150000px;}
.y6f{bottom:210.643500px;}
.y12b{bottom:211.015500px;}
.y47{bottom:213.054000px;}
.y15f{bottom:217.186500px;}
.ydd{bottom:221.592000px;}
.ya2{bottom:225.931500px;}
.y104{bottom:230.473500px;}
.y6e{bottom:230.761500px;}
.y12a{bottom:231.339000px;}
.y46{bottom:233.377500px;}
.y15e{bottom:237.510000px;}
.ybd{bottom:240.913500px;}
.ydc{bottom:241.915500px;}
.y6d{bottom:244.021500px;}
.y129{bottom:251.662500px;}
.ya1{bottom:258.351000px;}
.ydb{bottom:262.239000px;}
.y15d{bottom:271.284000px;}
.ybc{bottom:271.806000px;}
.y128{bottom:271.986000px;}
.y14d{bottom:273.040500px;}
.y103{bottom:273.352500px;}
.y45{bottom:281.850000px;}
.yda{bottom:282.564000px;}
.y9e{bottom:284.290500px;}
.y6c{bottom:287.503500px;}
.y15c{bottom:291.607500px;}
.ya0{bottom:291.712500px;}
.y14c{bottom:293.364000px;}
.y102{bottom:293.677500px;}
.y9f{bottom:296.113500px;}
.y9d{bottom:297.172500px;}
.y9c{bottom:298.770000px;}
.y44{bottom:302.175000px;}
.y9b{bottom:302.815500px;}
.yd9{bottom:302.887500px;}
.y6b{bottom:307.827000px;}
.y15b{bottom:311.931000px;}
.y101{bottom:314.001000px;}
.y127{bottom:315.207000px;}
.ybb{bottom:315.624000px;}
.yd8{bottom:323.211000px;}
.y126{bottom:335.530500px;}
.yba{bottom:335.947500px;}
.y6a{bottom:337.836000px;}
.y43{bottom:343.321500px;}
.y9a{bottom:344.170500px;}
.y15a{bottom:345.705000px;}
.y14b{bottom:346.801500px;}
.y69{bottom:351.096000px;}
.y125{bottom:355.855500px;}
.yb9{bottom:356.272500px;}
.y100{bottom:356.880000px;}
.y99{bottom:364.495500px;}
.y159{bottom:366.028500px;}
.y14a{bottom:367.126500px;}
.yd7{bottom:371.545500px;}
.y124{bottom:376.179000px;}
.yb8{bottom:376.596000px;}
.yff{bottom:377.203500px;}
.y42{bottom:380.298000px;}
.y158{bottom:386.352000px;}
.y149{bottom:387.450000px;}
.yd6{bottom:391.869000px;}
.y68{bottom:392.373000px;}
.y98{bottom:395.386500px;}
.yb7{bottom:396.919500px;}
.yfe{bottom:397.528500px;}
.y41{bottom:400.621500px;}
.y148{bottom:407.773500px;}
.yd5{bottom:412.192500px;}
.y123{bottom:412.707000px;}
.yb6{bottom:417.243000px;}
.yfd{bottom:417.852000px;}
.y67{bottom:418.635000px;}
.y157{bottom:420.126000px;}
.y40{bottom:420.946500px;}
.y147{bottom:428.097000px;}
.yd4{bottom:432.516000px;}
.y66{bottom:433.020000px;}
.yb5{bottom:437.566500px;}
.y97{bottom:438.046500px;}
.yfc{bottom:438.175500px;}
.y156{bottom:440.449500px;}
.y3f{bottom:441.270000px;}
.y146{bottom:448.420500px;}
.yd3{bottom:452.841000px;}
.y65{bottom:453.343500px;}
.yc9{bottom:453.939000px;}
.y96{bottom:458.370000px;}
.yfb{bottom:458.499000px;}
.yb4{bottom:459.582000px;}
.y3e{bottom:461.593500px;}
.y122{bottom:464.265000px;}
.y145{bottom:468.744000px;}
.yd2{bottom:473.164500px;}
.y64{bottom:473.667000px;}
.y155{bottom:474.223500px;}
.y95{bottom:478.695000px;}
.yfa{bottom:478.822500px;}
.y3d{bottom:481.917000px;}
.y121{bottom:484.588500px;}
.yd1{bottom:493.488000px;}
.y154{bottom:494.547000px;}
.y63{bottom:496.219500px;}
.y144{bottom:497.277000px;}
.yf9{bottom:499.147500px;}
.y3c{bottom:502.240500px;}
.y120{bottom:504.912000px;}
.yb3{bottom:508.900500px;}
.y94{bottom:509.575500px;}
.yd0{bottom:513.811500px;}
.y153{bottom:514.870500px;}
.y62{bottom:518.514000px;}
.yf8{bottom:519.471000px;}
.y3b{bottom:522.565500px;}
.y11f{bottom:525.235500px;}
.y93{bottom:529.900500px;}
.y61{bottom:535.462500px;}
.y143{bottom:538.425000px;}
.yf7{bottom:539.794500px;}
.ycf{bottom:542.344500px;}
.y11e{bottom:545.560500px;}
.y152{bottom:548.643000px;}
.y60{bottom:555.786000px;}
.y142{bottom:558.750000px;}
.yf6{bottom:560.118000px;}
.y92{bottom:561.214500px;}
.y3a{bottom:565.786500px;}
.y11d{bottom:565.884000px;}
.y151{bottom:568.968000px;}
.y5f{bottom:576.111000px;}
.yf5{bottom:580.441500px;}
.y91{bottom:581.539500px;}
.yce{bottom:583.492500px;}
.y39{bottom:586.110000px;}
.y11c{bottom:586.207500px;}
.y141{bottom:596.494500px;}
.y90{bottom:601.863000px;}
.y150{bottom:605.496000px;}
.y38{bottom:606.433500px;}
.y11b{bottom:606.531000px;}
.y5e{bottom:607.002000px;}
.y140{bottom:616.818000px;}
.ycd{bottom:621.099000px;}
.y8f{bottom:622.186500px;}
.yf4{bottom:623.322000px;}
.y37{bottom:626.757000px;}
.y11a{bottom:626.854500px;}
.y13f{bottom:637.141500px;}
.ycc{bottom:641.422500px;}
.yf3{bottom:643.645500px;}
.y119{bottom:647.179500px;}
.y8e{bottom:653.502000px;}
.y5d{bottom:660.745500px;}
.y14f{bottom:663.150000px;}
.y36{bottom:663.285000px;}
.yf2{bottom:663.969000px;}
.y118{bottom:667.503000px;}
.ycb{bottom:672.315000px;}
.y8d{bottom:673.825500px;}
.y5c{bottom:681.069000px;}
.y14e{bottom:683.475000px;}
.y11{bottom:683.683500px;}
.yf1{bottom:684.292500px;}
.y117{bottom:687.826500px;}
.y13e{bottom:690.579000px;}
.y8c{bottom:694.149000px;}
.y5b{bottom:701.392500px;}
.y10{bottom:701.616000px;}
.yf0{bottom:702.162000px;}
.y22{bottom:704.331000px;}
.yef{bottom:704.616000px;}
.y13d{bottom:710.902500px;}
.y8b{bottom:714.472500px;}
.y35{bottom:714.843000px;}
.yca{bottom:717.127500px;}
.yf{bottom:719.550000px;}
.y13a{bottom:720.039000px;}
.y5a{bottom:721.717500px;}
.yee{bottom:724.941000px;}
.y116{bottom:731.047500px;}
.y8a{bottom:732.342000px;}
.y89{bottom:734.796000px;}
.y34{bottom:735.166500px;}
.ye{bottom:737.482500px;}
.y13c{bottom:739.435500px;}
.y139{bottom:740.364000px;}
.y21{bottom:741.018000px;}
.y59{bottom:742.041000px;}
.yed{bottom:745.264500px;}
.y115{bottom:751.371000px;}
.y88{bottom:755.121000px;}
.yd{bottom:755.415000px;}
.y33{bottom:755.491500px;}
.y138{bottom:760.687500px;}
.y58{bottom:762.364500px;}
.y114{bottom:771.694500px;}
.yc{bottom:773.347500px;}
.y32{bottom:775.815000px;}
.y20{bottom:777.706500px;}
.y13b{bottom:780.583500px;}
.y137{bottom:781.011000px;}
.y57{bottom:782.688000px;}
.y87{bottom:786.001500px;}
.yec{bottom:788.143500px;}
.yb{bottom:789.039000px;}
.ya{bottom:791.280000px;}
.y113{bottom:792.019500px;}
.y31{bottom:796.138500px;}
.y136{bottom:801.334500px;}
.y56{bottom:803.011500px;}
.y86{bottom:806.326500px;}
.yeb{bottom:808.467000px;}
.y9{bottom:809.212500px;}
.y112{bottom:812.343000px;}
.y1f{bottom:814.393500px;}
.y30{bottom:816.462000px;}
.y55{bottom:823.335000px;}
.y85{bottom:826.650000px;}
.yea{bottom:828.790500px;}
.y111{bottom:830.212500px;}
.y110{bottom:832.666500px;}
.y1e{bottom:834.717000px;}
.y8{bottom:836.485500px;}
.y2f{bottom:836.785500px;}
.y135{bottom:837.862500px;}
.ye9{bottom:849.115500px;}
.y54{bottom:851.869500px;}
.y10f{bottom:852.990000px;}
.y1d{bottom:855.040500px;}
.yc8{bottom:865.758000px;}
.y84{bottom:868.711500px;}
.ye8{bottom:869.439000px;}
.y10e{bottom:873.313500px;}
.y1c{bottom:875.365500px;}
.y2e{bottom:880.008000px;}
.yc7{bottom:886.081500px;}
.y83{bottom:889.035000px;}
.y134{bottom:889.420500px;}
.ye7{bottom:889.762500px;}
.y53{bottom:893.016000px;}
.y10d{bottom:893.638500px;}
.y1b{bottom:895.689000px;}
.y7{bottom:896.896500px;}
.y2d{bottom:900.331500px;}
.ye6{bottom:907.632000px;}
.y82{bottom:909.360000px;}
.y133{bottom:909.744000px;}
.ye5{bottom:910.086000px;}
.y10c{bottom:913.962000px;}
.y1a{bottom:916.012500px;}
.yc6{bottom:916.974000px;}
.yb2{bottom:918.903000px;}
.y2c{bottom:920.655000px;}
.y52{bottom:929.232000px;}
.y81{bottom:929.683500px;}
.y132{bottom:930.069000px;}
.ye4{bottom:930.409500px;}
.y6{bottom:933.385500px;}
.y10b{bottom:934.285500px;}
.y19{bottom:936.336000px;}
.yb1{bottom:939.226500px;}
.y2b{bottom:940.978500px;}
.y51{bottom:949.557000px;}
.y80{bottom:950.007000px;}
.y131{bottom:950.392500px;}
.ye3{bottom:950.734500px;}
.y10a{bottom:952.155000px;}
.y5{bottom:954.306000px;}
.y109{bottom:954.609000px;}
.y2a{bottom:961.302000px;}
.yb0{bottom:970.117500px;}
.y130{bottom:970.716000px;}
.yc5{bottom:971.008500px;}
.y7f{bottom:972.837000px;}
.y18{bottom:973.023000px;}
.y7e{bottom:977.296500px;}
.y29{bottom:981.625500px;}
.ye2{bottom:987.262500px;}
.y7d{bottom:988.638000px;}
.yc4{bottom:991.333500px;}
.y50{bottom:992.485500px;}
.y17{bottom:993.348000px;}
.y108{bottom:997.830000px;}
.y4{bottom:999.774000px;}
.y28{bottom:1001.950500px;}
.yaf{bottom:1007.244000px;}
.yc3{bottom:1011.657000px;}
.y107{bottom:1018.155000px;}
.y3{bottom:1020.694500px;}
.y27{bottom:1022.274000px;}
.y7c{bottom:1027.999500px;}
.y16{bottom:1030.035000px;}
.yc2{bottom:1031.980500px;}
.y4b{bottom:1033.347000px;}
.y4f{bottom:1035.108000px;}
.ye1{bottom:1038.478500px;}
.y4e{bottom:1040.188500px;}
.y2{bottom:1041.616500px;}
.y26{bottom:1042.597500px;}
.y4c{bottom:1046.964000px;}
.y7b{bottom:1048.324500px;}
.yc1{bottom:1052.304000px;}
.y4d{bottom:1053.538500px;}
.yae{bottom:1058.802000px;}
.y25{bottom:1062.921000px;}
.y15{bottom:1066.722000px;}
.yc0{bottom:1072.627500px;}
.y1{bottom:1074.493500px;}
.yad{bottom:1079.125500px;}
.y24{bottom:1083.244500px;}
.y79{bottom:1090.386000px;}
.yac{bottom:1099.449000px;}
.ybf{bottom:1101.160500px;}
.y7a{bottom:1102.845000px;}
.y14{bottom:1103.409000px;}
.y23{bottom:1103.569500px;}
.y78{bottom:1119.774000px;}
.y13{bottom:1140.097500px;}
.ybe{bottom:1142.308500px;}
.h1f{height:2.391024px;}
.h20{height:8.549503px;}
.h2e{height:13.053450px;}
.h16{height:13.055024px;}
.h13{height:26.899200px;}
.h7{height:27.783619px;}
.h1c{height:33.665702px;}
.h1b{height:35.865450px;}
.h1e{height:38.519654px;}
.h18{height:39.253200px;}
.h1d{height:40.348800px;}
.h17{height:41.953200px;}
.h8{height:42.799330px;}
.h2a{height:43.369200px;}
.h6{height:44.831700px;}
.h11{height:45.425492px;}
.h9{height:46.326090px;}
.hf{height:46.865494px;}
.hd{height:49.090950px;}
.h3{height:50.498765px;}
.ha{height:50.547024px;}
.he{height:50.727315px;}
.h19{height:51.341503px;}
.h33{height:51.963024px;}
.h32{height:51.969024px;}
.h34{height:52.227024px;}
.h10{height:52.233024px;}
.h5{height:53.319835px;}
.h4{height:53.798400px;}
.h31{height:55.591680px;}
.hb{height:58.385503px;}
.h22{height:58.413450px;}
.h12{height:59.619450px;}
.h2d{height:60.597024px;}
.h25{height:62.889450px;}
.hc{height:64.557900px;}
.h35{height:66.709830px;}
.h15{height:70.161024px;}
.h30{height:74.409450px;}
.h2c{height:74.927503px;}
.h2{height:77.366008px;}
.h2f{height:77.405503px;}
.h26{height:77.817450px;}
.h27{height:83.169024px;}
.h14{height:97.517702px;}
.h1a{height:103.283503px;}
.h21{height:103.899450px;}
.h2b{height:114.573024px;}
.h29{height:126.793200px;}
.h24{height:133.371024px;}
.h28{height:144.261024px;}
.h23{height:167.103450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:105.228000px;}
.x1{left:106.351500px;}
.xc3{left:114.318000px;}
.x30{left:118.572000px;}
.x13c{left:120.630000px;}
.x2b{left:122.662500px;}
.x31{left:124.809000px;}
.x95{left:126.298500px;}
.x2a{left:130.845000px;}
.xbd{left:132.853500px;}
.xd7{left:135.439500px;}
.x126{left:138.640500px;}
.xd8{left:139.984500px;}
.x3{left:141.313500px;}
.xec{left:143.025000px;}
.xc4{left:144.135000px;}
.x25{left:145.968000px;}
.x9{left:147.208500px;}
.xbe{left:150.334500px;}
.xfb{left:151.866000px;}
.x75{left:154.488000px;}
.xb6{left:157.602000px;}
.xfc{left:160.872000px;}
.xab{left:162.129000px;}
.xc5{left:164.880000px;}
.x53{left:166.515000px;}
.x132{left:168.429000px;}
.x8{left:169.624500px;}
.x127{left:174.394500px;}
.xbf{left:176.082000px;}
.x111{left:177.834000px;}
.x11c{left:178.957500px;}
.x47{left:180.109500px;}
.xa{left:181.675500px;}
.xac{left:184.702500px;}
.xf4{left:187.486500px;}
.xa3{left:190.570500px;}
.x66{left:191.976000px;}
.x2d{left:194.022000px;}
.xd9{left:195.555000px;}
.x6f{left:196.662000px;}
.x38{left:199.191000px;}
.x2e{left:200.259000px;}
.xfd{left:201.271500px;}
.xc0{left:202.662000px;}
.x107{left:203.679000px;}
.x2f{left:206.167500px;}
.xc6{left:207.394500px;}
.x11d{left:208.575000px;}
.x12b{left:209.632500px;}
.x39{left:211.591500px;}
.x12c{left:215.869500px;}
.x26{left:218.779500px;}
.x3a{left:220.809000px;}
.xd{left:222.624000px;}
.xe8{left:224.730000px;}
.xda{left:226.533000px;}
.x89{left:230.329500px;}
.xae{left:233.997000px;}
.xb0{left:238.150500px;}
.xad{left:239.704500px;}
.x3b{left:241.462500px;}
.xeb{left:244.236000px;}
.xe{left:245.455500px;}
.x80{left:246.622500px;}
.x112{left:248.197500px;}
.xc7{left:250.072500px;}
.xf{left:251.238000px;}
.xb1{left:254.173500px;}
.x10{left:256.635000px;}
.x1c{left:258.850500px;}
.x40{left:260.935500px;}
.x8c{left:262.170000px;}
.xc8{left:263.436000px;}
.x134{left:264.775500px;}
.x20{left:266.377500px;}
.x41{left:270.928500px;}
.x1d{left:273.177000px;}
.x110{left:275.421000px;}
.x101{left:276.603000px;}
.x1e{left:278.872500px;}
.xc9{left:281.152500px;}
.x81{left:282.558000px;}
.x1f{left:284.269500px;}
.x48{left:287.020500px;}
.xca{left:289.171500px;}
.xb2{left:291.819000px;}
.x49{left:292.930500px;}
.xf7{left:294.030000px;}
.xdb{left:295.731000px;}
.xa2{left:297.357000px;}
.x4a{left:302.542500px;}
.x9c{left:305.014500px;}
.xb3{left:306.750000px;}
.xee{left:308.310000px;}
.xa8{left:309.921000px;}
.x50{left:311.472000px;}
.xe9{left:313.035000px;}
.x4b{left:315.478500px;}
.xba{left:316.860000px;}
.x90{left:318.162000px;}
.x6{left:319.509000px;}
.x79{left:322.822500px;}
.x54{left:325.119000px;}
.x67{left:328.158000px;}
.xbb{left:329.209500px;}
.xcb{left:331.716000px;}
.x91{left:333.427500px;}
.x13b{left:335.934000px;}
.x5a{left:337.713000px;}
.x21{left:339.253500px;}
.xdc{left:340.530000px;}
.xea{left:343.189500px;}
.x4{left:344.646000px;}
.x135{left:346.170000px;}
.x2{left:349.365000px;}
.x22{left:350.877000px;}
.x5b{left:353.686500px;}
.x57{left:355.435500px;}
.xdd{left:356.943000px;}
.x11{left:358.746000px;}
.xde{left:361.488000px;}
.x116{left:362.965500px;}
.x88{left:364.585500px;}
.x4c{left:365.811000px;}
.x9d{left:368.064000px;}
.x12{left:369.954000px;}
.x74{left:371.817000px;}
.x13{left:375.738000px;}
.x4d{left:376.788000px;}
.xb7{left:378.147000px;}
.x5{left:380.164500px;}
.x12a{left:381.553500px;}
.x4e{left:383.025000px;}
.x117{left:384.723000px;}
.x113{left:386.049000px;}
.xdf{left:387.919500px;}
.x12d{left:389.383500px;}
.x7e{left:390.927000px;}
.x8d{left:393.612000px;}
.xb8{left:396.099000px;}
.x114{left:398.322000px;}
.xe0{left:400.647000px;}
.x12e{left:401.656500px;}
.x136{left:403.677000px;}
.x7c{left:404.935500px;}
.x14{left:406.783500px;}
.x131{left:407.998500px;}
.x4f{left:409.143000px;}
.xa4{left:410.806500px;}
.x8e{left:412.377000px;}
.x7{left:413.812500px;}
.xf0{left:414.934500px;}
.xe1{left:417.058500px;}
.x8f{left:418.285500px;}
.xe2{left:421.605000px;}
.x3e{left:422.830500px;}
.xc1{left:427.489500px;}
.x15{left:429.615000px;}
.x108{left:431.164500px;}
.x16{left:433.819500px;}
.x133{left:435.714000px;}
.x109{left:437.655000px;}
.xa5{left:439.519500px;}
.x29{left:442.366500px;}
.x3f{left:443.529000px;}
.x82{left:445.521000px;}
.x8a{left:448.059000px;}
.x70{left:450.324000px;}
.x7f{left:451.626000px;}
.x9f{left:454.536000px;}
.x11f{left:456.402000px;}
.xb4{left:457.482000px;}
.xe3{left:460.764000px;}
.x120{left:462.894000px;}
.xb{left:466.605000px;}
.xa9{left:467.958000px;}
.xe4{left:468.970500px;}
.x71{left:470.013000px;}
.x7d{left:471.327000px;}
.xaf{left:472.402500px;}
.xe5{left:473.515500px;}
.x42{left:477.109500px;}
.xc{left:478.419000px;}
.x17{left:479.887500px;}
.x13a{left:480.943500px;}
.xb5{left:483.364500px;}
.x7a{left:484.525500px;}
.x18{left:485.671500px;}
.x43{left:487.104000px;}
.x19{left:491.067000px;}
.x104{left:496.032000px;}
.xf1{left:497.794500px;}
.x1a{left:499.341000px;}
.x7b{left:500.515500px;}
.x11b{left:502.572000px;}
.x119{left:504.343500px;}
.xa0{left:509.523000px;}
.x1b{left:512.515500px;}
.x105{left:516.741000px;}
.xff{left:519.502500px;}
.x32{left:523.080000px;}
.x100{left:525.412500px;}
.x3c{left:526.848000px;}
.x102{left:532.288500px;}
.x55{left:535.116000px;}
.x5c{left:537.297000px;}
.xf2{left:539.310000px;}
.x33{left:541.356000px;}
.x3d{left:544.585500px;}
.x51{left:545.701500px;}
.x68{left:546.892500px;}
.x10e{left:547.998000px;}
.x103{left:550.975500px;}
.x27{left:553.618500px;}
.x96{left:555.307500px;}
.x76{left:556.530000px;}
.x52{left:558.637500px;}
.x87{left:563.211000px;}
.x28{left:565.432500px;}
.x9e{left:567.355500px;}
.x69{left:568.476000px;}
.x118{left:570.526500px;}
.xc2{left:576.688500px;}
.xe6{left:577.918500px;}
.xcc{left:578.935500px;}
.x6a{left:580.380000px;}
.x5d{left:581.599500px;}
.xef{left:584.218500px;}
.x138{left:585.571500px;}
.x5e{left:587.989500px;}
.x77{left:590.233500px;}
.xe7{left:591.765000px;}
.x5f{left:593.898000px;}
.xcd{left:595.626000px;}
.x121{left:597.327000px;}
.x10a{left:599.013000px;}
.xce{left:600.171000px;}
.x122{left:603.817500px;}
.x8b{left:605.340000px;}
.x10f{left:606.483000px;}
.x23{left:607.563000px;}
.x10b{left:611.286000px;}
.x97{left:617.488500px;}
.x12f{left:618.990000px;}
.xfe{left:620.314500px;}
.x60{left:622.156500px;}
.x24{left:624.240000px;}
.x130{left:626.295000px;}
.xcf{left:627.501000px;}
.x139{left:629.949000px;}
.x92{left:631.908000px;}
.x123{left:633.451500px;}
.x61{left:635.412000px;}
.xa6{left:638.182500px;}
.xd0{left:640.227000px;}
.x58{left:641.682000px;}
.x6b{left:643.906500px;}
.xbc{left:645.537000px;}
.x93{left:647.175000px;}
.x62{left:649.102500px;}
.xaa{left:650.697000px;}
.x78{left:652.065000px;}
.x94{left:653.410500px;}
.x6c{left:655.579500px;}
.xd1{left:656.919000px;}
.x44{left:658.921500px;}
.xd2{left:661.464000px;}
.xed{left:663.414000px;}
.x6d{left:665.488500px;}
.x45{left:668.916000px;}
.xa7{left:671.842500px;}
.x63{left:673.293000px;}
.x106{left:674.872500px;}
.x6e{left:677.394000px;}
.x64{left:679.681500px;}
.x115{left:684.460500px;}
.x65{left:685.590000px;}
.xd3{left:688.930500px;}
.x11a{left:691.236000px;}
.xf8{left:692.950500px;}
.x72{left:694.591500px;}
.x59{left:697.858500px;}
.xf9{left:698.859000px;}
.xd4{left:701.656500px;}
.x73{left:706.684500px;}
.x98{left:708.802500px;}
.xd5{left:710.002500px;}
.x83{left:712.176000px;}
.xd6{left:714.547500px;}
.xf5{left:717.241500px;}
.xf3{left:719.953500px;}
.x84{left:722.541000px;}
.x10c{left:724.180500px;}
.x99{left:725.251500px;}
.x85{left:727.986000px;}
.x10d{left:730.672500px;}
.x137{left:731.727000px;}
.x86{left:732.978000px;}
.x34{left:734.572500px;}
.x128{left:736.086000px;}
.xfa{left:737.089500px;}
.x124{left:738.643500px;}
.x9a{left:741.046500px;}
.x125{left:744.552000px;}
.xb9{left:745.621500px;}
.x35{left:746.845500px;}
.x9b{left:748.146000px;}
.x129{left:751.353000px;}
.x36{left:753.336000px;}
.x37{left:759.246000px;}
.x46{left:760.276500px;}
.xf6{left:762.015000px;}
.xa1{left:773.923500px;}
.x11e{left:779.833500px;}
.x56{left:784.252500px;}
@media print{
.v10{vertical-align:-47.200000pt;}
.v11{vertical-align:-44.298667pt;}
.vf{vertical-align:-41.706667pt;}
.v5{vertical-align:-20.314667pt;}
.v26{vertical-align:-14.682667pt;}
.v6{vertical-align:-9.242667pt;}
.v2{vertical-align:-7.968000pt;}
.vc{vertical-align:-6.261333pt;}
.v0{vertical-align:0.000000pt;}
.v27{vertical-align:9.242667pt;}
.vb{vertical-align:10.981333pt;}
.va{vertical-align:13.381333pt;}
.v19{vertical-align:14.384000pt;}
.v29{vertical-align:16.906667pt;}
.v12{vertical-align:20.042667pt;}
.v4{vertical-align:21.114667pt;}
.v28{vertical-align:22.906667pt;}
.v17{vertical-align:24.021333pt;}
.ve{vertical-align:31.184000pt;}
.v2a{vertical-align:34.261333pt;}
.v1a{vertical-align:37.290667pt;}
.vd{vertical-align:39.909333pt;}
.v25{vertical-align:41.109333pt;}
.v1{vertical-align:42.805333pt;}
.v3{vertical-align:44.304000pt;}
.v22{vertical-align:45.333333pt;}
.v14{vertical-align:47.456000pt;}
.v21{vertical-align:52.480000pt;}
.v9{vertical-align:56.757333pt;}
.v18{vertical-align:58.682667pt;}
.v7{vertical-align:60.240000pt;}
.v1d{vertical-align:65.866667pt;}
.v1b{vertical-align:71.802667pt;}
.v8{vertical-align:73.584000pt;}
.v15{vertical-align:86.816000pt;}
.v23{vertical-align:88.794667pt;}
.v1f{vertical-align:89.888000pt;}
.v16{vertical-align:95.541333pt;}
.v20{vertical-align:96.778667pt;}
.v24{vertical-align:99.717333pt;}
.v1e{vertical-align:110.165333pt;}
.v13{vertical-align:116.426667pt;}
.v1c{vertical-align:126.106667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.000522pt;}
.ls69{letter-spacing:0.000552pt;}
.ls23{letter-spacing:0.000626pt;}
.ls62{letter-spacing:0.000749pt;}
.ls86{letter-spacing:0.000932pt;}
.ls80{letter-spacing:0.000933pt;}
.ls61{letter-spacing:0.001431pt;}
.ls40{letter-spacing:0.001546pt;}
.ls5b{letter-spacing:0.001788pt;}
.ls56{letter-spacing:0.002405pt;}
.ls15{letter-spacing:0.002879pt;}
.ls2f{letter-spacing:0.002881pt;}
.lsf{letter-spacing:0.003370pt;}
.ls1d{letter-spacing:0.003521pt;}
.ls7c{letter-spacing:0.003854pt;}
.ls2d{letter-spacing:0.003861pt;}
.ls3b{letter-spacing:0.005109pt;}
.ls51{letter-spacing:0.005650pt;}
.ls45{letter-spacing:0.006082pt;}
.ls98{letter-spacing:0.008063pt;}
.ls21{letter-spacing:0.008658pt;}
.ls26{letter-spacing:0.013991pt;}
.lsa1{letter-spacing:0.016363pt;}
.ls77{letter-spacing:0.026529pt;}
.ls55{letter-spacing:0.027523pt;}
.ls24{letter-spacing:1.142071pt;}
.ls27{letter-spacing:1.147404pt;}
.ls6a{letter-spacing:1.275216pt;}
.ls6b{letter-spacing:1.522961pt;}
.ls73{letter-spacing:1.599950pt;}
.ls78{letter-spacing:1.605284pt;}
.ls7a{letter-spacing:1.626964pt;}
.ls63{letter-spacing:1.629092pt;}
.ls1{letter-spacing:1.903624pt;}
.ls3e{letter-spacing:2.077981pt;}
.lsd{letter-spacing:2.084280pt;}
.ls95{letter-spacing:2.086727pt;}
.ls57{letter-spacing:2.090615pt;}
.ls18{letter-spacing:2.098353pt;}
.ls13{letter-spacing:2.650641pt;}
.ls3a{letter-spacing:2.653258pt;}
.ls1a{letter-spacing:2.653816pt;}
.ls14{letter-spacing:2.656473pt;}
.ls79{letter-spacing:2.656528pt;}
.ls4b{letter-spacing:2.658066pt;}
.ls7f{letter-spacing:2.658591pt;}
.ls1e{letter-spacing:2.659149pt;}
.ls74{letter-spacing:2.661861pt;}
.ls64{letter-spacing:6.400098pt;}
.ls42{letter-spacing:6.458187pt;}
.ls1b{letter-spacing:6.574551pt;}
.ls44{letter-spacing:8.177357pt;}
.ls47{letter-spacing:8.192749pt;}
.ls35{letter-spacing:9.658190pt;}
.ls76{letter-spacing:9.693784pt;}
.ls66{letter-spacing:9.699521pt;}
.ls1c{letter-spacing:9.716372pt;}
.ls97{letter-spacing:11.782727pt;}
.ls8f{letter-spacing:11.783250pt;}
.ls37{letter-spacing:12.218192pt;}
.ls22{letter-spacing:12.349258pt;}
.ls70{letter-spacing:12.354066pt;}
.ls96{letter-spacing:12.355149pt;}
.ls39{letter-spacing:12.808483pt;}
.ls81{letter-spacing:12.858193pt;}
.ls17{letter-spacing:12.916374pt;}
.ls5a{letter-spacing:12.929788pt;}
.ls16{letter-spacing:12.931521pt;}
.ls67{letter-spacing:12.934082pt;}
.ls53{letter-spacing:12.935121pt;}
.ls2a{letter-spacing:12.974556pt;}
.ls72{letter-spacing:13.169788pt;}
.ls71{letter-spacing:14.720012pt;}
.ls87{letter-spacing:15.581258pt;}
.ls20{letter-spacing:15.586591pt;}
.ls8{letter-spacing:16.058195pt;}
.ls65{letter-spacing:16.071925pt;}
.ls92{letter-spacing:16.116377pt;}
.ls6f{letter-spacing:16.117116pt;}
.ls75{letter-spacing:16.159477pt;}
.ls49{letter-spacing:16.163430pt;}
.ls1f{letter-spacing:16.174559pt;}
.ls48{letter-spacing:16.450355pt;}
.ls9e{letter-spacing:17.105469pt;}
.lsa2{letter-spacing:17.512742pt;}
.lsb{letter-spacing:17.528451pt;}
.ls0{letter-spacing:17.746711pt;}
.ls3{letter-spacing:17.852979pt;}
.ls82{letter-spacing:17.861833pt;}
.ls8c{letter-spacing:18.152742pt;}
.ls9a{letter-spacing:18.327288pt;}
.ls11{letter-spacing:18.443652pt;}
.ls7{letter-spacing:18.501834pt;}
.ls9f{letter-spacing:18.813258pt;}
.ls4e{letter-spacing:18.818066pt;}
.ls9b{letter-spacing:18.818591pt;}
.ls9c{letter-spacing:18.855925pt;}
.ls60{letter-spacing:18.909107pt;}
.ls91{letter-spacing:19.083652pt;}
.ls7e{letter-spacing:19.141834pt;}
.ls2{letter-spacing:19.192855pt;}
.ls7d{letter-spacing:19.200016pt;}
.ls90{letter-spacing:19.258198pt;}
.ls54{letter-spacing:19.300811pt;}
.ls68{letter-spacing:19.306144pt;}
.ls9{letter-spacing:19.316380pt;}
.lsa{letter-spacing:19.374562pt;}
.ls5{letter-spacing:19.432743pt;}
.ls8d{letter-spacing:19.490925pt;}
.ls12{letter-spacing:19.607289pt;}
.lsa0{letter-spacing:19.665471pt;}
.ls10{letter-spacing:19.723653pt;}
.ls9d{letter-spacing:19.781835pt;}
.ls8e{letter-spacing:19.805784pt;}
.lse{letter-spacing:20.030188pt;}
.ls93{letter-spacing:20.596381pt;}
.ls38{letter-spacing:21.178199pt;}
.ls6d{letter-spacing:21.236381pt;}
.ls8b{letter-spacing:21.352745pt;}
.ls5f{letter-spacing:21.760018pt;}
.ls2e{letter-spacing:22.045258pt;}
.ls4a{letter-spacing:22.050066pt;}
.ls30{letter-spacing:22.050591pt;}
.ls6e{letter-spacing:22.516382pt;}
.ls3d{letter-spacing:22.632746pt;}
.ls8a{letter-spacing:22.786591pt;}
.ls5e{letter-spacing:22.981837pt;}
.ls3f{letter-spacing:23.609490pt;}
.ls19{letter-spacing:23.614824pt;}
.ls33{letter-spacing:23.910400pt;}
.ls5d{letter-spacing:26.880022pt;}
.lsc{letter-spacing:27.229114pt;}
.ls3c{letter-spacing:28.509258pt;}
.ls6{letter-spacing:29.090933pt;}
.ls4c{letter-spacing:29.091118pt;}
.ls59{letter-spacing:29.095121pt;}
.ls52{letter-spacing:31.746591pt;}
.ls94{letter-spacing:32.232754pt;}
.ls34{letter-spacing:32.349118pt;}
.ls4f{letter-spacing:35.549121pt;}
.ls28{letter-spacing:48.069806pt;}
.ls7b{letter-spacing:57.018229pt;}
.ls50{letter-spacing:58.705503pt;}
.ls99{letter-spacing:60.834591pt;}
.ls25{letter-spacing:60.997806pt;}
.ls58{letter-spacing:70.717258pt;}
.ls4d{letter-spacing:126.080105pt;}
.ls6c{letter-spacing:157.556495pt;}
.ls29{letter-spacing:237.091107pt;}
.ls83{letter-spacing:308.845258pt;}
.ls31{letter-spacing:372.359925pt;}
.ls5c{letter-spacing:373.469402pt;}
.ls2c{letter-spacing:394.989258pt;}
.ls32{letter-spacing:405.527611pt;}
.ls2b{letter-spacing:415.011255pt;}
.ls84{letter-spacing:415.127619pt;}
.ls89{letter-spacing:478.877258pt;}
.ls88{letter-spacing:684.077258pt;}
.ls85{letter-spacing:700.975130pt;}
.ls41{letter-spacing:702.313313pt;}
.ls43{letter-spacing:756.422449pt;}
.ls36{letter-spacing:861.964355pt;}
.ws93{word-spacing:-58.181867pt;}
.ws18{word-spacing:-43.038600pt;}
.ws69{word-spacing:-42.066082pt;}
.ws86{word-spacing:-42.007308pt;}
.ws34{word-spacing:-37.899668pt;}
.wsd{word-spacing:-34.611401pt;}
.wsb4{word-spacing:-33.454573pt;}
.ws6d{word-spacing:-32.063846pt;}
.ws24{word-spacing:-29.736752pt;}
.ws87{word-spacing:-29.521250pt;}
.ws2f{word-spacing:-29.090933pt;}
.ws46{word-spacing:-28.183296pt;}
.ws4{word-spacing:-26.566933pt;}
.ws8c{word-spacing:-26.122909pt;}
.ws63{word-spacing:-26.088749pt;}
.ws73{word-spacing:-24.575109pt;}
.ws8a{word-spacing:-23.338405pt;}
.ws88{word-spacing:-18.525106pt;}
.ws57{word-spacing:-16.820378pt;}
.ws83{word-spacing:-16.174559pt;}
.ws33{word-spacing:-16.162923pt;}
.wsf0{word-spacing:-15.069103pt;}
.ws3b{word-spacing:-14.346200pt;}
.ws82{word-spacing:-14.254557pt;}
.wsa5{word-spacing:-14.080012pt;}
.ws3e{word-spacing:-14.021830pt;}
.wsb6{word-spacing:-13.963648pt;}
.wse1{word-spacing:-13.556375pt;}
.ws3c{word-spacing:-13.498193pt;}
.wsb8{word-spacing:-13.381829pt;}
.wsf7{word-spacing:-13.323647pt;}
.ws61{word-spacing:-13.149102pt;}
.ws29{word-spacing:-13.032738pt;}
.ws7d{word-spacing:-12.974556pt;}
.ws11{word-spacing:-12.911530pt;}
.ws3f{word-spacing:-12.864011pt;}
.ws102{word-spacing:-12.858193pt;}
.ws42{word-spacing:-12.800011pt;}
.ws16{word-spacing:-12.327057pt;}
.wsc7{word-spacing:-12.101828pt;}
.wsf4{word-spacing:-11.985465pt;}
.ws60{word-spacing:-11.955200pt;}
.wsf3{word-spacing:-11.869101pt;}
.wsb9{word-spacing:-11.810919pt;}
.wsa6{word-spacing:-11.752737pt;}
.ws3d{word-spacing:-11.694555pt;}
.ws58{word-spacing:-11.636373pt;}
.ws4a{word-spacing:-11.578191pt;}
.ws9f{word-spacing:-11.520010pt;}
.wsd4{word-spacing:-11.461828pt;}
.wsca{word-spacing:-11.345464pt;}
.wscf{word-spacing:-11.287282pt;}
.ws1b{word-spacing:-11.170918pt;}
.ws48{word-spacing:-11.112737pt;}
.ws2d{word-spacing:-11.054555pt;}
.ws76{word-spacing:-10.996373pt;}
.wsc2{word-spacing:-10.938191pt;}
.wsb5{word-spacing:-10.880009pt;}
.ws84{word-spacing:-10.821827pt;}
.wse8{word-spacing:-10.763645pt;}
.ws85{word-spacing:-10.703738pt;}
.ws91{word-spacing:-10.698405pt;}
.wsc8{word-spacing:-10.653100pt;}
.ws45{word-spacing:-10.647282pt;}
.ws49{word-spacing:-10.594918pt;}
.ws25{word-spacing:-10.589100pt;}
.wsf5{word-spacing:-10.478554pt;}
.ws3{word-spacing:-10.431311pt;}
.wse6{word-spacing:-10.414554pt;}
.wsef{word-spacing:-10.362190pt;}
.ws2e{word-spacing:-10.187645pt;}
.ws7c{word-spacing:-10.181827pt;}
.ws59{word-spacing:-10.123645pt;}
.ws5a{word-spacing:-10.065463pt;}
.ws36{word-spacing:-10.007281pt;}
.ws9d{word-spacing:-9.949099pt;}
.ws81{word-spacing:-9.890917pt;}
.ws4f{word-spacing:-9.832735pt;}
.ws22{word-spacing:-9.774554pt;}
.ws1c{word-spacing:-9.716372pt;}
.ws26{word-spacing:-9.664008pt;}
.ws1f{word-spacing:-9.658190pt;}
.ws2a{word-spacing:-9.600008pt;}
.ws28{word-spacing:-9.541826pt;}
.ws2c{word-spacing:-9.483644pt;}
.ws38{word-spacing:-9.425462pt;}
.ws37{word-spacing:-9.367281pt;}
.ws5b{word-spacing:-9.314917pt;}
.wsf1{word-spacing:-9.309099pt;}
.ws101{word-spacing:-9.198553pt;}
.ws9a{word-spacing:-9.192735pt;}
.ws6a{word-spacing:-9.082189pt;}
.ws95{word-spacing:-9.076371pt;}
.ws50{word-spacing:-9.024008pt;}
.ws7{word-spacing:-8.979623pt;}
.ws23{word-spacing:-8.965826pt;}
.ws67{word-spacing:-8.960007pt;}
.ws5{word-spacing:-8.926490pt;}
.ws27{word-spacing:-8.907644pt;}
.ws3a{word-spacing:-8.901826pt;}
.wsa4{word-spacing:-8.849462pt;}
.ws9{word-spacing:-8.820222pt;}
.wsd0{word-spacing:-8.791280pt;}
.wsb{word-spacing:-8.767088pt;}
.ws2b{word-spacing:-8.733098pt;}
.wse{word-spacing:-8.713954pt;}
.wse2{word-spacing:-8.616734pt;}
.wsc9{word-spacing:-8.558553pt;}
.wse4{word-spacing:-8.552734pt;}
.wsde{word-spacing:-8.500371pt;}
.wsd7{word-spacing:-8.494553pt;}
.wsd6{word-spacing:-8.436371pt;}
.ws71{word-spacing:-8.411679pt;}
.wsf2{word-spacing:-8.320007pt;}
.ws8{word-spacing:-8.294197pt;}
.ws7e{word-spacing:-8.261825pt;}
.ws6b{word-spacing:-8.220396pt;}
.ws4e{word-spacing:-8.172575pt;}
.wsa8{word-spacing:-8.145461pt;}
.ws12{word-spacing:-8.134795pt;}
.ws6c{word-spacing:-8.124754pt;}
.wse7{word-spacing:-8.087279pt;}
.wsa{word-spacing:-8.081661pt;}
.ws70{word-spacing:-7.981292pt;}
.wse3{word-spacing:-7.918552pt;}
.ws64{word-spacing:-7.912734pt;}
.ws72{word-spacing:-7.885650pt;}
.ws7f{word-spacing:-7.796370pt;}
.wsbc{word-spacing:-7.738188pt;}
.wsdb{word-spacing:-7.627643pt;}
.wseb{word-spacing:-7.621825pt;}
.wsa7{word-spacing:-7.569461pt;}
.ws74{word-spacing:-7.563643pt;}
.wscc{word-spacing:-7.505461pt;}
.wsf{word-spacing:-7.385607pt;}
.ws103{word-spacing:-7.272733pt;}
.wsaa{word-spacing:-7.214551pt;}
.wsdf{word-spacing:-6.981824pt;}
.ws6{word-spacing:-6.912716pt;}
.wsea{word-spacing:-6.807278pt;}
.ws104{word-spacing:-6.754915pt;}
.wsbb{word-spacing:-6.632733pt;}
.wsba{word-spacing:-6.574551pt;}
.wscd{word-spacing:-6.458187pt;}
.wsce{word-spacing:-6.400005pt;}
.wse9{word-spacing:-6.341823pt;}
.ws7a{word-spacing:-6.167278pt;}
.ws79{word-spacing:-6.109096pt;}
.ws89{word-spacing:-5.748368pt;}
.ws8b{word-spacing:-5.723712pt;}
.wsee{word-spacing:-5.527277pt;}
.wse0{word-spacing:-5.474914pt;}
.ws80{word-spacing:-5.236368pt;}
.wsff{word-spacing:-4.945459pt;}
.wsfd{word-spacing:-4.887277pt;}
.ws78{word-spacing:-4.770913pt;}
.wsdd{word-spacing:-4.712731pt;}
.wsbe{word-spacing:-4.654549pt;}
.ws100{word-spacing:-4.602186pt;}
.wsbf{word-spacing:-4.596367pt;}
.wsdc{word-spacing:-4.369458pt;}
.wsec{word-spacing:-4.311276pt;}
.ws105{word-spacing:-4.305458pt;}
.ws4d{word-spacing:-3.840003pt;}
.ws65{word-spacing:-3.723639pt;}
.ws4c{word-spacing:-3.607276pt;}
.ws30{word-spacing:-3.549094pt;}
.wsfe{word-spacing:-3.496730pt;}
.ws66{word-spacing:-3.438548pt;}
.ws39{word-spacing:-3.432730pt;}
.ws4b{word-spacing:-3.380366pt;}
.ws51{word-spacing:-3.374548pt;}
.ws35{word-spacing:-3.316366pt;}
.ws97{word-spacing:-3.246548pt;}
.wsc5{word-spacing:-3.200003pt;}
.ws98{word-spacing:-3.188366pt;}
.ws31{word-spacing:-3.083639pt;}
.wsc1{word-spacing:-2.967275pt;}
.wsed{word-spacing:-2.909093pt;}
.ws9b{word-spacing:-2.897457pt;}
.wscb{word-spacing:-2.792730pt;}
.ws13{word-spacing:-2.709827pt;}
.ws6e{word-spacing:-2.701875pt;}
.ws47{word-spacing:-2.676366pt;}
.ws77{word-spacing:-2.210911pt;}
.ws40{word-spacing:-1.978183pt;}
.wsfc{word-spacing:-1.803638pt;}
.ws41{word-spacing:-1.687274pt;}
.wsc6{word-spacing:-1.454547pt;}
.wsd8{word-spacing:-1.221819pt;}
.ws21{word-spacing:-1.163637pt;}
.wsda{word-spacing:-1.047274pt;}
.ws43{word-spacing:-0.872728pt;}
.wsa1{word-spacing:-0.221091pt;}
.ws44{word-spacing:-0.058182pt;}
.ws53{word-spacing:-0.046545pt;}
.ws52{word-spacing:-0.042507pt;}
.ws90{word-spacing:-0.035554pt;}
.ws56{word-spacing:-0.031881pt;}
.ws17{word-spacing:0.000000pt;}
.ws54{word-spacing:0.011636pt;}
.wsc3{word-spacing:0.058182pt;}
.wsc{word-spacing:0.063761pt;}
.wsa3{word-spacing:0.128000pt;}
.wsc0{word-spacing:0.186182pt;}
.wsf6{word-spacing:0.244364pt;}
.wsd3{word-spacing:0.302546pt;}
.ws6f{word-spacing:0.358656pt;}
.ws99{word-spacing:1.175274pt;}
.wse5{word-spacing:2.164365pt;}
.ws10{word-spacing:2.720454pt;}
.ws15{word-spacing:3.039257pt;}
.ws9e{word-spacing:3.211639pt;}
.ws96{word-spacing:3.269821pt;}
.wsbd{word-spacing:3.560730pt;}
.ws9c{word-spacing:3.735276pt;}
.wsa9{word-spacing:4.782549pt;}
.ws8e{word-spacing:7.879871pt;}
.ws62{word-spacing:8.978345pt;}
.ws14{word-spacing:8.990250pt;}
.ws1e{word-spacing:9.192735pt;}
.ws1d{word-spacing:9.250917pt;}
.wsb7{word-spacing:9.600008pt;}
.ws32{word-spacing:11.357100pt;}
.wsb3{word-spacing:14.370921pt;}
.wsa2{word-spacing:15.450750pt;}
.ws8f{word-spacing:15.546750pt;}
.ws68{word-spacing:16.128013pt;}
.wsc4{word-spacing:16.535287pt;}
.ws92{word-spacing:18.794167pt;}
.ws1a{word-spacing:20.363653pt;}
.ws94{word-spacing:22.008612pt;}
.ws2{word-spacing:22.252612pt;}
.wsd9{word-spacing:23.563656pt;}
.wsd5{word-spacing:23.621838pt;}
.wsfb{word-spacing:25.076385pt;}
.wsa0{word-spacing:25.367294pt;}
.wsf8{word-spacing:25.890931pt;}
.ws7b{word-spacing:25.949113pt;}
.ws1{word-spacing:27.636455pt;}
.ws0{word-spacing:27.820086pt;}
.wsd2{word-spacing:29.207297pt;}
.wsb1{word-spacing:30.312753pt;}
.wsd1{word-spacing:33.629119pt;}
.ws5c{word-spacing:34.676393pt;}
.wsf9{word-spacing:37.469122pt;}
.wsb2{word-spacing:39.563669pt;}
.ws20{word-spacing:43.038600pt;}
.wsb0{word-spacing:44.392764pt;}
.wsab{word-spacing:49.221859pt;}
.wsad{word-spacing:54.050954pt;}
.wsfa{word-spacing:62.952780pt;}
.wsac{word-spacing:83.141887pt;}
.ws55{word-spacing:88.180437pt;}
.wsae{word-spacing:99.316446pt;}
.ws8d{word-spacing:106.855400pt;}
.wsaf{word-spacing:113.861913pt;}
.ws5d{word-spacing:151.912854pt;}
.ws75{word-spacing:224.675096pt;}
.ws5e{word-spacing:256.651850pt;}
.ws5f{word-spacing:301.917343pt;}
.ws19{word-spacing:2090.492360pt;}
._e{margin-left:-29.149115pt;}
._1f{margin-left:-9.564133pt;}
._0{margin-left:-7.253422pt;}
._13{margin-left:-6.334484pt;}
._3{margin-left:-5.164646pt;}
._20{margin-left:-4.150224pt;}
._2{margin-left:-3.188053pt;}
._1{margin-left:-2.203571pt;}
._5{margin-left:-0.895562pt;}
._34{width:0.892655pt;}
._4{width:1.785310pt;}
._19{width:3.188053pt;}
._28{width:6.572002pt;}
._38{width:8.561364pt;}
._39{width:9.716372pt;}
._55{width:14.566482pt;}
._7{width:15.699573pt;}
._23{width:17.505402pt;}
._21{width:18.985617pt;}
._29{width:19.924681pt;}
._1d{width:21.131006pt;}
._11{width:22.357331pt;}
._6{width:23.432035pt;}
._1b{width:25.033697pt;}
._1a{width:25.940471pt;}
._1c{width:27.461841pt;}
._4a{width:28.386615pt;}
._22{width:29.528484pt;}
._25{width:30.479958pt;}
._3a{width:31.930857pt;}
._35{width:33.738143pt;}
._48{width:35.425417pt;}
._4b{width:36.379161pt;}
._37{width:37.369554pt;}
._4c{width:39.136469pt;}
._15{width:40.727307pt;}
._36{width:42.061057pt;}
._33{width:43.632105pt;}
._14{width:46.672845pt;}
._24{width:47.592767pt;}
._9{width:53.818227pt;}
._d{width:55.078939pt;}
._10{width:56.370889pt;}
._12{width:57.367321pt;}
._49{width:58.425582pt;}
._c{width:59.461868pt;}
._27{width:63.369347pt;}
._3b{width:64.341805pt;}
._32{width:71.731200pt;}
._51{width:79.992727pt;}
._4e{width:83.956434pt;}
._1e{width:86.077200pt;}
._44{width:92.041268pt;}
._3f{width:101.757640pt;}
._50{width:106.589180pt;}
._47{width:110.561041pt;}
._3d{width:130.851018pt;}
._46{width:142.778301pt;}
._53{width:143.767393pt;}
._41{width:147.025577pt;}
._26{width:159.011042pt;}
._43{width:176.058329pt;}
._2b{width:181.001342pt;}
._31{width:188.567430pt;}
._2e{width:203.694715pt;}
._54{width:205.498353pt;}
._3e{width:207.301991pt;}
._3c{width:219.520183pt;}
._40{width:227.607462pt;}
._42{width:229.934737pt;}
._45{width:256.542178pt;}
._52{width:266.938404pt;}
._2a{width:295.447519pt;}
._30{width:312.145715pt;}
._2f{width:314.472989pt;}
._2c{width:326.691181pt;}
._4f{width:331.520276pt;}
._2d{width:340.654829pt;}
._4d{width:633.484164pt;}
._18{width:693.546179pt;}
._b{width:1577.521607pt;}
._a{width:1675.594550pt;}
._17{width:1918.266790pt;}
._8{width:1929.700305pt;}
._16{width:1992.973734pt;}
._f{width:2082.759990pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:54.637333pt;}
.yab{bottom:90.261333pt;}
.y77{bottom:94.488000pt;}
.y76{bottom:109.100000pt;}
.ye0{bottom:112.553333pt;}
.y12f{bottom:115.306667pt;}
.ya9{bottom:120.398667pt;}
.ya5{bottom:120.516000pt;}
.y75{bottom:123.712000pt;}
.y162{bottom:126.902667pt;}
.ydf{bottom:130.620000pt;}
.ya6{bottom:131.966667pt;}
.y4a{bottom:131.989333pt;}
.y12e{bottom:133.372000pt;}
.ya4{bottom:136.982667pt;}
.y74{bottom:138.324000pt;}
.y161{bottom:144.968000pt;}
.yaa{bottom:148.057333pt;}
.ya8{bottom:149.917333pt;}
.y12d{bottom:151.437333pt;}
.y72{bottom:152.936000pt;}
.y49{bottom:153.250667pt;}
.ya7{bottom:153.902667pt;}
.yde{bottom:158.078667pt;}
.y160{bottom:163.033333pt;}
.y73{bottom:163.362667pt;}
.y71{bottom:167.548000pt;}
.y106{bottom:168.734667pt;}
.y12c{bottom:169.502667pt;}
.y48{bottom:171.316000pt;}
.y70{bottom:172.626667pt;}
.ya3{bottom:174.705333pt;}
.y105{bottom:186.800000pt;}
.y6f{bottom:187.238667pt;}
.y12b{bottom:187.569333pt;}
.y47{bottom:189.381333pt;}
.y15f{bottom:193.054667pt;}
.ydd{bottom:196.970667pt;}
.ya2{bottom:200.828000pt;}
.y104{bottom:204.865333pt;}
.y6e{bottom:205.121333pt;}
.y12a{bottom:205.634667pt;}
.y46{bottom:207.446667pt;}
.y15e{bottom:211.120000pt;}
.ybd{bottom:214.145333pt;}
.ydc{bottom:215.036000pt;}
.y6d{bottom:216.908000pt;}
.y129{bottom:223.700000pt;}
.ya1{bottom:229.645333pt;}
.ydb{bottom:233.101333pt;}
.y15d{bottom:241.141333pt;}
.ybc{bottom:241.605333pt;}
.y128{bottom:241.765333pt;}
.y14d{bottom:242.702667pt;}
.y103{bottom:242.980000pt;}
.y45{bottom:250.533333pt;}
.yda{bottom:251.168000pt;}
.y9e{bottom:252.702667pt;}
.y6c{bottom:255.558667pt;}
.y15c{bottom:259.206667pt;}
.ya0{bottom:259.300000pt;}
.y14c{bottom:260.768000pt;}
.y102{bottom:261.046667pt;}
.y9f{bottom:263.212000pt;}
.y9d{bottom:264.153333pt;}
.y9c{bottom:265.573333pt;}
.y44{bottom:268.600000pt;}
.y9b{bottom:269.169333pt;}
.yd9{bottom:269.233333pt;}
.y6b{bottom:273.624000pt;}
.y15b{bottom:277.272000pt;}
.y101{bottom:279.112000pt;}
.y127{bottom:280.184000pt;}
.ybb{bottom:280.554667pt;}
.yd8{bottom:287.298667pt;}
.y126{bottom:298.249333pt;}
.yba{bottom:298.620000pt;}
.y6a{bottom:300.298667pt;}
.y43{bottom:305.174667pt;}
.y9a{bottom:305.929333pt;}
.y15a{bottom:307.293333pt;}
.y14b{bottom:308.268000pt;}
.y69{bottom:312.085333pt;}
.y125{bottom:316.316000pt;}
.yb9{bottom:316.686667pt;}
.y100{bottom:317.226667pt;}
.y99{bottom:323.996000pt;}
.y159{bottom:325.358667pt;}
.y14a{bottom:326.334667pt;}
.yd7{bottom:330.262667pt;}
.y124{bottom:334.381333pt;}
.yb8{bottom:334.752000pt;}
.yff{bottom:335.292000pt;}
.y42{bottom:338.042667pt;}
.y158{bottom:343.424000pt;}
.y149{bottom:344.400000pt;}
.yd6{bottom:348.328000pt;}
.y68{bottom:348.776000pt;}
.y98{bottom:351.454667pt;}
.yb7{bottom:352.817333pt;}
.yfe{bottom:353.358667pt;}
.y41{bottom:356.108000pt;}
.y148{bottom:362.465333pt;}
.yd5{bottom:366.393333pt;}
.y123{bottom:366.850667pt;}
.yb6{bottom:370.882667pt;}
.yfd{bottom:371.424000pt;}
.y67{bottom:372.120000pt;}
.y157{bottom:373.445333pt;}
.y40{bottom:374.174667pt;}
.y147{bottom:380.530667pt;}
.yd4{bottom:384.458667pt;}
.y66{bottom:384.906667pt;}
.yb5{bottom:388.948000pt;}
.y97{bottom:389.374667pt;}
.yfc{bottom:389.489333pt;}
.y156{bottom:391.510667pt;}
.y3f{bottom:392.240000pt;}
.y146{bottom:398.596000pt;}
.yd3{bottom:402.525333pt;}
.y65{bottom:402.972000pt;}
.yc9{bottom:403.501333pt;}
.y96{bottom:407.440000pt;}
.yfb{bottom:407.554667pt;}
.yb4{bottom:408.517333pt;}
.y3e{bottom:410.305333pt;}
.y122{bottom:412.680000pt;}
.y145{bottom:416.661333pt;}
.yd2{bottom:420.590667pt;}
.y64{bottom:421.037333pt;}
.y155{bottom:421.532000pt;}
.y95{bottom:425.506667pt;}
.yfa{bottom:425.620000pt;}
.y3d{bottom:428.370667pt;}
.y121{bottom:430.745333pt;}
.yd1{bottom:438.656000pt;}
.y154{bottom:439.597333pt;}
.y63{bottom:441.084000pt;}
.y144{bottom:442.024000pt;}
.yf9{bottom:443.686667pt;}
.y3c{bottom:446.436000pt;}
.y120{bottom:448.810667pt;}
.yb3{bottom:452.356000pt;}
.y94{bottom:452.956000pt;}
.yd0{bottom:456.721333pt;}
.y153{bottom:457.662667pt;}
.y62{bottom:460.901333pt;}
.yf8{bottom:461.752000pt;}
.y3b{bottom:464.502667pt;}
.y11f{bottom:466.876000pt;}
.y93{bottom:471.022667pt;}
.y61{bottom:475.966667pt;}
.y143{bottom:478.600000pt;}
.yf7{bottom:479.817333pt;}
.ycf{bottom:482.084000pt;}
.y11e{bottom:484.942667pt;}
.y152{bottom:487.682667pt;}
.y60{bottom:494.032000pt;}
.y142{bottom:496.666667pt;}
.yf6{bottom:497.882667pt;}
.y92{bottom:498.857333pt;}
.y3a{bottom:502.921333pt;}
.y11d{bottom:503.008000pt;}
.y151{bottom:505.749333pt;}
.y5f{bottom:512.098667pt;}
.yf5{bottom:515.948000pt;}
.y91{bottom:516.924000pt;}
.yce{bottom:518.660000pt;}
.y39{bottom:520.986667pt;}
.y11c{bottom:521.073333pt;}
.y141{bottom:530.217333pt;}
.y90{bottom:534.989333pt;}
.y150{bottom:538.218667pt;}
.y38{bottom:539.052000pt;}
.y11b{bottom:539.138667pt;}
.y5e{bottom:539.557333pt;}
.y140{bottom:548.282667pt;}
.ycd{bottom:552.088000pt;}
.y8f{bottom:553.054667pt;}
.yf4{bottom:554.064000pt;}
.y37{bottom:557.117333pt;}
.y11a{bottom:557.204000pt;}
.y13f{bottom:566.348000pt;}
.ycc{bottom:570.153333pt;}
.yf3{bottom:572.129333pt;}
.y119{bottom:575.270667pt;}
.y8e{bottom:580.890667pt;}
.y5d{bottom:587.329333pt;}
.y14f{bottom:589.466667pt;}
.y36{bottom:589.586667pt;}
.yf2{bottom:590.194667pt;}
.y118{bottom:593.336000pt;}
.ycb{bottom:597.613333pt;}
.y8d{bottom:598.956000pt;}
.y5c{bottom:605.394667pt;}
.y14e{bottom:607.533333pt;}
.y11{bottom:607.718667pt;}
.yf1{bottom:608.260000pt;}
.y117{bottom:611.401333pt;}
.y13e{bottom:613.848000pt;}
.y8c{bottom:617.021333pt;}
.y5b{bottom:623.460000pt;}
.y10{bottom:623.658667pt;}
.yf0{bottom:624.144000pt;}
.y22{bottom:626.072000pt;}
.yef{bottom:626.325333pt;}
.y13d{bottom:631.913333pt;}
.y8b{bottom:635.086667pt;}
.y35{bottom:635.416000pt;}
.yca{bottom:637.446667pt;}
.yf{bottom:639.600000pt;}
.y13a{bottom:640.034667pt;}
.y5a{bottom:641.526667pt;}
.yee{bottom:644.392000pt;}
.y116{bottom:649.820000pt;}
.y8a{bottom:650.970667pt;}
.y89{bottom:653.152000pt;}
.y34{bottom:653.481333pt;}
.ye{bottom:655.540000pt;}
.y13c{bottom:657.276000pt;}
.y139{bottom:658.101333pt;}
.y21{bottom:658.682667pt;}
.y59{bottom:659.592000pt;}
.yed{bottom:662.457333pt;}
.y115{bottom:667.885333pt;}
.y88{bottom:671.218667pt;}
.yd{bottom:671.480000pt;}
.y33{bottom:671.548000pt;}
.y138{bottom:676.166667pt;}
.y58{bottom:677.657333pt;}
.y114{bottom:685.950667pt;}
.yc{bottom:687.420000pt;}
.y32{bottom:689.613333pt;}
.y20{bottom:691.294667pt;}
.y13b{bottom:693.852000pt;}
.y137{bottom:694.232000pt;}
.y57{bottom:695.722667pt;}
.y87{bottom:698.668000pt;}
.yec{bottom:700.572000pt;}
.yb{bottom:701.368000pt;}
.ya{bottom:703.360000pt;}
.y113{bottom:704.017333pt;}
.y31{bottom:707.678667pt;}
.y136{bottom:712.297333pt;}
.y56{bottom:713.788000pt;}
.y86{bottom:716.734667pt;}
.yeb{bottom:718.637333pt;}
.y9{bottom:719.300000pt;}
.y112{bottom:722.082667pt;}
.y1f{bottom:723.905333pt;}
.y30{bottom:725.744000pt;}
.y55{bottom:731.853333pt;}
.y85{bottom:734.800000pt;}
.yea{bottom:736.702667pt;}
.y111{bottom:737.966667pt;}
.y110{bottom:740.148000pt;}
.y1e{bottom:741.970667pt;}
.y8{bottom:743.542667pt;}
.y2f{bottom:743.809333pt;}
.y135{bottom:744.766667pt;}
.ye9{bottom:754.769333pt;}
.y54{bottom:757.217333pt;}
.y10f{bottom:758.213333pt;}
.y1d{bottom:760.036000pt;}
.yc8{bottom:769.562667pt;}
.y84{bottom:772.188000pt;}
.ye8{bottom:772.834667pt;}
.y10e{bottom:776.278667pt;}
.y1c{bottom:778.102667pt;}
.y2e{bottom:782.229333pt;}
.yc7{bottom:787.628000pt;}
.y83{bottom:790.253333pt;}
.y134{bottom:790.596000pt;}
.ye7{bottom:790.900000pt;}
.y53{bottom:793.792000pt;}
.y10d{bottom:794.345333pt;}
.y1b{bottom:796.168000pt;}
.y7{bottom:797.241333pt;}
.y2d{bottom:800.294667pt;}
.ye6{bottom:806.784000pt;}
.y82{bottom:808.320000pt;}
.y133{bottom:808.661333pt;}
.ye5{bottom:808.965333pt;}
.y10c{bottom:812.410667pt;}
.y1a{bottom:814.233333pt;}
.yc6{bottom:815.088000pt;}
.yb2{bottom:816.802667pt;}
.y2c{bottom:818.360000pt;}
.y52{bottom:825.984000pt;}
.y81{bottom:826.385333pt;}
.y132{bottom:826.728000pt;}
.ye4{bottom:827.030667pt;}
.y6{bottom:829.676000pt;}
.y10b{bottom:830.476000pt;}
.y19{bottom:832.298667pt;}
.yb1{bottom:834.868000pt;}
.y2b{bottom:836.425333pt;}
.y51{bottom:844.050667pt;}
.y80{bottom:844.450667pt;}
.y131{bottom:844.793333pt;}
.ye3{bottom:845.097333pt;}
.y10a{bottom:846.360000pt;}
.y5{bottom:848.272000pt;}
.y109{bottom:848.541333pt;}
.y2a{bottom:854.490667pt;}
.yb0{bottom:862.326667pt;}
.y130{bottom:862.858667pt;}
.yc5{bottom:863.118667pt;}
.y7f{bottom:864.744000pt;}
.y18{bottom:864.909333pt;}
.y7e{bottom:868.708000pt;}
.y29{bottom:872.556000pt;}
.ye2{bottom:877.566667pt;}
.y7d{bottom:878.789333pt;}
.yc4{bottom:881.185333pt;}
.y50{bottom:882.209333pt;}
.y17{bottom:882.976000pt;}
.y108{bottom:886.960000pt;}
.y4{bottom:888.688000pt;}
.y28{bottom:890.622667pt;}
.yaf{bottom:895.328000pt;}
.yc3{bottom:899.250667pt;}
.y107{bottom:905.026667pt;}
.y3{bottom:907.284000pt;}
.y27{bottom:908.688000pt;}
.y7c{bottom:913.777333pt;}
.y16{bottom:915.586667pt;}
.yc2{bottom:917.316000pt;}
.y4b{bottom:918.530667pt;}
.y4f{bottom:920.096000pt;}
.ye1{bottom:923.092000pt;}
.y4e{bottom:924.612000pt;}
.y2{bottom:925.881333pt;}
.y26{bottom:926.753333pt;}
.y4c{bottom:930.634667pt;}
.y7b{bottom:931.844000pt;}
.yc1{bottom:935.381333pt;}
.y4d{bottom:936.478667pt;}
.yae{bottom:941.157333pt;}
.y25{bottom:944.818667pt;}
.y15{bottom:948.197333pt;}
.yc0{bottom:953.446667pt;}
.y1{bottom:955.105333pt;}
.yad{bottom:959.222667pt;}
.y24{bottom:962.884000pt;}
.y79{bottom:969.232000pt;}
.yac{bottom:977.288000pt;}
.ybf{bottom:978.809333pt;}
.y7a{bottom:980.306667pt;}
.y14{bottom:980.808000pt;}
.y23{bottom:980.950667pt;}
.y78{bottom:995.354667pt;}
.y13{bottom:1013.420000pt;}
.ybe{bottom:1015.385333pt;}
.h1f{height:2.125355pt;}
.h20{height:7.599558pt;}
.h2e{height:11.603067pt;}
.h16{height:11.604466pt;}
.h13{height:23.910400pt;}
.h7{height:24.696550pt;}
.h1c{height:29.925069pt;}
.h1b{height:31.880400pt;}
.h1e{height:34.239693pt;}
.h18{height:34.891733pt;}
.h1d{height:35.865600pt;}
.h17{height:37.291733pt;}
.h8{height:38.043849pt;}
.h2a{height:38.550400pt;}
.h6{height:39.850400pt;}
.h11{height:40.378215pt;}
.h9{height:41.178747pt;}
.hf{height:41.658217pt;}
.hd{height:43.636400pt;}
.h3{height:44.887791pt;}
.ha{height:44.930688pt;}
.he{height:45.090947pt;}
.h19{height:45.636892pt;}
.h33{height:46.189355pt;}
.h32{height:46.194688pt;}
.h34{height:46.424021pt;}
.h10{height:46.429355pt;}
.h5{height:47.395409pt;}
.h4{height:47.820800pt;}
.h31{height:49.414827pt;}
.hb{height:51.898225pt;}
.h22{height:51.923067pt;}
.h12{height:52.995067pt;}
.h2d{height:53.864021pt;}
.h25{height:55.901733pt;}
.hc{height:57.384800pt;}
.h35{height:59.297627pt;}
.h15{height:62.365355pt;}
.h30{height:66.141733pt;}
.h2c{height:66.602225pt;}
.h2{height:68.769785pt;}
.h2f{height:68.804892pt;}
.h26{height:69.171067pt;}
.h27{height:73.928021pt;}
.h14{height:86.682402pt;}
.h1a{height:91.807558pt;}
.h21{height:92.355067pt;}
.h2b{height:101.842688pt;}
.h29{height:112.705067pt;}
.h24{height:118.552021pt;}
.h28{height:128.232021pt;}
.h23{height:148.536400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:93.536000pt;}
.x1{left:94.534667pt;}
.xc3{left:101.616000pt;}
.x30{left:105.397333pt;}
.x13c{left:107.226667pt;}
.x2b{left:109.033333pt;}
.x31{left:110.941333pt;}
.x95{left:112.265333pt;}
.x2a{left:116.306667pt;}
.xbd{left:118.092000pt;}
.xd7{left:120.390667pt;}
.x126{left:123.236000pt;}
.xd8{left:124.430667pt;}
.x3{left:125.612000pt;}
.xec{left:127.133333pt;}
.xc4{left:128.120000pt;}
.x25{left:129.749333pt;}
.x9{left:130.852000pt;}
.xbe{left:133.630667pt;}
.xfb{left:134.992000pt;}
.x75{left:137.322667pt;}
.xb6{left:140.090667pt;}
.xfc{left:142.997333pt;}
.xab{left:144.114667pt;}
.xc5{left:146.560000pt;}
.x53{left:148.013333pt;}
.x132{left:149.714667pt;}
.x8{left:150.777333pt;}
.x127{left:155.017333pt;}
.xbf{left:156.517333pt;}
.x111{left:158.074667pt;}
.x11c{left:159.073333pt;}
.x47{left:160.097333pt;}
.xa{left:161.489333pt;}
.xac{left:164.180000pt;}
.xf4{left:166.654667pt;}
.xa3{left:169.396000pt;}
.x66{left:170.645333pt;}
.x2d{left:172.464000pt;}
.xd9{left:173.826667pt;}
.x6f{left:174.810667pt;}
.x38{left:177.058667pt;}
.x2e{left:178.008000pt;}
.xfd{left:178.908000pt;}
.xc0{left:180.144000pt;}
.x107{left:181.048000pt;}
.x2f{left:183.260000pt;}
.xc6{left:184.350667pt;}
.x11d{left:185.400000pt;}
.x12b{left:186.340000pt;}
.x39{left:188.081333pt;}
.x12c{left:191.884000pt;}
.x26{left:194.470667pt;}
.x3a{left:196.274667pt;}
.xd{left:197.888000pt;}
.xe8{left:199.760000pt;}
.xda{left:201.362667pt;}
.x89{left:204.737333pt;}
.xae{left:207.997333pt;}
.xb0{left:211.689333pt;}
.xad{left:213.070667pt;}
.x3b{left:214.633333pt;}
.xeb{left:217.098667pt;}
.xe{left:218.182667pt;}
.x80{left:219.220000pt;}
.x112{left:220.620000pt;}
.xc7{left:222.286667pt;}
.xf{left:223.322667pt;}
.xb1{left:225.932000pt;}
.x10{left:228.120000pt;}
.x1c{left:230.089333pt;}
.x40{left:231.942667pt;}
.x8c{left:233.040000pt;}
.xc8{left:234.165333pt;}
.x134{left:235.356000pt;}
.x20{left:236.780000pt;}
.x41{left:240.825333pt;}
.x1d{left:242.824000pt;}
.x110{left:244.818667pt;}
.x101{left:245.869333pt;}
.x1e{left:247.886667pt;}
.xc9{left:249.913333pt;}
.x81{left:251.162667pt;}
.x1f{left:252.684000pt;}
.x48{left:255.129333pt;}
.xca{left:257.041333pt;}
.xb2{left:259.394667pt;}
.x49{left:260.382667pt;}
.xf7{left:261.360000pt;}
.xdb{left:262.872000pt;}
.xa2{left:264.317333pt;}
.x4a{left:268.926667pt;}
.x9c{left:271.124000pt;}
.xb3{left:272.666667pt;}
.xee{left:274.053333pt;}
.xa8{left:275.485333pt;}
.x50{left:276.864000pt;}
.xe9{left:278.253333pt;}
.x4b{left:280.425333pt;}
.xba{left:281.653333pt;}
.x90{left:282.810667pt;}
.x6{left:284.008000pt;}
.x79{left:286.953333pt;}
.x54{left:288.994667pt;}
.x67{left:291.696000pt;}
.xbb{left:292.630667pt;}
.xcb{left:294.858667pt;}
.x91{left:296.380000pt;}
.x13b{left:298.608000pt;}
.x5a{left:300.189333pt;}
.x21{left:301.558667pt;}
.xdc{left:302.693333pt;}
.xea{left:305.057333pt;}
.x4{left:306.352000pt;}
.x135{left:307.706667pt;}
.x2{left:310.546667pt;}
.x22{left:311.890667pt;}
.x5b{left:314.388000pt;}
.x57{left:315.942667pt;}
.xdd{left:317.282667pt;}
.x11{left:318.885333pt;}
.xde{left:321.322667pt;}
.x116{left:322.636000pt;}
.x88{left:324.076000pt;}
.x4c{left:325.165333pt;}
.x9d{left:327.168000pt;}
.x12{left:328.848000pt;}
.x74{left:330.504000pt;}
.x13{left:333.989333pt;}
.x4d{left:334.922667pt;}
.xb7{left:336.130667pt;}
.x5{left:337.924000pt;}
.x12a{left:339.158667pt;}
.x4e{left:340.466667pt;}
.x117{left:341.976000pt;}
.x113{left:343.154667pt;}
.xdf{left:344.817333pt;}
.x12d{left:346.118667pt;}
.x7e{left:347.490667pt;}
.x8d{left:349.877333pt;}
.xb8{left:352.088000pt;}
.x114{left:354.064000pt;}
.xe0{left:356.130667pt;}
.x12e{left:357.028000pt;}
.x136{left:358.824000pt;}
.x7c{left:359.942667pt;}
.x14{left:361.585333pt;}
.x131{left:362.665333pt;}
.x4f{left:363.682667pt;}
.xa4{left:365.161333pt;}
.x8e{left:366.557333pt;}
.x7{left:367.833333pt;}
.xf0{left:368.830667pt;}
.xe1{left:370.718667pt;}
.x8f{left:371.809333pt;}
.xe2{left:374.760000pt;}
.x3e{left:375.849333pt;}
.xc1{left:379.990667pt;}
.x15{left:381.880000pt;}
.x108{left:383.257333pt;}
.x16{left:385.617333pt;}
.x133{left:387.301333pt;}
.x109{left:389.026667pt;}
.xa5{left:390.684000pt;}
.x29{left:393.214667pt;}
.x3f{left:394.248000pt;}
.x82{left:396.018667pt;}
.x8a{left:398.274667pt;}
.x70{left:400.288000pt;}
.x7f{left:401.445333pt;}
.x9f{left:404.032000pt;}
.x11f{left:405.690667pt;}
.xb4{left:406.650667pt;}
.xe3{left:409.568000pt;}
.x120{left:411.461333pt;}
.xb{left:414.760000pt;}
.xa9{left:415.962667pt;}
.xe4{left:416.862667pt;}
.x71{left:417.789333pt;}
.x7d{left:418.957333pt;}
.xaf{left:419.913333pt;}
.xe5{left:420.902667pt;}
.x42{left:424.097333pt;}
.xc{left:425.261333pt;}
.x17{left:426.566667pt;}
.x13a{left:427.505333pt;}
.xb5{left:429.657333pt;}
.x7a{left:430.689333pt;}
.x18{left:431.708000pt;}
.x43{left:432.981333pt;}
.x19{left:436.504000pt;}
.x104{left:440.917333pt;}
.xf1{left:442.484000pt;}
.x1a{left:443.858667pt;}
.x7b{left:444.902667pt;}
.x11b{left:446.730667pt;}
.x119{left:448.305333pt;}
.xa0{left:452.909333pt;}
.x1b{left:455.569333pt;}
.x105{left:459.325333pt;}
.xff{left:461.780000pt;}
.x32{left:464.960000pt;}
.x100{left:467.033333pt;}
.x3c{left:468.309333pt;}
.x102{left:473.145333pt;}
.x55{left:475.658667pt;}
.x5c{left:477.597333pt;}
.xf2{left:479.386667pt;}
.x33{left:481.205333pt;}
.x3d{left:484.076000pt;}
.x51{left:485.068000pt;}
.x68{left:486.126667pt;}
.x10e{left:487.109333pt;}
.x103{left:489.756000pt;}
.x27{left:492.105333pt;}
.x96{left:493.606667pt;}
.x76{left:494.693333pt;}
.x52{left:496.566667pt;}
.x87{left:500.632000pt;}
.x28{left:502.606667pt;}
.x9e{left:504.316000pt;}
.x69{left:505.312000pt;}
.x118{left:507.134667pt;}
.xc2{left:512.612000pt;}
.xe6{left:513.705333pt;}
.xcc{left:514.609333pt;}
.x6a{left:515.893333pt;}
.x5d{left:516.977333pt;}
.xef{left:519.305333pt;}
.x138{left:520.508000pt;}
.x5e{left:522.657333pt;}
.x77{left:524.652000pt;}
.xe7{left:526.013333pt;}
.x5f{left:527.909333pt;}
.xcd{left:529.445333pt;}
.x121{left:530.957333pt;}
.x10a{left:532.456000pt;}
.xce{left:533.485333pt;}
.x122{left:536.726667pt;}
.x8b{left:538.080000pt;}
.x10f{left:539.096000pt;}
.x23{left:540.056000pt;}
.x10b{left:543.365333pt;}
.x97{left:548.878667pt;}
.x12f{left:550.213333pt;}
.xfe{left:551.390667pt;}
.x60{left:553.028000pt;}
.x24{left:554.880000pt;}
.x130{left:556.706667pt;}
.xcf{left:557.778667pt;}
.x139{left:559.954667pt;}
.x92{left:561.696000pt;}
.x123{left:563.068000pt;}
.x61{left:564.810667pt;}
.xa6{left:567.273333pt;}
.xd0{left:569.090667pt;}
.x58{left:570.384000pt;}
.x6b{left:572.361333pt;}
.xbc{left:573.810667pt;}
.x93{left:575.266667pt;}
.x62{left:576.980000pt;}
.xaa{left:578.397333pt;}
.x78{left:579.613333pt;}
.x94{left:580.809333pt;}
.x6c{left:582.737333pt;}
.xd1{left:583.928000pt;}
.x44{left:585.708000pt;}
.xd2{left:587.968000pt;}
.xed{left:589.701333pt;}
.x6d{left:591.545333pt;}
.x45{left:594.592000pt;}
.xa7{left:597.193333pt;}
.x63{left:598.482667pt;}
.x106{left:599.886667pt;}
.x6e{left:602.128000pt;}
.x64{left:604.161333pt;}
.x115{left:608.409333pt;}
.x65{left:609.413333pt;}
.xd3{left:612.382667pt;}
.x11a{left:614.432000pt;}
.xf8{left:615.956000pt;}
.x72{left:617.414667pt;}
.x59{left:620.318667pt;}
.xf9{left:621.208000pt;}
.xd4{left:623.694667pt;}
.x73{left:628.164000pt;}
.x98{left:630.046667pt;}
.xd5{left:631.113333pt;}
.x83{left:633.045333pt;}
.xd6{left:635.153333pt;}
.xf5{left:637.548000pt;}
.xf3{left:639.958667pt;}
.x84{left:642.258667pt;}
.x10c{left:643.716000pt;}
.x99{left:644.668000pt;}
.x85{left:647.098667pt;}
.x10d{left:649.486667pt;}
.x137{left:650.424000pt;}
.x86{left:651.536000pt;}
.x34{left:652.953333pt;}
.x128{left:654.298667pt;}
.xfa{left:655.190667pt;}
.x124{left:656.572000pt;}
.x9a{left:658.708000pt;}
.x125{left:661.824000pt;}
.xb9{left:662.774667pt;}
.x35{left:663.862667pt;}
.x9b{left:665.018667pt;}
.x129{left:667.869333pt;}
.x36{left:669.632000pt;}
.x37{left:674.885333pt;}
.x46{left:675.801333pt;}
.xf6{left:677.346667pt;}
.xa1{left:687.932000pt;}
.x11e{left:693.185333pt;}
.x56{left:697.113333pt;}
}




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