
    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_da6a73ff98d67c417369903a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.748047;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_cf5ad8487953438b970046ff.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959180;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_88de2abaf6d01aaac45dab81.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4b7f15bb47573c91a14dd509.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_91fb61b629e07dd4e3656f31.woff2')format("woff");}.ff5{font-family:ff5;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;}
.m7{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);}
.m19{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);}
.m8{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);}
.m5{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);}
.m1f{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);}
.m3{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);}
.m12{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m1a{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);}
.me{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);}
.m4{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);}
.m27{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);}
.md{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);}
.m26{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);}
.m6{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);}
.m18{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m11{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);}
.m22{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);}
.m24{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);}
.m23{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.mb{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);}
.m21{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);}
.m29{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);}
.ma{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);}
.m14{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);}
.mf{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);}
.m20{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);}
.m9{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);}
.m17{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);}
.m13{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);}
.m16{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000435px;}
.ls14{letter-spacing:0.001080px;}
.lsc{letter-spacing:0.001133px;}
.ls5{letter-spacing:0.001738px;}
.ls13{letter-spacing:0.001996px;}
.ls7{letter-spacing:0.002725px;}
.ls12{letter-spacing:0.003358px;}
.ls15{letter-spacing:0.003650px;}
.ls11{letter-spacing:0.004130px;}
.ls6{letter-spacing:0.004200px;}
.ls1{letter-spacing:10.461960px;}
.ls4{letter-spacing:11.955810px;}
.ls1b{letter-spacing:13.022820px;}
.ls1a{letter-spacing:13.264080px;}
.ls18{letter-spacing:13.264380px;}
.ls16{letter-spacing:13.447260px;}
.ls19{letter-spacing:13.449600px;}
.ls17{letter-spacing:13.454280px;}
.ls1c{letter-spacing:13.667880px;}
.ls1d{letter-spacing:13.677060px;}
.ls9{letter-spacing:14.806560px;}
.lse{letter-spacing:14.875860px;}
.lsd{letter-spacing:14.878200px;}
.ls10{letter-spacing:15.057983px;}
.lsf{letter-spacing:15.959259px;}
.ls8{letter-spacing:16.018082px;}
.lsb{letter-spacing:18.712200px;}
.lsa{letter-spacing:21.635729px;}
.ls2{letter-spacing:25.105954px;}
.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;}
}
.ws0{word-spacing:-40.032000px;}
.ws1{word-spacing:-25.020000px;}
.ws2{word-spacing:-17.514000px;}
.ws42{word-spacing:-0.059776px;}
.ws5c{word-spacing:-0.053798px;}
.ws4b{word-spacing:-0.047821px;}
.ws9{word-spacing:-0.041843px;}
.ws3{word-spacing:0.000000px;}
.ws5b{word-spacing:8.930265px;}
.ws6{word-spacing:10.417727px;}
.wsa{word-spacing:10.417811px;}
.wsd{word-spacing:10.417895px;}
.wsb{word-spacing:10.418062px;}
.ws8{word-spacing:10.418188px;}
.wsc{word-spacing:10.418481px;}
.ws5{word-spacing:10.418857px;}
.ws7{word-spacing:10.419317px;}
.ws12{word-spacing:10.502543px;}
.ws1e4{word-spacing:10.866147px;}
.ws77{word-spacing:11.177081px;}
.wsc4{word-spacing:11.296632px;}
.ws158{word-spacing:11.727137px;}
.ws16{word-spacing:11.758287px;}
.ws17{word-spacing:11.798958px;}
.ws1c0{word-spacing:11.836226px;}
.ws4a{word-spacing:11.904179px;}
.ws1d{word-spacing:11.906277px;}
.ws1a4{word-spacing:11.906469px;}
.ws4c{word-spacing:11.907951px;}
.ws4d{word-spacing:11.908238px;}
.ws23{word-spacing:11.997043px;}
.ws1c{word-spacing:12.001871px;}
.ws169{word-spacing:12.133431px;}
.ws168{word-spacing:12.134327px;}
.ws167{word-spacing:12.135224px;}
.ws92{word-spacing:12.193804px;}
.ws1a5{word-spacing:12.432070px;}
.ws1cd{word-spacing:12.432368px;}
.ws46{word-spacing:12.493160px;}
.ws47{word-spacing:12.493796px;}
.wscd{word-spacing:12.552099px;}
.ws209{word-spacing:12.749683px;}
.ws3f{word-spacing:12.791082px;}
.ws124{word-spacing:12.791680px;}
.ws3e{word-spacing:12.792875px;}
.ws20b{word-spacing:12.803965px;}
.ws20a{word-spacing:12.804557px;}
.ws4{word-spacing:12.930998px;}
.ws28{word-spacing:12.965199px;}
.ws123{word-spacing:12.972082px;}
.ws1f4{word-spacing:13.018298px;}
.ws1f3{word-spacing:13.018890px;}
.ws1f2{word-spacing:13.019805px;}
.ws9c{word-spacing:13.031738px;}
.ws200{word-spacing:13.071774px;}
.ws15d{word-spacing:13.072419px;}
.ws26{word-spacing:13.072742px;}
.ws9b{word-spacing:13.090199px;}
.ws16c{word-spacing:13.091813px;}
.ws15e{word-spacing:13.126325px;}
.ws15c{word-spacing:13.126917px;}
.ws15f{word-spacing:13.140845px;}
.wsfa{word-spacing:13.149556px;}
.ws6d{word-spacing:13.151050px;}
.ws15b{word-spacing:13.163645px;}
.ws1e8{word-spacing:13.179693px;}
.ws66{word-spacing:13.179747px;}
.ws204{word-spacing:13.179855px;}
.ws205{word-spacing:13.180124px;}
.ws67{word-spacing:13.180178px;}
.ws1e7{word-spacing:13.180985px;}
.ws15a{word-spacing:13.181200px;}
.ws203{word-spacing:13.181630px;}
.ws1d3{word-spacing:13.209631px;}
.ws19f{word-spacing:13.209929px;}
.ws19d{word-spacing:13.210228px;}
.ws6e{word-spacing:13.211424px;}
.ws19e{word-spacing:13.219542px;}
.ws154{word-spacing:13.233330px;}
.ws155{word-spacing:13.233599px;}
.ws202{word-spacing:13.234406px;}
.ws224{word-spacing:13.287183px;}
.ws216{word-spacing:13.287505px;}
.ws29{word-spacing:13.287613px;}
.ws193{word-spacing:13.288043px;}
.ws1e9{word-spacing:13.288205px;}
.ws1f9{word-spacing:13.289227px;}
.ws194{word-spacing:13.289281px;}
.ws159{word-spacing:13.305245px;}
.ws149{word-spacing:13.330975px;}
.ws1fa{word-spacing:13.340927px;}
.ws21a{word-spacing:13.340981px;}
.ws1f8{word-spacing:13.341089px;}
.ws1ec{word-spacing:13.341142px;}
.ws19c{word-spacing:13.342487px;}
.ws59{word-spacing:13.342703px;}
.ws225{word-spacing:13.342972px;}
.ws219{word-spacing:13.343187px;}
.ws1ed{word-spacing:13.349910px;}
.wsa7{word-spacing:13.389256px;}
.wsea{word-spacing:13.390153px;}
.wse9{word-spacing:13.390631px;}
.ws21e{word-spacing:13.394454px;}
.wse6{word-spacing:13.394618px;}
.ws22f{word-spacing:13.394726px;}
.ws22{word-spacing:13.394779px;}
.ws212{word-spacing:13.394833px;}
.wse4{word-spacing:13.394941px;}
.ws235{word-spacing:13.395102px;}
.ws2c{word-spacing:13.395210px;}
.ws22e{word-spacing:13.395264px;}
.ws231{word-spacing:13.395317px;}
.ws1ee{word-spacing:13.395371px;}
.ws5a{word-spacing:13.395479px;}
.wse2{word-spacing:13.395533px;}
.ws2a{word-spacing:13.395640px;}
.ws21b{word-spacing:13.395694px;}
.wse5{word-spacing:13.395802px;}
.ws11e{word-spacing:13.395909px;}
.ws226{word-spacing:13.395963px;}
.wse1{word-spacing:13.396017px;}
.ws156{word-spacing:13.396124px;}
.ws62{word-spacing:13.396555px;}
.ws19a{word-spacing:13.396662px;}
.wse3{word-spacing:13.396716px;}
.ws228{word-spacing:13.396931px;}
.ws157{word-spacing:13.399445px;}
.wsa6{word-spacing:13.448195px;}
.ws199{word-spacing:13.448578px;}
.ws230{word-spacing:13.448847px;}
.ws1dd{word-spacing:13.449062px;}
.ws198{word-spacing:13.449116px;}
.ws1e5{word-spacing:13.449223px;}
.ws69{word-spacing:13.449385px;}
.ws19b{word-spacing:13.449761px;}
.ws1df{word-spacing:13.450030px;}
.ws1dc{word-spacing:13.450622px;}
.ws6a{word-spacing:13.496606px;}
.wsdd{word-spacing:13.502484px;}
.wsde{word-spacing:13.502591px;}
.ws201{word-spacing:13.502807px;}
.ws13a{word-spacing:13.502860px;}
.ws1e0{word-spacing:13.502914px;}
.ws6b{word-spacing:13.503022px;}
.ws21{word-spacing:13.503076px;}
.ws13b{word-spacing:13.503183px;}
.ws61{word-spacing:13.503452px;}
.ws39{word-spacing:13.508867px;}
.wsc8{word-spacing:13.508987px;}
.ws13e{word-spacing:13.525373px;}
.ws13f{word-spacing:13.529179px;}
.ws60{word-spacing:13.556175px;}
.ws21c{word-spacing:13.556551px;}
.ws140{word-spacing:13.557573px;}
.wsdc{word-spacing:13.558327px;}
.wsac{word-spacing:13.568344px;}
.ws210{word-spacing:13.601060px;}
.ws220{word-spacing:13.608600px;}
.ws1fe{word-spacing:13.610027px;}
.ws1fd{word-spacing:13.610457px;}
.ws1ef{word-spacing:13.610565px;}
.ws21d{word-spacing:13.610619px;}
.ws221{word-spacing:13.611426px;}
.ws6c{word-spacing:13.611479px;}
.ws21f{word-spacing:13.611587px;}
.ws211{word-spacing:13.611802px;}
.ws20f{word-spacing:13.612125px;}
.wsc7{word-spacing:13.627761px;}
.ws196{word-spacing:13.665116px;}
.ws234{word-spacing:13.665170px;}
.ws7a{word-spacing:13.686910px;}
.ws7c{word-spacing:13.687357px;}
.ws7f{word-spacing:13.687895px;}
.ws7d{word-spacing:13.688792px;}
.ws7b{word-spacing:13.689509px;}
.ws7e{word-spacing:13.690765px;}
.ws24{word-spacing:13.719022px;}
.ws83{word-spacing:13.747116px;}
.wsa8{word-spacing:13.747372px;}
.wsce{word-spacing:13.747432px;}
.wsb7{word-spacing:13.747850px;}
.wsc6{word-spacing:13.748388px;}
.ws84{word-spacing:13.748747px;}
.ws3a{word-spacing:13.749344px;}
.wsb6{word-spacing:13.763179px;}
.ws5d{word-spacing:13.772767px;}
.ws5e{word-spacing:13.773466px;}
.wsa5{word-spacing:13.807327px;}
.wsc5{word-spacing:13.807685px;}
.wsca{word-spacing:13.807805px;}
.ws5f{word-spacing:13.825758px;}
.wsa4{word-spacing:13.867102px;}
.ws1f5{word-spacing:13.879611px;}
.ws1f6{word-spacing:13.879987px;}
.ws214{word-spacing:13.933032px;}
.ws215{word-spacing:13.933140px;}
.wsb3{word-spacing:13.987012px;}
.wsae{word-spacing:13.988088px;}
.ws1c6{word-spacing:14.046549px;}
.ws38{word-spacing:14.047445px;}
.wsad{word-spacing:14.047864px;}
.ws1c7{word-spacing:14.048043px;}
.ws50{word-spacing:14.106743px;}
.wsaa{word-spacing:14.107340px;}
.wsa2{word-spacing:14.107520px;}
.ws27{word-spacing:14.149141px;}
.wsd4{word-spacing:14.166160px;}
.wsa9{word-spacing:14.166219px;}
.ws181{word-spacing:14.166518px;}
.wsd5{word-spacing:14.167116px;}
.ws1e2{word-spacing:14.256576px;}
.ws1f7{word-spacing:14.311450px;}
.ws1c8{word-spacing:14.345905px;}
.ws1a9{word-spacing:14.363258px;}
.ws1ab{word-spacing:14.363689px;}
.ws1aa{word-spacing:14.364011px;}
.ws20c{word-spacing:14.364872px;}
.ws144{word-spacing:14.407055px;}
.ws173{word-spacing:14.524694px;}
.ws1c3{word-spacing:14.525411px;}
.ws1b8{word-spacing:14.525710px;}
.ws1d8{word-spacing:14.584170px;}
.ws103{word-spacing:14.584350px;}
.ws152{word-spacing:14.584469px;}
.ws87{word-spacing:14.584649px;}
.ws137{word-spacing:14.584948px;}
.ws185{word-spacing:14.585486px;}
.wse0{word-spacing:14.633434px;}
.ws138{word-spacing:14.643946px;}
.ws12a{word-spacing:14.644125px;}
.ws113{word-spacing:14.644305px;}
.ws1c2{word-spacing:14.644424px;}
.ws98{word-spacing:14.644544px;}
.ws4e{word-spacing:14.644783px;}
.ws102{word-spacing:14.644843px;}
.ws1be{word-spacing:14.645022px;}
.ws1cc{word-spacing:14.645440px;}
.wsc3{word-spacing:14.645919px;}
.ws101{word-spacing:14.646158px;}
.wsdf{word-spacing:14.686425px;}
.ws57{word-spacing:14.703662px;}
.ws1b6{word-spacing:14.703722px;}
.wsef{word-spacing:14.703781px;}
.ws186{word-spacing:14.703901px;}
.wsfe{word-spacing:14.703961px;}
.ws1d4{word-spacing:14.704200px;}
.ws191{word-spacing:14.704319px;}
.ws119{word-spacing:14.704439px;}
.ws11b{word-spacing:14.704558px;}
.ws187{word-spacing:14.704798px;}
.ws190{word-spacing:14.705037px;}
.ws1cb{word-spacing:14.705395px;}
.ws11c{word-spacing:14.705455px;}
.ws1ae{word-spacing:14.705634px;}
.ws8e{word-spacing:14.705694px;}
.wsab{word-spacing:14.705874px;}
.ws1d5{word-spacing:14.705993px;}
.wsff{word-spacing:14.733208px;}
.ws100{word-spacing:14.733334px;}
.ws11a{word-spacing:14.760873px;}
.ws17a{word-spacing:14.763437px;}
.ws106{word-spacing:14.763497px;}
.wsf9{word-spacing:14.763557px;}
.wsbd{word-spacing:14.763617px;}
.wsbb{word-spacing:14.763677px;}
.ws8d{word-spacing:14.763736px;}
.ws14e{word-spacing:14.763796px;}
.ws8c{word-spacing:14.764035px;}
.ws3b{word-spacing:14.764095px;}
.ws33{word-spacing:14.764155px;}
.ws133{word-spacing:14.764215px;}
.ws171{word-spacing:14.764274px;}
.ws1a3{word-spacing:14.764454px;}
.ws1d6{word-spacing:14.764573px;}
.ws120{word-spacing:14.764992px;}
.ws176{word-spacing:14.765051px;}
.ws55{word-spacing:14.765111px;}
.ws1bb{word-spacing:14.765171px;}
.ws150{word-spacing:14.765231px;}
.wse8{word-spacing:14.765291px;}
.ws54{word-spacing:14.765589px;}
.ws1e{word-spacing:14.776996px;}
.ws175{word-spacing:14.812542px;}
.ws16d{word-spacing:14.823333px;}
.ws2f{word-spacing:14.823751px;}
.wsf7{word-spacing:14.823930px;}
.ws172{word-spacing:14.824050px;}
.ws17b{word-spacing:14.824229px;}
.ws108{word-spacing:14.824289px;}
.ws12e{word-spacing:14.824349px;}
.ws14a{word-spacing:14.824468px;}
.ws3d{word-spacing:14.824528px;}
.wsbc{word-spacing:14.824588px;}
.ws107{word-spacing:14.824648px;}
.ws10a{word-spacing:14.824827px;}
.wsf8{word-spacing:14.824887px;}
.ws16f{word-spacing:14.825305px;}
.ws1ca{word-spacing:14.825365px;}
.ws1a0{word-spacing:14.825631px;}
.ws109{word-spacing:14.853258px;}
.ws192{word-spacing:14.875712px;}
.ws10b{word-spacing:14.877084px;}
.ws99{word-spacing:14.882929px;}
.wsb9{word-spacing:14.882989px;}
.ws17e{word-spacing:14.883048px;}
.ws3c{word-spacing:14.883108px;}
.ws153{word-spacing:14.883168px;}
.ws1b{word-spacing:14.883228px;}
.wsdb{word-spacing:14.883407px;}
.wse7{word-spacing:14.883527px;}
.ws73{word-spacing:14.883646px;}
.wscf{word-spacing:14.883706px;}
.wsb8{word-spacing:14.883826px;}
.ws76{word-spacing:14.883945px;}
.ws11f{word-spacing:14.884124px;}
.wsa1{word-spacing:14.884244px;}
.ws18f{word-spacing:14.884304px;}
.ws1a{word-spacing:14.884423px;}
.ws12b{word-spacing:14.885021px;}
.ws58{word-spacing:14.885141px;}
.ws85{word-spacing:14.885320px;}
.wsf2{word-spacing:14.893424px;}
.wsf1{word-spacing:14.895566px;}
.ws14d{word-spacing:14.942944px;}
.ws37{word-spacing:14.943362px;}
.ws48{word-spacing:14.943482px;}
.ws1d2{word-spacing:14.943541px;}
.ws93{word-spacing:14.943661px;}
.ws151{word-spacing:14.943780px;}
.ws136{word-spacing:14.943960px;}
.ws56{word-spacing:14.944079px;}
.ws18a{word-spacing:14.944378px;}
.ws18c{word-spacing:14.945654px;}
.ws14c{word-spacing:14.984189px;}
.ws40{word-spacing:15.002480px;}
.ws1ad{word-spacing:15.002600px;}
.ws71{word-spacing:15.002659px;}
.ws145{word-spacing:15.002719px;}
.ws1b3{word-spacing:15.002899px;}
.ws135{word-spacing:15.003078px;}
.wsc1{word-spacing:15.003138px;}
.ws1bf{word-spacing:15.003197px;}
.ws18e{word-spacing:15.003616px;}
.wsf0{word-spacing:15.004094px;}
.ws72{word-spacing:15.004572px;}
.ws1da{word-spacing:15.062256px;}
.ws121{word-spacing:15.062315px;}
.wsee{word-spacing:15.062375px;}
.wsba{word-spacing:15.062435px;}
.ws32{word-spacing:15.062495px;}
.ws16e{word-spacing:15.062555px;}
.wsec{word-spacing:15.062674px;}
.ws164{word-spacing:15.062853px;}
.wsc2{word-spacing:15.062913px;}
.ws1a1{word-spacing:15.062973px;}
.ws148{word-spacing:15.063451px;}
.ws146{word-spacing:15.064288px;}
.ws179{word-spacing:15.064348px;}
.wsed{word-spacing:15.068366px;}
.ws177{word-spacing:15.088534px;}
.ws90{word-spacing:15.101405px;}
.ws105{word-spacing:15.116189px;}
.ws10e{word-spacing:15.116510px;}
.ws88{word-spacing:15.117238px;}
.wsf5{word-spacing:15.122270px;}
.ws110{word-spacing:15.122330px;}
.ws8f{word-spacing:15.122509px;}
.ws8a{word-spacing:15.122569px;}
.ws49{word-spacing:15.122629px;}
.ws125{word-spacing:15.122808px;}
.ws1d0{word-spacing:15.122868px;}
.ws178{word-spacing:15.122928px;}
.ws30{word-spacing:15.123047px;}
.ws10f{word-spacing:15.123107px;}
.ws31{word-spacing:15.123227px;}
.wsa0{word-spacing:15.123287px;}
.ws104{word-spacing:15.123705px;}
.ws89{word-spacing:15.123765px;}
.ws112{word-spacing:15.123825px;}
.ws91{word-spacing:15.124123px;}
.ws1b7{word-spacing:15.124363px;}
.ws111{word-spacing:15.139766px;}
.ws68{word-spacing:15.171687px;}
.ws18b{word-spacing:15.181867px;}
.ws1b2{word-spacing:15.181926px;}
.ws1a2{word-spacing:15.182046px;}
.wsfc{word-spacing:15.182345px;}
.wsf6{word-spacing:15.182644px;}
.wsd2{word-spacing:15.182943px;}
.ws17d{word-spacing:15.183242px;}
.ws165{word-spacing:15.183839px;}
.wsc9{word-spacing:15.184078px;}
.ws45{word-spacing:15.241702px;}
.ws161{word-spacing:15.243077px;}
.ws160{word-spacing:15.301836px;}
.ws142{word-spacing:15.302673px;}
.ws195{word-spacing:15.331522px;}
.ws35{word-spacing:15.361313px;}
.ws34{word-spacing:15.361612px;}
.ws139{word-spacing:15.361851px;}
.ws36{word-spacing:15.363286px;}
.wsf4{word-spacing:15.423061px;}
.wsf3{word-spacing:15.436746px;}
.wsfb{word-spacing:15.482777px;}
.ws1e3{word-spacing:15.559824px;}
.ws1d9{word-spacing:15.601432px;}
.ws9e{word-spacing:15.660311px;}
.ws9d{word-spacing:15.660430px;}
.ws4f{word-spacing:15.660609px;}
.ws1b1{word-spacing:15.781476px;}
.ws25{word-spacing:15.815923px;}
.ws116{word-spacing:15.839518px;}
.ws170{word-spacing:15.839817px;}
.ws118{word-spacing:15.841251px;}
.ws117{word-spacing:15.841371px;}
.ws115{word-spacing:15.848548px;}
.ws114{word-spacing:15.861752px;}
.ws65{word-spacing:15.869613px;}
.ws64{word-spacing:15.869775px;}
.ws63{word-spacing:15.871120px;}
.ws14{word-spacing:15.899302px;}
.wsd3{word-spacing:15.899831px;}
.ws189{word-spacing:15.900310px;}
.ws183{word-spacing:15.900967px;}
.wsd7{word-spacing:15.960738px;}
.wsd8{word-spacing:15.960743px;}
.ws182{word-spacing:15.962870px;}
.ws128{word-spacing:16.198291px;}
.ws9a{word-spacing:16.259441px;}
.ws12f{word-spacing:16.377498px;}
.ws130{word-spacing:16.378933px;}
.ws206{word-spacing:16.407705px;}
.wseb{word-spacing:16.438649px;}
.ws16b{word-spacing:16.556705px;}
.ws17c{word-spacing:16.558140px;}
.ws217{word-spacing:16.570338px;}
.ws1ea{word-spacing:16.570660px;}
.ws218{word-spacing:16.613874px;}
.ws2b{word-spacing:16.615469px;}
.ws1f1{word-spacing:16.616364px;}
.ws16a{word-spacing:16.617916px;}
.ws213{word-spacing:16.618442px;}
.ws1eb{word-spacing:16.619914px;}
.ws20e{word-spacing:16.623168px;}
.ws20{word-spacing:16.623867px;}
.ws131{word-spacing:16.736092px;}
.ws1db{word-spacing:16.736809px;}
.ws1ff{word-spacing:16.756738px;}
.ws1a7{word-spacing:16.784294px;}
.ws1a8{word-spacing:16.785585px;}
.ws1a6{word-spacing:16.785639px;}
.ws233{word-spacing:16.838146px;}
.ws1ba{word-spacing:16.857735px;}
.ws232{word-spacing:16.893774px;}
.ws1f0{word-spacing:16.893827px;}
.ws14f{word-spacing:16.915777px;}
.ws1d1{word-spacing:17.036046px;}
.ws80{word-spacing:17.092634px;}
.ws81{word-spacing:17.094214px;}
.ws1ce{word-spacing:17.094985px;}
.ws188{word-spacing:17.095822px;}
.ws82{word-spacing:17.096120px;}
.ws1d7{word-spacing:17.096718px;}
.ws229{word-spacing:17.160829px;}
.ws22a{word-spacing:17.161259px;}
.ws8b{word-spacing:17.214476px;}
.ws163{word-spacing:17.215373px;}
.ws75{word-spacing:17.274491px;}
.ws147{word-spacing:17.274790px;}
.ws74{word-spacing:17.275089px;}
.ws1b9{word-spacing:17.335701px;}
.wsb2{word-spacing:17.394281px;}
.ws1bc{word-spacing:17.453459px;}
.ws13c{word-spacing:17.483673px;}
.ws13d{word-spacing:17.485556px;}
.wsb4{word-spacing:17.573369px;}
.ws9f{word-spacing:17.574026px;}
.wsb5{word-spacing:17.574385px;}
.ws44{word-spacing:17.693279px;}
.ws79{word-spacing:17.694414px;}
.ws129{word-spacing:17.694713px;}
.wsda{word-spacing:17.752158px;}
.wscc{word-spacing:17.752457px;}
.wscb{word-spacing:17.753353px;}
.ws78{word-spacing:17.753413px;}
.ws141{word-spacing:17.753891px;}
.wsd9{word-spacing:17.754429px;}
.wsbe{word-spacing:17.812770px;}
.ws1cf{word-spacing:17.813308px;}
.wsd1{word-spacing:17.871948px;}
.ws223{word-spacing:17.914383px;}
.ws222{word-spacing:17.969096px;}
.ws174{word-spacing:17.992575px;}
.ws1c5{word-spacing:18.052590px;}
.ws132{word-spacing:18.053188px;}
.wsaf{word-spacing:18.168390px;}
.wsb1{word-spacing:18.172380px;}
.wsb0{word-spacing:18.192175px;}
.ws51{word-spacing:18.231558px;}
.ws53{word-spacing:18.232096px;}
.ws1ac{word-spacing:18.232395px;}
.ws52{word-spacing:18.252811px;}
.ws208{word-spacing:18.270163px;}
.wsa3{word-spacing:18.290437px;}
.ws207{word-spacing:18.290649px;}
.ws134{word-spacing:18.350452px;}
.ws166{word-spacing:18.471378px;}
.ws2d{word-spacing:18.471796px;}
.ws1de{word-spacing:18.507080px;}
.ws1c9{word-spacing:18.529659px;}
.ws12d{word-spacing:18.649150px;}
.ws122{word-spacing:18.709285px;}
.ws12c{word-spacing:18.709928px;}
.ws43{word-spacing:18.770017px;}
.ws184{word-spacing:18.888133px;}
.ws1fc{word-spacing:18.936875px;}
.ws18d{word-spacing:18.947849px;}
.ws2e{word-spacing:18.948447px;}
.ws1fb{word-spacing:18.990190px;}
.wsc0{word-spacing:19.067639px;}
.wsbf{word-spacing:19.068058px;}
.ws41{word-spacing:19.186951px;}
.ws22b{word-spacing:19.205760px;}
.ws1bd{word-spacing:19.247444px;}
.ws94{word-spacing:19.366278px;}
.ws97{word-spacing:19.366338px;}
.ws1c4{word-spacing:19.366936px;}
.ws11d{word-spacing:19.368370px;}
.ws96{word-spacing:19.390505px;}
.ws95{word-spacing:19.403572px;}
.ws1c1{word-spacing:19.665037px;}
.wsfd{word-spacing:19.665634px;}
.wsd0{word-spacing:19.726247px;}
.ws1e6{word-spacing:19.743152px;}
.ws70{word-spacing:19.904617px;}
.ws1af{word-spacing:19.965768px;}
.ws1b0{word-spacing:20.144138px;}
.ws180{word-spacing:20.145035px;}
.ws1e1{word-spacing:20.228521px;}
.wsf{word-spacing:20.251706px;}
.ws227{word-spacing:20.335096px;}
.ws126{word-spacing:20.382643px;}
.ws127{word-spacing:20.383958px;}
.ws86{word-spacing:20.504047px;}
.ws14b{word-spacing:20.861924px;}
.ws1b5{word-spacing:21.040294px;}
.ws162{word-spacing:21.220936px;}
.ws6f{word-spacing:21.279277px;}
.ws10d{word-spacing:21.579410px;}
.ws10c{word-spacing:21.639340px;}
.ws1b4{word-spacing:21.758079px;}
.ws13{word-spacing:22.259951px;}
.ws143{word-spacing:22.355477px;}
.ws17f{word-spacing:22.475267px;}
.ws20d{word-spacing:22.535098px;}
.ws1f{word-spacing:23.275133px;}
.ws22c{word-spacing:23.348506px;}
.ws22d{word-spacing:23.368334px;}
.wsd6{word-spacing:23.371722px;}
.ws19{word-spacing:26.790420px;}
.ws18{word-spacing:26.791496px;}
.wse{word-spacing:32.757910px;}
.ws15{word-spacing:33.139079px;}
.ws11{word-spacing:40.879495px;}
.ws10{word-spacing:44.604425px;}
.ws197{word-spacing:206.693991px;}
._0{margin-left:-433.080000px;}
._f{margin-left:-7.630608px;}
._9{margin-left:-6.109992px;}
._13{margin-left:-5.018644px;}
._6{margin-left:-3.850266px;}
._b{margin-left:-2.819430px;}
._1{margin-left:-1.032944px;}
._2{width:2.646080px;}
._3{width:4.896053px;}
._1a{width:11.321675px;}
._4{width:12.971770px;}
._d{width:14.066389px;}
._e{width:15.816633px;}
._a{width:16.842880px;}
._c{width:18.397148px;}
._24{width:19.417409px;}
._10{width:20.446842px;}
._15{width:22.430276px;}
._25{width:23.570067px;}
._14{width:24.595794px;}
._5{width:25.940271px;}
._17{width:27.895934px;}
._19{width:29.858174px;}
._18{width:30.903944px;}
._36{width:31.918554px;}
._7{width:33.356945px;}
._34{width:35.131718px;}
._31{width:36.441076px;}
._16{width:37.739832px;}
._35{width:42.973002px;}
._38{width:46.262517px;}
._32{width:47.931936px;}
._37{width:51.511807px;}
._33{width:61.869236px;}
._8{width:69.369900px;}
._30{width:88.768436px;}
._28{width:162.904815px;}
._23{width:169.309833px;}
._2e{width:205.132761px;}
._2a{width:209.974079px;}
._1c{width:211.991784px;}
._22{width:216.018464px;}
._26{width:220.197389px;}
._2c{width:223.424755px;}
._2b{width:229.074184px;}
._29{width:233.140961px;}
._2d{width:236.873279px;}
._1d{width:255.938680px;}
._27{width:265.152085px;}
._1f{width:344.685649px;}
._1e{width:364.400483px;}
._20{width:411.612823px;}
._21{width:465.759789px;}
._1b{width:817.427949px;}
._11{width:819.161112px;}
._2f{width:2280.303121px;}
._12{width:2304.213121px;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:41.842800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs2{font-size:58.500000px;}
.fs6{font-size:59.775600px;}
.fs4{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:90.000000px;}
.fs7{font-size:107.596800px;}
.fs1{font-size:166.500000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:31.890300px;}
.y9{bottom:58.125000px;}
.y64{bottom:101.497200px;}
.y20{bottom:104.646150px;}
.y186{bottom:105.409500px;}
.y10e{bottom:107.332650px;}
.y12f{bottom:108.697350px;}
.y1b0{bottom:110.719350px;}
.y7{bottom:112.500000px;}
.y4d{bottom:113.183850px;}
.y63{bottom:120.730650px;}
.y1f{bottom:122.534700px;}
.y185{bottom:124.239300px;}
.y15b{bottom:126.076800px;}
.y10d{bottom:126.161700px;}
.y12e{bottom:127.527000px;}
.y1eb{bottom:129.235500px;}
.y4c{bottom:132.013500px;}
.y91{bottom:136.184700px;}
.y1af{bottom:137.260500px;}
.y62{bottom:139.963500px;}
.y1e{bottom:140.422200px;}
.y184{bottom:143.068350px;}
.y15a{bottom:144.905850px;}
.y10c{bottom:144.991350px;}
.y12d{bottom:146.356650px;}
.y1e9{bottom:146.496000px;}
.y1ea{bottom:146.496150px;}
.y4b{bottom:150.842850px;}
.y2{bottom:154.125000px;}
.y1ae{bottom:154.834500px;}
.y90{bottom:155.013000px;}
.yc2{bottom:155.989500px;}
.y1d{bottom:158.309700px;}
.y61{bottom:159.195000px;}
.y183{bottom:161.898000px;}
.y159{bottom:163.735500px;}
.y1e8{bottom:163.756500px;}
.y10b{bottom:163.821000px;}
.ye3{bottom:164.440500px;}
.y12c{bottom:165.186450px;}
.y4a{bottom:169.672500px;}
.yc1{bottom:172.428000px;}
.y8e{bottom:173.842200px;}
.y8f{bottom:173.842500px;}
.y1c{bottom:176.199000px;}
.y60{bottom:178.428000px;}
.y182{bottom:180.727500px;}
.y1e7{bottom:181.015500px;}
.y1ad{bottom:181.375500px;}
.y158{bottom:182.565450px;}
.y10a{bottom:182.650500px;}
.y12b{bottom:184.015500px;}
.y49{bottom:188.502000px;}
.yc0{bottom:188.866500px;}
.y8d{bottom:192.671850px;}
.y1b{bottom:194.086500px;}
.y5f{bottom:197.661000px;}
.y1e6{bottom:198.276000px;}
.y1ac{bottom:198.949500px;}
.y181{bottom:199.557000px;}
.y157{bottom:201.394500px;}
.y109{bottom:201.480000px;}
.y3{bottom:202.125000px;}
.y129{bottom:202.844850px;}
.y12a{bottom:202.845000px;}
.ybf{bottom:205.305000px;}
.y48{bottom:207.331500px;}
.y6{bottom:208.125000px;}
.y8c{bottom:211.501500px;}
.y1a{bottom:211.974000px;}
.y1e5{bottom:215.536500px;}
.y1ab{bottom:216.523500px;}
.y5e{bottom:216.894000px;}
.y180{bottom:218.386500px;}
.y108{bottom:220.309500px;}
.y128{bottom:221.674500px;}
.ybe{bottom:221.743500px;}
.y47{bottom:226.161000px;}
.y19{bottom:229.863000px;}
.y8b{bottom:230.331000px;}
.y1e4{bottom:232.797000px;}
.y1aa{bottom:234.097500px;}
.y156{bottom:234.960000px;}
.y17f{bottom:237.216000px;}
.ybd{bottom:238.182000px;}
.y107{bottom:239.139300px;}
.y127{bottom:244.987500px;}
.y46{bottom:244.990500px;}
.y18{bottom:247.750800px;}
.y8a{bottom:249.160500px;}
.y1e3{bottom:250.057500px;}
.y148{bottom:250.506000px;}
.y155{bottom:254.193000px;}
.y5{bottom:254.250000px;}
.ybc{bottom:254.620500px;}
.y17e{bottom:256.045500px;}
.y106{bottom:257.968350px;}
.y1a9{bottom:260.638500px;}
.y45{bottom:263.820000px;}
.y17{bottom:265.638300px;}
.y1e2{bottom:267.318000px;}
.y89{bottom:267.990000px;}
.y147{bottom:269.335500px;}
.ybb{bottom:271.059000px;}
.y154{bottom:273.426000px;}
.y17d{bottom:274.875000px;}
.y105{bottom:276.798000px;}
.y1a8{bottom:278.212500px;}
.y126{bottom:278.611500px;}
.y44{bottom:282.649500px;}
.y16{bottom:283.527000px;}
.y1e1{bottom:284.578500px;}
.y88{bottom:286.819500px;}
.yba{bottom:287.497500px;}
.y146{bottom:288.165000px;}
.y153{bottom:292.659000px;}
.y17c{bottom:293.704500px;}
.y1a7{bottom:295.786500px;}
.y125{bottom:297.441000px;}
.y104{bottom:300.111000px;}
.y4{bottom:300.375000px;}
.y43{bottom:301.479000px;}
.y1e0{bottom:301.839000px;}
.y87{bottom:305.649000px;}
.y145{bottom:306.994500px;}
.yb9{bottom:311.436000px;}
.y152{bottom:311.892000px;}
.y17b{bottom:312.534000px;}
.y1a6{bottom:313.360500px;}
.y124{bottom:316.270500px;}
.y1df{bottom:319.099500px;}
.y42{bottom:320.308350px;}
.y86{bottom:324.478950px;}
.y144{bottom:325.824000px;}
.y103{bottom:330.538500px;}
.y1a5{bottom:330.934500px;}
.y151{bottom:331.125000px;}
.y17a{bottom:331.363500px;}
.y123{bottom:335.099700px;}
.y1de{bottom:336.358500px;}
.y41{bottom:339.138000px;}
.yb8{bottom:343.056000px;}
.y85{bottom:343.308000px;}
.y143{bottom:344.653500px;}
.y1a4{bottom:348.508500px;}
.y102{bottom:349.771500px;}
.y179{bottom:350.193450px;}
.y15{bottom:350.830350px;}
.y1dd{bottom:353.619000px;}
.y122{bottom:353.928750px;}
.y40{bottom:357.967500px;}
.y84{bottom:362.137500px;}
.yb7{bottom:362.289000px;}
.yb6{bottom:362.289150px;}
.y142{bottom:363.483000px;}
.y1a3{bottom:366.082500px;}
.y8{bottom:367.875000px;}
.y14{bottom:368.717850px;}
.y101{bottom:369.004500px;}
.y178{bottom:369.022500px;}
.y1dc{bottom:370.879500px;}
.y121{bottom:372.757800px;}
.y3f{bottom:376.795200px;}
.y83{bottom:380.967000px;}
.yb5{bottom:381.522000px;}
.y141{bottom:382.312500px;}
.y13{bottom:386.607150px;}
.y177{bottom:387.852000px;}
.y1db{bottom:388.140000px;}
.y100{bottom:388.237500px;}
.y120{bottom:391.587450px;}
.y3e{bottom:395.624850px;}
.y82{bottom:399.796350px;}
.y140{bottom:401.142000px;}
.y1a2{bottom:401.589000px;}
.y12{bottom:404.494650px;}
.y1da{bottom:405.400500px;}
.y176{bottom:406.681500px;}
.y11f{bottom:410.416500px;}
.y3d{bottom:414.454500px;}
.y81{bottom:418.626000px;}
.y13f{bottom:419.971500px;}
.y1a1{bottom:420.418200px;}
.y1d9{bottom:422.661000px;}
.y1d8{bottom:422.661600px;}
.y175{bottom:425.511000px;}
.y11e{bottom:429.246000px;}
.y11{bottom:432.842850px;}
.y3c{bottom:433.284000px;}
.y80{bottom:437.455500px;}
.yb4{bottom:437.455950px;}
.y13e{bottom:438.801000px;}
.y1a0{bottom:439.247850px;}
.y1d7{bottom:439.921500px;}
.y174{bottom:444.340500px;}
.y5d{bottom:448.008000px;}
.y11d{bottom:448.075500px;}
.y10{bottom:450.730350px;}
.y3a{bottom:452.113350px;}
.y3b{bottom:452.113500px;}
.yb3{bottom:456.285000px;}
.y1d5{bottom:457.181700px;}
.y1d6{bottom:457.182000px;}
.y13d{bottom:457.630500px;}
.y19f{bottom:458.077500px;}
.y7f{bottom:460.768500px;}
.y173{bottom:463.169850px;}
.y11c{bottom:466.905000px;}
.y5c{bottom:467.239500px;}
.y39{bottom:470.943000px;}
.y1d4{bottom:474.441000px;}
.yb2{bottom:475.114500px;}
.y13c{bottom:476.458500px;}
.y19e{bottom:476.907000px;}
.yf{bottom:477.585000px;}
.y172{bottom:481.999500px;}
.y11b{bottom:485.734500px;}
.y5b{bottom:486.472500px;}
.y38{bottom:489.772500px;}
.y1d3{bottom:491.701500px;}
.yb1{bottom:493.944000px;}
.y7e{bottom:494.392500px;}
.y13b{bottom:495.288450px;}
.ye{bottom:495.473700px;}
.y19d{bottom:495.736500px;}
.y171{bottom:500.829000px;}
.y11a{bottom:504.564450px;}
.y5a{bottom:505.705500px;}
.y37{bottom:508.602000px;}
.y1d2{bottom:508.962000px;}
.yb0{bottom:512.773500px;}
.y7d{bottom:513.222000px;}
.yd{bottom:513.361200px;}
.y13a{bottom:514.117500px;}
.y19c{bottom:514.566000px;}
.y170{bottom:519.658500px;}
.y119{bottom:523.393500px;}
.y59{bottom:524.938500px;}
.y1d1{bottom:526.222500px;}
.y36{bottom:527.431500px;}
.ye2{bottom:528.016500px;}
.yc{bottom:531.248700px;}
.yaf{bottom:531.603000px;}
.y7c{bottom:532.051950px;}
.y139{bottom:532.947000px;}
.y19b{bottom:533.395500px;}
.y16f{bottom:538.488000px;}
.y118{bottom:542.223000px;}
.y1d0{bottom:543.483000px;}
.y35{bottom:546.261000px;}
.ye1{bottom:546.846000px;}
.yb{bottom:549.138000px;}
.yae{bottom:550.432500px;}
.y7b{bottom:550.881000px;}
.y138{bottom:551.776500px;}
.y19a{bottom:552.225000px;}
.y16e{bottom:557.316000px;}
.y1cf{bottom:560.743500px;}
.y117{bottom:565.536300px;}
.ye0{bottom:565.675500px;}
.ya{bottom:567.025500px;}
.yad{bottom:569.262450px;}
.y34{bottom:569.574000px;}
.y7a{bottom:569.710500px;}
.y137{bottom:570.606000px;}
.y199{bottom:571.054500px;}
.y16d{bottom:576.145500px;}
.y1ce{bottom:578.004000px;}
.ydf{bottom:584.505000px;}
.yff{bottom:585.849000px;}
.yac{bottom:588.091500px;}
.y79{bottom:588.538500px;}
.y136{bottom:589.435500px;}
.y198{bottom:589.884000px;}
.y16c{bottom:594.975000px;}
.y1cd{bottom:595.264500px;}
.y116{bottom:595.963500px;}
.yde{bottom:603.333000px;}
.yfe{bottom:604.678500px;}
.yab{bottom:606.921000px;}
.y78{bottom:607.368000px;}
.y135{bottom:608.265450px;}
.y1cc{bottom:612.525000px;}
.y197{bottom:613.197000px;}
.y16b{bottom:613.804350px;}
.y115{bottom:615.196500px;}
.ydd{bottom:622.162500px;}
.yfd{bottom:623.508000px;}
.y77{bottom:626.197500px;}
.y134{bottom:627.094500px;}
.y1cb{bottom:629.784000px;}
.yaa{bottom:630.232500px;}
.y16a{bottom:632.634000px;}
.y114{bottom:634.429500px;}
.ydc{bottom:640.992000px;}
.yfc{bottom:642.337500px;}
.y33{bottom:644.723700px;}
.y76{bottom:645.027000px;}
.y196{bottom:646.821000px;}
.y1ca{bottom:647.044500px;}
.ya9{bottom:650.407500px;}
.y169{bottom:651.463500px;}
.y113{bottom:653.661000px;}
.ydb{bottom:659.821500px;}
.yfb{bottom:661.167000px;}
.y75{bottom:663.856500px;}
.y74{bottom:663.856950px;}
.y1c9{bottom:664.305000px;}
.y195{bottom:665.650500px;}
.y168{bottom:670.293000px;}
.y112{bottom:672.894150px;}
.yda{bottom:678.651000px;}
.yfa{bottom:679.996500px;}
.y1c8{bottom:681.565500px;}
.y32{bottom:682.113000px;}
.y73{bottom:682.686000px;}
.ya8{bottom:684.031500px;}
.y194{bottom:684.480000px;}
.y167{bottom:689.122500px;}
.y111{bottom:692.127000px;}
.yd9{bottom:697.480500px;}
.yf9{bottom:698.826000px;}
.y72{bottom:701.515500px;}
.y31{bottom:701.571000px;}
.ya7{bottom:702.861000px;}
.y193{bottom:703.309500px;}
.y166{bottom:707.951700px;}
.y110{bottom:711.360000px;}
.y1c7{bottom:716.086500px;}
.yd8{bottom:716.310000px;}
.yf8{bottom:717.655500px;}
.y71{bottom:720.345000px;}
.y30{bottom:721.027500px;}
.ya6{bottom:721.690500px;}
.y192{bottom:722.139000px;}
.y165{bottom:726.781350px;}
.y10f{bottom:730.593000px;}
.y1c6{bottom:733.347000px;}
.yd7{bottom:735.139500px;}
.yf7{bottom:736.485000px;}
.y70{bottom:739.174500px;}
.y2f{bottom:740.485500px;}
.ya5{bottom:740.520000px;}
.y191{bottom:740.968500px;}
.y164{bottom:745.611000px;}
.y1c5{bottom:750.607500px;}
.yd5{bottom:753.968850px;}
.yd6{bottom:753.969000px;}
.yf6{bottom:755.314500px;}
.y6f{bottom:758.004000px;}
.y133{bottom:759.349500px;}
.ya4{bottom:759.349950px;}
.y190{bottom:759.798000px;}
.y2e{bottom:759.942000px;}
.y163{bottom:764.440500px;}
.y1c4{bottom:767.866500px;}
.yd4{bottom:772.798500px;}
.yf5{bottom:774.144000px;}
.y6e{bottom:776.833500px;}
.ya3{bottom:778.179000px;}
.y18f{bottom:778.627950px;}
.y2d{bottom:779.398500px;}
.y162{bottom:783.270000px;}
.y1c3{bottom:785.127000px;}
.yd3{bottom:791.628000px;}
.yf4{bottom:792.973200px;}
.y6d{bottom:795.663000px;}
.y132{bottom:797.008350px;}
.ya2{bottom:797.008500px;}
.y18e{bottom:797.457000px;}
.y2c{bottom:798.856500px;}
.y161{bottom:802.099500px;}
.y1c2{bottom:802.387500px;}
.yd2{bottom:810.457800px;}
.yf3{bottom:811.802850px;}
.y6c{bottom:814.492500px;}
.ya1{bottom:815.838000px;}
.ya0{bottom:815.838450px;}
.y18d{bottom:816.286500px;}
.y2b{bottom:818.313000px;}
.y1c1{bottom:819.648000px;}
.y160{bottom:820.929000px;}
.yd1{bottom:829.286850px;}
.yf2{bottom:830.632500px;}
.y9f{bottom:834.667500px;}
.y18c{bottom:835.114500px;}
.y1c0{bottom:836.908500px;}
.y2a{bottom:837.769500px;}
.y6b{bottom:837.805800px;}
.y15f{bottom:844.242300px;}
.yd0{bottom:848.116500px;}
.yf1{bottom:849.462000px;}
.y9e{bottom:853.497000px;}
.y18b{bottom:853.944000px;}
.y1bf{bottom:854.169000px;}
.y29{bottom:857.227500px;}
.y6a{bottom:857.979000px;}
.ycf{bottom:866.946000px;}
.yf0{bottom:868.291500px;}
.y1be{bottom:871.429500px;}
.y9d{bottom:872.326500px;}
.y18a{bottom:872.773500px;}
.y15e{bottom:874.669500px;}
.y28{bottom:876.684000px;}
.yce{bottom:885.775500px;}
.yef{bottom:887.121000px;}
.y1bd{bottom:888.690000px;}
.y9c{bottom:891.156000px;}
.y69{bottom:891.603000px;}
.y15d{bottom:893.902950px;}
.ycd{bottom:904.605000px;}
.yee{bottom:905.950500px;}
.y131{bottom:909.983850px;}
.y9b{bottom:909.984000px;}
.y68{bottom:910.432500px;}
.y15c{bottom:913.134000px;}
.y27{bottom:915.269700px;}
.y1bc{bottom:923.209500px;}
.ycc{bottom:923.434500px;}
.yed{bottom:924.778800px;}
.y9a{bottom:928.813500px;}
.y67{bottom:929.262000px;}
.y26{bottom:931.410000px;}
.y1bb{bottom:940.470000px;}
.ycb{bottom:942.264000px;}
.yec{bottom:943.607850px;}
.y25{bottom:947.548500px;}
.y99{bottom:947.643000px;}
.y98{bottom:947.643450px;}
.y66{bottom:948.091500px;}
.y1ba{bottom:957.730500px;}
.y1f3{bottom:960.645000px;}
.yca{bottom:961.093500px;}
.yeb{bottom:962.437500px;}
.y97{bottom:966.472500px;}
.y58{bottom:966.921000px;}
.y1{bottom:967.125000px;}
.y150{bottom:972.903000px;}
.y1b9{bottom:974.991000px;}
.y1f2{bottom:977.905500px;}
.yc9{bottom:979.923000px;}
.yea{bottom:981.267000px;}
.y96{bottom:985.302000px;}
.y57{bottom:985.750500px;}
.y189{bottom:985.750950px;}
.y14f{bottom:989.341500px;}
.y1b8{bottom:992.251500px;}
.y1f1{bottom:995.166000px;}
.y24{bottom:996.565350px;}
.yc8{bottom:998.752500px;}
.ye9{bottom:1000.096350px;}
.y95{bottom:1004.131500px;}
.y56{bottom:1004.580000px;}
.y14e{bottom:1005.780000px;}
.y1b7{bottom:1009.512000px;}
.yc7{bottom:1017.582000px;}
.ye8{bottom:1018.926000px;}
.y94{bottom:1022.961000px;}
.y130{bottom:1022.961450px;}
.y55{bottom:1023.409500px;}
.y188{bottom:1023.410400px;}
.y1b6{bottom:1026.772500px;}
.y14d{bottom:1029.720000px;}
.y1f0{bottom:1031.254500px;}
.yc6{bottom:1036.411500px;}
.y23{bottom:1036.485300px;}
.ye7{bottom:1037.755500px;}
.y93{bottom:1041.790500px;}
.y54{bottom:1042.239000px;}
.y187{bottom:1042.239450px;}
.y1b5{bottom:1044.033000px;}
.y1ef{bottom:1048.515000px;}
.yc5{bottom:1055.241000px;}
.ye6{bottom:1056.585000px;}
.y53{bottom:1061.068500px;}
.y1b4{bottom:1061.292000px;}
.y14c{bottom:1061.340000px;}
.y22{bottom:1064.728650px;}
.y92{bottom:1065.103500px;}
.y1ee{bottom:1065.775500px;}
.yc4{bottom:1074.070500px;}
.ye5{bottom:1075.414500px;}
.y1b3{bottom:1078.552500px;}
.y65{bottom:1079.897850px;}
.y52{bottom:1079.898000px;}
.y14b{bottom:1080.571500px;}
.y1ed{bottom:1083.036000px;}
.y21{bottom:1092.972000px;}
.ye4{bottom:1094.244000px;}
.y1b2{bottom:1095.813000px;}
.y1b1{bottom:1095.813450px;}
.yc3{bottom:1097.382000px;}
.y51{bottom:1098.727500px;}
.y14a{bottom:1099.804500px;}
.y1ec{bottom:1100.296500px;}
.y50{bottom:1117.557000px;}
.y149{bottom:1119.037500px;}
.y4f{bottom:1177.662000px;}
.h9{height:30.461558px;}
.ha{height:30.670772px;}
.he{height:34.813397px;}
.h12{height:35.052500px;}
.h14{height:38.896243px;}
.hf{height:39.165235px;}
.h13{height:39.434227px;}
.h10{height:43.217759px;}
.hd{height:43.218359px;}
.h5{height:43.360840px;}
.h11{height:43.516637px;}
.hb{height:43.815515px;}
.h7{height:46.696289px;}
.h2{height:52.136719px;}
.h6{height:66.708984px;}
.hc{height:77.792486px;}
.h4{height:123.411621px;}
.h1{height:295.875000px;}
.h3{height:392.625000px;}
.h8{height:1262.835000px;}
.h0{height:1263.000000px;}
.w1{width:892.125000px;}
.w2{width:892.200000px;}
.w0{width:892.500000px;}
.w3{width:892.920000px;}
.w4{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:52.525778px;}
.x4{left:53.574000px;}
.x2{left:84.375000px;}
.x55{left:85.848000px;}
.x7{left:248.526093px;}
.x6{left:249.591000px;}
.x42{left:258.556500px;}
.x50{left:268.871895px;}
.x3d{left:272.059500px;}
.x41{left:273.876000px;}
.x4f{left:275.092200px;}
.x3c{left:277.063500px;}
.x19{left:279.036000px;}
.x8{left:281.479500px;}
.x30{left:285.214500px;}
.x1a{left:293.980500px;}
.x3e{left:295.173000px;}
.x20{left:311.521500px;}
.x31{left:312.895500px;}
.x25{left:315.075000px;}
.x40{left:320.188395px;}
.x21{left:326.466000px;}
.x26{left:329.571000px;}
.x3f{left:331.096200px;}
.x22{left:341.223000px;}
.x11{left:343.776000px;}
.x9{left:344.826000px;}
.xd{left:346.842000px;}
.x12{left:351.247500px;}
.xa{left:352.297500px;}
.xe{left:354.313500px;}
.xf{left:357.975000px;}
.x48{left:359.013000px;}
.x10{left:365.446500px;}
.x54{left:366.934500px;}
.x4c{left:401.229000px;}
.x2e{left:410.493000px;}
.x4d{left:418.653000px;}
.x2f{left:427.918500px;}
.x1b{left:446.728500px;}
.x2c{left:457.773000px;}
.x2a{left:466.825500px;}
.x1c{left:475.339500px;}
.x2d{left:478.939500px;}
.x2b{left:481.320000px;}
.x1f{left:489.729000px;}
.x34{left:490.999500px;}
.x43{left:496.222500px;}
.x35{left:498.471000px;}
.xb{left:505.950000px;}
.x4e{left:510.675000px;}
.xc{left:513.421500px;}
.x52{left:524.517000px;}
.x3a{left:530.724000px;}
.x3b{left:537.448500px;}
.x53{left:539.461500px;}
.x36{left:548.649000px;}
.x4b{left:555.540000px;}
.x3{left:556.875000px;}
.x37{left:566.073000px;}
.x38{left:577.929000px;}
.x39{left:584.653500px;}
.x13{left:592.744500px;}
.x15{left:600.364500px;}
.x14{left:613.416000px;}
.x16{left:621.517500px;}
.x32{left:628.186500px;}
.x44{left:639.925500px;}
.x33{left:649.710000px;}
.x45{left:664.822500px;}
.x23{left:685.312500px;}
.x24{left:699.808500px;}
.x17{left:702.001500px;}
.x49{left:705.532500px;}
.x18{left:723.855000px;}
.x46{left:726.213000px;}
.x4a{left:734.167500px;}
.x47{left:741.157500px;}
.x1{left:754.312500px;}
.x27{left:778.708500px;}
.x28{left:806.529000px;}
.x29{left:814.681500px;}
.x1d{left:818.046000px;}
.x51{left:825.292500px;}
.x1e{left:832.990500px;}
@media print{
.v1{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000387pt;}
.ls14{letter-spacing:0.000960pt;}
.lsc{letter-spacing:0.001007pt;}
.ls5{letter-spacing:0.001545pt;}
.ls13{letter-spacing:0.001774pt;}
.ls7{letter-spacing:0.002422pt;}
.ls12{letter-spacing:0.002985pt;}
.ls15{letter-spacing:0.003245pt;}
.ls11{letter-spacing:0.003671pt;}
.ls6{letter-spacing:0.003733pt;}
.ls1{letter-spacing:9.299520pt;}
.ls4{letter-spacing:10.627387pt;}
.ls1b{letter-spacing:11.575840pt;}
.ls1a{letter-spacing:11.790293pt;}
.ls18{letter-spacing:11.790560pt;}
.ls16{letter-spacing:11.953120pt;}
.ls19{letter-spacing:11.955200pt;}
.ls17{letter-spacing:11.959360pt;}
.ls1c{letter-spacing:12.149227pt;}
.ls1d{letter-spacing:12.157387pt;}
.ls9{letter-spacing:13.161387pt;}
.lse{letter-spacing:13.222987pt;}
.lsd{letter-spacing:13.225067pt;}
.ls10{letter-spacing:13.384874pt;}
.lsf{letter-spacing:14.186008pt;}
.ls8{letter-spacing:14.238295pt;}
.lsb{letter-spacing:16.633067pt;}
.lsa{letter-spacing:19.231759pt;}
.ls2{letter-spacing:22.316403pt;}
.ws0{word-spacing:-35.584000pt;}
.ws1{word-spacing:-22.240000pt;}
.ws2{word-spacing:-15.568000pt;}
.ws42{word-spacing:-0.053134pt;}
.ws5c{word-spacing:-0.047821pt;}
.ws4b{word-spacing:-0.042507pt;}
.ws9{word-spacing:-0.037194pt;}
.ws3{word-spacing:0.000000pt;}
.ws5b{word-spacing:7.938014pt;}
.ws6{word-spacing:9.260202pt;}
.wsa{word-spacing:9.260277pt;}
.wsd{word-spacing:9.260351pt;}
.wsb{word-spacing:9.260500pt;}
.ws8{word-spacing:9.260611pt;}
.wsc{word-spacing:9.260872pt;}
.ws5{word-spacing:9.261206pt;}
.ws7{word-spacing:9.261616pt;}
.ws12{word-spacing:9.335594pt;}
.ws1e4{word-spacing:9.658797pt;}
.ws77{word-spacing:9.935183pt;}
.wsc4{word-spacing:10.041451pt;}
.ws158{word-spacing:10.424121pt;}
.ws16{word-spacing:10.451811pt;}
.ws17{word-spacing:10.487963pt;}
.ws1c0{word-spacing:10.521090pt;}
.ws4a{word-spacing:10.581493pt;}
.ws1d{word-spacing:10.583358pt;}
.ws1a4{word-spacing:10.583528pt;}
.ws4c{word-spacing:10.584845pt;}
.ws4d{word-spacing:10.585100pt;}
.ws23{word-spacing:10.664038pt;}
.ws1c{word-spacing:10.668330pt;}
.ws169{word-spacing:10.785272pt;}
.ws168{word-spacing:10.786069pt;}
.ws167{word-spacing:10.786866pt;}
.ws92{word-spacing:10.838937pt;}
.ws1a5{word-spacing:11.050728pt;}
.ws1cd{word-spacing:11.050994pt;}
.ws46{word-spacing:11.105031pt;}
.ws47{word-spacing:11.105597pt;}
.wscd{word-spacing:11.157421pt;}
.ws209{word-spacing:11.333051pt;}
.ws3f{word-spacing:11.369850pt;}
.ws124{word-spacing:11.370382pt;}
.ws3e{word-spacing:11.371444pt;}
.ws20b{word-spacing:11.381303pt;}
.ws20a{word-spacing:11.381829pt;}
.ws4{word-spacing:11.494221pt;}
.ws28{word-spacing:11.524622pt;}
.ws123{word-spacing:11.530740pt;}
.ws1f4{word-spacing:11.571821pt;}
.ws1f3{word-spacing:11.572347pt;}
.ws1f2{word-spacing:11.573160pt;}
.ws9c{word-spacing:11.583767pt;}
.ws200{word-spacing:11.619355pt;}
.ws15d{word-spacing:11.619928pt;}
.ws26{word-spacing:11.620215pt;}
.ws9b{word-spacing:11.635732pt;}
.ws16c{word-spacing:11.637167pt;}
.ws15e{word-spacing:11.667845pt;}
.ws15c{word-spacing:11.668371pt;}
.ws15f{word-spacing:11.680751pt;}
.wsfa{word-spacing:11.688494pt;}
.ws6d{word-spacing:11.689823pt;}
.ws15b{word-spacing:11.701018pt;}
.ws1e8{word-spacing:11.715283pt;}
.ws66{word-spacing:11.715331pt;}
.ws204{word-spacing:11.715427pt;}
.ws205{word-spacing:11.715666pt;}
.ws67{word-spacing:11.715713pt;}
.ws1e7{word-spacing:11.716431pt;}
.ws15a{word-spacing:11.716622pt;}
.ws203{word-spacing:11.717005pt;}
.ws1d3{word-spacing:11.741894pt;}
.ws19f{word-spacing:11.742159pt;}
.ws19d{word-spacing:11.742425pt;}
.ws6e{word-spacing:11.743488pt;}
.ws19e{word-spacing:11.750704pt;}
.ws154{word-spacing:11.762960pt;}
.ws155{word-spacing:11.763199pt;}
.ws202{word-spacing:11.763917pt;}
.ws224{word-spacing:11.810829pt;}
.ws216{word-spacing:11.811116pt;}
.ws29{word-spacing:11.811212pt;}
.ws193{word-spacing:11.811594pt;}
.ws1e9{word-spacing:11.811738pt;}
.ws1f9{word-spacing:11.812646pt;}
.ws194{word-spacing:11.812694pt;}
.ws159{word-spacing:11.826884pt;}
.ws149{word-spacing:11.849756pt;}
.ws1fa{word-spacing:11.858602pt;}
.ws21a{word-spacing:11.858650pt;}
.ws1f8{word-spacing:11.858745pt;}
.ws1ec{word-spacing:11.858793pt;}
.ws19c{word-spacing:11.859989pt;}
.ws59{word-spacing:11.860180pt;}
.ws225{word-spacing:11.860419pt;}
.ws219{word-spacing:11.860610pt;}
.ws1ed{word-spacing:11.866587pt;}
.wsa7{word-spacing:11.901561pt;}
.wsea{word-spacing:11.902358pt;}
.wse9{word-spacing:11.902783pt;}
.ws21e{word-spacing:11.906181pt;}
.wse6{word-spacing:11.906327pt;}
.ws22f{word-spacing:11.906423pt;}
.ws22{word-spacing:11.906471pt;}
.ws212{word-spacing:11.906518pt;}
.wse4{word-spacing:11.906614pt;}
.ws235{word-spacing:11.906758pt;}
.ws2c{word-spacing:11.906853pt;}
.ws22e{word-spacing:11.906901pt;}
.ws231{word-spacing:11.906949pt;}
.ws1ee{word-spacing:11.906997pt;}
.ws5a{word-spacing:11.907092pt;}
.wse2{word-spacing:11.907140pt;}
.ws2a{word-spacing:11.907236pt;}
.ws21b{word-spacing:11.907284pt;}
.wse5{word-spacing:11.907379pt;}
.ws11e{word-spacing:11.907475pt;}
.ws226{word-spacing:11.907523pt;}
.wse1{word-spacing:11.907570pt;}
.ws156{word-spacing:11.907666pt;}
.ws62{word-spacing:11.908049pt;}
.ws19a{word-spacing:11.908144pt;}
.wse3{word-spacing:11.908192pt;}
.ws228{word-spacing:11.908383pt;}
.ws157{word-spacing:11.910618pt;}
.wsa6{word-spacing:11.953951pt;}
.ws199{word-spacing:11.954291pt;}
.ws230{word-spacing:11.954531pt;}
.ws1dd{word-spacing:11.954722pt;}
.ws198{word-spacing:11.954770pt;}
.ws1e5{word-spacing:11.954865pt;}
.ws69{word-spacing:11.955009pt;}
.ws19b{word-spacing:11.955343pt;}
.ws1df{word-spacing:11.955583pt;}
.ws1dc{word-spacing:11.956109pt;}
.ws6a{word-spacing:11.996983pt;}
.wsdd{word-spacing:12.002208pt;}
.wsde{word-spacing:12.002303pt;}
.ws201{word-spacing:12.002495pt;}
.ws13a{word-spacing:12.002543pt;}
.ws1e0{word-spacing:12.002590pt;}
.ws6b{word-spacing:12.002686pt;}
.ws21{word-spacing:12.002734pt;}
.ws13b{word-spacing:12.002830pt;}
.ws61{word-spacing:12.003069pt;}
.ws39{word-spacing:12.007882pt;}
.wsc8{word-spacing:12.007988pt;}
.ws13e{word-spacing:12.022554pt;}
.ws13f{word-spacing:12.025937pt;}
.ws60{word-spacing:12.049933pt;}
.ws21c{word-spacing:12.050268pt;}
.ws140{word-spacing:12.051176pt;}
.wsdc{word-spacing:12.051846pt;}
.wsac{word-spacing:12.060750pt;}
.ws210{word-spacing:12.089831pt;}
.ws220{word-spacing:12.096534pt;}
.ws1fe{word-spacing:12.097802pt;}
.ws1fd{word-spacing:12.098184pt;}
.ws1ef{word-spacing:12.098280pt;}
.ws21d{word-spacing:12.098328pt;}
.ws221{word-spacing:12.099045pt;}
.ws6c{word-spacing:12.099093pt;}
.ws21f{word-spacing:12.099188pt;}
.ws211{word-spacing:12.099380pt;}
.ws20f{word-spacing:12.099667pt;}
.wsc7{word-spacing:12.113565pt;}
.ws196{word-spacing:12.146770pt;}
.ws234{word-spacing:12.146818pt;}
.ws7a{word-spacing:12.166142pt;}
.ws7c{word-spacing:12.166540pt;}
.ws7f{word-spacing:12.167018pt;}
.ws7d{word-spacing:12.167815pt;}
.ws7b{word-spacing:12.168452pt;}
.ws7e{word-spacing:12.169569pt;}
.ws24{word-spacing:12.194687pt;}
.ws83{word-spacing:12.219659pt;}
.wsa8{word-spacing:12.219886pt;}
.wsce{word-spacing:12.219939pt;}
.wsb7{word-spacing:12.220311pt;}
.wsc6{word-spacing:12.220789pt;}
.ws84{word-spacing:12.221108pt;}
.ws3a{word-spacing:12.221639pt;}
.wsb6{word-spacing:12.233937pt;}
.ws5d{word-spacing:12.242460pt;}
.ws5e{word-spacing:12.243081pt;}
.wsa5{word-spacing:12.273179pt;}
.wsc5{word-spacing:12.273498pt;}
.wsca{word-spacing:12.273604pt;}
.ws5f{word-spacing:12.289563pt;}
.wsa4{word-spacing:12.326313pt;}
.ws1f5{word-spacing:12.337432pt;}
.ws1f6{word-spacing:12.337766pt;}
.ws214{word-spacing:12.384918pt;}
.ws215{word-spacing:12.385013pt;}
.wsb3{word-spacing:12.432900pt;}
.wsae{word-spacing:12.433856pt;}
.ws1c6{word-spacing:12.485821pt;}
.ws38{word-spacing:12.486618pt;}
.wsad{word-spacing:12.486990pt;}
.ws1c7{word-spacing:12.487149pt;}
.ws50{word-spacing:12.539327pt;}
.wsaa{word-spacing:12.539858pt;}
.wsa2{word-spacing:12.540018pt;}
.ws27{word-spacing:12.577014pt;}
.wsd4{word-spacing:12.592142pt;}
.wsa9{word-spacing:12.592195pt;}
.ws181{word-spacing:12.592461pt;}
.wsd5{word-spacing:12.592992pt;}
.ws1e2{word-spacing:12.672512pt;}
.ws1f7{word-spacing:12.721289pt;}
.ws1c8{word-spacing:12.751915pt;}
.ws1a9{word-spacing:12.767341pt;}
.ws1ab{word-spacing:12.767723pt;}
.ws1aa{word-spacing:12.768010pt;}
.ws20c{word-spacing:12.768775pt;}
.ws144{word-spacing:12.806271pt;}
.ws173{word-spacing:12.910839pt;}
.ws1c3{word-spacing:12.911476pt;}
.ws1b8{word-spacing:12.911742pt;}
.ws1d8{word-spacing:12.963707pt;}
.ws103{word-spacing:12.963866pt;}
.ws152{word-spacing:12.963973pt;}
.ws87{word-spacing:12.964132pt;}
.ws137{word-spacing:12.964398pt;}
.ws185{word-spacing:12.964876pt;}
.wse0{word-spacing:13.007497pt;}
.ws138{word-spacing:13.016841pt;}
.ws12a{word-spacing:13.017000pt;}
.ws113{word-spacing:13.017160pt;}
.ws1c2{word-spacing:13.017266pt;}
.ws98{word-spacing:13.017372pt;}
.ws4e{word-spacing:13.017585pt;}
.ws102{word-spacing:13.017638pt;}
.ws1be{word-spacing:13.017797pt;}
.ws1cc{word-spacing:13.018169pt;}
.wsc3{word-spacing:13.018594pt;}
.ws101{word-spacing:13.018807pt;}
.wsdf{word-spacing:13.054600pt;}
.ws57{word-spacing:13.069922pt;}
.ws1b6{word-spacing:13.069975pt;}
.wsef{word-spacing:13.070028pt;}
.ws186{word-spacing:13.070134pt;}
.wsfe{word-spacing:13.070187pt;}
.ws1d4{word-spacing:13.070400pt;}
.ws191{word-spacing:13.070506pt;}
.ws119{word-spacing:13.070612pt;}
.ws11b{word-spacing:13.070719pt;}
.ws187{word-spacing:13.070931pt;}
.ws190{word-spacing:13.071144pt;}
.ws1cb{word-spacing:13.071463pt;}
.ws11c{word-spacing:13.071516pt;}
.ws1ae{word-spacing:13.071675pt;}
.ws8e{word-spacing:13.071728pt;}
.wsab{word-spacing:13.071888pt;}
.ws1d5{word-spacing:13.071994pt;}
.wsff{word-spacing:13.096185pt;}
.ws100{word-spacing:13.096297pt;}
.ws11a{word-spacing:13.120776pt;}
.ws17a{word-spacing:13.123056pt;}
.ws106{word-spacing:13.123109pt;}
.wsf9{word-spacing:13.123162pt;}
.wsbd{word-spacing:13.123215pt;}
.wsbb{word-spacing:13.123268pt;}
.ws8d{word-spacing:13.123321pt;}
.ws14e{word-spacing:13.123374pt;}
.ws8c{word-spacing:13.123587pt;}
.ws3b{word-spacing:13.123640pt;}
.ws33{word-spacing:13.123693pt;}
.ws133{word-spacing:13.123746pt;}
.ws171{word-spacing:13.123799pt;}
.ws1a3{word-spacing:13.123959pt;}
.ws1d6{word-spacing:13.124065pt;}
.ws120{word-spacing:13.124437pt;}
.ws176{word-spacing:13.124490pt;}
.ws55{word-spacing:13.124543pt;}
.ws1bb{word-spacing:13.124596pt;}
.ws150{word-spacing:13.124650pt;}
.wse8{word-spacing:13.124703pt;}
.ws54{word-spacing:13.124968pt;}
.ws1e{word-spacing:13.135107pt;}
.ws175{word-spacing:13.166704pt;}
.ws16d{word-spacing:13.176296pt;}
.ws2f{word-spacing:13.176668pt;}
.wsf7{word-spacing:13.176827pt;}
.ws172{word-spacing:13.176933pt;}
.ws17b{word-spacing:13.177093pt;}
.ws108{word-spacing:13.177146pt;}
.ws12e{word-spacing:13.177199pt;}
.ws14a{word-spacing:13.177305pt;}
.ws3d{word-spacing:13.177358pt;}
.wsbc{word-spacing:13.177411pt;}
.ws107{word-spacing:13.177465pt;}
.ws10a{word-spacing:13.177624pt;}
.wsf8{word-spacing:13.177677pt;}
.ws16f{word-spacing:13.178049pt;}
.ws1ca{word-spacing:13.178102pt;}
.ws1a0{word-spacing:13.178338pt;}
.ws109{word-spacing:13.202896pt;}
.ws192{word-spacing:13.222855pt;}
.ws10b{word-spacing:13.224075pt;}
.ws99{word-spacing:13.229270pt;}
.wsb9{word-spacing:13.229323pt;}
.ws17e{word-spacing:13.229376pt;}
.ws3c{word-spacing:13.229430pt;}
.ws153{word-spacing:13.229483pt;}
.ws1b{word-spacing:13.229536pt;}
.wsdb{word-spacing:13.229695pt;}
.wse7{word-spacing:13.229801pt;}
.ws73{word-spacing:13.229908pt;}
.wscf{word-spacing:13.229961pt;}
.wsb8{word-spacing:13.230067pt;}
.ws76{word-spacing:13.230173pt;}
.ws11f{word-spacing:13.230333pt;}
.wsa1{word-spacing:13.230439pt;}
.ws18f{word-spacing:13.230492pt;}
.ws1a{word-spacing:13.230598pt;}
.ws12b{word-spacing:13.231130pt;}
.ws58{word-spacing:13.231236pt;}
.ws85{word-spacing:13.231395pt;}
.wsf2{word-spacing:13.238599pt;}
.wsf1{word-spacing:13.240503pt;}
.ws14d{word-spacing:13.282617pt;}
.ws37{word-spacing:13.282988pt;}
.ws48{word-spacing:13.283095pt;}
.ws1d2{word-spacing:13.283148pt;}
.ws93{word-spacing:13.283254pt;}
.ws151{word-spacing:13.283360pt;}
.ws136{word-spacing:13.283520pt;}
.ws56{word-spacing:13.283626pt;}
.ws18a{word-spacing:13.283892pt;}
.ws18c{word-spacing:13.285026pt;}
.ws14c{word-spacing:13.319279pt;}
.ws40{word-spacing:13.335538pt;}
.ws1ad{word-spacing:13.335644pt;}
.ws71{word-spacing:13.335697pt;}
.ws145{word-spacing:13.335750pt;}
.ws1b3{word-spacing:13.335910pt;}
.ws135{word-spacing:13.336069pt;}
.wsc1{word-spacing:13.336122pt;}
.ws1bf{word-spacing:13.336175pt;}
.ws18e{word-spacing:13.336547pt;}
.wsf0{word-spacing:13.336972pt;}
.ws72{word-spacing:13.337398pt;}
.ws1da{word-spacing:13.388672pt;}
.ws121{word-spacing:13.388725pt;}
.wsee{word-spacing:13.388778pt;}
.wsba{word-spacing:13.388831pt;}
.ws32{word-spacing:13.388884pt;}
.ws16e{word-spacing:13.388937pt;}
.wsec{word-spacing:13.389044pt;}
.ws164{word-spacing:13.389203pt;}
.wsc2{word-spacing:13.389256pt;}
.ws1a1{word-spacing:13.389309pt;}
.ws148{word-spacing:13.389734pt;}
.ws146{word-spacing:13.390478pt;}
.ws179{word-spacing:13.390531pt;}
.wsed{word-spacing:13.394103pt;}
.ws177{word-spacing:13.412030pt;}
.ws90{word-spacing:13.423471pt;}
.ws105{word-spacing:13.436612pt;}
.ws10e{word-spacing:13.436897pt;}
.ws88{word-spacing:13.437545pt;}
.wsf5{word-spacing:13.442018pt;}
.ws110{word-spacing:13.442071pt;}
.ws8f{word-spacing:13.442231pt;}
.ws8a{word-spacing:13.442284pt;}
.ws49{word-spacing:13.442337pt;}
.ws125{word-spacing:13.442496pt;}
.ws1d0{word-spacing:13.442549pt;}
.ws178{word-spacing:13.442603pt;}
.ws30{word-spacing:13.442709pt;}
.ws10f{word-spacing:13.442762pt;}
.ws31{word-spacing:13.442868pt;}
.wsa0{word-spacing:13.442921pt;}
.ws104{word-spacing:13.443293pt;}
.ws89{word-spacing:13.443346pt;}
.ws112{word-spacing:13.443400pt;}
.ws91{word-spacing:13.443665pt;}
.ws1b7{word-spacing:13.443878pt;}
.ws111{word-spacing:13.457570pt;}
.ws68{word-spacing:13.485944pt;}
.ws18b{word-spacing:13.494993pt;}
.ws1b2{word-spacing:13.495046pt;}
.ws1a2{word-spacing:13.495152pt;}
.wsfc{word-spacing:13.495418pt;}
.wsf6{word-spacing:13.495683pt;}
.wsd2{word-spacing:13.495949pt;}
.ws17d{word-spacing:13.496215pt;}
.ws165{word-spacing:13.496746pt;}
.wsc9{word-spacing:13.496959pt;}
.ws45{word-spacing:13.548180pt;}
.ws161{word-spacing:13.549402pt;}
.ws160{word-spacing:13.601632pt;}
.ws142{word-spacing:13.602376pt;}
.ws195{word-spacing:13.628019pt;}
.ws35{word-spacing:13.654500pt;}
.ws34{word-spacing:13.654766pt;}
.ws139{word-spacing:13.654979pt;}
.ws36{word-spacing:13.656254pt;}
.wsf4{word-spacing:13.709388pt;}
.wsf3{word-spacing:13.721552pt;}
.wsfb{word-spacing:13.762468pt;}
.ws1e3{word-spacing:13.830955pt;}
.ws1d9{word-spacing:13.867939pt;}
.ws9e{word-spacing:13.920276pt;}
.ws9d{word-spacing:13.920382pt;}
.ws4f{word-spacing:13.920542pt;}
.ws1b1{word-spacing:14.027978pt;}
.ws25{word-spacing:14.058598pt;}
.ws116{word-spacing:14.079571pt;}
.ws170{word-spacing:14.079837pt;}
.ws118{word-spacing:14.081112pt;}
.ws117{word-spacing:14.081219pt;}
.ws115{word-spacing:14.087598pt;}
.ws114{word-spacing:14.099335pt;}
.ws65{word-spacing:14.106323pt;}
.ws64{word-spacing:14.106467pt;}
.ws63{word-spacing:14.107662pt;}
.ws14{word-spacing:14.132713pt;}
.wsd3{word-spacing:14.133183pt;}
.ws189{word-spacing:14.133609pt;}
.ws183{word-spacing:14.134193pt;}
.wsd7{word-spacing:14.187322pt;}
.wsd8{word-spacing:14.187327pt;}
.ws182{word-spacing:14.189217pt;}
.ws128{word-spacing:14.398481pt;}
.ws9a{word-spacing:14.452837pt;}
.ws12f{word-spacing:14.557776pt;}
.ws130{word-spacing:14.559051pt;}
.ws206{word-spacing:14.584627pt;}
.wseb{word-spacing:14.612132pt;}
.ws16b{word-spacing:14.717072pt;}
.ws17c{word-spacing:14.718347pt;}
.ws217{word-spacing:14.729189pt;}
.ws1ea{word-spacing:14.729476pt;}
.ws218{word-spacing:14.767888pt;}
.ws2b{word-spacing:14.769306pt;}
.ws1f1{word-spacing:14.770101pt;}
.ws16a{word-spacing:14.771481pt;}
.ws213{word-spacing:14.771949pt;}
.ws1eb{word-spacing:14.773257pt;}
.ws20e{word-spacing:14.776149pt;}
.ws20{word-spacing:14.776771pt;}
.ws131{word-spacing:14.876526pt;}
.ws1db{word-spacing:14.877164pt;}
.ws1ff{word-spacing:14.894879pt;}
.ws1a7{word-spacing:14.919372pt;}
.ws1a8{word-spacing:14.920520pt;}
.ws1a6{word-spacing:14.920568pt;}
.ws233{word-spacing:14.967241pt;}
.ws1ba{word-spacing:14.984654pt;}
.ws232{word-spacing:15.016688pt;}
.ws1f0{word-spacing:15.016735pt;}
.ws14f{word-spacing:15.036247pt;}
.ws1d1{word-spacing:15.143152pt;}
.ws80{word-spacing:15.193453pt;}
.ws81{word-spacing:15.194857pt;}
.ws1ce{word-spacing:15.195542pt;}
.ws188{word-spacing:15.196286pt;}
.ws82{word-spacing:15.196552pt;}
.ws1d7{word-spacing:15.197083pt;}
.ws229{word-spacing:15.254070pt;}
.ws22a{word-spacing:15.254453pt;}
.ws8b{word-spacing:15.301757pt;}
.ws163{word-spacing:15.302554pt;}
.ws75{word-spacing:15.355103pt;}
.ws147{word-spacing:15.355369pt;}
.ws74{word-spacing:15.355634pt;}
.ws1b9{word-spacing:15.409512pt;}
.wsb2{word-spacing:15.461583pt;}
.ws1bc{word-spacing:15.514186pt;}
.ws13c{word-spacing:15.541043pt;}
.ws13d{word-spacing:15.542716pt;}
.wsb4{word-spacing:15.620772pt;}
.ws9f{word-spacing:15.621357pt;}
.wsb5{word-spacing:15.621676pt;}
.ws44{word-spacing:15.727359pt;}
.ws79{word-spacing:15.728368pt;}
.ws129{word-spacing:15.728634pt;}
.wsda{word-spacing:15.779696pt;}
.wscc{word-spacing:15.779961pt;}
.wscb{word-spacing:15.780758pt;}
.ws78{word-spacing:15.780812pt;}
.ws141{word-spacing:15.781237pt;}
.wsd9{word-spacing:15.781715pt;}
.wsbe{word-spacing:15.833573pt;}
.ws1cf{word-spacing:15.834052pt;}
.wsd1{word-spacing:15.886176pt;}
.ws223{word-spacing:15.923896pt;}
.ws222{word-spacing:15.972530pt;}
.ws174{word-spacing:15.993400pt;}
.ws1c5{word-spacing:16.046747pt;}
.ws132{word-spacing:16.047278pt;}
.wsaf{word-spacing:16.149680pt;}
.wsb1{word-spacing:16.153227pt;}
.wsb0{word-spacing:16.170823pt;}
.ws51{word-spacing:16.205829pt;}
.ws53{word-spacing:16.206308pt;}
.ws1ac{word-spacing:16.206573pt;}
.ws52{word-spacing:16.224721pt;}
.ws208{word-spacing:16.240145pt;}
.wsa3{word-spacing:16.258166pt;}
.ws207{word-spacing:16.258355pt;}
.ws134{word-spacing:16.311513pt;}
.ws166{word-spacing:16.419002pt;}
.ws2d{word-spacing:16.419374pt;}
.ws1de{word-spacing:16.450738pt;}
.ws1c9{word-spacing:16.470808pt;}
.ws12d{word-spacing:16.577023pt;}
.ws122{word-spacing:16.630475pt;}
.ws12c{word-spacing:16.631048pt;}
.ws43{word-spacing:16.684459pt;}
.ws184{word-spacing:16.789452pt;}
.ws1fc{word-spacing:16.832778pt;}
.ws18d{word-spacing:16.842532pt;}
.ws2e{word-spacing:16.843064pt;}
.ws1fb{word-spacing:16.880169pt;}
.wsc0{word-spacing:16.949013pt;}
.wsbf{word-spacing:16.949385pt;}
.ws41{word-spacing:17.055068pt;}
.ws22b{word-spacing:17.071786pt;}
.ws1bd{word-spacing:17.108839pt;}
.ws94{word-spacing:17.214470pt;}
.ws97{word-spacing:17.214523pt;}
.ws1c4{word-spacing:17.215054pt;}
.ws11d{word-spacing:17.216329pt;}
.ws96{word-spacing:17.236004pt;}
.ws95{word-spacing:17.247620pt;}
.ws1c1{word-spacing:17.480033pt;}
.wsfd{word-spacing:17.480564pt;}
.wsd0{word-spacing:17.534442pt;}
.ws1e6{word-spacing:17.549468pt;}
.ws70{word-spacing:17.692993pt;}
.ws1af{word-spacing:17.747349pt;}
.ws1b0{word-spacing:17.905901pt;}
.ws180{word-spacing:17.906698pt;}
.ws1e1{word-spacing:17.980908pt;}
.wsf{word-spacing:18.001516pt;}
.ws227{word-spacing:18.075641pt;}
.ws126{word-spacing:18.117905pt;}
.ws127{word-spacing:18.119074pt;}
.ws86{word-spacing:18.225820pt;}
.ws14b{word-spacing:18.543932pt;}
.ws1b5{word-spacing:18.702483pt;}
.ws162{word-spacing:18.863054pt;}
.ws6f{word-spacing:18.914913pt;}
.ws10d{word-spacing:19.181698pt;}
.ws10c{word-spacing:19.234969pt;}
.ws1b4{word-spacing:19.340515pt;}
.ws13{word-spacing:19.786623pt;}
.ws143{word-spacing:19.871535pt;}
.ws17f{word-spacing:19.978015pt;}
.ws20d{word-spacing:20.031198pt;}
.ws1f{word-spacing:20.689007pt;}
.ws22c{word-spacing:20.754227pt;}
.ws22d{word-spacing:20.771853pt;}
.wsd6{word-spacing:20.774864pt;}
.ws19{word-spacing:23.813706pt;}
.ws18{word-spacing:23.814663pt;}
.wse{word-spacing:29.118142pt;}
.ws15{word-spacing:29.456959pt;}
.ws11{word-spacing:36.337329pt;}
.ws10{word-spacing:39.648378pt;}
.ws197{word-spacing:183.727992pt;}
._0{margin-left:-384.960000pt;}
._f{margin-left:-6.782763pt;}
._9{margin-left:-5.431104pt;}
._13{margin-left:-4.461017pt;}
._6{margin-left:-3.422458pt;}
._b{margin-left:-2.506160pt;}
._1{margin-left:-0.918173pt;}
._2{width:2.352071pt;}
._3{width:4.352047pt;}
._1a{width:10.063711pt;}
._4{width:11.530462pt;}
._d{width:12.503457pt;}
._e{width:14.059229pt;}
._a{width:14.971449pt;}
._c{width:16.353021pt;}
._24{width:17.259919pt;}
._10{width:18.174970pt;}
._15{width:19.938023pt;}
._25{width:20.951171pt;}
._14{width:21.862928pt;}
._5{width:23.058019pt;}
._17{width:24.796386pt;}
._19{width:26.540599pt;}
._18{width:27.470172pt;}
._36{width:28.372048pt;}
._7{width:29.650618pt;}
._34{width:31.228194pt;}
._31{width:32.392067pt;}
._16{width:33.546518pt;}
._35{width:38.198224pt;}
._38{width:41.122237pt;}
._32{width:42.606165pt;}
._37{width:45.788273pt;}
._33{width:54.994876pt;}
._8{width:61.662133pt;}
._30{width:78.905276pt;}
._28{width:144.804280pt;}
._23{width:150.497629pt;}
._2e{width:182.340232pt;}
._2a{width:186.643626pt;}
._1c{width:188.437141pt;}
._22{width:192.016413pt;}
._26{width:195.731013pt;}
._2c{width:198.599782pt;}
._2b{width:203.621497pt;}
._29{width:207.236409pt;}
._2d{width:210.554026pt;}
._1d{width:227.501049pt;}
._27{width:235.690742pt;}
._1f{width:306.387244pt;}
._1e{width:323.911540pt;}
._20{width:365.878065pt;}
._21{width:414.008701pt;}
._1b{width:726.602621pt;}
._11{width:728.143211pt;}
._2f{width:2026.936107pt;}
._12{width:2048.189441pt;}
.fs5{font-size:37.193600pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs2{font-size:52.000000pt;}
.fs6{font-size:53.133867pt;}
.fs4{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:80.000000pt;}
.fs7{font-size:95.641600pt;}
.fs1{font-size:148.000000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:28.346933pt;}
.y9{bottom:51.666667pt;}
.y64{bottom:90.219733pt;}
.y20{bottom:93.018800pt;}
.y186{bottom:93.697333pt;}
.y10e{bottom:95.406800pt;}
.y12f{bottom:96.619867pt;}
.y1b0{bottom:98.417200pt;}
.y7{bottom:100.000000pt;}
.y4d{bottom:100.607867pt;}
.y63{bottom:107.316133pt;}
.y1f{bottom:108.919733pt;}
.y185{bottom:110.434933pt;}
.y15b{bottom:112.068267pt;}
.y10d{bottom:112.143733pt;}
.y12e{bottom:113.357333pt;}
.y1eb{bottom:114.876000pt;}
.y4c{bottom:117.345333pt;}
.y91{bottom:121.053067pt;}
.y1af{bottom:122.009333pt;}
.y62{bottom:124.412000pt;}
.y1e{bottom:124.819733pt;}
.y184{bottom:127.171867pt;}
.y15a{bottom:128.805200pt;}
.y10c{bottom:128.881200pt;}
.y12d{bottom:130.094800pt;}
.y1e9{bottom:130.218667pt;}
.y1ea{bottom:130.218800pt;}
.y4b{bottom:134.082533pt;}
.y2{bottom:137.000000pt;}
.y1ae{bottom:137.630667pt;}
.y90{bottom:137.789333pt;}
.yc2{bottom:138.657333pt;}
.y1d{bottom:140.719733pt;}
.y61{bottom:141.506667pt;}
.y183{bottom:143.909333pt;}
.y159{bottom:145.542667pt;}
.y1e8{bottom:145.561333pt;}
.y10b{bottom:145.618667pt;}
.ye3{bottom:146.169333pt;}
.y12c{bottom:146.832400pt;}
.y4a{bottom:150.820000pt;}
.yc1{bottom:153.269333pt;}
.y8e{bottom:154.526400pt;}
.y8f{bottom:154.526667pt;}
.y1c{bottom:156.621333pt;}
.y60{bottom:158.602667pt;}
.y182{bottom:160.646667pt;}
.y1e7{bottom:160.902667pt;}
.y1ad{bottom:161.222667pt;}
.y158{bottom:162.280400pt;}
.y10a{bottom:162.356000pt;}
.y12b{bottom:163.569333pt;}
.y49{bottom:167.557333pt;}
.yc0{bottom:167.881333pt;}
.y8d{bottom:171.263867pt;}
.y1b{bottom:172.521333pt;}
.y5f{bottom:175.698667pt;}
.y1e6{bottom:176.245333pt;}
.y1ac{bottom:176.844000pt;}
.y181{bottom:177.384000pt;}
.y157{bottom:179.017333pt;}
.y109{bottom:179.093333pt;}
.y3{bottom:179.666667pt;}
.y129{bottom:180.306533pt;}
.y12a{bottom:180.306667pt;}
.ybf{bottom:182.493333pt;}
.y48{bottom:184.294667pt;}
.y6{bottom:185.000000pt;}
.y8c{bottom:188.001333pt;}
.y1a{bottom:188.421333pt;}
.y1e5{bottom:191.588000pt;}
.y1ab{bottom:192.465333pt;}
.y5e{bottom:192.794667pt;}
.y180{bottom:194.121333pt;}
.y108{bottom:195.830667pt;}
.y128{bottom:197.044000pt;}
.ybe{bottom:197.105333pt;}
.y47{bottom:201.032000pt;}
.y19{bottom:204.322667pt;}
.y8b{bottom:204.738667pt;}
.y1e4{bottom:206.930667pt;}
.y1aa{bottom:208.086667pt;}
.y156{bottom:208.853333pt;}
.y17f{bottom:210.858667pt;}
.ybd{bottom:211.717333pt;}
.y107{bottom:212.568267pt;}
.y127{bottom:217.766667pt;}
.y46{bottom:217.769333pt;}
.y18{bottom:220.222933pt;}
.y8a{bottom:221.476000pt;}
.y1e3{bottom:222.273333pt;}
.y148{bottom:222.672000pt;}
.y155{bottom:225.949333pt;}
.y5{bottom:226.000000pt;}
.ybc{bottom:226.329333pt;}
.y17e{bottom:227.596000pt;}
.y106{bottom:229.305200pt;}
.y1a9{bottom:231.678667pt;}
.y45{bottom:234.506667pt;}
.y17{bottom:236.122933pt;}
.y1e2{bottom:237.616000pt;}
.y89{bottom:238.213333pt;}
.y147{bottom:239.409333pt;}
.ybb{bottom:240.941333pt;}
.y154{bottom:243.045333pt;}
.y17d{bottom:244.333333pt;}
.y105{bottom:246.042667pt;}
.y1a8{bottom:247.300000pt;}
.y126{bottom:247.654667pt;}
.y44{bottom:251.244000pt;}
.y16{bottom:252.024000pt;}
.y1e1{bottom:252.958667pt;}
.y88{bottom:254.950667pt;}
.yba{bottom:255.553333pt;}
.y146{bottom:256.146667pt;}
.y153{bottom:260.141333pt;}
.y17c{bottom:261.070667pt;}
.y1a7{bottom:262.921333pt;}
.y125{bottom:264.392000pt;}
.y104{bottom:266.765333pt;}
.y4{bottom:267.000000pt;}
.y43{bottom:267.981333pt;}
.y1e0{bottom:268.301333pt;}
.y87{bottom:271.688000pt;}
.y145{bottom:272.884000pt;}
.yb9{bottom:276.832000pt;}
.y152{bottom:277.237333pt;}
.y17b{bottom:277.808000pt;}
.y1a6{bottom:278.542667pt;}
.y124{bottom:281.129333pt;}
.y1df{bottom:283.644000pt;}
.y42{bottom:284.718533pt;}
.y86{bottom:288.425733pt;}
.y144{bottom:289.621333pt;}
.y103{bottom:293.812000pt;}
.y1a5{bottom:294.164000pt;}
.y151{bottom:294.333333pt;}
.y17a{bottom:294.545333pt;}
.y123{bottom:297.866400pt;}
.y1de{bottom:298.985333pt;}
.y41{bottom:301.456000pt;}
.yb8{bottom:304.938667pt;}
.y85{bottom:305.162667pt;}
.y143{bottom:306.358667pt;}
.y1a4{bottom:309.785333pt;}
.y102{bottom:310.908000pt;}
.y179{bottom:311.283067pt;}
.y15{bottom:311.849200pt;}
.y1dd{bottom:314.328000pt;}
.y122{bottom:314.603333pt;}
.y40{bottom:318.193333pt;}
.y84{bottom:321.900000pt;}
.yb7{bottom:322.034667pt;}
.yb6{bottom:322.034800pt;}
.y142{bottom:323.096000pt;}
.y1a3{bottom:325.406667pt;}
.y8{bottom:327.000000pt;}
.y14{bottom:327.749200pt;}
.y101{bottom:328.004000pt;}
.y178{bottom:328.020000pt;}
.y1dc{bottom:329.670667pt;}
.y121{bottom:331.340267pt;}
.y3f{bottom:334.929067pt;}
.y83{bottom:338.637333pt;}
.yb5{bottom:339.130667pt;}
.y141{bottom:339.833333pt;}
.y13{bottom:343.650800pt;}
.y177{bottom:344.757333pt;}
.y1db{bottom:345.013333pt;}
.y100{bottom:345.100000pt;}
.y120{bottom:348.077733pt;}
.y3e{bottom:351.666533pt;}
.y82{bottom:355.374533pt;}
.y140{bottom:356.570667pt;}
.y1a2{bottom:356.968000pt;}
.y12{bottom:359.550800pt;}
.y1da{bottom:360.356000pt;}
.y176{bottom:361.494667pt;}
.y11f{bottom:364.814667pt;}
.y3d{bottom:368.404000pt;}
.y81{bottom:372.112000pt;}
.y13f{bottom:373.308000pt;}
.y1a1{bottom:373.705067pt;}
.y1d9{bottom:375.698667pt;}
.y1d8{bottom:375.699200pt;}
.y175{bottom:378.232000pt;}
.y11e{bottom:381.552000pt;}
.y11{bottom:384.749200pt;}
.y3c{bottom:385.141333pt;}
.y80{bottom:388.849333pt;}
.yb4{bottom:388.849733pt;}
.y13e{bottom:390.045333pt;}
.y1a0{bottom:390.442533pt;}
.y1d7{bottom:391.041333pt;}
.y174{bottom:394.969333pt;}
.y5d{bottom:398.229333pt;}
.y11d{bottom:398.289333pt;}
.y10{bottom:400.649200pt;}
.y3a{bottom:401.878533pt;}
.y3b{bottom:401.878667pt;}
.yb3{bottom:405.586667pt;}
.y1d5{bottom:406.383733pt;}
.y1d6{bottom:406.384000pt;}
.y13d{bottom:406.782667pt;}
.y19f{bottom:407.180000pt;}
.y7f{bottom:409.572000pt;}
.y173{bottom:411.706533pt;}
.y11c{bottom:415.026667pt;}
.y5c{bottom:415.324000pt;}
.y39{bottom:418.616000pt;}
.y1d4{bottom:421.725333pt;}
.yb2{bottom:422.324000pt;}
.y13c{bottom:423.518667pt;}
.y19e{bottom:423.917333pt;}
.yf{bottom:424.520000pt;}
.y172{bottom:428.444000pt;}
.y11b{bottom:431.764000pt;}
.y5b{bottom:432.420000pt;}
.y38{bottom:435.353333pt;}
.y1d3{bottom:437.068000pt;}
.yb1{bottom:439.061333pt;}
.y7e{bottom:439.460000pt;}
.y13b{bottom:440.256400pt;}
.ye{bottom:440.421067pt;}
.y19d{bottom:440.654667pt;}
.y171{bottom:445.181333pt;}
.y11a{bottom:448.501733pt;}
.y5a{bottom:449.516000pt;}
.y37{bottom:452.090667pt;}
.y1d2{bottom:452.410667pt;}
.yb0{bottom:455.798667pt;}
.y7d{bottom:456.197333pt;}
.yd{bottom:456.321067pt;}
.y13a{bottom:456.993333pt;}
.y19c{bottom:457.392000pt;}
.y170{bottom:461.918667pt;}
.y119{bottom:465.238667pt;}
.y59{bottom:466.612000pt;}
.y1d1{bottom:467.753333pt;}
.y36{bottom:468.828000pt;}
.ye2{bottom:469.348000pt;}
.yc{bottom:472.221067pt;}
.yaf{bottom:472.536000pt;}
.y7c{bottom:472.935067pt;}
.y139{bottom:473.730667pt;}
.y19b{bottom:474.129333pt;}
.y16f{bottom:478.656000pt;}
.y118{bottom:481.976000pt;}
.y1d0{bottom:483.096000pt;}
.y35{bottom:485.565333pt;}
.ye1{bottom:486.085333pt;}
.yb{bottom:488.122667pt;}
.yae{bottom:489.273333pt;}
.y7b{bottom:489.672000pt;}
.y138{bottom:490.468000pt;}
.y19a{bottom:490.866667pt;}
.y16e{bottom:495.392000pt;}
.y1cf{bottom:498.438667pt;}
.y117{bottom:502.698933pt;}
.ye0{bottom:502.822667pt;}
.ya{bottom:504.022667pt;}
.yad{bottom:506.011067pt;}
.y34{bottom:506.288000pt;}
.y7a{bottom:506.409333pt;}
.y137{bottom:507.205333pt;}
.y199{bottom:507.604000pt;}
.y16d{bottom:512.129333pt;}
.y1ce{bottom:513.781333pt;}
.ydf{bottom:519.560000pt;}
.yff{bottom:520.754667pt;}
.yac{bottom:522.748000pt;}
.y79{bottom:523.145333pt;}
.y136{bottom:523.942667pt;}
.y198{bottom:524.341333pt;}
.y16c{bottom:528.866667pt;}
.y1cd{bottom:529.124000pt;}
.y116{bottom:529.745333pt;}
.yde{bottom:536.296000pt;}
.yfe{bottom:537.492000pt;}
.yab{bottom:539.485333pt;}
.y78{bottom:539.882667pt;}
.y135{bottom:540.680400pt;}
.y1cc{bottom:544.466667pt;}
.y197{bottom:545.064000pt;}
.y16b{bottom:545.603867pt;}
.y115{bottom:546.841333pt;}
.ydd{bottom:553.033333pt;}
.yfd{bottom:554.229333pt;}
.y77{bottom:556.620000pt;}
.y134{bottom:557.417333pt;}
.y1cb{bottom:559.808000pt;}
.yaa{bottom:560.206667pt;}
.y16a{bottom:562.341333pt;}
.y114{bottom:563.937333pt;}
.ydc{bottom:569.770667pt;}
.yfc{bottom:570.966667pt;}
.y33{bottom:573.087733pt;}
.y76{bottom:573.357333pt;}
.y196{bottom:574.952000pt;}
.y1ca{bottom:575.150667pt;}
.ya9{bottom:578.140000pt;}
.y169{bottom:579.078667pt;}
.y113{bottom:581.032000pt;}
.ydb{bottom:586.508000pt;}
.yfb{bottom:587.704000pt;}
.y75{bottom:590.094667pt;}
.y74{bottom:590.095067pt;}
.y1c9{bottom:590.493333pt;}
.y195{bottom:591.689333pt;}
.y168{bottom:595.816000pt;}
.y112{bottom:598.128133pt;}
.yda{bottom:603.245333pt;}
.yfa{bottom:604.441333pt;}
.y1c8{bottom:605.836000pt;}
.y32{bottom:606.322667pt;}
.y73{bottom:606.832000pt;}
.ya8{bottom:608.028000pt;}
.y194{bottom:608.426667pt;}
.y167{bottom:612.553333pt;}
.y111{bottom:615.224000pt;}
.yd9{bottom:619.982667pt;}
.yf9{bottom:621.178667pt;}
.y72{bottom:623.569333pt;}
.y31{bottom:623.618667pt;}
.ya7{bottom:624.765333pt;}
.y193{bottom:625.164000pt;}
.y166{bottom:629.290400pt;}
.y110{bottom:632.320000pt;}
.y1c7{bottom:636.521333pt;}
.yd8{bottom:636.720000pt;}
.yf8{bottom:637.916000pt;}
.y71{bottom:640.306667pt;}
.y30{bottom:640.913333pt;}
.ya6{bottom:641.502667pt;}
.y192{bottom:641.901333pt;}
.y165{bottom:646.027867pt;}
.y10f{bottom:649.416000pt;}
.y1c6{bottom:651.864000pt;}
.yd7{bottom:653.457333pt;}
.yf7{bottom:654.653333pt;}
.y70{bottom:657.044000pt;}
.y2f{bottom:658.209333pt;}
.ya5{bottom:658.240000pt;}
.y191{bottom:658.638667pt;}
.y164{bottom:662.765333pt;}
.y1c5{bottom:667.206667pt;}
.yd5{bottom:670.194533pt;}
.yd6{bottom:670.194667pt;}
.yf6{bottom:671.390667pt;}
.y6f{bottom:673.781333pt;}
.y133{bottom:674.977333pt;}
.ya4{bottom:674.977733pt;}
.y190{bottom:675.376000pt;}
.y2e{bottom:675.504000pt;}
.y163{bottom:679.502667pt;}
.y1c4{bottom:682.548000pt;}
.yd4{bottom:686.932000pt;}
.yf5{bottom:688.128000pt;}
.y6e{bottom:690.518667pt;}
.ya3{bottom:691.714667pt;}
.y18f{bottom:692.113733pt;}
.y2d{bottom:692.798667pt;}
.y162{bottom:696.240000pt;}
.y1c3{bottom:697.890667pt;}
.yd3{bottom:703.669333pt;}
.yf4{bottom:704.865067pt;}
.y6d{bottom:707.256000pt;}
.y132{bottom:708.451867pt;}
.ya2{bottom:708.452000pt;}
.y18e{bottom:708.850667pt;}
.y2c{bottom:710.094667pt;}
.y161{bottom:712.977333pt;}
.y1c2{bottom:713.233333pt;}
.yd2{bottom:720.406933pt;}
.yf3{bottom:721.602533pt;}
.y6c{bottom:723.993333pt;}
.ya1{bottom:725.189333pt;}
.ya0{bottom:725.189733pt;}
.y18d{bottom:725.588000pt;}
.y2b{bottom:727.389333pt;}
.y1c1{bottom:728.576000pt;}
.y160{bottom:729.714667pt;}
.yd1{bottom:737.143867pt;}
.yf2{bottom:738.340000pt;}
.y9f{bottom:741.926667pt;}
.y18c{bottom:742.324000pt;}
.y1c0{bottom:743.918667pt;}
.y2a{bottom:744.684000pt;}
.y6b{bottom:744.716267pt;}
.y15f{bottom:750.437600pt;}
.yd0{bottom:753.881333pt;}
.yf1{bottom:755.077333pt;}
.y9e{bottom:758.664000pt;}
.y18b{bottom:759.061333pt;}
.y1bf{bottom:759.261333pt;}
.y29{bottom:761.980000pt;}
.y6a{bottom:762.648000pt;}
.ycf{bottom:770.618667pt;}
.yf0{bottom:771.814667pt;}
.y1be{bottom:774.604000pt;}
.y9d{bottom:775.401333pt;}
.y18a{bottom:775.798667pt;}
.y15e{bottom:777.484000pt;}
.y28{bottom:779.274667pt;}
.yce{bottom:787.356000pt;}
.yef{bottom:788.552000pt;}
.y1bd{bottom:789.946667pt;}
.y9c{bottom:792.138667pt;}
.y69{bottom:792.536000pt;}
.y15d{bottom:794.580400pt;}
.ycd{bottom:804.093333pt;}
.yee{bottom:805.289333pt;}
.y131{bottom:808.874533pt;}
.y9b{bottom:808.874667pt;}
.y68{bottom:809.273333pt;}
.y15c{bottom:811.674667pt;}
.y27{bottom:813.573067pt;}
.y1bc{bottom:820.630667pt;}
.ycc{bottom:820.830667pt;}
.yed{bottom:822.025600pt;}
.y9a{bottom:825.612000pt;}
.y67{bottom:826.010667pt;}
.y26{bottom:827.920000pt;}
.y1bb{bottom:835.973333pt;}
.ycb{bottom:837.568000pt;}
.yec{bottom:838.762533pt;}
.y25{bottom:842.265333pt;}
.y99{bottom:842.349333pt;}
.y98{bottom:842.349733pt;}
.y66{bottom:842.748000pt;}
.y1ba{bottom:851.316000pt;}
.y1f3{bottom:853.906667pt;}
.yca{bottom:854.305333pt;}
.yeb{bottom:855.500000pt;}
.y97{bottom:859.086667pt;}
.y58{bottom:859.485333pt;}
.y1{bottom:859.666667pt;}
.y150{bottom:864.802667pt;}
.y1b9{bottom:866.658667pt;}
.y1f2{bottom:869.249333pt;}
.yc9{bottom:871.042667pt;}
.yea{bottom:872.237333pt;}
.y96{bottom:875.824000pt;}
.y57{bottom:876.222667pt;}
.y189{bottom:876.223067pt;}
.y14f{bottom:879.414667pt;}
.y1b8{bottom:882.001333pt;}
.y1f1{bottom:884.592000pt;}
.y24{bottom:885.835867pt;}
.yc8{bottom:887.780000pt;}
.ye9{bottom:888.974533pt;}
.y95{bottom:892.561333pt;}
.y56{bottom:892.960000pt;}
.y14e{bottom:894.026667pt;}
.y1b7{bottom:897.344000pt;}
.yc7{bottom:904.517333pt;}
.ye8{bottom:905.712000pt;}
.y94{bottom:909.298667pt;}
.y130{bottom:909.299067pt;}
.y55{bottom:909.697333pt;}
.y188{bottom:909.698133pt;}
.y1b6{bottom:912.686667pt;}
.y14d{bottom:915.306667pt;}
.y1f0{bottom:916.670667pt;}
.yc6{bottom:921.254667pt;}
.y23{bottom:921.320267pt;}
.ye7{bottom:922.449333pt;}
.y93{bottom:926.036000pt;}
.y54{bottom:926.434667pt;}
.y187{bottom:926.435067pt;}
.y1b5{bottom:928.029333pt;}
.y1ef{bottom:932.013333pt;}
.yc5{bottom:937.992000pt;}
.ye6{bottom:939.186667pt;}
.y53{bottom:943.172000pt;}
.y1b4{bottom:943.370667pt;}
.y14c{bottom:943.413333pt;}
.y22{bottom:946.425467pt;}
.y92{bottom:946.758667pt;}
.y1ee{bottom:947.356000pt;}
.yc4{bottom:954.729333pt;}
.ye5{bottom:955.924000pt;}
.y1b3{bottom:958.713333pt;}
.y65{bottom:959.909200pt;}
.y52{bottom:959.909333pt;}
.y14b{bottom:960.508000pt;}
.y1ed{bottom:962.698667pt;}
.y21{bottom:971.530667pt;}
.ye4{bottom:972.661333pt;}
.y1b2{bottom:974.056000pt;}
.y1b1{bottom:974.056400pt;}
.yc3{bottom:975.450667pt;}
.y51{bottom:976.646667pt;}
.y14a{bottom:977.604000pt;}
.y1ec{bottom:978.041333pt;}
.y50{bottom:993.384000pt;}
.y149{bottom:994.700000pt;}
.y4f{bottom:1046.810667pt;}
.h9{height:27.076941pt;}
.ha{height:27.262909pt;}
.he{height:30.945242pt;}
.h12{height:31.157778pt;}
.h14{height:34.574438pt;}
.hf{height:34.813542pt;}
.h13{height:35.052646pt;}
.h10{height:38.415786pt;}
.hd{height:38.416319pt;}
.h5{height:38.542969pt;}
.h11{height:38.681455pt;}
.hb{height:38.947124pt;}
.h7{height:41.507813pt;}
.h2{height:46.343750pt;}
.h6{height:59.296875pt;}
.hc{height:69.148877pt;}
.h4{height:109.699219pt;}
.h1{height:263.000000pt;}
.h3{height:349.000000pt;}
.h8{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w1{width:793.000000pt;}
.w2{width:793.066667pt;}
.w0{width:793.333333pt;}
.w3{width:793.706667pt;}
.w4{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:46.689580pt;}
.x4{left:47.621333pt;}
.x2{left:75.000000pt;}
.x55{left:76.309333pt;}
.x7{left:220.912083pt;}
.x6{left:221.858667pt;}
.x42{left:229.828000pt;}
.x50{left:238.997240pt;}
.x3d{left:241.830667pt;}
.x41{left:243.445333pt;}
.x4f{left:244.526400pt;}
.x3c{left:246.278667pt;}
.x19{left:248.032000pt;}
.x8{left:250.204000pt;}
.x30{left:253.524000pt;}
.x1a{left:261.316000pt;}
.x3e{left:262.376000pt;}
.x20{left:276.908000pt;}
.x31{left:278.129333pt;}
.x25{left:280.066667pt;}
.x40{left:284.611907pt;}
.x21{left:290.192000pt;}
.x26{left:292.952000pt;}
.x3f{left:294.307733pt;}
.x22{left:303.309333pt;}
.x11{left:305.578667pt;}
.x9{left:306.512000pt;}
.xd{left:308.304000pt;}
.x12{left:312.220000pt;}
.xa{left:313.153333pt;}
.xe{left:314.945333pt;}
.xf{left:318.200000pt;}
.x48{left:319.122667pt;}
.x10{left:324.841333pt;}
.x54{left:326.164000pt;}
.x4c{left:356.648000pt;}
.x2e{left:364.882667pt;}
.x4d{left:372.136000pt;}
.x2f{left:380.372000pt;}
.x1b{left:397.092000pt;}
.x2c{left:406.909333pt;}
.x2a{left:414.956000pt;}
.x1c{left:422.524000pt;}
.x2d{left:425.724000pt;}
.x2b{left:427.840000pt;}
.x1f{left:435.314667pt;}
.x34{left:436.444000pt;}
.x43{left:441.086667pt;}
.x35{left:443.085333pt;}
.xb{left:449.733333pt;}
.x4e{left:453.933333pt;}
.xc{left:456.374667pt;}
.x52{left:466.237333pt;}
.x3a{left:471.754667pt;}
.x3b{left:477.732000pt;}
.x53{left:479.521333pt;}
.x36{left:487.688000pt;}
.x4b{left:493.813333pt;}
.x3{left:495.000000pt;}
.x37{left:503.176000pt;}
.x38{left:513.714667pt;}
.x39{left:519.692000pt;}
.x13{left:526.884000pt;}
.x15{left:533.657333pt;}
.x14{left:545.258667pt;}
.x16{left:552.460000pt;}
.x32{left:558.388000pt;}
.x44{left:568.822667pt;}
.x33{left:577.520000pt;}
.x45{left:590.953333pt;}
.x23{left:609.166667pt;}
.x24{left:622.052000pt;}
.x17{left:624.001333pt;}
.x49{left:627.140000pt;}
.x18{left:643.426667pt;}
.x46{left:645.522667pt;}
.x4a{left:652.593333pt;}
.x47{left:658.806667pt;}
.x1{left:670.500000pt;}
.x27{left:692.185333pt;}
.x28{left:716.914667pt;}
.x29{left:724.161333pt;}
.x1d{left:727.152000pt;}
.x51{left:733.593333pt;}
.x1e{left:740.436000pt;}
}




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