
    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_5b054109df97796925ea32e6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a1e8cd680e73da233ef47489.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.191000;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_251ea8df94a0e388b31f966b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1f75ed177a186a27b581f966.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;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_a3ef4d60d901c9c6e3efc348.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_82552200b1b314060ca5063d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.997000;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_49dc727866cbb81a05c4d154.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.677000;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_899007a56a57372a94ec89e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.488000;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_b60e03a84071af141b742074.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.952000;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_7dcaad2882139f35a445484c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cbd6b5c6e42d41b94558f037.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.186000;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:ffc;src:url('chunks/assets/font_5aaf4cdc5bea740f941e5653.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.724000;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:ffd;src:url('chunks/assets/font_20a1c64c43dd93824f6a5327.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.190000;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;}
.m1{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);}
.m28{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);}
.m3{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);}
.m5{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);}
.m4{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);}
.m14{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);}
.ma{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);}
.m13{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);}
.m6{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);}
.m1c{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);}
.m16{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);}
.m10{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m8{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);}
.m1f{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);}
.mf{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);}
.m25{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);}
.m15{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);}
.m9{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);}
.md{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);}
.m7{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);}
.m11{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);}
.mb{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);}
.m17{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);}
.m29{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);}
.m19{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);}
.m1b{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);}
.m1e{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);}
.m24{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);}
.m1d{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m23{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);}
.m27{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);}
.m18{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);}
.m20{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);}
.m26{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.vc{vertical-align:-53.190000px;}
.vd{vertical-align:-51.186000px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-10.920000px;}
.v8{vertical-align:-1.782000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.782000px;}
.v6{vertical-align:4.146000px;}
.v5{vertical-align:5.586000px;}
.va{vertical-align:15.582000px;}
.v9{vertical-align:17.364000px;}
.vb{vertical-align:19.140000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:52.398000px;}
.lse{letter-spacing:0.000000px;}
.ls89{letter-spacing:0.000009px;}
.ls8f{letter-spacing:0.000208px;}
.ls8e{letter-spacing:0.000406px;}
.ls8a{letter-spacing:0.000496px;}
.ls1b{letter-spacing:0.000608px;}
.ls7c{letter-spacing:0.000699px;}
.ls7e{letter-spacing:0.000800px;}
.ls7b{letter-spacing:0.000901px;}
.ls7f{letter-spacing:0.001102px;}
.ls7a{letter-spacing:0.001155px;}
.ls80{letter-spacing:0.001449px;}
.ls92{letter-spacing:0.001701px;}
.ls75{letter-spacing:0.002293px;}
.ls81{letter-spacing:0.002338px;}
.ls82{letter-spacing:0.002544px;}
.ls84{letter-spacing:0.002841px;}
.ls87{letter-spacing:0.002928px;}
.ls79{letter-spacing:0.003239px;}
.ls39{letter-spacing:0.003746px;}
.ls21{letter-spacing:0.004090px;}
.ls1{letter-spacing:0.004200px;}
.ls83{letter-spacing:0.004800px;}
.ls71{letter-spacing:0.004844px;}
.ls13{letter-spacing:0.717483px;}
.lsf{letter-spacing:2.989200px;}
.ls14{letter-spacing:3.553200px;}
.ls0{letter-spacing:10.461300px;}
.ls6c{letter-spacing:11.809556px;}
.ls38{letter-spacing:11.951700px;}
.lsd{letter-spacing:11.954850px;}
.ls26{letter-spacing:12.244850px;}
.ls31{letter-spacing:12.524693px;}
.ls30{letter-spacing:12.530693px;}
.ls42{letter-spacing:12.551600px;}
.ls4f{letter-spacing:12.557600px;}
.ls85{letter-spacing:12.968767px;}
.ls8{letter-spacing:13.276310px;}
.lsb{letter-spacing:13.361756px;}
.ls9{letter-spacing:13.406682px;}
.ls8c{letter-spacing:13.448026px;}
.ls74{letter-spacing:13.448400px;}
.lsc{letter-spacing:13.450800px;}
.ls76{letter-spacing:13.454400px;}
.ls86{letter-spacing:13.478400px;}
.ls7d{letter-spacing:13.577700px;}
.lsa{letter-spacing:13.579502px;}
.ls78{letter-spacing:13.611376px;}
.ls8b{letter-spacing:13.620309px;}
.ls77{letter-spacing:13.629992px;}
.ls23{letter-spacing:14.094088px;}
.ls22{letter-spacing:14.100088px;}
.ls25{letter-spacing:14.116627px;}
.ls24{letter-spacing:14.122627px;}
.ls1f{letter-spacing:14.597914px;}
.ls60{letter-spacing:14.638206px;}
.ls70{letter-spacing:14.640771px;}
.ls5d{letter-spacing:14.643173px;}
.ls2e{letter-spacing:14.655870px;}
.ls15{letter-spacing:14.672672px;}
.ls10{letter-spacing:14.812244px;}
.ls59{letter-spacing:14.815170px;}
.ls6e{letter-spacing:14.820533px;}
.ls6f{letter-spacing:14.862200px;}
.ls2b{letter-spacing:14.896200px;}
.ls57{letter-spacing:14.896631px;}
.ls1c{letter-spacing:14.918082px;}
.ls6d{letter-spacing:14.941371px;}
.ls2{letter-spacing:14.942725px;}
.ls4{letter-spacing:14.944200px;}
.ls27{letter-spacing:14.949549px;}
.ls5e{letter-spacing:15.012502px;}
.ls61{letter-spacing:15.012902px;}
.ls2c{letter-spacing:15.026486px;}
.ls2d{letter-spacing:15.057655px;}
.ls1e{letter-spacing:15.057874px;}
.ls72{letter-spacing:15.087958px;}
.ls28{letter-spacing:15.216282px;}
.ls5c{letter-spacing:15.249535px;}
.ls5f{letter-spacing:15.301996px;}
.ls20{letter-spacing:15.365141px;}
.ls11{letter-spacing:15.429472px;}
.ls62{letter-spacing:15.647494px;}
.ls12{letter-spacing:15.663483px;}
.ls73{letter-spacing:15.689400px;}
.ls2f{letter-spacing:15.718082px;}
.ls1a{letter-spacing:16.053376px;}
.ls19{letter-spacing:16.059259px;}
.ls29{letter-spacing:16.323965px;}
.ls2a{letter-spacing:16.329847px;}
.ls5b{letter-spacing:16.676906px;}
.ls88{letter-spacing:16.897459px;}
.ls17{letter-spacing:17.071024px;}
.ls58{letter-spacing:17.165141px;}
.ls5a{letter-spacing:17.459259px;}
.ls91{letter-spacing:17.771388px;}
.ls90{letter-spacing:17.777271px;}
.ls18{letter-spacing:17.912200px;}
.ls5{letter-spacing:17.935200px;}
.ls1d{letter-spacing:18.318082px;}
.ls8d{letter-spacing:19.173929px;}
.ls16{letter-spacing:19.718082px;}
.ls3{letter-spacing:57.415200px;}
.ls6{letter-spacing:62.761200px;}
.ls7{letter-spacing:64.321654px;}
.ls6b{letter-spacing:97.476600px;}
.ls6a{letter-spacing:113.162932px;}
.ls32{letter-spacing:113.696323px;}
.ls33{letter-spacing:114.649200px;}
.ls67{letter-spacing:123.260932px;}
.ls47{letter-spacing:135.296323px;}
.ls46{letter-spacing:136.243200px;}
.ls50{letter-spacing:136.249200px;}
.ls56{letter-spacing:138.251674px;}
.ls66{letter-spacing:138.956932px;}
.ls65{letter-spacing:140.064600px;}
.ls68{letter-spacing:140.066932px;}
.ls40{letter-spacing:148.748323px;}
.ls4a{letter-spacing:149.695200px;}
.ls3e{letter-spacing:149.696323px;}
.ls3d{letter-spacing:149.701200px;}
.ls49{letter-spacing:149.804323px;}
.ls3c{letter-spacing:150.643200px;}
.ls51{letter-spacing:150.649200px;}
.ls4b{letter-spacing:150.704323px;}
.ls52{letter-spacing:151.649674px;}
.ls36{letter-spacing:152.005200px;}
.ls4c{letter-spacing:152.657674px;}
.ls69{letter-spacing:152.678932px;}
.ls34{letter-spacing:152.953200px;}
.ls35{letter-spacing:152.959200px;}
.ls4e{letter-spacing:159.212323px;}
.ls55{letter-spacing:160.159200px;}
.ls3a{letter-spacing:163.607674px;}
.ls53{letter-spacing:164.294323px;}
.ls3f{letter-spacing:165.247200px;}
.ls41{letter-spacing:166.136323px;}
.ls4d{letter-spacing:166.253674px;}
.ls54{letter-spacing:172.570118px;}
.ls44{letter-spacing:173.605200px;}
.ls45{letter-spacing:173.612323px;}
.ls43{letter-spacing:174.559200px;}
.ls37{letter-spacing:176.252323px;}
.ls3b{letter-spacing:177.199200px;}
.ls48{letter-spacing:177.205200px;}
.ls64{letter-spacing:393.804288px;}
.ls63{letter-spacing:421.925933px;}
.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;}
}
.ws10c{word-spacing:-407.253888px;}
.ws30{word-spacing:-14.943900px;}
.ws21{word-spacing:-13.449600px;}
.ws2d{word-spacing:-11.955150px;}
.ws10{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws160{word-spacing:-3.168107px;}
.ws179{word-spacing:-2.630126px;}
.ws150{word-spacing:-2.570351px;}
.ws1b{word-spacing:-2.474726px;}
.ws36{word-spacing:-2.450800px;}
.ws173{word-spacing:-2.391024px;}
.ws174{word-spacing:-2.331248px;}
.ws31{word-spacing:-2.151922px;}
.wsfc{word-spacing:-2.092146px;}
.ws148{word-spacing:-1.972595px;}
.ws49{word-spacing:-1.912819px;}
.ws4c{word-spacing:-1.793268px;}
.ws61{word-spacing:-1.673717px;}
.ws151{word-spacing:-1.494390px;}
.ws64{word-spacing:-1.437762px;}
.ws65{word-spacing:-1.434614px;}
.ws63{word-spacing:-1.413529px;}
.ws158{word-spacing:-1.315063px;}
.ws6{word-spacing:-1.171598px;}
.ws162{word-spacing:-1.135736px;}
.ws8{word-spacing:-1.046070px;}
.ws1d{word-spacing:-1.022170px;}
.wsc7{word-spacing:-0.860774px;}
.ws138{word-spacing:-0.836858px;}
.ws2{word-spacing:-0.795013px;}
.ws3a{word-spacing:-0.777083px;}
.ws178{word-spacing:-0.717307px;}
.ws198{word-spacing:-0.699379px;}
.ws3c{word-spacing:-0.657532px;}
.ws175{word-spacing:-0.597756px;}
.wsc8{word-spacing:-0.591782px;}
.ws19{word-spacing:-0.537984px;}
.ws197{word-spacing:-0.484186px;}
.ws176{word-spacing:-0.418429px;}
.wse6{word-spacing:-0.382565px;}
.ws19d{word-spacing:-0.376589px;}
.ws46{word-spacing:-0.358654px;}
.ws1b1{word-spacing:-0.322790px;}
.ws44{word-spacing:-0.314787px;}
.ws42{word-spacing:-0.298878px;}
.ws17a{word-spacing:-0.268992px;}
.ws3{word-spacing:-0.251057px;}
.ws70{word-spacing:-0.239102px;}
.ws18b{word-spacing:-0.215194px;}
.ws3b{word-spacing:-0.179327px;}
.ws22{word-spacing:-0.161395px;}
.ws12e{word-spacing:-0.143462px;}
.ws17f{word-spacing:-0.137665px;}
.ws146{word-spacing:-0.133527px;}
.ws37{word-spacing:-0.119551px;}
.ws25{word-spacing:-0.107597px;}
.ws177{word-spacing:-0.097169px;}
.ws142{word-spacing:-0.087570px;}
.ws131{word-spacing:-0.086053px;}
.ws28{word-spacing:-0.059776px;}
.ws1c{word-spacing:-0.053798px;}
.ws11{word-spacing:-0.047821px;}
.ws136{word-spacing:-0.038715px;}
.ws143{word-spacing:-0.026278px;}
.ws3d{word-spacing:-0.025430px;}
.ws3e{word-spacing:-0.024046px;}
.ws45{word-spacing:-0.017977px;}
.ws43{word-spacing:-0.016759px;}
.ws13b{word-spacing:-0.010375px;}
.ws1b6{word-spacing:-0.009014px;}
.wsa2{word-spacing:-0.007840px;}
.ws66{word-spacing:-0.005864px;}
.ws1a6{word-spacing:-0.005510px;}
.ws1a0{word-spacing:-0.005117px;}
.ws17e{word-spacing:-0.005088px;}
.ws116{word-spacing:-0.004800px;}
.wsc0{word-spacing:-0.001500px;}
.wsa6{word-spacing:-0.001343px;}
.wsb5{word-spacing:-0.001319px;}
.ws1b7{word-spacing:-0.001315px;}
.ws185{word-spacing:-0.001267px;}
.wsb9{word-spacing:-0.001200px;}
.ws4{word-spacing:-0.001146px;}
.ws19f{word-spacing:-0.000451px;}
.ws1{word-spacing:0.000000px;}
.ws103{word-spacing:0.000136px;}
.ws114{word-spacing:0.001200px;}
.ws2c{word-spacing:0.002883px;}
.wsc1{word-spacing:0.004500px;}
.wsbd{word-spacing:0.004800px;}
.ws145{word-spacing:0.020478px;}
.ws13e{word-spacing:0.036136px;}
.ws168{word-spacing:0.038125px;}
.ws17b{word-spacing:0.053798px;}
.ws2f{word-spacing:0.059776px;}
.ws73{word-spacing:0.070055px;}
.ws102{word-spacing:0.098781px;}
.ws23{word-spacing:0.107597px;}
.ws32{word-spacing:0.119551px;}
.ws13d{word-spacing:0.122013px;}
.ws186{word-spacing:0.130700px;}
.ws135{word-spacing:0.152626px;}
.ws17{word-spacing:0.161395px;}
.ws35{word-spacing:0.179327px;}
.ws152{word-spacing:0.210204px;}
.ws24{word-spacing:0.215194px;}
.ws12{word-spacing:0.239103px;}
.wsa3{word-spacing:0.239789px;}
.ws153{word-spacing:0.240723px;}
.ws14d{word-spacing:0.256707px;}
.ws16{word-spacing:0.268992px;}
.wsa9{word-spacing:0.273419px;}
.wsa0{word-spacing:0.286924px;}
.ws16d{word-spacing:0.289814px;}
.ws41{word-spacing:0.298878px;}
.ws101{word-spacing:0.313074px;}
.ws144{word-spacing:0.319612px;}
.ws18a{word-spacing:0.322790px;}
.ws6c{word-spacing:0.358654px;}
.ws1b5{word-spacing:0.376589px;}
.wsa7{word-spacing:0.414595px;}
.ws62{word-spacing:0.418429px;}
.ws1ac{word-spacing:0.430387px;}
.ws39{word-spacing:0.478205px;}
.wsa8{word-spacing:0.537980px;}
.ws67{word-spacing:0.568500px;}
.wsb1{word-spacing:0.572776px;}
.wsb6{word-spacing:0.574885px;}
.wsdf{word-spacing:0.576058px;}
.wse5{word-spacing:0.576936px;}
.wsca{word-spacing:0.578455px;}
.wsb0{word-spacing:0.578776px;}
.wse3{word-spacing:0.579568px;}
.wse1{word-spacing:0.580104px;}
.wsb7{word-spacing:0.581626px;}
.wsf3{word-spacing:0.582058px;}
.wse4{word-spacing:0.589892px;}
.wsd6{word-spacing:0.592104px;}
.wsce{word-spacing:0.592800px;}
.wsde{word-spacing:0.594438px;}
.wsd2{word-spacing:0.594637px;}
.wsf7{word-spacing:0.595892px;}
.wsc3{word-spacing:0.597547px;}
.ws16b{word-spacing:0.597756px;}
.wsb8{word-spacing:0.598500px;}
.wsbe{word-spacing:0.598800px;}
.wsdc{word-spacing:0.600698px;}
.wsed{word-spacing:0.600774px;}
.wsd9{word-spacing:0.602152px;}
.wsea{word-spacing:0.602390px;}
.wsc4{word-spacing:0.602909px;}
.wsf2{word-spacing:0.604724px;}
.wse9{word-spacing:0.604923px;}
.wsee{word-spacing:0.606698px;}
.wsbc{word-spacing:0.607834px;}
.wsac{word-spacing:0.608277px;}
.wsd3{word-spacing:0.611685px;}
.wsbf{word-spacing:0.613196px;}
.wsdd{word-spacing:0.613412px;}
.wsd7{word-spacing:0.616643px;}
.wsd5{word-spacing:0.617081px;}
.wsef{word-spacing:0.619412px;}
.wse2{word-spacing:0.619933px;}
.ws1a7{word-spacing:0.645581px;}
.ws7e{word-spacing:0.647155px;}
.ws125{word-spacing:0.649450px;}
.ws11e{word-spacing:0.650275px;}
.ws96{word-spacing:0.650755px;}
.ws83{word-spacing:0.653155px;}
.ws126{word-spacing:0.653578px;}
.ws112{word-spacing:0.654691px;}
.ws10d{word-spacing:0.655450px;}
.ws127{word-spacing:0.655987px;}
.ws8d{word-spacing:0.656227px;}
.ws12c{word-spacing:0.656275px;}
.ws8f{word-spacing:0.656429px;}
.ws9e{word-spacing:0.656582px;}
.ws9d{word-spacing:0.657418px;}
.ws140{word-spacing:0.657532px;}
.ws89{word-spacing:0.658493px;}
.ws82{word-spacing:0.658512px;}
.ws87{word-spacing:0.658925px;}
.ws93{word-spacing:0.659069px;}
.ws92{word-spacing:0.659280px;}
.ws9f{word-spacing:0.659731px;}
.ws81{word-spacing:0.659971px;}
.ws95{word-spacing:0.660566px;}
.ws84{word-spacing:0.660854px;}
.ws90{word-spacing:0.661718px;}
.ws9b{word-spacing:0.662755px;}
.ws11a{word-spacing:0.667200px;}
.ws109{word-spacing:0.667334px;}
.ws12b{word-spacing:0.668573px;}
.ws110{word-spacing:0.669821px;}
.ws10f{word-spacing:0.672221px;}
.ws115{word-spacing:0.673200px;}
.ws10e{word-spacing:0.673421px;}
.ws11c{word-spacing:0.675821px;}
.ws122{word-spacing:0.679248px;}
.ws11b{word-spacing:0.679421px;}
.ws98{word-spacing:0.682224px;}
.ws124{word-spacing:0.682397px;}
.ws12d{word-spacing:0.682483px;}
.ws8b{word-spacing:0.682598px;}
.ws8a{word-spacing:0.683645px;}
.ws99{word-spacing:0.684710px;}
.ws8c{word-spacing:0.685162px;}
.ws86{word-spacing:0.685334px;}
.ws129{word-spacing:0.685421px;}
.ws97{word-spacing:0.686582px;}
.ws94{word-spacing:0.686746px;}
.ws9a{word-spacing:0.687120px;}
.ws9c{word-spacing:0.687408px;}
.ws88{word-spacing:0.688368px;}
.ws8e{word-spacing:0.688944px;}
.ws113{word-spacing:0.697421px;}
.ws104{word-spacing:0.717307px;}
.ws105{word-spacing:0.732242px;}
.ws147{word-spacing:0.750184px;}
.wsaa{word-spacing:0.777083px;}
.ws13c{word-spacing:0.836858px;}
.ws1e{word-spacing:0.860774px;}
.ws155{word-spacing:0.896634px;}
.ws1b8{word-spacing:0.968371px;}
.ws7{word-spacing:1.004227px;}
.ws29{word-spacing:1.016185px;}
.ws78{word-spacing:1.075961px;}
.ws79{word-spacing:1.135736px;}
.ws7a{word-spacing:1.138125px;}
.ws154{word-spacing:1.149889px;}
.ws20{word-spacing:1.183565px;}
.ws141{word-spacing:1.195512px;}
.ws6b{word-spacing:1.315063px;}
.wsa5{word-spacing:1.374839px;}
.ws1a5{word-spacing:1.398758px;}
.wsa4{word-spacing:1.434614px;}
.ws169{word-spacing:1.494390px;}
.wsfa{word-spacing:1.530259px;}
.ws16f{word-spacing:1.554166px;}
.wsfb{word-spacing:1.578080px;}
.ws6f{word-spacing:1.613941px;}
.ws195{word-spacing:1.667750px;}
.ws38{word-spacing:1.673717px;}
.ws6e{word-spacing:1.733492px;}
.ws71{word-spacing:1.793268px;}
.ws1a4{word-spacing:1.829146px;}
.ws47{word-spacing:1.853044px;}
.ws15a{word-spacing:1.912819px;}
.ws4b{word-spacing:1.972595px;}
.ws137{word-spacing:2.032370px;}
.ws196{word-spacing:2.044339px;}
.ws75{word-spacing:2.092146px;}
.ws14c{word-spacing:2.114595px;}
.ws74{word-spacing:2.151922px;}
.ws12f{word-spacing:2.208713px;}
.wsfd{word-spacing:2.211697px;}
.ws18{word-spacing:2.259533px;}
.ws139{word-spacing:2.271473px;}
.ws15e{word-spacing:2.331248px;}
.wsff{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws156{word-spacing:2.570351px;}
.ws17d{word-spacing:2.582323px;}
.ws1f{word-spacing:2.636122px;}
.wsc5{word-spacing:2.677954px;}
.wsa1{word-spacing:2.689902px;}
.ws19c{word-spacing:2.689920px;}
.wsc6{word-spacing:2.725774px;}
.ws34{word-spacing:2.809453px;}
.ws13{word-spacing:2.869236px;}
.ws107{word-spacing:2.905114px;}
.ws161{word-spacing:2.929004px;}
.ws77{word-spacing:2.988780px;}
.ws1ad{word-spacing:3.012710px;}
.ws130{word-spacing:3.048556px;}
.ws193{word-spacing:3.086193px;}
.ws180{word-spacing:3.120307px;}
.ws40{word-spacing:3.168107px;}
.ws1ab{word-spacing:3.174106px;}
.ws1b0{word-spacing:3.214080px;}
.ws26{word-spacing:3.219667px;}
.ws1ae{word-spacing:3.220157px;}
.ws1a9{word-spacing:3.220454px;}
.ws181{word-spacing:3.220810px;}
.ws1b2{word-spacing:3.220867px;}
.ws19b{word-spacing:3.222067px;}
.ws1a8{word-spacing:3.222451px;}
.ws183{word-spacing:3.223162px;}
.ws18f{word-spacing:3.223334px;}
.ws194{word-spacing:3.223459px;}
.ws184{word-spacing:3.224256px;}
.ws18e{word-spacing:3.224794px;}
.ws19e{word-spacing:3.225600px;}
.ws133{word-spacing:3.227882px;}
.ws106{word-spacing:3.227904px;}
.ws192{word-spacing:3.227933px;}
.ws182{word-spacing:3.230986px;}
.ws19a{word-spacing:3.281702px;}
.ws134{word-spacing:3.287658px;}
.ws1a{word-spacing:3.335501px;}
.ws7b{word-spacing:3.347434px;}
.ws188{word-spacing:3.443098px;}
.wsae{word-spacing:3.462454px;}
.ws157{word-spacing:3.466985px;}
.ws187{word-spacing:3.472518px;}
.ws189{word-spacing:3.496896px;}
.ws17c{word-spacing:3.550694px;}
.ws27{word-spacing:3.586536px;}
.ws132{word-spacing:3.646312px;}
.ws33{word-spacing:3.706087px;}
.ws68{word-spacing:3.825638px;}
.ws149{word-spacing:3.885414px;}
.ws12a{word-spacing:3.898973px;}
.ws10b{word-spacing:3.900710px;}
.ws14a{word-spacing:3.932242px;}
.ws14b{word-spacing:3.945190px;}
.ws18d{word-spacing:3.981082px;}
.ws6a{word-spacing:4.004965px;}
.ws100{word-spacing:4.064741px;}
.ws15f{word-spacing:4.124516px;}
.ws6d{word-spacing:4.184292px;}
.ws14e{word-spacing:4.303843px;}
.ws1b3{word-spacing:4.303872px;}
.ws14f{word-spacing:4.314595px;}
.ws16a{word-spacing:4.353048px;}
.ws13f{word-spacing:4.363619px;}
.ws199{word-spacing:4.411469px;}
.ws15c{word-spacing:4.423394px;}
.ws15b{word-spacing:4.473419px;}
.ws1a1{word-spacing:4.519066px;}
.ws16c{word-spacing:4.542946px;}
.ws3f{word-spacing:4.662497px;}
.wse{word-spacing:4.770079px;}
.ws72{word-spacing:4.782048px;}
.ws159{word-spacing:4.841824px;}
.ws1aa{word-spacing:4.841856px;}
.wsf{word-spacing:4.853765px;}
.ws2a{word-spacing:5.021150px;}
.ws163{word-spacing:5.140702px;}
.ws48{word-spacing:5.200477px;}
.wsfe{word-spacing:5.260253px;}
.ws4a{word-spacing:5.320028px;}
.ws15d{word-spacing:5.379804px;}
.ws170{word-spacing:5.499355px;}
.ws2b{word-spacing:5.559131px;}
.ws69{word-spacing:5.618906px;}
.ws1a3{word-spacing:5.702630px;}
.ws172{word-spacing:5.738458px;}
.ws166{word-spacing:5.858009px;}
.ws18c{word-spacing:6.133018px;}
.ws76{word-spacing:6.276438px;}
.ws60{word-spacing:6.395989px;}
.ws164{word-spacing:6.515540px;}
.ws165{word-spacing:6.555772px;}
.ws191{word-spacing:6.563405px;}
.ws190{word-spacing:6.579529px;}
.ws2e{word-spacing:6.635092px;}
.ws13a{word-spacing:6.694867px;}
.ws16e{word-spacing:6.754643px;}
.ws171{word-spacing:7.053521px;}
.ws15{word-spacing:7.316582px;}
.ws167{word-spacing:7.471950px;}
.ws1af{word-spacing:7.585574px;}
.ws14{word-spacing:7.693171px;}
.wsc{word-spacing:7.782761px;}
.wsa{word-spacing:12.176255px;}
.wsb{word-spacing:16.109478px;}
.ws1b4{word-spacing:16.677504px;}
.ws1a2{word-spacing:17.269286px;}
.wsd{word-spacing:26.109907px;}
.ws9{word-spacing:26.840252px;}
.ws120{word-spacing:70.216132px;}
.wsc2{word-spacing:104.728723px;}
.wsba{word-spacing:105.676723px;}
.wse8{word-spacing:112.882723px;}
.ws121{word-spacing:113.074132px;}
.wscf{word-spacing:113.884723px;}
.wsf8{word-spacing:125.146510px;}
.ws123{word-spacing:126.264845px;}
.wse0{word-spacing:126.334723px;}
.ws117{word-spacing:126.526132px;}
.wsf6{word-spacing:128.397197px;}
.wsd0{word-spacing:129.291197px;}
.ws10a{word-spacing:130.994784px;}
.ws11d{word-spacing:133.689024px;}
.wsf0{word-spacing:137.794723px;}
.wse7{word-spacing:139.342723px;}
.wsd4{word-spacing:139.588331px;}
.wsdb{word-spacing:139.636152px;}
.wsbb{word-spacing:141.880723px;}
.wsad{word-spacing:142.043864px;}
.wscb{word-spacing:142.051320px;}
.ws111{word-spacing:142.565760px;}
.wsda{word-spacing:149.258479px;}
.ws118{word-spacing:149.936141px;}
.ws128{word-spacing:149.989939px;}
.wsf1{word-spacing:150.207197px;}
.wsf4{word-spacing:150.238723px;}
.wsb2{word-spacing:150.395787px;}
.wsf9{word-spacing:153.832723px;}
.wsf5{word-spacing:153.838723px;}
.wsd8{word-spacing:154.077973px;}
.wsd1{word-spacing:154.125794px;}
.wsb4{word-spacing:154.795282px;}
.wsb3{word-spacing:164.885429px;}
.ws119{word-spacing:183.068554px;}
.wsec{word-spacing:188.225234px;}
.wseb{word-spacing:192.786968px;}
.wscd{word-spacing:217.852957px;}
.ws11f{word-spacing:220.159747px;}
.ws7f{word-spacing:312.353510px;}
.ws80{word-spacing:325.803110px;}
.ws85{word-spacing:328.654426px;}
.ws91{word-spacing:342.104026px;}
.wsaf{word-spacing:364.918999px;}
.wscc{word-spacing:386.486089px;}
.ws5c{word-spacing:568.702886px;}
.ws4d{word-spacing:576.557453px;}
.ws50{word-spacing:587.908915px;}
.ws53{word-spacing:598.345805px;}
.ws58{word-spacing:601.412314px;}
.ws51{word-spacing:616.798656px;}
.ws59{word-spacing:618.305011px;}
.ws4f{word-spacing:625.137408px;}
.ws5d{word-spacing:627.665933px;}
.ws5f{word-spacing:632.830579px;}
.ws5b{word-spacing:637.080653px;}
.ws56{word-spacing:644.451034px;}
.ws5a{word-spacing:644.827622px;}
.ws55{word-spacing:647.087155px;}
.ws54{word-spacing:653.435366px;}
.ws5e{word-spacing:661.020941px;}
.ws57{word-spacing:664.087450px;}
.ws52{word-spacing:664.679232px;}
.ws4e{word-spacing:677.268058px;}
.ws7d{word-spacing:681.232733px;}
.ws7c{word-spacing:815.791978px;}
.wsab{word-spacing:1083.960150px;}
.ws108{word-spacing:1112.559600px;}
.wsc9{word-spacing:1127.160150px;}
._79{margin-left:-393.804288px;}
._8a{margin-left:-25.559579px;}
._15{margin-left:-24.265964px;}
._16{margin-left:-20.915467px;}
._8b{margin-left:-18.845528px;}
._82{margin-left:-7.537115px;}
._9{margin-left:-6.515615px;}
._0{margin-left:-5.397721px;}
._8{margin-left:-4.309861px;}
._4{margin-left:-2.301354px;}
._1{margin-left:-1.004227px;}
._14{width:1.010192px;}
._3{width:2.301354px;}
._6{width:3.673264px;}
._88{width:4.799405px;}
._89{width:7.644712px;}
._a{width:11.094379px;}
._2{width:12.971268px;}
._25{width:14.286368px;}
._c{width:15.762931px;}
._b{width:16.928554px;}
._17{width:17.959284px;}
._13{width:19.213207px;}
._65{width:20.419396px;}
._18{width:21.519216px;}
._12{width:23.300526px;}
._19{width:24.705314px;}
._d{width:25.865053px;}
._84{width:27.280980px;}
._28{width:29.237843px;}
._5{width:30.587087px;}
._27{width:31.979946px;}
._85{width:33.037380px;}
._e{width:34.191643px;}
._26{width:36.104462px;}
._11{width:38.973691px;}
._86{width:40.228979px;}
._7{width:54.429634px;}
._8c{width:61.868160px;}
._87{width:88.767360px;}
._7f{width:121.130782px;}
._56{width:134.445980px;}
._55{width:135.644769px;}
._49{width:140.975129px;}
._54{width:142.648850px;}
._52{width:145.571872px;}
._58{width:147.000524px;}
._7a{width:149.096365px;}
._77{width:151.952999px;}
._7d{width:154.043489px;}
._53{width:158.812213px;}
._5b{width:159.845065px;}
._51{width:161.107601px;}
._76{width:162.159655px;}
._69{width:164.215940px;}
._6f{width:166.367867px;}
._81{width:167.958605px;}
._4b{width:170.335271px;}
._4a{width:171.486377px;}
._7c{width:174.791002px;}
._50{width:176.171090px;}
._59{width:178.705582px;}
._68{width:180.522765px;}
._4f{width:182.292668px;}
._4e{width:183.439280px;}
._5c{width:184.444527px;}
._48{width:189.895603px;}
._63{width:191.234038px;}
._5d{width:194.773304px;}
._61{width:201.850747px;}
._75{width:204.050500px;}
._7b{width:205.809455px;}
._6e{width:207.637045px;}
._4c{width:209.121190px;}
._71{width:212.419105px;}
._6c{width:214.571032px;}
._80{width:216.323366px;}
._6b{width:220.500787px;}
._6a{width:222.652714px;}
._5e{width:228.678109px;}
._74{width:229.825804px;}
._73{width:231.834269px;}
._5a{width:234.512222px;}
._67{width:246.276090px;}
._6d{width:247.943804px;}
._7e{width:249.570778px;}
._72{width:253.018795px;}
._70{width:263.921891px;}
._57{width:265.505978px;}
._3f{width:268.776806px;}
._4d{width:272.720882px;}
._60{width:281.998078px;}
._64{width:298.448365px;}
._5f{width:304.139016px;}
._37{width:319.024512px;}
._62{width:320.589302px;}
._2c{width:322.025245px;}
._39{width:323.758771px;}
._3d{width:334.357056px;}
._2b{width:335.390496px;}
._41{width:346.031309px;}
._40{width:348.866870px;}
._2d{width:351.034560px;}
._46{width:353.240294px;}
._2a{width:357.651763px;}
._43{width:361.202458px;}
._2e{width:362.320291px;}
._34{width:366.151910px;}
._33{width:368.626637px;}
._3a{width:375.566630px;}
._36{width:377.987558px;}
._35{width:382.183834px;}
._3e{width:386.989772px;}
._32{width:395.149248px;}
._3c{width:397.408781px;}
._44{width:399.399322px;}
._3b{width:402.788621px;}
._42{width:409.405824px;}
._31{width:410.685008px;}
._38{width:414.857344px;}
._30{width:429.580224px;}
._47{width:435.659443px;}
._45{width:438.510758px;}
._1b{width:445.827341px;}
._2f{width:454.488883px;}
._29{width:458.607888px;}
._22{width:490.468036px;}
._1c{width:558.254020px;}
._1a{width:562.354675px;}
._21{width:573.048580px;}
._1e{width:590.210269px;}
._1f{width:625.352602px;}
._1d{width:664.733030px;}
._20{width:691.578432px;}
._24{width:717.509261px;}
._23{width:718.531430px;}
._78{width:747.259776px;}
._66{width:761.064849px;}
._f{width:957.629547px;}
._83{width:2517.872700px;}
._10{width:2541.782700px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(31,69,121);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fsc{font-size:43.600200px;}
.fs4{font-size:45.429600px;}
.fs9{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fsb{font-size:49.829400px;}
.fs7{font-size:53.798400px;}
.fsa{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fs8{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y1c{bottom:15.759681px;}
.y48{bottom:31.890000px;}
.yb6{bottom:91.665000px;}
.y10b{bottom:94.953000px;}
.y47{bottom:103.621500px;}
.y1a{bottom:104.646000px;}
.y1af{bottom:105.339000px;}
.yd4{bottom:105.399000px;}
.y1be{bottom:107.193000px;}
.y1c9{bottom:107.641500px;}
.yb4{bottom:110.494500px;}
.y10a{bottom:113.782500px;}
.y1d9{bottom:114.366000px;}
.y210{bottom:114.634500px;}
.yb5{bottom:115.920000px;}
.y246{bottom:121.762500px;}
.y46{bottom:122.449500px;}
.y19{bottom:122.535000px;}
.y1ae{bottom:124.168500px;}
.yd3{bottom:124.228500px;}
.y7e{bottom:124.677000px;}
.y1bd{bottom:126.022500px;}
.y1c8{bottom:126.471000px;}
.yb3{bottom:129.324000px;}
.y20f{bottom:131.895000px;}
.y1d8{bottom:131.940000px;}
.y109{bottom:132.612000px;}
.y17a{bottom:135.289500px;}
.y245{bottom:139.023000px;}
.y18{bottom:140.422500px;}
.y45{bottom:141.279000px;}
.y1ad{bottom:142.998000px;}
.yd2{bottom:143.058000px;}
.y7d{bottom:143.506500px;}
.y1bc{bottom:144.852000px;}
.y1c7{bottom:145.300500px;}
.y20e{bottom:149.155500px;}
.y1d7{bottom:149.514000px;}
.y108{bottom:151.441500px;}
.yb2{bottom:152.637000px;}
.y179{bottom:154.119000px;}
.y244{bottom:156.283500px;}
.y17{bottom:158.310000px;}
.y44{bottom:160.108500px;}
.y1ac{bottom:161.827500px;}
.yd1{bottom:161.887500px;}
.y7c{bottom:162.336000px;}
.y1bb{bottom:163.681500px;}
.y1c6{bottom:164.130000px;}
.y20d{bottom:166.416000px;}
.y1d6{bottom:167.088000px;}
.y107{bottom:170.271000px;}
.y178{bottom:172.948500px;}
.y243{bottom:173.544000px;}
.y16{bottom:176.199000px;}
.y1ab{bottom:180.657000px;}
.yd0{bottom:180.717000px;}
.y7b{bottom:181.165500px;}
.y1ba{bottom:182.511000px;}
.y1c5{bottom:182.959500px;}
.y43{bottom:183.421500px;}
.y20c{bottom:183.676500px;}
.y1d5{bottom:184.662000px;}
.yb1{bottom:186.261000px;}
.y106{bottom:189.099000px;}
.y242{bottom:190.804500px;}
.y177{bottom:191.778000px;}
.y15{bottom:194.086500px;}
.y1aa{bottom:199.486500px;}
.ycf{bottom:199.546500px;}
.y7a{bottom:199.995000px;}
.y20b{bottom:200.937000px;}
.y1b9{bottom:201.340500px;}
.y1c4{bottom:201.789000px;}
.yb0{bottom:205.090500px;}
.y105{bottom:207.928500px;}
.y241{bottom:208.065000px;}
.y176{bottom:210.607500px;}
.y14{bottom:211.974000px;}
.y20a{bottom:218.197500px;}
.y1a9{bottom:218.316000px;}
.yce{bottom:218.376000px;}
.y79{bottom:218.824500px;}
.y1b8{bottom:220.170000px;}
.y1c3{bottom:220.618500px;}
.yae{bottom:223.920000px;}
.y240{bottom:225.325500px;}
.y104{bottom:226.758000px;}
.yaf{bottom:229.344000px;}
.y175{bottom:229.437000px;}
.y13{bottom:229.863000px;}
.y209{bottom:235.458000px;}
.y1a8{bottom:237.145500px;}
.ycd{bottom:237.205500px;}
.y78{bottom:237.654000px;}
.y1b7{bottom:238.999500px;}
.y1c2{bottom:239.446500px;}
.y13d{bottom:239.686500px;}
.y23f{bottom:242.586000px;}
.yad{bottom:242.749500px;}
.y103{bottom:245.587500px;}
.y208{bottom:252.718500px;}
.y174{bottom:252.750000px;}
.y13c{bottom:254.326500px;}
.y1a7{bottom:255.975000px;}
.ycc{bottom:256.035000px;}
.y77{bottom:256.483500px;}
.y1b6{bottom:257.829000px;}
.y1c1{bottom:258.276000px;}
.y42{bottom:258.571500px;}
.y23e{bottom:259.846500px;}
.yac{bottom:261.579000px;}
.y102{bottom:264.417000px;}
.y13b{bottom:268.048500px;}
.y207{bottom:269.977500px;}
.y1a6{bottom:274.804500px;}
.ycb{bottom:274.864500px;}
.y76{bottom:275.313000px;}
.y1d3{bottom:276.658500px;}
.y1c0{bottom:277.105500px;}
.yab{bottom:280.408500px;}
.y1b5{bottom:281.140500px;}
.y101{bottom:283.246500px;}
.y13a{bottom:283.609500px;}
.y173{bottom:286.374000px;}
.y206{bottom:287.238000px;}
.y1a5{bottom:293.634000px;}
.yca{bottom:293.694000px;}
.y75{bottom:294.142500px;}
.y23d{bottom:294.366000px;}
.y1d2{bottom:295.488000px;}
.y1bf{bottom:295.935000px;}
.y41{bottom:295.962000px;}
.y139{bottom:298.251000px;}
.yaa{bottom:299.238000px;}
.y12{bottom:300.154500px;}
.y100{bottom:302.076000px;}
.y205{bottom:304.498500px;}
.y172{bottom:305.203500px;}
.y23c{bottom:311.626500px;}
.y1a4{bottom:312.463500px;}
.yc9{bottom:312.523500px;}
.y74{bottom:312.972000px;}
.y138{bottom:313.336500px;}
.y1d1{bottom:314.317500px;}
.y1b4{bottom:314.764500px;}
.y40{bottom:315.418500px;}
.y11{bottom:318.043500px;}
.ya9{bottom:318.067500px;}
.y204{bottom:321.759000px;}
.y171{bottom:324.031500px;}
.yff{bottom:325.389000px;}
.y137{bottom:328.423500px;}
.y23b{bottom:328.887000px;}
.y1a3{bottom:331.293000px;}
.yc8{bottom:331.353000px;}
.y73{bottom:331.801500px;}
.y1d0{bottom:333.145500px;}
.y1b3{bottom:333.594000px;}
.y3f{bottom:334.875000px;}
.y10{bottom:335.931000px;}
.ya8{bottom:336.897000px;}
.y203{bottom:339.019500px;}
.y170{bottom:342.861000px;}
.y136{bottom:343.063500px;}
.y23a{bottom:346.147500px;}
.y1a2{bottom:350.122500px;}
.y1cf{bottom:351.975000px;}
.y1b2{bottom:352.423500px;}
.yf{bottom:353.818500px;}
.y3e{bottom:354.333000px;}
.yc7{bottom:354.666000px;}
.y72{bottom:355.114500px;}
.y202{bottom:356.280000px;}
.y135{bottom:357.261000px;}
.ya7{bottom:360.210000px;}
.y16f{bottom:361.690500px;}
.yfe{bottom:362.383500px;}
.y239{bottom:363.408000px;}
.y1a1{bottom:368.952000px;}
.y1ce{bottom:370.804500px;}
.y1b1{bottom:371.253000px;}
.y134{bottom:371.457000px;}
.y201{bottom:373.540500px;}
.y3d{bottom:373.789500px;}
.yc6{bottom:374.839500px;}
.y71{bottom:375.288000px;}
.yfd{bottom:375.660000px;}
.yfc{bottom:376.581000px;}
.y16e{bottom:380.520000px;}
.y238{bottom:380.668500px;}
.ye{bottom:380.673000px;}
.y133{bottom:385.654500px;}
.y1a0{bottom:387.781500px;}
.y1cd{bottom:389.634000px;}
.y1b0{bottom:390.082500px;}
.y200{bottom:390.801000px;}
.y3c{bottom:393.247500px;}
.yfb{bottom:395.424000px;}
.y237{bottom:397.929000px;}
.yd{bottom:398.562000px;}
.y16d{bottom:399.349500px;}
.ya6{bottom:400.024500px;}
.y132{bottom:400.296000px;}
.y19f{bottom:406.611000px;}
.y1ff{bottom:408.060000px;}
.yc5{bottom:408.463500px;}
.y70{bottom:408.912000px;}
.yfa{bottom:411.862500px;}
.y3b{bottom:412.704000px;}
.y1d4{bottom:412.947000px;}
.y131{bottom:414.937500px;}
.y236{bottom:415.188000px;}
.yc{bottom:416.449500px;}
.ya5{bottom:416.463000px;}
.y16c{bottom:418.179000px;}
.y1fe{bottom:425.320500px;}
.yc4{bottom:427.293000px;}
.y6f{bottom:427.741500px;}
.yf9{bottom:428.301000px;}
.y19e{bottom:429.922500px;}
.y3a{bottom:432.160500px;}
.y235{bottom:432.448500px;}
.ya4{bottom:432.901500px;}
.y130{bottom:436.336500px;}
.y16b{bottom:437.008500px;}
.y1fd{bottom:442.581000px;}
.yf8{bottom:444.739500px;}
.yb{bottom:444.798000px;}
.y12f{bottom:445.624500px;}
.yc3{bottom:446.122500px;}
.y6e{bottom:446.571000px;}
.ya3{bottom:449.340000px;}
.y234{bottom:449.709000px;}
.y19d{bottom:450.097500px;}
.y39{bottom:451.618500px;}
.y16a{bottom:455.838000px;}
.y12e{bottom:457.735500px;}
.y12c{bottom:458.607000px;}
.y1fc{bottom:459.841500px;}
.yf7{bottom:461.178000px;}
.ya{bottom:462.685500px;}
.yc2{bottom:464.952000px;}
.y6d{bottom:465.400500px;}
.ya2{bottom:465.778500px;}
.y233{bottom:466.969500px;}
.y38{bottom:471.075000px;}
.y169{bottom:474.667500px;}
.y1fb{bottom:477.102000px;}
.yf6{bottom:477.616500px;}
.y12d{bottom:479.134500px;}
.ya1{bottom:482.217000px;}
.y19c{bottom:483.721500px;}
.yc1{bottom:483.781500px;}
.y6c{bottom:484.230000px;}
.y9{bottom:489.540000px;}
.y37{bottom:490.533000px;}
.y168{bottom:493.497000px;}
.yf5{bottom:494.055000px;}
.y1fa{bottom:494.362500px;}
.ya0{bottom:498.655500px;}
.y232{bottom:501.490500px;}
.y19b{bottom:502.551000px;}
.yc0{bottom:502.611000px;}
.y6b{bottom:503.059500px;}
.y8{bottom:507.429000px;}
.y36{bottom:509.989500px;}
.yf4{bottom:510.493500px;}
.y1f9{bottom:511.623000px;}
.y12b{bottom:512.173500px;}
.y167{bottom:512.326500px;}
.y9f{bottom:515.092500px;}
.y231{bottom:518.751000px;}
.y19a{bottom:521.380500px;}
.ybf{bottom:521.440500px;}
.y6a{bottom:521.889000px;}
.y7{bottom:525.316500px;}
.yf3{bottom:526.932000px;}
.y1f8{bottom:528.883500px;}
.y35{bottom:529.446000px;}
.y166{bottom:531.156000px;}
.y12a{bottom:531.406500px;}
.y9e{bottom:531.531000px;}
.y230{bottom:536.011500px;}
.y199{bottom:540.210000px;}
.ybe{bottom:540.270000px;}
.y69{bottom:540.718500px;}
.y6{bottom:543.204000px;}
.yf2{bottom:543.370500px;}
.y1f7{bottom:546.144000px;}
.y9d{bottom:547.969500px;}
.y34{bottom:548.904000px;}
.y22f{bottom:553.272000px;}
.yf1{bottom:558.772500px;}
.y198{bottom:559.039500px;}
.ybd{bottom:559.099500px;}
.y68{bottom:559.548000px;}
.y5{bottom:561.093000px;}
.y1f6{bottom:563.403000px;}
.y9c{bottom:564.408000px;}
.y22e{bottom:570.531000px;}
.y165{bottom:571.218000px;}
.yf0{bottom:575.211000px;}
.y197{bottom:577.869000px;}
.ybc{bottom:577.929000px;}
.y67{bottom:578.377500px;}
.y4{bottom:578.980500px;}
.y1f5{bottom:580.663500px;}
.y9b{bottom:580.846500px;}
.y164{bottom:584.494500px;}
.y163{bottom:585.414000px;}
.y129{bottom:585.600000px;}
.y33{bottom:586.293000px;}
.y22d{bottom:587.791500px;}
.yef{bottom:592.684500px;}
.ybb{bottom:596.758500px;}
.y3{bottom:596.868000px;}
.y66{bottom:597.207000px;}
.y9a{bottom:597.285000px;}
.y1f4{bottom:597.924000px;}
.y161{bottom:599.611500px;}
.y128{bottom:599.797500px;}
.y162{bottom:603.951000px;}
.y22c{bottom:605.052000px;}
.y32{bottom:605.751000px;}
.yee{bottom:609.123000px;}
.y99{bottom:613.723500px;}
.y126{bottom:613.993500px;}
.y2{bottom:614.757000px;}
.y1f3{bottom:615.184500px;}
.yba{bottom:615.588000px;}
.y65{bottom:616.036500px;}
.y127{bottom:618.333000px;}
.y22b{bottom:622.312500px;}
.y160{bottom:622.473000px;}
.y31{bottom:625.207500px;}
.yed{bottom:625.561500px;}
.y196{bottom:628.953000px;}
.y98{bottom:630.162000px;}
.y1f2{bottom:632.445000px;}
.y1{bottom:632.644500px;}
.y1cc{bottom:634.417500px;}
.y64{bottom:634.866000px;}
.y125{bottom:637.332000px;}
.y15e{bottom:637.558500px;}
.y15f{bottom:638.479500px;}
.yb9{bottom:638.901000px;}
.y22a{bottom:639.573000px;}
.yec{bottom:642.000000px;}
.y194{bottom:643.150500px;}
.y30{bottom:644.664000px;}
.y97{bottom:646.600500px;}
.y195{bottom:647.490000px;}
.y1f1{bottom:649.705500px;}
.y124{bottom:651.528000px;}
.y1cb{bottom:653.247000px;}
.y15d{bottom:653.565000px;}
.y63{bottom:653.695500px;}
.y229{bottom:656.833500px;}
.yeb{bottom:658.438500px;}
.y96{bottom:663.039000px;}
.y2f{bottom:664.122000px;}
.y123{bottom:665.725500px;}
.y1f0{bottom:666.966000px;}
.y193{bottom:667.159500px;}
.y15c{bottom:668.206500px;}
.y62{bottom:672.525000px;}
.y228{bottom:674.094000px;}
.yea{bottom:674.877000px;}
.y1ca{bottom:676.560000px;}
.y95{bottom:679.476000px;}
.y122{bottom:679.921500px;}
.y15b{bottom:682.848000px;}
.y2e{bottom:683.578500px;}
.y192{bottom:683.598000px;}
.y1ef{bottom:684.226500px;}
.ye9{bottom:691.315500px;}
.y61{bottom:691.354500px;}
.y121{bottom:694.117500px;}
.y94{bottom:695.914500px;}
.y15a{bottom:697.489500px;}
.y191{bottom:700.036500px;}
.y1ee{bottom:701.485500px;}
.y2d{bottom:703.035000px;}
.ye8{bottom:706.717500px;}
.y120{bottom:708.315000px;}
.y227{bottom:708.613500px;}
.y60{bottom:710.184000px;}
.y159{bottom:712.131000px;}
.y93{bottom:712.353000px;}
.y190{bottom:716.475000px;}
.y1ed{bottom:718.746000px;}
.y2c{bottom:722.493000px;}
.y11f{bottom:722.956500px;}
.ye7{bottom:724.192500px;}
.y226{bottom:725.874000px;}
.y158{bottom:727.216500px;}
.y92{bottom:728.791500px;}
.y5f{bottom:729.013500px;}
.y18f{bottom:732.913500px;}
.y1ec{bottom:736.006500px;}
.y11e{bottom:738.042000px;}
.ye6{bottom:740.629500px;}
.y2b{bottom:741.949500px;}
.y157{bottom:742.302000px;}
.y225{bottom:743.134500px;}
.y91{bottom:745.230000px;}
.y5e{bottom:747.843000px;}
.y18e{bottom:749.352000px;}
.y11d{bottom:752.683500px;}
.y1eb{bottom:753.267000px;}
.y156{bottom:756.468000px;}
.ye5{bottom:757.068000px;}
.y224{bottom:760.395000px;}
.y2a{bottom:761.407500px;}
.y90{bottom:761.668500px;}
.y18d{bottom:765.790500px;}
.y5d{bottom:766.671000px;}
.y11c{bottom:767.325000px;}
.y1ea{bottom:770.527500px;}
.y155{bottom:772.029000px;}
.ye4{bottom:773.506500px;}
.y223{bottom:777.655500px;}
.y29{bottom:780.864000px;}
.y11b{bottom:781.966500px;}
.y18c{bottom:782.229000px;}
.y8f{bottom:785.308500px;}
.y5c{bottom:785.500500px;}
.y154{bottom:786.670500px;}
.y1e9{bottom:787.788000px;}
.ye3{bottom:789.945000px;}
.y222{bottom:794.916000px;}
.y11a{bottom:796.162500px;}
.y18b{bottom:798.666000px;}
.y28{bottom:800.320500px;}
.y153{bottom:801.756000px;}
.y5b{bottom:804.330000px;}
.y1e7{bottom:805.048500px;}
.ye2{bottom:806.383500px;}
.y8e{bottom:808.950000px;}
.y1e8{bottom:809.931000px;}
.y119{bottom:810.360000px;}
.y221{bottom:812.176500px;}
.y18a{bottom:815.104500px;}
.y152{bottom:816.843000px;}
.y1e6{bottom:822.309000px;}
.ye1{bottom:822.822000px;}
.y5a{bottom:823.159500px;}
.y118{bottom:824.556000px;}
.y220{bottom:829.437000px;}
.y189{bottom:831.543000px;}
.y151{bottom:831.928500px;}
.y117{bottom:838.753500px;}
.y27{bottom:838.770000px;}
.ye0{bottom:839.260500px;}
.y1e5{bottom:839.569500px;}
.y8d{bottom:840.570000px;}
.y59{bottom:841.989000px;}
.y21f{bottom:846.697500px;}
.y150{bottom:847.014000px;}
.y188{bottom:847.981500px;}
.y116{bottom:852.949500px;}
.y26{bottom:854.910000px;}
.ydf{bottom:855.699000px;}
.y1e4{bottom:856.828500px;}
.y58{bottom:860.818500px;}
.y14f{bottom:861.655500px;}
.y21e{bottom:863.956500px;}
.y187{bottom:864.892500px;}
.y115{bottom:867.147000px;}
.y25{bottom:871.050000px;}
.yde{bottom:872.137500px;}
.y1e3{bottom:874.089000px;}
.y8c{bottom:875.164500px;}
.y14e{bottom:876.297000px;}
.y57{bottom:879.648000px;}
.y21d{bottom:881.217000px;}
.y114{bottom:881.343000px;}
.y186{bottom:881.802000px;}
.ydd{bottom:888.576000px;}
.y1e2{bottom:891.349500px;}
.y14d{bottom:891.382500px;}
.y24{bottom:891.528000px;}
.y8b{bottom:893.994000px;}
.y113{bottom:895.540500px;}
.y185{bottom:898.240500px;}
.y56{bottom:898.477500px;}
.y23{bottom:903.328500px;}
.ydc{bottom:905.013000px;}
.y14c{bottom:906.024000px;}
.y8a{bottom:912.823500px;}
.y1e1{bottom:913.093500px;}
.y184{bottom:915.150000px;}
.y21c{bottom:915.738000px;}
.y112{bottom:916.939500px;}
.y55{bottom:917.307000px;}
.y14b{bottom:919.744500px;}
.ydb{bottom:921.451500px;}
.y22{bottom:923.808000px;}
.y111{bottom:926.227500px;}
.y89{bottom:931.653000px;}
.y183{bottom:932.532000px;}
.y21b{bottom:932.998500px;}
.y149{bottom:934.830000px;}
.y14a{bottom:935.751000px;}
.y54{bottom:936.136500px;}
.yda{bottom:937.890000px;}
.y110{bottom:938.338500px;}
.y10e{bottom:939.210000px;}
.y1e0{bottom:946.717500px;}
.y182{bottom:949.443000px;}
.y21a{bottom:950.259000px;}
.y88{bottom:950.482500px;}
.y148{bottom:950.836500px;}
.yd9{bottom:954.328500px;}
.y53{bottom:954.966000px;}
.y10f{bottom:959.737500px;}
.y147{bottom:965.478000px;}
.y181{bottom:965.881500px;}
.y219{bottom:967.519500px;}
.y21{bottom:968.347500px;}
.y86{bottom:969.312000px;}
.yd8{bottom:970.767000px;}
.y1df{bottom:973.258500px;}
.y52{bottom:973.795500px;}
.y87{bottom:974.737500px;}
.y146{bottom:980.119500px;}
.y180{bottom:982.320000px;}
.y218{bottom:984.780000px;}
.y85{bottom:988.141500px;}
.y51{bottom:992.625000px;}
.y10d{bottom:992.776500px;}
.yd7{bottom:994.408500px;}
.y145{bottom:994.761000px;}
.y1de{bottom:999.798000px;}
.y216{bottom:1002.039000px;}
.y217{bottom:1002.040500px;}
.yd6{bottom:1004.949000px;}
.y17f{bottom:1005.960000px;}
.y83{bottom:1006.971000px;}
.y20{bottom:1008.267000px;}
.y144{bottom:1009.401000px;}
.y50{bottom:1011.454500px;}
.y10c{bottom:1012.009500px;}
.y84{bottom:1012.396500px;}
.yb8{bottom:1016.878500px;}
.y215{bottom:1019.299500px;}
.y82{bottom:1025.800500px;}
.y1dd{bottom:1026.339000px;}
.y17e{bottom:1029.601500px;}
.y4f{bottom:1030.284000px;}
.y17c{bottom:1030.429500px;}
.y143{bottom:1031.245500px;}
.y1f{bottom:1036.512000px;}
.y214{bottom:1036.560000px;}
.y142{bottom:1040.533500px;}
.y1dc{bottom:1043.913000px;}
.y81{bottom:1044.630000px;}
.y4e{bottom:1049.113500px;}
.yd5{bottom:1049.668500px;}
.y141{bottom:1052.644500px;}
.y17d{bottom:1053.241500px;}
.y13f{bottom:1053.516000px;}
.y213{bottom:1053.820500px;}
.yb7{bottom:1054.537500px;}
.y1db{bottom:1061.487000px;}
.y80{bottom:1063.459500px;}
.y1e{bottom:1064.755500px;}
.y4d{bottom:1067.943000px;}
.y212{bottom:1071.081000px;}
.y140{bottom:1074.043500px;}
.y7f{bottom:1082.289000px;}
.y4c{bottom:1084.042500px;}
.y4b{bottom:1086.772500px;}
.y17b{bottom:1087.849500px;}
.y1da{bottom:1088.028000px;}
.y211{bottom:1088.341500px;}
.y1d{bottom:1093.000500px;}
.y4a{bottom:1105.602000px;}
.y13e{bottom:1107.082500px;}
.y1b{bottom:1136.487000px;}
.y49{bottom:1168.366500px;}
.h11{height:27.974981px;}
.h21{height:29.037733px;}
.h10{height:31.526842px;}
.h8{height:32.565965px;}
.h15{height:33.186380px;}
.h17{height:34.574294px;}
.h1a{height:35.052500px;}
.h18{height:36.356294px;}
.h16{height:37.156606px;}
.h22{height:37.334628px;}
.h23{height:37.605082px;}
.h2{height:37.993262px;}
.ha{height:38.896243px;}
.h1d{height:39.434227px;}
.he{height:41.250077px;}
.hf{height:41.482876px;}
.h20{height:41.783144px;}
.hc{height:43.217759px;}
.h9{height:43.421105px;}
.h5{height:43.815515px;}
.hb{height:48.848947px;}
.h19{height:49.923965px;}
.h1b{height:49.929965px;}
.h3{height:51.025140px;}
.h14{height:52.988947px;}
.h13{height:52.994947px;}
.h1c{height:53.607965px;}
.hd{height:54.276245px;}
.h7{height:54.547601px;}
.h1f{height:57.517262px;}
.h1e{height:57.523262px;}
.h6{height:77.792486px;}
.h12{height:91.294243px;}
.h4{height:102.503837px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:192.761640px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x2{left:58.056593px;}
.x78{left:62.691000px;}
.x83{left:68.164500px;}
.x66{left:70.152000px;}
.x69{left:73.123500px;}
.x68{left:75.406500px;}
.x87{left:76.785000px;}
.x84{left:79.791000px;}
.x76{left:82.923000px;}
.x77{left:85.230000px;}
.x6b{left:86.394000px;}
.x85{left:87.471000px;}
.x75{left:88.762500px;}
.x6d{left:90.583500px;}
.x74{left:92.575500px;}
.x6c{left:95.037000px;}
.x73{left:96.168000px;}
.x86{left:98.344500px;}
.x88{left:99.642000px;}
.x67{left:101.595000px;}
.x7a{left:103.575000px;}
.x6a{left:105.576000px;}
.x63{left:111.612000px;}
.x6e{left:113.568000px;}
.x79{left:194.734500px;}
.x82{left:215.620500px;}
.x72{left:221.767500px;}
.x65{left:237.967500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x80{left:254.158500px;}
.x4{left:269.914500px;}
.x81{left:271.201500px;}
.x5e{left:273.106500px;}
.x49{left:277.326000px;}
.x8{left:281.479500px;}
.x4a{left:284.131500px;}
.xb3{left:285.280500px;}
.x5d{left:286.845000px;}
.x56{left:289.386000px;}
.xba{left:290.686500px;}
.x57{left:293.502000px;}
.x5f{left:295.720500px;}
.x5c{left:297.033000px;}
.x55{left:298.512000px;}
.x34{left:299.709000px;}
.x5a{left:301.255500px;}
.x5b{left:303.603000px;}
.x3c{left:305.842500px;}
.x7{left:308.131500px;}
.xd{left:310.245000px;}
.x59{left:311.934000px;}
.x3d{left:313.831500px;}
.x35{left:315.744000px;}
.xe{left:317.716500px;}
.x3e{left:319.581000px;}
.x43{left:321.342000px;}
.x3f{left:322.788000px;}
.x92{left:323.811000px;}
.x42{left:324.906000px;}
.x41{left:326.493000px;}
.xa2{left:328.245000px;}
.x40{left:329.311500px;}
.xaf{left:331.840500px;}
.x3b{left:333.615000px;}
.x20{left:335.443500px;}
.x6f{left:338.073000px;}
.xd5{left:339.609000px;}
.xbb{left:343.140000px;}
.x93{left:346.002000px;}
.xcb{left:347.460000px;}
.x60{left:349.185000px;}
.x21{left:350.388000px;}
.x70{left:351.643500px;}
.x4f{left:355.452000px;}
.x37{left:356.998500px;}
.x36{left:358.869000px;}
.x94{left:360.946500px;}
.x9{left:364.453500px;}
.x7f{left:367.257000px;}
.x6{left:370.131000px;}
.xa{left:371.925000px;}
.xd3{left:373.504500px;}
.xb{left:375.736500px;}
.xd8{left:382.078500px;}
.xc{left:383.208000px;}
.x54{left:385.428000px;}
.xf{left:387.952500px;}
.xdd{left:390.685500px;}
.x8b{left:397.822500px;}
.x44{left:400.935000px;}
.xcc{left:404.823000px;}
.x96{left:407.751000px;}
.x58{left:412.596000px;}
.x38{left:415.098000px;}
.x22{left:419.514000px;}
.x39{left:421.905000px;}
.x23{left:426.985500px;}
.xe4{left:430.044000px;}
.x2b{left:435.136500px;}
.x97{left:441.349500px;}
.x8f{left:443.962500px;}
.xc2{left:445.362000px;}
.xb4{left:447.591000px;}
.x2c{left:451.171500px;}
.xc8{left:454.887000px;}
.x90{left:458.907000px;}
.x53{left:460.536000px;}
.x91{left:462.631500px;}
.xbe{left:466.114500px;}
.x18{left:471.016500px;}
.x19{left:478.488000px;}
.xbf{left:481.059000px;}
.x1a{left:482.227500px;}
.x31{left:485.830500px;}
.xb5{left:491.356500px;}
.xde{left:493.546500px;}
.x32{left:495.444000px;}
.x1b{left:497.172000px;}
.x61{left:501.091500px;}
.xcd{left:503.376000px;}
.x7b{left:504.483000px;}
.xb6{left:506.301000px;}
.x71{left:507.705000px;}
.x62{left:510.411000px;}
.xa0{left:511.423500px;}
.xce{left:514.659000px;}
.xa1{left:518.896500px;}
.x3a{left:520.716000px;}
.x7c{left:523.137000px;}
.xb7{left:524.917500px;}
.xbc{left:529.525500px;}
.x26{left:541.570500px;}
.xbd{left:544.470000px;}
.xcf{left:553.582500px;}
.x27{left:556.513500px;}
.x8e{left:561.505500px;}
.xd0{left:568.527000px;}
.xab{left:569.941500px;}
.xc0{left:573.589500px;}
.x4d{left:575.526000px;}
.xac{left:577.413000px;}
.xc1{left:581.059500px;}
.xad{left:582.124500px;}
.x95{left:583.126500px;}
.x4e{left:590.470500px;}
.x45{left:591.640500px;}
.xae{left:597.069000px;}
.x46{left:598.447500px;}
.x47{left:605.532000px;}
.xb0{left:607.501500px;}
.x48{left:612.337500px;}
.xb1{left:614.973000px;}
.xd9{left:619.813500px;}
.x89{left:620.845500px;}
.xda{left:623.623500px;}
.xca{left:628.261500px;}
.x64{left:632.434500px;}
.x8a{left:635.788500px;}
.xdb{left:638.568000px;}
.xd6{left:646.101000px;}
.xd4{left:650.313000px;}
.x98{left:654.096000px;}
.xc6{left:656.247000px;}
.xd7{left:661.045500px;}
.xc7{left:663.718500px;}
.xe3{left:664.813500px;}
.xd1{left:666.076500px;}
.x9a{left:667.482000px;}
.x99{left:669.040500px;}
.xd2{left:681.019500px;}
.x9b{left:682.426500px;}
.x33{left:683.482500px;}
.x24{left:686.388000px;}
.x8c{left:688.638000px;}
.x2d{left:692.334000px;}
.x9d{left:697.659000px;}
.x25{left:701.331000px;}
.x8d{left:703.582500px;}
.xdf{left:705.054000px;}
.x7d{left:707.388000px;}
.xb8{left:709.933500px;}
.x9e{left:712.603500px;}
.xe0{left:714.727500px;}
.x7e{left:716.707500px;}
.x51{left:718.534500px;}
.xb9{left:724.878000px;}
.xa3{left:725.953500px;}
.x1c{left:728.307000px;}
.x52{left:733.477500px;}
.x1d{left:735.780000px;}
.xe1{left:738.492000px;}
.x9c{left:742.933500px;}
.x28{left:744.556500px;}
.x2f{left:747.166500px;}
.xc9{left:748.678500px;}
.xaa{left:750.442500px;}
.xc3{left:758.139000px;}
.x29{left:759.499500px;}
.x30{left:762.109500px;}
.xb2{left:764.118000px;}
.xc4{left:765.610500px;}
.x2a{left:766.860000px;}
.x50{left:768.667500px;}
.xa4{left:774.423000px;}
.x9f{left:778.140000px;}
.x14{left:782.136000px;}
.xc5{left:784.365000px;}
.x15{left:789.607500px;}
.x16{left:793.317000px;}
.x4b{left:797.341500px;}
.x17{left:800.790000px;}
.x4c{left:804.147000px;}
.xdc{left:806.415000px;}
.x10{left:807.558000px;}
.xe2{left:810.360000px;}
.xa6{left:812.040000px;}
.x11{left:813.984000px;}
.xa7{left:815.431500px;}
.x1e{left:817.273500px;}
.xa8{left:819.093000px;}
.xa5{left:823.155000px;}
.x12{left:830.616000px;}
.x1f{left:832.216500px;}
.xa9{left:834.036000px;}
.x2e{left:835.377000px;}
.x13{left:837.042000px;}
@media print{
.vc{vertical-align:-47.280000pt;}
.vd{vertical-align:-45.498667pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-9.706667pt;}
.v8{vertical-align:-1.584000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.584000pt;}
.v6{vertical-align:3.685333pt;}
.v5{vertical-align:4.965333pt;}
.va{vertical-align:13.850667pt;}
.v9{vertical-align:15.434667pt;}
.vb{vertical-align:17.013333pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:46.576000pt;}
.lse{letter-spacing:0.000000pt;}
.ls89{letter-spacing:0.000008pt;}
.ls8f{letter-spacing:0.000185pt;}
.ls8e{letter-spacing:0.000361pt;}
.ls8a{letter-spacing:0.000441pt;}
.ls1b{letter-spacing:0.000540pt;}
.ls7c{letter-spacing:0.000621pt;}
.ls7e{letter-spacing:0.000711pt;}
.ls7b{letter-spacing:0.000801pt;}
.ls7f{letter-spacing:0.000980pt;}
.ls7a{letter-spacing:0.001026pt;}
.ls80{letter-spacing:0.001288pt;}
.ls92{letter-spacing:0.001512pt;}
.ls75{letter-spacing:0.002038pt;}
.ls81{letter-spacing:0.002078pt;}
.ls82{letter-spacing:0.002262pt;}
.ls84{letter-spacing:0.002525pt;}
.ls87{letter-spacing:0.002603pt;}
.ls79{letter-spacing:0.002879pt;}
.ls39{letter-spacing:0.003330pt;}
.ls21{letter-spacing:0.003635pt;}
.ls1{letter-spacing:0.003733pt;}
.ls83{letter-spacing:0.004267pt;}
.ls71{letter-spacing:0.004306pt;}
.ls13{letter-spacing:0.637762pt;}
.lsf{letter-spacing:2.657067pt;}
.ls14{letter-spacing:3.158400pt;}
.ls0{letter-spacing:9.298933pt;}
.ls6c{letter-spacing:10.497383pt;}
.ls38{letter-spacing:10.623733pt;}
.lsd{letter-spacing:10.626533pt;}
.ls26{letter-spacing:10.884311pt;}
.ls31{letter-spacing:11.133060pt;}
.ls30{letter-spacing:11.138393pt;}
.ls42{letter-spacing:11.156978pt;}
.ls4f{letter-spacing:11.162311pt;}
.ls85{letter-spacing:11.527793pt;}
.ls8{letter-spacing:11.801165pt;}
.lsb{letter-spacing:11.877117pt;}
.ls9{letter-spacing:11.917051pt;}
.ls8c{letter-spacing:11.953801pt;}
.ls74{letter-spacing:11.954133pt;}
.lsc{letter-spacing:11.956267pt;}
.ls76{letter-spacing:11.959467pt;}
.ls86{letter-spacing:11.980800pt;}
.ls7d{letter-spacing:12.069067pt;}
.lsa{letter-spacing:12.070668pt;}
.ls78{letter-spacing:12.099001pt;}
.ls8b{letter-spacing:12.106941pt;}
.ls77{letter-spacing:12.115548pt;}
.ls23{letter-spacing:12.528078pt;}
.ls22{letter-spacing:12.533411pt;}
.ls25{letter-spacing:12.548113pt;}
.ls24{letter-spacing:12.553446pt;}
.ls1f{letter-spacing:12.975924pt;}
.ls60{letter-spacing:13.011739pt;}
.ls70{letter-spacing:13.014019pt;}
.ls5d{letter-spacing:13.016154pt;}
.ls2e{letter-spacing:13.027440pt;}
.ls15{letter-spacing:13.042375pt;}
.ls10{letter-spacing:13.166439pt;}
.ls59{letter-spacing:13.169040pt;}
.ls6e{letter-spacing:13.173807pt;}
.ls6f{letter-spacing:13.210844pt;}
.ls2b{letter-spacing:13.241067pt;}
.ls57{letter-spacing:13.241450pt;}
.ls1c{letter-spacing:13.260518pt;}
.ls6d{letter-spacing:13.281219pt;}
.ls2{letter-spacing:13.282422pt;}
.ls4{letter-spacing:13.283733pt;}
.ls27{letter-spacing:13.288488pt;}
.ls5e{letter-spacing:13.344446pt;}
.ls61{letter-spacing:13.344802pt;}
.ls2c{letter-spacing:13.356876pt;}
.ls2d{letter-spacing:13.384582pt;}
.ls1e{letter-spacing:13.384777pt;}
.ls72{letter-spacing:13.411518pt;}
.ls28{letter-spacing:13.525584pt;}
.ls5c{letter-spacing:13.555142pt;}
.ls5f{letter-spacing:13.601774pt;}
.ls20{letter-spacing:13.657903pt;}
.ls11{letter-spacing:13.715086pt;}
.ls62{letter-spacing:13.908884pt;}
.ls12{letter-spacing:13.923096pt;}
.ls73{letter-spacing:13.946133pt;}
.ls2f{letter-spacing:13.971629pt;}
.ls1a{letter-spacing:14.269668pt;}
.ls19{letter-spacing:14.274897pt;}
.ls29{letter-spacing:14.510191pt;}
.ls2a{letter-spacing:14.515420pt;}
.ls5b{letter-spacing:14.823916pt;}
.ls88{letter-spacing:15.019963pt;}
.ls17{letter-spacing:15.174243pt;}
.ls58{letter-spacing:15.257903pt;}
.ls5a{letter-spacing:15.519341pt;}
.ls91{letter-spacing:15.796790pt;}
.ls90{letter-spacing:15.802018pt;}
.ls18{letter-spacing:15.921956pt;}
.ls5{letter-spacing:15.942400pt;}
.ls1d{letter-spacing:16.282740pt;}
.ls8d{letter-spacing:17.043493pt;}
.ls16{letter-spacing:17.527184pt;}
.ls3{letter-spacing:51.035733pt;}
.ls6{letter-spacing:55.787733pt;}
.ls7{letter-spacing:57.174803pt;}
.ls6b{letter-spacing:86.645867pt;}
.ls6a{letter-spacing:100.589273pt;}
.ls32{letter-spacing:101.063398pt;}
.ls33{letter-spacing:101.910400pt;}
.ls67{letter-spacing:109.565273pt;}
.ls47{letter-spacing:120.263398pt;}
.ls46{letter-spacing:121.105067pt;}
.ls50{letter-spacing:121.110400pt;}
.ls56{letter-spacing:122.890377pt;}
.ls66{letter-spacing:123.517273pt;}
.ls65{letter-spacing:124.501867pt;}
.ls68{letter-spacing:124.503939pt;}
.ls40{letter-spacing:132.220732pt;}
.ls4a{letter-spacing:133.062400pt;}
.ls3e{letter-spacing:133.063398pt;}
.ls3d{letter-spacing:133.067733pt;}
.ls49{letter-spacing:133.159398pt;}
.ls3c{letter-spacing:133.905067pt;}
.ls51{letter-spacing:133.910400pt;}
.ls4b{letter-spacing:133.959398pt;}
.ls52{letter-spacing:134.799710pt;}
.ls36{letter-spacing:135.115733pt;}
.ls4c{letter-spacing:135.695710pt;}
.ls69{letter-spacing:135.714606pt;}
.ls34{letter-spacing:135.958400pt;}
.ls35{letter-spacing:135.963733pt;}
.ls4e{letter-spacing:141.522065pt;}
.ls55{letter-spacing:142.363733pt;}
.ls3a{letter-spacing:145.429043pt;}
.ls53{letter-spacing:146.039398pt;}
.ls3f{letter-spacing:146.886400pt;}
.ls41{letter-spacing:147.676732pt;}
.ls4d{letter-spacing:147.781043pt;}
.ls54{letter-spacing:153.395661pt;}
.ls44{letter-spacing:154.315733pt;}
.ls45{letter-spacing:154.322065pt;}
.ls43{letter-spacing:155.163733pt;}
.ls37{letter-spacing:156.668732pt;}
.ls3b{letter-spacing:157.510400pt;}
.ls48{letter-spacing:157.515733pt;}
.ls64{letter-spacing:350.048256pt;}
.ls63{letter-spacing:375.045274pt;}
.ws10c{word-spacing:-362.003456pt;}
.ws30{word-spacing:-13.283467pt;}
.ws21{word-spacing:-11.955200pt;}
.ws2d{word-spacing:-10.626800pt;}
.ws10{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws160{word-spacing:-2.816095pt;}
.ws179{word-spacing:-2.337890pt;}
.ws150{word-spacing:-2.284756pt;}
.ws1b{word-spacing:-2.199757pt;}
.ws36{word-spacing:-2.178489pt;}
.ws173{word-spacing:-2.125355pt;}
.ws174{word-spacing:-2.072221pt;}
.ws31{word-spacing:-1.912819pt;}
.wsfc{word-spacing:-1.859685pt;}
.ws148{word-spacing:-1.753418pt;}
.ws49{word-spacing:-1.700284pt;}
.ws4c{word-spacing:-1.594016pt;}
.ws61{word-spacing:-1.487748pt;}
.ws151{word-spacing:-1.328347pt;}
.ws64{word-spacing:-1.278011pt;}
.ws65{word-spacing:-1.275213pt;}
.ws63{word-spacing:-1.256470pt;}
.ws158{word-spacing:-1.168945pt;}
.ws6{word-spacing:-1.041421pt;}
.ws162{word-spacing:-1.009543pt;}
.ws8{word-spacing:-0.929840pt;}
.ws1d{word-spacing:-0.908595pt;}
.wsc7{word-spacing:-0.765133pt;}
.ws138{word-spacing:-0.743874pt;}
.ws2{word-spacing:-0.706678pt;}
.ws3a{word-spacing:-0.690740pt;}
.ws178{word-spacing:-0.637606pt;}
.ws198{word-spacing:-0.621670pt;}
.ws3c{word-spacing:-0.584473pt;}
.ws175{word-spacing:-0.531339pt;}
.wsc8{word-spacing:-0.526029pt;}
.ws19{word-spacing:-0.478208pt;}
.ws197{word-spacing:-0.430387pt;}
.ws176{word-spacing:-0.371937pt;}
.wse6{word-spacing:-0.340058pt;}
.ws19d{word-spacing:-0.334746pt;}
.ws46{word-spacing:-0.318803pt;}
.ws1b1{word-spacing:-0.286925pt;}
.ws44{word-spacing:-0.279811pt;}
.ws42{word-spacing:-0.265669pt;}
.ws17a{word-spacing:-0.239104pt;}
.ws3{word-spacing:-0.223162pt;}
.ws70{word-spacing:-0.212535pt;}
.ws18b{word-spacing:-0.191283pt;}
.ws3b{word-spacing:-0.159402pt;}
.ws22{word-spacing:-0.143462pt;}
.ws12e{word-spacing:-0.127522pt;}
.ws17f{word-spacing:-0.122369pt;}
.ws146{word-spacing:-0.118690pt;}
.ws37{word-spacing:-0.106268pt;}
.ws25{word-spacing:-0.095642pt;}
.ws177{word-spacing:-0.086373pt;}
.ws142{word-spacing:-0.077840pt;}
.ws131{word-spacing:-0.076492pt;}
.ws28{word-spacing:-0.053134pt;}
.ws1c{word-spacing:-0.047821pt;}
.ws11{word-spacing:-0.042507pt;}
.ws136{word-spacing:-0.034414pt;}
.ws143{word-spacing:-0.023358pt;}
.ws3d{word-spacing:-0.022604pt;}
.ws3e{word-spacing:-0.021374pt;}
.ws45{word-spacing:-0.015980pt;}
.ws43{word-spacing:-0.014897pt;}
.ws13b{word-spacing:-0.009222pt;}
.ws1b6{word-spacing:-0.008013pt;}
.wsa2{word-spacing:-0.006969pt;}
.ws66{word-spacing:-0.005213pt;}
.ws1a6{word-spacing:-0.004898pt;}
.ws1a0{word-spacing:-0.004548pt;}
.ws17e{word-spacing:-0.004523pt;}
.ws116{word-spacing:-0.004267pt;}
.wsc0{word-spacing:-0.001333pt;}
.wsa6{word-spacing:-0.001194pt;}
.wsb5{word-spacing:-0.001173pt;}
.ws1b7{word-spacing:-0.001169pt;}
.ws185{word-spacing:-0.001126pt;}
.wsb9{word-spacing:-0.001067pt;}
.ws4{word-spacing:-0.001019pt;}
.ws19f{word-spacing:-0.000401pt;}
.ws1{word-spacing:0.000000pt;}
.ws103{word-spacing:0.000121pt;}
.ws114{word-spacing:0.001067pt;}
.ws2c{word-spacing:0.002563pt;}
.wsc1{word-spacing:0.004000pt;}
.wsbd{word-spacing:0.004267pt;}
.ws145{word-spacing:0.018202pt;}
.ws13e{word-spacing:0.032121pt;}
.ws168{word-spacing:0.033889pt;}
.ws17b{word-spacing:0.047821pt;}
.ws2f{word-spacing:0.053134pt;}
.ws73{word-spacing:0.062271pt;}
.ws102{word-spacing:0.087806pt;}
.ws23{word-spacing:0.095642pt;}
.ws32{word-spacing:0.106268pt;}
.ws13d{word-spacing:0.108456pt;}
.ws186{word-spacing:0.116178pt;}
.ws135{word-spacing:0.135667pt;}
.ws17{word-spacing:0.143462pt;}
.ws35{word-spacing:0.159402pt;}
.ws152{word-spacing:0.186848pt;}
.ws24{word-spacing:0.191283pt;}
.ws12{word-spacing:0.212536pt;}
.wsa3{word-spacing:0.213146pt;}
.ws153{word-spacing:0.213976pt;}
.ws14d{word-spacing:0.228184pt;}
.ws16{word-spacing:0.239104pt;}
.wsa9{word-spacing:0.243039pt;}
.wsa0{word-spacing:0.255043pt;}
.ws16d{word-spacing:0.257612pt;}
.ws41{word-spacing:0.265669pt;}
.ws101{word-spacing:0.278288pt;}
.ws144{word-spacing:0.284099pt;}
.ws18a{word-spacing:0.286925pt;}
.ws6c{word-spacing:0.318803pt;}
.ws1b5{word-spacing:0.334746pt;}
.wsa7{word-spacing:0.368529pt;}
.ws62{word-spacing:0.371937pt;}
.ws1ac{word-spacing:0.382566pt;}
.ws39{word-spacing:0.425071pt;}
.wsa8{word-spacing:0.478205pt;}
.ws67{word-spacing:0.505333pt;}
.wsb1{word-spacing:0.509134pt;}
.wsb6{word-spacing:0.511009pt;}
.wsdf{word-spacing:0.512051pt;}
.wse5{word-spacing:0.512832pt;}
.wsca{word-spacing:0.514182pt;}
.wsb0{word-spacing:0.514467pt;}
.wse3{word-spacing:0.515171pt;}
.wse1{word-spacing:0.515648pt;}
.wsb7{word-spacing:0.517001pt;}
.wsf3{word-spacing:0.517385pt;}
.wse4{word-spacing:0.524349pt;}
.wsd6{word-spacing:0.526315pt;}
.wsce{word-spacing:0.526933pt;}
.wsde{word-spacing:0.528389pt;}
.wsd2{word-spacing:0.528566pt;}
.wsf7{word-spacing:0.529682pt;}
.wsc3{word-spacing:0.531153pt;}
.ws16b{word-spacing:0.531339pt;}
.wsb8{word-spacing:0.532000pt;}
.wsbe{word-spacing:0.532267pt;}
.wsdc{word-spacing:0.533954pt;}
.wsed{word-spacing:0.534021pt;}
.wsd9{word-spacing:0.535246pt;}
.wsea{word-spacing:0.535458pt;}
.wsc4{word-spacing:0.535919pt;}
.wsf2{word-spacing:0.537533pt;}
.wse9{word-spacing:0.537709pt;}
.wsee{word-spacing:0.539287pt;}
.wsbc{word-spacing:0.540297pt;}
.wsac{word-spacing:0.540691pt;}
.wsd3{word-spacing:0.543720pt;}
.wsbf{word-spacing:0.545063pt;}
.wsdd{word-spacing:0.545255pt;}
.wsd7{word-spacing:0.548127pt;}
.wsd5{word-spacing:0.548516pt;}
.wsef{word-spacing:0.550589pt;}
.wse2{word-spacing:0.551051pt;}
.ws1a7{word-spacing:0.573850pt;}
.ws7e{word-spacing:0.575249pt;}
.ws125{word-spacing:0.577289pt;}
.ws11e{word-spacing:0.578022pt;}
.ws96{word-spacing:0.578449pt;}
.ws83{word-spacing:0.580582pt;}
.ws126{word-spacing:0.580958pt;}
.ws112{word-spacing:0.581948pt;}
.ws10d{word-spacing:0.582622pt;}
.ws127{word-spacing:0.583100pt;}
.ws8d{word-spacing:0.583313pt;}
.ws12c{word-spacing:0.583356pt;}
.ws8f{word-spacing:0.583492pt;}
.ws9e{word-spacing:0.583629pt;}
.ws9d{word-spacing:0.584371pt;}
.ws140{word-spacing:0.584473pt;}
.ws89{word-spacing:0.585327pt;}
.ws82{word-spacing:0.585344pt;}
.ws87{word-spacing:0.585711pt;}
.ws93{word-spacing:0.585839pt;}
.ws92{word-spacing:0.586027pt;}
.ws9f{word-spacing:0.586428pt;}
.ws81{word-spacing:0.586641pt;}
.ws95{word-spacing:0.587170pt;}
.ws84{word-spacing:0.587426pt;}
.ws90{word-spacing:0.588194pt;}
.ws9b{word-spacing:0.589116pt;}
.ws11a{word-spacing:0.593067pt;}
.ws109{word-spacing:0.593186pt;}
.ws12b{word-spacing:0.594287pt;}
.ws110{word-spacing:0.595396pt;}
.ws10f{word-spacing:0.597530pt;}
.ws115{word-spacing:0.598400pt;}
.ws10e{word-spacing:0.598596pt;}
.ws11c{word-spacing:0.600730pt;}
.ws122{word-spacing:0.603776pt;}
.ws11b{word-spacing:0.603930pt;}
.ws98{word-spacing:0.606421pt;}
.ws124{word-spacing:0.606575pt;}
.ws12d{word-spacing:0.606652pt;}
.ws8b{word-spacing:0.606754pt;}
.ws8a{word-spacing:0.607684pt;}
.ws99{word-spacing:0.608631pt;}
.ws8c{word-spacing:0.609033pt;}
.ws86{word-spacing:0.609186pt;}
.ws129{word-spacing:0.609263pt;}
.ws97{word-spacing:0.610295pt;}
.ws94{word-spacing:0.610441pt;}
.ws9a{word-spacing:0.610773pt;}
.ws9c{word-spacing:0.611029pt;}
.ws88{word-spacing:0.611883pt;}
.ws8e{word-spacing:0.612395pt;}
.ws113{word-spacing:0.619930pt;}
.ws104{word-spacing:0.637606pt;}
.ws105{word-spacing:0.650882pt;}
.ws147{word-spacing:0.666830pt;}
.wsaa{word-spacing:0.690740pt;}
.ws13c{word-spacing:0.743874pt;}
.ws1e{word-spacing:0.765133pt;}
.ws155{word-spacing:0.797008pt;}
.ws1b8{word-spacing:0.860774pt;}
.ws7{word-spacing:0.892646pt;}
.ws29{word-spacing:0.903276pt;}
.ws78{word-spacing:0.956410pt;}
.ws79{word-spacing:1.009543pt;}
.ws7a{word-spacing:1.011666pt;}
.ws154{word-spacing:1.022124pt;}
.ws20{word-spacing:1.052058pt;}
.ws141{word-spacing:1.062677pt;}
.ws6b{word-spacing:1.168945pt;}
.wsa5{word-spacing:1.222079pt;}
.ws1a5{word-spacing:1.243341pt;}
.wsa4{word-spacing:1.275213pt;}
.ws169{word-spacing:1.328347pt;}
.wsfa{word-spacing:1.360230pt;}
.ws16f{word-spacing:1.381481pt;}
.wsfb{word-spacing:1.402738pt;}
.ws6f{word-spacing:1.434614pt;}
.ws195{word-spacing:1.482445pt;}
.ws38{word-spacing:1.487748pt;}
.ws6e{word-spacing:1.540882pt;}
.ws71{word-spacing:1.594016pt;}
.ws1a4{word-spacing:1.625907pt;}
.ws47{word-spacing:1.647150pt;}
.ws15a{word-spacing:1.700284pt;}
.ws4b{word-spacing:1.753418pt;}
.ws137{word-spacing:1.806551pt;}
.ws196{word-spacing:1.817190pt;}
.ws75{word-spacing:1.859685pt;}
.ws14c{word-spacing:1.879640pt;}
.ws74{word-spacing:1.912819pt;}
.ws12f{word-spacing:1.963300pt;}
.wsfd{word-spacing:1.965953pt;}
.ws18{word-spacing:2.008474pt;}
.ws139{word-spacing:2.019087pt;}
.ws15e{word-spacing:2.072221pt;}
.wsff{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws156{word-spacing:2.284756pt;}
.ws17d{word-spacing:2.295398pt;}
.ws1f{word-spacing:2.343219pt;}
.wsc5{word-spacing:2.380403pt;}
.wsa1{word-spacing:2.391024pt;}
.ws19c{word-spacing:2.391040pt;}
.wsc6{word-spacing:2.422910pt;}
.ws34{word-spacing:2.497292pt;}
.ws13{word-spacing:2.550432pt;}
.ws107{word-spacing:2.582323pt;}
.ws161{word-spacing:2.603559pt;}
.ws77{word-spacing:2.656693pt;}
.ws1ad{word-spacing:2.677965pt;}
.ws130{word-spacing:2.709827pt;}
.ws193{word-spacing:2.743282pt;}
.ws180{word-spacing:2.773606pt;}
.ws40{word-spacing:2.816095pt;}
.ws1ab{word-spacing:2.821427pt;}
.ws1b0{word-spacing:2.856960pt;}
.ws26{word-spacing:2.861926pt;}
.ws1ae{word-spacing:2.862362pt;}
.ws1a9{word-spacing:2.862626pt;}
.ws181{word-spacing:2.862942pt;}
.ws1b2{word-spacing:2.862993pt;}
.ws19b{word-spacing:2.864060pt;}
.ws1a8{word-spacing:2.864401pt;}
.ws183{word-spacing:2.865033pt;}
.ws18f{word-spacing:2.865186pt;}
.ws194{word-spacing:2.865297pt;}
.ws184{word-spacing:2.866005pt;}
.ws18e{word-spacing:2.866483pt;}
.ws19e{word-spacing:2.867200pt;}
.ws133{word-spacing:2.869229pt;}
.ws106{word-spacing:2.869248pt;}
.ws192{word-spacing:2.869274pt;}
.ws182{word-spacing:2.871987pt;}
.ws19a{word-spacing:2.917069pt;}
.ws134{word-spacing:2.922363pt;}
.ws1a{word-spacing:2.964890pt;}
.ws7b{word-spacing:2.975497pt;}
.ws188{word-spacing:3.060531pt;}
.wsae{word-spacing:3.077737pt;}
.ws157{word-spacing:3.081764pt;}
.ws187{word-spacing:3.086683pt;}
.ws189{word-spacing:3.108352pt;}
.ws17c{word-spacing:3.156173pt;}
.ws27{word-spacing:3.188032pt;}
.ws132{word-spacing:3.241166pt;}
.ws33{word-spacing:3.294300pt;}
.ws68{word-spacing:3.400567pt;}
.ws149{word-spacing:3.453701pt;}
.ws12a{word-spacing:3.465754pt;}
.ws10b{word-spacing:3.467298pt;}
.ws14a{word-spacing:3.495327pt;}
.ws14b{word-spacing:3.506835pt;}
.ws18d{word-spacing:3.538739pt;}
.ws6a{word-spacing:3.559969pt;}
.ws100{word-spacing:3.613103pt;}
.ws15f{word-spacing:3.666237pt;}
.ws6d{word-spacing:3.719371pt;}
.ws14e{word-spacing:3.825638pt;}
.ws1b3{word-spacing:3.825664pt;}
.ws14f{word-spacing:3.835196pt;}
.ws16a{word-spacing:3.869376pt;}
.ws13f{word-spacing:3.878772pt;}
.ws199{word-spacing:3.921306pt;}
.ws15c{word-spacing:3.931906pt;}
.ws15b{word-spacing:3.976372pt;}
.ws1a1{word-spacing:4.016947pt;}
.ws16c{word-spacing:4.038174pt;}
.ws3f{word-spacing:4.144442pt;}
.wse{word-spacing:4.240070pt;}
.ws72{word-spacing:4.250709pt;}
.ws159{word-spacing:4.303843pt;}
.ws1aa{word-spacing:4.303872pt;}
.wsf{word-spacing:4.314458pt;}
.ws2a{word-spacing:4.463245pt;}
.ws163{word-spacing:4.569513pt;}
.ws48{word-spacing:4.622646pt;}
.wsfe{word-spacing:4.675780pt;}
.ws4a{word-spacing:4.728914pt;}
.ws15d{word-spacing:4.782048pt;}
.ws170{word-spacing:4.888316pt;}
.ws2b{word-spacing:4.941450pt;}
.ws69{word-spacing:4.994583pt;}
.ws1a3{word-spacing:5.069005pt;}
.ws172{word-spacing:5.100851pt;}
.ws166{word-spacing:5.207119pt;}
.ws18c{word-spacing:5.451571pt;}
.ws76{word-spacing:5.579056pt;}
.ws60{word-spacing:5.685324pt;}
.ws164{word-spacing:5.791591pt;}
.ws165{word-spacing:5.827353pt;}
.ws191{word-spacing:5.834138pt;}
.ws190{word-spacing:5.848470pt;}
.ws2e{word-spacing:5.897859pt;}
.ws13a{word-spacing:5.950993pt;}
.ws16e{word-spacing:6.004127pt;}
.ws171{word-spacing:6.269796pt;}
.ws15{word-spacing:6.503629pt;}
.ws167{word-spacing:6.641733pt;}
.ws1af{word-spacing:6.742733pt;}
.ws14{word-spacing:6.838374pt;}
.wsc{word-spacing:6.918010pt;}
.wsa{word-spacing:10.823338pt;}
.wsb{word-spacing:14.319536pt;}
.ws1b4{word-spacing:14.824448pt;}
.ws1a2{word-spacing:15.350477pt;}
.wsd{word-spacing:23.208806pt;}
.ws9{word-spacing:23.858002pt;}
.ws120{word-spacing:62.414339pt;}
.wsc2{word-spacing:93.092198pt;}
.wsba{word-spacing:93.934865pt;}
.wse8{word-spacing:100.340198pt;}
.ws121{word-spacing:100.510339pt;}
.wscf{word-spacing:101.230865pt;}
.wsf8{word-spacing:111.241342pt;}
.ws123{word-spacing:112.235418pt;}
.wse0{word-spacing:112.297532pt;}
.ws117{word-spacing:112.467673pt;}
.wsf6{word-spacing:114.130842pt;}
.wsd0{word-spacing:114.925508pt;}
.ws10a{word-spacing:116.439808pt;}
.ws11d{word-spacing:118.834688pt;}
.wsf0{word-spacing:122.484198pt;}
.wse7{word-spacing:123.860198pt;}
.wsd4{word-spacing:124.078517pt;}
.wsdb{word-spacing:124.121024pt;}
.wsbb{word-spacing:126.116198pt;}
.wsad{word-spacing:126.261213pt;}
.wscb{word-spacing:126.267840pt;}
.ws111{word-spacing:126.725120pt;}
.wsda{word-spacing:132.674203pt;}
.ws118{word-spacing:133.276570pt;}
.ws128{word-spacing:133.324390pt;}
.wsf1{word-spacing:133.517508pt;}
.wsf4{word-spacing:133.545532pt;}
.wsb2{word-spacing:133.685144pt;}
.wsf9{word-spacing:136.740198pt;}
.wsf5{word-spacing:136.745532pt;}
.wsd8{word-spacing:136.958198pt;}
.wsd1{word-spacing:137.000706pt;}
.wsb4{word-spacing:137.595806pt;}
.wsb3{word-spacing:146.564826pt;}
.ws119{word-spacing:162.727603pt;}
.wsec{word-spacing:167.311319pt;}
.wseb{word-spacing:171.366194pt;}
.wscd{word-spacing:193.647073pt;}
.ws11f{word-spacing:195.697553pt;}
.ws7f{word-spacing:277.647565pt;}
.ws80{word-spacing:289.602765pt;}
.ws85{word-spacing:292.137267pt;}
.ws91{word-spacing:304.092467pt;}
.wsaf{word-spacing:324.372443pt;}
.wscc{word-spacing:343.543190pt;}
.ws5c{word-spacing:505.513677pt;}
.ws4d{word-spacing:512.495514pt;}
.ws50{word-spacing:522.585702pt;}
.ws53{word-spacing:531.862938pt;}
.ws58{word-spacing:534.588723pt;}
.ws51{word-spacing:548.265472pt;}
.ws59{word-spacing:549.604454pt;}
.ws4f{word-spacing:555.677696pt;}
.ws5d{word-spacing:557.925274pt;}
.ws5f{word-spacing:562.516070pt;}
.ws5b{word-spacing:566.293914pt;}
.ws56{word-spacing:572.845363pt;}
.ws5a{word-spacing:573.180109pt;}
.ws55{word-spacing:575.188582pt;}
.ws54{word-spacing:580.831437pt;}
.ws5e{word-spacing:587.574170pt;}
.ws57{word-spacing:590.299955pt;}
.ws52{word-spacing:590.825984pt;}
.ws4e{word-spacing:602.016051pt;}
.ws7d{word-spacing:605.540207pt;}
.ws7c{word-spacing:725.148425pt;}
.wsab{word-spacing:963.520133pt;}
.ws108{word-spacing:988.941867pt;}
.wsc9{word-spacing:1001.920133pt;}
._79{margin-left:-350.048256pt;}
._8a{margin-left:-22.719626pt;}
._15{margin-left:-21.569746pt;}
._16{margin-left:-18.591526pt;}
._8b{margin-left:-16.751581pt;}
._82{margin-left:-6.699658pt;}
._9{margin-left:-5.791658pt;}
._0{margin-left:-4.797974pt;}
._8{margin-left:-3.830987pt;}
._4{margin-left:-2.045648pt;}
._1{margin-left:-0.892646pt;}
._14{width:0.897949pt;}
._3{width:2.045648pt;}
._6{width:3.265123pt;}
._88{width:4.266138pt;}
._89{width:6.795300pt;}
._a{width:9.861670pt;}
._2{width:11.530016pt;}
._25{width:12.698994pt;}
._c{width:14.011494pt;}
._b{width:15.047603pt;}
._17{width:15.963808pt;}
._13{width:17.078406pt;}
._65{width:18.150574pt;}
._18{width:19.128192pt;}
._12{width:20.711579pt;}
._19{width:21.960279pt;}
._d{width:22.991158pt;}
._84{width:24.249760pt;}
._28{width:25.989194pt;}
._5{width:27.188522pt;}
._27{width:28.426619pt;}
._85{width:29.366560pt;}
._e{width:30.392572pt;}
._26{width:32.092855pt;}
._11{width:34.643281pt;}
._86{width:35.759092pt;}
._7{width:48.381897pt;}
._8c{width:54.993920pt;}
._87{width:78.904320pt;}
._7f{width:107.671806pt;}
._56{width:119.507538pt;}
._55{width:120.573128pt;}
._49{width:125.311226pt;}
._54{width:126.798978pt;}
._52{width:129.397219pt;}
._58{width:130.667133pt;}
._7a{width:132.530102pt;}
._77{width:135.069332pt;}
._7d{width:136.927546pt;}
._53{width:141.166411pt;}
._5b{width:142.084502pt;}
._51{width:143.206757pt;}
._76{width:144.141915pt;}
._69{width:145.969725pt;}
._6f{width:147.882549pt;}
._81{width:149.296538pt;}
._4b{width:151.409130pt;}
._4a{width:152.432335pt;}
._7c{width:155.369779pt;}
._50{width:156.596525pt;}
._59{width:158.849406pt;}
._68{width:160.464680pt;}
._4f{width:162.037927pt;}
._4e{width:163.057138pt;}
._5c{width:163.950691pt;}
._48{width:168.796091pt;}
._63{width:169.985812pt;}
._5d{width:173.131826pt;}
._61{width:179.422886pt;}
._75{width:181.378222pt;}
._7b{width:182.941738pt;}
._6e{width:184.566262pt;}
._4c{width:185.885502pt;}
._71{width:188.816982pt;}
._6c{width:190.729806pt;}
._80{width:192.287437pt;}
._6b{width:196.000699pt;}
._6a{width:197.913523pt;}
._5e{width:203.269430pt;}
._74{width:204.289603pt;}
._73{width:206.074906pt;}
._5a{width:208.455309pt;}
._67{width:218.912080pt;}
._6d{width:220.394493pt;}
._7e{width:221.840691pt;}
._72{width:224.905595pt;}
._70{width:234.597237pt;}
._57{width:236.005314pt;}
._3f{width:238.912717pt;}
._4d{width:242.418562pt;}
._60{width:250.664958pt;}
._64{width:265.287435pt;}
._5f{width:270.345792pt;}
._37{width:283.577344pt;}
._62{width:284.968269pt;}
._2c{width:286.244662pt;}
._39{width:287.785574pt;}
._3d{width:297.206272pt;}
._2b{width:298.124885pt;}
._41{width:307.583386pt;}
._40{width:310.103885pt;}
._2d{width:312.030720pt;}
._46{width:313.991373pt;}
._2a{width:317.912678pt;}
._43{width:321.068851pt;}
._2e{width:322.062481pt;}
._34{width:325.468365pt;}
._33{width:327.668122pt;}
._3a{width:333.837005pt;}
._36{width:335.988941pt;}
._35{width:339.718963pt;}
._3e{width:343.990909pt;}
._32{width:351.243776pt;}
._3c{width:353.252250pt;}
._44{width:355.021619pt;}
._3b{width:358.034330pt;}
._42{width:363.916288pt;}
._31{width:365.053341pt;}
._38{width:368.762083pt;}
._30{width:381.849088pt;}
._47{width:387.252838pt;}
._45{width:389.787341pt;}
._1b{width:396.290970pt;}
._2f{width:403.990118pt;}
._29{width:407.651456pt;}
._22{width:435.971587pt;}
._1c{width:496.225795pt;}
._1a{width:499.870822pt;}
._21{width:509.376515pt;}
._1e{width:524.631350pt;}
._1f{width:555.868979pt;}
._1d{width:590.873805pt;}
._20{width:614.736384pt;}
._24{width:637.786010pt;}
._23{width:638.694605pt;}
._78{width:664.230912pt;}
._66{width:676.502088pt;}
._f{width:851.226264pt;}
._83{width:2238.109067pt;}
._10{width:2259.362400pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fsc{font-size:38.755733pt;}
.fs4{font-size:40.381867pt;}
.fs9{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fsb{font-size:44.292800pt;}
.fs7{font-size:47.820800pt;}
.fsa{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fs8{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:14.008606pt;}
.y48{bottom:28.346667pt;}
.yb6{bottom:81.480000pt;}
.y10b{bottom:84.402667pt;}
.y47{bottom:92.108000pt;}
.y1a{bottom:93.018667pt;}
.y1af{bottom:93.634667pt;}
.yd4{bottom:93.688000pt;}
.y1be{bottom:95.282667pt;}
.y1c9{bottom:95.681333pt;}
.yb4{bottom:98.217333pt;}
.y10a{bottom:101.140000pt;}
.y1d9{bottom:101.658667pt;}
.y210{bottom:101.897333pt;}
.yb5{bottom:103.040000pt;}
.y246{bottom:108.233333pt;}
.y46{bottom:108.844000pt;}
.y19{bottom:108.920000pt;}
.y1ae{bottom:110.372000pt;}
.yd3{bottom:110.425333pt;}
.y7e{bottom:110.824000pt;}
.y1bd{bottom:112.020000pt;}
.y1c8{bottom:112.418667pt;}
.yb3{bottom:114.954667pt;}
.y20f{bottom:117.240000pt;}
.y1d8{bottom:117.280000pt;}
.y109{bottom:117.877333pt;}
.y17a{bottom:120.257333pt;}
.y245{bottom:123.576000pt;}
.y18{bottom:124.820000pt;}
.y45{bottom:125.581333pt;}
.y1ad{bottom:127.109333pt;}
.yd2{bottom:127.162667pt;}
.y7d{bottom:127.561333pt;}
.y1bc{bottom:128.757333pt;}
.y1c7{bottom:129.156000pt;}
.y20e{bottom:132.582667pt;}
.y1d7{bottom:132.901333pt;}
.y108{bottom:134.614667pt;}
.yb2{bottom:135.677333pt;}
.y179{bottom:136.994667pt;}
.y244{bottom:138.918667pt;}
.y17{bottom:140.720000pt;}
.y44{bottom:142.318667pt;}
.y1ac{bottom:143.846667pt;}
.yd1{bottom:143.900000pt;}
.y7c{bottom:144.298667pt;}
.y1bb{bottom:145.494667pt;}
.y1c6{bottom:145.893333pt;}
.y20d{bottom:147.925333pt;}
.y1d6{bottom:148.522667pt;}
.y107{bottom:151.352000pt;}
.y178{bottom:153.732000pt;}
.y243{bottom:154.261333pt;}
.y16{bottom:156.621333pt;}
.y1ab{bottom:160.584000pt;}
.yd0{bottom:160.637333pt;}
.y7b{bottom:161.036000pt;}
.y1ba{bottom:162.232000pt;}
.y1c5{bottom:162.630667pt;}
.y43{bottom:163.041333pt;}
.y20c{bottom:163.268000pt;}
.y1d5{bottom:164.144000pt;}
.yb1{bottom:165.565333pt;}
.y106{bottom:168.088000pt;}
.y242{bottom:169.604000pt;}
.y177{bottom:170.469333pt;}
.y15{bottom:172.521333pt;}
.y1aa{bottom:177.321333pt;}
.ycf{bottom:177.374667pt;}
.y7a{bottom:177.773333pt;}
.y20b{bottom:178.610667pt;}
.y1b9{bottom:178.969333pt;}
.y1c4{bottom:179.368000pt;}
.yb0{bottom:182.302667pt;}
.y105{bottom:184.825333pt;}
.y241{bottom:184.946667pt;}
.y176{bottom:187.206667pt;}
.y14{bottom:188.421333pt;}
.y20a{bottom:193.953333pt;}
.y1a9{bottom:194.058667pt;}
.yce{bottom:194.112000pt;}
.y79{bottom:194.510667pt;}
.y1b8{bottom:195.706667pt;}
.y1c3{bottom:196.105333pt;}
.yae{bottom:199.040000pt;}
.y240{bottom:200.289333pt;}
.y104{bottom:201.562667pt;}
.yaf{bottom:203.861333pt;}
.y175{bottom:203.944000pt;}
.y13{bottom:204.322667pt;}
.y209{bottom:209.296000pt;}
.y1a8{bottom:210.796000pt;}
.ycd{bottom:210.849333pt;}
.y78{bottom:211.248000pt;}
.y1b7{bottom:212.444000pt;}
.y1c2{bottom:212.841333pt;}
.y13d{bottom:213.054667pt;}
.y23f{bottom:215.632000pt;}
.yad{bottom:215.777333pt;}
.y103{bottom:218.300000pt;}
.y208{bottom:224.638667pt;}
.y174{bottom:224.666667pt;}
.y13c{bottom:226.068000pt;}
.y1a7{bottom:227.533333pt;}
.ycc{bottom:227.586667pt;}
.y77{bottom:227.985333pt;}
.y1b6{bottom:229.181333pt;}
.y1c1{bottom:229.578667pt;}
.y42{bottom:229.841333pt;}
.y23e{bottom:230.974667pt;}
.yac{bottom:232.514667pt;}
.y102{bottom:235.037333pt;}
.y13b{bottom:238.265333pt;}
.y207{bottom:239.980000pt;}
.y1a6{bottom:244.270667pt;}
.ycb{bottom:244.324000pt;}
.y76{bottom:244.722667pt;}
.y1d3{bottom:245.918667pt;}
.y1c0{bottom:246.316000pt;}
.yab{bottom:249.252000pt;}
.y1b5{bottom:249.902667pt;}
.y101{bottom:251.774667pt;}
.y13a{bottom:252.097333pt;}
.y173{bottom:254.554667pt;}
.y206{bottom:255.322667pt;}
.y1a5{bottom:261.008000pt;}
.yca{bottom:261.061333pt;}
.y75{bottom:261.460000pt;}
.y23d{bottom:261.658667pt;}
.y1d2{bottom:262.656000pt;}
.y1bf{bottom:263.053333pt;}
.y41{bottom:263.077333pt;}
.y139{bottom:265.112000pt;}
.yaa{bottom:265.989333pt;}
.y12{bottom:266.804000pt;}
.y100{bottom:268.512000pt;}
.y205{bottom:270.665333pt;}
.y172{bottom:271.292000pt;}
.y23c{bottom:277.001333pt;}
.y1a4{bottom:277.745333pt;}
.yc9{bottom:277.798667pt;}
.y74{bottom:278.197333pt;}
.y138{bottom:278.521333pt;}
.y1d1{bottom:279.393333pt;}
.y1b4{bottom:279.790667pt;}
.y40{bottom:280.372000pt;}
.y11{bottom:282.705333pt;}
.ya9{bottom:282.726667pt;}
.y204{bottom:286.008000pt;}
.y171{bottom:288.028000pt;}
.yff{bottom:289.234667pt;}
.y137{bottom:291.932000pt;}
.y23b{bottom:292.344000pt;}
.y1a3{bottom:294.482667pt;}
.yc8{bottom:294.536000pt;}
.y73{bottom:294.934667pt;}
.y1d0{bottom:296.129333pt;}
.y1b3{bottom:296.528000pt;}
.y3f{bottom:297.666667pt;}
.y10{bottom:298.605333pt;}
.ya8{bottom:299.464000pt;}
.y203{bottom:301.350667pt;}
.y170{bottom:304.765333pt;}
.y136{bottom:304.945333pt;}
.y23a{bottom:307.686667pt;}
.y1a2{bottom:311.220000pt;}
.y1cf{bottom:312.866667pt;}
.y1b2{bottom:313.265333pt;}
.yf{bottom:314.505333pt;}
.y3e{bottom:314.962667pt;}
.yc7{bottom:315.258667pt;}
.y72{bottom:315.657333pt;}
.y202{bottom:316.693333pt;}
.y135{bottom:317.565333pt;}
.ya7{bottom:320.186667pt;}
.y16f{bottom:321.502667pt;}
.yfe{bottom:322.118667pt;}
.y239{bottom:323.029333pt;}
.y1a1{bottom:327.957333pt;}
.y1ce{bottom:329.604000pt;}
.y1b1{bottom:330.002667pt;}
.y134{bottom:330.184000pt;}
.y201{bottom:332.036000pt;}
.y3d{bottom:332.257333pt;}
.yc6{bottom:333.190667pt;}
.y71{bottom:333.589333pt;}
.yfd{bottom:333.920000pt;}
.yfc{bottom:334.738667pt;}
.y16e{bottom:338.240000pt;}
.y238{bottom:338.372000pt;}
.ye{bottom:338.376000pt;}
.y133{bottom:342.804000pt;}
.y1a0{bottom:344.694667pt;}
.y1cd{bottom:346.341333pt;}
.y1b0{bottom:346.740000pt;}
.y200{bottom:347.378667pt;}
.y3c{bottom:349.553333pt;}
.yfb{bottom:351.488000pt;}
.y237{bottom:353.714667pt;}
.yd{bottom:354.277333pt;}
.y16d{bottom:354.977333pt;}
.ya6{bottom:355.577333pt;}
.y132{bottom:355.818667pt;}
.y19f{bottom:361.432000pt;}
.y1ff{bottom:362.720000pt;}
.yc5{bottom:363.078667pt;}
.y70{bottom:363.477333pt;}
.yfa{bottom:366.100000pt;}
.y3b{bottom:366.848000pt;}
.y1d4{bottom:367.064000pt;}
.y131{bottom:368.833333pt;}
.y236{bottom:369.056000pt;}
.yc{bottom:370.177333pt;}
.ya5{bottom:370.189333pt;}
.y16c{bottom:371.714667pt;}
.y1fe{bottom:378.062667pt;}
.yc4{bottom:379.816000pt;}
.y6f{bottom:380.214667pt;}
.yf9{bottom:380.712000pt;}
.y19e{bottom:382.153333pt;}
.y3a{bottom:384.142667pt;}
.y235{bottom:384.398667pt;}
.ya4{bottom:384.801333pt;}
.y130{bottom:387.854667pt;}
.y16b{bottom:388.452000pt;}
.y1fd{bottom:393.405333pt;}
.yf8{bottom:395.324000pt;}
.yb{bottom:395.376000pt;}
.y12f{bottom:396.110667pt;}
.yc3{bottom:396.553333pt;}
.y6e{bottom:396.952000pt;}
.ya3{bottom:399.413333pt;}
.y234{bottom:399.741333pt;}
.y19d{bottom:400.086667pt;}
.y39{bottom:401.438667pt;}
.y16a{bottom:405.189333pt;}
.y12e{bottom:406.876000pt;}
.y12c{bottom:407.650667pt;}
.y1fc{bottom:408.748000pt;}
.yf7{bottom:409.936000pt;}
.ya{bottom:411.276000pt;}
.yc2{bottom:413.290667pt;}
.y6d{bottom:413.689333pt;}
.ya2{bottom:414.025333pt;}
.y233{bottom:415.084000pt;}
.y38{bottom:418.733333pt;}
.y169{bottom:421.926667pt;}
.y1fb{bottom:424.090667pt;}
.yf6{bottom:424.548000pt;}
.y12d{bottom:425.897333pt;}
.ya1{bottom:428.637333pt;}
.y19c{bottom:429.974667pt;}
.yc1{bottom:430.028000pt;}
.y6c{bottom:430.426667pt;}
.y9{bottom:435.146667pt;}
.y37{bottom:436.029333pt;}
.y168{bottom:438.664000pt;}
.yf5{bottom:439.160000pt;}
.y1fa{bottom:439.433333pt;}
.ya0{bottom:443.249333pt;}
.y232{bottom:445.769333pt;}
.y19b{bottom:446.712000pt;}
.yc0{bottom:446.765333pt;}
.y6b{bottom:447.164000pt;}
.y8{bottom:451.048000pt;}
.y36{bottom:453.324000pt;}
.yf4{bottom:453.772000pt;}
.y1f9{bottom:454.776000pt;}
.y12b{bottom:455.265333pt;}
.y167{bottom:455.401333pt;}
.y9f{bottom:457.860000pt;}
.y231{bottom:461.112000pt;}
.y19a{bottom:463.449333pt;}
.ybf{bottom:463.502667pt;}
.y6a{bottom:463.901333pt;}
.y7{bottom:466.948000pt;}
.yf3{bottom:468.384000pt;}
.y1f8{bottom:470.118667pt;}
.y35{bottom:470.618667pt;}
.y166{bottom:472.138667pt;}
.y12a{bottom:472.361333pt;}
.y9e{bottom:472.472000pt;}
.y230{bottom:476.454667pt;}
.y199{bottom:480.186667pt;}
.ybe{bottom:480.240000pt;}
.y69{bottom:480.638667pt;}
.y6{bottom:482.848000pt;}
.yf2{bottom:482.996000pt;}
.y1f7{bottom:485.461333pt;}
.y9d{bottom:487.084000pt;}
.y34{bottom:487.914667pt;}
.y22f{bottom:491.797333pt;}
.yf1{bottom:496.686667pt;}
.y198{bottom:496.924000pt;}
.ybd{bottom:496.977333pt;}
.y68{bottom:497.376000pt;}
.y5{bottom:498.749333pt;}
.y1f6{bottom:500.802667pt;}
.y9c{bottom:501.696000pt;}
.y22e{bottom:507.138667pt;}
.y165{bottom:507.749333pt;}
.yf0{bottom:511.298667pt;}
.y197{bottom:513.661333pt;}
.ybc{bottom:513.714667pt;}
.y67{bottom:514.113333pt;}
.y4{bottom:514.649333pt;}
.y1f5{bottom:516.145333pt;}
.y9b{bottom:516.308000pt;}
.y164{bottom:519.550667pt;}
.y163{bottom:520.368000pt;}
.y129{bottom:520.533333pt;}
.y33{bottom:521.149333pt;}
.y22d{bottom:522.481333pt;}
.yef{bottom:526.830667pt;}
.ybb{bottom:530.452000pt;}
.y3{bottom:530.549333pt;}
.y66{bottom:530.850667pt;}
.y9a{bottom:530.920000pt;}
.y1f4{bottom:531.488000pt;}
.y161{bottom:532.988000pt;}
.y128{bottom:533.153333pt;}
.y162{bottom:536.845333pt;}
.y22c{bottom:537.824000pt;}
.y32{bottom:538.445333pt;}
.yee{bottom:541.442667pt;}
.y99{bottom:545.532000pt;}
.y126{bottom:545.772000pt;}
.y2{bottom:546.450667pt;}
.y1f3{bottom:546.830667pt;}
.yba{bottom:547.189333pt;}
.y65{bottom:547.588000pt;}
.y127{bottom:549.629333pt;}
.y22b{bottom:553.166667pt;}
.y160{bottom:553.309333pt;}
.y31{bottom:555.740000pt;}
.yed{bottom:556.054667pt;}
.y196{bottom:559.069333pt;}
.y98{bottom:560.144000pt;}
.y1f2{bottom:562.173333pt;}
.y1{bottom:562.350667pt;}
.y1cc{bottom:563.926667pt;}
.y64{bottom:564.325333pt;}
.y125{bottom:566.517333pt;}
.y15e{bottom:566.718667pt;}
.y15f{bottom:567.537333pt;}
.yb9{bottom:567.912000pt;}
.y22a{bottom:568.509333pt;}
.yec{bottom:570.666667pt;}
.y194{bottom:571.689333pt;}
.y30{bottom:573.034667pt;}
.y97{bottom:574.756000pt;}
.y195{bottom:575.546667pt;}
.y1f1{bottom:577.516000pt;}
.y124{bottom:579.136000pt;}
.y1cb{bottom:580.664000pt;}
.y15d{bottom:580.946667pt;}
.y63{bottom:581.062667pt;}
.y229{bottom:583.852000pt;}
.yeb{bottom:585.278667pt;}
.y96{bottom:589.368000pt;}
.y2f{bottom:590.330667pt;}
.y123{bottom:591.756000pt;}
.y1f0{bottom:592.858667pt;}
.y193{bottom:593.030667pt;}
.y15c{bottom:593.961333pt;}
.y62{bottom:597.800000pt;}
.y228{bottom:599.194667pt;}
.yea{bottom:599.890667pt;}
.y1ca{bottom:601.386667pt;}
.y95{bottom:603.978667pt;}
.y122{bottom:604.374667pt;}
.y15b{bottom:606.976000pt;}
.y2e{bottom:607.625333pt;}
.y192{bottom:607.642667pt;}
.y1ef{bottom:608.201333pt;}
.ye9{bottom:614.502667pt;}
.y61{bottom:614.537333pt;}
.y121{bottom:616.993333pt;}
.y94{bottom:618.590667pt;}
.y15a{bottom:619.990667pt;}
.y191{bottom:622.254667pt;}
.y1ee{bottom:623.542667pt;}
.y2d{bottom:624.920000pt;}
.ye8{bottom:628.193333pt;}
.y120{bottom:629.613333pt;}
.y227{bottom:629.878667pt;}
.y60{bottom:631.274667pt;}
.y159{bottom:633.005333pt;}
.y93{bottom:633.202667pt;}
.y190{bottom:636.866667pt;}
.y1ed{bottom:638.885333pt;}
.y2c{bottom:642.216000pt;}
.y11f{bottom:642.628000pt;}
.ye7{bottom:643.726667pt;}
.y226{bottom:645.221333pt;}
.y158{bottom:646.414667pt;}
.y92{bottom:647.814667pt;}
.y5f{bottom:648.012000pt;}
.y18f{bottom:651.478667pt;}
.y1ec{bottom:654.228000pt;}
.y11e{bottom:656.037333pt;}
.ye6{bottom:658.337333pt;}
.y2b{bottom:659.510667pt;}
.y157{bottom:659.824000pt;}
.y225{bottom:660.564000pt;}
.y91{bottom:662.426667pt;}
.y5e{bottom:664.749333pt;}
.y18e{bottom:666.090667pt;}
.y11d{bottom:669.052000pt;}
.y1eb{bottom:669.570667pt;}
.y156{bottom:672.416000pt;}
.ye5{bottom:672.949333pt;}
.y224{bottom:675.906667pt;}
.y2a{bottom:676.806667pt;}
.y90{bottom:677.038667pt;}
.y18d{bottom:680.702667pt;}
.y5d{bottom:681.485333pt;}
.y11c{bottom:682.066667pt;}
.y1ea{bottom:684.913333pt;}
.y155{bottom:686.248000pt;}
.ye4{bottom:687.561333pt;}
.y223{bottom:691.249333pt;}
.y29{bottom:694.101333pt;}
.y11b{bottom:695.081333pt;}
.y18c{bottom:695.314667pt;}
.y8f{bottom:698.052000pt;}
.y5c{bottom:698.222667pt;}
.y154{bottom:699.262667pt;}
.y1e9{bottom:700.256000pt;}
.ye3{bottom:702.173333pt;}
.y222{bottom:706.592000pt;}
.y11a{bottom:707.700000pt;}
.y18b{bottom:709.925333pt;}
.y28{bottom:711.396000pt;}
.y153{bottom:712.672000pt;}
.y5b{bottom:714.960000pt;}
.y1e7{bottom:715.598667pt;}
.ye2{bottom:716.785333pt;}
.y8e{bottom:719.066667pt;}
.y1e8{bottom:719.938667pt;}
.y119{bottom:720.320000pt;}
.y221{bottom:721.934667pt;}
.y18a{bottom:724.537333pt;}
.y152{bottom:726.082667pt;}
.y1e6{bottom:730.941333pt;}
.ye1{bottom:731.397333pt;}
.y5a{bottom:731.697333pt;}
.y118{bottom:732.938667pt;}
.y220{bottom:737.277333pt;}
.y189{bottom:739.149333pt;}
.y151{bottom:739.492000pt;}
.y117{bottom:745.558667pt;}
.y27{bottom:745.573333pt;}
.ye0{bottom:746.009333pt;}
.y1e5{bottom:746.284000pt;}
.y8d{bottom:747.173333pt;}
.y59{bottom:748.434667pt;}
.y21f{bottom:752.620000pt;}
.y150{bottom:752.901333pt;}
.y188{bottom:753.761333pt;}
.y116{bottom:758.177333pt;}
.y26{bottom:759.920000pt;}
.ydf{bottom:760.621333pt;}
.y1e4{bottom:761.625333pt;}
.y58{bottom:765.172000pt;}
.y14f{bottom:765.916000pt;}
.y21e{bottom:767.961333pt;}
.y187{bottom:768.793333pt;}
.y115{bottom:770.797333pt;}
.y25{bottom:774.266667pt;}
.yde{bottom:775.233333pt;}
.y1e3{bottom:776.968000pt;}
.y8c{bottom:777.924000pt;}
.y14e{bottom:778.930667pt;}
.y57{bottom:781.909333pt;}
.y21d{bottom:783.304000pt;}
.y114{bottom:783.416000pt;}
.y186{bottom:783.824000pt;}
.ydd{bottom:789.845333pt;}
.y1e2{bottom:792.310667pt;}
.y14d{bottom:792.340000pt;}
.y24{bottom:792.469333pt;}
.y8b{bottom:794.661333pt;}
.y113{bottom:796.036000pt;}
.y185{bottom:798.436000pt;}
.y56{bottom:798.646667pt;}
.y23{bottom:802.958667pt;}
.ydc{bottom:804.456000pt;}
.y14c{bottom:805.354667pt;}
.y8a{bottom:811.398667pt;}
.y1e1{bottom:811.638667pt;}
.y184{bottom:813.466667pt;}
.y21c{bottom:813.989333pt;}
.y112{bottom:815.057333pt;}
.y55{bottom:815.384000pt;}
.y14b{bottom:817.550667pt;}
.ydb{bottom:819.068000pt;}
.y22{bottom:821.162667pt;}
.y111{bottom:823.313333pt;}
.y89{bottom:828.136000pt;}
.y183{bottom:828.917333pt;}
.y21b{bottom:829.332000pt;}
.y149{bottom:830.960000pt;}
.y14a{bottom:831.778667pt;}
.y54{bottom:832.121333pt;}
.yda{bottom:833.680000pt;}
.y110{bottom:834.078667pt;}
.y10e{bottom:834.853333pt;}
.y1e0{bottom:841.526667pt;}
.y182{bottom:843.949333pt;}
.y21a{bottom:844.674667pt;}
.y88{bottom:844.873333pt;}
.y148{bottom:845.188000pt;}
.yd9{bottom:848.292000pt;}
.y53{bottom:848.858667pt;}
.y10f{bottom:853.100000pt;}
.y147{bottom:858.202667pt;}
.y181{bottom:858.561333pt;}
.y219{bottom:860.017333pt;}
.y21{bottom:860.753333pt;}
.y86{bottom:861.610667pt;}
.yd8{bottom:862.904000pt;}
.y1df{bottom:865.118667pt;}
.y52{bottom:865.596000pt;}
.y87{bottom:866.433333pt;}
.y146{bottom:871.217333pt;}
.y180{bottom:873.173333pt;}
.y218{bottom:875.360000pt;}
.y85{bottom:878.348000pt;}
.y51{bottom:882.333333pt;}
.y10d{bottom:882.468000pt;}
.yd7{bottom:883.918667pt;}
.y145{bottom:884.232000pt;}
.y1de{bottom:888.709333pt;}
.y216{bottom:890.701333pt;}
.y217{bottom:890.702667pt;}
.yd6{bottom:893.288000pt;}
.y17f{bottom:894.186667pt;}
.y83{bottom:895.085333pt;}
.y20{bottom:896.237333pt;}
.y144{bottom:897.245333pt;}
.y50{bottom:899.070667pt;}
.y10c{bottom:899.564000pt;}
.y84{bottom:899.908000pt;}
.yb8{bottom:903.892000pt;}
.y215{bottom:906.044000pt;}
.y82{bottom:911.822667pt;}
.y1dd{bottom:912.301333pt;}
.y17e{bottom:915.201333pt;}
.y4f{bottom:915.808000pt;}
.y17c{bottom:915.937333pt;}
.y143{bottom:916.662667pt;}
.y1f{bottom:921.344000pt;}
.y214{bottom:921.386667pt;}
.y142{bottom:924.918667pt;}
.y1dc{bottom:927.922667pt;}
.y81{bottom:928.560000pt;}
.y4e{bottom:932.545333pt;}
.yd5{bottom:933.038667pt;}
.y141{bottom:935.684000pt;}
.y17d{bottom:936.214667pt;}
.y13f{bottom:936.458667pt;}
.y213{bottom:936.729333pt;}
.yb7{bottom:937.366667pt;}
.y1db{bottom:943.544000pt;}
.y80{bottom:945.297333pt;}
.y1e{bottom:946.449333pt;}
.y4d{bottom:949.282667pt;}
.y212{bottom:952.072000pt;}
.y140{bottom:954.705333pt;}
.y7f{bottom:962.034667pt;}
.y4c{bottom:963.593333pt;}
.y4b{bottom:966.020000pt;}
.y17b{bottom:966.977333pt;}
.y1da{bottom:967.136000pt;}
.y211{bottom:967.414667pt;}
.y1d{bottom:971.556000pt;}
.y4a{bottom:982.757333pt;}
.y13e{bottom:984.073333pt;}
.y1b{bottom:1010.210667pt;}
.y49{bottom:1038.548000pt;}
.h11{height:24.866650pt;}
.h21{height:25.811318pt;}
.h10{height:28.023859pt;}
.h8{height:28.947524pt;}
.h15{height:29.499005pt;}
.h17{height:30.732706pt;}
.h1a{height:31.157778pt;}
.h18{height:32.316706pt;}
.h16{height:33.028094pt;}
.h22{height:33.186336pt;}
.h23{height:33.426739pt;}
.h2{height:33.771789pt;}
.ha{height:34.574438pt;}
.h1d{height:35.052646pt;}
.he{height:36.666735pt;}
.hf{height:36.873667pt;}
.h20{height:37.140573pt;}
.hc{height:38.415786pt;}
.h9{height:38.596538pt;}
.h5{height:38.947124pt;}
.hb{height:43.421286pt;}
.h19{height:44.376858pt;}
.h1b{height:44.382191pt;}
.h3{height:45.355680pt;}
.h14{height:47.101286pt;}
.h13{height:47.106620pt;}
.h1c{height:47.651524pt;}
.hd{height:48.245551pt;}
.h7{height:48.486756pt;}
.h1f{height:51.126455pt;}
.h1e{height:51.131789pt;}
.h6{height:69.148877pt;}
.h12{height:81.150438pt;}
.h4{height:91.114522pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:171.343680pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x2{left:51.605861pt;}
.x78{left:55.725333pt;}
.x83{left:60.590667pt;}
.x66{left:62.357333pt;}
.x69{left:64.998667pt;}
.x68{left:67.028000pt;}
.x87{left:68.253333pt;}
.x84{left:70.925333pt;}
.x76{left:73.709333pt;}
.x77{left:75.760000pt;}
.x6b{left:76.794667pt;}
.x85{left:77.752000pt;}
.x75{left:78.900000pt;}
.x6d{left:80.518667pt;}
.x74{left:82.289333pt;}
.x6c{left:84.477333pt;}
.x73{left:85.482667pt;}
.x86{left:87.417333pt;}
.x88{left:88.570667pt;}
.x67{left:90.306667pt;}
.x7a{left:92.066667pt;}
.x6a{left:93.845333pt;}
.x63{left:99.210667pt;}
.x6e{left:100.949333pt;}
.x79{left:173.097333pt;}
.x82{left:191.662667pt;}
.x72{left:197.126667pt;}
.x65{left:211.526667pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x80{left:225.918667pt;}
.x4{left:239.924000pt;}
.x81{left:241.068000pt;}
.x5e{left:242.761333pt;}
.x49{left:246.512000pt;}
.x8{left:250.204000pt;}
.x4a{left:252.561333pt;}
.xb3{left:253.582667pt;}
.x5d{left:254.973333pt;}
.x56{left:257.232000pt;}
.xba{left:258.388000pt;}
.x57{left:260.890667pt;}
.x5f{left:262.862667pt;}
.x5c{left:264.029333pt;}
.x55{left:265.344000pt;}
.x34{left:266.408000pt;}
.x5a{left:267.782667pt;}
.x5b{left:269.869333pt;}
.x3c{left:271.860000pt;}
.x7{left:273.894667pt;}
.xd{left:275.773333pt;}
.x59{left:277.274667pt;}
.x3d{left:278.961333pt;}
.x35{left:280.661333pt;}
.xe{left:282.414667pt;}
.x3e{left:284.072000pt;}
.x43{left:285.637333pt;}
.x3f{left:286.922667pt;}
.x92{left:287.832000pt;}
.x42{left:288.805333pt;}
.x41{left:290.216000pt;}
.xa2{left:291.773333pt;}
.x40{left:292.721333pt;}
.xaf{left:294.969333pt;}
.x3b{left:296.546667pt;}
.x20{left:298.172000pt;}
.x6f{left:300.509333pt;}
.xd5{left:301.874667pt;}
.xbb{left:305.013333pt;}
.x93{left:307.557333pt;}
.xcb{left:308.853333pt;}
.x60{left:310.386667pt;}
.x21{left:311.456000pt;}
.x70{left:312.572000pt;}
.x4f{left:315.957333pt;}
.x37{left:317.332000pt;}
.x36{left:318.994667pt;}
.x94{left:320.841333pt;}
.x9{left:323.958667pt;}
.x7f{left:326.450667pt;}
.x6{left:329.005333pt;}
.xa{left:330.600000pt;}
.xd3{left:332.004000pt;}
.xb{left:333.988000pt;}
.xd8{left:339.625333pt;}
.xc{left:340.629333pt;}
.x54{left:342.602667pt;}
.xf{left:344.846667pt;}
.xdd{left:347.276000pt;}
.x8b{left:353.620000pt;}
.x44{left:356.386667pt;}
.xcc{left:359.842667pt;}
.x96{left:362.445333pt;}
.x58{left:366.752000pt;}
.x38{left:368.976000pt;}
.x22{left:372.901333pt;}
.x39{left:375.026667pt;}
.x23{left:379.542667pt;}
.xe4{left:382.261333pt;}
.x2b{left:386.788000pt;}
.x97{left:392.310667pt;}
.x8f{left:394.633333pt;}
.xc2{left:395.877333pt;}
.xb4{left:397.858667pt;}
.x2c{left:401.041333pt;}
.xc8{left:404.344000pt;}
.x90{left:407.917333pt;}
.x53{left:409.365333pt;}
.x91{left:411.228000pt;}
.xbe{left:414.324000pt;}
.x18{left:418.681333pt;}
.x19{left:425.322667pt;}
.xbf{left:427.608000pt;}
.x1a{left:428.646667pt;}
.x31{left:431.849333pt;}
.xb5{left:436.761333pt;}
.xde{left:438.708000pt;}
.x32{left:440.394667pt;}
.x1b{left:441.930667pt;}
.x61{left:445.414667pt;}
.xcd{left:447.445333pt;}
.x7b{left:448.429333pt;}
.xb6{left:450.045333pt;}
.x71{left:451.293333pt;}
.x62{left:453.698667pt;}
.xa0{left:454.598667pt;}
.xce{left:457.474667pt;}
.xa1{left:461.241333pt;}
.x3a{left:462.858667pt;}
.x7c{left:465.010667pt;}
.xb7{left:466.593333pt;}
.xbc{left:470.689333pt;}
.x26{left:481.396000pt;}
.xbd{left:483.973333pt;}
.xcf{left:492.073333pt;}
.x27{left:494.678667pt;}
.x8e{left:499.116000pt;}
.xd0{left:505.357333pt;}
.xab{left:506.614667pt;}
.xc0{left:509.857333pt;}
.x4d{left:511.578667pt;}
.xac{left:513.256000pt;}
.xc1{left:516.497333pt;}
.xad{left:517.444000pt;}
.x95{left:518.334667pt;}
.x4e{left:524.862667pt;}
.x45{left:525.902667pt;}
.xae{left:530.728000pt;}
.x46{left:531.953333pt;}
.x47{left:538.250667pt;}
.xb0{left:540.001333pt;}
.x48{left:544.300000pt;}
.xb1{left:546.642667pt;}
.xd9{left:550.945333pt;}
.x89{left:551.862667pt;}
.xda{left:554.332000pt;}
.xca{left:558.454667pt;}
.x64{left:562.164000pt;}
.x8a{left:565.145333pt;}
.xdb{left:567.616000pt;}
.xd6{left:574.312000pt;}
.xd4{left:578.056000pt;}
.x98{left:581.418667pt;}
.xc6{left:583.330667pt;}
.xd7{left:587.596000pt;}
.xc7{left:589.972000pt;}
.xe3{left:590.945333pt;}
.xd1{left:592.068000pt;}
.x9a{left:593.317333pt;}
.x99{left:594.702667pt;}
.xd2{left:605.350667pt;}
.x9b{left:606.601333pt;}
.x33{left:607.540000pt;}
.x24{left:610.122667pt;}
.x8c{left:612.122667pt;}
.x2d{left:615.408000pt;}
.x9d{left:620.141333pt;}
.x25{left:623.405333pt;}
.x8d{left:625.406667pt;}
.xdf{left:626.714667pt;}
.x7d{left:628.789333pt;}
.xb8{left:631.052000pt;}
.x9e{left:633.425333pt;}
.xe0{left:635.313333pt;}
.x7e{left:637.073333pt;}
.x51{left:638.697333pt;}
.xb9{left:644.336000pt;}
.xa3{left:645.292000pt;}
.x1c{left:647.384000pt;}
.x52{left:651.980000pt;}
.x1d{left:654.026667pt;}
.xe1{left:656.437333pt;}
.x9c{left:660.385333pt;}
.x28{left:661.828000pt;}
.x2f{left:664.148000pt;}
.xc9{left:665.492000pt;}
.xaa{left:667.060000pt;}
.xc3{left:673.901333pt;}
.x29{left:675.110667pt;}
.x30{left:677.430667pt;}
.xb2{left:679.216000pt;}
.xc4{left:680.542667pt;}
.x2a{left:681.653333pt;}
.x50{left:683.260000pt;}
.xa4{left:688.376000pt;}
.x9f{left:691.680000pt;}
.x14{left:695.232000pt;}
.xc5{left:697.213333pt;}
.x15{left:701.873333pt;}
.x16{left:705.170667pt;}
.x4b{left:708.748000pt;}
.x17{left:711.813333pt;}
.x4c{left:714.797333pt;}
.xdc{left:716.813333pt;}
.x10{left:717.829333pt;}
.xe2{left:720.320000pt;}
.xa6{left:721.813333pt;}
.x11{left:723.541333pt;}
.xa7{left:724.828000pt;}
.x1e{left:726.465333pt;}
.xa8{left:728.082667pt;}
.xa5{left:731.693333pt;}
.x12{left:738.325333pt;}
.x1f{left:739.748000pt;}
.xa9{left:741.365333pt;}
.x2e{left:742.557333pt;}
.x13{left:744.037333pt;}
}




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