
    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_ce4195dc968bd69e67768340.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_166e58da4a59ccf6ce630619.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_01d231139c33e965c4595e18.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_54bbf0f46d6f6753e3c41ca9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693000;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_5e8380bfdf18b965fe2e01f7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_312beb6d62ae187afe43125c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.761000;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_bff32fb878f37f53dadc89db.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_412e8cf1245c42bd348475e0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.388000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e0ec95de1cae7cc45155b8d5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734000;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;}
.m5{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);}
.m2{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);}
.m23{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);}
.m21{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);}
.m9{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);}
.m19{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);}
.mf{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);}
.m8{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);}
.m14{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);}
.m27{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);}
.m6{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);}
.m13{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);}
.m1a{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);}
.m16{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);}
.m15{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);}
.m18{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);}
.m1f{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);}
.m4{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);}
.m17{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);}
.m7{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);}
.m1d{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m1c{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);}
.m1b{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);}
.m12{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);}
.ma{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);}
.mb{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);}
.m11{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);}
.m29{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);}
.m20{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);}
.m22{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);}
.m1e{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.mc{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);}
.m25{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.md{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);}
.v3{vertical-align:-21.702000px;}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.lsb{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000017px;}
.ls41{letter-spacing:0.000419px;}
.ls15{letter-spacing:0.000435px;}
.ls32{letter-spacing:0.000568px;}
.ls3d{letter-spacing:0.000676px;}
.ls23{letter-spacing:0.000800px;}
.ls22{letter-spacing:0.001036px;}
.ls24{letter-spacing:0.001155px;}
.ls36{letter-spacing:0.001301px;}
.ls37{letter-spacing:0.001449px;}
.ls3f{letter-spacing:0.001484px;}
.ls53{letter-spacing:0.001502px;}
.ls25{letter-spacing:0.001584px;}
.ls2c{letter-spacing:0.002544px;}
.ls42{letter-spacing:0.002697px;}
.ls1{letter-spacing:0.002725px;}
.ls44{letter-spacing:0.002773px;}
.ls2b{letter-spacing:0.002841px;}
.ls1c{letter-spacing:0.002852px;}
.ls2e{letter-spacing:0.003090px;}
.ls31{letter-spacing:0.003179px;}
.ls34{letter-spacing:0.003646px;}
.ls43{letter-spacing:0.003940px;}
.ls7{letter-spacing:0.004200px;}
.ls12{letter-spacing:0.004523px;}
.ls10{letter-spacing:0.004737px;}
.ls35{letter-spacing:0.004800px;}
.ls2{letter-spacing:2.989200px;}
.ls5{letter-spacing:2.998354px;}
.ls1b{letter-spacing:4.286815px;}
.ls0{letter-spacing:10.455300px;}
.ls4b{letter-spacing:11.732033px;}
.lsa{letter-spacing:11.954850px;}
.ls20{letter-spacing:12.024406px;}
.ls46{letter-spacing:12.313690px;}
.ls40{letter-spacing:12.381012px;}
.ls1f{letter-spacing:12.596959px;}
.ls39{letter-spacing:13.226235px;}
.ls48{letter-spacing:13.248028px;}
.ls2d{letter-spacing:13.261598px;}
.ls4e{letter-spacing:13.293257px;}
.ls4a{letter-spacing:13.314579px;}
.ls1a{letter-spacing:13.443754px;}
.ls2a{letter-spacing:13.446318px;}
.ls1e{letter-spacing:13.448400px;}
.ls19{letter-spacing:13.449754px;}
.ls21{letter-spacing:13.454400px;}
.ls4f{letter-spacing:13.475624px;}
.ls2f{letter-spacing:13.514183px;}
.ls49{letter-spacing:13.580703px;}
.ls47{letter-spacing:13.626871px;}
.ls26{letter-spacing:13.629508px;}
.ls33{letter-spacing:13.650908px;}
.ls52{letter-spacing:13.653639px;}
.ls4c{letter-spacing:13.697040px;}
.ls50{letter-spacing:13.721829px;}
.ls30{letter-spacing:14.473929px;}
.ls11{letter-spacing:14.846728px;}
.lsf{letter-spacing:14.882966px;}
.ls4d{letter-spacing:14.885694px;}
.lse{letter-spacing:14.937767px;}
.ls3{letter-spacing:14.944200px;}
.ls3a{letter-spacing:15.244518px;}
.ls38{letter-spacing:15.673929px;}
.ls17{letter-spacing:15.776906px;}
.ls18{letter-spacing:15.879629px;}
.ls16{letter-spacing:16.056100px;}
.ls45{letter-spacing:16.303341px;}
.ls3e{letter-spacing:16.338635px;}
.ls1d{letter-spacing:16.609983px;}
.ls3b{letter-spacing:16.676400px;}
.ls3c{letter-spacing:16.847971px;}
.ls29{letter-spacing:17.468047px;}
.ls51{letter-spacing:17.738635px;}
.ls14{letter-spacing:17.747494px;}
.ls13{letter-spacing:18.526688px;}
.ls28{letter-spacing:19.868047px;}
.lsc{letter-spacing:20.085512px;}
.lsd{letter-spacing:20.091394px;}
.ls27{letter-spacing:20.397459px;}
.ls4{letter-spacing:57.415200px;}
.ls8{letter-spacing:62.761200px;}
.ls9{letter-spacing:64.321654px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-14.943900px;}
.ws15{word-spacing:-14.355754px;}
.wsef{word-spacing:-13.449600px;}
.ws2c{word-spacing:-11.955150px;}
.ws2{word-spacing:-10.460700px;}
.wsde{word-spacing:-4.244068px;}
.wsb4{word-spacing:-3.227882px;}
.wsb3{word-spacing:-3.168107px;}
.ws72{word-spacing:-3.048556px;}
.wsdf{word-spacing:-2.809453px;}
.ws7b{word-spacing:-2.749678px;}
.wse5{word-spacing:-2.630126px;}
.wsdb{word-spacing:-2.331248px;}
.ws74{word-spacing:-2.271473px;}
.ws164{word-spacing:-2.205734px;}
.ws2d{word-spacing:-2.151922px;}
.ws8d{word-spacing:-2.032370px;}
.ws120{word-spacing:-1.882944px;}
.ws2f{word-spacing:-1.793268px;}
.ws3f{word-spacing:-1.733492px;}
.ws137{word-spacing:-1.721549px;}
.wsb5{word-spacing:-1.690223px;}
.wsa0{word-spacing:-1.673717px;}
.ws85{word-spacing:-1.667750px;}
.ws79{word-spacing:-1.613941px;}
.ws87{word-spacing:-1.560154px;}
.wsa2{word-spacing:-1.554166px;}
.ws86{word-spacing:-1.506355px;}
.wsa3{word-spacing:-1.494390px;}
.wsb9{word-spacing:-1.456917px;}
.wsf7{word-spacing:-1.452557px;}
.wsb8{word-spacing:-1.452154px;}
.wsb6{word-spacing:-1.434614px;}
.ws142{word-spacing:-1.398758px;}
.wsd9{word-spacing:-1.374839px;}
.ws136{word-spacing:-1.344960px;}
.wse7{word-spacing:-1.315063px;}
.ws7c{word-spacing:-1.255288px;}
.ws15e{word-spacing:-1.237363px;}
.wsa1{word-spacing:-1.195512px;}
.ws3{word-spacing:-1.171598px;}
.wsb7{word-spacing:-1.152649px;}
.ws3e{word-spacing:-1.135736px;}
.ws11f{word-spacing:-1.075968px;}
.wsca{word-spacing:-1.075961px;}
.ws5{word-spacing:-1.046070px;}
.ws158{word-spacing:-1.022170px;}
.ws159{word-spacing:-0.968371px;}
.ws7d{word-spacing:-0.956410px;}
.wsbf{word-spacing:-0.896634px;}
.wsf5{word-spacing:-0.860774px;}
.wsc9{word-spacing:-0.836858px;}
.ws11e{word-spacing:-0.806976px;}
.wsc8{word-spacing:-0.777083px;}
.wsc3{word-spacing:-0.693407px;}
.wsab{word-spacing:-0.657532px;}
.ws52{word-spacing:-0.597756px;}
.wsfa{word-spacing:-0.591782px;}
.ws152{word-spacing:-0.537984px;}
.wsa4{word-spacing:-0.537980px;}
.wsf9{word-spacing:-0.430387px;}
.wsd6{word-spacing:-0.418429px;}
.ws34{word-spacing:-0.358654px;}
.ws15b{word-spacing:-0.322790px;}
.ws2e{word-spacing:-0.298878px;}
.ws81{word-spacing:-0.271140px;}
.ws96{word-spacing:-0.268992px;}
.ws2a{word-spacing:-0.239102px;}
.wseb{word-spacing:-0.215194px;}
.ws25{word-spacing:-0.179327px;}
.ws10c{word-spacing:-0.161395px;}
.ws24{word-spacing:-0.119551px;}
.ws46{word-spacing:-0.116075px;}
.ws45{word-spacing:-0.112987px;}
.ws6e{word-spacing:-0.107597px;}
.wsd5{word-spacing:-0.102093px;}
.ws5c{word-spacing:-0.077101px;}
.ws43{word-spacing:-0.060409px;}
.ws42{word-spacing:-0.060042px;}
.wsf{word-spacing:-0.059776px;}
.ws41{word-spacing:-0.056537px;}
.ws6c{word-spacing:-0.053798px;}
.ws5b{word-spacing:-0.039450px;}
.ws4f{word-spacing:-0.031012px;}
.ws54{word-spacing:-0.029961px;}
.ws55{word-spacing:-0.028453px;}
.ws53{word-spacing:-0.023717px;}
.ws108{word-spacing:-0.012307px;}
.ws157{word-spacing:-0.011837px;}
.ws155{word-spacing:-0.010301px;}
.ws16f{word-spacing:-0.009571px;}
.ws144{word-spacing:-0.008813px;}
.ws12f{word-spacing:-0.008554px;}
.ws1c{word-spacing:-0.007611px;}
.ws124{word-spacing:-0.006979px;}
.ws174{word-spacing:-0.005770px;}
.ws143{word-spacing:-0.004867px;}
.ws15c{word-spacing:-0.004858px;}
.ws128{word-spacing:-0.004733px;}
.ws11c{word-spacing:-0.004282px;}
.ws11{word-spacing:-0.003799px;}
.ws177{word-spacing:-0.003466px;}
.ws1a{word-spacing:-0.003048px;}
.ws172{word-spacing:-0.002822px;}
.ws1b{word-spacing:-0.002708px;}
.wsd{word-spacing:-0.002392px;}
.ws100{word-spacing:-0.002371px;}
.ws161{word-spacing:-0.002304px;}
.wsf4{word-spacing:-0.000806px;}
.ws10f{word-spacing:-0.000749px;}
.ws148{word-spacing:-0.000557px;}
.ws13{word-spacing:-0.000250px;}
.ws1{word-spacing:0.000000px;}
.ws135{word-spacing:0.000230px;}
.wsf0{word-spacing:0.001661px;}
.ws11d{word-spacing:0.002755px;}
.ws6b{word-spacing:0.003122px;}
.ws10{word-spacing:0.003608px;}
.ws6a{word-spacing:0.047156px;}
.ws69{word-spacing:0.049362px;}
.wsea{word-spacing:0.053798px;}
.ws47{word-spacing:0.059776px;}
.ws7f{word-spacing:0.066440px;}
.ws6d{word-spacing:0.107597px;}
.ws38{word-spacing:0.119551px;}
.ws1d{word-spacing:0.161395px;}
.ws35{word-spacing:0.179327px;}
.ws44{word-spacing:0.183961px;}
.ws19{word-spacing:0.215194px;}
.ws22{word-spacing:0.239102px;}
.ws80{word-spacing:0.264271px;}
.ws56{word-spacing:0.266149px;}
.ws1e{word-spacing:0.268992px;}
.ws48{word-spacing:0.298878px;}
.ws110{word-spacing:0.322790px;}
.ws39{word-spacing:0.358654px;}
.ws129{word-spacing:0.430387px;}
.wscf{word-spacing:0.478205px;}
.ws12a{word-spacing:0.484186px;}
.ws37{word-spacing:0.537980px;}
.ws84{word-spacing:0.591782px;}
.ws70{word-spacing:0.597756px;}
.ws10e{word-spacing:0.645581px;}
.ws65{word-spacing:0.657532px;}
.ws66{word-spacing:0.686848px;}
.ws63{word-spacing:0.687658px;}
.ws64{word-spacing:0.691303px;}
.ws67{word-spacing:0.692730px;}
.ws150{word-spacing:0.699379px;}
.ws62{word-spacing:0.717307px;}
.ws111{word-spacing:0.753178px;}
.ws8e{word-spacing:0.777083px;}
.ws5d{word-spacing:0.808943px;}
.ws61{word-spacing:0.827859px;}
.ws5f{word-spacing:0.829712px;}
.ws60{word-spacing:0.832480px;}
.ws5e{word-spacing:0.836858px;}
.ws101{word-spacing:0.860774px;}
.ws82{word-spacing:0.896634px;}
.ws68{word-spacing:0.915796px;}
.ws93{word-spacing:0.956410px;}
.ws4{word-spacing:1.004227px;}
.ws113{word-spacing:1.022170px;}
.ws2b{word-spacing:1.075961px;}
.ws169{word-spacing:1.075968px;}
.ws9b{word-spacing:1.129766px;}
.wse3{word-spacing:1.135736px;}
.ws109{word-spacing:1.183565px;}
.ws71{word-spacing:1.195512px;}
.ws97{word-spacing:1.291162px;}
.ws26{word-spacing:1.315063px;}
.ws6f{word-spacing:1.374839px;}
.ws130{word-spacing:1.398758px;}
.ws95{word-spacing:1.434614px;}
.ws10a{word-spacing:1.452557px;}
.wsc4{word-spacing:1.464906px;}
.wsc6{word-spacing:1.466542px;}
.wsc5{word-spacing:1.469168px;}
.wsaa{word-spacing:1.494390px;}
.ws149{word-spacing:1.506355px;}
.wsb1{word-spacing:1.554166px;}
.ws88{word-spacing:1.613941px;}
.ws98{word-spacing:1.613952px;}
.wsaf{word-spacing:1.673717px;}
.ws12c{word-spacing:1.721549px;}
.wsda{word-spacing:1.733492px;}
.ws132{word-spacing:1.775347px;}
.wsa5{word-spacing:1.793268px;}
.wsa6{word-spacing:1.812575px;}
.wsed{word-spacing:1.829146px;}
.ws57{word-spacing:1.853044px;}
.ws14a{word-spacing:1.882944px;}
.ws29{word-spacing:1.912819px;}
.wsa9{word-spacing:1.972595px;}
.ws78{word-spacing:2.032370px;}
.ws165{word-spacing:2.044339px;}
.ws4e{word-spacing:2.092146px;}
.ws3b{word-spacing:2.151922px;}
.ws171{word-spacing:2.151936px;}
.ws147{word-spacing:2.205734px;}
.ws36{word-spacing:2.211697px;}
.ws13f{word-spacing:2.259533px;}
.ws9c{word-spacing:2.271473px;}
.ws121{word-spacing:2.313331px;}
.wsa7{word-spacing:2.331248px;}
.wsf6{word-spacing:2.420928px;}
.ws18{word-spacing:2.474726px;}
.wse8{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws14e{word-spacing:2.528525px;}
.ws17{word-spacing:2.582323px;}
.ws33{word-spacing:2.630126px;}
.wsd4{word-spacing:2.689902px;}
.ws5a{word-spacing:2.747801px;}
.ws58{word-spacing:2.749678px;}
.ws59{word-spacing:2.751628px;}
.ws75{word-spacing:2.800375px;}
.ws50{word-spacing:2.808950px;}
.ws51{word-spacing:2.809453px;}
.wsd8{word-spacing:2.869229px;}
.ws16{word-spacing:2.869236px;}
.ws146{word-spacing:2.905114px;}
.wsb2{word-spacing:2.929004px;}
.ws9f{word-spacing:2.988780px;}
.wsf8{word-spacing:3.012710px;}
.wsbc{word-spacing:3.048556px;}
.ws16b{word-spacing:3.066509px;}
.ws89{word-spacing:3.108331px;}
.ws14c{word-spacing:3.120307px;}
.ws9e{word-spacing:3.168107px;}
.ws9a{word-spacing:3.174106px;}
.ws160{word-spacing:3.217997px;}
.ws166{word-spacing:3.218419px;}
.ws11a{word-spacing:3.219264px;}
.ws13c{word-spacing:3.219523px;}
.ws20{word-spacing:3.219667px;}
.ws138{word-spacing:3.220118px;}
.ws13b{word-spacing:3.220541px;}
.ws173{word-spacing:3.221002px;}
.ws122{word-spacing:3.221117px;}
.ws105{word-spacing:3.221155px;}
.ws126{word-spacing:3.221414px;}
.ws103{word-spacing:3.221443px;}
.ws12d{word-spacing:3.221453px;}
.ws106{word-spacing:3.221578px;}
.ws14b{word-spacing:3.222653px;}
.ws15d{word-spacing:3.222672px;}
.ws15a{word-spacing:3.222778px;}
.ws133{word-spacing:3.222941px;}
.ws156{word-spacing:3.222979px;}
.ws139{word-spacing:3.223267px;}
.ws13a{word-spacing:3.223594px;}
.ws102{word-spacing:3.223622px;}
.ws12b{word-spacing:3.223968px;}
.ws15f{word-spacing:3.223987px;}
.ws116{word-spacing:3.224112px;}
.ws107{word-spacing:3.224861px;}
.ws153{word-spacing:3.224890px;}
.ws167{word-spacing:3.224947px;}
.ws10b{word-spacing:3.225053px;}
.ws14f{word-spacing:3.225533px;}
.ws13e{word-spacing:3.225562px;}
.ws104{word-spacing:3.225571px;}
.ws118{word-spacing:3.225984px;}
.ws123{word-spacing:3.226637px;}
.ws14d{word-spacing:3.227088px;}
.ws154{word-spacing:3.227453px;}
.wsd7{word-spacing:3.227882px;}
.wsf2{word-spacing:3.227904px;}
.wsf3{word-spacing:3.227933px;}
.wsee{word-spacing:3.228451px;}
.ws90{word-spacing:3.287658px;}
.ws134{word-spacing:3.335501px;}
.ws94{word-spacing:3.347434px;}
.ws10d{word-spacing:3.389299px;}
.wsbb{word-spacing:3.407209px;}
.wse4{word-spacing:3.466985px;}
.ws168{word-spacing:3.496896px;}
.wsa8{word-spacing:3.526760px;}
.ws76{word-spacing:3.586536px;}
.ws16e{word-spacing:3.604493px;}
.wsdc{word-spacing:3.646312px;}
.ws125{word-spacing:3.658291px;}
.ws175{word-spacing:3.692545px;}
.ws77{word-spacing:3.706087px;}
.ws176{word-spacing:3.712090px;}
.wsae{word-spacing:3.765863px;}
.ws73{word-spacing:3.825638px;}
.ws117{word-spacing:3.873485px;}
.ws28{word-spacing:3.885414px;}
.ws145{word-spacing:3.927283px;}
.ws8c{word-spacing:3.945190px;}
.ws1f{word-spacing:3.981082px;}
.ws3a{word-spacing:4.064741px;}
.ws3d{word-spacing:4.068684px;}
.wsdd{word-spacing:4.244068px;}
.ws16d{word-spacing:4.303872px;}
.ws8a{word-spacing:4.423394px;}
.wscc{word-spacing:4.483170px;}
.ws9d{word-spacing:4.542946px;}
.wsec{word-spacing:4.572864px;}
.wsce{word-spacing:4.662497px;}
.ws30{word-spacing:4.722272px;}
.ws12e{word-spacing:4.734259px;}
.wsb{word-spacing:4.770079px;}
.ws31{word-spacing:4.782048px;}
.ws141{word-spacing:4.788058px;}
.wsad{word-spacing:4.841824px;}
.wsc{word-spacing:4.853765px;}
.ws23{word-spacing:4.901599px;}
.wsfe{word-spacing:5.110848px;}
.ws40{word-spacing:5.140702px;}
.wsc0{word-spacing:5.200477px;}
.wsb0{word-spacing:5.260253px;}
.wsd3{word-spacing:5.320028px;}
.ws92{word-spacing:5.439580px;}
.wsfb{word-spacing:5.487437px;}
.ws13d{word-spacing:5.541235px;}
.ws27{word-spacing:5.559131px;}
.wsac{word-spacing:5.618906px;}
.ws7a{word-spacing:5.678682px;}
.ws99{word-spacing:5.702630px;}
.wsc2{word-spacing:5.738458px;}
.wscd{word-spacing:5.798233px;}
.ws151{word-spacing:5.810227px;}
.wsd0{word-spacing:5.917784px;}
.wsff{word-spacing:5.917824px;}
.ws170{word-spacing:5.971622px;}
.ws112{word-spacing:6.025421px;}
.wsf1{word-spacing:6.133018px;}
.ws32{word-spacing:6.156887px;}
.wsbd{word-spacing:6.216662px;}
.ws8b{word-spacing:6.276438px;}
.ws8f{word-spacing:6.336214px;}
.wsd1{word-spacing:6.455765px;}
.ws91{word-spacing:6.635092px;}
.ws3c{word-spacing:6.814418px;}
.wse6{word-spacing:6.874194px;}
.wsfc{word-spacing:6.939994px;}
.ws16a{word-spacing:6.985933px;}
.wsd2{word-spacing:6.993745px;}
.ws119{word-spacing:7.101389px;}
.wscb{word-spacing:7.173072px;}
.ws83{word-spacing:7.232848px;}
.ws21{word-spacing:7.292623px;}
.wsba{word-spacing:7.352399px;}
.ws11b{word-spacing:7.424179px;}
.ws49{word-spacing:7.711052px;}
.ws4c{word-spacing:7.734244px;}
.ws4d{word-spacing:7.738362px;}
.ws4b{word-spacing:7.770828px;}
.ws9{word-spacing:7.782761px;}
.ws131{word-spacing:7.854566px;}
.wsc1{word-spacing:7.890379px;}
.ws4a{word-spacing:8.029824px;}
.wse0{word-spacing:8.069706px;}
.wse9{word-spacing:8.129482px;}
.wsbe{word-spacing:8.249033px;}
.ws178{word-spacing:9.253325px;}
.ws162{word-spacing:9.576115px;}
.wsc7{word-spacing:9.982525px;}
.wse1{word-spacing:10.102076px;}
.ws140{word-spacing:10.490688px;}
.wsfd{word-spacing:11.028672px;}
.ws163{word-spacing:12.050842px;}
.ws7{word-spacing:12.176255px;}
.ws115{word-spacing:13.718592px;}
.ws16c{word-spacing:13.826189px;}
.ws8{word-spacing:16.109478px;}
.ws114{word-spacing:16.193318px;}
.wsa{word-spacing:26.109907px;}
.ws6{word-spacing:26.840252px;}
.wse2{word-spacing:34.430746px;}
.ws12{word-spacing:40.042186px;}
.ws7e{word-spacing:43.337310px;}
.ws127{word-spacing:48.418560px;}
.ws14{word-spacing:54.988186px;}
._7{margin-left:-35.544868px;}
._19{margin-left:-8.345520px;}
._c{margin-left:-6.886195px;}
._0{margin-left:-5.397721px;}
._8{margin-left:-4.309861px;}
._9{margin-left:-2.857223px;}
._1{margin-left:-1.506341px;}
._1d{width:1.016130px;}
._4{width:2.301354px;}
._5{width:11.582422px;}
._2{width:12.972553px;}
._a{width:14.902157px;}
._d{width:16.731302px;}
._e{width:17.920775px;}
._10{width:19.331471px;}
._13{width:20.981236px;}
._17{width:22.099211px;}
._1a{width:23.324435px;}
._b{width:24.370675px;}
._3{width:25.945558px;}
._16{width:27.130755px;}
._25{width:28.902537px;}
._6{width:30.587087px;}
._15{width:31.752794px;}
._14{width:33.235234px;}
._1c{width:34.849175px;}
._f{width:35.925136px;}
._1b{width:38.387886px;}
._1f{width:41.125613px;}
._20{width:42.751505px;}
._23{width:44.222285px;}
._24{width:58.051260px;}
._22{width:61.868160px;}
._18{width:69.650525px;}
._21{width:88.767360px;}
._11{width:873.581929px;}
._1e{width:2378.840968px;}
._12{width:2402.750968px;}
.fc5{color:rgb(8,117,183);}
.fc4{color:rgb(53,30,58);}
.fc3{color:rgb(90,40,100);}
.fc2{color:rgb(14,15,14);}
.fc1{color:rgb(72,62,33);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs6{font-size:45.429600px;}
.fsb{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs1{font-size:52.914960px;}
.fs9{font-size:53.798400px;}
.fs2{font-size:56.694600px;}
.fs4{font-size:59.775600px;}
.fsa{font-size:62.286600px;}
.fs3{font-size:68.033520px;}
.fs5{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y1f{bottom:9.473101px;}
.y1e{bottom:28.937869px;}
.y4b{bottom:31.890000px;}
.y1d{bottom:32.769195px;}
.ya3{bottom:91.665000px;}
.y18b{bottom:93.385500px;}
.y15a{bottom:102.261000px;}
.y81{bottom:102.709500px;}
.y1b{bottom:104.646000px;}
.y10c{bottom:106.183500px;}
.y16b{bottom:106.744500px;}
.yce{bottom:107.193000px;}
.y137{bottom:107.641500px;}
.ya2{bottom:110.494500px;}
.y18a{bottom:110.959500px;}
.y1c0{bottom:115.263000px;}
.y159{bottom:121.090500px;}
.y80{bottom:121.539000px;}
.y1f6{bottom:121.762500px;}
.y1a{bottom:122.535000px;}
.y144{bottom:124.228500px;}
.y10b{bottom:125.013000px;}
.y16a{bottom:125.574000px;}
.ycd{bottom:126.022500px;}
.y136{bottom:126.471000px;}
.y189{bottom:128.533500px;}
.ya1{bottom:129.324000px;}
.y1bf{bottom:132.523500px;}
.y1f5{bottom:139.023000px;}
.y158{bottom:139.920000px;}
.y7f{bottom:140.368500px;}
.y19{bottom:140.422500px;}
.y4a{bottom:142.702500px;}
.y143{bottom:143.058000px;}
.y10a{bottom:143.842500px;}
.y169{bottom:144.403500px;}
.ycb{bottom:144.852000px;}
.y135{bottom:145.300500px;}
.y188{bottom:146.107500px;}
.ya0{bottom:148.153500px;}
.y1be{bottom:149.784000px;}
.ycc{bottom:150.276000px;}
.y1f4{bottom:156.283500px;}
.y18{bottom:158.310000px;}
.y157{bottom:158.749500px;}
.y7e{bottom:159.198000px;}
.y49{bottom:161.532000px;}
.y109{bottom:162.672000px;}
.y168{bottom:163.233000px;}
.yca{bottom:163.681500px;}
.y134{bottom:164.130000px;}
.y142{bottom:166.371000px;}
.y9f{bottom:166.983000px;}
.y1bd{bottom:167.044500px;}
.y1f3{bottom:173.544000px;}
.y17{bottom:176.199000px;}
.y156{bottom:177.579000px;}
.y7d{bottom:178.027500px;}
.y48{bottom:180.361500px;}
.y108{bottom:181.501500px;}
.y187{bottom:181.614000px;}
.y167{bottom:182.062500px;}
.yc9{bottom:182.511000px;}
.y133{bottom:182.959500px;}
.y1bc{bottom:184.303500px;}
.y9e{bottom:185.812500px;}
.y141{bottom:186.546000px;}
.y1f2{bottom:190.804500px;}
.y16{bottom:194.086500px;}
.y155{bottom:196.408500px;}
.y7c{bottom:196.857000px;}
.y47{bottom:199.191000px;}
.y107{bottom:200.331000px;}
.y186{bottom:200.443500px;}
.y166{bottom:200.892000px;}
.yc7{bottom:201.340500px;}
.y1bb{bottom:201.564000px;}
.y132{bottom:201.789000px;}
.y9d{bottom:204.642000px;}
.yc8{bottom:206.764500px;}
.y1f1{bottom:208.065000px;}
.y15{bottom:211.974000px;}
.y154{bottom:215.238000px;}
.y7b{bottom:215.686500px;}
.y46{bottom:218.020500px;}
.y1ba{bottom:218.824500px;}
.y185{bottom:219.273000px;}
.y165{bottom:219.721500px;}
.yc6{bottom:220.170000px;}
.y131{bottom:220.618500px;}
.y9c{bottom:223.471500px;}
.y106{bottom:223.642500px;}
.y1f0{bottom:225.325500px;}
.y14{bottom:229.863000px;}
.y153{bottom:234.067500px;}
.y7a{bottom:234.516000px;}
.y1b9{bottom:236.085000px;}
.y45{bottom:236.850000px;}
.y184{bottom:238.102500px;}
.y164{bottom:238.551000px;}
.yc5{bottom:238.999500px;}
.y130{bottom:239.446500px;}
.y9b{bottom:242.301000px;}
.y1ef{bottom:242.586000px;}
.y152{bottom:252.897000px;}
.y79{bottom:253.345500px;}
.y44{bottom:255.679500px;}
.y183{bottom:256.932000px;}
.y105{bottom:257.266500px;}
.y163{bottom:257.380500px;}
.yc4{bottom:257.829000px;}
.y12f{bottom:258.276000px;}
.y1ee{bottom:259.846500px;}
.yec{bottom:261.130500px;}
.y9a{bottom:265.614000px;}
.y1b8{bottom:270.606000px;}
.y151{bottom:271.726500px;}
.y78{bottom:272.175000px;}
.y43{bottom:274.507500px;}
.y182{bottom:275.761500px;}
.y104{bottom:276.096000px;}
.y162{bottom:276.210000px;}
.yc3{bottom:276.658500px;}
.y12e{bottom:277.105500px;}
.yeb{bottom:279.960000px;}
.y1b7{bottom:287.866500px;}
.y77{bottom:291.004500px;}
.y42{bottom:293.337000px;}
.y1ed{bottom:294.366000px;}
.y181{bottom:294.591000px;}
.y103{bottom:294.925500px;}
.y150{bottom:295.039500px;}
.yc2{bottom:295.488000px;}
.y12d{bottom:295.935000px;}
.yea{bottom:298.789500px;}
.y99{bottom:299.238000px;}
.y13{bottom:300.154500px;}
.y1b6{bottom:305.127000px;}
.y76{bottom:309.834000px;}
.y161{bottom:311.139000px;}
.y1ec{bottom:311.626500px;}
.y41{bottom:312.166500px;}
.y180{bottom:313.420500px;}
.y102{bottom:313.755000px;}
.y160{bottom:313.869000px;}
.yc1{bottom:314.317500px;}
.y12c{bottom:314.764500px;}
.ye9{bottom:317.619000px;}
.y12{bottom:318.043500px;}
.y98{bottom:318.067500px;}
.y1b5{bottom:322.386000px;}
.y75{bottom:328.663500px;}
.y1eb{bottom:328.887000px;}
.y40{bottom:330.996000px;}
.y17f{bottom:332.250000px;}
.y101{bottom:332.584500px;}
.y15f{bottom:332.698500px;}
.yc0{bottom:333.145500px;}
.y12b{bottom:333.594000px;}
.y11{bottom:335.931000px;}
.ye8{bottom:336.448500px;}
.y97{bottom:336.897000px;}
.y1b4{bottom:339.646500px;}
.y1ea{bottom:346.147500px;}
.y74{bottom:347.493000px;}
.y3f{bottom:349.825500px;}
.y17e{bottom:351.079500px;}
.y100{bottom:351.414000px;}
.y15e{bottom:351.528000px;}
.ybf{bottom:351.975000px;}
.y12a{bottom:352.423500px;}
.y10{bottom:353.818500px;}
.ye7{bottom:355.278000px;}
.y96{bottom:355.726500px;}
.y1b3{bottom:356.907000px;}
.y1e9{bottom:363.408000px;}
.y73{bottom:366.322500px;}
.y3e{bottom:368.655000px;}
.y17d{bottom:369.909000px;}
.yff{bottom:370.243500px;}
.y15d{bottom:370.357500px;}
.ybe{bottom:370.804500px;}
.y129{bottom:371.253000px;}
.ye6{bottom:374.107500px;}
.y1b2{bottom:374.167500px;}
.y95{bottom:374.556000px;}
.y1e8{bottom:380.668500px;}
.yf{bottom:380.673000px;}
.y72{bottom:385.152000px;}
.y3d{bottom:387.484500px;}
.y17c{bottom:388.738500px;}
.yfe{bottom:389.073000px;}
.y15c{bottom:389.187000px;}
.ybd{bottom:389.634000px;}
.y128{bottom:390.082500px;}
.y1b1{bottom:391.428000px;}
.ye5{bottom:392.937000px;}
.y94{bottom:393.385500px;}
.y1e7{bottom:397.929000px;}
.ye{bottom:398.562000px;}
.y71{bottom:403.981500px;}
.yfd{bottom:407.902500px;}
.ybc{bottom:408.463500px;}
.y1b0{bottom:408.688500px;}
.y127{bottom:408.912000px;}
.y3c{bottom:410.797500px;}
.ye4{bottom:411.766500px;}
.y17b{bottom:412.050000px;}
.y93{bottom:412.215000px;}
.y15b{bottom:412.498500px;}
.y1e6{bottom:415.188000px;}
.yd{bottom:416.449500px;}
.y14f{bottom:422.811000px;}
.y1af{bottom:425.949000px;}
.yfc{bottom:426.732000px;}
.y70{bottom:427.293000px;}
.y126{bottom:427.741500px;}
.ye3{bottom:430.596000px;}
.y3b{bottom:430.972500px;}
.y92{bottom:431.044500px;}
.y1e5{bottom:432.448500px;}
.y14e{bottom:441.639000px;}
.y1ae{bottom:443.209500px;}
.yc{bottom:444.798000px;}
.yfb{bottom:445.561500px;}
.y17a{bottom:445.674000px;}
.ybb{bottom:446.122500px;}
.y125{bottom:446.571000px;}
.ye2{bottom:449.425500px;}
.y1e4{bottom:449.709000px;}
.y91{bottom:449.874000px;}
.y14d{bottom:460.468500px;}
.y1ad{bottom:460.470000px;}
.y6f{bottom:460.917000px;}
.yb{bottom:462.685500px;}
.yfa{bottom:464.391000px;}
.y179{bottom:464.503500px;}
.yba{bottom:464.952000px;}
.y124{bottom:465.400500px;}
.y1e3{bottom:466.969500px;}
.ye1{bottom:468.255000px;}
.y90{bottom:468.702000px;}
.y1ac{bottom:477.729000px;}
.y14c{bottom:479.298000px;}
.y6e{bottom:479.746500px;}
.yf9{bottom:483.220500px;}
.y178{bottom:483.333000px;}
.yb9{bottom:483.781500px;}
.y123{bottom:484.230000px;}
.ye0{bottom:487.084500px;}
.y8f{bottom:487.531500px;}
.ya{bottom:489.540000px;}
.y1ab{bottom:494.989500px;}
.y14b{bottom:498.127500px;}
.y6d{bottom:498.576000px;}
.y1e2{bottom:501.490500px;}
.yf8{bottom:502.050000px;}
.y177{bottom:502.162500px;}
.yb8{bottom:502.611000px;}
.y122{bottom:503.059500px;}
.ydf{bottom:505.914000px;}
.y3a{bottom:506.122500px;}
.y9{bottom:507.429000px;}
.y1aa{bottom:512.250000px;}
.y14a{bottom:516.957000px;}
.y6c{bottom:517.405500px;}
.y1e1{bottom:518.751000px;}
.y8e{bottom:518.796000px;}
.yf7{bottom:520.879500px;}
.y176{bottom:520.992000px;}
.yb7{bottom:521.440500px;}
.y121{bottom:521.889000px;}
.yde{bottom:524.743500px;}
.y8{bottom:525.316500px;}
.y1a9{bottom:529.510500px;}
.y149{bottom:535.786500px;}
.y1e0{bottom:536.011500px;}
.y6b{bottom:536.235000px;}
.y8d{bottom:538.029000px;}
.yf6{bottom:539.709000px;}
.y175{bottom:539.821500px;}
.yb6{bottom:540.270000px;}
.y120{bottom:540.718500px;}
.y7{bottom:543.204000px;}
.y39{bottom:543.511500px;}
.ydd{bottom:543.573000px;}
.y1a8{bottom:546.771000px;}
.y1df{bottom:553.272000px;}
.y148{bottom:554.616000px;}
.y6a{bottom:555.064500px;}
.y8c{bottom:557.262000px;}
.y174{bottom:558.651000px;}
.yb5{bottom:559.099500px;}
.y11f{bottom:559.548000px;}
.y6{bottom:561.093000px;}
.ydc{bottom:562.401000px;}
.y38{bottom:562.969500px;}
.y1a7{bottom:564.031500px;}
.y1de{bottom:570.531000px;}
.yf5{bottom:573.274500px;}
.y147{bottom:573.445500px;}
.y69{bottom:573.894000px;}
.y173{bottom:577.480500px;}
.yb4{bottom:577.929000px;}
.y11e{bottom:578.377500px;}
.y5{bottom:578.980500px;}
.ydb{bottom:581.230500px;}
.y1a6{bottom:581.292000px;}
.y37{bottom:582.426000px;}
.y1dd{bottom:587.791500px;}
.y146{bottom:592.275000px;}
.yf4{bottom:592.507500px;}
.y68{bottom:592.723500px;}
.y172{bottom:596.310000px;}
.yb3{bottom:596.758500px;}
.y4{bottom:596.868000px;}
.y11d{bottom:597.207000px;}
.y1a5{bottom:598.552500px;}
.yda{bottom:600.060000px;}
.y36{bottom:601.882500px;}
.y1dc{bottom:605.052000px;}
.y145{bottom:611.104500px;}
.y67{bottom:611.553000px;}
.yf3{bottom:611.740500px;}
.y3{bottom:614.757000px;}
.y171{bottom:615.139500px;}
.yb2{bottom:615.588000px;}
.y1a4{bottom:615.811500px;}
.y11c{bottom:616.036500px;}
.yd9{bottom:618.889500px;}
.y35{bottom:621.340500px;}
.y1db{bottom:622.312500px;}
.y66{bottom:630.382500px;}
.yf2{bottom:630.973500px;}
.y2{bottom:632.644500px;}
.y1a3{bottom:633.072000px;}
.y170{bottom:633.969000px;}
.yb1{bottom:634.417500px;}
.y11b{bottom:634.866000px;}
.yd8{bottom:637.719000px;}
.y1da{bottom:639.573000px;}
.y34{bottom:640.797000px;}
.y65{bottom:649.212000px;}
.yf1{bottom:650.206500px;}
.y1a2{bottom:650.332500px;}
.y1{bottom:650.532000px;}
.y16f{bottom:652.798500px;}
.yb0{bottom:653.247000px;}
.y11a{bottom:653.695500px;}
.yd7{bottom:656.548500px;}
.y1d9{bottom:656.833500px;}
.y33{bottom:660.253500px;}
.y1a1{bottom:667.593000px;}
.y64{bottom:668.041500px;}
.yf0{bottom:669.438000px;}
.yaf{bottom:672.076500px;}
.y119{bottom:672.525000px;}
.y1d8{bottom:674.094000px;}
.yd6{bottom:675.378000px;}
.y16e{bottom:676.111500px;}
.y32{bottom:679.711500px;}
.y1a0{bottom:684.853500px;}
.y63{bottom:686.871000px;}
.yef{bottom:688.671000px;}
.yae{bottom:690.906000px;}
.y118{bottom:691.354500px;}
.yd5{bottom:694.207500px;}
.y31{bottom:699.168000px;}
.y19f{bottom:702.114000px;}
.y62{bottom:705.700500px;}
.yee{bottom:707.904000px;}
.y1d7{bottom:708.613500px;}
.yad{bottom:709.735500px;}
.y117{bottom:710.184000px;}
.yd4{bottom:713.037000px;}
.y30{bottom:718.626000px;}
.y19e{bottom:719.374500px;}
.y61{bottom:724.530000px;}
.y1d6{bottom:725.874000px;}
.yed{bottom:727.137000px;}
.yac{bottom:728.565000px;}
.y116{bottom:729.013500px;}
.yd3{bottom:736.350000px;}
.y19d{bottom:736.635000px;}
.y2f{bottom:738.082500px;}
.y1d5{bottom:743.134500px;}
.y60{bottom:743.359500px;}
.yab{bottom:747.394500px;}
.y115{bottom:747.843000px;}
.y1f7{bottom:748.017000px;}
.y19c{bottom:753.895500px;}
.y2e{bottom:757.539000px;}
.y1d4{bottom:760.395000px;}
.y5f{bottom:762.189000px;}
.yd2{bottom:765.352500px;}
.yaa{bottom:766.224000px;}
.y114{bottom:766.671000px;}
.y19b{bottom:771.154500px;}
.y2d{bottom:776.997000px;}
.y1d3{bottom:777.655500px;}
.y5e{bottom:781.018500px;}
.yd1{bottom:784.585500px;}
.ya9{bottom:785.053500px;}
.y113{bottom:785.500500px;}
.y19a{bottom:788.415000px;}
.y1d2{bottom:794.916000px;}
.y2c{bottom:796.453500px;}
.y5d{bottom:799.848000px;}
.yd0{bottom:803.818500px;}
.ya8{bottom:803.883000px;}
.y112{bottom:804.330000px;}
.y199{bottom:805.675500px;}
.y1d1{bottom:812.176500px;}
.y5c{bottom:818.677500px;}
.ya7{bottom:822.712500px;}
.y198{bottom:822.936000px;}
.ycf{bottom:823.050000px;}
.y111{bottom:823.159500px;}
.y1d0{bottom:829.437000px;}
.y2b{bottom:835.039500px;}
.y5b{bottom:837.507000px;}
.y197{bottom:840.196500px;}
.ya6{bottom:841.540500px;}
.y110{bottom:841.989000px;}
.y1cf{bottom:846.697500px;}
.y140{bottom:846.966000px;}
.y2a{bottom:855.519000px;}
.y5a{bottom:856.335000px;}
.y196{bottom:857.457000px;}
.y13e{bottom:857.641500px;}
.ya5{bottom:860.370000px;}
.y10f{bottom:860.818500px;}
.y1ce{bottom:863.956500px;}
.y13f{bottom:865.795500px;}
.y29{bottom:871.657500px;}
.y195{bottom:874.717500px;}
.y59{bottom:875.164500px;}
.y13d{bottom:879.199500px;}
.y10e{bottom:879.648000px;}
.y1cd{bottom:881.217000px;}
.y28{bottom:883.458000px;}
.ya4{bottom:883.683000px;}
.y194{bottom:891.978000px;}
.y58{bottom:893.994000px;}
.y13c{bottom:898.029000px;}
.y10d{bottom:898.477500px;}
.y27{bottom:899.596500px;}
.y193{bottom:909.237000px;}
.y57{bottom:912.823500px;}
.y26{bottom:915.736500px;}
.y1cc{bottom:915.738000px;}
.y13b{bottom:916.858500px;}
.y8b{bottom:917.307000px;}
.y192{bottom:926.497500px;}
.y56{bottom:931.653000px;}
.y1cb{bottom:932.998500px;}
.y13a{bottom:935.688000px;}
.y8a{bottom:936.136500px;}
.y25{bottom:936.216000px;}
.y191{bottom:948.241500px;}
.y1ca{bottom:950.259000px;}
.y55{bottom:950.482500px;}
.y139{bottom:954.517500px;}
.y89{bottom:954.966000px;}
.y1c9{bottom:967.519500px;}
.y54{bottom:969.312000px;}
.y16d{bottom:973.347000px;}
.y88{bottom:973.795500px;}
.y138{bottom:977.830500px;}
.y24{bottom:980.892000px;}
.y190{bottom:981.865500px;}
.y1c8{bottom:984.780000px;}
.y53{bottom:988.141500px;}
.y87{bottom:992.625000px;}
.y16c{bottom:996.660000px;}
.y23{bottom:999.721500px;}
.y1c6{bottom:1002.039000px;}
.y1c7{bottom:1002.040500px;}
.y52{bottom:1006.971000px;}
.y18f{bottom:1008.406500px;}
.y86{bottom:1011.454500px;}
.y1c5{bottom:1019.299500px;}
.y51{bottom:1025.800500px;}
.y85{bottom:1030.284000px;}
.y18e{bottom:1034.946000px;}
.y22{bottom:1036.485000px;}
.y1c4{bottom:1036.560000px;}
.y50{bottom:1044.630000px;}
.y84{bottom:1049.113500px;}
.y1c3{bottom:1053.820500px;}
.y18d{bottom:1061.487000px;}
.y4f{bottom:1063.459500px;}
.y21{bottom:1064.728500px;}
.y83{bottom:1067.943000px;}
.y1c2{bottom:1071.081000px;}
.y4e{bottom:1082.289000px;}
.y82{bottom:1086.772500px;}
.y18c{bottom:1088.028000px;}
.y1c1{bottom:1088.341500px;}
.y20{bottom:1092.972000px;}
.y4d{bottom:1105.602000px;}
.y1c{bottom:1136.460000px;}
.y4c{bottom:1168.366500px;}
.h17{height:21.017894px;}
.hb{height:26.110157px;}
.h16{height:27.655250px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h15{height:33.072749px;}
.hc{height:34.813397px;}
.h13{height:35.052500px;}
.h5{height:35.876343px;}
.h10{height:37.551283px;}
.hd{height:38.734848px;}
.he{height:39.165235px;}
.h6{height:39.402747px;}
.hf{height:39.434227px;}
.h14{height:41.723369px;}
.h11{height:43.038432px;}
.h12{height:43.516637px;}
.h8{height:43.815515px;}
.h7{height:46.126727px;}
.h4{height:50.931027px;}
.ha{height:54.411312px;}
.h9{height:77.469696px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:215.864690px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x3{left:60.027581px;}
.xdc{left:85.848000px;}
.x2{left:181.274369px;}
.xea{left:187.252500px;}
.xe0{left:203.199000px;}
.xe5{left:223.524000px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x5{left:269.544000px;}
.x7c{left:279.447000px;}
.xa{left:281.479500px;}
.xaa{left:283.503000px;}
.xd8{left:286.732500px;}
.x7d{left:288.540000px;}
.x8d{left:293.338500px;}
.x19{left:295.767000px;}
.xab{left:297.094500px;}
.xac{left:302.001000px;}
.xc8{left:304.875000px;}
.x38{left:306.804000px;}
.x3f{left:307.932000px;}
.x7{left:309.598500px;}
.xbf{left:313.036500px;}
.xad{left:316.945500px;}
.x94{left:318.304500px;}
.x8a{left:320.029500px;}
.xda{left:321.351000px;}
.x40{left:322.875000px;}
.x32{left:325.572000px;}
.xc9{left:326.619000px;}
.xcd{left:328.066500px;}
.xd3{left:330.063000px;}
.x95{left:333.247500px;}
.x8b{left:334.974000px;}
.x86{left:337.137000px;}
.x33{left:340.516500px;}
.xc6{left:341.577000px;}
.xb4{left:346.506000px;}
.xcf{left:348.096000px;}
.x51{left:356.155500px;}
.x1e{left:357.414000px;}
.x34{left:360.550500px;}
.xe6{left:361.981500px;}
.xb5{left:368.473500px;}
.xa5{left:370.666500px;}
.x1f{left:372.358500px;}
.x70{left:373.653000px;}
.x35{left:375.495000px;}
.x77{left:379.468500px;}
.xbd{left:382.447500px;}
.xd0{left:383.688000px;}
.x68{left:387.558000px;}
.x71{left:388.596000px;}
.xc3{left:390.055500px;}
.xc7{left:391.120500px;}
.x78{left:394.732500px;}
.x5b{left:397.240500px;}
.x58{left:400.696500px;}
.x69{left:402.501000px;}
.x5c{left:403.666500px;}
.xd1{left:406.104000px;}
.xbe{left:408.444000px;}
.xc4{left:411.799500px;}
.x9c{left:414.481500px;}
.x52{left:416.242500px;}
.x59{left:419.451000px;}
.x9d{left:422.454000px;}
.xcb{left:425.076000px;}
.x2a{left:426.849000px;}
.x64{left:429.544500px;}
.x53{left:431.187000px;}
.x82{left:433.338000px;}
.x5a{left:434.394000px;}
.x41{left:435.429000px;}
.x2b{left:441.793500px;}
.x65{left:444.487500px;}
.x2c{left:445.500000px;}
.x5e{left:446.511000px;}
.x66{left:448.209000px;}
.x42{left:450.372000px;}
.x89{left:451.828500px;}
.x39{left:453.724500px;}
.x8c{left:457.558500px;}
.x80{left:458.589000px;}
.x2d{left:460.443000px;}
.x5f{left:461.455500px;}
.x67{left:463.153500px;}
.x3a{left:465.927000px;}
.x2e{left:467.134500px;}
.x81{left:473.532000px;}
.x5d{left:475.728000px;}
.x1c{left:479.034000px;}
.x8e{left:480.930000px;}
.x2f{left:482.079000px;}
.xd7{left:484.410000px;}
.xa8{left:489.904500px;}
.x1d{left:493.977000px;}
.xbc{left:496.390500px;}
.x20{left:498.286500px;}
.x60{left:501.351000px;}
.x61{left:507.777000px;}
.xd{left:508.923000px;}
.xe{left:516.394500px;}
.x98{left:518.202000px;}
.x3b{left:529.918500px;}
.xdf{left:531.156000px;}
.x99{left:533.146500px;}
.x3c{left:538.774500px;}
.xd4{left:540.673500px;}
.x21{left:548.214000px;}
.x22{left:553.165500px;}
.xaf{left:555.285000px;}
.xb6{left:557.158500px;}
.xa1{left:563.577000px;}
.x23{left:568.108500px;}
.x26{left:569.197500px;}
.xd5{left:570.711000px;}
.xcc{left:576.450000px;}
.x3d{left:577.666500px;}
.x91{left:579.282000px;}
.x96{left:581.632500px;}
.x27{left:582.787500px;}
.xba{left:584.847000px;}
.xb8{left:588.483000px;}
.x8f{left:589.963500px;}
.x4d{left:591.019500px;}
.x3e{left:592.611000px;}
.x97{left:596.577000px;}
.x90{left:604.908000px;}
.x4e{left:605.962500px;}
.xbb{left:607.263000px;}
.x9e{left:609.036000px;}
.xb9{left:610.899000px;}
.x72{left:613.447500px;}
.x9f{left:615.603000px;}
.x45{left:619.716000px;}
.xc0{left:621.918000px;}
.x4f{left:623.502000px;}
.xce{left:625.569000px;}
.x73{left:628.392000px;}
.x46{left:634.660500px;}
.x50{left:638.446500px;}
.xc1{left:644.334000px;}
.x84{left:648.253500px;}
.xa6{left:651.343500px;}
.xa2{left:653.268000px;}
.xe3{left:655.732500px;}
.x85{left:657.165000px;}
.x92{left:658.650000px;}
.xa7{left:661.183500px;}
.xd2{left:662.431500px;}
.x9a{left:663.651000px;}
.x6c{left:668.097000px;}
.x6a{left:670.168500px;}
.xe8{left:671.752500px;}
.x44{left:673.965000px;}
.xdd{left:675.027000px;}
.x9b{left:678.594000px;}
.x8{left:681.904500px;}
.x6d{left:683.040000px;}
.x54{left:684.672000px;}
.x6e{left:686.749500px;}
.x9{left:689.373000px;}
.xb0{left:692.173500px;}
.xa9{left:696.415500px;}
.xe2{left:697.477500px;}
.x55{left:699.615000px;}
.x15{left:700.617000px;}
.x47{left:702.465000px;}
.x6b{left:703.867500px;}
.x6f{left:705.403500px;}
.x16{left:708.090000px;}
.xc2{left:709.465500px;}
.xeb{left:710.613000px;}
.x83{left:711.741000px;}
.xa0{left:712.842000px;}
.xb1{left:714.141000px;}
.x17{left:715.606500px;}
.x48{left:717.409500px;}
.x43{left:718.815000px;}
.x49{left:721.219500px;}
.x18{left:723.078000px;}
.xa3{left:724.923000px;}
.x36{left:726.814500px;}
.xca{left:729.804000px;}
.x87{left:730.890000px;}
.x24{left:733.918500px;}
.xe4{left:734.964000px;}
.x4a{left:736.164000px;}
.xa4{left:739.867500px;}
.x37{left:741.757500px;}
.xb2{left:743.874000px;}
.x88{left:745.833000px;}
.xe9{left:749.116500px;}
.x7e{left:750.304500px;}
.x76{left:751.978500px;}
.xdb{left:754.275000px;}
.x1a{left:756.993000px;}
.x93{left:761.358000px;}
.xae{left:763.315500px;}
.x7f{left:764.808000px;}
.xb3{left:765.841500px;}
.x4b{left:767.469000px;}
.x13{left:769.041000px;}
.x1b{left:771.936000px;}
.x74{left:772.965000px;}
.x14{left:776.514000px;}
.x62{left:778.053000px;}
.xd6{left:779.085000px;}
.x25{left:780.094500px;}
.xe1{left:781.191000px;}
.x4c{left:782.413500px;}
.x30{left:785.922000px;}
.x75{left:787.909500px;}
.x56{left:789.196500px;}
.xde{left:790.443000px;}
.x63{left:792.996000px;}
.xc5{left:794.479500px;}
.x28{left:799.279500px;}
.x31{left:800.865000px;}
.x57{left:804.139500px;}
.xb{left:807.394500px;}
.x79{left:809.277000px;}
.xd9{left:810.522000px;}
.xb7{left:811.605000px;}
.xc{left:814.866000px;}
.xe7{left:816.019500px;}
.x29{left:817.933500px;}
.x7a{left:819.117000px;}
.xf{left:825.169500px;}
.x11{left:826.564500px;}
.x10{left:832.642500px;}
.x12{left:834.036000px;}
.x7b{left:836.970000px;}
@media print{
.v3{vertical-align:-19.290667pt;}
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000015pt;}
.ls41{letter-spacing:0.000372pt;}
.ls15{letter-spacing:0.000387pt;}
.ls32{letter-spacing:0.000504pt;}
.ls3d{letter-spacing:0.000600pt;}
.ls23{letter-spacing:0.000711pt;}
.ls22{letter-spacing:0.000921pt;}
.ls24{letter-spacing:0.001026pt;}
.ls36{letter-spacing:0.001156pt;}
.ls37{letter-spacing:0.001288pt;}
.ls3f{letter-spacing:0.001319pt;}
.ls53{letter-spacing:0.001335pt;}
.ls25{letter-spacing:0.001408pt;}
.ls2c{letter-spacing:0.002262pt;}
.ls42{letter-spacing:0.002397pt;}
.ls1{letter-spacing:0.002422pt;}
.ls44{letter-spacing:0.002465pt;}
.ls2b{letter-spacing:0.002525pt;}
.ls1c{letter-spacing:0.002535pt;}
.ls2e{letter-spacing:0.002746pt;}
.ls31{letter-spacing:0.002826pt;}
.ls34{letter-spacing:0.003241pt;}
.ls43{letter-spacing:0.003502pt;}
.ls7{letter-spacing:0.003733pt;}
.ls12{letter-spacing:0.004020pt;}
.ls10{letter-spacing:0.004211pt;}
.ls35{letter-spacing:0.004267pt;}
.ls2{letter-spacing:2.657067pt;}
.ls5{letter-spacing:2.665203pt;}
.ls1b{letter-spacing:3.810502pt;}
.ls0{letter-spacing:9.293600pt;}
.ls4b{letter-spacing:10.428473pt;}
.lsa{letter-spacing:10.626533pt;}
.ls20{letter-spacing:10.688361pt;}
.ls46{letter-spacing:10.945502pt;}
.ls40{letter-spacing:11.005344pt;}
.ls1f{letter-spacing:11.197297pt;}
.ls39{letter-spacing:11.756653pt;}
.ls48{letter-spacing:11.776025pt;}
.ls2d{letter-spacing:11.788087pt;}
.ls4e{letter-spacing:11.816229pt;}
.ls4a{letter-spacing:11.835181pt;}
.ls1a{letter-spacing:11.950003pt;}
.ls2a{letter-spacing:11.952283pt;}
.ls1e{letter-spacing:11.954133pt;}
.ls19{letter-spacing:11.955337pt;}
.ls21{letter-spacing:11.959467pt;}
.ls4f{letter-spacing:11.978333pt;}
.ls2f{letter-spacing:12.012607pt;}
.ls49{letter-spacing:12.071736pt;}
.ls47{letter-spacing:12.112774pt;}
.ls26{letter-spacing:12.115118pt;}
.ls33{letter-spacing:12.134140pt;}
.ls52{letter-spacing:12.136568pt;}
.ls4c{letter-spacing:12.175146pt;}
.ls50{letter-spacing:12.197181pt;}
.ls30{letter-spacing:12.865715pt;}
.ls11{letter-spacing:13.197092pt;}
.lsf{letter-spacing:13.229303pt;}
.ls4d{letter-spacing:13.231728pt;}
.lse{letter-spacing:13.278015pt;}
.ls3{letter-spacing:13.283733pt;}
.ls3a{letter-spacing:13.550682pt;}
.ls38{letter-spacing:13.932382pt;}
.ls17{letter-spacing:14.023916pt;}
.ls18{letter-spacing:14.115226pt;}
.ls16{letter-spacing:14.272089pt;}
.ls45{letter-spacing:14.491859pt;}
.ls3e{letter-spacing:14.523231pt;}
.ls1d{letter-spacing:14.764429pt;}
.ls3b{letter-spacing:14.823467pt;}
.ls3c{letter-spacing:14.975974pt;}
.ls29{letter-spacing:15.527153pt;}
.ls51{letter-spacing:15.767676pt;}
.ls14{letter-spacing:15.775550pt;}
.ls13{letter-spacing:16.468167pt;}
.ls28{letter-spacing:17.660486pt;}
.lsc{letter-spacing:17.853788pt;}
.lsd{letter-spacing:17.859017pt;}
.ls27{letter-spacing:18.131075pt;}
.ls4{letter-spacing:51.035733pt;}
.ls8{letter-spacing:55.787733pt;}
.ls9{letter-spacing:57.174803pt;}
.wse{word-spacing:-13.283467pt;}
.ws15{word-spacing:-12.760670pt;}
.wsef{word-spacing:-11.955200pt;}
.ws2c{word-spacing:-10.626800pt;}
.ws2{word-spacing:-9.298400pt;}
.wsde{word-spacing:-3.772505pt;}
.wsb4{word-spacing:-2.869229pt;}
.wsb3{word-spacing:-2.816095pt;}
.ws72{word-spacing:-2.709827pt;}
.wsdf{word-spacing:-2.497292pt;}
.ws7b{word-spacing:-2.444158pt;}
.wse5{word-spacing:-2.337890pt;}
.wsdb{word-spacing:-2.072221pt;}
.ws74{word-spacing:-2.019087pt;}
.ws164{word-spacing:-1.960653pt;}
.ws2d{word-spacing:-1.912819pt;}
.ws8d{word-spacing:-1.806551pt;}
.ws120{word-spacing:-1.673728pt;}
.ws2f{word-spacing:-1.594016pt;}
.ws3f{word-spacing:-1.540882pt;}
.ws137{word-spacing:-1.530266pt;}
.wsb5{word-spacing:-1.502420pt;}
.wsa0{word-spacing:-1.487748pt;}
.ws85{word-spacing:-1.482445pt;}
.ws79{word-spacing:-1.434614pt;}
.ws87{word-spacing:-1.386803pt;}
.wsa2{word-spacing:-1.381481pt;}
.ws86{word-spacing:-1.338982pt;}
.wsa3{word-spacing:-1.328347pt;}
.wsb9{word-spacing:-1.295037pt;}
.wsf7{word-spacing:-1.291162pt;}
.wsb8{word-spacing:-1.290804pt;}
.wsb6{word-spacing:-1.275213pt;}
.ws142{word-spacing:-1.243341pt;}
.wsd9{word-spacing:-1.222079pt;}
.ws136{word-spacing:-1.195520pt;}
.wse7{word-spacing:-1.168945pt;}
.ws7c{word-spacing:-1.115811pt;}
.ws15e{word-spacing:-1.099878pt;}
.wsa1{word-spacing:-1.062677pt;}
.ws3{word-spacing:-1.041421pt;}
.wsb7{word-spacing:-1.024577pt;}
.ws3e{word-spacing:-1.009543pt;}
.ws11f{word-spacing:-0.956416pt;}
.wsca{word-spacing:-0.956410pt;}
.ws5{word-spacing:-0.929840pt;}
.ws158{word-spacing:-0.908595pt;}
.ws159{word-spacing:-0.860774pt;}
.ws7d{word-spacing:-0.850142pt;}
.wsbf{word-spacing:-0.797008pt;}
.wsf5{word-spacing:-0.765133pt;}
.wsc9{word-spacing:-0.743874pt;}
.ws11e{word-spacing:-0.717312pt;}
.wsc8{word-spacing:-0.690740pt;}
.wsc3{word-spacing:-0.616362pt;}
.wsab{word-spacing:-0.584473pt;}
.ws52{word-spacing:-0.531339pt;}
.wsfa{word-spacing:-0.526029pt;}
.ws152{word-spacing:-0.478208pt;}
.wsa4{word-spacing:-0.478205pt;}
.wsf9{word-spacing:-0.382566pt;}
.wsd6{word-spacing:-0.371937pt;}
.ws34{word-spacing:-0.318803pt;}
.ws15b{word-spacing:-0.286925pt;}
.ws2e{word-spacing:-0.265669pt;}
.ws81{word-spacing:-0.241013pt;}
.ws96{word-spacing:-0.239104pt;}
.ws2a{word-spacing:-0.212535pt;}
.wseb{word-spacing:-0.191283pt;}
.ws25{word-spacing:-0.159402pt;}
.ws10c{word-spacing:-0.143462pt;}
.ws24{word-spacing:-0.106268pt;}
.ws46{word-spacing:-0.103177pt;}
.ws45{word-spacing:-0.100433pt;}
.ws6e{word-spacing:-0.095642pt;}
.wsd5{word-spacing:-0.090749pt;}
.ws5c{word-spacing:-0.068535pt;}
.ws43{word-spacing:-0.053697pt;}
.ws42{word-spacing:-0.053370pt;}
.wsf{word-spacing:-0.053134pt;}
.ws41{word-spacing:-0.050255pt;}
.ws6c{word-spacing:-0.047821pt;}
.ws5b{word-spacing:-0.035066pt;}
.ws4f{word-spacing:-0.027566pt;}
.ws54{word-spacing:-0.026632pt;}
.ws55{word-spacing:-0.025292pt;}
.ws53{word-spacing:-0.021082pt;}
.ws108{word-spacing:-0.010940pt;}
.ws157{word-spacing:-0.010522pt;}
.ws155{word-spacing:-0.009156pt;}
.ws16f{word-spacing:-0.008508pt;}
.ws144{word-spacing:-0.007834pt;}
.ws12f{word-spacing:-0.007603pt;}
.ws1c{word-spacing:-0.006766pt;}
.ws124{word-spacing:-0.006204pt;}
.ws174{word-spacing:-0.005129pt;}
.ws143{word-spacing:-0.004326pt;}
.ws15c{word-spacing:-0.004318pt;}
.ws128{word-spacing:-0.004207pt;}
.ws11c{word-spacing:-0.003806pt;}
.ws11{word-spacing:-0.003377pt;}
.ws177{word-spacing:-0.003081pt;}
.ws1a{word-spacing:-0.002709pt;}
.ws172{word-spacing:-0.002509pt;}
.ws1b{word-spacing:-0.002408pt;}
.wsd{word-spacing:-0.002126pt;}
.ws100{word-spacing:-0.002108pt;}
.ws161{word-spacing:-0.002048pt;}
.wsf4{word-spacing:-0.000717pt;}
.ws10f{word-spacing:-0.000666pt;}
.ws148{word-spacing:-0.000495pt;}
.ws13{word-spacing:-0.000222pt;}
.ws1{word-spacing:0.000000pt;}
.ws135{word-spacing:0.000205pt;}
.wsf0{word-spacing:0.001476pt;}
.ws11d{word-spacing:0.002449pt;}
.ws6b{word-spacing:0.002775pt;}
.ws10{word-spacing:0.003207pt;}
.ws6a{word-spacing:0.041917pt;}
.ws69{word-spacing:0.043877pt;}
.wsea{word-spacing:0.047821pt;}
.ws47{word-spacing:0.053134pt;}
.ws7f{word-spacing:0.059058pt;}
.ws6d{word-spacing:0.095642pt;}
.ws38{word-spacing:0.106268pt;}
.ws1d{word-spacing:0.143462pt;}
.ws35{word-spacing:0.159402pt;}
.ws44{word-spacing:0.163521pt;}
.ws19{word-spacing:0.191283pt;}
.ws22{word-spacing:0.212535pt;}
.ws80{word-spacing:0.234908pt;}
.ws56{word-spacing:0.236577pt;}
.ws1e{word-spacing:0.239104pt;}
.ws48{word-spacing:0.265669pt;}
.ws110{word-spacing:0.286925pt;}
.ws39{word-spacing:0.318803pt;}
.ws129{word-spacing:0.382566pt;}
.wscf{word-spacing:0.425071pt;}
.ws12a{word-spacing:0.430387pt;}
.ws37{word-spacing:0.478205pt;}
.ws84{word-spacing:0.526029pt;}
.ws70{word-spacing:0.531339pt;}
.ws10e{word-spacing:0.573850pt;}
.ws65{word-spacing:0.584473pt;}
.ws66{word-spacing:0.610531pt;}
.ws63{word-spacing:0.611252pt;}
.ws64{word-spacing:0.614492pt;}
.ws67{word-spacing:0.615760pt;}
.ws150{word-spacing:0.621670pt;}
.ws62{word-spacing:0.637606pt;}
.ws111{word-spacing:0.669491pt;}
.ws8e{word-spacing:0.690740pt;}
.ws5d{word-spacing:0.719061pt;}
.ws61{word-spacing:0.735875pt;}
.ws5f{word-spacing:0.737522pt;}
.ws60{word-spacing:0.739982pt;}
.ws5e{word-spacing:0.743874pt;}
.ws101{word-spacing:0.765133pt;}
.ws82{word-spacing:0.797008pt;}
.ws68{word-spacing:0.814041pt;}
.ws93{word-spacing:0.850142pt;}
.ws4{word-spacing:0.892646pt;}
.ws113{word-spacing:0.908595pt;}
.ws2b{word-spacing:0.956410pt;}
.ws169{word-spacing:0.956416pt;}
.ws9b{word-spacing:1.004237pt;}
.wse3{word-spacing:1.009543pt;}
.ws109{word-spacing:1.052058pt;}
.ws71{word-spacing:1.062677pt;}
.ws97{word-spacing:1.147699pt;}
.ws26{word-spacing:1.168945pt;}
.ws6f{word-spacing:1.222079pt;}
.ws130{word-spacing:1.243341pt;}
.ws95{word-spacing:1.275213pt;}
.ws10a{word-spacing:1.291162pt;}
.wsc4{word-spacing:1.302139pt;}
.wsc6{word-spacing:1.303593pt;}
.wsc5{word-spacing:1.305927pt;}
.wsaa{word-spacing:1.328347pt;}
.ws149{word-spacing:1.338982pt;}
.wsb1{word-spacing:1.381481pt;}
.ws88{word-spacing:1.434614pt;}
.ws98{word-spacing:1.434624pt;}
.wsaf{word-spacing:1.487748pt;}
.ws12c{word-spacing:1.530266pt;}
.wsda{word-spacing:1.540882pt;}
.ws132{word-spacing:1.578086pt;}
.wsa5{word-spacing:1.594016pt;}
.wsa6{word-spacing:1.611178pt;}
.wsed{word-spacing:1.625907pt;}
.ws57{word-spacing:1.647150pt;}
.ws14a{word-spacing:1.673728pt;}
.ws29{word-spacing:1.700284pt;}
.wsa9{word-spacing:1.753418pt;}
.ws78{word-spacing:1.806551pt;}
.ws165{word-spacing:1.817190pt;}
.ws4e{word-spacing:1.859685pt;}
.ws3b{word-spacing:1.912819pt;}
.ws171{word-spacing:1.912832pt;}
.ws147{word-spacing:1.960653pt;}
.ws36{word-spacing:1.965953pt;}
.ws13f{word-spacing:2.008474pt;}
.ws9c{word-spacing:2.019087pt;}
.ws121{word-spacing:2.056294pt;}
.wsa7{word-spacing:2.072221pt;}
.wsf6{word-spacing:2.151936pt;}
.ws18{word-spacing:2.199757pt;}
.wse8{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws14e{word-spacing:2.247578pt;}
.ws17{word-spacing:2.295398pt;}
.ws33{word-spacing:2.337890pt;}
.wsd4{word-spacing:2.391024pt;}
.ws5a{word-spacing:2.442490pt;}
.ws58{word-spacing:2.444158pt;}
.ws59{word-spacing:2.445892pt;}
.ws75{word-spacing:2.489222pt;}
.ws50{word-spacing:2.496845pt;}
.ws51{word-spacing:2.497292pt;}
.wsd8{word-spacing:2.550426pt;}
.ws16{word-spacing:2.550432pt;}
.ws146{word-spacing:2.582323pt;}
.wsb2{word-spacing:2.603559pt;}
.ws9f{word-spacing:2.656693pt;}
.wsf8{word-spacing:2.677965pt;}
.wsbc{word-spacing:2.709827pt;}
.ws16b{word-spacing:2.725786pt;}
.ws89{word-spacing:2.762961pt;}
.ws14c{word-spacing:2.773606pt;}
.ws9e{word-spacing:2.816095pt;}
.ws9a{word-spacing:2.821427pt;}
.ws160{word-spacing:2.860442pt;}
.ws166{word-spacing:2.860817pt;}
.ws11a{word-spacing:2.861568pt;}
.ws13c{word-spacing:2.861798pt;}
.ws20{word-spacing:2.861926pt;}
.ws138{word-spacing:2.862327pt;}
.ws13b{word-spacing:2.862703pt;}
.ws173{word-spacing:2.863113pt;}
.ws122{word-spacing:2.863215pt;}
.ws105{word-spacing:2.863249pt;}
.ws126{word-spacing:2.863479pt;}
.ws103{word-spacing:2.863505pt;}
.ws12d{word-spacing:2.863514pt;}
.ws106{word-spacing:2.863625pt;}
.ws14b{word-spacing:2.864580pt;}
.ws15d{word-spacing:2.864597pt;}
.ws15a{word-spacing:2.864691pt;}
.ws133{word-spacing:2.864836pt;}
.ws156{word-spacing:2.864870pt;}
.ws139{word-spacing:2.865126pt;}
.ws13a{word-spacing:2.865417pt;}
.ws102{word-spacing:2.865442pt;}
.ws12b{word-spacing:2.865749pt;}
.ws15f{word-spacing:2.865766pt;}
.ws116{word-spacing:2.865877pt;}
.ws107{word-spacing:2.866543pt;}
.ws153{word-spacing:2.866569pt;}
.ws167{word-spacing:2.866620pt;}
.ws10b{word-spacing:2.866714pt;}
.ws14f{word-spacing:2.867140pt;}
.ws13e{word-spacing:2.867166pt;}
.ws104{word-spacing:2.867174pt;}
.ws118{word-spacing:2.867541pt;}
.ws123{word-spacing:2.868122pt;}
.ws14d{word-spacing:2.868523pt;}
.ws154{word-spacing:2.868847pt;}
.wsd7{word-spacing:2.869229pt;}
.wsf2{word-spacing:2.869248pt;}
.wsf3{word-spacing:2.869274pt;}
.wsee{word-spacing:2.869734pt;}
.ws90{word-spacing:2.922363pt;}
.ws134{word-spacing:2.964890pt;}
.ws94{word-spacing:2.975497pt;}
.ws10d{word-spacing:3.012710pt;}
.wsbb{word-spacing:3.028630pt;}
.wse4{word-spacing:3.081764pt;}
.ws168{word-spacing:3.108352pt;}
.wsa8{word-spacing:3.134898pt;}
.ws76{word-spacing:3.188032pt;}
.ws16e{word-spacing:3.203994pt;}
.wsdc{word-spacing:3.241166pt;}
.ws125{word-spacing:3.251814pt;}
.ws175{word-spacing:3.282262pt;}
.ws77{word-spacing:3.294300pt;}
.ws176{word-spacing:3.299635pt;}
.wsae{word-spacing:3.347434pt;}
.ws73{word-spacing:3.400567pt;}
.ws117{word-spacing:3.443098pt;}
.ws28{word-spacing:3.453701pt;}
.ws145{word-spacing:3.490918pt;}
.ws8c{word-spacing:3.506835pt;}
.ws1f{word-spacing:3.538739pt;}
.ws3a{word-spacing:3.613103pt;}
.ws3d{word-spacing:3.616608pt;}
.wsdd{word-spacing:3.772505pt;}
.ws16d{word-spacing:3.825664pt;}
.ws8a{word-spacing:3.931906pt;}
.wscc{word-spacing:3.985040pt;}
.ws9d{word-spacing:4.038174pt;}
.wsec{word-spacing:4.064768pt;}
.wsce{word-spacing:4.144442pt;}
.ws30{word-spacing:4.197575pt;}
.ws12e{word-spacing:4.208230pt;}
.wsb{word-spacing:4.240070pt;}
.ws31{word-spacing:4.250709pt;}
.ws141{word-spacing:4.256051pt;}
.wsad{word-spacing:4.303843pt;}
.wsc{word-spacing:4.314458pt;}
.ws23{word-spacing:4.356977pt;}
.wsfe{word-spacing:4.542976pt;}
.ws40{word-spacing:4.569513pt;}
.wsc0{word-spacing:4.622646pt;}
.wsb0{word-spacing:4.675780pt;}
.wsd3{word-spacing:4.728914pt;}
.ws92{word-spacing:4.835182pt;}
.wsfb{word-spacing:4.877722pt;}
.ws13d{word-spacing:4.925542pt;}
.ws27{word-spacing:4.941450pt;}
.wsac{word-spacing:4.994583pt;}
.ws7a{word-spacing:5.047717pt;}
.ws99{word-spacing:5.069005pt;}
.wsc2{word-spacing:5.100851pt;}
.wscd{word-spacing:5.153985pt;}
.ws151{word-spacing:5.164646pt;}
.wsd0{word-spacing:5.260253pt;}
.wsff{word-spacing:5.260288pt;}
.ws170{word-spacing:5.308109pt;}
.ws112{word-spacing:5.355930pt;}
.wsf1{word-spacing:5.451571pt;}
.ws32{word-spacing:5.472788pt;}
.wsbd{word-spacing:5.525922pt;}
.ws8b{word-spacing:5.579056pt;}
.ws8f{word-spacing:5.632190pt;}
.wsd1{word-spacing:5.738458pt;}
.ws91{word-spacing:5.897859pt;}
.ws3c{word-spacing:6.057261pt;}
.wse6{word-spacing:6.110395pt;}
.wsfc{word-spacing:6.168883pt;}
.ws16a{word-spacing:6.209718pt;}
.wsd2{word-spacing:6.216662pt;}
.ws119{word-spacing:6.312346pt;}
.wscb{word-spacing:6.376064pt;}
.ws83{word-spacing:6.429198pt;}
.ws21{word-spacing:6.482332pt;}
.wsba{word-spacing:6.535466pt;}
.ws11b{word-spacing:6.599270pt;}
.ws49{word-spacing:6.854269pt;}
.ws4c{word-spacing:6.874884pt;}
.ws4d{word-spacing:6.878544pt;}
.ws4b{word-spacing:6.907403pt;}
.ws9{word-spacing:6.918010pt;}
.ws131{word-spacing:6.981837pt;}
.wsc1{word-spacing:7.013670pt;}
.ws4a{word-spacing:7.137621pt;}
.wse0{word-spacing:7.173072pt;}
.wse9{word-spacing:7.226206pt;}
.wsbe{word-spacing:7.332474pt;}
.ws178{word-spacing:8.225178pt;}
.ws162{word-spacing:8.512102pt;}
.wsc7{word-spacing:8.873356pt;}
.wse1{word-spacing:8.979623pt;}
.ws140{word-spacing:9.325056pt;}
.wsfd{word-spacing:9.803264pt;}
.ws163{word-spacing:10.711859pt;}
.ws7{word-spacing:10.823338pt;}
.ws115{word-spacing:12.194304pt;}
.ws16c{word-spacing:12.289946pt;}
.ws8{word-spacing:14.319536pt;}
.ws114{word-spacing:14.394061pt;}
.wsa{word-spacing:23.208806pt;}
.ws6{word-spacing:23.858002pt;}
.wse2{word-spacing:30.605107pt;}
.ws12{word-spacing:35.593054pt;}
.ws7e{word-spacing:38.522053pt;}
.ws127{word-spacing:43.038720pt;}
.ws14{word-spacing:48.878387pt;}
._7{margin-left:-31.595439pt;}
._19{margin-left:-7.418240pt;}
._c{margin-left:-6.121062pt;}
._0{margin-left:-4.797974pt;}
._8{margin-left:-3.830987pt;}
._9{margin-left:-2.539754pt;}
._1{margin-left:-1.338970pt;}
._1d{width:0.903227pt;}
._4{width:2.045648pt;}
._5{width:10.295486pt;}
._2{width:11.531158pt;}
._a{width:13.246362pt;}
._d{width:14.872269pt;}
._e{width:15.929578pt;}
._10{width:17.183530pt;}
._13{width:18.649987pt;}
._17{width:19.643743pt;}
._1a{width:20.732831pt;}
._b{width:21.662822pt;}
._3{width:23.062718pt;}
._16{width:24.116227pt;}
._25{width:25.691144pt;}
._6{width:27.188522pt;}
._15{width:28.224706pt;}
._14{width:29.542430pt;}
._1c{width:30.977044pt;}
._f{width:31.933454pt;}
._1b{width:34.122565pt;}
._1f{width:36.556100pt;}
._20{width:38.001338pt;}
._23{width:39.308698pt;}
._24{width:51.601120pt;}
._22{width:54.993920pt;}
._18{width:61.911578pt;}
._21{width:78.904320pt;}
._11{width:776.517270pt;}
._1e{width:2114.525305pt;}
._12{width:2135.778638pt;}
.fs7{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs6{font-size:40.381867pt;}
.fsb{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs1{font-size:47.035520pt;}
.fs9{font-size:47.820800pt;}
.fs2{font-size:50.395200pt;}
.fs4{font-size:53.133867pt;}
.fsa{font-size:55.365867pt;}
.fs3{font-size:60.474240pt;}
.fs5{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:8.420534pt;}
.y1e{bottom:25.722550pt;}
.y4b{bottom:28.346667pt;}
.y1d{bottom:29.128174pt;}
.ya3{bottom:81.480000pt;}
.y18b{bottom:83.009333pt;}
.y15a{bottom:90.898667pt;}
.y81{bottom:91.297333pt;}
.y1b{bottom:93.018667pt;}
.y10c{bottom:94.385333pt;}
.y16b{bottom:94.884000pt;}
.yce{bottom:95.282667pt;}
.y137{bottom:95.681333pt;}
.ya2{bottom:98.217333pt;}
.y18a{bottom:98.630667pt;}
.y1c0{bottom:102.456000pt;}
.y159{bottom:107.636000pt;}
.y80{bottom:108.034667pt;}
.y1f6{bottom:108.233333pt;}
.y1a{bottom:108.920000pt;}
.y144{bottom:110.425333pt;}
.y10b{bottom:111.122667pt;}
.y16a{bottom:111.621333pt;}
.ycd{bottom:112.020000pt;}
.y136{bottom:112.418667pt;}
.y189{bottom:114.252000pt;}
.ya1{bottom:114.954667pt;}
.y1bf{bottom:117.798667pt;}
.y1f5{bottom:123.576000pt;}
.y158{bottom:124.373333pt;}
.y7f{bottom:124.772000pt;}
.y19{bottom:124.820000pt;}
.y4a{bottom:126.846667pt;}
.y143{bottom:127.162667pt;}
.y10a{bottom:127.860000pt;}
.y169{bottom:128.358667pt;}
.ycb{bottom:128.757333pt;}
.y135{bottom:129.156000pt;}
.y188{bottom:129.873333pt;}
.ya0{bottom:131.692000pt;}
.y1be{bottom:133.141333pt;}
.ycc{bottom:133.578667pt;}
.y1f4{bottom:138.918667pt;}
.y18{bottom:140.720000pt;}
.y157{bottom:141.110667pt;}
.y7e{bottom:141.509333pt;}
.y49{bottom:143.584000pt;}
.y109{bottom:144.597333pt;}
.y168{bottom:145.096000pt;}
.yca{bottom:145.494667pt;}
.y134{bottom:145.893333pt;}
.y142{bottom:147.885333pt;}
.y9f{bottom:148.429333pt;}
.y1bd{bottom:148.484000pt;}
.y1f3{bottom:154.261333pt;}
.y17{bottom:156.621333pt;}
.y156{bottom:157.848000pt;}
.y7d{bottom:158.246667pt;}
.y48{bottom:160.321333pt;}
.y108{bottom:161.334667pt;}
.y187{bottom:161.434667pt;}
.y167{bottom:161.833333pt;}
.yc9{bottom:162.232000pt;}
.y133{bottom:162.630667pt;}
.y1bc{bottom:163.825333pt;}
.y9e{bottom:165.166667pt;}
.y141{bottom:165.818667pt;}
.y1f2{bottom:169.604000pt;}
.y16{bottom:172.521333pt;}
.y155{bottom:174.585333pt;}
.y7c{bottom:174.984000pt;}
.y47{bottom:177.058667pt;}
.y107{bottom:178.072000pt;}
.y186{bottom:178.172000pt;}
.y166{bottom:178.570667pt;}
.yc7{bottom:178.969333pt;}
.y1bb{bottom:179.168000pt;}
.y132{bottom:179.368000pt;}
.y9d{bottom:181.904000pt;}
.yc8{bottom:183.790667pt;}
.y1f1{bottom:184.946667pt;}
.y15{bottom:188.421333pt;}
.y154{bottom:191.322667pt;}
.y7b{bottom:191.721333pt;}
.y46{bottom:193.796000pt;}
.y1ba{bottom:194.510667pt;}
.y185{bottom:194.909333pt;}
.y165{bottom:195.308000pt;}
.yc6{bottom:195.706667pt;}
.y131{bottom:196.105333pt;}
.y9c{bottom:198.641333pt;}
.y106{bottom:198.793333pt;}
.y1f0{bottom:200.289333pt;}
.y14{bottom:204.322667pt;}
.y153{bottom:208.060000pt;}
.y7a{bottom:208.458667pt;}
.y1b9{bottom:209.853333pt;}
.y45{bottom:210.533333pt;}
.y184{bottom:211.646667pt;}
.y164{bottom:212.045333pt;}
.yc5{bottom:212.444000pt;}
.y130{bottom:212.841333pt;}
.y9b{bottom:215.378667pt;}
.y1ef{bottom:215.632000pt;}
.y152{bottom:224.797333pt;}
.y79{bottom:225.196000pt;}
.y44{bottom:227.270667pt;}
.y183{bottom:228.384000pt;}
.y105{bottom:228.681333pt;}
.y163{bottom:228.782667pt;}
.yc4{bottom:229.181333pt;}
.y12f{bottom:229.578667pt;}
.y1ee{bottom:230.974667pt;}
.yec{bottom:232.116000pt;}
.y9a{bottom:236.101333pt;}
.y1b8{bottom:240.538667pt;}
.y151{bottom:241.534667pt;}
.y78{bottom:241.933333pt;}
.y43{bottom:244.006667pt;}
.y182{bottom:245.121333pt;}
.y104{bottom:245.418667pt;}
.y162{bottom:245.520000pt;}
.yc3{bottom:245.918667pt;}
.y12e{bottom:246.316000pt;}
.yeb{bottom:248.853333pt;}
.y1b7{bottom:255.881333pt;}
.y77{bottom:258.670667pt;}
.y42{bottom:260.744000pt;}
.y1ed{bottom:261.658667pt;}
.y181{bottom:261.858667pt;}
.y103{bottom:262.156000pt;}
.y150{bottom:262.257333pt;}
.yc2{bottom:262.656000pt;}
.y12d{bottom:263.053333pt;}
.yea{bottom:265.590667pt;}
.y99{bottom:265.989333pt;}
.y13{bottom:266.804000pt;}
.y1b6{bottom:271.224000pt;}
.y76{bottom:275.408000pt;}
.y161{bottom:276.568000pt;}
.y1ec{bottom:277.001333pt;}
.y41{bottom:277.481333pt;}
.y180{bottom:278.596000pt;}
.y102{bottom:278.893333pt;}
.y160{bottom:278.994667pt;}
.yc1{bottom:279.393333pt;}
.y12c{bottom:279.790667pt;}
.ye9{bottom:282.328000pt;}
.y12{bottom:282.705333pt;}
.y98{bottom:282.726667pt;}
.y1b5{bottom:286.565333pt;}
.y75{bottom:292.145333pt;}
.y1eb{bottom:292.344000pt;}
.y40{bottom:294.218667pt;}
.y17f{bottom:295.333333pt;}
.y101{bottom:295.630667pt;}
.y15f{bottom:295.732000pt;}
.yc0{bottom:296.129333pt;}
.y12b{bottom:296.528000pt;}
.y11{bottom:298.605333pt;}
.ye8{bottom:299.065333pt;}
.y97{bottom:299.464000pt;}
.y1b4{bottom:301.908000pt;}
.y1ea{bottom:307.686667pt;}
.y74{bottom:308.882667pt;}
.y3f{bottom:310.956000pt;}
.y17e{bottom:312.070667pt;}
.y100{bottom:312.368000pt;}
.y15e{bottom:312.469333pt;}
.ybf{bottom:312.866667pt;}
.y12a{bottom:313.265333pt;}
.y10{bottom:314.505333pt;}
.ye7{bottom:315.802667pt;}
.y96{bottom:316.201333pt;}
.y1b3{bottom:317.250667pt;}
.y1e9{bottom:323.029333pt;}
.y73{bottom:325.620000pt;}
.y3e{bottom:327.693333pt;}
.y17d{bottom:328.808000pt;}
.yff{bottom:329.105333pt;}
.y15d{bottom:329.206667pt;}
.ybe{bottom:329.604000pt;}
.y129{bottom:330.002667pt;}
.ye6{bottom:332.540000pt;}
.y1b2{bottom:332.593333pt;}
.y95{bottom:332.938667pt;}
.y1e8{bottom:338.372000pt;}
.yf{bottom:338.376000pt;}
.y72{bottom:342.357333pt;}
.y3d{bottom:344.430667pt;}
.y17c{bottom:345.545333pt;}
.yfe{bottom:345.842667pt;}
.y15c{bottom:345.944000pt;}
.ybd{bottom:346.341333pt;}
.y128{bottom:346.740000pt;}
.y1b1{bottom:347.936000pt;}
.ye5{bottom:349.277333pt;}
.y94{bottom:349.676000pt;}
.y1e7{bottom:353.714667pt;}
.ye{bottom:354.277333pt;}
.y71{bottom:359.094667pt;}
.yfd{bottom:362.580000pt;}
.ybc{bottom:363.078667pt;}
.y1b0{bottom:363.278667pt;}
.y127{bottom:363.477333pt;}
.y3c{bottom:365.153333pt;}
.ye4{bottom:366.014667pt;}
.y17b{bottom:366.266667pt;}
.y93{bottom:366.413333pt;}
.y15b{bottom:366.665333pt;}
.y1e6{bottom:369.056000pt;}
.yd{bottom:370.177333pt;}
.y14f{bottom:375.832000pt;}
.y1af{bottom:378.621333pt;}
.yfc{bottom:379.317333pt;}
.y70{bottom:379.816000pt;}
.y126{bottom:380.214667pt;}
.ye3{bottom:382.752000pt;}
.y3b{bottom:383.086667pt;}
.y92{bottom:383.150667pt;}
.y1e5{bottom:384.398667pt;}
.y14e{bottom:392.568000pt;}
.y1ae{bottom:393.964000pt;}
.yc{bottom:395.376000pt;}
.yfb{bottom:396.054667pt;}
.y17a{bottom:396.154667pt;}
.ybb{bottom:396.553333pt;}
.y125{bottom:396.952000pt;}
.ye2{bottom:399.489333pt;}
.y1e4{bottom:399.741333pt;}
.y91{bottom:399.888000pt;}
.y14d{bottom:409.305333pt;}
.y1ad{bottom:409.306667pt;}
.y6f{bottom:409.704000pt;}
.yb{bottom:411.276000pt;}
.yfa{bottom:412.792000pt;}
.y179{bottom:412.892000pt;}
.yba{bottom:413.290667pt;}
.y124{bottom:413.689333pt;}
.y1e3{bottom:415.084000pt;}
.ye1{bottom:416.226667pt;}
.y90{bottom:416.624000pt;}
.y1ac{bottom:424.648000pt;}
.y14c{bottom:426.042667pt;}
.y6e{bottom:426.441333pt;}
.yf9{bottom:429.529333pt;}
.y178{bottom:429.629333pt;}
.yb9{bottom:430.028000pt;}
.y123{bottom:430.426667pt;}
.ye0{bottom:432.964000pt;}
.y8f{bottom:433.361333pt;}
.ya{bottom:435.146667pt;}
.y1ab{bottom:439.990667pt;}
.y14b{bottom:442.780000pt;}
.y6d{bottom:443.178667pt;}
.y1e2{bottom:445.769333pt;}
.yf8{bottom:446.266667pt;}
.y177{bottom:446.366667pt;}
.yb8{bottom:446.765333pt;}
.y122{bottom:447.164000pt;}
.ydf{bottom:449.701333pt;}
.y3a{bottom:449.886667pt;}
.y9{bottom:451.048000pt;}
.y1aa{bottom:455.333333pt;}
.y14a{bottom:459.517333pt;}
.y6c{bottom:459.916000pt;}
.y1e1{bottom:461.112000pt;}
.y8e{bottom:461.152000pt;}
.yf7{bottom:463.004000pt;}
.y176{bottom:463.104000pt;}
.yb7{bottom:463.502667pt;}
.y121{bottom:463.901333pt;}
.yde{bottom:466.438667pt;}
.y8{bottom:466.948000pt;}
.y1a9{bottom:470.676000pt;}
.y149{bottom:476.254667pt;}
.y1e0{bottom:476.454667pt;}
.y6b{bottom:476.653333pt;}
.y8d{bottom:478.248000pt;}
.yf6{bottom:479.741333pt;}
.y175{bottom:479.841333pt;}
.yb6{bottom:480.240000pt;}
.y120{bottom:480.638667pt;}
.y7{bottom:482.848000pt;}
.y39{bottom:483.121333pt;}
.ydd{bottom:483.176000pt;}
.y1a8{bottom:486.018667pt;}
.y1df{bottom:491.797333pt;}
.y148{bottom:492.992000pt;}
.y6a{bottom:493.390667pt;}
.y8c{bottom:495.344000pt;}
.y174{bottom:496.578667pt;}
.yb5{bottom:496.977333pt;}
.y11f{bottom:497.376000pt;}
.y6{bottom:498.749333pt;}
.ydc{bottom:499.912000pt;}
.y38{bottom:500.417333pt;}
.y1a7{bottom:501.361333pt;}
.y1de{bottom:507.138667pt;}
.yf5{bottom:509.577333pt;}
.y147{bottom:509.729333pt;}
.y69{bottom:510.128000pt;}
.y173{bottom:513.316000pt;}
.yb4{bottom:513.714667pt;}
.y11e{bottom:514.113333pt;}
.y5{bottom:514.649333pt;}
.ydb{bottom:516.649333pt;}
.y1a6{bottom:516.704000pt;}
.y37{bottom:517.712000pt;}
.y1dd{bottom:522.481333pt;}
.y146{bottom:526.466667pt;}
.yf4{bottom:526.673333pt;}
.y68{bottom:526.865333pt;}
.y172{bottom:530.053333pt;}
.yb3{bottom:530.452000pt;}
.y4{bottom:530.549333pt;}
.y11d{bottom:530.850667pt;}
.y1a5{bottom:532.046667pt;}
.yda{bottom:533.386667pt;}
.y36{bottom:535.006667pt;}
.y1dc{bottom:537.824000pt;}
.y145{bottom:543.204000pt;}
.y67{bottom:543.602667pt;}
.yf3{bottom:543.769333pt;}
.y3{bottom:546.450667pt;}
.y171{bottom:546.790667pt;}
.yb2{bottom:547.189333pt;}
.y1a4{bottom:547.388000pt;}
.y11c{bottom:547.588000pt;}
.yd9{bottom:550.124000pt;}
.y35{bottom:552.302667pt;}
.y1db{bottom:553.166667pt;}
.y66{bottom:560.340000pt;}
.yf2{bottom:560.865333pt;}
.y2{bottom:562.350667pt;}
.y1a3{bottom:562.730667pt;}
.y170{bottom:563.528000pt;}
.yb1{bottom:563.926667pt;}
.y11b{bottom:564.325333pt;}
.yd8{bottom:566.861333pt;}
.y1da{bottom:568.509333pt;}
.y34{bottom:569.597333pt;}
.y65{bottom:577.077333pt;}
.yf1{bottom:577.961333pt;}
.y1a2{bottom:578.073333pt;}
.y1{bottom:578.250667pt;}
.y16f{bottom:580.265333pt;}
.yb0{bottom:580.664000pt;}
.y11a{bottom:581.062667pt;}
.yd7{bottom:583.598667pt;}
.y1d9{bottom:583.852000pt;}
.y33{bottom:586.892000pt;}
.y1a1{bottom:593.416000pt;}
.y64{bottom:593.814667pt;}
.yf0{bottom:595.056000pt;}
.yaf{bottom:597.401333pt;}
.y119{bottom:597.800000pt;}
.y1d8{bottom:599.194667pt;}
.yd6{bottom:600.336000pt;}
.y16e{bottom:600.988000pt;}
.y32{bottom:604.188000pt;}
.y1a0{bottom:608.758667pt;}
.y63{bottom:610.552000pt;}
.yef{bottom:612.152000pt;}
.yae{bottom:614.138667pt;}
.y118{bottom:614.537333pt;}
.yd5{bottom:617.073333pt;}
.y31{bottom:621.482667pt;}
.y19f{bottom:624.101333pt;}
.y62{bottom:627.289333pt;}
.yee{bottom:629.248000pt;}
.y1d7{bottom:629.878667pt;}
.yad{bottom:630.876000pt;}
.y117{bottom:631.274667pt;}
.yd4{bottom:633.810667pt;}
.y30{bottom:638.778667pt;}
.y19e{bottom:639.444000pt;}
.y61{bottom:644.026667pt;}
.y1d6{bottom:645.221333pt;}
.yed{bottom:646.344000pt;}
.yac{bottom:647.613333pt;}
.y116{bottom:648.012000pt;}
.yd3{bottom:654.533333pt;}
.y19d{bottom:654.786667pt;}
.y2f{bottom:656.073333pt;}
.y1d5{bottom:660.564000pt;}
.y60{bottom:660.764000pt;}
.yab{bottom:664.350667pt;}
.y115{bottom:664.749333pt;}
.y1f7{bottom:664.904000pt;}
.y19c{bottom:670.129333pt;}
.y2e{bottom:673.368000pt;}
.y1d4{bottom:675.906667pt;}
.y5f{bottom:677.501333pt;}
.yd2{bottom:680.313333pt;}
.yaa{bottom:681.088000pt;}
.y114{bottom:681.485333pt;}
.y19b{bottom:685.470667pt;}
.y2d{bottom:690.664000pt;}
.y1d3{bottom:691.249333pt;}
.y5e{bottom:694.238667pt;}
.yd1{bottom:697.409333pt;}
.ya9{bottom:697.825333pt;}
.y113{bottom:698.222667pt;}
.y19a{bottom:700.813333pt;}
.y1d2{bottom:706.592000pt;}
.y2c{bottom:707.958667pt;}
.y5d{bottom:710.976000pt;}
.yd0{bottom:714.505333pt;}
.ya8{bottom:714.562667pt;}
.y112{bottom:714.960000pt;}
.y199{bottom:716.156000pt;}
.y1d1{bottom:721.934667pt;}
.y5c{bottom:727.713333pt;}
.ya7{bottom:731.300000pt;}
.y198{bottom:731.498667pt;}
.ycf{bottom:731.600000pt;}
.y111{bottom:731.697333pt;}
.y1d0{bottom:737.277333pt;}
.y2b{bottom:742.257333pt;}
.y5b{bottom:744.450667pt;}
.y197{bottom:746.841333pt;}
.ya6{bottom:748.036000pt;}
.y110{bottom:748.434667pt;}
.y1cf{bottom:752.620000pt;}
.y140{bottom:752.858667pt;}
.y2a{bottom:760.461333pt;}
.y5a{bottom:761.186667pt;}
.y196{bottom:762.184000pt;}
.y13e{bottom:762.348000pt;}
.ya5{bottom:764.773333pt;}
.y10f{bottom:765.172000pt;}
.y1ce{bottom:767.961333pt;}
.y13f{bottom:769.596000pt;}
.y29{bottom:774.806667pt;}
.y195{bottom:777.526667pt;}
.y59{bottom:777.924000pt;}
.y13d{bottom:781.510667pt;}
.y10e{bottom:781.909333pt;}
.y1cd{bottom:783.304000pt;}
.y28{bottom:785.296000pt;}
.ya4{bottom:785.496000pt;}
.y194{bottom:792.869333pt;}
.y58{bottom:794.661333pt;}
.y13c{bottom:798.248000pt;}
.y10d{bottom:798.646667pt;}
.y27{bottom:799.641333pt;}
.y193{bottom:808.210667pt;}
.y57{bottom:811.398667pt;}
.y26{bottom:813.988000pt;}
.y1cc{bottom:813.989333pt;}
.y13b{bottom:814.985333pt;}
.y8b{bottom:815.384000pt;}
.y192{bottom:823.553333pt;}
.y56{bottom:828.136000pt;}
.y1cb{bottom:829.332000pt;}
.y13a{bottom:831.722667pt;}
.y8a{bottom:832.121333pt;}
.y25{bottom:832.192000pt;}
.y191{bottom:842.881333pt;}
.y1ca{bottom:844.674667pt;}
.y55{bottom:844.873333pt;}
.y139{bottom:848.460000pt;}
.y89{bottom:848.858667pt;}
.y1c9{bottom:860.017333pt;}
.y54{bottom:861.610667pt;}
.y16d{bottom:865.197333pt;}
.y88{bottom:865.596000pt;}
.y138{bottom:869.182667pt;}
.y24{bottom:871.904000pt;}
.y190{bottom:872.769333pt;}
.y1c8{bottom:875.360000pt;}
.y53{bottom:878.348000pt;}
.y87{bottom:882.333333pt;}
.y16c{bottom:885.920000pt;}
.y23{bottom:888.641333pt;}
.y1c6{bottom:890.701333pt;}
.y1c7{bottom:890.702667pt;}
.y52{bottom:895.085333pt;}
.y18f{bottom:896.361333pt;}
.y86{bottom:899.070667pt;}
.y1c5{bottom:906.044000pt;}
.y51{bottom:911.822667pt;}
.y85{bottom:915.808000pt;}
.y18e{bottom:919.952000pt;}
.y22{bottom:921.320000pt;}
.y1c4{bottom:921.386667pt;}
.y50{bottom:928.560000pt;}
.y84{bottom:932.545333pt;}
.y1c3{bottom:936.729333pt;}
.y18d{bottom:943.544000pt;}
.y4f{bottom:945.297333pt;}
.y21{bottom:946.425333pt;}
.y83{bottom:949.282667pt;}
.y1c2{bottom:952.072000pt;}
.y4e{bottom:962.034667pt;}
.y82{bottom:966.020000pt;}
.y18c{bottom:967.136000pt;}
.y1c1{bottom:967.414667pt;}
.y20{bottom:971.530667pt;}
.y4d{bottom:982.757333pt;}
.y1c{bottom:1010.186667pt;}
.y4c{bottom:1038.548000pt;}
.h17{height:18.682573pt;}
.hb{height:23.209028pt;}
.h16{height:24.582445pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h15{height:29.397999pt;}
.hc{height:30.945242pt;}
.h13{height:31.157778pt;}
.h5{height:31.890083pt;}
.h10{height:33.378918pt;}
.hd{height:34.430976pt;}
.he{height:34.813542pt;}
.h6{height:35.024664pt;}
.hf{height:35.052646pt;}
.h14{height:37.087439pt;}
.h11{height:38.256384pt;}
.h12{height:38.681455pt;}
.h8{height:38.947124pt;}
.h7{height:41.001535pt;}
.h4{height:45.272024pt;}
.ha{height:48.365611pt;}
.h9{height:68.861952pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:191.879724pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x3{left:53.357850pt;}
.xdc{left:76.309333pt;}
.x2{left:161.132773pt;}
.xea{left:166.446667pt;}
.xe0{left:180.621333pt;}
.xe5{left:198.688000pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x5{left:239.594667pt;}
.x7c{left:248.397333pt;}
.xa{left:250.204000pt;}
.xaa{left:252.002667pt;}
.xd8{left:254.873333pt;}
.x7d{left:256.480000pt;}
.x8d{left:260.745333pt;}
.x19{left:262.904000pt;}
.xab{left:264.084000pt;}
.xac{left:268.445333pt;}
.xc8{left:271.000000pt;}
.x38{left:272.714667pt;}
.x3f{left:273.717333pt;}
.x7{left:275.198667pt;}
.xbf{left:278.254667pt;}
.xad{left:281.729333pt;}
.x94{left:282.937333pt;}
.x8a{left:284.470667pt;}
.xda{left:285.645333pt;}
.x40{left:287.000000pt;}
.x32{left:289.397333pt;}
.xc9{left:290.328000pt;}
.xcd{left:291.614667pt;}
.xd3{left:293.389333pt;}
.x95{left:296.220000pt;}
.x8b{left:297.754667pt;}
.x86{left:299.677333pt;}
.x33{left:302.681333pt;}
.xc6{left:303.624000pt;}
.xb4{left:308.005333pt;}
.xcf{left:309.418667pt;}
.x51{left:316.582667pt;}
.x1e{left:317.701333pt;}
.x34{left:320.489333pt;}
.xe6{left:321.761333pt;}
.xb5{left:327.532000pt;}
.xa5{left:329.481333pt;}
.x1f{left:330.985333pt;}
.x70{left:332.136000pt;}
.x35{left:333.773333pt;}
.x77{left:337.305333pt;}
.xbd{left:339.953333pt;}
.xd0{left:341.056000pt;}
.x68{left:344.496000pt;}
.x71{left:345.418667pt;}
.xc3{left:346.716000pt;}
.xc7{left:347.662667pt;}
.x78{left:350.873333pt;}
.x5b{left:353.102667pt;}
.x58{left:356.174667pt;}
.x69{left:357.778667pt;}
.x5c{left:358.814667pt;}
.xd1{left:360.981333pt;}
.xbe{left:363.061333pt;}
.xc4{left:366.044000pt;}
.x9c{left:368.428000pt;}
.x52{left:369.993333pt;}
.x59{left:372.845333pt;}
.x9d{left:375.514667pt;}
.xcb{left:377.845333pt;}
.x2a{left:379.421333pt;}
.x64{left:381.817333pt;}
.x53{left:383.277333pt;}
.x82{left:385.189333pt;}
.x5a{left:386.128000pt;}
.x41{left:387.048000pt;}
.x2b{left:392.705333pt;}
.x65{left:395.100000pt;}
.x2c{left:396.000000pt;}
.x5e{left:396.898667pt;}
.x66{left:398.408000pt;}
.x42{left:400.330667pt;}
.x89{left:401.625333pt;}
.x39{left:403.310667pt;}
.x8c{left:406.718667pt;}
.x80{left:407.634667pt;}
.x2d{left:409.282667pt;}
.x5f{left:410.182667pt;}
.x67{left:411.692000pt;}
.x3a{left:414.157333pt;}
.x2e{left:415.230667pt;}
.x81{left:420.917333pt;}
.x5d{left:422.869333pt;}
.x1c{left:425.808000pt;}
.x8e{left:427.493333pt;}
.x2f{left:428.514667pt;}
.xd7{left:430.586667pt;}
.xa8{left:435.470667pt;}
.x1d{left:439.090667pt;}
.xbc{left:441.236000pt;}
.x20{left:442.921333pt;}
.x60{left:445.645333pt;}
.x61{left:451.357333pt;}
.xd{left:452.376000pt;}
.xe{left:459.017333pt;}
.x98{left:460.624000pt;}
.x3b{left:471.038667pt;}
.xdf{left:472.138667pt;}
.x99{left:473.908000pt;}
.x3c{left:478.910667pt;}
.xd4{left:480.598667pt;}
.x21{left:487.301333pt;}
.x22{left:491.702667pt;}
.xaf{left:493.586667pt;}
.xb6{left:495.252000pt;}
.xa1{left:500.957333pt;}
.x23{left:504.985333pt;}
.x26{left:505.953333pt;}
.xd5{left:507.298667pt;}
.xcc{left:512.400000pt;}
.x3d{left:513.481333pt;}
.x91{left:514.917333pt;}
.x96{left:517.006667pt;}
.x27{left:518.033333pt;}
.xba{left:519.864000pt;}
.xb8{left:523.096000pt;}
.x8f{left:524.412000pt;}
.x4d{left:525.350667pt;}
.x3e{left:526.765333pt;}
.x97{left:530.290667pt;}
.x90{left:537.696000pt;}
.x4e{left:538.633333pt;}
.xbb{left:539.789333pt;}
.x9e{left:541.365333pt;}
.xb9{left:543.021333pt;}
.x72{left:545.286667pt;}
.x9f{left:547.202667pt;}
.x45{left:550.858667pt;}
.xc0{left:552.816000pt;}
.x4f{left:554.224000pt;}
.xce{left:556.061333pt;}
.x73{left:558.570667pt;}
.x46{left:564.142667pt;}
.x50{left:567.508000pt;}
.xc1{left:572.741333pt;}
.x84{left:576.225333pt;}
.xa6{left:578.972000pt;}
.xa2{left:580.682667pt;}
.xe3{left:582.873333pt;}
.x85{left:584.146667pt;}
.x92{left:585.466667pt;}
.xa7{left:587.718667pt;}
.xd2{left:588.828000pt;}
.x9a{left:589.912000pt;}
.x6c{left:593.864000pt;}
.x6a{left:595.705333pt;}
.xe8{left:597.113333pt;}
.x44{left:599.080000pt;}
.xdd{left:600.024000pt;}
.x9b{left:603.194667pt;}
.x8{left:606.137333pt;}
.x6d{left:607.146667pt;}
.x54{left:608.597333pt;}
.x6e{left:610.444000pt;}
.x9{left:612.776000pt;}
.xb0{left:615.265333pt;}
.xa9{left:619.036000pt;}
.xe2{left:619.980000pt;}
.x55{left:621.880000pt;}
.x15{left:622.770667pt;}
.x47{left:624.413333pt;}
.x6b{left:625.660000pt;}
.x6f{left:627.025333pt;}
.x16{left:629.413333pt;}
.xc2{left:630.636000pt;}
.xeb{left:631.656000pt;}
.x83{left:632.658667pt;}
.xa0{left:633.637333pt;}
.xb1{left:634.792000pt;}
.x17{left:636.094667pt;}
.x48{left:637.697333pt;}
.x43{left:638.946667pt;}
.x49{left:641.084000pt;}
.x18{left:642.736000pt;}
.xa3{left:644.376000pt;}
.x36{left:646.057333pt;}
.xca{left:648.714667pt;}
.x87{left:649.680000pt;}
.x24{left:652.372000pt;}
.xe4{left:653.301333pt;}
.x4a{left:654.368000pt;}
.xa4{left:657.660000pt;}
.x37{left:659.340000pt;}
.xb2{left:661.221333pt;}
.x88{left:662.962667pt;}
.xe9{left:665.881333pt;}
.x7e{left:666.937333pt;}
.x76{left:668.425333pt;}
.xdb{left:670.466667pt;}
.x1a{left:672.882667pt;}
.x93{left:676.762667pt;}
.xae{left:678.502667pt;}
.x7f{left:679.829333pt;}
.xb3{left:680.748000pt;}
.x4b{left:682.194667pt;}
.x13{left:683.592000pt;}
.x1b{left:686.165333pt;}
.x74{left:687.080000pt;}
.x14{left:690.234667pt;}
.x62{left:691.602667pt;}
.xd6{left:692.520000pt;}
.x25{left:693.417333pt;}
.xe1{left:694.392000pt;}
.x4c{left:695.478667pt;}
.x30{left:698.597333pt;}
.x75{left:700.364000pt;}
.x56{left:701.508000pt;}
.xde{left:702.616000pt;}
.x63{left:704.885333pt;}
.xc5{left:706.204000pt;}
.x28{left:710.470667pt;}
.x31{left:711.880000pt;}
.x57{left:714.790667pt;}
.xb{left:717.684000pt;}
.x79{left:719.357333pt;}
.xd9{left:720.464000pt;}
.xb7{left:721.426667pt;}
.xc{left:724.325333pt;}
.xe7{left:725.350667pt;}
.x29{left:727.052000pt;}
.x7a{left:728.104000pt;}
.xf{left:733.484000pt;}
.x11{left:734.724000pt;}
.x10{left:740.126667pt;}
.x12{left:741.365333pt;}
.x7b{left:743.973333pt;}
}




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