
    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_5702a36113b9ac38a1819f24.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f875fa7c43a64730f60a2146.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fbb32449664ac9b9176e2269.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.885000;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_670b6d5c7fa9c76276e38033.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f2d05234b9781155a817ec9f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.803000;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_94f592f936ad39e92c210d44.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7d6e4fe58e4f75c7a3619a1e.woff2')format("woff");}.ffa{font-family:ffa;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;}
.mb{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);}
.m8{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);}
.me{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);}
.m19{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);}
.m1b{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);}
.m26{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);}
.m25{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);}
.m1e{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);}
.md{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);}
.ma{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);}
.mc{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);}
.m17{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);}
.m2{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);}
.m27{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);}
.m29{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);}
.m16{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);}
.m13{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);}
.m1a{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);}
.m1c{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);}
.m23{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);}
.m5{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);}
.m15{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);}
.m9{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);}
.m18{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);}
.m22{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);}
.m14{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);}
.m1{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);}
.m7{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);}
.m21{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);}
.m20{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);}
.m28{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);}
.m24{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);}
.m12{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);}
.m1d{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);}
.m4{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);}
.mf{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);}
.m11{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);}
.m1f{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);}
.m6{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);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:32.874000px;}
.v5{vertical-align:48.174000px;}
.v3{vertical-align:51.030000px;}
.ls6{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.000604px;}
.ls13{letter-spacing:0.000612px;}
.ls20{letter-spacing:0.000626px;}
.ls1f{letter-spacing:0.000800px;}
.ls1b{letter-spacing:0.001155px;}
.ls1a{letter-spacing:0.002544px;}
.ls23{letter-spacing:0.003484px;}
.ls30{letter-spacing:0.004800px;}
.ls2f{letter-spacing:0.005182px;}
.ls12{letter-spacing:0.717483px;}
.ls7{letter-spacing:1.275394px;}
.ls1{letter-spacing:1.861130px;}
.ls0{letter-spacing:2.998354px;}
.ls2{letter-spacing:10.461300px;}
.ls5{letter-spacing:11.954850px;}
.ls2c{letter-spacing:13.154731px;}
.ls21{letter-spacing:13.196765px;}
.ls26{letter-spacing:13.285782px;}
.ls24{letter-spacing:13.291728px;}
.ls31{letter-spacing:13.389366px;}
.ls2e{letter-spacing:13.400998px;}
.ls2b{letter-spacing:13.442830px;}
.ls18{letter-spacing:13.448400px;}
.ls1e{letter-spacing:13.454400px;}
.ls29{letter-spacing:13.556473px;}
.ls25{letter-spacing:13.601967px;}
.ls1c{letter-spacing:13.632467px;}
.ls2d{letter-spacing:13.739424px;}
.ls2a{letter-spacing:13.746318px;}
.lsb{letter-spacing:14.671024px;}
.lsd{letter-spacing:14.756469px;}
.lsc{letter-spacing:14.856248px;}
.lse{letter-spacing:14.929747px;}
.ls11{letter-spacing:14.944200px;}
.lsa{letter-spacing:14.956511px;}
.ls9{letter-spacing:14.972268px;}
.ls16{letter-spacing:15.036519px;}
.ls10{letter-spacing:15.139556px;}
.ls17{letter-spacing:15.255931px;}
.ls1d{letter-spacing:15.256282px;}
.ls14{letter-spacing:15.629847px;}
.ls8{letter-spacing:15.663483px;}
.lsf{letter-spacing:15.818082px;}
.ls28{letter-spacing:16.285694px;}
.ls27{letter-spacing:16.397459px;}
.ls19{letter-spacing:16.962165px;}
.ls15{letter-spacing:23.253376px;}
.ls3{letter-spacing:62.761200px;}
.ls4{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;}
}
.ws0{word-spacing:-69.058760px;}
.ws90{word-spacing:-14.943900px;}
.ws2{word-spacing:-14.355754px;}
.wsa2{word-spacing:-13.449600px;}
.ws35{word-spacing:-11.955150px;}
.ws8{word-spacing:-10.460700px;}
.ws88{word-spacing:-2.929004px;}
.ws5a{word-spacing:-2.869229px;}
.ws6f{word-spacing:-2.689902px;}
.ws21{word-spacing:-2.570351px;}
.ws80{word-spacing:-2.510575px;}
.ws59{word-spacing:-2.391024px;}
.ws52{word-spacing:-1.972595px;}
.ws4{word-spacing:-1.908367px;}
.wsd2{word-spacing:-1.829146px;}
.ws83{word-spacing:-1.494390px;}
.ws84{word-spacing:-1.434614px;}
.ws45{word-spacing:-1.374839px;}
.ws3{word-spacing:-1.322630px;}
.ws61{word-spacing:-1.315063px;}
.ws7e{word-spacing:-1.255288px;}
.ws49{word-spacing:-1.135736px;}
.ws3f{word-spacing:-1.016185px;}
.ws69{word-spacing:-0.956410px;}
.ws82{word-spacing:-0.836858px;}
.ws27{word-spacing:-0.777083px;}
.ws8f{word-spacing:-0.717307px;}
.ws70{word-spacing:-0.597756px;}
.ws60{word-spacing:-0.478205px;}
.ws3b{word-spacing:-0.418429px;}
.ws1c{word-spacing:-0.376589px;}
.ws2a{word-spacing:-0.358654px;}
.ws97{word-spacing:-0.322790px;}
.ws28{word-spacing:-0.298878px;}
.ws18{word-spacing:-0.268992px;}
.ws39{word-spacing:-0.239102px;}
.ws19{word-spacing:-0.215194px;}
.ws32{word-spacing:-0.179327px;}
.wsb0{word-spacing:-0.161395px;}
.ws2c{word-spacing:-0.119551px;}
.ws15{word-spacing:-0.107597px;}
.ws38{word-spacing:-0.059776px;}
.ws96{word-spacing:-0.053798px;}
.ws36{word-spacing:-0.047821px;}
.ws9{word-spacing:-0.041843px;}
.wsdf{word-spacing:-0.001728px;}
.ws1{word-spacing:0.000000px;}
.ws9e{word-spacing:0.053798px;}
.ws4b{word-spacing:0.059776px;}
.ws16{word-spacing:0.107597px;}
.ws25{word-spacing:0.119551px;}
.ws1e{word-spacing:0.161395px;}
.ws26{word-spacing:0.179327px;}
.wsa{word-spacing:0.209214px;}
.ws1d{word-spacing:0.215194px;}
.ws22{word-spacing:0.239102px;}
.wsaa{word-spacing:0.268992px;}
.wsc{word-spacing:0.292900px;}
.ws2b{word-spacing:0.298878px;}
.ws4e{word-spacing:0.358654px;}
.wsac{word-spacing:0.376589px;}
.ws2f{word-spacing:0.418429px;}
.ws1f{word-spacing:0.430387px;}
.ws86{word-spacing:0.478205px;}
.ws37{word-spacing:0.537980px;}
.wsd1{word-spacing:0.591782px;}
.ws4d{word-spacing:0.597756px;}
.wsad{word-spacing:0.645581px;}
.ws6c{word-spacing:0.657532px;}
.ws62{word-spacing:0.836858px;}
.ws17{word-spacing:0.860774px;}
.ws63{word-spacing:0.896634px;}
.ws78{word-spacing:0.956410px;}
.ws54{word-spacing:1.016185px;}
.wseb{word-spacing:1.022170px;}
.ws75{word-spacing:1.075961px;}
.wsc1{word-spacing:1.129766px;}
.ws3e{word-spacing:1.135736px;}
.wsbc{word-spacing:1.183565px;}
.wsa3{word-spacing:1.237363px;}
.ws65{word-spacing:1.255288px;}
.wsbe{word-spacing:1.344960px;}
.ws4f{word-spacing:1.374839px;}
.ws9f{word-spacing:1.398758px;}
.ws94{word-spacing:1.494390px;}
.ws79{word-spacing:1.613941px;}
.wsaf{word-spacing:1.667750px;}
.ws8b{word-spacing:1.673717px;}
.ws89{word-spacing:1.677884px;}
.wsb2{word-spacing:1.775347px;}
.ws57{word-spacing:1.793268px;}
.ws7f{word-spacing:1.853044px;}
.wsb7{word-spacing:1.936742px;}
.ws71{word-spacing:1.972595px;}
.wsb{word-spacing:2.008454px;}
.ws87{word-spacing:2.032370px;}
.ws4c{word-spacing:2.092146px;}
.ws3a{word-spacing:2.151922px;}
.wscc{word-spacing:2.205734px;}
.ws46{word-spacing:2.211697px;}
.wsc6{word-spacing:2.259533px;}
.ws76{word-spacing:2.271473px;}
.wsc3{word-spacing:2.313331px;}
.ws33{word-spacing:2.331248px;}
.ws51{word-spacing:2.391024px;}
.ws5f{word-spacing:2.510575px;}
.ws6{word-spacing:2.511413px;}
.ws42{word-spacing:2.570351px;}
.ws5d{word-spacing:2.689902px;}
.wsa6{word-spacing:2.743718px;}
.ws73{word-spacing:2.809453px;}
.wsd5{word-spacing:2.851315px;}
.ws14{word-spacing:2.869236px;}
.ws93{word-spacing:2.929004px;}
.wsc5{word-spacing:2.958912px;}
.ws56{word-spacing:2.988780px;}
.ws3d{word-spacing:3.048556px;}
.wsba{word-spacing:3.120307px;}
.ws5c{word-spacing:3.168107px;}
.wsce{word-spacing:3.221261px;}
.wsec{word-spacing:3.223584px;}
.wsd6{word-spacing:3.224074px;}
.wsa0{word-spacing:3.224822px;}
.wse9{word-spacing:3.225600px;}
.wsc7{word-spacing:3.226474px;}
.wsa7{word-spacing:3.227904px;}
.wsef{word-spacing:3.228432px;}
.wsb5{word-spacing:3.335501px;}
.ws66{word-spacing:3.347434px;}
.wse8{word-spacing:3.389299px;}
.ws77{word-spacing:3.466985px;}
.ws8e{word-spacing:3.526760px;}
.ws20{word-spacing:3.586536px;}
.ws6e{word-spacing:3.646312px;}
.wsa8{word-spacing:3.658291px;}
.ws47{word-spacing:3.706087px;}
.wse1{word-spacing:3.712090px;}
.ws67{word-spacing:3.765863px;}
.ws68{word-spacing:3.825638px;}
.wsb9{word-spacing:3.927283px;}
.ws43{word-spacing:3.945190px;}
.ws1a{word-spacing:3.981082px;}
.ws44{word-spacing:4.064741px;}
.ws81{word-spacing:4.124516px;}
.wsc2{word-spacing:4.142477px;}
.ws58{word-spacing:4.184292px;}
.wsbf{word-spacing:4.196275px;}
.ws3c{word-spacing:4.244068px;}
.wsda{word-spacing:4.250074px;}
.ws41{word-spacing:4.303843px;}
.ws95{word-spacing:4.363619px;}
.ws6d{word-spacing:4.423394px;}
.wse0{word-spacing:4.519066px;}
.ws30{word-spacing:4.542946px;}
.ws31{word-spacing:4.602721px;}
.ws5b{word-spacing:4.722272px;}
.ws74{word-spacing:4.782048px;}
.wse5{word-spacing:4.788058px;}
.ws7d{word-spacing:4.841824px;}
.ws8d{word-spacing:4.901599px;}
.ws85{word-spacing:4.961375px;}
.ws91{word-spacing:5.200477px;}
.ws7b{word-spacing:5.320028px;}
.ws5e{word-spacing:5.379804px;}
.ws55{word-spacing:5.499355px;}
.wsab{word-spacing:5.541235px;}
.ws7a{word-spacing:5.559131px;}
.ws6b{word-spacing:5.618906px;}
.wsdc{word-spacing:5.648832px;}
.ws40{word-spacing:5.798233px;}
.ws4a{word-spacing:5.858009px;}
.ws23{word-spacing:5.917784px;}
.wsc9{word-spacing:5.917824px;}
.ws29{word-spacing:6.037336px;}
.ws12{word-spacing:6.067206px;}
.ws8c{word-spacing:6.097111px;}
.ws13{word-spacing:6.150892px;}
.ws53{word-spacing:6.336214px;}
.ws72{word-spacing:6.515540px;}
.ws1b{word-spacing:6.563405px;}
.wscd{word-spacing:7.155187px;}
.ws2e{word-spacing:7.173072px;}
.ws2d{word-spacing:7.232848px;}
.ws50{word-spacing:7.352399px;}
.ws24{word-spacing:7.471950px;}
.wsdb{word-spacing:7.746970px;}
.ws7c{word-spacing:8.308808px;}
.ws10{word-spacing:8.661460px;}
.ws6a{word-spacing:9.085891px;}
.ws7{word-spacing:10.418114px;}
.ws92{word-spacing:11.835569px;}
.ws34{word-spacing:11.903459px;}
.wsb3{word-spacing:13.180608px;}
.wsde{word-spacing:13.342003px;}
.wsc8{word-spacing:13.386134px;}
.wsd3{word-spacing:13.386787px;}
.wse6{word-spacing:13.386845px;}
.wsdd{word-spacing:13.387018px;}
.wse4{word-spacing:13.391290px;}
.wsb6{word-spacing:13.391981px;}
.wsc0{word-spacing:13.392134px;}
.wsd7{word-spacing:13.392557px;}
.wsbb{word-spacing:13.392845px;}
.wse7{word-spacing:13.393018px;}
.wsb8{word-spacing:13.393498px;}
.wsa9{word-spacing:13.393661px;}
.wsd0{word-spacing:13.394179px;}
.wsea{word-spacing:13.394410px;}
.wsa5{word-spacing:13.395802px;}
.wsae{word-spacing:13.557197px;}
.ws48{word-spacing:14.884124px;}
.ws5{word-spacing:15.483541px;}
.wsc4{word-spacing:15.709133px;}
.wsd{word-spacing:16.142252px;}
.wse{word-spacing:16.151321px;}
.ws8a{word-spacing:16.565758px;}
.wse3{word-spacing:16.569907px;}
.wsa4{word-spacing:16.620307px;}
.wsd4{word-spacing:16.620653px;}
.wscb{word-spacing:16.621344px;}
.wsee{word-spacing:16.621402px;}
.wscf{word-spacing:16.622938px;}
.wsbd{word-spacing:16.623389px;}
.wsa1{word-spacing:16.623706px;}
.wsb4{word-spacing:16.626134px;}
.wsd8{word-spacing:17.054093px;}
.wse2{word-spacing:17.112928px;}
.wsed{word-spacing:17.592077px;}
.wsf{word-spacing:17.699504px;}
.wsd9{word-spacing:18.183859px;}
.ws64{word-spacing:18.470660px;}
.wsca{word-spacing:19.313626px;}
.wsb1{word-spacing:21.250368px;}
.ws11{word-spacing:27.448877px;}
.ws98{word-spacing:643.159872px;}
.ws9b{word-spacing:729.506304px;}
.ws99{word-spacing:783.446765px;}
.ws9c{word-spacing:792.450432px;}
.ws9d{word-spacing:798.583450px;}
.ws9a{word-spacing:810.634291px;}
._15{margin-left:-8.246348px;}
._b{margin-left:-6.939994px;}
._4{margin-left:-5.397721px;}
._0{margin-left:-3.462102px;}
._2{margin-left:-1.322630px;}
._3{width:1.091170px;}
._7{width:2.301354px;}
._5{width:12.787558px;}
._16{width:13.995058px;}
._9{width:15.601536px;}
._c{width:17.538278px;}
._14{width:18.590212px;}
._a{width:19.591757px;}
._1b{width:21.100787px;}
._18{width:22.236523px;}
._f{width:23.439602px;}
._1c{width:24.464487px;}
._6{width:25.552700px;}
._19{width:27.138122px;}
._d{width:28.943539px;}
._13{width:30.321364px;}
._8{width:32.637384px;}
._1e{width:33.661230px;}
._1f{width:35.394722px;}
._e{width:36.761994px;}
._17{width:38.017282px;}
._10{width:40.707184px;}
._1d{width:43.994842px;}
._1a{width:45.803244px;}
._2d{width:61.868160px;}
._1{width:69.307879px;}
._2c{width:88.767360px;}
._27{width:320.131949px;}
._29{width:528.868234px;}
._22{width:623.093069px;}
._23{width:664.438729px;}
._26{width:683.024486px;}
._2b{width:690.394867px;}
._28{width:704.436250px;}
._24{width:730.636070px;}
._2a{width:733.452592px;}
._21{width:773.405798px;}
._25{width:828.333965px;}
._11{width:1157.951662px;}
._20{width:2632.665000px;}
._12{width:2656.575000px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(118,201,43);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fsb{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:62.286600px;}
.fs0{font-size:88.764473px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.425340px;}
.y2{bottom:6.804630px;}
.y8{bottom:14.151273px;}
.y49{bottom:31.890000px;}
.ye3{bottom:89.659500px;}
.y163{bottom:100.867500px;}
.y20{bottom:102.823500px;}
.y123{bottom:103.108500px;}
.y1d2{bottom:103.557000px;}
.y10b{bottom:104.902500px;}
.y16d{bottom:105.351000px;}
.yb3{bottom:106.246500px;}
.y7e{bottom:107.125500px;}
.ye2{bottom:108.489000px;}
.y19b{bottom:119.157000px;}
.y162{bottom:119.697000px;}
.y48{bottom:119.740500px;}
.y1f{bottom:120.711000px;}
.y1d1{bottom:120.817500px;}
.y122{bottom:121.938000px;}
.y10a{bottom:123.732000px;}
.y132{bottom:124.180500px;}
.yb2{bottom:125.076000px;}
.y7d{bottom:125.955000px;}
.ye1{bottom:127.318500px;}
.y19a{bottom:136.417500px;}
.y1d0{bottom:138.078000px;}
.y161{bottom:138.526500px;}
.y47{bottom:138.570000px;}
.y1e{bottom:138.600000px;}
.y121{bottom:140.767500px;}
.y109{bottom:142.561500px;}
.y131{bottom:143.010000px;}
.yb1{bottom:143.905500px;}
.y7c{bottom:144.784500px;}
.ye0{bottom:146.148000px;}
.y199{bottom:153.678000px;}
.y1cf{bottom:155.338500px;}
.y1d{bottom:156.487500px;}
.y160{bottom:157.356000px;}
.y46{bottom:157.399500px;}
.y120{bottom:159.597000px;}
.y108{bottom:161.391000px;}
.y130{bottom:161.839500px;}
.y7b{bottom:163.614000px;}
.ydf{bottom:164.977500px;}
.yb0{bottom:167.218500px;}
.y198{bottom:170.937000px;}
.y1ce{bottom:172.599000px;}
.y1c{bottom:174.375000px;}
.y15f{bottom:176.185500px;}
.y45{bottom:176.229000px;}
.y12f{bottom:180.669000px;}
.y7a{bottom:182.443500px;}
.y11f{bottom:182.910000px;}
.yde{bottom:183.807000px;}
.y107{bottom:184.702500px;}
.y197{bottom:188.197500px;}
.y1cd{bottom:189.858000px;}
.y1b{bottom:192.264000px;}
.y44{bottom:195.058500px;}
.y12e{bottom:199.497000px;}
.yaf{bottom:200.842500px;}
.y79{bottom:201.273000px;}
.ydd{bottom:202.636500px;}
.y11e{bottom:203.085000px;}
.y196{bottom:205.458000px;}
.y1cc{bottom:207.118500px;}
.y1a{bottom:210.151500px;}
.y43{bottom:213.888000px;}
.y106{bottom:218.326500px;}
.yae{bottom:219.672000px;}
.y78{bottom:220.102500px;}
.ydc{bottom:221.466000px;}
.y195{bottom:222.718500px;}
.y1cb{bottom:224.379000px;}
.y19{bottom:228.039000px;}
.y42{bottom:232.717500px;}
.y15e{bottom:233.121000px;}
.y11d{bottom:236.709000px;}
.y105{bottom:237.156000px;}
.yad{bottom:238.501500px;}
.y77{bottom:238.932000px;}
.y194{bottom:239.979000px;}
.ydb{bottom:240.295500px;}
.y1ca{bottom:241.639500px;}
.y41{bottom:251.547000px;}
.y15d{bottom:251.950500px;}
.y11c{bottom:255.538500px;}
.y104{bottom:255.985500px;}
.y193{bottom:257.239500px;}
.yac{bottom:257.331000px;}
.y76{bottom:257.761500px;}
.y1c9{bottom:258.900000px;}
.yda{bottom:259.125000px;}
.y40{bottom:270.376500px;}
.y15c{bottom:270.780000px;}
.y192{bottom:274.500000px;}
.y103{bottom:274.815000px;}
.yab{bottom:276.160500px;}
.y75{bottom:276.591000px;}
.yd9{bottom:277.953000px;}
.y11b{bottom:278.850000px;}
.y3f{bottom:289.206000px;}
.y15b{bottom:289.609500px;}
.y191{bottom:291.760500px;}
.y1c8{bottom:293.421000px;}
.y102{bottom:293.644500px;}
.yaa{bottom:294.990000px;}
.yd8{bottom:296.782500px;}
.y74{bottom:299.904000px;}
.y18{bottom:307.299000px;}
.y3e{bottom:308.035500px;}
.y15a{bottom:308.439000px;}
.y190{bottom:309.019500px;}
.y1c7{bottom:310.681500px;}
.y101{bottom:312.474000px;}
.ya9{bottom:313.819500px;}
.yd7{bottom:315.612000px;}
.y16c{bottom:316.957500px;}
.y73{bottom:320.077500px;}
.y17{bottom:325.186500px;}
.y18f{bottom:326.280000px;}
.y3d{bottom:326.865000px;}
.y159{bottom:327.268500px;}
.y1c6{bottom:327.940500px;}
.y100{bottom:331.303500px;}
.ya8{bottom:332.649000px;}
.yd6{bottom:334.441500px;}
.y16{bottom:343.074000px;}
.y18e{bottom:343.540500px;}
.y1c5{bottom:345.201000px;}
.y3c{bottom:345.694500px;}
.y158{bottom:346.098000px;}
.y11a{bottom:350.133000px;}
.y16b{bottom:350.581500px;}
.ya7{bottom:351.478500px;}
.yd5{bottom:353.271000px;}
.y72{bottom:353.701500px;}
.yff{bottom:354.616500px;}
.y18d{bottom:360.801000px;}
.y15{bottom:360.963000px;}
.y1c4{bottom:362.461500px;}
.y3b{bottom:364.524000px;}
.y119{bottom:368.962500px;}
.y157{bottom:369.411000px;}
.ya6{bottom:370.308000px;}
.y71{bottom:372.531000px;}
.y12d{bottom:373.446000px;}
.yd4{bottom:376.584000px;}
.y1c3{bottom:379.722000px;}
.y18c{bottom:382.545000px;}
.y3a{bottom:383.353500px;}
.y118{bottom:387.792000px;}
.yfe{bottom:388.240500px;}
.ya5{bottom:389.137500px;}
.y70{bottom:391.360500px;}
.y1c2{bottom:396.982500px;}
.y14{bottom:399.024000px;}
.y39{bottom:402.183000px;}
.y156{bottom:403.035000px;}
.y117{bottom:406.621500px;}
.yfd{bottom:407.070000px;}
.ya4{bottom:407.967000px;}
.y6f{bottom:410.190000px;}
.yd3{bottom:410.208000px;}
.y1c1{bottom:414.243000px;}
.y18b{bottom:416.169000px;}
.y13{bottom:416.913000px;}
.y38{bottom:421.012500px;}
.y155{bottom:421.864500px;}
.yfc{bottom:425.899500px;}
.ya3{bottom:426.796500px;}
.y6e{bottom:429.019500px;}
.yd2{bottom:429.037500px;}
.y116{bottom:429.934500px;}
.y1c0{bottom:431.503500px;}
.y12{bottom:434.800500px;}
.y37{bottom:439.842000px;}
.y154{bottom:440.694000px;}
.y18a{bottom:442.708500px;}
.yfb{bottom:444.729000px;}
.ya2{bottom:445.626000px;}
.y6d{bottom:447.849000px;}
.yd1{bottom:447.867000px;}
.y1bf{bottom:448.764000px;}
.y36{bottom:458.670000px;}
.y153{bottom:459.523500px;}
.yfa{bottom:463.558500px;}
.ya1{bottom:464.454000px;}
.y1be{bottom:466.024500px;}
.y6c{bottom:466.678500px;}
.yd0{bottom:466.696500px;}
.y189{bottom:469.249500px;}
.y11{bottom:470.622000px;}
.y152{bottom:478.353000px;}
.y35{bottom:481.983000px;}
.yf8{bottom:482.388000px;}
.ya0{bottom:483.283500px;}
.y6b{bottom:485.508000px;}
.ycf{bottom:485.526000px;}
.yf9{bottom:487.812000px;}
.y10{bottom:488.509500px;}
.y188{bottom:495.790500px;}
.y151{bottom:497.182500px;}
.y1bd{bottom:500.544000px;}
.yf7{bottom:501.217500px;}
.y9f{bottom:502.113000px;}
.y6a{bottom:504.337500px;}
.yce{bottom:504.355500px;}
.y16a{bottom:505.701000px;}
.yf{bottom:506.397000px;}
.y14f{bottom:516.012000px;}
.y1bc{bottom:517.804500px;}
.yf6{bottom:520.047000px;}
.y9e{bottom:520.942500px;}
.y150{bottom:521.436000px;}
.y187{bottom:522.330000px;}
.y69{bottom:523.167000px;}
.ycd{bottom:523.185000px;}
.y14e{bottom:534.841500px;}
.y1bb{bottom:535.065000px;}
.yf5{bottom:538.876500px;}
.y169{bottom:539.323500px;}
.y9d{bottom:539.772000px;}
.y186{bottom:539.905500px;}
.y68{bottom:541.996500px;}
.ye{bottom:542.218500px;}
.y12c{bottom:543.358500px;}
.ycc{bottom:546.498000px;}
.y1ba{bottom:552.325500px;}
.y14d{bottom:553.671000px;}
.y34{bottom:557.133000px;}
.y185{bottom:557.479500px;}
.yf4{bottom:557.706000px;}
.y168{bottom:558.153000px;}
.y9c{bottom:558.601500px;}
.yd{bottom:560.106000px;}
.y67{bottom:560.826000px;}
.y1b9{bottom:569.586000px;}
.y14c{bottom:572.500500px;}
.yf3{bottom:576.535500px;}
.y33{bottom:576.591000px;}
.y12b{bottom:576.982500px;}
.y9b{bottom:577.431000px;}
.yc{bottom:577.993500px;}
.y66{bottom:579.655500px;}
.ycb{bottom:580.122000px;}
.y1b8{bottom:586.846500px;}
.y14b{bottom:591.330000px;}
.yf2{bottom:595.365000px;}
.y12a{bottom:595.812000px;}
.yb{bottom:595.882500px;}
.y9a{bottom:596.260500px;}
.y65{bottom:598.485000px;}
.yca{bottom:598.951500px;}
.y1b7{bottom:604.107000px;}
.y184{bottom:604.674000px;}
.y14a{bottom:610.159500px;}
.ya{bottom:613.770000px;}
.y32{bottom:613.980000px;}
.yf1{bottom:614.194500px;}
.y129{bottom:614.641500px;}
.y99{bottom:615.090000px;}
.y183{bottom:616.272000px;}
.y64{bottom:617.314500px;}
.yc9{bottom:617.779500px;}
.y1b6{bottom:621.366000px;}
.y149{bottom:628.989000px;}
.yf0{bottom:633.022500px;}
.y31{bottom:633.438000px;}
.y128{bottom:633.471000px;}
.y98{bottom:633.919500px;}
.y7{bottom:636.141055px;}
.y63{bottom:636.144000px;}
.yc8{bottom:636.609000px;}
.y1b5{bottom:638.626500px;}
.y148{bottom:647.817000px;}
.yef{bottom:651.852000px;}
.y182{bottom:651.955500px;}
.y127{bottom:652.300500px;}
.y97{bottom:652.749000px;}
.y30{bottom:652.894500px;}
.y62{bottom:654.973500px;}
.yc7{bottom:655.438500px;}
.y1b4{bottom:655.887000px;}
.y147{bottom:666.646500px;}
.yee{bottom:670.681500px;}
.y126{bottom:671.130000px;}
.y96{bottom:671.578500px;}
.y2f{bottom:672.351000px;}
.y1b3{bottom:673.147500px;}
.y61{bottom:673.801500px;}
.yc6{bottom:674.268000px;}
.y115{bottom:675.165000px;}
.y181{bottom:675.597000px;}
.y17f{bottom:676.617000px;}
.y146{bottom:685.476000px;}
.yed{bottom:689.511000px;}
.y125{bottom:689.959500px;}
.y95{bottom:690.408000px;}
.y2e{bottom:691.809000px;}
.y60{bottom:692.631000px;}
.yc5{bottom:693.097500px;}
.y180{bottom:699.237000px;}
.y145{bottom:704.305500px;}
.y1b2{bottom:707.668500px;}
.yec{bottom:708.340500px;}
.y114{bottom:708.789000px;}
.y94{bottom:709.237500px;}
.y2d{bottom:711.265500px;}
.y5f{bottom:711.460500px;}
.yc4{bottom:711.927000px;}
.y17e{bottom:722.878500px;}
.y144{bottom:723.135000px;}
.y1b1{bottom:724.929000px;}
.yeb{bottom:727.170000px;}
.y113{bottom:727.618500px;}
.y93{bottom:728.067000px;}
.y5e{bottom:730.290000px;}
.y2c{bottom:730.722000px;}
.yc3{bottom:730.756500px;}
.y143{bottom:741.964500px;}
.y1b0{bottom:742.189500px;}
.y17b{bottom:745.788000px;}
.y112{bottom:746.448000px;}
.y17d{bottom:746.518500px;}
.y92{bottom:746.896500px;}
.y5d{bottom:749.119500px;}
.yc2{bottom:749.586000px;}
.y2b{bottom:750.180000px;}
.yea{bottom:750.483000px;}
.y1af{bottom:759.450000px;}
.y142{bottom:760.794000px;}
.y110{bottom:765.277500px;}
.y91{bottom:765.726000px;}
.y5c{bottom:767.949000px;}
.yc1{bottom:768.415500px;}
.y2a{bottom:769.636500px;}
.y17c{bottom:770.160000px;}
.y111{bottom:770.701500px;}
.y1ae{bottom:776.709000px;}
.ye9{bottom:784.107000px;}
.y90{bottom:784.555500px;}
.y5b{bottom:786.778500px;}
.yc0{bottom:787.245000px;}
.y29{bottom:789.094500px;}
.y17a{bottom:793.800000px;}
.y1ad{bottom:793.969500px;}
.ye8{bottom:802.936500px;}
.y8f{bottom:803.385000px;}
.y5a{bottom:805.608000px;}
.ybf{bottom:806.074500px;}
.y28{bottom:808.551000px;}
.y1ac{bottom:811.230000px;}
.y179{bottom:817.441500px;}
.y141{bottom:817.731000px;}
.ye7{bottom:821.766000px;}
.y8e{bottom:822.214500px;}
.y59{bottom:824.437500px;}
.ybe{bottom:824.904000px;}
.y124{bottom:826.249500px;}
.y27{bottom:828.007500px;}
.y1ab{bottom:828.490500px;}
.y140{bottom:836.560500px;}
.ye6{bottom:840.595500px;}
.y8d{bottom:841.044000px;}
.y178{bottom:841.081500px;}
.y58{bottom:843.267000px;}
.ybd{bottom:843.733500px;}
.y1aa{bottom:845.751000px;}
.y26{bottom:847.465500px;}
.y13f{bottom:855.390000px;}
.ye5{bottom:859.425000px;}
.y8c{bottom:859.873500px;}
.y57{bottom:862.096500px;}
.ybc{bottom:862.563000px;}
.y1a9{bottom:863.011500px;}
.y177{bottom:864.723000px;}
.y25{bottom:866.922000px;}
.y176{bottom:872.941500px;}
.y13e{bottom:874.219500px;}
.y10f{bottom:878.254500px;}
.y8b{bottom:878.703000px;}
.y1a8{bottom:880.272000px;}
.y56{bottom:880.926000px;}
.ybb{bottom:881.392500px;}
.ye4{bottom:882.738000px;}
.y171{bottom:883.954500px;}
.y13d{bottom:893.049000px;}
.y10e{bottom:897.084000px;}
.y8a{bottom:897.532500px;}
.y55{bottom:899.755500px;}
.yba{bottom:900.222000px;}
.y175{bottom:904.801500px;}
.y24{bottom:905.508000px;}
.y13c{bottom:911.878500px;}
.y1a6{bottom:914.791500px;}
.y1a7{bottom:914.793000px;}
.y10d{bottom:915.913500px;}
.y89{bottom:916.362000px;}
.y54{bottom:918.585000px;}
.yb9{bottom:919.051500px;}
.y23{bottom:925.987500px;}
.y174{bottom:928.441500px;}
.y13b{bottom:930.708000px;}
.y1a5{bottom:932.052000px;}
.y167{bottom:934.743000px;}
.y88{bottom:935.191500px;}
.y53{bottom:937.414500px;}
.yb8{bottom:937.881000px;}
.y10c{bottom:939.226500px;}
.y22{bottom:942.126000px;}
.y1a4{bottom:949.312500px;}
.y13a{bottom:949.537500px;}
.y173{bottom:952.083000px;}
.y166{bottom:953.572500px;}
.y87{bottom:954.021000px;}
.y52{bottom:956.244000px;}
.yb7{bottom:956.710500px;}
.y21{bottom:958.266000px;}
.y172{bottom:962.965500px;}
.y1a3{bottom:966.573000px;}
.y139{bottom:968.367000px;}
.y165{bottom:972.402000px;}
.y86{bottom:972.849000px;}
.yb6{bottom:975.540000px;}
.y51{bottom:979.557000px;}
.y1a2{bottom:983.833500px;}
.y138{bottom:987.196500px;}
.y85{bottom:991.678500px;}
.y164{bottom:995.713500px;}
.y6{bottom:998.460000px;}
.yb5{bottom:998.853000px;}
.y170{bottom:999.364500px;}
.y1a1{bottom:1001.094000px;}
.y137{bottom:1006.026000px;}
.y84{bottom:1010.508000px;}
.y50{bottom:1013.181000px;}
.yb4{bottom:1014.543000px;}
.y1a0{bottom:1018.354500px;}
.y136{bottom:1024.855500px;}
.y83{bottom:1029.337500px;}
.y16f{bottom:1030.983000px;}
.y4f{bottom:1032.010500px;}
.y19f{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y135{bottom:1043.685000px;}
.y82{bottom:1048.167000px;}
.y16e{bottom:1050.216000px;}
.y4e{bottom:1050.840000px;}
.y19e{bottom:1052.875500px;}
.y134{bottom:1062.513000px;}
.y81{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y4d{bottom:1069.669500px;}
.y19d{bottom:1070.134500px;}
.y133{bottom:1081.342500px;}
.y80{bottom:1085.826000px;}
.y19c{bottom:1087.395000px;}
.y4c{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y7f{bottom:1104.655500px;}
.y4b{bottom:1107.327000px;}
.y1{bottom:1151.870817px;}
.y4a{bottom:1173.397500px;}
.h2{height:25.246636px;}
.h7{height:25.508090px;}
.hc{height:26.110157px;}
.ha{height:30.461558px;}
.hb{height:30.670772px;}
.h14{height:31.526842px;}
.h15{height:33.072749px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.hd{height:34.813397px;}
.h12{height:35.052500px;}
.he{height:38.734848px;}
.hf{height:39.165235px;}
.h1a{height:39.434227px;}
.h13{height:41.482876px;}
.h16{height:41.723369px;}
.h10{height:43.038432px;}
.h11{height:43.516637px;}
.h4{height:43.815515px;}
.h6{height:54.405312px;}
.h3{height:60.182313px;}
.h18{height:72.039235px;}
.h5{height:77.469696px;}
.h19{height:87.339235px;}
.h17{height:90.195235px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:28.673133px;}
.w3{width:75.364879px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x2{left:53.506500px;}
.xad{left:69.390000px;}
.xa2{left:85.446000px;}
.x1{left:113.206079px;}
.xa4{left:127.443000px;}
.xab{left:132.298500px;}
.xa3{left:136.666500px;}
.xa5{left:144.907500px;}
.x5{left:249.832500px;}
.x4{left:250.897500px;}
.x3c{left:255.666000px;}
.x8{left:282.786000px;}
.x97{left:285.966000px;}
.x92{left:290.212500px;}
.x98{left:300.909000px;}
.x90{left:302.154000px;}
.x93{left:305.157000px;}
.x6{left:309.442500px;}
.x69{left:310.908000px;}
.x91{left:311.994000px;}
.x99{left:319.555500px;}
.x7{left:321.553500px;}
.x86{left:323.172000px;}
.x6a{left:325.852500px;}
.x3d{left:328.087500px;}
.x6b{left:333.174000px;}
.x3b{left:335.586000px;}
.x87{left:338.116500px;}
.x4a{left:340.584000px;}
.x9f{left:343.032000px;}
.x57{left:345.417000px;}
.x48{left:347.199000px;}
.xac{left:350.778000px;}
.x4b{left:355.527000px;}
.x58{left:360.361500px;}
.xa0{left:361.656000px;}
.x33{left:369.447000px;}
.x80{left:382.395000px;}
.x4f{left:386.965500px;}
.x23{left:389.335500px;}
.xae{left:392.038500px;}
.x49{left:393.375000px;}
.x81{left:397.339500px;}
.x50{left:401.908500px;}
.x24{left:404.278500px;}
.x4c{left:413.370000px;}
.x30{left:415.780500px;}
.x79{left:422.914500px;}
.x42{left:428.098500px;}
.x31{left:430.723500px;}
.x25{left:431.788500px;}
.x44{left:434.121000px;}
.x64{left:438.580500px;}
.xb{left:440.559000px;}
.x61{left:441.708000px;}
.x43{left:443.041500px;}
.x72{left:444.568500px;}
.x26{left:446.731500px;}
.xc{left:448.030500px;}
.x45{left:449.064000px;}
.x27{left:450.393000px;}
.x65{left:453.525000px;}
.x62{left:456.652500px;}
.x34{left:457.983000px;}
.x63{left:460.351500px;}
.xaa{left:461.479500px;}
.x28{left:465.337500px;}
.x53{left:466.443000px;}
.xa7{left:469.630500px;}
.x66{left:472.264500px;}
.x35{left:474.309000px;}
.xa9{left:477.679500px;}
.x67{left:479.856000px;}
.x70{left:483.429000px;}
.xf{left:484.749000px;}
.x10{left:492.222000px;}
.x68{left:494.800500px;}
.x73{left:496.372500px;}
.x71{left:498.373500px;}
.x21{left:505.944000px;}
.x74{left:511.317000px;}
.x75{left:515.124000px;}
.x22{left:520.887000px;}
.x54{left:524.701500px;}
.x76{left:530.068500px;}
.x36{left:535.777500px;}
.x55{left:536.992500px;}
.x2a{left:545.668500px;}
.x2e{left:551.560500px;}
.x2b{left:560.613000px;}
.x5a{left:562.590000px;}
.x2f{left:566.505000px;}
.x5b{left:571.821000px;}
.x56{left:581.877000px;}
.x18{left:591.492000px;}
.x9c{left:603.558000px;}
.x77{left:605.341500px;}
.x19{left:606.436500px;}
.x2c{left:608.761500px;}
.x9e{left:610.626000px;}
.x37{left:614.004000px;}
.x9d{left:618.502500px;}
.x78{left:620.284500px;}
.x7c{left:621.439500px;}
.x2d{left:623.706000px;}
.x7d{left:625.251000px;}
.x5c{left:626.991000px;}
.x38{left:628.948500px;}
.x46{left:635.530500px;}
.x7e{left:640.195500px;}
.x85{left:642.372000px;}
.x47{left:643.423500px;}
.x1f{left:649.099500px;}
.x7a{left:652.810500px;}
.x84{left:657.229500px;}
.x7f{left:658.950000px;}
.x20{left:664.044000px;}
.x7b{left:667.755000px;}
.x8e{left:671.629500px;}
.x5d{left:673.411500px;}
.xb3{left:676.491000px;}
.x59{left:679.900500px;}
.x5e{left:682.641000px;}
.x3e{left:684.103500px;}
.xa6{left:688.591500px;}
.xb2{left:690.279000px;}
.x8c{left:693.933000px;}
.xa8{left:695.350500px;}
.x3f{left:699.048000px;}
.x8d{left:703.834500px;}
.x8f{left:709.476000px;}
.x1b{left:712.654500px;}
.x1d{left:719.155500px;}
.xb5{left:723.418500px;}
.x9{left:725.395500px;}
.x1c{left:727.599000px;}
.x11{left:730.717500px;}
.xa{left:732.867000px;}
.x1e{left:734.100000px;}
.x40{left:736.872000px;}
.x12{left:738.190500px;}
.x51{left:741.387000px;}
.x5f{left:742.470000px;}
.x1a{left:745.672500px;}
.x15{left:746.854500px;}
.x94{left:748.024500px;}
.x9a{left:750.111000px;}
.x41{left:751.815000px;}
.xd{left:754.809000px;}
.x52{left:756.331500px;}
.x60{left:758.502000px;}
.x39{left:760.150500px;}
.xe{left:762.282000px;}
.xb6{left:763.624500px;}
.x9b{left:765.055500px;}
.x95{left:766.779000px;}
.x8a{left:767.983500px;}
.xb4{left:769.513500px;}
.x82{left:770.890500px;}
.x3a{left:775.093500px;}
.x88{left:776.800500px;}
.x96{left:781.722000px;}
.x8b{left:782.928000px;}
.x83{left:789.642000px;}
.x89{left:791.745000px;}
.x6c{left:796.627500px;}
.xa1{left:797.674500px;}
.x4d{left:799.167000px;}
.x13{left:800.757000px;}
.x14{left:808.228500px;}
.xaf{left:810.370500px;}
.x6d{left:811.570500px;}
.x4e{left:814.111500px;}
.xb1{left:815.691000px;}
.x29{left:817.716000px;}
.x6e{left:819.013500px;}
.x16{left:825.519000px;}
.x32{left:829.348500px;}
.x6f{left:831.990000px;}
.x17{left:832.990500px;}
.xb0{left:837.268500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:29.221333pt;}
.v5{vertical-align:42.821333pt;}
.v3{vertical-align:45.360000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.000536pt;}
.ls13{letter-spacing:0.000544pt;}
.ls20{letter-spacing:0.000556pt;}
.ls1f{letter-spacing:0.000711pt;}
.ls1b{letter-spacing:0.001026pt;}
.ls1a{letter-spacing:0.002262pt;}
.ls23{letter-spacing:0.003097pt;}
.ls30{letter-spacing:0.004267pt;}
.ls2f{letter-spacing:0.004607pt;}
.ls12{letter-spacing:0.637762pt;}
.ls7{letter-spacing:1.133683pt;}
.ls1{letter-spacing:1.654338pt;}
.ls0{letter-spacing:2.665203pt;}
.ls2{letter-spacing:9.298933pt;}
.ls5{letter-spacing:10.626533pt;}
.ls2c{letter-spacing:11.693094pt;}
.ls21{letter-spacing:11.730458pt;}
.ls26{letter-spacing:11.809584pt;}
.ls24{letter-spacing:11.814869pt;}
.ls31{letter-spacing:11.901659pt;}
.ls2e{letter-spacing:11.911998pt;}
.ls2b{letter-spacing:11.949182pt;}
.ls18{letter-spacing:11.954133pt;}
.ls1e{letter-spacing:11.959467pt;}
.ls29{letter-spacing:12.050198pt;}
.ls25{letter-spacing:12.090638pt;}
.ls1c{letter-spacing:12.117748pt;}
.ls2d{letter-spacing:12.212822pt;}
.ls2a{letter-spacing:12.218950pt;}
.lsb{letter-spacing:13.040910pt;}
.lsd{letter-spacing:13.116861pt;}
.lsc{letter-spacing:13.205553pt;}
.lse{letter-spacing:13.270887pt;}
.ls11{letter-spacing:13.283733pt;}
.lsa{letter-spacing:13.294677pt;}
.ls9{letter-spacing:13.308682pt;}
.ls16{letter-spacing:13.365795pt;}
.ls10{letter-spacing:13.457383pt;}
.ls17{letter-spacing:13.560827pt;}
.ls1d{letter-spacing:13.561140pt;}
.ls14{letter-spacing:13.893197pt;}
.ls8{letter-spacing:13.923096pt;}
.lsf{letter-spacing:14.060518pt;}
.ls28{letter-spacing:14.476173pt;}
.ls27{letter-spacing:14.575519pt;}
.ls19{letter-spacing:15.077480pt;}
.ls15{letter-spacing:20.669668pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ws0{word-spacing:-61.385564pt;}
.ws90{word-spacing:-13.283467pt;}
.ws2{word-spacing:-12.760670pt;}
.wsa2{word-spacing:-11.955200pt;}
.ws35{word-spacing:-10.626800pt;}
.ws8{word-spacing:-9.298400pt;}
.ws88{word-spacing:-2.603559pt;}
.ws5a{word-spacing:-2.550426pt;}
.ws6f{word-spacing:-2.391024pt;}
.ws21{word-spacing:-2.284756pt;}
.ws80{word-spacing:-2.231622pt;}
.ws59{word-spacing:-2.125355pt;}
.ws52{word-spacing:-1.753418pt;}
.ws4{word-spacing:-1.696326pt;}
.wsd2{word-spacing:-1.625907pt;}
.ws83{word-spacing:-1.328347pt;}
.ws84{word-spacing:-1.275213pt;}
.ws45{word-spacing:-1.222079pt;}
.ws3{word-spacing:-1.175671pt;}
.ws61{word-spacing:-1.168945pt;}
.ws7e{word-spacing:-1.115811pt;}
.ws49{word-spacing:-1.009543pt;}
.ws3f{word-spacing:-0.903276pt;}
.ws69{word-spacing:-0.850142pt;}
.ws82{word-spacing:-0.743874pt;}
.ws27{word-spacing:-0.690740pt;}
.ws8f{word-spacing:-0.637606pt;}
.ws70{word-spacing:-0.531339pt;}
.ws60{word-spacing:-0.425071pt;}
.ws3b{word-spacing:-0.371937pt;}
.ws1c{word-spacing:-0.334746pt;}
.ws2a{word-spacing:-0.318803pt;}
.ws97{word-spacing:-0.286925pt;}
.ws28{word-spacing:-0.265669pt;}
.ws18{word-spacing:-0.239104pt;}
.ws39{word-spacing:-0.212535pt;}
.ws19{word-spacing:-0.191283pt;}
.ws32{word-spacing:-0.159402pt;}
.wsb0{word-spacing:-0.143462pt;}
.ws2c{word-spacing:-0.106268pt;}
.ws15{word-spacing:-0.095642pt;}
.ws38{word-spacing:-0.053134pt;}
.ws96{word-spacing:-0.047821pt;}
.ws36{word-spacing:-0.042507pt;}
.ws9{word-spacing:-0.037194pt;}
.wsdf{word-spacing:-0.001536pt;}
.ws1{word-spacing:0.000000pt;}
.ws9e{word-spacing:0.047821pt;}
.ws4b{word-spacing:0.053134pt;}
.ws16{word-spacing:0.095642pt;}
.ws25{word-spacing:0.106268pt;}
.ws1e{word-spacing:0.143462pt;}
.ws26{word-spacing:0.159402pt;}
.wsa{word-spacing:0.185968pt;}
.ws1d{word-spacing:0.191283pt;}
.ws22{word-spacing:0.212535pt;}
.wsaa{word-spacing:0.239104pt;}
.wsc{word-spacing:0.260355pt;}
.ws2b{word-spacing:0.265669pt;}
.ws4e{word-spacing:0.318803pt;}
.wsac{word-spacing:0.334746pt;}
.ws2f{word-spacing:0.371937pt;}
.ws1f{word-spacing:0.382566pt;}
.ws86{word-spacing:0.425071pt;}
.ws37{word-spacing:0.478205pt;}
.wsd1{word-spacing:0.526029pt;}
.ws4d{word-spacing:0.531339pt;}
.wsad{word-spacing:0.573850pt;}
.ws6c{word-spacing:0.584473pt;}
.ws62{word-spacing:0.743874pt;}
.ws17{word-spacing:0.765133pt;}
.ws63{word-spacing:0.797008pt;}
.ws78{word-spacing:0.850142pt;}
.ws54{word-spacing:0.903276pt;}
.wseb{word-spacing:0.908595pt;}
.ws75{word-spacing:0.956410pt;}
.wsc1{word-spacing:1.004237pt;}
.ws3e{word-spacing:1.009543pt;}
.wsbc{word-spacing:1.052058pt;}
.wsa3{word-spacing:1.099878pt;}
.ws65{word-spacing:1.115811pt;}
.wsbe{word-spacing:1.195520pt;}
.ws4f{word-spacing:1.222079pt;}
.ws9f{word-spacing:1.243341pt;}
.ws94{word-spacing:1.328347pt;}
.ws79{word-spacing:1.434614pt;}
.wsaf{word-spacing:1.482445pt;}
.ws8b{word-spacing:1.487748pt;}
.ws89{word-spacing:1.491452pt;}
.wsb2{word-spacing:1.578086pt;}
.ws57{word-spacing:1.594016pt;}
.ws7f{word-spacing:1.647150pt;}
.wsb7{word-spacing:1.721549pt;}
.ws71{word-spacing:1.753418pt;}
.wsb{word-spacing:1.785293pt;}
.ws87{word-spacing:1.806551pt;}
.ws4c{word-spacing:1.859685pt;}
.ws3a{word-spacing:1.912819pt;}
.wscc{word-spacing:1.960653pt;}
.ws46{word-spacing:1.965953pt;}
.wsc6{word-spacing:2.008474pt;}
.ws76{word-spacing:2.019087pt;}
.wsc3{word-spacing:2.056294pt;}
.ws33{word-spacing:2.072221pt;}
.ws51{word-spacing:2.125355pt;}
.ws5f{word-spacing:2.231622pt;}
.ws6{word-spacing:2.232367pt;}
.ws42{word-spacing:2.284756pt;}
.ws5d{word-spacing:2.391024pt;}
.wsa6{word-spacing:2.438861pt;}
.ws73{word-spacing:2.497292pt;}
.wsd5{word-spacing:2.534502pt;}
.ws14{word-spacing:2.550432pt;}
.ws93{word-spacing:2.603559pt;}
.wsc5{word-spacing:2.630144pt;}
.ws56{word-spacing:2.656693pt;}
.ws3d{word-spacing:2.709827pt;}
.wsba{word-spacing:2.773606pt;}
.ws5c{word-spacing:2.816095pt;}
.wsce{word-spacing:2.863343pt;}
.wsec{word-spacing:2.865408pt;}
.wsd6{word-spacing:2.865843pt;}
.wsa0{word-spacing:2.866509pt;}
.wse9{word-spacing:2.867200pt;}
.wsc7{word-spacing:2.867977pt;}
.wsa7{word-spacing:2.869248pt;}
.wsef{word-spacing:2.869717pt;}
.wsb5{word-spacing:2.964890pt;}
.ws66{word-spacing:2.975497pt;}
.wse8{word-spacing:3.012710pt;}
.ws77{word-spacing:3.081764pt;}
.ws8e{word-spacing:3.134898pt;}
.ws20{word-spacing:3.188032pt;}
.ws6e{word-spacing:3.241166pt;}
.wsa8{word-spacing:3.251814pt;}
.ws47{word-spacing:3.294300pt;}
.wse1{word-spacing:3.299635pt;}
.ws67{word-spacing:3.347434pt;}
.ws68{word-spacing:3.400567pt;}
.wsb9{word-spacing:3.490918pt;}
.ws43{word-spacing:3.506835pt;}
.ws1a{word-spacing:3.538739pt;}
.ws44{word-spacing:3.613103pt;}
.ws81{word-spacing:3.666237pt;}
.wsc2{word-spacing:3.682202pt;}
.ws58{word-spacing:3.719371pt;}
.wsbf{word-spacing:3.730022pt;}
.ws3c{word-spacing:3.772505pt;}
.wsda{word-spacing:3.777843pt;}
.ws41{word-spacing:3.825638pt;}
.ws95{word-spacing:3.878772pt;}
.ws6d{word-spacing:3.931906pt;}
.wse0{word-spacing:4.016947pt;}
.ws30{word-spacing:4.038174pt;}
.ws31{word-spacing:4.091308pt;}
.ws5b{word-spacing:4.197575pt;}
.ws74{word-spacing:4.250709pt;}
.wse5{word-spacing:4.256051pt;}
.ws7d{word-spacing:4.303843pt;}
.ws8d{word-spacing:4.356977pt;}
.ws85{word-spacing:4.410111pt;}
.ws91{word-spacing:4.622646pt;}
.ws7b{word-spacing:4.728914pt;}
.ws5e{word-spacing:4.782048pt;}
.ws55{word-spacing:4.888316pt;}
.wsab{word-spacing:4.925542pt;}
.ws7a{word-spacing:4.941450pt;}
.ws6b{word-spacing:4.994583pt;}
.wsdc{word-spacing:5.021184pt;}
.ws40{word-spacing:5.153985pt;}
.ws4a{word-spacing:5.207119pt;}
.ws23{word-spacing:5.260253pt;}
.wsc9{word-spacing:5.260288pt;}
.ws29{word-spacing:5.366521pt;}
.ws12{word-spacing:5.393072pt;}
.ws8c{word-spacing:5.419654pt;}
.ws13{word-spacing:5.467459pt;}
.ws53{word-spacing:5.632190pt;}
.ws72{word-spacing:5.791591pt;}
.ws1b{word-spacing:5.834138pt;}
.wscd{word-spacing:6.360166pt;}
.ws2e{word-spacing:6.376064pt;}
.ws2d{word-spacing:6.429198pt;}
.ws50{word-spacing:6.535466pt;}
.ws24{word-spacing:6.641733pt;}
.wsdb{word-spacing:6.886195pt;}
.ws7c{word-spacing:7.385607pt;}
.ws10{word-spacing:7.699075pt;}
.ws6a{word-spacing:8.076348pt;}
.ws7{word-spacing:9.260546pt;}
.ws92{word-spacing:10.520506pt;}
.ws34{word-spacing:10.580852pt;}
.wsb3{word-spacing:11.716096pt;}
.wsde{word-spacing:11.859558pt;}
.wsc8{word-spacing:11.898786pt;}
.wsd3{word-spacing:11.899366pt;}
.wse6{word-spacing:11.899418pt;}
.wsdd{word-spacing:11.899571pt;}
.wse4{word-spacing:11.903369pt;}
.wsb6{word-spacing:11.903983pt;}
.wsc0{word-spacing:11.904119pt;}
.wsd7{word-spacing:11.904495pt;}
.wsbb{word-spacing:11.904751pt;}
.wse7{word-spacing:11.904905pt;}
.wsb8{word-spacing:11.905331pt;}
.wsa9{word-spacing:11.905476pt;}
.wsd0{word-spacing:11.905937pt;}
.wsea{word-spacing:11.906142pt;}
.wsa5{word-spacing:11.907379pt;}
.wsae{word-spacing:12.050842pt;}
.ws48{word-spacing:13.230333pt;}
.ws5{word-spacing:13.763148pt;}
.wsc4{word-spacing:13.963674pt;}
.wsd{word-spacing:14.348669pt;}
.wse{word-spacing:14.356730pt;}
.ws8a{word-spacing:14.725118pt;}
.wse3{word-spacing:14.728806pt;}
.wsa4{word-spacing:14.773606pt;}
.wsd4{word-spacing:14.773914pt;}
.wscb{word-spacing:14.774528pt;}
.wsee{word-spacing:14.774579pt;}
.wscf{word-spacing:14.775945pt;}
.wsbd{word-spacing:14.776346pt;}
.wsa1{word-spacing:14.776627pt;}
.wsb4{word-spacing:14.778786pt;}
.wsd8{word-spacing:15.159194pt;}
.wse2{word-spacing:15.211491pt;}
.wsed{word-spacing:15.637402pt;}
.wsf{word-spacing:15.732893pt;}
.wsd9{word-spacing:16.163430pt;}
.ws64{word-spacing:16.418365pt;}
.wsca{word-spacing:17.167667pt;}
.wsb1{word-spacing:18.889216pt;}
.ws11{word-spacing:24.399002pt;}
.ws98{word-spacing:571.697664pt;}
.ws9b{word-spacing:648.450048pt;}
.ws99{word-spacing:696.397124pt;}
.ws9c{word-spacing:704.400384pt;}
.ws9d{word-spacing:709.851955pt;}
.ws9a{word-spacing:720.563814pt;}
._15{margin-left:-7.330087pt;}
._b{margin-left:-6.168883pt;}
._4{margin-left:-4.797974pt;}
._0{margin-left:-3.077424pt;}
._2{margin-left:-1.175671pt;}
._3{width:0.969929pt;}
._7{width:2.045648pt;}
._5{width:11.366718pt;}
._16{width:12.440051pt;}
._9{width:13.868032pt;}
._c{width:15.589581pt;}
._14{width:16.524633pt;}
._a{width:17.414895pt;}
._1b{width:18.756255pt;}
._18{width:19.765798pt;}
._f{width:20.835202pt;}
._1c{width:21.746211pt;}
._6{width:22.713512pt;}
._19{width:24.122775pt;}
._d{width:25.727590pt;}
._13{width:26.952323pt;}
._8{width:29.011008pt;}
._1e{width:29.921093pt;}
._1f{width:31.461975pt;}
._e{width:32.677328pt;}
._17{width:33.793139pt;}
._10{width:36.184163pt;}
._1d{width:39.106526pt;}
._1a{width:40.713995pt;}
._2d{width:54.993920pt;}
._1{width:61.607004pt;}
._2c{width:78.904320pt;}
._27{width:284.561732pt;}
._29{width:470.105097pt;}
._22{width:553.860506pt;}
._23{width:590.612204pt;}
._26{width:607.132877pt;}
._2b{width:613.684326pt;}
._28{width:626.165555pt;}
._24{width:649.454285pt;}
._2a{width:651.957859pt;}
._21{width:687.471821pt;}
._25{width:736.296858pt;}
._11{width:1029.290366pt;}
._20{width:2340.146667pt;}
._12{width:2361.400000pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fsb{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:55.365867pt;}
.fs0{font-size:78.901754pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.044747pt;}
.y2{bottom:6.048560pt;}
.y8{bottom:12.578910pt;}
.y49{bottom:28.346667pt;}
.ye3{bottom:79.697333pt;}
.y163{bottom:89.660000pt;}
.y20{bottom:91.398667pt;}
.y123{bottom:91.652000pt;}
.y1d2{bottom:92.050667pt;}
.y10b{bottom:93.246667pt;}
.y16d{bottom:93.645333pt;}
.yb3{bottom:94.441333pt;}
.y7e{bottom:95.222667pt;}
.ye2{bottom:96.434667pt;}
.y19b{bottom:105.917333pt;}
.y162{bottom:106.397333pt;}
.y48{bottom:106.436000pt;}
.y1f{bottom:107.298667pt;}
.y1d1{bottom:107.393333pt;}
.y122{bottom:108.389333pt;}
.y10a{bottom:109.984000pt;}
.y132{bottom:110.382667pt;}
.yb2{bottom:111.178667pt;}
.y7d{bottom:111.960000pt;}
.ye1{bottom:113.172000pt;}
.y19a{bottom:121.260000pt;}
.y1d0{bottom:122.736000pt;}
.y161{bottom:123.134667pt;}
.y47{bottom:123.173333pt;}
.y1e{bottom:123.200000pt;}
.y121{bottom:125.126667pt;}
.y109{bottom:126.721333pt;}
.y131{bottom:127.120000pt;}
.yb1{bottom:127.916000pt;}
.y7c{bottom:128.697333pt;}
.ye0{bottom:129.909333pt;}
.y199{bottom:136.602667pt;}
.y1cf{bottom:138.078667pt;}
.y1d{bottom:139.100000pt;}
.y160{bottom:139.872000pt;}
.y46{bottom:139.910667pt;}
.y120{bottom:141.864000pt;}
.y108{bottom:143.458667pt;}
.y130{bottom:143.857333pt;}
.y7b{bottom:145.434667pt;}
.ydf{bottom:146.646667pt;}
.yb0{bottom:148.638667pt;}
.y198{bottom:151.944000pt;}
.y1ce{bottom:153.421333pt;}
.y1c{bottom:155.000000pt;}
.y15f{bottom:156.609333pt;}
.y45{bottom:156.648000pt;}
.y12f{bottom:160.594667pt;}
.y7a{bottom:162.172000pt;}
.y11f{bottom:162.586667pt;}
.yde{bottom:163.384000pt;}
.y107{bottom:164.180000pt;}
.y197{bottom:167.286667pt;}
.y1cd{bottom:168.762667pt;}
.y1b{bottom:170.901333pt;}
.y44{bottom:173.385333pt;}
.y12e{bottom:177.330667pt;}
.yaf{bottom:178.526667pt;}
.y79{bottom:178.909333pt;}
.ydd{bottom:180.121333pt;}
.y11e{bottom:180.520000pt;}
.y196{bottom:182.629333pt;}
.y1cc{bottom:184.105333pt;}
.y1a{bottom:186.801333pt;}
.y43{bottom:190.122667pt;}
.y106{bottom:194.068000pt;}
.yae{bottom:195.264000pt;}
.y78{bottom:195.646667pt;}
.ydc{bottom:196.858667pt;}
.y195{bottom:197.972000pt;}
.y1cb{bottom:199.448000pt;}
.y19{bottom:202.701333pt;}
.y42{bottom:206.860000pt;}
.y15e{bottom:207.218667pt;}
.y11d{bottom:210.408000pt;}
.y105{bottom:210.805333pt;}
.yad{bottom:212.001333pt;}
.y77{bottom:212.384000pt;}
.y194{bottom:213.314667pt;}
.ydb{bottom:213.596000pt;}
.y1ca{bottom:214.790667pt;}
.y41{bottom:223.597333pt;}
.y15d{bottom:223.956000pt;}
.y11c{bottom:227.145333pt;}
.y104{bottom:227.542667pt;}
.y193{bottom:228.657333pt;}
.yac{bottom:228.738667pt;}
.y76{bottom:229.121333pt;}
.y1c9{bottom:230.133333pt;}
.yda{bottom:230.333333pt;}
.y40{bottom:240.334667pt;}
.y15c{bottom:240.693333pt;}
.y192{bottom:244.000000pt;}
.y103{bottom:244.280000pt;}
.yab{bottom:245.476000pt;}
.y75{bottom:245.858667pt;}
.yd9{bottom:247.069333pt;}
.y11b{bottom:247.866667pt;}
.y3f{bottom:257.072000pt;}
.y15b{bottom:257.430667pt;}
.y191{bottom:259.342667pt;}
.y1c8{bottom:260.818667pt;}
.y102{bottom:261.017333pt;}
.yaa{bottom:262.213333pt;}
.yd8{bottom:263.806667pt;}
.y74{bottom:266.581333pt;}
.y18{bottom:273.154667pt;}
.y3e{bottom:273.809333pt;}
.y15a{bottom:274.168000pt;}
.y190{bottom:274.684000pt;}
.y1c7{bottom:276.161333pt;}
.y101{bottom:277.754667pt;}
.ya9{bottom:278.950667pt;}
.yd7{bottom:280.544000pt;}
.y16c{bottom:281.740000pt;}
.y73{bottom:284.513333pt;}
.y17{bottom:289.054667pt;}
.y18f{bottom:290.026667pt;}
.y3d{bottom:290.546667pt;}
.y159{bottom:290.905333pt;}
.y1c6{bottom:291.502667pt;}
.y100{bottom:294.492000pt;}
.ya8{bottom:295.688000pt;}
.yd6{bottom:297.281333pt;}
.y16{bottom:304.954667pt;}
.y18e{bottom:305.369333pt;}
.y1c5{bottom:306.845333pt;}
.y3c{bottom:307.284000pt;}
.y158{bottom:307.642667pt;}
.y11a{bottom:311.229333pt;}
.y16b{bottom:311.628000pt;}
.ya7{bottom:312.425333pt;}
.yd5{bottom:314.018667pt;}
.y72{bottom:314.401333pt;}
.yff{bottom:315.214667pt;}
.y18d{bottom:320.712000pt;}
.y15{bottom:320.856000pt;}
.y1c4{bottom:322.188000pt;}
.y3b{bottom:324.021333pt;}
.y119{bottom:327.966667pt;}
.y157{bottom:328.365333pt;}
.ya6{bottom:329.162667pt;}
.y71{bottom:331.138667pt;}
.y12d{bottom:331.952000pt;}
.yd4{bottom:334.741333pt;}
.y1c3{bottom:337.530667pt;}
.y18c{bottom:340.040000pt;}
.y3a{bottom:340.758667pt;}
.y118{bottom:344.704000pt;}
.yfe{bottom:345.102667pt;}
.ya5{bottom:345.900000pt;}
.y70{bottom:347.876000pt;}
.y1c2{bottom:352.873333pt;}
.y14{bottom:354.688000pt;}
.y39{bottom:357.496000pt;}
.y156{bottom:358.253333pt;}
.y117{bottom:361.441333pt;}
.yfd{bottom:361.840000pt;}
.ya4{bottom:362.637333pt;}
.y6f{bottom:364.613333pt;}
.yd3{bottom:364.629333pt;}
.y1c1{bottom:368.216000pt;}
.y18b{bottom:369.928000pt;}
.y13{bottom:370.589333pt;}
.y38{bottom:374.233333pt;}
.y155{bottom:374.990667pt;}
.yfc{bottom:378.577333pt;}
.ya3{bottom:379.374667pt;}
.y6e{bottom:381.350667pt;}
.yd2{bottom:381.366667pt;}
.y116{bottom:382.164000pt;}
.y1c0{bottom:383.558667pt;}
.y12{bottom:386.489333pt;}
.y37{bottom:390.970667pt;}
.y154{bottom:391.728000pt;}
.y18a{bottom:393.518667pt;}
.yfb{bottom:395.314667pt;}
.ya2{bottom:396.112000pt;}
.y6d{bottom:398.088000pt;}
.yd1{bottom:398.104000pt;}
.y1bf{bottom:398.901333pt;}
.y36{bottom:407.706667pt;}
.y153{bottom:408.465333pt;}
.yfa{bottom:412.052000pt;}
.ya1{bottom:412.848000pt;}
.y1be{bottom:414.244000pt;}
.y6c{bottom:414.825333pt;}
.yd0{bottom:414.841333pt;}
.y189{bottom:417.110667pt;}
.y11{bottom:418.330667pt;}
.y152{bottom:425.202667pt;}
.y35{bottom:428.429333pt;}
.yf8{bottom:428.789333pt;}
.ya0{bottom:429.585333pt;}
.y6b{bottom:431.562667pt;}
.ycf{bottom:431.578667pt;}
.yf9{bottom:433.610667pt;}
.y10{bottom:434.230667pt;}
.y188{bottom:440.702667pt;}
.y151{bottom:441.940000pt;}
.y1bd{bottom:444.928000pt;}
.yf7{bottom:445.526667pt;}
.y9f{bottom:446.322667pt;}
.y6a{bottom:448.300000pt;}
.yce{bottom:448.316000pt;}
.y16a{bottom:449.512000pt;}
.yf{bottom:450.130667pt;}
.y14f{bottom:458.677333pt;}
.y1bc{bottom:460.270667pt;}
.yf6{bottom:462.264000pt;}
.y9e{bottom:463.060000pt;}
.y150{bottom:463.498667pt;}
.y187{bottom:464.293333pt;}
.y69{bottom:465.037333pt;}
.ycd{bottom:465.053333pt;}
.y14e{bottom:475.414667pt;}
.y1bb{bottom:475.613333pt;}
.yf5{bottom:479.001333pt;}
.y169{bottom:479.398667pt;}
.y9d{bottom:479.797333pt;}
.y186{bottom:479.916000pt;}
.y68{bottom:481.774667pt;}
.ye{bottom:481.972000pt;}
.y12c{bottom:482.985333pt;}
.ycc{bottom:485.776000pt;}
.y1ba{bottom:490.956000pt;}
.y14d{bottom:492.152000pt;}
.y34{bottom:495.229333pt;}
.y185{bottom:495.537333pt;}
.yf4{bottom:495.738667pt;}
.y168{bottom:496.136000pt;}
.y9c{bottom:496.534667pt;}
.yd{bottom:497.872000pt;}
.y67{bottom:498.512000pt;}
.y1b9{bottom:506.298667pt;}
.y14c{bottom:508.889333pt;}
.yf3{bottom:512.476000pt;}
.y33{bottom:512.525333pt;}
.y12b{bottom:512.873333pt;}
.y9b{bottom:513.272000pt;}
.yc{bottom:513.772000pt;}
.y66{bottom:515.249333pt;}
.ycb{bottom:515.664000pt;}
.y1b8{bottom:521.641333pt;}
.y14b{bottom:525.626667pt;}
.yf2{bottom:529.213333pt;}
.y12a{bottom:529.610667pt;}
.yb{bottom:529.673333pt;}
.y9a{bottom:530.009333pt;}
.y65{bottom:531.986667pt;}
.yca{bottom:532.401333pt;}
.y1b7{bottom:536.984000pt;}
.y184{bottom:537.488000pt;}
.y14a{bottom:542.364000pt;}
.ya{bottom:545.573333pt;}
.y32{bottom:545.760000pt;}
.yf1{bottom:545.950667pt;}
.y129{bottom:546.348000pt;}
.y99{bottom:546.746667pt;}
.y183{bottom:547.797333pt;}
.y64{bottom:548.724000pt;}
.yc9{bottom:549.137333pt;}
.y1b6{bottom:552.325333pt;}
.y149{bottom:559.101333pt;}
.yf0{bottom:562.686667pt;}
.y31{bottom:563.056000pt;}
.y128{bottom:563.085333pt;}
.y98{bottom:563.484000pt;}
.y7{bottom:565.458715pt;}
.y63{bottom:565.461333pt;}
.yc8{bottom:565.874667pt;}
.y1b5{bottom:567.668000pt;}
.y148{bottom:575.837333pt;}
.yef{bottom:579.424000pt;}
.y182{bottom:579.516000pt;}
.y127{bottom:579.822667pt;}
.y97{bottom:580.221333pt;}
.y30{bottom:580.350667pt;}
.y62{bottom:582.198667pt;}
.yc7{bottom:582.612000pt;}
.y1b4{bottom:583.010667pt;}
.y147{bottom:592.574667pt;}
.yee{bottom:596.161333pt;}
.y126{bottom:596.560000pt;}
.y96{bottom:596.958667pt;}
.y2f{bottom:597.645333pt;}
.y1b3{bottom:598.353333pt;}
.y61{bottom:598.934667pt;}
.yc6{bottom:599.349333pt;}
.y115{bottom:600.146667pt;}
.y181{bottom:600.530667pt;}
.y17f{bottom:601.437333pt;}
.y146{bottom:609.312000pt;}
.yed{bottom:612.898667pt;}
.y125{bottom:613.297333pt;}
.y95{bottom:613.696000pt;}
.y2e{bottom:614.941333pt;}
.y60{bottom:615.672000pt;}
.yc5{bottom:616.086667pt;}
.y180{bottom:621.544000pt;}
.y145{bottom:626.049333pt;}
.y1b2{bottom:629.038667pt;}
.yec{bottom:629.636000pt;}
.y114{bottom:630.034667pt;}
.y94{bottom:630.433333pt;}
.y2d{bottom:632.236000pt;}
.y5f{bottom:632.409333pt;}
.yc4{bottom:632.824000pt;}
.y17e{bottom:642.558667pt;}
.y144{bottom:642.786667pt;}
.y1b1{bottom:644.381333pt;}
.yeb{bottom:646.373333pt;}
.y113{bottom:646.772000pt;}
.y93{bottom:647.170667pt;}
.y5e{bottom:649.146667pt;}
.y2c{bottom:649.530667pt;}
.yc3{bottom:649.561333pt;}
.y143{bottom:659.524000pt;}
.y1b0{bottom:659.724000pt;}
.y17b{bottom:662.922667pt;}
.y112{bottom:663.509333pt;}
.y17d{bottom:663.572000pt;}
.y92{bottom:663.908000pt;}
.y5d{bottom:665.884000pt;}
.yc2{bottom:666.298667pt;}
.y2b{bottom:666.826667pt;}
.yea{bottom:667.096000pt;}
.y1af{bottom:675.066667pt;}
.y142{bottom:676.261333pt;}
.y110{bottom:680.246667pt;}
.y91{bottom:680.645333pt;}
.y5c{bottom:682.621333pt;}
.yc1{bottom:683.036000pt;}
.y2a{bottom:684.121333pt;}
.y17c{bottom:684.586667pt;}
.y111{bottom:685.068000pt;}
.y1ae{bottom:690.408000pt;}
.ye9{bottom:696.984000pt;}
.y90{bottom:697.382667pt;}
.y5b{bottom:699.358667pt;}
.yc0{bottom:699.773333pt;}
.y29{bottom:701.417333pt;}
.y17a{bottom:705.600000pt;}
.y1ad{bottom:705.750667pt;}
.ye8{bottom:713.721333pt;}
.y8f{bottom:714.120000pt;}
.y5a{bottom:716.096000pt;}
.ybf{bottom:716.510667pt;}
.y28{bottom:718.712000pt;}
.y1ac{bottom:721.093333pt;}
.y179{bottom:726.614667pt;}
.y141{bottom:726.872000pt;}
.ye7{bottom:730.458667pt;}
.y8e{bottom:730.857333pt;}
.y59{bottom:732.833333pt;}
.ybe{bottom:733.248000pt;}
.y124{bottom:734.444000pt;}
.y27{bottom:736.006667pt;}
.y1ab{bottom:736.436000pt;}
.y140{bottom:743.609333pt;}
.ye6{bottom:747.196000pt;}
.y8d{bottom:747.594667pt;}
.y178{bottom:747.628000pt;}
.y58{bottom:749.570667pt;}
.ybd{bottom:749.985333pt;}
.y1aa{bottom:751.778667pt;}
.y26{bottom:753.302667pt;}
.y13f{bottom:760.346667pt;}
.ye5{bottom:763.933333pt;}
.y8c{bottom:764.332000pt;}
.y57{bottom:766.308000pt;}
.ybc{bottom:766.722667pt;}
.y1a9{bottom:767.121333pt;}
.y177{bottom:768.642667pt;}
.y25{bottom:770.597333pt;}
.y176{bottom:775.948000pt;}
.y13e{bottom:777.084000pt;}
.y10f{bottom:780.670667pt;}
.y8b{bottom:781.069333pt;}
.y1a8{bottom:782.464000pt;}
.y56{bottom:783.045333pt;}
.ybb{bottom:783.460000pt;}
.ye4{bottom:784.656000pt;}
.y171{bottom:785.737333pt;}
.y13d{bottom:793.821333pt;}
.y10e{bottom:797.408000pt;}
.y8a{bottom:797.806667pt;}
.y55{bottom:799.782667pt;}
.yba{bottom:800.197333pt;}
.y175{bottom:804.268000pt;}
.y24{bottom:804.896000pt;}
.y13c{bottom:810.558667pt;}
.y1a6{bottom:813.148000pt;}
.y1a7{bottom:813.149333pt;}
.y10d{bottom:814.145333pt;}
.y89{bottom:814.544000pt;}
.y54{bottom:816.520000pt;}
.yb9{bottom:816.934667pt;}
.y23{bottom:823.100000pt;}
.y174{bottom:825.281333pt;}
.y13b{bottom:827.296000pt;}
.y1a5{bottom:828.490667pt;}
.y167{bottom:830.882667pt;}
.y88{bottom:831.281333pt;}
.y53{bottom:833.257333pt;}
.yb8{bottom:833.672000pt;}
.y10c{bottom:834.868000pt;}
.y22{bottom:837.445333pt;}
.y1a4{bottom:843.833333pt;}
.y13a{bottom:844.033333pt;}
.y173{bottom:846.296000pt;}
.y166{bottom:847.620000pt;}
.y87{bottom:848.018667pt;}
.y52{bottom:849.994667pt;}
.yb7{bottom:850.409333pt;}
.y21{bottom:851.792000pt;}
.y172{bottom:855.969333pt;}
.y1a3{bottom:859.176000pt;}
.y139{bottom:860.770667pt;}
.y165{bottom:864.357333pt;}
.y86{bottom:864.754667pt;}
.yb6{bottom:867.146667pt;}
.y51{bottom:870.717333pt;}
.y1a2{bottom:874.518667pt;}
.y138{bottom:877.508000pt;}
.y85{bottom:881.492000pt;}
.y164{bottom:885.078667pt;}
.y6{bottom:887.520000pt;}
.yb5{bottom:887.869333pt;}
.y170{bottom:888.324000pt;}
.y1a1{bottom:889.861333pt;}
.y137{bottom:894.245333pt;}
.y84{bottom:898.229333pt;}
.y50{bottom:900.605333pt;}
.yb4{bottom:901.816000pt;}
.y1a0{bottom:905.204000pt;}
.y136{bottom:910.982667pt;}
.y83{bottom:914.966667pt;}
.y16f{bottom:916.429333pt;}
.y4f{bottom:917.342667pt;}
.y19f{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y135{bottom:927.720000pt;}
.y82{bottom:931.704000pt;}
.y16e{bottom:933.525333pt;}
.y4e{bottom:934.080000pt;}
.y19e{bottom:935.889333pt;}
.y134{bottom:944.456000pt;}
.y81{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y4d{bottom:950.817333pt;}
.y19d{bottom:951.230667pt;}
.y133{bottom:961.193333pt;}
.y80{bottom:965.178667pt;}
.y19c{bottom:966.573333pt;}
.y4c{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y7f{bottom:981.916000pt;}
.y4b{bottom:984.290667pt;}
.y1{bottom:1023.885171pt;}
.y4a{bottom:1043.020000pt;}
.h2{height:22.441454pt;}
.h7{height:22.673858pt;}
.hc{height:23.209028pt;}
.ha{height:27.076941pt;}
.hb{height:27.262909pt;}
.h14{height:28.023859pt;}
.h15{height:29.397999pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.hd{height:30.945242pt;}
.h12{height:31.157778pt;}
.he{height:34.430976pt;}
.hf{height:34.813542pt;}
.h1a{height:35.052646pt;}
.h13{height:36.873667pt;}
.h16{height:37.087439pt;}
.h10{height:38.256384pt;}
.h11{height:38.681455pt;}
.h4{height:38.947124pt;}
.h6{height:48.360277pt;}
.h3{height:53.495389pt;}
.h18{height:64.034876pt;}
.h5{height:68.861952pt;}
.h19{height:77.634876pt;}
.h17{height:80.173542pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:25.487229pt;}
.w3{width:66.991004pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x2{left:47.561333pt;}
.xad{left:61.680000pt;}
.xa2{left:75.952000pt;}
.x1{left:100.627626pt;}
.xa4{left:113.282667pt;}
.xab{left:117.598667pt;}
.xa3{left:121.481333pt;}
.xa5{left:128.806667pt;}
.x5{left:222.073333pt;}
.x4{left:223.020000pt;}
.x3c{left:227.258667pt;}
.x8{left:251.365333pt;}
.x97{left:254.192000pt;}
.x92{left:257.966667pt;}
.x98{left:267.474667pt;}
.x90{left:268.581333pt;}
.x93{left:271.250667pt;}
.x6{left:275.060000pt;}
.x69{left:276.362667pt;}
.x91{left:277.328000pt;}
.x99{left:284.049333pt;}
.x7{left:285.825333pt;}
.x86{left:287.264000pt;}
.x6a{left:289.646667pt;}
.x3d{left:291.633333pt;}
.x6b{left:296.154667pt;}
.x3b{left:298.298667pt;}
.x87{left:300.548000pt;}
.x4a{left:302.741333pt;}
.x9f{left:304.917333pt;}
.x57{left:307.037333pt;}
.x48{left:308.621333pt;}
.xac{left:311.802667pt;}
.x4b{left:316.024000pt;}
.x58{left:320.321333pt;}
.xa0{left:321.472000pt;}
.x33{left:328.397333pt;}
.x80{left:339.906667pt;}
.x4f{left:343.969333pt;}
.x23{left:346.076000pt;}
.xae{left:348.478667pt;}
.x49{left:349.666667pt;}
.x81{left:353.190667pt;}
.x50{left:357.252000pt;}
.x24{left:359.358667pt;}
.x4c{left:367.440000pt;}
.x30{left:369.582667pt;}
.x79{left:375.924000pt;}
.x42{left:380.532000pt;}
.x31{left:382.865333pt;}
.x25{left:383.812000pt;}
.x44{left:385.885333pt;}
.x64{left:389.849333pt;}
.xb{left:391.608000pt;}
.x61{left:392.629333pt;}
.x43{left:393.814667pt;}
.x72{left:395.172000pt;}
.x26{left:397.094667pt;}
.xc{left:398.249333pt;}
.x45{left:399.168000pt;}
.x27{left:400.349333pt;}
.x65{left:403.133333pt;}
.x62{left:405.913333pt;}
.x34{left:407.096000pt;}
.x63{left:409.201333pt;}
.xaa{left:410.204000pt;}
.x28{left:413.633333pt;}
.x53{left:414.616000pt;}
.xa7{left:417.449333pt;}
.x66{left:419.790667pt;}
.x35{left:421.608000pt;}
.xa9{left:424.604000pt;}
.x67{left:426.538667pt;}
.x70{left:429.714667pt;}
.xf{left:430.888000pt;}
.x10{left:437.530667pt;}
.x68{left:439.822667pt;}
.x73{left:441.220000pt;}
.x71{left:442.998667pt;}
.x21{left:449.728000pt;}
.x74{left:454.504000pt;}
.x75{left:457.888000pt;}
.x22{left:463.010667pt;}
.x54{left:466.401333pt;}
.x76{left:471.172000pt;}
.x36{left:476.246667pt;}
.x55{left:477.326667pt;}
.x2a{left:485.038667pt;}
.x2e{left:490.276000pt;}
.x2b{left:498.322667pt;}
.x5a{left:500.080000pt;}
.x2f{left:503.560000pt;}
.x5b{left:508.285333pt;}
.x56{left:517.224000pt;}
.x18{left:525.770667pt;}
.x9c{left:536.496000pt;}
.x77{left:538.081333pt;}
.x19{left:539.054667pt;}
.x2c{left:541.121333pt;}
.x9e{left:542.778667pt;}
.x37{left:545.781333pt;}
.x9d{left:549.780000pt;}
.x78{left:551.364000pt;}
.x7c{left:552.390667pt;}
.x2d{left:554.405333pt;}
.x7d{left:555.778667pt;}
.x5c{left:557.325333pt;}
.x38{left:559.065333pt;}
.x46{left:564.916000pt;}
.x7e{left:569.062667pt;}
.x85{left:570.997333pt;}
.x47{left:571.932000pt;}
.x1f{left:576.977333pt;}
.x7a{left:580.276000pt;}
.x84{left:584.204000pt;}
.x7f{left:585.733333pt;}
.x20{left:590.261333pt;}
.x7b{left:593.560000pt;}
.x8e{left:597.004000pt;}
.x5d{left:598.588000pt;}
.xb3{left:601.325333pt;}
.x59{left:604.356000pt;}
.x5e{left:606.792000pt;}
.x3e{left:608.092000pt;}
.xa6{left:612.081333pt;}
.xb2{left:613.581333pt;}
.x8c{left:616.829333pt;}
.xa8{left:618.089333pt;}
.x3f{left:621.376000pt;}
.x8d{left:625.630667pt;}
.x8f{left:630.645333pt;}
.x1b{left:633.470667pt;}
.x1d{left:639.249333pt;}
.xb5{left:643.038667pt;}
.x9{left:644.796000pt;}
.x1c{left:646.754667pt;}
.x11{left:649.526667pt;}
.xa{left:651.437333pt;}
.x1e{left:652.533333pt;}
.x40{left:654.997333pt;}
.x12{left:656.169333pt;}
.x51{left:659.010667pt;}
.x5f{left:659.973333pt;}
.x1a{left:662.820000pt;}
.x15{left:663.870667pt;}
.x94{left:664.910667pt;}
.x9a{left:666.765333pt;}
.x41{left:668.280000pt;}
.xd{left:670.941333pt;}
.x52{left:672.294667pt;}
.x60{left:674.224000pt;}
.x39{left:675.689333pt;}
.xe{left:677.584000pt;}
.xb6{left:678.777333pt;}
.x9b{left:680.049333pt;}
.x95{left:681.581333pt;}
.x8a{left:682.652000pt;}
.xb4{left:684.012000pt;}
.x82{left:685.236000pt;}
.x3a{left:688.972000pt;}
.x88{left:690.489333pt;}
.x96{left:694.864000pt;}
.x8b{left:695.936000pt;}
.x83{left:701.904000pt;}
.x89{left:703.773333pt;}
.x6c{left:708.113333pt;}
.xa1{left:709.044000pt;}
.x4d{left:710.370667pt;}
.x13{left:711.784000pt;}
.x14{left:718.425333pt;}
.xaf{left:720.329333pt;}
.x6d{left:721.396000pt;}
.x4e{left:723.654667pt;}
.xb1{left:725.058667pt;}
.x29{left:726.858667pt;}
.x6e{left:728.012000pt;}
.x16{left:733.794667pt;}
.x32{left:737.198667pt;}
.x6f{left:739.546667pt;}
.x17{left:740.436000pt;}
.xb0{left:744.238667pt;}
}




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