
    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_6ce4c39df561201d5cc11d51.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3abd393f8d6cf8e9a9b31291.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ae5771e0207df210541ed923.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_048d698695705b37f45595b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.638000;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_e6f4a9e15bc1bad72a4e75e0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m8{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);}
.m1f{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);}
.m17{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);}
.mf{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);}
.mc{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);}
.m1b{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);}
.m20{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);}
.m19{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m5{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);}
.m9{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);}
.m27{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);}
.m1a{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);}
.m10{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);}
.mb{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m1d{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);}
.md{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);}
.m1c{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);}
.m22{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);}
.m15{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m4{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);}
.m7{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);}
.m23{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);}
.m24{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.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);}
.m1e{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);}
.m26{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);}
.m3{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.696000px;}
.v3{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.004800px;}
.lsf{letter-spacing:4.841856px;}
.lse{letter-spacing:5.379840px;}
.ls0{letter-spacing:10.461300px;}
.ls5{letter-spacing:11.960850px;}
.ls12{letter-spacing:13.448400px;}
.ls13{letter-spacing:13.454400px;}
.ls14{letter-spacing:13.475174px;}
.ls4{letter-spacing:13.569061px;}
.ls11{letter-spacing:13.691576px;}
.ls7{letter-spacing:14.585246px;}
.lsd{letter-spacing:14.764573px;}
.ls10{letter-spacing:14.884124px;}
.lsa{letter-spacing:15.123227px;}
.ls9{letter-spacing:15.183002px;}
.ls8{letter-spacing:17.155597px;}
.lsb{letter-spacing:18.171782px;}
.lsc{letter-spacing:18.351109px;}
.ls1{letter-spacing:56.623200px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws71{word-spacing:-14.943900px;}
.wsbb{word-spacing:-13.449600px;}
.ws2c{word-spacing:-11.955150px;}
.wsd{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws5d{word-spacing:-3.048556px;}
.ws77{word-spacing:-2.809453px;}
.ws3b{word-spacing:-2.211697px;}
.ws4f{word-spacing:-2.092146px;}
.ws52{word-spacing:-1.972595px;}
.wsca{word-spacing:-1.882944px;}
.ws7e{word-spacing:-1.793268px;}
.ws61{word-spacing:-1.733492px;}
.ws81{word-spacing:-1.673717px;}
.ws6d{word-spacing:-1.613941px;}
.ws38{word-spacing:-1.494390px;}
.ws22{word-spacing:-1.374839px;}
.ws39{word-spacing:-1.315063px;}
.wse2{word-spacing:-1.291162px;}
.wse1{word-spacing:-1.275202px;}
.wsb7{word-spacing:-1.237363px;}
.ws5c{word-spacing:-1.195512px;}
.wsc{word-spacing:-1.135736px;}
.ws47{word-spacing:-1.075961px;}
.ws1{word-spacing:-1.046070px;}
.ws83{word-spacing:-1.016185px;}
.ws75{word-spacing:-0.956410px;}
.wsf{word-spacing:-0.908591px;}
.ws9a{word-spacing:-0.836858px;}
.ws1a{word-spacing:-0.806976px;}
.ws8e{word-spacing:-0.777083px;}
.ws95{word-spacing:-0.717307px;}
.wsd9{word-spacing:-0.699379px;}
.ws0{word-spacing:-0.692459px;}
.wsb2{word-spacing:-0.657532px;}
.wsd8{word-spacing:-0.645581px;}
.ws76{word-spacing:-0.478205px;}
.ws3c{word-spacing:-0.418429px;}
.ws31{word-spacing:-0.358654px;}
.wsdf{word-spacing:-0.322790px;}
.ws5f{word-spacing:-0.298878px;}
.ws14{word-spacing:-0.268992px;}
.ws1d{word-spacing:-0.239102px;}
.ws15{word-spacing:-0.215194px;}
.ws42{word-spacing:-0.179327px;}
.wsae{word-spacing:-0.165071px;}
.wsc6{word-spacing:-0.161395px;}
.ws1c{word-spacing:-0.119551px;}
.ws17{word-spacing:-0.107597px;}
.ws8c{word-spacing:-0.067313px;}
.ws20{word-spacing:-0.059776px;}
.wsa2{word-spacing:-0.053798px;}
.wsce{word-spacing:-0.005645px;}
.wsd5{word-spacing:-0.005021px;}
.wsb0{word-spacing:-0.003888px;}
.wsde{word-spacing:-0.003859px;}
.wsc4{word-spacing:-0.002870px;}
.ws2b{word-spacing:-0.002857px;}
.wsb1{word-spacing:-0.002822px;}
.wsc5{word-spacing:-0.002506px;}
.wsc0{word-spacing:-0.001018px;}
.wsd1{word-spacing:-0.000221px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:0.000506px;}
.wscd{word-spacing:0.053798px;}
.ws21{word-spacing:0.059776px;}
.ws11{word-spacing:0.107597px;}
.ws2f{word-spacing:0.119551px;}
.wsad{word-spacing:0.157840px;}
.wsb9{word-spacing:0.161395px;}
.ws1f{word-spacing:0.179327px;}
.ws99{word-spacing:0.187704px;}
.wsbe{word-spacing:0.215194px;}
.wsaf{word-spacing:0.228106px;}
.ws24{word-spacing:0.239102px;}
.wsc3{word-spacing:0.268992px;}
.ws70{word-spacing:0.276755px;}
.ws23{word-spacing:0.298878px;}
.ws72{word-spacing:0.300729px;}
.wsd6{word-spacing:0.322790px;}
.ws40{word-spacing:0.358654px;}
.wsb5{word-spacing:0.376589px;}
.ws28{word-spacing:0.478205px;}
.ws33{word-spacing:0.537980px;}
.ws54{word-spacing:0.597756px;}
.wsb4{word-spacing:0.645581px;}
.ws64{word-spacing:0.657532px;}
.ws2e{word-spacing:0.717307px;}
.wsbf{word-spacing:0.753178px;}
.ws4c{word-spacing:0.777083px;}
.wsc9{word-spacing:0.806976px;}
.ws4e{word-spacing:0.836858px;}
.ws6e{word-spacing:0.896634px;}
.ws73{word-spacing:0.956410px;}
.ws74{word-spacing:0.971550px;}
.wsa5{word-spacing:1.016185px;}
.wsd3{word-spacing:1.022170px;}
.ws30{word-spacing:1.075961px;}
.wscc{word-spacing:1.129766px;}
.ws8f{word-spacing:1.135736px;}
.ws2d{word-spacing:1.255288px;}
.wsa6{word-spacing:1.276426px;}
.ws32{word-spacing:1.315063px;}
.wsa7{word-spacing:1.374839px;}
.ws7b{word-spacing:1.434614px;}
.wsc2{word-spacing:1.452557px;}
.ws3f{word-spacing:1.494390px;}
.wsd4{word-spacing:1.506355px;}
.ws67{word-spacing:1.554166px;}
.ws62{word-spacing:1.613941px;}
.ws44{word-spacing:1.673717px;}
.ws50{word-spacing:1.733492px;}
.wsc1{word-spacing:1.829146px;}
.ws12{word-spacing:1.882944px;}
.ws84{word-spacing:1.912819px;}
.ws5b{word-spacing:1.972595px;}
.ws86{word-spacing:2.032370px;}
.ws66{word-spacing:2.092146px;}
.ws90{word-spacing:2.151922px;}
.ws46{word-spacing:2.211697px;}
.ws13{word-spacing:2.259533px;}
.ws96{word-spacing:2.271473px;}
.ws35{word-spacing:2.331248px;}
.ws7a{word-spacing:2.391024px;}
.ws19{word-spacing:2.420928px;}
.ws93{word-spacing:2.510575px;}
.ws25{word-spacing:2.630126px;}
.ws68{word-spacing:2.689902px;}
.ws51{word-spacing:2.749678px;}
.ws9c{word-spacing:2.809453px;}
.ws10{word-spacing:2.869236px;}
.ws5a{word-spacing:2.929004px;}
.wsd7{word-spacing:2.958912px;}
.ws4d{word-spacing:2.988780px;}
.wsc7{word-spacing:3.120307px;}
.ws65{word-spacing:3.168107px;}
.wsdb{word-spacing:3.218534px;}
.wsc8{word-spacing:3.223162px;}
.wsdd{word-spacing:3.223910px;}
.wsd2{word-spacing:3.225082px;}
.ws69{word-spacing:3.227882px;}
.wsbc{word-spacing:3.227904px;}
.wscb{word-spacing:3.228605px;}
.ws27{word-spacing:3.287658px;}
.ws3a{word-spacing:3.347434px;}
.ws18{word-spacing:3.389299px;}
.ws16{word-spacing:3.443098px;}
.ws6c{word-spacing:3.466985px;}
.ws4a{word-spacing:3.526760px;}
.ws91{word-spacing:3.554601px;}
.ws1b{word-spacing:3.586536px;}
.wsda{word-spacing:3.604493px;}
.ws92{word-spacing:3.706087px;}
.wsb3{word-spacing:3.765863px;}
.wsb6{word-spacing:3.819686px;}
.ws8d{word-spacing:3.825638px;}
.ws63{word-spacing:3.945190px;}
.ws43{word-spacing:4.064741px;}
.ws41{word-spacing:4.124516px;}
.wsba{word-spacing:4.142477px;}
.ws58{word-spacing:4.184292px;}
.wse4{word-spacing:4.250074px;}
.ws26{word-spacing:4.303843px;}
.ws7d{word-spacing:4.363619px;}
.ws53{word-spacing:4.423394px;}
.ws87{word-spacing:4.451959px;}
.ws2a{word-spacing:4.483170px;}
.ws3d{word-spacing:4.602721px;}
.wse3{word-spacing:4.626662px;}
.ws7c{word-spacing:4.662497px;}
.wsa{word-spacing:4.770079px;}
.ws29{word-spacing:4.782048px;}
.wsb{word-spacing:4.853765px;}
.ws85{word-spacing:4.901599px;}
.ws6b{word-spacing:5.080926px;}
.wse0{word-spacing:5.272243px;}
.ws59{word-spacing:5.320028px;}
.ws8a{word-spacing:5.379804px;}
.ws34{word-spacing:5.439580px;}
.ws48{word-spacing:5.499355px;}
.ws3e{word-spacing:5.559131px;}
.wscf{word-spacing:5.595034px;}
.ws5e{word-spacing:5.678682px;}
.ws45{word-spacing:5.798233px;}
.ws6f{word-spacing:5.858009px;}
.ws94{word-spacing:6.097111px;}
.ws4b{word-spacing:6.156887px;}
.ws8b{word-spacing:6.216662px;}
.wsb8{word-spacing:6.294413px;}
.ws82{word-spacing:6.395989px;}
.ws7f{word-spacing:6.515540px;}
.ws80{word-spacing:6.575316px;}
.ws37{word-spacing:6.635092px;}
.ws78{word-spacing:6.754643px;}
.ws98{word-spacing:6.778598px;}
.ws49{word-spacing:6.933970px;}
.ws97{word-spacing:7.155187px;}
.ws88{word-spacing:7.232848px;}
.ws57{word-spacing:7.292623px;}
.wsdc{word-spacing:7.316582px;}
.ws56{word-spacing:7.352399px;}
.ws6a{word-spacing:7.471950px;}
.wsac{word-spacing:7.477978px;}
.wsab{word-spacing:7.585574px;}
.wsa1{word-spacing:7.639373px;}
.ws8{word-spacing:7.782761px;}
.ws9e{word-spacing:7.854566px;}
.ws89{word-spacing:7.890379px;}
.ws55{word-spacing:8.009930px;}
.wsa4{word-spacing:8.015962px;}
.ws9b{word-spacing:8.129482px;}
.ws36{word-spacing:8.189257px;}
.ws60{word-spacing:8.308808px;}
.ws79{word-spacing:8.488135px;}
.wsd0{word-spacing:8.500147px;}
.wsa0{word-spacing:8.715341px;}
.ws1e{word-spacing:8.787013px;}
.ws6{word-spacing:12.176255px;}
.ws7{word-spacing:16.109478px;}
.wsbd{word-spacing:16.193318px;}
.ws9{word-spacing:26.109907px;}
.ws5{word-spacing:26.840252px;}
.ws9f{word-spacing:28.728346px;}
.wsa3{word-spacing:30.342298px;}
.wsaa{word-spacing:31.687258px;}
.wsa9{word-spacing:39.488026px;}
.wsa8{word-spacing:40.886784px;}
.wse{word-spacing:45.268488px;}
.ws9d{word-spacing:595.386893px;}
._5{margin-left:-11.943245px;}
._6{margin-left:-8.249044px;}
._b{margin-left:-6.670879px;}
._15{margin-left:-5.499344px;}
._0{margin-left:-4.477180px;}
._a{margin-left:-2.474750px;}
._1{margin-left:-1.255284px;}
._7{width:1.480204px;}
._41{width:3.281963px;}
._34{width:4.303843px;}
._3e{width:6.181112px;}
._42{width:7.648544px;}
._40{width:9.516700px;}
._3f{width:11.117066px;}
._3{width:12.971268px;}
._12{width:14.822586px;}
._c{width:16.617908px;}
._33{width:17.633802px;}
._e{width:18.769535px;}
._f{width:20.556816px;}
._16{width:21.997417px;}
._9{width:23.157077px;}
._18{width:24.209118px;}
._2{width:25.940136px;}
._d{width:27.670298px;}
._10{width:28.871615px;}
._4{width:30.587087px;}
._11{width:33.259180px;}
._32{width:35.506706px;}
._17{width:38.136829px;}
._3d{width:39.541824px;}
._19{width:40.946286px;}
._1a{width:42.383396px;}
._8{width:53.529634px;}
._4b{width:61.868160px;}
._4a{width:88.767360px;}
._35{width:93.548814px;}
._2d{width:162.202176px;}
._43{width:206.316864px;}
._1e{width:226.060877px;}
._28{width:229.145330px;}
._20{width:241.142373px;}
._24{width:242.648728px;}
._23{width:263.773555px;}
._1f{width:265.548902px;}
._27{width:268.992000px;}
._2a{width:281.042842px;}
._31{width:294.546240px;}
._48{width:296.536781px;}
._2b{width:301.970419px;}
._22{width:308.480026px;}
._2c{width:309.789131px;}
._1d{width:312.353510px;}
._45{width:313.859866px;}
._26{width:315.204826px;}
._29{width:319.831488px;}
._49{width:323.113190px;}
._46{width:330.322176px;}
._21{width:352.002931px;}
._47{width:354.800448px;}
._30{width:357.167578px;}
._25{width:360.180288px;}
._38{width:401.712653px;}
._2f{width:463.580813px;}
._2e{width:467.615693px;}
._1c{width:490.587610px;}
._37{width:497.366208px;}
._1b{width:517.433011px;}
._3b{width:540.781517px;}
._39{width:578.655590px;}
._44{width:635.412902px;}
._3c{width:666.562176px;}
._3a{width:686.790374px;}
._13{width:1026.612641px;}
._36{width:2533.412700px;}
._14{width:2557.322700px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(54,121,123);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y17{bottom:16.015847px;}
.y44{bottom:31.890000px;}
.y6b{bottom:91.665000px;}
.y140{bottom:97.389000px;}
.y20e{bottom:104.503500px;}
.y15{bottom:104.646000px;}
.y1d6{bottom:108.675000px;}
.y6a{bottom:110.494500px;}
.y10b{bottom:113.310000px;}
.yfe{bottom:114.093000px;}
.y13f{bottom:116.218500px;}
.y184{bottom:118.899000px;}
.y161{bottom:120.702000px;}
.y20d{bottom:121.762500px;}
.y14{bottom:122.535000px;}
.y43{bottom:124.758000px;}
.y9c{bottom:125.574000px;}
.y1d5{bottom:125.935500px;}
.yaf{bottom:126.022500px;}
.y69{bottom:129.324000px;}
.yfd{bottom:132.922500px;}
.y13e{bottom:135.048000px;}
.y183{bottom:137.728500px;}
.y20c{bottom:139.023000px;}
.y160{bottom:139.531500px;}
.y13{bottom:140.422500px;}
.y1d4{bottom:143.196000px;}
.y42{bottom:143.586000px;}
.y9b{bottom:144.403500px;}
.yae{bottom:144.852000px;}
.y68{bottom:148.153500px;}
.y13d{bottom:153.877500px;}
.yfc{bottom:156.235500px;}
.y20b{bottom:156.283500px;}
.y182{bottom:156.558000px;}
.y12{bottom:158.310000px;}
.y15f{bottom:158.361000px;}
.y1d2{bottom:160.456500px;}
.y1ad{bottom:161.908500px;}
.y41{bottom:162.415500px;}
.y9a{bottom:163.233000px;}
.yad{bottom:163.681500px;}
.y1d3{bottom:163.683000px;}
.y67{bottom:166.983000px;}
.y13c{bottom:172.707000px;}
.y20a{bottom:173.544000px;}
.y181{bottom:175.387500px;}
.y11{bottom:176.199000px;}
.y15e{bottom:177.190500px;}
.y40{bottom:181.245000px;}
.y99{bottom:182.062500px;}
.y1d1{bottom:182.199000px;}
.yac{bottom:182.511000px;}
.y66{bottom:185.812500px;}
.yfb{bottom:189.859500px;}
.y209{bottom:190.804500px;}
.y13b{bottom:191.536500px;}
.y10{bottom:194.086500px;}
.y180{bottom:194.217000px;}
.y15d{bottom:196.020000px;}
.y3f{bottom:200.074500px;}
.y98{bottom:200.892000px;}
.yab{bottom:201.340500px;}
.y65{bottom:204.642000px;}
.ydf{bottom:207.574500px;}
.y208{bottom:208.065000px;}
.yfa{bottom:208.689000px;}
.y13a{bottom:210.366000px;}
.yf{bottom:211.974000px;}
.y17f{bottom:213.046500px;}
.y15c{bottom:214.849500px;}
.y1d0{bottom:215.823000px;}
.y3e{bottom:218.904000px;}
.y97{bottom:219.721500px;}
.yaa{bottom:220.170000px;}
.y64{bottom:223.471500px;}
.y207{bottom:225.325500px;}
.yde{bottom:226.404000px;}
.yf9{bottom:227.518500px;}
.ye{bottom:229.863000px;}
.y17e{bottom:231.876000px;}
.y139{bottom:233.679000px;}
.y3d{bottom:237.733500px;}
.y96{bottom:238.551000px;}
.ya9{bottom:238.999500px;}
.y63{bottom:242.301000px;}
.y1cf{bottom:242.364000px;}
.y206{bottom:242.586000px;}
.ydd{bottom:245.233500px;}
.yf8{bottom:246.348000px;}
.y17d{bottom:250.705500px;}
.y15b{bottom:252.508500px;}
.y3c{bottom:256.563000px;}
.y95{bottom:257.380500px;}
.ya8{bottom:257.829000px;}
.y205{bottom:259.846500px;}
.y1ce{bottom:259.938000px;}
.y62{bottom:261.130500px;}
.ydc{bottom:264.063000px;}
.yf7{bottom:265.177500px;}
.y138{bottom:265.255500px;}
.y17c{bottom:269.535000px;}
.y15a{bottom:271.338000px;}
.y3b{bottom:275.392500px;}
.y94{bottom:276.210000px;}
.ya7{bottom:276.658500px;}
.y204{bottom:277.105500px;}
.y61{bottom:279.960000px;}
.ydb{bottom:282.892500px;}
.yf6{bottom:284.007000px;}
.y137{bottom:284.085000px;}
.y1cd{bottom:286.479000px;}
.y1ac{bottom:287.256000px;}
.y17b{bottom:288.364500px;}
.y159{bottom:290.167500px;}
.y3a{bottom:294.222000px;}
.y203{bottom:294.366000px;}
.yc7{bottom:295.039500px;}
.ya6{bottom:295.488000px;}
.y60{bottom:298.789500px;}
.yd{bottom:298.876500px;}
.y93{bottom:299.523000px;}
.yda{bottom:301.722000px;}
.yf5{bottom:302.836500px;}
.y136{bottom:302.914500px;}
.y1ab{bottom:306.085500px;}
.y158{bottom:308.997000px;}
.y202{bottom:311.626500px;}
.y17a{bottom:311.677500px;}
.y1cc{bottom:313.018500px;}
.y39{bottom:313.051500px;}
.yc6{bottom:313.869000px;}
.ya5{bottom:314.317500px;}
.yc{bottom:316.764000px;}
.y5f{bottom:317.619000px;}
.yd9{bottom:320.551500px;}
.yf4{bottom:321.666000px;}
.y135{bottom:321.744000px;}
.y1aa{bottom:324.915000px;}
.y157{bottom:327.826500px;}
.y201{bottom:328.887000px;}
.y38{bottom:331.881000px;}
.yc5{bottom:332.698500px;}
.y92{bottom:333.145500px;}
.yb{bottom:334.653000px;}
.y5e{bottom:336.448500px;}
.yd8{bottom:339.379500px;}
.y1cb{bottom:339.559500px;}
.yf3{bottom:340.495500px;}
.y1a9{bottom:343.744500px;}
.y134{bottom:345.057000px;}
.y200{bottom:346.147500px;}
.y156{bottom:346.656000px;}
.y37{bottom:350.710500px;}
.yc4{bottom:351.528000px;}
.y91{bottom:351.975000px;}
.ya{bottom:352.540500px;}
.y179{bottom:354.000000px;}
.y5d{bottom:355.278000px;}
.yd7{bottom:358.209000px;}
.yf2{bottom:359.325000px;}
.y1a8{bottom:362.574000px;}
.y1ff{bottom:363.408000px;}
.y133{bottom:363.886500px;}
.y155{bottom:365.485500px;}
.y1ca{bottom:366.100500px;}
.y36{bottom:369.540000px;}
.yc3{bottom:370.357500px;}
.y178{bottom:370.438500px;}
.y90{bottom:370.804500px;}
.y5c{bottom:374.107500px;}
.yd6{bottom:377.038500px;}
.yf1{bottom:378.154500px;}
.y1fe{bottom:380.668500px;}
.y9{bottom:380.889000px;}
.y1a7{bottom:381.403500px;}
.y132{bottom:382.716000px;}
.y1c9{bottom:383.674500px;}
.y154{bottom:384.315000px;}
.y177{bottom:386.877000px;}
.y35{bottom:388.369500px;}
.y10a{bottom:389.187000px;}
.y8f{bottom:389.634000px;}
.y5b{bottom:392.937000px;}
.yc2{bottom:393.669000px;}
.yd5{bottom:395.868000px;}
.yf0{bottom:396.984000px;}
.y1fd{bottom:397.929000px;}
.y1a6{bottom:400.233000px;}
.y1c8{bottom:401.248500px;}
.y131{bottom:401.545500px;}
.y153{bottom:403.144500px;}
.y34{bottom:407.199000px;}
.y8{bottom:407.743500px;}
.y109{bottom:408.015000px;}
.ya4{bottom:408.463500px;}
.y176{bottom:410.817000px;}
.y5a{bottom:411.766500px;}
.y8e{bottom:412.947000px;}
.yd4{bottom:414.697500px;}
.y1fc{bottom:415.188000px;}
.yef{bottom:415.813500px;}
.y130{bottom:420.375000px;}
.y152{bottom:421.974000px;}
.y7{bottom:425.631000px;}
.y33{bottom:426.028500px;}
.y108{bottom:426.844500px;}
.ya3{bottom:427.293000px;}
.y1c7{bottom:427.789500px;}
.y59{bottom:430.596000px;}
.y1fb{bottom:432.448500px;}
.yd3{bottom:433.527000px;}
.yee{bottom:434.643000px;}
.y12f{bottom:439.204500px;}
.y151{bottom:440.803500px;}
.y175{bottom:442.437000px;}
.y6{bottom:443.520000px;}
.y1a5{bottom:444.180000px;}
.y32{bottom:444.858000px;}
.y1c6{bottom:445.363500px;}
.y107{bottom:445.674000px;}
.ya2{bottom:446.122500px;}
.y8d{bottom:446.571000px;}
.y58{bottom:449.425500px;}
.y1fa{bottom:449.709000px;}
.yd2{bottom:452.356500px;}
.yed{bottom:453.472500px;}
.y12e{bottom:458.034000px;}
.y150{bottom:459.633000px;}
.y5{bottom:461.407500px;}
.y1a4{bottom:461.440500px;}
.y1c5{bottom:462.937500px;}
.y31{bottom:463.687500px;}
.y106{bottom:464.503500px;}
.ya1{bottom:464.952000px;}
.y8c{bottom:465.400500px;}
.y1f9{bottom:466.969500px;}
.y57{bottom:468.255000px;}
.yd1{bottom:471.186000px;}
.yec{bottom:472.302000px;}
.y12d{bottom:476.862000px;}
.y14f{bottom:478.462500px;}
.y1a3{bottom:478.701000px;}
.y4{bottom:479.295000px;}
.y174{bottom:479.541000px;}
.y1c4{bottom:480.511500px;}
.y30{bottom:482.517000px;}
.y211{bottom:482.661000px;}
.y105{bottom:483.333000px;}
.ya0{bottom:483.781500px;}
.y8b{bottom:484.230000px;}
.y56{bottom:487.084500px;}
.yd0{bottom:490.015500px;}
.yeb{bottom:491.130000px;}
.y12b{bottom:495.691500px;}
.y1a2{bottom:495.961500px;}
.y3{bottom:497.184000px;}
.y173{bottom:498.370500px;}
.y210{bottom:499.921500px;}
.y12c{bottom:501.117000px;}
.y1f8{bottom:501.490500px;}
.y14e{bottom:501.774000px;}
.y104{bottom:502.162500px;}
.y9f{bottom:502.611000px;}
.y8a{bottom:503.059500px;}
.y2f{bottom:505.830000px;}
.y55{bottom:505.914000px;}
.yea{bottom:509.959500px;}
.y1a1{bottom:513.222000px;}
.y12a{bottom:514.521000px;}
.y2{bottom:515.071500px;}
.y1c3{bottom:516.018000px;}
.y20f{bottom:517.182000px;}
.y172{bottom:517.200000px;}
.y1f7{bottom:518.751000px;}
.y103{bottom:520.992000px;}
.y9e{bottom:521.440500px;}
.y89{bottom:521.889000px;}
.y54{bottom:524.743500px;}
.ye9{bottom:528.789000px;}
.y1a0{bottom:530.482500px;}
.y1{bottom:532.959000px;}
.y129{bottom:533.350500px;}
.ycf{bottom:533.983500px;}
.y1c2{bottom:534.847500px;}
.y1f6{bottom:536.011500px;}
.y171{bottom:536.029500px;}
.y102{bottom:539.821500px;}
.yc1{bottom:540.270000px;}
.y88{bottom:540.718500px;}
.y9d{bottom:544.753500px;}
.ye8{bottom:547.618500px;}
.y53{bottom:548.055000px;}
.yce{bottom:550.422000px;}
.y128{bottom:552.180000px;}
.y1f5{bottom:553.272000px;}
.y1c1{bottom:553.677000px;}
.y170{bottom:554.859000px;}
.y19f{bottom:558.106500px;}
.y101{bottom:558.651000px;}
.yc0{bottom:559.099500px;}
.y87{bottom:559.548000px;}
.ye7{bottom:566.448000px;}
.ycd{bottom:566.860500px;}
.y1f4{bottom:570.531000px;}
.y127{bottom:571.009500px;}
.y1c0{bottom:572.506500px;}
.y16f{bottom:573.687000px;}
.y2e{bottom:577.476000px;}
.ybf{bottom:577.929000px;}
.y86{bottom:578.377500px;}
.y52{bottom:581.679000px;}
.y100{bottom:581.964000px;}
.ycc{bottom:583.299000px;}
.ye6{bottom:585.277500px;}
.y1f3{bottom:587.791500px;}
.y126{bottom:589.839000px;}
.y1bf{bottom:591.336000px;}
.y19e{bottom:591.388500px;}
.y16e{bottom:592.516500px;}
.ybe{bottom:596.758500px;}
.y2d{bottom:596.932500px;}
.y85{bottom:597.207000px;}
.ycb{bottom:599.737500px;}
.y51{bottom:600.508500px;}
.y1f2{bottom:605.052000px;}
.ye5{bottom:608.590500px;}
.y125{bottom:608.668500px;}
.y1be{bottom:610.165500px;}
.y19d{bottom:610.218000px;}
.y16d{bottom:611.346000px;}
.ybd{bottom:615.588000px;}
.y84{bottom:616.036500px;}
.y50{bottom:619.338000px;}
.y1f1{bottom:622.312500px;}
.yca{bottom:623.676000px;}
.y124{bottom:627.498000px;}
.y1bd{bottom:628.995000px;}
.y19c{bottom:629.047500px;}
.y16c{bottom:630.175500px;}
.y14d{bottom:631.981500px;}
.y2c{bottom:634.323000px;}
.ybc{bottom:634.417500px;}
.y83{bottom:634.866000px;}
.y4f{bottom:638.167500px;}
.y1f0{bottom:639.573000px;}
.ye4{bottom:642.214500px;}
.y1bc{bottom:647.824500px;}
.y19b{bottom:647.877000px;}
.y16b{bottom:649.005000px;}
.y123{bottom:650.811000px;}
.ybb{bottom:653.247000px;}
.y82{bottom:653.695500px;}
.y2b{bottom:653.779500px;}
.y1ef{bottom:656.833500px;}
.y4e{bottom:656.997000px;}
.yc9{bottom:658.284000px;}
.ye3{bottom:661.044000px;}
.y1bb{bottom:666.654000px;}
.y19a{bottom:666.706500px;}
.y16a{bottom:667.834500px;}
.y14c{bottom:669.640500px;}
.yba{bottom:672.076500px;}
.y81{bottom:672.525000px;}
.y2a{bottom:673.237500px;}
.y1ee{bottom:674.094000px;}
.y4d{bottom:675.826500px;}
.ye2{bottom:679.873500px;}
.y122{bottom:682.387500px;}
.y1ba{bottom:685.483500px;}
.y199{bottom:685.536000px;}
.y169{bottom:686.664000px;}
.y14b{bottom:688.470000px;}
.yb9{bottom:690.906000px;}
.y80{bottom:691.354500px;}
.y29{bottom:692.694000px;}
.y4c{bottom:694.656000px;}
.y121{bottom:701.217000px;}
.ye1{bottom:703.186500px;}
.y1b9{bottom:704.313000px;}
.y198{bottom:704.365500px;}
.y168{bottom:705.493500px;}
.y14a{bottom:707.299500px;}
.y1ed{bottom:708.613500px;}
.yb8{bottom:709.735500px;}
.y7f{bottom:710.184000px;}
.y28{bottom:712.150500px;}
.y4b{bottom:713.485500px;}
.y120{bottom:720.046500px;}
.y1b8{bottom:723.142500px;}
.y197{bottom:723.195000px;}
.y167{bottom:724.323000px;}
.y1ec{bottom:725.874000px;}
.y149{bottom:726.129000px;}
.yb7{bottom:728.565000px;}
.y7e{bottom:729.013500px;}
.y27{bottom:731.608500px;}
.y4a{bottom:732.315000px;}
.yff{bottom:733.047000px;}
.ye0{bottom:733.614000px;}
.y11f{bottom:738.876000px;}
.y1b7{bottom:741.972000px;}
.y196{bottom:742.024500px;}
.y1eb{bottom:743.134500px;}
.y166{bottom:743.152500px;}
.y148{bottom:744.958500px;}
.yb6{bottom:747.394500px;}
.y7d{bottom:747.843000px;}
.y26{bottom:751.065000px;}
.y49{bottom:751.144500px;}
.y1ea{bottom:760.395000px;}
.y1b6{bottom:760.801500px;}
.y195{bottom:760.854000px;}
.y165{bottom:761.982000px;}
.y11e{bottom:762.189000px;}
.y147{bottom:763.788000px;}
.yb5{bottom:766.224000px;}
.y7c{bottom:766.671000px;}
.y25{bottom:770.521500px;}
.y1e9{bottom:777.655500px;}
.y1b5{bottom:779.631000px;}
.y194{bottom:779.683500px;}
.y11d{bottom:781.018500px;}
.y146{bottom:782.617500px;}
.y48{bottom:784.227000px;}
.yb4{bottom:785.053500px;}
.y164{bottom:785.295000px;}
.y7b{bottom:785.500500px;}
.y24{bottom:789.979500px;}
.y1e8{bottom:794.916000px;}
.y1b4{bottom:798.460500px;}
.y193{bottom:798.513000px;}
.y11c{bottom:799.848000px;}
.y145{bottom:801.447000px;}
.yb3{bottom:803.883000px;}
.y7a{bottom:804.330000px;}
.yc8{bottom:808.365000px;}
.y23{bottom:809.436000px;}
.y1e7{bottom:812.176500px;}
.y163{bottom:815.722500px;}
.y192{bottom:817.342500px;}
.y11b{bottom:818.677500px;}
.y144{bottom:820.276500px;}
.y1b3{bottom:821.772000px;}
.yb2{bottom:822.712500px;}
.y79{bottom:823.159500px;}
.y1e6{bottom:829.437000px;}
.y162{bottom:834.955500px;}
.y191{bottom:836.172000px;}
.y11a{bottom:837.507000px;}
.yb1{bottom:841.540500px;}
.y78{bottom:841.989000px;}
.y143{bottom:843.588000px;}
.y1e5{bottom:846.697500px;}
.y22{bottom:848.022000px;}
.y190{bottom:855.001500px;}
.y119{bottom:856.335000px;}
.y77{bottom:860.818500px;}
.y1e4{bottom:863.956500px;}
.yb0{bottom:864.853500px;}
.y1b2{bottom:867.085500px;}
.y21{bottom:868.501500px;}
.y18f{bottom:873.829500px;}
.y118{bottom:875.164500px;}
.y76{bottom:879.648000px;}
.y1e3{bottom:881.217000px;}
.y1b1{bottom:883.524000px;}
.y20{bottom:884.640000px;}
.y18e{bottom:892.659000px;}
.y117{bottom:893.994000px;}
.y75{bottom:898.477500px;}
.y1b0{bottom:899.962500px;}
.y1f{bottom:900.780000px;}
.y18d{bottom:911.488500px;}
.y1e{bottom:912.580500px;}
.y116{bottom:912.823500px;}
.y1e2{bottom:915.738000px;}
.y74{bottom:917.307000px;}
.y1af{bottom:923.901000px;}
.y18c{bottom:930.318000px;}
.y114{bottom:931.653000px;}
.y1e1{bottom:932.998500px;}
.y1d{bottom:933.058500px;}
.y73{bottom:936.136500px;}
.y115{bottom:937.078500px;}
.y18b{bottom:949.147500px;}
.y1e0{bottom:950.259000px;}
.y113{bottom:950.482500px;}
.y72{bottom:954.966000px;}
.y1ae{bottom:958.509000px;}
.y1df{bottom:967.519500px;}
.y18a{bottom:967.977000px;}
.y112{bottom:969.312000px;}
.y71{bottom:973.795500px;}
.y1c{bottom:977.736000px;}
.y1de{bottom:984.780000px;}
.y111{bottom:988.141500px;}
.y70{bottom:992.625000px;}
.y1b{bottom:996.565500px;}
.y1dc{bottom:1002.039000px;}
.y1dd{bottom:1002.040500px;}
.y110{bottom:1006.971000px;}
.y189{bottom:1008.936000px;}
.y6f{bottom:1011.454500px;}
.y1db{bottom:1019.299500px;}
.y10f{bottom:1025.800500px;}
.y188{bottom:1026.196500px;}
.y6e{bottom:1030.284000px;}
.y1a{bottom:1036.485000px;}
.y1da{bottom:1036.560000px;}
.y187{bottom:1043.457000px;}
.y10e{bottom:1044.630000px;}
.y6d{bottom:1049.113500px;}
.y1d9{bottom:1053.820500px;}
.y186{bottom:1060.717500px;}
.y10d{bottom:1063.459500px;}
.y19{bottom:1064.728500px;}
.y6c{bottom:1067.943000px;}
.y1d8{bottom:1071.081000px;}
.y185{bottom:1077.978000px;}
.y10c{bottom:1082.289000px;}
.y47{bottom:1086.772500px;}
.y1d7{bottom:1088.341500px;}
.y142{bottom:1092.196500px;}
.y18{bottom:1092.972000px;}
.y46{bottom:1105.602000px;}
.y141{bottom:1111.026000px;}
.y16{bottom:1136.460000px;}
.y45{bottom:1168.366500px;}
.h9{height:26.110157px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h10{height:33.299897px;}
.ha{height:34.813397px;}
.hf{height:35.052500px;}
.h11{height:37.443686px;}
.hb{height:38.896243px;}
.hc{height:39.165235px;}
.h12{height:39.434227px;}
.hd{height:43.217759px;}
.he{height:43.516637px;}
.h6{height:43.815515px;}
.h4{height:50.930649px;}
.h8{height:54.541601px;}
.h7{height:77.792486px;}
.h5{height:94.491000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:174.085494px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:52.525500px;}
.x1{left:53.574000px;}
.x2{left:58.555600px;}
.x68{left:85.848000px;}
.x67{left:88.375500px;}
.x45{left:99.939000px;}
.x46{left:108.943500px;}
.x43{left:110.355000px;}
.x44{left:112.096500px;}
.x64{left:121.021500px;}
.x63{left:122.434500px;}
.x6d{left:238.488000px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x60{left:261.591000px;}
.x5{left:269.920500px;}
.x9{left:281.479500px;}
.x61{left:290.079000px;}
.x38{left:294.177000px;}
.x5e{left:298.935000px;}
.x21{left:301.701000px;}
.x62{left:305.022000px;}
.x7{left:308.161500px;}
.x66{left:312.762000px;}
.x5c{left:313.984500px;}
.x22{left:316.645500px;}
.x8{left:318.954000px;}
.x5f{left:320.992500px;}
.x5d{left:322.405500px;}
.x27{left:324.963000px;}
.x28{left:339.906000px;}
.x36{left:342.376500px;}
.x5a{left:356.013000px;}
.x37{left:357.319500px;}
.x2d{left:362.862000px;}
.x10{left:376.332000px;}
.x2e{left:377.805000px;}
.x54{left:379.537500px;}
.x11{left:383.803500px;}
.x65{left:391.183500px;}
.x55{left:392.865000px;}
.x1d{left:396.555000px;}
.x1e{left:411.498000px;}
.x23{left:426.825000px;}
.x24{left:441.769500px;}
.x40{left:453.594000px;}
.x39{left:464.925000px;}
.x41{left:468.538500px;}
.x13{left:477.799500px;}
.x3a{left:479.868000px;}
.x14{left:485.271000px;}
.x31{left:487.300500px;}
.x32{left:502.245000px;}
.xa{left:515.793000px;}
.x47{left:519.460500px;}
.xb{left:523.264500px;}
.x12{left:530.358000px;}
.x48{left:534.403500px;}
.x29{left:537.255000px;}
.x17{left:542.349000px;}
.x2a{left:552.199500px;}
.x18{left:557.293500px;}
.x35{left:567.790500px;}
.x1b{left:575.962500px;}
.x58{left:587.502000px;}
.x1c{left:590.907000px;}
.x33{left:594.513000px;}
.x50{left:598.677000px;}
.x59{left:601.246500px;}
.x42{left:606.784500px;}
.x52{left:608.160000px;}
.x34{left:609.457500px;}
.x51{left:612.853500px;}
.x53{left:628.285500px;}
.x3e{left:633.138000px;}
.x3f{left:648.081000px;}
.x49{left:656.500500px;}
.x4a{left:671.443500px;}
.x19{left:678.373500px;}
.x1a{left:693.316500px;}
.x3b{left:697.009500px;}
.xe{left:698.086500px;}
.xc{left:699.934500px;}
.xf{left:705.558000px;}
.xd{left:707.407500px;}
.x3c{left:711.952500px;}
.x4b{left:715.558500px;}
.x5b{left:720.274500px;}
.x2b{left:728.880000px;}
.x1f{left:730.801500px;}
.x56{left:738.675000px;}
.x2c{left:743.824500px;}
.x20{left:745.746000px;}
.x3d{left:747.309000px;}
.x57{left:757.659000px;}
.x30{left:761.424000px;}
.x4c{left:767.449500px;}
.x4d{left:782.394000px;}
.x6c{left:784.264500px;}
.x4e{left:787.513500px;}
.x4f{left:805.552500px;}
.x69{left:809.665500px;}
.x6a{left:810.937500px;}
.x25{left:817.116000px;}
.x2f{left:818.983500px;}
.x15{left:826.495500px;}
.x26{left:832.060500px;}
.x16{left:833.967000px;}
.x6b{left:837.837000px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v3{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.004267pt;}
.lsf{letter-spacing:4.303872pt;}
.lse{letter-spacing:4.782080pt;}
.ls0{letter-spacing:9.298933pt;}
.ls5{letter-spacing:10.631867pt;}
.ls12{letter-spacing:11.954133pt;}
.ls13{letter-spacing:11.959467pt;}
.ls14{letter-spacing:11.977933pt;}
.ls4{letter-spacing:12.061388pt;}
.ls11{letter-spacing:12.170290pt;}
.ls7{letter-spacing:12.964663pt;}
.lsd{letter-spacing:13.124065pt;}
.ls10{letter-spacing:13.230333pt;}
.lsa{letter-spacing:13.442868pt;}
.ls9{letter-spacing:13.496002pt;}
.ls8{letter-spacing:15.249420pt;}
.lsb{letter-spacing:16.152695pt;}
.lsc{letter-spacing:16.312097pt;}
.ls1{letter-spacing:50.331733pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ws71{word-spacing:-13.283467pt;}
.wsbb{word-spacing:-11.955200pt;}
.ws2c{word-spacing:-10.626800pt;}
.wsd{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws5d{word-spacing:-2.709827pt;}
.ws77{word-spacing:-2.497292pt;}
.ws3b{word-spacing:-1.965953pt;}
.ws4f{word-spacing:-1.859685pt;}
.ws52{word-spacing:-1.753418pt;}
.wsca{word-spacing:-1.673728pt;}
.ws7e{word-spacing:-1.594016pt;}
.ws61{word-spacing:-1.540882pt;}
.ws81{word-spacing:-1.487748pt;}
.ws6d{word-spacing:-1.434614pt;}
.ws38{word-spacing:-1.328347pt;}
.ws22{word-spacing:-1.222079pt;}
.ws39{word-spacing:-1.168945pt;}
.wse2{word-spacing:-1.147699pt;}
.wse1{word-spacing:-1.133513pt;}
.wsb7{word-spacing:-1.099878pt;}
.ws5c{word-spacing:-1.062677pt;}
.wsc{word-spacing:-1.009543pt;}
.ws47{word-spacing:-0.956410pt;}
.ws1{word-spacing:-0.929840pt;}
.ws83{word-spacing:-0.903276pt;}
.ws75{word-spacing:-0.850142pt;}
.wsf{word-spacing:-0.807637pt;}
.ws9a{word-spacing:-0.743874pt;}
.ws1a{word-spacing:-0.717312pt;}
.ws8e{word-spacing:-0.690740pt;}
.ws95{word-spacing:-0.637606pt;}
.wsd9{word-spacing:-0.621670pt;}
.ws0{word-spacing:-0.615519pt;}
.wsb2{word-spacing:-0.584473pt;}
.wsd8{word-spacing:-0.573850pt;}
.ws76{word-spacing:-0.425071pt;}
.ws3c{word-spacing:-0.371937pt;}
.ws31{word-spacing:-0.318803pt;}
.wsdf{word-spacing:-0.286925pt;}
.ws5f{word-spacing:-0.265669pt;}
.ws14{word-spacing:-0.239104pt;}
.ws1d{word-spacing:-0.212535pt;}
.ws15{word-spacing:-0.191283pt;}
.ws42{word-spacing:-0.159402pt;}
.wsae{word-spacing:-0.146730pt;}
.wsc6{word-spacing:-0.143462pt;}
.ws1c{word-spacing:-0.106268pt;}
.ws17{word-spacing:-0.095642pt;}
.ws8c{word-spacing:-0.059834pt;}
.ws20{word-spacing:-0.053134pt;}
.wsa2{word-spacing:-0.047821pt;}
.wsce{word-spacing:-0.005018pt;}
.wsd5{word-spacing:-0.004463pt;}
.wsb0{word-spacing:-0.003456pt;}
.wsde{word-spacing:-0.003430pt;}
.wsc4{word-spacing:-0.002551pt;}
.ws2b{word-spacing:-0.002540pt;}
.wsb1{word-spacing:-0.002509pt;}
.wsc5{word-spacing:-0.002227pt;}
.wsc0{word-spacing:-0.000905pt;}
.wsd1{word-spacing:-0.000196pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:0.000450pt;}
.wscd{word-spacing:0.047821pt;}
.ws21{word-spacing:0.053134pt;}
.ws11{word-spacing:0.095642pt;}
.ws2f{word-spacing:0.106268pt;}
.wsad{word-spacing:0.140302pt;}
.wsb9{word-spacing:0.143462pt;}
.ws1f{word-spacing:0.159402pt;}
.ws99{word-spacing:0.166848pt;}
.wsbe{word-spacing:0.191283pt;}
.wsaf{word-spacing:0.202761pt;}
.ws24{word-spacing:0.212535pt;}
.wsc3{word-spacing:0.239104pt;}
.ws70{word-spacing:0.246004pt;}
.ws23{word-spacing:0.265669pt;}
.ws72{word-spacing:0.267314pt;}
.wsd6{word-spacing:0.286925pt;}
.ws40{word-spacing:0.318803pt;}
.wsb5{word-spacing:0.334746pt;}
.ws28{word-spacing:0.425071pt;}
.ws33{word-spacing:0.478205pt;}
.ws54{word-spacing:0.531339pt;}
.wsb4{word-spacing:0.573850pt;}
.ws64{word-spacing:0.584473pt;}
.ws2e{word-spacing:0.637606pt;}
.wsbf{word-spacing:0.669491pt;}
.ws4c{word-spacing:0.690740pt;}
.wsc9{word-spacing:0.717312pt;}
.ws4e{word-spacing:0.743874pt;}
.ws6e{word-spacing:0.797008pt;}
.ws73{word-spacing:0.850142pt;}
.ws74{word-spacing:0.863600pt;}
.wsa5{word-spacing:0.903276pt;}
.wsd3{word-spacing:0.908595pt;}
.ws30{word-spacing:0.956410pt;}
.wscc{word-spacing:1.004237pt;}
.ws8f{word-spacing:1.009543pt;}
.ws2d{word-spacing:1.115811pt;}
.wsa6{word-spacing:1.134601pt;}
.ws32{word-spacing:1.168945pt;}
.wsa7{word-spacing:1.222079pt;}
.ws7b{word-spacing:1.275213pt;}
.wsc2{word-spacing:1.291162pt;}
.ws3f{word-spacing:1.328347pt;}
.wsd4{word-spacing:1.338982pt;}
.ws67{word-spacing:1.381481pt;}
.ws62{word-spacing:1.434614pt;}
.ws44{word-spacing:1.487748pt;}
.ws50{word-spacing:1.540882pt;}
.wsc1{word-spacing:1.625907pt;}
.ws12{word-spacing:1.673728pt;}
.ws84{word-spacing:1.700284pt;}
.ws5b{word-spacing:1.753418pt;}
.ws86{word-spacing:1.806551pt;}
.ws66{word-spacing:1.859685pt;}
.ws90{word-spacing:1.912819pt;}
.ws46{word-spacing:1.965953pt;}
.ws13{word-spacing:2.008474pt;}
.ws96{word-spacing:2.019087pt;}
.ws35{word-spacing:2.072221pt;}
.ws7a{word-spacing:2.125355pt;}
.ws19{word-spacing:2.151936pt;}
.ws93{word-spacing:2.231622pt;}
.ws25{word-spacing:2.337890pt;}
.ws68{word-spacing:2.391024pt;}
.ws51{word-spacing:2.444158pt;}
.ws9c{word-spacing:2.497292pt;}
.ws10{word-spacing:2.550432pt;}
.ws5a{word-spacing:2.603559pt;}
.wsd7{word-spacing:2.630144pt;}
.ws4d{word-spacing:2.656693pt;}
.wsc7{word-spacing:2.773606pt;}
.ws65{word-spacing:2.816095pt;}
.wsdb{word-spacing:2.860919pt;}
.wsc8{word-spacing:2.865033pt;}
.wsdd{word-spacing:2.865698pt;}
.wsd2{word-spacing:2.866739pt;}
.ws69{word-spacing:2.869229pt;}
.wsbc{word-spacing:2.869248pt;}
.wscb{word-spacing:2.869871pt;}
.ws27{word-spacing:2.922363pt;}
.ws3a{word-spacing:2.975497pt;}
.ws18{word-spacing:3.012710pt;}
.ws16{word-spacing:3.060531pt;}
.ws6c{word-spacing:3.081764pt;}
.ws4a{word-spacing:3.134898pt;}
.ws91{word-spacing:3.159645pt;}
.ws1b{word-spacing:3.188032pt;}
.wsda{word-spacing:3.203994pt;}
.ws92{word-spacing:3.294300pt;}
.wsb3{word-spacing:3.347434pt;}
.wsb6{word-spacing:3.395277pt;}
.ws8d{word-spacing:3.400567pt;}
.ws63{word-spacing:3.506835pt;}
.ws43{word-spacing:3.613103pt;}
.ws41{word-spacing:3.666237pt;}
.wsba{word-spacing:3.682202pt;}
.ws58{word-spacing:3.719371pt;}
.wse4{word-spacing:3.777843pt;}
.ws26{word-spacing:3.825638pt;}
.ws7d{word-spacing:3.878772pt;}
.ws53{word-spacing:3.931906pt;}
.ws87{word-spacing:3.957297pt;}
.ws2a{word-spacing:3.985040pt;}
.ws3d{word-spacing:4.091308pt;}
.wse3{word-spacing:4.112589pt;}
.ws7c{word-spacing:4.144442pt;}
.wsa{word-spacing:4.240070pt;}
.ws29{word-spacing:4.250709pt;}
.wsb{word-spacing:4.314458pt;}
.ws85{word-spacing:4.356977pt;}
.ws6b{word-spacing:4.516379pt;}
.wse0{word-spacing:4.686438pt;}
.ws59{word-spacing:4.728914pt;}
.ws8a{word-spacing:4.782048pt;}
.ws34{word-spacing:4.835182pt;}
.ws48{word-spacing:4.888316pt;}
.ws3e{word-spacing:4.941450pt;}
.wscf{word-spacing:4.973363pt;}
.ws5e{word-spacing:5.047717pt;}
.ws45{word-spacing:5.153985pt;}
.ws6f{word-spacing:5.207119pt;}
.ws94{word-spacing:5.419654pt;}
.ws4b{word-spacing:5.472788pt;}
.ws8b{word-spacing:5.525922pt;}
.wsb8{word-spacing:5.595034pt;}
.ws82{word-spacing:5.685324pt;}
.ws7f{word-spacing:5.791591pt;}
.ws80{word-spacing:5.844725pt;}
.ws37{word-spacing:5.897859pt;}
.ws78{word-spacing:6.004127pt;}
.ws98{word-spacing:6.025421pt;}
.ws49{word-spacing:6.163529pt;}
.ws97{word-spacing:6.360166pt;}
.ws88{word-spacing:6.429198pt;}
.ws57{word-spacing:6.482332pt;}
.wsdc{word-spacing:6.503629pt;}
.ws56{word-spacing:6.535466pt;}
.ws6a{word-spacing:6.641733pt;}
.wsac{word-spacing:6.647091pt;}
.wsab{word-spacing:6.742733pt;}
.wsa1{word-spacing:6.790554pt;}
.ws8{word-spacing:6.918010pt;}
.ws9e{word-spacing:6.981837pt;}
.ws89{word-spacing:7.013670pt;}
.ws55{word-spacing:7.119938pt;}
.wsa4{word-spacing:7.125299pt;}
.ws9b{word-spacing:7.226206pt;}
.ws36{word-spacing:7.279340pt;}
.ws60{word-spacing:7.385607pt;}
.ws79{word-spacing:7.545009pt;}
.wsd0{word-spacing:7.555686pt;}
.wsa0{word-spacing:7.746970pt;}
.ws1e{word-spacing:7.810678pt;}
.ws6{word-spacing:10.823338pt;}
.ws7{word-spacing:14.319536pt;}
.wsbd{word-spacing:14.394061pt;}
.ws9{word-spacing:23.208806pt;}
.ws5{word-spacing:23.858002pt;}
.ws9f{word-spacing:25.536307pt;}
.wsa3{word-spacing:26.970931pt;}
.wsaa{word-spacing:28.166451pt;}
.wsa9{word-spacing:35.100467pt;}
.wsa8{word-spacing:36.343808pt;}
.wse{word-spacing:40.238656pt;}
.ws9d{word-spacing:529.232794pt;}
._5{margin-left:-10.616218pt;}
._6{margin-left:-7.332483pt;}
._b{margin-left:-5.929670pt;}
._15{margin-left:-4.888306pt;}
._0{margin-left:-3.979715pt;}
._a{margin-left:-2.199778pt;}
._1{margin-left:-1.115808pt;}
._7{width:1.315737pt;}
._41{width:2.917301pt;}
._34{width:3.825638pt;}
._3e{width:5.494322pt;}
._42{width:6.798706pt;}
._40{width:8.459289pt;}
._3f{width:9.881837pt;}
._3{width:11.530016pt;}
._12{width:13.175632pt;}
._c{width:14.771474pt;}
._33{width:15.674491pt;}
._e{width:16.684031pt;}
._f{width:18.272725pt;}
._16{width:19.553260pt;}
._9{width:20.584069pt;}
._18{width:21.519216pt;}
._2{width:23.057899pt;}
._d{width:24.595821pt;}
._10{width:25.663658pt;}
._4{width:27.188522pt;}
._11{width:29.563716pt;}
._32{width:31.561517pt;}
._17{width:33.899404pt;}
._3d{width:35.148288pt;}
._19{width:36.396699pt;}
._1a{width:37.674130pt;}
._8{width:47.581897pt;}
._4b{width:54.993920pt;}
._4a{width:78.904320pt;}
._35{width:83.154501pt;}
._2d{width:144.179712pt;}
._43{width:183.392768pt;}
._1e{width:200.943002pt;}
._28{width:203.684738pt;}
._20{width:214.348776pt;}
._24{width:215.687758pt;}
._23{width:234.465382pt;}
._1f{width:236.043469pt;}
._27{width:239.104000pt;}
._2a{width:249.815859pt;}
._31{width:261.818880pt;}
._48{width:263.588250pt;}
._2b{width:268.418150pt;}
._22{width:274.204467pt;}
._2c{width:275.368117pt;}
._1d{width:277.647565pt;}
._45{width:278.986547pt;}
._26{width:280.182067pt;}
._29{width:284.294656pt;}
._49{width:287.211725pt;}
._46{width:293.619712pt;}
._21{width:312.891494pt;}
._47{width:315.378176pt;}
._30{width:317.482291pt;}
._25{width:320.160256pt;}
._38{width:357.077914pt;}
._2f{width:412.071834pt;}
._2e{width:415.658394pt;}
._1c{width:436.077875pt;}
._37{width:442.103296pt;}
._1b{width:459.940454pt;}
._3b{width:480.694682pt;}
._39{width:514.360525pt;}
._44{width:564.811469pt;}
._3c{width:592.499712pt;}
._3a{width:610.480333pt;}
._13{width:912.544570pt;}
._36{width:2251.922400pt;}
._14{width:2273.175733pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:14.236308pt;}
.y44{bottom:28.346667pt;}
.y6b{bottom:81.480000pt;}
.y140{bottom:86.568000pt;}
.y20e{bottom:92.892000pt;}
.y15{bottom:93.018667pt;}
.y1d6{bottom:96.600000pt;}
.y6a{bottom:98.217333pt;}
.y10b{bottom:100.720000pt;}
.yfe{bottom:101.416000pt;}
.y13f{bottom:103.305333pt;}
.y184{bottom:105.688000pt;}
.y161{bottom:107.290667pt;}
.y20d{bottom:108.233333pt;}
.y14{bottom:108.920000pt;}
.y43{bottom:110.896000pt;}
.y9c{bottom:111.621333pt;}
.y1d5{bottom:111.942667pt;}
.yaf{bottom:112.020000pt;}
.y69{bottom:114.954667pt;}
.yfd{bottom:118.153333pt;}
.y13e{bottom:120.042667pt;}
.y183{bottom:122.425333pt;}
.y20c{bottom:123.576000pt;}
.y160{bottom:124.028000pt;}
.y13{bottom:124.820000pt;}
.y1d4{bottom:127.285333pt;}
.y42{bottom:127.632000pt;}
.y9b{bottom:128.358667pt;}
.yae{bottom:128.757333pt;}
.y68{bottom:131.692000pt;}
.y13d{bottom:136.780000pt;}
.yfc{bottom:138.876000pt;}
.y20b{bottom:138.918667pt;}
.y182{bottom:139.162667pt;}
.y12{bottom:140.720000pt;}
.y15f{bottom:140.765333pt;}
.y1d2{bottom:142.628000pt;}
.y1ad{bottom:143.918667pt;}
.y41{bottom:144.369333pt;}
.y9a{bottom:145.096000pt;}
.yad{bottom:145.494667pt;}
.y1d3{bottom:145.496000pt;}
.y67{bottom:148.429333pt;}
.y13c{bottom:153.517333pt;}
.y20a{bottom:154.261333pt;}
.y181{bottom:155.900000pt;}
.y11{bottom:156.621333pt;}
.y15e{bottom:157.502667pt;}
.y40{bottom:161.106667pt;}
.y99{bottom:161.833333pt;}
.y1d1{bottom:161.954667pt;}
.yac{bottom:162.232000pt;}
.y66{bottom:165.166667pt;}
.yfb{bottom:168.764000pt;}
.y209{bottom:169.604000pt;}
.y13b{bottom:170.254667pt;}
.y10{bottom:172.521333pt;}
.y180{bottom:172.637333pt;}
.y15d{bottom:174.240000pt;}
.y3f{bottom:177.844000pt;}
.y98{bottom:178.570667pt;}
.yab{bottom:178.969333pt;}
.y65{bottom:181.904000pt;}
.ydf{bottom:184.510667pt;}
.y208{bottom:184.946667pt;}
.yfa{bottom:185.501333pt;}
.y13a{bottom:186.992000pt;}
.yf{bottom:188.421333pt;}
.y17f{bottom:189.374667pt;}
.y15c{bottom:190.977333pt;}
.y1d0{bottom:191.842667pt;}
.y3e{bottom:194.581333pt;}
.y97{bottom:195.308000pt;}
.yaa{bottom:195.706667pt;}
.y64{bottom:198.641333pt;}
.y207{bottom:200.289333pt;}
.yde{bottom:201.248000pt;}
.yf9{bottom:202.238667pt;}
.ye{bottom:204.322667pt;}
.y17e{bottom:206.112000pt;}
.y139{bottom:207.714667pt;}
.y3d{bottom:211.318667pt;}
.y96{bottom:212.045333pt;}
.ya9{bottom:212.444000pt;}
.y63{bottom:215.378667pt;}
.y1cf{bottom:215.434667pt;}
.y206{bottom:215.632000pt;}
.ydd{bottom:217.985333pt;}
.yf8{bottom:218.976000pt;}
.y17d{bottom:222.849333pt;}
.y15b{bottom:224.452000pt;}
.y3c{bottom:228.056000pt;}
.y95{bottom:228.782667pt;}
.ya8{bottom:229.181333pt;}
.y205{bottom:230.974667pt;}
.y1ce{bottom:231.056000pt;}
.y62{bottom:232.116000pt;}
.ydc{bottom:234.722667pt;}
.yf7{bottom:235.713333pt;}
.y138{bottom:235.782667pt;}
.y17c{bottom:239.586667pt;}
.y15a{bottom:241.189333pt;}
.y3b{bottom:244.793333pt;}
.y94{bottom:245.520000pt;}
.ya7{bottom:245.918667pt;}
.y204{bottom:246.316000pt;}
.y61{bottom:248.853333pt;}
.ydb{bottom:251.460000pt;}
.yf6{bottom:252.450667pt;}
.y137{bottom:252.520000pt;}
.y1cd{bottom:254.648000pt;}
.y1ac{bottom:255.338667pt;}
.y17b{bottom:256.324000pt;}
.y159{bottom:257.926667pt;}
.y3a{bottom:261.530667pt;}
.y203{bottom:261.658667pt;}
.yc7{bottom:262.257333pt;}
.ya6{bottom:262.656000pt;}
.y60{bottom:265.590667pt;}
.yd{bottom:265.668000pt;}
.y93{bottom:266.242667pt;}
.yda{bottom:268.197333pt;}
.yf5{bottom:269.188000pt;}
.y136{bottom:269.257333pt;}
.y1ab{bottom:272.076000pt;}
.y158{bottom:274.664000pt;}
.y202{bottom:277.001333pt;}
.y17a{bottom:277.046667pt;}
.y1cc{bottom:278.238667pt;}
.y39{bottom:278.268000pt;}
.yc6{bottom:278.994667pt;}
.ya5{bottom:279.393333pt;}
.yc{bottom:281.568000pt;}
.y5f{bottom:282.328000pt;}
.yd9{bottom:284.934667pt;}
.yf4{bottom:285.925333pt;}
.y135{bottom:285.994667pt;}
.y1aa{bottom:288.813333pt;}
.y157{bottom:291.401333pt;}
.y201{bottom:292.344000pt;}
.y38{bottom:295.005333pt;}
.yc5{bottom:295.732000pt;}
.y92{bottom:296.129333pt;}
.yb{bottom:297.469333pt;}
.y5e{bottom:299.065333pt;}
.yd8{bottom:301.670667pt;}
.y1cb{bottom:301.830667pt;}
.yf3{bottom:302.662667pt;}
.y1a9{bottom:305.550667pt;}
.y134{bottom:306.717333pt;}
.y200{bottom:307.686667pt;}
.y156{bottom:308.138667pt;}
.y37{bottom:311.742667pt;}
.yc4{bottom:312.469333pt;}
.y91{bottom:312.866667pt;}
.ya{bottom:313.369333pt;}
.y179{bottom:314.666667pt;}
.y5d{bottom:315.802667pt;}
.yd7{bottom:318.408000pt;}
.yf2{bottom:319.400000pt;}
.y1a8{bottom:322.288000pt;}
.y1ff{bottom:323.029333pt;}
.y133{bottom:323.454667pt;}
.y155{bottom:324.876000pt;}
.y1ca{bottom:325.422667pt;}
.y36{bottom:328.480000pt;}
.yc3{bottom:329.206667pt;}
.y178{bottom:329.278667pt;}
.y90{bottom:329.604000pt;}
.y5c{bottom:332.540000pt;}
.yd6{bottom:335.145333pt;}
.yf1{bottom:336.137333pt;}
.y1fe{bottom:338.372000pt;}
.y9{bottom:338.568000pt;}
.y1a7{bottom:339.025333pt;}
.y132{bottom:340.192000pt;}
.y1c9{bottom:341.044000pt;}
.y154{bottom:341.613333pt;}
.y177{bottom:343.890667pt;}
.y35{bottom:345.217333pt;}
.y10a{bottom:345.944000pt;}
.y8f{bottom:346.341333pt;}
.y5b{bottom:349.277333pt;}
.yc2{bottom:349.928000pt;}
.yd5{bottom:351.882667pt;}
.yf0{bottom:352.874667pt;}
.y1fd{bottom:353.714667pt;}
.y1a6{bottom:355.762667pt;}
.y1c8{bottom:356.665333pt;}
.y131{bottom:356.929333pt;}
.y153{bottom:358.350667pt;}
.y34{bottom:361.954667pt;}
.y8{bottom:362.438667pt;}
.y109{bottom:362.680000pt;}
.ya4{bottom:363.078667pt;}
.y176{bottom:365.170667pt;}
.y5a{bottom:366.014667pt;}
.y8e{bottom:367.064000pt;}
.yd4{bottom:368.620000pt;}
.y1fc{bottom:369.056000pt;}
.yef{bottom:369.612000pt;}
.y130{bottom:373.666667pt;}
.y152{bottom:375.088000pt;}
.y7{bottom:378.338667pt;}
.y33{bottom:378.692000pt;}
.y108{bottom:379.417333pt;}
.ya3{bottom:379.816000pt;}
.y1c7{bottom:380.257333pt;}
.y59{bottom:382.752000pt;}
.y1fb{bottom:384.398667pt;}
.yd3{bottom:385.357333pt;}
.yee{bottom:386.349333pt;}
.y12f{bottom:390.404000pt;}
.y151{bottom:391.825333pt;}
.y175{bottom:393.277333pt;}
.y6{bottom:394.240000pt;}
.y1a5{bottom:394.826667pt;}
.y32{bottom:395.429333pt;}
.y1c6{bottom:395.878667pt;}
.y107{bottom:396.154667pt;}
.ya2{bottom:396.553333pt;}
.y8d{bottom:396.952000pt;}
.y58{bottom:399.489333pt;}
.y1fa{bottom:399.741333pt;}
.yd2{bottom:402.094667pt;}
.yed{bottom:403.086667pt;}
.y12e{bottom:407.141333pt;}
.y150{bottom:408.562667pt;}
.y5{bottom:410.140000pt;}
.y1a4{bottom:410.169333pt;}
.y1c5{bottom:411.500000pt;}
.y31{bottom:412.166667pt;}
.y106{bottom:412.892000pt;}
.ya1{bottom:413.290667pt;}
.y8c{bottom:413.689333pt;}
.y1f9{bottom:415.084000pt;}
.y57{bottom:416.226667pt;}
.yd1{bottom:418.832000pt;}
.yec{bottom:419.824000pt;}
.y12d{bottom:423.877333pt;}
.y14f{bottom:425.300000pt;}
.y1a3{bottom:425.512000pt;}
.y4{bottom:426.040000pt;}
.y174{bottom:426.258667pt;}
.y1c4{bottom:427.121333pt;}
.y30{bottom:428.904000pt;}
.y211{bottom:429.032000pt;}
.y105{bottom:429.629333pt;}
.ya0{bottom:430.028000pt;}
.y8b{bottom:430.426667pt;}
.y56{bottom:432.964000pt;}
.yd0{bottom:435.569333pt;}
.yeb{bottom:436.560000pt;}
.y12b{bottom:440.614667pt;}
.y1a2{bottom:440.854667pt;}
.y3{bottom:441.941333pt;}
.y173{bottom:442.996000pt;}
.y210{bottom:444.374667pt;}
.y12c{bottom:445.437333pt;}
.y1f8{bottom:445.769333pt;}
.y14e{bottom:446.021333pt;}
.y104{bottom:446.366667pt;}
.y9f{bottom:446.765333pt;}
.y8a{bottom:447.164000pt;}
.y2f{bottom:449.626667pt;}
.y55{bottom:449.701333pt;}
.yea{bottom:453.297333pt;}
.y1a1{bottom:456.197333pt;}
.y12a{bottom:457.352000pt;}
.y2{bottom:457.841333pt;}
.y1c3{bottom:458.682667pt;}
.y20f{bottom:459.717333pt;}
.y172{bottom:459.733333pt;}
.y1f7{bottom:461.112000pt;}
.y103{bottom:463.104000pt;}
.y9e{bottom:463.502667pt;}
.y89{bottom:463.901333pt;}
.y54{bottom:466.438667pt;}
.ye9{bottom:470.034667pt;}
.y1a0{bottom:471.540000pt;}
.y1{bottom:473.741333pt;}
.y129{bottom:474.089333pt;}
.ycf{bottom:474.652000pt;}
.y1c2{bottom:475.420000pt;}
.y1f6{bottom:476.454667pt;}
.y171{bottom:476.470667pt;}
.y102{bottom:479.841333pt;}
.yc1{bottom:480.240000pt;}
.y88{bottom:480.638667pt;}
.y9d{bottom:484.225333pt;}
.ye8{bottom:486.772000pt;}
.y53{bottom:487.160000pt;}
.yce{bottom:489.264000pt;}
.y128{bottom:490.826667pt;}
.y1f5{bottom:491.797333pt;}
.y1c1{bottom:492.157333pt;}
.y170{bottom:493.208000pt;}
.y19f{bottom:496.094667pt;}
.y101{bottom:496.578667pt;}
.yc0{bottom:496.977333pt;}
.y87{bottom:497.376000pt;}
.ye7{bottom:503.509333pt;}
.ycd{bottom:503.876000pt;}
.y1f4{bottom:507.138667pt;}
.y127{bottom:507.564000pt;}
.y1c0{bottom:508.894667pt;}
.y16f{bottom:509.944000pt;}
.y2e{bottom:513.312000pt;}
.ybf{bottom:513.714667pt;}
.y86{bottom:514.113333pt;}
.y52{bottom:517.048000pt;}
.y100{bottom:517.301333pt;}
.ycc{bottom:518.488000pt;}
.ye6{bottom:520.246667pt;}
.y1f3{bottom:522.481333pt;}
.y126{bottom:524.301333pt;}
.y1bf{bottom:525.632000pt;}
.y19e{bottom:525.678667pt;}
.y16e{bottom:526.681333pt;}
.ybe{bottom:530.452000pt;}
.y2d{bottom:530.606667pt;}
.y85{bottom:530.850667pt;}
.ycb{bottom:533.100000pt;}
.y51{bottom:533.785333pt;}
.y1f2{bottom:537.824000pt;}
.ye5{bottom:540.969333pt;}
.y125{bottom:541.038667pt;}
.y1be{bottom:542.369333pt;}
.y19d{bottom:542.416000pt;}
.y16d{bottom:543.418667pt;}
.ybd{bottom:547.189333pt;}
.y84{bottom:547.588000pt;}
.y50{bottom:550.522667pt;}
.y1f1{bottom:553.166667pt;}
.yca{bottom:554.378667pt;}
.y124{bottom:557.776000pt;}
.y1bd{bottom:559.106667pt;}
.y19c{bottom:559.153333pt;}
.y16c{bottom:560.156000pt;}
.y14d{bottom:561.761333pt;}
.y2c{bottom:563.842667pt;}
.ybc{bottom:563.926667pt;}
.y83{bottom:564.325333pt;}
.y4f{bottom:567.260000pt;}
.y1f0{bottom:568.509333pt;}
.ye4{bottom:570.857333pt;}
.y1bc{bottom:575.844000pt;}
.y19b{bottom:575.890667pt;}
.y16b{bottom:576.893333pt;}
.y123{bottom:578.498667pt;}
.ybb{bottom:580.664000pt;}
.y82{bottom:581.062667pt;}
.y2b{bottom:581.137333pt;}
.y1ef{bottom:583.852000pt;}
.y4e{bottom:583.997333pt;}
.yc9{bottom:585.141333pt;}
.ye3{bottom:587.594667pt;}
.y1bb{bottom:592.581333pt;}
.y19a{bottom:592.628000pt;}
.y16a{bottom:593.630667pt;}
.y14c{bottom:595.236000pt;}
.yba{bottom:597.401333pt;}
.y81{bottom:597.800000pt;}
.y2a{bottom:598.433333pt;}
.y1ee{bottom:599.194667pt;}
.y4d{bottom:600.734667pt;}
.ye2{bottom:604.332000pt;}
.y122{bottom:606.566667pt;}
.y1ba{bottom:609.318667pt;}
.y199{bottom:609.365333pt;}
.y169{bottom:610.368000pt;}
.y14b{bottom:611.973333pt;}
.yb9{bottom:614.138667pt;}
.y80{bottom:614.537333pt;}
.y29{bottom:615.728000pt;}
.y4c{bottom:617.472000pt;}
.y121{bottom:623.304000pt;}
.ye1{bottom:625.054667pt;}
.y1b9{bottom:626.056000pt;}
.y198{bottom:626.102667pt;}
.y168{bottom:627.105333pt;}
.y14a{bottom:628.710667pt;}
.y1ed{bottom:629.878667pt;}
.yb8{bottom:630.876000pt;}
.y7f{bottom:631.274667pt;}
.y28{bottom:633.022667pt;}
.y4b{bottom:634.209333pt;}
.y120{bottom:640.041333pt;}
.y1b8{bottom:642.793333pt;}
.y197{bottom:642.840000pt;}
.y167{bottom:643.842667pt;}
.y1ec{bottom:645.221333pt;}
.y149{bottom:645.448000pt;}
.yb7{bottom:647.613333pt;}
.y7e{bottom:648.012000pt;}
.y27{bottom:650.318667pt;}
.y4a{bottom:650.946667pt;}
.yff{bottom:651.597333pt;}
.ye0{bottom:652.101333pt;}
.y11f{bottom:656.778667pt;}
.y1b7{bottom:659.530667pt;}
.y196{bottom:659.577333pt;}
.y1eb{bottom:660.564000pt;}
.y166{bottom:660.580000pt;}
.y148{bottom:662.185333pt;}
.yb6{bottom:664.350667pt;}
.y7d{bottom:664.749333pt;}
.y26{bottom:667.613333pt;}
.y49{bottom:667.684000pt;}
.y1ea{bottom:675.906667pt;}
.y1b6{bottom:676.268000pt;}
.y195{bottom:676.314667pt;}
.y165{bottom:677.317333pt;}
.y11e{bottom:677.501333pt;}
.y147{bottom:678.922667pt;}
.yb5{bottom:681.088000pt;}
.y7c{bottom:681.485333pt;}
.y25{bottom:684.908000pt;}
.y1e9{bottom:691.249333pt;}
.y1b5{bottom:693.005333pt;}
.y194{bottom:693.052000pt;}
.y11d{bottom:694.238667pt;}
.y146{bottom:695.660000pt;}
.y48{bottom:697.090667pt;}
.yb4{bottom:697.825333pt;}
.y164{bottom:698.040000pt;}
.y7b{bottom:698.222667pt;}
.y24{bottom:702.204000pt;}
.y1e8{bottom:706.592000pt;}
.y1b4{bottom:709.742667pt;}
.y193{bottom:709.789333pt;}
.y11c{bottom:710.976000pt;}
.y145{bottom:712.397333pt;}
.yb3{bottom:714.562667pt;}
.y7a{bottom:714.960000pt;}
.yc8{bottom:718.546667pt;}
.y23{bottom:719.498667pt;}
.y1e7{bottom:721.934667pt;}
.y163{bottom:725.086667pt;}
.y192{bottom:726.526667pt;}
.y11b{bottom:727.713333pt;}
.y144{bottom:729.134667pt;}
.y1b3{bottom:730.464000pt;}
.yb2{bottom:731.300000pt;}
.y79{bottom:731.697333pt;}
.y1e6{bottom:737.277333pt;}
.y162{bottom:742.182667pt;}
.y191{bottom:743.264000pt;}
.y11a{bottom:744.450667pt;}
.yb1{bottom:748.036000pt;}
.y78{bottom:748.434667pt;}
.y143{bottom:749.856000pt;}
.y1e5{bottom:752.620000pt;}
.y22{bottom:753.797333pt;}
.y190{bottom:760.001333pt;}
.y119{bottom:761.186667pt;}
.y77{bottom:765.172000pt;}
.y1e4{bottom:767.961333pt;}
.yb0{bottom:768.758667pt;}
.y1b2{bottom:770.742667pt;}
.y21{bottom:772.001333pt;}
.y18f{bottom:776.737333pt;}
.y118{bottom:777.924000pt;}
.y76{bottom:781.909333pt;}
.y1e3{bottom:783.304000pt;}
.y1b1{bottom:785.354667pt;}
.y20{bottom:786.346667pt;}
.y18e{bottom:793.474667pt;}
.y117{bottom:794.661333pt;}
.y75{bottom:798.646667pt;}
.y1b0{bottom:799.966667pt;}
.y1f{bottom:800.693333pt;}
.y18d{bottom:810.212000pt;}
.y1e{bottom:811.182667pt;}
.y116{bottom:811.398667pt;}
.y1e2{bottom:813.989333pt;}
.y74{bottom:815.384000pt;}
.y1af{bottom:821.245333pt;}
.y18c{bottom:826.949333pt;}
.y114{bottom:828.136000pt;}
.y1e1{bottom:829.332000pt;}
.y1d{bottom:829.385333pt;}
.y73{bottom:832.121333pt;}
.y115{bottom:832.958667pt;}
.y18b{bottom:843.686667pt;}
.y1e0{bottom:844.674667pt;}
.y113{bottom:844.873333pt;}
.y72{bottom:848.858667pt;}
.y1ae{bottom:852.008000pt;}
.y1df{bottom:860.017333pt;}
.y18a{bottom:860.424000pt;}
.y112{bottom:861.610667pt;}
.y71{bottom:865.596000pt;}
.y1c{bottom:869.098667pt;}
.y1de{bottom:875.360000pt;}
.y111{bottom:878.348000pt;}
.y70{bottom:882.333333pt;}
.y1b{bottom:885.836000pt;}
.y1dc{bottom:890.701333pt;}
.y1dd{bottom:890.702667pt;}
.y110{bottom:895.085333pt;}
.y189{bottom:896.832000pt;}
.y6f{bottom:899.070667pt;}
.y1db{bottom:906.044000pt;}
.y10f{bottom:911.822667pt;}
.y188{bottom:912.174667pt;}
.y6e{bottom:915.808000pt;}
.y1a{bottom:921.320000pt;}
.y1da{bottom:921.386667pt;}
.y187{bottom:927.517333pt;}
.y10e{bottom:928.560000pt;}
.y6d{bottom:932.545333pt;}
.y1d9{bottom:936.729333pt;}
.y186{bottom:942.860000pt;}
.y10d{bottom:945.297333pt;}
.y19{bottom:946.425333pt;}
.y6c{bottom:949.282667pt;}
.y1d8{bottom:952.072000pt;}
.y185{bottom:958.202667pt;}
.y10c{bottom:962.034667pt;}
.y47{bottom:966.020000pt;}
.y1d7{bottom:967.414667pt;}
.y142{bottom:970.841333pt;}
.y18{bottom:971.530667pt;}
.y46{bottom:982.757333pt;}
.y141{bottom:987.578667pt;}
.y16{bottom:1010.186667pt;}
.y45{bottom:1038.548000pt;}
.h9{height:23.209028pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h10{height:29.599908pt;}
.ha{height:30.945242pt;}
.hf{height:31.157778pt;}
.h11{height:33.283277pt;}
.hb{height:34.574438pt;}
.hc{height:34.813542pt;}
.h12{height:35.052646pt;}
.hd{height:38.415786pt;}
.he{height:38.681455pt;}
.h6{height:38.947124pt;}
.h4{height:45.271688pt;}
.h8{height:48.481423pt;}
.h7{height:69.148877pt;}
.h5{height:83.992000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:154.742661pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:46.689333pt;}
.x1{left:47.621333pt;}
.x2{left:52.049422pt;}
.x68{left:76.309333pt;}
.x67{left:78.556000pt;}
.x45{left:88.834667pt;}
.x46{left:96.838667pt;}
.x43{left:98.093333pt;}
.x44{left:99.641333pt;}
.x64{left:107.574667pt;}
.x63{left:108.830667pt;}
.x6d{left:211.989333pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x60{left:232.525333pt;}
.x5{left:239.929333pt;}
.x9{left:250.204000pt;}
.x61{left:257.848000pt;}
.x38{left:261.490667pt;}
.x5e{left:265.720000pt;}
.x21{left:268.178667pt;}
.x62{left:271.130667pt;}
.x7{left:273.921333pt;}
.x66{left:278.010667pt;}
.x5c{left:279.097333pt;}
.x22{left:281.462667pt;}
.x8{left:283.514667pt;}
.x5f{left:285.326667pt;}
.x5d{left:286.582667pt;}
.x27{left:288.856000pt;}
.x28{left:302.138667pt;}
.x36{left:304.334667pt;}
.x5a{left:316.456000pt;}
.x37{left:317.617333pt;}
.x2d{left:322.544000pt;}
.x10{left:334.517333pt;}
.x2e{left:335.826667pt;}
.x54{left:337.366667pt;}
.x11{left:341.158667pt;}
.x65{left:347.718667pt;}
.x55{left:349.213333pt;}
.x1d{left:352.493333pt;}
.x1e{left:365.776000pt;}
.x23{left:379.400000pt;}
.x24{left:392.684000pt;}
.x40{left:403.194667pt;}
.x39{left:413.266667pt;}
.x41{left:416.478667pt;}
.x13{left:424.710667pt;}
.x3a{left:426.549333pt;}
.x14{left:431.352000pt;}
.x31{left:433.156000pt;}
.x32{left:446.440000pt;}
.xa{left:458.482667pt;}
.x47{left:461.742667pt;}
.xb{left:465.124000pt;}
.x12{left:471.429333pt;}
.x48{left:475.025333pt;}
.x29{left:477.560000pt;}
.x17{left:482.088000pt;}
.x2a{left:490.844000pt;}
.x18{left:495.372000pt;}
.x35{left:504.702667pt;}
.x1b{left:511.966667pt;}
.x58{left:522.224000pt;}
.x1c{left:525.250667pt;}
.x33{left:528.456000pt;}
.x50{left:532.157333pt;}
.x59{left:534.441333pt;}
.x42{left:539.364000pt;}
.x52{left:540.586667pt;}
.x34{left:541.740000pt;}
.x51{left:544.758667pt;}
.x53{left:558.476000pt;}
.x3e{left:562.789333pt;}
.x3f{left:576.072000pt;}
.x49{left:583.556000pt;}
.x4a{left:596.838667pt;}
.x19{left:602.998667pt;}
.x1a{left:616.281333pt;}
.x3b{left:619.564000pt;}
.xe{left:620.521333pt;}
.xc{left:622.164000pt;}
.xf{left:627.162667pt;}
.xd{left:628.806667pt;}
.x3c{left:632.846667pt;}
.x4b{left:636.052000pt;}
.x5b{left:640.244000pt;}
.x2b{left:647.893333pt;}
.x1f{left:649.601333pt;}
.x56{left:656.600000pt;}
.x2c{left:661.177333pt;}
.x20{left:662.885333pt;}
.x3d{left:664.274667pt;}
.x57{left:673.474667pt;}
.x30{left:676.821333pt;}
.x4c{left:682.177333pt;}
.x4d{left:695.461333pt;}
.x6c{left:697.124000pt;}
.x4e{left:700.012000pt;}
.x4f{left:716.046667pt;}
.x69{left:719.702667pt;}
.x6a{left:720.833333pt;}
.x25{left:726.325333pt;}
.x2f{left:727.985333pt;}
.x15{left:734.662667pt;}
.x26{left:739.609333pt;}
.x16{left:741.304000pt;}
.x6b{left:744.744000pt;}
}




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