
    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_41cf7cbe5a34f6faf39951a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_6ec2d7370be8bc4a2171b382.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fa36e360fa84b5d638cdc9c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.123000;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_8e9441cc322bb676c24bffdb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4b82030989b656f5d10d7baa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d0c6562702f94ed1f3977945.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ae3d30b173e585783f2d5020.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_aa87f2f04a59a09fce328ebb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.151000;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_ba05e512c2798dd96e15142e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_29fe53fdfb3094fcc6adc9f8.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_25a9574b37219e71266f20e8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.937000;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_fae8ee2e97207598c6b1f368.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b4e05732b534844d8d3d00cb.woff2')format("woff");}.ffd{font-family:ffd;line-height:2.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:ffe;src:url('chunks/assets/font_ee5bb804fae06b49ab285604.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.580000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9318449b13ae2d5d8f65ba34.woff2')format("woff");}.fff{font-family:fff;line-height:0.685000;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;}
.m9{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);}
.m13{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);}
.m1f{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);}
.m28{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);}
.m4{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);}
.m14{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);}
.m5{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);}
.m6{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);}
.m26{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);}
.m21{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);}
.m10{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);}
.m1b{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m29{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m18{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);}
.m24{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m7{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m1e{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);}
.m27{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);}
.me{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m25{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);}
.m8{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m19{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m1a{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.v15{vertical-align:-49.164000px;}
.v13{vertical-align:-20.730000px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.760000px;}
.v9{vertical-align:-10.464000px;}
.v5{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v14{vertical-align:4.140000px;}
.v4{vertical-align:11.760000px;}
.v10{vertical-align:14.850000px;}
.v1{vertical-align:21.696000px;}
.vc{vertical-align:32.556000px;}
.vd{vertical-align:36.120000px;}
.ve{vertical-align:41.010000px;}
.v8{vertical-align:42.054000px;}
.vb{vertical-align:45.090000px;}
.v6{vertical-align:46.746000px;}
.va{vertical-align:48.324000px;}
.vf{vertical-align:50.598000px;}
.v12{vertical-align:77.130000px;}
.v11{vertical-align:86.094000px;}
.v7{vertical-align:102.246000px;}
.ls6{letter-spacing:0.000000px;}
.ls5b{letter-spacing:0.102583px;}
.lse{letter-spacing:0.670741px;}
.ls77{letter-spacing:0.671510px;}
.lsc{letter-spacing:0.676741px;}
.ls21{letter-spacing:0.695441px;}
.ls52{letter-spacing:0.701441px;}
.ls37{letter-spacing:0.708777px;}
.ls3e{letter-spacing:0.714783px;}
.ls6d{letter-spacing:0.741634px;}
.ls1e{letter-spacing:0.743108px;}
.ls49{letter-spacing:0.747634px;}
.ls38{letter-spacing:0.748200px;}
.ls1c{letter-spacing:0.749108px;}
.ls24{letter-spacing:0.749627px;}
.ls3b{letter-spacing:0.750583px;}
.ls1a{letter-spacing:0.882571px;}
.ls18{letter-spacing:0.888571px;}
.ls2a{letter-spacing:0.991331px;}
.ls17{letter-spacing:0.994200px;}
.ls10{letter-spacing:0.995108px;}
.ls57{letter-spacing:0.995675px;}
.ls12{letter-spacing:0.997331px;}
.ls13{letter-spacing:0.999292px;}
.ls19{letter-spacing:1.000200px;}
.ls26{letter-spacing:1.001108px;}
.ls4c{letter-spacing:1.166383px;}
.ls73{letter-spacing:1.193510px;}
.ls85{letter-spacing:1.193933px;}
.ls86{letter-spacing:1.197178px;}
.ls7{letter-spacing:1.275394px;}
.ls1b{letter-spacing:1.311634px;}
.ls6f{letter-spacing:1.317634px;}
.ls29{letter-spacing:1.420741px;}
.ls25{letter-spacing:1.435565px;}
.ls60{letter-spacing:1.441565px;}
.ls43{letter-spacing:1.491089px;}
.ls4e{letter-spacing:1.496383px;}
.ls35{letter-spacing:1.497089px;}
.ls1{letter-spacing:1.861130px;}
.ls88{letter-spacing:2.027933px;}
.ls83{letter-spacing:2.031178px;}
.ls84{letter-spacing:2.033933px;}
.ls82{letter-spacing:2.219108px;}
.ls81{letter-spacing:2.220925px;}
.ls80{letter-spacing:2.225108px;}
.ls7f{letter-spacing:2.226925px;}
.ls16{letter-spacing:2.484783px;}
.ls4a{letter-spacing:2.903108px;}
.ls5d{letter-spacing:2.903675px;}
.ls64{letter-spacing:2.905331px;}
.ls66{letter-spacing:2.909675px;}
.ls34{letter-spacing:2.987431px;}
.ls31{letter-spacing:3.734810px;}
.ls2e{letter-spacing:3.737431px;}
.ls46{letter-spacing:3.740810px;}
.ls5c{letter-spacing:3.876571px;}
.ls5e{letter-spacing:4.302571px;}
.ls14{letter-spacing:4.620571px;}
.ls2{letter-spacing:10.461300px;}
.ls47{letter-spacing:10.630741px;}
.ls32{letter-spacing:10.636741px;}
.ls3f{letter-spacing:10.680783px;}
.ls3a{letter-spacing:10.706100px;}
.ls36{letter-spacing:10.712100px;}
.ls5f{letter-spacing:11.380741px;}
.ls5{letter-spacing:11.954850px;}
.ls45{letter-spacing:12.342783px;}
.ls91{letter-spacing:12.362645px;}
.ls4d{letter-spacing:12.800100px;}
.ls44{letter-spacing:13.042741px;}
.ls3c{letter-spacing:13.073524px;}
.ls6a{letter-spacing:13.086783px;}
.ls39{letter-spacing:13.089483px;}
.ls94{letter-spacing:13.244278px;}
.ls92{letter-spacing:13.301388px;}
.ls8c{letter-spacing:13.448400px;}
.ls8d{letter-spacing:13.454400px;}
.ls56{letter-spacing:13.454810px;}
.ls90{letter-spacing:13.463313px;}
.ls8f{letter-spacing:13.487337px;}
.ls95{letter-spacing:13.656282px;}
.ls93{letter-spacing:13.675273px;}
.ls8b{letter-spacing:13.726871px;}
.ls72{letter-spacing:13.748388px;}
.ls79{letter-spacing:14.286368px;}
.ls8a{letter-spacing:14.704798px;}
.ls7a{letter-spacing:14.824349px;}
.ls53{letter-spacing:14.884124px;}
.lsa{letter-spacing:14.943900px;}
.ls7c{letter-spacing:15.063451px;}
.ls7d{letter-spacing:15.183002px;}
.ls7e{letter-spacing:15.242778px;}
.ls22{letter-spacing:15.359431px;}
.lsf{letter-spacing:15.622741px;}
.lsd{letter-spacing:15.628741px;}
.ls42{letter-spacing:15.690017px;}
.ls5a{letter-spacing:15.690925px;}
.ls8{letter-spacing:16.019861px;}
.ls78{letter-spacing:16.438477px;}
.ls89{letter-spacing:16.941987px;}
.ls8e{letter-spacing:17.132753px;}
.ls2c{letter-spacing:17.319483px;}
.ls55{letter-spacing:17.325483px;}
.ls6b{letter-spacing:17.856783px;}
.ls70{letter-spacing:17.930810px;}
.ls54{letter-spacing:17.933431px;}
.ls15{letter-spacing:18.034741px;}
.ls6e{letter-spacing:18.053524px;}
.ls2f{letter-spacing:18.059524px;}
.ls23{letter-spacing:18.069483px;}
.ls4f{letter-spacing:18.072783px;}
.ls28{letter-spacing:18.098100px;}
.ls59{letter-spacing:18.184741px;}
.ls76{letter-spacing:18.470660px;}
.lsb{letter-spacing:19.606397px;}
.ls20{letter-spacing:20.336810px;}
.ls1d{letter-spacing:20.339431px;}
.ls1f{letter-spacing:20.342810px;}
.ls40{letter-spacing:20.345431px;}
.ls41{letter-spacing:20.348810px;}
.ls71{letter-spacing:20.907886px;}
.ls4b{letter-spacing:20.910571px;}
.ls27{letter-spacing:21.222571px;}
.ls2b{letter-spacing:21.228571px;}
.ls11{letter-spacing:21.240571px;}
.ls58{letter-spacing:21.390571px;}
.ls9{letter-spacing:21.519216px;}
.ls48{letter-spacing:22.701483px;}
.ls65{letter-spacing:22.908571px;}
.ls62{letter-spacing:22.914571px;}
.ls61{letter-spacing:23.391483px;}
.ls68{letter-spacing:25.245483px;}
.ls75{letter-spacing:25.283524px;}
.ls50{letter-spacing:25.512571px;}
.ls63{letter-spacing:26.451483px;}
.ls74{letter-spacing:27.572810px;}
.ls2d{letter-spacing:29.717400px;}
.ls30{letter-spacing:29.723400px;}
.ls67{letter-spacing:34.662571px;}
.ls3d{letter-spacing:35.158741px;}
.ls0{letter-spacing:57.415200px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls6c{letter-spacing:120.561483px;}
.ls69{letter-spacing:125.685483px;}
.ls7b{letter-spacing:439.180627px;}
.ls87{letter-spacing:601.035725px;}
.ls33{letter-spacing:618.542100px;}
.ls51{letter-spacing:939.386100px;}
.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;}
}
.ws101{word-spacing:-614.485325px;}
.wsb1{word-spacing:-62.286600px;}
.ws9c{word-spacing:-49.444179px;}
.ws86{word-spacing:-49.206414px;}
.wsb6{word-spacing:-45.033212px;}
.ws82{word-spacing:-44.223486px;}
.wsa7{word-spacing:-44.098913px;}
.wsaa{word-spacing:-42.541748px;}
.wsab{word-spacing:-30.458147px;}
.wsb2{word-spacing:-17.014279px;}
.ws2{word-spacing:-14.943900px;}
.wsc8{word-spacing:-13.449600px;}
.ws2c{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.ws8{word-spacing:-10.460700px;}
.wsbb{word-spacing:-2.929004px;}
.wsba{word-spacing:-2.869229px;}
.ws3c{word-spacing:-2.809453px;}
.ws48{word-spacing:-2.749678px;}
.ws31{word-spacing:-2.689902px;}
.wsea{word-spacing:-2.450800px;}
.ws10a{word-spacing:-2.420928px;}
.ws132{word-spacing:-2.391024px;}
.ws13b{word-spacing:-2.367130px;}
.ws13c{word-spacing:-2.151936px;}
.wsd9{word-spacing:-2.151922px;}
.ws116{word-spacing:-2.032370px;}
.ws122{word-spacing:-1.990541px;}
.ws10f{word-spacing:-1.972595px;}
.ws6{word-spacing:-1.908367px;}
.ws6f{word-spacing:-1.853044px;}
.ws6e{word-spacing:-1.819575px;}
.ws6d{word-spacing:-1.793268px;}
.wsa5{word-spacing:-1.733492px;}
.ws39{word-spacing:-1.494390px;}
.ws150{word-spacing:-1.452557px;}
.ws3a{word-spacing:-1.434614px;}
.wsbc{word-spacing:-1.374839px;}
.ws14b{word-spacing:-1.344960px;}
.ws5{word-spacing:-1.322630px;}
.ws131{word-spacing:-1.315063px;}
.ws12b{word-spacing:-1.255288px;}
.ws25{word-spacing:-1.195512px;}
.wsbd{word-spacing:-1.135736px;}
.wsd6{word-spacing:-1.075961px;}
.ws92{word-spacing:-1.016185px;}
.wsc0{word-spacing:-0.968371px;}
.wse9{word-spacing:-0.956410px;}
.ws84{word-spacing:-0.896634px;}
.ws32{word-spacing:-0.836858px;}
.ws10c{word-spacing:-0.806976px;}
.wsd4{word-spacing:-0.777083px;}
.ws12c{word-spacing:-0.753178px;}
.ws43{word-spacing:-0.717307px;}
.ws29{word-spacing:-0.597756px;}
.ws12e{word-spacing:-0.537984px;}
.ws134{word-spacing:-0.537980px;}
.ws12d{word-spacing:-0.484186px;}
.ws136{word-spacing:-0.478205px;}
.ws15d{word-spacing:-0.430387px;}
.ws13a{word-spacing:-0.418429px;}
.ws146{word-spacing:-0.376589px;}
.ws21{word-spacing:-0.358654px;}
.ws156{word-spacing:-0.322790px;}
.ws42{word-spacing:-0.298878px;}
.wsc7{word-spacing:-0.288861px;}
.ws14{word-spacing:-0.268992px;}
.wse5{word-spacing:-0.254464px;}
.wse6{word-spacing:-0.242744px;}
.ws26{word-spacing:-0.239102px;}
.ws140{word-spacing:-0.215194px;}
.wse4{word-spacing:-0.190322px;}
.ws50{word-spacing:-0.179327px;}
.ws1f{word-spacing:-0.161395px;}
.ws53{word-spacing:-0.138319px;}
.ws51{word-spacing:-0.138054px;}
.ws52{word-spacing:-0.130047px;}
.wsd1{word-spacing:-0.129034px;}
.ws22{word-spacing:-0.119551px;}
.ws5b{word-spacing:-0.115385px;}
.wsd3{word-spacing:-0.109985px;}
.ws15{word-spacing:-0.107597px;}
.wsd2{word-spacing:-0.106769px;}
.ws5c{word-spacing:-0.092653px;}
.ws5a{word-spacing:-0.091746px;}
.ws70{word-spacing:-0.087942px;}
.ws12a{word-spacing:-0.085846px;}
.ws129{word-spacing:-0.083281px;}
.wsaf{word-spacing:-0.082084px;}
.ws71{word-spacing:-0.072770px;}
.wsa0{word-spacing:-0.070718px;}
.ws9b{word-spacing:-0.062287px;}
.ws33{word-spacing:-0.059776px;}
.wsa3{word-spacing:-0.053798px;}
.wsf3{word-spacing:-0.041843px;}
.ws164{word-spacing:-0.010618px;}
.ws7b{word-spacing:-0.009024px;}
.ws79{word-spacing:-0.006662px;}
.ws153{word-spacing:-0.005971px;}
.ws7a{word-spacing:-0.005510px;}
.ws148{word-spacing:-0.004733px;}
.ws16b{word-spacing:-0.002976px;}
.ws11b{word-spacing:-0.002813px;}
.ws99{word-spacing:-0.002545px;}
.ws15b{word-spacing:-0.002525px;}
.ws98{word-spacing:-0.002134px;}
.ws169{word-spacing:-0.001824px;}
.ws15c{word-spacing:-0.001267px;}
.ws15e{word-spacing:-0.000307px;}
.ws0{word-spacing:0.000000px;}
.ws9a{word-spacing:0.000384px;}
.wsc6{word-spacing:0.053798px;}
.ws2a{word-spacing:0.059776px;}
.ws83{word-spacing:0.095958px;}
.wsbf{word-spacing:0.107597px;}
.ws3f{word-spacing:0.119551px;}
.ws65{word-spacing:0.134797px;}
.ws64{word-spacing:0.136633px;}
.ws66{word-spacing:0.139442px;}
.ws18{word-spacing:0.161395px;}
.wsa1{word-spacing:0.176221px;}
.wsee{word-spacing:0.176320px;}
.wsed{word-spacing:0.178786px;}
.ws2b{word-spacing:0.179327px;}
.ws9{word-spacing:0.209214px;}
.ws1a{word-spacing:0.215194px;}
.ws69{word-spacing:0.223369px;}
.ws67{word-spacing:0.223812px;}
.ws68{word-spacing:0.229753px;}
.ws24{word-spacing:0.239102px;}
.ws141{word-spacing:0.268992px;}
.wsb{word-spacing:0.292900px;}
.ws34{word-spacing:0.298878px;}
.ws158{word-spacing:0.322790px;}
.ws49{word-spacing:0.358654px;}
.ws15f{word-spacing:0.376589px;}
.ws59{word-spacing:0.418429px;}
.wsd5{word-spacing:0.430387px;}
.ws62{word-spacing:0.478205px;}
.wsa2{word-spacing:0.509446px;}
.ws117{word-spacing:0.537980px;}
.ws55{word-spacing:0.597756px;}
.ws1c{word-spacing:0.645581px;}
.wsd7{word-spacing:0.657532px;}
.wsc4{word-spacing:0.668227px;}
.ws11e{word-spacing:0.699379px;}
.wse3{word-spacing:0.717307px;}
.ws8a{word-spacing:0.742315px;}
.ws85{word-spacing:0.743695px;}
.ws109{word-spacing:0.753178px;}
.ws3e{word-spacing:0.777083px;}
.ws11d{word-spacing:0.806976px;}
.ws5d{word-spacing:0.836858px;}
.ws61{word-spacing:0.896634px;}
.wsdf{word-spacing:0.956410px;}
.ws40{word-spacing:1.016185px;}
.wsf2{word-spacing:1.022170px;}
.wseb{word-spacing:1.075961px;}
.ws11c{word-spacing:1.075968px;}
.ws16a{word-spacing:1.129766px;}
.ws2d{word-spacing:1.135736px;}
.wsdc{word-spacing:1.195512px;}
.ws27{word-spacing:1.255288px;}
.ws19{word-spacing:1.291162px;}
.wsb8{word-spacing:1.315063px;}
.wsf1{word-spacing:1.344960px;}
.ws7d{word-spacing:1.374839px;}
.ws4a{word-spacing:1.434614px;}
.ws152{word-spacing:1.452557px;}
.ws36{word-spacing:1.494390px;}
.ws35{word-spacing:1.554166px;}
.wscf{word-spacing:1.560154px;}
.ws90{word-spacing:1.591831px;}
.wsd8{word-spacing:1.613941px;}
.ws1b{word-spacing:1.613952px;}
.ws135{word-spacing:1.673717px;}
.ws6a{word-spacing:1.733492px;}
.wsc5{word-spacing:1.793268px;}
.ws149{word-spacing:1.829146px;}
.ws60{word-spacing:1.853044px;}
.wsb4{word-spacing:1.858209px;}
.wsce{word-spacing:1.882944px;}
.wsdb{word-spacing:1.912819px;}
.ws78{word-spacing:1.936742px;}
.ws4b{word-spacing:1.972595px;}
.wsa{word-spacing:2.008454px;}
.ws7c{word-spacing:2.032370px;}
.ws157{word-spacing:2.044339px;}
.ws28{word-spacing:2.092146px;}
.ws1d{word-spacing:2.098138px;}
.ws96{word-spacing:2.151922px;}
.wse0{word-spacing:2.205734px;}
.wsec{word-spacing:2.211697px;}
.ws77{word-spacing:2.259533px;}
.ws2f{word-spacing:2.271473px;}
.ws139{word-spacing:2.331248px;}
.wse1{word-spacing:2.367130px;}
.wsb0{word-spacing:2.401554px;}
.wsb5{word-spacing:2.402621px;}
.ws37{word-spacing:2.510575px;}
.ws76{word-spacing:2.528525px;}
.ws2e{word-spacing:2.570351px;}
.ws46{word-spacing:2.630126px;}
.wsf0{word-spacing:2.689902px;}
.ws160{word-spacing:2.689920px;}
.ws114{word-spacing:2.749678px;}
.ws6b{word-spacing:2.809453px;}
.ws75{word-spacing:2.851315px;}
.ws13{word-spacing:2.869236px;}
.ws147{word-spacing:2.905114px;}
.wsda{word-spacing:2.929004px;}
.ws118{word-spacing:2.958912px;}
.wsad{word-spacing:2.988780px;}
.ws151{word-spacing:3.012710px;}
.wse2{word-spacing:3.048556px;}
.ws10d{word-spacing:3.066509px;}
.wse7{word-spacing:3.108331px;}
.wsa4{word-spacing:3.168107px;}
.ws167{word-spacing:3.222941px;}
.ws14f{word-spacing:3.224237px;}
.ws163{word-spacing:3.224986px;}
.ws166{word-spacing:3.227741px;}
.ws89{word-spacing:3.227882px;}
.ws11a{word-spacing:3.227904px;}
.ws57{word-spacing:3.347434px;}
.ws165{word-spacing:3.389299px;}
.ws80{word-spacing:3.407209px;}
.ws159{word-spacing:3.443098px;}
.ws23{word-spacing:3.466985px;}
.ws162{word-spacing:3.496896px;}
.wsc1{word-spacing:3.526760px;}
.wsc2{word-spacing:3.528925px;}
.wsc3{word-spacing:3.530790px;}
.ws20{word-spacing:3.586536px;}
.wsdd{word-spacing:3.646312px;}
.ws115{word-spacing:3.706087px;}
.ws5e{word-spacing:3.765863px;}
.ws30{word-spacing:3.825638px;}
.ws8f{word-spacing:3.997831px;}
.ws8d{word-spacing:4.001210px;}
.ws130{word-spacing:4.004965px;}
.ws144{word-spacing:4.034880px;}
.ws54{word-spacing:4.064741px;}
.ws137{word-spacing:4.174392px;}
.ws4e{word-spacing:4.184292px;}
.ws133{word-spacing:4.244068px;}
.ws1e{word-spacing:4.303872px;}
.ws6c{word-spacing:4.363619px;}
.ws143{word-spacing:4.411469px;}
.ws7e{word-spacing:4.423394px;}
.ws45{word-spacing:4.483170px;}
.ws3d{word-spacing:4.542946px;}
.ws72{word-spacing:4.640385px;}
.ws73{word-spacing:4.662497px;}
.ws10e{word-spacing:4.680461px;}
.ws13f{word-spacing:4.734259px;}
.ws44{word-spacing:4.782048px;}
.ws125{word-spacing:4.901599px;}
.ws16{word-spacing:4.949453px;}
.ws15a{word-spacing:5.003251px;}
.ws5f{word-spacing:5.021150px;}
.ws17{word-spacing:5.057050px;}
.ws38{word-spacing:5.080926px;}
.ws12f{word-spacing:5.140702px;}
.ws63{word-spacing:5.200477px;}
.ws154{word-spacing:5.272243px;}
.ws56{word-spacing:5.379804px;}
.ws13e{word-spacing:5.379840px;}
.ws155{word-spacing:5.433638px;}
.wsfa{word-spacing:5.439580px;}
.wsef{word-spacing:5.499355px;}
.ws106{word-spacing:5.595034px;}
.ws7f{word-spacing:5.618906px;}
.ws4c{word-spacing:5.738458px;}
.ws74{word-spacing:5.858009px;}
.ws58{word-spacing:6.037336px;}
.ws11{word-spacing:6.067206px;}
.ws12{word-spacing:6.150892px;}
.ws142{word-spacing:6.186816px;}
.wsbe{word-spacing:6.276438px;}
.ws113{word-spacing:6.502472px;}
.ws16c{word-spacing:6.509606px;}
.ws41{word-spacing:6.515540px;}
.ws138{word-spacing:6.694867px;}
.ws4d{word-spacing:6.754643px;}
.wsd0{word-spacing:6.781866px;}
.wsac{word-spacing:6.993745px;}
.ws47{word-spacing:7.113296px;}
.wse8{word-spacing:7.145297px;}
.ws13d{word-spacing:7.208986px;}
.ws120{word-spacing:7.370381px;}
.ws3b{word-spacing:7.830604px;}
.ws126{word-spacing:8.069706px;}
.ws127{word-spacing:8.083731px;}
.ws128{word-spacing:8.084906px;}
.wsde{word-spacing:8.308808px;}
.ws14e{word-spacing:8.553946px;}
.wsf{word-spacing:8.661460px;}
.ws8e{word-spacing:8.981210px;}
.ws94{word-spacing:8.984842px;}
.wsb9{word-spacing:8.986034px;}
.ws161{word-spacing:9.143453px;}
.ws14a{word-spacing:9.144989px;}
.ws168{word-spacing:9.145306px;}
.ws145{word-spacing:9.145728px;}
.ws11f{word-spacing:9.307123px;}
.ws110{word-spacing:9.384769px;}
.ws9d{word-spacing:9.545959px;}
.ws111{word-spacing:9.580517px;}
.ws112{word-spacing:9.610517px;}
.wsa6{word-spacing:9.649963px;}
.wsae{word-spacing:9.922034px;}
.ws8c{word-spacing:10.708726px;}
.ws14d{word-spacing:11.243866px;}
.wsff{word-spacing:12.158438px;}
.ws14c{word-spacing:12.373632px;}
.ws97{word-spacing:13.610842px;}
.ws88{word-spacing:14.031359px;}
.ws87{word-spacing:14.032315px;}
.wsa9{word-spacing:14.873959px;}
.ws7{word-spacing:15.483541px;}
.wsc{word-spacing:16.142252px;}
.wsd{word-spacing:16.151321px;}
.ws4f{word-spacing:16.677392px;}
.wsfb{word-spacing:16.915879px;}
.wsf4{word-spacing:16.921879px;}
.wse{word-spacing:17.699504px;}
.ws8b{word-spacing:17.938541px;}
.ws81{word-spacing:18.000827px;}
.ws100{word-spacing:20.228198px;}
.ws9f{word-spacing:20.605694px;}
.ws10{word-spacing:27.448877px;}
.wsfe{word-spacing:27.791916px;}
.ws124{word-spacing:28.566950px;}
.ws107{word-spacing:28.835942px;}
.ws9e{word-spacing:29.576604px;}
.ws123{word-spacing:29.804314px;}
.ws105{word-spacing:39.757018px;}
.ws102{word-spacing:42.715930px;}
.ws91{word-spacing:44.831700px;}
.ws104{word-spacing:46.535616px;}
.ws4{word-spacing:46.603015px;}
.ws3{word-spacing:46.647245px;}
.ws121{word-spacing:47.880576px;}
.ws103{word-spacing:55.035763px;}
.wsc9{word-spacing:83.816486px;}
.wsfc{word-spacing:85.605888px;}
.wsf5{word-spacing:160.461888px;}
.wsca{word-spacing:189.585562px;}
.wsf8{word-spacing:230.229101px;}
.wsf6{word-spacing:233.592653px;}
.ws10b{word-spacing:247.526438px;}
.wscd{word-spacing:255.240144px;}
.wsf9{word-spacing:293.577101px;}
.wscb{word-spacing:319.616294px;}
.wsf7{word-spacing:328.249786px;}
.wscc{word-spacing:346.515494px;}
.wsfd{word-spacing:453.090125px;}
.ws119{word-spacing:581.883494px;}
.ws108{word-spacing:587.586125px;}
.ws93{word-spacing:621.845567px;}
.wsa8{word-spacing:632.784502px;}
.wsb3{word-spacing:633.023604px;}
.wsb7{word-spacing:687.538951px;}
.ws95{word-spacing:689.810424px;}
._3c{margin-left:-601.035725px;}
._20{margin-left:-40.514014px;}
._23{margin-left:-8.598823px;}
._16{margin-left:-7.285056px;}
._9{margin-left:-5.986423px;}
._6{margin-left:-4.602708px;}
._4{margin-left:-3.096367px;}
._3{margin-left:-1.322630px;}
._2{width:1.130032px;}
._1{width:2.990742px;}
._1f{width:4.169964px;}
._1b{width:6.475660px;}
._1e{width:9.982525px;}
._5{width:12.971268px;}
._7{width:14.585242px;}
._a{width:16.111337px;}
._d{width:17.484480px;}
._f{width:18.665122px;}
._c{width:20.473236px;}
._42{width:21.540308px;}
._e{width:22.595328px;}
._13{width:23.671138px;}
._10{width:25.285079px;}
._19{width:27.318745px;}
._14{width:28.572724px;}
._24{width:29.657981px;}
._18{width:30.680017px;}
._b{width:32.202912px;}
._0{width:33.355008px;}
._1a{width:35.446313px;}
._45{width:36.755966px;}
._15{width:37.778179px;}
._21{width:39.989876px;}
._44{width:41.306406px;}
._31{width:42.664545px;}
._22{width:44.956863px;}
._8{width:56.810873px;}
._1c{width:59.866169px;}
._43{width:61.868160px;}
._3d{width:71.659469px;}
._17{width:93.548814px;}
._25{width:232.947072px;}
._36{width:264.419059px;}
._3f{width:287.875238px;}
._33{width:295.568410px;}
._41{width:303.956083px;}
._32{width:308.161250px;}
._2f{width:315.151027px;}
._2e{width:319.616294px;}
._39{width:322.200000px;}
._38{width:326.314176px;}
._28{width:346.515494px;}
._3a{width:348.773818px;}
._2a{width:353.670682px;}
._35{width:363.299386px;}
._27{width:367.712064px;}
._29{width:376.319808px;}
._2c{width:377.933760px;}
._26{width:382.537901px;}
._37{width:384.655200px;}
._34{width:398.108400px;}
._2d{width:403.219008px;}
._2b{width:427.804877px;}
._3b{width:438.783766px;}
._40{width:595.333094px;}
._3e{width:601.035725px;}
._11{width:805.155979px;}
._1d{width:1107.306121px;}
._30{width:2278.072399px;}
._12{width:2301.982399px;}
.fc6{color:transparent;}
.fc5{color:rgb(8,117,183);}
.fc4{color:rgb(12,11,11);}
.fc2{color:rgb(42,71,142);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(23,23,23);}
.fc0{color:rgb(72,62,33);}
.fs9{font-size:35.865600px;}
.fs8{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs5{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fsa{font-size:47.820600px;}
.fs0{font-size:52.914960px;}
.fsb{font-size:53.798400px;}
.fs1{font-size:56.694600px;}
.fs3{font-size:59.775600px;}
.fsc{font-size:62.286600px;}
.fs2{font-size:75.592800px;}
.fs4{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.425340px;}
.y4{bottom:12.926085px;}
.yb{bottom:14.151273px;}
.y3{bottom:31.824285px;}
.y4f{bottom:31.890000px;}
.y2{bottom:32.769195px;}
.y23f{bottom:89.007000px;}
.y2b0{bottom:89.211000px;}
.y181{bottom:93.733500px;}
.y110{bottom:94.455000px;}
.y1a4{bottom:95.028000px;}
.y1cd{bottom:97.000500px;}
.y275{bottom:97.716000px;}
.ybb{bottom:97.729500px;}
.y284{bottom:98.901000px;}
.yfa{bottom:101.845500px;}
.y26{bottom:102.823500px;}
.y32c{bottom:103.557000px;}
.y2bc{bottom:105.799500px;}
.y2d6{bottom:106.246500px;}
.y23e{bottom:107.836500px;}
.y2af{bottom:108.040500px;}
.y4e{bottom:108.514500px;}
.y85{bottom:108.919500px;}
.y180{bottom:112.563000px;}
.y10f{bottom:113.688000px;}
.y1a3{bottom:113.857500px;}
.y1cc{bottom:115.830000px;}
.y274{bottom:116.545500px;}
.yba{bottom:116.559000px;}
.y283{bottom:117.730500px;}
.yf9{bottom:120.675000px;}
.y25{bottom:120.711000px;}
.y32b{bottom:120.817500px;}
.y2f5{bottom:121.669500px;}
.y2bb{bottom:124.627500px;}
.y2d5{bottom:125.076000px;}
.y23d{bottom:126.664500px;}
.y2ae{bottom:126.870000px;}
.y4d{bottom:127.344000px;}
.y84{bottom:127.749000px;}
.y1b5{bottom:128.169000px;}
.y17f{bottom:131.392500px;}
.y1a2{bottom:132.687000px;}
.y1cb{bottom:134.659500px;}
.y273{bottom:135.375000px;}
.yb9{bottom:135.388500px;}
.y282{bottom:136.560000px;}
.y32a{bottom:138.078000px;}
.y24{bottom:138.600000px;}
.y2f4{bottom:138.930000px;}
.y2ba{bottom:143.457000px;}
.y2d4{bottom:143.905500px;}
.yf8{bottom:143.988000px;}
.y23c{bottom:145.494000px;}
.yd9{bottom:145.590000px;}
.y2ad{bottom:145.699500px;}
.y4c{bottom:146.173500px;}
.y83{bottom:146.578500px;}
.y1b4{bottom:146.998500px;}
.y17e{bottom:150.222000px;}
.y1ca{bottom:153.489000px;}
.y272{bottom:154.204500px;}
.yb8{bottom:154.216500px;}
.y329{bottom:155.338500px;}
.y281{bottom:155.388000px;}
.y2f3{bottom:156.190500px;}
.y23{bottom:156.487500px;}
.y1a1{bottom:158.988000px;}
.y170{bottom:162.261000px;}
.y1ed{bottom:162.286500px;}
.y2d3{bottom:162.735000px;}
.y23b{bottom:164.323500px;}
.y2ac{bottom:164.529000px;}
.yd8{bottom:164.823000px;}
.y4b{bottom:165.003000px;}
.y82{bottom:165.406500px;}
.y1b3{bottom:165.828000px;}
.y153{bottom:168.243000px;}
.y17d{bottom:169.051500px;}
.y1c9{bottom:172.317000px;}
.y328{bottom:172.599000px;}
.y271{bottom:173.034000px;}
.yb7{bottom:173.046000px;}
.y2f2{bottom:173.451000px;}
.y280{bottom:174.217500px;}
.y22{bottom:174.375000px;}
.y1a0{bottom:177.817500px;}
.yf7{bottom:180.048000px;}
.y16f{bottom:181.089000px;}
.y1ec{bottom:181.116000px;}
.y2d2{bottom:181.564500px;}
.y23a{bottom:183.153000px;}
.y2ab{bottom:183.358500px;}
.y4a{bottom:183.831000px;}
.y81{bottom:184.236000px;}
.y152{bottom:187.072500px;}
.y17c{bottom:187.881000px;}
.y1b2{bottom:189.139500px;}
.y327{bottom:189.858000px;}
.y2f1{bottom:190.711500px;}
.y270{bottom:191.863500px;}
.yb6{bottom:191.875500px;}
.y21{bottom:192.264000px;}
.y27f{bottom:193.047000px;}
.y1c8{bottom:195.630000px;}
.y19f{bottom:196.647000px;}
.y16e{bottom:199.918500px;}
.y1eb{bottom:199.945500px;}
.y2d1{bottom:200.394000px;}
.y239{bottom:201.982500px;}
.y2aa{bottom:202.188000px;}
.y49{bottom:202.660500px;}
.y21f{bottom:202.728000px;}
.y80{bottom:203.065500px;}
.yf6{bottom:203.361000px;}
.y151{bottom:205.902000px;}
.y326{bottom:207.118500px;}
.y2f0{bottom:207.970500px;}
.y20{bottom:210.151500px;}
.y26f{bottom:210.693000px;}
.yb5{bottom:210.705000px;}
.y139{bottom:210.808500px;}
.y17b{bottom:211.194000px;}
.y27e{bottom:211.876500px;}
.y19e{bottom:215.476500px;}
.y16d{bottom:218.748000px;}
.y1ea{bottom:218.775000px;}
.y21c{bottom:219.166500px;}
.y2d0{bottom:219.223500px;}
.y238{bottom:220.812000px;}
.y2a9{bottom:221.017500px;}
.y48{bottom:221.490000px;}
.y7f{bottom:221.895000px;}
.y325{bottom:224.379000px;}
.y150{bottom:224.730000px;}
.y2ef{bottom:225.231000px;}
.y21b{bottom:227.385000px;}
.y1f{bottom:228.039000px;}
.y1b1{bottom:228.534000px;}
.y1c7{bottom:229.254000px;}
.y26e{bottom:229.522500px;}
.yb4{bottom:229.534500px;}
.y138{bottom:229.638000px;}
.y27d{bottom:230.706000px;}
.y19d{bottom:234.306000px;}
.y21e{bottom:235.605000px;}
.y16c{bottom:237.577500px;}
.y1e9{bottom:237.604500px;}
.y2cf{bottom:238.053000px;}
.yf5{bottom:239.170500px;}
.y237{bottom:239.641500px;}
.y2a8{bottom:239.847000px;}
.y47{bottom:240.319500px;}
.y7e{bottom:240.724500px;}
.y324{bottom:241.639500px;}
.y2ee{bottom:242.491500px;}
.y14f{bottom:243.559500px;}
.y1b0{bottom:247.767000px;}
.y1c6{bottom:248.083500px;}
.y26d{bottom:248.352000px;}
.yb3{bottom:248.364000px;}
.y137{bottom:248.466000px;}
.y27c{bottom:249.535500px;}
.y17a{bottom:250.587000px;}
.y21d{bottom:252.043500px;}
.y19c{bottom:253.135500px;}
.y16b{bottom:256.407000px;}
.y1e8{bottom:256.434000px;}
.y2ce{bottom:256.882500px;}
.yf4{bottom:258.000000px;}
.y236{bottom:258.471000px;}
.y2a7{bottom:258.676500px;}
.y323{bottom:258.900000px;}
.y46{bottom:259.149000px;}
.y7d{bottom:259.554000px;}
.y2ed{bottom:259.752000px;}
.y14e{bottom:262.389000px;}
.y1c5{bottom:266.913000px;}
.y26c{bottom:267.181500px;}
.yb2{bottom:267.193500px;}
.y136{bottom:267.295500px;}
.y27b{bottom:268.365000px;}
.y21a{bottom:269.079000px;}
.y179{bottom:269.820000px;}
.y19b{bottom:271.965000px;}
.y16a{bottom:275.236500px;}
.y1e7{bottom:275.263500px;}
.y2cd{bottom:275.712000px;}
.y322{bottom:276.160500px;}
.yf3{bottom:276.829500px;}
.y2ec{bottom:277.012500px;}
.y2a6{bottom:277.506000px;}
.y45{bottom:277.978500px;}
.y7c{bottom:278.383500px;}
.y14d{bottom:281.218500px;}
.y219{bottom:285.517500px;}
.y1c4{bottom:285.742500px;}
.yb1{bottom:286.023000px;}
.y135{bottom:286.125000px;}
.y27a{bottom:287.194500px;}
.y26b{bottom:290.494500px;}
.y19a{bottom:290.794500px;}
.y235{bottom:292.036500px;}
.y321{bottom:293.421000px;}
.y216{bottom:293.736000px;}
.y169{bottom:294.066000px;}
.y1e6{bottom:294.093000px;}
.y2eb{bottom:294.273000px;}
.y2cc{bottom:294.541500px;}
.yf2{bottom:295.659000px;}
.y2a5{bottom:296.334000px;}
.y44{bottom:296.808000px;}
.y7b{bottom:297.213000px;}
.y14c{bottom:300.048000px;}
.y218{bottom:301.956000px;}
.y1c3{bottom:304.572000px;}
.yb0{bottom:304.852500px;}
.y134{bottom:304.954500px;}
.y279{bottom:306.024000px;}
.y1e{bottom:307.299000px;}
.y320{bottom:310.681500px;}
.y234{bottom:311.269500px;}
.y2ea{bottom:311.533500px;}
.y1e5{bottom:312.922500px;}
.y2cb{bottom:313.371000px;}
.y199{bottom:314.106000px;}
.yf1{bottom:314.488500px;}
.y2a4{bottom:315.163500px;}
.y43{bottom:315.637500px;}
.y7a{bottom:316.042500px;}
.y217{bottom:318.394500px;}
.y14b{bottom:318.877500px;}
.y1c2{bottom:323.401500px;}
.yaf{bottom:323.682000px;}
.y133{bottom:323.784000px;}
.y1d{bottom:325.186500px;}
.y168{bottom:327.631500px;}
.y31f{bottom:327.940500px;}
.y1e4{bottom:331.752000px;}
.y2ca{bottom:332.200500px;}
.y2e9{bottom:333.276000px;}
.yf0{bottom:333.318000px;}
.y268{bottom:333.532500px;}
.y2a3{bottom:333.993000px;}
.y42{bottom:334.467000px;}
.y79{bottom:334.872000px;}
.y215{bottom:335.430000px;}
.y14a{bottom:337.707000px;}
.y278{bottom:339.589500px;}
.y26a{bottom:341.752500px;}
.y1c1{bottom:342.231000px;}
.yae{bottom:342.511500px;}
.y132{bottom:342.613500px;}
.y1c{bottom:343.074000px;}
.y31e{bottom:345.201000px;}
.y167{bottom:346.864500px;}
.y266{bottom:349.971000px;}
.y1e3{bottom:350.581500px;}
.y2c9{bottom:351.030000px;}
.y213{bottom:351.868500px;}
.yef{bottom:352.147500px;}
.y2a2{bottom:352.822500px;}
.y41{bottom:353.296500px;}
.y198{bottom:353.500500px;}
.y78{bottom:353.701500px;}
.y149{bottom:356.536500px;}
.y269{bottom:358.191000px;}
.y277{bottom:358.822500px;}
.y1b{bottom:360.963000px;}
.y1c0{bottom:361.060500px;}
.yad{bottom:361.341000px;}
.y31d{bottom:362.461500px;}
.y131{bottom:365.926500px;}
.y166{bottom:366.097500px;}
.y267{bottom:366.409500px;}
.y2e8{bottom:366.900000px;}
.y214{bottom:368.307000px;}
.y1e2{bottom:369.411000px;}
.y2c8{bottom:369.859500px;}
.yee{bottom:370.977000px;}
.y2a1{bottom:371.652000px;}
.y40{bottom:372.126000px;}
.y77{bottom:372.531000px;}
.y197{bottom:372.733500px;}
.y148{bottom:375.366000px;}
.y276{bottom:378.055500px;}
.y31c{bottom:379.722000px;}
.y1bf{bottom:379.890000px;}
.yac{bottom:380.170500px;}
.y265{bottom:383.445000px;}
.y212{bottom:385.342500px;}
.y1e1{bottom:388.240500px;}
.y2c7{bottom:388.689000px;}
.yed{bottom:389.806500px;}
.y2a0{bottom:390.481500px;}
.y76{bottom:391.360500px;}
.y2e7{bottom:393.441000px;}
.y3f{bottom:395.439000px;}
.y31b{bottom:396.982500px;}
.y147{bottom:398.679000px;}
.y1be{bottom:398.719500px;}
.yab{bottom:399.000000px;}
.y1a{bottom:399.024000px;}
.y263{bottom:399.883500px;}
.y211{bottom:401.781000px;}
.y130{bottom:401.782500px;}
.y1e0{bottom:407.070000px;}
.y2c6{bottom:407.518500px;}
.yec{bottom:408.636000px;}
.y29f{bottom:409.311000px;}
.y75{bottom:410.190000px;}
.y2e6{bottom:411.015000px;}
.y31a{bottom:414.243000px;}
.y264{bottom:416.322000px;}
.y19{bottom:416.913000px;}
.y1bd{bottom:417.549000px;}
.yaa{bottom:417.829500px;}
.y210{bottom:418.219500px;}
.y146{bottom:418.854000px;}
.y12f{bottom:420.612000px;}
.y1df{bottom:425.899500px;}
.y20c{bottom:426.439500px;}
.yeb{bottom:427.465500px;}
.y29e{bottom:428.140500px;}
.y2c5{bottom:430.830000px;}
.y319{bottom:431.503500px;}
.y260{bottom:433.359000px;}
.y74{bottom:433.503000px;}
.y20f{bottom:434.658000px;}
.y18{bottom:434.800500px;}
.y1bc{bottom:436.378500px;}
.ya9{bottom:436.659000px;}
.y2e5{bottom:437.556000px;}
.y262{bottom:441.577500px;}
.y12e{bottom:443.923500px;}
.yd7{bottom:444.280500px;}
.y1de{bottom:444.729000px;}
.yea{bottom:446.295000px;}
.y29d{bottom:446.970000px;}
.y318{bottom:448.764000px;}
.y145{bottom:449.281500px;}
.y25e{bottom:449.797500px;}
.y20e{bottom:451.096500px;}
.y2e4{bottom:455.130000px;}
.y1bb{bottom:455.208000px;}
.ya8{bottom:455.488500px;}
.y261{bottom:458.016000px;}
.yd6{bottom:463.110000px;}
.y1dd{bottom:463.558500px;}
.y2c4{bottom:464.454000px;}
.ye9{bottom:465.124500px;}
.y29c{bottom:465.799500px;}
.y317{bottom:466.024500px;}
.y25f{bottom:466.234500px;}
.y73{bottom:467.127000px;}
.y20d{bottom:467.535000px;}
.y144{bottom:468.513000px;}
.y3e{bottom:470.589000px;}
.y17{bottom:470.622000px;}
.y2e3{bottom:472.704000px;}
.y1ba{bottom:474.037500px;}
.ya7{bottom:474.318000px;}
.y12d{bottom:477.547500px;}
.yd5{bottom:481.939500px;}
.y1dc{bottom:482.388000px;}
.y25b{bottom:483.271500px;}
.y2c3{bottom:483.283500px;}
.ye8{bottom:483.954000px;}
.y20b{bottom:484.570500px;}
.y29b{bottom:484.629000px;}
.y72{bottom:485.956500px;}
.y16{bottom:488.509500px;}
.y3d{bottom:490.045500px;}
.y25d{bottom:491.490000px;}
.ya6{bottom:493.147500px;}
.y12c{bottom:496.377000px;}
.y1b9{bottom:497.349000px;}
.y2e2{bottom:499.245000px;}
.y259{bottom:499.710000px;}
.y316{bottom:500.544000px;}
.yd4{bottom:500.769000px;}
.y20a{bottom:501.009000px;}
.y1db{bottom:501.217500px;}
.y2c2{bottom:502.113000px;}
.ye7{bottom:502.783500px;}
.y29a{bottom:503.458500px;}
.y71{bottom:504.786000px;}
.y15{bottom:506.397000px;}
.y25c{bottom:507.928500px;}
.y207{bottom:509.229000px;}
.ya5{bottom:511.977000px;}
.y12b{bottom:515.206500px;}
.y25a{bottom:516.148500px;}
.y2e1{bottom:516.819000px;}
.y209{bottom:517.447500px;}
.y315{bottom:517.804500px;}
.yd3{bottom:519.598500px;}
.y2b9{bottom:520.047000px;}
.y2c1{bottom:520.942500px;}
.ye6{bottom:521.613000px;}
.y299{bottom:522.288000px;}
.y70{bottom:523.615500px;}
.y1da{bottom:524.529000px;}
.y3c{bottom:527.436000px;}
.y1b8{bottom:527.776500px;}
.ya4{bottom:530.806500px;}
.y258{bottom:533.184000px;}
.y10e{bottom:533.646000px;}
.y208{bottom:533.886000px;}
.y12a{bottom:534.036000px;}
.y2e0{bottom:534.393000px;}
.y314{bottom:535.065000px;}
.yd2{bottom:538.428000px;}
.y2b8{bottom:538.876500px;}
.y2c0{bottom:539.772000px;}
.ye5{bottom:540.442500px;}
.y298{bottom:541.117500px;}
.y14{bottom:542.218500px;}
.y6f{bottom:542.445000px;}
.y165{bottom:546.277500px;}
.y3b{bottom:546.892500px;}
.y1b7{bottom:547.009500px;}
.ya3{bottom:549.636000px;}
.y256{bottom:550.219500px;}
.y205{bottom:550.921500px;}
.y2df{bottom:551.967000px;}
.y313{bottom:552.325500px;}
.y10d{bottom:552.475500px;}
.y129{bottom:552.865500px;}
.yd1{bottom:557.257500px;}
.y1d9{bottom:558.153000px;}
.y2bf{bottom:558.601500px;}
.ye4{bottom:559.272000px;}
.y297{bottom:559.947000px;}
.y13{bottom:560.106000px;}
.y6e{bottom:561.274500px;}
.y2b7{bottom:562.188000px;}
.y164{bottom:565.107000px;}
.y1b6{bottom:566.242500px;}
.y3a{bottom:566.350500px;}
.y257{bottom:566.658000px;}
.y206{bottom:567.360000px;}
.ya2{bottom:568.465500px;}
.y2de{bottom:569.541000px;}
.y312{bottom:569.586000px;}
.y10c{bottom:571.305000px;}
.y128{bottom:571.695000px;}
.yd0{bottom:576.087000px;}
.y1d8{bottom:576.982500px;}
.y2be{bottom:577.431000px;}
.y12{bottom:577.993500px;}
.ye3{bottom:578.101500px;}
.y296{bottom:578.776500px;}
.y6d{bottom:580.104000px;}
.y163{bottom:583.936500px;}
.y39{bottom:585.807000px;}
.y311{bottom:586.846500px;}
.y2dd{bottom:587.115000px;}
.ya1{bottom:587.295000px;}
.y10b{bottom:590.134500px;}
.y127{bottom:590.524500px;}
.y255{bottom:594.396000px;}
.ycf{bottom:594.916500px;}
.y204{bottom:595.098000px;}
.y1d7{bottom:595.812000px;}
.y11{bottom:595.882500px;}
.y2bd{bottom:596.260500px;}
.ye2{bottom:596.931000px;}
.y295{bottom:597.606000px;}
.y6c{bottom:598.932000px;}
.y162{bottom:602.766000px;}
.y310{bottom:604.107000px;}
.y2dc{bottom:604.689000px;}
.y38{bottom:605.263500px;}
.ya0{bottom:606.124500px;}
.y254{bottom:613.629000px;}
.y10{bottom:613.770000px;}
.y203{bottom:614.331000px;}
.y1d6{bottom:614.641500px;}
.y196{bottom:615.090000px;}
.ye1{bottom:615.760500px;}
.y294{bottom:616.435500px;}
.y6b{bottom:617.761500px;}
.yce{bottom:618.228000px;}
.y30f{bottom:621.366000px;}
.y2db{bottom:622.263000px;}
.y10a{bottom:623.781000px;}
.y126{bottom:623.965500px;}
.y37{bottom:624.721500px;}
.y9f{bottom:624.954000px;}
.yf{bottom:631.657500px;}
.y253{bottom:632.862000px;}
.y1d5{bottom:633.471000px;}
.y202{bottom:633.564000px;}
.y195{bottom:633.919500px;}
.y125{bottom:634.218000px;}
.ye0{bottom:634.590000px;}
.y293{bottom:635.265000px;}
.y161{bottom:636.331500px;}
.y6a{bottom:636.591000px;}
.y30e{bottom:638.626500px;}
.y2da{bottom:639.837000px;}
.y9e{bottom:643.783500px;}
.y36{bottom:644.178000px;}
.y109{bottom:649.020000px;}
.ye{bottom:649.546500px;}
.ycd{bottom:651.852000px;}
.y1d4{bottom:652.300500px;}
.y194{bottom:652.749000px;}
.ydf{bottom:653.419500px;}
.y292{bottom:654.094500px;}
.y69{bottom:655.420500px;}
.y160{bottom:655.564500px;}
.y30d{bottom:655.887000px;}
.y2d9{bottom:657.412500px;}
.y9d{bottom:662.611500px;}
.y35{bottom:663.634500px;}
.yd{bottom:667.434000px;}
.y201{bottom:669.174000px;}
.ycc{bottom:670.681500px;}
.y1d3{bottom:671.130000px;}
.y193{bottom:671.578500px;}
.yde{bottom:672.249000px;}
.y291{bottom:672.924000px;}
.y30c{bottom:673.147500px;}
.y68{bottom:674.250000px;}
.y2d8{bottom:674.986500px;}
.y252{bottom:675.166500px;}
.y124{bottom:678.576000px;}
.y9c{bottom:681.441000px;}
.y34{bottom:683.092500px;}
.y108{bottom:683.511000px;}
.y200{bottom:688.003500px;}
.ycb{bottom:689.511000px;}
.ya{bottom:689.805055px;}
.y1d2{bottom:689.959500px;}
.y192{bottom:690.408000px;}
.ydd{bottom:691.078500px;}
.y250{bottom:691.605000px;}
.y290{bottom:691.753500px;}
.y2d7{bottom:692.560500px;}
.y67{bottom:693.079500px;}
.y123{bottom:697.405500px;}
.y9b{bottom:700.270500px;}
.y107{bottom:702.340500px;}
.y33{bottom:702.549000px;}
.y1ff{bottom:706.831500px;}
.y30b{bottom:707.668500px;}
.y233{bottom:707.892000px;}
.y251{bottom:708.043500px;}
.yca{bottom:708.340500px;}
.y1d1{bottom:708.789000px;}
.y191{bottom:709.237500px;}
.y28f{bottom:710.583000px;}
.y66{bottom:711.909000px;}
.ydc{bottom:714.390000px;}
.y9a{bottom:719.100000px;}
.y143{bottom:719.449500px;}
.y106{bottom:721.168500px;}
.y32{bottom:722.007000px;}
.y30a{bottom:724.929000px;}
.y24f{bottom:725.079000px;}
.y1fe{bottom:725.661000px;}
.y232{bottom:726.721500px;}
.yc9{bottom:727.170000px;}
.y1d0{bottom:727.618500px;}
.y190{bottom:728.067000px;}
.y28e{bottom:729.412500px;}
.y65{bottom:730.738500px;}
.y122{bottom:731.739000px;}
.y99{bottom:737.929500px;}
.y142{bottom:738.279000px;}
.y31{bottom:741.463500px;}
.y24d{bottom:741.517500px;}
.y121{bottom:741.990000px;}
.y309{bottom:742.189500px;}
.y1fd{bottom:744.490500px;}
.ydb{bottom:744.817500px;}
.y231{bottom:745.551000px;}
.yc8{bottom:745.999500px;}
.y1cf{bottom:746.448000px;}
.y18f{bottom:746.896500px;}
.y28d{bottom:748.242000px;}
.y64{bottom:749.568000px;}
.y105{bottom:755.689500px;}
.y98{bottom:756.759000px;}
.y141{bottom:757.108500px;}
.y24e{bottom:757.956000px;}
.y308{bottom:759.450000px;}
.y30{bottom:760.920000px;}
.y1fc{bottom:763.320000px;}
.yda{bottom:764.050500px;}
.y230{bottom:764.380500px;}
.yc7{bottom:764.829000px;}
.y2b6{bottom:765.277500px;}
.y18e{bottom:765.726000px;}
.y28c{bottom:767.071500px;}
.y63{bottom:768.397500px;}
.y1ce{bottom:769.761000px;}
.y24c{bottom:774.991500px;}
.y97{bottom:775.588500px;}
.y140{bottom:775.938000px;}
.y307{bottom:776.709000px;}
.y2f{bottom:780.378000px;}
.y1fb{bottom:782.149500px;}
.y22f{bottom:783.210000px;}
.yc6{bottom:783.658500px;}
.y2b5{bottom:784.107000px;}
.y18d{bottom:784.555500px;}
.y28b{bottom:785.901000px;}
.y120{bottom:786.348000px;}
.y62{bottom:787.227000px;}
.y104{bottom:790.210500px;}
.y24a{bottom:791.430000px;}
.y306{bottom:793.969500px;}
.y96{bottom:794.418000px;}
.y13f{bottom:794.767500px;}
.y1fa{bottom:800.979000px;}
.y22e{bottom:802.039500px;}
.yc5{bottom:802.488000px;}
.y2b4{bottom:802.936500px;}
.y18c{bottom:803.385000px;}
.y28a{bottom:804.729000px;}
.y11f{bottom:805.177500px;}
.y61{bottom:806.056500px;}
.y24b{bottom:807.868500px;}
.y103{bottom:809.040000px;}
.y305{bottom:811.230000px;}
.y95{bottom:813.247500px;}
.y13e{bottom:813.597000px;}
.y2e{bottom:818.962500px;}
.y1f9{bottom:819.808500px;}
.y22d{bottom:820.869000px;}
.y2b3{bottom:821.766000px;}
.y18b{bottom:822.214500px;}
.y289{bottom:823.558500px;}
.y11e{bottom:824.007000px;}
.y60{bottom:824.886000px;}
.y249{bottom:824.905500px;}
.yc4{bottom:825.801000px;}
.y304{bottom:828.490500px;}
.y94{bottom:832.077000px;}
.y1af{bottom:833.571000px;}
.y2d{bottom:835.102500px;}
.y13d{bottom:836.908500px;}
.y1f8{bottom:838.638000px;}
.y22c{bottom:839.698500px;}
.y2b2{bottom:840.595500px;}
.y18a{bottom:841.044000px;}
.y247{bottom:841.344000px;}
.y288{bottom:842.388000px;}
.y102{bottom:842.481000px;}
.y11d{bottom:842.836500px;}
.y5f{bottom:843.715500px;}
.y303{bottom:845.751000px;}
.y93{bottom:850.906500px;}
.y2c{bottom:851.242500px;}
.y1ae{bottom:852.400500px;}
.y101{bottom:852.733500px;}
.y178{bottom:855.625500px;}
.y1f7{bottom:857.467500px;}
.y248{bottom:857.781000px;}
.y22b{bottom:858.528000px;}
.yc3{bottom:859.425000px;}
.y189{bottom:859.873500px;}
.y11c{bottom:861.666000px;}
.y5e{bottom:862.545000px;}
.y302{bottom:863.011500px;}
.y287{bottom:865.701000px;}
.y13c{bottom:867.336000px;}
.y92{bottom:869.736000px;}
.y1ad{bottom:871.230000px;}
.y2b{bottom:871.722000px;}
.y177{bottom:874.455000px;}
.y246{bottom:874.818000px;}
.y1f6{bottom:876.297000px;}
.y22a{bottom:877.357500px;}
.yc2{bottom:878.254500px;}
.y188{bottom:878.703000px;}
.y301{bottom:880.272000px;}
.y11b{bottom:880.495500px;}
.y5d{bottom:881.374500px;}
.y286{bottom:881.392500px;}
.y2b1{bottom:882.738000px;}
.y2a{bottom:883.521000px;}
.y13b{bottom:886.569000px;}
.y91{bottom:888.565500px;}
.y1ac{bottom:890.059500px;}
.y244{bottom:891.853500px;}
.y176{bottom:893.284500px;}
.y1f5{bottom:895.126500px;}
.y229{bottom:896.187000px;}
.yc1{bottom:897.084000px;}
.y100{bottom:897.091500px;}
.y187{bottom:897.532500px;}
.y11a{bottom:899.325000px;}
.y5c{bottom:900.204000px;}
.y285{bottom:901.567500px;}
.y29{bottom:904.000500px;}
.y13a{bottom:905.802000px;}
.y90{bottom:907.395000px;}
.y245{bottom:908.292000px;}
.y1ab{bottom:908.889000px;}
.y175{bottom:912.114000px;}
.y300{bottom:914.793000px;}
.y228{bottom:915.016500px;}
.y28{bottom:915.801000px;}
.yc0{bottom:915.913500px;}
.yff{bottom:915.921000px;}
.y186{bottom:916.362000px;}
.y15e{bottom:917.128500px;}
.y119{bottom:918.154500px;}
.y5b{bottom:919.033500px;}
.y15f{bottom:922.311000px;}
.y8f{bottom:926.224500px;}
.y1aa{bottom:927.718500px;}
.y174{bottom:930.943500px;}
.y2ff{bottom:932.052000px;}
.y227{bottom:933.846000px;}
.ybf{bottom:934.743000px;}
.yfe{bottom:934.750500px;}
.y185{bottom:935.191500px;}
.y243{bottom:936.030000px;}
.y27{bottom:936.279000px;}
.y118{bottom:936.984000px;}
.y5a{bottom:937.863000px;}
.y1f4{bottom:938.314500px;}
.y15d{bottom:939.346500px;}
.y1a9{bottom:946.548000px;}
.y2fe{bottom:949.312500px;}
.y8e{bottom:949.537500px;}
.y226{bottom:952.675500px;}
.ybe{bottom:953.572500px;}
.yfd{bottom:953.580000px;}
.y184{bottom:954.021000px;}
.y242{bottom:955.263000px;}
.y1f3{bottom:955.351500px;}
.y117{bottom:955.813500px;}
.y59{bottom:956.692500px;}
.y15c{bottom:963.286500px;}
.y173{bottom:964.509000px;}
.y1a8{bottom:965.377500px;}
.y2fd{bottom:966.573000px;}
.y8d{bottom:968.367000px;}
.y225{bottom:971.505000px;}
.y1f2{bottom:972.387000px;}
.y183{bottom:972.849000px;}
.y241{bottom:974.496000px;}
.y58{bottom:975.522000px;}
.y9{bottom:976.473000px;}
.ybd{bottom:976.884000px;}
.y172{bottom:983.742000px;}
.y2fc{bottom:983.833500px;}
.y1a7{bottom:984.207000px;}
.y8c{bottom:987.196500px;}
.y15b{bottom:987.226500px;}
.yfc{bottom:988.356000px;}
.y1f1{bottom:989.422500px;}
.y116{bottom:990.334500px;}
.y182{bottom:991.678500px;}
.y240{bottom:993.727500px;}
.y57{bottom:994.351500px;}
.y8{bottom:995.302500px;}
.yfb{bottom:1000.437000px;}
.y2fb{bottom:1001.094000px;}
.y171{bottom:1002.975000px;}
.y1a6{bottom:1003.036500px;}
.y159{bottom:1004.262000px;}
.y8b{bottom:1006.026000px;}
.y1f0{bottom:1006.459500px;}
.y224{bottom:1009.164000px;}
.ybc{bottom:1010.508000px;}
.y56{bottom:1013.181000px;}
.y2fa{bottom:1018.354500px;}
.y15a{bottom:1020.700500px;}
.y1a5{bottom:1021.866000px;}
.y1ee{bottom:1023.495000px;}
.y115{bottom:1024.855500px;}
.y223{bottom:1027.993500px;}
.y8a{bottom:1029.337500px;}
.y55{bottom:1032.010500px;}
.y2f9{bottom:1035.615000px;}
.y1ef{bottom:1039.933500px;}
.y7{bottom:1041.199500px;}
.y113{bottom:1043.685000px;}
.y114{bottom:1043.901000px;}
.y222{bottom:1046.823000px;}
.y89{bottom:1048.167000px;}
.y158{bottom:1048.438500px;}
.y54{bottom:1050.840000px;}
.y2f8{bottom:1052.875500px;}
.y112{bottom:1062.513000px;}
.y221{bottom:1065.652500px;}
.y88{bottom:1066.996500px;}
.y157{bottom:1067.671500px;}
.y6{bottom:1069.443000px;}
.y53{bottom:1069.669500px;}
.y2f7{bottom:1070.134500px;}
.y111{bottom:1081.342500px;}
.y87{bottom:1085.826000px;}
.y156{bottom:1085.868000px;}
.y155{bottom:1086.904500px;}
.y2f6{bottom:1087.395000px;}
.y52{bottom:1088.499000px;}
.y220{bottom:1088.964000px;}
.y5{bottom:1097.688000px;}
.y86{bottom:1104.655500px;}
.y154{bottom:1106.137500px;}
.y51{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y50{bottom:1173.397500px;}
.h9{height:25.508090px;}
.hd{height:31.131341px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.h3{height:35.876343px;}
.hc{height:36.319550px;}
.h21{height:38.250662px;}
.hf{height:38.896243px;}
.h4{height:39.402747px;}
.he{height:41.508281px;}
.h22{height:41.801357px;}
.h14{height:42.500452px;}
.h11{height:43.217759px;}
.h24{height:45.567245px;}
.h10{height:46.697011px;}
.h13{height:46.714950px;}
.h6{height:50.629933px;}
.h23{height:50.837011px;}
.h2{height:50.931027px;}
.h5{height:51.251918px;}
.h12{height:51.885221px;}
.h1c{height:52.755221px;}
.h8{height:54.541601px;}
.h1b{height:66.735221px;}
.h25{height:71.776243px;}
.h7{height:77.792486px;}
.h26{height:79.577011px;}
.h1d{height:91.804950px;}
.h1f{height:92.889221px;}
.h19{height:92.895221px;}
.h18{height:96.975221px;}
.h15{height:98.631221px;}
.h17{height:100.209221px;}
.h1a{height:102.483221px;}
.h16{height:104.637024px;}
.h1e{height:132.808950px;}
.h20{height:132.814950px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:192.532972px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:29.274117px;}
.x1{left:54.000000px;}
.x3{left:58.056971px;}
.xc7{left:69.966000px;}
.xaa{left:85.890000px;}
.xce{left:110.278500px;}
.xcc{left:113.641500px;}
.xc8{left:117.004500px;}
.xc5{left:136.599000px;}
.xe2{left:137.758500px;}
.xac{left:143.100000px;}
.xab{left:144.997500px;}
.xad{left:149.827500px;}
.x2{left:181.274369px;}
.xc9{left:209.148000px;}
.xe0{left:230.178000px;}
.xe1{left:241.699500px;}
.x7{left:249.832500px;}
.x5{left:250.897500px;}
.xc4{left:255.480000px;}
.x68{left:260.829000px;}
.x6{left:271.221000px;}
.x75{left:272.638500px;}
.xb8{left:277.860000px;}
.xbc{left:279.367500px;}
.xa{left:282.786000px;}
.xc2{left:284.373000px;}
.x45{left:285.888000px;}
.x9b{left:287.094000px;}
.xa8{left:290.601000px;}
.x46{left:292.111500px;}
.x8d{left:294.205500px;}
.xa7{left:297.480000px;}
.xa3{left:301.734000px;}
.xbe{left:303.028500px;}
.x5b{left:305.479500px;}
.x7d{left:308.098500px;}
.x8{left:309.435000px;}
.x4f{left:310.962000px;}
.xc3{left:313.086000px;}
.xde{left:314.844000px;}
.x9c{left:315.952500px;}
.x7c{left:317.202000px;}
.xe8{left:318.589500px;}
.x9{left:321.204000px;}
.x5c{left:322.312500px;}
.x47{left:324.156000px;}
.xc0{left:326.290500px;}
.x5d{left:328.687500px;}
.x48{left:334.698000px;}
.xa6{left:339.045000px;}
.xda{left:346.380000px;}
.x20{left:347.629500px;}
.x88{left:351.610500px;}
.x37{left:354.259500px;}
.x91{left:357.603000px;}
.x96{left:359.428500px;}
.x21{left:362.574000px;}
.xb9{left:363.675000px;}
.xca{left:366.130500px;}
.x4d{left:367.821000px;}
.x2d{left:369.973500px;}
.x76{left:371.649000px;}
.x4e{left:374.046000px;}
.x61{left:375.186000px;}
.x5e{left:376.803000px;}
.xef{left:378.523500px;}
.x3e{left:379.749000px;}
.x2e{left:384.918000px;}
.xf0{left:386.145000px;}
.xd4{left:387.501000px;}
.x59{left:389.467500px;}
.x77{left:392.355000px;}
.x3f{left:395.250000px;}
.x11{left:398.182500px;}
.x62{left:400.497000px;}
.x12{left:405.654000px;}
.x63{left:406.896000px;}
.x40{left:410.193000px;}
.x41{left:414.004500px;}
.x97{left:415.228500px;}
.xa1{left:417.042000px;}
.x17{left:418.299000px;}
.x50{left:421.830000px;}
.x6c{left:423.144000px;}
.xba{left:424.522500px;}
.x18{left:425.770500px;}
.x64{left:427.261500px;}
.x42{left:428.947500px;}
.x85{left:430.735500px;}
.x65{left:433.914000px;}
.x51{left:436.773000px;}
.xa2{left:438.772500px;}
.x52{left:444.148500px;}
.x90{left:447.616500px;}
.x99{left:451.338000px;}
.xe6{left:452.566500px;}
.xf{left:454.230000px;}
.x53{left:459.091500px;}
.x66{left:460.677000px;}
.x10{left:461.701500px;}
.x71{left:466.978500px;}
.x80{left:470.130000px;}
.xed{left:471.778500px;}
.x6d{left:474.873000px;}
.xd{left:484.288500px;}
.x67{left:485.734500px;}
.xbb{left:488.163000px;}
.xe{left:491.760000px;}
.x6f{left:493.509000px;}
.x72{left:500.889000px;}
.x6e{left:506.916000px;}
.x22{left:511.608000px;}
.x2f{left:517.287000px;}
.x92{left:518.373000px;}
.x1c{left:520.431000px;}
.xcb{left:523.113000px;}
.x43{left:524.713500px;}
.x23{left:526.551000px;}
.x70{left:527.568000px;}
.x35{left:529.632000px;}
.x30{left:532.231500px;}
.x81{left:533.599500px;}
.x1d{left:535.374000px;}
.xe4{left:536.791500px;}
.x44{left:539.658000px;}
.x82{left:542.383500px;}
.x36{left:544.575000px;}
.x84{left:548.871000px;}
.x83{left:550.036500px;}
.x78{left:551.242500px;}
.xae{left:554.805000px;}
.x94{left:558.520500px;}
.x3c{left:561.552000px;}
.xaf{left:563.023500px;}
.x89{left:564.534000px;}
.x93{left:569.590500px;}
.x79{left:572.493000px;}
.x29{left:574.590000px;}
.x3d{left:576.495000px;}
.xd6{left:578.566500px;}
.x19{left:580.239000px;}
.x8a{left:583.728000px;}
.x1a{left:587.712000px;}
.x2a{left:589.533000px;}
.xee{left:590.754000px;}
.x55{left:591.919500px;}
.xd8{left:592.947000px;}
.x49{left:594.885000px;}
.x9a{left:599.757000px;}
.x4a{left:601.110000px;}
.xe5{left:605.496000px;}
.x56{left:606.864000px;}
.x7a{left:607.969500px;}
.xe7{left:609.927000px;}
.xd1{left:611.470500px;}
.x1e{left:615.241500px;}
.x8b{left:619.657500px;}
.x86{left:622.879500px;}
.xd9{left:624.127500px;}
.x1f{left:630.186000px;}
.x4b{left:633.154500px;}
.xb4{left:634.840500px;}
.x57{left:636.334500px;}
.xd2{left:641.085000px;}
.x4c{left:643.696500px;}
.xb5{left:647.886000px;}
.x58{left:651.279000px;}
.xd5{left:654.117000px;}
.xa4{left:656.644500px;}
.xa5{left:667.128000px;}
.x7b{left:669.280500px;}
.xdc{left:671.040000px;}
.xb7{left:674.464500px;}
.x6b{left:675.543000px;}
.xcd{left:680.097000px;}
.x31{left:681.262500px;}
.xc6{left:686.601000px;}
.xb0{left:690.955500px;}
.x8c{left:693.790500px;}
.x32{left:696.207000px;}
.x33{left:700.017000px;}
.x98{left:701.077500px;}
.xdd{left:703.065000px;}
.x9d{left:705.538500px;}
.xe9{left:708.190500px;}
.x54{left:711.195000px;}
.x28{left:712.837500px;}
.x24{left:713.937000px;}
.x34{left:714.961500px;}
.x5a{left:717.036000px;}
.x13{left:719.430000px;}
.xdb{left:722.338500px;}
.x3a{left:723.405000px;}
.x14{left:726.901500px;}
.x25{left:728.880000px;}
.xb1{left:731.343000px;}
.x26{left:732.691500px;}
.x15{left:734.523000px;}
.xf3{left:737.091000px;}
.x3b{left:738.349500px;}
.x16{left:741.996000px;}
.x95{left:743.167500px;}
.xea{left:744.964500px;}
.xb2{left:746.331000px;}
.x27{left:747.634500px;}
.xc1{left:751.161000px;}
.xe3{left:752.235000px;}
.x7e{left:756.483000px;}
.xf4{left:758.358000px;}
.xeb{left:759.907500px;}
.xf5{left:762.304500px;}
.xec{left:763.588500px;}
.x38{left:765.742500px;}
.x2b{left:770.181000px;}
.xb6{left:771.249000px;}
.x9e{left:775.125000px;}
.xb3{left:777.465000px;}
.xd7{left:778.828500px;}
.x1b{left:779.989500px;}
.x8e{left:781.774500px;}
.x73{left:783.432000px;}
.x2c{left:785.124000px;}
.x9f{left:786.342000px;}
.xa9{left:789.078000px;}
.xb{left:790.320000px;}
.x5f{left:791.593500px;}
.xcf{left:795.117000px;}
.xc{left:797.791500px;}
.x39{left:799.441500px;}
.x74{left:800.629500px;}
.x69{left:803.344500px;}
.xd3{left:805.669500px;}
.x60{left:808.836000px;}
.xf2{left:810.265500px;}
.xbf{left:811.348500px;}
.xbd{left:813.948000px;}
.xf1{left:816.516000px;}
.x87{left:818.046000px;}
.x6a{left:819.060000px;}
.xa0{left:820.980000px;}
.xd0{left:823.812000px;}
.xdf{left:830.763000px;}
.x7f{left:833.245500px;}
.x8f{left:837.717000px;}
@media print{
.v15{vertical-align:-43.701333pt;}
.v13{vertical-align:-18.426667pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.453333pt;}
.v9{vertical-align:-9.301333pt;}
.v5{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v14{vertical-align:3.680000pt;}
.v4{vertical-align:10.453333pt;}
.v10{vertical-align:13.200000pt;}
.v1{vertical-align:19.285333pt;}
.vc{vertical-align:28.938667pt;}
.vd{vertical-align:32.106667pt;}
.ve{vertical-align:36.453333pt;}
.v8{vertical-align:37.381333pt;}
.vb{vertical-align:40.080000pt;}
.v6{vertical-align:41.552000pt;}
.va{vertical-align:42.954667pt;}
.vf{vertical-align:44.976000pt;}
.v12{vertical-align:68.560000pt;}
.v11{vertical-align:76.528000pt;}
.v7{vertical-align:90.885333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5b{letter-spacing:0.091185pt;}
.lse{letter-spacing:0.596214pt;}
.ls77{letter-spacing:0.596898pt;}
.lsc{letter-spacing:0.601548pt;}
.ls21{letter-spacing:0.618170pt;}
.ls52{letter-spacing:0.623503pt;}
.ls37{letter-spacing:0.630024pt;}
.ls3e{letter-spacing:0.635362pt;}
.ls6d{letter-spacing:0.659230pt;}
.ls1e{letter-spacing:0.660541pt;}
.ls49{letter-spacing:0.664563pt;}
.ls38{letter-spacing:0.665067pt;}
.ls1c{letter-spacing:0.665874pt;}
.ls24{letter-spacing:0.666335pt;}
.ls3b{letter-spacing:0.667185pt;}
.ls1a{letter-spacing:0.784508pt;}
.ls18{letter-spacing:0.789841pt;}
.ls2a{letter-spacing:0.881183pt;}
.ls17{letter-spacing:0.883733pt;}
.ls10{letter-spacing:0.884541pt;}
.ls57{letter-spacing:0.885044pt;}
.ls12{letter-spacing:0.886516pt;}
.ls13{letter-spacing:0.888259pt;}
.ls19{letter-spacing:0.889067pt;}
.ls26{letter-spacing:0.889874pt;}
.ls4c{letter-spacing:1.036785pt;}
.ls73{letter-spacing:1.060898pt;}
.ls85{letter-spacing:1.061274pt;}
.ls86{letter-spacing:1.064158pt;}
.ls7{letter-spacing:1.133683pt;}
.ls1b{letter-spacing:1.165897pt;}
.ls6f{letter-spacing:1.171230pt;}
.ls29{letter-spacing:1.262881pt;}
.ls25{letter-spacing:1.276058pt;}
.ls60{letter-spacing:1.281391pt;}
.ls43{letter-spacing:1.325412pt;}
.ls4e{letter-spacing:1.330118pt;}
.ls35{letter-spacing:1.330746pt;}
.ls1{letter-spacing:1.654338pt;}
.ls88{letter-spacing:1.802607pt;}
.ls83{letter-spacing:1.805491pt;}
.ls84{letter-spacing:1.807940pt;}
.ls82{letter-spacing:1.972541pt;}
.ls81{letter-spacing:1.974156pt;}
.ls80{letter-spacing:1.977874pt;}
.ls7f{letter-spacing:1.979489pt;}
.ls16{letter-spacing:2.208696pt;}
.ls4a{letter-spacing:2.580541pt;}
.ls5d{letter-spacing:2.581044pt;}
.ls64{letter-spacing:2.582516pt;}
.ls66{letter-spacing:2.586378pt;}
.ls34{letter-spacing:2.655494pt;}
.ls31{letter-spacing:3.319831pt;}
.ls2e{letter-spacing:3.322161pt;}
.ls46{letter-spacing:3.325165pt;}
.ls5c{letter-spacing:3.445841pt;}
.ls5e{letter-spacing:3.824508pt;}
.ls14{letter-spacing:4.107174pt;}
.ls2{letter-spacing:9.298933pt;}
.ls47{letter-spacing:9.449548pt;}
.ls32{letter-spacing:9.454881pt;}
.ls3f{letter-spacing:9.494029pt;}
.ls3a{letter-spacing:9.516533pt;}
.ls36{letter-spacing:9.521867pt;}
.ls5f{letter-spacing:10.116214pt;}
.ls5{letter-spacing:10.626533pt;}
.ls45{letter-spacing:10.971362pt;}
.ls91{letter-spacing:10.989018pt;}
.ls4d{letter-spacing:11.377867pt;}
.ls44{letter-spacing:11.593548pt;}
.ls3c{letter-spacing:11.620910pt;}
.ls6a{letter-spacing:11.632696pt;}
.ls39{letter-spacing:11.635096pt;}
.ls94{letter-spacing:11.772691pt;}
.ls92{letter-spacing:11.823456pt;}
.ls8c{letter-spacing:11.954133pt;}
.ls8d{letter-spacing:11.959467pt;}
.ls56{letter-spacing:11.959831pt;}
.ls90{letter-spacing:11.967389pt;}
.ls8f{letter-spacing:11.988744pt;}
.ls95{letter-spacing:12.138918pt;}
.ls93{letter-spacing:12.155798pt;}
.ls8b{letter-spacing:12.201663pt;}
.ls72{letter-spacing:12.220789pt;}
.ls79{letter-spacing:12.698994pt;}
.ls8a{letter-spacing:13.070931pt;}
.ls7a{letter-spacing:13.177199pt;}
.ls53{letter-spacing:13.230333pt;}
.lsa{letter-spacing:13.283467pt;}
.ls7c{letter-spacing:13.389734pt;}
.ls7d{letter-spacing:13.496002pt;}
.ls7e{letter-spacing:13.549136pt;}
.ls22{letter-spacing:13.652828pt;}
.lsf{letter-spacing:13.886881pt;}
.lsd{letter-spacing:13.892214pt;}
.ls42{letter-spacing:13.946682pt;}
.ls5a{letter-spacing:13.947489pt;}
.ls8{letter-spacing:14.239876pt;}
.ls78{letter-spacing:14.611980pt;}
.ls89{letter-spacing:15.059544pt;}
.ls8e{letter-spacing:15.229114pt;}
.ls2c{letter-spacing:15.395096pt;}
.ls55{letter-spacing:15.400429pt;}
.ls6b{letter-spacing:15.872696pt;}
.ls70{letter-spacing:15.938498pt;}
.ls54{letter-spacing:15.940828pt;}
.ls15{letter-spacing:16.030881pt;}
.ls6e{letter-spacing:16.047577pt;}
.ls2f{letter-spacing:16.052910pt;}
.ls23{letter-spacing:16.061762pt;}
.ls4f{letter-spacing:16.064696pt;}
.ls28{letter-spacing:16.087200pt;}
.ls59{letter-spacing:16.164214pt;}
.ls76{letter-spacing:16.418365pt;}
.lsb{letter-spacing:17.427908pt;}
.ls20{letter-spacing:18.077165pt;}
.ls1d{letter-spacing:18.079494pt;}
.ls1f{letter-spacing:18.082498pt;}
.ls40{letter-spacing:18.084828pt;}
.ls41{letter-spacing:18.087831pt;}
.ls71{letter-spacing:18.584787pt;}
.ls4b{letter-spacing:18.587174pt;}
.ls27{letter-spacing:18.864508pt;}
.ls2b{letter-spacing:18.869841pt;}
.ls11{letter-spacing:18.880508pt;}
.ls58{letter-spacing:19.013841pt;}
.ls9{letter-spacing:19.128192pt;}
.ls48{letter-spacing:20.179096pt;}
.ls65{letter-spacing:20.363174pt;}
.ls62{letter-spacing:20.368508pt;}
.ls61{letter-spacing:20.792429pt;}
.ls68{letter-spacing:22.440429pt;}
.ls75{letter-spacing:22.474243pt;}
.ls50{letter-spacing:22.677841pt;}
.ls63{letter-spacing:23.512429pt;}
.ls74{letter-spacing:24.509165pt;}
.ls2d{letter-spacing:26.415467pt;}
.ls30{letter-spacing:26.420800pt;}
.ls67{letter-spacing:30.811174pt;}
.ls3d{letter-spacing:31.252214pt;}
.ls0{letter-spacing:51.035733pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls6c{letter-spacing:107.165762pt;}
.ls69{letter-spacing:111.720429pt;}
.ls7b{letter-spacing:390.382780pt;}
.ls87{letter-spacing:534.253978pt;}
.ls33{letter-spacing:549.815200pt;}
.ls51{letter-spacing:835.009867pt;}
.ws101{word-spacing:-546.209178pt;}
.wsb1{word-spacing:-55.365867pt;}
.ws9c{word-spacing:-43.950381pt;}
.ws86{word-spacing:-43.739035pt;}
.wsb6{word-spacing:-40.029522pt;}
.ws82{word-spacing:-39.309765pt;}
.wsa7{word-spacing:-39.199034pt;}
.wsaa{word-spacing:-37.814887pt;}
.wsab{word-spacing:-27.073909pt;}
.wsb2{word-spacing:-15.123803pt;}
.ws2{word-spacing:-13.283467pt;}
.wsc8{word-spacing:-11.955200pt;}
.ws2c{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.ws8{word-spacing:-9.298400pt;}
.wsbb{word-spacing:-2.603559pt;}
.wsba{word-spacing:-2.550426pt;}
.ws3c{word-spacing:-2.497292pt;}
.ws48{word-spacing:-2.444158pt;}
.ws31{word-spacing:-2.391024pt;}
.wsea{word-spacing:-2.178489pt;}
.ws10a{word-spacing:-2.151936pt;}
.ws132{word-spacing:-2.125355pt;}
.ws13b{word-spacing:-2.104115pt;}
.ws13c{word-spacing:-1.912832pt;}
.wsd9{word-spacing:-1.912819pt;}
.ws116{word-spacing:-1.806551pt;}
.ws122{word-spacing:-1.769370pt;}
.ws10f{word-spacing:-1.753418pt;}
.ws6{word-spacing:-1.696326pt;}
.ws6f{word-spacing:-1.647150pt;}
.ws6e{word-spacing:-1.617400pt;}
.ws6d{word-spacing:-1.594016pt;}
.wsa5{word-spacing:-1.540882pt;}
.ws39{word-spacing:-1.328347pt;}
.ws150{word-spacing:-1.291162pt;}
.ws3a{word-spacing:-1.275213pt;}
.wsbc{word-spacing:-1.222079pt;}
.ws14b{word-spacing:-1.195520pt;}
.ws5{word-spacing:-1.175671pt;}
.ws131{word-spacing:-1.168945pt;}
.ws12b{word-spacing:-1.115811pt;}
.ws25{word-spacing:-1.062677pt;}
.wsbd{word-spacing:-1.009543pt;}
.wsd6{word-spacing:-0.956410pt;}
.ws92{word-spacing:-0.903276pt;}
.wsc0{word-spacing:-0.860774pt;}
.wse9{word-spacing:-0.850142pt;}
.ws84{word-spacing:-0.797008pt;}
.ws32{word-spacing:-0.743874pt;}
.ws10c{word-spacing:-0.717312pt;}
.wsd4{word-spacing:-0.690740pt;}
.ws12c{word-spacing:-0.669491pt;}
.ws43{word-spacing:-0.637606pt;}
.ws29{word-spacing:-0.531339pt;}
.ws12e{word-spacing:-0.478208pt;}
.ws134{word-spacing:-0.478205pt;}
.ws12d{word-spacing:-0.430387pt;}
.ws136{word-spacing:-0.425071pt;}
.ws15d{word-spacing:-0.382566pt;}
.ws13a{word-spacing:-0.371937pt;}
.ws146{word-spacing:-0.334746pt;}
.ws21{word-spacing:-0.318803pt;}
.ws156{word-spacing:-0.286925pt;}
.ws42{word-spacing:-0.265669pt;}
.wsc7{word-spacing:-0.256765pt;}
.ws14{word-spacing:-0.239104pt;}
.wse5{word-spacing:-0.226190pt;}
.wse6{word-spacing:-0.215773pt;}
.ws26{word-spacing:-0.212535pt;}
.ws140{word-spacing:-0.191283pt;}
.wse4{word-spacing:-0.169175pt;}
.ws50{word-spacing:-0.159402pt;}
.ws1f{word-spacing:-0.143462pt;}
.ws53{word-spacing:-0.122950pt;}
.ws51{word-spacing:-0.122715pt;}
.ws52{word-spacing:-0.115597pt;}
.wsd1{word-spacing:-0.114697pt;}
.ws22{word-spacing:-0.106268pt;}
.ws5b{word-spacing:-0.102565pt;}
.wsd3{word-spacing:-0.097765pt;}
.ws15{word-spacing:-0.095642pt;}
.wsd2{word-spacing:-0.094905pt;}
.ws5c{word-spacing:-0.082359pt;}
.ws5a{word-spacing:-0.081552pt;}
.ws70{word-spacing:-0.078171pt;}
.ws12a{word-spacing:-0.076308pt;}
.ws129{word-spacing:-0.074027pt;}
.wsaf{word-spacing:-0.072964pt;}
.ws71{word-spacing:-0.064684pt;}
.wsa0{word-spacing:-0.062860pt;}
.ws9b{word-spacing:-0.055366pt;}
.ws33{word-spacing:-0.053134pt;}
.wsa3{word-spacing:-0.047821pt;}
.wsf3{word-spacing:-0.037194pt;}
.ws164{word-spacing:-0.009438pt;}
.ws7b{word-spacing:-0.008021pt;}
.ws79{word-spacing:-0.005922pt;}
.ws153{word-spacing:-0.005308pt;}
.ws7a{word-spacing:-0.004898pt;}
.ws148{word-spacing:-0.004207pt;}
.ws16b{word-spacing:-0.002645pt;}
.ws11b{word-spacing:-0.002500pt;}
.ws99{word-spacing:-0.002262pt;}
.ws15b{word-spacing:-0.002244pt;}
.ws98{word-spacing:-0.001897pt;}
.ws169{word-spacing:-0.001621pt;}
.ws15c{word-spacing:-0.001126pt;}
.ws15e{word-spacing:-0.000273pt;}
.ws0{word-spacing:0.000000pt;}
.ws9a{word-spacing:0.000341pt;}
.wsc6{word-spacing:0.047821pt;}
.ws2a{word-spacing:0.053134pt;}
.ws83{word-spacing:0.085296pt;}
.wsbf{word-spacing:0.095642pt;}
.ws3f{word-spacing:0.106268pt;}
.ws65{word-spacing:0.119820pt;}
.ws64{word-spacing:0.121451pt;}
.ws66{word-spacing:0.123949pt;}
.ws18{word-spacing:0.143462pt;}
.wsa1{word-spacing:0.156641pt;}
.wsee{word-spacing:0.156729pt;}
.wsed{word-spacing:0.158921pt;}
.ws2b{word-spacing:0.159402pt;}
.ws9{word-spacing:0.185968pt;}
.ws1a{word-spacing:0.191283pt;}
.ws69{word-spacing:0.198550pt;}
.ws67{word-spacing:0.198944pt;}
.ws68{word-spacing:0.204225pt;}
.ws24{word-spacing:0.212535pt;}
.ws141{word-spacing:0.239104pt;}
.wsb{word-spacing:0.260355pt;}
.ws34{word-spacing:0.265669pt;}
.ws158{word-spacing:0.286925pt;}
.ws49{word-spacing:0.318803pt;}
.ws15f{word-spacing:0.334746pt;}
.ws59{word-spacing:0.371937pt;}
.wsd5{word-spacing:0.382566pt;}
.ws62{word-spacing:0.425071pt;}
.wsa2{word-spacing:0.452841pt;}
.ws117{word-spacing:0.478205pt;}
.ws55{word-spacing:0.531339pt;}
.ws1c{word-spacing:0.573850pt;}
.wsd7{word-spacing:0.584473pt;}
.wsc4{word-spacing:0.593980pt;}
.ws11e{word-spacing:0.621670pt;}
.wse3{word-spacing:0.637606pt;}
.ws8a{word-spacing:0.659836pt;}
.ws85{word-spacing:0.661062pt;}
.ws109{word-spacing:0.669491pt;}
.ws3e{word-spacing:0.690740pt;}
.ws11d{word-spacing:0.717312pt;}
.ws5d{word-spacing:0.743874pt;}
.ws61{word-spacing:0.797008pt;}
.wsdf{word-spacing:0.850142pt;}
.ws40{word-spacing:0.903276pt;}
.wsf2{word-spacing:0.908595pt;}
.wseb{word-spacing:0.956410pt;}
.ws11c{word-spacing:0.956416pt;}
.ws16a{word-spacing:1.004237pt;}
.ws2d{word-spacing:1.009543pt;}
.wsdc{word-spacing:1.062677pt;}
.ws27{word-spacing:1.115811pt;}
.ws19{word-spacing:1.147699pt;}
.wsb8{word-spacing:1.168945pt;}
.wsf1{word-spacing:1.195520pt;}
.ws7d{word-spacing:1.222079pt;}
.ws4a{word-spacing:1.275213pt;}
.ws152{word-spacing:1.291162pt;}
.ws36{word-spacing:1.328347pt;}
.ws35{word-spacing:1.381481pt;}
.wscf{word-spacing:1.386803pt;}
.ws90{word-spacing:1.414961pt;}
.wsd8{word-spacing:1.434614pt;}
.ws1b{word-spacing:1.434624pt;}
.ws135{word-spacing:1.487748pt;}
.ws6a{word-spacing:1.540882pt;}
.wsc5{word-spacing:1.594016pt;}
.ws149{word-spacing:1.625907pt;}
.ws60{word-spacing:1.647150pt;}
.wsb4{word-spacing:1.651741pt;}
.wsce{word-spacing:1.673728pt;}
.wsdb{word-spacing:1.700284pt;}
.ws78{word-spacing:1.721549pt;}
.ws4b{word-spacing:1.753418pt;}
.wsa{word-spacing:1.785293pt;}
.ws7c{word-spacing:1.806551pt;}
.ws157{word-spacing:1.817190pt;}
.ws28{word-spacing:1.859685pt;}
.ws1d{word-spacing:1.865011pt;}
.ws96{word-spacing:1.912819pt;}
.wse0{word-spacing:1.960653pt;}
.wsec{word-spacing:1.965953pt;}
.ws77{word-spacing:2.008474pt;}
.ws2f{word-spacing:2.019087pt;}
.ws139{word-spacing:2.072221pt;}
.wse1{word-spacing:2.104115pt;}
.wsb0{word-spacing:2.134715pt;}
.wsb5{word-spacing:2.135663pt;}
.ws37{word-spacing:2.231622pt;}
.ws76{word-spacing:2.247578pt;}
.ws2e{word-spacing:2.284756pt;}
.ws46{word-spacing:2.337890pt;}
.wsf0{word-spacing:2.391024pt;}
.ws160{word-spacing:2.391040pt;}
.ws114{word-spacing:2.444158pt;}
.ws6b{word-spacing:2.497292pt;}
.ws75{word-spacing:2.534502pt;}
.ws13{word-spacing:2.550432pt;}
.ws147{word-spacing:2.582323pt;}
.wsda{word-spacing:2.603559pt;}
.ws118{word-spacing:2.630144pt;}
.wsad{word-spacing:2.656693pt;}
.ws151{word-spacing:2.677965pt;}
.wse2{word-spacing:2.709827pt;}
.ws10d{word-spacing:2.725786pt;}
.wse7{word-spacing:2.762961pt;}
.wsa4{word-spacing:2.816095pt;}
.ws167{word-spacing:2.864836pt;}
.ws14f{word-spacing:2.865988pt;}
.ws163{word-spacing:2.866654pt;}
.ws166{word-spacing:2.869103pt;}
.ws89{word-spacing:2.869229pt;}
.ws11a{word-spacing:2.869248pt;}
.ws57{word-spacing:2.975497pt;}
.ws165{word-spacing:3.012710pt;}
.ws80{word-spacing:3.028630pt;}
.ws159{word-spacing:3.060531pt;}
.ws23{word-spacing:3.081764pt;}
.ws162{word-spacing:3.108352pt;}
.wsc1{word-spacing:3.134898pt;}
.wsc2{word-spacing:3.136822pt;}
.wsc3{word-spacing:3.138480pt;}
.ws20{word-spacing:3.188032pt;}
.wsdd{word-spacing:3.241166pt;}
.ws115{word-spacing:3.294300pt;}
.ws5e{word-spacing:3.347434pt;}
.ws30{word-spacing:3.400567pt;}
.ws8f{word-spacing:3.553628pt;}
.ws8d{word-spacing:3.556631pt;}
.ws130{word-spacing:3.559969pt;}
.ws144{word-spacing:3.586560pt;}
.ws54{word-spacing:3.613103pt;}
.ws137{word-spacing:3.710570pt;}
.ws4e{word-spacing:3.719371pt;}
.ws133{word-spacing:3.772505pt;}
.ws1e{word-spacing:3.825664pt;}
.ws6c{word-spacing:3.878772pt;}
.ws143{word-spacing:3.921306pt;}
.ws7e{word-spacing:3.931906pt;}
.ws45{word-spacing:3.985040pt;}
.ws3d{word-spacing:4.038174pt;}
.ws72{word-spacing:4.124787pt;}
.ws73{word-spacing:4.144442pt;}
.ws10e{word-spacing:4.160410pt;}
.ws13f{word-spacing:4.208230pt;}
.ws44{word-spacing:4.250709pt;}
.ws125{word-spacing:4.356977pt;}
.ws16{word-spacing:4.399514pt;}
.ws15a{word-spacing:4.447334pt;}
.ws5f{word-spacing:4.463245pt;}
.ws17{word-spacing:4.495155pt;}
.ws38{word-spacing:4.516379pt;}
.ws12f{word-spacing:4.569513pt;}
.ws63{word-spacing:4.622646pt;}
.ws154{word-spacing:4.686438pt;}
.ws56{word-spacing:4.782048pt;}
.ws13e{word-spacing:4.782080pt;}
.ws155{word-spacing:4.829901pt;}
.wsfa{word-spacing:4.835182pt;}
.wsef{word-spacing:4.888316pt;}
.ws106{word-spacing:4.973363pt;}
.ws7f{word-spacing:4.994583pt;}
.ws4c{word-spacing:5.100851pt;}
.ws74{word-spacing:5.207119pt;}
.ws58{word-spacing:5.366521pt;}
.ws11{word-spacing:5.393072pt;}
.ws12{word-spacing:5.467459pt;}
.ws142{word-spacing:5.499392pt;}
.wsbe{word-spacing:5.579056pt;}
.ws113{word-spacing:5.779975pt;}
.ws16c{word-spacing:5.786317pt;}
.ws41{word-spacing:5.791591pt;}
.ws138{word-spacing:5.950993pt;}
.ws4d{word-spacing:6.004127pt;}
.wsd0{word-spacing:6.028326pt;}
.wsac{word-spacing:6.216662pt;}
.ws47{word-spacing:6.322930pt;}
.wse8{word-spacing:6.351375pt;}
.ws13d{word-spacing:6.407987pt;}
.ws120{word-spacing:6.551450pt;}
.ws3b{word-spacing:6.960537pt;}
.ws126{word-spacing:7.173072pt;}
.ws127{word-spacing:7.185539pt;}
.ws128{word-spacing:7.186584pt;}
.wsde{word-spacing:7.385607pt;}
.ws14e{word-spacing:7.603507pt;}
.wsf{word-spacing:7.699075pt;}
.ws8e{word-spacing:7.983298pt;}
.ws94{word-spacing:7.986526pt;}
.wsb9{word-spacing:7.987586pt;}
.ws161{word-spacing:8.127514pt;}
.ws14a{word-spacing:8.128879pt;}
.ws168{word-spacing:8.129161pt;}
.ws145{word-spacing:8.129536pt;}
.ws11f{word-spacing:8.272998pt;}
.ws110{word-spacing:8.342017pt;}
.ws9d{word-spacing:8.485297pt;}
.ws111{word-spacing:8.516015pt;}
.ws112{word-spacing:8.542682pt;}
.wsa6{word-spacing:8.577745pt;}
.wsae{word-spacing:8.819586pt;}
.ws8c{word-spacing:9.518867pt;}
.ws14d{word-spacing:9.994547pt;}
.wsff{word-spacing:10.807501pt;}
.ws14c{word-spacing:10.998784pt;}
.ws97{word-spacing:12.098526pt;}
.ws88{word-spacing:12.472319pt;}
.ws87{word-spacing:12.473169pt;}
.wsa9{word-spacing:13.221297pt;}
.ws7{word-spacing:13.763148pt;}
.wsc{word-spacing:14.348669pt;}
.wsd{word-spacing:14.356730pt;}
.ws4f{word-spacing:14.824349pt;}
.wsfb{word-spacing:15.036337pt;}
.wsf4{word-spacing:15.041670pt;}
.wse{word-spacing:15.732893pt;}
.ws8b{word-spacing:15.945370pt;}
.ws81{word-spacing:16.000735pt;}
.ws100{word-spacing:17.980621pt;}
.ws9f{word-spacing:18.316173pt;}
.ws10{word-spacing:24.399002pt;}
.wsfe{word-spacing:24.703925pt;}
.ws124{word-spacing:25.392845pt;}
.ws107{word-spacing:25.631949pt;}
.ws9e{word-spacing:26.290315pt;}
.ws123{word-spacing:26.492723pt;}
.ws105{word-spacing:35.339571pt;}
.ws102{word-spacing:37.969715pt;}
.ws91{word-spacing:39.850400pt;}
.ws104{word-spacing:41.364992pt;}
.ws4{word-spacing:41.424902pt;}
.ws3{word-spacing:41.464218pt;}
.ws121{word-spacing:42.560512pt;}
.ws103{word-spacing:48.920678pt;}
.wsc9{word-spacing:74.503543pt;}
.wsfc{word-spacing:76.094123pt;}
.wsf5{word-spacing:142.632789pt;}
.wsca{word-spacing:168.520499pt;}
.wsf8{word-spacing:204.648090pt;}
.wsf6{word-spacing:207.637914pt;}
.ws10b{word-spacing:220.023501pt;}
.wscd{word-spacing:226.880128pt;}
.wsf9{word-spacing:260.957423pt;}
.wscb{word-spacing:284.103373pt;}
.wsf7{word-spacing:291.777587pt;}
.wscc{word-spacing:308.013773pt;}
.wsfd{word-spacing:402.746778pt;}
.ws119{word-spacing:517.229773pt;}
.ws108{word-spacing:522.298778pt;}
.ws93{word-spacing:552.751615pt;}
.wsa8{word-spacing:562.475113pt;}
.wsb3{word-spacing:562.687648pt;}
.wsb7{word-spacing:611.145734pt;}
.ws95{word-spacing:613.164821pt;}
._3c{margin-left:-534.253978pt;}
._20{margin-left:-36.012457pt;}
._23{margin-left:-7.643398pt;}
._16{margin-left:-6.475605pt;}
._9{margin-left:-5.321265pt;}
._6{margin-left:-4.091296pt;}
._4{margin-left:-2.752326pt;}
._3{margin-left:-1.175671pt;}
._2{width:1.004473pt;}
._1{width:2.658437pt;}
._1f{width:3.706634pt;}
._1b{width:5.756143pt;}
._1e{width:8.873356pt;}
._5{width:11.530016pt;}
._7{width:12.964659pt;}
._a{width:14.321188pt;}
._d{width:15.541760pt;}
._f{width:16.591219pt;}
._c{width:18.198432pt;}
._42{width:19.146941pt;}
._e{width:20.084736pt;}
._13{width:21.041011pt;}
._10{width:22.475626pt;}
._19{width:24.283329pt;}
._14{width:25.397977pt;}
._24{width:26.362650pt;}
._18{width:27.271126pt;}
._b{width:28.624811pt;}
._0{width:29.648896pt;}
._1a{width:31.507834pt;}
._45{width:32.671969pt;}
._15{width:33.580604pt;}
._21{width:35.546557pt;}
._44{width:36.716805pt;}
._31{width:37.924040pt;}
._22{width:39.961656pt;}
._8{width:50.498554pt;}
._1c{width:53.214372pt;}
._43{width:54.993920pt;}
._3d{width:63.697306pt;}
._17{width:83.154501pt;}
._25{width:207.064064pt;}
._36{width:235.039164pt;}
._3f{width:255.889101pt;}
._33{width:262.727475pt;}
._41{width:270.183185pt;}
._32{width:273.921111pt;}
._2f{width:280.134246pt;}
._2e{width:284.103373pt;}
._39{width:286.400000pt;}
._38{width:290.057045pt;}
._28{width:308.013773pt;}
._3a{width:310.021171pt;}
._2a{width:314.373939pt;}
._35{width:322.932787pt;}
._27{width:326.855168pt;}
._29{width:334.506496pt;}
._2c{width:335.941120pt;}
._26{width:340.033690pt;}
._37{width:341.915733pt;}
._34{width:353.874133pt;}
._2d{width:358.416896pt;}
._2b{width:380.271002pt;}
._3b{width:390.030014pt;}
._40{width:529.184973pt;}
._3e{width:534.253978pt;}
._11{width:715.694204pt;}
._1d{width:984.272108pt;}
._30{width:2024.953243pt;}
._12{width:2046.206577pt;}
.fs9{font-size:31.880533pt;}
.fs8{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs5{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fsa{font-size:42.507200pt;}
.fs0{font-size:47.035520pt;}
.fsb{font-size:47.820800pt;}
.fs1{font-size:50.395200pt;}
.fs3{font-size:53.133867pt;}
.fsc{font-size:55.365867pt;}
.fs2{font-size:67.193600pt;}
.fs4{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.044747pt;}
.y4{bottom:11.489854pt;}
.yb{bottom:12.578910pt;}
.y3{bottom:28.288254pt;}
.y4f{bottom:28.346667pt;}
.y2{bottom:29.128174pt;}
.y23f{bottom:79.117333pt;}
.y2b0{bottom:79.298667pt;}
.y181{bottom:83.318667pt;}
.y110{bottom:83.960000pt;}
.y1a4{bottom:84.469333pt;}
.y1cd{bottom:86.222667pt;}
.y275{bottom:86.858667pt;}
.ybb{bottom:86.870667pt;}
.y284{bottom:87.912000pt;}
.yfa{bottom:90.529333pt;}
.y26{bottom:91.398667pt;}
.y32c{bottom:92.050667pt;}
.y2bc{bottom:94.044000pt;}
.y2d6{bottom:94.441333pt;}
.y23e{bottom:95.854667pt;}
.y2af{bottom:96.036000pt;}
.y4e{bottom:96.457333pt;}
.y85{bottom:96.817333pt;}
.y180{bottom:100.056000pt;}
.y10f{bottom:101.056000pt;}
.y1a3{bottom:101.206667pt;}
.y1cc{bottom:102.960000pt;}
.y274{bottom:103.596000pt;}
.yba{bottom:103.608000pt;}
.y283{bottom:104.649333pt;}
.yf9{bottom:107.266667pt;}
.y25{bottom:107.298667pt;}
.y32b{bottom:107.393333pt;}
.y2f5{bottom:108.150667pt;}
.y2bb{bottom:110.780000pt;}
.y2d5{bottom:111.178667pt;}
.y23d{bottom:112.590667pt;}
.y2ae{bottom:112.773333pt;}
.y4d{bottom:113.194667pt;}
.y84{bottom:113.554667pt;}
.y1b5{bottom:113.928000pt;}
.y17f{bottom:116.793333pt;}
.y1a2{bottom:117.944000pt;}
.y1cb{bottom:119.697333pt;}
.y273{bottom:120.333333pt;}
.yb9{bottom:120.345333pt;}
.y282{bottom:121.386667pt;}
.y32a{bottom:122.736000pt;}
.y24{bottom:123.200000pt;}
.y2f4{bottom:123.493333pt;}
.y2ba{bottom:127.517333pt;}
.y2d4{bottom:127.916000pt;}
.yf8{bottom:127.989333pt;}
.y23c{bottom:129.328000pt;}
.yd9{bottom:129.413333pt;}
.y2ad{bottom:129.510667pt;}
.y4c{bottom:129.932000pt;}
.y83{bottom:130.292000pt;}
.y1b4{bottom:130.665333pt;}
.y17e{bottom:133.530667pt;}
.y1ca{bottom:136.434667pt;}
.y272{bottom:137.070667pt;}
.yb8{bottom:137.081333pt;}
.y329{bottom:138.078667pt;}
.y281{bottom:138.122667pt;}
.y2f3{bottom:138.836000pt;}
.y23{bottom:139.100000pt;}
.y1a1{bottom:141.322667pt;}
.y170{bottom:144.232000pt;}
.y1ed{bottom:144.254667pt;}
.y2d3{bottom:144.653333pt;}
.y23b{bottom:146.065333pt;}
.y2ac{bottom:146.248000pt;}
.yd8{bottom:146.509333pt;}
.y4b{bottom:146.669333pt;}
.y82{bottom:147.028000pt;}
.y1b3{bottom:147.402667pt;}
.y153{bottom:149.549333pt;}
.y17d{bottom:150.268000pt;}
.y1c9{bottom:153.170667pt;}
.y328{bottom:153.421333pt;}
.y271{bottom:153.808000pt;}
.yb7{bottom:153.818667pt;}
.y2f2{bottom:154.178667pt;}
.y280{bottom:154.860000pt;}
.y22{bottom:155.000000pt;}
.y1a0{bottom:158.060000pt;}
.yf7{bottom:160.042667pt;}
.y16f{bottom:160.968000pt;}
.y1ec{bottom:160.992000pt;}
.y2d2{bottom:161.390667pt;}
.y23a{bottom:162.802667pt;}
.y2ab{bottom:162.985333pt;}
.y4a{bottom:163.405333pt;}
.y81{bottom:163.765333pt;}
.y152{bottom:166.286667pt;}
.y17c{bottom:167.005333pt;}
.y1b2{bottom:168.124000pt;}
.y327{bottom:168.762667pt;}
.y2f1{bottom:169.521333pt;}
.y270{bottom:170.545333pt;}
.yb6{bottom:170.556000pt;}
.y21{bottom:170.901333pt;}
.y27f{bottom:171.597333pt;}
.y1c8{bottom:173.893333pt;}
.y19f{bottom:174.797333pt;}
.y16e{bottom:177.705333pt;}
.y1eb{bottom:177.729333pt;}
.y2d1{bottom:178.128000pt;}
.y239{bottom:179.540000pt;}
.y2aa{bottom:179.722667pt;}
.y49{bottom:180.142667pt;}
.y21f{bottom:180.202667pt;}
.y80{bottom:180.502667pt;}
.yf6{bottom:180.765333pt;}
.y151{bottom:183.024000pt;}
.y326{bottom:184.105333pt;}
.y2f0{bottom:184.862667pt;}
.y20{bottom:186.801333pt;}
.y26f{bottom:187.282667pt;}
.yb5{bottom:187.293333pt;}
.y139{bottom:187.385333pt;}
.y17b{bottom:187.728000pt;}
.y27e{bottom:188.334667pt;}
.y19e{bottom:191.534667pt;}
.y16d{bottom:194.442667pt;}
.y1ea{bottom:194.466667pt;}
.y21c{bottom:194.814667pt;}
.y2d0{bottom:194.865333pt;}
.y238{bottom:196.277333pt;}
.y2a9{bottom:196.460000pt;}
.y48{bottom:196.880000pt;}
.y7f{bottom:197.240000pt;}
.y325{bottom:199.448000pt;}
.y150{bottom:199.760000pt;}
.y2ef{bottom:200.205333pt;}
.y21b{bottom:202.120000pt;}
.y1f{bottom:202.701333pt;}
.y1b1{bottom:203.141333pt;}
.y1c7{bottom:203.781333pt;}
.y26e{bottom:204.020000pt;}
.yb4{bottom:204.030667pt;}
.y138{bottom:204.122667pt;}
.y27d{bottom:205.072000pt;}
.y19d{bottom:208.272000pt;}
.y21e{bottom:209.426667pt;}
.y16c{bottom:211.180000pt;}
.y1e9{bottom:211.204000pt;}
.y2cf{bottom:211.602667pt;}
.yf5{bottom:212.596000pt;}
.y237{bottom:213.014667pt;}
.y2a8{bottom:213.197333pt;}
.y47{bottom:213.617333pt;}
.y7e{bottom:213.977333pt;}
.y324{bottom:214.790667pt;}
.y2ee{bottom:215.548000pt;}
.y14f{bottom:216.497333pt;}
.y1b0{bottom:220.237333pt;}
.y1c6{bottom:220.518667pt;}
.y26d{bottom:220.757333pt;}
.yb3{bottom:220.768000pt;}
.y137{bottom:220.858667pt;}
.y27c{bottom:221.809333pt;}
.y17a{bottom:222.744000pt;}
.y21d{bottom:224.038667pt;}
.y19c{bottom:225.009333pt;}
.y16b{bottom:227.917333pt;}
.y1e8{bottom:227.941333pt;}
.y2ce{bottom:228.340000pt;}
.yf4{bottom:229.333333pt;}
.y236{bottom:229.752000pt;}
.y2a7{bottom:229.934667pt;}
.y323{bottom:230.133333pt;}
.y46{bottom:230.354667pt;}
.y7d{bottom:230.714667pt;}
.y2ed{bottom:230.890667pt;}
.y14e{bottom:233.234667pt;}
.y1c5{bottom:237.256000pt;}
.y26c{bottom:237.494667pt;}
.yb2{bottom:237.505333pt;}
.y136{bottom:237.596000pt;}
.y27b{bottom:238.546667pt;}
.y21a{bottom:239.181333pt;}
.y179{bottom:239.840000pt;}
.y19b{bottom:241.746667pt;}
.y16a{bottom:244.654667pt;}
.y1e7{bottom:244.678667pt;}
.y2cd{bottom:245.077333pt;}
.y322{bottom:245.476000pt;}
.yf3{bottom:246.070667pt;}
.y2ec{bottom:246.233333pt;}
.y2a6{bottom:246.672000pt;}
.y45{bottom:247.092000pt;}
.y7c{bottom:247.452000pt;}
.y14d{bottom:249.972000pt;}
.y219{bottom:253.793333pt;}
.y1c4{bottom:253.993333pt;}
.yb1{bottom:254.242667pt;}
.y135{bottom:254.333333pt;}
.y27a{bottom:255.284000pt;}
.y26b{bottom:258.217333pt;}
.y19a{bottom:258.484000pt;}
.y235{bottom:259.588000pt;}
.y321{bottom:260.818667pt;}
.y216{bottom:261.098667pt;}
.y169{bottom:261.392000pt;}
.y1e6{bottom:261.416000pt;}
.y2eb{bottom:261.576000pt;}
.y2cc{bottom:261.814667pt;}
.yf2{bottom:262.808000pt;}
.y2a5{bottom:263.408000pt;}
.y44{bottom:263.829333pt;}
.y7b{bottom:264.189333pt;}
.y14c{bottom:266.709333pt;}
.y218{bottom:268.405333pt;}
.y1c3{bottom:270.730667pt;}
.yb0{bottom:270.980000pt;}
.y134{bottom:271.070667pt;}
.y279{bottom:272.021333pt;}
.y1e{bottom:273.154667pt;}
.y320{bottom:276.161333pt;}
.y234{bottom:276.684000pt;}
.y2ea{bottom:276.918667pt;}
.y1e5{bottom:278.153333pt;}
.y2cb{bottom:278.552000pt;}
.y199{bottom:279.205333pt;}
.yf1{bottom:279.545333pt;}
.y2a4{bottom:280.145333pt;}
.y43{bottom:280.566667pt;}
.y7a{bottom:280.926667pt;}
.y217{bottom:283.017333pt;}
.y14b{bottom:283.446667pt;}
.y1c2{bottom:287.468000pt;}
.yaf{bottom:287.717333pt;}
.y133{bottom:287.808000pt;}
.y1d{bottom:289.054667pt;}
.y168{bottom:291.228000pt;}
.y31f{bottom:291.502667pt;}
.y1e4{bottom:294.890667pt;}
.y2ca{bottom:295.289333pt;}
.y2e9{bottom:296.245333pt;}
.yf0{bottom:296.282667pt;}
.y268{bottom:296.473333pt;}
.y2a3{bottom:296.882667pt;}
.y42{bottom:297.304000pt;}
.y79{bottom:297.664000pt;}
.y215{bottom:298.160000pt;}
.y14a{bottom:300.184000pt;}
.y278{bottom:301.857333pt;}
.y26a{bottom:303.780000pt;}
.y1c1{bottom:304.205333pt;}
.yae{bottom:304.454667pt;}
.y132{bottom:304.545333pt;}
.y1c{bottom:304.954667pt;}
.y31e{bottom:306.845333pt;}
.y167{bottom:308.324000pt;}
.y266{bottom:311.085333pt;}
.y1e3{bottom:311.628000pt;}
.y2c9{bottom:312.026667pt;}
.y213{bottom:312.772000pt;}
.yef{bottom:313.020000pt;}
.y2a2{bottom:313.620000pt;}
.y41{bottom:314.041333pt;}
.y198{bottom:314.222667pt;}
.y78{bottom:314.401333pt;}
.y149{bottom:316.921333pt;}
.y269{bottom:318.392000pt;}
.y277{bottom:318.953333pt;}
.y1b{bottom:320.856000pt;}
.y1c0{bottom:320.942667pt;}
.yad{bottom:321.192000pt;}
.y31d{bottom:322.188000pt;}
.y131{bottom:325.268000pt;}
.y166{bottom:325.420000pt;}
.y267{bottom:325.697333pt;}
.y2e8{bottom:326.133333pt;}
.y214{bottom:327.384000pt;}
.y1e2{bottom:328.365333pt;}
.y2c8{bottom:328.764000pt;}
.yee{bottom:329.757333pt;}
.y2a1{bottom:330.357333pt;}
.y40{bottom:330.778667pt;}
.y77{bottom:331.138667pt;}
.y197{bottom:331.318667pt;}
.y148{bottom:333.658667pt;}
.y276{bottom:336.049333pt;}
.y31c{bottom:337.530667pt;}
.y1bf{bottom:337.680000pt;}
.yac{bottom:337.929333pt;}
.y265{bottom:340.840000pt;}
.y212{bottom:342.526667pt;}
.y1e1{bottom:345.102667pt;}
.y2c7{bottom:345.501333pt;}
.yed{bottom:346.494667pt;}
.y2a0{bottom:347.094667pt;}
.y76{bottom:347.876000pt;}
.y2e7{bottom:349.725333pt;}
.y3f{bottom:351.501333pt;}
.y31b{bottom:352.873333pt;}
.y147{bottom:354.381333pt;}
.y1be{bottom:354.417333pt;}
.yab{bottom:354.666667pt;}
.y1a{bottom:354.688000pt;}
.y263{bottom:355.452000pt;}
.y211{bottom:357.138667pt;}
.y130{bottom:357.140000pt;}
.y1e0{bottom:361.840000pt;}
.y2c6{bottom:362.238667pt;}
.yec{bottom:363.232000pt;}
.y29f{bottom:363.832000pt;}
.y75{bottom:364.613333pt;}
.y2e6{bottom:365.346667pt;}
.y31a{bottom:368.216000pt;}
.y264{bottom:370.064000pt;}
.y19{bottom:370.589333pt;}
.y1bd{bottom:371.154667pt;}
.yaa{bottom:371.404000pt;}
.y210{bottom:371.750667pt;}
.y146{bottom:372.314667pt;}
.y12f{bottom:373.877333pt;}
.y1df{bottom:378.577333pt;}
.y20c{bottom:379.057333pt;}
.yeb{bottom:379.969333pt;}
.y29e{bottom:380.569333pt;}
.y2c5{bottom:382.960000pt;}
.y319{bottom:383.558667pt;}
.y260{bottom:385.208000pt;}
.y74{bottom:385.336000pt;}
.y20f{bottom:386.362667pt;}
.y18{bottom:386.489333pt;}
.y1bc{bottom:387.892000pt;}
.ya9{bottom:388.141333pt;}
.y2e5{bottom:388.938667pt;}
.y262{bottom:392.513333pt;}
.y12e{bottom:394.598667pt;}
.yd7{bottom:394.916000pt;}
.y1de{bottom:395.314667pt;}
.yea{bottom:396.706667pt;}
.y29d{bottom:397.306667pt;}
.y318{bottom:398.901333pt;}
.y145{bottom:399.361333pt;}
.y25e{bottom:399.820000pt;}
.y20e{bottom:400.974667pt;}
.y2e4{bottom:404.560000pt;}
.y1bb{bottom:404.629333pt;}
.ya8{bottom:404.878667pt;}
.y261{bottom:407.125333pt;}
.yd6{bottom:411.653333pt;}
.y1dd{bottom:412.052000pt;}
.y2c4{bottom:412.848000pt;}
.ye9{bottom:413.444000pt;}
.y29c{bottom:414.044000pt;}
.y317{bottom:414.244000pt;}
.y25f{bottom:414.430667pt;}
.y73{bottom:415.224000pt;}
.y20d{bottom:415.586667pt;}
.y144{bottom:416.456000pt;}
.y3e{bottom:418.301333pt;}
.y17{bottom:418.330667pt;}
.y2e3{bottom:420.181333pt;}
.y1ba{bottom:421.366667pt;}
.ya7{bottom:421.616000pt;}
.y12d{bottom:424.486667pt;}
.yd5{bottom:428.390667pt;}
.y1dc{bottom:428.789333pt;}
.y25b{bottom:429.574667pt;}
.y2c3{bottom:429.585333pt;}
.ye8{bottom:430.181333pt;}
.y20b{bottom:430.729333pt;}
.y29b{bottom:430.781333pt;}
.y72{bottom:431.961333pt;}
.y16{bottom:434.230667pt;}
.y3d{bottom:435.596000pt;}
.y25d{bottom:436.880000pt;}
.ya6{bottom:438.353333pt;}
.y12c{bottom:441.224000pt;}
.y1b9{bottom:442.088000pt;}
.y2e2{bottom:443.773333pt;}
.y259{bottom:444.186667pt;}
.y316{bottom:444.928000pt;}
.yd4{bottom:445.128000pt;}
.y20a{bottom:445.341333pt;}
.y1db{bottom:445.526667pt;}
.y2c2{bottom:446.322667pt;}
.ye7{bottom:446.918667pt;}
.y29a{bottom:447.518667pt;}
.y71{bottom:448.698667pt;}
.y15{bottom:450.130667pt;}
.y25c{bottom:451.492000pt;}
.y207{bottom:452.648000pt;}
.ya5{bottom:455.090667pt;}
.y12b{bottom:457.961333pt;}
.y25a{bottom:458.798667pt;}
.y2e1{bottom:459.394667pt;}
.y209{bottom:459.953333pt;}
.y315{bottom:460.270667pt;}
.yd3{bottom:461.865333pt;}
.y2b9{bottom:462.264000pt;}
.y2c1{bottom:463.060000pt;}
.ye6{bottom:463.656000pt;}
.y299{bottom:464.256000pt;}
.y70{bottom:465.436000pt;}
.y1da{bottom:466.248000pt;}
.y3c{bottom:468.832000pt;}
.y1b8{bottom:469.134667pt;}
.ya4{bottom:471.828000pt;}
.y258{bottom:473.941333pt;}
.y10e{bottom:474.352000pt;}
.y208{bottom:474.565333pt;}
.y12a{bottom:474.698667pt;}
.y2e0{bottom:475.016000pt;}
.y314{bottom:475.613333pt;}
.yd2{bottom:478.602667pt;}
.y2b8{bottom:479.001333pt;}
.y2c0{bottom:479.797333pt;}
.ye5{bottom:480.393333pt;}
.y298{bottom:480.993333pt;}
.y14{bottom:481.972000pt;}
.y6f{bottom:482.173333pt;}
.y165{bottom:485.580000pt;}
.y3b{bottom:486.126667pt;}
.y1b7{bottom:486.230667pt;}
.ya3{bottom:488.565333pt;}
.y256{bottom:489.084000pt;}
.y205{bottom:489.708000pt;}
.y2df{bottom:490.637333pt;}
.y313{bottom:490.956000pt;}
.y10d{bottom:491.089333pt;}
.y129{bottom:491.436000pt;}
.yd1{bottom:495.340000pt;}
.y1d9{bottom:496.136000pt;}
.y2bf{bottom:496.534667pt;}
.ye4{bottom:497.130667pt;}
.y297{bottom:497.730667pt;}
.y13{bottom:497.872000pt;}
.y6e{bottom:498.910667pt;}
.y2b7{bottom:499.722667pt;}
.y164{bottom:502.317333pt;}
.y1b6{bottom:503.326667pt;}
.y3a{bottom:503.422667pt;}
.y257{bottom:503.696000pt;}
.y206{bottom:504.320000pt;}
.ya2{bottom:505.302667pt;}
.y2de{bottom:506.258667pt;}
.y312{bottom:506.298667pt;}
.y10c{bottom:507.826667pt;}
.y128{bottom:508.173333pt;}
.yd0{bottom:512.077333pt;}
.y1d8{bottom:512.873333pt;}
.y2be{bottom:513.272000pt;}
.y12{bottom:513.772000pt;}
.ye3{bottom:513.868000pt;}
.y296{bottom:514.468000pt;}
.y6d{bottom:515.648000pt;}
.y163{bottom:519.054667pt;}
.y39{bottom:520.717333pt;}
.y311{bottom:521.641333pt;}
.y2dd{bottom:521.880000pt;}
.ya1{bottom:522.040000pt;}
.y10b{bottom:524.564000pt;}
.y127{bottom:524.910667pt;}
.y255{bottom:528.352000pt;}
.ycf{bottom:528.814667pt;}
.y204{bottom:528.976000pt;}
.y1d7{bottom:529.610667pt;}
.y11{bottom:529.673333pt;}
.y2bd{bottom:530.009333pt;}
.ye2{bottom:530.605333pt;}
.y295{bottom:531.205333pt;}
.y6c{bottom:532.384000pt;}
.y162{bottom:535.792000pt;}
.y310{bottom:536.984000pt;}
.y2dc{bottom:537.501333pt;}
.y38{bottom:538.012000pt;}
.ya0{bottom:538.777333pt;}
.y254{bottom:545.448000pt;}
.y10{bottom:545.573333pt;}
.y203{bottom:546.072000pt;}
.y1d6{bottom:546.348000pt;}
.y196{bottom:546.746667pt;}
.ye1{bottom:547.342667pt;}
.y294{bottom:547.942667pt;}
.y6b{bottom:549.121333pt;}
.yce{bottom:549.536000pt;}
.y30f{bottom:552.325333pt;}
.y2db{bottom:553.122667pt;}
.y10a{bottom:554.472000pt;}
.y126{bottom:554.636000pt;}
.y37{bottom:555.308000pt;}
.y9f{bottom:555.514667pt;}
.yf{bottom:561.473333pt;}
.y253{bottom:562.544000pt;}
.y1d5{bottom:563.085333pt;}
.y202{bottom:563.168000pt;}
.y195{bottom:563.484000pt;}
.y125{bottom:563.749333pt;}
.ye0{bottom:564.080000pt;}
.y293{bottom:564.680000pt;}
.y161{bottom:565.628000pt;}
.y6a{bottom:565.858667pt;}
.y30e{bottom:567.668000pt;}
.y2da{bottom:568.744000pt;}
.y9e{bottom:572.252000pt;}
.y36{bottom:572.602667pt;}
.y109{bottom:576.906667pt;}
.ye{bottom:577.374667pt;}
.ycd{bottom:579.424000pt;}
.y1d4{bottom:579.822667pt;}
.y194{bottom:580.221333pt;}
.ydf{bottom:580.817333pt;}
.y292{bottom:581.417333pt;}
.y69{bottom:582.596000pt;}
.y160{bottom:582.724000pt;}
.y30d{bottom:583.010667pt;}
.y2d9{bottom:584.366667pt;}
.y9d{bottom:588.988000pt;}
.y35{bottom:589.897333pt;}
.yd{bottom:593.274667pt;}
.y201{bottom:594.821333pt;}
.ycc{bottom:596.161333pt;}
.y1d3{bottom:596.560000pt;}
.y193{bottom:596.958667pt;}
.yde{bottom:597.554667pt;}
.y291{bottom:598.154667pt;}
.y30c{bottom:598.353333pt;}
.y68{bottom:599.333333pt;}
.y2d8{bottom:599.988000pt;}
.y252{bottom:600.148000pt;}
.y124{bottom:603.178667pt;}
.y9c{bottom:605.725333pt;}
.y34{bottom:607.193333pt;}
.y108{bottom:607.565333pt;}
.y200{bottom:611.558667pt;}
.ycb{bottom:612.898667pt;}
.ya{bottom:613.160048pt;}
.y1d2{bottom:613.297333pt;}
.y192{bottom:613.696000pt;}
.ydd{bottom:614.292000pt;}
.y250{bottom:614.760000pt;}
.y290{bottom:614.892000pt;}
.y2d7{bottom:615.609333pt;}
.y67{bottom:616.070667pt;}
.y123{bottom:619.916000pt;}
.y9b{bottom:622.462667pt;}
.y107{bottom:624.302667pt;}
.y33{bottom:624.488000pt;}
.y1ff{bottom:628.294667pt;}
.y30b{bottom:629.038667pt;}
.y233{bottom:629.237333pt;}
.y251{bottom:629.372000pt;}
.yca{bottom:629.636000pt;}
.y1d1{bottom:630.034667pt;}
.y191{bottom:630.433333pt;}
.y28f{bottom:631.629333pt;}
.y66{bottom:632.808000pt;}
.ydc{bottom:635.013333pt;}
.y9a{bottom:639.200000pt;}
.y143{bottom:639.510667pt;}
.y106{bottom:641.038667pt;}
.y32{bottom:641.784000pt;}
.y30a{bottom:644.381333pt;}
.y24f{bottom:644.514667pt;}
.y1fe{bottom:645.032000pt;}
.y232{bottom:645.974667pt;}
.yc9{bottom:646.373333pt;}
.y1d0{bottom:646.772000pt;}
.y190{bottom:647.170667pt;}
.y28e{bottom:648.366667pt;}
.y65{bottom:649.545333pt;}
.y122{bottom:650.434667pt;}
.y99{bottom:655.937333pt;}
.y142{bottom:656.248000pt;}
.y31{bottom:659.078667pt;}
.y24d{bottom:659.126667pt;}
.y121{bottom:659.546667pt;}
.y309{bottom:659.724000pt;}
.y1fd{bottom:661.769333pt;}
.ydb{bottom:662.060000pt;}
.y231{bottom:662.712000pt;}
.yc8{bottom:663.110667pt;}
.y1cf{bottom:663.509333pt;}
.y18f{bottom:663.908000pt;}
.y28d{bottom:665.104000pt;}
.y64{bottom:666.282667pt;}
.y105{bottom:671.724000pt;}
.y98{bottom:672.674667pt;}
.y141{bottom:672.985333pt;}
.y24e{bottom:673.738667pt;}
.y308{bottom:675.066667pt;}
.y30{bottom:676.373333pt;}
.y1fc{bottom:678.506667pt;}
.yda{bottom:679.156000pt;}
.y230{bottom:679.449333pt;}
.yc7{bottom:679.848000pt;}
.y2b6{bottom:680.246667pt;}
.y18e{bottom:680.645333pt;}
.y28c{bottom:681.841333pt;}
.y63{bottom:683.020000pt;}
.y1ce{bottom:684.232000pt;}
.y24c{bottom:688.881333pt;}
.y97{bottom:689.412000pt;}
.y140{bottom:689.722667pt;}
.y307{bottom:690.408000pt;}
.y2f{bottom:693.669333pt;}
.y1fb{bottom:695.244000pt;}
.y22f{bottom:696.186667pt;}
.yc6{bottom:696.585333pt;}
.y2b5{bottom:696.984000pt;}
.y18d{bottom:697.382667pt;}
.y28b{bottom:698.578667pt;}
.y120{bottom:698.976000pt;}
.y62{bottom:699.757333pt;}
.y104{bottom:702.409333pt;}
.y24a{bottom:703.493333pt;}
.y306{bottom:705.750667pt;}
.y96{bottom:706.149333pt;}
.y13f{bottom:706.460000pt;}
.y1fa{bottom:711.981333pt;}
.y22e{bottom:712.924000pt;}
.yc5{bottom:713.322667pt;}
.y2b4{bottom:713.721333pt;}
.y18c{bottom:714.120000pt;}
.y28a{bottom:715.314667pt;}
.y11f{bottom:715.713333pt;}
.y61{bottom:716.494667pt;}
.y24b{bottom:718.105333pt;}
.y103{bottom:719.146667pt;}
.y305{bottom:721.093333pt;}
.y95{bottom:722.886667pt;}
.y13e{bottom:723.197333pt;}
.y2e{bottom:727.966667pt;}
.y1f9{bottom:728.718667pt;}
.y22d{bottom:729.661333pt;}
.y2b3{bottom:730.458667pt;}
.y18b{bottom:730.857333pt;}
.y289{bottom:732.052000pt;}
.y11e{bottom:732.450667pt;}
.y60{bottom:733.232000pt;}
.y249{bottom:733.249333pt;}
.yc4{bottom:734.045333pt;}
.y304{bottom:736.436000pt;}
.y94{bottom:739.624000pt;}
.y1af{bottom:740.952000pt;}
.y2d{bottom:742.313333pt;}
.y13d{bottom:743.918667pt;}
.y1f8{bottom:745.456000pt;}
.y22c{bottom:746.398667pt;}
.y2b2{bottom:747.196000pt;}
.y18a{bottom:747.594667pt;}
.y247{bottom:747.861333pt;}
.y288{bottom:748.789333pt;}
.y102{bottom:748.872000pt;}
.y11d{bottom:749.188000pt;}
.y5f{bottom:749.969333pt;}
.y303{bottom:751.778667pt;}
.y93{bottom:756.361333pt;}
.y2c{bottom:756.660000pt;}
.y1ae{bottom:757.689333pt;}
.y101{bottom:757.985333pt;}
.y178{bottom:760.556000pt;}
.y1f7{bottom:762.193333pt;}
.y248{bottom:762.472000pt;}
.y22b{bottom:763.136000pt;}
.yc3{bottom:763.933333pt;}
.y189{bottom:764.332000pt;}
.y11c{bottom:765.925333pt;}
.y5e{bottom:766.706667pt;}
.y302{bottom:767.121333pt;}
.y287{bottom:769.512000pt;}
.y13c{bottom:770.965333pt;}
.y92{bottom:773.098667pt;}
.y1ad{bottom:774.426667pt;}
.y2b{bottom:774.864000pt;}
.y177{bottom:777.293333pt;}
.y246{bottom:777.616000pt;}
.y1f6{bottom:778.930667pt;}
.y22a{bottom:779.873333pt;}
.yc2{bottom:780.670667pt;}
.y188{bottom:781.069333pt;}
.y301{bottom:782.464000pt;}
.y11b{bottom:782.662667pt;}
.y5d{bottom:783.444000pt;}
.y286{bottom:783.460000pt;}
.y2b1{bottom:784.656000pt;}
.y2a{bottom:785.352000pt;}
.y13b{bottom:788.061333pt;}
.y91{bottom:789.836000pt;}
.y1ac{bottom:791.164000pt;}
.y244{bottom:792.758667pt;}
.y176{bottom:794.030667pt;}
.y1f5{bottom:795.668000pt;}
.y229{bottom:796.610667pt;}
.yc1{bottom:797.408000pt;}
.y100{bottom:797.414667pt;}
.y187{bottom:797.806667pt;}
.y11a{bottom:799.400000pt;}
.y5c{bottom:800.181333pt;}
.y285{bottom:801.393333pt;}
.y29{bottom:803.556000pt;}
.y13a{bottom:805.157333pt;}
.y90{bottom:806.573333pt;}
.y245{bottom:807.370667pt;}
.y1ab{bottom:807.901333pt;}
.y175{bottom:810.768000pt;}
.y300{bottom:813.149333pt;}
.y228{bottom:813.348000pt;}
.y28{bottom:814.045333pt;}
.yc0{bottom:814.145333pt;}
.yff{bottom:814.152000pt;}
.y186{bottom:814.544000pt;}
.y15e{bottom:815.225333pt;}
.y119{bottom:816.137333pt;}
.y5b{bottom:816.918667pt;}
.y15f{bottom:819.832000pt;}
.y8f{bottom:823.310667pt;}
.y1aa{bottom:824.638667pt;}
.y174{bottom:827.505333pt;}
.y2ff{bottom:828.490667pt;}
.y227{bottom:830.085333pt;}
.ybf{bottom:830.882667pt;}
.yfe{bottom:830.889333pt;}
.y185{bottom:831.281333pt;}
.y243{bottom:832.026667pt;}
.y27{bottom:832.248000pt;}
.y118{bottom:832.874667pt;}
.y5a{bottom:833.656000pt;}
.y1f4{bottom:834.057333pt;}
.y15d{bottom:834.974667pt;}
.y1a9{bottom:841.376000pt;}
.y2fe{bottom:843.833333pt;}
.y8e{bottom:844.033333pt;}
.y226{bottom:846.822667pt;}
.ybe{bottom:847.620000pt;}
.yfd{bottom:847.626667pt;}
.y184{bottom:848.018667pt;}
.y242{bottom:849.122667pt;}
.y1f3{bottom:849.201333pt;}
.y117{bottom:849.612000pt;}
.y59{bottom:850.393333pt;}
.y15c{bottom:856.254667pt;}
.y173{bottom:857.341333pt;}
.y1a8{bottom:858.113333pt;}
.y2fd{bottom:859.176000pt;}
.y8d{bottom:860.770667pt;}
.y225{bottom:863.560000pt;}
.y1f2{bottom:864.344000pt;}
.y183{bottom:864.754667pt;}
.y241{bottom:866.218667pt;}
.y58{bottom:867.130667pt;}
.y9{bottom:867.976000pt;}
.ybd{bottom:868.341333pt;}
.y172{bottom:874.437333pt;}
.y2fc{bottom:874.518667pt;}
.y1a7{bottom:874.850667pt;}
.y8c{bottom:877.508000pt;}
.y15b{bottom:877.534667pt;}
.yfc{bottom:878.538667pt;}
.y1f1{bottom:879.486667pt;}
.y116{bottom:880.297333pt;}
.y182{bottom:881.492000pt;}
.y240{bottom:883.313333pt;}
.y57{bottom:883.868000pt;}
.y8{bottom:884.713333pt;}
.yfb{bottom:889.277333pt;}
.y2fb{bottom:889.861333pt;}
.y171{bottom:891.533333pt;}
.y1a6{bottom:891.588000pt;}
.y159{bottom:892.677333pt;}
.y8b{bottom:894.245333pt;}
.y1f0{bottom:894.630667pt;}
.y224{bottom:897.034667pt;}
.ybc{bottom:898.229333pt;}
.y56{bottom:900.605333pt;}
.y2fa{bottom:905.204000pt;}
.y15a{bottom:907.289333pt;}
.y1a5{bottom:908.325333pt;}
.y1ee{bottom:909.773333pt;}
.y115{bottom:910.982667pt;}
.y223{bottom:913.772000pt;}
.y8a{bottom:914.966667pt;}
.y55{bottom:917.342667pt;}
.y2f9{bottom:920.546667pt;}
.y1ef{bottom:924.385333pt;}
.y7{bottom:925.510667pt;}
.y113{bottom:927.720000pt;}
.y114{bottom:927.912000pt;}
.y222{bottom:930.509333pt;}
.y89{bottom:931.704000pt;}
.y158{bottom:931.945333pt;}
.y54{bottom:934.080000pt;}
.y2f8{bottom:935.889333pt;}
.y112{bottom:944.456000pt;}
.y221{bottom:947.246667pt;}
.y88{bottom:948.441333pt;}
.y157{bottom:949.041333pt;}
.y6{bottom:950.616000pt;}
.y53{bottom:950.817333pt;}
.y2f7{bottom:951.230667pt;}
.y111{bottom:961.193333pt;}
.y87{bottom:965.178667pt;}
.y156{bottom:965.216000pt;}
.y155{bottom:966.137333pt;}
.y2f6{bottom:966.573333pt;}
.y52{bottom:967.554667pt;}
.y220{bottom:967.968000pt;}
.y5{bottom:975.722667pt;}
.y86{bottom:981.916000pt;}
.y154{bottom:983.233333pt;}
.y51{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y50{bottom:1043.020000pt;}
.h9{height:22.673858pt;}
.hd{height:27.672303pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.h3{height:31.890083pt;}
.hc{height:32.284045pt;}
.h21{height:34.000589pt;}
.hf{height:34.574438pt;}
.h4{height:35.024664pt;}
.he{height:36.896250pt;}
.h22{height:37.156762pt;}
.h14{height:37.778179pt;}
.h11{height:38.415786pt;}
.h24{height:40.504218pt;}
.h10{height:41.508454pt;}
.h13{height:41.524400pt;}
.h6{height:45.004385pt;}
.h23{height:45.188454pt;}
.h2{height:45.272024pt;}
.h5{height:45.557261pt;}
.h12{height:46.120196pt;}
.h1c{height:46.893530pt;}
.h8{height:48.481423pt;}
.h1b{height:59.320196pt;}
.h25{height:63.801105pt;}
.h7{height:69.148877pt;}
.h26{height:70.735121pt;}
.h1d{height:81.604400pt;}
.h1f{height:82.568196pt;}
.h19{height:82.573530pt;}
.h18{height:86.200196pt;}
.h15{height:87.672196pt;}
.h17{height:89.074863pt;}
.h1a{height:91.096196pt;}
.h16{height:93.010688pt;}
.h1e{height:118.052400pt;}
.h20{height:118.057733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:171.140419pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:26.021437pt;}
.x1{left:48.000000pt;}
.x3{left:51.606197pt;}
.xc7{left:62.192000pt;}
.xaa{left:76.346667pt;}
.xce{left:98.025333pt;}
.xcc{left:101.014667pt;}
.xc8{left:104.004000pt;}
.xc5{left:121.421333pt;}
.xe2{left:122.452000pt;}
.xac{left:127.200000pt;}
.xab{left:128.886667pt;}
.xad{left:133.180000pt;}
.x2{left:161.132773pt;}
.xc9{left:185.909333pt;}
.xe0{left:204.602667pt;}
.xe1{left:214.844000pt;}
.x7{left:222.073333pt;}
.x5{left:223.020000pt;}
.xc4{left:227.093333pt;}
.x68{left:231.848000pt;}
.x6{left:241.085333pt;}
.x75{left:242.345333pt;}
.xb8{left:246.986667pt;}
.xbc{left:248.326667pt;}
.xa{left:251.365333pt;}
.xc2{left:252.776000pt;}
.x45{left:254.122667pt;}
.x9b{left:255.194667pt;}
.xa8{left:258.312000pt;}
.x46{left:259.654667pt;}
.x8d{left:261.516000pt;}
.xa7{left:264.426667pt;}
.xa3{left:268.208000pt;}
.xbe{left:269.358667pt;}
.x5b{left:271.537333pt;}
.x7d{left:273.865333pt;}
.x8{left:275.053333pt;}
.x4f{left:276.410667pt;}
.xc3{left:278.298667pt;}
.xde{left:279.861333pt;}
.x9c{left:280.846667pt;}
.x7c{left:281.957333pt;}
.xe8{left:283.190667pt;}
.x9{left:285.514667pt;}
.x5c{left:286.500000pt;}
.x47{left:288.138667pt;}
.xc0{left:290.036000pt;}
.x5d{left:292.166667pt;}
.x48{left:297.509333pt;}
.xa6{left:301.373333pt;}
.xda{left:307.893333pt;}
.x20{left:309.004000pt;}
.x88{left:312.542667pt;}
.x37{left:314.897333pt;}
.x91{left:317.869333pt;}
.x96{left:319.492000pt;}
.x21{left:322.288000pt;}
.xb9{left:323.266667pt;}
.xca{left:325.449333pt;}
.x4d{left:326.952000pt;}
.x2d{left:328.865333pt;}
.x76{left:330.354667pt;}
.x4e{left:332.485333pt;}
.x61{left:333.498667pt;}
.x5e{left:334.936000pt;}
.xef{left:336.465333pt;}
.x3e{left:337.554667pt;}
.x2e{left:342.149333pt;}
.xf0{left:343.240000pt;}
.xd4{left:344.445333pt;}
.x59{left:346.193333pt;}
.x77{left:348.760000pt;}
.x3f{left:351.333333pt;}
.x11{left:353.940000pt;}
.x62{left:355.997333pt;}
.x12{left:360.581333pt;}
.x63{left:361.685333pt;}
.x40{left:364.616000pt;}
.x41{left:368.004000pt;}
.x97{left:369.092000pt;}
.xa1{left:370.704000pt;}
.x17{left:371.821333pt;}
.x50{left:374.960000pt;}
.x6c{left:376.128000pt;}
.xba{left:377.353333pt;}
.x18{left:378.462667pt;}
.x64{left:379.788000pt;}
.x42{left:381.286667pt;}
.x85{left:382.876000pt;}
.x65{left:385.701333pt;}
.x51{left:388.242667pt;}
.xa2{left:390.020000pt;}
.x52{left:394.798667pt;}
.x90{left:397.881333pt;}
.x99{left:401.189333pt;}
.xe6{left:402.281333pt;}
.xf{left:403.760000pt;}
.x53{left:408.081333pt;}
.x66{left:409.490667pt;}
.x10{left:410.401333pt;}
.x71{left:415.092000pt;}
.x80{left:417.893333pt;}
.xed{left:419.358667pt;}
.x6d{left:422.109333pt;}
.xd{left:430.478667pt;}
.x67{left:431.764000pt;}
.xbb{left:433.922667pt;}
.xe{left:437.120000pt;}
.x6f{left:438.674667pt;}
.x72{left:445.234667pt;}
.x6e{left:450.592000pt;}
.x22{left:454.762667pt;}
.x2f{left:459.810667pt;}
.x92{left:460.776000pt;}
.x1c{left:462.605333pt;}
.xcb{left:464.989333pt;}
.x43{left:466.412000pt;}
.x23{left:468.045333pt;}
.x70{left:468.949333pt;}
.x35{left:470.784000pt;}
.x30{left:473.094667pt;}
.x81{left:474.310667pt;}
.x1d{left:475.888000pt;}
.xe4{left:477.148000pt;}
.x44{left:479.696000pt;}
.x82{left:482.118667pt;}
.x36{left:484.066667pt;}
.x84{left:487.885333pt;}
.x83{left:488.921333pt;}
.x78{left:489.993333pt;}
.xae{left:493.160000pt;}
.x94{left:496.462667pt;}
.x3c{left:499.157333pt;}
.xaf{left:500.465333pt;}
.x89{left:501.808000pt;}
.x93{left:506.302667pt;}
.x79{left:508.882667pt;}
.x29{left:510.746667pt;}
.x3d{left:512.440000pt;}
.xd6{left:514.281333pt;}
.x19{left:515.768000pt;}
.x8a{left:518.869333pt;}
.x1a{left:522.410667pt;}
.x2a{left:524.029333pt;}
.xee{left:525.114667pt;}
.x55{left:526.150667pt;}
.xd8{left:527.064000pt;}
.x49{left:528.786667pt;}
.x9a{left:533.117333pt;}
.x4a{left:534.320000pt;}
.xe5{left:538.218667pt;}
.x56{left:539.434667pt;}
.x7a{left:540.417333pt;}
.xe7{left:542.157333pt;}
.xd1{left:543.529333pt;}
.x1e{left:546.881333pt;}
.x8b{left:550.806667pt;}
.x86{left:553.670667pt;}
.xd9{left:554.780000pt;}
.x1f{left:560.165333pt;}
.x4b{left:562.804000pt;}
.xb4{left:564.302667pt;}
.x57{left:565.630667pt;}
.xd2{left:569.853333pt;}
.x4c{left:572.174667pt;}
.xb5{left:575.898667pt;}
.x58{left:578.914667pt;}
.xd5{left:581.437333pt;}
.xa4{left:583.684000pt;}
.xa5{left:593.002667pt;}
.x7b{left:594.916000pt;}
.xdc{left:596.480000pt;}
.xb7{left:599.524000pt;}
.x6b{left:600.482667pt;}
.xcd{left:604.530667pt;}
.x31{left:605.566667pt;}
.xc6{left:610.312000pt;}
.xb0{left:614.182667pt;}
.x8c{left:616.702667pt;}
.x32{left:618.850667pt;}
.x33{left:622.237333pt;}
.x98{left:623.180000pt;}
.xdd{left:624.946667pt;}
.x9d{left:627.145333pt;}
.xe9{left:629.502667pt;}
.x54{left:632.173333pt;}
.x28{left:633.633333pt;}
.x24{left:634.610667pt;}
.x34{left:635.521333pt;}
.x5a{left:637.365333pt;}
.x13{left:639.493333pt;}
.xdb{left:642.078667pt;}
.x3a{left:643.026667pt;}
.x14{left:646.134667pt;}
.x25{left:647.893333pt;}
.xb1{left:650.082667pt;}
.x26{left:651.281333pt;}
.x15{left:652.909333pt;}
.xf3{left:655.192000pt;}
.x3b{left:656.310667pt;}
.x16{left:659.552000pt;}
.x95{left:660.593333pt;}
.xea{left:662.190667pt;}
.xb2{left:663.405333pt;}
.x27{left:664.564000pt;}
.xc1{left:667.698667pt;}
.xe3{left:668.653333pt;}
.x7e{left:672.429333pt;}
.xf4{left:674.096000pt;}
.xeb{left:675.473333pt;}
.xf5{left:677.604000pt;}
.xec{left:678.745333pt;}
.x38{left:680.660000pt;}
.x2b{left:684.605333pt;}
.xb6{left:685.554667pt;}
.x9e{left:689.000000pt;}
.xb3{left:691.080000pt;}
.xd7{left:692.292000pt;}
.x1b{left:693.324000pt;}
.x8e{left:694.910667pt;}
.x73{left:696.384000pt;}
.x2c{left:697.888000pt;}
.x9f{left:698.970667pt;}
.xa9{left:701.402667pt;}
.xb{left:702.506667pt;}
.x5f{left:703.638667pt;}
.xcf{left:706.770667pt;}
.xc{left:709.148000pt;}
.x39{left:710.614667pt;}
.x74{left:711.670667pt;}
.x69{left:714.084000pt;}
.xd3{left:716.150667pt;}
.x60{left:718.965333pt;}
.xf2{left:720.236000pt;}
.xbf{left:721.198667pt;}
.xbd{left:723.509333pt;}
.xf1{left:725.792000pt;}
.x87{left:727.152000pt;}
.x6a{left:728.053333pt;}
.xa0{left:729.760000pt;}
.xd0{left:732.277333pt;}
.xdf{left:738.456000pt;}
.x7f{left:740.662667pt;}
.x8f{left:744.637333pt;}
}




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