
    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_ceab5cccd4a0c5f7c7b159c7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946000;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_a47ff2a189f57f32c8b780d2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_83f4f3e6f67b0eb4c204bf8e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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_96f79c59d941d4c7c406781f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.203000;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_c7d24afa53493162fa251fe6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958000;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_58e06ffbe620e1655a9c074d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958496;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_8ed30e7ca7c248ad54414fde.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.349000;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_08c1cb9769f439de5fd11f01.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958496;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_7e06996ce159ba661274f31b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910000;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_abf1f74f2ce286983a4461cf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946000;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_a47ff2a189f57f32c8b780d2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.946000;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_83f4f3e6f67b0eb4c204bf8e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958000;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_58bd79746653ea4be8cb2f07.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958496;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.fff{font-family:fff;line-height:1.203000;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_3c10f019a1e424d979b416ef.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.384000;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_f1dc3b2bdbf962b9f1e0a591.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.200885;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_abf1f74f2ce286983a4461cf.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.946000;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_a47ff2a189f57f32c8b780d2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.946000;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_83f4f3e6f67b0eb4c204bf8e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.958000;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_58bd79746653ea4be8cb2f07.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958496;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.203000;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_f0fa816320280edbe6c5ef42.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.938000;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_0b4fb3aceb8d7b2741072128.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.728000;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_94a0ff7d07f6a521218e4434.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.362000;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_806cf4dee9ccdd0b037cb09a.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.392000;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;}
