
    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_f9486ea266f9dff6f4fb810b.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_31643bbbf47f7507f89bfbb2.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_96d54ea31ecc257d06bd1809.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933000;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_68fa5b73fcd8937e53f3ced8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.010000;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_76d83ce1d52f64983e139331.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894000;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_fb26bc58a18897e943657b31.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.943000;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_596deb0d5fef8b13a0ecc969.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_72c5a2e7aa370a53573c6027.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_905e17c8187f750d386f71db.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.125000;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:ffa;src:url('chunks/assets/font_ea111274f8dc70d6c035e797.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.703000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m1a{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);}
.m15{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);}
.m27{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);}
.m1{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);}
.m26{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);}
.m3{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);}
.m25{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);}
.m4{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);}
.m28{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);}
.m23{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);}
.m22{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);}
.m17{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m6{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);}
.m24{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);}
.mb{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);}
.m20{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);}
.m1c{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);}
.m29{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);}
.md{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m12{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);}
.m19{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.mc{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);}
.m8{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);}
.m18{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);}
.m16{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);}
.m7{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);}
.m11{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.364000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls8{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000088px;}
.ls13{letter-spacing:0.000466px;}
.ls36{letter-spacing:0.000478px;}
.ls4{letter-spacing:0.000583px;}
.ls24{letter-spacing:0.000800px;}
.ls14{letter-spacing:0.001155px;}
.ls1b{letter-spacing:0.001938px;}
.ls25{letter-spacing:0.002090px;}
.ls0{letter-spacing:0.002302px;}
.ls35{letter-spacing:0.002544px;}
.lsf{letter-spacing:0.003639px;}
.ls2c{letter-spacing:0.004800px;}
.ls2{letter-spacing:0.005108px;}
.ls1{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.954850px;}
.ls21{letter-spacing:12.038155px;}
.ls1f{letter-spacing:12.442237px;}
.ls34{letter-spacing:12.760604px;}
.ls2b{letter-spacing:12.919788px;}
.ls37{letter-spacing:12.932033px;}
.ls22{letter-spacing:13.152441px;}
.ls20{letter-spacing:13.155508px;}
.ls2e{letter-spacing:13.320988px;}
.ls28{letter-spacing:13.336114px;}
.ls32{letter-spacing:13.391216px;}
.ls16{letter-spacing:13.398464px;}
.ls1a{letter-spacing:13.445505px;}
.ls15{letter-spacing:13.448400px;}
.ls1c{letter-spacing:13.454400px;}
.ls1d{letter-spacing:13.668941px;}
.ls26{letter-spacing:13.675273px;}
.ls27{letter-spacing:13.690359px;}
.ls29{letter-spacing:13.727951px;}
.ls2a{letter-spacing:13.733699px;}
.ls19{letter-spacing:14.244518px;}
.ls23{letter-spacing:14.656282px;}
.ls11{letter-spacing:14.782019px;}
.ls3{letter-spacing:14.943634px;}
.lsd{letter-spacing:14.988753px;}
.lse{letter-spacing:15.037733px;}
.ls10{letter-spacing:15.116952px;}
.ls33{letter-spacing:15.168047px;}
.ls9{letter-spacing:15.202889px;}
.lsa{letter-spacing:15.209005px;}
.ls12{letter-spacing:15.257524px;}
.lsb{letter-spacing:15.311938px;}
.ls31{letter-spacing:15.503341px;}
.ls2f{letter-spacing:16.491576px;}
.ls2d{letter-spacing:16.911624px;}
.ls3a{letter-spacing:16.950400px;}
.ls39{letter-spacing:17.191576px;}
.ls30{letter-spacing:17.438635px;}
.lsc{letter-spacing:17.626688px;}
.ls38{letter-spacing:18.415106px;}
.ls1e{letter-spacing:18.420988px;}
.ls18{letter-spacing:18.850400px;}
.ls5{letter-spacing:62.761200px;}
.ls6{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;}
}
.ws62{word-spacing:-14.943900px;}
.wsb4{word-spacing:-13.449600px;}
.ws2c{word-spacing:-11.955150px;}
.wsc{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws34{word-spacing:-3.347434px;}
.ws78{word-spacing:-3.287658px;}
.wsae{word-spacing:-2.797517px;}
.ws7a{word-spacing:-2.689902px;}
.ws57{word-spacing:-2.570351px;}
.ws54{word-spacing:-2.331248px;}
.wsab{word-spacing:-2.151922px;}
.wsd8{word-spacing:-1.835149px;}
.wsd7{word-spacing:-1.829146px;}
.wsc0{word-spacing:-1.775347px;}
.ws97{word-spacing:-1.733492px;}
.ws74{word-spacing:-1.721549px;}
.ws2d{word-spacing:-1.613941px;}
.ws65{word-spacing:-1.494390px;}
.wsd9{word-spacing:-1.398758px;}
.wsce{word-spacing:-1.344960px;}
.wsd0{word-spacing:-1.291162px;}
.wsac{word-spacing:-1.255288px;}
.ws9f{word-spacing:-1.135736px;}
.wscf{word-spacing:-1.022170px;}
.wsa7{word-spacing:-1.016185px;}
.wsec{word-spacing:-0.968371px;}
.ws113{word-spacing:-0.914573px;}
.wse6{word-spacing:-0.860774px;}
.ws3c{word-spacing:-0.717307px;}
.wsed{word-spacing:-0.699379px;}
.ws91{word-spacing:-0.657532px;}
.wsd2{word-spacing:-0.591782px;}
.wsee{word-spacing:-0.537984px;}
.ws76{word-spacing:-0.478205px;}
.wsdb{word-spacing:-0.430387px;}
.ws52{word-spacing:-0.418429px;}
.ws10f{word-spacing:-0.376589px;}
.ws4f{word-spacing:-0.358654px;}
.wsd5{word-spacing:-0.322790px;}
.ws69{word-spacing:-0.313310px;}
.ws4c{word-spacing:-0.298878px;}
.ws16{word-spacing:-0.268992px;}
.ws2e{word-spacing:-0.239102px;}
.ws9e{word-spacing:-0.224834px;}
.ws18{word-spacing:-0.215194px;}
.ws35{word-spacing:-0.179327px;}
.ws1c{word-spacing:-0.161395px;}
.wsf9{word-spacing:-0.156856px;}
.ws22{word-spacing:-0.119551px;}
.ws5c{word-spacing:-0.107597px;}
.ws72{word-spacing:-0.097822px;}
.ws73{word-spacing:-0.091991px;}
.ws8e{word-spacing:-0.085347px;}
.wsa2{word-spacing:-0.070217px;}
.wsa1{word-spacing:-0.060474px;}
.wsa0{word-spacing:-0.059967px;}
.ws2f{word-spacing:-0.059776px;}
.ws1a{word-spacing:-0.053798px;}
.wsd1{word-spacing:-0.028733px;}
.ws120{word-spacing:-0.010282px;}
.wsef{word-spacing:-0.008467px;}
.wsc8{word-spacing:-0.007526px;}
.wsc6{word-spacing:-0.006998px;}
.wsd{word-spacing:-0.006250px;}
.ws98{word-spacing:-0.005624px;}
.wsf8{word-spacing:-0.005088px;}
.wsfe{word-spacing:-0.004224px;}
.wsb3{word-spacing:-0.003955px;}
.wsf1{word-spacing:-0.003926px;}
.ws115{word-spacing:-0.003466px;}
.wsa3{word-spacing:-0.003275px;}
.wsfc{word-spacing:-0.002822px;}
.ws2b{word-spacing:-0.002366px;}
.wsda{word-spacing:-0.002141px;}
.wsba{word-spacing:-0.001939px;}
.ws117{word-spacing:-0.001200px;}
.wsb{word-spacing:-0.001150px;}
.wscb{word-spacing:-0.000806px;}
.wsfd{word-spacing:-0.000490px;}
.ws107{word-spacing:-0.000029px;}
.ws1{word-spacing:0.000000px;}
.ws8d{word-spacing:0.000612px;}
.ws3{word-spacing:0.001720px;}
.ws90{word-spacing:0.008950px;}
.ws88{word-spacing:0.028250px;}
.ws83{word-spacing:0.031075px;}
.ws87{word-spacing:0.040615px;}
.ws84{word-spacing:0.040667px;}
.ws86{word-spacing:0.046678px;}
.ws15{word-spacing:0.053798px;}
.ws93{word-spacing:0.058137px;}
.ws95{word-spacing:0.059412px;}
.ws33{word-spacing:0.059776px;}
.ws94{word-spacing:0.071301px;}
.ws67{word-spacing:0.098925px;}
.ws85{word-spacing:0.099705px;}
.wse5{word-spacing:0.107597px;}
.ws50{word-spacing:0.119551px;}
.ws10c{word-spacing:0.141448px;}
.wse{word-spacing:0.143462px;}
.ws10d{word-spacing:0.143852px;}
.ws6d{word-spacing:0.147259px;}
.ws92{word-spacing:0.155682px;}
.ws11{word-spacing:0.161395px;}
.ws2{word-spacing:0.167371px;}
.ws31{word-spacing:0.179327px;}
.ws6a{word-spacing:0.203285px;}
.wsbc{word-spacing:0.215194px;}
.ws8c{word-spacing:0.219037px;}
.ws38{word-spacing:0.239102px;}
.wsc5{word-spacing:0.268992px;}
.ws68{word-spacing:0.293436px;}
.ws28{word-spacing:0.298878px;}
.ws12{word-spacing:0.322790px;}
.ws4e{word-spacing:0.358654px;}
.ws11e{word-spacing:0.376589px;}
.ws25{word-spacing:0.418429px;}
.ws55{word-spacing:0.478205px;}
.wsb0{word-spacing:0.537984px;}
.wsc1{word-spacing:0.591782px;}
.ws61{word-spacing:0.597756px;}
.ws75{word-spacing:0.645581px;}
.ws56{word-spacing:0.717307px;}
.wse8{word-spacing:0.753178px;}
.ws79{word-spacing:0.777083px;}
.ws5e{word-spacing:0.806976px;}
.ws45{word-spacing:0.836858px;}
.wsdd{word-spacing:0.914573px;}
.ws4d{word-spacing:0.956410px;}
.ws11f{word-spacing:0.968371px;}
.ws44{word-spacing:1.016185px;}
.ws1f{word-spacing:1.022170px;}
.ws66{word-spacing:1.135736px;}
.wsde{word-spacing:1.183565px;}
.wsa6{word-spacing:1.195512px;}
.ws14{word-spacing:1.291162px;}
.ws48{word-spacing:1.315063px;}
.ws109{word-spacing:1.344960px;}
.wsa5{word-spacing:1.374839px;}
.wsa{word-spacing:1.380812px;}
.ws58{word-spacing:1.434614px;}
.wse9{word-spacing:1.452557px;}
.wsfa{word-spacing:1.560154px;}
.ws63{word-spacing:1.607260px;}
.ws64{word-spacing:1.613941px;}
.ws13{word-spacing:1.613952px;}
.ws8f{word-spacing:1.673717px;}
.ws10a{word-spacing:1.721549px;}
.ws19{word-spacing:1.775347px;}
.ws1b{word-spacing:1.829146px;}
.ws39{word-spacing:1.853044px;}
.wseb{word-spacing:1.936742px;}
.ws17{word-spacing:1.990541px;}
.wsb6{word-spacing:2.044339px;}
.ws70{word-spacing:2.078307px;}
.ws6f{word-spacing:2.092146px;}
.wse4{word-spacing:2.098138px;}
.ws3b{word-spacing:2.151922px;}
.wse2{word-spacing:2.205734px;}
.ws47{word-spacing:2.211697px;}
.wsb2{word-spacing:2.313331px;}
.ws37{word-spacing:2.331248px;}
.ws7e{word-spacing:2.391024px;}
.ws102{word-spacing:2.420928px;}
.ws49{word-spacing:2.450800px;}
.ws0{word-spacing:2.511541px;}
.wsf0{word-spacing:2.528525px;}
.ws1e{word-spacing:2.582323px;}
.ws4b{word-spacing:2.630126px;}
.ws71{word-spacing:2.689902px;}
.ws11a{word-spacing:2.743718px;}
.ws24{word-spacing:2.749678px;}
.wsaa{word-spacing:2.809453px;}
.ws7f{word-spacing:2.869229px;}
.wsf{word-spacing:2.869236px;}
.ws6b{word-spacing:2.929004px;}
.ws11b{word-spacing:2.958912px;}
.ws6c{word-spacing:2.988780px;}
.ws20{word-spacing:2.998988px;}
.ws100{word-spacing:3.012710px;}
.ws7b{word-spacing:3.048556px;}
.wsbb{word-spacing:3.066509px;}
.ws7c{word-spacing:3.108331px;}
.ws104{word-spacing:3.120307px;}
.ws4a{word-spacing:3.168107px;}
.wse7{word-spacing:3.174106px;}
.wsf5{word-spacing:3.218429px;}
.ws114{word-spacing:3.218688px;}
.wsea{word-spacing:3.219600px;}
.wsca{word-spacing:3.220512px;}
.wsd6{word-spacing:3.220531px;}
.wsf4{word-spacing:3.220963px;}
.wsf6{word-spacing:3.221030px;}
.wsb8{word-spacing:3.221098px;}
.wsfb{word-spacing:3.221107px;}
.ws110{word-spacing:3.221376px;}
.wsff{word-spacing:3.221482px;}
.ws111{word-spacing:3.222326px;}
.ws108{word-spacing:3.222394px;}
.wsd3{word-spacing:3.222528px;}
.ws122{word-spacing:3.222893px;}
.wsc4{word-spacing:3.223334px;}
.wsc2{word-spacing:3.223402px;}
.ws101{word-spacing:3.224112px;}
.wsc7{word-spacing:3.224256px;}
.wse0{word-spacing:3.224333px;}
.wsb1{word-spacing:3.224822px;}
.ws127{word-spacing:3.225600px;}
.wsf3{word-spacing:3.225869px;}
.ws119{word-spacing:3.225888px;}
.wsdf{word-spacing:3.226118px;}
.ws128{word-spacing:3.227203px;}
.ws8b{word-spacing:3.227882px;}
.wsb5{word-spacing:3.227904px;}
.wsf7{word-spacing:3.252192px;}
.ws11d{word-spacing:3.281702px;}
.wsdc{word-spacing:3.335501px;}
.ws7d{word-spacing:3.347434px;}
.wsb9{word-spacing:3.389299px;}
.ws126{word-spacing:3.443098px;}
.ws10{word-spacing:3.444826px;}
.ws5a{word-spacing:3.466985px;}
.ws125{word-spacing:3.496896px;}
.wsa8{word-spacing:3.526760px;}
.wse1{word-spacing:3.536044px;}
.wsd4{word-spacing:3.550694px;}
.ws21{word-spacing:3.586536px;}
.ws1d{word-spacing:3.604493px;}
.ws3d{word-spacing:3.646312px;}
.ws116{word-spacing:3.658291px;}
.ws77{word-spacing:3.706087px;}
.ws105{word-spacing:3.712090px;}
.ws29{word-spacing:3.765863px;}
.ws11c{word-spacing:3.765888px;}
.ws53{word-spacing:3.825638px;}
.ws80{word-spacing:3.858235px;}
.ws81{word-spacing:3.868479px;}
.ws82{word-spacing:3.870081px;}
.ws3f{word-spacing:3.885414px;}
.wscc{word-spacing:3.927283px;}
.ws5b{word-spacing:3.981082px;}
.ws99{word-spacing:4.004965px;}
.ws9a{word-spacing:4.064741px;}
.ws60{word-spacing:4.124516px;}
.ws5f{word-spacing:4.184292px;}
.ws40{word-spacing:4.244068px;}
.wsbd{word-spacing:4.250074px;}
.ws41{word-spacing:4.303843px;}
.ws5d{word-spacing:4.303872px;}
.ws10e{word-spacing:4.357670px;}
.ws112{word-spacing:4.465267px;}
.ws26{word-spacing:4.542946px;}
.ws30{word-spacing:4.602721px;}
.ws6e{word-spacing:4.606925px;}
.wsc3{word-spacing:4.626662px;}
.ws46{word-spacing:4.722272px;}
.ws59{word-spacing:4.782048px;}
.wsc9{word-spacing:4.788058px;}
.ws9d{word-spacing:4.841824px;}
.wscd{word-spacing:4.949453px;}
.ws8a{word-spacing:5.021150px;}
.ws2a{word-spacing:5.080926px;}
.ws42{word-spacing:5.140702px;}
.ws89{word-spacing:5.169906px;}
.ws27{word-spacing:5.200477px;}
.ws96{word-spacing:5.320028px;}
.wsbf{word-spacing:5.379840px;}
.ws10b{word-spacing:5.433638px;}
.ws8{word-spacing:5.481407px;}
.ws3e{word-spacing:5.618906px;}
.ws32{word-spacing:5.738458px;}
.ws121{word-spacing:5.756429px;}
.wsad{word-spacing:5.810227px;}
.wsa9{word-spacing:5.917784px;}
.wse3{word-spacing:6.133018px;}
.wsa4{word-spacing:6.276438px;}
.wsb7{word-spacing:6.402010px;}
.wsaf{word-spacing:6.455765px;}
.ws43{word-spacing:6.575316px;}
.ws9c{word-spacing:6.723113px;}
.ws9b{word-spacing:6.754643px;}
.ws23{word-spacing:7.591501px;}
.ws51{word-spacing:7.830604px;}
.ws36{word-spacing:8.428360px;}
.ws3a{word-spacing:8.488135px;}
.ws106{word-spacing:8.500147px;}
.wsf2{word-spacing:9.522317px;}
.ws6{word-spacing:9.833058px;}
.ws103{word-spacing:10.813478px;}
.ws123{word-spacing:11.512858px;}
.ws7{word-spacing:11.841512px;}
.ws124{word-spacing:11.943245px;}
.ws118{word-spacing:15.440141px;}
.wsbe{word-spacing:16.516109px;}
.ws5{word-spacing:22.339429px;}
.ws9{word-spacing:22.720640px;}
._4{margin-left:-11.943245px;}
._19{margin-left:-7.161121px;}
._d{margin-left:-5.977490px;}
._1b{margin-left:-4.955513px;}
._1{margin-left:-3.849538px;}
._6{margin-left:-2.630133px;}
._0{margin-left:-1.506341px;}
._5{width:2.999503px;}
._7{width:11.094379px;}
._2{width:12.971268px;}
._b{width:14.417971px;}
._9{width:16.031923px;}
._c{width:17.269286px;}
._e{width:18.823451px;}
._11{width:19.905275px;}
._8{width:21.035174px;}
._a{width:22.702925px;}
._1a{width:23.910240px;}
._3{width:25.314894px;}
._f{width:27.257674px;}
._17{width:29.131289px;}
._18{width:30.503678px;}
._1f{width:31.589909px;}
._10{width:32.637478px;}
._12{width:34.251419px;}
._15{width:35.817535px;}
._1d{width:37.897730px;}
._1c{width:39.272569px;}
._16{width:44.473046px;}
._20{width:61.868160px;}
._13{width:355.293220px;}
._1e{width:2366.525291px;}
._14{width:2390.435291px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(34,34,61);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs8{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:109.609560px;}
.y0{bottom:0.000000px;}
.y18{bottom:16.704213px;}
.y46{bottom:31.890000px;}
.y16{bottom:104.646000px;}
.y45{bottom:112.036500px;}
.y135{bottom:115.428000px;}
.y18c{bottom:116.458500px;}
.yc2{bottom:116.995500px;}
.yf5{bottom:117.802500px;}
.ya6{bottom:119.148000px;}
.yb9{bottom:119.562000px;}
.y7d{bottom:119.596500px;}
.y117{bottom:122.286000px;}
.y15{bottom:122.535000px;}
.y44{bottom:130.866000px;}
.y18b{bottom:133.719000px;}
.y134{bottom:134.257500px;}
.yc1{bottom:136.227000px;}
.yf4{bottom:136.632000px;}
.ya5{bottom:137.977500px;}
.yb8{bottom:138.391500px;}
.y7c{bottom:138.426000px;}
.y14{bottom:140.422500px;}
.y116{bottom:141.115500px;}
.y43{bottom:149.695500px;}
.y156{bottom:150.441000px;}
.y18a{bottom:150.978000px;}
.y133{bottom:153.087000px;}
.yc0{bottom:155.460000px;}
.yf3{bottom:155.461500px;}
.ya4{bottom:156.807000px;}
.yb7{bottom:157.221000px;}
.y7b{bottom:157.255500px;}
.y13{bottom:158.310000px;}
.y115{bottom:159.945000px;}
.y155{bottom:167.701500px;}
.y189{bottom:168.238500px;}
.y42{bottom:168.525000px;}
.y132{bottom:171.916500px;}
.yf2{bottom:174.291000px;}
.ybf{bottom:174.693000px;}
.ya3{bottom:175.636500px;}
.yb6{bottom:176.050500px;}
.y7a{bottom:176.085000px;}
.y12{bottom:176.199000px;}
.y114{bottom:178.774500px;}
.y154{bottom:184.962000px;}
.y188{bottom:185.499000px;}
.y41{bottom:187.354500px;}
.y131{bottom:190.746000px;}
.yf1{bottom:193.120500px;}
.y11{bottom:194.086500px;}
.ya2{bottom:194.466000px;}
.yb5{bottom:194.880000px;}
.y79{bottom:194.914500px;}
.y113{bottom:197.604000px;}
.y153{bottom:202.222500px;}
.y187{bottom:202.759500px;}
.y40{bottom:206.184000px;}
.y130{bottom:209.575500px;}
.yf0{bottom:211.950000px;}
.y10{bottom:211.974000px;}
.ya1{bottom:213.295500px;}
.yb4{bottom:213.709500px;}
.y78{bottom:213.744000px;}
.y112{bottom:216.433500px;}
.y152{bottom:219.483000px;}
.y186{bottom:220.020000px;}
.y3f{bottom:225.013500px;}
.y12f{bottom:228.405000px;}
.yf{bottom:229.863000px;}
.yef{bottom:230.779500px;}
.ya0{bottom:232.125000px;}
.yb3{bottom:232.539000px;}
.y77{bottom:232.573500px;}
.y111{bottom:235.263000px;}
.y151{bottom:236.742000px;}
.y185{bottom:237.280500px;}
.y3e{bottom:243.843000px;}
.y12e{bottom:247.234500px;}
.yee{bottom:249.609000px;}
.y9f{bottom:250.954500px;}
.yb2{bottom:251.368500px;}
.y76{bottom:251.403000px;}
.y150{bottom:254.002500px;}
.y110{bottom:254.092500px;}
.y184{bottom:254.541000px;}
.y3d{bottom:262.672500px;}
.y12d{bottom:266.062500px;}
.yed{bottom:268.438500px;}
.y9e{bottom:269.784000px;}
.yb0{bottom:270.198000px;}
.y75{bottom:270.232500px;}
.y14f{bottom:271.263000px;}
.y183{bottom:271.801500px;}
.y10f{bottom:272.922000px;}
.yb1{bottom:275.622000px;}
.y3c{bottom:281.502000px;}
.y12c{bottom:284.892000px;}
.yec{bottom:287.268000px;}
.y14e{bottom:288.523500px;}
.y9d{bottom:288.613500px;}
.yaf{bottom:289.027500px;}
.y74{bottom:289.062000px;}
.y10e{bottom:291.751500px;}
.ye{bottom:298.876500px;}
.y12b{bottom:303.721500px;}
.y3b{bottom:304.815000px;}
.y14d{bottom:305.784000px;}
.yeb{bottom:306.097500px;}
.y182{bottom:306.321000px;}
.y9c{bottom:307.443000px;}
.yae{bottom:307.857000px;}
.y73{bottom:307.891500px;}
.y10d{bottom:310.581000px;}
.yd{bottom:316.764000px;}
.y12a{bottom:322.551000px;}
.y14c{bottom:323.044500px;}
.y181{bottom:323.581500px;}
.yea{bottom:324.927000px;}
.y9b{bottom:326.272500px;}
.y72{bottom:326.719500px;}
.y10c{bottom:329.410500px;}
.yc{bottom:334.653000px;}
.y14b{bottom:340.305000px;}
.y180{bottom:340.842000px;}
.y129{bottom:341.380500px;}
.yad{bottom:341.422500px;}
.ye9{bottom:343.756500px;}
.y9a{bottom:345.102000px;}
.y71{bottom:345.549000px;}
.y10b{bottom:348.240000px;}
.yb{bottom:352.540500px;}
.y14a{bottom:357.565500px;}
.y17f{bottom:358.102500px;}
.y128{bottom:360.210000px;}
.yac{bottom:360.655500px;}
.ye8{bottom:362.586000px;}
.y99{bottom:363.931500px;}
.y70{bottom:364.378500px;}
.y10a{bottom:367.069500px;}
.y149{bottom:374.824500px;}
.y17e{bottom:375.363000px;}
.yab{bottom:379.888500px;}
.y3a{bottom:379.965000px;}
.ya{bottom:380.889000px;}
.ye7{bottom:381.415500px;}
.y98{bottom:382.761000px;}
.y6f{bottom:383.208000px;}
.y127{bottom:383.523000px;}
.y109{bottom:385.899000px;}
.y148{bottom:392.085000px;}
.y17d{bottom:392.623500px;}
.yaa{bottom:399.121500px;}
.y39{bottom:399.421500px;}
.ye6{bottom:400.245000px;}
.y97{bottom:401.589000px;}
.y6e{bottom:402.037500px;}
.y108{bottom:404.728500px;}
.y9{bottom:407.743500px;}
.y147{bottom:409.345500px;}
.y17c{bottom:409.884000px;}
.y126{bottom:417.147000px;}
.ya9{bottom:418.353000px;}
.ye5{bottom:419.074500px;}
.y96{bottom:420.418500px;}
.y6d{bottom:420.867000px;}
.y107{bottom:423.558000px;}
.y8{bottom:425.631000px;}
.y146{bottom:426.606000px;}
.y17b{bottom:427.144500px;}
.y125{bottom:435.976500px;}
.y38{bottom:436.812000px;}
.ya8{bottom:437.586000px;}
.ye4{bottom:437.904000px;}
.y95{bottom:439.248000px;}
.y6c{bottom:439.696500px;}
.y106{bottom:442.387500px;}
.y7{bottom:443.520000px;}
.y145{bottom:443.866500px;}
.y17a{bottom:444.403500px;}
.y124{bottom:454.806000px;}
.y37{bottom:456.268500px;}
.ye3{bottom:456.733500px;}
.ya7{bottom:456.819000px;}
.y94{bottom:458.077500px;}
.y6b{bottom:458.526000px;}
.y144{bottom:461.127000px;}
.y105{bottom:461.217000px;}
.y6{bottom:461.407500px;}
.y179{bottom:461.664000px;}
.y123{bottom:473.635500px;}
.ye2{bottom:475.563000px;}
.y36{bottom:475.726500px;}
.y93{bottom:476.907000px;}
.y6a{bottom:477.355500px;}
.y143{bottom:478.387500px;}
.y178{bottom:478.924500px;}
.y5{bottom:479.295000px;}
.y104{bottom:480.045000px;}
.y122{bottom:492.465000px;}
.ye1{bottom:494.392500px;}
.y35{bottom:495.183000px;}
.y142{bottom:495.648000px;}
.y92{bottom:495.736500px;}
.y69{bottom:496.185000px;}
.y4{bottom:497.184000px;}
.y103{bottom:498.874500px;}
.y121{bottom:511.294500px;}
.y141{bottom:512.908500px;}
.ye0{bottom:513.222000px;}
.y177{bottom:513.445500px;}
.y91{bottom:514.566000px;}
.y34{bottom:514.639500px;}
.y68{bottom:515.014500px;}
.y3{bottom:515.071500px;}
.y102{bottom:517.704000px;}
.y120{bottom:530.124000px;}
.y140{bottom:530.167500px;}
.y176{bottom:530.706000px;}
.ydf{bottom:532.051500px;}
.y2{bottom:532.959000px;}
.y90{bottom:533.395500px;}
.y67{bottom:533.844000px;}
.y33{bottom:534.097500px;}
.y101{bottom:536.533500px;}
.y13f{bottom:547.428000px;}
.y175{bottom:547.966500px;}
.y11f{bottom:548.953500px;}
.y1{bottom:550.848000px;}
.yde{bottom:550.881000px;}
.y8f{bottom:552.225000px;}
.y66{bottom:552.673500px;}
.y32{bottom:553.554000px;}
.y100{bottom:555.363000px;}
.y13e{bottom:564.688500px;}
.y174{bottom:565.227000px;}
.y11e{bottom:567.783000px;}
.ydd{bottom:569.710500px;}
.y8e{bottom:571.054500px;}
.y65{bottom:571.503000px;}
.y31{bottom:573.010500px;}
.yfe{bottom:574.192500px;}
.yff{bottom:579.618000px;}
.y13d{bottom:581.949000px;}
.y173{bottom:582.487500px;}
.ydc{bottom:588.538500px;}
.y8d{bottom:589.884000px;}
.y64{bottom:590.332500px;}
.y30{bottom:592.468500px;}
.yfd{bottom:593.022000px;}
.y172{bottom:599.746500px;}
.y11d{bottom:601.348500px;}
.y13c{bottom:603.693000px;}
.ydb{bottom:607.368000px;}
.y8c{bottom:608.713500px;}
.y63{bottom:609.162000px;}
.yfc{bottom:611.851500px;}
.y2f{bottom:611.925000px;}
.y171{bottom:617.007000px;}
.y11c{bottom:620.581500px;}
.yda{bottom:626.197500px;}
.y8b{bottom:627.543000px;}
.y62{bottom:627.991500px;}
.yfb{bottom:630.681000px;}
.y2e{bottom:631.383000px;}
.y170{bottom:634.267500px;}
.y13b{bottom:637.317000px;}
.y11b{bottom:639.814500px;}
.y8a{bottom:646.372500px;}
.y61{bottom:646.821000px;}
.yd9{bottom:649.510500px;}
.y2d{bottom:650.839500px;}
.y16f{bottom:651.528000px;}
.ybe{bottom:652.245000px;}
.y11a{bottom:659.047500px;}
.y13a{bottom:663.856500px;}
.y89{bottom:665.202000px;}
.y60{bottom:665.650500px;}
.yfa{bottom:668.340000px;}
.y16e{bottom:668.788500px;}
.y2c{bottom:670.296000px;}
.ybd{bottom:671.074500px;}
.y119{bottom:678.279000px;}
.y88{bottom:684.031500px;}
.y5f{bottom:684.480000px;}
.y16d{bottom:686.049000px;}
.yf9{bottom:687.169500px;}
.y2b{bottom:689.754000px;}
.ybc{bottom:689.904000px;}
.y139{bottom:690.397500px;}
.y118{bottom:697.512000px;}
.yd8{bottom:698.826000px;}
.y87{bottom:702.861000px;}
.y5e{bottom:703.309500px;}
.yf8{bottom:705.999000px;}
.y138{bottom:707.971500px;}
.y2a{bottom:709.210500px;}
.yd7{bottom:717.655500px;}
.y16c{bottom:720.570000px;}
.y86{bottom:721.690500px;}
.y5d{bottom:722.139000px;}
.y137{bottom:725.545500px;}
.y29{bottom:728.667000px;}
.yf7{bottom:729.312000px;}
.yd6{bottom:736.485000px;}
.y16b{bottom:737.829000px;}
.y85{bottom:740.520000px;}
.y5c{bottom:740.968500px;}
.y136{bottom:743.119500px;}
.yf6{bottom:745.003500px;}
.y28{bottom:748.125000px;}
.y16a{bottom:755.089500px;}
.yd5{bottom:755.314500px;}
.y84{bottom:759.349500px;}
.y5b{bottom:759.798000px;}
.y27{bottom:767.581500px;}
.y169{bottom:772.350000px;}
.yd4{bottom:774.144000px;}
.y83{bottom:778.179000px;}
.y5a{bottom:778.627500px;}
.ybb{bottom:784.051500px;}
.y18f{bottom:785.053500px;}
.y26{bottom:787.039500px;}
.y168{bottom:789.610500px;}
.yd3{bottom:792.973500px;}
.y82{bottom:797.008500px;}
.y59{bottom:797.457000px;}
.y18e{bottom:802.312500px;}
.yba{bottom:802.881000px;}
.y167{bottom:806.871000px;}
.yd2{bottom:811.803000px;}
.y81{bottom:815.838000px;}
.y58{bottom:816.286500px;}
.y18d{bottom:819.573000px;}
.y166{bottom:824.131500px;}
.y25{bottom:825.624000px;}
.yd1{bottom:830.632500px;}
.y80{bottom:834.667500px;}
.y57{bottom:835.114500px;}
.y165{bottom:841.392000px;}
.y24{bottom:846.103500px;}
.yd0{bottom:849.462000px;}
.y7f{bottom:853.497000px;}
.y56{bottom:853.944000px;}
.y23{bottom:857.904000px;}
.y164{bottom:858.652500px;}
.ycf{bottom:868.291500px;}
.y55{bottom:872.773500px;}
.y22{bottom:874.042500px;}
.y163{bottom:875.913000px;}
.y7e{bottom:876.808500px;}
.y21{bottom:878.382000px;}
.yce{bottom:887.121000px;}
.y20{bottom:890.182500px;}
.y54{bottom:891.603000px;}
.y162{bottom:893.172000px;}
.ycd{bottom:905.950500px;}
.y1f{bottom:906.322500px;}
.y53{bottom:910.432500px;}
.ycc{bottom:924.778500px;}
.y1e{bottom:926.802000px;}
.y161{bottom:927.693000px;}
.y52{bottom:929.262000px;}
.ycb{bottom:943.608000px;}
.y160{bottom:944.953500px;}
.y51{bottom:948.091500px;}
.y15f{bottom:962.214000px;}
.yca{bottom:962.437500px;}
.y50{bottom:966.921000px;}
.y1d{bottom:971.478000px;}
.y15e{bottom:979.474500px;}
.yc9{bottom:981.267000px;}
.y4f{bottom:985.750500px;}
.y15d{bottom:996.735000px;}
.yc8{bottom:1000.096500px;}
.y4e{bottom:1004.580000px;}
.y1c{bottom:1008.240000px;}
.y15c{bottom:1013.995500px;}
.yc7{bottom:1018.926000px;}
.y4d{bottom:1023.409500px;}
.y15b{bottom:1031.254500px;}
.y1b{bottom:1036.485000px;}
.yc6{bottom:1037.755500px;}
.y4c{bottom:1042.239000px;}
.y15a{bottom:1048.515000px;}
.yc5{bottom:1056.585000px;}
.y4b{bottom:1061.068500px;}
.y1a{bottom:1064.728500px;}
.y159{bottom:1065.775500px;}
.yc4{bottom:1075.414500px;}
.y4a{bottom:1079.898000px;}
.y158{bottom:1083.036000px;}
.y19{bottom:1092.972000px;}
.yc3{bottom:1094.244000px;}
.y49{bottom:1098.727500px;}
.y157{bottom:1100.296500px;}
.y48{bottom:1117.557000px;}
.y17{bottom:1136.460000px;}
.y47{bottom:1177.662000px;}
.h12{height:7.531726px;}
.h11{height:21.017894px;}
.ha{height:26.110157px;}
.h2{height:30.461558px;}
.h4{height:30.712615px;}
.hb{height:34.813397px;}
.hf{height:35.100320px;}
.h16{height:37.551283px;}
.h17{height:37.658880px;}
.h3{height:38.202476px;}
.hc{height:39.165235px;}
.h15{height:39.488026px;}
.h10{height:41.723369px;}
.hd{height:43.038432px;}
.he{height:43.516637px;}
.h7{height:43.875290px;}
.h14{height:49.117939px;}
.h5{height:50.930649px;}
.h13{height:54.575123px;}
.h9{height:55.352206px;}
.h6{height:74.315282px;}
.h8{height:77.469696px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:240.774407px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x2{left:58.056593px;}
.xc6{left:85.848000px;}
.xc7{left:235.003500px;}
.xc8{left:244.263000px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x4{left:269.914500px;}
.x6{left:281.479500px;}
.x9c{left:283.113000px;}
.xb2{left:296.077500px;}
.x9d{left:298.057500px;}
.x4c{left:299.956500px;}
.x17{left:302.326500px;}
.xad{left:306.846000px;}
.x52{left:312.432000px;}
.x4d{left:314.901000px;}
.x18{left:317.271000px;}
.xb3{left:318.493500px;}
.x53{left:319.903500px;}
.xaf{left:324.721500px;}
.x43{left:327.058500px;}
.xac{left:333.091500px;}
.x19{left:337.131000px;}
.xa6{left:339.376500px;}
.x44{left:342.001500px;}
.x69{left:350.067000px;}
.x1a{left:352.075500px;}
.xa7{left:354.321000px;}
.x1b{left:355.885500px;}
.x27{left:357.948000px;}
.x79{left:361.851000px;}
.x6a{left:365.010000px;}
.xb0{left:367.972500px;}
.x1c{left:370.830000px;}
.x28{left:372.891000px;}
.x5d{left:373.969500px;}
.x29{left:376.702500px;}
.x7a{left:384.417000px;}
.x5e{left:388.914000px;}
.xb1{left:390.388500px;}
.x2a{left:391.645500px;}
.x74{left:395.970000px;}
.xc2{left:397.332000px;}
.x7b{left:399.361500px;}
.x48{left:403.401000px;}
.x75{left:410.913000px;}
.x38{left:413.431500px;}
.x76{left:414.672000px;}
.x4e{left:417.084000px;}
.x49{left:418.344000px;}
.xc3{left:419.748000px;}
.x84{left:422.155500px;}
.x7d{left:424.933500px;}
.x39{left:428.374500px;}
.x77{left:429.616500px;}
.x4f{left:432.027000px;}
.x78{left:433.374000px;}
.x9e{left:436.128000px;}
.x7c{left:438.007500px;}
.xa3{left:440.439000px;}
.xab{left:442.687500px;}
.x7e{left:443.986500px;}
.x40{left:445.054500px;}
.x71{left:447.573000px;}
.xb5{left:454.147500px;}
.xb6{left:457.957500px;}
.x1d{left:459.240000px;}
.x72{left:462.517500px;}
.x41{left:467.620500px;}
.x73{left:470.139000px;}
.xae{left:471.852000px;}
.x1e{left:474.184500px;}
.x81{left:475.362000px;}
.x1f{left:477.994500px;}
.xb7{left:480.373500px;}
.x42{left:482.563500px;}
.x3a{left:485.968500px;}
.x67{left:489.598500px;}
.x20{left:492.939000px;}
.x82{left:497.680500px;}
.x2b{left:498.910500px;}
.x3b{left:500.911500px;}
.x6e{left:504.283500px;}
.xa8{left:506.422500px;}
.x6f{left:511.090500px;}
.x83{left:512.625000px;}
.x2c{left:513.855000px;}
.xf{left:516.979500px;}
.x68{left:519.096000px;}
.x64{left:521.523000px;}
.x8e{left:522.990000px;}
.x10{left:524.451000px;}
.x95{left:525.984000px;}
.x2d{left:532.609500px;}
.x2e{left:536.419500px;}
.x8f{left:537.934500px;}
.x96{left:540.927000px;}
.x97{left:544.593000px;}
.xd{left:545.752500px;}
.x70{left:546.789000px;}
.x2f{left:551.364000px;}
.xe{left:553.224000px;}
.x7{left:554.263500px;}
.x98{left:559.536000px;}
.x8{left:561.735000px;}
.x9f{left:564.189000px;}
.x32{left:566.289000px;}
.x9{left:569.356500px;}
.xb8{left:573.081000px;}
.xa4{left:575.401500px;}
.xa{left:576.828000px;}
.x99{left:578.107500px;}
.xa0{left:579.133500px;}
.x33{left:581.233500px;}
.xa1{left:583.425000px;}
.x34{left:585.045000px;}
.xa5{left:590.344500px;}
.x54{left:591.475500px;}
.x58{left:593.091000px;}
.xb9{left:595.495500px;}
.x9a{left:596.769000px;}
.x55{left:598.948500px;}
.x35{left:599.988000px;}
.x56{left:602.698500px;}
.x36{left:603.799500px;}
.x65{left:605.988000px;}
.x59{left:608.034000px;}
.x9b{left:611.713500px;}
.x5a{left:615.618000px;}
.x21{left:617.839500px;}
.x66{left:620.932500px;}
.x57{left:625.144500px;}
.x37{left:626.364000px;}
.x5b{left:630.562500px;}
.x22{left:632.784000px;}
.xc1{left:635.182500px;}
.x23{left:640.405500px;}
.x6b{left:642.537000px;}
.x88{left:648.319500px;}
.x90{left:649.716000px;}
.x8a{left:653.629500px;}
.x24{left:655.350000px;}
.x6c{left:657.480000px;}
.x50{left:658.834500px;}
.x6d{left:660.961500px;}
.x91{left:664.659000px;}
.x85{left:667.515000px;}
.x25{left:668.658000px;}
.x92{left:670.783500px;}
.x51{left:673.779000px;}
.x63{left:675.781500px;}
.xa2{left:679.423500px;}
.x11{left:683.476500px;}
.x5f{left:686.044500px;}
.x86{left:687.966000px;}
.x89{left:689.805000px;}
.x12{left:690.948000px;}
.x93{left:692.010000px;}
.x60{left:693.516000px;}
.x13{left:698.374500px;}
.x87{left:702.910500px;}
.xb4{left:704.167500px;}
.x14{left:705.847500px;}
.x94{left:706.954500px;}
.x5c{left:712.834500px;}
.xbb{left:716.793000px;}
.x61{left:718.182000px;}
.x8b{left:721.645500px;}
.xc4{left:724.371000px;}
.x30{left:726.775500px;}
.x3e{left:728.788500px;}
.xbc{left:731.736000px;}
.x62{left:733.125000px;}
.xbd{left:735.547500px;}
.x31{left:741.720000px;}
.x3f{left:743.731500px;}
.xc5{left:746.787000px;}
.xbe{left:750.490500px;}
.xbf{left:754.302000px;}
.xb{left:759.709500px;}
.xa9{left:765.201000px;}
.xc{left:767.181000px;}
.xc0{left:769.245000px;}
.x45{left:775.374000px;}
.xba{left:777.042000px;}
.xaa{left:780.145500px;}
.x15{left:790.345500px;}
.x4a{left:794.565000px;}
.x16{left:797.817000px;}
.x8c{left:799.428000px;}
.x7f{left:804.423000px;}
.x4b{left:809.509500px;}
.x80{left:811.228500px;}
.x8d{left:814.372500px;}
.x3c{left:817.698000px;}
.x46{left:818.893500px;}
.x3d{left:832.642500px;}
.x47{left:833.838000px;}
.x26{left:836.970000px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000078pt;}
.ls13{letter-spacing:0.000414pt;}
.ls36{letter-spacing:0.000425pt;}
.ls4{letter-spacing:0.000518pt;}
.ls24{letter-spacing:0.000711pt;}
.ls14{letter-spacing:0.001026pt;}
.ls1b{letter-spacing:0.001723pt;}
.ls25{letter-spacing:0.001858pt;}
.ls0{letter-spacing:0.002046pt;}
.ls35{letter-spacing:0.002262pt;}
.lsf{letter-spacing:0.003235pt;}
.ls2c{letter-spacing:0.004267pt;}
.ls2{letter-spacing:0.004541pt;}
.ls1{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.626533pt;}
.ls21{letter-spacing:10.700582pt;}
.ls1f{letter-spacing:11.059766pt;}
.ls34{letter-spacing:11.342759pt;}
.ls2b{letter-spacing:11.484256pt;}
.ls37{letter-spacing:11.495140pt;}
.ls22{letter-spacing:11.691059pt;}
.ls20{letter-spacing:11.693785pt;}
.ls2e{letter-spacing:11.840878pt;}
.ls28{letter-spacing:11.854324pt;}
.ls32{letter-spacing:11.903303pt;}
.ls16{letter-spacing:11.909745pt;}
.ls1a{letter-spacing:11.951560pt;}
.ls15{letter-spacing:11.954133pt;}
.ls1c{letter-spacing:11.959467pt;}
.ls1d{letter-spacing:12.150170pt;}
.ls26{letter-spacing:12.155798pt;}
.ls27{letter-spacing:12.169208pt;}
.ls29{letter-spacing:12.202623pt;}
.ls2a{letter-spacing:12.207733pt;}
.ls19{letter-spacing:12.661793pt;}
.ls23{letter-spacing:13.027807pt;}
.ls11{letter-spacing:13.139572pt;}
.ls3{letter-spacing:13.283230pt;}
.lsd{letter-spacing:13.323336pt;}
.lse{letter-spacing:13.366873pt;}
.ls10{letter-spacing:13.437291pt;}
.ls33{letter-spacing:13.482708pt;}
.ls9{letter-spacing:13.513679pt;}
.lsa{letter-spacing:13.519116pt;}
.ls12{letter-spacing:13.562244pt;}
.lsb{letter-spacing:13.610611pt;}
.ls31{letter-spacing:13.780748pt;}
.ls2f{letter-spacing:14.659179pt;}
.ls2d{letter-spacing:15.032555pt;}
.ls3a{letter-spacing:15.067022pt;}
.ls39{letter-spacing:15.281401pt;}
.ls30{letter-spacing:15.501009pt;}
.lsc{letter-spacing:15.668167pt;}
.ls38{letter-spacing:16.368983pt;}
.ls1e{letter-spacing:16.374212pt;}
.ls18{letter-spacing:16.755911pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ws62{word-spacing:-13.283467pt;}
.wsb4{word-spacing:-11.955200pt;}
.ws2c{word-spacing:-10.626800pt;}
.wsc{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws34{word-spacing:-2.975497pt;}
.ws78{word-spacing:-2.922363pt;}
.wsae{word-spacing:-2.486682pt;}
.ws7a{word-spacing:-2.391024pt;}
.ws57{word-spacing:-2.284756pt;}
.ws54{word-spacing:-2.072221pt;}
.wsab{word-spacing:-1.912819pt;}
.wsd8{word-spacing:-1.631243pt;}
.wsd7{word-spacing:-1.625907pt;}
.wsc0{word-spacing:-1.578086pt;}
.ws97{word-spacing:-1.540882pt;}
.ws74{word-spacing:-1.530266pt;}
.ws2d{word-spacing:-1.434614pt;}
.ws65{word-spacing:-1.328347pt;}
.wsd9{word-spacing:-1.243341pt;}
.wsce{word-spacing:-1.195520pt;}
.wsd0{word-spacing:-1.147699pt;}
.wsac{word-spacing:-1.115811pt;}
.ws9f{word-spacing:-1.009543pt;}
.wscf{word-spacing:-0.908595pt;}
.wsa7{word-spacing:-0.903276pt;}
.wsec{word-spacing:-0.860774pt;}
.ws113{word-spacing:-0.812954pt;}
.wse6{word-spacing:-0.765133pt;}
.ws3c{word-spacing:-0.637606pt;}
.wsed{word-spacing:-0.621670pt;}
.ws91{word-spacing:-0.584473pt;}
.wsd2{word-spacing:-0.526029pt;}
.wsee{word-spacing:-0.478208pt;}
.ws76{word-spacing:-0.425071pt;}
.wsdb{word-spacing:-0.382566pt;}
.ws52{word-spacing:-0.371937pt;}
.ws10f{word-spacing:-0.334746pt;}
.ws4f{word-spacing:-0.318803pt;}
.wsd5{word-spacing:-0.286925pt;}
.ws69{word-spacing:-0.278498pt;}
.ws4c{word-spacing:-0.265669pt;}
.ws16{word-spacing:-0.239104pt;}
.ws2e{word-spacing:-0.212535pt;}
.ws9e{word-spacing:-0.199853pt;}
.ws18{word-spacing:-0.191283pt;}
.ws35{word-spacing:-0.159402pt;}
.ws1c{word-spacing:-0.143462pt;}
.wsf9{word-spacing:-0.139428pt;}
.ws22{word-spacing:-0.106268pt;}
.ws5c{word-spacing:-0.095642pt;}
.ws72{word-spacing:-0.086953pt;}
.ws73{word-spacing:-0.081770pt;}
.ws8e{word-spacing:-0.075864pt;}
.wsa2{word-spacing:-0.062415pt;}
.wsa1{word-spacing:-0.053754pt;}
.wsa0{word-spacing:-0.053304pt;}
.ws2f{word-spacing:-0.053134pt;}
.ws1a{word-spacing:-0.047821pt;}
.wsd1{word-spacing:-0.025540pt;}
.ws120{word-spacing:-0.009139pt;}
.wsef{word-spacing:-0.007526pt;}
.wsc8{word-spacing:-0.006690pt;}
.wsc6{word-spacing:-0.006221pt;}
.wsd{word-spacing:-0.005555pt;}
.ws98{word-spacing:-0.004999pt;}
.wsf8{word-spacing:-0.004523pt;}
.wsfe{word-spacing:-0.003755pt;}
.wsb3{word-spacing:-0.003516pt;}
.wsf1{word-spacing:-0.003490pt;}
.ws115{word-spacing:-0.003081pt;}
.wsa3{word-spacing:-0.002911pt;}
.wsfc{word-spacing:-0.002509pt;}
.ws2b{word-spacing:-0.002103pt;}
.wsda{word-spacing:-0.001903pt;}
.wsba{word-spacing:-0.001724pt;}
.ws117{word-spacing:-0.001067pt;}
.wsb{word-spacing:-0.001022pt;}
.wscb{word-spacing:-0.000717pt;}
.wsfd{word-spacing:-0.000435pt;}
.ws107{word-spacing:-0.000026pt;}
.ws1{word-spacing:0.000000pt;}
.ws8d{word-spacing:0.000544pt;}
.ws3{word-spacing:0.001529pt;}
.ws90{word-spacing:0.007956pt;}
.ws88{word-spacing:0.025111pt;}
.ws83{word-spacing:0.027623pt;}
.ws87{word-spacing:0.036102pt;}
.ws84{word-spacing:0.036148pt;}
.ws86{word-spacing:0.041491pt;}
.ws15{word-spacing:0.047821pt;}
.ws93{word-spacing:0.051677pt;}
.ws95{word-spacing:0.052811pt;}
.ws33{word-spacing:0.053134pt;}
.ws94{word-spacing:0.063379pt;}
.ws67{word-spacing:0.087933pt;}
.ws85{word-spacing:0.088627pt;}
.wse5{word-spacing:0.095642pt;}
.ws50{word-spacing:0.106268pt;}
.ws10c{word-spacing:0.125732pt;}
.wse{word-spacing:0.127522pt;}
.ws10d{word-spacing:0.127869pt;}
.ws6d{word-spacing:0.130897pt;}
.ws92{word-spacing:0.138384pt;}
.ws11{word-spacing:0.143462pt;}
.ws2{word-spacing:0.148774pt;}
.ws31{word-spacing:0.159402pt;}
.ws6a{word-spacing:0.180698pt;}
.wsbc{word-spacing:0.191283pt;}
.ws8c{word-spacing:0.194699pt;}
.ws38{word-spacing:0.212535pt;}
.wsc5{word-spacing:0.239104pt;}
.ws68{word-spacing:0.260832pt;}
.ws28{word-spacing:0.265669pt;}
.ws12{word-spacing:0.286925pt;}
.ws4e{word-spacing:0.318803pt;}
.ws11e{word-spacing:0.334746pt;}
.ws25{word-spacing:0.371937pt;}
.ws55{word-spacing:0.425071pt;}
.wsb0{word-spacing:0.478208pt;}
.wsc1{word-spacing:0.526029pt;}
.ws61{word-spacing:0.531339pt;}
.ws75{word-spacing:0.573850pt;}
.ws56{word-spacing:0.637606pt;}
.wse8{word-spacing:0.669491pt;}
.ws79{word-spacing:0.690740pt;}
.ws5e{word-spacing:0.717312pt;}
.ws45{word-spacing:0.743874pt;}
.wsdd{word-spacing:0.812954pt;}
.ws4d{word-spacing:0.850142pt;}
.ws11f{word-spacing:0.860774pt;}
.ws44{word-spacing:0.903276pt;}
.ws1f{word-spacing:0.908595pt;}
.ws66{word-spacing:1.009543pt;}
.wsde{word-spacing:1.052058pt;}
.wsa6{word-spacing:1.062677pt;}
.ws14{word-spacing:1.147699pt;}
.ws48{word-spacing:1.168945pt;}
.ws109{word-spacing:1.195520pt;}
.wsa5{word-spacing:1.222079pt;}
.wsa{word-spacing:1.227389pt;}
.ws58{word-spacing:1.275213pt;}
.wse9{word-spacing:1.291162pt;}
.wsfa{word-spacing:1.386803pt;}
.ws63{word-spacing:1.428676pt;}
.ws64{word-spacing:1.434614pt;}
.ws13{word-spacing:1.434624pt;}
.ws8f{word-spacing:1.487748pt;}
.ws10a{word-spacing:1.530266pt;}
.ws19{word-spacing:1.578086pt;}
.ws1b{word-spacing:1.625907pt;}
.ws39{word-spacing:1.647150pt;}
.wseb{word-spacing:1.721549pt;}
.ws17{word-spacing:1.769370pt;}
.wsb6{word-spacing:1.817190pt;}
.ws70{word-spacing:1.847384pt;}
.ws6f{word-spacing:1.859685pt;}
.wse4{word-spacing:1.865011pt;}
.ws3b{word-spacing:1.912819pt;}
.wse2{word-spacing:1.960653pt;}
.ws47{word-spacing:1.965953pt;}
.wsb2{word-spacing:2.056294pt;}
.ws37{word-spacing:2.072221pt;}
.ws7e{word-spacing:2.125355pt;}
.ws102{word-spacing:2.151936pt;}
.ws49{word-spacing:2.178489pt;}
.ws0{word-spacing:2.232481pt;}
.wsf0{word-spacing:2.247578pt;}
.ws1e{word-spacing:2.295398pt;}
.ws4b{word-spacing:2.337890pt;}
.ws71{word-spacing:2.391024pt;}
.ws11a{word-spacing:2.438861pt;}
.ws24{word-spacing:2.444158pt;}
.wsaa{word-spacing:2.497292pt;}
.ws7f{word-spacing:2.550426pt;}
.wsf{word-spacing:2.550432pt;}
.ws6b{word-spacing:2.603559pt;}
.ws11b{word-spacing:2.630144pt;}
.ws6c{word-spacing:2.656693pt;}
.ws20{word-spacing:2.665767pt;}
.ws100{word-spacing:2.677965pt;}
.ws7b{word-spacing:2.709827pt;}
.wsbb{word-spacing:2.725786pt;}
.ws7c{word-spacing:2.762961pt;}
.ws104{word-spacing:2.773606pt;}
.ws4a{word-spacing:2.816095pt;}
.wse7{word-spacing:2.821427pt;}
.wsf5{word-spacing:2.860826pt;}
.ws114{word-spacing:2.861056pt;}
.wsea{word-spacing:2.861867pt;}
.wsca{word-spacing:2.862677pt;}
.wsd6{word-spacing:2.862694pt;}
.wsf4{word-spacing:2.863078pt;}
.wsf6{word-spacing:2.863138pt;}
.wsb8{word-spacing:2.863198pt;}
.wsfb{word-spacing:2.863206pt;}
.ws110{word-spacing:2.863445pt;}
.wsff{word-spacing:2.863539pt;}
.ws111{word-spacing:2.864290pt;}
.ws108{word-spacing:2.864350pt;}
.wsd3{word-spacing:2.864469pt;}
.ws122{word-spacing:2.864794pt;}
.wsc4{word-spacing:2.865186pt;}
.wsc2{word-spacing:2.865246pt;}
.ws101{word-spacing:2.865877pt;}
.wsc7{word-spacing:2.866005pt;}
.wse0{word-spacing:2.866074pt;}
.wsb1{word-spacing:2.866509pt;}
.ws127{word-spacing:2.867200pt;}
.wsf3{word-spacing:2.867439pt;}
.ws119{word-spacing:2.867456pt;}
.wsdf{word-spacing:2.867661pt;}
.ws128{word-spacing:2.868625pt;}
.ws8b{word-spacing:2.869229pt;}
.wsb5{word-spacing:2.869248pt;}
.wsf7{word-spacing:2.890837pt;}
.ws11d{word-spacing:2.917069pt;}
.wsdc{word-spacing:2.964890pt;}
.ws7d{word-spacing:2.975497pt;}
.wsb9{word-spacing:3.012710pt;}
.ws126{word-spacing:3.060531pt;}
.ws10{word-spacing:3.062067pt;}
.ws5a{word-spacing:3.081764pt;}
.ws125{word-spacing:3.108352pt;}
.wsa8{word-spacing:3.134898pt;}
.wse1{word-spacing:3.143151pt;}
.wsd4{word-spacing:3.156173pt;}
.ws21{word-spacing:3.188032pt;}
.ws1d{word-spacing:3.203994pt;}
.ws3d{word-spacing:3.241166pt;}
.ws116{word-spacing:3.251814pt;}
.ws77{word-spacing:3.294300pt;}
.ws105{word-spacing:3.299635pt;}
.ws29{word-spacing:3.347434pt;}
.ws11c{word-spacing:3.347456pt;}
.ws53{word-spacing:3.400567pt;}
.ws80{word-spacing:3.429542pt;}
.ws81{word-spacing:3.438648pt;}
.ws82{word-spacing:3.440072pt;}
.ws3f{word-spacing:3.453701pt;}
.wscc{word-spacing:3.490918pt;}
.ws5b{word-spacing:3.538739pt;}
.ws99{word-spacing:3.559969pt;}
.ws9a{word-spacing:3.613103pt;}
.ws60{word-spacing:3.666237pt;}
.ws5f{word-spacing:3.719371pt;}
.ws40{word-spacing:3.772505pt;}
.wsbd{word-spacing:3.777843pt;}
.ws41{word-spacing:3.825638pt;}
.ws5d{word-spacing:3.825664pt;}
.ws10e{word-spacing:3.873485pt;}
.ws112{word-spacing:3.969126pt;}
.ws26{word-spacing:4.038174pt;}
.ws30{word-spacing:4.091308pt;}
.ws6e{word-spacing:4.095045pt;}
.wsc3{word-spacing:4.112589pt;}
.ws46{word-spacing:4.197575pt;}
.ws59{word-spacing:4.250709pt;}
.wsc9{word-spacing:4.256051pt;}
.ws9d{word-spacing:4.303843pt;}
.wscd{word-spacing:4.399514pt;}
.ws8a{word-spacing:4.463245pt;}
.ws2a{word-spacing:4.516379pt;}
.ws42{word-spacing:4.569513pt;}
.ws89{word-spacing:4.595472pt;}
.ws27{word-spacing:4.622646pt;}
.ws96{word-spacing:4.728914pt;}
.wsbf{word-spacing:4.782080pt;}
.ws10b{word-spacing:4.829901pt;}
.ws8{word-spacing:4.872362pt;}
.ws3e{word-spacing:4.994583pt;}
.ws32{word-spacing:5.100851pt;}
.ws121{word-spacing:5.116826pt;}
.wsad{word-spacing:5.164646pt;}
.wsa9{word-spacing:5.260253pt;}
.wse3{word-spacing:5.451571pt;}
.wsa4{word-spacing:5.579056pt;}
.wsb7{word-spacing:5.690675pt;}
.wsaf{word-spacing:5.738458pt;}
.ws43{word-spacing:5.844725pt;}
.ws9c{word-spacing:5.976100pt;}
.ws9b{word-spacing:6.004127pt;}
.ws23{word-spacing:6.748001pt;}
.ws51{word-spacing:6.960537pt;}
.ws36{word-spacing:7.491875pt;}
.ws3a{word-spacing:7.545009pt;}
.ws106{word-spacing:7.555686pt;}
.wsf2{word-spacing:8.464282pt;}
.ws6{word-spacing:8.740496pt;}
.ws103{word-spacing:9.611981pt;}
.ws123{word-spacing:10.233651pt;}
.ws7{word-spacing:10.525789pt;}
.ws124{word-spacing:10.616218pt;}
.ws118{word-spacing:13.724570pt;}
.wsbe{word-spacing:14.680986pt;}
.ws5{word-spacing:19.857270pt;}
.ws9{word-spacing:20.196125pt;}
._4{margin-left:-10.616218pt;}
._19{margin-left:-6.365441pt;}
._d{margin-left:-5.313325pt;}
._1b{margin-left:-4.404900pt;}
._1{margin-left:-3.421811pt;}
._6{margin-left:-2.337896pt;}
._0{margin-left:-1.338970pt;}
._5{width:2.666225pt;}
._7{width:9.861670pt;}
._2{width:11.530016pt;}
._b{width:12.815974pt;}
._9{width:14.250598pt;}
._c{width:15.350477pt;}
._e{width:16.731957pt;}
._11{width:17.693578pt;}
._8{width:18.697933pt;}
._a{width:20.180378pt;}
._1a{width:21.253547pt;}
._3{width:22.502128pt;}
._f{width:24.229043pt;}
._17{width:25.894479pt;}
._18{width:27.114381pt;}
._1f{width:28.079919pt;}
._10{width:29.011091pt;}
._12{width:30.445706pt;}
._15{width:31.837809pt;}
._1d{width:33.686871pt;}
._1c{width:34.908950pt;}
._16{width:39.531597pt;}
._20{width:54.993920pt;}
._13{width:315.816195pt;}
._1e{width:2103.578037pt;}
._14{width:2124.831370pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs8{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:97.430720pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:14.848190pt;}
.y46{bottom:28.346667pt;}
.y16{bottom:93.018667pt;}
.y45{bottom:99.588000pt;}
.y135{bottom:102.602667pt;}
.y18c{bottom:103.518667pt;}
.yc2{bottom:103.996000pt;}
.yf5{bottom:104.713333pt;}
.ya6{bottom:105.909333pt;}
.yb9{bottom:106.277333pt;}
.y7d{bottom:106.308000pt;}
.y117{bottom:108.698667pt;}
.y15{bottom:108.920000pt;}
.y44{bottom:116.325333pt;}
.y18b{bottom:118.861333pt;}
.y134{bottom:119.340000pt;}
.yc1{bottom:121.090667pt;}
.yf4{bottom:121.450667pt;}
.ya5{bottom:122.646667pt;}
.yb8{bottom:123.014667pt;}
.y7c{bottom:123.045333pt;}
.y14{bottom:124.820000pt;}
.y116{bottom:125.436000pt;}
.y43{bottom:133.062667pt;}
.y156{bottom:133.725333pt;}
.y18a{bottom:134.202667pt;}
.y133{bottom:136.077333pt;}
.yc0{bottom:138.186667pt;}
.yf3{bottom:138.188000pt;}
.ya4{bottom:139.384000pt;}
.yb7{bottom:139.752000pt;}
.y7b{bottom:139.782667pt;}
.y13{bottom:140.720000pt;}
.y115{bottom:142.173333pt;}
.y155{bottom:149.068000pt;}
.y189{bottom:149.545333pt;}
.y42{bottom:149.800000pt;}
.y132{bottom:152.814667pt;}
.yf2{bottom:154.925333pt;}
.ybf{bottom:155.282667pt;}
.ya3{bottom:156.121333pt;}
.yb6{bottom:156.489333pt;}
.y7a{bottom:156.520000pt;}
.y12{bottom:156.621333pt;}
.y114{bottom:158.910667pt;}
.y154{bottom:164.410667pt;}
.y188{bottom:164.888000pt;}
.y41{bottom:166.537333pt;}
.y131{bottom:169.552000pt;}
.yf1{bottom:171.662667pt;}
.y11{bottom:172.521333pt;}
.ya2{bottom:172.858667pt;}
.yb5{bottom:173.226667pt;}
.y79{bottom:173.257333pt;}
.y113{bottom:175.648000pt;}
.y153{bottom:179.753333pt;}
.y187{bottom:180.230667pt;}
.y40{bottom:183.274667pt;}
.y130{bottom:186.289333pt;}
.yf0{bottom:188.400000pt;}
.y10{bottom:188.421333pt;}
.ya1{bottom:189.596000pt;}
.yb4{bottom:189.964000pt;}
.y78{bottom:189.994667pt;}
.y112{bottom:192.385333pt;}
.y152{bottom:195.096000pt;}
.y186{bottom:195.573333pt;}
.y3f{bottom:200.012000pt;}
.y12f{bottom:203.026667pt;}
.yf{bottom:204.322667pt;}
.yef{bottom:205.137333pt;}
.ya0{bottom:206.333333pt;}
.yb3{bottom:206.701333pt;}
.y77{bottom:206.732000pt;}
.y111{bottom:209.122667pt;}
.y151{bottom:210.437333pt;}
.y185{bottom:210.916000pt;}
.y3e{bottom:216.749333pt;}
.y12e{bottom:219.764000pt;}
.yee{bottom:221.874667pt;}
.y9f{bottom:223.070667pt;}
.yb2{bottom:223.438667pt;}
.y76{bottom:223.469333pt;}
.y150{bottom:225.780000pt;}
.y110{bottom:225.860000pt;}
.y184{bottom:226.258667pt;}
.y3d{bottom:233.486667pt;}
.y12d{bottom:236.500000pt;}
.yed{bottom:238.612000pt;}
.y9e{bottom:239.808000pt;}
.yb0{bottom:240.176000pt;}
.y75{bottom:240.206667pt;}
.y14f{bottom:241.122667pt;}
.y183{bottom:241.601333pt;}
.y10f{bottom:242.597333pt;}
.yb1{bottom:244.997333pt;}
.y3c{bottom:250.224000pt;}
.y12c{bottom:253.237333pt;}
.yec{bottom:255.349333pt;}
.y14e{bottom:256.465333pt;}
.y9d{bottom:256.545333pt;}
.yaf{bottom:256.913333pt;}
.y74{bottom:256.944000pt;}
.y10e{bottom:259.334667pt;}
.ye{bottom:265.668000pt;}
.y12b{bottom:269.974667pt;}
.y3b{bottom:270.946667pt;}
.y14d{bottom:271.808000pt;}
.yeb{bottom:272.086667pt;}
.y182{bottom:272.285333pt;}
.y9c{bottom:273.282667pt;}
.yae{bottom:273.650667pt;}
.y73{bottom:273.681333pt;}
.y10d{bottom:276.072000pt;}
.yd{bottom:281.568000pt;}
.y12a{bottom:286.712000pt;}
.y14c{bottom:287.150667pt;}
.y181{bottom:287.628000pt;}
.yea{bottom:288.824000pt;}
.y9b{bottom:290.020000pt;}
.y72{bottom:290.417333pt;}
.y10c{bottom:292.809333pt;}
.yc{bottom:297.469333pt;}
.y14b{bottom:302.493333pt;}
.y180{bottom:302.970667pt;}
.y129{bottom:303.449333pt;}
.yad{bottom:303.486667pt;}
.ye9{bottom:305.561333pt;}
.y9a{bottom:306.757333pt;}
.y71{bottom:307.154667pt;}
.y10b{bottom:309.546667pt;}
.yb{bottom:313.369333pt;}
.y14a{bottom:317.836000pt;}
.y17f{bottom:318.313333pt;}
.y128{bottom:320.186667pt;}
.yac{bottom:320.582667pt;}
.ye8{bottom:322.298667pt;}
.y99{bottom:323.494667pt;}
.y70{bottom:323.892000pt;}
.y10a{bottom:326.284000pt;}
.y149{bottom:333.177333pt;}
.y17e{bottom:333.656000pt;}
.yab{bottom:337.678667pt;}
.y3a{bottom:337.746667pt;}
.ya{bottom:338.568000pt;}
.ye7{bottom:339.036000pt;}
.y98{bottom:340.232000pt;}
.y6f{bottom:340.629333pt;}
.y127{bottom:340.909333pt;}
.y109{bottom:343.021333pt;}
.y148{bottom:348.520000pt;}
.y17d{bottom:348.998667pt;}
.yaa{bottom:354.774667pt;}
.y39{bottom:355.041333pt;}
.ye6{bottom:355.773333pt;}
.y97{bottom:356.968000pt;}
.y6e{bottom:357.366667pt;}
.y108{bottom:359.758667pt;}
.y9{bottom:362.438667pt;}
.y147{bottom:363.862667pt;}
.y17c{bottom:364.341333pt;}
.y126{bottom:370.797333pt;}
.ya9{bottom:371.869333pt;}
.ye5{bottom:372.510667pt;}
.y96{bottom:373.705333pt;}
.y6d{bottom:374.104000pt;}
.y107{bottom:376.496000pt;}
.y8{bottom:378.338667pt;}
.y146{bottom:379.205333pt;}
.y17b{bottom:379.684000pt;}
.y125{bottom:387.534667pt;}
.y38{bottom:388.277333pt;}
.ya8{bottom:388.965333pt;}
.ye4{bottom:389.248000pt;}
.y95{bottom:390.442667pt;}
.y6c{bottom:390.841333pt;}
.y106{bottom:393.233333pt;}
.y7{bottom:394.240000pt;}
.y145{bottom:394.548000pt;}
.y17a{bottom:395.025333pt;}
.y124{bottom:404.272000pt;}
.y37{bottom:405.572000pt;}
.ye3{bottom:405.985333pt;}
.ya7{bottom:406.061333pt;}
.y94{bottom:407.180000pt;}
.y6b{bottom:407.578667pt;}
.y144{bottom:409.890667pt;}
.y105{bottom:409.970667pt;}
.y6{bottom:410.140000pt;}
.y179{bottom:410.368000pt;}
.y123{bottom:421.009333pt;}
.ye2{bottom:422.722667pt;}
.y36{bottom:422.868000pt;}
.y93{bottom:423.917333pt;}
.y6a{bottom:424.316000pt;}
.y143{bottom:425.233333pt;}
.y178{bottom:425.710667pt;}
.y5{bottom:426.040000pt;}
.y104{bottom:426.706667pt;}
.y122{bottom:437.746667pt;}
.ye1{bottom:439.460000pt;}
.y35{bottom:440.162667pt;}
.y142{bottom:440.576000pt;}
.y92{bottom:440.654667pt;}
.y69{bottom:441.053333pt;}
.y4{bottom:441.941333pt;}
.y103{bottom:443.444000pt;}
.y121{bottom:454.484000pt;}
.y141{bottom:455.918667pt;}
.ye0{bottom:456.197333pt;}
.y177{bottom:456.396000pt;}
.y91{bottom:457.392000pt;}
.y34{bottom:457.457333pt;}
.y68{bottom:457.790667pt;}
.y3{bottom:457.841333pt;}
.y102{bottom:460.181333pt;}
.y120{bottom:471.221333pt;}
.y140{bottom:471.260000pt;}
.y176{bottom:471.738667pt;}
.ydf{bottom:472.934667pt;}
.y2{bottom:473.741333pt;}
.y90{bottom:474.129333pt;}
.y67{bottom:474.528000pt;}
.y33{bottom:474.753333pt;}
.y101{bottom:476.918667pt;}
.y13f{bottom:486.602667pt;}
.y175{bottom:487.081333pt;}
.y11f{bottom:487.958667pt;}
.y1{bottom:489.642667pt;}
.yde{bottom:489.672000pt;}
.y8f{bottom:490.866667pt;}
.y66{bottom:491.265333pt;}
.y32{bottom:492.048000pt;}
.y100{bottom:493.656000pt;}
.y13e{bottom:501.945333pt;}
.y174{bottom:502.424000pt;}
.y11e{bottom:504.696000pt;}
.ydd{bottom:506.409333pt;}
.y8e{bottom:507.604000pt;}
.y65{bottom:508.002667pt;}
.y31{bottom:509.342667pt;}
.yfe{bottom:510.393333pt;}
.yff{bottom:515.216000pt;}
.y13d{bottom:517.288000pt;}
.y173{bottom:517.766667pt;}
.ydc{bottom:523.145333pt;}
.y8d{bottom:524.341333pt;}
.y64{bottom:524.740000pt;}
.y30{bottom:526.638667pt;}
.yfd{bottom:527.130667pt;}
.y172{bottom:533.108000pt;}
.y11d{bottom:534.532000pt;}
.y13c{bottom:536.616000pt;}
.ydb{bottom:539.882667pt;}
.y8c{bottom:541.078667pt;}
.y63{bottom:541.477333pt;}
.yfc{bottom:543.868000pt;}
.y2f{bottom:543.933333pt;}
.y171{bottom:548.450667pt;}
.y11c{bottom:551.628000pt;}
.yda{bottom:556.620000pt;}
.y8b{bottom:557.816000pt;}
.y62{bottom:558.214667pt;}
.yfb{bottom:560.605333pt;}
.y2e{bottom:561.229333pt;}
.y170{bottom:563.793333pt;}
.y13b{bottom:566.504000pt;}
.y11b{bottom:568.724000pt;}
.y8a{bottom:574.553333pt;}
.y61{bottom:574.952000pt;}
.yd9{bottom:577.342667pt;}
.y2d{bottom:578.524000pt;}
.y16f{bottom:579.136000pt;}
.ybe{bottom:579.773333pt;}
.y11a{bottom:585.820000pt;}
.y13a{bottom:590.094667pt;}
.y89{bottom:591.290667pt;}
.y60{bottom:591.689333pt;}
.yfa{bottom:594.080000pt;}
.y16e{bottom:594.478667pt;}
.y2c{bottom:595.818667pt;}
.ybd{bottom:596.510667pt;}
.y119{bottom:602.914667pt;}
.y88{bottom:608.028000pt;}
.y5f{bottom:608.426667pt;}
.y16d{bottom:609.821333pt;}
.yf9{bottom:610.817333pt;}
.y2b{bottom:613.114667pt;}
.ybc{bottom:613.248000pt;}
.y139{bottom:613.686667pt;}
.y118{bottom:620.010667pt;}
.yd8{bottom:621.178667pt;}
.y87{bottom:624.765333pt;}
.y5e{bottom:625.164000pt;}
.yf8{bottom:627.554667pt;}
.y138{bottom:629.308000pt;}
.y2a{bottom:630.409333pt;}
.yd7{bottom:637.916000pt;}
.y16c{bottom:640.506667pt;}
.y86{bottom:641.502667pt;}
.y5d{bottom:641.901333pt;}
.y137{bottom:644.929333pt;}
.y29{bottom:647.704000pt;}
.yf7{bottom:648.277333pt;}
.yd6{bottom:654.653333pt;}
.y16b{bottom:655.848000pt;}
.y85{bottom:658.240000pt;}
.y5c{bottom:658.638667pt;}
.y136{bottom:660.550667pt;}
.yf6{bottom:662.225333pt;}
.y28{bottom:665.000000pt;}
.y16a{bottom:671.190667pt;}
.yd5{bottom:671.390667pt;}
.y84{bottom:674.977333pt;}
.y5b{bottom:675.376000pt;}
.y27{bottom:682.294667pt;}
.y169{bottom:686.533333pt;}
.yd4{bottom:688.128000pt;}
.y83{bottom:691.714667pt;}
.y5a{bottom:692.113333pt;}
.ybb{bottom:696.934667pt;}
.y18f{bottom:697.825333pt;}
.y26{bottom:699.590667pt;}
.y168{bottom:701.876000pt;}
.yd3{bottom:704.865333pt;}
.y82{bottom:708.452000pt;}
.y59{bottom:708.850667pt;}
.y18e{bottom:713.166667pt;}
.yba{bottom:713.672000pt;}
.y167{bottom:717.218667pt;}
.yd2{bottom:721.602667pt;}
.y81{bottom:725.189333pt;}
.y58{bottom:725.588000pt;}
.y18d{bottom:728.509333pt;}
.y166{bottom:732.561333pt;}
.y25{bottom:733.888000pt;}
.yd1{bottom:738.340000pt;}
.y80{bottom:741.926667pt;}
.y57{bottom:742.324000pt;}
.y165{bottom:747.904000pt;}
.y24{bottom:752.092000pt;}
.yd0{bottom:755.077333pt;}
.y7f{bottom:758.664000pt;}
.y56{bottom:759.061333pt;}
.y23{bottom:762.581333pt;}
.y164{bottom:763.246667pt;}
.ycf{bottom:771.814667pt;}
.y55{bottom:775.798667pt;}
.y22{bottom:776.926667pt;}
.y163{bottom:778.589333pt;}
.y7e{bottom:779.385333pt;}
.y21{bottom:780.784000pt;}
.yce{bottom:788.552000pt;}
.y20{bottom:791.273333pt;}
.y54{bottom:792.536000pt;}
.y162{bottom:793.930667pt;}
.ycd{bottom:805.289333pt;}
.y1f{bottom:805.620000pt;}
.y53{bottom:809.273333pt;}
.ycc{bottom:822.025333pt;}
.y1e{bottom:823.824000pt;}
.y161{bottom:824.616000pt;}
.y52{bottom:826.010667pt;}
.ycb{bottom:838.762667pt;}
.y160{bottom:839.958667pt;}
.y51{bottom:842.748000pt;}
.y15f{bottom:855.301333pt;}
.yca{bottom:855.500000pt;}
.y50{bottom:859.485333pt;}
.y1d{bottom:863.536000pt;}
.y15e{bottom:870.644000pt;}
.yc9{bottom:872.237333pt;}
.y4f{bottom:876.222667pt;}
.y15d{bottom:885.986667pt;}
.yc8{bottom:888.974667pt;}
.y4e{bottom:892.960000pt;}
.y1c{bottom:896.213333pt;}
.y15c{bottom:901.329333pt;}
.yc7{bottom:905.712000pt;}
.y4d{bottom:909.697333pt;}
.y15b{bottom:916.670667pt;}
.y1b{bottom:921.320000pt;}
.yc6{bottom:922.449333pt;}
.y4c{bottom:926.434667pt;}
.y15a{bottom:932.013333pt;}
.yc5{bottom:939.186667pt;}
.y4b{bottom:943.172000pt;}
.y1a{bottom:946.425333pt;}
.y159{bottom:947.356000pt;}
.yc4{bottom:955.924000pt;}
.y4a{bottom:959.909333pt;}
.y158{bottom:962.698667pt;}
.y19{bottom:971.530667pt;}
.yc3{bottom:972.661333pt;}
.y49{bottom:976.646667pt;}
.y157{bottom:978.041333pt;}
.y48{bottom:993.384000pt;}
.y17{bottom:1010.186667pt;}
.y47{bottom:1046.810667pt;}
.h12{height:6.694867pt;}
.h11{height:18.682573pt;}
.ha{height:23.209028pt;}
.h2{height:27.076941pt;}
.h4{height:27.300102pt;}
.hb{height:30.945242pt;}
.hf{height:31.200285pt;}
.h16{height:33.378918pt;}
.h17{height:33.474560pt;}
.h3{height:33.957757pt;}
.hc{height:34.813542pt;}
.h15{height:35.100467pt;}
.h10{height:37.087439pt;}
.hd{height:38.256384pt;}
.he{height:38.681455pt;}
.h7{height:39.000258pt;}
.h14{height:43.660390pt;}
.h5{height:45.271688pt;}
.h13{height:48.511220pt;}
.h9{height:49.201961pt;}
.h6{height:66.058028pt;}
.h8{height:68.861952pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:214.021695pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x2{left:51.605861pt;}
.xc6{left:76.309333pt;}
.xc7{left:208.892000pt;}
.xc8{left:217.122667pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x4{left:239.924000pt;}
.x6{left:250.204000pt;}
.x9c{left:251.656000pt;}
.xb2{left:263.180000pt;}
.x9d{left:264.940000pt;}
.x4c{left:266.628000pt;}
.x17{left:268.734667pt;}
.xad{left:272.752000pt;}
.x52{left:277.717333pt;}
.x4d{left:279.912000pt;}
.x18{left:282.018667pt;}
.xb3{left:283.105333pt;}
.x53{left:284.358667pt;}
.xaf{left:288.641333pt;}
.x43{left:290.718667pt;}
.xac{left:296.081333pt;}
.x19{left:299.672000pt;}
.xa6{left:301.668000pt;}
.x44{left:304.001333pt;}
.x69{left:311.170667pt;}
.x1a{left:312.956000pt;}
.xa7{left:314.952000pt;}
.x1b{left:316.342667pt;}
.x27{left:318.176000pt;}
.x79{left:321.645333pt;}
.x6a{left:324.453333pt;}
.xb0{left:327.086667pt;}
.x1c{left:329.626667pt;}
.x28{left:331.458667pt;}
.x5d{left:332.417333pt;}
.x29{left:334.846667pt;}
.x7a{left:341.704000pt;}
.x5e{left:345.701333pt;}
.xb1{left:347.012000pt;}
.x2a{left:348.129333pt;}
.x74{left:351.973333pt;}
.xc2{left:353.184000pt;}
.x7b{left:354.988000pt;}
.x48{left:358.578667pt;}
.x75{left:365.256000pt;}
.x38{left:367.494667pt;}
.x76{left:368.597333pt;}
.x4e{left:370.741333pt;}
.x49{left:371.861333pt;}
.xc3{left:373.109333pt;}
.x84{left:375.249333pt;}
.x7d{left:377.718667pt;}
.x39{left:380.777333pt;}
.x77{left:381.881333pt;}
.x4f{left:384.024000pt;}
.x78{left:385.221333pt;}
.x9e{left:387.669333pt;}
.x7c{left:389.340000pt;}
.xa3{left:391.501333pt;}
.xab{left:393.500000pt;}
.x7e{left:394.654667pt;}
.x40{left:395.604000pt;}
.x71{left:397.842667pt;}
.xb5{left:403.686667pt;}
.xb6{left:407.073333pt;}
.x1d{left:408.213333pt;}
.x72{left:411.126667pt;}
.x41{left:415.662667pt;}
.x73{left:417.901333pt;}
.xae{left:419.424000pt;}
.x1e{left:421.497333pt;}
.x81{left:422.544000pt;}
.x1f{left:424.884000pt;}
.xb7{left:426.998667pt;}
.x42{left:428.945333pt;}
.x3a{left:431.972000pt;}
.x67{left:435.198667pt;}
.x20{left:438.168000pt;}
.x82{left:442.382667pt;}
.x2b{left:443.476000pt;}
.x3b{left:445.254667pt;}
.x6e{left:448.252000pt;}
.xa8{left:450.153333pt;}
.x6f{left:454.302667pt;}
.x83{left:455.666667pt;}
.x2c{left:456.760000pt;}
.xf{left:459.537333pt;}
.x68{left:461.418667pt;}
.x64{left:463.576000pt;}
.x8e{left:464.880000pt;}
.x10{left:466.178667pt;}
.x95{left:467.541333pt;}
.x2d{left:473.430667pt;}
.x2e{left:476.817333pt;}
.x8f{left:478.164000pt;}
.x96{left:480.824000pt;}
.x97{left:484.082667pt;}
.xd{left:485.113333pt;}
.x70{left:486.034667pt;}
.x2f{left:490.101333pt;}
.xe{left:491.754667pt;}
.x7{left:492.678667pt;}
.x98{left:497.365333pt;}
.x8{left:499.320000pt;}
.x9f{left:501.501333pt;}
.x32{left:503.368000pt;}
.x9{left:506.094667pt;}
.xb8{left:509.405333pt;}
.xa4{left:511.468000pt;}
.xa{left:512.736000pt;}
.x99{left:513.873333pt;}
.xa0{left:514.785333pt;}
.x33{left:516.652000pt;}
.xa1{left:518.600000pt;}
.x34{left:520.040000pt;}
.xa5{left:524.750667pt;}
.x54{left:525.756000pt;}
.x58{left:527.192000pt;}
.xb9{left:529.329333pt;}
.x9a{left:530.461333pt;}
.x55{left:532.398667pt;}
.x35{left:533.322667pt;}
.x56{left:535.732000pt;}
.x36{left:536.710667pt;}
.x65{left:538.656000pt;}
.x59{left:540.474667pt;}
.x9b{left:543.745333pt;}
.x5a{left:547.216000pt;}
.x21{left:549.190667pt;}
.x66{left:551.940000pt;}
.x57{left:555.684000pt;}
.x37{left:556.768000pt;}
.x5b{left:560.500000pt;}
.x22{left:562.474667pt;}
.xc1{left:564.606667pt;}
.x23{left:569.249333pt;}
.x6b{left:571.144000pt;}
.x88{left:576.284000pt;}
.x90{left:577.525333pt;}
.x8a{left:581.004000pt;}
.x24{left:582.533333pt;}
.x6c{left:584.426667pt;}
.x50{left:585.630667pt;}
.x6d{left:587.521333pt;}
.x91{left:590.808000pt;}
.x85{left:593.346667pt;}
.x25{left:594.362667pt;}
.x92{left:596.252000pt;}
.x51{left:598.914667pt;}
.x63{left:600.694667pt;}
.xa2{left:603.932000pt;}
.x11{left:607.534667pt;}
.x5f{left:609.817333pt;}
.x86{left:611.525333pt;}
.x89{left:613.160000pt;}
.x12{left:614.176000pt;}
.x93{left:615.120000pt;}
.x60{left:616.458667pt;}
.x13{left:620.777333pt;}
.x87{left:624.809333pt;}
.xb4{left:625.926667pt;}
.x14{left:627.420000pt;}
.x94{left:628.404000pt;}
.x5c{left:633.630667pt;}
.xbb{left:637.149333pt;}
.x61{left:638.384000pt;}
.x8b{left:641.462667pt;}
.xc4{left:643.885333pt;}
.x30{left:646.022667pt;}
.x3e{left:647.812000pt;}
.xbc{left:650.432000pt;}
.x62{left:651.666667pt;}
.xbd{left:653.820000pt;}
.x31{left:659.306667pt;}
.x3f{left:661.094667pt;}
.xc5{left:663.810667pt;}
.xbe{left:667.102667pt;}
.xbf{left:670.490667pt;}
.xb{left:675.297333pt;}
.xa9{left:680.178667pt;}
.xc{left:681.938667pt;}
.xc0{left:683.773333pt;}
.x45{left:689.221333pt;}
.xba{left:690.704000pt;}
.xaa{left:693.462667pt;}
.x15{left:702.529333pt;}
.x4a{left:706.280000pt;}
.x16{left:709.170667pt;}
.x8c{left:710.602667pt;}
.x7f{left:715.042667pt;}
.x4b{left:719.564000pt;}
.x80{left:721.092000pt;}
.x8d{left:723.886667pt;}
.x3c{left:726.842667pt;}
.x46{left:727.905333pt;}
.x3d{left:740.126667pt;}
.x47{left:741.189333pt;}
.x26{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; }
  