
    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_4a2172c0af34cc1485427214.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.892000;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_b75b75032ed9c09327d2cb03.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_636a99d3b8f83e5a41760d5d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_358dc8627a7f43af3116cb55.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739000;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_4724a965f49415787cc499f9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_673fe8c49f0b0680284419ed.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6f151561a78cb30e4e227b87.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6661238663b159ba7391d5e9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_741b6ce72a1e968dba7aae55.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_12ffa4c71a17ac8714dbba12.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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:ffb;src:url('chunks/assets/font_3244110f2eab3a17961ed1ac.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m29{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);}
.mf{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);}
.m26{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);}
.m1f{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);}
.m8{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);}
.m16{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);}
.m2{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);}
.m15{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);}
.m1b{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);}
.m17{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);}
.mb{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);}
.m3{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);}
.m1c{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);}
.m20{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);}
.m23{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);}
.m11{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);}
.m27{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);}
.m24{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);}
.m22{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);}
.m14{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);}
.m28{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);}
.m13{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);}
.m1{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.mc{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);}
.m19{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);}
.m1e{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);}
.m1a{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);}
.m25{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);}
.m6{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);}
.m1d{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);}
.m5{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);}
.m12{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);}
.m21{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-10.920000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:12.000000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v5{vertical-align:32.178000px;}
.v6{vertical-align:47.520000px;}
.ls7{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000422px;}
.lsc{letter-spacing:0.000612px;}
.ls1f{letter-spacing:0.000800px;}
.ls14{letter-spacing:0.001133px;}
.ls20{letter-spacing:0.001544px;}
.ls15{letter-spacing:0.003178px;}
.ls23{letter-spacing:0.004343px;}
.ls26{letter-spacing:0.004800px;}
.lsb{letter-spacing:0.548815px;}
.ls8{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.lsd{letter-spacing:2.988600px;}
.ls9{letter-spacing:2.989200px;}
.lse{letter-spacing:3.507900px;}
.ls16{letter-spacing:3.513900px;}
.lsa{letter-spacing:3.553200px;}
.ls3{letter-spacing:10.461300px;}
.ls6{letter-spacing:11.954850px;}
.ls24{letter-spacing:13.209224px;}
.ls21{letter-spacing:13.448400px;}
.ls22{letter-spacing:13.454400px;}
.ls1d{letter-spacing:13.987490px;}
.ls11{letter-spacing:14.286368px;}
.ls1a{letter-spacing:14.585246px;}
.lsf{letter-spacing:14.764573px;}
.ls18{letter-spacing:14.824349px;}
.ls1b{letter-spacing:15.063451px;}
.ls12{letter-spacing:15.123227px;}
.ls10{letter-spacing:15.183002px;}
.ls19{letter-spacing:16.199188px;}
.ls1e{letter-spacing:17.155597px;}
.ls25{letter-spacing:18.703341px;}
.ls13{letter-spacing:18.889090px;}
.ls1c{letter-spacing:19.486846px;}
.ls0{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls1{letter-spacing:72.355200px;}
.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:-28.532313px;}
.ws42{word-spacing:-14.943900px;}
.ws4e{word-spacing:-13.449600px;}
.ws15{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws8{word-spacing:-10.460700px;}
.ws7f{word-spacing:-3.168107px;}
.ws9e{word-spacing:-2.988780px;}
.wsa4{word-spacing:-2.958912px;}
.ws84{word-spacing:-2.869229px;}
.wsa5{word-spacing:-2.743718px;}
.ws8f{word-spacing:-2.331248px;}
.ws5{word-spacing:-1.908367px;}
.ws9d{word-spacing:-1.853044px;}
.ws87{word-spacing:-1.554166px;}
.wsa3{word-spacing:-1.494390px;}
.ws68{word-spacing:-1.374839px;}
.ws4{word-spacing:-1.322630px;}
.ws85{word-spacing:-1.255288px;}
.ws53{word-spacing:-1.195512px;}
.wsb3{word-spacing:-1.183565px;}
.ws49{word-spacing:-0.956410px;}
.ws1e{word-spacing:-0.914573px;}
.ws61{word-spacing:-0.896634px;}
.ws73{word-spacing:-0.836858px;}
.ws5f{word-spacing:-0.777083px;}
.ws64{word-spacing:-0.717307px;}
.ws57{word-spacing:-0.657532px;}
.ws82{word-spacing:-0.537980px;}
.ws56{word-spacing:-0.478205px;}
.ws41{word-spacing:-0.418429px;}
.wsda{word-spacing:-0.376589px;}
.ws25{word-spacing:-0.358654px;}
.ws27{word-spacing:-0.298878px;}
.ws1b{word-spacing:-0.268992px;}
.ws28{word-spacing:-0.239102px;}
.ws98{word-spacing:-0.215194px;}
.ws33{word-spacing:-0.179327px;}
.ws17{word-spacing:-0.161395px;}
.ws29{word-spacing:-0.119551px;}
.ws1c{word-spacing:-0.107597px;}
.ws3{word-spacing:-0.059776px;}
.ws97{word-spacing:-0.053798px;}
.ws14{word-spacing:-0.047821px;}
.ws9{word-spacing:-0.041843px;}
.ws1{word-spacing:0.000000px;}
.ws6f{word-spacing:0.053798px;}
.ws2a{word-spacing:0.059776px;}
.ws18{word-spacing:0.107597px;}
.ws2e{word-spacing:0.119551px;}
.ws78{word-spacing:0.161395px;}
.ws38{word-spacing:0.179327px;}
.wsa{word-spacing:0.209214px;}
.wsbc{word-spacing:0.215194px;}
.ws26{word-spacing:0.239102px;}
.ws7b{word-spacing:0.268992px;}
.wsc{word-spacing:0.292900px;}
.ws31{word-spacing:0.298878px;}
.wsbf{word-spacing:0.322790px;}
.ws86{word-spacing:0.358654px;}
.wsdb{word-spacing:0.376589px;}
.ws37{word-spacing:0.418429px;}
.ws8d{word-spacing:0.478205px;}
.ws52{word-spacing:0.537980px;}
.ws7a{word-spacing:0.537984px;}
.ws46{word-spacing:0.568500px;}
.ws34{word-spacing:0.717307px;}
.ws39{word-spacing:0.777083px;}
.ws5e{word-spacing:0.836858px;}
.ws72{word-spacing:0.896634px;}
.wsb2{word-spacing:0.968371px;}
.ws40{word-spacing:1.016185px;}
.wsd3{word-spacing:1.075968px;}
.ws93{word-spacing:1.135736px;}
.wsd9{word-spacing:1.237363px;}
.ws24{word-spacing:1.255288px;}
.ws3d{word-spacing:1.315063px;}
.ws51{word-spacing:1.374839px;}
.ws43{word-spacing:1.434614px;}
.wsaf{word-spacing:1.452557px;}
.ws99{word-spacing:1.613941px;}
.ws67{word-spacing:1.673717px;}
.wsd2{word-spacing:1.721549px;}
.wsa0{word-spacing:1.829146px;}
.ws69{word-spacing:1.912819px;}
.ws1d{word-spacing:1.936742px;}
.wsac{word-spacing:1.990541px;}
.wsb{word-spacing:2.008454px;}
.ws9f{word-spacing:2.098138px;}
.ws20{word-spacing:2.205734px;}
.ws55{word-spacing:2.211697px;}
.ws90{word-spacing:2.271473px;}
.ws70{word-spacing:2.331248px;}
.wsd7{word-spacing:2.367130px;}
.ws50{word-spacing:2.510575px;}
.ws4a{word-spacing:2.630126px;}
.wsb6{word-spacing:2.636122px;}
.ws36{word-spacing:2.689902px;}
.ws3a{word-spacing:2.749678px;}
.ws2c{word-spacing:2.809453px;}
.ws4b{word-spacing:2.869229px;}
.ws16{word-spacing:2.869236px;}
.wsb8{word-spacing:2.905114px;}
.ws45{word-spacing:2.988780px;}
.ws92{word-spacing:3.108331px;}
.ws4d{word-spacing:3.168107px;}
.ws22{word-spacing:3.219667px;}
.wsc3{word-spacing:3.222595px;}
.wscc{word-spacing:3.223277px;}
.wsa7{word-spacing:3.224822px;}
.wsb7{word-spacing:3.225542px;}
.wsbd{word-spacing:3.225658px;}
.wsb4{word-spacing:3.226800px;}
.wscd{word-spacing:3.227904px;}
.wsd1{word-spacing:3.228672px;}
.wscb{word-spacing:3.228845px;}
.wsc5{word-spacing:3.230323px;}
.ws83{word-spacing:3.287658px;}
.ws60{word-spacing:3.347434px;}
.ws6b{word-spacing:3.389299px;}
.ws21{word-spacing:3.443098px;}
.ws9a{word-spacing:3.466985px;}
.ws95{word-spacing:3.526760px;}
.wsa6{word-spacing:3.550694px;}
.ws23{word-spacing:3.586536px;}
.ws1f{word-spacing:3.658291px;}
.ws63{word-spacing:3.706087px;}
.ws6a{word-spacing:3.712090px;}
.ws30{word-spacing:3.765863px;}
.ws5c{word-spacing:3.825638px;}
.ws4c{word-spacing:3.885414px;}
.ws65{word-spacing:3.945190px;}
.ws8b{word-spacing:4.124516px;}
.wsce{word-spacing:4.142477px;}
.ws44{word-spacing:4.184292px;}
.ws19{word-spacing:4.196275px;}
.ws54{word-spacing:4.244068px;}
.ws94{word-spacing:4.303843px;}
.ws9c{word-spacing:4.363619px;}
.ws88{word-spacing:4.483170px;}
.ws96{word-spacing:4.542946px;}
.ws2d{word-spacing:4.602721px;}
.ws35{word-spacing:4.722272px;}
.ws66{word-spacing:4.782048px;}
.ws8c{word-spacing:4.841824px;}
.ws3e{word-spacing:4.901599px;}
.wsd0{word-spacing:5.272243px;}
.ws2b{word-spacing:5.379804px;}
.ws3c{word-spacing:5.439580px;}
.ws80{word-spacing:5.559131px;}
.ws5a{word-spacing:5.678682px;}
.ws91{word-spacing:5.858009px;}
.ws32{word-spacing:5.917784px;}
.ws6d{word-spacing:5.971622px;}
.ws12{word-spacing:6.067206px;}
.ws13{word-spacing:6.150892px;}
.ws71{word-spacing:6.156887px;}
.ws9b{word-spacing:6.276438px;}
.ws81{word-spacing:6.336214px;}
.ws6c{word-spacing:6.348211px;}
.ws47{word-spacing:6.395989px;}
.ws62{word-spacing:6.455765px;}
.ws3f{word-spacing:6.754643px;}
.ws3b{word-spacing:7.053521px;}
.ws1a{word-spacing:7.155187px;}
.ws5d{word-spacing:7.173072px;}
.ws89{word-spacing:7.412174px;}
.ws6e{word-spacing:7.531776px;}
.ws75{word-spacing:7.651277px;}
.ws76{word-spacing:7.711052px;}
.ws8a{word-spacing:7.890379px;}
.ws5b{word-spacing:7.950155px;}
.ws4f{word-spacing:8.009930px;}
.ws8e{word-spacing:8.308808px;}
.ws48{word-spacing:8.428360px;}
.ws74{word-spacing:8.488135px;}
.ws10{word-spacing:8.661460px;}
.wsb5{word-spacing:8.769139px;}
.ws2f{word-spacing:11.904929px;}
.ws7{word-spacing:12.929425px;}
.wsb9{word-spacing:13.342003px;}
.wsdc{word-spacing:13.390022px;}
.wsc7{word-spacing:13.391491px;}
.wsa9{word-spacing:13.395398px;}
.wsaa{word-spacing:13.395802px;}
.wsc9{word-spacing:13.503398px;}
.wsd8{word-spacing:13.557197px;}
.wsbb{word-spacing:13.610995px;}
.wsd4{word-spacing:14.471770px;}
.wsb0{word-spacing:14.794560px;}
.ws6{word-spacing:15.483541px;}
.wsd{word-spacing:16.142252px;}
.wse{word-spacing:16.151321px;}
.wsc8{word-spacing:16.354714px;}
.wsa8{word-spacing:16.614528px;}
.wsbe{word-spacing:16.619971px;}
.wsd6{word-spacing:16.620067px;}
.wsc0{word-spacing:16.620979px;}
.wsc4{word-spacing:16.621402px;}
.wsca{word-spacing:16.621728px;}
.wsdd{word-spacing:16.622669px;}
.wsab{word-spacing:16.623706px;}
.wsd5{word-spacing:16.624157px;}
.wsae{word-spacing:16.624320px;}
.wsb1{word-spacing:16.624646px;}
.wsc2{word-spacing:16.624675px;}
.wsc6{word-spacing:16.677504px;}
.wsad{word-spacing:16.838899px;}
.wsc1{word-spacing:17.000294px;}
.wscf{word-spacing:17.538278px;}
.wsf{word-spacing:17.699504px;}
.wsba{word-spacing:17.861069px;}
.ws11{word-spacing:27.448877px;}
.ws77{word-spacing:238.380710px;}
.ws58{word-spacing:243.566939px;}
.ws59{word-spacing:265.157824px;}
.ws79{word-spacing:274.264243px;}
.wsa1{word-spacing:509.094259px;}
.wsa2{word-spacing:571.661798px;}
.ws7d{word-spacing:587.370931px;}
.ws7c{word-spacing:611.634010px;}
.ws7e{word-spacing:625.083610px;}
._63{margin-left:-20.911598px;}
._1{margin-left:-7.711052px;}
._4{margin-left:-6.638983px;}
._6{margin-left:-5.397721px;}
._17{margin-left:-4.363619px;}
._7{margin-left:-3.096367px;}
._0{margin-left:-1.936742px;}
._5{width:1.091170px;}
._2{width:2.996731px;}
._8{width:12.971525px;}
._12{width:14.824386px;}
._b{width:16.569907px;}
._21{width:17.753353px;}
._c{width:18.775642px;}
._16{width:19.929198px;}
._11{width:21.160656px;}
._e{width:22.164941px;}
._f{width:23.994086px;}
._9{width:25.946136px;}
._10{width:27.921370px;}
._d{width:29.696717px;}
._2f{width:31.226786px;}
._a{width:32.637384px;}
._15{width:34.036240px;}
._46{width:35.387155px;}
._18{width:37.861878px;}
._5c{width:38.878063px;}
._3{width:54.412349px;}
._65{width:61.868160px;}
._3a{width:72.896832px;}
._64{width:88.767360px;}
._56{width:94.900378px;}
._53{width:108.403776px;}
._58{width:111.255091px;}
._4c{width:121.853376px;}
._3c{width:150.292128px;}
._4e{width:165.053491px;}
._27{width:172.141279px;}
._52{width:177.191328px;}
._39{width:183.129754px;}
._54{width:191.360909px;}
._26{width:194.150592px;}
._22{width:197.124797px;}
._34{width:199.786079px;}
._4b{width:204.810509px;}
._51{width:210.028954px;}
._55{width:212.987866px;}
._57{width:221.359237px;}
._4a{width:226.437466px;}
._2d{width:243.901681px;}
._49{width:248.010624px;}
._3b{width:251.023334px;}
._2e{width:254.027639px;}
._2b{width:264.823081px;}
._5e{width:269.529984px;}
._33{width:273.511066px;}
._29{width:275.618524px;}
._32{width:277.922534px;}
._38{width:280.343462px;}
._25{width:285.744481px;}
._36{width:287.466030px;}
._23{width:288.589792px;}
._35{width:290.080704px;}
._24{width:293.736456px;}
._2a{width:296.874666px;}
._47{width:299.549491px;}
._50{width:307.242662px;}
._37{width:310.362970px;}
._48{width:312.891494px;}
._4d{width:316.979904px;}
._2c{width:334.533186px;}
._4f{width:337.262170px;}
._28{width:344.993886px;}
._5d{width:416.238221px;}
._3d{width:432.485338px;}
._62{width:447.656486px;}
._61{width:474.125299px;}
._5a{width:498.980160px;}
._60{width:511.353792px;}
._44{width:512.429760px;}
._41{width:538.952371px;}
._1d{width:566.443354px;}
._59{width:576.180864px;}
._40{width:589.630464px;}
._1c{width:617.121446px;}
._1f{width:621.748109px;}
._42{width:625.083610px;}
._1b{width:628.357363px;}
._3f{width:638.525261px;}
._5b{width:650.458253px;}
._45{width:663.907853px;}
._43{width:690.018278px;}
._5f{width:741.557146px;}
._19{width:766.627200px;}
._3e{width:792.880819px;}
._1e{width:806.007629px;}
._20{width:813.524803px;}
._13{width:913.138557px;}
._1a{width:949.218970px;}
._31{width:1031.111510px;}
._30{width:2488.388700px;}
._14{width:2512.298700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(74,73,130);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fsa{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fsc{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:114.129254px;}
.y0{bottom:0.000000px;}
.y3{bottom:1.739201px;}
.yb{bottom:3.425340px;}
.ya{bottom:14.151273px;}
.y2{bottom:30.271042px;}
.y4f{bottom:31.890000px;}
.y140{bottom:91.752000px;}
.y1a1{bottom:95.340000px;}
.y187{bottom:97.969500px;}
.y1d0{bottom:100.105500px;}
.y24{bottom:102.823500px;}
.y207{bottom:103.557000px;}
.y4e{bottom:103.621500px;}
.y89{bottom:108.919500px;}
.y13f{bottom:110.581500px;}
.y19f{bottom:111.439500px;}
.y19e{bottom:114.169500px;}
.y160{bottom:115.639500px;}
.y186{bottom:116.799000px;}
.y1cf{bottom:117.366000px;}
.y1a0{bottom:119.595000px;}
.yca{bottom:120.678000px;}
.y23{bottom:120.711000px;}
.y206{bottom:120.817500px;}
.y4d{bottom:122.449500px;}
.y88{bottom:127.749000px;}
.y13e{bottom:129.411000px;}
.y19d{bottom:132.999000px;}
.y15f{bottom:134.469000px;}
.y1ce{bottom:134.626500px;}
.y185{bottom:135.627000px;}
.y205{bottom:138.078000px;}
.y22{bottom:138.600000px;}
.ya9{bottom:139.812000px;}
.yc9{bottom:139.836000px;}
.y4c{bottom:141.279000px;}
.y87{bottom:146.578500px;}
.y13d{bottom:148.240500px;}
.y19c{bottom:151.828500px;}
.y1cd{bottom:151.887000px;}
.y15e{bottom:153.298500px;}
.y184{bottom:154.456500px;}
.y204{bottom:155.338500px;}
.yf7{bottom:156.105000px;}
.y21{bottom:156.487500px;}
.yc8{bottom:158.992500px;}
.y4b{bottom:160.108500px;}
.y86{bottom:165.406500px;}
.y13c{bottom:167.070000px;}
.y1cc{bottom:169.146000px;}
.y15d{bottom:172.128000px;}
.y203{bottom:172.599000px;}
.y183{bottom:173.286000px;}
.y20{bottom:174.375000px;}
.y19b{bottom:175.141500px;}
.yc7{bottom:178.150500px;}
.y4a{bottom:178.938000px;}
.y146{bottom:182.013000px;}
.y85{bottom:184.236000px;}
.y13b{bottom:185.899500px;}
.y1cb{bottom:186.406500px;}
.y202{bottom:189.858000px;}
.y15c{bottom:190.957500px;}
.y182{bottom:192.115500px;}
.y1f{bottom:192.264000px;}
.yc6{bottom:197.308500px;}
.y49{bottom:197.767500px;}
.y145{bottom:200.842500px;}
.y83{bottom:203.065500px;}
.y1ca{bottom:203.667000px;}
.y13a{bottom:204.729000px;}
.y201{bottom:207.118500px;}
.y84{bottom:208.491000px;}
.y19a{bottom:208.765500px;}
.y15b{bottom:209.787000px;}
.y1e{bottom:210.151500px;}
.y181{bottom:210.945000px;}
.yfe{bottom:212.574000px;}
.yc5{bottom:216.466500px;}
.y48{bottom:216.597000px;}
.y144{bottom:219.672000px;}
.yfa{bottom:220.494000px;}
.y1c9{bottom:220.927500px;}
.y82{bottom:221.895000px;}
.y139{bottom:223.558500px;}
.y200{bottom:224.379000px;}
.y199{bottom:227.595000px;}
.y1d{bottom:228.039000px;}
.y110{bottom:230.680500px;}
.y47{bottom:235.426500px;}
.yc4{bottom:235.623000px;}
.y1c8{bottom:238.188000px;}
.y143{bottom:238.501500px;}
.y80{bottom:240.724500px;}
.y1ff{bottom:241.639500px;}
.y138{bottom:242.388000px;}
.y81{bottom:246.150000px;}
.y197{bottom:246.424500px;}
.y10f{bottom:249.510000px;}
.y198{bottom:251.848500px;}
.y180{bottom:251.925000px;}
.y46{bottom:254.256000px;}
.yc3{bottom:254.781000px;}
.y15a{bottom:255.249000px;}
.y1c7{bottom:255.448500px;}
.y142{bottom:257.331000px;}
.y1fe{bottom:258.900000px;}
.y7f{bottom:259.554000px;}
.y137{bottom:261.217500px;}
.y196{bottom:265.254000px;}
.y10e{bottom:268.339500px;}
.y17f{bottom:268.362000px;}
.y159{bottom:271.687500px;}
.y1c6{bottom:272.709000px;}
.y45{bottom:273.085500px;}
.yc2{bottom:273.939000px;}
.y141{bottom:276.160500px;}
.y7e{bottom:278.383500px;}
.y136{bottom:280.047000px;}
.y195{bottom:284.083500px;}
.y17e{bottom:284.800500px;}
.y10d{bottom:287.169000px;}
.y158{bottom:288.126000px;}
.y1c5{bottom:289.969500px;}
.y44{bottom:291.915000px;}
.yc1{bottom:293.095500px;}
.y1fd{bottom:293.421000px;}
.ye4{bottom:294.990000px;}
.y7d{bottom:297.213000px;}
.y135{bottom:298.875000px;}
.y17d{bottom:301.239000px;}
.y194{bottom:302.913000px;}
.y157{bottom:304.564500px;}
.y10c{bottom:305.998500px;}
.y1c4{bottom:307.230000px;}
.y1c{bottom:307.299000px;}
.y1fc{bottom:310.681500px;}
.y43{bottom:310.744500px;}
.yc0{bottom:312.253500px;}
.ye3{bottom:313.819500px;}
.y7c{bottom:316.042500px;}
.y17c{bottom:317.677500px;}
.y134{bottom:317.704500px;}
.y156{bottom:321.003000px;}
.y193{bottom:321.742500px;}
.y1c3{bottom:324.489000px;}
.y10b{bottom:324.828000px;}
.y1b{bottom:325.186500px;}
.y1fb{bottom:327.940500px;}
.y42{bottom:329.574000px;}
.ybf{bottom:331.411500px;}
.ye2{bottom:332.649000px;}
.y17b{bottom:334.116000px;}
.y7b{bottom:334.872000px;}
.y133{bottom:336.534000px;}
.y155{bottom:337.441500px;}
.y192{bottom:340.572000px;}
.y1c2{bottom:341.749500px;}
.y1a{bottom:343.074000px;}
.y10a{bottom:343.657500px;}
.y1fa{bottom:345.201000px;}
.y41{bottom:348.403500px;}
.y17a{bottom:350.554500px;}
.ybe{bottom:350.568000px;}
.ye1{bottom:351.478500px;}
.y7a{bottom:353.701500px;}
.y154{bottom:353.880000px;}
.y131{bottom:355.363500px;}
.y1c1{bottom:359.010000px;}
.y132{bottom:360.789000px;}
.y19{bottom:360.963000px;}
.y1f9{bottom:362.461500px;}
.y109{bottom:362.487000px;}
.y40{bottom:367.233000px;}
.ybd{bottom:369.726000px;}
.ye0{bottom:370.308000px;}
.y79{bottom:372.531000px;}
.y130{bottom:374.193000px;}
.y179{bottom:374.194500px;}
.y1c0{bottom:376.270500px;}
.y153{bottom:377.520000px;}
.y1f8{bottom:379.722000px;}
.y108{bottom:381.316500px;}
.y191{bottom:386.034000px;}
.y3f{bottom:386.062500px;}
.ybc{bottom:388.884000px;}
.ydf{bottom:389.137500px;}
.y77{bottom:391.360500px;}
.y12f{bottom:393.022500px;}
.y1bf{bottom:393.531000px;}
.y78{bottom:396.784500px;}
.y1f7{bottom:396.982500px;}
.y18{bottom:399.024000px;}
.y107{bottom:400.146000px;}
.y190{bottom:402.472500px;}
.y3e{bottom:404.892000px;}
.y178{bottom:405.814500px;}
.yde{bottom:407.967000px;}
.ybb{bottom:408.040500px;}
.y152{bottom:409.140000px;}
.y76{bottom:410.190000px;}
.y1be{bottom:410.791500px;}
.y1f6{bottom:414.243000px;}
.y17{bottom:416.913000px;}
.y18f{bottom:418.909500px;}
.y106{bottom:418.975500px;}
.y3d{bottom:423.721500px;}
.y177{bottom:425.047500px;}
.ydd{bottom:426.796500px;}
.yba{bottom:427.198500px;}
.y1bd{bottom:428.052000px;}
.y151{bottom:428.373000px;}
.y74{bottom:429.019500px;}
.y1f5{bottom:431.503500px;}
.y75{bottom:434.443500px;}
.y16{bottom:434.800500px;}
.y18e{bottom:435.348000px;}
.y105{bottom:437.805000px;}
.y12e{bottom:438.484500px;}
.y1bc{bottom:445.312500px;}
.ydc{bottom:445.626000px;}
.yb9{bottom:446.356500px;}
.y3c{bottom:447.034500px;}
.y73{bottom:447.849000px;}
.y1f4{bottom:448.764000px;}
.y18d{bottom:451.786500px;}
.y12d{bottom:454.923000px;}
.y104{bottom:456.634500px;}
.y150{bottom:461.583000px;}
.y176{bottom:462.151500px;}
.y1ba{bottom:462.571500px;}
.y1bb{bottom:462.573000px;}
.yf6{bottom:464.254500px;}
.ydb{bottom:464.454000px;}
.yb8{bottom:465.513000px;}
.y1f3{bottom:466.024500px;}
.y18c{bottom:468.225000px;}
.y15{bottom:470.622000px;}
.y72{bottom:471.162000px;}
.y12c{bottom:471.361500px;}
.y103{bottom:475.464000px;}
.yb7{bottom:476.626500px;}
.y1b9{bottom:479.832000px;}
.y14f{bottom:480.412500px;}
.y175{bottom:480.981000px;}
.yf5{bottom:483.084000px;}
.yda{bottom:483.283500px;}
.y18b{bottom:484.663500px;}
.y12b{bottom:487.800000px;}
.y14{bottom:488.509500px;}
.ya8{bottom:491.161500px;}
.y102{bottom:494.293500px;}
.y1b8{bottom:497.092500px;}
.y14e{bottom:499.242000px;}
.y1f2{bottom:500.544000px;}
.yf4{bottom:501.913500px;}
.yd9{bottom:502.113000px;}
.y12a{bottom:504.238500px;}
.y71{bottom:504.786000px;}
.y18a{bottom:508.305000px;}
.ya7{bottom:509.991000px;}
.yb6{bottom:513.153000px;}
.y1b7{bottom:514.353000px;}
.y1f1{bottom:517.804500px;}
.y14d{bottom:518.071500px;}
.y174{bottom:518.640000px;}
.y129{bottom:520.677000px;}
.yf3{bottom:520.743000px;}
.yd8{bottom:520.942500px;}
.y3b{bottom:522.184500px;}
.y70{bottom:523.615500px;}
.y13{bottom:524.329500px;}
.y101{bottom:527.859000px;}
.ya6{bottom:528.820500px;}
.yf9{bottom:531.279000px;}
.y1b6{bottom:531.613500px;}
.y1f0{bottom:535.065000px;}
.yfd{bottom:535.419000px;}
.y14c{bottom:536.901000px;}
.y128{bottom:537.115500px;}
.yf2{bottom:539.572500px;}
.yd7{bottom:539.772000px;}
.y189{bottom:539.923500px;}
.y173{bottom:541.387500px;}
.y12{bottom:542.218500px;}
.y6f{bottom:542.445000px;}
.y100{bottom:544.468500px;}
.yff{bottom:547.092000px;}
.ya5{bottom:547.650000px;}
.y1b5{bottom:548.874000px;}
.yb5{bottom:550.318500px;}
.yf8{bottom:550.512000px;}
.yfc{bottom:552.028500px;}
.y1ef{bottom:552.325500px;}
.yfb{bottom:554.652000px;}
.y14b{bottom:555.730500px;}
.yf1{bottom:558.402000px;}
.yd6{bottom:558.601500px;}
.y188{bottom:559.156500px;}
.y3a{bottom:559.573500px;}
.y11{bottom:560.106000px;}
.y127{bottom:560.755500px;}
.y6e{bottom:561.274500px;}
.y172{bottom:565.027500px;}
.y1b4{bottom:566.134500px;}
.y1ee{bottom:569.586000px;}
.ya4{bottom:570.963000px;}
.y149{bottom:574.560000px;}
.yf0{bottom:577.231500px;}
.yd5{bottom:577.431000px;}
.y10{bottom:577.993500px;}
.y39{bottom:579.031500px;}
.y14a{bottom:579.985500px;}
.y6d{bottom:580.104000px;}
.y1b3{bottom:583.395000px;}
.y1ed{bottom:586.846500px;}
.y171{bottom:588.669000px;}
.y126{bottom:592.375500px;}
.y148{bottom:593.389500px;}
.yf{bottom:595.882500px;}
.yef{bottom:596.061000px;}
.yd4{bottom:596.260500px;}
.y38{bottom:598.488000px;}
.y6c{bottom:598.932000px;}
.y1ec{bottom:604.107000px;}
.ya3{bottom:604.587000px;}
.y1b2{bottom:605.137500px;}
.y125{bottom:611.608500px;}
.y147{bottom:612.219000px;}
.y170{bottom:612.309000px;}
.ye{bottom:613.770000px;}
.yee{bottom:614.890500px;}
.yd3{bottom:615.090000px;}
.y6b{bottom:617.761500px;}
.y37{bottom:617.944500px;}
.y1eb{bottom:621.366000px;}
.ya2{bottom:623.416500px;}
.yd{bottom:631.657500px;}
.yed{bottom:633.720000px;}
.yd2{bottom:633.919500px;}
.y16f{bottom:635.950500px;}
.y6a{bottom:636.591000px;}
.y36{bottom:637.402500px;}
.y1ea{bottom:638.626500px;}
.y1b1{bottom:638.761500px;}
.ya1{bottom:642.246000px;}
.yc{bottom:649.546500px;}
.y124{bottom:649.878000px;}
.yec{bottom:652.549500px;}
.yd1{bottom:652.749000px;}
.y69{bottom:655.420500px;}
.y1e9{bottom:655.887000px;}
.y35{bottom:656.859000px;}
.y16e{bottom:659.590500px;}
.ya0{bottom:661.075500px;}
.y1b0{bottom:665.302500px;}
.yeb{bottom:671.379000px;}
.yd0{bottom:671.578500px;}
.y9{bottom:671.917464px;}
.y123{bottom:672.625500px;}
.y1e8{bottom:673.147500px;}
.y68{bottom:674.250000px;}
.y34{bottom:676.315500px;}
.y9f{bottom:679.905000px;}
.y1af{bottom:682.876500px;}
.y16d{bottom:683.232000px;}
.yea{bottom:690.207000px;}
.ycf{bottom:690.408000px;}
.y67{bottom:693.079500px;}
.y32{bottom:693.150000px;}
.y31{bottom:695.773500px;}
.y122{bottom:696.265500px;}
.y9e{bottom:698.734500px;}
.y1ae{bottom:700.450500px;}
.y33{bottom:700.656000px;}
.y16c{bottom:706.872000px;}
.y1e7{bottom:707.668500px;}
.ye9{bottom:709.036500px;}
.yce{bottom:709.237500px;}
.y66{bottom:711.909000px;}
.y30{bottom:715.230000px;}
.y9d{bottom:717.564000px;}
.y1ad{bottom:718.024500px;}
.y121{bottom:719.907000px;}
.y1e6{bottom:724.929000px;}
.ye8{bottom:727.866000px;}
.ycd{bottom:728.067000px;}
.y16b{bottom:730.513500px;}
.y65{bottom:730.738500px;}
.y2f{bottom:734.688000px;}
.y1ac{bottom:735.598500px;}
.y9c{bottom:736.393500px;}
.y1e5{bottom:742.189500px;}
.y120{bottom:743.547000px;}
.ye7{bottom:746.695500px;}
.ycc{bottom:746.896500px;}
.y64{bottom:749.568000px;}
.y1ab{bottom:753.172500px;}
.y2e{bottom:754.144500px;}
.y16a{bottom:754.153500px;}
.y9b{bottom:755.223000px;}
.y1e4{bottom:759.450000px;}
.ye6{bottom:765.525000px;}
.ycb{bottom:765.726000px;}
.y11f{bottom:767.188500px;}
.y63{bottom:768.397500px;}
.y2d{bottom:773.601000px;}
.y1e3{bottom:776.709000px;}
.y169{bottom:777.795000px;}
.y1aa{bottom:779.713500px;}
.yb4{bottom:784.555500px;}
.y62{bottom:787.227000px;}
.y11e{bottom:790.828500px;}
.y2c{bottom:793.059000px;}
.y1e2{bottom:793.969500px;}
.ye5{bottom:799.090500px;}
.y9a{bottom:800.685000px;}
.y168{bottom:801.435000px;}
.yb3{bottom:803.385000px;}
.y61{bottom:806.056500px;}
.y1a9{bottom:806.254500px;}
.y1e1{bottom:811.230000px;}
.y2b{bottom:812.515500px;}
.y11d{bottom:814.470000px;}
.y99{bottom:817.123500px;}
.yb2{bottom:822.214500px;}
.y60{bottom:824.886000px;}
.y167{bottom:825.075000px;}
.y1e0{bottom:828.490500px;}
.y1a8{bottom:832.794000px;}
.y98{bottom:833.562000px;}
.y11c{bottom:838.110000px;}
.yb1{bottom:841.044000px;}
.y5f{bottom:843.715500px;}
.y1df{bottom:845.751000px;}
.y2a{bottom:848.043000px;}
.y166{bottom:848.716500px;}
.y97{bottom:849.999000px;}
.y1a7{bottom:859.335000px;}
.yb0{bottom:859.873500px;}
.y11b{bottom:861.751500px;}
.y5e{bottom:862.545000px;}
.y1de{bottom:863.011500px;}
.y29{bottom:864.181500px;}
.y96{bottom:866.437500px;}
.y165{bottom:872.356500px;}
.yaf{bottom:878.703000px;}
.y1dd{bottom:880.272000px;}
.y5d{bottom:881.374500px;}
.y95{bottom:882.876000px;}
.y28{bottom:884.661000px;}
.y11a{bottom:885.391500px;}
.y1a6{bottom:885.876000px;}
.y164{bottom:895.998000px;}
.y27{bottom:896.461500px;}
.yae{bottom:897.532500px;}
.y94{bottom:899.314500px;}
.y5c{bottom:900.204000px;}
.y1a5{bottom:903.450000px;}
.y119{bottom:909.033000px;}
.y26{bottom:912.601500px;}
.y1db{bottom:914.791500px;}
.y1dc{bottom:914.793000px;}
.yad{bottom:916.362000px;}
.y5b{bottom:919.033500px;}
.y163{bottom:919.638000px;}
.y1a4{bottom:921.024000px;}
.y93{bottom:922.956000px;}
.y162{bottom:931.399500px;}
.y1da{bottom:932.052000px;}
.y118{bottom:932.673000px;}
.y25{bottom:933.079500px;}
.yac{bottom:935.191500px;}
.y5a{bottom:937.863000px;}
.y1a3{bottom:938.598000px;}
.y1d9{bottom:949.312500px;}
.yab{bottom:954.021000px;}
.y92{bottom:954.574500px;}
.y1a2{bottom:956.172000px;}
.y117{bottom:956.314500px;}
.y59{bottom:956.692500px;}
.y1d8{bottom:966.573000px;}
.y8{bottom:970.215000px;}
.yaa{bottom:972.849000px;}
.y161{bottom:974.899500px;}
.y58{bottom:975.522000px;}
.y116{bottom:979.954500px;}
.y1d7{bottom:983.833500px;}
.y91{bottom:991.678500px;}
.y57{bottom:994.351500px;}
.y1d6{bottom:1001.094000px;}
.y115{bottom:1003.594500px;}
.y90{bottom:1010.508000px;}
.y7{bottom:1012.954500px;}
.y56{bottom:1013.181000px;}
.y1d5{bottom:1018.354500px;}
.y114{bottom:1027.236000px;}
.y8e{bottom:1029.337500px;}
.y55{bottom:1032.010500px;}
.y8f{bottom:1034.763000px;}
.y1d4{bottom:1035.615000px;}
.y6{bottom:1041.199500px;}
.y8d{bottom:1048.167000px;}
.y54{bottom:1050.840000px;}
.y113{bottom:1050.876000px;}
.y1d3{bottom:1052.875500px;}
.y112{bottom:1062.637500px;}
.y8c{bottom:1066.996500px;}
.y5{bottom:1069.443000px;}
.y53{bottom:1069.669500px;}
.y1d2{bottom:1070.134500px;}
.y8b{bottom:1085.826000px;}
.y1d1{bottom:1087.395000px;}
.y52{bottom:1088.499000px;}
.y4{bottom:1097.688000px;}
.y8a{bottom:1104.655500px;}
.y111{bottom:1106.137500px;}
.y51{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y50{bottom:1173.397500px;}
.h7{height:25.508090px;}
.hc{height:26.110157px;}
.h17{height:27.855430px;}
.h10{height:29.037733px;}
.h1b{height:30.252344px;}
.ha{height:30.461558px;}
.hb{height:30.670772px;}
.h18{height:31.526842px;}
.h14{height:33.072749px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.hd{height:34.813397px;}
.h13{height:35.052500px;}
.he{height:38.896243px;}
.hf{height:39.165235px;}
.h1c{height:39.434227px;}
.h15{height:41.482876px;}
.h11{height:43.217759px;}
.h12{height:43.516637px;}
.h4{height:43.815515px;}
.h1e{height:48.561733px;}
.h19{height:48.567733px;}
.h2{height:50.931027px;}
.h1f{height:51.165235px;}
.h20{height:52.077235px;}
.h16{height:53.228842px;}
.h6{height:54.541601px;}
.h1a{height:62.430344px;}
.h3{height:77.379634px;}
.h5{height:77.792486px;}
.h1d{height:86.416243px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:207.609956px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:58.054042px;}
.x5a{left:67.380000px;}
.x93{left:77.532000px;}
.x73{left:85.890000px;}
.x5e{left:103.176000px;}
.x5d{left:105.790500px;}
.x92{left:110.175000px;}
.x8b{left:111.594000px;}
.x8f{left:112.606500px;}
.x91{left:117.687000px;}
.xb3{left:125.620500px;}
.x58{left:127.813500px;}
.x4d{left:137.679000px;}
.x59{left:143.179500px;}
.xba{left:145.008000px;}
.x74{left:146.844000px;}
.x75{left:149.476500px;}
.x88{left:154.819500px;}
.x5b{left:187.020000px;}
.xd9{left:209.044500px;}
.x89{left:244.018500px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x8{left:262.243500px;}
.xd0{left:263.578500px;}
.x9{left:268.221000px;}
.xd1{left:270.004500px;}
.x5{left:271.221000px;}
.x97{left:273.213000px;}
.xe{left:282.786000px;}
.x46{left:284.038500px;}
.xa{left:286.101000px;}
.x86{left:288.589500px;}
.xca{left:290.415000px;}
.xb{left:292.078500px;}
.x96{left:295.305000px;}
.xd2{left:296.413500px;}
.x1c{left:297.454500px;}
.x45{left:299.263500px;}
.x69{left:300.960000px;}
.x13{left:302.757000px;}
.xce{left:303.814500px;}
.xcb{left:305.358000px;}
.x48{left:307.695000px;}
.x7{left:309.433500px;}
.x98{left:310.944000px;}
.x1d{left:312.399000px;}
.x32{left:314.329500px;}
.x6a{left:315.904500px;}
.x14{left:317.700000px;}
.x6b{left:319.621500px;}
.x33{left:320.755500px;}
.x60{left:322.734000px;}
.x15{left:325.120500px;}
.x61{left:326.544000px;}
.xc4{left:329.139000px;}
.x17{left:334.642500px;}
.x3b{left:336.688500px;}
.xaf{left:337.810500px;}
.x16{left:340.063500px;}
.x18{left:342.115500px;}
.xc5{left:344.082000px;}
.x19{left:345.885000px;}
.x95{left:350.893500px;}
.xb0{left:352.753500px;}
.x47{left:353.773500px;}
.x94{left:357.366000px;}
.x1a{left:360.828000px;}
.x20{left:363.538500px;}
.x1b{left:364.597500px;}
.xa2{left:366.979500px;}
.x44{left:368.392500px;}
.xb1{left:371.422500px;}
.xf{left:372.927000px;}
.xb2{left:375.147000px;}
.x5f{left:377.164500px;}
.x21{left:378.481500px;}
.x10{left:380.400000px;}
.xa3{left:381.924000px;}
.x3c{left:383.292000px;}
.x11{left:387.991500px;}
.x8a{left:390.235500px;}
.x9f{left:391.395000px;}
.x12{left:395.463000px;}
.x5c{left:402.730500px;}
.x65{left:405.180000px;}
.xa0{left:406.339500px;}
.x87{left:415.357500px;}
.x66{left:420.124500px;}
.x67{left:423.841500px;}
.xc0{left:430.825500px;}
.x68{left:438.786000px;}
.x72{left:440.653500px;}
.xc1{left:445.770000px;}
.x4e{left:455.016000px;}
.x4f{left:462.487500px;}
.xa6{left:464.418000px;}
.x50{left:466.276500px;}
.x3f{left:478.263000px;}
.xa7{left:479.362500px;}
.x4a{left:480.490500px;}
.x8c{left:482.016000px;}
.xc2{left:483.865500px;}
.x22{left:486.852000px;}
.x51{left:488.797500px;}
.xbb{left:492.817500px;}
.x4b{left:496.941000px;}
.xc3{left:498.808500px;}
.xac{left:500.553000px;}
.x23{left:501.796500px;}
.x52{left:503.740500px;}
.x9d{left:507.837000px;}
.x34{left:512.247000px;}
.x55{left:514.630500px;}
.x62{left:516.655500px;}
.x26{left:519.589500px;}
.x9e{left:522.781500px;}
.x35{left:529.410000px;}
.xcc{left:532.144500px;}
.x56{left:533.385000px;}
.x27{left:534.534000px;}
.x90{left:536.371500px;}
.x63{left:538.302000px;}
.xbc{left:542.229000px;}
.xcd{left:547.089000px;}
.x57{left:548.329500px;}
.xb4{left:552.217500px;}
.x64{left:553.245000px;}
.x76{left:555.355500px;}
.x36{left:557.332500px;}
.xb5{left:559.023000px;}
.x77{left:562.080000px;}
.xc8{left:566.694000px;}
.x30{left:570.099000px;}
.x37{left:574.495500px;}
.xad{left:578.650500px;}
.xc9{left:581.637000px;}
.x4c{left:582.765000px;}
.x31{left:585.042000px;}
.xae{left:593.595000px;}
.xc6{left:597.513000px;}
.x38{left:598.608000px;}
.x9b{left:611.121000px;}
.xc7{left:612.457500px;}
.x39{left:615.771000px;}
.xa8{left:616.972500px;}
.x8d{left:618.640500px;}
.x78{left:620.670000px;}
.xa4{left:623.892000px;}
.x9c{left:626.064000px;}
.x79{left:628.888500px;}
.xa9{left:631.917000px;}
.xa5{left:638.835000px;}
.xa1{left:641.208000px;}
.xc{left:645.463500px;}
.x7a{left:649.822500px;}
.xd{left:651.790500px;}
.x7b{left:655.800000px;}
.x42{left:658.119000px;}
.x43{left:664.926000px;}
.x3a{left:671.689500px;}
.x7c{left:673.785000px;}
.x6e{left:675.595500px;}
.x24{left:678.381000px;}
.x7d{left:679.762500px;}
.x28{left:684.514500px;}
.x80{left:687.318000px;}
.x6f{left:690.540000px;}
.x25{left:693.325500px;}
.x70{left:694.350000px;}
.x29{left:699.459000px;}
.x40{left:700.647000px;}
.xb7{left:702.561000px;}
.xb6{left:705.087000px;}
.x71{left:709.294500px;}
.xd3{left:711.612000px;}
.x6c{left:713.763000px;}
.x41{left:715.591500px;}
.xb8{left:717.505500px;}
.xcf{left:720.664500px;}
.x8e{left:722.052000px;}
.x1e{left:723.636000px;}
.xd7{left:732.807000px;}
.xb9{left:736.260000px;}
.x49{left:737.610000px;}
.x7e{left:747.081000px;}
.x81{left:748.165500px;}
.x53{left:754.188000px;}
.x7f{left:755.299500px;}
.x82{left:756.384000px;}
.xd8{left:759.706500px;}
.x6d{left:761.713500px;}
.x2a{left:763.044000px;}
.x54{left:769.132500px;}
.x2b{left:770.515500px;}
.x2c{left:774.327000px;}
.x83{left:775.566000px;}
.x2d{left:781.798500px;}
.x2e{left:785.610000px;}
.xd5{left:789.750000px;}
.xbd{left:796.378500px;}
.x84{left:799.335000px;}
.x2f{left:800.553000px;}
.x85{left:805.312500px;}
.xd4{left:810.376500px;}
.x3d{left:814.281000px;}
.xd6{left:816.648000px;}
.xaa{left:817.846500px;}
.xbe{left:818.913000px;}
.x99{left:821.299500px;}
.x3e{left:823.510500px;}
.x9a{left:828.106500px;}
.xab{left:832.789500px;}
.xbf{left:833.857500px;}
.x1f{left:837.717000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:10.666667pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v5{vertical-align:28.602667pt;}
.v6{vertical-align:42.240000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000375pt;}
.lsc{letter-spacing:0.000544pt;}
.ls1f{letter-spacing:0.000711pt;}
.ls14{letter-spacing:0.001007pt;}
.ls20{letter-spacing:0.001372pt;}
.ls15{letter-spacing:0.002825pt;}
.ls23{letter-spacing:0.003861pt;}
.ls26{letter-spacing:0.004267pt;}
.lsb{letter-spacing:0.487835pt;}
.ls8{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.lsd{letter-spacing:2.656533pt;}
.ls9{letter-spacing:2.657067pt;}
.lse{letter-spacing:3.118133pt;}
.ls16{letter-spacing:3.123467pt;}
.lsa{letter-spacing:3.158400pt;}
.ls3{letter-spacing:9.298933pt;}
.ls6{letter-spacing:10.626533pt;}
.ls24{letter-spacing:11.741532pt;}
.ls21{letter-spacing:11.954133pt;}
.ls22{letter-spacing:11.959467pt;}
.ls1d{letter-spacing:12.433325pt;}
.ls11{letter-spacing:12.698994pt;}
.ls1a{letter-spacing:12.964663pt;}
.lsf{letter-spacing:13.124065pt;}
.ls18{letter-spacing:13.177199pt;}
.ls1b{letter-spacing:13.389734pt;}
.ls12{letter-spacing:13.442868pt;}
.ls10{letter-spacing:13.496002pt;}
.ls19{letter-spacing:14.399278pt;}
.ls1e{letter-spacing:15.249420pt;}
.ls25{letter-spacing:16.625192pt;}
.ls13{letter-spacing:16.790302pt;}
.ls1c{letter-spacing:17.321641pt;}
.ls0{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls1{letter-spacing:64.315733pt;}
.ws0{word-spacing:-25.362056pt;}
.ws42{word-spacing:-13.283467pt;}
.ws4e{word-spacing:-11.955200pt;}
.ws15{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws8{word-spacing:-9.298400pt;}
.ws7f{word-spacing:-2.816095pt;}
.ws9e{word-spacing:-2.656693pt;}
.wsa4{word-spacing:-2.630144pt;}
.ws84{word-spacing:-2.550426pt;}
.wsa5{word-spacing:-2.438861pt;}
.ws8f{word-spacing:-2.072221pt;}
.ws5{word-spacing:-1.696326pt;}
.ws9d{word-spacing:-1.647150pt;}
.ws87{word-spacing:-1.381481pt;}
.wsa3{word-spacing:-1.328347pt;}
.ws68{word-spacing:-1.222079pt;}
.ws4{word-spacing:-1.175671pt;}
.ws85{word-spacing:-1.115811pt;}
.ws53{word-spacing:-1.062677pt;}
.wsb3{word-spacing:-1.052058pt;}
.ws49{word-spacing:-0.850142pt;}
.ws1e{word-spacing:-0.812954pt;}
.ws61{word-spacing:-0.797008pt;}
.ws73{word-spacing:-0.743874pt;}
.ws5f{word-spacing:-0.690740pt;}
.ws64{word-spacing:-0.637606pt;}
.ws57{word-spacing:-0.584473pt;}
.ws82{word-spacing:-0.478205pt;}
.ws56{word-spacing:-0.425071pt;}
.ws41{word-spacing:-0.371937pt;}
.wsda{word-spacing:-0.334746pt;}
.ws25{word-spacing:-0.318803pt;}
.ws27{word-spacing:-0.265669pt;}
.ws1b{word-spacing:-0.239104pt;}
.ws28{word-spacing:-0.212535pt;}
.ws98{word-spacing:-0.191283pt;}
.ws33{word-spacing:-0.159402pt;}
.ws17{word-spacing:-0.143462pt;}
.ws29{word-spacing:-0.106268pt;}
.ws1c{word-spacing:-0.095642pt;}
.ws3{word-spacing:-0.053134pt;}
.ws97{word-spacing:-0.047821pt;}
.ws14{word-spacing:-0.042507pt;}
.ws9{word-spacing:-0.037194pt;}
.ws1{word-spacing:0.000000pt;}
.ws6f{word-spacing:0.047821pt;}
.ws2a{word-spacing:0.053134pt;}
.ws18{word-spacing:0.095642pt;}
.ws2e{word-spacing:0.106268pt;}
.ws78{word-spacing:0.143462pt;}
.ws38{word-spacing:0.159402pt;}
.wsa{word-spacing:0.185968pt;}
.wsbc{word-spacing:0.191283pt;}
.ws26{word-spacing:0.212535pt;}
.ws7b{word-spacing:0.239104pt;}
.wsc{word-spacing:0.260355pt;}
.ws31{word-spacing:0.265669pt;}
.wsbf{word-spacing:0.286925pt;}
.ws86{word-spacing:0.318803pt;}
.wsdb{word-spacing:0.334746pt;}
.ws37{word-spacing:0.371937pt;}
.ws8d{word-spacing:0.425071pt;}
.ws52{word-spacing:0.478205pt;}
.ws7a{word-spacing:0.478208pt;}
.ws46{word-spacing:0.505333pt;}
.ws34{word-spacing:0.637606pt;}
.ws39{word-spacing:0.690740pt;}
.ws5e{word-spacing:0.743874pt;}
.ws72{word-spacing:0.797008pt;}
.wsb2{word-spacing:0.860774pt;}
.ws40{word-spacing:0.903276pt;}
.wsd3{word-spacing:0.956416pt;}
.ws93{word-spacing:1.009543pt;}
.wsd9{word-spacing:1.099878pt;}
.ws24{word-spacing:1.115811pt;}
.ws3d{word-spacing:1.168945pt;}
.ws51{word-spacing:1.222079pt;}
.ws43{word-spacing:1.275213pt;}
.wsaf{word-spacing:1.291162pt;}
.ws99{word-spacing:1.434614pt;}
.ws67{word-spacing:1.487748pt;}
.wsd2{word-spacing:1.530266pt;}
.wsa0{word-spacing:1.625907pt;}
.ws69{word-spacing:1.700284pt;}
.ws1d{word-spacing:1.721549pt;}
.wsac{word-spacing:1.769370pt;}
.wsb{word-spacing:1.785293pt;}
.ws9f{word-spacing:1.865011pt;}
.ws20{word-spacing:1.960653pt;}
.ws55{word-spacing:1.965953pt;}
.ws90{word-spacing:2.019087pt;}
.ws70{word-spacing:2.072221pt;}
.wsd7{word-spacing:2.104115pt;}
.ws50{word-spacing:2.231622pt;}
.ws4a{word-spacing:2.337890pt;}
.wsb6{word-spacing:2.343219pt;}
.ws36{word-spacing:2.391024pt;}
.ws3a{word-spacing:2.444158pt;}
.ws2c{word-spacing:2.497292pt;}
.ws4b{word-spacing:2.550426pt;}
.ws16{word-spacing:2.550432pt;}
.wsb8{word-spacing:2.582323pt;}
.ws45{word-spacing:2.656693pt;}
.ws92{word-spacing:2.762961pt;}
.ws4d{word-spacing:2.816095pt;}
.ws22{word-spacing:2.861926pt;}
.wsc3{word-spacing:2.864529pt;}
.wscc{word-spacing:2.865135pt;}
.wsa7{word-spacing:2.866509pt;}
.wsb7{word-spacing:2.867149pt;}
.wsbd{word-spacing:2.867251pt;}
.wsb4{word-spacing:2.868267pt;}
.wscd{word-spacing:2.869248pt;}
.wsd1{word-spacing:2.869931pt;}
.wscb{word-spacing:2.870084pt;}
.wsc5{word-spacing:2.871398pt;}
.ws83{word-spacing:2.922363pt;}
.ws60{word-spacing:2.975497pt;}
.ws6b{word-spacing:3.012710pt;}
.ws21{word-spacing:3.060531pt;}
.ws9a{word-spacing:3.081764pt;}
.ws95{word-spacing:3.134898pt;}
.wsa6{word-spacing:3.156173pt;}
.ws23{word-spacing:3.188032pt;}
.ws1f{word-spacing:3.251814pt;}
.ws63{word-spacing:3.294300pt;}
.ws6a{word-spacing:3.299635pt;}
.ws30{word-spacing:3.347434pt;}
.ws5c{word-spacing:3.400567pt;}
.ws4c{word-spacing:3.453701pt;}
.ws65{word-spacing:3.506835pt;}
.ws8b{word-spacing:3.666237pt;}
.wsce{word-spacing:3.682202pt;}
.ws44{word-spacing:3.719371pt;}
.ws19{word-spacing:3.730022pt;}
.ws54{word-spacing:3.772505pt;}
.ws94{word-spacing:3.825638pt;}
.ws9c{word-spacing:3.878772pt;}
.ws88{word-spacing:3.985040pt;}
.ws96{word-spacing:4.038174pt;}
.ws2d{word-spacing:4.091308pt;}
.ws35{word-spacing:4.197575pt;}
.ws66{word-spacing:4.250709pt;}
.ws8c{word-spacing:4.303843pt;}
.ws3e{word-spacing:4.356977pt;}
.wsd0{word-spacing:4.686438pt;}
.ws2b{word-spacing:4.782048pt;}
.ws3c{word-spacing:4.835182pt;}
.ws80{word-spacing:4.941450pt;}
.ws5a{word-spacing:5.047717pt;}
.ws91{word-spacing:5.207119pt;}
.ws32{word-spacing:5.260253pt;}
.ws6d{word-spacing:5.308109pt;}
.ws12{word-spacing:5.393072pt;}
.ws13{word-spacing:5.467459pt;}
.ws71{word-spacing:5.472788pt;}
.ws9b{word-spacing:5.579056pt;}
.ws81{word-spacing:5.632190pt;}
.ws6c{word-spacing:5.642854pt;}
.ws47{word-spacing:5.685324pt;}
.ws62{word-spacing:5.738458pt;}
.ws3f{word-spacing:6.004127pt;}
.ws3b{word-spacing:6.269796pt;}
.ws1a{word-spacing:6.360166pt;}
.ws5d{word-spacing:6.376064pt;}
.ws89{word-spacing:6.588599pt;}
.ws6e{word-spacing:6.694912pt;}
.ws75{word-spacing:6.801135pt;}
.ws76{word-spacing:6.854269pt;}
.ws8a{word-spacing:7.013670pt;}
.ws5b{word-spacing:7.066804pt;}
.ws4f{word-spacing:7.119938pt;}
.ws8e{word-spacing:7.385607pt;}
.ws48{word-spacing:7.491875pt;}
.ws74{word-spacing:7.545009pt;}
.ws10{word-spacing:7.699075pt;}
.wsb5{word-spacing:7.794790pt;}
.ws2f{word-spacing:10.582159pt;}
.ws7{word-spacing:11.492822pt;}
.wsb9{word-spacing:11.859558pt;}
.wsdc{word-spacing:11.902242pt;}
.wsc7{word-spacing:11.903548pt;}
.wsa9{word-spacing:11.907021pt;}
.wsaa{word-spacing:11.907379pt;}
.wsc9{word-spacing:12.003021pt;}
.wsd8{word-spacing:12.050842pt;}
.wsbb{word-spacing:12.098662pt;}
.wsd4{word-spacing:12.863795pt;}
.wsb0{word-spacing:13.150720pt;}
.ws6{word-spacing:13.763148pt;}
.wsd{word-spacing:14.348669pt;}
.wse{word-spacing:14.356730pt;}
.wsc8{word-spacing:14.537523pt;}
.wsa8{word-spacing:14.768469pt;}
.wsbe{word-spacing:14.773308pt;}
.wsd6{word-spacing:14.773393pt;}
.wsc0{word-spacing:14.774204pt;}
.wsc4{word-spacing:14.774579pt;}
.wsca{word-spacing:14.774869pt;}
.wsdd{word-spacing:14.775706pt;}
.wsab{word-spacing:14.776627pt;}
.wsd5{word-spacing:14.777028pt;}
.wsae{word-spacing:14.777173pt;}
.wsb1{word-spacing:14.777463pt;}
.wsc2{word-spacing:14.777489pt;}
.wsc6{word-spacing:14.824448pt;}
.wsad{word-spacing:14.967910pt;}
.wsc1{word-spacing:15.111373pt;}
.wscf{word-spacing:15.589581pt;}
.wsf{word-spacing:15.732893pt;}
.wsba{word-spacing:15.876506pt;}
.ws11{word-spacing:24.399002pt;}
.ws77{word-spacing:211.893965pt;}
.ws58{word-spacing:216.503946pt;}
.ws59{word-spacing:235.695843pt;}
.ws79{word-spacing:243.790438pt;}
.wsa1{word-spacing:452.528230pt;}
.wsa2{word-spacing:508.143821pt;}
.ws7d{word-spacing:522.107494pt;}
.ws7c{word-spacing:543.674675pt;}
.ws7e{word-spacing:555.629875pt;}
._63{margin-left:-18.588087pt;}
._1{margin-left:-6.854269pt;}
._4{margin-left:-5.901318pt;}
._6{margin-left:-4.797974pt;}
._17{margin-left:-3.878772pt;}
._7{margin-left:-2.752326pt;}
._0{margin-left:-1.721549pt;}
._5{width:0.969929pt;}
._2{width:2.663761pt;}
._8{width:11.530244pt;}
._12{width:13.177232pt;}
._b{width:14.728806pt;}
._21{width:15.780758pt;}
._c{width:16.689459pt;}
._16{width:17.714843pt;}
._11{width:18.809472pt;}
._e{width:19.702170pt;}
._f{width:21.328077pt;}
._9{width:23.063232pt;}
._10{width:24.818995pt;}
._d{width:26.397082pt;}
._2f{width:27.757143pt;}
._a{width:29.011008pt;}
._15{width:30.254435pt;}
._46{width:31.455249pt;}
._18{width:33.655003pt;}
._5c{width:34.558278pt;}
._3{width:48.366532pt;}
._65{width:54.993920pt;}
._3a{width:64.797184pt;}
._64{width:78.904320pt;}
._56{width:84.355891pt;}
._53{width:96.358912pt;}
._58{width:98.893414pt;}
._4c{width:108.314112pt;}
._3c{width:133.593003pt;}
._4e{width:146.714214pt;}
._27{width:153.014470pt;}
._52{width:157.503403pt;}
._39{width:162.782003pt;}
._54{width:170.098586pt;}
._26{width:172.578304pt;}
._22{width:175.222042pt;}
._34{width:177.587626pt;}
._4b{width:182.053786pt;}
._51{width:186.692403pt;}
._55{width:189.322547pt;}
._57{width:196.763766pt;}
._4a{width:201.277747pt;}
._2d{width:216.801494pt;}
._49{width:220.453888pt;}
._3b{width:223.131853pt;}
._2e{width:225.802346pt;}
._2b{width:235.398294pt;}
._5e{width:239.582208pt;}
._33{width:243.120947pt;}
._29{width:244.994243pt;}
._32{width:247.042253pt;}
._38{width:249.194189pt;}
._25{width:253.995094pt;}
._36{width:255.525360pt;}
._23{width:256.524259pt;}
._35{width:257.849515pt;}
._24{width:261.099072pt;}
._2a{width:263.888592pt;}
._47{width:266.266214pt;}
._50{width:273.104589pt;}
._37{width:275.878195pt;}
._48{width:278.125773pt;}
._4d{width:281.759915pt;}
._2c{width:297.362832pt;}
._4f{width:299.788595pt;}
._28{width:306.661232pt;}
._5d{width:369.989530pt;}
._3d{width:384.431411pt;}
._62{width:397.916877pt;}
._61{width:421.444710pt;}
._5a{width:443.537920pt;}
._60{width:454.536704pt;}
._44{width:455.493120pt;}
._41{width:479.068774pt;}
._1d{width:503.505203pt;}
._59{width:512.160768pt;}
._40{width:524.115968pt;}
._1c{width:548.552397pt;}
._1f{width:552.664986pt;}
._42{width:555.629875pt;}
._1b{width:558.539878pt;}
._3f{width:567.578010pt;}
._5b{width:578.185114pt;}
._45{width:590.140314pt;}
._43{width:613.349581pt;}
._5f{width:659.161907pt;}
._19{width:681.446400pt;}
._3e{width:704.782950pt;}
._1e{width:716.451226pt;}
._20{width:723.133158pt;}
._13{width:811.678717pt;}
._1a{width:843.750195pt;}
._31{width:916.543565pt;}
._30{width:2211.901067pt;}
._14{width:2233.154400pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fsa{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fsc{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:101.448225pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:1.545957pt;}
.yb{bottom:3.044747pt;}
.ya{bottom:12.578910pt;}
.y2{bottom:26.907593pt;}
.y4f{bottom:28.346667pt;}
.y140{bottom:81.557333pt;}
.y1a1{bottom:84.746667pt;}
.y187{bottom:87.084000pt;}
.y1d0{bottom:88.982667pt;}
.y24{bottom:91.398667pt;}
.y207{bottom:92.050667pt;}
.y4e{bottom:92.108000pt;}
.y89{bottom:96.817333pt;}
.y13f{bottom:98.294667pt;}
.y19f{bottom:99.057333pt;}
.y19e{bottom:101.484000pt;}
.y160{bottom:102.790667pt;}
.y186{bottom:103.821333pt;}
.y1cf{bottom:104.325333pt;}
.y1a0{bottom:106.306667pt;}
.yca{bottom:107.269333pt;}
.y23{bottom:107.298667pt;}
.y206{bottom:107.393333pt;}
.y4d{bottom:108.844000pt;}
.y88{bottom:113.554667pt;}
.y13e{bottom:115.032000pt;}
.y19d{bottom:118.221333pt;}
.y15f{bottom:119.528000pt;}
.y1ce{bottom:119.668000pt;}
.y185{bottom:120.557333pt;}
.y205{bottom:122.736000pt;}
.y22{bottom:123.200000pt;}
.ya9{bottom:124.277333pt;}
.yc9{bottom:124.298667pt;}
.y4c{bottom:125.581333pt;}
.y87{bottom:130.292000pt;}
.y13d{bottom:131.769333pt;}
.y19c{bottom:134.958667pt;}
.y1cd{bottom:135.010667pt;}
.y15e{bottom:136.265333pt;}
.y184{bottom:137.294667pt;}
.y204{bottom:138.078667pt;}
.yf7{bottom:138.760000pt;}
.y21{bottom:139.100000pt;}
.yc8{bottom:141.326667pt;}
.y4b{bottom:142.318667pt;}
.y86{bottom:147.028000pt;}
.y13c{bottom:148.506667pt;}
.y1cc{bottom:150.352000pt;}
.y15d{bottom:153.002667pt;}
.y203{bottom:153.421333pt;}
.y183{bottom:154.032000pt;}
.y20{bottom:155.000000pt;}
.y19b{bottom:155.681333pt;}
.yc7{bottom:158.356000pt;}
.y4a{bottom:159.056000pt;}
.y146{bottom:161.789333pt;}
.y85{bottom:163.765333pt;}
.y13b{bottom:165.244000pt;}
.y1cb{bottom:165.694667pt;}
.y202{bottom:168.762667pt;}
.y15c{bottom:169.740000pt;}
.y182{bottom:170.769333pt;}
.y1f{bottom:170.901333pt;}
.yc6{bottom:175.385333pt;}
.y49{bottom:175.793333pt;}
.y145{bottom:178.526667pt;}
.y83{bottom:180.502667pt;}
.y1ca{bottom:181.037333pt;}
.y13a{bottom:181.981333pt;}
.y201{bottom:184.105333pt;}
.y84{bottom:185.325333pt;}
.y19a{bottom:185.569333pt;}
.y15b{bottom:186.477333pt;}
.y1e{bottom:186.801333pt;}
.y181{bottom:187.506667pt;}
.yfe{bottom:188.954667pt;}
.yc5{bottom:192.414667pt;}
.y48{bottom:192.530667pt;}
.y144{bottom:195.264000pt;}
.yfa{bottom:195.994667pt;}
.y1c9{bottom:196.380000pt;}
.y82{bottom:197.240000pt;}
.y139{bottom:198.718667pt;}
.y200{bottom:199.448000pt;}
.y199{bottom:202.306667pt;}
.y1d{bottom:202.701333pt;}
.y110{bottom:205.049333pt;}
.y47{bottom:209.268000pt;}
.yc4{bottom:209.442667pt;}
.y1c8{bottom:211.722667pt;}
.y143{bottom:212.001333pt;}
.y80{bottom:213.977333pt;}
.y1ff{bottom:214.790667pt;}
.y138{bottom:215.456000pt;}
.y81{bottom:218.800000pt;}
.y197{bottom:219.044000pt;}
.y10f{bottom:221.786667pt;}
.y198{bottom:223.865333pt;}
.y180{bottom:223.933333pt;}
.y46{bottom:226.005333pt;}
.yc3{bottom:226.472000pt;}
.y15a{bottom:226.888000pt;}
.y1c7{bottom:227.065333pt;}
.y142{bottom:228.738667pt;}
.y1fe{bottom:230.133333pt;}
.y7f{bottom:230.714667pt;}
.y137{bottom:232.193333pt;}
.y196{bottom:235.781333pt;}
.y10e{bottom:238.524000pt;}
.y17f{bottom:238.544000pt;}
.y159{bottom:241.500000pt;}
.y1c6{bottom:242.408000pt;}
.y45{bottom:242.742667pt;}
.yc2{bottom:243.501333pt;}
.y141{bottom:245.476000pt;}
.y7e{bottom:247.452000pt;}
.y136{bottom:248.930667pt;}
.y195{bottom:252.518667pt;}
.y17e{bottom:253.156000pt;}
.y10d{bottom:255.261333pt;}
.y158{bottom:256.112000pt;}
.y1c5{bottom:257.750667pt;}
.y44{bottom:259.480000pt;}
.yc1{bottom:260.529333pt;}
.y1fd{bottom:260.818667pt;}
.ye4{bottom:262.213333pt;}
.y7d{bottom:264.189333pt;}
.y135{bottom:265.666667pt;}
.y17d{bottom:267.768000pt;}
.y194{bottom:269.256000pt;}
.y157{bottom:270.724000pt;}
.y10c{bottom:271.998667pt;}
.y1c4{bottom:273.093333pt;}
.y1c{bottom:273.154667pt;}
.y1fc{bottom:276.161333pt;}
.y43{bottom:276.217333pt;}
.yc0{bottom:277.558667pt;}
.ye3{bottom:278.950667pt;}
.y7c{bottom:280.926667pt;}
.y17c{bottom:282.380000pt;}
.y134{bottom:282.404000pt;}
.y156{bottom:285.336000pt;}
.y193{bottom:285.993333pt;}
.y1c3{bottom:288.434667pt;}
.y10b{bottom:288.736000pt;}
.y1b{bottom:289.054667pt;}
.y1fb{bottom:291.502667pt;}
.y42{bottom:292.954667pt;}
.ybf{bottom:294.588000pt;}
.ye2{bottom:295.688000pt;}
.y17b{bottom:296.992000pt;}
.y7b{bottom:297.664000pt;}
.y133{bottom:299.141333pt;}
.y155{bottom:299.948000pt;}
.y192{bottom:302.730667pt;}
.y1c2{bottom:303.777333pt;}
.y1a{bottom:304.954667pt;}
.y10a{bottom:305.473333pt;}
.y1fa{bottom:306.845333pt;}
.y41{bottom:309.692000pt;}
.y17a{bottom:311.604000pt;}
.ybe{bottom:311.616000pt;}
.ye1{bottom:312.425333pt;}
.y7a{bottom:314.401333pt;}
.y154{bottom:314.560000pt;}
.y131{bottom:315.878667pt;}
.y1c1{bottom:319.120000pt;}
.y132{bottom:320.701333pt;}
.y19{bottom:320.856000pt;}
.y1f9{bottom:322.188000pt;}
.y109{bottom:322.210667pt;}
.y40{bottom:326.429333pt;}
.ybd{bottom:328.645333pt;}
.ye0{bottom:329.162667pt;}
.y79{bottom:331.138667pt;}
.y130{bottom:332.616000pt;}
.y179{bottom:332.617333pt;}
.y1c0{bottom:334.462667pt;}
.y153{bottom:335.573333pt;}
.y1f8{bottom:337.530667pt;}
.y108{bottom:338.948000pt;}
.y191{bottom:343.141333pt;}
.y3f{bottom:343.166667pt;}
.ybc{bottom:345.674667pt;}
.ydf{bottom:345.900000pt;}
.y77{bottom:347.876000pt;}
.y12f{bottom:349.353333pt;}
.y1bf{bottom:349.805333pt;}
.y78{bottom:352.697333pt;}
.y1f7{bottom:352.873333pt;}
.y18{bottom:354.688000pt;}
.y107{bottom:355.685333pt;}
.y190{bottom:357.753333pt;}
.y3e{bottom:359.904000pt;}
.y178{bottom:360.724000pt;}
.yde{bottom:362.637333pt;}
.ybb{bottom:362.702667pt;}
.y152{bottom:363.680000pt;}
.y76{bottom:364.613333pt;}
.y1be{bottom:365.148000pt;}
.y1f6{bottom:368.216000pt;}
.y17{bottom:370.589333pt;}
.y18f{bottom:372.364000pt;}
.y106{bottom:372.422667pt;}
.y3d{bottom:376.641333pt;}
.y177{bottom:377.820000pt;}
.ydd{bottom:379.374667pt;}
.yba{bottom:379.732000pt;}
.y1bd{bottom:380.490667pt;}
.y151{bottom:380.776000pt;}
.y74{bottom:381.350667pt;}
.y1f5{bottom:383.558667pt;}
.y75{bottom:386.172000pt;}
.y16{bottom:386.489333pt;}
.y18e{bottom:386.976000pt;}
.y105{bottom:389.160000pt;}
.y12e{bottom:389.764000pt;}
.y1bc{bottom:395.833333pt;}
.ydc{bottom:396.112000pt;}
.yb9{bottom:396.761333pt;}
.y3c{bottom:397.364000pt;}
.y73{bottom:398.088000pt;}
.y1f4{bottom:398.901333pt;}
.y18d{bottom:401.588000pt;}
.y12d{bottom:404.376000pt;}
.y104{bottom:405.897333pt;}
.y150{bottom:410.296000pt;}
.y176{bottom:410.801333pt;}
.y1ba{bottom:411.174667pt;}
.y1bb{bottom:411.176000pt;}
.yf6{bottom:412.670667pt;}
.ydb{bottom:412.848000pt;}
.yb8{bottom:413.789333pt;}
.y1f3{bottom:414.244000pt;}
.y18c{bottom:416.200000pt;}
.y15{bottom:418.330667pt;}
.y72{bottom:418.810667pt;}
.y12c{bottom:418.988000pt;}
.y103{bottom:422.634667pt;}
.yb7{bottom:423.668000pt;}
.y1b9{bottom:426.517333pt;}
.y14f{bottom:427.033333pt;}
.y175{bottom:427.538667pt;}
.yf5{bottom:429.408000pt;}
.yda{bottom:429.585333pt;}
.y18b{bottom:430.812000pt;}
.y12b{bottom:433.600000pt;}
.y14{bottom:434.230667pt;}
.ya8{bottom:436.588000pt;}
.y102{bottom:439.372000pt;}
.y1b8{bottom:441.860000pt;}
.y14e{bottom:443.770667pt;}
.y1f2{bottom:444.928000pt;}
.yf4{bottom:446.145333pt;}
.yd9{bottom:446.322667pt;}
.y12a{bottom:448.212000pt;}
.y71{bottom:448.698667pt;}
.y18a{bottom:451.826667pt;}
.ya7{bottom:453.325333pt;}
.yb6{bottom:456.136000pt;}
.y1b7{bottom:457.202667pt;}
.y1f1{bottom:460.270667pt;}
.y14d{bottom:460.508000pt;}
.y174{bottom:461.013333pt;}
.y129{bottom:462.824000pt;}
.yf3{bottom:462.882667pt;}
.yd8{bottom:463.060000pt;}
.y3b{bottom:464.164000pt;}
.y70{bottom:465.436000pt;}
.y13{bottom:466.070667pt;}
.y101{bottom:469.208000pt;}
.ya6{bottom:470.062667pt;}
.yf9{bottom:472.248000pt;}
.y1b6{bottom:472.545333pt;}
.y1f0{bottom:475.613333pt;}
.yfd{bottom:475.928000pt;}
.y14c{bottom:477.245333pt;}
.y128{bottom:477.436000pt;}
.yf2{bottom:479.620000pt;}
.yd7{bottom:479.797333pt;}
.y189{bottom:479.932000pt;}
.y173{bottom:481.233333pt;}
.y12{bottom:481.972000pt;}
.y6f{bottom:482.173333pt;}
.y100{bottom:483.972000pt;}
.yff{bottom:486.304000pt;}
.ya5{bottom:486.800000pt;}
.y1b5{bottom:487.888000pt;}
.yb5{bottom:489.172000pt;}
.yf8{bottom:489.344000pt;}
.yfc{bottom:490.692000pt;}
.y1ef{bottom:490.956000pt;}
.yfb{bottom:493.024000pt;}
.y14b{bottom:493.982667pt;}
.yf1{bottom:496.357333pt;}
.yd6{bottom:496.534667pt;}
.y188{bottom:497.028000pt;}
.y3a{bottom:497.398667pt;}
.y11{bottom:497.872000pt;}
.y127{bottom:498.449333pt;}
.y6e{bottom:498.910667pt;}
.y172{bottom:502.246667pt;}
.y1b4{bottom:503.230667pt;}
.y1ee{bottom:506.298667pt;}
.ya4{bottom:507.522667pt;}
.y149{bottom:510.720000pt;}
.yf0{bottom:513.094667pt;}
.yd5{bottom:513.272000pt;}
.y10{bottom:513.772000pt;}
.y39{bottom:514.694667pt;}
.y14a{bottom:515.542667pt;}
.y6d{bottom:515.648000pt;}
.y1b3{bottom:518.573333pt;}
.y1ed{bottom:521.641333pt;}
.y171{bottom:523.261333pt;}
.y126{bottom:526.556000pt;}
.y148{bottom:527.457333pt;}
.yf{bottom:529.673333pt;}
.yef{bottom:529.832000pt;}
.yd4{bottom:530.009333pt;}
.y38{bottom:531.989333pt;}
.y6c{bottom:532.384000pt;}
.y1ec{bottom:536.984000pt;}
.ya3{bottom:537.410667pt;}
.y1b2{bottom:537.900000pt;}
.y125{bottom:543.652000pt;}
.y147{bottom:544.194667pt;}
.y170{bottom:544.274667pt;}
.ye{bottom:545.573333pt;}
.yee{bottom:546.569333pt;}
.yd3{bottom:546.746667pt;}
.y6b{bottom:549.121333pt;}
.y37{bottom:549.284000pt;}
.y1eb{bottom:552.325333pt;}
.ya2{bottom:554.148000pt;}
.yd{bottom:561.473333pt;}
.yed{bottom:563.306667pt;}
.yd2{bottom:563.484000pt;}
.y16f{bottom:565.289333pt;}
.y6a{bottom:565.858667pt;}
.y36{bottom:566.580000pt;}
.y1ea{bottom:567.668000pt;}
.y1b1{bottom:567.788000pt;}
.ya1{bottom:570.885333pt;}
.yc{bottom:577.374667pt;}
.y124{bottom:577.669333pt;}
.yec{bottom:580.044000pt;}
.yd1{bottom:580.221333pt;}
.y69{bottom:582.596000pt;}
.y1e9{bottom:583.010667pt;}
.y35{bottom:583.874667pt;}
.y16e{bottom:586.302667pt;}
.ya0{bottom:587.622667pt;}
.y1b0{bottom:591.380000pt;}
.yeb{bottom:596.781333pt;}
.yd0{bottom:596.958667pt;}
.y9{bottom:597.259968pt;}
.y123{bottom:597.889333pt;}
.y1e8{bottom:598.353333pt;}
.y68{bottom:599.333333pt;}
.y34{bottom:601.169333pt;}
.y9f{bottom:604.360000pt;}
.y1af{bottom:607.001333pt;}
.y16d{bottom:607.317333pt;}
.yea{bottom:613.517333pt;}
.ycf{bottom:613.696000pt;}
.y67{bottom:616.070667pt;}
.y32{bottom:616.133333pt;}
.y31{bottom:618.465333pt;}
.y122{bottom:618.902667pt;}
.y9e{bottom:621.097333pt;}
.y1ae{bottom:622.622667pt;}
.y33{bottom:622.805333pt;}
.y16c{bottom:628.330667pt;}
.y1e7{bottom:629.038667pt;}
.ye9{bottom:630.254667pt;}
.yce{bottom:630.433333pt;}
.y66{bottom:632.808000pt;}
.y30{bottom:635.760000pt;}
.y9d{bottom:637.834667pt;}
.y1ad{bottom:638.244000pt;}
.y121{bottom:639.917333pt;}
.y1e6{bottom:644.381333pt;}
.ye8{bottom:646.992000pt;}
.ycd{bottom:647.170667pt;}
.y16b{bottom:649.345333pt;}
.y65{bottom:649.545333pt;}
.y2f{bottom:653.056000pt;}
.y1ac{bottom:653.865333pt;}
.y9c{bottom:654.572000pt;}
.y1e5{bottom:659.724000pt;}
.y120{bottom:660.930667pt;}
.ye7{bottom:663.729333pt;}
.ycc{bottom:663.908000pt;}
.y64{bottom:666.282667pt;}
.y1ab{bottom:669.486667pt;}
.y2e{bottom:670.350667pt;}
.y16a{bottom:670.358667pt;}
.y9b{bottom:671.309333pt;}
.y1e4{bottom:675.066667pt;}
.ye6{bottom:680.466667pt;}
.ycb{bottom:680.645333pt;}
.y11f{bottom:681.945333pt;}
.y63{bottom:683.020000pt;}
.y2d{bottom:687.645333pt;}
.y1e3{bottom:690.408000pt;}
.y169{bottom:691.373333pt;}
.y1aa{bottom:693.078667pt;}
.yb4{bottom:697.382667pt;}
.y62{bottom:699.757333pt;}
.y11e{bottom:702.958667pt;}
.y2c{bottom:704.941333pt;}
.y1e2{bottom:705.750667pt;}
.ye5{bottom:710.302667pt;}
.y9a{bottom:711.720000pt;}
.y168{bottom:712.386667pt;}
.yb3{bottom:714.120000pt;}
.y61{bottom:716.494667pt;}
.y1a9{bottom:716.670667pt;}
.y1e1{bottom:721.093333pt;}
.y2b{bottom:722.236000pt;}
.y11d{bottom:723.973333pt;}
.y99{bottom:726.332000pt;}
.yb2{bottom:730.857333pt;}
.y60{bottom:733.232000pt;}
.y167{bottom:733.400000pt;}
.y1e0{bottom:736.436000pt;}
.y1a8{bottom:740.261333pt;}
.y98{bottom:740.944000pt;}
.y11c{bottom:744.986667pt;}
.yb1{bottom:747.594667pt;}
.y5f{bottom:749.969333pt;}
.y1df{bottom:751.778667pt;}
.y2a{bottom:753.816000pt;}
.y166{bottom:754.414667pt;}
.y97{bottom:755.554667pt;}
.y1a7{bottom:763.853333pt;}
.yb0{bottom:764.332000pt;}
.y11b{bottom:766.001333pt;}
.y5e{bottom:766.706667pt;}
.y1de{bottom:767.121333pt;}
.y29{bottom:768.161333pt;}
.y96{bottom:770.166667pt;}
.y165{bottom:775.428000pt;}
.yaf{bottom:781.069333pt;}
.y1dd{bottom:782.464000pt;}
.y5d{bottom:783.444000pt;}
.y95{bottom:784.778667pt;}
.y28{bottom:786.365333pt;}
.y11a{bottom:787.014667pt;}
.y1a6{bottom:787.445333pt;}
.y164{bottom:796.442667pt;}
.y27{bottom:796.854667pt;}
.yae{bottom:797.806667pt;}
.y94{bottom:799.390667pt;}
.y5c{bottom:800.181333pt;}
.y1a5{bottom:803.066667pt;}
.y119{bottom:808.029333pt;}
.y26{bottom:811.201333pt;}
.y1db{bottom:813.148000pt;}
.y1dc{bottom:813.149333pt;}
.yad{bottom:814.544000pt;}
.y5b{bottom:816.918667pt;}
.y163{bottom:817.456000pt;}
.y1a4{bottom:818.688000pt;}
.y93{bottom:820.405333pt;}
.y162{bottom:827.910667pt;}
.y1da{bottom:828.490667pt;}
.y118{bottom:829.042667pt;}
.y25{bottom:829.404000pt;}
.yac{bottom:831.281333pt;}
.y5a{bottom:833.656000pt;}
.y1a3{bottom:834.309333pt;}
.y1d9{bottom:843.833333pt;}
.yab{bottom:848.018667pt;}
.y92{bottom:848.510667pt;}
.y1a2{bottom:849.930667pt;}
.y117{bottom:850.057333pt;}
.y59{bottom:850.393333pt;}
.y1d8{bottom:859.176000pt;}
.y8{bottom:862.413333pt;}
.yaa{bottom:864.754667pt;}
.y161{bottom:866.577333pt;}
.y58{bottom:867.130667pt;}
.y116{bottom:871.070667pt;}
.y1d7{bottom:874.518667pt;}
.y91{bottom:881.492000pt;}
.y57{bottom:883.868000pt;}
.y1d6{bottom:889.861333pt;}
.y115{bottom:892.084000pt;}
.y90{bottom:898.229333pt;}
.y7{bottom:900.404000pt;}
.y56{bottom:900.605333pt;}
.y1d5{bottom:905.204000pt;}
.y114{bottom:913.098667pt;}
.y8e{bottom:914.966667pt;}
.y55{bottom:917.342667pt;}
.y8f{bottom:919.789333pt;}
.y1d4{bottom:920.546667pt;}
.y6{bottom:925.510667pt;}
.y8d{bottom:931.704000pt;}
.y54{bottom:934.080000pt;}
.y113{bottom:934.112000pt;}
.y1d3{bottom:935.889333pt;}
.y112{bottom:944.566667pt;}
.y8c{bottom:948.441333pt;}
.y5{bottom:950.616000pt;}
.y53{bottom:950.817333pt;}
.y1d2{bottom:951.230667pt;}
.y8b{bottom:965.178667pt;}
.y1d1{bottom:966.573333pt;}
.y52{bottom:967.554667pt;}
.y4{bottom:975.722667pt;}
.y8a{bottom:981.916000pt;}
.y111{bottom:983.233333pt;}
.y51{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y50{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.hc{height:23.209028pt;}
.h17{height:24.760382pt;}
.h10{height:25.811318pt;}
.h1b{height:26.890973pt;}
.ha{height:27.076941pt;}
.hb{height:27.262909pt;}
.h18{height:28.023859pt;}
.h14{height:29.397999pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.hd{height:30.945242pt;}
.h13{height:31.157778pt;}
.he{height:34.574438pt;}
.hf{height:34.813542pt;}
.h1c{height:35.052646pt;}
.h15{height:36.873667pt;}
.h11{height:38.415786pt;}
.h12{height:38.681455pt;}
.h4{height:38.947124pt;}
.h1e{height:43.165985pt;}
.h19{height:43.171318pt;}
.h2{height:45.272024pt;}
.h1f{height:45.480209pt;}
.h20{height:46.290876pt;}
.h16{height:47.314526pt;}
.h6{height:48.481423pt;}
.h1a{height:55.493639pt;}
.h3{height:68.781897pt;}
.h5{height:69.148877pt;}
.h1d{height:76.814438pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:184.542183pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:51.603593pt;}
.x5a{left:59.893333pt;}
.x93{left:68.917333pt;}
.x73{left:76.346667pt;}
.x5e{left:91.712000pt;}
.x5d{left:94.036000pt;}
.x92{left:97.933333pt;}
.x8b{left:99.194667pt;}
.x8f{left:100.094667pt;}
.x91{left:104.610667pt;}
.xb3{left:111.662667pt;}
.x58{left:113.612000pt;}
.x4d{left:122.381333pt;}
.x59{left:127.270667pt;}
.xba{left:128.896000pt;}
.x74{left:130.528000pt;}
.x75{left:132.868000pt;}
.x88{left:137.617333pt;}
.x5b{left:166.240000pt;}
.xd9{left:185.817333pt;}
.x89{left:216.905333pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x8{left:233.105333pt;}
.xd0{left:234.292000pt;}
.x9{left:238.418667pt;}
.xd1{left:240.004000pt;}
.x5{left:241.085333pt;}
.x97{left:242.856000pt;}
.xe{left:251.365333pt;}
.x46{left:252.478667pt;}
.xa{left:254.312000pt;}
.x86{left:256.524000pt;}
.xca{left:258.146667pt;}
.xb{left:259.625333pt;}
.x96{left:262.493333pt;}
.xd2{left:263.478667pt;}
.x1c{left:264.404000pt;}
.x45{left:266.012000pt;}
.x69{left:267.520000pt;}
.x13{left:269.117333pt;}
.xce{left:270.057333pt;}
.xcb{left:271.429333pt;}
.x48{left:273.506667pt;}
.x7{left:275.052000pt;}
.x98{left:276.394667pt;}
.x1d{left:277.688000pt;}
.x32{left:279.404000pt;}
.x6a{left:280.804000pt;}
.x14{left:282.400000pt;}
.x6b{left:284.108000pt;}
.x33{left:285.116000pt;}
.x60{left:286.874667pt;}
.x15{left:288.996000pt;}
.x61{left:290.261333pt;}
.xc4{left:292.568000pt;}
.x17{left:297.460000pt;}
.x3b{left:299.278667pt;}
.xaf{left:300.276000pt;}
.x16{left:302.278667pt;}
.x18{left:304.102667pt;}
.xc5{left:305.850667pt;}
.x19{left:307.453333pt;}
.x95{left:311.905333pt;}
.xb0{left:313.558667pt;}
.x47{left:314.465333pt;}
.x94{left:317.658667pt;}
.x1a{left:320.736000pt;}
.x20{left:323.145333pt;}
.x1b{left:324.086667pt;}
.xa2{left:326.204000pt;}
.x44{left:327.460000pt;}
.xb1{left:330.153333pt;}
.xf{left:331.490667pt;}
.xb2{left:333.464000pt;}
.x5f{left:335.257333pt;}
.x21{left:336.428000pt;}
.x10{left:338.133333pt;}
.xa3{left:339.488000pt;}
.x3c{left:340.704000pt;}
.x11{left:344.881333pt;}
.x8a{left:346.876000pt;}
.x9f{left:347.906667pt;}
.x12{left:351.522667pt;}
.x5c{left:357.982667pt;}
.x65{left:360.160000pt;}
.xa0{left:361.190667pt;}
.x87{left:369.206667pt;}
.x66{left:373.444000pt;}
.x67{left:376.748000pt;}
.xc0{left:382.956000pt;}
.x68{left:390.032000pt;}
.x72{left:391.692000pt;}
.xc1{left:396.240000pt;}
.x4e{left:404.458667pt;}
.x4f{left:411.100000pt;}
.xa6{left:412.816000pt;}
.x50{left:414.468000pt;}
.x3f{left:425.122667pt;}
.xa7{left:426.100000pt;}
.x4a{left:427.102667pt;}
.x8c{left:428.458667pt;}
.xc2{left:430.102667pt;}
.x22{left:432.757333pt;}
.x51{left:434.486667pt;}
.xbb{left:438.060000pt;}
.x4b{left:441.725333pt;}
.xc3{left:443.385333pt;}
.xac{left:444.936000pt;}
.x23{left:446.041333pt;}
.x52{left:447.769333pt;}
.x9d{left:451.410667pt;}
.x34{left:455.330667pt;}
.x55{left:457.449333pt;}
.x62{left:459.249333pt;}
.x26{left:461.857333pt;}
.x9e{left:464.694667pt;}
.x35{left:470.586667pt;}
.xcc{left:473.017333pt;}
.x56{left:474.120000pt;}
.x27{left:475.141333pt;}
.x90{left:476.774667pt;}
.x63{left:478.490667pt;}
.xbc{left:481.981333pt;}
.xcd{left:486.301333pt;}
.x57{left:487.404000pt;}
.xb4{left:490.860000pt;}
.x64{left:491.773333pt;}
.x76{left:493.649333pt;}
.x36{left:495.406667pt;}
.xb5{left:496.909333pt;}
.x77{left:499.626667pt;}
.xc8{left:503.728000pt;}
.x30{left:506.754667pt;}
.x37{left:510.662667pt;}
.xad{left:514.356000pt;}
.xc9{left:517.010667pt;}
.x4c{left:518.013333pt;}
.x31{left:520.037333pt;}
.xae{left:527.640000pt;}
.xc6{left:531.122667pt;}
.x38{left:532.096000pt;}
.x9b{left:543.218667pt;}
.xc7{left:544.406667pt;}
.x39{left:547.352000pt;}
.xa8{left:548.420000pt;}
.x8d{left:549.902667pt;}
.x78{left:551.706667pt;}
.xa4{left:554.570667pt;}
.x9c{left:556.501333pt;}
.x79{left:559.012000pt;}
.xa9{left:561.704000pt;}
.xa5{left:567.853333pt;}
.xa1{left:569.962667pt;}
.xc{left:573.745333pt;}
.x7a{left:577.620000pt;}
.xd{left:579.369333pt;}
.x7b{left:582.933333pt;}
.x42{left:584.994667pt;}
.x43{left:591.045333pt;}
.x3a{left:597.057333pt;}
.x7c{left:598.920000pt;}
.x6e{left:600.529333pt;}
.x24{left:603.005333pt;}
.x7d{left:604.233333pt;}
.x28{left:608.457333pt;}
.x80{left:610.949333pt;}
.x6f{left:613.813333pt;}
.x25{left:616.289333pt;}
.x70{left:617.200000pt;}
.x29{left:621.741333pt;}
.x40{left:622.797333pt;}
.xb7{left:624.498667pt;}
.xb6{left:626.744000pt;}
.x71{left:630.484000pt;}
.xd3{left:632.544000pt;}
.x6c{left:634.456000pt;}
.x41{left:636.081333pt;}
.xb8{left:637.782667pt;}
.xcf{left:640.590667pt;}
.x8e{left:641.824000pt;}
.x1e{left:643.232000pt;}
.xd7{left:651.384000pt;}
.xb9{left:654.453333pt;}
.x49{left:655.653333pt;}
.x7e{left:664.072000pt;}
.x81{left:665.036000pt;}
.x53{left:670.389333pt;}
.x7f{left:671.377333pt;}
.x82{left:672.341333pt;}
.xd8{left:675.294667pt;}
.x6d{left:677.078667pt;}
.x2a{left:678.261333pt;}
.x54{left:683.673333pt;}
.x2b{left:684.902667pt;}
.x2c{left:688.290667pt;}
.x83{left:689.392000pt;}
.x2d{left:694.932000pt;}
.x2e{left:698.320000pt;}
.xd5{left:702.000000pt;}
.xbd{left:707.892000pt;}
.x84{left:710.520000pt;}
.x2f{left:711.602667pt;}
.x85{left:715.833333pt;}
.xd4{left:720.334667pt;}
.x3d{left:723.805333pt;}
.xd6{left:725.909333pt;}
.xaa{left:726.974667pt;}
.xbe{left:727.922667pt;}
.x99{left:730.044000pt;}
.x3e{left:732.009333pt;}
.x9a{left:736.094667pt;}
.xab{left:740.257333pt;}
.xbf{left:741.206667pt;}
.x1f{left:744.637333pt;}
}




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