.m2{transform:matrix(0.000011,-0.250000,0.250000,0.000011,0,0);-ms-transform:matrix(0.000011,-0.250000,0.250000,0.000011,0,0);-webkit-transform:matrix(0.000011,-0.250000,0.250000,0.000011,0,0);}
.m3{transform:matrix(0.000011,-0.267073,0.250000,0.000011,0,0);-ms-transform:matrix(0.000011,-0.267073,0.250000,0.000011,0,0);-webkit-transform:matrix(0.000011,-0.267073,0.250000,0.000011,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);}
.m1{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);}
.v5{vertical-align:-49.518001px;}
.v2{vertical-align:-18.359985px;}
.v7{vertical-align:-14.615999px;}
.v3{vertical-align:-10.842590px;}
.v8{vertical-align:-8.388512px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:8.400513px;}
.v4{vertical-align:10.800568px;}
.v6{vertical-align:14.250027px;}
.v1{vertical-align:18.191985px;}
.va{vertical-align:22.512000px;}
.ls61{letter-spacing:-4.788000px;}
.ls5e{letter-spacing:-4.746000px;}
.ls62{letter-spacing:-4.662000px;}
.ls60{letter-spacing:-4.578000px;}
.ls89{letter-spacing:-4.536000px;}
.ls86{letter-spacing:-4.212000px;}
.ls6a{letter-spacing:-3.570000px;}
.ls6c{letter-spacing:-3.066000px;}
.ls66{letter-spacing:-2.772000px;}
.lsaf{letter-spacing:-1.620000px;}
.ls4b{letter-spacing:-1.404000px;}
.lsa3{letter-spacing:-1.350000px;}
.ls98{letter-spacing:-1.305000px;}
.ls6d{letter-spacing:-1.092000px;}
.lsf{letter-spacing:-0.960000px;}
.lsad{letter-spacing:-0.945000px;}
.ls44{letter-spacing:-0.864000px;}
.lsa2{letter-spacing:-0.810000px;}
.ls67{letter-spacing:-0.798000px;}
.ls2b{letter-spacing:-0.756000px;}
.ls9d{letter-spacing:-0.720000px;}
.ls31{letter-spacing:-0.672000px;}
.ls30{letter-spacing:-0.630000px;}
.lsac{letter-spacing:-0.585000px;}
.ls7b{letter-spacing:-0.546000px;}
.ls3e{letter-spacing:-0.540000px;}
.ls97{letter-spacing:-0.495000px;}
.ls88{letter-spacing:-0.491400px;}
.ls3d{letter-spacing:-0.486000px;}
.ls9e{letter-spacing:-0.450000px;}
.lsb0{letter-spacing:-0.432000px;}
.ls64{letter-spacing:-0.420000px;}
.lsa6{letter-spacing:-0.405000px;}
.ls2c{letter-spacing:-0.386100px;}
.ls42{letter-spacing:-0.378000px;}
.lsa4{letter-spacing:-0.360000px;}
.ls69{letter-spacing:-0.354900px;}
.ls3f{letter-spacing:-0.351000px;}
.ls5a{letter-spacing:-0.336000px;}
.ls13{letter-spacing:-0.324000px;}
.ls82{letter-spacing:-0.315900px;}
.ls99{letter-spacing:-0.315000px;}
.ls63{letter-spacing:-0.273000px;}
.ls24{letter-spacing:-0.270000px;}
.ls6b{letter-spacing:-0.252000px;}
.ls5f{letter-spacing:-0.245700px;}
.ls9b{letter-spacing:-0.225000px;}
.ls5d{letter-spacing:-0.218400px;}
.ls18{letter-spacing:-0.216000px;}
.ls87{letter-spacing:-0.210600px;}
.ls2f{letter-spacing:-0.210000px;}
.ls9c{letter-spacing:-0.180000px;}
.ls25{letter-spacing:-0.175500px;}
.ls68{letter-spacing:-0.168000px;}
.ls11{letter-spacing:-0.162000px;}
.ls41{letter-spacing:-0.140400px;}
.ls5b{letter-spacing:-0.136500px;}
.ls9f{letter-spacing:-0.135000px;}
.ls6e{letter-spacing:-0.126000px;}
.ls5c{letter-spacing:-0.109200px;}
.ls10{letter-spacing:-0.108000px;}
.ls2d{letter-spacing:-0.105300px;}
.ls9a{letter-spacing:-0.090000px;}
.ls19{letter-spacing:-0.070200px;}
.ls84{letter-spacing:-0.060000px;}
.ls2e{letter-spacing:-0.054000px;}
.lsa1{letter-spacing:-0.045000px;}
.ls46{letter-spacing:-0.035100px;}
.lse{letter-spacing:0.000000px;}
.ls58{letter-spacing:0.000084px;}
.ls5{letter-spacing:0.009636px;}
.ls71{letter-spacing:0.027000px;}
.ls32{letter-spacing:0.030662px;}
.ls48{letter-spacing:0.035100px;}
.ls8c{letter-spacing:0.045000px;}
.ls72{letter-spacing:0.048611px;}
.ls3c{letter-spacing:0.054000px;}
.ls36{letter-spacing:0.070200px;}
.ls95{letter-spacing:0.090000px;}
.ls28{letter-spacing:0.105300px;}
.ls20{letter-spacing:0.108000px;}
.ls70{letter-spacing:0.108024px;}
.lsa7{letter-spacing:0.112492px;}
.ls92{letter-spacing:0.135001px;}
.ls27{letter-spacing:0.140400px;}
.ls23{letter-spacing:0.157948px;}
.ls14{letter-spacing:0.162000px;}
.ls65{letter-spacing:0.168000px;}
.ls1a{letter-spacing:0.175500px;}
.ls8b{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.188499px;}
.ls2{letter-spacing:0.194359px;}
.ls4e{letter-spacing:0.210000px;}
.ls45{letter-spacing:0.210600px;}
.ls1d{letter-spacing:0.216000px;}
.ls8a{letter-spacing:0.225000px;}
.ls96{letter-spacing:0.225039px;}
.ls91{letter-spacing:0.229460px;}
.ls2a{letter-spacing:0.245700px;}
.ls59{letter-spacing:0.252000px;}
.lsa{letter-spacing:0.270000px;}
.ls17{letter-spacing:0.280800px;}
.lsa8{letter-spacing:0.301500px;}
.ls8d{letter-spacing:0.315001px;}
.ls85{letter-spacing:0.315900px;}
.ls12{letter-spacing:0.324000px;}
.ls43{letter-spacing:0.351000px;}
.ls35{letter-spacing:0.354264px;}
.ls38{letter-spacing:0.372600px;}
.ls39{letter-spacing:0.377999px;}
.ls22{letter-spacing:0.378000px;}
.ls37{letter-spacing:0.383377px;}
.ls80{letter-spacing:0.385155px;}
.ls7e{letter-spacing:0.385795px;}
.ls34{letter-spacing:0.386100px;}
.ls73{letter-spacing:0.394217px;}
.ls8f{letter-spacing:0.405000px;}
.ls16{letter-spacing:0.421200px;}
.ls3{letter-spacing:0.432000px;}
.lsa5{letter-spacing:0.450000px;}
.ls33{letter-spacing:0.456300px;}
.ls4d{letter-spacing:0.485998px;}
.ls1c{letter-spacing:0.486000px;}
.ls15{letter-spacing:0.491400px;}
.ls94{letter-spacing:0.495000px;}
.ls83{letter-spacing:0.526500px;}
.ls21{letter-spacing:0.540000px;}
.ls6f{letter-spacing:0.550805px;}
.ls7d{letter-spacing:0.561008px;}
.ls90{letter-spacing:0.585000px;}
.ls1f{letter-spacing:0.594000px;}
.lsc{letter-spacing:0.612000px;}
.ls8e{letter-spacing:0.630000px;}
.ls9{letter-spacing:0.648000px;}
.ls7f{letter-spacing:0.648001px;}
.lsb{letter-spacing:0.663000px;}
.lsa0{letter-spacing:0.675000px;}
.ls8{letter-spacing:0.702000px;}
.ls4c{letter-spacing:0.718197px;}
.lsab{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.755999px;}
.ls7{letter-spacing:0.756000px;}
.ls93{letter-spacing:0.765000px;}
.ls29{letter-spacing:0.810000px;}
.lsae{letter-spacing:0.855000px;}
.lsd{letter-spacing:0.918000px;}
.lsaa{letter-spacing:0.972000px;}
.ls6{letter-spacing:1.080000px;}
.ls7a{letter-spacing:1.188000px;}
.ls74{letter-spacing:1.200000px;}
.lsa9{letter-spacing:1.260000px;}
.ls7c{letter-spacing:1.404000px;}
.ls26{letter-spacing:1.728000px;}
.ls0{letter-spacing:2.592000px;}
.ls1b{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls81{letter-spacing:6.120000px;}
.ls53{letter-spacing:24.150004px;}
.ls4f{letter-spacing:25.662004px;}
.ls49{letter-spacing:31.562897px;}
.ls50{letter-spacing:37.674005px;}
.ls3a{letter-spacing:37.968563px;}
.ls3b{letter-spacing:37.969112px;}
.ls57{letter-spacing:38.429995px;}
.ls55{letter-spacing:43.680000px;}
.ls4a{letter-spacing:43.962608px;}
.ls47{letter-spacing:45.467464px;}
.ls40{letter-spacing:45.502254px;}
.ls75{letter-spacing:49.476001px;}
.ls76{letter-spacing:50.988001px;}
.ls56{letter-spacing:54.180000px;}
.ls51{letter-spacing:55.692000px;}
.ls52{letter-spacing:56.406004px;}
.ls54{letter-spacing:61.697996px;}
.ls77{letter-spacing:79.464000px;}
.ls79{letter-spacing:80.976000px;}
.ls78{letter-spacing:110.964010px;}
.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;}
}
.ws76{word-spacing:-55.154554px;}
.ws73{word-spacing:-42.754843px;}
.ws2{word-spacing:-15.067500px;}
.ws29{word-spacing:-14.700000px;}
.wsf7{word-spacing:-13.596000px;}
.ws65{word-spacing:-13.500000px;}
.ws2e{word-spacing:-13.014000px;}
.ws2a{word-spacing:-12.906000px;}
.ws5d{word-spacing:-12.852000px;}
.wse6{word-spacing:-12.636000px;}
.ws66{word-spacing:-12.582000px;}
.ws1{word-spacing:-12.480000px;}
.ws61{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.360000px;}
.ws5{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws121{word-spacing:-12.042000px;}
.ws57{word-spacing:-11.718000px;}
.ws11f{word-spacing:-10.575000px;}
.wsfb{word-spacing:-10.305000px;}
.ws11e{word-spacing:-10.215000px;}
.wsb{word-spacing:-10.200000px;}
.wsf9{word-spacing:-9.990000px;}
.wsfa{word-spacing:-9.945000px;}
.ws109{word-spacing:-9.900000px;}
.ws105{word-spacing:-9.855000px;}
.wsfc{word-spacing:-9.765000px;}
.wsfd{word-spacing:-9.675000px;}
.ws111{word-spacing:-9.630000px;}
.ws98{word-spacing:-9.534000px;}
.wsfe{word-spacing:-9.495000px;}
.ws97{word-spacing:-9.324000px;}
.ws35{word-spacing:-9.114000px;}
.wsf8{word-spacing:-9.000000px;}
.wsd8{word-spacing:-8.862000px;}
.ws120{word-spacing:-8.685000px;}
.wse7{word-spacing:-8.494200px;}
.wsc9{word-spacing:-8.484000px;}
.ws6{word-spacing:-8.459100px;}
.ws56{word-spacing:-8.424000px;}
.ws7{word-spacing:-8.388900px;}
.ws5e{word-spacing:-8.353800px;}
.ws62{word-spacing:-8.318700px;}
.wse8{word-spacing:-8.283600px;}
.ws8{word-spacing:-8.248500px;}
.ws2f{word-spacing:-8.213400px;}
.ws67{word-spacing:-8.178300px;}
.wsa{word-spacing:-8.143200px;}
.ws2c{word-spacing:-8.108100px;}
.ws2d{word-spacing:-8.073000px;}
.wse9{word-spacing:-8.046000px;}
.ws5f{word-spacing:-8.037900px;}
.ws70{word-spacing:-8.002800px;}
.ws4{word-spacing:-7.967700px;}
.ws68{word-spacing:-7.932600px;}
.ws9{word-spacing:-7.897500px;}
.ws31{word-spacing:-7.862400px;}
.ws60{word-spacing:-7.827300px;}
.ws2b{word-spacing:-7.792200px;}
.wsea{word-spacing:-7.757100px;}
.wsec{word-spacing:-7.722000px;}
.wse5{word-spacing:-7.651800px;}
.ws58{word-spacing:-7.616700px;}
.ws30{word-spacing:-7.581600px;}
.wseb{word-spacing:-7.476300px;}
.ws38{word-spacing:-6.197100px;}
.wsed{word-spacing:-6.120000px;}
.wsa0{word-spacing:-5.964000px;}
.ws99{word-spacing:-5.951400px;}
.wsd4{word-spacing:-5.705700px;}
.wsc7{word-spacing:-5.508000px;}
.ws83{word-spacing:-4.536000px;}
.ws89{word-spacing:-4.452000px;}
.ws81{word-spacing:-4.368000px;}
.ws87{word-spacing:-4.326000px;}
.ws55{word-spacing:-4.284000px;}
.ws12e{word-spacing:-3.960000px;}
.wsf{word-spacing:-3.276000px;}
.wse{word-spacing:-2.736000px;}
.ws72{word-spacing:-2.173968px;}
.ws12d{word-spacing:-1.944000px;}
.ws1b{word-spacing:-1.890000px;}
.wsf2{word-spacing:-1.860000px;}
.ws13{word-spacing:-1.836000px;}
.ws7a{word-spacing:-1.782000px;}
.wsf5{word-spacing:-1.740000px;}
.ws6d{word-spacing:-1.728000px;}
.wsf0{word-spacing:-1.674000px;}
.ws15{word-spacing:-1.620000px;}
.ws112{word-spacing:-1.575000px;}
.ws6c{word-spacing:-1.566000px;}
.ws100{word-spacing:-1.530000px;}
.ws5a{word-spacing:-1.512000px;}
.ws51{word-spacing:-1.458000px;}
.ws47{word-spacing:-1.404000px;}
.ws4b{word-spacing:-1.386000px;}
.ws4a{word-spacing:-1.350000px;}
.ws123{word-spacing:-1.305000px;}
.ws1c{word-spacing:-1.296000px;}
.ws28{word-spacing:-1.275000px;}
.ws10{word-spacing:-1.260000px;}
.ws14{word-spacing:-1.242000px;}
.ws16{word-spacing:-1.188000px;}
.wsc5{word-spacing:-1.176000px;}
.ws107{word-spacing:-1.170000px;}
.ws11{word-spacing:-1.134000px;}
.ws12{word-spacing:-1.080000px;}
.wsff{word-spacing:-1.035000px;}
.ws79{word-spacing:-1.026000px;}
.ws11b{word-spacing:-0.990000px;}
.ws12f{word-spacing:-0.972000px;}
.ws54{word-spacing:-0.966000px;}
.wsc4{word-spacing:-0.924000px;}
.wsf1{word-spacing:-0.918000px;}
.ws46{word-spacing:-0.864000px;}
.ws6f{word-spacing:-0.810000px;}
.ws42{word-spacing:-0.756000px;}
.ws11a{word-spacing:-0.720000px;}
.ws3d{word-spacing:-0.702000px;}
.ws108{word-spacing:-0.675000px;}
.ws3b{word-spacing:-0.648000px;}
.ws11c{word-spacing:-0.630000px;}
.ws27{word-spacing:-0.612000px;}
.wsc3{word-spacing:-0.600000px;}
.ws1a{word-spacing:-0.594000px;}
.ws25{word-spacing:-0.540000px;}
.ws10a{word-spacing:-0.495000px;}
.ws1f{word-spacing:-0.491400px;}
.ws17{word-spacing:-0.486000px;}
.ws102{word-spacing:-0.450000px;}
.ws44{word-spacing:-0.432000px;}
.ws101{word-spacing:-0.405000px;}
.ws5c{word-spacing:-0.386100px;}
.ws45{word-spacing:-0.378000px;}
.ws6e{word-spacing:-0.351000px;}
.ws48{word-spacing:-0.324000px;}
.wsf3{word-spacing:-0.315900px;}
.ws103{word-spacing:-0.315000px;}
.ws23{word-spacing:-0.280800px;}
.ws64{word-spacing:-0.270000px;}
.ws11d{word-spacing:-0.225000px;}
.ws19{word-spacing:-0.216000px;}
.wsf6{word-spacing:-0.210600px;}
.ws10b{word-spacing:-0.180000px;}
.ws6a{word-spacing:-0.175500px;}
.ws69{word-spacing:-0.162000px;}
.ws41{word-spacing:-0.140400px;}
.ws126{word-spacing:-0.135000px;}
.ws5b{word-spacing:-0.108000px;}
.ws43{word-spacing:-0.105300px;}
.ws122{word-spacing:-0.090000px;}
.ws63{word-spacing:-0.070200px;}
.ws3e{word-spacing:-0.054000px;}
.ws106{word-spacing:-0.045000px;}
.wsc{word-spacing:0.000000px;}
.ws6b{word-spacing:0.035100px;}
.ws115{word-spacing:0.045000px;}
.ws59{word-spacing:0.054000px;}
.ws24{word-spacing:0.070200px;}
.ws124{word-spacing:0.090000px;}
.ws53{word-spacing:0.105300px;}
.ws3c{word-spacing:0.108000px;}
.ws127{word-spacing:0.135000px;}
.ws18{word-spacing:0.162000px;}
.ws3f{word-spacing:0.175500px;}
.ws104{word-spacing:0.180000px;}
.ws4d{word-spacing:0.216000px;}
.ws10c{word-spacing:0.225000px;}
.ws4f{word-spacing:0.270000px;}
.ws116{word-spacing:0.315000px;}
.ws4e{word-spacing:0.324000px;}
.wsc6{word-spacing:0.336000px;}
.ws10e{word-spacing:0.360000px;}
.ws4c{word-spacing:0.378000px;}
.ws125{word-spacing:0.405000px;}
.ws22{word-spacing:0.432000px;}
.ws117{word-spacing:0.450000px;}
.ws20{word-spacing:0.486000px;}
.ws10d{word-spacing:0.495000px;}
.wsee{word-spacing:0.540000px;}
.wse4{word-spacing:0.546000px;}
.ws10f{word-spacing:0.585000px;}
.ws49{word-spacing:0.594000px;}
.ws12c{word-spacing:0.630000px;}
.ws1e{word-spacing:0.648000px;}
.ws26{word-spacing:0.663000px;}
.ws52{word-spacing:0.702000px;}
.ws50{word-spacing:0.756000px;}
.ws119{word-spacing:0.765000px;}
.ws118{word-spacing:0.855000px;}
.ws113{word-spacing:0.945000px;}
.wsd{word-spacing:0.960000px;}
.ws21{word-spacing:0.972000px;}
.ws114{word-spacing:0.990000px;}
.ws128{word-spacing:1.035000px;}
.ws110{word-spacing:1.080000px;}
.ws130{word-spacing:1.188000px;}
.ws131{word-spacing:1.242000px;}
.ws1d{word-spacing:1.404000px;}
.wse3{word-spacing:1.728000px;}
.wse2{word-spacing:1.740000px;}
.ws129{word-spacing:2.070000px;}
.ws12a{word-spacing:2.115000px;}
.wsef{word-spacing:2.214000px;}
.ws40{word-spacing:3.132000px;}
.ws12b{word-spacing:3.330000px;}
.wsf4{word-spacing:3.996000px;}
.ws91{word-spacing:14.788204px;}
.ws90{word-spacing:18.102004px;}
.ws96{word-spacing:18.479995px;}
.ws80{word-spacing:18.550469px;}
.ws88{word-spacing:18.564136px;}
.ws82{word-spacing:18.565179px;}
.ws8a{word-spacing:18.618207px;}
.ws7f{word-spacing:18.893995px;}
.ws94{word-spacing:18.942004px;}
.ws95{word-spacing:20.328000px;}
.ws74{word-spacing:20.612503px;}
.ws85{word-spacing:20.661010px;}
.ws86{word-spacing:21.244485px;}
.ws84{word-spacing:21.622784px;}
.ws7c{word-spacing:23.465142px;}
.ws93{word-spacing:25.452000px;}
.ws8b{word-spacing:26.362649px;}
.ws75{word-spacing:26.812355px;}
.ws71{word-spacing:27.214950px;}
.wsbb{word-spacing:30.575995px;}
.ws8f{word-spacing:30.786004px;}
.wsa7{word-spacing:31.522222px;}
.wsb8{word-spacing:33.894000px;}
.ws9f{word-spacing:34.038016px;}
.wsbe{word-spacing:35.322000px;}
.wsc2{word-spacing:37.086000px;}
.ws77{word-spacing:37.923789px;}
.ws7e{word-spacing:38.343597px;}
.ws92{word-spacing:38.346004px;}
.ws7d{word-spacing:38.759396px;}
.ws8d{word-spacing:41.241149px;}
.ws8c{word-spacing:42.202923px;}
.wsc1{word-spacing:43.091995px;}
.wsce{word-spacing:43.849419px;}
.wsa8{word-spacing:44.796922px;}
.wsd1{word-spacing:45.959411px;}
.wsa9{word-spacing:46.155023px;}
.wsd0{word-spacing:46.921734px;}
.ws9e{word-spacing:47.292004px;}
.ws9c{word-spacing:48.552004px;}
.wsca{word-spacing:48.764687px;}
.wsa1{word-spacing:51.178228px;}
.ws9d{word-spacing:52.106397px;}
.wsd3{word-spacing:54.662335px;}
.ws8e{word-spacing:54.768005px;}
.wsb6{word-spacing:60.064204px;}
.wsa6{word-spacing:60.564005px;}
.wsa2{word-spacing:61.068004px;}
.wscf{word-spacing:61.081643px;}
.wsb7{word-spacing:61.331755px;}
.wscd{word-spacing:62.193037px;}
.wsb4{word-spacing:62.580004px;}
.wsbc{word-spacing:63.042004px;}
.wscc{word-spacing:63.643188px;}
.wscb{word-spacing:64.058392px;}
.wsa4{word-spacing:65.811029px;}
.wsa3{word-spacing:66.258302px;}
.wsac{word-spacing:66.570000px;}
.wsd2{word-spacing:70.543435px;}
.wsab{word-spacing:71.254232px;}
.wsb2{word-spacing:73.080005px;}
.wsd9{word-spacing:73.878001px;}
.wsb3{word-spacing:75.978004px;}
.wsaf{word-spacing:79.086000px;}
.wsb5{word-spacing:81.186004px;}
.wsbf{word-spacing:81.900004px;}
.wsba{word-spacing:82.446004px;}
.wsb9{word-spacing:83.118004px;}
.ws9a{word-spacing:83.142915px;}
.ws9b{word-spacing:83.282998px;}
.wsaa{word-spacing:84.587996px;}
.wsb0{word-spacing:85.887033px;}
.wsad{word-spacing:86.334306px;}
.wsd6{word-spacing:86.394001px;}
.wsb1{word-spacing:88.368004px;}
.wsbd{word-spacing:88.830004px;}
.wsa5{word-spacing:91.098000px;}
.ws34{word-spacing:91.186210px;}
.wsc0{word-spacing:91.266004px;}
.wsae{word-spacing:97.103996px;}
.wsd7{word-spacing:103.866000px;}
.wsdd{word-spacing:114.407998px;}
.wsd5{word-spacing:116.382000px;}
.wsdf{word-spacing:170.393998px;}
.ws37{word-spacing:185.178010px;}
.wse0{word-spacing:190.553998px;}
.ws33{word-spacing:191.944204px;}
.wsc8{word-spacing:202.355992px;}
.ws3a{word-spacing:206.430004px;}
.ws7b{word-spacing:231.294009px;}
.wsdb{word-spacing:253.680017px;}
.ws39{word-spacing:266.658004px;}
.ws36{word-spacing:279.300004px;}
.wsda{word-spacing:285.894016px;}
.wsdc{word-spacing:320.002195px;}
.wse1{word-spacing:394.715995px;}
.wsde{word-spacing:407.357995px;}
.ws32{word-spacing:564.647989px;}
.ws78{word-spacing:871.352725px;}
._18{margin-left:-43.278208px;}
._16{margin-left:-31.562892px;}
._12{margin-left:-11.463685px;}
._3d{margin-left:-10.125000px;}
._3a{margin-left:-8.505000px;}
._2{margin-left:-7.206000px;}
._5{margin-left:-6.118789px;}
._3{margin-left:-4.881600px;}
._1{margin-left:-3.244800px;}
._0{margin-left:-1.776011px;}
._4{width:1.176022px;}
._6{width:2.245222px;}
._11{width:3.283200px;}
._1e{width:4.665272px;}
._3b{width:5.928683px;}
._37{width:7.650000px;}
._15{width:9.017974px;}
._38{width:10.170000px;}
._3c{width:11.478028px;}
._36{width:12.960000px;}
._d{width:15.789598px;}
._39{width:16.920002px;}
._1d{width:35.988029px;}
._17{width:38.608185px;}
._e{width:40.548529px;}
._10{width:45.505184px;}
._f{width:47.242274px;}
._14{width:49.437801px;}
._9{width:50.493582px;}
._19{width:54.510414px;}
._13{width:56.349581px;}
._25{width:58.086004px;}
._8{width:61.932004px;}
._1c{width:67.086011px;}
._1f{width:70.523328px;}
._7{width:74.058015px;}
._24{width:77.039651px;}
._20{width:82.381758px;}
._2c{width:83.787581px;}
._23{width:87.942655px;}
._26{width:94.228242px;}
._21{width:101.078739px;}
._22{width:105.761799px;}
._2b{width:113.207556px;}
._2f{width:125.204420px;}
._2a{width:143.388010px;}
._28{width:160.998014px;}
._b{width:178.763999px;}
._30{width:182.499572px;}
._a{width:187.371582px;}
._c{width:198.921560px;}
._2e{width:214.632027px;}
._32{width:226.403995px;}
._31{width:238.530006px;}
._2d{width:277.998016px;}
._1b{width:293.310037px;}
._29{width:300.300016px;}
._33{width:315.429573px;}
._35{width:326.979551px;}
._34{width:344.412006px;}
._27{width:437.832036px;}
._1a{width:874.595145px;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fsa{font-size:27.300001px;}
.fs5{font-size:35.099999px;}
.fsc{font-size:40.238400px;}
.fsb{font-size:40.258799px;}
.fs9{font-size:42.000000px;}
.fse{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fsd{font-size:49.882799px;}
.fs6{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fs8{font-size:66.000000px;}
.fs7{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y152{bottom:3.268524px;}
.y14c{bottom:16.002045px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y2f{bottom:68.313899px;}
.y210{bottom:68.640002px;}
.y11b{bottom:68.803802px;}
.y260{bottom:69.089515px;}
.y68{bottom:69.490497px;}
.y1b1{bottom:69.965700px;}
.y171{bottom:77.366102px;}
.y13b{bottom:80.236652px;}
.y25f{bottom:81.835765px;}
.y98{bottom:82.875311px;}
.y2e{bottom:83.307899px;}
.y20f{bottom:83.638501px;}
.y11a{bottom:83.802302px;}
.y67{bottom:84.488996px;}
.y1b0{bottom:84.964199px;}
.yb7{bottom:90.130355px;}
.y170{bottom:92.370604px;}
.yd6{bottom:93.454661px;}
.y25e{bottom:94.582015px;}
.y13a{bottom:95.235151px;}
.y97{bottom:97.873810px;}
.y2d{bottom:98.301899px;}
.y20e{bottom:98.637000px;}
.y119{bottom:98.800801px;}
.y66{bottom:99.491998px;}
.yb6{bottom:105.128854px;}
.y25d{bottom:107.328265px;}
.y16f{bottom:107.369104px;}
.yd5{bottom:109.951661px;}
.y139{bottom:110.235146px;}
.y96{bottom:112.872309px;}
.y20d{bottom:113.635499px;}
.y118{bottom:113.799300px;}
.y65{bottom:114.490497px;}
.y1af{bottom:115.054194px;}
.y25c{bottom:120.074515px;}
.yb5{bottom:120.127353px;}
.y16e{bottom:122.367603px;}
.yd4{bottom:126.448661px;}
.y95{bottom:127.870808px;}
.y20c{bottom:128.633998px;}
.y117{bottom:128.797799px;}
.y64{bottom:129.488996px;}
.y1ae{bottom:130.052693px;}
.y145{bottom:130.396545px;}
.y25b{bottom:132.820766px;}
.yb4{bottom:135.125852px;}
.y16d{bottom:137.366102px;}
.y2c{bottom:140.185800px;}
.y138{bottom:140.358297px;}
.y94{bottom:142.869307px;}
.yd3{bottom:142.945661px;}
.y20b{bottom:143.632498px;}
.y116{bottom:143.796298px;}
.y63{bottom:144.488996px;}
.y1ad{bottom:145.051192px;}
.y25a{bottom:145.567016px;}
.yb3{bottom:150.125852px;}
.y16c{bottom:152.378108px;}
.y2b{bottom:155.185800px;}
.y137{bottom:155.358297px;}
.y93{bottom:157.867807px;}
.y259{bottom:158.313266px;}
.y20a{bottom:158.650667px;}
.y115{bottom:158.794798px;}
.yd2{bottom:159.442661px;}
.y62{bottom:159.488996px;}
.y1ac{bottom:160.049691px;}
.yb2{bottom:165.127353px;}
.y16b{bottom:167.376608px;}
.y2a{bottom:170.187313px;}
.y136{bottom:170.358297px;}
.y258{bottom:171.059516px;}
.y92{bottom:172.866306px;}
.y209{bottom:173.649167px;}
.y114{bottom:173.797799px;}
.y61{bottom:174.490497px;}
.y1ab{bottom:175.048191px;}
.yd1{bottom:175.939661px;}
.yb1{bottom:180.125852px;}
.y16a{bottom:182.375107px;}
.y257{bottom:183.805766px;}
.y29{bottom:185.185812px;}
.y135{bottom:185.371804px;}
.y91{bottom:187.864805px;}
.y208{bottom:188.647666px;}
.y113{bottom:188.796298px;}
.y60{bottom:189.488996px;}
.y1aa{bottom:190.046690px;}
.yd0{bottom:192.439661px;}
.yb0{bottom:195.131856px;}
.y256{bottom:196.552016px;}
.y169{bottom:197.373606px;}
.y28{bottom:200.187313px;}
.y134{bottom:200.370304px;}
.y90{bottom:202.866306px;}
.y207{bottom:203.646165px;}
.y112{bottom:203.794798px;}
.y5f{bottom:204.488996px;}
.y1a9{bottom:205.048191px;}
.ycf{bottom:208.963661px;}
.y255{bottom:209.298266px;}
.yaf{bottom:210.130355px;}
.y168{bottom:212.372105px;}
.y27{bottom:215.185812px;}
.y133{bottom:215.368803px;}
.y8f{bottom:217.864805px;}
.y206{bottom:218.644664px;}
.y111{bottom:218.800801px;}
.y5e{bottom:219.498001px;}
.y1a8{bottom:220.046690px;}
.y254{bottom:222.044516px;}
.yae{bottom:225.128854px;}
.y29c{bottom:225.313503px;}
.yce{bottom:225.460661px;}
.y167{bottom:227.370604px;}
.y26{bottom:230.187313px;}
.y132{bottom:230.367302px;}
.y8e{bottom:232.864805px;}
.y205{bottom:233.643163px;}
.y110{bottom:233.799300px;}
.y5d{bottom:234.496500px;}
.y253{bottom:234.790766px;}
.y1a7{bottom:235.045189px;}
.yad{bottom:240.127353px;}
.y29b{bottom:240.312002px;}
.ycd{bottom:241.957661px;}
.y166{bottom:242.369104px;}
.y25{bottom:245.185812px;}
.y131{bottom:245.365801px;}
.y252{bottom:247.537017px;}
.y8d{bottom:247.866306px;}
.y204{bottom:248.641663px;}
.y10f{bottom:248.797799px;}
.y5c{bottom:249.494999px;}
.yac{bottom:255.125852px;}
.y29a{bottom:255.310501px;}
.y165{bottom:257.367603px;}
.ycc{bottom:258.454661px;}
.y24{bottom:260.187313px;}
.y251{bottom:260.283267px;}
.y130{bottom:260.364300px;}
.y1a6{bottom:262.063222px;}
.y8c{bottom:262.864805px;}
.y203{bottom:263.640162px;}
.y10e{bottom:263.796298px;}
.y5b{bottom:264.493499px;}
.yab{bottom:270.130355px;}
.y299{bottom:270.309000px;}
.y164{bottom:272.366102px;}
.y250{bottom:273.029517px;}
.ycb{bottom:274.951661px;}
.y23{bottom:275.185812px;}
.y12f{bottom:275.362799px;}
.y1a5{bottom:277.061721px;}
.y8b{bottom:277.872309px;}
.y202{bottom:278.638661px;}
.y10d{bottom:278.794798px;}
.y5a{bottom:279.491998px;}
.yaa{bottom:285.128854px;}
.y298{bottom:285.307499px;}
.y24f{bottom:285.775767px;}
.y163{bottom:287.364601px;}
.y22{bottom:290.187313px;}
.y12e{bottom:290.361299px;}
.yca{bottom:291.448661px;}
.y1a4{bottom:292.060220px;}
.y8a{bottom:292.870808px;}
.y201{bottom:293.637160px;}
.y10c{bottom:293.799300px;}
.y59{bottom:294.490497px;}
.y24e{bottom:298.522017px;}
.ya9{bottom:300.127353px;}
.y297{bottom:300.305999px;}
.y21{bottom:305.185812px;}
.y12d{bottom:305.359798px;}
.y1a3{bottom:307.058719px;}
.y89{bottom:307.869307px;}
.yc9{bottom:307.945661px;}
.y200{bottom:308.635659px;}
.y10b{bottom:308.797799px;}
.y58{bottom:309.488996px;}
.y24d{bottom:311.268267px;}
.ya8{bottom:315.125852px;}
.y296{bottom:315.304498px;}
.y162{bottom:317.490754px;}
.y20{bottom:320.187313px;}
.y12c{bottom:320.358297px;}
.y1a2{bottom:322.057218px;}
.y88{bottom:322.867807px;}
.y1ff{bottom:323.634159px;}
.y10a{bottom:323.796298px;}
.y24c{bottom:324.014517px;}
.yc8{bottom:324.442661px;}
.y57{bottom:324.487495px;}
.ya7{bottom:330.127353px;}
.y295{bottom:330.302997px;}
.y161{bottom:332.489253px;}
.y1f{bottom:335.185812px;}
.y12b{bottom:335.358297px;}
.y24b{bottom:336.760767px;}
.y1a1{bottom:337.055717px;}
.y87{bottom:337.866306px;}
.y1fe{bottom:338.632658px;}
.y109{bottom:338.794798px;}
.y56{bottom:339.487495px;}
.yc7{bottom:340.939661px;}
.ya6{bottom:345.125852px;}
.y294{bottom:345.301496px;}
.y160{bottom:347.487753px;}
.y24a{bottom:349.507018px;}
.y1e{bottom:350.185812px;}
.y12a{bottom:350.358297px;}
.y1a0{bottom:352.054217px;}
.y86{bottom:352.864805px;}
.y1fd{bottom:353.632658px;}
.y108{bottom:353.794798px;}
.yc6{bottom:357.436661px;}
.ya5{bottom:360.127330px;}
.y293{bottom:360.299995px;}
.y249{bottom:362.253268px;}
.y15f{bottom:362.486252px;}
.y1d{bottom:365.190314px;}
.y129{bottom:365.358297px;}
.y19f{bottom:367.052716px;}
.y85{bottom:367.864805px;}
.y1fc{bottom:368.634136px;}
.y107{bottom:368.794798px;}
.y55{bottom:372.001831px;}
.y248{bottom:374.999518px;}
.ya4{bottom:375.125829px;}
.y1c{bottom:380.188813px;}
.y128{bottom:380.359798px;}
.y19e{bottom:382.051215px;}
.y292{bottom:382.054521px;}
.y84{bottom:382.869284px;}
.y1fb{bottom:383.632635px;}
.y106{bottom:383.794821px;}
.y54{bottom:387.000330px;}
.y247{bottom:387.745768px;}
.ya3{bottom:390.125829px;}
.y1b{bottom:395.187313px;}
.y127{bottom:395.358297px;}
.y19d{bottom:397.049714px;}
.y291{bottom:397.053020px;}
.y83{bottom:397.867784px;}
.y1fa{bottom:398.632635px;}
.y105{bottom:398.796321px;}
.y246{bottom:400.492018px;}
.y53{bottom:401.998829px;}
.ya2{bottom:405.125829px;}
.y1a{bottom:410.185812px;}
.y126{bottom:410.359798px;}
.y19c{bottom:412.048213px;}
.y82{bottom:412.866283px;}
.y245{bottom:413.238268px;}
.y1f9{bottom:413.634136px;}
.y104{bottom:413.794821px;}
.y52{bottom:416.997329px;}
.y290{bottom:418.801519px;}
.ya1{bottom:420.124329px;}
.y198{bottom:422.513252px;}
.y19{bottom:425.185812px;}
.y125{bottom:425.358297px;}
.y244{bottom:425.984518px;}
.y19b{bottom:427.046713px;}
.y81{bottom:427.864782px;}
.y1f8{bottom:428.632635px;}
.y103{bottom:428.808328px;}
.y51{bottom:431.995828px;}
.y243{bottom:438.730768px;}
.y197{bottom:439.010252px;}
.y18{bottom:440.226311px;}
.y124{bottom:440.358297px;}
.y28f{bottom:440.550018px;}
.y19a{bottom:442.046713px;}
.y80{bottom:442.863281px;}
.y1f7{bottom:443.632635px;}
.y102{bottom:443.806827px;}
.y50{bottom:446.994327px;}
.y242{bottom:451.477018px;}
.y123{bottom:455.358297px;}
.y196{bottom:455.507252px;}
.y28e{bottom:455.550018px;}
.y199{bottom:457.045212px;}
.y1f6{bottom:458.631134px;}
.y101{bottom:458.805326px;}
.y4f{bottom:461.992826px;}
.y241{bottom:464.223269px;}
.y122{bottom:470.358297px;}
.y195{bottom:472.004252px;}
.y100{bottom:473.803825px;}
.yc5{bottom:474.884265px;}
.y240{bottom:476.969519px;}
.y4e{bottom:476.991325px;}
.y28d{bottom:482.882528px;}
.y121{bottom:485.361299px;}
.y17{bottom:487.476311px;}
.y194{bottom:488.501252px;}
.y1f5{bottom:488.713659px;}
.yff{bottom:488.802325px;}
.y23f{bottom:489.715769px;}
.yc4{bottom:489.882765px;}
.ya0{bottom:490.920446px;}
.y4d{bottom:491.989825px;}
.y28c{bottom:497.881027px;}
.y120{bottom:500.359798px;}
.y23e{bottom:502.462019px;}
.y1f4{bottom:503.715160px;}
.yfe{bottom:503.800824px;}
.y16{bottom:503.973311px;}
.yc3{bottom:504.881264px;}
.y193{bottom:504.998252px;}
.y9f{bottom:505.921947px;}
.y4c{bottom:506.988324px;}
.y1d5{bottom:511.796713px;}
.y28b{bottom:512.881027px;}
.y23d{bottom:515.208269px;}
.y11f{bottom:515.358297px;}
.y1f3{bottom:518.713659px;}
.yfd{bottom:518.799323px;}
.yc2{bottom:519.879763px;}
.y15{bottom:520.470311px;}
.y9e{bottom:520.920446px;}
.y192{bottom:521.495252px;}
.y4b{bottom:521.986823px;}
.y1d4{bottom:526.795212px;}
.y23c{bottom:527.954519px;}
.y11e{bottom:530.359798px;}
.y1f2{bottom:533.715160px;}
.yfc{bottom:533.797822px;}
.yc1{bottom:534.878262px;}
.y9d{bottom:535.920446px;}
.y14{bottom:536.967311px;}
.y4a{bottom:536.985322px;}
.y191{bottom:537.992252px;}
.y28a{bottom:540.219586px;}
.y23b{bottom:540.700769px;}
.y11d{bottom:545.358297px;}
.y1f1{bottom:548.713659px;}
.yfb{bottom:548.796321px;}
.yc0{bottom:549.876761px;}
.y9c{bottom:550.920446px;}
.y49{bottom:551.983821px;}
.y23a{bottom:553.447019px;}
.y13{bottom:553.464311px;}
.y190{bottom:554.489252px;}
.y289{bottom:555.218085px;}
.y1d3{bottom:556.955713px;}
.y11c{bottom:560.356796px;}
.y1f0{bottom:563.713659px;}
.yfa{bottom:563.794821px;}
.ybf{bottom:564.875260px;}
.y9b{bottom:565.921947px;}
.y239{bottom:566.193269px;}
.y48{bottom:566.982321px;}
.y12{bottom:569.961311px;}
.y288{bottom:570.216584px;}
.y18f{bottom:570.992252px;}
.y1d2{bottom:574.396213px;}
.y1ef{bottom:578.713659px;}
.yf9{bottom:578.796321px;}
.y238{bottom:578.939520px;}
.ybe{bottom:579.873760px;}
.y9a{bottom:580.920446px;}
.y47{bottom:581.985322px;}
.y1cf{bottom:583.121714px;}
.y287{bottom:585.215084px;}
.y11{bottom:586.458311px;}
.y18e{bottom:587.489252px;}
.y237{bottom:591.685770px;}
.y1d1{bottom:591.836713px;}
.y1ee{bottom:593.716661px;}
.yf8{bottom:593.794821px;}
.ybd{bottom:594.872259px;}
.y99{bottom:595.918945px;}
.y46{bottom:596.983821px;}
.y286{bottom:600.213583px;}
.y10{bottom:602.955311px;}
.y18d{bottom:603.986252px;}
.y236{bottom:604.432020px;}
.y1ed{bottom:608.715160px;}
.yf7{bottom:608.794821px;}
.y1d0{bottom:609.277214px;}
.ybc{bottom:609.873760px;}
.y45{bottom:611.982321px;}
.y285{bottom:615.212082px;}
.y235{bottom:617.178270px;}
.yf{bottom:619.452311px;}
.y15e{bottom:619.523846px;}
.y1ec{bottom:623.713659px;}
.yf6{bottom:623.796321px;}
.ybb{bottom:624.872259px;}
.y1ce{bottom:626.717714px;}
.y44{bottom:626.985322px;}
.y234{bottom:629.924520px;}
.y284{bottom:630.212082px;}
.y15d{bottom:634.522345px;}
.ye{bottom:635.949311px;}
.y18c{bottom:638.655751px;}
.y1eb{bottom:638.713659px;}
.yf5{bottom:638.794821px;}
.yba{bottom:639.873760px;}
.y43{bottom:641.983821px;}
.y233{bottom:642.670770px;}
.y1cd{bottom:644.158214px;}
.y15c{bottom:649.520845px;}
.yd{bottom:652.446311px;}
.y1ea{bottom:653.713659px;}
.yf4{bottom:653.796321px;}
.yb9{bottom:654.872259px;}
.y232{bottom:655.417020px;}
.y18b{bottom:656.096251px;}
.y42{bottom:656.982321px;}
.y283{bottom:657.670770px;}
.y1cc{bottom:661.598714px;}
.y1c9{bottom:661.609213px;}
.y15b{bottom:664.519344px;}
.y231{bottom:668.163270px;}
.y1e9{bottom:668.713659px;}
.yf3{bottom:668.794821px;}
.yc{bottom:668.943311px;}
.yb8{bottom:669.870758px;}
.y282{bottom:670.417020px;}
.y41{bottom:671.985322px;}
.y18a{bottom:673.536751px;}
.y1cb{bottom:679.039214px;}
.y15a{bottom:679.517843px;}
.y230{bottom:680.909520px;}
.y281{bottom:683.163270px;}
.y1e8{bottom:683.713659px;}
.yf2{bottom:683.797822px;}
.yb{bottom:685.440311px;}
.y40{bottom:686.983821px;}
.y189{bottom:690.977252px;}
.y22f{bottom:693.655771px;}
.y159{bottom:694.519344px;}
.y280{bottom:695.909520px;}
.y1ca{bottom:696.479714px;}
.y1e7{bottom:698.712158px;}
.yf1{bottom:698.796321px;}
.ya{bottom:701.937311px;}
.y3f{bottom:701.982321px;}
.y22e{bottom:706.402021px;}
.y188{bottom:708.417752px;}
.y27f{bottom:708.655771px;}
.y158{bottom:709.517843px;}
.yf0{bottom:713.794821px;}
.y1c8{bottom:713.920212px;}
.y3e{bottom:716.983821px;}
.y9{bottom:718.434311px;}
.y22d{bottom:719.148271px;}
.y27e{bottom:721.402021px;}
.y157{bottom:724.520890px;}
.y187{bottom:725.858252px;}
.y1e6{bottom:728.794821px;}
.yef{bottom:728.796321px;}
.y22c{bottom:731.894521px;}
.y3d{bottom:731.982321px;}
.y27d{bottom:734.148271px;}
.y156{bottom:739.519390px;}
.y186{bottom:743.283706px;}
.yee{bottom:743.794821px;}
.y1e5{bottom:743.796276px;}
.y22b{bottom:744.640771px;}
.y27c{bottom:746.894521px;}
.y3c{bottom:746.985276px;}
.y8{bottom:748.434311px;}
.y155{bottom:754.517889px;}
.y32{bottom:757.145396px;}
.y22a{bottom:757.387021px;}
.y1e4{bottom:758.794775px;}
.yed{bottom:758.797776px;}
.y27b{bottom:759.640771px;}
.y185{bottom:760.724206px;}
.y3b{bottom:761.983776px;}
.y154{bottom:769.516388px;}
.y229{bottom:770.133271px;}
.y1c7{bottom:771.133186px;}
.y27a{bottom:772.387021px;}
.yec{bottom:773.796276px;}
.y3a{bottom:776.982275px;}
.y31{bottom:778.144646px;}
.y184{bottom:778.164706px;}
.y7{bottom:781.416260px;}
.y228{bottom:782.879521px;}
.y279{bottom:785.133271px;}
.y1c6{bottom:786.131686px;}
.yeb{bottom:788.794775px;}
.y39{bottom:791.985276px;}
.y183{bottom:795.605206px;}
.y227{bottom:795.625771px;}
.y278{bottom:797.879521px;}
.y144{bottom:798.176971px;}
.y30{bottom:799.143895px;}
.y1c5{bottom:801.130185px;}
.yea{bottom:803.794775px;}
.y1e3{bottom:803.797776px;}
.y38{bottom:806.983776px;}
.y226{bottom:808.372022px;}
.y277{bottom:810.625771px;}
.y182{bottom:813.045706px;}
.y13c{bottom:814.179016px;}
.y14b{bottom:814.188149px;}
.y1c4{bottom:816.128684px;}
.y1e2{bottom:818.796276px;}
.ye9{bottom:818.797776px;}
.y225{bottom:821.118272px;}
.y37{bottom:821.982275px;}
.y276{bottom:823.372022px;}
.y6{bottom:826.422262px;}
.y181{bottom:830.483206px;}
.y1c3{bottom:831.127183px;}
.y1e1{bottom:833.794775px;}
.ye8{bottom:833.796276px;}
.y224{bottom:833.864522px;}
.y143{bottom:834.861977px;}
.y151{bottom:835.037716px;}
.y14a{bottom:835.223371px;}
.y275{bottom:836.118272px;}
.y36{bottom:836.982275px;}
.y13e{bottom:844.440033px;}
.y1c2{bottom:846.125682px;}
.y223{bottom:846.610772px;}
.y180{bottom:847.920706px;}
.ye7{bottom:848.794775px;}
.y274{bottom:848.864522px;}
.y35{bottom:851.980774px;}
.y222{bottom:859.357022px;}
.y1c1{bottom:861.124181px;}
.y273{bottom:861.610772px;}
.y1e0{bottom:863.794775px;}
.ye6{bottom:863.797776px;}
.y13d{bottom:864.202515px;}
.y17f{bottom:865.358206px;}
.y5{bottom:871.428264px;}
.y221{bottom:872.103272px;}
.y272{bottom:874.357022px;}
.y1c0{bottom:876.122681px;}
.y1df{bottom:878.794775px;}
.ye5{bottom:878.796276px;}
.y17e{bottom:882.795706px;}
.y220{bottom:884.849522px;}
.y271{bottom:887.103272px;}
.ye4{bottom:893.794775px;}
.y1de{bottom:893.802279px;}
.y21f{bottom:897.595772px;}
.y149{bottom:899.707902px;}
.y150{bottom:899.713477px;}
.y270{bottom:899.849522px;}
.y142{bottom:899.869873px;}
.y17d{bottom:900.233206px;}
.y7f{bottom:905.043274px;}
.y1bf{bottom:906.299680px;}
.y1dd{bottom:908.800778px;}
.ye3{bottom:908.802279px;}
.y21e{bottom:910.342022px;}
.y26f{bottom:912.595772px;}
.y4{bottom:916.434265px;}
.y17c{bottom:917.670706px;}
.y21d{bottom:923.088273px;}
.y1be{bottom:923.740180px;}
.y1dc{bottom:923.799277px;}
.ye2{bottom:923.800778px;}
.y26e{bottom:925.342022px;}
.y33{bottom:926.409576px;}
.y1bb{bottom:932.465681px;}
.y17b{bottom:935.108206px;}
.y7e{bottom:935.236025px;}
.y21c{bottom:935.834523px;}
.y26d{bottom:938.088273px;}
.y1db{bottom:938.797776px;}
.ye1{bottom:938.799277px;}
.y7b{bottom:938.900525px;}
.y1bd{bottom:941.180681px;}
.y21b{bottom:948.580773px;}
.y7a{bottom:950.146025px;}
.y26c{bottom:950.834523px;}
.y17a{bottom:952.545706px;}
.y7d{bottom:952.676525px;}
.y1da{bottom:953.796276px;}
.ye0{bottom:953.797776px;}
.y76{bottom:955.776275px;}
.y1bc{bottom:958.621181px;}
.y21a{bottom:961.327023px;}
.y79{bottom:961.391524px;}
.y141{bottom:962.452175px;}
.y14f{bottom:962.456816px;}
.y148{bottom:962.803505px;}
.y26b{bottom:963.580773px;}
.y75{bottom:967.021774px;}
.y1d9{bottom:968.794775px;}
.ydf{bottom:968.796276px;}
.y179{bottom:969.983206px;}
.y7c{bottom:970.117025px;}
.y78{bottom:972.660275px;}
.y219{bottom:974.073273px;}
.y1ba{bottom:976.061681px;}
.y26a{bottom:976.327023px;}
.yde{bottom:983.794775px;}
.y1d8{bottom:983.796276px;}
.y218{bottom:986.819523px;}
.y178{bottom:987.420706px;}
.y77{bottom:987.559774px;}
.y269{bottom:989.073273px;}
.y1b9{bottom:993.491682px;}
.y1d7{bottom:998.794775px;}
.ydd{bottom:998.796276px;}
.y217{bottom:999.565773px;}
.y268{bottom:1001.819523px;}
.y1b8{bottom:1004.737181px;}
.y177{bottom:1004.858206px;}
.y74{bottom:1004.989773px;}
.y216{bottom:1012.312023px;}
.ydc{bottom:1013.794775px;}
.y1d6{bottom:1013.797776px;}
.y267{bottom:1014.565773px;}
.y1b4{bottom:1016.560181px;}
.y70{bottom:1017.369275px;}
.y1b7{bottom:1022.177682px;}
.y176{bottom:1022.295706px;}
.y73{bottom:1022.430274px;}
.y215{bottom:1025.058273px;}
.y14e{bottom:1025.592675px;}
.y147{bottom:1025.778330px;}
.y140{bottom:1025.779263px;}
.y266{bottom:1027.312023px;}
.y6f{bottom:1028.614775px;}
.ydb{bottom:1028.796276px;}
.y6b{bottom:1034.239773px;}
.y214{bottom:1037.804524px;}
.y1b6{bottom:1039.618182px;}
.y175{bottom:1039.736206px;}
.y6e{bottom:1039.860274px;}
.y72{bottom:1039.870774px;}
.y265{bottom:1040.058273px;}
.yda{bottom:1043.794775px;}
.y6a{bottom:1045.485273px;}
.y213{bottom:1050.550774px;}
.y6d{bottom:1051.113274px;}
.y264{bottom:1052.804524px;}
.y1b5{bottom:1057.058682px;}
.y174{bottom:1057.170706px;}
.y71{bottom:1057.311274px;}
.yd9{bottom:1058.796276px;}
.y212{bottom:1063.297024px;}
.y263{bottom:1065.550774px;}
.yd8{bottom:1073.794775px;}
.y1b2{bottom:1074.497681px;}
.y173{bottom:1074.608206px;}
.y6c{bottom:1074.738274px;}
.y211{bottom:1076.043274px;}
.y262{bottom:1078.297024px;}
.y13f{bottom:1087.113541px;}
.y153{bottom:1087.124268px;}
.y14d{bottom:1087.651611px;}
.y146{bottom:1087.817139px;}
.yd7{bottom:1088.793274px;}
.y261{bottom:1091.043274px;}
.y1b3{bottom:1091.938181px;}
.y172{bottom:1092.048706px;}
.y69{bottom:1092.168274px;}
.y34{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.h15{height:29.293555px;}
.h13{height:29.308405px;}
.h17{height:29.348664px;}
.h14{height:29.388923px;}
.hd{height:35.394000px;}
.h18{height:35.716084px;}
.hb{height:36.669000px;}
.hc{height:36.681152px;}
.h8{height:38.826000px;}
.h9{height:38.838867px;}
.h11{height:41.538000px;}
.h1a{height:41.550000px;}
.h1d{height:42.084000px;}
.h1b{height:42.096000px;}
.h10{height:43.008000px;}
.h19{height:43.020000px;}
.h1f{height:43.068185px;}
.h2{height:43.140000px;}
.h7{height:43.154297px;}
.h1e{height:43.344000px;}
.h1c{height:43.356000px;}
.h4{height:44.233154px;}
.h23{height:44.505000px;}
.h22{height:45.090000px;}
.h3{height:45.744000px;}
.h21{height:46.080000px;}
.hf{height:47.454000px;}
.ha{height:53.406000px;}
.h12{height:55.296000px;}
.h20{height:64.596000px;}
.he{height:77.652000px;}
.h5{height:112.164000px;}
.h6{height:112.201172px;}
.h16{height:305.617493px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:684.353989px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:8.650349px;}
.x6{left:14.296654px;}
.x2{left:61.191450px;}
.x19{left:108.773397px;}
.x7{left:140.952747px;}
.x11{left:146.601002px;}
.x10{left:160.316411px;}
.xf{left:194.496140px;}
.x4{left:233.456406px;}
.x1a{left:234.602394px;}
.x8{left:238.143906px;}
.x5{left:251.457910px;}
.x1e{left:300.594154px;}
.x1b{left:312.615442px;}
.x1c{left:325.446454px;}
.x17{left:343.002148px;}
.x18{left:357.348152px;}
.xd{left:385.383133px;}
.x13{left:388.368164px;}
.x9{left:403.130399px;}
.xc{left:421.450653px;}
.xa{left:570.321902px;}
.x3{left:584.586594px;}
.xe{left:614.055130px;}
.x16{left:617.148148px;}
.x14{left:650.000040px;}
.x15{left:676.353710px;}
.x1d{left:816.003571px;}
.xb{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v5{vertical-align:-44.016001pt;}
.v2{vertical-align:-16.319987pt;}
.v7{vertical-align:-12.991999pt;}
.v3{vertical-align:-9.637858pt;}
.v8{vertical-align:-7.456455pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:7.467122pt;}
.v4{vertical-align:9.600505pt;}
.v6{vertical-align:12.666691pt;}
.v1{vertical-align:16.170654pt;}
.va{vertical-align:20.010667pt;}
.ls61{letter-spacing:-4.256000pt;}
.ls5e{letter-spacing:-4.218667pt;}
.ls62{letter-spacing:-4.144000pt;}
.ls60{letter-spacing:-4.069333pt;}
.ls89{letter-spacing:-4.032000pt;}
.ls86{letter-spacing:-3.744000pt;}
.ls6a{letter-spacing:-3.173333pt;}
.ls6c{letter-spacing:-2.725333pt;}
.ls66{letter-spacing:-2.464000pt;}
.lsaf{letter-spacing:-1.440000pt;}
.ls4b{letter-spacing:-1.248000pt;}
.lsa3{letter-spacing:-1.200000pt;}
.ls98{letter-spacing:-1.160000pt;}
.ls6d{letter-spacing:-0.970667pt;}
.lsf{letter-spacing:-0.853333pt;}
.lsad{letter-spacing:-0.840000pt;}
.ls44{letter-spacing:-0.768000pt;}
.lsa2{letter-spacing:-0.720000pt;}
.ls67{letter-spacing:-0.709333pt;}
.ls2b{letter-spacing:-0.672000pt;}
.ls9d{letter-spacing:-0.640000pt;}
.ls31{letter-spacing:-0.597333pt;}
.ls30{letter-spacing:-0.560000pt;}
.lsac{letter-spacing:-0.520000pt;}
.ls7b{letter-spacing:-0.485333pt;}
.ls3e{letter-spacing:-0.480000pt;}
.ls97{letter-spacing:-0.440000pt;}
.ls88{letter-spacing:-0.436800pt;}
.ls3d{letter-spacing:-0.432000pt;}
.ls9e{letter-spacing:-0.400000pt;}
.lsb0{letter-spacing:-0.384000pt;}
.ls64{letter-spacing:-0.373333pt;}
.lsa6{letter-spacing:-0.360000pt;}
.ls2c{letter-spacing:-0.343200pt;}
.ls42{letter-spacing:-0.336000pt;}
.lsa4{letter-spacing:-0.320000pt;}
.ls69{letter-spacing:-0.315467pt;}
.ls3f{letter-spacing:-0.312000pt;}
.ls5a{letter-spacing:-0.298667pt;}
.ls13{letter-spacing:-0.288000pt;}
.ls82{letter-spacing:-0.280800pt;}
.ls99{letter-spacing:-0.280000pt;}
.ls63{letter-spacing:-0.242667pt;}
.ls24{letter-spacing:-0.240000pt;}
.ls6b{letter-spacing:-0.224000pt;}
.ls5f{letter-spacing:-0.218400pt;}
.ls9b{letter-spacing:-0.200000pt;}
.ls5d{letter-spacing:-0.194133pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls87{letter-spacing:-0.187200pt;}
.ls2f{letter-spacing:-0.186667pt;}
.ls9c{letter-spacing:-0.160000pt;}
.ls25{letter-spacing:-0.156000pt;}
.ls68{letter-spacing:-0.149333pt;}
.ls11{letter-spacing:-0.144000pt;}
.ls41{letter-spacing:-0.124800pt;}
.ls5b{letter-spacing:-0.121333pt;}
.ls9f{letter-spacing:-0.120000pt;}
.ls6e{letter-spacing:-0.112000pt;}
.ls5c{letter-spacing:-0.097067pt;}
.ls10{letter-spacing:-0.096000pt;}
.ls2d{letter-spacing:-0.093600pt;}
.ls9a{letter-spacing:-0.080000pt;}
.ls19{letter-spacing:-0.062400pt;}
.ls84{letter-spacing:-0.053333pt;}
.ls2e{letter-spacing:-0.048000pt;}
.lsa1{letter-spacing:-0.040000pt;}
.ls46{letter-spacing:-0.031200pt;}
.lse{letter-spacing:0.000000pt;}
.ls58{letter-spacing:0.000075pt;}
.ls5{letter-spacing:0.008566pt;}
.ls71{letter-spacing:0.024000pt;}
.ls32{letter-spacing:0.027255pt;}
.ls48{letter-spacing:0.031200pt;}
.ls8c{letter-spacing:0.040000pt;}
.ls72{letter-spacing:0.043210pt;}
.ls3c{letter-spacing:0.048000pt;}
.ls36{letter-spacing:0.062400pt;}
.ls95{letter-spacing:0.080000pt;}
.ls28{letter-spacing:0.093600pt;}
.ls20{letter-spacing:0.096000pt;}
.ls70{letter-spacing:0.096021pt;}
.lsa7{letter-spacing:0.099993pt;}
.ls92{letter-spacing:0.120001pt;}
.ls27{letter-spacing:0.124800pt;}
.ls23{letter-spacing:0.140398pt;}
.ls14{letter-spacing:0.144000pt;}
.ls65{letter-spacing:0.149333pt;}
.ls1a{letter-spacing:0.156000pt;}
.ls8b{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.167555pt;}
.ls2{letter-spacing:0.172763pt;}
.ls4e{letter-spacing:0.186667pt;}
.ls45{letter-spacing:0.187200pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls8a{letter-spacing:0.200000pt;}
.ls96{letter-spacing:0.200035pt;}
.ls91{letter-spacing:0.203965pt;}
.ls2a{letter-spacing:0.218400pt;}
.ls59{letter-spacing:0.224000pt;}
.lsa{letter-spacing:0.240000pt;}
.ls17{letter-spacing:0.249600pt;}
.lsa8{letter-spacing:0.268000pt;}
.ls8d{letter-spacing:0.280001pt;}
.ls85{letter-spacing:0.280800pt;}
.ls12{letter-spacing:0.288000pt;}
.ls43{letter-spacing:0.312000pt;}
.ls35{letter-spacing:0.314902pt;}
.ls38{letter-spacing:0.331200pt;}
.ls39{letter-spacing:0.335999pt;}
.ls22{letter-spacing:0.336000pt;}
.ls37{letter-spacing:0.340779pt;}
.ls80{letter-spacing:0.342360pt;}
.ls7e{letter-spacing:0.342929pt;}
.ls34{letter-spacing:0.343200pt;}
.ls73{letter-spacing:0.350415pt;}
.ls8f{letter-spacing:0.360000pt;}
.ls16{letter-spacing:0.374400pt;}
.ls3{letter-spacing:0.384000pt;}
.lsa5{letter-spacing:0.400000pt;}
.ls33{letter-spacing:0.405600pt;}
.ls4d{letter-spacing:0.431998pt;}
.ls1c{letter-spacing:0.432000pt;}
.ls15{letter-spacing:0.436800pt;}
.ls94{letter-spacing:0.440000pt;}
.ls83{letter-spacing:0.468000pt;}
.ls21{letter-spacing:0.480000pt;}
.ls6f{letter-spacing:0.489605pt;}
.ls7d{letter-spacing:0.498674pt;}
.ls90{letter-spacing:0.520000pt;}
.ls1f{letter-spacing:0.528000pt;}
.lsc{letter-spacing:0.544000pt;}
.ls8e{letter-spacing:0.560000pt;}
.ls9{letter-spacing:0.576000pt;}
.ls7f{letter-spacing:0.576001pt;}
.lsb{letter-spacing:0.589333pt;}
.lsa0{letter-spacing:0.600000pt;}
.ls8{letter-spacing:0.624000pt;}
.ls4c{letter-spacing:0.638397pt;}
.lsab{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.671999pt;}
.ls7{letter-spacing:0.672000pt;}
.ls93{letter-spacing:0.680000pt;}
.ls29{letter-spacing:0.720000pt;}
.lsae{letter-spacing:0.760000pt;}
.lsd{letter-spacing:0.816000pt;}
.lsaa{letter-spacing:0.864000pt;}
.ls6{letter-spacing:0.960000pt;}
.ls7a{letter-spacing:1.056000pt;}
.ls74{letter-spacing:1.066667pt;}
.lsa9{letter-spacing:1.120000pt;}
.ls7c{letter-spacing:1.248000pt;}
.ls26{letter-spacing:1.536000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls1b{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls81{letter-spacing:5.440000pt;}
.ls53{letter-spacing:21.466670pt;}
.ls4f{letter-spacing:22.810670pt;}
.ls49{letter-spacing:28.055908pt;}
.ls50{letter-spacing:33.488004pt;}
.ls3a{letter-spacing:33.749833pt;}
.ls3b{letter-spacing:33.750322pt;}
.ls57{letter-spacing:34.159996pt;}
.ls55{letter-spacing:38.826667pt;}
.ls4a{letter-spacing:39.077874pt;}
.ls47{letter-spacing:40.415523pt;}
.ls40{letter-spacing:40.446448pt;}
.ls75{letter-spacing:43.978667pt;}
.ls76{letter-spacing:45.322667pt;}
.ls56{letter-spacing:48.160000pt;}
.ls51{letter-spacing:49.504000pt;}
.ls52{letter-spacing:50.138670pt;}
.ls54{letter-spacing:54.842663pt;}
.ls77{letter-spacing:70.634667pt;}
.ls79{letter-spacing:71.978667pt;}
.ls78{letter-spacing:98.634675pt;}
.ws76{word-spacing:-49.026270pt;}
.ws73{word-spacing:-38.004305pt;}
.ws2{word-spacing:-13.393333pt;}
.ws29{word-spacing:-13.066667pt;}
.wsf7{word-spacing:-12.085333pt;}
.ws65{word-spacing:-12.000000pt;}
.ws2e{word-spacing:-11.568000pt;}
.ws2a{word-spacing:-11.472000pt;}
.ws5d{word-spacing:-11.424000pt;}
.wse6{word-spacing:-11.232000pt;}
.ws66{word-spacing:-11.184000pt;}
.ws1{word-spacing:-11.093333pt;}
.ws61{word-spacing:-11.088000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws5{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws121{word-spacing:-10.704000pt;}
.ws57{word-spacing:-10.416000pt;}
.ws11f{word-spacing:-9.400000pt;}
.wsfb{word-spacing:-9.160000pt;}
.ws11e{word-spacing:-9.080000pt;}
.wsb{word-spacing:-9.066667pt;}
.wsf9{word-spacing:-8.880000pt;}
.wsfa{word-spacing:-8.840000pt;}
.ws109{word-spacing:-8.800000pt;}
.ws105{word-spacing:-8.760000pt;}
.wsfc{word-spacing:-8.680000pt;}
.wsfd{word-spacing:-8.600000pt;}
.ws111{word-spacing:-8.560000pt;}
.ws98{word-spacing:-8.474667pt;}
.wsfe{word-spacing:-8.440000pt;}
.ws97{word-spacing:-8.288000pt;}
.ws35{word-spacing:-8.101333pt;}
.wsf8{word-spacing:-8.000000pt;}
.wsd8{word-spacing:-7.877333pt;}
.ws120{word-spacing:-7.720000pt;}
.wse7{word-spacing:-7.550400pt;}
.wsc9{word-spacing:-7.541333pt;}
.ws6{word-spacing:-7.519200pt;}
.ws56{word-spacing:-7.488000pt;}
.ws7{word-spacing:-7.456800pt;}
.ws5e{word-spacing:-7.425600pt;}
.ws62{word-spacing:-7.394400pt;}
.wse8{word-spacing:-7.363200pt;}
.ws8{word-spacing:-7.332000pt;}
.ws2f{word-spacing:-7.300800pt;}
.ws67{word-spacing:-7.269600pt;}
.wsa{word-spacing:-7.238400pt;}
.ws2c{word-spacing:-7.207200pt;}
.ws2d{word-spacing:-7.176000pt;}
.wse9{word-spacing:-7.152000pt;}
.ws5f{word-spacing:-7.144800pt;}
.ws70{word-spacing:-7.113600pt;}
.ws4{word-spacing:-7.082400pt;}
.ws68{word-spacing:-7.051200pt;}
.ws9{word-spacing:-7.020000pt;}
.ws31{word-spacing:-6.988800pt;}
.ws60{word-spacing:-6.957600pt;}
.ws2b{word-spacing:-6.926400pt;}
.wsea{word-spacing:-6.895200pt;}
.wsec{word-spacing:-6.864000pt;}
.wse5{word-spacing:-6.801600pt;}
.ws58{word-spacing:-6.770400pt;}
.ws30{word-spacing:-6.739200pt;}
.wseb{word-spacing:-6.645600pt;}
.ws38{word-spacing:-5.508534pt;}
.wsed{word-spacing:-5.440000pt;}
.wsa0{word-spacing:-5.301333pt;}
.ws99{word-spacing:-5.290134pt;}
.wsd4{word-spacing:-5.071734pt;}
.wsc7{word-spacing:-4.896000pt;}
.ws83{word-spacing:-4.032000pt;}
.ws89{word-spacing:-3.957333pt;}
.ws81{word-spacing:-3.882667pt;}
.ws87{word-spacing:-3.845333pt;}
.ws55{word-spacing:-3.808000pt;}
.ws12e{word-spacing:-3.520000pt;}
.wsf{word-spacing:-2.912000pt;}
.wse{word-spacing:-2.432000pt;}
.ws72{word-spacing:-1.932416pt;}
.ws12d{word-spacing:-1.728000pt;}
.ws1b{word-spacing:-1.680000pt;}
.wsf2{word-spacing:-1.653333pt;}
.ws13{word-spacing:-1.632000pt;}
.ws7a{word-spacing:-1.584000pt;}
.wsf5{word-spacing:-1.546667pt;}
.ws6d{word-spacing:-1.536000pt;}
.wsf0{word-spacing:-1.488000pt;}
.ws15{word-spacing:-1.440000pt;}
.ws112{word-spacing:-1.400000pt;}
.ws6c{word-spacing:-1.392000pt;}
.ws100{word-spacing:-1.360000pt;}
.ws5a{word-spacing:-1.344000pt;}
.ws51{word-spacing:-1.296000pt;}
.ws47{word-spacing:-1.248000pt;}
.ws4b{word-spacing:-1.232000pt;}
.ws4a{word-spacing:-1.200000pt;}
.ws123{word-spacing:-1.160000pt;}
.ws1c{word-spacing:-1.152000pt;}
.ws28{word-spacing:-1.133333pt;}
.ws10{word-spacing:-1.120000pt;}
.ws14{word-spacing:-1.104000pt;}
.ws16{word-spacing:-1.056000pt;}
.wsc5{word-spacing:-1.045333pt;}
.ws107{word-spacing:-1.040000pt;}
.ws11{word-spacing:-1.008000pt;}
.ws12{word-spacing:-0.960000pt;}
.wsff{word-spacing:-0.920000pt;}
.ws79{word-spacing:-0.912000pt;}
.ws11b{word-spacing:-0.880000pt;}
.ws12f{word-spacing:-0.864000pt;}
.ws54{word-spacing:-0.858667pt;}
.wsc4{word-spacing:-0.821333pt;}
.wsf1{word-spacing:-0.816000pt;}
.ws46{word-spacing:-0.768000pt;}
.ws6f{word-spacing:-0.720000pt;}
.ws42{word-spacing:-0.672000pt;}
.ws11a{word-spacing:-0.640000pt;}
.ws3d{word-spacing:-0.624000pt;}
.ws108{word-spacing:-0.600000pt;}
.ws3b{word-spacing:-0.576000pt;}
.ws11c{word-spacing:-0.560000pt;}
.ws27{word-spacing:-0.544000pt;}
.wsc3{word-spacing:-0.533333pt;}
.ws1a{word-spacing:-0.528000pt;}
.ws25{word-spacing:-0.480000pt;}
.ws10a{word-spacing:-0.440000pt;}
.ws1f{word-spacing:-0.436800pt;}
.ws17{word-spacing:-0.432000pt;}
.ws102{word-spacing:-0.400000pt;}
.ws44{word-spacing:-0.384000pt;}
.ws101{word-spacing:-0.360000pt;}
.ws5c{word-spacing:-0.343200pt;}
.ws45{word-spacing:-0.336000pt;}
.ws6e{word-spacing:-0.312000pt;}
.ws48{word-spacing:-0.288000pt;}
.wsf3{word-spacing:-0.280800pt;}
.ws103{word-spacing:-0.280000pt;}
.ws23{word-spacing:-0.249600pt;}
.ws64{word-spacing:-0.240000pt;}
.ws11d{word-spacing:-0.200000pt;}
.ws19{word-spacing:-0.192000pt;}
.wsf6{word-spacing:-0.187200pt;}
.ws10b{word-spacing:-0.160000pt;}
.ws6a{word-spacing:-0.156000pt;}
.ws69{word-spacing:-0.144000pt;}
.ws41{word-spacing:-0.124800pt;}
.ws126{word-spacing:-0.120000pt;}
.ws5b{word-spacing:-0.096000pt;}
.ws43{word-spacing:-0.093600pt;}
.ws122{word-spacing:-0.080000pt;}
.ws63{word-spacing:-0.062400pt;}
.ws3e{word-spacing:-0.048000pt;}
.ws106{word-spacing:-0.040000pt;}
.wsc{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.031200pt;}
.ws115{word-spacing:0.040000pt;}
.ws59{word-spacing:0.048000pt;}
.ws24{word-spacing:0.062400pt;}
.ws124{word-spacing:0.080000pt;}
.ws53{word-spacing:0.093600pt;}
.ws3c{word-spacing:0.096000pt;}
.ws127{word-spacing:0.120000pt;}
.ws18{word-spacing:0.144000pt;}
.ws3f{word-spacing:0.156000pt;}
.ws104{word-spacing:0.160000pt;}
.ws4d{word-spacing:0.192000pt;}
.ws10c{word-spacing:0.200000pt;}
.ws4f{word-spacing:0.240000pt;}
.ws116{word-spacing:0.280000pt;}
.ws4e{word-spacing:0.288000pt;}
.wsc6{word-spacing:0.298667pt;}
.ws10e{word-spacing:0.320000pt;}
.ws4c{word-spacing:0.336000pt;}
.ws125{word-spacing:0.360000pt;}
.ws22{word-spacing:0.384000pt;}
.ws117{word-spacing:0.400000pt;}
.ws20{word-spacing:0.432000pt;}
.ws10d{word-spacing:0.440000pt;}
.wsee{word-spacing:0.480000pt;}
.wse4{word-spacing:0.485333pt;}
.ws10f{word-spacing:0.520000pt;}
.ws49{word-spacing:0.528000pt;}
.ws12c{word-spacing:0.560000pt;}
.ws1e{word-spacing:0.576000pt;}
.ws26{word-spacing:0.589333pt;}
.ws52{word-spacing:0.624000pt;}
.ws50{word-spacing:0.672000pt;}
.ws119{word-spacing:0.680000pt;}
.ws118{word-spacing:0.760000pt;}
.ws113{word-spacing:0.840000pt;}
.wsd{word-spacing:0.853333pt;}
.ws21{word-spacing:0.864000pt;}
.ws114{word-spacing:0.880000pt;}
.ws128{word-spacing:0.920000pt;}
.ws110{word-spacing:0.960000pt;}
.ws130{word-spacing:1.056000pt;}
.ws131{word-spacing:1.104000pt;}
.ws1d{word-spacing:1.248000pt;}
.wse3{word-spacing:1.536000pt;}
.wse2{word-spacing:1.546667pt;}
.ws129{word-spacing:1.840000pt;}
.ws12a{word-spacing:1.880000pt;}
.wsef{word-spacing:1.968000pt;}
.ws40{word-spacing:2.784000pt;}
.ws12b{word-spacing:2.960000pt;}
.wsf4{word-spacing:3.552000pt;}
.ws91{word-spacing:13.145070pt;}
.ws90{word-spacing:16.090670pt;}
.ws96{word-spacing:16.426662pt;}
.ws80{word-spacing:16.489306pt;}
.ws88{word-spacing:16.501455pt;}
.ws82{word-spacing:16.502381pt;}
.ws8a{word-spacing:16.549518pt;}
.ws7f{word-spacing:16.794663pt;}
.ws94{word-spacing:16.837337pt;}
.ws95{word-spacing:18.069333pt;}
.ws74{word-spacing:18.322225pt;}
.ws85{word-spacing:18.365342pt;}
.ws86{word-spacing:18.883986pt;}
.ws84{word-spacing:19.220252pt;}
.ws7c{word-spacing:20.857904pt;}
.ws93{word-spacing:22.624000pt;}
.ws8b{word-spacing:23.433465pt;}
.ws75{word-spacing:23.833204pt;}
.ws71{word-spacing:24.191067pt;}
.wsbb{word-spacing:27.178662pt;}
.ws8f{word-spacing:27.365337pt;}
.wsa7{word-spacing:28.019753pt;}
.wsb8{word-spacing:30.128000pt;}
.ws9f{word-spacing:30.256014pt;}
.wsbe{word-spacing:31.397334pt;}
.wsc2{word-spacing:32.965333pt;}
.ws77{word-spacing:33.710034pt;}
.ws7e{word-spacing:34.083197pt;}
.ws92{word-spacing:34.085337pt;}
.ws7d{word-spacing:34.452796pt;}
.ws8d{word-spacing:36.658799pt;}
.ws8c{word-spacing:37.513709pt;}
.wsc1{word-spacing:38.303996pt;}
.wsce{word-spacing:38.977261pt;}
.wsa8{word-spacing:39.819486pt;}
.wsd1{word-spacing:40.852810pt;}
.wsa9{word-spacing:41.026687pt;}
.wsd0{word-spacing:41.708208pt;}
.ws9e{word-spacing:42.037337pt;}
.ws9c{word-spacing:43.157337pt;}
.wsca{word-spacing:43.346389pt;}
.wsa1{word-spacing:45.491758pt;}
.ws9d{word-spacing:46.316797pt;}
.wsd3{word-spacing:48.588742pt;}
.ws8e{word-spacing:48.682671pt;}
.wsb6{word-spacing:53.390404pt;}
.wsa6{word-spacing:53.834671pt;}
.wsa2{word-spacing:54.282670pt;}
.wscf{word-spacing:54.294794pt;}
.wsb7{word-spacing:54.517115pt;}
.wscd{word-spacing:55.282700pt;}
.wsb4{word-spacing:55.626670pt;}
.wsbc{word-spacing:56.037337pt;}
.wscc{word-spacing:56.571722pt;}
.wscb{word-spacing:56.940793pt;}
.wsa4{word-spacing:58.498692pt;}
.wsa3{word-spacing:58.896268pt;}
.wsac{word-spacing:59.173333pt;}
.wsd2{word-spacing:62.705275pt;}
.wsab{word-spacing:63.337095pt;}
.wsb2{word-spacing:64.960004pt;}
.wsd9{word-spacing:65.669334pt;}
.wsb3{word-spacing:67.536004pt;}
.wsaf{word-spacing:70.298667pt;}
.wsb5{word-spacing:72.165337pt;}
.wsbf{word-spacing:72.800004pt;}
.wsba{word-spacing:73.285337pt;}
.wsb9{word-spacing:73.882670pt;}
.ws9a{word-spacing:73.904813pt;}
.ws9b{word-spacing:74.029332pt;}
.wsaa{word-spacing:75.189330pt;}
.wsb0{word-spacing:76.344029pt;}
.wsad{word-spacing:76.741605pt;}
.wsd6{word-spacing:76.794667pt;}
.wsb1{word-spacing:78.549337pt;}
.wsbd{word-spacing:78.960004pt;}
.wsa5{word-spacing:80.976000pt;}
.ws34{word-spacing:81.054409pt;}
.wsc0{word-spacing:81.125337pt;}
.wsae{word-spacing:86.314663pt;}
.wsd7{word-spacing:92.325334pt;}
.wsdd{word-spacing:101.695998pt;}
.wsd5{word-spacing:103.450667pt;}
.wsdf{word-spacing:151.461331pt;}
.ws37{word-spacing:164.602675pt;}
.wse0{word-spacing:169.381331pt;}
.ws33{word-spacing:170.617070pt;}
.wsc8{word-spacing:179.871993pt;}
.ws3a{word-spacing:183.493337pt;}
.ws7b{word-spacing:205.594675pt;}
.wsdb{word-spacing:225.493349pt;}
.ws39{word-spacing:237.029337pt;}
.ws36{word-spacing:248.266670pt;}
.wsda{word-spacing:254.128014pt;}
.wsdc{word-spacing:284.446395pt;}
.wse1{word-spacing:350.858662pt;}
.wsde{word-spacing:362.095996pt;}
.ws32{word-spacing:501.909324pt;}
.ws78{word-spacing:774.535755pt;}
._18{margin-left:-38.469518pt;}
._16{margin-left:-28.055904pt;}
._12{margin-left:-10.189942pt;}
._3d{margin-left:-9.000000pt;}
._3a{margin-left:-7.560000pt;}
._2{margin-left:-6.405333pt;}
._5{margin-left:-5.438924pt;}
._3{margin-left:-4.339200pt;}
._1{margin-left:-2.884267pt;}
._0{margin-left:-1.578676pt;}
._4{width:1.045353pt;}
._6{width:1.995753pt;}
._11{width:2.918400pt;}
._1e{width:4.146909pt;}
._3b{width:5.269941pt;}
._37{width:6.800000pt;}
._15{width:8.015977pt;}
._38{width:9.040000pt;}
._3c{width:10.202692pt;}
._36{width:11.520000pt;}
._d{width:14.035198pt;}
._39{width:15.040002pt;}
._1d{width:31.989359pt;}
._17{width:34.318387pt;}
._e{width:36.043137pt;}
._10{width:40.449052pt;}
._f{width:41.993133pt;}
._14{width:43.944712pt;}
._9{width:44.883184pt;}
._19{width:48.453702pt;}
._13{width:50.088517pt;}
._25{width:51.632004pt;}
._8{width:55.050670pt;}
._1c{width:59.632010pt;}
._1f{width:62.687403pt;}
._7{width:65.829347pt;}
._24{width:68.479690pt;}
._20{width:73.228230pt;}
._2c{width:74.477850pt;}
._23{width:78.171249pt;}
._26{width:83.758437pt;}
._21{width:89.847768pt;}
._22{width:94.010488pt;}
._2b{width:100.628939pt;}
._2f{width:111.292818pt;}
._2a{width:127.456009pt;}
._28{width:143.109345pt;}
._b{width:158.901332pt;}
._30{width:162.221842pt;}
._a{width:166.552518pt;}
._c{width:176.819165pt;}
._2e{width:190.784024pt;}
._32{width:201.247996pt;}
._31{width:212.026672pt;}
._2d{width:247.109348pt;}
._1b{width:260.720033pt;}
._29{width:266.933348pt;}
._33{width:280.381843pt;}
._35{width:290.648490pt;}
._34{width:306.144005pt;}
._27{width:389.184032pt;}
._1a{width:777.417907pt;}
.fsa{font-size:24.266668pt;}
.fs5{font-size:31.199999pt;}
.fsc{font-size:35.767466pt;}
.fsb{font-size:35.785599pt;}
.fs9{font-size:37.333333pt;}
.fse{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fsd{font-size:44.340266pt;}
.fs6{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fs8{font-size:58.666667pt;}
.fs7{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y152{bottom:2.905355pt;}
.y14c{bottom:14.224040pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y2f{bottom:60.723466pt;}
.y210{bottom:61.013335pt;}
.y11b{bottom:61.158936pt;}
.y260{bottom:61.412902pt;}
.y68{bottom:61.769331pt;}
.y1b1{bottom:62.191733pt;}
.y171{bottom:68.769868pt;}
.y13b{bottom:71.321469pt;}
.y25f{bottom:72.742902pt;}
.y98{bottom:73.666943pt;}
.y2e{bottom:74.051466pt;}
.y20f{bottom:74.345334pt;}
.y11a{bottom:74.490935pt;}
.y67{bottom:75.101330pt;}
.y1b0{bottom:75.523732pt;}
.yb7{bottom:80.115871pt;}
.y170{bottom:82.107204pt;}
.yd6{bottom:83.070810pt;}
.y25e{bottom:84.072902pt;}
.y13a{bottom:84.653468pt;}
.y97{bottom:86.998942pt;}
.y2d{bottom:87.379466pt;}
.y20e{bottom:87.677333pt;}
.y119{bottom:87.822934pt;}
.y66{bottom:88.437331pt;}
.yb6{bottom:93.447870pt;}
.y25d{bottom:95.402903pt;}
.y16f{bottom:95.439203pt;}
.yd5{bottom:97.734810pt;}
.y139{bottom:97.986796pt;}
.y96{bottom:100.330941pt;}
.y20d{bottom:101.009333pt;}
.y118{bottom:101.154933pt;}
.y65{bottom:101.769331pt;}
.y1af{bottom:102.270394pt;}
.y25c{bottom:106.732903pt;}
.yb5{bottom:106.779869pt;}
.y16e{bottom:108.771202pt;}
.yd4{bottom:112.398810pt;}
.y95{bottom:113.662941pt;}
.y20c{bottom:114.341332pt;}
.y117{bottom:114.486933pt;}
.y64{bottom:115.101330pt;}
.y1ae{bottom:115.602394pt;}
.y145{bottom:115.908040pt;}
.y25b{bottom:118.062903pt;}
.yb4{bottom:120.111869pt;}
.y16d{bottom:122.103202pt;}
.y2c{bottom:124.609600pt;}
.y138{bottom:124.762931pt;}
.y94{bottom:126.994940pt;}
.yd3{bottom:127.062810pt;}
.y20b{bottom:127.673331pt;}
.y116{bottom:127.818932pt;}
.y63{bottom:128.434663pt;}
.y1ad{bottom:128.934393pt;}
.y25a{bottom:129.392903pt;}
.yb3{bottom:133.445202pt;}
.y16c{bottom:135.447207pt;}
.y2b{bottom:137.942934pt;}
.y137{bottom:138.096264pt;}
.y93{bottom:140.326939pt;}
.y259{bottom:140.722903pt;}
.y20a{bottom:141.022816pt;}
.y115{bottom:141.150931pt;}
.yd2{bottom:141.726810pt;}
.y62{bottom:141.767997pt;}
.y1ac{bottom:142.266392pt;}
.yb2{bottom:146.779869pt;}
.y16b{bottom:148.779207pt;}
.y2a{bottom:151.277611pt;}
.y136{bottom:151.429597pt;}
.y258{bottom:152.052903pt;}
.y92{bottom:153.658938pt;}
.y209{bottom:154.354815pt;}
.y114{bottom:154.486933pt;}
.y61{bottom:155.102664pt;}
.y1ab{bottom:155.598392pt;}
.yd1{bottom:156.390810pt;}
.yb1{bottom:160.111869pt;}
.y16a{bottom:162.111206pt;}
.y257{bottom:163.382903pt;}
.y29{bottom:164.609610pt;}
.y135{bottom:164.774937pt;}
.y91{bottom:166.990938pt;}
.y208{bottom:167.686814pt;}
.y113{bottom:167.818932pt;}
.y60{bottom:168.434663pt;}
.y1aa{bottom:168.930391pt;}
.yd0{bottom:171.057476pt;}
.yb0{bottom:173.450538pt;}
.y256{bottom:174.712903pt;}
.y169{bottom:175.443205pt;}
.y28{bottom:177.944278pt;}
.y134{bottom:178.106936pt;}
.y90{bottom:180.325605pt;}
.y207{bottom:181.018813pt;}
.y112{bottom:181.150931pt;}
.y5f{bottom:181.767997pt;}
.y1a9{bottom:182.265058pt;}
.ycf{bottom:185.745476pt;}
.y255{bottom:186.042903pt;}
.yaf{bottom:186.782538pt;}
.y168{bottom:188.775205pt;}
.y27{bottom:191.276277pt;}
.y133{bottom:191.438936pt;}
.y8f{bottom:193.657604pt;}
.y206{bottom:194.350813pt;}
.y111{bottom:194.489601pt;}
.y5e{bottom:195.109334pt;}
.y1a8{bottom:195.597058pt;}
.y254{bottom:197.372903pt;}
.yae{bottom:200.114537pt;}
.y29c{bottom:200.278669pt;}
.yce{bottom:200.409476pt;}
.y167{bottom:202.107204pt;}
.y26{bottom:204.610944pt;}
.y132{bottom:204.770935pt;}
.y8e{bottom:206.990938pt;}
.y205{bottom:207.682812pt;}
.y110{bottom:207.821600pt;}
.y5d{bottom:208.441334pt;}
.y253{bottom:208.702904pt;}
.y1a7{bottom:208.929057pt;}
.yad{bottom:213.446536pt;}
.y29b{bottom:213.610668pt;}
.ycd{bottom:215.073476pt;}
.y166{bottom:215.439203pt;}
.y25{bottom:217.942944pt;}
.y131{bottom:218.102934pt;}
.y252{bottom:220.032904pt;}
.y8d{bottom:220.325605pt;}
.y204{bottom:221.014811pt;}
.y10f{bottom:221.153599pt;}
.y5c{bottom:221.773333pt;}
.yac{bottom:226.778535pt;}
.y29a{bottom:226.942668pt;}
.y165{bottom:228.771202pt;}
.ycc{bottom:229.737476pt;}
.y24{bottom:231.277611pt;}
.y251{bottom:231.362904pt;}
.y130{bottom:231.434934pt;}
.y1a6{bottom:232.945086pt;}
.y8c{bottom:233.657604pt;}
.y203{bottom:234.346810pt;}
.y10e{bottom:234.485599pt;}
.y5b{bottom:235.105332pt;}
.yab{bottom:240.115871pt;}
.y299{bottom:240.274667pt;}
.y164{bottom:242.103202pt;}
.y250{bottom:242.692904pt;}
.ycb{bottom:244.401476pt;}
.y23{bottom:244.609610pt;}
.y12f{bottom:244.766933pt;}
.y1a5{bottom:246.277085pt;}
.y8b{bottom:246.997608pt;}
.y202{bottom:247.678810pt;}
.y10d{bottom:247.817598pt;}
.y5a{bottom:248.437331pt;}
.yaa{bottom:253.447870pt;}
.y298{bottom:253.606666pt;}
.y24f{bottom:254.022904pt;}
.y163{bottom:255.435201pt;}
.y22{bottom:257.944278pt;}
.y12e{bottom:258.098932pt;}
.yca{bottom:259.065476pt;}
.y1a4{bottom:259.609084pt;}
.y8a{bottom:260.329607pt;}
.y201{bottom:261.010809pt;}
.y10c{bottom:261.154933pt;}
.y59{bottom:261.769331pt;}
.y24e{bottom:265.352904pt;}
.ya9{bottom:266.779869pt;}
.y297{bottom:266.938665pt;}
.y21{bottom:271.276277pt;}
.y12d{bottom:271.430931pt;}
.y1a3{bottom:272.941084pt;}
.y89{bottom:273.661607pt;}
.yc9{bottom:273.729476pt;}
.y200{bottom:274.342808pt;}
.y10b{bottom:274.486933pt;}
.y58{bottom:275.101330pt;}
.y24d{bottom:276.682904pt;}
.ya8{bottom:280.111869pt;}
.y296{bottom:280.270665pt;}
.y162{bottom:282.214004pt;}
.y20{bottom:284.610944pt;}
.y12c{bottom:284.762931pt;}
.y1a2{bottom:286.273083pt;}
.y88{bottom:286.993606pt;}
.y1ff{bottom:287.674808pt;}
.y10a{bottom:287.818932pt;}
.y24c{bottom:288.012904pt;}
.yc8{bottom:288.393476pt;}
.y57{bottom:288.433329pt;}
.ya7{bottom:293.446536pt;}
.y295{bottom:293.602664pt;}
.y161{bottom:295.546003pt;}
.y1f{bottom:297.942944pt;}
.y12b{bottom:298.096264pt;}
.y24b{bottom:299.342904pt;}
.y1a1{bottom:299.605082pt;}
.y87{bottom:300.325605pt;}
.y1fe{bottom:301.006807pt;}
.y109{bottom:301.150931pt;}
.y56{bottom:301.766663pt;}
.yc7{bottom:303.057476pt;}
.ya6{bottom:306.778535pt;}
.y294{bottom:306.934663pt;}
.y160{bottom:308.878002pt;}
.y24a{bottom:310.672904pt;}
.y1e{bottom:311.276277pt;}
.y12a{bottom:311.429597pt;}
.y1a0{bottom:312.937081pt;}
.y86{bottom:313.657604pt;}
.y1fd{bottom:314.340140pt;}
.y108{bottom:314.484265pt;}
.yc6{bottom:317.721476pt;}
.ya5{bottom:320.113182pt;}
.y293{bottom:320.266663pt;}
.y249{bottom:322.002905pt;}
.y15f{bottom:322.210002pt;}
.y1d{bottom:324.613613pt;}
.y129{bottom:324.762931pt;}
.y19f{bottom:326.269081pt;}
.y85{bottom:326.990938pt;}
.y1fc{bottom:327.674787pt;}
.y107{bottom:327.817598pt;}
.y55{bottom:330.668294pt;}
.y248{bottom:333.332905pt;}
.ya4{bottom:333.445182pt;}
.y1c{bottom:337.945612pt;}
.y128{bottom:338.097598pt;}
.y19e{bottom:339.601080pt;}
.y292{bottom:339.604018pt;}
.y84{bottom:340.328253pt;}
.y1fb{bottom:341.006787pt;}
.y106{bottom:341.150952pt;}
.y54{bottom:344.000294pt;}
.y247{bottom:344.662905pt;}
.ya3{bottom:346.778515pt;}
.y1b{bottom:351.277611pt;}
.y127{bottom:351.429597pt;}
.y19d{bottom:352.933079pt;}
.y291{bottom:352.936018pt;}
.y83{bottom:353.660252pt;}
.y1fa{bottom:354.340120pt;}
.y105{bottom:354.485619pt;}
.y246{bottom:355.992905pt;}
.y53{bottom:357.332293pt;}
.ya2{bottom:360.111848pt;}
.y1a{bottom:364.609610pt;}
.y126{bottom:364.764265pt;}
.y19c{bottom:366.265079pt;}
.y82{bottom:366.992251pt;}
.y245{bottom:367.322905pt;}
.y1f9{bottom:367.674787pt;}
.y104{bottom:367.817618pt;}
.y52{bottom:370.664292pt;}
.y290{bottom:372.268017pt;}
.ya1{bottom:373.443848pt;}
.y198{bottom:375.567335pt;}
.y19{bottom:377.942944pt;}
.y125{bottom:378.096264pt;}
.y244{bottom:378.652905pt;}
.y19b{bottom:379.597078pt;}
.y81{bottom:380.324251pt;}
.y1f8{bottom:381.006787pt;}
.y103{bottom:381.162958pt;}
.y51{bottom:383.996291pt;}
.y243{bottom:389.982905pt;}
.y197{bottom:390.231335pt;}
.y18{bottom:391.312276pt;}
.y124{bottom:391.429597pt;}
.y28f{bottom:391.600016pt;}
.y19a{bottom:392.930411pt;}
.y80{bottom:393.656250pt;}
.y1f7{bottom:394.340120pt;}
.y102{bottom:394.494957pt;}
.y50{bottom:397.328291pt;}
.y242{bottom:401.312905pt;}
.y123{bottom:404.762931pt;}
.y196{bottom:404.895335pt;}
.y28e{bottom:404.933350pt;}
.y199{bottom:406.262410pt;}
.y1f6{bottom:407.672119pt;}
.y101{bottom:407.826957pt;}
.y4f{bottom:410.660290pt;}
.y241{bottom:412.642905pt;}
.y122{bottom:418.096264pt;}
.y195{bottom:419.559335pt;}
.y100{bottom:421.158956pt;}
.yc5{bottom:422.119347pt;}
.y240{bottom:423.972905pt;}
.y4e{bottom:423.992289pt;}
.y28d{bottom:429.228914pt;}
.y121{bottom:431.432265pt;}
.y17{bottom:433.312276pt;}
.y194{bottom:434.223335pt;}
.y1f5{bottom:434.412141pt;}
.yff{bottom:434.490955pt;}
.y23f{bottom:435.302906pt;}
.yc4{bottom:435.451346pt;}
.ya0{bottom:436.373730pt;}
.y4d{bottom:437.324288pt;}
.y28c{bottom:442.560913pt;}
.y120{bottom:444.764265pt;}
.y23e{bottom:446.632906pt;}
.y1f4{bottom:447.746809pt;}
.yfe{bottom:447.822954pt;}
.y16{bottom:447.976276pt;}
.yc3{bottom:448.783346pt;}
.y193{bottom:448.887335pt;}
.y9f{bottom:449.708397pt;}
.y4c{bottom:450.656288pt;}
.y1d5{bottom:454.930411pt;}
.y28b{bottom:455.894246pt;}
.y23d{bottom:457.962906pt;}
.y11f{bottom:458.096264pt;}
.y1f3{bottom:461.078808pt;}
.yfd{bottom:461.154954pt;}
.yc2{bottom:462.115345pt;}
.y15{bottom:462.640276pt;}
.y9e{bottom:463.040397pt;}
.y192{bottom:463.551335pt;}
.y4b{bottom:463.988287pt;}
.y1d4{bottom:468.262410pt;}
.y23c{bottom:469.292906pt;}
.y11e{bottom:471.430931pt;}
.y1f2{bottom:474.413475pt;}
.yfc{bottom:474.486953pt;}
.yc1{bottom:475.447344pt;}
.y9d{bottom:476.373730pt;}
.y14{bottom:477.304276pt;}
.y4a{bottom:477.320286pt;}
.y191{bottom:478.215335pt;}
.y28a{bottom:480.195188pt;}
.y23b{bottom:480.622906pt;}
.y11d{bottom:484.762931pt;}
.y1f1{bottom:487.745475pt;}
.yfb{bottom:487.818952pt;}
.yc0{bottom:488.779343pt;}
.y9c{bottom:489.707063pt;}
.y49{bottom:490.652286pt;}
.y23a{bottom:491.952906pt;}
.y13{bottom:491.968276pt;}
.y190{bottom:492.879335pt;}
.y289{bottom:493.527187pt;}
.y1d3{bottom:495.071745pt;}
.y11c{bottom:498.094930pt;}
.y1f0{bottom:501.078808pt;}
.yfa{bottom:501.150952pt;}
.ybf{bottom:502.111343pt;}
.y9b{bottom:503.041731pt;}
.y239{bottom:503.282906pt;}
.y48{bottom:503.984285pt;}
.y12{bottom:506.632276pt;}
.y288{bottom:506.859186pt;}
.y18f{bottom:507.548668pt;}
.y1d2{bottom:510.574412pt;}
.y1ef{bottom:514.412141pt;}
.yf9{bottom:514.485619pt;}
.y238{bottom:514.612906pt;}
.ybe{bottom:515.443342pt;}
.y9a{bottom:516.373730pt;}
.y47{bottom:517.320286pt;}
.y1cf{bottom:518.330413pt;}
.y287{bottom:520.191185pt;}
.y11{bottom:521.296276pt;}
.y18e{bottom:522.212668pt;}
.y237{bottom:525.942906pt;}
.y1d1{bottom:526.077079pt;}
.y1ee{bottom:527.748143pt;}
.yf8{bottom:527.817618pt;}
.ybd{bottom:528.775341pt;}
.y99{bottom:529.705729pt;}
.y46{bottom:530.652286pt;}
.y286{bottom:533.523185pt;}
.y10{bottom:535.960276pt;}
.y18d{bottom:536.876668pt;}
.y236{bottom:537.272906pt;}
.y1ed{bottom:541.080142pt;}
.yf7{bottom:541.150952pt;}
.y1d0{bottom:541.579745pt;}
.ybc{bottom:542.110009pt;}
.y45{bottom:543.984285pt;}
.y285{bottom:546.855184pt;}
.y235{bottom:548.602907pt;}
.yf{bottom:550.624276pt;}
.y15e{bottom:550.687863pt;}
.y1ec{bottom:554.412141pt;}
.yf6{bottom:554.485619pt;}
.ybb{bottom:555.442008pt;}
.y1ce{bottom:557.082412pt;}
.y44{bottom:557.320286pt;}
.y234{bottom:559.932907pt;}
.y284{bottom:560.188517pt;}
.y15d{bottom:564.019863pt;}
.ye{bottom:565.288276pt;}
.y18c{bottom:567.694001pt;}
.y1eb{bottom:567.745475pt;}
.yf5{bottom:567.817618pt;}
.yba{bottom:568.776675pt;}
.y43{bottom:570.652286pt;}
.y233{bottom:571.262907pt;}
.y1cd{bottom:572.585079pt;}
.y15c{bottom:577.351862pt;}
.yd{bottom:579.952276pt;}
.y1ea{bottom:581.078808pt;}
.yf4{bottom:581.152286pt;}
.yb9{bottom:582.108675pt;}
.y232{bottom:582.592907pt;}
.y18b{bottom:583.196668pt;}
.y42{bottom:583.984285pt;}
.y283{bottom:584.596240pt;}
.y1cc{bottom:588.087746pt;}
.y1c9{bottom:588.097078pt;}
.y15b{bottom:590.683861pt;}
.y231{bottom:593.922907pt;}
.y1e9{bottom:594.412141pt;}
.yf3{bottom:594.484285pt;}
.yc{bottom:594.616276pt;}
.yb8{bottom:595.440674pt;}
.y282{bottom:595.926240pt;}
.y41{bottom:597.320286pt;}
.y18a{bottom:598.699335pt;}
.y1cb{bottom:603.590413pt;}
.y15a{bottom:604.015860pt;}
.y230{bottom:605.252907pt;}
.y281{bottom:607.256240pt;}
.y1e8{bottom:607.745475pt;}
.yf2{bottom:607.820286pt;}
.yb{bottom:609.280276pt;}
.y40{bottom:610.652286pt;}
.y189{bottom:614.202001pt;}
.y22f{bottom:616.582907pt;}
.y159{bottom:617.350528pt;}
.y280{bottom:618.586240pt;}
.y1ca{bottom:619.093079pt;}
.y1e7{bottom:621.077474pt;}
.yf1{bottom:621.152286pt;}
.ya{bottom:623.944276pt;}
.y3f{bottom:623.984285pt;}
.y22e{bottom:627.912907pt;}
.y188{bottom:629.704668pt;}
.y27f{bottom:629.916240pt;}
.y158{bottom:630.682527pt;}
.yf0{bottom:634.484285pt;}
.y1c8{bottom:634.595744pt;}
.y3e{bottom:637.318952pt;}
.y9{bottom:638.608276pt;}
.y22d{bottom:639.242907pt;}
.y27e{bottom:641.246241pt;}
.y157{bottom:644.018569pt;}
.y187{bottom:645.207335pt;}
.y1e6{bottom:647.817618pt;}
.yef{bottom:647.818952pt;}
.y22c{bottom:650.572907pt;}
.y3d{bottom:650.650952pt;}
.y27d{bottom:652.576241pt;}
.y156{bottom:657.350569pt;}
.y186{bottom:660.696627pt;}
.yee{bottom:661.150952pt;}
.y1e5{bottom:661.152245pt;}
.y22b{bottom:661.902908pt;}
.y27c{bottom:663.906241pt;}
.y3c{bottom:663.986912pt;}
.y8{bottom:665.274943pt;}
.y155{bottom:670.682568pt;}
.y32{bottom:673.018130pt;}
.y22a{bottom:673.232908pt;}
.y1e4{bottom:674.484244pt;}
.yed{bottom:674.486912pt;}
.y27b{bottom:675.236241pt;}
.y185{bottom:676.199294pt;}
.y3b{bottom:677.318912pt;}
.y154{bottom:684.014567pt;}
.y229{bottom:684.562908pt;}
.y1c7{bottom:685.451721pt;}
.y27a{bottom:686.566241pt;}
.yec{bottom:687.818912pt;}
.y3a{bottom:690.650911pt;}
.y31{bottom:691.684130pt;}
.y184{bottom:691.701961pt;}
.y7{bottom:694.592232pt;}
.y228{bottom:695.892908pt;}
.y279{bottom:697.896241pt;}
.y1c6{bottom:698.783720pt;}
.yeb{bottom:701.150911pt;}
.y39{bottom:703.986912pt;}
.y183{bottom:707.204627pt;}
.y227{bottom:707.222908pt;}
.y278{bottom:709.226241pt;}
.y144{bottom:709.490641pt;}
.y30{bottom:710.350129pt;}
.y1c5{bottom:712.115720pt;}
.yea{bottom:714.484244pt;}
.y1e3{bottom:714.486912pt;}
.y38{bottom:717.318912pt;}
.y226{bottom:718.552908pt;}
.y277{bottom:720.556241pt;}
.y182{bottom:722.707294pt;}
.y13c{bottom:723.714681pt;}
.y14b{bottom:723.722800pt;}
.y1c4{bottom:725.447719pt;}
.y1e2{bottom:727.818912pt;}
.ye9{bottom:727.820246pt;}
.y225{bottom:729.882908pt;}
.y37{bottom:730.650911pt;}
.y276{bottom:731.886241pt;}
.y6{bottom:734.597566pt;}
.y181{bottom:738.207294pt;}
.y1c3{bottom:738.779718pt;}
.y1e1{bottom:741.150911pt;}
.ye8{bottom:741.152245pt;}
.y224{bottom:741.212908pt;}
.y143{bottom:742.099535pt;}
.y151{bottom:742.255747pt;}
.y14a{bottom:742.420774pt;}
.y275{bottom:743.216241pt;}
.y36{bottom:743.984244pt;}
.y13e{bottom:750.613363pt;}
.y1c2{bottom:752.111718pt;}
.y223{bottom:752.542908pt;}
.y180{bottom:753.707294pt;}
.ye7{bottom:754.484244pt;}
.y274{bottom:754.546242pt;}
.y35{bottom:757.316243pt;}
.y222{bottom:763.872908pt;}
.y1c1{bottom:765.443717pt;}
.y273{bottom:765.876242pt;}
.y1e0{bottom:767.817578pt;}
.ye6{bottom:767.820246pt;}
.y13d{bottom:768.180013pt;}
.y17f{bottom:769.207294pt;}
.y5{bottom:774.602901pt;}
.y221{bottom:775.202909pt;}
.y272{bottom:777.206242pt;}
.y1c0{bottom:778.775716pt;}
.y1df{bottom:781.150911pt;}
.ye5{bottom:781.152245pt;}
.y17e{bottom:784.707294pt;}
.y220{bottom:786.532909pt;}
.y271{bottom:788.536242pt;}
.ye4{bottom:794.484244pt;}
.y1de{bottom:794.490914pt;}
.y21f{bottom:797.862909pt;}
.y149{bottom:799.740357pt;}
.y150{bottom:799.745312pt;}
.y270{bottom:799.866242pt;}
.y142{bottom:799.884332pt;}
.y17d{bottom:800.207294pt;}
.y7f{bottom:804.482910pt;}
.y1bf{bottom:805.599716pt;}
.y1dd{bottom:807.822914pt;}
.ye3{bottom:807.824248pt;}
.y21e{bottom:809.192909pt;}
.y26f{bottom:811.196242pt;}
.y4{bottom:814.608236pt;}
.y17c{bottom:815.707294pt;}
.y21d{bottom:820.522909pt;}
.y1be{bottom:821.102383pt;}
.y1dc{bottom:821.154913pt;}
.ye2{bottom:821.156247pt;}
.y26e{bottom:822.526242pt;}
.y33{bottom:823.475179pt;}
.y1bb{bottom:828.858383pt;}
.y17b{bottom:831.207294pt;}
.y7e{bottom:831.320911pt;}
.y21c{bottom:831.852909pt;}
.y26d{bottom:833.856242pt;}
.y1db{bottom:834.486912pt;}
.ye1{bottom:834.488246pt;}
.y7b{bottom:834.578244pt;}
.y1bd{bottom:836.605049pt;}
.y21b{bottom:843.182909pt;}
.y7a{bottom:844.574244pt;}
.y26c{bottom:845.186242pt;}
.y17a{bottom:846.707294pt;}
.y7d{bottom:846.823578pt;}
.y1da{bottom:847.818912pt;}
.ye0{bottom:847.820246pt;}
.y76{bottom:849.578911pt;}
.y1bc{bottom:852.107716pt;}
.y21a{bottom:854.512909pt;}
.y79{bottom:854.570244pt;}
.y141{bottom:855.513044pt;}
.y14f{bottom:855.517170pt;}
.y148{bottom:855.825337pt;}
.y26b{bottom:856.516242pt;}
.y75{bottom:859.574910pt;}
.y1d9{bottom:861.150911pt;}
.ydf{bottom:861.152245pt;}
.y179{bottom:862.207294pt;}
.y7c{bottom:862.326245pt;}
.y78{bottom:864.586911pt;}
.y219{bottom:865.842909pt;}
.y1ba{bottom:867.610383pt;}
.y26a{bottom:867.846243pt;}
.yde{bottom:874.484244pt;}
.y1d8{bottom:874.485578pt;}
.y218{bottom:877.172909pt;}
.y178{bottom:877.707294pt;}
.y77{bottom:877.830910pt;}
.y269{bottom:879.176243pt;}
.y1b9{bottom:883.103717pt;}
.y1d7{bottom:887.817578pt;}
.ydd{bottom:887.818912pt;}
.y217{bottom:888.502910pt;}
.y268{bottom:890.506243pt;}
.y1b8{bottom:893.099717pt;}
.y177{bottom:893.207294pt;}
.y74{bottom:893.324243pt;}
.y216{bottom:899.832910pt;}
.ydc{bottom:901.150911pt;}
.y1d6{bottom:901.153579pt;}
.y267{bottom:901.836243pt;}
.y1b4{bottom:903.609049pt;}
.y70{bottom:904.328244pt;}
.y1b7{bottom:908.602384pt;}
.y176{bottom:908.707294pt;}
.y73{bottom:908.826910pt;}
.y215{bottom:911.162910pt;}
.y14e{bottom:911.637933pt;}
.y147{bottom:911.802960pt;}
.y140{bottom:911.803789pt;}
.y266{bottom:913.166243pt;}
.y6f{bottom:914.324244pt;}
.ydb{bottom:914.485578pt;}
.y6b{bottom:919.324243pt;}
.y214{bottom:922.492910pt;}
.y1b6{bottom:924.105050pt;}
.y175{bottom:924.209961pt;}
.y6e{bottom:924.320244pt;}
.y72{bottom:924.329577pt;}
.y265{bottom:924.496243pt;}
.yda{bottom:927.817578pt;}
.y6a{bottom:929.320243pt;}
.y213{bottom:933.822910pt;}
.y6d{bottom:934.322911pt;}
.y264{bottom:935.826243pt;}
.y1b5{bottom:939.607717pt;}
.y174{bottom:939.707294pt;}
.y71{bottom:939.832243pt;}
.yd9{bottom:941.152245pt;}
.y212{bottom:945.152910pt;}
.y263{bottom:947.156243pt;}
.yd8{bottom:954.484244pt;}
.y1b2{bottom:955.109049pt;}
.y173{bottom:955.207294pt;}
.y6c{bottom:955.322911pt;}
.y211{bottom:956.482910pt;}
.y262{bottom:958.486243pt;}
.y13f{bottom:966.323148pt;}
.y153{bottom:966.332682pt;}
.y14d{bottom:966.801432pt;}
.y146{bottom:966.948568pt;}
.yd7{bottom:967.816243pt;}
.y261{bottom:969.816243pt;}
.y1b3{bottom:970.611716pt;}
.y172{bottom:970.709961pt;}
.y69{bottom:970.816243pt;}
.y34{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.h15{height:26.038715pt;}
.h13{height:26.051916pt;}
.h17{height:26.087701pt;}
.h14{height:26.123487pt;}
.hd{height:31.461333pt;}
.h18{height:31.747630pt;}
.hb{height:32.594667pt;}
.hc{height:32.605469pt;}
.h8{height:34.512000pt;}
.h9{height:34.523438pt;}
.h11{height:36.922667pt;}
.h1a{height:36.933334pt;}
.h1d{height:37.408000pt;}
.h1b{height:37.418667pt;}
.h10{height:38.229333pt;}
.h19{height:38.240000pt;}
.h1f{height:38.282831pt;}
.h2{height:38.346667pt;}
.h7{height:38.359375pt;}
.h1e{height:38.528000pt;}
.h1c{height:38.538667pt;}
.h4{height:39.318359pt;}
.h23{height:39.560000pt;}
.h22{height:40.080000pt;}
.h3{height:40.661333pt;}
.h21{height:40.960000pt;}
.hf{height:42.181333pt;}
.ha{height:47.472000pt;}
.h12{height:49.152000pt;}
.h20{height:57.418667pt;}
.he{height:69.024000pt;}
.h5{height:99.701333pt;}
.h6{height:99.734375pt;}
.h16{height:271.659993pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:608.314657pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:7.689199pt;}
.x6{left:12.708137pt;}
.x2{left:54.392400pt;}
.x19{left:96.687464pt;}
.x7{left:125.291331pt;}
.x11{left:130.312002pt;}
.x10{left:142.503476pt;}
.xf{left:172.885457pt;}
.x4{left:207.516805pt;}
.x1a{left:208.535461pt;}
.x8{left:211.683472pt;}
.x5{left:223.518142pt;}
.x1e{left:267.194804pt;}
.x1b{left:277.880393pt;}
.x1c{left:289.285736pt;}
.x17{left:304.890798pt;}
.x18{left:317.642802pt;}
.xd{left:342.562785pt;}
.x13{left:345.216146pt;}
.x9{left:358.338132pt;}
.xc{left:374.622803pt;}
.xa{left:506.952802pt;}
.x3{left:519.632528pt;}
.xe{left:545.826782pt;}
.x16{left:548.576131pt;}
.x14{left:577.777813pt;}
.x15{left:601.203298pt;}
.x1d{left:725.336507pt;}
.xb{left:732.628825pt;}
.x1{left:733.540283pt;}
}




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