
    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_97e66ca0f90fa7361c1add35.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_ea572f617af82ccebe3c9df1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8419463d46fbc56f16739af4.woff')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;}
.m10{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);}
.m1f{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);}
.mb{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);}
.m23{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);}
.m1{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);}
.md{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);}
.mc{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m11{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);}
.m25{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);}
.mf{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);}
.m1d{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);}
.me{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);}
.m1c{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);}
.m19{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);}
.m2{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);}
.m9{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);}
.m5{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);}
.m1b{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);}
.m7{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m18{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);}
.m4{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m6{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);}
.m29{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);}
.m14{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);}
.ma{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);}
.m28{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);}
.m1a{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);}
.m20{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);}
.m13{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);}
.m15{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);}
.m1e{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);}
.m8{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);}
.m12{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:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.912000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:32.874000px;}
.ls7{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000604px;}
.ls18{letter-spacing:0.000800px;}
.ls11{letter-spacing:0.004800px;}
.ls3{letter-spacing:2.983200px;}
.ls2{letter-spacing:2.989200px;}
.ls0{letter-spacing:8.367300px;}
.ls6{letter-spacing:11.954850px;}
.ls1a{letter-spacing:12.440400px;}
.ls1c{letter-spacing:12.514255px;}
.lsf{letter-spacing:12.625910px;}
.ls12{letter-spacing:12.999380px;}
.ls16{letter-spacing:13.164728px;}
.ls13{letter-spacing:13.179084px;}
.ls1f{letter-spacing:13.250697px;}
.ls1b{letter-spacing:13.318717px;}
.ls10{letter-spacing:13.433283px;}
.lsd{letter-spacing:13.448400px;}
.lse{letter-spacing:13.454400px;}
.ls15{letter-spacing:13.611129px;}
.ls20{letter-spacing:13.950400px;}
.lsa{letter-spacing:14.047266px;}
.ls1e{letter-spacing:14.585694px;}
.ls8{letter-spacing:14.704798px;}
.ls9{letter-spacing:15.003676px;}
.lsc{letter-spacing:15.123227px;}
.ls1d{letter-spacing:17.179812px;}
.ls19{letter-spacing:17.320988px;}
.lsb{letter-spacing:17.813129px;}
.ls17{letter-spacing:17.862165px;}
.ls1{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{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;}
}
.ws40{word-spacing:-14.943900px;}
.ws82{word-spacing:-13.449600px;}
.ws1c{word-spacing:-11.955150px;}
.ws5{word-spacing:-10.460700px;}
.ws79{word-spacing:-3.706087px;}
.ws43{word-spacing:-3.347434px;}
.ws69{word-spacing:-3.227882px;}
.ws41{word-spacing:-2.988780px;}
.wsa8{word-spacing:-2.809453px;}
.ws47{word-spacing:-2.749678px;}
.ws70{word-spacing:-2.689902px;}
.ws96{word-spacing:-2.510575px;}
.wsa9{word-spacing:-2.450800px;}
.ws9e{word-spacing:-2.391024px;}
.ws93{word-spacing:-2.331248px;}
.ws75{word-spacing:-2.271473px;}
.ws7a{word-spacing:-2.211697px;}
.ws86{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.092140px;}
.ws4{word-spacing:-2.091116px;}
.wsa3{word-spacing:-1.972595px;}
.ws2{word-spacing:-1.966612px;}
.ws71{word-spacing:-1.912819px;}
.ws48{word-spacing:-1.853044px;}
.ws62{word-spacing:-1.793268px;}
.ws63{word-spacing:-1.733492px;}
.wscd{word-spacing:-1.721549px;}
.wsa2{word-spacing:-1.667750px;}
.ws1e{word-spacing:-1.613941px;}
.ws8f{word-spacing:-1.554166px;}
.ws64{word-spacing:-1.494390px;}
.ws87{word-spacing:-1.434614px;}
.ws6b{word-spacing:-1.374839px;}
.ws66{word-spacing:-1.315063px;}
.ws59{word-spacing:-1.255288px;}
.ws67{word-spacing:-1.135736px;}
.ws39{word-spacing:-1.075961px;}
.wse3{word-spacing:-1.022170px;}
.ws2d{word-spacing:-1.016185px;}
.wse4{word-spacing:-0.968371px;}
.ws2b{word-spacing:-0.956410px;}
.wsea{word-spacing:-0.914573px;}
.ws65{word-spacing:-0.896634px;}
.ws88{word-spacing:-0.836858px;}
.wsc3{word-spacing:-0.823892px;}
.wsc2{word-spacing:-0.806976px;}
.ws8a{word-spacing:-0.777083px;}
.ws5b{word-spacing:-0.717307px;}
.ws34{word-spacing:-0.657532px;}
.wsd1{word-spacing:-0.645581px;}
.ws6c{word-spacing:-0.597756px;}
.wsc4{word-spacing:-0.591782px;}
.ws7d{word-spacing:-0.537984px;}
.ws3f{word-spacing:-0.537980px;}
.ws89{word-spacing:-0.478205px;}
.ws3e{word-spacing:-0.418429px;}
.ws45{word-spacing:-0.358654px;}
.wsda{word-spacing:-0.322790px;}
.ws1d{word-spacing:-0.298878px;}
.wsae{word-spacing:-0.268992px;}
.wse{word-spacing:-0.239102px;}
.wsb3{word-spacing:-0.215194px;}
.ws11{word-spacing:-0.179327px;}
.wsbb{word-spacing:-0.177313px;}
.wsba{word-spacing:-0.161395px;}
.wsf{word-spacing:-0.119551px;}
.wscb{word-spacing:-0.107597px;}
.wsc{word-spacing:-0.059776px;}
.ws9f{word-spacing:-0.053798px;}
.wsc9{word-spacing:-0.034330px;}
.wsf0{word-spacing:-0.009187px;}
.wsb9{word-spacing:-0.006998px;}
.wsca{word-spacing:-0.003571px;}
.wse7{word-spacing:-0.003466px;}
.wsb4{word-spacing:-0.002467px;}
.ws9{word-spacing:-0.002316px;}
.wsf4{word-spacing:-0.001190px;}
.ws1b{word-spacing:-0.000488px;}
.ws7{word-spacing:0.000000px;}
.wsa1{word-spacing:0.053798px;}
.ws8{word-spacing:0.059776px;}
.ws80{word-spacing:0.107597px;}
.ws1a{word-spacing:0.119551px;}
.wsf9{word-spacing:0.158072px;}
.wsaf{word-spacing:0.161395px;}
.ws19{word-spacing:0.179327px;}
.ws7c{word-spacing:0.215194px;}
.wsd{word-spacing:0.239102px;}
.wsa0{word-spacing:0.268992px;}
.ws15{word-spacing:0.298878px;}
.wsb8{word-spacing:0.322790px;}
.ws14{word-spacing:0.358654px;}
.ws4d{word-spacing:0.418429px;}
.ws3{word-spacing:0.419903px;}
.ws6{word-spacing:0.422252px;}
.wsd3{word-spacing:0.430387px;}
.ws49{word-spacing:0.478205px;}
.ws29{word-spacing:0.537980px;}
.wscf{word-spacing:0.591782px;}
.ws77{word-spacing:0.657532px;}
.ws57{word-spacing:0.777083px;}
.wsf5{word-spacing:0.806976px;}
.ws10{word-spacing:0.836858px;}
.wsed{word-spacing:0.860551px;}
.wsd5{word-spacing:0.860774px;}
.ws33{word-spacing:0.896634px;}
.wsc8{word-spacing:0.914573px;}
.ws2e{word-spacing:0.956410px;}
.wsb6{word-spacing:0.968371px;}
.ws74{word-spacing:1.016185px;}
.wsec{word-spacing:1.129766px;}
.ws22{word-spacing:1.135736px;}
.ws12{word-spacing:1.195512px;}
.ws36{word-spacing:1.255288px;}
.wsfa{word-spacing:1.291162px;}
.ws20{word-spacing:1.315063px;}
.ws5f{word-spacing:1.374839px;}
.ws76{word-spacing:1.434614px;}
.ws51{word-spacing:1.494390px;}
.ws5d{word-spacing:1.554166px;}
.ws85{word-spacing:1.613941px;}
.ws27{word-spacing:1.673717px;}
.ws9b{word-spacing:1.733492px;}
.ws31{word-spacing:1.793268px;}
.ws73{word-spacing:1.912819px;}
.ws28{word-spacing:2.032370px;}
.ws21{word-spacing:2.092146px;}
.ws55{word-spacing:2.151922px;}
.ws53{word-spacing:2.211697px;}
.wsac{word-spacing:2.271473px;}
.wse5{word-spacing:2.313331px;}
.ws94{word-spacing:2.331248px;}
.wseb{word-spacing:2.367130px;}
.wsa7{word-spacing:2.391024px;}
.ws8c{word-spacing:2.450800px;}
.ws44{word-spacing:2.510575px;}
.ws3c{word-spacing:2.570351px;}
.ws25{word-spacing:2.630126px;}
.ws23{word-spacing:2.689902px;}
.ws38{word-spacing:2.749678px;}
.wsbd{word-spacing:2.797517px;}
.ws4f{word-spacing:2.809453px;}
.ws50{word-spacing:2.869229px;}
.wsa{word-spacing:2.869236px;}
.wsbc{word-spacing:2.905114px;}
.ws54{word-spacing:2.929004px;}
.wse1{word-spacing:3.012710px;}
.ws91{word-spacing:3.048556px;}
.wse0{word-spacing:3.066509px;}
.ws5e{word-spacing:3.108331px;}
.ws68{word-spacing:3.168107px;}
.wsb1{word-spacing:3.174106px;}
.wsee{word-spacing:3.219984px;}
.wsdf{word-spacing:3.220608px;}
.wsf6{word-spacing:3.221002px;}
.wsce{word-spacing:3.221328px;}
.wsd6{word-spacing:3.221904px;}
.wsbf{word-spacing:3.222259px;}
.wsb7{word-spacing:3.222883px;}
.wsf7{word-spacing:3.225082px;}
.wsde{word-spacing:3.225571px;}
.wse9{word-spacing:3.225830px;}
.wscc{word-spacing:3.227328px;}
.wsb5{word-spacing:3.227875px;}
.ws5a{word-spacing:3.227882px;}
.wsbe{word-spacing:3.227904px;}
.wsd2{word-spacing:3.281702px;}
.ws72{word-spacing:3.287658px;}
.ws58{word-spacing:3.347434px;}
.wse2{word-spacing:3.389299px;}
.ws26{word-spacing:3.407209px;}
.wsd7{word-spacing:3.415120px;}
.wsc5{word-spacing:3.443098px;}
.ws3b{word-spacing:3.466985px;}
.wsd8{word-spacing:3.496896px;}
.wsd9{word-spacing:3.503776px;}
.ws97{word-spacing:3.526760px;}
.wsb{word-spacing:3.546125px;}
.ws4b{word-spacing:3.586536px;}
.wse8{word-spacing:3.604493px;}
.ws30{word-spacing:3.706087px;}
.ws9a{word-spacing:3.825638px;}
.ws4e{word-spacing:3.885414px;}
.ws24{word-spacing:3.945190px;}
.ws16{word-spacing:3.967061px;}
.ws99{word-spacing:4.064741px;}
.ws60{word-spacing:4.124516px;}
.ws56{word-spacing:4.184292px;}
.wsab{word-spacing:4.244068px;}
.ws17{word-spacing:4.303872px;}
.ws13{word-spacing:4.363619px;}
.ws2a{word-spacing:4.423394px;}
.wsc6{word-spacing:4.519066px;}
.ws18{word-spacing:4.542946px;}
.ws6a{word-spacing:4.602721px;}
.ws98{word-spacing:4.662497px;}
.ws95{word-spacing:4.722272px;}
.ws2f{word-spacing:4.782048px;}
.ws92{word-spacing:4.901599px;}
.wsd4{word-spacing:4.949453px;}
.ws6f{word-spacing:4.961375px;}
.ws42{word-spacing:5.080926px;}
.ws6e{word-spacing:5.200477px;}
.wsc0{word-spacing:5.218445px;}
.ws6d{word-spacing:5.260253px;}
.ws3a{word-spacing:5.320028px;}
.ws1f{word-spacing:5.379804px;}
.wsf2{word-spacing:5.379840px;}
.wse6{word-spacing:5.487437px;}
.wsad{word-spacing:5.798233px;}
.ws90{word-spacing:5.858009px;}
.wsa4{word-spacing:5.917784px;}
.wsb2{word-spacing:5.971622px;}
.ws37{word-spacing:5.977560px;}
.ws8b{word-spacing:6.037336px;}
.wsdc{word-spacing:6.079219px;}
.ws4a{word-spacing:6.156887px;}
.ws8e{word-spacing:6.216662px;}
.ws32{word-spacing:6.276438px;}
.ws4c{word-spacing:6.336214px;}
.ws8d{word-spacing:6.515540px;}
.ws35{word-spacing:6.694867px;}
.wsf1{word-spacing:6.778598px;}
.ws3d{word-spacing:6.814418px;}
.ws5c{word-spacing:6.993745px;}
.ws46{word-spacing:7.053521px;}
.ws9d{word-spacing:7.113296px;}
.ws9c{word-spacing:7.232848px;}
.wsd0{word-spacing:7.370381px;}
.ws2c{word-spacing:7.711052px;}
.ws61{word-spacing:7.890379px;}
.wsaa{word-spacing:7.950155px;}
.ws78{word-spacing:8.129482px;}
.wsdd{word-spacing:9.135677px;}
.wsef{word-spacing:9.135734px;}
.wsf3{word-spacing:9.135994px;}
.wsc7{word-spacing:9.140170px;}
.wsb0{word-spacing:9.725881px;}
.wsc1{word-spacing:9.737510px;}
.wsf8{word-spacing:10.006502px;}
.ws52{word-spacing:12.851754px;}
.wsdb{word-spacing:15.440141px;}
.ws1{word-spacing:22.179541px;}
.ws81{word-spacing:216.910685px;}
.ws7b{word-spacing:218.040451px;}
.ws7e{word-spacing:251.343523px;}
.ws83{word-spacing:312.402845px;}
.ws84{word-spacing:388.150176px;}
.wsa6{word-spacing:431.904086px;}
.wsa5{word-spacing:466.012272px;}
.ws7f{word-spacing:470.520806px;}
._41{margin-left:-24.532070px;}
._43{margin-left:-20.873779px;}
._4{margin-left:-11.943245px;}
._18{margin-left:-7.699102px;}
._5{margin-left:-6.694867px;}
._3f{margin-left:-5.654618px;}
._1{margin-left:-4.644551px;}
._2{margin-left:-3.096367px;}
._3{margin-left:-1.506341px;}
._42{width:2.958912px;}
._34{width:4.423394px;}
._40{width:7.531776px;}
._0{width:10.879128px;}
._46{width:12.319834px;}
._14{width:13.353839px;}
._c{width:14.597197px;}
._f{width:16.282886px;}
._9{width:17.825080px;}
._7{width:18.984718px;}
._11{width:20.036777px;}
._8{width:21.519216px;}
._12{width:22.535401px;}
._d{width:23.551586px;}
._10{width:24.627547px;}
._19{width:25.834954px;}
._13{width:27.078347px;}
._37{width:28.572715px;}
._17{width:29.828024px;}
._36{width:31.202863px;}
._e{width:32.278824px;}
._3e{width:34.131868px;}
._3b{width:36.295740px;}
._16{width:37.419526px;}
._1a{width:39.152910px;}
._15{width:40.599583px;}
._47{width:41.683864px;}
._48{width:44.641639px;}
._44{width:51.426289px;}
._6{width:54.589022px;}
._45{width:61.868160px;}
._21{width:74.721514px;}
._3a{width:79.860691px;}
._23{width:82.741939px;}
._22{width:88.278710px;}
._35{width:91.695770px;}
._1b{width:93.663014px;}
._38{width:108.565171px;}
._39{width:112.546253px;}
._30{width:126.905270px;}
._2c{width:140.844211px;}
._26{width:143.157542px;}
._2e{width:145.348733px;}
._32{width:149.070211px;}
._1e{width:158.992146px;}
._25{width:174.898598px;}
._29{width:180.296327px;}
._31{width:185.007542px;}
._3d{width:204.487718px;}
._2f{width:208.840464px;}
._2d{width:231.763507px;}
._2a{width:293.416474px;}
._2b{width:338.000803px;}
._24{width:344.202163px;}
._1d{width:369.379814px;}
._20{width:380.247091px;}
._3c{width:421.402867px;}
._1c{width:437.865178px;}
._1f{width:466.647322px;}
._28{width:496.774426px;}
._27{width:583.174656px;}
._a{width:1671.215929px;}
._33{width:2468.093929px;}
._b{width:2492.003929px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y45{bottom:45.921000px;}
.y20a{bottom:96.523500px;}
.y254{bottom:99.996000px;}
.y18{bottom:100.260000px;}
.yef{bottom:101.388000px;}
.y173{bottom:102.219000px;}
.y185{bottom:104.247000px;}
.y287{bottom:105.961500px;}
.ya5{bottom:107.382000px;}
.y232{bottom:111.042000px;}
.y10f{bottom:112.671000px;}
.y44{bottom:115.527000px;}
.y17{bottom:118.147500px;}
.y11c{bottom:118.365000px;}
.y137{bottom:118.924500px;}
.y253{bottom:119.146500px;}
.y11a{bottom:120.322500px;}
.yee{bottom:122.280000px;}
.y172{bottom:123.111000px;}
.y286{bottom:125.112000px;}
.ya4{bottom:128.274000px;}
.y231{bottom:131.932500px;}
.y10e{bottom:133.561500px;}
.y21a{bottom:134.802000px;}
.y136{bottom:135.363000px;}
.y16{bottom:136.035000px;}
.y43{bottom:136.419000px;}
.y252{bottom:138.297000px;}
.yc3{bottom:139.255500px;}
.y119{bottom:141.213000px;}
.y157{bottom:142.812000px;}
.yed{bottom:143.170500px;}
.y171{bottom:144.001500px;}
.y285{bottom:144.262500px;}
.ya3{bottom:149.166000px;}
.y230{bottom:152.824500px;}
.y15{bottom:153.924000px;}
.y10d{bottom:154.453500px;}
.y219{bottom:155.694000px;}
.y42{bottom:157.309500px;}
.y251{bottom:157.447500px;}
.y134{bottom:159.303000px;}
.yc2{bottom:160.147500px;}
.y118{bottom:162.105000px;}
.y284{bottom:163.413000px;}
.y156{bottom:163.704000px;}
.yec{bottom:164.062500px;}
.y170{bottom:164.893500px;}
.y133{bottom:167.521500px;}
.y1ea{bottom:168.442500px;}
.ya2{bottom:170.056500px;}
.y75{bottom:170.115000px;}
.y14{bottom:171.811500px;}
.y22f{bottom:173.716500px;}
.y1b3{bottom:174.243000px;}
.y10c{bottom:175.345500px;}
.y135{bottom:175.741500px;}
.y218{bottom:176.586000px;}
.y250{bottom:176.598000px;}
.y41{bottom:178.201500px;}
.yc1{bottom:181.039500px;}
.y283{bottom:182.563500px;}
.y117{bottom:182.997000px;}
.y155{bottom:184.596000px;}
.yeb{bottom:184.954500px;}
.y16f{bottom:185.785500px;}
.y1e9{bottom:189.334500px;}
.y13{bottom:189.699000px;}
.y1b1{bottom:190.681500px;}
.ya1{bottom:190.948500px;}
.y74{bottom:191.007000px;}
.y22e{bottom:194.607000px;}
.y24f{bottom:195.748500px;}
.y10b{bottom:196.237500px;}
.y217{bottom:197.476500px;}
.y40{bottom:199.093500px;}
.y131{bottom:199.681500px;}
.y282{bottom:201.714000px;}
.yc0{bottom:201.930000px;}
.y116{bottom:203.887500px;}
.y154{bottom:205.486500px;}
.yea{bottom:205.845000px;}
.y16e{bottom:206.676000px;}
.y1b0{bottom:207.120000px;}
.y12{bottom:207.588000px;}
.y130{bottom:207.900000px;}
.y1e8{bottom:210.226500px;}
.ya0{bottom:211.840500px;}
.y73{bottom:211.899000px;}
.y24e{bottom:214.899000px;}
.y22d{bottom:215.499000px;}
.y132{bottom:216.118500px;}
.y10a{bottom:217.128000px;}
.y216{bottom:218.368500px;}
.y3f{bottom:219.984000px;}
.y281{bottom:220.864500px;}
.ybf{bottom:222.822000px;}
.y1b2{bottom:223.558500px;}
.y115{bottom:224.779500px;}
.y11{bottom:225.475500px;}
.y153{bottom:226.378500px;}
.ye9{bottom:226.737000px;}
.y1e7{bottom:231.117000px;}
.y16d{bottom:232.051500px;}
.y9f{bottom:232.731000px;}
.y72{bottom:232.789500px;}
.y24d{bottom:234.049500px;}
.y22c{bottom:236.391000px;}
.y109{bottom:238.020000px;}
.y215{bottom:239.260500px;}
.y280{bottom:240.015000px;}
.y12e{bottom:240.058500px;}
.ybe{bottom:243.714000px;}
.y3e{bottom:245.359500px;}
.y114{bottom:245.671500px;}
.y152{bottom:247.270500px;}
.y1af{bottom:247.498500px;}
.ye8{bottom:247.629000px;}
.y12d{bottom:248.278500px;}
.y1e6{bottom:252.009000px;}
.y10{bottom:252.330000px;}
.y24c{bottom:253.200000px;}
.y9e{bottom:253.623000px;}
.y71{bottom:253.681500px;}
.y12f{bottom:256.497000px;}
.y22b{bottom:257.281500px;}
.y108{bottom:258.912000px;}
.y27f{bottom:259.165500px;}
.y214{bottom:260.151000px;}
.y1ab{bottom:263.937000px;}
.ybd{bottom:264.606000px;}
.y113{bottom:266.563500px;}
.y16c{bottom:267.393000px;}
.y151{bottom:268.161000px;}
.ye7{bottom:268.521000px;}
.yf{bottom:270.217500px;}
.y1ad{bottom:272.155500px;}
.y24b{bottom:272.350500px;}
.y1e5{bottom:272.901000px;}
.y9d{bottom:274.515000px;}
.y70{bottom:274.573500px;}
.y22a{bottom:278.173500px;}
.y27e{bottom:278.316000px;}
.y107{bottom:279.802500px;}
.y1a9{bottom:280.375500px;}
.y12c{bottom:280.437000px;}
.y213{bottom:281.043000px;}
.ybc{bottom:285.496500px;}
.y112{bottom:287.454000px;}
.ye{bottom:288.105000px;}
.y16b{bottom:288.285000px;}
.y1ac{bottom:288.594000px;}
.y150{bottom:289.053000px;}
.ye6{bottom:289.411500px;}
.y24a{bottom:291.501000px;}
.y1e4{bottom:293.791500px;}
.y9c{bottom:295.405500px;}
.y6f{bottom:295.464000px;}
.y1aa{bottom:296.814000px;}
.y12b{bottom:296.875500px;}
.y27d{bottom:297.466500px;}
.y229{bottom:299.065500px;}
.y106{bottom:300.694500px;}
.y212{bottom:301.935000px;}
.yd{bottom:305.994000px;}
.ybb{bottom:306.388500px;}
.y16a{bottom:309.177000px;}
.y14f{bottom:309.945000px;}
.ye5{bottom:310.303500px;}
.y249{bottom:310.651500px;}
.y111{bottom:312.829500px;}
.y1ae{bottom:313.252500px;}
.y1e3{bottom:314.683500px;}
.y9b{bottom:316.297500px;}
.y6e{bottom:316.356000px;}
.y27c{bottom:316.617000px;}
.y228{bottom:319.956000px;}
.y12a{bottom:320.814000px;}
.y105{bottom:321.586500px;}
.y211{bottom:322.825500px;}
.yc{bottom:323.881500px;}
.y3d{bottom:324.571500px;}
.yba{bottom:327.280500px;}
.y248{bottom:329.802000px;}
.y169{bottom:330.067500px;}
.y14e{bottom:330.835500px;}
.ye4{bottom:331.195500px;}
.y1e2{bottom:335.575500px;}
.y27b{bottom:335.767500px;}
.y9a{bottom:337.189500px;}
.y1a8{bottom:337.191000px;}
.y6d{bottom:337.248000px;}
.y227{bottom:340.848000px;}
.yb{bottom:341.769000px;}
.y104{bottom:342.477000px;}
.y210{bottom:343.717500px;}
.y128{bottom:344.754000px;}
.y1a4{bottom:345.411000px;}
.y3c{bottom:345.462000px;}
.yb9{bottom:348.171000px;}
.y247{bottom:348.952500px;}
.y168{bottom:350.959500px;}
.y14d{bottom:351.727500px;}
.ye3{bottom:352.086000px;}
.y127{bottom:352.974000px;}
.y1a6{bottom:353.629500px;}
.y27a{bottom:354.918000px;}
.y1e1{bottom:356.466000px;}
.y99{bottom:358.080000px;}
.y6c{bottom:358.138500px;}
.ya{bottom:359.658000px;}
.y129{bottom:361.192500px;}
.y226{bottom:361.740000px;}
.y1a3{bottom:361.849500px;}
.y103{bottom:363.369000px;}
.y20f{bottom:364.609500px;}
.y246{bottom:368.103000px;}
.yb8{bottom:369.063000px;}
.y1a0{bottom:370.068000px;}
.y167{bottom:371.851500px;}
.y14c{bottom:372.619500px;}
.ye2{bottom:372.978000px;}
.y279{bottom:374.070000px;}
.y1e0{bottom:377.358000px;}
.y9{bottom:377.545500px;}
.y1a2{bottom:378.286500px;}
.y98{bottom:378.972000px;}
.y225{bottom:382.632000px;}
.y6b{bottom:383.514000px;}
.y102{bottom:384.261000px;}
.y3b{bottom:384.286500px;}
.y125{bottom:385.132500px;}
.y20e{bottom:385.500000px;}
.y1a5{bottom:386.506500px;}
.y245{bottom:387.253500px;}
.yb7{bottom:389.955000px;}
.y166{bottom:392.743500px;}
.y278{bottom:393.220500px;}
.y124{bottom:393.351000px;}
.y14b{bottom:393.511500px;}
.ye1{bottom:393.870000px;}
.y190{bottom:394.437000px;}
.y1a1{bottom:394.725000px;}
.y8{bottom:395.433000px;}
.y1df{bottom:398.250000px;}
.y97{bottom:399.864000px;}
.y126{bottom:401.571000px;}
.y1a7{bottom:402.945000px;}
.y224{bottom:403.522500px;}
.y6a{bottom:404.406000px;}
.y3a{bottom:405.178500px;}
.y20d{bottom:406.392000px;}
.y244{bottom:406.404000px;}
.y184{bottom:407.314500px;}
.y101{bottom:409.635000px;}
.yb6{bottom:410.845500px;}
.y277{bottom:412.371000px;}
.y7{bottom:413.322000px;}
.y165{bottom:413.634000px;}
.y14a{bottom:414.402000px;}
.ye0{bottom:414.760500px;}
.y1de{bottom:419.142000px;}
.y96{bottom:420.756000px;}
.y223{bottom:424.414500px;}
.y69{bottom:425.296500px;}
.y123{bottom:425.509500px;}
.y242{bottom:425.554500px;}
.y243{bottom:425.556000px;}
.y39{bottom:426.070500px;}
.y19f{bottom:426.885000px;}
.y183{bottom:428.206500px;}
.y18f{bottom:429.780000px;}
.y6{bottom:431.209500px;}
.y276{bottom:431.521500px;}
.yb5{bottom:431.737500px;}
.y100{bottom:434.067000px;}
.y164{bottom:434.526000px;}
.y149{bottom:435.294000px;}
.ydf{bottom:435.652500px;}
.y95{bottom:441.646500px;}
.y20c{bottom:442.020000px;}
.y19e{bottom:443.322000px;}
.y1dd{bottom:444.516000px;}
.y222{bottom:445.306500px;}
.y68{bottom:446.188500px;}
.y38{bottom:446.961000px;}
.y182{bottom:449.098500px;}
.y241{bottom:449.188500px;}
.y18e{bottom:450.672000px;}
.y19b{bottom:451.542000px;}
.yb4{bottom:452.629500px;}
.y5{bottom:455.074500px;}
.y163{bottom:455.418000px;}
.y148{bottom:456.186000px;}
.y121{bottom:457.668000px;}
.y19d{bottom:459.760500px;}
.yde{bottom:461.028000px;}
.y20b{bottom:461.253000px;}
.y94{bottom:462.538500px;}
.y120{bottom:465.888000px;}
.y221{bottom:466.197000px;}
.y67{bottom:467.080500px;}
.y37{bottom:467.853000px;}
.y275{bottom:469.822500px;}
.y181{bottom:469.989000px;}
.y18d{bottom:471.562500px;}
.yff{bottom:472.891500px;}
.y4{bottom:472.963500px;}
.yb3{bottom:473.520000px;}
.y122{bottom:474.106500px;}
.y19c{bottom:476.199000px;}
.y162{bottom:476.308500px;}
.y147{bottom:477.076500px;}
.y1dc{bottom:479.859000px;}
.y11f{bottom:482.326500px;}
.y93{bottom:483.430500px;}
.y220{bottom:487.089000px;}
.y66{bottom:487.971000px;}
.y240{bottom:488.013000px;}
.y36{bottom:488.745000px;}
.y274{bottom:488.973000px;}
.y3{bottom:490.851000px;}
.y18c{bottom:492.454500px;}
.yfe{bottom:493.783500px;}
.yb2{bottom:494.412000px;}
.y180{bottom:495.364500px;}
.ydd{bottom:496.369500px;}
.y146{bottom:497.968500px;}
.y19a{bottom:500.139000px;}
.y1db{bottom:500.749500px;}
.y161{bottom:501.684000px;}
.y92{bottom:504.321000px;}
.y11e{bottom:506.266500px;}
.y23f{bottom:507.511500px;}
.y21f{bottom:507.981000px;}
.y273{bottom:508.123500px;}
.y2{bottom:508.738500px;}
.y65{bottom:508.863000px;}
.y35{bottom:509.635500px;}
.y18b{bottom:513.346500px;}
.yfd{bottom:514.674000px;}
.yb1{bottom:515.304000px;}
.y198{bottom:516.577500px;}
.ydc{bottom:517.261500px;}
.y1da{bottom:521.641500px;}
.y160{bottom:522.576000px;}
.y195{bottom:524.796000px;}
.y91{bottom:525.213000px;}
.y23e{bottom:527.011500px;}
.y272{bottom:527.274000px;}
.y21e{bottom:528.871500px;}
.y64{bottom:529.755000px;}
.y34{bottom:530.527500px;}
.y17f{bottom:530.707500px;}
.y1{bottom:532.605000px;}
.y197{bottom:533.016000px;}
.y145{bottom:533.596500px;}
.y18a{bottom:534.237000px;}
.yfc{bottom:535.566000px;}
.yb0{bottom:536.194500px;}
.ydb{bottom:538.152000px;}
.y11d{bottom:540.874500px;}
.y194{bottom:541.234500px;}
.y1d9{bottom:542.533500px;}
.y15f{bottom:543.466500px;}
.y90{bottom:546.105000px;}
.y271{bottom:546.424500px;}
.y23d{bottom:546.510000px;}
.y196{bottom:549.454500px;}
.y21d{bottom:549.763500px;}
.y63{bottom:550.645500px;}
.y209{bottom:550.815000px;}
.y33{bottom:551.419500px;}
.y17e{bottom:551.598000px;}
.y189{bottom:555.129000px;}
.yfb{bottom:556.458000px;}
.yaf{bottom:557.086500px;}
.yda{bottom:559.044000px;}
.y1d8{bottom:563.424000px;}
.y15e{bottom:564.358500px;}
.y270{bottom:565.575000px;}
.y199{bottom:565.893000px;}
.y23c{bottom:566.008500px;}
.y8f{bottom:566.995500px;}
.y62{bottom:571.537500px;}
.y208{bottom:571.705500px;}
.y32{bottom:572.310000px;}
.y17d{bottom:572.490000px;}
.y21c{bottom:575.139000px;}
.y188{bottom:576.021000px;}
.yfa{bottom:577.348500px;}
.yae{bottom:577.978500px;}
.yd9{bottom:579.936000px;}
.y1d7{bottom:584.316000px;}
.y26f{bottom:584.725500px;}
.y15d{bottom:585.250500px;}
.y8e{bottom:587.887500px;}
.y193{bottom:589.831500px;}
.y61{bottom:592.429500px;}
.y207{bottom:592.597500px;}
.y31{bottom:593.202000px;}
.y17c{bottom:593.382000px;}
.y23b{bottom:594.474000px;}
.y187{bottom:596.913000px;}
.yf9{bottom:598.240500px;}
.yad{bottom:598.870500px;}
.yd8{bottom:600.828000px;}
.y26e{bottom:603.876000px;}
.y1d6{bottom:605.208000px;}
.y15c{bottom:606.141000px;}
.y8d{bottom:608.779500px;}
.y21b{bottom:610.765500px;}
.y60{bottom:613.320000px;}
.y206{bottom:613.489500px;}
.y23a{bottom:613.972500px;}
.y30{bottom:614.094000px;}
.y17b{bottom:614.272500px;}
.y186{bottom:617.803500px;}
.yf8{bottom:619.132500px;}
.yac{bottom:619.761000px;}
.yd7{bottom:621.718500px;}
.y26d{bottom:623.026500px;}
.y192{bottom:624.441000px;}
.y1d5{bottom:626.098500px;}
.y15b{bottom:627.033000px;}
.y8c{bottom:629.670000px;}
.y205{bottom:634.380000px;}
.y2f{bottom:634.986000px;}
.y17a{bottom:635.164500px;}
.y5f{bottom:638.695500px;}
.yf7{bottom:640.023000px;}
.yab{bottom:640.653000px;}
.y26c{bottom:642.177000px;}
.y239{bottom:642.438000px;}
.yd6{bottom:642.610500px;}
.y1d4{bottom:646.990500px;}
.y15a{bottom:647.925000px;}
.y8b{bottom:650.562000px;}
.y204{bottom:655.272000px;}
.y2e{bottom:655.876500px;}
.y179{bottom:656.056500px;}
.y5e{bottom:659.587500px;}
.yf6{bottom:660.915000px;}
.y26b{bottom:661.327500px;}
.yaa{bottom:661.545000px;}
.y238{bottom:661.936500px;}
.y1d3{bottom:667.882500px;}
.yd5{bottom:667.984500px;}
.y8a{bottom:671.454000px;}
.y159{bottom:673.299000px;}
.y203{bottom:676.164000px;}
.y178{bottom:676.947000px;}
.y5d{bottom:680.478000px;}
.y237{bottom:681.435000px;}
.yf5{bottom:681.807000px;}
.ya9{bottom:682.435500px;}
.y1d2{bottom:688.774500px;}
.y89{bottom:692.346000px;}
.y2d{bottom:695.896500px;}
.y202{bottom:697.054500px;}
.y177{bottom:697.839000px;}
.y26a{bottom:699.628500px;}
.y5c{bottom:701.370000px;}
.yf4{bottom:702.697500px;}
.ya8{bottom:703.327500px;}
.y11b{bottom:707.811000px;}
.y158{bottom:708.927000px;}
.y1d1{bottom:709.665000px;}
.y236{bottom:709.900500px;}
.y2c{bottom:712.036500px;}
.y88{bottom:713.236500px;}
.y201{bottom:717.946500px;}
.y176{bottom:718.731000px;}
.y269{bottom:718.779000px;}
.y5b{bottom:722.262000px;}
.yf3{bottom:723.589500px;}
.ya7{bottom:724.219500px;}
.y2b{bottom:728.176500px;}
.y235{bottom:729.399000px;}
.y1d0{bottom:730.557000px;}
.y87{bottom:734.128500px;}
.y268{bottom:737.929500px;}
.y175{bottom:739.621500px;}
.y5a{bottom:743.152500px;}
.y200{bottom:743.322000px;}
.y2a{bottom:744.315000px;}
.yf2{bottom:744.481500px;}
.yd4{bottom:745.110000px;}
.y234{bottom:748.897500px;}
.ya6{bottom:749.593500px;}
.y86{bottom:755.020500px;}
.y28a{bottom:755.340000px;}
.y267{bottom:757.081500px;}
.y59{bottom:764.044500px;}
.y29{bottom:764.794500px;}
.yd3{bottom:766.002000px;}
.y233{bottom:768.396000px;}
.yf1{bottom:769.855500px;}
.y191{bottom:770.485500px;}
.y289{bottom:774.490500px;}
.y174{bottom:775.249500px;}
.y85{bottom:775.911000px;}
.y266{bottom:776.232000px;}
.y28{bottom:776.595000px;}
.y1cf{bottom:781.069500px;}
.y58{bottom:784.936500px;}
.yd2{bottom:786.894000px;}
.y1cb{bottom:789.289500px;}
.y288{bottom:793.641000px;}
.y265{bottom:795.382500px;}
.y1ff{bottom:795.984000px;}
.y84{bottom:796.803000px;}
.y27{bottom:797.074500px;}
.y1ce{bottom:797.508000px;}
.yf0{bottom:802.002000px;}
.y1fc{bottom:804.204000px;}
.y1c9{bottom:805.728000px;}
.y57{bottom:805.827000px;}
.yd1{bottom:807.784500px;}
.y26{bottom:808.873500px;}
.y1fe{bottom:812.422500px;}
.y1cd{bottom:813.946500px;}
.y264{bottom:814.533000px;}
.y83{bottom:817.695000px;}
.y1fb{bottom:820.642500px;}
.y1ca{bottom:822.165000px;}
.y56{bottom:826.719000px;}
.yd0{bottom:828.676500px;}
.y1fd{bottom:828.861000px;}
.y25{bottom:829.353000px;}
.y1cc{bottom:830.385000px;}
.y263{bottom:833.683500px;}
.y82{bottom:838.585500px;}
.y24{bottom:841.152000px;}
.y55{bottom:847.611000px;}
.ycf{bottom:849.568500px;}
.y262{bottom:852.834000px;}
.y1c8{bottom:854.325000px;}
.y1fa{bottom:858.778500px;}
.y81{bottom:859.477500px;}
.y23{bottom:861.631500px;}
.y144{bottom:864.019500px;}
.y54{bottom:868.503000px;}
.yce{bottom:870.460500px;}
.y1c6{bottom:870.762000px;}
.y261{bottom:871.984500px;}
.y22{bottom:873.432000px;}
.y1f8{bottom:875.217000px;}
.y1c3{bottom:878.982000px;}
.y80{bottom:880.369500px;}
.y143{bottom:884.910000px;}
.y1c5{bottom:887.200500px;}
.y53{bottom:889.393500px;}
.y260{bottom:891.135000px;}
.ycd{bottom:891.351000px;}
.y1f9{bottom:891.655500px;}
.y21{bottom:893.911500px;}
.y1c2{bottom:895.420500px;}
.y7f{bottom:901.260000px;}
.y1c4{bottom:903.639000px;}
.y142{bottom:905.802000px;}
.y52{bottom:910.285500px;}
.ycc{bottom:912.243000px;}
.y1c7{bottom:920.077500px;}
.y1f7{bottom:921.571500px;}
.y7e{bottom:922.152000px;}
.y141{bottom:926.694000px;}
.y25f{bottom:929.436000px;}
.y1f4{bottom:929.791500px;}
.y51{bottom:931.177500px;}
.ycb{bottom:933.135000px;}
.y1f6{bottom:938.010000px;}
.y20{bottom:938.587500px;}
.y7d{bottom:943.044000px;}
.y1c1{bottom:944.017500px;}
.y1f3{bottom:946.230000px;}
.y140{bottom:947.584500px;}
.y25e{bottom:948.586500px;}
.y50{bottom:952.068000px;}
.yca{bottom:954.025500px;}
.y1f5{bottom:954.448500px;}
.y1f{bottom:959.479500px;}
.y1c0{bottom:960.456000px;}
.y7c{bottom:963.936000px;}
.y25d{bottom:967.737000px;}
.y13f{bottom:968.476500px;}
.y1bd{bottom:968.674500px;}
.y4f{bottom:972.960000px;}
.yc9{bottom:974.917500px;}
.y1bf{bottom:976.894500px;}
.y1e{bottom:980.370000px;}
.y1f2{bottom:984.366000px;}
.y7b{bottom:984.826500px;}
.y25c{bottom:986.887500px;}
.y13e{bottom:989.368500px;}
.y1ef{bottom:992.584500px;}
.y1be{bottom:993.333000px;}
.y4e{bottom:993.852000px;}
.yc8{bottom:995.809500px;}
.y1f1{bottom:1000.804500px;}
.y1c{bottom:1001.262000px;}
.y7a{bottom:1005.718500px;}
.y25b{bottom:1006.038000px;}
.y1d{bottom:1006.687500px;}
.y1ee{bottom:1009.023000px;}
.y13d{bottom:1010.260500px;}
.y4d{bottom:1014.742500px;}
.yc7{bottom:1016.700000px;}
.y1f0{bottom:1017.243000px;}
.y1bc{bottom:1017.271500px;}
.y25a{bottom:1025.188500px;}
.y79{bottom:1026.610500px;}
.y13c{bottom:1031.151000px;}
.y1bb{bottom:1033.710000px;}
.y4c{bottom:1035.634500px;}
.yc6{bottom:1037.592000px;}
.y1b{bottom:1040.086500px;}
.y1b7{bottom:1041.930000px;}
.y110{bottom:1042.075500px;}
.y259{bottom:1044.339000px;}
.y1ed{bottom:1047.160500px;}
.y78{bottom:1047.501000px;}
.y1ba{bottom:1050.148500px;}
.y13b{bottom:1052.043000px;}
.y4b{bottom:1056.526500px;}
.y1b6{bottom:1058.368500px;}
.yc5{bottom:1058.484000px;}
.y258{bottom:1063.489500px;}
.y1eb{bottom:1063.599000px;}
.y1b9{bottom:1066.587000px;}
.y1a{bottom:1071.424500px;}
.y77{bottom:1072.876500px;}
.y13a{bottom:1072.935000px;}
.y4a{bottom:1077.417000px;}
.y1ec{bottom:1080.036000px;}
.y257{bottom:1082.640000px;}
.y1b8{bottom:1083.025500px;}
.yc4{bottom:1083.858000px;}
.y139{bottom:1093.825500px;}
.y76{bottom:1094.769000px;}
.y49{bottom:1098.309000px;}
.y256{bottom:1101.790500px;}
.y19{bottom:1102.761000px;}
.y1b5{bottom:1106.965500px;}
.y138{bottom:1114.717500px;}
.y48{bottom:1119.201000px;}
.y255{bottom:1120.941000px;}
.y47{bottom:1140.091500px;}
.y1b4{bottom:1141.573500px;}
.y46{bottom:1200.196500px;}
.h9{height:32.565965px;}
.h6{height:32.709312px;}
.h2{height:37.993262px;}
.he{height:38.734848px;}
.h12{height:39.434227px;}
.h5{height:43.038432px;}
.ha{height:43.421105px;}
.h3{height:43.815515px;}
.hd{height:48.848947px;}
.hc{height:51.646464px;}
.hb{height:54.276245px;}
.h8{height:54.405312px;}
.h7{height:54.411312px;}
.h13{height:61.760947px;}
.h4{height:77.469696px;}
.hf{height:81.722947px;}
.h10{height:81.728947px;}
.h11{height:114.602947px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x57{left:62.541000px;}
.x63{left:85.848000px;}
.x58{left:176.323500px;}
.x66{left:189.435000px;}
.x2{left:190.974000px;}
.x65{left:198.216000px;}
.x3{left:200.239500px;}
.x5b{left:215.569500px;}
.xe{left:248.526000px;}
.xc{left:249.591000px;}
.xd{left:269.556000px;}
.xf{left:281.479500px;}
.x35{left:286.482000px;}
.x36{left:301.426500px;}
.x45{left:303.567000px;}
.x4{left:310.690500px;}
.x42{left:313.017000px;}
.x2a{left:324.630000px;}
.x43{left:327.960000px;}
.x5{left:334.458000px;}
.x2b{left:339.574500px;}
.x53{left:349.419000px;}
.x59{left:354.906000px;}
.x3a{left:376.042500px;}
.x3b{left:390.987000px;}
.x5c{left:411.798000px;}
.x40{left:427.648500px;}
.x33{left:436.131000px;}
.x26{left:439.380000px;}
.x41{left:442.591500px;}
.x28{left:445.059000px;}
.x34{left:451.074000px;}
.x27{left:454.323000px;}
.x62{left:456.216000px;}
.x29{left:460.002000px;}
.x6{left:461.920500px;}
.x16{left:473.173500px;}
.x1e{left:477.655500px;}
.x17{left:480.645000px;}
.x7{left:481.953000px;}
.x1a{left:487.473000px;}
.x1f{left:492.600000px;}
.x1b{left:494.944500px;}
.x4d{left:496.293000px;}
.x1c{left:502.378500px;}
.x30{left:506.662500px;}
.x4e{left:511.237500px;}
.x1d{left:517.323000px;}
.x38{left:524.737500px;}
.x5a{left:531.733500px;}
.x39{left:539.680500px;}
.x10{left:550.318500px;}
.x11{left:557.790000px;}
.x31{left:564.840000px;}
.x32{left:572.311500px;}
.x46{left:589.759500px;}
.x4a{left:602.488500px;}
.x47{left:604.704000px;}
.x48{left:608.514000px;}
.x37{left:610.321500px;}
.x12{left:614.586000px;}
.x4b{left:617.433000px;}
.x13{left:622.057500px;}
.x49{left:623.458500px;}
.x14{left:625.759500px;}
.x44{left:629.077500px;}
.x5f{left:630.496500px;}
.x15{left:633.232500px;}
.x4c{left:636.187500px;}
.x5e{left:641.367000px;}
.x60{left:649.105500px;}
.x5d{left:650.821500px;}
.x2e{left:651.916500px;}
.x64{left:653.746500px;}
.x51{left:658.239000px;}
.x3c{left:661.524000px;}
.x8{left:664.080000px;}
.x2f{left:666.861000px;}
.x9{left:670.506000px;}
.x52{left:672.733500px;}
.x3d{left:676.468500px;}
.x56{left:681.960000px;}
.x54{left:686.076000px;}
.x3e{left:690.753000px;}
.x55{left:700.570500px;}
.x3f{left:705.697500px;}
.x2c{left:725.694000px;}
.x2d{left:740.638500px;}
.x22{left:750.763500px;}
.x24{left:757.219500px;}
.x20{left:764.169000px;}
.x23{left:765.708000px;}
.x25{left:772.162500px;}
.x21{left:779.112000px;}
.x61{left:786.754500px;}
.x4f{left:798.382500px;}
.x50{left:813.327000px;}
.xa{left:817.024500px;}
.x18{left:825.240000px;}
.x19{left:832.711500px;}
.xb{left:837.057000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:11.477333pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:29.221333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000536pt;}
.ls18{letter-spacing:0.000711pt;}
.ls11{letter-spacing:0.004267pt;}
.ls3{letter-spacing:2.651733pt;}
.ls2{letter-spacing:2.657067pt;}
.ls0{letter-spacing:7.437600pt;}
.ls6{letter-spacing:10.626533pt;}
.ls1a{letter-spacing:11.058133pt;}
.ls1c{letter-spacing:11.123783pt;}
.lsf{letter-spacing:11.223031pt;}
.ls12{letter-spacing:11.555004pt;}
.ls16{letter-spacing:11.701980pt;}
.ls13{letter-spacing:11.714741pt;}
.ls1f{letter-spacing:11.778397pt;}
.ls1b{letter-spacing:11.838859pt;}
.ls10{letter-spacing:11.940696pt;}
.lsd{letter-spacing:11.954133pt;}
.lse{letter-spacing:11.959467pt;}
.ls15{letter-spacing:12.098781pt;}
.ls20{letter-spacing:12.400356pt;}
.lsa{letter-spacing:12.486459pt;}
.ls1e{letter-spacing:12.965061pt;}
.ls8{letter-spacing:13.070931pt;}
.ls9{letter-spacing:13.336601pt;}
.lsc{letter-spacing:13.442868pt;}
.ls1d{letter-spacing:15.270944pt;}
.ls19{letter-spacing:15.396434pt;}
.lsb{letter-spacing:15.833892pt;}
.ls17{letter-spacing:15.877480pt;}
.ls1{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ws40{word-spacing:-13.283467pt;}
.ws82{word-spacing:-11.955200pt;}
.ws1c{word-spacing:-10.626800pt;}
.ws5{word-spacing:-9.298400pt;}
.ws79{word-spacing:-3.294300pt;}
.ws43{word-spacing:-2.975497pt;}
.ws69{word-spacing:-2.869229pt;}
.ws41{word-spacing:-2.656693pt;}
.wsa8{word-spacing:-2.497292pt;}
.ws47{word-spacing:-2.444158pt;}
.ws70{word-spacing:-2.391024pt;}
.ws96{word-spacing:-2.231622pt;}
.wsa9{word-spacing:-2.178489pt;}
.ws9e{word-spacing:-2.125355pt;}
.ws93{word-spacing:-2.072221pt;}
.ws75{word-spacing:-2.019087pt;}
.ws7a{word-spacing:-1.965953pt;}
.ws86{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.859680pt;}
.ws4{word-spacing:-1.858770pt;}
.wsa3{word-spacing:-1.753418pt;}
.ws2{word-spacing:-1.748099pt;}
.ws71{word-spacing:-1.700284pt;}
.ws48{word-spacing:-1.647150pt;}
.ws62{word-spacing:-1.594016pt;}
.ws63{word-spacing:-1.540882pt;}
.wscd{word-spacing:-1.530266pt;}
.wsa2{word-spacing:-1.482445pt;}
.ws1e{word-spacing:-1.434614pt;}
.ws8f{word-spacing:-1.381481pt;}
.ws64{word-spacing:-1.328347pt;}
.ws87{word-spacing:-1.275213pt;}
.ws6b{word-spacing:-1.222079pt;}
.ws66{word-spacing:-1.168945pt;}
.ws59{word-spacing:-1.115811pt;}
.ws67{word-spacing:-1.009543pt;}
.ws39{word-spacing:-0.956410pt;}
.wse3{word-spacing:-0.908595pt;}
.ws2d{word-spacing:-0.903276pt;}
.wse4{word-spacing:-0.860774pt;}
.ws2b{word-spacing:-0.850142pt;}
.wsea{word-spacing:-0.812954pt;}
.ws65{word-spacing:-0.797008pt;}
.ws88{word-spacing:-0.743874pt;}
.wsc3{word-spacing:-0.732349pt;}
.wsc2{word-spacing:-0.717312pt;}
.ws8a{word-spacing:-0.690740pt;}
.ws5b{word-spacing:-0.637606pt;}
.ws34{word-spacing:-0.584473pt;}
.wsd1{word-spacing:-0.573850pt;}
.ws6c{word-spacing:-0.531339pt;}
.wsc4{word-spacing:-0.526029pt;}
.ws7d{word-spacing:-0.478208pt;}
.ws3f{word-spacing:-0.478205pt;}
.ws89{word-spacing:-0.425071pt;}
.ws3e{word-spacing:-0.371937pt;}
.ws45{word-spacing:-0.318803pt;}
.wsda{word-spacing:-0.286925pt;}
.ws1d{word-spacing:-0.265669pt;}
.wsae{word-spacing:-0.239104pt;}
.wse{word-spacing:-0.212535pt;}
.wsb3{word-spacing:-0.191283pt;}
.ws11{word-spacing:-0.159402pt;}
.wsbb{word-spacing:-0.157612pt;}
.wsba{word-spacing:-0.143462pt;}
.wsf{word-spacing:-0.106268pt;}
.wscb{word-spacing:-0.095642pt;}
.wsc{word-spacing:-0.053134pt;}
.ws9f{word-spacing:-0.047821pt;}
.wsc9{word-spacing:-0.030515pt;}
.wsf0{word-spacing:-0.008166pt;}
.wsb9{word-spacing:-0.006221pt;}
.wsca{word-spacing:-0.003174pt;}
.wse7{word-spacing:-0.003081pt;}
.wsb4{word-spacing:-0.002193pt;}
.ws9{word-spacing:-0.002059pt;}
.wsf4{word-spacing:-0.001058pt;}
.ws1b{word-spacing:-0.000434pt;}
.ws7{word-spacing:0.000000pt;}
.wsa1{word-spacing:0.047821pt;}
.ws8{word-spacing:0.053134pt;}
.ws80{word-spacing:0.095642pt;}
.ws1a{word-spacing:0.106268pt;}
.wsf9{word-spacing:0.140509pt;}
.wsaf{word-spacing:0.143462pt;}
.ws19{word-spacing:0.159402pt;}
.ws7c{word-spacing:0.191283pt;}
.wsd{word-spacing:0.212535pt;}
.wsa0{word-spacing:0.239104pt;}
.ws15{word-spacing:0.265669pt;}
.wsb8{word-spacing:0.286925pt;}
.ws14{word-spacing:0.318803pt;}
.ws4d{word-spacing:0.371937pt;}
.ws3{word-spacing:0.373247pt;}
.ws6{word-spacing:0.375335pt;}
.wsd3{word-spacing:0.382566pt;}
.ws49{word-spacing:0.425071pt;}
.ws29{word-spacing:0.478205pt;}
.wscf{word-spacing:0.526029pt;}
.ws77{word-spacing:0.584473pt;}
.ws57{word-spacing:0.690740pt;}
.wsf5{word-spacing:0.717312pt;}
.ws10{word-spacing:0.743874pt;}
.wsed{word-spacing:0.764934pt;}
.wsd5{word-spacing:0.765133pt;}
.ws33{word-spacing:0.797008pt;}
.wsc8{word-spacing:0.812954pt;}
.ws2e{word-spacing:0.850142pt;}
.wsb6{word-spacing:0.860774pt;}
.ws74{word-spacing:0.903276pt;}
.wsec{word-spacing:1.004237pt;}
.ws22{word-spacing:1.009543pt;}
.ws12{word-spacing:1.062677pt;}
.ws36{word-spacing:1.115811pt;}
.wsfa{word-spacing:1.147699pt;}
.ws20{word-spacing:1.168945pt;}
.ws5f{word-spacing:1.222079pt;}
.ws76{word-spacing:1.275213pt;}
.ws51{word-spacing:1.328347pt;}
.ws5d{word-spacing:1.381481pt;}
.ws85{word-spacing:1.434614pt;}
.ws27{word-spacing:1.487748pt;}
.ws9b{word-spacing:1.540882pt;}
.ws31{word-spacing:1.594016pt;}
.ws73{word-spacing:1.700284pt;}
.ws28{word-spacing:1.806551pt;}
.ws21{word-spacing:1.859685pt;}
.ws55{word-spacing:1.912819pt;}
.ws53{word-spacing:1.965953pt;}
.wsac{word-spacing:2.019087pt;}
.wse5{word-spacing:2.056294pt;}
.ws94{word-spacing:2.072221pt;}
.wseb{word-spacing:2.104115pt;}
.wsa7{word-spacing:2.125355pt;}
.ws8c{word-spacing:2.178489pt;}
.ws44{word-spacing:2.231622pt;}
.ws3c{word-spacing:2.284756pt;}
.ws25{word-spacing:2.337890pt;}
.ws23{word-spacing:2.391024pt;}
.ws38{word-spacing:2.444158pt;}
.wsbd{word-spacing:2.486682pt;}
.ws4f{word-spacing:2.497292pt;}
.ws50{word-spacing:2.550426pt;}
.wsa{word-spacing:2.550432pt;}
.wsbc{word-spacing:2.582323pt;}
.ws54{word-spacing:2.603559pt;}
.wse1{word-spacing:2.677965pt;}
.ws91{word-spacing:2.709827pt;}
.wse0{word-spacing:2.725786pt;}
.ws5e{word-spacing:2.762961pt;}
.ws68{word-spacing:2.816095pt;}
.wsb1{word-spacing:2.821427pt;}
.wsee{word-spacing:2.862208pt;}
.wsdf{word-spacing:2.862763pt;}
.wsf6{word-spacing:2.863113pt;}
.wsce{word-spacing:2.863403pt;}
.wsd6{word-spacing:2.863915pt;}
.wsbf{word-spacing:2.864230pt;}
.wsb7{word-spacing:2.864785pt;}
.wsf7{word-spacing:2.866739pt;}
.wsde{word-spacing:2.867174pt;}
.wse9{word-spacing:2.867405pt;}
.wscc{word-spacing:2.868736pt;}
.wsb5{word-spacing:2.869222pt;}
.ws5a{word-spacing:2.869229pt;}
.wsbe{word-spacing:2.869248pt;}
.wsd2{word-spacing:2.917069pt;}
.ws72{word-spacing:2.922363pt;}
.ws58{word-spacing:2.975497pt;}
.wse2{word-spacing:3.012710pt;}
.ws26{word-spacing:3.028630pt;}
.wsd7{word-spacing:3.035662pt;}
.wsc5{word-spacing:3.060531pt;}
.ws3b{word-spacing:3.081764pt;}
.wsd8{word-spacing:3.108352pt;}
.wsd9{word-spacing:3.114467pt;}
.ws97{word-spacing:3.134898pt;}
.wsb{word-spacing:3.152111pt;}
.ws4b{word-spacing:3.188032pt;}
.wse8{word-spacing:3.203994pt;}
.ws30{word-spacing:3.294300pt;}
.ws9a{word-spacing:3.400567pt;}
.ws4e{word-spacing:3.453701pt;}
.ws24{word-spacing:3.506835pt;}
.ws16{word-spacing:3.526276pt;}
.ws99{word-spacing:3.613103pt;}
.ws60{word-spacing:3.666237pt;}
.ws56{word-spacing:3.719371pt;}
.wsab{word-spacing:3.772505pt;}
.ws17{word-spacing:3.825664pt;}
.ws13{word-spacing:3.878772pt;}
.ws2a{word-spacing:3.931906pt;}
.wsc6{word-spacing:4.016947pt;}
.ws18{word-spacing:4.038174pt;}
.ws6a{word-spacing:4.091308pt;}
.ws98{word-spacing:4.144442pt;}
.ws95{word-spacing:4.197575pt;}
.ws2f{word-spacing:4.250709pt;}
.ws92{word-spacing:4.356977pt;}
.wsd4{word-spacing:4.399514pt;}
.ws6f{word-spacing:4.410111pt;}
.ws42{word-spacing:4.516379pt;}
.ws6e{word-spacing:4.622646pt;}
.wsc0{word-spacing:4.638618pt;}
.ws6d{word-spacing:4.675780pt;}
.ws3a{word-spacing:4.728914pt;}
.ws1f{word-spacing:4.782048pt;}
.wsf2{word-spacing:4.782080pt;}
.wse6{word-spacing:4.877722pt;}
.wsad{word-spacing:5.153985pt;}
.ws90{word-spacing:5.207119pt;}
.wsa4{word-spacing:5.260253pt;}
.wsb2{word-spacing:5.308109pt;}
.ws37{word-spacing:5.313387pt;}
.ws8b{word-spacing:5.366521pt;}
.wsdc{word-spacing:5.403750pt;}
.ws4a{word-spacing:5.472788pt;}
.ws8e{word-spacing:5.525922pt;}
.ws32{word-spacing:5.579056pt;}
.ws4c{word-spacing:5.632190pt;}
.ws8d{word-spacing:5.791591pt;}
.ws35{word-spacing:5.950993pt;}
.wsf1{word-spacing:6.025421pt;}
.ws3d{word-spacing:6.057261pt;}
.ws5c{word-spacing:6.216662pt;}
.ws46{word-spacing:6.269796pt;}
.ws9d{word-spacing:6.322930pt;}
.ws9c{word-spacing:6.429198pt;}
.wsd0{word-spacing:6.551450pt;}
.ws2c{word-spacing:6.854269pt;}
.ws61{word-spacing:7.013670pt;}
.wsaa{word-spacing:7.066804pt;}
.ws78{word-spacing:7.226206pt;}
.wsdd{word-spacing:8.120602pt;}
.wsef{word-spacing:8.120653pt;}
.wsf3{word-spacing:8.120883pt;}
.wsc7{word-spacing:8.124595pt;}
.wsb0{word-spacing:8.645228pt;}
.wsc1{word-spacing:8.655565pt;}
.wsf8{word-spacing:8.894669pt;}
.ws52{word-spacing:11.423781pt;}
.wsdb{word-spacing:13.724570pt;}
.ws1{word-spacing:19.715148pt;}
.ws81{word-spacing:192.809498pt;}
.ws7b{word-spacing:193.813734pt;}
.ws7e{word-spacing:223.416465pt;}
.ws83{word-spacing:277.691418pt;}
.ws84{word-spacing:345.022379pt;}
.wsa6{word-spacing:383.914743pt;}
.wsa5{word-spacing:414.233131pt;}
.ws7f{word-spacing:418.240717pt;}
._41{margin-left:-21.806285pt;}
._43{margin-left:-18.554470pt;}
._4{margin-left:-10.616218pt;}
._18{margin-left:-6.843646pt;}
._5{margin-left:-5.950993pt;}
._3f{margin-left:-5.026327pt;}
._1{margin-left:-4.128490pt;}
._2{margin-left:-2.752326pt;}
._3{margin-left:-1.338970pt;}
._42{width:2.630144pt;}
._34{width:3.931906pt;}
._40{width:6.694912pt;}
._0{width:9.670336pt;}
._46{width:10.950963pt;}
._14{width:11.870079pt;}
._c{width:12.975286pt;}
._f{width:14.473677pt;}
._9{width:15.844515pt;}
._7{width:16.875305pt;}
._11{width:17.810468pt;}
._8{width:19.128192pt;}
._12{width:20.031468pt;}
._d{width:20.934743pt;}
._10{width:21.891153pt;}
._19{width:22.964403pt;}
._13{width:24.069642pt;}
._37{width:25.397969pt;}
._17{width:26.513799pt;}
._36{width:27.735878pt;}
._e{width:28.692288pt;}
._3e{width:30.339438pt;}
._3b{width:32.262880pt;}
._16{width:33.261801pt;}
._1a{width:34.802587pt;}
._15{width:36.088518pt;}
._47{width:37.052323pt;}
._48{width:39.681457pt;}
._44{width:45.712257pt;}
._6{width:48.523575pt;}
._45{width:54.993920pt;}
._21{width:66.419123pt;}
._3a{width:70.987281pt;}
._23{width:73.548390pt;}
._22{width:78.469965pt;}
._35{width:81.507351pt;}
._1b{width:83.256013pt;}
._38{width:96.502374pt;}
._39{width:100.041114pt;}
._30{width:112.804685pt;}
._2c{width:125.194854pt;}
._26{width:127.251149pt;}
._2e{width:129.198874pt;}
._32{width:132.506854pt;}
._1e{width:141.326352pt;}
._25{width:155.465421pt;}
._29{width:160.263402pt;}
._31{width:164.451149pt;}
._3d{width:181.766861pt;}
._2f{width:185.635968pt;}
._2d{width:206.012006pt;}
._2a{width:260.814643pt;}
._2b{width:300.445158pt;}
._24{width:305.957478pt;}
._1d{width:328.337613pt;}
._20{width:337.997414pt;}
._3c{width:374.580326pt;}
._1c{width:389.213491pt;}
._1f{width:414.797619pt;}
._28{width:441.577267pt;}
._27{width:518.377472pt;}
._a{width:1485.525270pt;}
._33{width:2193.861270pt;}
._b{width:2215.114604pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:40.818667pt;}
.y20a{bottom:85.798667pt;}
.y254{bottom:88.885333pt;}
.y18{bottom:89.120000pt;}
.yef{bottom:90.122667pt;}
.y173{bottom:90.861333pt;}
.y185{bottom:92.664000pt;}
.y287{bottom:94.188000pt;}
.ya5{bottom:95.450667pt;}
.y232{bottom:98.704000pt;}
.y10f{bottom:100.152000pt;}
.y44{bottom:102.690667pt;}
.y17{bottom:105.020000pt;}
.y11c{bottom:105.213333pt;}
.y137{bottom:105.710667pt;}
.y253{bottom:105.908000pt;}
.y11a{bottom:106.953333pt;}
.yee{bottom:108.693333pt;}
.y172{bottom:109.432000pt;}
.y286{bottom:111.210667pt;}
.ya4{bottom:114.021333pt;}
.y231{bottom:117.273333pt;}
.y10e{bottom:118.721333pt;}
.y21a{bottom:119.824000pt;}
.y136{bottom:120.322667pt;}
.y16{bottom:120.920000pt;}
.y43{bottom:121.261333pt;}
.y252{bottom:122.930667pt;}
.yc3{bottom:123.782667pt;}
.y119{bottom:125.522667pt;}
.y157{bottom:126.944000pt;}
.yed{bottom:127.262667pt;}
.y171{bottom:128.001333pt;}
.y285{bottom:128.233333pt;}
.ya3{bottom:132.592000pt;}
.y230{bottom:135.844000pt;}
.y15{bottom:136.821333pt;}
.y10d{bottom:137.292000pt;}
.y219{bottom:138.394667pt;}
.y42{bottom:139.830667pt;}
.y251{bottom:139.953333pt;}
.y134{bottom:141.602667pt;}
.yc2{bottom:142.353333pt;}
.y118{bottom:144.093333pt;}
.y284{bottom:145.256000pt;}
.y156{bottom:145.514667pt;}
.yec{bottom:145.833333pt;}
.y170{bottom:146.572000pt;}
.y133{bottom:148.908000pt;}
.y1ea{bottom:149.726667pt;}
.ya2{bottom:151.161333pt;}
.y75{bottom:151.213333pt;}
.y14{bottom:152.721333pt;}
.y22f{bottom:154.414667pt;}
.y1b3{bottom:154.882667pt;}
.y10c{bottom:155.862667pt;}
.y135{bottom:156.214667pt;}
.y218{bottom:156.965333pt;}
.y250{bottom:156.976000pt;}
.y41{bottom:158.401333pt;}
.yc1{bottom:160.924000pt;}
.y283{bottom:162.278667pt;}
.y117{bottom:162.664000pt;}
.y155{bottom:164.085333pt;}
.yeb{bottom:164.404000pt;}
.y16f{bottom:165.142667pt;}
.y1e9{bottom:168.297333pt;}
.y13{bottom:168.621333pt;}
.y1b1{bottom:169.494667pt;}
.ya1{bottom:169.732000pt;}
.y74{bottom:169.784000pt;}
.y22e{bottom:172.984000pt;}
.y24f{bottom:173.998667pt;}
.y10b{bottom:174.433333pt;}
.y217{bottom:175.534667pt;}
.y40{bottom:176.972000pt;}
.y131{bottom:177.494667pt;}
.y282{bottom:179.301333pt;}
.yc0{bottom:179.493333pt;}
.y116{bottom:181.233333pt;}
.y154{bottom:182.654667pt;}
.yea{bottom:182.973333pt;}
.y16e{bottom:183.712000pt;}
.y1b0{bottom:184.106667pt;}
.y12{bottom:184.522667pt;}
.y130{bottom:184.800000pt;}
.y1e8{bottom:186.868000pt;}
.ya0{bottom:188.302667pt;}
.y73{bottom:188.354667pt;}
.y24e{bottom:191.021333pt;}
.y22d{bottom:191.554667pt;}
.y132{bottom:192.105333pt;}
.y10a{bottom:193.002667pt;}
.y216{bottom:194.105333pt;}
.y3f{bottom:195.541333pt;}
.y281{bottom:196.324000pt;}
.ybf{bottom:198.064000pt;}
.y1b2{bottom:198.718667pt;}
.y115{bottom:199.804000pt;}
.y11{bottom:200.422667pt;}
.y153{bottom:201.225333pt;}
.ye9{bottom:201.544000pt;}
.y1e7{bottom:205.437333pt;}
.y16d{bottom:206.268000pt;}
.y9f{bottom:206.872000pt;}
.y72{bottom:206.924000pt;}
.y24d{bottom:208.044000pt;}
.y22c{bottom:210.125333pt;}
.y109{bottom:211.573333pt;}
.y215{bottom:212.676000pt;}
.y280{bottom:213.346667pt;}
.y12e{bottom:213.385333pt;}
.ybe{bottom:216.634667pt;}
.y3e{bottom:218.097333pt;}
.y114{bottom:218.374667pt;}
.y152{bottom:219.796000pt;}
.y1af{bottom:219.998667pt;}
.ye8{bottom:220.114667pt;}
.y12d{bottom:220.692000pt;}
.y1e6{bottom:224.008000pt;}
.y10{bottom:224.293333pt;}
.y24c{bottom:225.066667pt;}
.y9e{bottom:225.442667pt;}
.y71{bottom:225.494667pt;}
.y12f{bottom:227.997333pt;}
.y22b{bottom:228.694667pt;}
.y108{bottom:230.144000pt;}
.y27f{bottom:230.369333pt;}
.y214{bottom:231.245333pt;}
.y1ab{bottom:234.610667pt;}
.ybd{bottom:235.205333pt;}
.y113{bottom:236.945333pt;}
.y16c{bottom:237.682667pt;}
.y151{bottom:238.365333pt;}
.ye7{bottom:238.685333pt;}
.yf{bottom:240.193333pt;}
.y1ad{bottom:241.916000pt;}
.y24b{bottom:242.089333pt;}
.y1e5{bottom:242.578667pt;}
.y9d{bottom:244.013333pt;}
.y70{bottom:244.065333pt;}
.y22a{bottom:247.265333pt;}
.y27e{bottom:247.392000pt;}
.y107{bottom:248.713333pt;}
.y1a9{bottom:249.222667pt;}
.y12c{bottom:249.277333pt;}
.y213{bottom:249.816000pt;}
.ybc{bottom:253.774667pt;}
.y112{bottom:255.514667pt;}
.ye{bottom:256.093333pt;}
.y16b{bottom:256.253333pt;}
.y1ac{bottom:256.528000pt;}
.y150{bottom:256.936000pt;}
.ye6{bottom:257.254667pt;}
.y24a{bottom:259.112000pt;}
.y1e4{bottom:261.148000pt;}
.y9c{bottom:262.582667pt;}
.y6f{bottom:262.634667pt;}
.y1aa{bottom:263.834667pt;}
.y12b{bottom:263.889333pt;}
.y27d{bottom:264.414667pt;}
.y229{bottom:265.836000pt;}
.y106{bottom:267.284000pt;}
.y212{bottom:268.386667pt;}
.yd{bottom:271.994667pt;}
.ybb{bottom:272.345333pt;}
.y16a{bottom:274.824000pt;}
.y14f{bottom:275.506667pt;}
.ye5{bottom:275.825333pt;}
.y249{bottom:276.134667pt;}
.y111{bottom:278.070667pt;}
.y1ae{bottom:278.446667pt;}
.y1e3{bottom:279.718667pt;}
.y9b{bottom:281.153333pt;}
.y6e{bottom:281.205333pt;}
.y27c{bottom:281.437333pt;}
.y228{bottom:284.405333pt;}
.y12a{bottom:285.168000pt;}
.y105{bottom:285.854667pt;}
.y211{bottom:286.956000pt;}
.yc{bottom:287.894667pt;}
.y3d{bottom:288.508000pt;}
.yba{bottom:290.916000pt;}
.y248{bottom:293.157333pt;}
.y169{bottom:293.393333pt;}
.y14e{bottom:294.076000pt;}
.ye4{bottom:294.396000pt;}
.y1e2{bottom:298.289333pt;}
.y27b{bottom:298.460000pt;}
.y9a{bottom:299.724000pt;}
.y1a8{bottom:299.725333pt;}
.y6d{bottom:299.776000pt;}
.y227{bottom:302.976000pt;}
.yb{bottom:303.794667pt;}
.y104{bottom:304.424000pt;}
.y210{bottom:305.526667pt;}
.y128{bottom:306.448000pt;}
.y1a4{bottom:307.032000pt;}
.y3c{bottom:307.077333pt;}
.yb9{bottom:309.485333pt;}
.y247{bottom:310.180000pt;}
.y168{bottom:311.964000pt;}
.y14d{bottom:312.646667pt;}
.ye3{bottom:312.965333pt;}
.y127{bottom:313.754667pt;}
.y1a6{bottom:314.337333pt;}
.y27a{bottom:315.482667pt;}
.y1e1{bottom:316.858667pt;}
.y99{bottom:318.293333pt;}
.y6c{bottom:318.345333pt;}
.ya{bottom:319.696000pt;}
.y129{bottom:321.060000pt;}
.y226{bottom:321.546667pt;}
.y1a3{bottom:321.644000pt;}
.y103{bottom:322.994667pt;}
.y20f{bottom:324.097333pt;}
.y246{bottom:327.202667pt;}
.yb8{bottom:328.056000pt;}
.y1a0{bottom:328.949333pt;}
.y167{bottom:330.534667pt;}
.y14c{bottom:331.217333pt;}
.ye2{bottom:331.536000pt;}
.y279{bottom:332.506667pt;}
.y1e0{bottom:335.429333pt;}
.y9{bottom:335.596000pt;}
.y1a2{bottom:336.254667pt;}
.y98{bottom:336.864000pt;}
.y225{bottom:340.117333pt;}
.y6b{bottom:340.901333pt;}
.y102{bottom:341.565333pt;}
.y3b{bottom:341.588000pt;}
.y125{bottom:342.340000pt;}
.y20e{bottom:342.666667pt;}
.y1a5{bottom:343.561333pt;}
.y245{bottom:344.225333pt;}
.yb7{bottom:346.626667pt;}
.y166{bottom:349.105333pt;}
.y278{bottom:349.529333pt;}
.y124{bottom:349.645333pt;}
.y14b{bottom:349.788000pt;}
.ye1{bottom:350.106667pt;}
.y190{bottom:350.610667pt;}
.y1a1{bottom:350.866667pt;}
.y8{bottom:351.496000pt;}
.y1df{bottom:354.000000pt;}
.y97{bottom:355.434667pt;}
.y126{bottom:356.952000pt;}
.y1a7{bottom:358.173333pt;}
.y224{bottom:358.686667pt;}
.y6a{bottom:359.472000pt;}
.y3a{bottom:360.158667pt;}
.y20d{bottom:361.237333pt;}
.y244{bottom:361.248000pt;}
.y184{bottom:362.057333pt;}
.y101{bottom:364.120000pt;}
.yb6{bottom:365.196000pt;}
.y277{bottom:366.552000pt;}
.y7{bottom:367.397333pt;}
.y165{bottom:367.674667pt;}
.y14a{bottom:368.357333pt;}
.ye0{bottom:368.676000pt;}
.y1de{bottom:372.570667pt;}
.y96{bottom:374.005333pt;}
.y223{bottom:377.257333pt;}
.y69{bottom:378.041333pt;}
.y123{bottom:378.230667pt;}
.y242{bottom:378.270667pt;}
.y243{bottom:378.272000pt;}
.y39{bottom:378.729333pt;}
.y19f{bottom:379.453333pt;}
.y183{bottom:380.628000pt;}
.y18f{bottom:382.026667pt;}
.y6{bottom:383.297333pt;}
.y276{bottom:383.574667pt;}
.yb5{bottom:383.766667pt;}
.y100{bottom:385.837333pt;}
.y164{bottom:386.245333pt;}
.y149{bottom:386.928000pt;}
.ydf{bottom:387.246667pt;}
.y95{bottom:392.574667pt;}
.y20c{bottom:392.906667pt;}
.y19e{bottom:394.064000pt;}
.y1dd{bottom:395.125333pt;}
.y222{bottom:395.828000pt;}
.y68{bottom:396.612000pt;}
.y38{bottom:397.298667pt;}
.y182{bottom:399.198667pt;}
.y241{bottom:399.278667pt;}
.y18e{bottom:400.597333pt;}
.y19b{bottom:401.370667pt;}
.yb4{bottom:402.337333pt;}
.y5{bottom:404.510667pt;}
.y163{bottom:404.816000pt;}
.y148{bottom:405.498667pt;}
.y121{bottom:406.816000pt;}
.y19d{bottom:408.676000pt;}
.yde{bottom:409.802667pt;}
.y20b{bottom:410.002667pt;}
.y94{bottom:411.145333pt;}
.y120{bottom:414.122667pt;}
.y221{bottom:414.397333pt;}
.y67{bottom:415.182667pt;}
.y37{bottom:415.869333pt;}
.y275{bottom:417.620000pt;}
.y181{bottom:417.768000pt;}
.y18d{bottom:419.166667pt;}
.yff{bottom:420.348000pt;}
.y4{bottom:420.412000pt;}
.yb3{bottom:420.906667pt;}
.y122{bottom:421.428000pt;}
.y19c{bottom:423.288000pt;}
.y162{bottom:423.385333pt;}
.y147{bottom:424.068000pt;}
.y1dc{bottom:426.541333pt;}
.y11f{bottom:428.734667pt;}
.y93{bottom:429.716000pt;}
.y220{bottom:432.968000pt;}
.y66{bottom:433.752000pt;}
.y240{bottom:433.789333pt;}
.y36{bottom:434.440000pt;}
.y274{bottom:434.642667pt;}
.y3{bottom:436.312000pt;}
.y18c{bottom:437.737333pt;}
.yfe{bottom:438.918667pt;}
.yb2{bottom:439.477333pt;}
.y180{bottom:440.324000pt;}
.ydd{bottom:441.217333pt;}
.y146{bottom:442.638667pt;}
.y19a{bottom:444.568000pt;}
.y1db{bottom:445.110667pt;}
.y161{bottom:445.941333pt;}
.y92{bottom:448.285333pt;}
.y11e{bottom:450.014667pt;}
.y23f{bottom:451.121333pt;}
.y21f{bottom:451.538667pt;}
.y273{bottom:451.665333pt;}
.y2{bottom:452.212000pt;}
.y65{bottom:452.322667pt;}
.y35{bottom:453.009333pt;}
.y18b{bottom:456.308000pt;}
.yfd{bottom:457.488000pt;}
.yb1{bottom:458.048000pt;}
.y198{bottom:459.180000pt;}
.ydc{bottom:459.788000pt;}
.y1da{bottom:463.681333pt;}
.y160{bottom:464.512000pt;}
.y195{bottom:466.485333pt;}
.y91{bottom:466.856000pt;}
.y23e{bottom:468.454667pt;}
.y272{bottom:468.688000pt;}
.y21e{bottom:470.108000pt;}
.y64{bottom:470.893333pt;}
.y34{bottom:471.580000pt;}
.y17f{bottom:471.740000pt;}
.y1{bottom:473.426667pt;}
.y197{bottom:473.792000pt;}
.y145{bottom:474.308000pt;}
.y18a{bottom:474.877333pt;}
.yfc{bottom:476.058667pt;}
.yb0{bottom:476.617333pt;}
.ydb{bottom:478.357333pt;}
.y11d{bottom:480.777333pt;}
.y194{bottom:481.097333pt;}
.y1d9{bottom:482.252000pt;}
.y15f{bottom:483.081333pt;}
.y90{bottom:485.426667pt;}
.y271{bottom:485.710667pt;}
.y23d{bottom:485.786667pt;}
.y196{bottom:488.404000pt;}
.y21d{bottom:488.678667pt;}
.y63{bottom:489.462667pt;}
.y209{bottom:489.613333pt;}
.y33{bottom:490.150667pt;}
.y17e{bottom:490.309333pt;}
.y189{bottom:493.448000pt;}
.yfb{bottom:494.629333pt;}
.yaf{bottom:495.188000pt;}
.yda{bottom:496.928000pt;}
.y1d8{bottom:500.821333pt;}
.y15e{bottom:501.652000pt;}
.y270{bottom:502.733333pt;}
.y199{bottom:503.016000pt;}
.y23c{bottom:503.118667pt;}
.y8f{bottom:503.996000pt;}
.y62{bottom:508.033333pt;}
.y208{bottom:508.182667pt;}
.y32{bottom:508.720000pt;}
.y17d{bottom:508.880000pt;}
.y21c{bottom:511.234667pt;}
.y188{bottom:512.018667pt;}
.yfa{bottom:513.198667pt;}
.yae{bottom:513.758667pt;}
.yd9{bottom:515.498667pt;}
.y1d7{bottom:519.392000pt;}
.y26f{bottom:519.756000pt;}
.y15d{bottom:520.222667pt;}
.y8e{bottom:522.566667pt;}
.y193{bottom:524.294667pt;}
.y61{bottom:526.604000pt;}
.y207{bottom:526.753333pt;}
.y31{bottom:527.290667pt;}
.y17c{bottom:527.450667pt;}
.y23b{bottom:528.421333pt;}
.y187{bottom:530.589333pt;}
.yf9{bottom:531.769333pt;}
.yad{bottom:532.329333pt;}
.yd8{bottom:534.069333pt;}
.y26e{bottom:536.778667pt;}
.y1d6{bottom:537.962667pt;}
.y15c{bottom:538.792000pt;}
.y8d{bottom:541.137333pt;}
.y21b{bottom:542.902667pt;}
.y60{bottom:545.173333pt;}
.y206{bottom:545.324000pt;}
.y23a{bottom:545.753333pt;}
.y30{bottom:545.861333pt;}
.y17b{bottom:546.020000pt;}
.y186{bottom:549.158667pt;}
.yf8{bottom:550.340000pt;}
.yac{bottom:550.898667pt;}
.yd7{bottom:552.638667pt;}
.y26d{bottom:553.801333pt;}
.y192{bottom:555.058667pt;}
.y1d5{bottom:556.532000pt;}
.y15b{bottom:557.362667pt;}
.y8c{bottom:559.706667pt;}
.y205{bottom:563.893333pt;}
.y2f{bottom:564.432000pt;}
.y17a{bottom:564.590667pt;}
.y5f{bottom:567.729333pt;}
.yf7{bottom:568.909333pt;}
.yab{bottom:569.469333pt;}
.y26c{bottom:570.824000pt;}
.y239{bottom:571.056000pt;}
.yd6{bottom:571.209333pt;}
.y1d4{bottom:575.102667pt;}
.y15a{bottom:575.933333pt;}
.y8b{bottom:578.277333pt;}
.y204{bottom:582.464000pt;}
.y2e{bottom:583.001333pt;}
.y179{bottom:583.161333pt;}
.y5e{bottom:586.300000pt;}
.yf6{bottom:587.480000pt;}
.y26b{bottom:587.846667pt;}
.yaa{bottom:588.040000pt;}
.y238{bottom:588.388000pt;}
.y1d3{bottom:593.673333pt;}
.yd5{bottom:593.764000pt;}
.y8a{bottom:596.848000pt;}
.y159{bottom:598.488000pt;}
.y203{bottom:601.034667pt;}
.y178{bottom:601.730667pt;}
.y5d{bottom:604.869333pt;}
.y237{bottom:605.720000pt;}
.yf5{bottom:606.050667pt;}
.ya9{bottom:606.609333pt;}
.y1d2{bottom:612.244000pt;}
.y89{bottom:615.418667pt;}
.y2d{bottom:618.574667pt;}
.y202{bottom:619.604000pt;}
.y177{bottom:620.301333pt;}
.y26a{bottom:621.892000pt;}
.y5c{bottom:623.440000pt;}
.yf4{bottom:624.620000pt;}
.ya8{bottom:625.180000pt;}
.y11b{bottom:629.165333pt;}
.y158{bottom:630.157333pt;}
.y1d1{bottom:630.813333pt;}
.y236{bottom:631.022667pt;}
.y2c{bottom:632.921333pt;}
.y88{bottom:633.988000pt;}
.y201{bottom:638.174667pt;}
.y176{bottom:638.872000pt;}
.y269{bottom:638.914667pt;}
.y5b{bottom:642.010667pt;}
.yf3{bottom:643.190667pt;}
.ya7{bottom:643.750667pt;}
.y2b{bottom:647.268000pt;}
.y235{bottom:648.354667pt;}
.y1d0{bottom:649.384000pt;}
.y87{bottom:652.558667pt;}
.y268{bottom:655.937333pt;}
.y175{bottom:657.441333pt;}
.y5a{bottom:660.580000pt;}
.y200{bottom:660.730667pt;}
.y2a{bottom:661.613333pt;}
.yf2{bottom:661.761333pt;}
.yd4{bottom:662.320000pt;}
.y234{bottom:665.686667pt;}
.ya6{bottom:666.305333pt;}
.y86{bottom:671.129333pt;}
.y28a{bottom:671.413333pt;}
.y267{bottom:672.961333pt;}
.y59{bottom:679.150667pt;}
.y29{bottom:679.817333pt;}
.yd3{bottom:680.890667pt;}
.y233{bottom:683.018667pt;}
.yf1{bottom:684.316000pt;}
.y191{bottom:684.876000pt;}
.y289{bottom:688.436000pt;}
.y174{bottom:689.110667pt;}
.y85{bottom:689.698667pt;}
.y266{bottom:689.984000pt;}
.y28{bottom:690.306667pt;}
.y1cf{bottom:694.284000pt;}
.y58{bottom:697.721333pt;}
.yd2{bottom:699.461333pt;}
.y1cb{bottom:701.590667pt;}
.y288{bottom:705.458667pt;}
.y265{bottom:707.006667pt;}
.y1ff{bottom:707.541333pt;}
.y84{bottom:708.269333pt;}
.y27{bottom:708.510667pt;}
.y1ce{bottom:708.896000pt;}
.yf0{bottom:712.890667pt;}
.y1fc{bottom:714.848000pt;}
.y1c9{bottom:716.202667pt;}
.y57{bottom:716.290667pt;}
.yd1{bottom:718.030667pt;}
.y26{bottom:718.998667pt;}
.y1fe{bottom:722.153333pt;}
.y1cd{bottom:723.508000pt;}
.y264{bottom:724.029333pt;}
.y83{bottom:726.840000pt;}
.y1fb{bottom:729.460000pt;}
.y1ca{bottom:730.813333pt;}
.y56{bottom:734.861333pt;}
.yd0{bottom:736.601333pt;}
.y1fd{bottom:736.765333pt;}
.y25{bottom:737.202667pt;}
.y1cc{bottom:738.120000pt;}
.y263{bottom:741.052000pt;}
.y82{bottom:745.409333pt;}
.y24{bottom:747.690667pt;}
.y55{bottom:753.432000pt;}
.ycf{bottom:755.172000pt;}
.y262{bottom:758.074667pt;}
.y1c8{bottom:759.400000pt;}
.y1fa{bottom:763.358667pt;}
.y81{bottom:763.980000pt;}
.y23{bottom:765.894667pt;}
.y144{bottom:768.017333pt;}
.y54{bottom:772.002667pt;}
.yce{bottom:773.742667pt;}
.y1c6{bottom:774.010667pt;}
.y261{bottom:775.097333pt;}
.y22{bottom:776.384000pt;}
.y1f8{bottom:777.970667pt;}
.y1c3{bottom:781.317333pt;}
.y80{bottom:782.550667pt;}
.y143{bottom:786.586667pt;}
.y1c5{bottom:788.622667pt;}
.y53{bottom:790.572000pt;}
.y260{bottom:792.120000pt;}
.ycd{bottom:792.312000pt;}
.y1f9{bottom:792.582667pt;}
.y21{bottom:794.588000pt;}
.y1c2{bottom:795.929333pt;}
.y7f{bottom:801.120000pt;}
.y1c4{bottom:803.234667pt;}
.y142{bottom:805.157333pt;}
.y52{bottom:809.142667pt;}
.ycc{bottom:810.882667pt;}
.y1c7{bottom:817.846667pt;}
.y1f7{bottom:819.174667pt;}
.y7e{bottom:819.690667pt;}
.y141{bottom:823.728000pt;}
.y25f{bottom:826.165333pt;}
.y1f4{bottom:826.481333pt;}
.y51{bottom:827.713333pt;}
.ycb{bottom:829.453333pt;}
.y1f6{bottom:833.786667pt;}
.y20{bottom:834.300000pt;}
.y7d{bottom:838.261333pt;}
.y1c1{bottom:839.126667pt;}
.y1f3{bottom:841.093333pt;}
.y140{bottom:842.297333pt;}
.y25e{bottom:843.188000pt;}
.y50{bottom:846.282667pt;}
.yca{bottom:848.022667pt;}
.y1f5{bottom:848.398667pt;}
.y1f{bottom:852.870667pt;}
.y1c0{bottom:853.738667pt;}
.y7c{bottom:856.832000pt;}
.y25d{bottom:860.210667pt;}
.y13f{bottom:860.868000pt;}
.y1bd{bottom:861.044000pt;}
.y4f{bottom:864.853333pt;}
.yc9{bottom:866.593333pt;}
.y1bf{bottom:868.350667pt;}
.y1e{bottom:871.440000pt;}
.y1f2{bottom:874.992000pt;}
.y7b{bottom:875.401333pt;}
.y25c{bottom:877.233333pt;}
.y13e{bottom:879.438667pt;}
.y1ef{bottom:882.297333pt;}
.y1be{bottom:882.962667pt;}
.y4e{bottom:883.424000pt;}
.yc8{bottom:885.164000pt;}
.y1f1{bottom:889.604000pt;}
.y1c{bottom:890.010667pt;}
.y7a{bottom:893.972000pt;}
.y25b{bottom:894.256000pt;}
.y1d{bottom:894.833333pt;}
.y1ee{bottom:896.909333pt;}
.y13d{bottom:898.009333pt;}
.y4d{bottom:901.993333pt;}
.yc7{bottom:903.733333pt;}
.y1f0{bottom:904.216000pt;}
.y1bc{bottom:904.241333pt;}
.y25a{bottom:911.278667pt;}
.y79{bottom:912.542667pt;}
.y13c{bottom:916.578667pt;}
.y1bb{bottom:918.853333pt;}
.y4c{bottom:920.564000pt;}
.yc6{bottom:922.304000pt;}
.y1b{bottom:924.521333pt;}
.y1b7{bottom:926.160000pt;}
.y110{bottom:926.289333pt;}
.y259{bottom:928.301333pt;}
.y1ed{bottom:930.809333pt;}
.y78{bottom:931.112000pt;}
.y1ba{bottom:933.465333pt;}
.y13b{bottom:935.149333pt;}
.y4b{bottom:939.134667pt;}
.y1b6{bottom:940.772000pt;}
.yc5{bottom:940.874667pt;}
.y258{bottom:945.324000pt;}
.y1eb{bottom:945.421333pt;}
.y1b9{bottom:948.077333pt;}
.y1a{bottom:952.377333pt;}
.y77{bottom:953.668000pt;}
.y13a{bottom:953.720000pt;}
.y4a{bottom:957.704000pt;}
.y1ec{bottom:960.032000pt;}
.y257{bottom:962.346667pt;}
.y1b8{bottom:962.689333pt;}
.yc4{bottom:963.429333pt;}
.y139{bottom:972.289333pt;}
.y76{bottom:973.128000pt;}
.y49{bottom:976.274667pt;}
.y256{bottom:979.369333pt;}
.y19{bottom:980.232000pt;}
.y1b5{bottom:983.969333pt;}
.y138{bottom:990.860000pt;}
.y48{bottom:994.845333pt;}
.y255{bottom:996.392000pt;}
.y47{bottom:1013.414667pt;}
.y1b4{bottom:1014.732000pt;}
.y46{bottom:1066.841333pt;}
.h9{height:28.947524pt;}
.h6{height:29.074944pt;}
.h2{height:33.771789pt;}
.he{height:34.430976pt;}
.h12{height:35.052646pt;}
.h5{height:38.256384pt;}
.ha{height:38.596538pt;}
.h3{height:38.947124pt;}
.hd{height:43.421286pt;}
.hc{height:45.907968pt;}
.hb{height:48.245551pt;}
.h8{height:48.360277pt;}
.h7{height:48.365611pt;}
.h13{height:54.898620pt;}
.h4{height:68.861952pt;}
.hf{height:72.642620pt;}
.h10{height:72.647953pt;}
.h11{height:101.869286pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x57{left:55.592000pt;}
.x63{left:76.309333pt;}
.x58{left:156.732000pt;}
.x66{left:168.386667pt;}
.x2{left:169.754667pt;}
.x65{left:176.192000pt;}
.x3{left:177.990667pt;}
.x5b{left:191.617333pt;}
.xe{left:220.912000pt;}
.xc{left:221.858667pt;}
.xd{left:239.605333pt;}
.xf{left:250.204000pt;}
.x35{left:254.650667pt;}
.x36{left:267.934667pt;}
.x45{left:269.837333pt;}
.x4{left:276.169333pt;}
.x42{left:278.237333pt;}
.x2a{left:288.560000pt;}
.x43{left:291.520000pt;}
.x5{left:297.296000pt;}
.x2b{left:301.844000pt;}
.x53{left:310.594667pt;}
.x59{left:315.472000pt;}
.x3a{left:334.260000pt;}
.x3b{left:347.544000pt;}
.x5c{left:366.042667pt;}
.x40{left:380.132000pt;}
.x33{left:387.672000pt;}
.x26{left:390.560000pt;}
.x41{left:393.414667pt;}
.x28{left:395.608000pt;}
.x34{left:400.954667pt;}
.x27{left:403.842667pt;}
.x62{left:405.525333pt;}
.x29{left:408.890667pt;}
.x6{left:410.596000pt;}
.x16{left:420.598667pt;}
.x1e{left:424.582667pt;}
.x17{left:427.240000pt;}
.x7{left:428.402667pt;}
.x1a{left:433.309333pt;}
.x1f{left:437.866667pt;}
.x1b{left:439.950667pt;}
.x4d{left:441.149333pt;}
.x1c{left:446.558667pt;}
.x30{left:450.366667pt;}
.x4e{left:454.433333pt;}
.x1d{left:459.842667pt;}
.x38{left:466.433333pt;}
.x5a{left:472.652000pt;}
.x39{left:479.716000pt;}
.x10{left:489.172000pt;}
.x11{left:495.813333pt;}
.x31{left:502.080000pt;}
.x32{left:508.721333pt;}
.x46{left:524.230667pt;}
.x4a{left:535.545333pt;}
.x47{left:537.514667pt;}
.x48{left:540.901333pt;}
.x37{left:542.508000pt;}
.x12{left:546.298667pt;}
.x4b{left:548.829333pt;}
.x13{left:552.940000pt;}
.x49{left:554.185333pt;}
.x14{left:556.230667pt;}
.x44{left:559.180000pt;}
.x5f{left:560.441333pt;}
.x15{left:562.873333pt;}
.x4c{left:565.500000pt;}
.x5e{left:570.104000pt;}
.x60{left:576.982667pt;}
.x5d{left:578.508000pt;}
.x2e{left:579.481333pt;}
.x64{left:581.108000pt;}
.x51{left:585.101333pt;}
.x3c{left:588.021333pt;}
.x8{left:590.293333pt;}
.x2f{left:592.765333pt;}
.x9{left:596.005333pt;}
.x52{left:597.985333pt;}
.x3d{left:601.305333pt;}
.x56{left:606.186667pt;}
.x54{left:609.845333pt;}
.x3e{left:614.002667pt;}
.x55{left:622.729333pt;}
.x3f{left:627.286667pt;}
.x2c{left:645.061333pt;}
.x2d{left:658.345333pt;}
.x22{left:667.345333pt;}
.x24{left:673.084000pt;}
.x20{left:679.261333pt;}
.x23{left:680.629333pt;}
.x25{left:686.366667pt;}
.x21{left:692.544000pt;}
.x61{left:699.337333pt;}
.x4f{left:709.673333pt;}
.x50{left:722.957333pt;}
.xa{left:726.244000pt;}
.x18{left:733.546667pt;}
.x19{left:740.188000pt;}
.xb{left:744.050667pt;}
}




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