
    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_fe432b8d64c6489ac43d98a6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_010835cecd976f038eb5e911.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9f15145c0cb2f60c86fc77d7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5d711aeb94f69025f39e895b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_984c5998e7eae8e50ff6a0d9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9b5aeefeaaf4ed3950e36d3c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.580000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_33c658e4b0f7924e73df7c4b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.505000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8f56c192a25b9129a357c05a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m18{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);}
.m6{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m1d{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);}
.me{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);}
.m14{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);}
.m17{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);}
.m29{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);}
.m5{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);}
.m1f{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);}
.m19{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m11{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);}
.m2{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);}
.m1e{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m1c{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);}
.m22{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);}
.mc{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);}
.m28{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);}
.m20{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);}
.m8{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);}
.m13{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);}
.m26{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);}
.m21{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);}
.m16{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);}
.md{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);}
.m9{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);}
.mf{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v5{vertical-align:-10.470000px;}
.v6{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:11.760000px;}
.v8{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:32.880000px;}
.ls5{letter-spacing:0.000000px;}
.ls88{letter-spacing:0.000800px;}
.ls33{letter-spacing:0.542815px;}
.ls35{letter-spacing:0.548815px;}
.ls25{letter-spacing:0.698383px;}
.ls24{letter-spacing:0.742766px;}
.ls45{letter-spacing:0.748766px;}
.ls6b{letter-spacing:0.920542px;}
.ls42{letter-spacing:0.992725px;}
.ls40{letter-spacing:0.993292px;}
.ls47{letter-spacing:0.993634px;}
.ls17{letter-spacing:0.994200px;}
.ls27{letter-spacing:0.994766px;}
.ls30{letter-spacing:0.998725px;}
.ls2d{letter-spacing:0.999292px;}
.ls1c{letter-spacing:0.999634px;}
.ls16{letter-spacing:1.000200px;}
.ls4a{letter-spacing:1.021565px;}
.ls6d{letter-spacing:1.087913px;}
.ls56{letter-spacing:1.129756px;}
.ls34{letter-spacing:1.134571px;}
.ls7d{letter-spacing:1.166383px;}
.ls39{letter-spacing:1.452571px;}
.ls32{letter-spacing:1.458571px;}
.ls13{letter-spacing:1.498766px;}
.ls77{letter-spacing:1.548184px;}
.ls52{letter-spacing:2.803468px;}
.ls7c{letter-spacing:2.845310px;}
.ls5f{letter-spacing:2.887153px;}
.ls37{letter-spacing:2.902200px;}
.ls51{letter-spacing:2.928996px;}
.ls8a{letter-spacing:2.991428px;}
.ls61{letter-spacing:3.138210px;}
.ls3a{letter-spacing:4.020571px;}
.ls65{letter-spacing:4.078348px;}
.ls79{letter-spacing:4.100594px;}
.ls78{letter-spacing:4.267966px;}
.ls38{letter-spacing:4.302571px;}
.ls46{letter-spacing:4.620571px;}
.ls7a{letter-spacing:4.770079px;}
.ls5b{letter-spacing:4.811922px;}
.ls74{letter-spacing:4.853765px;}
.ls64{letter-spacing:4.979293px;}
.ls5a{letter-spacing:5.230350px;}
.ls6f{letter-spacing:5.565092px;}
.ls36{letter-spacing:5.640571px;}
.ls6e{letter-spacing:5.774306px;}
.ls7b{letter-spacing:5.899835px;}
.ls62{letter-spacing:6.192734px;}
.ls0{letter-spacing:10.461300px;}
.ls4{letter-spacing:11.954850px;}
.ls85{letter-spacing:13.252465px;}
.ls84{letter-spacing:13.448400px;}
.ls83{letter-spacing:13.454400px;}
.ls6{letter-spacing:14.107042px;}
.ls87{letter-spacing:14.732753px;}
.ls8{letter-spacing:14.884124px;}
.ls7f{letter-spacing:15.003676px;}
.ls9{letter-spacing:15.183002px;}
.ls7{letter-spacing:15.242778px;}
.ls86{letter-spacing:15.420988px;}
.ls81{letter-spacing:15.661207px;}
.ls80{letter-spacing:16.378514px;}
.ls89{letter-spacing:16.585694px;}
.ls1f{letter-spacing:17.319483px;}
.ls21{letter-spacing:17.325483px;}
.ls12{letter-spacing:18.069483px;}
.ls11{letter-spacing:18.095108px;}
.ls2a{letter-spacing:18.098383px;}
.ls22{letter-spacing:18.100766px;}
.ls1e{letter-spacing:18.101675px;}
.ls14{letter-spacing:18.512383px;}
.ls4c{letter-spacing:18.518383px;}
.ls20{letter-spacing:18.696583px;}
.ls82{letter-spacing:18.769538px;}
.ls29{letter-spacing:18.816571px;}
.ls43{letter-spacing:18.843483px;}
.ls48{letter-spacing:19.083483px;}
.ls2b{letter-spacing:19.202383px;}
.ls4d{letter-spacing:19.247524px;}
.ls15{letter-spacing:19.253524px;}
.ls3e{letter-spacing:19.263483px;}
.ls3c{letter-spacing:19.269483px;}
.ls23{letter-spacing:19.529108px;}
.ls2c{letter-spacing:19.937524px;}
.ls3b{letter-spacing:21.222571px;}
.ls28{letter-spacing:21.228571px;}
.ls1d{letter-spacing:21.240571px;}
.ls2f{letter-spacing:21.270571px;}
.ls31{letter-spacing:21.276571px;}
.ls2e{letter-spacing:21.912571px;}
.ls7e{letter-spacing:21.937645px;}
.ls19{letter-spacing:22.463524px;}
.ls8b{letter-spacing:22.592400px;}
.ls1a{letter-spacing:22.922383px;}
.ls1b{letter-spacing:23.657524px;}
.ls18{letter-spacing:25.632571px;}
.ls26{letter-spacing:25.644571px;}
.ls76{letter-spacing:25.900693px;}
.ls5c{letter-spacing:27.072292px;}
.ls5d{letter-spacing:29.761151px;}
.ls6c{letter-spacing:30.595151px;}
.ls67{letter-spacing:30.841151px;}
.ls66{letter-spacing:30.847151px;}
.ls69{letter-spacing:35.139745px;}
.ls6a{letter-spacing:35.145745px;}
.ls68{letter-spacing:36.336785px;}
.ls57{letter-spacing:47.951849px;}
.ls72{letter-spacing:48.746862px;}
.ls55{letter-spacing:48.956076px;}
.ls5e{letter-spacing:49.165290px;}
.ls50{letter-spacing:49.302600px;}
.ls54{letter-spacing:49.914600px;}
.ls59{letter-spacing:50.169517px;}
.ls53{letter-spacing:50.748600px;}
.ls58{letter-spacing:51.048216px;}
.ls73{letter-spacing:52.698600px;}
.ls70{letter-spacing:53.224042px;}
.ls71{letter-spacing:54.395640px;}
.ls1{letter-spacing:57.415200px;}
.ls41{letter-spacing:60.520766px;}
.ls4b{letter-spacing:60.521108px;}
.ls3d{letter-spacing:60.521675px;}
.ls4f{letter-spacing:60.526200px;}
.ls4e{letter-spacing:60.527108px;}
.ls3f{letter-spacing:61.122583px;}
.ls44{letter-spacing:61.961108px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.ls49{letter-spacing:64.398571px;}
.ls60{letter-spacing:76.068600px;}
.ls75{letter-spacing:149.169582px;}
.ls63{letter-spacing:153.228334px;}
.lsc{letter-spacing:210.025286px;}
.lsb{letter-spacing:232.429354px;}
.ls10{letter-spacing:242.841696px;}
.lse{letter-spacing:247.492819px;}
.lsd{letter-spacing:307.883866px;}
.lsf{letter-spacing:310.601866px;}
.lsa{letter-spacing:321.331066px;}
.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;}
}
.ws6f{word-spacing:-44.223486px;}
.wse3{word-spacing:-36.361393px;}
.wsda{word-spacing:-16.025792px;}
.wsb7{word-spacing:-15.439993px;}
.ws44{word-spacing:-14.943900px;}
.ws61{word-spacing:-13.449600px;}
.ws86{word-spacing:-13.264168px;}
.wsec{word-spacing:-12.008884px;}
.ws27{word-spacing:-11.955150px;}
.wsd3{word-spacing:-11.548613px;}
.wsa{word-spacing:-11.357400px;}
.ws2{word-spacing:-10.460700px;}
.ws9f{word-spacing:-10.212664px;}
.wsae{word-spacing:-9.958586px;}
.wsd9{word-spacing:-9.540158px;}
.wsd5{word-spacing:-9.079888px;}
.wsfd{word-spacing:-8.159346px;}
.ws102{word-spacing:-7.406176px;}
.wsfb{word-spacing:-6.862219px;}
.wsa9{word-spacing:-5.899835px;}
.ws6d{word-spacing:-5.200477px;}
.ws70{word-spacing:-5.021150px;}
.ws7c{word-spacing:-4.961375px;}
.ws69{word-spacing:-4.782048px;}
.ws104{word-spacing:-4.351651px;}
.wse9{word-spacing:-4.100594px;}
.ws83{word-spacing:-4.058752px;}
.wsd1{word-spacing:-3.975066px;}
.wsc9{word-spacing:-3.933223px;}
.wsdd{word-spacing:-3.891380px;}
.wsd6{word-spacing:-3.765852px;}
.wsc8{word-spacing:-3.724009px;}
.wsc3{word-spacing:-3.640324px;}
.wsd2{word-spacing:-3.556638px;}
.ws6a{word-spacing:-3.526760px;}
.wsc1{word-spacing:-3.514795px;}
.ws97{word-spacing:-3.431110px;}
.wsc4{word-spacing:-3.347424px;}
.wseb{word-spacing:-3.306805px;}
.wsaa{word-spacing:-3.221896px;}
.wsa0{word-spacing:-3.096367px;}
.ws105{word-spacing:-3.012682px;}
.ws4a{word-spacing:-2.929004px;}
.wse5{word-spacing:-2.887153px;}
.ws49{word-spacing:-2.869229px;}
.wsac{word-spacing:-2.803468px;}
.ws2a{word-spacing:-2.749678px;}
.wsf7{word-spacing:-2.719782px;}
.ws53{word-spacing:-2.689902px;}
.ws9c{word-spacing:-2.636096px;}
.ws9d{word-spacing:-2.552411px;}
.ws4d{word-spacing:-2.510575px;}
.ws9a{word-spacing:-2.426882px;}
.ws5f{word-spacing:-2.391024px;}
.wsb9{word-spacing:-2.343197px;}
.ws1f{word-spacing:-2.331248px;}
.wscf{word-spacing:-2.301354px;}
.wsc5{word-spacing:-2.259511px;}
.ws39{word-spacing:-2.151922px;}
.wsf9{word-spacing:-2.133983px;}
.ws57{word-spacing:-2.092146px;}
.wsbb{word-spacing:-2.092140px;}
.wsdc{word-spacing:-2.050297px;}
.ws11e{word-spacing:-1.990541px;}
.ws67{word-spacing:-1.972595px;}
.ws94{word-spacing:-1.841083px;}
.wsab{word-spacing:-1.799240px;}
.ws107{word-spacing:-1.673717px;}
.ws34{word-spacing:-1.554166px;}
.ws128{word-spacing:-1.452557px;}
.ws80{word-spacing:-1.434614px;}
.ws100{word-spacing:-1.380812px;}
.ws47{word-spacing:-1.374839px;}
.ws2b{word-spacing:-1.315063px;}
.ws1a{word-spacing:-1.255288px;}
.ws48{word-spacing:-1.195512px;}
.wscb{word-spacing:-1.171598px;}
.ws43{word-spacing:-1.135736px;}
.ws4b{word-spacing:-1.075961px;}
.ws3f{word-spacing:-1.016185px;}
.ws7d{word-spacing:-0.996586px;}
.wsb0{word-spacing:-0.962384px;}
.ws42{word-spacing:-0.956410px;}
.ws129{word-spacing:-0.914573px;}
.ws5a{word-spacing:-0.896634px;}
.ws3a{word-spacing:-0.836858px;}
.ws111{word-spacing:-0.777083px;}
.ws13{word-spacing:-0.699379px;}
.ws3e{word-spacing:-0.597756px;}
.ws140{word-spacing:-0.537984px;}
.ws7e{word-spacing:-0.478205px;}
.wsbc{word-spacing:-0.418428px;}
.ws1c{word-spacing:-0.358654px;}
.ws17{word-spacing:-0.322790px;}
.ws1b{word-spacing:-0.298878px;}
.ws31{word-spacing:-0.239102px;}
.ws14{word-spacing:-0.215194px;}
.ws21{word-spacing:-0.179327px;}
.ws15{word-spacing:-0.161395px;}
.ws121{word-spacing:-0.150856px;}
.ws23{word-spacing:-0.119551px;}
.ws12a{word-spacing:-0.107597px;}
.ws85{word-spacing:-0.083686px;}
.ws20{word-spacing:-0.059776px;}
.ws149{word-spacing:-0.053798px;}
.ws125{word-spacing:-0.009610px;}
.ws135{word-spacing:-0.006432px;}
.ws13a{word-spacing:-0.005021px;}
.ws137{word-spacing:-0.003763px;}
.ws13f{word-spacing:-0.003302px;}
.ws122{word-spacing:-0.001690px;}
.ws9{word-spacing:-0.001307px;}
.ws13c{word-spacing:-0.001267px;}
.ws1{word-spacing:0.000000px;}
.ws26{word-spacing:0.002283px;}
.ws10{word-spacing:0.053798px;}
.ws29{word-spacing:0.059776px;}
.ws11b{word-spacing:0.107597px;}
.ws19{word-spacing:0.119551px;}
.wsd{word-spacing:0.161395px;}
.wsc6{word-spacing:0.167371px;}
.ws1d{word-spacing:0.179327px;}
.ws62{word-spacing:0.215194px;}
.ws25{word-spacing:0.239102px;}
.ws11{word-spacing:0.268992px;}
.ws3b{word-spacing:0.298878px;}
.ws11c{word-spacing:0.322790px;}
.ws3c{word-spacing:0.358654px;}
.ws133{word-spacing:0.376589px;}
.ws52{word-spacing:0.478205px;}
.ws144{word-spacing:0.484186px;}
.ws116{word-spacing:0.537980px;}
.ws109{word-spacing:0.597756px;}
.ws36{word-spacing:0.657532px;}
.wsbe{word-spacing:0.669485px;}
.ws5d{word-spacing:0.717307px;}
.ws72{word-spacing:0.746719px;}
.ws77{word-spacing:0.748009px;}
.ws60{word-spacing:0.777083px;}
.ws41{word-spacing:0.896634px;}
.wsc0{word-spacing:0.920542px;}
.ws45{word-spacing:0.956410px;}
.ws143{word-spacing:0.968371px;}
.ws56{word-spacing:1.016185px;}
.ws33{word-spacing:1.075961px;}
.ws7f{word-spacing:1.135736px;}
.ws5b{word-spacing:1.195512px;}
.ws12c{word-spacing:1.237363px;}
.ws32{word-spacing:1.255288px;}
.ws12{word-spacing:1.291162px;}
.ws38{word-spacing:1.315063px;}
.ws108{word-spacing:1.374839px;}
.ws8{word-spacing:1.380812px;}
.wsbf{word-spacing:1.422655px;}
.ws55{word-spacing:1.434614px;}
.ws28{word-spacing:1.494390px;}
.ws13d{word-spacing:1.506355px;}
.ws73{word-spacing:1.526562px;}
.wsb1{word-spacing:1.590026px;}
.ws54{word-spacing:1.613941px;}
.ws123{word-spacing:1.613952px;}
.wsfc{word-spacing:1.673712px;}
.ws115{word-spacing:1.673717px;}
.wsdb{word-spacing:1.853044px;}
.ws22{word-spacing:1.912819px;}
.ws127{word-spacing:1.936742px;}
.ws71{word-spacing:1.940719px;}
.ws40{word-spacing:1.972595px;}
.ws12f{word-spacing:1.990541px;}
.ws6e{word-spacing:2.032370px;}
.ws81{word-spacing:2.092146px;}
.wse2{word-spacing:2.133983px;}
.ws134{word-spacing:2.205734px;}
.ws3d{word-spacing:2.211697px;}
.ws110{word-spacing:2.391024px;}
.ws11d{word-spacing:2.415557px;}
.ws146{word-spacing:2.420928px;}
.ws24{word-spacing:2.450800px;}
.ws148{word-spacing:2.474726px;}
.ws0{word-spacing:2.511541px;}
.ws14b{word-spacing:2.528525px;}
.ws14c{word-spacing:2.582323px;}
.ws5e{word-spacing:2.630126px;}
.ws101{word-spacing:2.677939px;}
.ws139{word-spacing:2.743718px;}
.ws114{word-spacing:2.809453px;}
.ws16{word-spacing:2.853079px;}
.ws6b{word-spacing:2.869229px;}
.wsb{word-spacing:2.869236px;}
.ws12b{word-spacing:2.905114px;}
.ws6c{word-spacing:2.929004px;}
.ws5c{word-spacing:2.988780px;}
.ws13b{word-spacing:3.012710px;}
.wsaf{word-spacing:3.057305px;}
.ws2d{word-spacing:3.108331px;}
.ws58{word-spacing:3.168107px;}
.ws130{word-spacing:3.174106px;}
.ws131{word-spacing:3.221184px;}
.ws14a{word-spacing:3.221645px;}
.ws136{word-spacing:3.222518px;}
.ws14f{word-spacing:3.223430px;}
.ws14d{word-spacing:3.224112px;}
.ws141{word-spacing:3.224698px;}
.ws132{word-spacing:3.225082px;}
.ws117{word-spacing:3.227882px;}
.ws126{word-spacing:3.227904px;}
.ws11a{word-spacing:3.281702px;}
.ws78{word-spacing:3.287658px;}
.ws12e{word-spacing:3.335501px;}
.ws145{word-spacing:3.379697px;}
.ws37{word-spacing:3.407209px;}
.wsc{word-spacing:3.434175px;}
.ws1e{word-spacing:3.466985px;}
.ws150{word-spacing:3.496896px;}
.ws4c{word-spacing:3.526760px;}
.ws88{word-spacing:3.556638px;}
.ws18{word-spacing:3.586536px;}
.ws138{word-spacing:3.658291px;}
.ws46{word-spacing:3.765863px;}
.ws14e{word-spacing:3.819686px;}
.ws106{word-spacing:3.825638px;}
.ws59{word-spacing:4.064741px;}
.ws10e{word-spacing:4.303843px;}
.ws142{word-spacing:4.303872px;}
.ws51{word-spacing:4.423394px;}
.ws2c{word-spacing:4.483170px;}
.ws119{word-spacing:4.602721px;}
.wsf8{word-spacing:4.686394px;}
.ws35{word-spacing:4.841824px;}
.ws4e{word-spacing:4.901599px;}
.ws74{word-spacing:4.961375px;}
.ws113{word-spacing:5.021150px;}
.wsfe{word-spacing:5.062979px;}
.ws10f{word-spacing:5.200477px;}
.wsf{word-spacing:5.326042px;}
.ws118{word-spacing:5.379804px;}
.ws6{word-spacing:5.481407px;}
.ws10d{word-spacing:5.858009px;}
.ws68{word-spacing:5.917784px;}
.ws2e{word-spacing:5.977560px;}
.ws103{word-spacing:6.485634px;}
.ws50{word-spacing:6.515540px;}
.ws76{word-spacing:6.578222px;}
.ws75{word-spacing:6.635092px;}
.ws30{word-spacing:6.754643px;}
.ws2f{word-spacing:6.993745px;}
.ws10b{word-spacing:7.053521px;}
.wsfa{word-spacing:7.071433px;}
.ws4f{word-spacing:7.173072px;}
.ws10c{word-spacing:7.352399px;}
.ws12d{word-spacing:7.424179px;}
.wse{word-spacing:7.531776px;}
.wsf0{word-spacing:7.533840px;}
.ws112{word-spacing:7.770828px;}
.ws10a{word-spacing:7.890379px;}
.ws13e{word-spacing:8.284954px;}
.ws7a{word-spacing:8.984222px;}
.ws124{word-spacing:9.139997px;}
.ws96{word-spacing:9.289102px;}
.ws11f{word-spacing:9.307123px;}
.ws120{word-spacing:9.360922px;}
.ws99{word-spacing:9.707530px;}
.ws4{word-spacing:9.833058px;}
.ws89{word-spacing:10.157220px;}
.ws147{word-spacing:11.028672px;}
.ws5{word-spacing:11.841512px;}
.ws8c{word-spacing:13.389696px;}
.wse0{word-spacing:13.392023px;}
.ws84{word-spacing:14.423220px;}
.ws8d{word-spacing:14.644980px;}
.wsd7{word-spacing:14.891063px;}
.wsc7{word-spacing:14.897063px;}
.ws82{word-spacing:15.219419px;}
.wsde{word-spacing:15.439993px;}
.wsa2{word-spacing:15.523679px;}
.ws91{word-spacing:15.607364px;}
.ws87{word-spacing:15.671220px;}
.wsee{word-spacing:16.061851px;}
.wsf2{word-spacing:16.063531px;}
.ws7{word-spacing:16.067635px;}
.wsa5{word-spacing:16.611592px;}
.ws8f{word-spacing:16.862648px;}
.ws8a{word-spacing:16.904491px;}
.wsd8{word-spacing:17.074260px;}
.wsd4{word-spacing:17.272260px;}
.wsa3{word-spacing:17.322919px;}
.wsad{word-spacing:17.692260px;}
.ws8e{word-spacing:17.741347px;}
.wsce{word-spacing:17.752260px;}
.ws93{word-spacing:19.164002px;}
.wsb3{word-spacing:19.551059px;}
.wsb4{word-spacing:19.557059px;}
.wsd0{word-spacing:20.550793px;}
.wsa8{word-spacing:22.009313px;}
.ws8b{word-spacing:22.302212px;}
.ws3{word-spacing:22.339429px;}
.wse1{word-spacing:23.481059px;}
.wsb6{word-spacing:24.204793px;}
.wsdf{word-spacing:24.393632px;}
.wsbd{word-spacing:25.983632px;}
.wsc2{word-spacing:25.989632px;}
.wsb2{word-spacing:27.177632px;}
.ws9b{word-spacing:37.574834px;}
.wsa1{word-spacing:38.328005px;}
.ws90{word-spacing:38.411690px;}
.wsba{word-spacing:38.662747px;}
.wsb8{word-spacing:39.448500px;}
.ws9e{word-spacing:39.457760px;}
.wscd{word-spacing:40.498500px;}
.ws92{word-spacing:42.010171px;}
.ws98{word-spacing:42.177542px;}
.wsca{word-spacing:42.232500px;}
.ws95{word-spacing:42.595970px;}
.wsa4{word-spacing:42.888870px;}
.wsa7{word-spacing:43.139927px;}
.wsa6{word-spacing:43.683883px;}
.ws7b{word-spacing:51.405790px;}
.ws79{word-spacing:51.971959px;}
.wscc{word-spacing:139.127310px;}
.wse4{word-spacing:139.876500px;}
.wsf1{word-spacing:140.759179px;}
.wsf4{word-spacing:141.428664px;}
.wsea{word-spacing:141.721564px;}
.wsef{word-spacing:142.056306px;}
.wsb5{word-spacing:142.366500px;}
.wse6{word-spacing:142.654500px;}
.wsf3{word-spacing:142.893162px;}
.wsf5{word-spacing:143.060533px;}
.wse8{word-spacing:143.144219px;}
.wsed{word-spacing:143.939232px;}
.wsf6{word-spacing:144.357660px;}
.wse7{word-spacing:239.550030px;}
.ws63{word-spacing:299.495693px;}
.ws66{word-spacing:302.185613px;}
.ws64{word-spacing:302.239411px;}
.ws65{word-spacing:304.929331px;}
.wsff{word-spacing:548.475422px;}
._3f{margin-left:-26.198179px;}
._19{margin-left:-24.866650px;}
._42{margin-left:-22.876242px;}
._15{margin-left:-8.518178px;}
._f{margin-left:-7.382291px;}
._0{margin-left:-6.150892px;}
._6{margin-left:-4.656539px;}
._12{margin-left:-3.227882px;}
._4{margin-left:-1.464498px;}
._2e{width:1.469085px;}
._5{width:2.986716px;}
._18{width:4.961375px;}
._34{width:6.210653px;}
._36{width:7.613911px;}
._39{width:9.414630px;}
._31{width:10.572469px;}
._1{width:12.218327px;}
._3d{width:13.351104px;}
._7{width:14.429882px;}
._16{width:15.810650px;}
._8{width:16.916580px;}
._c{width:18.171782px;}
._9{width:19.959206px;}
._10{width:21.130670px;}
._a{width:22.918118px;}
._13{width:24.812616px;}
._2{width:25.946136px;}
._1a{width:27.646211px;}
._3e{width:28.714632px;}
._14{width:29.738323px;}
._3{width:31.256572px;}
._b{width:33.086016px;}
._32{width:34.530299px;}
._33{width:36.004104px;}
._24{width:37.006758px;}
._17{width:38.555262px;}
._11{width:40.109428px;}
._3a{width:41.257001px;}
._38{width:42.470801px;}
._37{width:53.013701px;}
._3b{width:55.014584px;}
._3c{width:56.776795px;}
._35{width:58.121081px;}
._2a{width:59.775600px;}
._43{width:61.868160px;}
._41{width:88.767360px;}
._2d{width:174.126323px;}
._21{width:195.234394px;}
._1f{width:216.215770px;}
._2f{width:219.057053px;}
._23{width:224.327417px;}
._1d{width:246.181478px;}
._22{width:312.652379px;}
._20{width:313.800019px;}
._1e{width:315.396097px;}
._1b{width:316.543738px;}
._1c{width:318.378931px;}
._2c{width:483.285726px;}
._30{width:505.342922px;}
._29{width:518.433779px;}
._25{width:545.909168px;}
._28{width:596.201834px;}
._27{width:613.716085px;}
._26{width:688.465469px;}
._2b{width:703.917466px;}
._d{width:714.641186px;}
._40{width:2493.819000px;}
._e{width:2517.729000px;}
.fc5{color:rgb(31,89,36);}
.fc3{color:rgb(128,0,128);}
.fc4{color:rgb(97,128,128);}
.fc2{color:rgb(166,41,41);}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs9{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs7{font-size:62.286600px;}
.fs8{font-size:83.686200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y42{bottom:31.890000px;}
.y41{bottom:103.858500px;}
.y14{bottom:104.646000px;}
.y121{bottom:106.339500px;}
.y68{bottom:110.805000px;}
.yf6{bottom:111.346500px;}
.y9a{bottom:114.216000px;}
.y1dc{bottom:117.073500px;}
.yc2{bottom:118.699500px;}
.y120{bottom:119.487000px;}
.y13{bottom:122.535000px;}
.y122{bottom:122.595000px;}
.y40{bottom:122.688000px;}
.y67{bottom:129.634500px;}
.yf5{bottom:130.176000px;}
.y216{bottom:130.804500px;}
.y24d{bottom:132.150000px;}
.y99{bottom:133.045500px;}
.y1db{bottom:135.903000px;}
.yc1{bottom:137.529000px;}
.y11f{bottom:138.733500px;}
.y12{bottom:140.422500px;}
.y3f{bottom:141.517500px;}
.y215{bottom:148.065000px;}
.y66{bottom:148.464000px;}
.yf4{bottom:149.005500px;}
.y24c{bottom:149.409000px;}
.y98{bottom:151.875000px;}
.y1da{bottom:154.732500px;}
.yc0{bottom:156.358500px;}
.y11{bottom:158.310000px;}
.y3e{bottom:160.347000px;}
.y214{bottom:165.325500px;}
.y24b{bottom:166.669500px;}
.y65{bottom:167.293500px;}
.yf3{bottom:167.835000px;}
.y97{bottom:170.704500px;}
.y1d9{bottom:173.562000px;}
.ybf{bottom:175.188000px;}
.y10{bottom:176.199000px;}
.y3d{bottom:179.176500px;}
.y11d{bottom:180.199500px;}
.y213{bottom:182.586000px;}
.y64{bottom:186.123000px;}
.yf2{bottom:186.664500px;}
.y96{bottom:189.534000px;}
.y1d8{bottom:192.390000px;}
.y11c{bottom:193.345500px;}
.ybe{bottom:194.017500px;}
.yf{bottom:194.086500px;}
.y1b5{bottom:195.886500px;}
.y11e{bottom:196.453500px;}
.y3c{bottom:198.006000px;}
.y212{bottom:199.846500px;}
.y24a{bottom:202.759500px;}
.y63{bottom:204.952500px;}
.yf1{bottom:205.494000px;}
.y95{bottom:208.363500px;}
.y1d7{bottom:211.219500px;}
.ye{bottom:211.974000px;}
.y11b{bottom:212.593500px;}
.ybd{bottom:212.847000px;}
.y1b4{bottom:214.716000px;}
.y3b{bottom:216.835500px;}
.y211{bottom:217.105500px;}
.y154{bottom:218.236500px;}
.y249{bottom:220.020000px;}
.y62{bottom:223.782000px;}
.yf0{bottom:224.323500px;}
.y94{bottom:227.193000px;}
.yd{bottom:229.863000px;}
.y1d6{bottom:230.049000px;}
.ybc{bottom:231.676500px;}
.y1b3{bottom:233.545500px;}
.y210{bottom:234.366000px;}
.y3a{bottom:235.665000px;}
.y153{bottom:237.066000px;}
.y248{bottom:237.280500px;}
.y61{bottom:242.611500px;}
.yef{bottom:243.153000px;}
.y93{bottom:246.022500px;}
.y1bf{bottom:246.948000px;}
.y1d5{bottom:248.878500px;}
.ybb{bottom:250.506000px;}
.y20f{bottom:251.626500px;}
.y1b2{bottom:252.375000px;}
.y119{bottom:254.058000px;}
.y39{bottom:254.494500px;}
.y247{bottom:254.541000px;}
.y60{bottom:261.441000px;}
.yee{bottom:261.981000px;}
.y92{bottom:264.852000px;}
.y118{bottom:267.205500px;}
.y1d4{bottom:267.708000px;}
.y20e{bottom:268.887000px;}
.yba{bottom:269.335500px;}
.y11a{bottom:270.313500px;}
.y1b1{bottom:271.204500px;}
.y246{bottom:271.801500px;}
.y38{bottom:273.324000px;}
.y152{bottom:277.123500px;}
.y5f{bottom:280.270500px;}
.yed{bottom:280.810500px;}
.y91{bottom:283.681500px;}
.y20d{bottom:286.147500px;}
.y117{bottom:286.452000px;}
.y1d3{bottom:286.537500px;}
.y199{bottom:286.971000px;}
.y151{bottom:288.106500px;}
.yb9{bottom:288.165000px;}
.y245{bottom:289.062000px;}
.y1b0{bottom:290.034000px;}
.y37{bottom:292.153500px;}
.y1bd{bottom:292.963500px;}
.yc{bottom:297.166500px;}
.y150{bottom:299.091000px;}
.y5e{bottom:299.100000px;}
.yec{bottom:299.640000px;}
.y90{bottom:302.511000px;}
.y20c{bottom:303.408000px;}
.y1d2{bottom:305.367000px;}
.y198{bottom:305.800500px;}
.y244{bottom:306.321000px;}
.yb8{bottom:306.994500px;}
.y1af{bottom:308.863500px;}
.y14f{bottom:310.074000px;}
.y36{bottom:310.983000px;}
.yb{bottom:315.054000px;}
.y5d{bottom:317.929500px;}
.y20b{bottom:320.668500px;}
.y14e{bottom:321.058500px;}
.y8f{bottom:321.340500px;}
.y243{bottom:323.581500px;}
.y1d1{bottom:324.196500px;}
.y197{bottom:324.630000px;}
.yb7{bottom:325.824000px;}
.y1ae{bottom:327.693000px;}
.y115{bottom:327.918000px;}
.y35{bottom:329.812500px;}
.y14d{bottom:332.041500px;}
.ya{bottom:332.943000px;}
.y5c{bottom:336.759000px;}
.y20a{bottom:337.929000px;}
.y8e{bottom:340.170000px;}
.y242{bottom:340.842000px;}
.y114{bottom:341.064000px;}
.y14c{bottom:343.026000px;}
.y196{bottom:343.459500px;}
.y116{bottom:344.172000px;}
.y1e3{bottom:344.653500px;}
.y1ad{bottom:346.522500px;}
.yeb{bottom:348.091500px;}
.y34{bottom:348.642000px;}
.yb6{bottom:349.137000px;}
.y9{bottom:350.830500px;}
.y14b{bottom:354.010500px;}
.y209{bottom:355.189500px;}
.y5b{bottom:355.588500px;}
.y241{bottom:358.102500px;}
.y8d{bottom:358.999500px;}
.y113{bottom:360.312000px;}
.y1d0{bottom:361.855500px;}
.y195{bottom:362.289000px;}
.y1e2{bottom:363.483000px;}
.y14a{bottom:364.993500px;}
.y1ac{bottom:365.352000px;}
.y33{bottom:367.471500px;}
.yea{bottom:372.031500px;}
.y208{bottom:372.448500px;}
.y5a{bottom:374.418000px;}
.y240{bottom:375.363000px;}
.y149{bottom:375.978000px;}
.y8c{bottom:377.829000px;}
.y8{bottom:379.179000px;}
.y1cf{bottom:380.685000px;}
.y1e1{bottom:382.312500px;}
.yb5{bottom:382.761000px;}
.y1ab{bottom:384.181500px;}
.y32{bottom:386.301000px;}
.y148{bottom:386.961000px;}
.ye9{bottom:388.470000px;}
.y207{bottom:389.709000px;}
.y23f{bottom:392.623500px;}
.y59{bottom:393.247500px;}
.y8b{bottom:396.658500px;}
.y147{bottom:397.945500px;}
.y1ce{bottom:399.514500px;}
.y1e0{bottom:401.142000px;}
.yb4{bottom:401.589000px;}
.y111{bottom:401.776500px;}
.y194{bottom:402.346500px;}
.y1aa{bottom:403.011000px;}
.y31{bottom:405.130500px;}
.y7{bottom:406.033500px;}
.y206{bottom:406.969500px;}
.y146{bottom:408.928500px;}
.y23e{bottom:409.884000px;}
.y58{bottom:412.077000px;}
.ye8{bottom:412.408500px;}
.y193{bottom:413.329500px;}
.y110{bottom:414.924000px;}
.y8a{bottom:415.488000px;}
.y112{bottom:418.032000px;}
.y1cd{bottom:418.344000px;}
.y145{bottom:419.913000px;}
.y1df{bottom:419.971500px;}
.yb3{bottom:420.418500px;}
.y1a9{bottom:421.840500px;}
.y6{bottom:423.921000px;}
.y30{bottom:423.960000px;}
.y205{bottom:424.230000px;}
.y192{bottom:424.314000px;}
.y23d{bottom:427.144500px;}
.ye7{bottom:428.847000px;}
.y144{bottom:430.896000px;}
.y57{bottom:430.906500px;}
.y10f{bottom:434.172000px;}
.y89{bottom:434.317500px;}
.y191{bottom:435.297000px;}
.y1cc{bottom:437.173500px;}
.yb2{bottom:439.248000px;}
.y1a8{bottom:440.668500px;}
.y204{bottom:441.490500px;}
.y5{bottom:441.810000px;}
.y143{bottom:441.880500px;}
.y1de{bottom:443.283000px;}
.y23c{bottom:444.403500px;}
.y190{bottom:446.281500px;}
.y2f{bottom:447.271500px;}
.y56{bottom:449.736000px;}
.ye6{bottom:452.787000px;}
.y142{bottom:452.865000px;}
.y88{bottom:453.147000px;}
.y1cb{bottom:456.003000px;}
.y18f{bottom:457.264500px;}
.yb1{bottom:458.077500px;}
.y203{bottom:458.751000px;}
.y1a7{bottom:459.498000px;}
.y4{bottom:459.697500px;}
.y23b{bottom:461.664000px;}
.y10e{bottom:462.556500px;}
.y141{bottom:463.848000px;}
.y18e{bottom:468.249000px;}
.y55{bottom:468.565500px;}
.ye5{bottom:469.225500px;}
.y87{bottom:471.976500px;}
.y140{bottom:474.832500px;}
.y202{bottom:476.011500px;}
.yb0{bottom:476.907000px;}
.y3{bottom:477.585000px;}
.y1a6{bottom:478.327500px;}
.y23a{bottom:478.924500px;}
.y18d{bottom:479.232000px;}
.y13f{bottom:485.815500px;}
.y18c{bottom:490.216500px;}
.y86{bottom:490.806000px;}
.y54{bottom:491.877000px;}
.ye4{bottom:493.165500px;}
.y201{bottom:493.272000px;}
.y1ca{bottom:493.662000px;}
.y10d{bottom:495.189000px;}
.y2{bottom:495.474000px;}
.yaf{bottom:495.736500px;}
.y239{bottom:496.185000px;}
.y13e{bottom:496.800000px;}
.y1a5{bottom:497.157000px;}
.y18b{bottom:501.199500px;}
.y10c{bottom:508.335000px;}
.ye3{bottom:509.602500px;}
.y85{bottom:509.635500px;}
.y200{bottom:510.532500px;}
.y53{bottom:510.706500px;}
.y10a{bottom:511.444500px;}
.y18a{bottom:512.184000px;}
.y1c9{bottom:512.491500px;}
.y1{bottom:513.361500px;}
.y238{bottom:513.445500px;}
.yae{bottom:514.566000px;}
.y1a4{bottom:515.986500px;}
.y13d{bottom:520.030500px;}
.y2e{bottom:522.421500px;}
.y189{bottom:523.168500px;}
.y10b{bottom:527.583000px;}
.y1ff{bottom:527.791500px;}
.y84{bottom:528.465000px;}
.y237{bottom:530.706000px;}
.y1c8{bottom:531.321000px;}
.yad{bottom:533.395500px;}
.ye2{bottom:533.542500px;}
.y188{bottom:534.151500px;}
.y1a3{bottom:534.816000px;}
.y2d{bottom:541.879500px;}
.y52{bottom:544.272000px;}
.y1fe{bottom:545.052000px;}
.y187{bottom:545.136000px;}
.y236{bottom:547.966500px;}
.ye1{bottom:549.981000px;}
.y1c7{bottom:550.150500px;}
.y83{bottom:551.776500px;}
.y109{bottom:552.076500px;}
.yac{bottom:552.225000px;}
.y13c{bottom:552.309000px;}
.y1a2{bottom:553.645500px;}
.y186{bottom:556.119000px;}
.y1fd{bottom:562.312500px;}
.y235{bottom:565.227000px;}
.ye0{bottom:566.419500px;}
.y185{bottom:567.103500px;}
.y1c6{bottom:568.980000px;}
.y108{bottom:570.906000px;}
.yab{bottom:571.054500px;}
.y13b{bottom:571.138500px;}
.y1a1{bottom:572.475000px;}
.y184{bottom:578.086500px;}
.y2c{bottom:579.268500px;}
.y1fc{bottom:579.573000px;}
.y234{bottom:582.487500px;}
.y82{bottom:585.400500px;}
.y1c5{bottom:587.809500px;}
.y183{bottom:589.071000px;}
.y107{bottom:589.734000px;}
.yaa{bottom:589.884000px;}
.y13a{bottom:589.968000px;}
.ydf{bottom:590.359500px;}
.y1a0{bottom:591.304500px;}
.y1fb{bottom:596.833500px;}
.y2b{bottom:598.726500px;}
.y233{bottom:599.746500px;}
.y182{bottom:600.054000px;}
.y81{bottom:604.230000px;}
.y1c4{bottom:606.639000px;}
.y106{bottom:608.563500px;}
.ya9{bottom:608.713500px;}
.y139{bottom:608.797500px;}
.y19f{bottom:610.134000px;}
.y181{bottom:611.038500px;}
.y1fa{bottom:614.094000px;}
.yde{bottom:614.298000px;}
.y232{bottom:617.007000px;}
.y2a{bottom:618.183000px;}
.y180{bottom:622.023000px;}
.y80{bottom:623.059500px;}
.y1c3{bottom:625.468500px;}
.ya8{bottom:627.543000px;}
.y138{bottom:627.627000px;}
.ydd{bottom:630.736500px;}
.y1f9{bottom:631.354500px;}
.y17f{bottom:633.006000px;}
.y19e{bottom:633.447000px;}
.y231{bottom:634.267500px;}
.y105{bottom:634.866000px;}
.y29{bottom:637.639500px;}
.y7f{bottom:641.889000px;}
.y17e{bottom:643.990500px;}
.y1c2{bottom:644.298000px;}
.ya7{bottom:646.372500px;}
.y137{bottom:646.456500px;}
.y1f8{bottom:648.615000px;}
.y230{bottom:651.528000px;}
.y104{bottom:653.695500px;}
.ydb{bottom:654.676500px;}
.y17d{bottom:654.973500px;}
.y28{bottom:657.097500px;}
.y7e{bottom:660.718500px;}
.y1c1{bottom:663.127500px;}
.ya6{bottom:665.202000px;}
.y136{bottom:665.286000px;}
.y1f7{bottom:665.874000px;}
.y17c{bottom:665.958000px;}
.y19d{bottom:667.071000px;}
.y22f{bottom:668.788500px;}
.yda{bottom:671.115000px;}
.y103{bottom:672.525000px;}
.y27{bottom:676.554000px;}
.y17b{bottom:676.941000px;}
.ydc{bottom:679.333500px;}
.y7d{bottom:679.548000px;}
.y1f6{bottom:683.134500px;}
.ya5{bottom:684.031500px;}
.y135{bottom:684.115500px;}
.y19c{bottom:685.900500px;}
.y22e{bottom:686.049000px;}
.yd9{bottom:687.553500px;}
.y17a{bottom:687.925500px;}
.y102{bottom:691.354500px;}
.y26{bottom:696.012000px;}
.y1c0{bottom:696.693000px;}
.y7c{bottom:698.377500px;}
.y1be{bottom:698.551500px;}
.y179{bottom:698.908500px;}
.y1f5{bottom:700.395000px;}
.ya4{bottom:702.861000px;}
.y134{bottom:702.945000px;}
.y22d{bottom:703.309500px;}
.yd8{bottom:703.992000px;}
.y19b{bottom:704.730000px;}
.y178{bottom:709.893000px;}
.y101{bottom:710.184000px;}
.y25{bottom:715.468500px;}
.y7b{bottom:717.207000px;}
.y1f4{bottom:717.655500px;}
.y22c{bottom:720.570000px;}
.y177{bottom:720.876000px;}
.ya3{bottom:721.690500px;}
.y133{bottom:726.256500px;}
.yd7{bottom:727.930500px;}
.y19a{bottom:728.043000px;}
.y100{bottom:729.013500px;}
.y176{bottom:731.860500px;}
.y1f3{bottom:734.916000px;}
.y24{bottom:734.925000px;}
.y7a{bottom:736.036500px;}
.y1bc{bottom:736.485000px;}
.y22b{bottom:737.829000px;}
.ya2{bottom:740.520000px;}
.y175{bottom:742.845000px;}
.yd6{bottom:744.369000px;}
.yfe{bottom:747.841500px;}
.yff{bottom:747.843000px;}
.y1f2{bottom:752.176500px;}
.y174{bottom:753.828000px;}
.y23{bottom:754.383000px;}
.y79{bottom:754.866000px;}
.y22a{bottom:755.089500px;}
.y1bb{bottom:755.314500px;}
.ya1{bottom:759.349500px;}
.y132{bottom:759.880500px;}
.y173{bottom:764.812500px;}
.yfd{bottom:766.671000px;}
.yd5{bottom:768.309000px;}
.y1f1{bottom:769.437000px;}
.y229{bottom:772.350000px;}
.y78{bottom:773.695500px;}
.y22{bottom:773.839500px;}
.y1ba{bottom:774.144000px;}
.y172{bottom:775.795500px;}
.ya0{bottom:778.179000px;}
.y131{bottom:778.710000px;}
.yd4{bottom:784.747500px;}
.yfc{bottom:785.500500px;}
.y1f0{bottom:786.697500px;}
.y171{bottom:786.780000px;}
.y228{bottom:789.610500px;}
.y77{bottom:792.525000px;}
.y1b9{bottom:792.973500px;}
.y21{bottom:793.296000px;}
.y9f{bottom:797.008500px;}
.y130{bottom:797.539500px;}
.y170{bottom:797.763000px;}
.y1ef{bottom:803.958000px;}
.yfb{bottom:804.330000px;}
.y227{bottom:806.871000px;}
.yd3{bottom:808.687500px;}
.y16f{bottom:808.747500px;}
.y76{bottom:811.354500px;}
.y1b8{bottom:811.803000px;}
.y9e{bottom:815.838000px;}
.y12f{bottom:816.369000px;}
.y16e{bottom:819.730500px;}
.yfa{bottom:823.159500px;}
.y226{bottom:824.131500px;}
.y1ee{bottom:825.700500px;}
.y1b7{bottom:830.632500px;}
.y16d{bottom:830.715000px;}
.y20{bottom:831.882000px;}
.yd2{bottom:832.626000px;}
.y75{bottom:834.667500px;}
.y12e{bottom:835.198500px;}
.y225{bottom:841.392000px;}
.y16c{bottom:841.698000px;}
.yf9{bottom:841.989000px;}
.y1f{bottom:848.022000px;}
.y1b6{bottom:849.462000px;}
.y16b{bottom:852.682500px;}
.y9d{bottom:853.497000px;}
.y12d{bottom:854.028000px;}
.yd1{bottom:856.566000px;}
.y224{bottom:858.652500px;}
.y1ed{bottom:859.324500px;}
.yf8{bottom:860.818500px;}
.y16a{bottom:863.667000px;}
.y74{bottom:868.291500px;}
.y1e{bottom:868.501500px;}
.y9c{bottom:872.326500px;}
.y51{bottom:872.773500px;}
.y12c{bottom:872.857500px;}
.yd0{bottom:873.004500px;}
.y169{bottom:874.650000px;}
.y223{bottom:875.913000px;}
.y1dd{bottom:876.808500px;}
.y1d{bottom:880.300500px;}
.y168{bottom:885.634500px;}
.y1ec{bottom:885.865500px;}
.y73{bottom:887.121000px;}
.y50{bottom:891.603000px;}
.y12b{bottom:891.687000px;}
.y222{bottom:893.172000px;}
.y9b{bottom:895.638000px;}
.y167{bottom:896.617500px;}
.ycf{bottom:896.944500px;}
.y1c{bottom:900.780000px;}
.y1eb{bottom:903.439500px;}
.y72{bottom:905.950500px;}
.y166{bottom:907.602000px;}
.y4f{bottom:910.432500px;}
.y12a{bottom:910.516500px;}
.y1b{bottom:912.580500px;}
.y165{bottom:918.585000px;}
.yce{bottom:920.883000px;}
.y71{bottom:924.778500px;}
.y221{bottom:927.693000px;}
.y4e{bottom:929.262000px;}
.y164{bottom:929.569500px;}
.y1ea{bottom:929.980500px;}
.y1a{bottom:933.058500px;}
.ycd{bottom:937.321500px;}
.y163{bottom:940.552500px;}
.y70{bottom:943.608000px;}
.y220{bottom:944.953500px;}
.y129{bottom:945.037500px;}
.y1e9{bottom:947.554500px;}
.y4d{bottom:948.091500px;}
.y162{bottom:951.537000px;}
.yc8{bottom:961.261500px;}
.y21f{bottom:962.214000px;}
.y6f{bottom:962.437500px;}
.y161{bottom:962.520000px;}
.y4c{bottom:966.921000px;}
.ycc{bottom:969.480000px;}
.y160{bottom:973.504500px;}
.y1e8{bottom:974.094000px;}
.yc7{bottom:977.700000px;}
.y19{bottom:977.736000px;}
.y21e{bottom:979.474500px;}
.y6e{bottom:981.267000px;}
.y15f{bottom:984.489000px;}
.y4b{bottom:985.750500px;}
.ycb{bottom:985.918500px;}
.y1e7{bottom:991.668000px;}
.yc4{bottom:994.138500px;}
.y128{bottom:995.248500px;}
.y15e{bottom:995.472000px;}
.y18{bottom:996.565500px;}
.y21d{bottom:996.735000px;}
.y6d{bottom:1000.096500px;}
.yca{bottom:1002.357000px;}
.y4a{bottom:1004.580000px;}
.y15d{bottom:1006.456500px;}
.y1e6{bottom:1009.243500px;}
.yc6{bottom:1010.577000px;}
.y21c{bottom:1013.995500px;}
.y15c{bottom:1017.439500px;}
.yc9{bottom:1018.795500px;}
.y6c{bottom:1018.926000px;}
.y49{bottom:1023.409500px;}
.y1e5{bottom:1026.817500px;}
.yc5{bottom:1027.015500px;}
.y15b{bottom:1028.424000px;}
.y21b{bottom:1031.254500px;}
.y17{bottom:1036.485000px;}
.y6b{bottom:1037.755500px;}
.y15a{bottom:1039.407000px;}
.y48{bottom:1042.239000px;}
.y1e4{bottom:1044.391500px;}
.y127{bottom:1045.461000px;}
.y21a{bottom:1048.515000px;}
.y159{bottom:1050.391500px;}
.y6a{bottom:1056.585000px;}
.y47{bottom:1061.068500px;}
.y158{bottom:1061.374500px;}
.yc3{bottom:1061.623500px;}
.y16{bottom:1064.728500px;}
.y219{bottom:1065.775500px;}
.y157{bottom:1072.359000px;}
.y69{bottom:1075.414500px;}
.y46{bottom:1079.898000px;}
.y218{bottom:1083.036000px;}
.y156{bottom:1083.342000px;}
.y15{bottom:1092.972000px;}
.y126{bottom:1093.120500px;}
.yf7{bottom:1094.244000px;}
.y155{bottom:1094.326500px;}
.y45{bottom:1098.727500px;}
.y217{bottom:1100.296500px;}
.y125{bottom:1106.268000px;}
.y123{bottom:1109.376000px;}
.y44{bottom:1117.557000px;}
.y124{bottom:1125.514500px;}
.y43{bottom:1178.008500px;}
.h7{height:26.110157px;}
.h11{height:29.529146px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h12{height:33.299897px;}
.h8{height:34.813397px;}
.hc{height:35.052500px;}
.h14{height:35.503200px;}
.hd{height:38.896243px;}
.h9{height:39.165235px;}
.h15{height:39.434227px;}
.ha{height:43.217759px;}
.hb{height:43.516637px;}
.h4{height:43.815515px;}
.h10{height:46.714950px;}
.h16{height:49.991558px;}
.h6{height:54.541601px;}
.h13{height:65.024177px;}
.hf{height:72.039235px;}
.he{height:72.045235px;}
.h5{height:77.792486px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x5f{left:62.554500px;}
.x64{left:66.963000px;}
.x62{left:68.517000px;}
.x63{left:70.023000px;}
.x4f{left:72.000000px;}
.x68{left:74.515500px;}
.x61{left:76.002000px;}
.x66{left:83.634000px;}
.xac{left:85.848000px;}
.x65{left:91.428000px;}
.x60{left:94.791000px;}
.x51{left:172.360500px;}
.x50{left:173.658000px;}
.x52{left:177.592500px;}
.x53{left:182.973000px;}
.x67{left:191.485500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.xa4{left:254.820000px;}
.x55{left:266.736000px;}
.x3{left:269.914500px;}
.x54{left:272.344500px;}
.x56{left:277.192500px;}
.x5{left:281.479500px;}
.x43{left:284.544000px;}
.x35{left:295.411500px;}
.x75{left:300.442500px;}
.xa5{left:302.592000px;}
.x28{left:305.878500px;}
.x7a{left:307.218000px;}
.x44{left:309.441000px;}
.x7f{left:315.468000px;}
.x1e{left:318.267000px;}
.x42{left:320.377500px;}
.x3c{left:322.413000px;}
.x36{left:323.718000px;}
.xc{left:324.952500px;}
.x86{left:326.142000px;}
.x39{left:328.435500px;}
.x6b{left:330.139500px;}
.xa6{left:334.893000px;}
.xd{left:336.510000px;}
.x7b{left:345.474000px;}
.x1f{left:346.546500px;}
.x3d{left:351.054000px;}
.xe{left:353.934000px;}
.x6c{left:355.035000px;}
.x8d{left:356.979000px;}
.x7e{left:359.361000px;}
.x57{left:368.959500px;}
.x7c{left:372.610500px;}
.x58{left:373.813500px;}
.xa1{left:386.536500px;}
.x84{left:388.285500px;}
.x80{left:390.691500px;}
.x7d{left:392.224500px;}
.x3f{left:393.732000px;}
.x76{left:396.898500px;}
.x29{left:399.241500px;}
.x93{left:402.042000px;}
.x6d{left:403.200000px;}
.x40{left:408.676500px;}
.x4d{left:415.405500px;}
.x9e{left:417.120000px;}
.x8e{left:418.852500px;}
.x9c{left:421.506000px;}
.x9b{left:422.721000px;}
.x6e{left:424.234500px;}
.x2a{left:426.412500px;}
.x9a{left:427.588500px;}
.x4e{left:430.348500px;}
.xa2{left:436.566000px;}
.x9f{left:438.339000px;}
.x98{left:440.097000px;}
.x97{left:441.310500px;}
.x9d{left:442.725000px;}
.x74{left:445.039500px;}
.x96{left:446.178000px;}
.x2f{left:447.264000px;}
.x8f{left:450.163500px;}
.x3a{left:455.493000px;}
.x59{left:456.609000px;}
.xa3{left:457.783500px;}
.x4b{left:458.907000px;}
.x99{left:461.569500px;}
.xa0{left:465.531000px;}
.x47{left:470.781000px;}
.x4c{left:473.851500px;}
.x30{left:475.888500px;}
.x2b{left:477.078000px;}
.x92{left:478.903500px;}
.x3b{left:484.126500px;}
.x95{left:486.979500px;}
.xf{left:488.481000px;}
.x94{left:493.062000px;}
.x48{left:495.678000px;}
.x17{left:501.627000px;}
.x11{left:502.909500px;}
.x2c{left:504.903000px;}
.x10{left:509.001000px;}
.x12{left:510.382500px;}
.x20{left:513.733500px;}
.x18{left:530.268000px;}
.x21{left:537.733500px;}
.x77{left:549.517500px;}
.x6f{left:551.736000px;}
.x5a{left:560.815500px;}
.x37{left:562.696500px;}
.x78{left:578.146500px;}
.x70{left:580.243500px;}
.x38{left:587.592000px;}
.x1b{left:592.440000px;}
.x31{left:594.931500px;}
.x49{left:597.514500px;}
.xab{left:600.829500px;}
.x41{left:610.255500px;}
.x4a{left:612.457500px;}
.xa7{left:615.499500px;}
.x71{left:617.065500px;}
.x32{left:619.828500px;}
.x1c{left:622.380000px;}
.xa8{left:625.422000px;}
.x69{left:631.479000px;}
.x22{left:633.172500px;}
.x72{left:645.693000px;}
.x87{left:647.941500px;}
.x90{left:650.254500px;}
.x85{left:652.309500px;}
.x88{left:656.007000px;}
.x23{left:657.172500px;}
.x3e{left:660.883500px;}
.xa{left:667.609500px;}
.x5b{left:669.460500px;}
.xb{left:675.081000px;}
.x6{left:681.180000px;}
.x91{left:683.226000px;}
.x7{left:688.651500px;}
.x89{left:699.343500px;}
.x19{left:702.397500px;}
.x8a{left:703.789500px;}
.x8b{left:710.788500px;}
.x24{left:712.636500px;}
.x33{left:718.680000px;}
.x1a{left:723.912000px;}
.x81{left:729.625500px;}
.x34{left:739.833000px;}
.x25{left:741.466500px;}
.x8c{left:743.980500px;}
.x26{left:746.173500px;}
.xa9{left:750.748500px;}
.x45{left:752.466000px;}
.x5e{left:755.922000px;}
.x5d{left:762.538500px;}
.x5c{left:765.268500px;}
.x8{left:768.468000px;}
.x27{left:770.173500px;}
.xaa{left:775.645500px;}
.x46{left:777.363000px;}
.x2d{left:780.250500px;}
.x1d{left:783.777000px;}
.x82{left:789.244500px;}
.x6a{left:790.938000px;}
.x73{left:793.317000px;}
.x83{left:797.217000px;}
.x15{left:798.943500px;}
.x2e{left:807.931500px;}
.x16{left:813.886500px;}
.x13{left:817.942500px;}
.x79{left:830.418000px;}
.x14{left:832.885500px;}
.x9{left:837.867000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v5{vertical-align:-9.306667pt;}
.v6{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:10.453333pt;}
.v8{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:29.226667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls88{letter-spacing:0.000711pt;}
.ls33{letter-spacing:0.482502pt;}
.ls35{letter-spacing:0.487835pt;}
.ls25{letter-spacing:0.620785pt;}
.ls24{letter-spacing:0.660237pt;}
.ls45{letter-spacing:0.665570pt;}
.ls6b{letter-spacing:0.818259pt;}
.ls42{letter-spacing:0.882422pt;}
.ls40{letter-spacing:0.882926pt;}
.ls47{letter-spacing:0.883230pt;}
.ls17{letter-spacing:0.883733pt;}
.ls27{letter-spacing:0.884237pt;}
.ls30{letter-spacing:0.887756pt;}
.ls2d{letter-spacing:0.888259pt;}
.ls1c{letter-spacing:0.888563pt;}
.ls16{letter-spacing:0.889067pt;}
.ls4a{letter-spacing:0.908058pt;}
.ls6d{letter-spacing:0.967034pt;}
.ls56{letter-spacing:1.004227pt;}
.ls34{letter-spacing:1.008508pt;}
.ls7d{letter-spacing:1.036785pt;}
.ls39{letter-spacing:1.291174pt;}
.ls32{letter-spacing:1.296508pt;}
.ls13{letter-spacing:1.332237pt;}
.ls77{letter-spacing:1.376163pt;}
.ls52{letter-spacing:2.491971pt;}
.ls7c{letter-spacing:2.529165pt;}
.ls5f{letter-spacing:2.566358pt;}
.ls37{letter-spacing:2.579733pt;}
.ls51{letter-spacing:2.603552pt;}
.ls8a{letter-spacing:2.659047pt;}
.ls61{letter-spacing:2.789520pt;}
.ls3a{letter-spacing:3.573841pt;}
.ls65{letter-spacing:3.625198pt;}
.ls79{letter-spacing:3.644973pt;}
.ls78{letter-spacing:3.793747pt;}
.ls38{letter-spacing:3.824508pt;}
.ls46{letter-spacing:4.107174pt;}
.ls7a{letter-spacing:4.240070pt;}
.ls5b{letter-spacing:4.277264pt;}
.ls74{letter-spacing:4.314458pt;}
.ls64{letter-spacing:4.426038pt;}
.ls5a{letter-spacing:4.649200pt;}
.ls6f{letter-spacing:4.946749pt;}
.ls36{letter-spacing:5.013841pt;}
.ls6e{letter-spacing:5.132717pt;}
.ls7b{letter-spacing:5.244298pt;}
.ls62{letter-spacing:5.504653pt;}
.ls0{letter-spacing:9.298933pt;}
.ls4{letter-spacing:10.626533pt;}
.ls85{letter-spacing:11.779969pt;}
.ls84{letter-spacing:11.954133pt;}
.ls83{letter-spacing:11.959467pt;}
.ls6{letter-spacing:12.539593pt;}
.ls87{letter-spacing:13.095780pt;}
.ls8{letter-spacing:13.230333pt;}
.ls7f{letter-spacing:13.336601pt;}
.ls9{letter-spacing:13.496002pt;}
.ls7{letter-spacing:13.549136pt;}
.ls86{letter-spacing:13.707545pt;}
.ls81{letter-spacing:13.921073pt;}
.ls80{letter-spacing:14.558679pt;}
.ls89{letter-spacing:14.742839pt;}
.ls1f{letter-spacing:15.395096pt;}
.ls21{letter-spacing:15.400429pt;}
.ls12{letter-spacing:16.061762pt;}
.ls11{letter-spacing:16.084541pt;}
.ls2a{letter-spacing:16.087452pt;}
.ls22{letter-spacing:16.089570pt;}
.ls1e{letter-spacing:16.090378pt;}
.ls14{letter-spacing:16.455452pt;}
.ls4c{letter-spacing:16.460785pt;}
.ls20{letter-spacing:16.619185pt;}
.ls82{letter-spacing:16.684034pt;}
.ls29{letter-spacing:16.725841pt;}
.ls43{letter-spacing:16.749762pt;}
.ls48{letter-spacing:16.963096pt;}
.ls2b{letter-spacing:17.068785pt;}
.ls4d{letter-spacing:17.108910pt;}
.ls15{letter-spacing:17.114243pt;}
.ls3e{letter-spacing:17.123096pt;}
.ls3c{letter-spacing:17.128429pt;}
.ls23{letter-spacing:17.359207pt;}
.ls2c{letter-spacing:17.722243pt;}
.ls3b{letter-spacing:18.864508pt;}
.ls28{letter-spacing:18.869841pt;}
.ls1d{letter-spacing:18.880508pt;}
.ls2f{letter-spacing:18.907174pt;}
.ls31{letter-spacing:18.912508pt;}
.ls2e{letter-spacing:19.477841pt;}
.ls7e{letter-spacing:19.500129pt;}
.ls19{letter-spacing:19.967577pt;}
.ls8b{letter-spacing:20.082133pt;}
.ls1a{letter-spacing:20.375452pt;}
.ls1b{letter-spacing:21.028910pt;}
.ls18{letter-spacing:22.784508pt;}
.ls26{letter-spacing:22.795174pt;}
.ls76{letter-spacing:23.022838pt;}
.ls5c{letter-spacing:24.064259pt;}
.ls5d{letter-spacing:26.454356pt;}
.ls6c{letter-spacing:27.195690pt;}
.ls67{letter-spacing:27.414356pt;}
.ls66{letter-spacing:27.419690pt;}
.ls69{letter-spacing:31.235329pt;}
.ls6a{letter-spacing:31.240662pt;}
.ls68{letter-spacing:32.299364pt;}
.ls57{letter-spacing:42.623866pt;}
.ls72{letter-spacing:43.330544pt;}
.ls55{letter-spacing:43.516512pt;}
.ls5e{letter-spacing:43.702480pt;}
.ls50{letter-spacing:43.824533pt;}
.ls54{letter-spacing:44.368533pt;}
.ls59{letter-spacing:44.595126pt;}
.ls53{letter-spacing:45.109867pt;}
.ls58{letter-spacing:45.376192pt;}
.ls73{letter-spacing:46.843200pt;}
.ls70{letter-spacing:47.310259pt;}
.ls71{letter-spacing:48.351680pt;}
.ls1{letter-spacing:51.035733pt;}
.ls41{letter-spacing:53.796237pt;}
.ls4b{letter-spacing:53.796541pt;}
.ls3d{letter-spacing:53.797044pt;}
.ls4f{letter-spacing:53.801067pt;}
.ls4e{letter-spacing:53.801874pt;}
.ls3f{letter-spacing:54.331185pt;}
.ls44{letter-spacing:55.076541pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ls49{letter-spacing:57.243174pt;}
.ls60{letter-spacing:67.616533pt;}
.ls75{letter-spacing:132.595184pt;}
.ls63{letter-spacing:136.202963pt;}
.lsc{letter-spacing:186.689143pt;}
.lsb{letter-spacing:206.603870pt;}
.ls10{letter-spacing:215.859285pt;}
.lse{letter-spacing:219.993617pt;}
.lsd{letter-spacing:273.674547pt;}
.lsf{letter-spacing:276.090547pt;}
.lsa{letter-spacing:285.627614pt;}
.ws6f{word-spacing:-39.309765pt;}
.wse3{word-spacing:-32.321238pt;}
.wsda{word-spacing:-14.245149pt;}
.wsb7{word-spacing:-13.724438pt;}
.ws44{word-spacing:-13.283467pt;}
.ws61{word-spacing:-11.955200pt;}
.ws86{word-spacing:-11.790371pt;}
.wsec{word-spacing:-10.674563pt;}
.ws27{word-spacing:-10.626800pt;}
.wsd3{word-spacing:-10.265434pt;}
.wsa{word-spacing:-10.095467pt;}
.ws2{word-spacing:-9.298400pt;}
.ws9f{word-spacing:-9.077923pt;}
.wsae{word-spacing:-8.852077pt;}
.wsd9{word-spacing:-8.480141pt;}
.wsd5{word-spacing:-8.071011pt;}
.wsfd{word-spacing:-7.252752pt;}
.ws102{word-spacing:-6.583267pt;}
.wsfb{word-spacing:-6.099750pt;}
.wsa9{word-spacing:-5.244298pt;}
.ws6d{word-spacing:-4.622646pt;}
.ws70{word-spacing:-4.463245pt;}
.ws7c{word-spacing:-4.410111pt;}
.ws69{word-spacing:-4.250709pt;}
.ws104{word-spacing:-3.868134pt;}
.wse9{word-spacing:-3.644973pt;}
.ws83{word-spacing:-3.607779pt;}
.wsd1{word-spacing:-3.533392pt;}
.wsc9{word-spacing:-3.496198pt;}
.wsdd{word-spacing:-3.459005pt;}
.wsd6{word-spacing:-3.347424pt;}
.wsc8{word-spacing:-3.310230pt;}
.wsc3{word-spacing:-3.235843pt;}
.wsd2{word-spacing:-3.161456pt;}
.ws6a{word-spacing:-3.134898pt;}
.wsc1{word-spacing:-3.124262pt;}
.ws97{word-spacing:-3.049875pt;}
.wsc4{word-spacing:-2.975488pt;}
.wseb{word-spacing:-2.939382pt;}
.wsaa{word-spacing:-2.863907pt;}
.wsa0{word-spacing:-2.752326pt;}
.ws105{word-spacing:-2.677939pt;}
.ws4a{word-spacing:-2.603559pt;}
.wse5{word-spacing:-2.566358pt;}
.ws49{word-spacing:-2.550426pt;}
.wsac{word-spacing:-2.491971pt;}
.ws2a{word-spacing:-2.444158pt;}
.wsf7{word-spacing:-2.417584pt;}
.ws53{word-spacing:-2.391024pt;}
.ws9c{word-spacing:-2.343197pt;}
.ws9d{word-spacing:-2.268810pt;}
.ws4d{word-spacing:-2.231622pt;}
.ws9a{word-spacing:-2.157229pt;}
.ws5f{word-spacing:-2.125355pt;}
.wsb9{word-spacing:-2.082842pt;}
.ws1f{word-spacing:-2.072221pt;}
.wscf{word-spacing:-2.045648pt;}
.wsc5{word-spacing:-2.008454pt;}
.ws39{word-spacing:-1.912819pt;}
.wsf9{word-spacing:-1.896874pt;}
.ws57{word-spacing:-1.859685pt;}
.wsbb{word-spacing:-1.859680pt;}
.wsdc{word-spacing:-1.822486pt;}
.ws11e{word-spacing:-1.769370pt;}
.ws67{word-spacing:-1.753418pt;}
.ws94{word-spacing:-1.636518pt;}
.wsab{word-spacing:-1.599325pt;}
.ws107{word-spacing:-1.487748pt;}
.ws34{word-spacing:-1.381481pt;}
.ws128{word-spacing:-1.291162pt;}
.ws80{word-spacing:-1.275213pt;}
.ws100{word-spacing:-1.227389pt;}
.ws47{word-spacing:-1.222079pt;}
.ws2b{word-spacing:-1.168945pt;}
.ws1a{word-spacing:-1.115811pt;}
.ws48{word-spacing:-1.062677pt;}
.wscb{word-spacing:-1.041421pt;}
.ws43{word-spacing:-1.009543pt;}
.ws4b{word-spacing:-0.956410pt;}
.ws3f{word-spacing:-0.903276pt;}
.ws7d{word-spacing:-0.885854pt;}
.wsb0{word-spacing:-0.855453pt;}
.ws42{word-spacing:-0.850142pt;}
.ws129{word-spacing:-0.812954pt;}
.ws5a{word-spacing:-0.797008pt;}
.ws3a{word-spacing:-0.743874pt;}
.ws111{word-spacing:-0.690740pt;}
.ws13{word-spacing:-0.621670pt;}
.ws3e{word-spacing:-0.531339pt;}
.ws140{word-spacing:-0.478208pt;}
.ws7e{word-spacing:-0.425071pt;}
.wsbc{word-spacing:-0.371936pt;}
.ws1c{word-spacing:-0.318803pt;}
.ws17{word-spacing:-0.286925pt;}
.ws1b{word-spacing:-0.265669pt;}
.ws31{word-spacing:-0.212535pt;}
.ws14{word-spacing:-0.191283pt;}
.ws21{word-spacing:-0.159402pt;}
.ws15{word-spacing:-0.143462pt;}
.ws121{word-spacing:-0.134094pt;}
.ws23{word-spacing:-0.106268pt;}
.ws12a{word-spacing:-0.095642pt;}
.ws85{word-spacing:-0.074387pt;}
.ws20{word-spacing:-0.053134pt;}
.ws149{word-spacing:-0.047821pt;}
.ws125{word-spacing:-0.008542pt;}
.ws135{word-spacing:-0.005717pt;}
.ws13a{word-spacing:-0.004463pt;}
.ws137{word-spacing:-0.003345pt;}
.ws13f{word-spacing:-0.002935pt;}
.ws122{word-spacing:-0.001502pt;}
.ws9{word-spacing:-0.001162pt;}
.ws13c{word-spacing:-0.001126pt;}
.ws1{word-spacing:0.000000pt;}
.ws26{word-spacing:0.002029pt;}
.ws10{word-spacing:0.047821pt;}
.ws29{word-spacing:0.053134pt;}
.ws11b{word-spacing:0.095642pt;}
.ws19{word-spacing:0.106268pt;}
.wsd{word-spacing:0.143462pt;}
.wsc6{word-spacing:0.148774pt;}
.ws1d{word-spacing:0.159402pt;}
.ws62{word-spacing:0.191283pt;}
.ws25{word-spacing:0.212535pt;}
.ws11{word-spacing:0.239104pt;}
.ws3b{word-spacing:0.265669pt;}
.ws11c{word-spacing:0.286925pt;}
.ws3c{word-spacing:0.318803pt;}
.ws133{word-spacing:0.334746pt;}
.ws52{word-spacing:0.425071pt;}
.ws144{word-spacing:0.430387pt;}
.ws116{word-spacing:0.478205pt;}
.ws109{word-spacing:0.531339pt;}
.ws36{word-spacing:0.584473pt;}
.wsbe{word-spacing:0.595098pt;}
.ws5d{word-spacing:0.637606pt;}
.ws72{word-spacing:0.663750pt;}
.ws77{word-spacing:0.664897pt;}
.ws60{word-spacing:0.690740pt;}
.ws41{word-spacing:0.797008pt;}
.wsc0{word-spacing:0.818259pt;}
.ws45{word-spacing:0.850142pt;}
.ws143{word-spacing:0.860774pt;}
.ws56{word-spacing:0.903276pt;}
.ws33{word-spacing:0.956410pt;}
.ws7f{word-spacing:1.009543pt;}
.ws5b{word-spacing:1.062677pt;}
.ws12c{word-spacing:1.099878pt;}
.ws32{word-spacing:1.115811pt;}
.ws12{word-spacing:1.147699pt;}
.ws38{word-spacing:1.168945pt;}
.ws108{word-spacing:1.222079pt;}
.ws8{word-spacing:1.227389pt;}
.wsbf{word-spacing:1.264582pt;}
.ws55{word-spacing:1.275213pt;}
.ws28{word-spacing:1.328347pt;}
.ws13d{word-spacing:1.338982pt;}
.ws73{word-spacing:1.356944pt;}
.wsb1{word-spacing:1.413357pt;}
.ws54{word-spacing:1.434614pt;}
.ws123{word-spacing:1.434624pt;}
.wsfc{word-spacing:1.487744pt;}
.ws115{word-spacing:1.487748pt;}
.wsdb{word-spacing:1.647150pt;}
.ws22{word-spacing:1.700284pt;}
.ws127{word-spacing:1.721549pt;}
.ws71{word-spacing:1.725084pt;}
.ws40{word-spacing:1.753418pt;}
.ws12f{word-spacing:1.769370pt;}
.ws6e{word-spacing:1.806551pt;}
.ws81{word-spacing:1.859685pt;}
.wse2{word-spacing:1.896874pt;}
.ws134{word-spacing:1.960653pt;}
.ws3d{word-spacing:1.965953pt;}
.ws110{word-spacing:2.125355pt;}
.ws11d{word-spacing:2.147162pt;}
.ws146{word-spacing:2.151936pt;}
.ws24{word-spacing:2.178489pt;}
.ws148{word-spacing:2.199757pt;}
.ws0{word-spacing:2.232481pt;}
.ws14b{word-spacing:2.247578pt;}
.ws14c{word-spacing:2.295398pt;}
.ws5e{word-spacing:2.337890pt;}
.ws101{word-spacing:2.380390pt;}
.ws139{word-spacing:2.438861pt;}
.ws114{word-spacing:2.497292pt;}
.ws16{word-spacing:2.536070pt;}
.ws6b{word-spacing:2.550426pt;}
.wsb{word-spacing:2.550432pt;}
.ws12b{word-spacing:2.582323pt;}
.ws6c{word-spacing:2.603559pt;}
.ws5c{word-spacing:2.656693pt;}
.ws13b{word-spacing:2.677965pt;}
.wsaf{word-spacing:2.717604pt;}
.ws2d{word-spacing:2.762961pt;}
.ws58{word-spacing:2.816095pt;}
.ws130{word-spacing:2.821427pt;}
.ws131{word-spacing:2.863275pt;}
.ws14a{word-spacing:2.863684pt;}
.ws136{word-spacing:2.864461pt;}
.ws14f{word-spacing:2.865271pt;}
.ws14d{word-spacing:2.865877pt;}
.ws141{word-spacing:2.866398pt;}
.ws132{word-spacing:2.866739pt;}
.ws117{word-spacing:2.869229pt;}
.ws126{word-spacing:2.869248pt;}
.ws11a{word-spacing:2.917069pt;}
.ws78{word-spacing:2.922363pt;}
.ws12e{word-spacing:2.964890pt;}
.ws145{word-spacing:3.004175pt;}
.ws37{word-spacing:3.028630pt;}
.wsc{word-spacing:3.052600pt;}
.ws1e{word-spacing:3.081764pt;}
.ws150{word-spacing:3.108352pt;}
.ws4c{word-spacing:3.134898pt;}
.ws88{word-spacing:3.161456pt;}
.ws18{word-spacing:3.188032pt;}
.ws138{word-spacing:3.251814pt;}
.ws46{word-spacing:3.347434pt;}
.ws14e{word-spacing:3.395277pt;}
.ws106{word-spacing:3.400567pt;}
.ws59{word-spacing:3.613103pt;}
.ws10e{word-spacing:3.825638pt;}
.ws142{word-spacing:3.825664pt;}
.ws51{word-spacing:3.931906pt;}
.ws2c{word-spacing:3.985040pt;}
.ws119{word-spacing:4.091308pt;}
.wsf8{word-spacing:4.165683pt;}
.ws35{word-spacing:4.303843pt;}
.ws4e{word-spacing:4.356977pt;}
.ws74{word-spacing:4.410111pt;}
.ws113{word-spacing:4.463245pt;}
.wsfe{word-spacing:4.500426pt;}
.ws10f{word-spacing:4.622646pt;}
.wsf{word-spacing:4.734259pt;}
.ws118{word-spacing:4.782048pt;}
.ws6{word-spacing:4.872362pt;}
.ws10d{word-spacing:5.207119pt;}
.ws68{word-spacing:5.260253pt;}
.ws2e{word-spacing:5.313387pt;}
.ws103{word-spacing:5.765008pt;}
.ws50{word-spacing:5.791591pt;}
.ws76{word-spacing:5.847309pt;}
.ws75{word-spacing:5.897859pt;}
.ws30{word-spacing:6.004127pt;}
.ws2f{word-spacing:6.216662pt;}
.ws10b{word-spacing:6.269796pt;}
.wsfa{word-spacing:6.285718pt;}
.ws4f{word-spacing:6.376064pt;}
.ws10c{word-spacing:6.535466pt;}
.ws12d{word-spacing:6.599270pt;}
.wse{word-spacing:6.694912pt;}
.wsf0{word-spacing:6.696747pt;}
.ws112{word-spacing:6.907403pt;}
.ws10a{word-spacing:7.013670pt;}
.ws13e{word-spacing:7.364403pt;}
.ws7a{word-spacing:7.985975pt;}
.ws124{word-spacing:8.124442pt;}
.ws96{word-spacing:8.256979pt;}
.ws11f{word-spacing:8.272998pt;}
.ws120{word-spacing:8.320819pt;}
.ws99{word-spacing:8.628915pt;}
.ws4{word-spacing:8.740496pt;}
.ws89{word-spacing:9.028640pt;}
.ws147{word-spacing:9.803264pt;}
.ws5{word-spacing:10.525789pt;}
.ws8c{word-spacing:11.901952pt;}
.wse0{word-spacing:11.904020pt;}
.ws84{word-spacing:12.820640pt;}
.ws8d{word-spacing:13.017760pt;}
.wsd7{word-spacing:13.236500pt;}
.wsc7{word-spacing:13.241834pt;}
.ws82{word-spacing:13.528372pt;}
.wsde{word-spacing:13.724438pt;}
.wsa2{word-spacing:13.798826pt;}
.ws91{word-spacing:13.873213pt;}
.ws87{word-spacing:13.929973pt;}
.wsee{word-spacing:14.277201pt;}
.wsf2{word-spacing:14.278694pt;}
.ws7{word-spacing:14.282342pt;}
.wsa5{word-spacing:14.765859pt;}
.ws8f{word-spacing:14.989021pt;}
.ws8a{word-spacing:15.026214pt;}
.wsd8{word-spacing:15.177120pt;}
.wsd4{word-spacing:15.353120pt;}
.wsa3{word-spacing:15.398150pt;}
.wsad{word-spacing:15.726453pt;}
.ws8e{word-spacing:15.770086pt;}
.wsce{word-spacing:15.779787pt;}
.ws93{word-spacing:17.034669pt;}
.wsb3{word-spacing:17.378719pt;}
.wsb4{word-spacing:17.384052pt;}
.wsd0{word-spacing:18.267372pt;}
.wsa8{word-spacing:19.563834pt;}
.ws8b{word-spacing:19.824189pt;}
.ws3{word-spacing:19.857270pt;}
.wse1{word-spacing:20.872052pt;}
.wsb6{word-spacing:21.515372pt;}
.wsdf{word-spacing:21.683229pt;}
.wsbd{word-spacing:23.096562pt;}
.wsc2{word-spacing:23.101895pt;}
.wsb2{word-spacing:24.157895pt;}
.ws9b{word-spacing:33.399853pt;}
.wsa1{word-spacing:34.069338pt;}
.ws90{word-spacing:34.143725pt;}
.wsba{word-spacing:34.366886pt;}
.wsb8{word-spacing:35.065333pt;}
.ws9e{word-spacing:35.073565pt;}
.wscd{word-spacing:35.998667pt;}
.ws92{word-spacing:37.342374pt;}
.ws98{word-spacing:37.491149pt;}
.wsca{word-spacing:37.540000pt;}
.ws95{word-spacing:37.863085pt;}
.wsa4{word-spacing:38.123440pt;}
.wsa7{word-spacing:38.346602pt;}
.wsa6{word-spacing:38.830118pt;}
.ws7b{word-spacing:45.694035pt;}
.ws79{word-spacing:46.197297pt;}
.wscc{word-spacing:123.668720pt;}
.wse4{word-spacing:124.334667pt;}
.wsf1{word-spacing:125.119270pt;}
.wsf4{word-spacing:125.714368pt;}
.wsea{word-spacing:125.974723pt;}
.wsef{word-spacing:126.272272pt;}
.wsb5{word-spacing:126.548000pt;}
.wse6{word-spacing:126.804000pt;}
.wsf3{word-spacing:127.016144pt;}
.wsf5{word-spacing:127.164918pt;}
.wse8{word-spacing:127.239306pt;}
.wsed{word-spacing:127.945984pt;}
.wsf6{word-spacing:128.317920pt;}
.wse7{word-spacing:212.933360pt;}
.ws63{word-spacing:266.218394pt;}
.ws66{word-spacing:268.609434pt;}
.ws64{word-spacing:268.657254pt;}
.ws65{word-spacing:271.048294pt;}
.wsff{word-spacing:487.533709pt;}
._3f{margin-left:-23.287271pt;}
._19{margin-left:-22.103689pt;}
._42{margin-left:-20.334437pt;}
._15{margin-left:-7.571714pt;}
._f{margin-left:-6.562036pt;}
._0{margin-left:-5.467459pt;}
._6{margin-left:-4.139146pt;}
._12{margin-left:-2.869229pt;}
._4{margin-left:-1.301776pt;}
._2e{width:1.305853pt;}
._5{width:2.654859pt;}
._18{width:4.410111pt;}
._34{width:5.520580pt;}
._36{width:6.767921pt;}
._39{width:8.368560pt;}
._31{width:9.397750pt;}
._1{width:10.860735pt;}
._3d{width:11.867648pt;}
._7{width:12.826562pt;}
._16{width:14.053911pt;}
._8{width:15.036960pt;}
._c{width:16.152695pt;}
._9{width:17.741517pt;}
._10{width:18.782818pt;}
._a{width:20.371661pt;}
._13{width:22.055659pt;}
._2{width:23.063232pt;}
._1a{width:24.574410pt;}
._3e{width:25.524118pt;}
._14{width:26.434065pt;}
._3{width:27.783619pt;}
._b{width:29.409792pt;}
._32{width:30.693600pt;}
._33{width:32.003648pt;}
._24{width:32.894896pt;}
._17{width:34.271344pt;}
._11{width:35.652825pt;}
._3a{width:36.672890pt;}
._38{width:37.751823pt;}
._37{width:47.123289pt;}
._3b{width:48.901853pt;}
._3c{width:50.468263pt;}
._35{width:51.663183pt;}
._2a{width:53.133867pt;}
._43{width:54.993920pt;}
._41{width:78.904320pt;}
._2d{width:154.778954pt;}
._21{width:173.541683pt;}
._1f{width:192.191795pt;}
._2f{width:194.717380pt;}
._23{width:199.402149pt;}
._1d{width:218.827981pt;}
._22{width:277.913226pt;}
._20{width:278.933350pt;}
._1e{width:280.352086pt;}
._1b{width:281.372211pt;}
._1c{width:283.003494pt;}
._2c{width:429.587312pt;}
._30{width:449.193709pt;}
._29{width:460.830026pt;}
._25{width:485.252594pt;}
._28{width:529.957186pt;}
._27{width:545.525409pt;}
._26{width:611.969306pt;}
._2b{width:625.704414pt;}
._d{width:635.236610pt;}
._40{width:2216.728000pt;}
._e{width:2237.981333pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs9{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs7{font-size:55.365867pt;}
.fs8{font-size:74.387733pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:28.346667pt;}
.y41{bottom:92.318667pt;}
.y14{bottom:93.018667pt;}
.y121{bottom:94.524000pt;}
.y68{bottom:98.493333pt;}
.yf6{bottom:98.974667pt;}
.y9a{bottom:101.525333pt;}
.y1dc{bottom:104.065333pt;}
.yc2{bottom:105.510667pt;}
.y120{bottom:106.210667pt;}
.y13{bottom:108.920000pt;}
.y122{bottom:108.973333pt;}
.y40{bottom:109.056000pt;}
.y67{bottom:115.230667pt;}
.yf5{bottom:115.712000pt;}
.y216{bottom:116.270667pt;}
.y24d{bottom:117.466667pt;}
.y99{bottom:118.262667pt;}
.y1db{bottom:120.802667pt;}
.yc1{bottom:122.248000pt;}
.y11f{bottom:123.318667pt;}
.y12{bottom:124.820000pt;}
.y3f{bottom:125.793333pt;}
.y215{bottom:131.613333pt;}
.y66{bottom:131.968000pt;}
.yf4{bottom:132.449333pt;}
.y24c{bottom:132.808000pt;}
.y98{bottom:135.000000pt;}
.y1da{bottom:137.540000pt;}
.yc0{bottom:138.985333pt;}
.y11{bottom:140.720000pt;}
.y3e{bottom:142.530667pt;}
.y214{bottom:146.956000pt;}
.y24b{bottom:148.150667pt;}
.y65{bottom:148.705333pt;}
.yf3{bottom:149.186667pt;}
.y97{bottom:151.737333pt;}
.y1d9{bottom:154.277333pt;}
.ybf{bottom:155.722667pt;}
.y10{bottom:156.621333pt;}
.y3d{bottom:159.268000pt;}
.y11d{bottom:160.177333pt;}
.y213{bottom:162.298667pt;}
.y64{bottom:165.442667pt;}
.yf2{bottom:165.924000pt;}
.y96{bottom:168.474667pt;}
.y1d8{bottom:171.013333pt;}
.y11c{bottom:171.862667pt;}
.ybe{bottom:172.460000pt;}
.yf{bottom:172.521333pt;}
.y1b5{bottom:174.121333pt;}
.y11e{bottom:174.625333pt;}
.y3c{bottom:176.005333pt;}
.y212{bottom:177.641333pt;}
.y24a{bottom:180.230667pt;}
.y63{bottom:182.180000pt;}
.yf1{bottom:182.661333pt;}
.y95{bottom:185.212000pt;}
.y1d7{bottom:187.750667pt;}
.ye{bottom:188.421333pt;}
.y11b{bottom:188.972000pt;}
.ybd{bottom:189.197333pt;}
.y1b4{bottom:190.858667pt;}
.y3b{bottom:192.742667pt;}
.y211{bottom:192.982667pt;}
.y154{bottom:193.988000pt;}
.y249{bottom:195.573333pt;}
.y62{bottom:198.917333pt;}
.yf0{bottom:199.398667pt;}
.y94{bottom:201.949333pt;}
.yd{bottom:204.322667pt;}
.y1d6{bottom:204.488000pt;}
.ybc{bottom:205.934667pt;}
.y1b3{bottom:207.596000pt;}
.y210{bottom:208.325333pt;}
.y3a{bottom:209.480000pt;}
.y153{bottom:210.725333pt;}
.y248{bottom:210.916000pt;}
.y61{bottom:215.654667pt;}
.yef{bottom:216.136000pt;}
.y93{bottom:218.686667pt;}
.y1bf{bottom:219.509333pt;}
.y1d5{bottom:221.225333pt;}
.ybb{bottom:222.672000pt;}
.y20f{bottom:223.668000pt;}
.y1b2{bottom:224.333333pt;}
.y119{bottom:225.829333pt;}
.y39{bottom:226.217333pt;}
.y247{bottom:226.258667pt;}
.y60{bottom:232.392000pt;}
.yee{bottom:232.872000pt;}
.y92{bottom:235.424000pt;}
.y118{bottom:237.516000pt;}
.y1d4{bottom:237.962667pt;}
.y20e{bottom:239.010667pt;}
.yba{bottom:239.409333pt;}
.y11a{bottom:240.278667pt;}
.y1b1{bottom:241.070667pt;}
.y246{bottom:241.601333pt;}
.y38{bottom:242.954667pt;}
.y152{bottom:246.332000pt;}
.y5f{bottom:249.129333pt;}
.yed{bottom:249.609333pt;}
.y91{bottom:252.161333pt;}
.y20d{bottom:254.353333pt;}
.y117{bottom:254.624000pt;}
.y1d3{bottom:254.700000pt;}
.y199{bottom:255.085333pt;}
.y151{bottom:256.094667pt;}
.yb9{bottom:256.146667pt;}
.y245{bottom:256.944000pt;}
.y1b0{bottom:257.808000pt;}
.y37{bottom:259.692000pt;}
.y1bd{bottom:260.412000pt;}
.yc{bottom:264.148000pt;}
.y150{bottom:265.858667pt;}
.y5e{bottom:265.866667pt;}
.yec{bottom:266.346667pt;}
.y90{bottom:268.898667pt;}
.y20c{bottom:269.696000pt;}
.y1d2{bottom:271.437333pt;}
.y198{bottom:271.822667pt;}
.y244{bottom:272.285333pt;}
.yb8{bottom:272.884000pt;}
.y1af{bottom:274.545333pt;}
.y14f{bottom:275.621333pt;}
.y36{bottom:276.429333pt;}
.yb{bottom:280.048000pt;}
.y5d{bottom:282.604000pt;}
.y20b{bottom:285.038667pt;}
.y14e{bottom:285.385333pt;}
.y8f{bottom:285.636000pt;}
.y243{bottom:287.628000pt;}
.y1d1{bottom:288.174667pt;}
.y197{bottom:288.560000pt;}
.yb7{bottom:289.621333pt;}
.y1ae{bottom:291.282667pt;}
.y115{bottom:291.482667pt;}
.y35{bottom:293.166667pt;}
.y14d{bottom:295.148000pt;}
.ya{bottom:295.949333pt;}
.y5c{bottom:299.341333pt;}
.y20a{bottom:300.381333pt;}
.y8e{bottom:302.373333pt;}
.y242{bottom:302.970667pt;}
.y114{bottom:303.168000pt;}
.y14c{bottom:304.912000pt;}
.y196{bottom:305.297333pt;}
.y116{bottom:305.930667pt;}
.y1e3{bottom:306.358667pt;}
.y1ad{bottom:308.020000pt;}
.yeb{bottom:309.414667pt;}
.y34{bottom:309.904000pt;}
.yb6{bottom:310.344000pt;}
.y9{bottom:311.849333pt;}
.y14b{bottom:314.676000pt;}
.y209{bottom:315.724000pt;}
.y5b{bottom:316.078667pt;}
.y241{bottom:318.313333pt;}
.y8d{bottom:319.110667pt;}
.y113{bottom:320.277333pt;}
.y1d0{bottom:321.649333pt;}
.y195{bottom:322.034667pt;}
.y1e2{bottom:323.096000pt;}
.y14a{bottom:324.438667pt;}
.y1ac{bottom:324.757333pt;}
.y33{bottom:326.641333pt;}
.yea{bottom:330.694667pt;}
.y208{bottom:331.065333pt;}
.y5a{bottom:332.816000pt;}
.y240{bottom:333.656000pt;}
.y149{bottom:334.202667pt;}
.y8c{bottom:335.848000pt;}
.y8{bottom:337.048000pt;}
.y1cf{bottom:338.386667pt;}
.y1e1{bottom:339.833333pt;}
.yb5{bottom:340.232000pt;}
.y1ab{bottom:341.494667pt;}
.y32{bottom:343.378667pt;}
.y148{bottom:343.965333pt;}
.ye9{bottom:345.306667pt;}
.y207{bottom:346.408000pt;}
.y23f{bottom:348.998667pt;}
.y59{bottom:349.553333pt;}
.y8b{bottom:352.585333pt;}
.y147{bottom:353.729333pt;}
.y1ce{bottom:355.124000pt;}
.y1e0{bottom:356.570667pt;}
.yb4{bottom:356.968000pt;}
.y111{bottom:357.134667pt;}
.y194{bottom:357.641333pt;}
.y1aa{bottom:358.232000pt;}
.y31{bottom:360.116000pt;}
.y7{bottom:360.918667pt;}
.y206{bottom:361.750667pt;}
.y146{bottom:363.492000pt;}
.y23e{bottom:364.341333pt;}
.y58{bottom:366.290667pt;}
.ye8{bottom:366.585333pt;}
.y193{bottom:367.404000pt;}
.y110{bottom:368.821333pt;}
.y8a{bottom:369.322667pt;}
.y112{bottom:371.584000pt;}
.y1cd{bottom:371.861333pt;}
.y145{bottom:373.256000pt;}
.y1df{bottom:373.308000pt;}
.yb3{bottom:373.705333pt;}
.y1a9{bottom:374.969333pt;}
.y6{bottom:376.818667pt;}
.y30{bottom:376.853333pt;}
.y205{bottom:377.093333pt;}
.y192{bottom:377.168000pt;}
.y23d{bottom:379.684000pt;}
.ye7{bottom:381.197333pt;}
.y144{bottom:383.018667pt;}
.y57{bottom:383.028000pt;}
.y10f{bottom:385.930667pt;}
.y89{bottom:386.060000pt;}
.y191{bottom:386.930667pt;}
.y1cc{bottom:388.598667pt;}
.yb2{bottom:390.442667pt;}
.y1a8{bottom:391.705333pt;}
.y204{bottom:392.436000pt;}
.y5{bottom:392.720000pt;}
.y143{bottom:392.782667pt;}
.y1de{bottom:394.029333pt;}
.y23c{bottom:395.025333pt;}
.y190{bottom:396.694667pt;}
.y2f{bottom:397.574667pt;}
.y56{bottom:399.765333pt;}
.ye6{bottom:402.477333pt;}
.y142{bottom:402.546667pt;}
.y88{bottom:402.797333pt;}
.y1cb{bottom:405.336000pt;}
.y18f{bottom:406.457333pt;}
.yb1{bottom:407.180000pt;}
.y203{bottom:407.778667pt;}
.y1a7{bottom:408.442667pt;}
.y4{bottom:408.620000pt;}
.y23b{bottom:410.368000pt;}
.y10e{bottom:411.161333pt;}
.y141{bottom:412.309333pt;}
.y18e{bottom:416.221333pt;}
.y55{bottom:416.502667pt;}
.ye5{bottom:417.089333pt;}
.y87{bottom:419.534667pt;}
.y140{bottom:422.073333pt;}
.y202{bottom:423.121333pt;}
.yb0{bottom:423.917333pt;}
.y3{bottom:424.520000pt;}
.y1a6{bottom:425.180000pt;}
.y23a{bottom:425.710667pt;}
.y18d{bottom:425.984000pt;}
.y13f{bottom:431.836000pt;}
.y18c{bottom:435.748000pt;}
.y86{bottom:436.272000pt;}
.y54{bottom:437.224000pt;}
.ye4{bottom:438.369333pt;}
.y201{bottom:438.464000pt;}
.y1ca{bottom:438.810667pt;}
.y10d{bottom:440.168000pt;}
.y2{bottom:440.421333pt;}
.yaf{bottom:440.654667pt;}
.y239{bottom:441.053333pt;}
.y13e{bottom:441.600000pt;}
.y1a5{bottom:441.917333pt;}
.y18b{bottom:445.510667pt;}
.y10c{bottom:451.853333pt;}
.ye3{bottom:452.980000pt;}
.y85{bottom:453.009333pt;}
.y200{bottom:453.806667pt;}
.y53{bottom:453.961333pt;}
.y10a{bottom:454.617333pt;}
.y18a{bottom:455.274667pt;}
.y1c9{bottom:455.548000pt;}
.y1{bottom:456.321333pt;}
.y238{bottom:456.396000pt;}
.yae{bottom:457.392000pt;}
.y1a4{bottom:458.654667pt;}
.y13d{bottom:462.249333pt;}
.y2e{bottom:464.374667pt;}
.y189{bottom:465.038667pt;}
.y10b{bottom:468.962667pt;}
.y1ff{bottom:469.148000pt;}
.y84{bottom:469.746667pt;}
.y237{bottom:471.738667pt;}
.y1c8{bottom:472.285333pt;}
.yad{bottom:474.129333pt;}
.ye2{bottom:474.260000pt;}
.y188{bottom:474.801333pt;}
.y1a3{bottom:475.392000pt;}
.y2d{bottom:481.670667pt;}
.y52{bottom:483.797333pt;}
.y1fe{bottom:484.490667pt;}
.y187{bottom:484.565333pt;}
.y236{bottom:487.081333pt;}
.ye1{bottom:488.872000pt;}
.y1c7{bottom:489.022667pt;}
.y83{bottom:490.468000pt;}
.y109{bottom:490.734667pt;}
.yac{bottom:490.866667pt;}
.y13c{bottom:490.941333pt;}
.y1a2{bottom:492.129333pt;}
.y186{bottom:494.328000pt;}
.y1fd{bottom:499.833333pt;}
.y235{bottom:502.424000pt;}
.ye0{bottom:503.484000pt;}
.y185{bottom:504.092000pt;}
.y1c6{bottom:505.760000pt;}
.y108{bottom:507.472000pt;}
.yab{bottom:507.604000pt;}
.y13b{bottom:507.678667pt;}
.y1a1{bottom:508.866667pt;}
.y184{bottom:513.854667pt;}
.y2c{bottom:514.905333pt;}
.y1fc{bottom:515.176000pt;}
.y234{bottom:517.766667pt;}
.y82{bottom:520.356000pt;}
.y1c5{bottom:522.497333pt;}
.y183{bottom:523.618667pt;}
.y107{bottom:524.208000pt;}
.yaa{bottom:524.341333pt;}
.y13a{bottom:524.416000pt;}
.ydf{bottom:524.764000pt;}
.y1a0{bottom:525.604000pt;}
.y1fb{bottom:530.518667pt;}
.y2b{bottom:532.201333pt;}
.y233{bottom:533.108000pt;}
.y182{bottom:533.381333pt;}
.y81{bottom:537.093333pt;}
.y1c4{bottom:539.234667pt;}
.y106{bottom:540.945333pt;}
.ya9{bottom:541.078667pt;}
.y139{bottom:541.153333pt;}
.y19f{bottom:542.341333pt;}
.y181{bottom:543.145333pt;}
.y1fa{bottom:545.861333pt;}
.yde{bottom:546.042667pt;}
.y232{bottom:548.450667pt;}
.y2a{bottom:549.496000pt;}
.y180{bottom:552.909333pt;}
.y80{bottom:553.830667pt;}
.y1c3{bottom:555.972000pt;}
.ya8{bottom:557.816000pt;}
.y138{bottom:557.890667pt;}
.ydd{bottom:560.654667pt;}
.y1f9{bottom:561.204000pt;}
.y17f{bottom:562.672000pt;}
.y19e{bottom:563.064000pt;}
.y231{bottom:563.793333pt;}
.y105{bottom:564.325333pt;}
.y29{bottom:566.790667pt;}
.y7f{bottom:570.568000pt;}
.y17e{bottom:572.436000pt;}
.y1c2{bottom:572.709333pt;}
.ya7{bottom:574.553333pt;}
.y137{bottom:574.628000pt;}
.y1f8{bottom:576.546667pt;}
.y230{bottom:579.136000pt;}
.y104{bottom:581.062667pt;}
.ydb{bottom:581.934667pt;}
.y17d{bottom:582.198667pt;}
.y28{bottom:584.086667pt;}
.y7e{bottom:587.305333pt;}
.y1c1{bottom:589.446667pt;}
.ya6{bottom:591.290667pt;}
.y136{bottom:591.365333pt;}
.y1f7{bottom:591.888000pt;}
.y17c{bottom:591.962667pt;}
.y19d{bottom:592.952000pt;}
.y22f{bottom:594.478667pt;}
.yda{bottom:596.546667pt;}
.y103{bottom:597.800000pt;}
.y27{bottom:601.381333pt;}
.y17b{bottom:601.725333pt;}
.ydc{bottom:603.852000pt;}
.y7d{bottom:604.042667pt;}
.y1f6{bottom:607.230667pt;}
.ya5{bottom:608.028000pt;}
.y135{bottom:608.102667pt;}
.y19c{bottom:609.689333pt;}
.y22e{bottom:609.821333pt;}
.yd9{bottom:611.158667pt;}
.y17a{bottom:611.489333pt;}
.y102{bottom:614.537333pt;}
.y26{bottom:618.677333pt;}
.y1c0{bottom:619.282667pt;}
.y7c{bottom:620.780000pt;}
.y1be{bottom:620.934667pt;}
.y179{bottom:621.252000pt;}
.y1f5{bottom:622.573333pt;}
.ya4{bottom:624.765333pt;}
.y134{bottom:624.840000pt;}
.y22d{bottom:625.164000pt;}
.yd8{bottom:625.770667pt;}
.y19b{bottom:626.426667pt;}
.y178{bottom:631.016000pt;}
.y101{bottom:631.274667pt;}
.y25{bottom:635.972000pt;}
.y7b{bottom:637.517333pt;}
.y1f4{bottom:637.916000pt;}
.y22c{bottom:640.506667pt;}
.y177{bottom:640.778667pt;}
.ya3{bottom:641.502667pt;}
.y133{bottom:645.561333pt;}
.yd7{bottom:647.049333pt;}
.y19a{bottom:647.149333pt;}
.y100{bottom:648.012000pt;}
.y176{bottom:650.542667pt;}
.y1f3{bottom:653.258667pt;}
.y24{bottom:653.266667pt;}
.y7a{bottom:654.254667pt;}
.y1bc{bottom:654.653333pt;}
.y22b{bottom:655.848000pt;}
.ya2{bottom:658.240000pt;}
.y175{bottom:660.306667pt;}
.yd6{bottom:661.661333pt;}
.yfe{bottom:664.748000pt;}
.yff{bottom:664.749333pt;}
.y1f2{bottom:668.601333pt;}
.y174{bottom:670.069333pt;}
.y23{bottom:670.562667pt;}
.y79{bottom:670.992000pt;}
.y22a{bottom:671.190667pt;}
.y1bb{bottom:671.390667pt;}
.ya1{bottom:674.977333pt;}
.y132{bottom:675.449333pt;}
.y173{bottom:679.833333pt;}
.yfd{bottom:681.485333pt;}
.yd5{bottom:682.941333pt;}
.y1f1{bottom:683.944000pt;}
.y229{bottom:686.533333pt;}
.y78{bottom:687.729333pt;}
.y22{bottom:687.857333pt;}
.y1ba{bottom:688.128000pt;}
.y172{bottom:689.596000pt;}
.ya0{bottom:691.714667pt;}
.y131{bottom:692.186667pt;}
.yd4{bottom:697.553333pt;}
.yfc{bottom:698.222667pt;}
.y1f0{bottom:699.286667pt;}
.y171{bottom:699.360000pt;}
.y228{bottom:701.876000pt;}
.y77{bottom:704.466667pt;}
.y1b9{bottom:704.865333pt;}
.y21{bottom:705.152000pt;}
.y9f{bottom:708.452000pt;}
.y130{bottom:708.924000pt;}
.y170{bottom:709.122667pt;}
.y1ef{bottom:714.629333pt;}
.yfb{bottom:714.960000pt;}
.y227{bottom:717.218667pt;}
.yd3{bottom:718.833333pt;}
.y16f{bottom:718.886667pt;}
.y76{bottom:721.204000pt;}
.y1b8{bottom:721.602667pt;}
.y9e{bottom:725.189333pt;}
.y12f{bottom:725.661333pt;}
.y16e{bottom:728.649333pt;}
.yfa{bottom:731.697333pt;}
.y226{bottom:732.561333pt;}
.y1ee{bottom:733.956000pt;}
.y1b7{bottom:738.340000pt;}
.y16d{bottom:738.413333pt;}
.y20{bottom:739.450667pt;}
.yd2{bottom:740.112000pt;}
.y75{bottom:741.926667pt;}
.y12e{bottom:742.398667pt;}
.y225{bottom:747.904000pt;}
.y16c{bottom:748.176000pt;}
.yf9{bottom:748.434667pt;}
.y1f{bottom:753.797333pt;}
.y1b6{bottom:755.077333pt;}
.y16b{bottom:757.940000pt;}
.y9d{bottom:758.664000pt;}
.y12d{bottom:759.136000pt;}
.yd1{bottom:761.392000pt;}
.y224{bottom:763.246667pt;}
.y1ed{bottom:763.844000pt;}
.yf8{bottom:765.172000pt;}
.y16a{bottom:767.704000pt;}
.y74{bottom:771.814667pt;}
.y1e{bottom:772.001333pt;}
.y9c{bottom:775.401333pt;}
.y51{bottom:775.798667pt;}
.y12c{bottom:775.873333pt;}
.yd0{bottom:776.004000pt;}
.y169{bottom:777.466667pt;}
.y223{bottom:778.589333pt;}
.y1dd{bottom:779.385333pt;}
.y1d{bottom:782.489333pt;}
.y168{bottom:787.230667pt;}
.y1ec{bottom:787.436000pt;}
.y73{bottom:788.552000pt;}
.y50{bottom:792.536000pt;}
.y12b{bottom:792.610667pt;}
.y222{bottom:793.930667pt;}
.y9b{bottom:796.122667pt;}
.y167{bottom:796.993333pt;}
.ycf{bottom:797.284000pt;}
.y1c{bottom:800.693333pt;}
.y1eb{bottom:803.057333pt;}
.y72{bottom:805.289333pt;}
.y166{bottom:806.757333pt;}
.y4f{bottom:809.273333pt;}
.y12a{bottom:809.348000pt;}
.y1b{bottom:811.182667pt;}
.y165{bottom:816.520000pt;}
.yce{bottom:818.562667pt;}
.y71{bottom:822.025333pt;}
.y221{bottom:824.616000pt;}
.y4e{bottom:826.010667pt;}
.y164{bottom:826.284000pt;}
.y1ea{bottom:826.649333pt;}
.y1a{bottom:829.385333pt;}
.ycd{bottom:833.174667pt;}
.y163{bottom:836.046667pt;}
.y70{bottom:838.762667pt;}
.y220{bottom:839.958667pt;}
.y129{bottom:840.033333pt;}
.y1e9{bottom:842.270667pt;}
.y4d{bottom:842.748000pt;}
.y162{bottom:845.810667pt;}
.yc8{bottom:854.454667pt;}
.y21f{bottom:855.301333pt;}
.y6f{bottom:855.500000pt;}
.y161{bottom:855.573333pt;}
.y4c{bottom:859.485333pt;}
.ycc{bottom:861.760000pt;}
.y160{bottom:865.337333pt;}
.y1e8{bottom:865.861333pt;}
.yc7{bottom:869.066667pt;}
.y19{bottom:869.098667pt;}
.y21e{bottom:870.644000pt;}
.y6e{bottom:872.237333pt;}
.y15f{bottom:875.101333pt;}
.y4b{bottom:876.222667pt;}
.ycb{bottom:876.372000pt;}
.y1e7{bottom:881.482667pt;}
.yc4{bottom:883.678667pt;}
.y128{bottom:884.665333pt;}
.y15e{bottom:884.864000pt;}
.y18{bottom:885.836000pt;}
.y21d{bottom:885.986667pt;}
.y6d{bottom:888.974667pt;}
.yca{bottom:890.984000pt;}
.y4a{bottom:892.960000pt;}
.y15d{bottom:894.628000pt;}
.y1e6{bottom:897.105333pt;}
.yc6{bottom:898.290667pt;}
.y21c{bottom:901.329333pt;}
.y15c{bottom:904.390667pt;}
.yc9{bottom:905.596000pt;}
.y6c{bottom:905.712000pt;}
.y49{bottom:909.697333pt;}
.y1e5{bottom:912.726667pt;}
.yc5{bottom:912.902667pt;}
.y15b{bottom:914.154667pt;}
.y21b{bottom:916.670667pt;}
.y17{bottom:921.320000pt;}
.y6b{bottom:922.449333pt;}
.y15a{bottom:923.917333pt;}
.y48{bottom:926.434667pt;}
.y1e4{bottom:928.348000pt;}
.y127{bottom:929.298667pt;}
.y21a{bottom:932.013333pt;}
.y159{bottom:933.681333pt;}
.y6a{bottom:939.186667pt;}
.y47{bottom:943.172000pt;}
.y158{bottom:943.444000pt;}
.yc3{bottom:943.665333pt;}
.y16{bottom:946.425333pt;}
.y219{bottom:947.356000pt;}
.y157{bottom:953.208000pt;}
.y69{bottom:955.924000pt;}
.y46{bottom:959.909333pt;}
.y218{bottom:962.698667pt;}
.y156{bottom:962.970667pt;}
.y15{bottom:971.530667pt;}
.y126{bottom:971.662667pt;}
.yf7{bottom:972.661333pt;}
.y155{bottom:972.734667pt;}
.y45{bottom:976.646667pt;}
.y217{bottom:978.041333pt;}
.y125{bottom:983.349333pt;}
.y123{bottom:986.112000pt;}
.y44{bottom:993.384000pt;}
.y124{bottom:1000.457333pt;}
.y43{bottom:1047.118667pt;}
.h7{height:23.209028pt;}
.h11{height:26.248130pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h12{height:29.599908pt;}
.h8{height:30.945242pt;}
.hc{height:31.157778pt;}
.h14{height:31.558400pt;}
.hd{height:34.574438pt;}
.h9{height:34.813542pt;}
.h15{height:35.052646pt;}
.ha{height:38.415786pt;}
.hb{height:38.681455pt;}
.h4{height:38.947124pt;}
.h10{height:41.524400pt;}
.h16{height:44.436941pt;}
.h6{height:48.481423pt;}
.h13{height:57.799269pt;}
.hf{height:64.034876pt;}
.he{height:64.040209pt;}
.h5{height:69.148877pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x5f{left:55.604000pt;}
.x64{left:59.522667pt;}
.x62{left:60.904000pt;}
.x63{left:62.242667pt;}
.x4f{left:64.000000pt;}
.x68{left:66.236000pt;}
.x61{left:67.557333pt;}
.x66{left:74.341333pt;}
.xac{left:76.309333pt;}
.x65{left:81.269333pt;}
.x60{left:84.258667pt;}
.x51{left:153.209333pt;}
.x50{left:154.362667pt;}
.x52{left:157.860000pt;}
.x53{left:162.642667pt;}
.x67{left:170.209333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.xa4{left:226.506667pt;}
.x55{left:237.098667pt;}
.x3{left:239.924000pt;}
.x54{left:242.084000pt;}
.x56{left:246.393333pt;}
.x5{left:250.204000pt;}
.x43{left:252.928000pt;}
.x35{left:262.588000pt;}
.x75{left:267.060000pt;}
.xa5{left:268.970667pt;}
.x28{left:271.892000pt;}
.x7a{left:273.082667pt;}
.x44{left:275.058667pt;}
.x7f{left:280.416000pt;}
.x1e{left:282.904000pt;}
.x42{left:284.780000pt;}
.x3c{left:286.589333pt;}
.x36{left:287.749333pt;}
.xc{left:288.846667pt;}
.x86{left:289.904000pt;}
.x39{left:291.942667pt;}
.x6b{left:293.457333pt;}
.xa6{left:297.682667pt;}
.xd{left:299.120000pt;}
.x7b{left:307.088000pt;}
.x1f{left:308.041333pt;}
.x3d{left:312.048000pt;}
.xe{left:314.608000pt;}
.x6c{left:315.586667pt;}
.x8d{left:317.314667pt;}
.x7e{left:319.432000pt;}
.x57{left:327.964000pt;}
.x7c{left:331.209333pt;}
.x58{left:332.278667pt;}
.xa1{left:343.588000pt;}
.x84{left:345.142667pt;}
.x80{left:347.281333pt;}
.x7d{left:348.644000pt;}
.x3f{left:349.984000pt;}
.x76{left:352.798667pt;}
.x29{left:354.881333pt;}
.x93{left:357.370667pt;}
.x6d{left:358.400000pt;}
.x40{left:363.268000pt;}
.x4d{left:369.249333pt;}
.x9e{left:370.773333pt;}
.x8e{left:372.313333pt;}
.x9c{left:374.672000pt;}
.x9b{left:375.752000pt;}
.x6e{left:377.097333pt;}
.x2a{left:379.033333pt;}
.x9a{left:380.078667pt;}
.x4e{left:382.532000pt;}
.xa2{left:388.058667pt;}
.x9f{left:389.634667pt;}
.x98{left:391.197333pt;}
.x97{left:392.276000pt;}
.x9d{left:393.533333pt;}
.x74{left:395.590667pt;}
.x96{left:396.602667pt;}
.x2f{left:397.568000pt;}
.x8f{left:400.145333pt;}
.x3a{left:404.882667pt;}
.x59{left:405.874667pt;}
.xa3{left:406.918667pt;}
.x4b{left:407.917333pt;}
.x99{left:410.284000pt;}
.xa0{left:413.805333pt;}
.x47{left:418.472000pt;}
.x4c{left:421.201333pt;}
.x30{left:423.012000pt;}
.x2b{left:424.069333pt;}
.x92{left:425.692000pt;}
.x3b{left:430.334667pt;}
.x95{left:432.870667pt;}
.xf{left:434.205333pt;}
.x94{left:438.277333pt;}
.x48{left:440.602667pt;}
.x17{left:445.890667pt;}
.x11{left:447.030667pt;}
.x2c{left:448.802667pt;}
.x10{left:452.445333pt;}
.x12{left:453.673333pt;}
.x20{left:456.652000pt;}
.x18{left:471.349333pt;}
.x21{left:477.985333pt;}
.x77{left:488.460000pt;}
.x6f{left:490.432000pt;}
.x5a{left:498.502667pt;}
.x37{left:500.174667pt;}
.x78{left:513.908000pt;}
.x70{left:515.772000pt;}
.x38{left:522.304000pt;}
.x1b{left:526.613333pt;}
.x31{left:528.828000pt;}
.x49{left:531.124000pt;}
.xab{left:534.070667pt;}
.x41{left:542.449333pt;}
.x4a{left:544.406667pt;}
.xa7{left:547.110667pt;}
.x71{left:548.502667pt;}
.x32{left:550.958667pt;}
.x1c{left:553.226667pt;}
.xa8{left:555.930667pt;}
.x69{left:561.314667pt;}
.x22{left:562.820000pt;}
.x72{left:573.949333pt;}
.x87{left:575.948000pt;}
.x90{left:578.004000pt;}
.x85{left:579.830667pt;}
.x88{left:583.117333pt;}
.x23{left:584.153333pt;}
.x3e{left:587.452000pt;}
.xa{left:593.430667pt;}
.x5b{left:595.076000pt;}
.xb{left:600.072000pt;}
.x6{left:605.493333pt;}
.x91{left:607.312000pt;}
.x7{left:612.134667pt;}
.x89{left:621.638667pt;}
.x19{left:624.353333pt;}
.x8a{left:625.590667pt;}
.x8b{left:631.812000pt;}
.x24{left:633.454667pt;}
.x33{left:638.826667pt;}
.x1a{left:643.477333pt;}
.x81{left:648.556000pt;}
.x34{left:657.629333pt;}
.x25{left:659.081333pt;}
.x8c{left:661.316000pt;}
.x26{left:663.265333pt;}
.xa9{left:667.332000pt;}
.x45{left:668.858667pt;}
.x5e{left:671.930667pt;}
.x5d{left:677.812000pt;}
.x5c{left:680.238667pt;}
.x8{left:683.082667pt;}
.x27{left:684.598667pt;}
.xaa{left:689.462667pt;}
.x46{left:690.989333pt;}
.x2d{left:693.556000pt;}
.x1d{left:696.690667pt;}
.x82{left:701.550667pt;}
.x6a{left:703.056000pt;}
.x73{left:705.170667pt;}
.x83{left:708.637333pt;}
.x15{left:710.172000pt;}
.x2e{left:718.161333pt;}
.x16{left:723.454667pt;}
.x13{left:727.060000pt;}
.x79{left:738.149333pt;}
.x14{left:740.342667pt;}
.x9{left:744.770667pt;}
}




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