
    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_88e2a1d9ab226eb4faa51512.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_84935964a0bd2ddad0f07056.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_771a4e21e46800246088a64f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_46fcff7e6e01b5d55050ec43.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.723000;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_73bf473c962e414f2801ff4d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2be01d07c8f843b144c745bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.726000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_99e1ffb536f3796721993d73.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.897000;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_282752389d9698dd8726b7be.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966000;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_354a30ede9a4db583346c665.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fe728794b3e38aba4abe1b30.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.014160;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:ffe;src:url('chunks/assets/font_a73a1be445a7c57b514d7b1b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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:fff;src:url('chunks/assets/font_c70698e25ea04dd18b95f1fa.woff2')format("woff");}.fff{font-family:fff;line-height:1.011230;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:ff10;src:url('chunks/assets/font_1896f086d83ac91f80a9baa5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.711914;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:ff11;src:url('chunks/assets/font_5ccf3bde9044ce8ab8b59f07.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.014160;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:ff12;src:url('chunks/assets/font_4363be9f1df4feada0e47f6d.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;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:ff13;src:url('chunks/assets/font_59fb80db1875a8e46bcf7342.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.011230;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:ff14;src:url('chunks/assets/font_1896f086d83ac91f80a9baa5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.711914;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:ff15;src:url('chunks/assets/font_b145357efb99361382b10446.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.014160;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:ff16;src:url('chunks/assets/font_ea93fd142922410869192292.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000000;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:ff17;src:url('chunks/assets/font_640a4c0f10920eb3892325f2.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.011230;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:ff18;src:url('chunks/assets/font_1896f086d83ac91f80a9baa5.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.711914;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:ff19;src:url('chunks/assets/font_11655046883c1ba5b06c7a60.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_0eec578decb0118e40c1e88d.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.987000;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:ff1b;src:url('chunks/assets/font_c1a5d9c7e59e31604a1f6b02.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.963000;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:ff1c;src:url('chunks/assets/font_2596812476e67ece5d58bd25.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.014160;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:ff1d;src:url('chunks/assets/font_47ba11b28dc551b90c3baa83.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000000;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:ff1e;src:url('chunks/assets/font_434324bb24e97857851a6def.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.011230;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:ff1f;src:url('chunks/assets/font_1896f086d83ac91f80a9baa5.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.711914;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:ff20;src:url('chunks/assets/font_90c61882353c614087d2ca0b.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_b02dbb909ddc29f6940af2e1.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.869000;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:ff22;src:url('chunks/assets/font_2ae26b37f8a93d57bab0936f.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.869000;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;}
.m8{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);}
.md{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);}
.m17{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m9{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);}
.m5{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);}
.m1a{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);}
.m23{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);}
.m6{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);}
.m1{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);}
.m28{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);}
.m24{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);}
.m18{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);}
.m21{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);}
.m22{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);}
.m19{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);}
.m1d{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);}
.m16{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);}
.m1f{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);}
.m27{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);}
.m25{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);}
.m29{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);}
.m12{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);}
.m1b{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);}
.m4{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);}
.m14{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);}
.ma{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);}
.m26{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);}
.mb{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);}
.m11{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);}
.m1c{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);}
.m13{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);}
.mf{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);}
.m20{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);}
.m3{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);}
.m1e{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);}
.mc{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);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.524000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.624000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:32.880000px;}
.lsa{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.000124px;}
.ls0{letter-spacing:0.000240px;}
.ls91{letter-spacing:0.000250px;}
.ls3d{letter-spacing:0.000414px;}
.ls79{letter-spacing:0.000435px;}
.ls3e{letter-spacing:0.000608px;}
.ls8c{letter-spacing:0.000644px;}
.ls14{letter-spacing:0.000649px;}
.ls85{letter-spacing:0.000800px;}
.ls27{letter-spacing:0.000846px;}
.ls35{letter-spacing:0.000933px;}
.ls86{letter-spacing:0.001036px;}
.ls2f{letter-spacing:0.001133px;}
.ls97{letter-spacing:0.001203px;}
.ls34{letter-spacing:0.001354px;}
.ls89{letter-spacing:0.001407px;}
.lse{letter-spacing:0.001518px;}
.lsf{letter-spacing:0.001996px;}
.ls7a{letter-spacing:0.002034px;}
.ls59{letter-spacing:0.002181px;}
.lsd{letter-spacing:0.002224px;}
.ls71{letter-spacing:0.002296px;}
.ls7f{letter-spacing:0.002338px;}
.ls11{letter-spacing:0.002394px;}
.ls8e{letter-spacing:0.002403px;}
.ls1e{letter-spacing:0.002664px;}
.ls41{letter-spacing:0.002725px;}
.ls88{letter-spacing:0.002739px;}
.ls7e{letter-spacing:0.002832px;}
.ls65{letter-spacing:0.002870px;}
.ls12{letter-spacing:0.002940px;}
.ls13{letter-spacing:0.002958px;}
.ls60{letter-spacing:0.002971px;}
.ls52{letter-spacing:0.003439px;}
.ls9{letter-spacing:0.003488px;}
.lsc{letter-spacing:0.003494px;}
.ls66{letter-spacing:0.003859px;}
.ls8d{letter-spacing:0.004290px;}
.ls10{letter-spacing:0.004435px;}
.ls78{letter-spacing:0.004784px;}
.ls83{letter-spacing:0.004800px;}
.ls36{letter-spacing:0.179437px;}
.ls37{letter-spacing:0.179442px;}
.ls38{letter-spacing:0.179505px;}
.ls4c{letter-spacing:0.259081px;}
.ls57{letter-spacing:0.259085px;}
.ls58{letter-spacing:0.259153px;}
.ls4a{letter-spacing:0.259220px;}
.ls49{letter-spacing:0.259355px;}
.ls4d{letter-spacing:0.358740px;}
.ls4b{letter-spacing:0.358879px;}
.ls4e{letter-spacing:0.359019px;}
.ls7b{letter-spacing:0.528270px;}
.ls7c{letter-spacing:0.534193px;}
.lsb{letter-spacing:1.275394px;}
.ls6e{letter-spacing:1.592072px;}
.ls7{letter-spacing:1.861130px;}
.ls3{letter-spacing:2.989200px;}
.ls1{letter-spacing:2.998354px;}
.ls6f{letter-spacing:10.760072px;}
.ls6d{letter-spacing:10.761070px;}
.ls75{letter-spacing:11.951700px;}
.ls69{letter-spacing:11.952019px;}
.ls8{letter-spacing:11.954850px;}
.ls6b{letter-spacing:11.957700px;}
.ls74{letter-spacing:11.958019px;}
.ls73{letter-spacing:12.014043px;}
.ls6c{letter-spacing:13.152480px;}
.ls8b{letter-spacing:13.225597px;}
.ls94{letter-spacing:13.317796px;}
.ls90{letter-spacing:13.406400px;}
.ls32{letter-spacing:13.444090px;}
.ls7d{letter-spacing:13.448400px;}
.ls30{letter-spacing:13.450090px;}
.ls33{letter-spacing:13.450310px;}
.ls31{letter-spacing:13.451338px;}
.ls81{letter-spacing:13.454400px;}
.ls92{letter-spacing:13.556448px;}
.ls8f{letter-spacing:13.577590px;}
.ls8a{letter-spacing:13.617202px;}
.ls87{letter-spacing:13.785874px;}
.ls96{letter-spacing:13.997459px;}
.ls6a{letter-spacing:14.049195px;}
.ls3c{letter-spacing:14.506042px;}
.ls56{letter-spacing:14.506078px;}
.ls53{letter-spacing:14.509011px;}
.ls54{letter-spacing:14.512164px;}
.ls55{letter-spacing:14.512200px;}
.ls76{letter-spacing:14.705769px;}
.ls77{letter-spacing:14.706289px;}
.ls62{letter-spacing:14.769768px;}
.ls61{letter-spacing:14.770954px;}
.ls1f{letter-spacing:14.814093px;}
.ls20{letter-spacing:14.816448px;}
.ls2e{letter-spacing:14.824349px;}
.ls2c{letter-spacing:14.847611px;}
.ls2d{letter-spacing:14.851981px;}
.ls64{letter-spacing:14.917031px;}
.ls63{letter-spacing:14.923011px;}
.ls5f{letter-spacing:14.940124px;}
.ls5d{letter-spacing:14.941834px;}
.ls5a{letter-spacing:14.942725px;}
.ls3a{letter-spacing:14.944200px;}
.ls3b{letter-spacing:14.946124px;}
.ls5e{letter-spacing:14.947834px;}
.ls26{letter-spacing:14.964806px;}
.ls45{letter-spacing:14.970124px;}
.ls25{letter-spacing:14.970206px;}
.ls24{letter-spacing:14.970849px;}
.ls44{letter-spacing:14.974200px;}
.ls42{letter-spacing:14.976124px;}
.ls15{letter-spacing:15.177722px;}
.ls16{letter-spacing:15.182188px;}
.ls28{letter-spacing:15.433653px;}
.ls29{letter-spacing:15.435729px;}
.ls2b{letter-spacing:16.036956px;}
.ls23{letter-spacing:16.165278px;}
.ls82{letter-spacing:16.326871px;}
.ls4f{letter-spacing:16.416006px;}
.ls50{letter-spacing:16.418082px;}
.ls51{letter-spacing:16.423965px;}
.ls95{letter-spacing:16.544518px;}
.ls2a{letter-spacing:16.651300px;}
.ls93{letter-spacing:16.673929px;}
.ls46{letter-spacing:16.853376px;}
.ls47{letter-spacing:16.857182px;}
.ls1c{letter-spacing:17.129472px;}
.ls1d{letter-spacing:17.133653px;}
.ls48{letter-spacing:17.439535px;}
.ls5b{letter-spacing:17.668947px;}
.ls5c{letter-spacing:17.671024px;}
.ls4{letter-spacing:17.935200px;}
.ls84{letter-spacing:17.985694px;}
.ls1a{letter-spacing:18.092477px;}
.ls19{letter-spacing:18.094178px;}
.ls1b{letter-spacing:18.098359px;}
.ls40{letter-spacing:18.110124px;}
.ls3f{letter-spacing:18.112200px;}
.ls39{letter-spacing:18.470660px;}
.ls18{letter-spacing:18.733653px;}
.ls17{letter-spacing:18.735355px;}
.ls80{letter-spacing:20.826871px;}
.ls21{letter-spacing:24.847666px;}
.ls22{letter-spacing:24.857182px;}
.ls68{letter-spacing:36.731548px;}
.ls2{letter-spacing:57.415200px;}
.ls5{letter-spacing:70.236600px;}
.ls6{letter-spacing:72.353510px;}
.ls67{letter-spacing:227.518800px;}
.ls70{letter-spacing:434.028426px;}
.ls72{letter-spacing:444.568942px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-103.961438px;}
.ws79{word-spacing:-33.414560px;}
.wse{word-spacing:-17.394700px;}
.wsb6{word-spacing:-15.655334px;}
.ws27{word-spacing:-14.943900px;}
.ws74{word-spacing:-14.940563px;}
.ws1e{word-spacing:-13.915795px;}
.ws7{word-spacing:-13.449600px;}
.ws73{word-spacing:-12.060450px;}
.ws1d{word-spacing:-11.955150px;}
.ws3{word-spacing:-11.357400px;}
.ws80{word-spacing:-5.140702px;}
.ws4d{word-spacing:-4.602721px;}
.ws12d{word-spacing:-4.034880px;}
.ws75{word-spacing:-3.981082px;}
.ws76{word-spacing:-3.765888px;}
.wsfb{word-spacing:-3.281702px;}
.wsde{word-spacing:-3.048556px;}
.ws44{word-spacing:-2.809453px;}
.wsf7{word-spacing:-2.636122px;}
.ws49{word-spacing:-2.630126px;}
.ws59{word-spacing:-2.570351px;}
.ws117{word-spacing:-2.474726px;}
.wsd5{word-spacing:-2.450800px;}
.ws3a{word-spacing:-2.391024px;}
.ws2c{word-spacing:-2.331248px;}
.ws136{word-spacing:-2.259533px;}
.wsce{word-spacing:-2.211697px;}
.wsa3{word-spacing:-2.092146px;}
.ws66{word-spacing:-2.032370px;}
.ws81{word-spacing:-1.972595px;}
.wsb{word-spacing:-1.908367px;}
.ws13{word-spacing:-1.853044px;}
.ws57{word-spacing:-1.793268px;}
.ws6e{word-spacing:-1.434614px;}
.wsa{word-spacing:-1.322630px;}
.ws120{word-spacing:-1.237363px;}
.ws2a{word-spacing:-1.195512px;}
.ws6b{word-spacing:-1.135736px;}
.ws2e{word-spacing:-1.075961px;}
.ws6c{word-spacing:-1.016185px;}
.ws83{word-spacing:-0.956410px;}
.ws72{word-spacing:-0.836858px;}
.ws7e{word-spacing:-0.777083px;}
.ws98{word-spacing:-0.657532px;}
.ws6d{word-spacing:-0.597756px;}
.ws90{word-spacing:-0.591782px;}
.wsd6{word-spacing:-0.537980px;}
.ws108{word-spacing:-0.484186px;}
.ws99{word-spacing:-0.478205px;}
.ws9a{word-spacing:-0.438213px;}
.ws7c{word-spacing:-0.434475px;}
.ws7b{word-spacing:-0.418429px;}
.ws91{word-spacing:-0.376589px;}
.ws2f{word-spacing:-0.358654px;}
.ws92{word-spacing:-0.322790px;}
.ws1a{word-spacing:-0.298878px;}
.ws9b{word-spacing:-0.289022px;}
.ws9c{word-spacing:-0.282900px;}
.wse4{word-spacing:-0.268992px;}
.ws2d{word-spacing:-0.239102px;}
.wsa2{word-spacing:-0.215194px;}
.wsd{word-spacing:-0.179327px;}
.wsac{word-spacing:-0.175185px;}
.wsab{word-spacing:-0.173967px;}
.ws111{word-spacing:-0.161395px;}
.ws16{word-spacing:-0.119551px;}
.wse7{word-spacing:-0.107597px;}
.ws62{word-spacing:-0.089585px;}
.ws17{word-spacing:-0.059776px;}
.ws123{word-spacing:-0.055882px;}
.ws8{word-spacing:-0.053798px;}
.wsc1{word-spacing:-0.043039px;}
.wsaf{word-spacing:-0.025545px;}
.wsfa{word-spacing:-0.024019px;}
.wsb0{word-spacing:-0.022540px;}
.ws10b{word-spacing:-0.008861px;}
.ws124{word-spacing:-0.007910px;}
.ws5{word-spacing:-0.003892px;}
.ws105{word-spacing:-0.003571px;}
.ws12c{word-spacing:-0.003466px;}
.ws132{word-spacing:-0.002899px;}
.wsc2{word-spacing:-0.002880px;}
.ws2{word-spacing:-0.002434px;}
.ws1c{word-spacing:-0.002141px;}
.wsbf{word-spacing:-0.002140px;}
.ws9d{word-spacing:-0.002050px;}
.wsbe{word-spacing:-0.002044px;}
.ws64{word-spacing:-0.000980px;}
.ws9e{word-spacing:-0.000900px;}
.ws63{word-spacing:-0.000844px;}
.wsbb{word-spacing:-0.000227px;}
.wsc3{word-spacing:-0.000108px;}
.ws1{word-spacing:0.000000px;}
.wsaa{word-spacing:0.000600px;}
.wsa9{word-spacing:0.001450px;}
.ws89{word-spacing:0.027950px;}
.ws88{word-spacing:0.028579px;}
.ws5d{word-spacing:0.037924px;}
.ws8a{word-spacing:0.041100px;}
.wsc7{word-spacing:0.047821px;}
.wse2{word-spacing:0.053798px;}
.ws14{word-spacing:0.059776px;}
.ws7a{word-spacing:0.102481px;}
.ws6{word-spacing:0.107597px;}
.ws12{word-spacing:0.119551px;}
.wsc8{word-spacing:0.161395px;}
.ws33{word-spacing:0.179327px;}
.wse6{word-spacing:0.215194px;}
.ws11{word-spacing:0.239102px;}
.wsf3{word-spacing:0.268992px;}
.ws28{word-spacing:0.298878px;}
.wse5{word-spacing:0.322790px;}
.ws15{word-spacing:0.358654px;}
.ws133{word-spacing:0.376589px;}
.wsd7{word-spacing:0.418429px;}
.ws114{word-spacing:0.430387px;}
.ws5e{word-spacing:0.478205px;}
.ws115{word-spacing:0.484186px;}
.ws5f{word-spacing:0.505664px;}
.ws135{word-spacing:0.537984px;}
.ws3f{word-spacing:0.597756px;}
.ws3e{word-spacing:0.657532px;}
.ws4c{word-spacing:0.717307px;}
.ws116{word-spacing:0.753178px;}
.ws47{word-spacing:0.777083px;}
.wscc{word-spacing:0.836858px;}
.ws25{word-spacing:0.896634px;}
.wsee{word-spacing:0.914573px;}
.wsd0{word-spacing:0.956410px;}
.ws137{word-spacing:0.968371px;}
.wscf{word-spacing:1.016185px;}
.ws70{word-spacing:1.075961px;}
.wsf4{word-spacing:1.075968px;}
.ws58{word-spacing:1.195512px;}
.ws4b{word-spacing:1.255288px;}
.ws78{word-spacing:1.315063px;}
.wsae{word-spacing:1.352303px;}
.ws45{word-spacing:1.374839px;}
.ws113{word-spacing:1.398758px;}
.ws10{word-spacing:1.434614px;}
.ws138{word-spacing:1.452557px;}
.ws97{word-spacing:1.469317px;}
.ws94{word-spacing:1.475833px;}
.ws93{word-spacing:1.494390px;}
.ws71{word-spacing:1.554166px;}
.wse1{word-spacing:1.560154px;}
.ws53{word-spacing:1.613941px;}
.wsa0{word-spacing:1.667750px;}
.ws35{word-spacing:1.673717px;}
.ws60{word-spacing:1.698147px;}
.ws61{word-spacing:1.698270px;}
.wsa1{word-spacing:1.721549px;}
.ws19{word-spacing:1.733492px;}
.ws69{word-spacing:1.793268px;}
.ws56{word-spacing:1.853044px;}
.ws11a{word-spacing:1.888856px;}
.ws8c{word-spacing:1.905245px;}
.ws68{word-spacing:1.912819px;}
.ws96{word-spacing:1.917100px;}
.ws95{word-spacing:1.922982px;}
.ws11b{word-spacing:1.936742px;}
.ws9f{word-spacing:1.990541px;}
.ws46{word-spacing:2.032370px;}
.wsbd{word-spacing:2.056286px;}
.ws26{word-spacing:2.092146px;}
.wsbc{word-spacing:2.104106px;}
.ws3d{word-spacing:2.151922px;}
.ws4f{word-spacing:2.211697px;}
.wsf0{word-spacing:2.259533px;}
.wsb2{word-spacing:2.313331px;}
.ws24{word-spacing:2.331248px;}
.ws23{word-spacing:2.391024px;}
.ws12e{word-spacing:2.420928px;}
.ws7f{word-spacing:2.450800px;}
.ws8d{word-spacing:2.458276px;}
.ws11c{word-spacing:2.474726px;}
.ws8e{word-spacing:2.479308px;}
.ws8b{word-spacing:2.483528px;}
.ws8f{word-spacing:2.510575px;}
.ws129{word-spacing:2.528525px;}
.wscd{word-spacing:2.630126px;}
.wsb1{word-spacing:2.636122px;}
.ws37{word-spacing:2.689902px;}
.wsa7{word-spacing:2.728774px;}
.wsa6{word-spacing:2.749678px;}
.ws41{word-spacing:2.809453px;}
.wsf1{word-spacing:2.851315px;}
.ws3c{word-spacing:2.988780px;}
.wse9{word-spacing:3.066509px;}
.ws2b{word-spacing:3.108331px;}
.ws12f{word-spacing:3.120307px;}
.ws5b{word-spacing:3.168107px;}
.ws85{word-spacing:3.169950px;}
.ws121{word-spacing:3.335501px;}
.wsd3{word-spacing:3.347434px;}
.wsd1{word-spacing:3.407209px;}
.ws112{word-spacing:3.443098px;}
.ws55{word-spacing:3.466985px;}
.wsa8{word-spacing:3.487688px;}
.wsed{word-spacing:3.496896px;}
.ws4a{word-spacing:3.526760px;}
.ws101{word-spacing:3.550694px;}
.ws82{word-spacing:3.586536px;}
.wsdf{word-spacing:3.646312px;}
.ws5a{word-spacing:3.765863px;}
.ws12b{word-spacing:3.765888px;}
.ws67{word-spacing:3.885414px;}
.wsdb{word-spacing:3.945190px;}
.ws118{word-spacing:3.981082px;}
.ws3b{word-spacing:4.004965px;}
.ws86{word-spacing:4.028865px;}
.ws127{word-spacing:4.034880px;}
.wsda{word-spacing:4.064741px;}
.ws54{word-spacing:4.124516px;}
.ws10d{word-spacing:4.142477px;}
.wsad{word-spacing:4.244068px;}
.ws130{word-spacing:4.250074px;}
.ws36{word-spacing:4.303843px;}
.wsc0{word-spacing:4.363619px;}
.ws10e{word-spacing:4.411469px;}
.ws21{word-spacing:4.483170px;}
.ws103{word-spacing:4.519066px;}
.ws42{word-spacing:4.542946px;}
.ws65{word-spacing:4.602721px;}
.wsd2{word-spacing:4.722272px;}
.ws20{word-spacing:4.841824px;}
.ws10f{word-spacing:4.895654px;}
.wsdd{word-spacing:4.901599px;}
.ws84{word-spacing:4.916406px;}
.ws128{word-spacing:4.949453px;}
.wsa5{word-spacing:4.961375px;}
.ws39{word-spacing:5.080926px;}
.ws38{word-spacing:5.140702px;}
.wse0{word-spacing:5.200477px;}
.ws10a{word-spacing:5.272243px;}
.ws22{word-spacing:5.320028px;}
.wse8{word-spacing:5.371411px;}
.wsf9{word-spacing:5.371546px;}
.ws107{word-spacing:5.374752px;}
.wsfe{word-spacing:5.374925px;}
.wsf6{word-spacing:5.375213px;}
.ws11f{word-spacing:5.375405px;}
.ws131{word-spacing:5.375789px;}
.wsfd{word-spacing:5.377411px;}
.ws10c{word-spacing:5.377546px;}
.ws122{word-spacing:5.377776px;}
.wse3{word-spacing:5.378822px;}
.ws11d{word-spacing:5.378832px;}
.ws100{word-spacing:5.379706px;}
.ws9{word-spacing:5.379840px;}
.ws119{word-spacing:5.380051px;}
.wsfc{word-spacing:5.380454px;}
.ws125{word-spacing:5.381011px;}
.ws110{word-spacing:5.381069px;}
.ws106{word-spacing:5.381088px;}
.wsf5{word-spacing:5.381818px;}
.ws4e{word-spacing:5.439580px;}
.ws77{word-spacing:5.499355px;}
.ws11e{word-spacing:5.595034px;}
.wsd8{word-spacing:5.618906px;}
.wsc9{word-spacing:5.702630px;}
.ws6f{word-spacing:5.798233px;}
.ws40{word-spacing:5.858009px;}
.wsea{word-spacing:5.864026px;}
.wsf8{word-spacing:5.971622px;}
.wsa4{word-spacing:5.975100px;}
.ws18{word-spacing:5.977560px;}
.wsf2{word-spacing:6.025421px;}
.ws50{word-spacing:6.037336px;}
.ws32{word-spacing:6.156887px;}
.ws6a{word-spacing:6.216662px;}
.ws1b{word-spacing:6.276438px;}
.wsef{word-spacing:6.402010px;}
.ws48{word-spacing:6.455765px;}
.wsf{word-spacing:6.515540px;}
.wscb{word-spacing:6.694867px;}
.ws51{word-spacing:6.754643px;}
.ws109{word-spacing:6.778598px;}
.ws34{word-spacing:6.814418px;}
.wsc{word-spacing:6.933970px;}
.ws134{word-spacing:6.993792px;}
.wsec{word-spacing:7.370381px;}
.wsdc{word-spacing:7.591501px;}
.ws52{word-spacing:7.711052px;}
.ws29{word-spacing:7.830604px;}
.ws104{word-spacing:7.908365px;}
.wsff{word-spacing:7.962163px;}
.wsd9{word-spacing:8.308808px;}
.ws126{word-spacing:9.145728px;}
.wsca{word-spacing:9.504320px;}
.wsd4{word-spacing:9.564096px;}
.ws31{word-spacing:9.683647px;}
.ws5c{word-spacing:9.922750px;}
.ws7d{word-spacing:12.672427px;}
.ws43{word-spacing:12.851754px;}
.ws12a{word-spacing:13.395802px;}
.ws87{word-spacing:15.960085px;}
.ws30{word-spacing:16.438290px;}
.ws102{word-spacing:16.516109px;}
.wseb{word-spacing:23.348506px;}
.wsba{word-spacing:24.771071px;}
.wsb9{word-spacing:24.801564px;}
.ws4{word-spacing:40.068708px;}
.wsb3{word-spacing:136.701734px;}
.wsb4{word-spacing:219.389875px;}
.wsb7{word-spacing:223.370957px;}
.wsc4{word-spacing:327.438582px;}
.wsc5{word-spacing:349.689600px;}
.wsc6{word-spacing:432.865175px;}
.wsb5{word-spacing:595.117901px;}
.ws1f{word-spacing:856.275664px;}
.wsb8{word-spacing:913.174042px;}
._26{margin-left:-18.470660px;}
._0{margin-left:-7.962163px;}
._4{margin-left:-5.971622px;}
._3{margin-left:-4.788058px;}
._d{margin-left:-3.449039px;}
._5{margin-left:-1.990541px;}
._7{width:1.091170px;}
._1{width:3.000787px;}
._24{width:4.363619px;}
._27{width:5.494020px;}
._2a{width:6.515953px;}
._2d{width:7.606441px;}
._29{width:8.607865px;}
._28{width:9.625924px;}
._16{width:11.342326px;}
._23{width:12.347509px;}
._c{width:14.142934px;}
._a{width:15.798704px;}
._15{width:17.346932px;}
._6{width:18.829440px;}
._9{width:20.622582px;}
._b{width:21.716489px;}
._8{width:22.912001px;}
._10{width:24.029791px;}
._19{width:25.619849px;}
._13{width:27.215844px;}
._f{width:28.512961px;}
._43{width:29.768249px;}
._12{width:30.893117px;}
._20{width:32.338600px;}
._14{width:33.414560px;}
._2e{width:35.028502px;}
._1f{width:36.140354px;}
._25{width:37.658628px;}
._17{width:39.392120px;}
._21{width:40.605578px;}
._18{width:42.321125px;}
._11{width:44.831700px;}
._1a{width:51.097307px;}
._2{width:54.384518px;}
._45{width:61.868160px;}
._37{width:66.422813px;}
._44{width:88.767360px;}
._32{width:153.016051px;}
._33{width:155.970845px;}
._2f{width:164.300314px;}
._34{width:183.621293px;}
._30{width:191.973638px;}
._3d{width:212.054070px;}
._41{width:220.917750px;}
._31{width:232.678080px;}
._36{width:234.099360px;}
._42{width:255.348726px;}
._3b{width:256.941158px;}
._35{width:262.709942px;}
._1c{width:290.457562px;}
._40{width:314.344927px;}
._3c{width:324.446477px;}
._1e{width:326.233498px;}
._3e{width:373.274819px;}
._3f{width:374.867251px;}
._1b{width:406.285517px;}
._38{width:432.065710px;}
._39{width:446.666596px;}
._3a{width:846.528584px;}
._1d{width:850.606502px;}
._2c{width:1615.132115px;}
._22{width:1638.770597px;}
._2b{width:2025.971141px;}
._e{width:2049.881141px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(45,91,113);}
.fse{font-size:33.474240px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fsd{font-size:43.038720px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:48.241800px;}
.fs5{font-size:53.798400px;}
.fsc{font-size:54.002250px;}
.fsb{font-size:59.762250px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:72.002705px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:133.626526px;}
.y134{bottom:-732.619484px;}
.y19f{bottom:-708.437984px;}
.y113{bottom:-692.893484px;}
.y152{bottom:-688.879409px;}
.yc5{bottom:-685.120484px;}
.y151{bottom:-668.719428px;}
.y150{bottom:-648.379409px;}
.y1be{bottom:-637.517940px;}
.y14f{bottom:-628.219428px;}
.y1bd{bottom:-617.177921px;}
.y14e{bottom:-607.879409px;}
.y1bc{bottom:-597.017940px;}
.ye0{bottom:-593.860421px;}
.y14d{bottom:-587.719428px;}
.y1bb{bottom:-576.677921px;}
.ydf{bottom:-573.520401px;}
.y14c{bottom:-567.379409px;}
.y1ba{bottom:-556.517940px;}
.yde{bottom:-553.360421px;}
.y14b{bottom:-547.219428px;}
.y1b9{bottom:-536.357959px;}
.ydd{bottom:-533.020401px;}
.y14a{bottom:-518.059448px;}
.y1b8{bottom:-516.017940px;}
.ydc{bottom:-512.860421px;}
.y1b7{bottom:-495.857959px;}
.ydb{bottom:-492.520401px;}
.y149{bottom:-479.719428px;}
.y1b6{bottom:-475.517940px;}
.yda{bottom:-472.360421px;}
.y148{bottom:-459.559448px;}
.y1b5{bottom:-455.357959px;}
.yd9{bottom:-452.200440px;}
.y147{bottom:-439.219428px;}
.y1b4{bottom:-435.017940px;}
.yd8{bottom:-431.860421px;}
.y1b3{bottom:-414.857959px;}
.yd7{bottom:-411.700440px;}
.y146{bottom:-410.059448px;}
.y1b2{bottom:-394.697909px;}
.yd6{bottom:-391.360421px;}
.y1b1{bottom:-374.357959px;}
.y145{bottom:-371.719428px;}
.yd5{bottom:-371.200440px;}
.y1b0{bottom:-354.197909px;}
.y144{bottom:-351.559448px;}
.y123{bottom:-351.433461px;}
.yd4{bottom:-350.860421px;}
.y1af{bottom:-333.857959px;}
.y143{bottom:-331.399467px;}
.y122{bottom:-331.093442px;}
.yd3{bottom:-328.540459px;}
.y1ae{bottom:-313.697909px;}
.y142{bottom:-311.059448px;}
.y121{bottom:-310.933461px;}
.yd2{bottom:-304.060448px;}
.y1ad{bottom:-293.357959px;}
.y141{bottom:-290.899467px;}
.y120{bottom:-290.593442px;}
.yd1{bottom:-279.580436px;}
.y1ac{bottom:-273.197909px;}
.y140{bottom:-270.559448px;}
.y11f{bottom:-270.433461px;}
.yd0{bottom:-255.100426px;}
.y1ab{bottom:-253.037928px;}
.y13f{bottom:-250.399467px;}
.y11e{bottom:-250.273412px;}
.y1aa{bottom:-232.697909px;}
.ycf{bottom:-230.620415px;}
.y13e{bottom:-230.059448px;}
.y11d{bottom:-229.933461px;}
.y1a9{bottom:-212.537928px;}
.y13d{bottom:-209.899467px;}
.y11c{bottom:-209.773412px;}
.yce{bottom:-206.140404px;}
.y1a8{bottom:-192.197909px;}
.y13c{bottom:-189.739417px;}
.y11b{bottom:-189.433461px;}
.ycd{bottom:-181.840432px;}
.y1a7{bottom:-172.037928px;}
.y13b{bottom:-169.399467px;}
.y11a{bottom:-160.273412px;}
.ycc{bottom:-157.360421px;}
.y1a6{bottom:-151.697909px;}
.y13a{bottom:-140.239417px;}
.ycb{bottom:-132.880409px;}
.y1a5{bottom:-131.537928px;}
.y119{bottom:-121.933461px;}
.yca{bottom:-108.400467px;}
.y139{bottom:-102.259441px;}
.y1a4{bottom:-102.197909px;}
.y118{bottom:-101.773412px;}
.yc9{bottom:-83.920457px;}
.y138{bottom:-82.819442px;}
.y1a3{bottom:-64.397936px;}
.y117{bottom:-63.973440px;}
.y137{bottom:-63.379444px;}
.y1a2{bottom:-44.957939px;}
.y116{bottom:-44.353436px;}
.yc8{bottom:-44.140439px;}
.y136{bottom:-34.399433px;}
.y1a1{bottom:-25.517940px;}
.y115{bottom:-24.913438px;}
.yc7{bottom:-24.700440px;}
.y1a0{bottom:-0.857924px;}
.y135{bottom:-0.559448px;}
.y114{bottom:-0.433427px;}
.yc6{bottom:-0.040424px;}
.y0{bottom:0.000000px;}
.y3{bottom:1.507793px;}
.y1a{bottom:3.425340px;}
.y19{bottom:14.151273px;}
.y2{bottom:26.787821px;}
.y33{bottom:63.780000px;}
.y32{bottom:108.612000px;}
.y262{bottom:108.957000px;}
.yfe{bottom:109.777500px;}
.y65{bottom:119.863500px;}
.y22e{bottom:121.420500px;}
.y79{bottom:122.314500px;}
.y1fe{bottom:123.121500px;}
.y16f{bottom:124.380000px;}
.y261{bottom:128.325000px;}
.y1dc{bottom:128.706000px;}
.y31{bottom:128.875500px;}
.yfd{bottom:130.042500px;}
.y64{bottom:140.128500px;}
.y22d{bottom:140.787000px;}
.y78{bottom:142.579500px;}
.y1fd{bottom:143.386500px;}
.y16e{bottom:144.645000px;}
.y260{bottom:147.691500px;}
.y1db{bottom:148.971000px;}
.y30{bottom:149.139000px;}
.yfc{bottom:150.306000px;}
.y9d{bottom:157.938000px;}
.y22c{bottom:160.155000px;}
.y63{bottom:160.392000px;}
.y77{bottom:162.843000px;}
.y1fc{bottom:163.650000px;}
.y16d{bottom:164.908500px;}
.y25f{bottom:167.059500px;}
.y1da{bottom:169.234500px;}
.y2f{bottom:169.404000px;}
.yfb{bottom:170.571000px;}
.y9c{bottom:178.201500px;}
.y22b{bottom:179.523000px;}
.y62{bottom:180.657000px;}
.y76{bottom:183.108000px;}
.y1fb{bottom:183.913500px;}
.y16c{bottom:185.172000px;}
.y25e{bottom:186.427500px;}
.y1d9{bottom:189.498000px;}
.y2e{bottom:189.667500px;}
.yfa{bottom:190.834500px;}
.y9b{bottom:198.465000px;}
.y22a{bottom:198.889500px;}
.y61{bottom:200.920500px;}
.y19c{bottom:201.526500px;}
.y75{bottom:203.371500px;}
.y1fa{bottom:204.178500px;}
.y16b{bottom:205.437000px;}
.y25d{bottom:205.794000px;}
.y1d8{bottom:209.763000px;}
.y2d{bottom:209.932500px;}
.yf9{bottom:211.098000px;}
.y19b{bottom:215.722500px;}
.y229{bottom:218.257500px;}
.y9a{bottom:218.730000px;}
.y60{bottom:221.184000px;}
.y1f9{bottom:224.442000px;}
.y25c{bottom:225.162000px;}
.y16a{bottom:225.700500px;}
.y1d7{bottom:230.026500px;}
.yf8{bottom:231.363000px;}
.y74{bottom:232.602000px;}
.y19a{bottom:235.970700px;}
.y228{bottom:237.624000px;}
.y99{bottom:238.993500px;}
.y2c{bottom:239.163000px;}
.y5f{bottom:241.449000px;}
.y25b{bottom:244.528500px;}
.y1f8{bottom:244.707000px;}
.y169{bottom:245.965500px;}
.y199{bottom:249.407100px;}
.y1d6{bottom:250.291500px;}
.yf7{bottom:251.626500px;}
.y110{bottom:255.198000px;}
.y227{bottom:256.992000px;}
.y98{bottom:259.258500px;}
.y5e{bottom:261.712500px;}
.y198{bottom:262.557900px;}
.y25a{bottom:263.896500px;}
.y1f7{bottom:264.970500px;}
.y168{bottom:266.229000px;}
.y73{bottom:267.421500px;}
.y1d5{bottom:270.555000px;}
.yf6{bottom:271.891500px;}
.y10f{bottom:275.461500px;}
.y197{bottom:275.707500px;}
.y226{bottom:276.360000px;}
.y97{bottom:279.522000px;}
.y5d{bottom:281.977500px;}
.y259{bottom:283.264500px;}
.y1f6{bottom:285.234000px;}
.y167{bottom:286.492500px;}
.y1d4{bottom:290.818500px;}
.yf5{bottom:292.155000px;}
.y196{bottom:294.906300px;}
.y10e{bottom:295.725000px;}
.y225{bottom:295.726500px;}
.yc2{bottom:298.983000px;}
.y96{bottom:299.785500px;}
.y5c{bottom:302.241000px;}
.y258{bottom:302.631000px;}
.y1f5{bottom:305.499000px;}
.y166{bottom:306.757500px;}
.y1d3{bottom:311.083500px;}
.yf4{bottom:312.418500px;}
.y195{bottom:314.105100px;}
.y224{bottom:315.094500px;}
.y2b{bottom:315.577500px;}
.y10d{bottom:315.990000px;}
.yc1{bottom:319.248000px;}
.y95{bottom:320.050500px;}
.y257{bottom:321.999000px;}
.y193{bottom:322.218300px;}
.y5b{bottom:322.504500px;}
.y1f4{bottom:325.762500px;}
.y1d2{bottom:331.347000px;}
.yf3{bottom:332.683500px;}
.y194{bottom:333.102300px;}
.y223{bottom:334.461000px;}
.y2a{bottom:335.842500px;}
.y165{bottom:335.988000px;}
.y10c{bottom:336.253500px;}
.yc0{bottom:339.511500px;}
.y94{bottom:340.314000px;}
.y256{bottom:341.367000px;}
.y5a{bottom:342.769500px;}
.y1f3{bottom:346.027500px;}
.y1d1{bottom:351.612000px;}
.y192{bottom:352.701900px;}
.yf2{bottom:352.947000px;}
.y222{bottom:353.829000px;}
.y10b{bottom:356.518500px;}
.ybf{bottom:359.775000px;}
.y255{bottom:360.733500px;}
.y59{bottom:363.033000px;}
.y1f2{bottom:366.291000px;}
.y164{bottom:370.807500px;}
.y1d0{bottom:371.875500px;}
.y191{bottom:371.900700px;}
.y133{bottom:373.120565px;}
.y221{bottom:373.197000px;}
.yf1{bottom:373.212000px;}
.y29{bottom:374.038500px;}
.y10a{bottom:376.782000px;}
.y93{bottom:379.707000px;}
.ybe{bottom:380.040000px;}
.y254{bottom:380.101500px;}
.y58{bottom:383.298000px;}
.y190{bottom:385.337100px;}
.y1f1{bottom:386.554500px;}
.y163{bottom:391.071000px;}
.y1cf{bottom:392.139000px;}
.y220{bottom:392.563500px;}
.yf0{bottom:393.475500px;}
.y28{bottom:394.303500px;}
.y109{bottom:397.045500px;}
.y19e{bottom:397.302065px;}
.y18f{bottom:398.773500px;}
.y253{bottom:399.468000px;}
.ybd{bottom:400.303500px;}
.y92{bottom:401.764500px;}
.y57{bottom:403.561500px;}
.y1f0{bottom:406.819500px;}
.y162{bottom:411.336000px;}
.y21f{bottom:411.931500px;}
.y1ce{bottom:412.404000px;}
.y131{bottom:412.546500px;}
.y112{bottom:412.846565px;}
.yef{bottom:413.739000px;}
.y27{bottom:414.567000px;}
.y108{bottom:417.310500px;}
.y18e{bottom:417.971100px;}
.y91{bottom:418.560000px;}
.y252{bottom:418.836000px;}
.ybc{bottom:420.568500px;}
.yc4{bottom:420.619565px;}
.y56{bottom:423.825000px;}
.y1ef{bottom:427.083000px;}
.y21e{bottom:431.298000px;}
.y1cd{bottom:432.667500px;}
.y130{bottom:432.810000px;}
.yee{bottom:434.004000px;}
.y26{bottom:434.832000px;}
.y90{bottom:435.355500px;}
.y18d{bottom:437.169900px;}
.y107{bottom:437.574000px;}
.y251{bottom:438.204000px;}
.y161{bottom:440.566500px;}
.ybb{bottom:440.832000px;}
.y55{bottom:444.090000px;}
.y18b{bottom:445.284300px;}
.y1ee{bottom:447.348000px;}
.y21d{bottom:450.666000px;}
.y8f{bottom:452.151000px;}
.y1cc{bottom:452.932500px;}
.y12f{bottom:453.073500px;}
.yed{bottom:454.267500px;}
.y25{bottom:455.095500px;}
.y18c{bottom:456.167100px;}
.y250{bottom:457.570500px;}
.yba{bottom:461.095500px;}
.y54{bottom:464.353500px;}
.y106{bottom:466.804500px;}
.y1ed{bottom:467.611500px;}
.y8e{bottom:468.589500px;}
.y21c{bottom:470.034000px;}
.y1cb{bottom:473.196000px;}
.y12e{bottom:473.338500px;}
.yec{bottom:474.532500px;}
.y24{bottom:475.359000px;}
.y160{bottom:475.386000px;}
.y18a{bottom:475.767900px;}
.y24f{bottom:476.938500px;}
.yb9{bottom:481.360500px;}
.y53{bottom:484.618500px;}
.y8d{bottom:485.028000px;}
.y1ec{bottom:487.875000px;}
.y21b{bottom:489.400500px;}
.y1ca{bottom:493.459500px;}
.y12d{bottom:493.602000px;}
.yeb{bottom:494.796000px;}
.y23{bottom:495.624000px;}
.y15f{bottom:495.649500px;}
.y24e{bottom:496.305000px;}
.yb8{bottom:501.624000px;}
.y189{bottom:504.010500px;}
.y52{bottom:504.882000px;}
.y1eb{bottom:508.140000px;}
.y21a{bottom:508.768500px;}
.y8c{bottom:509.026500px;}
.y1c9{bottom:513.724500px;}
.y12c{bottom:513.867000px;}
.yea{bottom:515.059500px;}
.y24d{bottom:515.673000px;}
.y22{bottom:515.887500px;}
.y15e{bottom:515.913000px;}
.yb7{bottom:521.889000px;}
.y188{bottom:523.243500px;}
.y51{bottom:525.145500px;}
.y219{bottom:528.135000px;}
.y1ea{bottom:528.403500px;}
.y8b{bottom:533.023500px;}
.y1c8{bottom:533.988000px;}
.y12b{bottom:534.130500px;}
.y24c{bottom:535.041000px;}
.ye9{bottom:535.324500px;}
.y21{bottom:536.152500px;}
.y15d{bottom:536.178000px;}
.yb6{bottom:542.152500px;}
.y50{bottom:545.410500px;}
.y218{bottom:547.503000px;}
.y1e9{bottom:548.667000px;}
.y8a{bottom:549.819000px;}
.y1c7{bottom:554.253000px;}
.y12a{bottom:554.394000px;}
.y24b{bottom:554.407500px;}
.ye8{bottom:555.588000px;}
.y20{bottom:556.416000px;}
.y15c{bottom:556.441500px;}
.y187{bottom:560.355000px;}
.yb5{bottom:562.416000px;}
.y4f{bottom:565.674000px;}
.y89{bottom:566.257500px;}
.y217{bottom:566.871000px;}
.y1e8{bottom:568.932000px;}
.y24a{bottom:573.775500px;}
.y1c6{bottom:574.516500px;}
.ye7{bottom:575.853000px;}
.y1f{bottom:576.679500px;}
.y15b{bottom:576.706500px;}
.y186{bottom:580.620000px;}
.y105{bottom:582.681000px;}
.y88{bottom:582.696000px;}
.y129{bottom:583.624500px;}
.y4e{bottom:585.939000px;}
.y216{bottom:586.237500px;}
.y1e7{bottom:589.195500px;}
.yb4{bottom:591.646500px;}
.y249{bottom:593.142000px;}
.y1c5{bottom:594.780000px;}
.ye6{bottom:596.116500px;}
.y1e{bottom:596.944500px;}
.y15a{bottom:596.970000px;}
.y185{bottom:600.883500px;}
.y104{bottom:602.944500px;}
.y215{bottom:605.605500px;}
.y4d{bottom:606.202500px;}
.y87{bottom:606.694500px;}
.y1e6{bottom:609.460500px;}
.y248{bottom:612.510000px;}
.y1c4{bottom:615.045000px;}
.ye5{bottom:616.380000px;}
.y1d{bottom:617.208000px;}
.y159{bottom:617.233500px;}
.y128{bottom:618.444000px;}
.y184{bottom:621.147000px;}
.y103{bottom:623.209500px;}
.y214{bottom:624.972000px;}
.y4c{bottom:626.466000px;}
.y1e5{bottom:629.724000px;}
.y86{bottom:630.334500px;}
.y247{bottom:631.878000px;}
.y1c3{bottom:635.308500px;}
.ye4{bottom:636.645000px;}
.y1c{bottom:637.473000px;}
.y158{bottom:637.498500px;}
.y127{bottom:638.709000px;}
.y183{bottom:641.412000px;}
.y102{bottom:643.473000px;}
.y213{bottom:644.340000px;}
.y4b{bottom:646.731000px;}
.y85{bottom:646.773000px;}
.y1e4{bottom:649.987500px;}
.y246{bottom:651.244500px;}
.ye3{bottom:656.908500px;}
.y1b{bottom:657.736500px;}
.y157{bottom:657.762000px;}
.yb3{bottom:661.285500px;}
.y182{bottom:661.675500px;}
.y212{bottom:663.708000px;}
.y101{bottom:663.736500px;}
.y1c2{bottom:664.539000px;}
.y4a{bottom:666.994500px;}
.y1e3{bottom:670.252500px;}
.y84{bottom:670.414500px;}
.y245{bottom:670.612500px;}
.y126{bottom:673.708500px;}
.ye2{bottom:677.173500px;}
.yb2{bottom:681.550500px;}
.y181{bottom:681.940500px;}
.y211{bottom:683.074500px;}
.y83{bottom:686.853000px;}
.y156{bottom:686.992500px;}
.y49{bottom:687.258000px;}
.y244{bottom:689.979000px;}
.y1e2{bottom:690.516000px;}
.y18{bottom:692.218464px;}
.y125{bottom:692.941500px;}
.y100{bottom:692.967000px;}
.y17{bottom:692.985000px;}
.y1c1{bottom:696.162000px;}
.yb1{bottom:701.814000px;}
.y180{bottom:702.204000px;}
.y210{bottom:702.442500px;}
.y48{bottom:707.523000px;}
.y243{bottom:709.347000px;}
.y82{bottom:710.493000px;}
.y1e1{bottom:710.781000px;}
.ye1{bottom:712.173000px;}
.y124{bottom:712.174500px;}
.y1c0{bottom:715.395000px;}
.y155{bottom:718.615500px;}
.y7f{bottom:718.713000px;}
.y20f{bottom:721.809000px;}
.yb0{bottom:722.077500px;}
.y17f{bottom:722.467500px;}
.y81{bottom:726.931500px;}
.y47{bottom:727.786500px;}
.y267{bottom:728.509500px;}
.y242{bottom:728.715000px;}
.y1e0{bottom:731.044500px;}
.y16{bottom:731.991000px;}
.yc3{bottom:734.602500px;}
.y111{bottom:734.604000px;}
.y1bf{bottom:734.628000px;}
.y7e{bottom:735.150000px;}
.y154{bottom:737.848500px;}
.y20e{bottom:741.177000px;}
.yaf{bottom:742.342500px;}
.y17e{bottom:742.732500px;}
.y80{bottom:743.370000px;}
.y266{bottom:747.876000px;}
.y46{bottom:748.051500px;}
.y241{bottom:748.081500px;}
.y15{bottom:750.147000px;}
.y1df{bottom:751.308000px;}
.y19d{bottom:757.057500px;}
.y153{bottom:757.081500px;}
.yae{bottom:762.606000px;}
.y17d{bottom:762.996000px;}
.y265{bottom:767.244000px;}
.y240{bottom:767.449500px;}
.y45{bottom:768.315000px;}
.y20d{bottom:769.510500px;}
.y1de{bottom:771.573000px;}
.y14{bottom:773.187000px;}
.y7d{bottom:774.990000px;}
.y132{bottom:779.511000px;}
.yad{bottom:782.871000px;}
.y17c{bottom:783.261000px;}
.y13{bottom:786.462000px;}
.y23f{bottom:786.816000px;}
.y44{bottom:788.578500px;}
.y1dd{bottom:791.836500px;}
.y264{bottom:796.590000px;}
.yac{bottom:803.134500px;}
.y23e{bottom:806.184000px;}
.y43{bottom:808.843500px;}
.y20c{bottom:808.963500px;}
.y12{bottom:809.500500px;}
.y263{bottom:811.788000px;}
.y7c{bottom:812.101500px;}
.yff{bottom:817.809000px;}
.yab{bottom:823.398000px;}
.y23d{bottom:825.552000px;}
.y17b{bottom:826.389000px;}
.y11{bottom:827.658000px;}
.y42{bottom:829.107000px;}
.y7b{bottom:832.365000px;}
.y20b{bottom:833.127000px;}
.y72{bottom:838.074000px;}
.y17a{bottom:840.585000px;}
.y10{bottom:840.933000px;}
.yaa{bottom:843.663000px;}
.y23c{bottom:844.918500px;}
.y20a{bottom:848.325000px;}
.y41{bottom:849.372000px;}
.y7a{bottom:852.628500px;}
.y179{bottom:854.782500px;}
.y209{bottom:863.523000px;}
.ya9{bottom:863.926500px;}
.yf{bottom:863.971500px;}
.y23b{bottom:864.286500px;}
.y40{bottom:869.635500px;}
.y71{bottom:872.893500px;}
.y178{bottom:876.840000px;}
.ye{bottom:877.246500px;}
.y208{bottom:878.721000px;}
.y23a{bottom:883.653000px;}
.ya8{bottom:884.191500px;}
.y3f{bottom:889.899000px;}
.y70{bottom:893.157000px;}
.y177{bottom:893.635500px;}
.y207{bottom:893.919000px;}
.yd{bottom:900.285000px;}
.y239{bottom:903.021000px;}
.ya7{bottom:904.455000px;}
.y6d{bottom:910.164000px;}
.y176{bottom:910.431000px;}
.y6f{bottom:913.422000px;}
.yc{bottom:913.560000px;}
.y206{bottom:918.084000px;}
.y3e{bottom:919.129500px;}
.y238{bottom:922.389000px;}
.ya6{bottom:924.718500px;}
.y175{bottom:927.226500px;}
.y6c{bottom:930.427500px;}
.yb{bottom:931.717500px;}
.y6e{bottom:933.685500px;}
.y237{bottom:941.755500px;}
.y205{bottom:942.249000px;}
.ya5{bottom:944.983500px;}
.ya{bottom:949.875000px;}
.y6b{bottom:950.692500px;}
.y173{bottom:950.868000px;}
.y3d{bottom:953.949000px;}
.y9{bottom:954.756000px;}
.y204{bottom:957.447000px;}
.y172{bottom:959.086500px;}
.y236{bottom:961.123500px;}
.ya4{bottom:965.247000px;}
.y174{bottom:967.306500px;}
.y6a{bottom:970.956000px;}
.y203{bottom:972.645000px;}
.y3c{bottom:974.214000px;}
.y8{bottom:976.047000px;}
.y235{bottom:980.490000px;}
.ya3{bottom:985.512000px;}
.y202{bottom:987.843000px;}
.y69{bottom:991.219500px;}
.y3b{bottom:994.477500px;}
.y7{bottom:996.310500px;}
.y171{bottom:998.925000px;}
.y234{bottom:999.858000px;}
.ya2{bottom:1005.775500px;}
.y68{bottom:1011.484500px;}
.y201{bottom:1012.008000px;}
.y3a{bottom:1014.742500px;}
.y170{bottom:1018.158000px;}
.y233{bottom:1019.226000px;}
.ya1{bottom:1026.039000px;}
.y200{bottom:1027.206000px;}
.y67{bottom:1031.748000px;}
.y39{bottom:1035.006000px;}
.y232{bottom:1038.592500px;}
.y6{bottom:1040.848500px;}
.y1ff{bottom:1042.404000px;}
.ya0{bottom:1046.304000px;}
.y38{bottom:1055.269500px;}
.y231{bottom:1057.960500px;}
.y66{bottom:1060.978500px;}
.y9f{bottom:1066.567500px;}
.y5{bottom:1071.244500px;}
.y37{bottom:1075.534500px;}
.y230{bottom:1077.327000px;}
.y9e{bottom:1086.832500px;}
.y36{bottom:1095.798000px;}
.y22f{bottom:1096.695000px;}
.y4{bottom:1100.145000px;}
.y35{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y34{bottom:1168.366500px;}
.ha{height:25.508090px;}
.h1c{height:25.661837px;}
.h1b{height:28.512961px;}
.h21{height:30.342298px;}
.h8{height:30.461558px;}
.h1f{height:31.116995px;}
.h22{height:31.332188px;}
.h23{height:31.590420px;}
.h24{height:32.518008px;}
.hc{height:33.112997px;}
.hb{height:34.199443px;}
.h1e{height:34.813397px;}
.hf{height:35.100320px;}
.h14{height:35.356905px;}
.h12{height:36.104462px;}
.h26{height:37.927872px;}
.h20{height:38.888597px;}
.h10{height:38.896243px;}
.h9{height:39.165235px;}
.h17{height:39.420588px;}
.h11{height:39.488026px;}
.hd{height:43.217759px;}
.he{height:43.516637px;}
.h16{height:43.625275px;}
.h18{height:43.800360px;}
.h4{height:43.875290px;}
.h15{height:50.275326px;}
.h2{height:50.931027px;}
.h7{height:54.541601px;}
.h6{height:54.547601px;}
.h1d{height:71.776243px;}
.h5{height:77.792486px;}
.h3{height:90.598785px;}
.h1a{height:351.496500px;}
.h25{height:373.950000px;}
.h19{height:396.403500px;}
.h13{height:396.405000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:205.107834px;}
.w6{width:430.086000px;}
.w5{width:481.903500px;}
.w7{width:550.993500px;}
.w4{width:633.037650px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x98{left:-116.611498px;}
.x9a{left:-84.751507px;}
.x93{left:-82.930498px;}
.xb6{left:-55.294498px;}
.x95{left:-51.070507px;}
.xb7{left:-23.434507px;}
.x80{left:-13.840348px;}
.x0{left:0.000000px;}
.x82{left:18.019643px;}
.x7{left:29.274117px;}
.x2{left:58.055459px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.306000px;}
.x7f{left:129.938850px;}
.x4{left:146.097000px;}
.x17{left:147.690000px;}
.xba{left:150.817500px;}
.x18{left:155.161500px;}
.x19{left:158.973000px;}
.x7d{left:161.029500px;}
.xb1{left:163.835700px;}
.x1a{left:166.444500px;}
.x86{left:167.679000px;}
.xb5{left:170.961000px;}
.xb0{left:173.453700px;}
.x7e{left:175.974000px;}
.x8a{left:180.834000px;}
.x87{left:182.623500px;}
.x5e{left:184.543500px;}
.xb4{left:188.050500px;}
.x8{left:192.649500px;}
.xad{left:198.022500px;}
.x5a{left:200.022000px;}
.x9{left:202.042500px;}
.x83{left:203.139000px;}
.x96{left:204.253500px;}
.x92{left:205.506000px;}
.x4f{left:212.019000px;}
.x5b{left:214.966500px;}
.x65{left:220.525500px;}
.x5f{left:221.932500px;}
.x57{left:224.517000px;}
.x1b{left:226.236000px;}
.x91{left:229.677000px;}
.x97{left:231.414000px;}
.x1d{left:233.608500px;}
.xd3{left:238.071000px;}
.x25{left:239.179500px;}
.x1c{left:241.179000px;}
.xab{left:244.009500px;}
.x1e{left:248.553000px;}
.xdf{left:251.667000px;}
.x26{left:254.124000px;}
.xaa{left:255.495000px;}
.xc6{left:258.520500px;}
.xe0{left:267.238500px;}
.xc7{left:273.465000px;}
.xd2{left:279.373500px;}
.xca{left:288.426000px;}
.xc2{left:295.800000px;}
.xac{left:305.212500px;}
.x9b{left:306.465000px;}
.xc3{left:310.744500px;}
.x50{left:315.568500px;}
.x9c{left:316.929000px;}
.x51{left:323.040000px;}
.x52{left:326.727000px;}
.xae{left:331.430100px;}
.xcb{left:333.601500px;}
.xb3{left:339.117300px;}
.x53{left:341.671500px;}
.xa6{left:345.858000px;}
.xcc{left:348.546000px;}
.x71{left:353.679000px;}
.x4a{left:363.730500px;}
.xa3{left:367.146000px;}
.x6e{left:368.284500px;}
.x36{left:370.369500px;}
.x6a{left:371.646000px;}
.x69{left:374.443500px;}
.x8b{left:376.107000px;}
.x60{left:378.183000px;}
.x1f{left:379.243500px;}
.x66{left:381.397500px;}
.x28{left:382.750500px;}
.x37{left:385.314000px;}
.x38{left:389.124000px;}
.x8c{left:391.051500px;}
.x20{left:394.188000px;}
.x40{left:396.621000px;}
.x29{left:397.695000px;}
.x39{left:404.068500px;}
.xd0{left:411.615000px;}
.x9d{left:413.451000px;}
.xa4{left:417.646500px;}
.x3c{left:420.286500px;}
.xd1{left:426.559500px;}
.xa5{left:427.644000px;}
.x99{left:429.868530px;}
.xb2{left:431.098500px;}
.x3d{left:435.231000px;}
.x77{left:436.288500px;}
.x78{left:449.698500px;}
.x58{left:450.807000px;}
.x7a{left:455.809500px;}
.x59{left:458.280000px;}
.xaf{left:460.578900px;}
.x7b{left:470.754000px;}
.x7c{left:474.565500px;}
.x6f{left:480.111000px;}
.x6b{left:483.474000px;}
.x21{left:485.016000px;}
.x4d{left:486.511500px;}
.x61{left:489.633000px;}
.x94{left:491.809525px;}
.x62{left:493.204500px;}
.x67{left:494.233500px;}
.x68{left:496.923000px;}
.x22{left:499.960500px;}
.x4e{left:501.454500px;}
.xa7{left:506.208000px;}
.x74{left:507.396000px;}
.xc0{left:511.644000px;}
.x41{left:514.335000px;}
.x9e{left:516.352500px;}
.x79{left:520.236000px;}
.x46{left:521.316000px;}
.x9f{left:524.542500px;}
.xc1{left:526.588500px;}
.x47{left:536.260500px;}
.x32{left:539.299500px;}
.x8d{left:541.021500px;}
.x48{left:543.598500px;}
.x2e{left:544.789500px;}
.xcd{left:547.296000px;}
.x2f{left:552.262500px;}
.x33{left:554.244000px;}
.x8e{left:555.966000px;}
.x49{left:558.541500px;}
.x5c{left:562.866000px;}
.x2c{left:564.093000px;}
.xce{left:566.050500px;}
.xa0{left:567.286500px;}
.x5d{left:570.337500px;}
.x42{left:574.272000px;}
.xa1{left:577.284000px;}
.x2d{left:579.037500px;}
.xcf{left:580.995000px;}
.x43{left:589.216500px;}
.x70{left:591.937500px;}
.x44{left:593.026500px;}
.x6d{left:595.300500px;}
.x6c{left:598.098000px;}
.x34{left:600.450000px;}
.x64{left:601.689000px;}
.x3a{left:602.697000px;}
.x63{left:605.031000px;}
.xa9{left:606.235500px;}
.x45{left:607.971000px;}
.x3b{left:610.168500px;}
.x10{left:611.355000px;}
.xa8{left:613.222500px;}
.x35{left:615.394500px;}
.x11{left:618.828000px;}
.x12{left:622.492500px;}
.x13{left:629.964000px;}
.xc{left:631.447500px;}
.x8f{left:634.503000px;}
.x81{left:637.399675px;}
.xd{left:638.919000px;}
.xe{left:642.580500px;}
.x90{left:644.500500px;}
.xf{left:650.052000px;}
.x30{left:651.226500px;}
.xc8{left:656.724000px;}
.xb8{left:659.463000px;}
.xda{left:663.123000px;}
.xc9{left:664.345500px;}
.x31{left:666.171000px;}
.xdb{left:668.272500px;}
.xb9{left:669.927000px;}
.xd7{left:673.218000px;}
.x23{left:674.536500px;}
.xd9{left:677.535000px;}
.x55{left:680.086500px;}
.x75{left:684.397500px;}
.xa2{left:687.970500px;}
.x24{left:689.479500px;}
.x56{left:695.031000px;}
.xd6{left:697.819500px;}
.x76{left:699.342000px;}
.x6{left:701.339982px;}
.x2a{left:702.394500px;}
.xc4{left:703.522500px;}
.xbd{left:705.121500px;}
.xd8{left:706.129500px;}
.xbe{left:708.168000px;}
.x14{left:709.623000px;}
.x72{left:711.841500px;}
.x15{left:713.284500px;}
.x2b{left:717.337500px;}
.xc5{left:718.465500px;}
.x54{left:719.715000px;}
.x16{left:720.756000px;}
.xbf{left:723.112500px;}
.x73{left:726.784500px;}
.xdc{left:728.062500px;}
.xde{left:729.247500px;}
.x88{left:732.771000px;}
.x3f{left:734.799000px;}
.x3e{left:736.381500px;}
.xbb{left:738.061500px;}
.x89{left:742.768500px;}
.xd4{left:749.590500px;}
.x84{left:751.819500px;}
.xbc{left:753.006000px;}
.xdd{left:754.962000px;}
.x27{left:756.199500px;}
.x4b{left:758.245500px;}
.xa{left:764.367000px;}
.x85{left:766.762500px;}
.xb{left:771.838500px;}
.x4c{left:773.188500px;}
.xd5{left:776.490000px;}
@media print{
.v2{vertical-align:-17.354667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.888000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:29.226667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.000110pt;}
.ls0{letter-spacing:0.000213pt;}
.ls91{letter-spacing:0.000222pt;}
.ls3d{letter-spacing:0.000368pt;}
.ls79{letter-spacing:0.000387pt;}
.ls3e{letter-spacing:0.000540pt;}
.ls8c{letter-spacing:0.000572pt;}
.ls14{letter-spacing:0.000577pt;}
.ls85{letter-spacing:0.000711pt;}
.ls27{letter-spacing:0.000752pt;}
.ls35{letter-spacing:0.000830pt;}
.ls86{letter-spacing:0.000921pt;}
.ls2f{letter-spacing:0.001007pt;}
.ls97{letter-spacing:0.001069pt;}
.ls34{letter-spacing:0.001203pt;}
.ls89{letter-spacing:0.001251pt;}
.lse{letter-spacing:0.001349pt;}
.lsf{letter-spacing:0.001774pt;}
.ls7a{letter-spacing:0.001808pt;}
.ls59{letter-spacing:0.001939pt;}
.lsd{letter-spacing:0.001977pt;}
.ls71{letter-spacing:0.002041pt;}
.ls7f{letter-spacing:0.002078pt;}
.ls11{letter-spacing:0.002128pt;}
.ls8e{letter-spacing:0.002136pt;}
.ls1e{letter-spacing:0.002368pt;}
.ls41{letter-spacing:0.002422pt;}
.ls88{letter-spacing:0.002435pt;}
.ls7e{letter-spacing:0.002517pt;}
.ls65{letter-spacing:0.002551pt;}
.ls12{letter-spacing:0.002613pt;}
.ls13{letter-spacing:0.002630pt;}
.ls60{letter-spacing:0.002641pt;}
.ls52{letter-spacing:0.003057pt;}
.ls9{letter-spacing:0.003100pt;}
.lsc{letter-spacing:0.003106pt;}
.ls66{letter-spacing:0.003430pt;}
.ls8d{letter-spacing:0.003814pt;}
.ls10{letter-spacing:0.003942pt;}
.ls78{letter-spacing:0.004252pt;}
.ls83{letter-spacing:0.004267pt;}
.ls36{letter-spacing:0.159500pt;}
.ls37{letter-spacing:0.159504pt;}
.ls38{letter-spacing:0.159560pt;}
.ls4c{letter-spacing:0.230294pt;}
.ls57{letter-spacing:0.230298pt;}
.ls58{letter-spacing:0.230358pt;}
.ls4a{letter-spacing:0.230418pt;}
.ls49{letter-spacing:0.230538pt;}
.ls4d{letter-spacing:0.318880pt;}
.ls4b{letter-spacing:0.319004pt;}
.ls4e{letter-spacing:0.319128pt;}
.ls7b{letter-spacing:0.469573pt;}
.ls7c{letter-spacing:0.474838pt;}
.lsb{letter-spacing:1.133683pt;}
.ls6e{letter-spacing:1.415175pt;}
.ls7{letter-spacing:1.654338pt;}
.ls3{letter-spacing:2.657067pt;}
.ls1{letter-spacing:2.665203pt;}
.ls6f{letter-spacing:9.564508pt;}
.ls6d{letter-spacing:9.565396pt;}
.ls75{letter-spacing:10.623733pt;}
.ls69{letter-spacing:10.624017pt;}
.ls8{letter-spacing:10.626533pt;}
.ls6b{letter-spacing:10.629067pt;}
.ls74{letter-spacing:10.629350pt;}
.ls73{letter-spacing:10.679149pt;}
.ls6c{letter-spacing:11.691093pt;}
.ls8b{letter-spacing:11.756086pt;}
.ls94{letter-spacing:11.838041pt;}
.ls90{letter-spacing:11.916800pt;}
.ls32{letter-spacing:11.950302pt;}
.ls7d{letter-spacing:11.954133pt;}
.ls30{letter-spacing:11.955635pt;}
.ls33{letter-spacing:11.955831pt;}
.ls31{letter-spacing:11.956745pt;}
.ls81{letter-spacing:11.959467pt;}
.ls92{letter-spacing:12.050176pt;}
.ls8f{letter-spacing:12.068969pt;}
.ls8a{letter-spacing:12.104179pt;}
.ls87{letter-spacing:12.254110pt;}
.ls96{letter-spacing:12.442186pt;}
.ls6a{letter-spacing:12.488173pt;}
.ls3c{letter-spacing:12.894260pt;}
.ls56{letter-spacing:12.894291pt;}
.ls53{letter-spacing:12.896899pt;}
.ls54{letter-spacing:12.899702pt;}
.ls55{letter-spacing:12.899733pt;}
.ls76{letter-spacing:13.071795pt;}
.ls77{letter-spacing:13.072257pt;}
.ls62{letter-spacing:13.128682pt;}
.ls61{letter-spacing:13.129737pt;}
.ls1f{letter-spacing:13.168082pt;}
.ls20{letter-spacing:13.170176pt;}
.ls2e{letter-spacing:13.177199pt;}
.ls2c{letter-spacing:13.197877pt;}
.ls2d{letter-spacing:13.201761pt;}
.ls64{letter-spacing:13.259583pt;}
.ls63{letter-spacing:13.264898pt;}
.ls5f{letter-spacing:13.280110pt;}
.ls5d{letter-spacing:13.281630pt;}
.ls5a{letter-spacing:13.282422pt;}
.ls3a{letter-spacing:13.283733pt;}
.ls3b{letter-spacing:13.285443pt;}
.ls5e{letter-spacing:13.286963pt;}
.ls26{letter-spacing:13.302050pt;}
.ls45{letter-spacing:13.306777pt;}
.ls25{letter-spacing:13.306850pt;}
.ls24{letter-spacing:13.307421pt;}
.ls44{letter-spacing:13.310400pt;}
.ls42{letter-spacing:13.312110pt;}
.ls15{letter-spacing:13.491308pt;}
.ls16{letter-spacing:13.495279pt;}
.ls28{letter-spacing:13.718803pt;}
.ls29{letter-spacing:13.720648pt;}
.ls2b{letter-spacing:14.255072pt;}
.ls23{letter-spacing:14.369136pt;}
.ls82{letter-spacing:14.512774pt;}
.ls4f{letter-spacing:14.592005pt;}
.ls50{letter-spacing:14.593851pt;}
.ls51{letter-spacing:14.599080pt;}
.ls95{letter-spacing:14.706238pt;}
.ls2a{letter-spacing:14.801156pt;}
.ls93{letter-spacing:14.821271pt;}
.ls46{letter-spacing:14.980779pt;}
.ls47{letter-spacing:14.984162pt;}
.ls1c{letter-spacing:15.226198pt;}
.ls1d{letter-spacing:15.229914pt;}
.ls48{letter-spacing:15.501809pt;}
.ls5b{letter-spacing:15.705731pt;}
.ls5c{letter-spacing:15.707576pt;}
.ls4{letter-spacing:15.942400pt;}
.ls84{letter-spacing:15.987284pt;}
.ls1a{letter-spacing:16.082201pt;}
.ls19{letter-spacing:16.083714pt;}
.ls1b{letter-spacing:16.087430pt;}
.ls40{letter-spacing:16.097888pt;}
.ls3f{letter-spacing:16.099733pt;}
.ls39{letter-spacing:16.418365pt;}
.ls18{letter-spacing:16.652136pt;}
.ls17{letter-spacing:16.653649pt;}
.ls80{letter-spacing:18.512774pt;}
.ls21{letter-spacing:22.086815pt;}
.ls22{letter-spacing:22.095273pt;}
.ls68{letter-spacing:32.650265pt;}
.ls2{letter-spacing:51.035733pt;}
.ls5{letter-spacing:62.432533pt;}
.ls6{letter-spacing:64.314231pt;}
.ls67{letter-spacing:202.238933pt;}
.ls70{letter-spacing:385.803046pt;}
.ls72{letter-spacing:395.172393pt;}
.ws0{word-spacing:-92.410167pt;}
.ws79{word-spacing:-29.701831pt;}
.wse{word-spacing:-15.461955pt;}
.wsb6{word-spacing:-13.915853pt;}
.ws27{word-spacing:-13.283467pt;}
.ws74{word-spacing:-13.280500pt;}
.ws1e{word-spacing:-12.369595pt;}
.ws7{word-spacing:-11.955200pt;}
.ws73{word-spacing:-10.720400pt;}
.ws1d{word-spacing:-10.626800pt;}
.ws3{word-spacing:-10.095467pt;}
.ws80{word-spacing:-4.569513pt;}
.ws4d{word-spacing:-4.091308pt;}
.ws12d{word-spacing:-3.586560pt;}
.ws75{word-spacing:-3.538739pt;}
.ws76{word-spacing:-3.347456pt;}
.wsfb{word-spacing:-2.917069pt;}
.wsde{word-spacing:-2.709827pt;}
.ws44{word-spacing:-2.497292pt;}
.wsf7{word-spacing:-2.343219pt;}
.ws49{word-spacing:-2.337890pt;}
.ws59{word-spacing:-2.284756pt;}
.ws117{word-spacing:-2.199757pt;}
.wsd5{word-spacing:-2.178489pt;}
.ws3a{word-spacing:-2.125355pt;}
.ws2c{word-spacing:-2.072221pt;}
.ws136{word-spacing:-2.008474pt;}
.wsce{word-spacing:-1.965953pt;}
.wsa3{word-spacing:-1.859685pt;}
.ws66{word-spacing:-1.806551pt;}
.ws81{word-spacing:-1.753418pt;}
.wsb{word-spacing:-1.696326pt;}
.ws13{word-spacing:-1.647150pt;}
.ws57{word-spacing:-1.594016pt;}
.ws6e{word-spacing:-1.275213pt;}
.wsa{word-spacing:-1.175671pt;}
.ws120{word-spacing:-1.099878pt;}
.ws2a{word-spacing:-1.062677pt;}
.ws6b{word-spacing:-1.009543pt;}
.ws2e{word-spacing:-0.956410pt;}
.ws6c{word-spacing:-0.903276pt;}
.ws83{word-spacing:-0.850142pt;}
.ws72{word-spacing:-0.743874pt;}
.ws7e{word-spacing:-0.690740pt;}
.ws98{word-spacing:-0.584473pt;}
.ws6d{word-spacing:-0.531339pt;}
.ws90{word-spacing:-0.526029pt;}
.wsd6{word-spacing:-0.478205pt;}
.ws108{word-spacing:-0.430387pt;}
.ws99{word-spacing:-0.425071pt;}
.ws9a{word-spacing:-0.389523pt;}
.ws7c{word-spacing:-0.386200pt;}
.ws7b{word-spacing:-0.371937pt;}
.ws91{word-spacing:-0.334746pt;}
.ws2f{word-spacing:-0.318803pt;}
.ws92{word-spacing:-0.286925pt;}
.ws1a{word-spacing:-0.265669pt;}
.ws9b{word-spacing:-0.256909pt;}
.ws9c{word-spacing:-0.251467pt;}
.wse4{word-spacing:-0.239104pt;}
.ws2d{word-spacing:-0.212535pt;}
.wsa2{word-spacing:-0.191283pt;}
.wsd{word-spacing:-0.159402pt;}
.wsac{word-spacing:-0.155720pt;}
.wsab{word-spacing:-0.154637pt;}
.ws111{word-spacing:-0.143462pt;}
.ws16{word-spacing:-0.106268pt;}
.wse7{word-spacing:-0.095642pt;}
.ws62{word-spacing:-0.079631pt;}
.ws17{word-spacing:-0.053134pt;}
.ws123{word-spacing:-0.049673pt;}
.ws8{word-spacing:-0.047821pt;}
.wsc1{word-spacing:-0.038257pt;}
.wsaf{word-spacing:-0.022707pt;}
.wsfa{word-spacing:-0.021350pt;}
.wsb0{word-spacing:-0.020035pt;}
.ws10b{word-spacing:-0.007876pt;}
.ws124{word-spacing:-0.007031pt;}
.ws5{word-spacing:-0.003459pt;}
.ws105{word-spacing:-0.003174pt;}
.ws12c{word-spacing:-0.003081pt;}
.ws132{word-spacing:-0.002577pt;}
.wsc2{word-spacing:-0.002560pt;}
.ws2{word-spacing:-0.002163pt;}
.ws1c{word-spacing:-0.001903pt;}
.wsbf{word-spacing:-0.001902pt;}
.ws9d{word-spacing:-0.001822pt;}
.wsbe{word-spacing:-0.001817pt;}
.ws64{word-spacing:-0.000871pt;}
.ws9e{word-spacing:-0.000800pt;}
.ws63{word-spacing:-0.000750pt;}
.wsbb{word-spacing:-0.000202pt;}
.wsc3{word-spacing:-0.000096pt;}
.ws1{word-spacing:0.000000pt;}
.wsaa{word-spacing:0.000533pt;}
.wsa9{word-spacing:0.001289pt;}
.ws89{word-spacing:0.024845pt;}
.ws88{word-spacing:0.025404pt;}
.ws5d{word-spacing:0.033710pt;}
.ws8a{word-spacing:0.036533pt;}
.wsc7{word-spacing:0.042507pt;}
.wse2{word-spacing:0.047821pt;}
.ws14{word-spacing:0.053134pt;}
.ws7a{word-spacing:0.091094pt;}
.ws6{word-spacing:0.095642pt;}
.ws12{word-spacing:0.106268pt;}
.wsc8{word-spacing:0.143462pt;}
.ws33{word-spacing:0.159402pt;}
.wse6{word-spacing:0.191283pt;}
.ws11{word-spacing:0.212535pt;}
.wsf3{word-spacing:0.239104pt;}
.ws28{word-spacing:0.265669pt;}
.wse5{word-spacing:0.286925pt;}
.ws15{word-spacing:0.318803pt;}
.ws133{word-spacing:0.334746pt;}
.wsd7{word-spacing:0.371937pt;}
.ws114{word-spacing:0.382566pt;}
.ws5e{word-spacing:0.425071pt;}
.ws115{word-spacing:0.430387pt;}
.ws5f{word-spacing:0.449479pt;}
.ws135{word-spacing:0.478208pt;}
.ws3f{word-spacing:0.531339pt;}
.ws3e{word-spacing:0.584473pt;}
.ws4c{word-spacing:0.637606pt;}
.ws116{word-spacing:0.669491pt;}
.ws47{word-spacing:0.690740pt;}
.wscc{word-spacing:0.743874pt;}
.ws25{word-spacing:0.797008pt;}
.wsee{word-spacing:0.812954pt;}
.wsd0{word-spacing:0.850142pt;}
.ws137{word-spacing:0.860774pt;}
.wscf{word-spacing:0.903276pt;}
.ws70{word-spacing:0.956410pt;}
.wsf4{word-spacing:0.956416pt;}
.ws58{word-spacing:1.062677pt;}
.ws4b{word-spacing:1.115811pt;}
.ws78{word-spacing:1.168945pt;}
.wsae{word-spacing:1.202047pt;}
.ws45{word-spacing:1.222079pt;}
.ws113{word-spacing:1.243341pt;}
.ws10{word-spacing:1.275213pt;}
.ws138{word-spacing:1.291162pt;}
.ws97{word-spacing:1.306060pt;}
.ws94{word-spacing:1.311851pt;}
.ws93{word-spacing:1.328347pt;}
.ws71{word-spacing:1.381481pt;}
.wse1{word-spacing:1.386803pt;}
.ws53{word-spacing:1.434614pt;}
.wsa0{word-spacing:1.482445pt;}
.ws35{word-spacing:1.487748pt;}
.ws60{word-spacing:1.509464pt;}
.ws61{word-spacing:1.509574pt;}
.wsa1{word-spacing:1.530266pt;}
.ws19{word-spacing:1.540882pt;}
.ws69{word-spacing:1.594016pt;}
.ws56{word-spacing:1.647150pt;}
.ws11a{word-spacing:1.678983pt;}
.ws8c{word-spacing:1.693551pt;}
.ws68{word-spacing:1.700284pt;}
.ws96{word-spacing:1.704089pt;}
.ws95{word-spacing:1.709318pt;}
.ws11b{word-spacing:1.721549pt;}
.ws9f{word-spacing:1.769370pt;}
.ws46{word-spacing:1.806551pt;}
.wsbd{word-spacing:1.827810pt;}
.ws26{word-spacing:1.859685pt;}
.wsbc{word-spacing:1.870317pt;}
.ws3d{word-spacing:1.912819pt;}
.ws4f{word-spacing:1.965953pt;}
.wsf0{word-spacing:2.008474pt;}
.wsb2{word-spacing:2.056294pt;}
.ws24{word-spacing:2.072221pt;}
.ws23{word-spacing:2.125355pt;}
.ws12e{word-spacing:2.151936pt;}
.ws7f{word-spacing:2.178489pt;}
.ws8d{word-spacing:2.185135pt;}
.ws11c{word-spacing:2.199757pt;}
.ws8e{word-spacing:2.203829pt;}
.ws8b{word-spacing:2.207581pt;}
.ws8f{word-spacing:2.231622pt;}
.ws129{word-spacing:2.247578pt;}
.wscd{word-spacing:2.337890pt;}
.wsb1{word-spacing:2.343219pt;}
.ws37{word-spacing:2.391024pt;}
.wsa7{word-spacing:2.425577pt;}
.wsa6{word-spacing:2.444158pt;}
.ws41{word-spacing:2.497292pt;}
.wsf1{word-spacing:2.534502pt;}
.ws3c{word-spacing:2.656693pt;}
.wse9{word-spacing:2.725786pt;}
.ws2b{word-spacing:2.762961pt;}
.ws12f{word-spacing:2.773606pt;}
.ws5b{word-spacing:2.816095pt;}
.ws85{word-spacing:2.817734pt;}
.ws121{word-spacing:2.964890pt;}
.wsd3{word-spacing:2.975497pt;}
.wsd1{word-spacing:3.028630pt;}
.ws112{word-spacing:3.060531pt;}
.ws55{word-spacing:3.081764pt;}
.wsa8{word-spacing:3.100167pt;}
.wsed{word-spacing:3.108352pt;}
.ws4a{word-spacing:3.134898pt;}
.ws101{word-spacing:3.156173pt;}
.ws82{word-spacing:3.188032pt;}
.wsdf{word-spacing:3.241166pt;}
.ws5a{word-spacing:3.347434pt;}
.ws12b{word-spacing:3.347456pt;}
.ws67{word-spacing:3.453701pt;}
.wsdb{word-spacing:3.506835pt;}
.ws118{word-spacing:3.538739pt;}
.ws3b{word-spacing:3.559969pt;}
.ws86{word-spacing:3.581213pt;}
.ws127{word-spacing:3.586560pt;}
.wsda{word-spacing:3.613103pt;}
.ws54{word-spacing:3.666237pt;}
.ws10d{word-spacing:3.682202pt;}
.wsad{word-spacing:3.772505pt;}
.ws130{word-spacing:3.777843pt;}
.ws36{word-spacing:3.825638pt;}
.wsc0{word-spacing:3.878772pt;}
.ws10e{word-spacing:3.921306pt;}
.ws21{word-spacing:3.985040pt;}
.ws103{word-spacing:4.016947pt;}
.ws42{word-spacing:4.038174pt;}
.ws65{word-spacing:4.091308pt;}
.wsd2{word-spacing:4.197575pt;}
.ws20{word-spacing:4.303843pt;}
.ws10f{word-spacing:4.351693pt;}
.wsdd{word-spacing:4.356977pt;}
.ws84{word-spacing:4.370139pt;}
.ws128{word-spacing:4.399514pt;}
.wsa5{word-spacing:4.410111pt;}
.ws39{word-spacing:4.516379pt;}
.ws38{word-spacing:4.569513pt;}
.wse0{word-spacing:4.622646pt;}
.ws10a{word-spacing:4.686438pt;}
.ws22{word-spacing:4.728914pt;}
.wse8{word-spacing:4.774588pt;}
.wsf9{word-spacing:4.774707pt;}
.ws107{word-spacing:4.777557pt;}
.wsfe{word-spacing:4.777711pt;}
.wsf6{word-spacing:4.777967pt;}
.ws11f{word-spacing:4.778138pt;}
.ws131{word-spacing:4.778479pt;}
.wsfd{word-spacing:4.779921pt;}
.ws10c{word-spacing:4.780041pt;}
.ws122{word-spacing:4.780245pt;}
.wse3{word-spacing:4.781175pt;}
.ws11d{word-spacing:4.781184pt;}
.ws100{word-spacing:4.781961pt;}
.ws9{word-spacing:4.782080pt;}
.ws119{word-spacing:4.782268pt;}
.wsfc{word-spacing:4.782626pt;}
.ws125{word-spacing:4.783121pt;}
.ws110{word-spacing:4.783172pt;}
.ws106{word-spacing:4.783189pt;}
.wsf5{word-spacing:4.783838pt;}
.ws4e{word-spacing:4.835182pt;}
.ws77{word-spacing:4.888316pt;}
.ws11e{word-spacing:4.973363pt;}
.wsd8{word-spacing:4.994583pt;}
.wsc9{word-spacing:5.069005pt;}
.ws6f{word-spacing:5.153985pt;}
.ws40{word-spacing:5.207119pt;}
.wsea{word-spacing:5.212467pt;}
.wsf8{word-spacing:5.308109pt;}
.wsa4{word-spacing:5.311200pt;}
.ws18{word-spacing:5.313387pt;}
.wsf2{word-spacing:5.355930pt;}
.ws50{word-spacing:5.366521pt;}
.ws32{word-spacing:5.472788pt;}
.ws6a{word-spacing:5.525922pt;}
.ws1b{word-spacing:5.579056pt;}
.wsef{word-spacing:5.690675pt;}
.ws48{word-spacing:5.738458pt;}
.wsf{word-spacing:5.791591pt;}
.wscb{word-spacing:5.950993pt;}
.ws51{word-spacing:6.004127pt;}
.ws109{word-spacing:6.025421pt;}
.ws34{word-spacing:6.057261pt;}
.wsc{word-spacing:6.163529pt;}
.ws134{word-spacing:6.216704pt;}
.wsec{word-spacing:6.551450pt;}
.wsdc{word-spacing:6.748001pt;}
.ws52{word-spacing:6.854269pt;}
.ws29{word-spacing:6.960537pt;}
.ws104{word-spacing:7.029658pt;}
.wsff{word-spacing:7.077478pt;}
.wsd9{word-spacing:7.385607pt;}
.ws126{word-spacing:8.129536pt;}
.wsca{word-spacing:8.448285pt;}
.wsd4{word-spacing:8.501419pt;}
.ws31{word-spacing:8.607686pt;}
.ws5c{word-spacing:8.820222pt;}
.ws7d{word-spacing:11.264380pt;}
.ws43{word-spacing:11.423781pt;}
.ws12a{word-spacing:11.907379pt;}
.ws87{word-spacing:14.186742pt;}
.ws30{word-spacing:14.611813pt;}
.ws102{word-spacing:14.680986pt;}
.wseb{word-spacing:20.754227pt;}
.wsba{word-spacing:22.018730pt;}
.wsb9{word-spacing:22.045835pt;}
.ws4{word-spacing:35.616629pt;}
.wsb3{word-spacing:121.512653pt;}
.wsb4{word-spacing:195.013222pt;}
.wsb7{word-spacing:198.551962pt;}
.wsc4{word-spacing:291.056517pt;}
.wsc5{word-spacing:310.835200pt;}
.wsc6{word-spacing:384.769044pt;}
.wsb5{word-spacing:528.993690pt;}
.ws1f{word-spacing:761.133923pt;}
.wsb8{word-spacing:811.710259pt;}
._26{margin-left:-16.418365pt;}
._0{margin-left:-7.077478pt;}
._4{margin-left:-5.308109pt;}
._3{margin-left:-4.256051pt;}
._d{margin-left:-3.065812pt;}
._5{margin-left:-1.769370pt;}
._7{width:0.969929pt;}
._1{width:2.667366pt;}
._24{width:3.878772pt;}
._27{width:4.883574pt;}
._2a{width:5.791958pt;}
._2d{width:6.761281pt;}
._29{width:7.651436pt;}
._28{width:8.556377pt;}
._16{width:10.082068pt;}
._23{width:10.975564pt;}
._c{width:12.571497pt;}
._a{width:14.043293pt;}
._15{width:15.419495pt;}
._6{width:16.737280pt;}
._9{width:18.331184pt;}
._b{width:19.303546pt;}
._8{width:20.366223pt;}
._10{width:21.359814pt;}
._19{width:22.773199pt;}
._13{width:24.191861pt;}
._f{width:25.344854pt;}
._43{width:26.460666pt;}
._12{width:27.460548pt;}
._20{width:28.745422pt;}
._14{width:29.701831pt;}
._2e{width:31.136446pt;}
._1f{width:32.124759pt;}
._25{width:33.474336pt;}
._17{width:35.015218pt;}
._21{width:36.093847pt;}
._18{width:37.618778pt;}
._11{width:39.850400pt;}
._1a{width:45.419828pt;}
._2{width:48.341794pt;}
._45{width:54.993920pt;}
._37{width:59.042501pt;}
._44{width:78.904320pt;}
._32{width:136.014268pt;}
._33{width:138.640751pt;}
._2f{width:146.044723pt;}
._34{width:163.218927pt;}
._30{width:170.643234pt;}
._3d{width:188.492506pt;}
._41{width:196.371333pt;}
._31{width:206.824960pt;}
._36{width:208.088320pt;}
._42{width:226.976645pt;}
._3b{width:228.392141pt;}
._35{width:233.519949pt;}
._1c{width:258.184499pt;}
._40{width:279.417713pt;}
._3c{width:288.396868pt;}
._1e{width:289.985331pt;}
._3e{width:331.799839pt;}
._3f{width:333.215334pt;}
._1b{width:361.142682pt;}
._38{width:384.058409pt;}
._39{width:397.036974pt;}
._3a{width:752.469852pt;}
._1d{width:756.094669pt;}
._2c{width:1435.672991pt;}
._22{width:1456.684975pt;}
._2b{width:1800.863237pt;}
._e{width:1822.116570pt;}
.fse{font-size:29.754880pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fsd{font-size:38.256640pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:42.881600pt;}
.fs5{font-size:47.820800pt;}
.fsc{font-size:48.002000pt;}
.fsb{font-size:53.122000pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:64.002404pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:118.779135pt;}
.y134{bottom:-651.217319pt;}
.y19f{bottom:-629.722652pt;}
.y113{bottom:-615.905319pt;}
.y152{bottom:-612.337253pt;}
.yc5{bottom:-608.995985pt;}
.y151{bottom:-594.417270pt;}
.y150{bottom:-576.337253pt;}
.y1be{bottom:-566.682613pt;}
.y14f{bottom:-558.417270pt;}
.y1bd{bottom:-548.602596pt;}
.y14e{bottom:-540.337253pt;}
.y1bc{bottom:-530.682613pt;}
.ye0{bottom:-527.875929pt;}
.y14d{bottom:-522.417270pt;}
.y1bb{bottom:-512.602596pt;}
.ydf{bottom:-509.795912pt;}
.y14c{bottom:-504.337253pt;}
.y1ba{bottom:-494.682613pt;}
.yde{bottom:-491.875929pt;}
.y14b{bottom:-486.417270pt;}
.y1b9{bottom:-476.762630pt;}
.ydd{bottom:-473.795912pt;}
.y14a{bottom:-460.497287pt;}
.y1b8{bottom:-458.682613pt;}
.ydc{bottom:-455.875929pt;}
.y1b7{bottom:-440.762630pt;}
.ydb{bottom:-437.795912pt;}
.y149{bottom:-426.417270pt;}
.y1b6{bottom:-422.682613pt;}
.yda{bottom:-419.875929pt;}
.y148{bottom:-408.497287pt;}
.y1b5{bottom:-404.762630pt;}
.yd9{bottom:-401.955946pt;}
.y147{bottom:-390.417270pt;}
.y1b4{bottom:-386.682613pt;}
.yd8{bottom:-383.875929pt;}
.y1b3{bottom:-368.762630pt;}
.yd7{bottom:-365.955946pt;}
.y146{bottom:-364.497287pt;}
.y1b2{bottom:-350.842586pt;}
.yd6{bottom:-347.875929pt;}
.y1b1{bottom:-332.762630pt;}
.y145{bottom:-330.417270pt;}
.yd5{bottom:-329.955946pt;}
.y1b0{bottom:-314.842586pt;}
.y144{bottom:-312.497287pt;}
.y123{bottom:-312.385299pt;}
.yd4{bottom:-311.875929pt;}
.y1af{bottom:-296.762630pt;}
.y143{bottom:-294.577304pt;}
.y122{bottom:-294.305282pt;}
.yd3{bottom:-292.035963pt;}
.y1ae{bottom:-278.842586pt;}
.y142{bottom:-276.497287pt;}
.y121{bottom:-276.385299pt;}
.yd2{bottom:-270.275953pt;}
.y1ad{bottom:-260.762630pt;}
.y141{bottom:-258.577304pt;}
.y120{bottom:-258.305282pt;}
.yd1{bottom:-248.515943pt;}
.y1ac{bottom:-242.842586pt;}
.y140{bottom:-240.497287pt;}
.y11f{bottom:-240.385299pt;}
.yd0{bottom:-226.755934pt;}
.y1ab{bottom:-224.922603pt;}
.y13f{bottom:-222.577304pt;}
.y11e{bottom:-222.465255pt;}
.y1aa{bottom:-206.842586pt;}
.ycf{bottom:-204.995924pt;}
.y13e{bottom:-204.497287pt;}
.y11d{bottom:-204.385299pt;}
.y1a9{bottom:-188.922603pt;}
.y13d{bottom:-186.577304pt;}
.y11c{bottom:-186.465255pt;}
.yce{bottom:-183.235914pt;}
.y1a8{bottom:-170.842586pt;}
.y13c{bottom:-168.657260pt;}
.y11b{bottom:-168.385299pt;}
.ycd{bottom:-161.635939pt;}
.y1a7{bottom:-152.922603pt;}
.y13b{bottom:-150.577304pt;}
.y11a{bottom:-142.465255pt;}
.ycc{bottom:-139.875929pt;}
.y1a6{bottom:-134.842586pt;}
.y13a{bottom:-124.657260pt;}
.ycb{bottom:-118.115919pt;}
.y1a5{bottom:-116.922603pt;}
.y119{bottom:-108.385299pt;}
.yca{bottom:-96.355970pt;}
.y139{bottom:-90.897281pt;}
.y1a4{bottom:-90.842586pt;}
.y118{bottom:-90.465255pt;}
.yc9{bottom:-74.595961pt;}
.y138{bottom:-73.617282pt;}
.y1a3{bottom:-57.242610pt;}
.y117{bottom:-56.865280pt;}
.y137{bottom:-56.337284pt;}
.y1a2{bottom:-39.962612pt;}
.y116{bottom:-39.425277pt;}
.yc8{bottom:-39.235945pt;}
.y136{bottom:-30.577274pt;}
.y1a1{bottom:-22.682613pt;}
.y115{bottom:-22.145279pt;}
.yc7{bottom:-21.955946pt;}
.y1a0{bottom:-0.762599pt;}
.y135{bottom:-0.497287pt;}
.y114{bottom:-0.385269pt;}
.yc6{bottom:-0.035932pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:1.340260pt;}
.y1a{bottom:3.044747pt;}
.y19{bottom:12.578910pt;}
.y2{bottom:23.811396pt;}
.y33{bottom:56.693333pt;}
.y32{bottom:96.544000pt;}
.y262{bottom:96.850667pt;}
.yfe{bottom:97.580000pt;}
.y65{bottom:106.545333pt;}
.y22e{bottom:107.929333pt;}
.y79{bottom:108.724000pt;}
.y1fe{bottom:109.441333pt;}
.y16f{bottom:110.560000pt;}
.y261{bottom:114.066667pt;}
.y1dc{bottom:114.405333pt;}
.y31{bottom:114.556000pt;}
.yfd{bottom:115.593333pt;}
.y64{bottom:124.558667pt;}
.y22d{bottom:125.144000pt;}
.y78{bottom:126.737333pt;}
.y1fd{bottom:127.454667pt;}
.y16e{bottom:128.573333pt;}
.y260{bottom:131.281333pt;}
.y1db{bottom:132.418667pt;}
.y30{bottom:132.568000pt;}
.yfc{bottom:133.605333pt;}
.y9d{bottom:140.389333pt;}
.y22c{bottom:142.360000pt;}
.y63{bottom:142.570667pt;}
.y77{bottom:144.749333pt;}
.y1fc{bottom:145.466667pt;}
.y16d{bottom:146.585333pt;}
.y25f{bottom:148.497333pt;}
.y1da{bottom:150.430667pt;}
.y2f{bottom:150.581333pt;}
.yfb{bottom:151.618667pt;}
.y9c{bottom:158.401333pt;}
.y22b{bottom:159.576000pt;}
.y62{bottom:160.584000pt;}
.y76{bottom:162.762667pt;}
.y1fb{bottom:163.478667pt;}
.y16c{bottom:164.597333pt;}
.y25e{bottom:165.713333pt;}
.y1d9{bottom:168.442667pt;}
.y2e{bottom:168.593333pt;}
.yfa{bottom:169.630667pt;}
.y9b{bottom:176.413333pt;}
.y22a{bottom:176.790667pt;}
.y61{bottom:178.596000pt;}
.y19c{bottom:179.134667pt;}
.y75{bottom:180.774667pt;}
.y1fa{bottom:181.492000pt;}
.y16b{bottom:182.610667pt;}
.y25d{bottom:182.928000pt;}
.y1d8{bottom:186.456000pt;}
.y2d{bottom:186.606667pt;}
.yf9{bottom:187.642667pt;}
.y19b{bottom:191.753333pt;}
.y229{bottom:194.006667pt;}
.y9a{bottom:194.426667pt;}
.y60{bottom:196.608000pt;}
.y1f9{bottom:199.504000pt;}
.y25c{bottom:200.144000pt;}
.y16a{bottom:200.622667pt;}
.y1d7{bottom:204.468000pt;}
.yf8{bottom:205.656000pt;}
.y74{bottom:206.757333pt;}
.y19a{bottom:209.751733pt;}
.y228{bottom:211.221333pt;}
.y99{bottom:212.438667pt;}
.y2c{bottom:212.589333pt;}
.y5f{bottom:214.621333pt;}
.y25b{bottom:217.358667pt;}
.y1f8{bottom:217.517333pt;}
.y169{bottom:218.636000pt;}
.y199{bottom:221.695200pt;}
.y1d6{bottom:222.481333pt;}
.yf7{bottom:223.668000pt;}
.y110{bottom:226.842667pt;}
.y227{bottom:228.437333pt;}
.y98{bottom:230.452000pt;}
.y5e{bottom:232.633333pt;}
.y198{bottom:233.384800pt;}
.y25a{bottom:234.574667pt;}
.y1f7{bottom:235.529333pt;}
.y168{bottom:236.648000pt;}
.y73{bottom:237.708000pt;}
.y1d5{bottom:240.493333pt;}
.yf6{bottom:241.681333pt;}
.y10f{bottom:244.854667pt;}
.y197{bottom:245.073333pt;}
.y226{bottom:245.653333pt;}
.y97{bottom:248.464000pt;}
.y5d{bottom:250.646667pt;}
.y259{bottom:251.790667pt;}
.y1f6{bottom:253.541333pt;}
.y167{bottom:254.660000pt;}
.y1d4{bottom:258.505333pt;}
.yf5{bottom:259.693333pt;}
.y196{bottom:262.138933pt;}
.y10e{bottom:262.866667pt;}
.y225{bottom:262.868000pt;}
.yc2{bottom:265.762667pt;}
.y96{bottom:266.476000pt;}
.y5c{bottom:268.658667pt;}
.y258{bottom:269.005333pt;}
.y1f5{bottom:271.554667pt;}
.y166{bottom:272.673333pt;}
.y1d3{bottom:276.518667pt;}
.yf4{bottom:277.705333pt;}
.y195{bottom:279.204533pt;}
.y224{bottom:280.084000pt;}
.y2b{bottom:280.513333pt;}
.y10d{bottom:280.880000pt;}
.yc1{bottom:283.776000pt;}
.y95{bottom:284.489333pt;}
.y257{bottom:286.221333pt;}
.y193{bottom:286.416267pt;}
.y5b{bottom:286.670667pt;}
.y1f4{bottom:289.566667pt;}
.y1d2{bottom:294.530667pt;}
.yf3{bottom:295.718667pt;}
.y194{bottom:296.090933pt;}
.y223{bottom:297.298667pt;}
.y2a{bottom:298.526667pt;}
.y165{bottom:298.656000pt;}
.y10c{bottom:298.892000pt;}
.yc0{bottom:301.788000pt;}
.y94{bottom:302.501333pt;}
.y256{bottom:303.437333pt;}
.y5a{bottom:304.684000pt;}
.y1f3{bottom:307.580000pt;}
.y1d1{bottom:312.544000pt;}
.y192{bottom:313.512800pt;}
.yf2{bottom:313.730667pt;}
.y222{bottom:314.514667pt;}
.y10b{bottom:316.905333pt;}
.ybf{bottom:319.800000pt;}
.y255{bottom:320.652000pt;}
.y59{bottom:322.696000pt;}
.y1f2{bottom:325.592000pt;}
.y164{bottom:329.606667pt;}
.y1d0{bottom:330.556000pt;}
.y191{bottom:330.578400pt;}
.y133{bottom:331.662724pt;}
.y221{bottom:331.730667pt;}
.yf1{bottom:331.744000pt;}
.y29{bottom:332.478667pt;}
.y10a{bottom:334.917333pt;}
.y93{bottom:337.517333pt;}
.ybe{bottom:337.813333pt;}
.y254{bottom:337.868000pt;}
.y58{bottom:340.709333pt;}
.y190{bottom:342.521867pt;}
.y1f1{bottom:343.604000pt;}
.y163{bottom:347.618667pt;}
.y1cf{bottom:348.568000pt;}
.y220{bottom:348.945333pt;}
.yf0{bottom:349.756000pt;}
.y28{bottom:350.492000pt;}
.y109{bottom:352.929333pt;}
.y19e{bottom:353.157391pt;}
.y18f{bottom:354.465333pt;}
.y253{bottom:355.082667pt;}
.ybd{bottom:355.825333pt;}
.y92{bottom:357.124000pt;}
.y57{bottom:358.721333pt;}
.y1f0{bottom:361.617333pt;}
.y162{bottom:365.632000pt;}
.y21f{bottom:366.161333pt;}
.y1ce{bottom:366.581333pt;}
.y131{bottom:366.708000pt;}
.y112{bottom:366.974724pt;}
.yef{bottom:367.768000pt;}
.y27{bottom:368.504000pt;}
.y108{bottom:370.942667pt;}
.y18e{bottom:371.529867pt;}
.y91{bottom:372.053333pt;}
.y252{bottom:372.298667pt;}
.ybc{bottom:373.838667pt;}
.yc4{bottom:373.884058pt;}
.y56{bottom:376.733333pt;}
.y1ef{bottom:379.629333pt;}
.y21e{bottom:383.376000pt;}
.y1cd{bottom:384.593333pt;}
.y130{bottom:384.720000pt;}
.yee{bottom:385.781333pt;}
.y26{bottom:386.517333pt;}
.y90{bottom:386.982667pt;}
.y18d{bottom:388.595467pt;}
.y107{bottom:388.954667pt;}
.y251{bottom:389.514667pt;}
.y161{bottom:391.614667pt;}
.ybb{bottom:391.850667pt;}
.y55{bottom:394.746667pt;}
.y18b{bottom:395.808267pt;}
.y1ee{bottom:397.642667pt;}
.y21d{bottom:400.592000pt;}
.y8f{bottom:401.912000pt;}
.y1cc{bottom:402.606667pt;}
.y12f{bottom:402.732000pt;}
.yed{bottom:403.793333pt;}
.y25{bottom:404.529333pt;}
.y18c{bottom:405.481867pt;}
.y250{bottom:406.729333pt;}
.yba{bottom:409.862667pt;}
.y54{bottom:412.758667pt;}
.y106{bottom:414.937333pt;}
.y1ed{bottom:415.654667pt;}
.y8e{bottom:416.524000pt;}
.y21c{bottom:417.808000pt;}
.y1cb{bottom:420.618667pt;}
.y12e{bottom:420.745333pt;}
.yec{bottom:421.806667pt;}
.y24{bottom:422.541333pt;}
.y160{bottom:422.565333pt;}
.y18a{bottom:422.904800pt;}
.y24f{bottom:423.945333pt;}
.yb9{bottom:427.876000pt;}
.y53{bottom:430.772000pt;}
.y8d{bottom:431.136000pt;}
.y1ec{bottom:433.666667pt;}
.y21b{bottom:435.022667pt;}
.y1ca{bottom:438.630667pt;}
.y12d{bottom:438.757333pt;}
.yeb{bottom:439.818667pt;}
.y23{bottom:440.554667pt;}
.y15f{bottom:440.577333pt;}
.y24e{bottom:441.160000pt;}
.yb8{bottom:445.888000pt;}
.y189{bottom:448.009333pt;}
.y52{bottom:448.784000pt;}
.y1eb{bottom:451.680000pt;}
.y21a{bottom:452.238667pt;}
.y8c{bottom:452.468000pt;}
.y1c9{bottom:456.644000pt;}
.y12c{bottom:456.770667pt;}
.yea{bottom:457.830667pt;}
.y24d{bottom:458.376000pt;}
.y22{bottom:458.566667pt;}
.y15e{bottom:458.589333pt;}
.yb7{bottom:463.901333pt;}
.y188{bottom:465.105333pt;}
.y51{bottom:466.796000pt;}
.y219{bottom:469.453333pt;}
.y1ea{bottom:469.692000pt;}
.y8b{bottom:473.798667pt;}
.y1c8{bottom:474.656000pt;}
.y12b{bottom:474.782667pt;}
.y24c{bottom:475.592000pt;}
.ye9{bottom:475.844000pt;}
.y21{bottom:476.580000pt;}
.y15d{bottom:476.602667pt;}
.yb6{bottom:481.913333pt;}
.y50{bottom:484.809333pt;}
.y218{bottom:486.669333pt;}
.y1e9{bottom:487.704000pt;}
.y8a{bottom:488.728000pt;}
.y1c7{bottom:492.669333pt;}
.y12a{bottom:492.794667pt;}
.y24b{bottom:492.806667pt;}
.ye8{bottom:493.856000pt;}
.y20{bottom:494.592000pt;}
.y15c{bottom:494.614667pt;}
.y187{bottom:498.093333pt;}
.yb5{bottom:499.925333pt;}
.y4f{bottom:502.821333pt;}
.y89{bottom:503.340000pt;}
.y217{bottom:503.885333pt;}
.y1e8{bottom:505.717333pt;}
.y24a{bottom:510.022667pt;}
.y1c6{bottom:510.681333pt;}
.ye7{bottom:511.869333pt;}
.y1f{bottom:512.604000pt;}
.y15b{bottom:512.628000pt;}
.y186{bottom:516.106667pt;}
.y105{bottom:517.938667pt;}
.y88{bottom:517.952000pt;}
.y129{bottom:518.777333pt;}
.y4e{bottom:520.834667pt;}
.y216{bottom:521.100000pt;}
.y1e7{bottom:523.729333pt;}
.yb4{bottom:525.908000pt;}
.y249{bottom:527.237333pt;}
.y1c5{bottom:528.693333pt;}
.ye6{bottom:529.881333pt;}
.y1e{bottom:530.617333pt;}
.y15a{bottom:530.640000pt;}
.y185{bottom:534.118667pt;}
.y104{bottom:535.950667pt;}
.y215{bottom:538.316000pt;}
.y4d{bottom:538.846667pt;}
.y87{bottom:539.284000pt;}
.y1e6{bottom:541.742667pt;}
.y248{bottom:544.453333pt;}
.y1c4{bottom:546.706667pt;}
.ye5{bottom:547.893333pt;}
.y1d{bottom:548.629333pt;}
.y159{bottom:548.652000pt;}
.y128{bottom:549.728000pt;}
.y184{bottom:552.130667pt;}
.y103{bottom:553.964000pt;}
.y214{bottom:555.530667pt;}
.y4c{bottom:556.858667pt;}
.y1e5{bottom:559.754667pt;}
.y86{bottom:560.297333pt;}
.y247{bottom:561.669333pt;}
.y1c3{bottom:564.718667pt;}
.ye4{bottom:565.906667pt;}
.y1c{bottom:566.642667pt;}
.y158{bottom:566.665333pt;}
.y127{bottom:567.741333pt;}
.y183{bottom:570.144000pt;}
.y102{bottom:571.976000pt;}
.y213{bottom:572.746667pt;}
.y4b{bottom:574.872000pt;}
.y85{bottom:574.909333pt;}
.y1e4{bottom:577.766667pt;}
.y246{bottom:578.884000pt;}
.ye3{bottom:583.918667pt;}
.y1b{bottom:584.654667pt;}
.y157{bottom:584.677333pt;}
.yb3{bottom:587.809333pt;}
.y182{bottom:588.156000pt;}
.y212{bottom:589.962667pt;}
.y101{bottom:589.988000pt;}
.y1c2{bottom:590.701333pt;}
.y4a{bottom:592.884000pt;}
.y1e3{bottom:595.780000pt;}
.y84{bottom:595.924000pt;}
.y245{bottom:596.100000pt;}
.y126{bottom:598.852000pt;}
.ye2{bottom:601.932000pt;}
.yb2{bottom:605.822667pt;}
.y181{bottom:606.169333pt;}
.y211{bottom:607.177333pt;}
.y83{bottom:610.536000pt;}
.y156{bottom:610.660000pt;}
.y49{bottom:610.896000pt;}
.y244{bottom:613.314667pt;}
.y1e2{bottom:613.792000pt;}
.y18{bottom:615.305301pt;}
.y125{bottom:615.948000pt;}
.y100{bottom:615.970667pt;}
.y17{bottom:615.986667pt;}
.y1c1{bottom:618.810667pt;}
.yb1{bottom:623.834667pt;}
.y180{bottom:624.181333pt;}
.y210{bottom:624.393333pt;}
.y48{bottom:628.909333pt;}
.y243{bottom:630.530667pt;}
.y82{bottom:631.549333pt;}
.y1e1{bottom:631.805333pt;}
.ye1{bottom:633.042667pt;}
.y124{bottom:633.044000pt;}
.y1c0{bottom:635.906667pt;}
.y155{bottom:638.769333pt;}
.y7f{bottom:638.856000pt;}
.y20f{bottom:641.608000pt;}
.yb0{bottom:641.846667pt;}
.y17f{bottom:642.193333pt;}
.y81{bottom:646.161333pt;}
.y47{bottom:646.921333pt;}
.y267{bottom:647.564000pt;}
.y242{bottom:647.746667pt;}
.y1e0{bottom:649.817333pt;}
.y16{bottom:650.658667pt;}
.yc3{bottom:652.980000pt;}
.y111{bottom:652.981333pt;}
.y1bf{bottom:653.002667pt;}
.y7e{bottom:653.466667pt;}
.y154{bottom:655.865333pt;}
.y20e{bottom:658.824000pt;}
.yaf{bottom:659.860000pt;}
.y17e{bottom:660.206667pt;}
.y80{bottom:660.773333pt;}
.y266{bottom:664.778667pt;}
.y46{bottom:664.934667pt;}
.y241{bottom:664.961333pt;}
.y15{bottom:666.797333pt;}
.y1df{bottom:667.829333pt;}
.y19d{bottom:672.940000pt;}
.y153{bottom:672.961333pt;}
.yae{bottom:677.872000pt;}
.y17d{bottom:678.218667pt;}
.y265{bottom:681.994667pt;}
.y240{bottom:682.177333pt;}
.y45{bottom:682.946667pt;}
.y20d{bottom:684.009333pt;}
.y1de{bottom:685.842667pt;}
.y14{bottom:687.277333pt;}
.y7d{bottom:688.880000pt;}
.y132{bottom:692.898667pt;}
.yad{bottom:695.885333pt;}
.y17c{bottom:696.232000pt;}
.y13{bottom:699.077333pt;}
.y23f{bottom:699.392000pt;}
.y44{bottom:700.958667pt;}
.y1dd{bottom:703.854667pt;}
.y264{bottom:708.080000pt;}
.yac{bottom:713.897333pt;}
.y23e{bottom:716.608000pt;}
.y43{bottom:718.972000pt;}
.y20c{bottom:719.078667pt;}
.y12{bottom:719.556000pt;}
.y263{bottom:721.589333pt;}
.y7c{bottom:721.868000pt;}
.yff{bottom:726.941333pt;}
.yab{bottom:731.909333pt;}
.y23d{bottom:733.824000pt;}
.y17b{bottom:734.568000pt;}
.y11{bottom:735.696000pt;}
.y42{bottom:736.984000pt;}
.y7b{bottom:739.880000pt;}
.y20b{bottom:740.557333pt;}
.y72{bottom:744.954667pt;}
.y17a{bottom:747.186667pt;}
.y10{bottom:747.496000pt;}
.yaa{bottom:749.922667pt;}
.y23c{bottom:751.038667pt;}
.y20a{bottom:754.066667pt;}
.y41{bottom:754.997333pt;}
.y7a{bottom:757.892000pt;}
.y179{bottom:759.806667pt;}
.y209{bottom:767.576000pt;}
.ya9{bottom:767.934667pt;}
.yf{bottom:767.974667pt;}
.y23b{bottom:768.254667pt;}
.y40{bottom:773.009333pt;}
.y71{bottom:775.905333pt;}
.y178{bottom:779.413333pt;}
.ye{bottom:779.774667pt;}
.y208{bottom:781.085333pt;}
.y23a{bottom:785.469333pt;}
.ya8{bottom:785.948000pt;}
.y3f{bottom:791.021333pt;}
.y70{bottom:793.917333pt;}
.y177{bottom:794.342667pt;}
.y207{bottom:794.594667pt;}
.yd{bottom:800.253333pt;}
.y239{bottom:802.685333pt;}
.ya7{bottom:803.960000pt;}
.y6d{bottom:809.034667pt;}
.y176{bottom:809.272000pt;}
.y6f{bottom:811.930667pt;}
.yc{bottom:812.053333pt;}
.y206{bottom:816.074667pt;}
.y3e{bottom:817.004000pt;}
.y238{bottom:819.901333pt;}
.ya6{bottom:821.972000pt;}
.y175{bottom:824.201333pt;}
.y6c{bottom:827.046667pt;}
.yb{bottom:828.193333pt;}
.y6e{bottom:829.942667pt;}
.y237{bottom:837.116000pt;}
.y205{bottom:837.554667pt;}
.ya5{bottom:839.985333pt;}
.ya{bottom:844.333333pt;}
.y6b{bottom:845.060000pt;}
.y173{bottom:845.216000pt;}
.y3d{bottom:847.954667pt;}
.y9{bottom:848.672000pt;}
.y204{bottom:851.064000pt;}
.y172{bottom:852.521333pt;}
.y236{bottom:854.332000pt;}
.ya4{bottom:857.997333pt;}
.y174{bottom:859.828000pt;}
.y6a{bottom:863.072000pt;}
.y203{bottom:864.573333pt;}
.y3c{bottom:865.968000pt;}
.y8{bottom:867.597333pt;}
.y235{bottom:871.546667pt;}
.ya3{bottom:876.010667pt;}
.y202{bottom:878.082667pt;}
.y69{bottom:881.084000pt;}
.y3b{bottom:883.980000pt;}
.y7{bottom:885.609333pt;}
.y171{bottom:887.933333pt;}
.y234{bottom:888.762667pt;}
.ya2{bottom:894.022667pt;}
.y68{bottom:899.097333pt;}
.y201{bottom:899.562667pt;}
.y3a{bottom:901.993333pt;}
.y170{bottom:905.029333pt;}
.y233{bottom:905.978667pt;}
.ya1{bottom:912.034667pt;}
.y200{bottom:913.072000pt;}
.y67{bottom:917.109333pt;}
.y39{bottom:920.005333pt;}
.y232{bottom:923.193333pt;}
.y6{bottom:925.198667pt;}
.y1ff{bottom:926.581333pt;}
.ya0{bottom:930.048000pt;}
.y38{bottom:938.017333pt;}
.y231{bottom:940.409333pt;}
.y66{bottom:943.092000pt;}
.y9f{bottom:948.060000pt;}
.y5{bottom:952.217333pt;}
.y37{bottom:956.030667pt;}
.y230{bottom:957.624000pt;}
.y9e{bottom:966.073333pt;}
.y36{bottom:974.042667pt;}
.y22f{bottom:974.840000pt;}
.y4{bottom:977.906667pt;}
.y35{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y34{bottom:1038.548000pt;}
.ha{height:22.673858pt;}
.h1c{height:22.810522pt;}
.h1b{height:25.344854pt;}
.h21{height:26.970931pt;}
.h8{height:27.076941pt;}
.h1f{height:27.659551pt;}
.h22{height:27.850834pt;}
.h23{height:28.080374pt;}
.h24{height:28.904896pt;}
.hc{height:29.433775pt;}
.hb{height:30.399505pt;}
.h1e{height:30.945242pt;}
.hf{height:31.200285pt;}
.h14{height:31.428360pt;}
.h12{height:32.092855pt;}
.h26{height:33.713664pt;}
.h20{height:34.567642pt;}
.h10{height:34.574438pt;}
.h9{height:34.813542pt;}
.h17{height:35.040522pt;}
.h11{height:35.100467pt;}
.hd{height:38.415786pt;}
.he{height:38.681455pt;}
.h16{height:38.778022pt;}
.h18{height:38.933653pt;}
.h4{height:39.000258pt;}
.h15{height:44.689179pt;}
.h2{height:45.272024pt;}
.h7{height:48.481423pt;}
.h6{height:48.486756pt;}
.h1d{height:63.801105pt;}
.h5{height:69.148877pt;}
.h3{height:80.532253pt;}
.h1a{height:312.441333pt;}
.h25{height:332.400000pt;}
.h19{height:352.358667pt;}
.h13{height:352.360000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:182.318075pt;}
.w6{width:382.298667pt;}
.w5{width:428.358667pt;}
.w7{width:489.772000pt;}
.w4{width:562.700133pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x98{left:-103.654665pt;}
.x9a{left:-75.334673pt;}
.x93{left:-73.715998pt;}
.xb6{left:-49.150665pt;}
.x95{left:-45.396006pt;}
.xb7{left:-20.830673pt;}
.x80{left:-12.302531pt;}
.x0{left:0.000000pt;}
.x82{left:16.017461pt;}
.x7{left:26.021437pt;}
.x2{left:51.604853pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.605333pt;}
.x7f{left:115.501200pt;}
.x4{left:129.864000pt;}
.x17{left:131.280000pt;}
.xba{left:134.060000pt;}
.x18{left:137.921333pt;}
.x19{left:141.309333pt;}
.x7d{left:143.137333pt;}
.xb1{left:145.631733pt;}
.x1a{left:147.950667pt;}
.x86{left:149.048000pt;}
.xb5{left:151.965333pt;}
.xb0{left:154.181067pt;}
.x7e{left:156.421333pt;}
.x8a{left:160.741333pt;}
.x87{left:162.332000pt;}
.x5e{left:164.038667pt;}
.xb4{left:167.156000pt;}
.x8{left:171.244000pt;}
.xad{left:176.020000pt;}
.x5a{left:177.797333pt;}
.x9{left:179.593333pt;}
.x83{left:180.568000pt;}
.x96{left:181.558667pt;}
.x92{left:182.672000pt;}
.x4f{left:188.461333pt;}
.x5b{left:191.081333pt;}
.x65{left:196.022667pt;}
.x5f{left:197.273333pt;}
.x57{left:199.570667pt;}
.x1b{left:201.098667pt;}
.x91{left:204.157333pt;}
.x97{left:205.701333pt;}
.x1d{left:207.652000pt;}
.xd3{left:211.618667pt;}
.x25{left:212.604000pt;}
.x1c{left:214.381333pt;}
.xab{left:216.897333pt;}
.x1e{left:220.936000pt;}
.xdf{left:223.704000pt;}
.x26{left:225.888000pt;}
.xaa{left:227.106667pt;}
.xc6{left:229.796000pt;}
.xe0{left:237.545333pt;}
.xc7{left:243.080000pt;}
.xd2{left:248.332000pt;}
.xca{left:256.378667pt;}
.xc2{left:262.933333pt;}
.xac{left:271.300000pt;}
.x9b{left:272.413333pt;}
.xc3{left:276.217333pt;}
.x50{left:280.505333pt;}
.x9c{left:281.714667pt;}
.x51{left:287.146667pt;}
.x52{left:290.424000pt;}
.xae{left:294.604533pt;}
.xcb{left:296.534667pt;}
.xb3{left:301.437600pt;}
.x53{left:303.708000pt;}
.xa6{left:307.429333pt;}
.xcc{left:309.818667pt;}
.x71{left:314.381333pt;}
.x4a{left:323.316000pt;}
.xa3{left:326.352000pt;}
.x6e{left:327.364000pt;}
.x36{left:329.217333pt;}
.x6a{left:330.352000pt;}
.x69{left:332.838667pt;}
.x8b{left:334.317333pt;}
.x60{left:336.162667pt;}
.x1f{left:337.105333pt;}
.x66{left:339.020000pt;}
.x28{left:340.222667pt;}
.x37{left:342.501333pt;}
.x38{left:345.888000pt;}
.x8c{left:347.601333pt;}
.x20{left:350.389333pt;}
.x40{left:352.552000pt;}
.x29{left:353.506667pt;}
.x39{left:359.172000pt;}
.xd0{left:365.880000pt;}
.x9d{left:367.512000pt;}
.xa4{left:371.241333pt;}
.x3c{left:373.588000pt;}
.xd1{left:379.164000pt;}
.xa5{left:380.128000pt;}
.x99{left:382.105360pt;}
.xb2{left:383.198667pt;}
.x3d{left:386.872000pt;}
.x77{left:387.812000pt;}
.x78{left:399.732000pt;}
.x58{left:400.717333pt;}
.x7a{left:405.164000pt;}
.x59{left:407.360000pt;}
.xaf{left:409.403467pt;}
.x7b{left:418.448000pt;}
.x7c{left:421.836000pt;}
.x6f{left:426.765333pt;}
.x6b{left:429.754667pt;}
.x21{left:431.125333pt;}
.x4d{left:432.454667pt;}
.x61{left:435.229333pt;}
.x94{left:437.164022pt;}
.x62{left:438.404000pt;}
.x67{left:439.318667pt;}
.x68{left:441.709333pt;}
.x22{left:444.409333pt;}
.x4e{left:445.737333pt;}
.xa7{left:449.962667pt;}
.x74{left:451.018667pt;}
.xc0{left:454.794667pt;}
.x41{left:457.186667pt;}
.x9e{left:458.980000pt;}
.x79{left:462.432000pt;}
.x46{left:463.392000pt;}
.x9f{left:466.260000pt;}
.xc1{left:468.078667pt;}
.x47{left:476.676000pt;}
.x32{left:479.377333pt;}
.x8d{left:480.908000pt;}
.x48{left:483.198667pt;}
.x2e{left:484.257333pt;}
.xcd{left:486.485333pt;}
.x2f{left:490.900000pt;}
.x33{left:492.661333pt;}
.x8e{left:494.192000pt;}
.x49{left:496.481333pt;}
.x5c{left:500.325333pt;}
.x2c{left:501.416000pt;}
.xce{left:503.156000pt;}
.xa0{left:504.254667pt;}
.x5d{left:506.966667pt;}
.x42{left:510.464000pt;}
.xa1{left:513.141333pt;}
.x2d{left:514.700000pt;}
.xcf{left:516.440000pt;}
.x43{left:523.748000pt;}
.x70{left:526.166667pt;}
.x44{left:527.134667pt;}
.x6d{left:529.156000pt;}
.x6c{left:531.642667pt;}
.x34{left:533.733333pt;}
.x64{left:534.834667pt;}
.x3a{left:535.730667pt;}
.x63{left:537.805333pt;}
.xa9{left:538.876000pt;}
.x45{left:540.418667pt;}
.x3b{left:542.372000pt;}
.x10{left:543.426667pt;}
.xa8{left:545.086667pt;}
.x35{left:547.017333pt;}
.x11{left:550.069333pt;}
.x12{left:553.326667pt;}
.x13{left:559.968000pt;}
.xc{left:561.286667pt;}
.x8f{left:564.002667pt;}
.x81{left:566.577489pt;}
.xd{left:567.928000pt;}
.xe{left:571.182667pt;}
.x90{left:572.889333pt;}
.xf{left:577.824000pt;}
.x30{left:578.868000pt;}
.xc8{left:583.754667pt;}
.xb8{left:586.189333pt;}
.xda{left:589.442667pt;}
.xc9{left:590.529333pt;}
.x31{left:592.152000pt;}
.xdb{left:594.020000pt;}
.xb9{left:595.490667pt;}
.xd7{left:598.416000pt;}
.x23{left:599.588000pt;}
.xd9{left:602.253333pt;}
.x55{left:604.521333pt;}
.x75{left:608.353333pt;}
.xa2{left:611.529333pt;}
.x24{left:612.870667pt;}
.x56{left:617.805333pt;}
.xd6{left:620.284000pt;}
.x76{left:621.637333pt;}
.x6{left:623.413317pt;}
.x2a{left:624.350667pt;}
.xc4{left:625.353333pt;}
.xbd{left:626.774667pt;}
.xd8{left:627.670667pt;}
.xbe{left:629.482667pt;}
.x14{left:630.776000pt;}
.x72{left:632.748000pt;}
.x15{left:634.030667pt;}
.x2b{left:637.633333pt;}
.xc5{left:638.636000pt;}
.x54{left:639.746667pt;}
.x16{left:640.672000pt;}
.xbf{left:642.766667pt;}
.x73{left:646.030667pt;}
.xdc{left:647.166667pt;}
.xde{left:648.220000pt;}
.x88{left:651.352000pt;}
.x3f{left:653.154667pt;}
.x3e{left:654.561333pt;}
.xbb{left:656.054667pt;}
.x89{left:660.238667pt;}
.xd4{left:666.302667pt;}
.x84{left:668.284000pt;}
.xbc{left:669.338667pt;}
.xdd{left:671.077333pt;}
.x27{left:672.177333pt;}
.x4b{left:673.996000pt;}
.xa{left:679.437333pt;}
.x85{left:681.566667pt;}
.xb{left:686.078667pt;}
.x4c{left:687.278667pt;}
.xd5{left:690.213333pt;}
}




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