
    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_6ec2d7370be8bc4a2171b382.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.710000;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_6a2caa54a88923c606eb92f5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_de10da1f4134234f7cc8e7ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ab31071df491f27e31ddaa21.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3baca04dc78bc3e4ad177653.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3fe6400688c3c7ecd7484177.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c0487e88076d83914769d664.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e0883e3130c631ca07541316.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7fd8f382e8f4258517cbe694.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4b82030989b656f5d10d7baa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d0c6562702f94ed1f3977945.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ae3d30b173e585783f2d5020.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_73dd1123977d00b6084cf6a3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.552000;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_7e8f7584785a673d11a5ef6a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.703000;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_9634727928364897ce770e71.woff2')format("woff");}.fff{font-family:fff;line-height:0.757000;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_012e683f9219e8cff0634cd3.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e90efd0883dd217ced4ab62a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000488;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_b0af46e7c5a1db60dc60188b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.003418;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_4f07f08c5cfd28d760bbc19f.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_df2144861cdf7e6956bb696a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;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_53744d0edc1241b7ccba6ebe.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.926270;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_29f77ca42f76306dd3fa29a8.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.707520;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_c2736eb7b3b4122df7449249.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.940918;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_7e6d94a4562ec87255c10f20.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000488;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_8674a2ae1dce9877f34d1957.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.003418;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_4a58dedd8b87b147d051c001.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_df2144861cdf7e6956bb696a.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_863f66d73bcf7cbad4b31b20.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.707520;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_2551d0384e3894603df06b12.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_645afa2044aa49cac5c2ed00.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_1bbc76e84f4d02e2c492b33e.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_16c6ef9da7ec892412b6e3e5.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_df2144861cdf7e6956bb696a.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_a1f7af54e80795a1b03d7350.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.902832;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:ff23;src:url('chunks/assets/font_29f77ca42f76306dd3fa29a8.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.707520;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:ff24;src:url('chunks/assets/font_b47d5c14d54aae2290e83559.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.000488;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:ff25;src:url('chunks/assets/font_dbf5467ccbd072344f87c113.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.003418;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:ff26;src:url('chunks/assets/font_b0d55d5d958b348226ec5fc9.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_df2144861cdf7e6956bb696a.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.666504;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:ff28;src:url('chunks/assets/font_81aea85f13c0df2f17610ce7.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.707520;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:ff29;src:url('chunks/assets/font_b47d5c14d54aae2290e83559.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.000488;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:ff2a;src:url('chunks/assets/font_dbf5467ccbd072344f87c113.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.003418;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:ff2b;src:url('chunks/assets/font_b0d55d5d958b348226ec5fc9.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_df2144861cdf7e6956bb696a.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.666504;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:ff2d;src:url('chunks/assets/font_81aea85f13c0df2f17610ce7.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.707520;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:ff2e;src:url('chunks/assets/font_7e6d94a4562ec87255c10f20.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.000488;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:ff2f;src:url('chunks/assets/font_cefa7d982dd472ef581599a4.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.003418;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:ff30;src:url('chunks/assets/font_0d855f67f3e0a8a64318d6a1.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_df2144861cdf7e6956bb696a.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.666504;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:ff32;src:url('chunks/assets/font_29f77ca42f76306dd3fa29a8.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.707520;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:ff33;src:url('chunks/assets/font_7e6d94a4562ec87255c10f20.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.000488;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:ff34;src:url('chunks/assets/font_cefa7d982dd472ef581599a4.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.003418;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:ff35;src:url('chunks/assets/font_0d855f67f3e0a8a64318d6a1.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_df2144861cdf7e6956bb696a.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.666504;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:ff37;src:url('chunks/assets/font_29f77ca42f76306dd3fa29a8.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.707520;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:ff38;src:url('chunks/assets/font_ab1e76f7dab84575b6bfad63.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_2e6a02a684fcd4c85fe6d496.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v19{vertical-align:-15.120000px;}
.v6{vertical-align:-12.210000px;}
.v7{vertical-align:-11.190000px;}
.v5{vertical-align:-10.092000px;}
.v8{vertical-align:-8.964000px;}
.v13{vertical-align:-6.912000px;}
.v16{vertical-align:-3.458102px;}
.v11{vertical-align:-2.015222px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:2.015222px;}
.v14{vertical-align:6.912000px;}
.v15{vertical-align:8.064000px;}
.ve{vertical-align:9.792000px;}
.vf{vertical-align:12.096000px;}
.v18{vertical-align:15.117336px;}
.v17{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:29.622000px;}
.v9{vertical-align:31.506000px;}
.vd{vertical-align:35.400000px;}
.vc{vertical-align:36.522000px;}
.v12{vertical-align:38.016000px;}
.v3{vertical-align:40.470000px;}
.va{vertical-align:43.518000px;}
.vb{vertical-align:45.486000px;}
.lsbe{letter-spacing:-0.378000px;}
.lsce{letter-spacing:-0.334800px;}
.lsea{letter-spacing:-0.330660px;}
.ls7c{letter-spacing:-0.288000px;}
.lsd8{letter-spacing:-0.246492px;}
.lsb1{letter-spacing:-0.234468px;}
.lsbd{letter-spacing:-0.216000px;}
.lscc{letter-spacing:-0.210420px;}
.lsb9{letter-spacing:-0.186372px;}
.lsb7{letter-spacing:-0.174348px;}
.lse7{letter-spacing:-0.162792px;}
.lsab{letter-spacing:-0.162324px;}
.ls87{letter-spacing:-0.153907px;}
.lsa7{letter-spacing:-0.153216px;}
.ls75{letter-spacing:-0.149098px;}
.lsb2{letter-spacing:-0.144288px;}
.ls7b{letter-spacing:-0.139478px;}
.lsb6{letter-spacing:-0.138276px;}
.lsc9{letter-spacing:-0.132264px;}
.ls6f{letter-spacing:-0.130234px;}
.lsd9{letter-spacing:-0.126252px;}
.ls8b{letter-spacing:-0.120240px;}
.ls7d{letter-spacing:-0.115200px;}
.lsac{letter-spacing:-0.114228px;}
.ls8d{letter-spacing:-0.110621px;}
.lscb{letter-spacing:-0.108216px;}
.ls79{letter-spacing:-0.105811px;}
.lsb4{letter-spacing:-0.104400px;}
.lsec{letter-spacing:-0.102204px;}
.lsad{letter-spacing:-0.096192px;}
.ls8a{letter-spacing:-0.091382px;}
.lse6{letter-spacing:-0.090972px;}
.lsbb{letter-spacing:-0.090180px;}
.lsa6{letter-spacing:-0.086184px;}
.lse9{letter-spacing:-0.084168px;}
.lsba{letter-spacing:-0.078156px;}
.ls80{letter-spacing:-0.076954px;}
.ls6e{letter-spacing:-0.072778px;}
.ls85{letter-spacing:-0.072144px;}
.ls71{letter-spacing:-0.067334px;}
.lsbc{letter-spacing:-0.066132px;}
.ls89{letter-spacing:-0.062525px;}
.lsdb{letter-spacing:-0.060120px;}
.ls7f{letter-spacing:-0.057715px;}
.lsa9{letter-spacing:-0.054108px;}
.ls7a{letter-spacing:-0.052906px;}
.lsaa{letter-spacing:-0.050400px;}
.lsca{letter-spacing:-0.048096px;}
.ls73{letter-spacing:-0.043805px;}
.lse8{letter-spacing:-0.042084px;}
.lse5{letter-spacing:-0.038304px;}
.lsb8{letter-spacing:-0.036072px;}
.ls82{letter-spacing:-0.033696px;}
.ls76{letter-spacing:-0.033667px;}
.lscd{letter-spacing:-0.032400px;}
.ls6d{letter-spacing:-0.030643px;}
.lsb0{letter-spacing:-0.030060px;}
.ls8c{letter-spacing:-0.028858px;}
.lsa5{letter-spacing:-0.028728px;}
.ls8e{letter-spacing:-0.024048px;}
.lseb{letter-spacing:-0.021600px;}
.ls78{letter-spacing:-0.019238px;}
.lsae{letter-spacing:-0.018036px;}
.ls86{letter-spacing:-0.014429px;}
.ls8f{letter-spacing:-0.012960px;}
.lsa8{letter-spacing:-0.012024px;}
.ls70{letter-spacing:-0.009619px;}
.ls81{letter-spacing:-0.006739px;}
.lsaf{letter-spacing:-0.006012px;}
.lsdc{letter-spacing:-0.005400px;}
.ls84{letter-spacing:-0.004810px;}
.ls9{letter-spacing:0.000000px;}
.lsf1{letter-spacing:0.000053px;}
.ls17{letter-spacing:0.000355px;}
.lse4{letter-spacing:0.000447px;}
.ls2b{letter-spacing:0.000583px;}
.lsc{letter-spacing:0.000649px;}
.lse3{letter-spacing:0.000897px;}
.lse1{letter-spacing:0.001135px;}
.ls32{letter-spacing:0.001200px;}
.ls35{letter-spacing:0.001235px;}
.lsd4{letter-spacing:0.001416px;}
.lsd{letter-spacing:0.001518px;}
.lse2{letter-spacing:0.001541px;}
.ls3a{letter-spacing:0.001834px;}
.lse{letter-spacing:0.002016px;}
.ls2e{letter-spacing:0.002100px;}
.ls16{letter-spacing:0.002218px;}
.ls1f{letter-spacing:0.002239px;}
.lsbf{letter-spacing:0.002688px;}
.lsf0{letter-spacing:0.002739px;}
.ls5{letter-spacing:0.002870px;}
.lsb{letter-spacing:0.002958px;}
.lsc6{letter-spacing:0.003167px;}
.ls90{letter-spacing:0.003226px;}
.ls8{letter-spacing:0.003488px;}
.ls11{letter-spacing:0.003494px;}
.ls13{letter-spacing:0.003598px;}
.ls3{letter-spacing:0.003859px;}
.lsf{letter-spacing:0.004176px;}
.ls6b{letter-spacing:0.004320px;}
.lsd7{letter-spacing:0.004788px;}
.lsf3{letter-spacing:0.004800px;}
.ls66{letter-spacing:0.004810px;}
.ls1a{letter-spacing:0.005108px;}
.lsdf{letter-spacing:0.005400px;}
.lsed{letter-spacing:0.005415px;}
.ls9e{letter-spacing:0.006012px;}
.lsc5{letter-spacing:0.006624px;}
.ls95{letter-spacing:0.007200px;}
.ls65{letter-spacing:0.009619px;}
.lsa0{letter-spacing:0.010800px;}
.ls96{letter-spacing:0.012024px;}
.ls4d{letter-spacing:0.013162px;}
.ls67{letter-spacing:0.014429px;}
.ls9f{letter-spacing:0.016200px;}
.ls46{letter-spacing:0.016733px;}
.ls54{letter-spacing:0.017222px;}
.lsd1{letter-spacing:0.018036px;}
.ls49{letter-spacing:0.019238px;}
.ls53{letter-spacing:0.019296px;}
.ls4a{letter-spacing:0.019498px;}
.lsa4{letter-spacing:0.021600px;}
.ls44{letter-spacing:0.023501px;}
.ls98{letter-spacing:0.024048px;}
.lsa2{letter-spacing:0.027000px;}
.ls45{letter-spacing:0.028800px;}
.ls48{letter-spacing:0.028858px;}
.lsc0{letter-spacing:0.030060px;}
.lsd3{letter-spacing:0.032400px;}
.ls7e{letter-spacing:0.033667px;}
.lscf{letter-spacing:0.036072px;}
.lsd2{letter-spacing:0.037800px;}
.ls4c{letter-spacing:0.038477px;}
.ls97{letter-spacing:0.042084px;}
.lsc3{letter-spacing:0.043200px;}
.ls68{letter-spacing:0.048096px;}
.ls9b{letter-spacing:0.054108px;}
.ls6a{letter-spacing:0.057715px;}
.ls9a{letter-spacing:0.060120px;}
.ls5f{letter-spacing:0.062525px;}
.ls94{letter-spacing:0.066132px;}
.ls69{letter-spacing:0.067334px;}
.ls4b{letter-spacing:0.072144px;}
.lsc2{letter-spacing:0.075600px;}
.ls52{letter-spacing:0.076954px;}
.lsc8{letter-spacing:0.078156px;}
.ls9d{letter-spacing:0.084168px;}
.ls99{letter-spacing:0.096192px;}
.ls5d{letter-spacing:0.100800px;}
.lsd0{letter-spacing:0.102204px;}
.ls5c{letter-spacing:0.104314px;}
.lsb3{letter-spacing:0.108216px;}
.ls5e{letter-spacing:0.110621px;}
.ls63{letter-spacing:0.128045px;}
.ls43{letter-spacing:0.137894px;}
.lsde{letter-spacing:0.138276px;}
.lsa3{letter-spacing:0.140400px;}
.ls6c{letter-spacing:0.142560px;}
.ls42{letter-spacing:0.145555px;}
.lsc1{letter-spacing:0.150300px;}
.lsc4{letter-spacing:0.156600px;}
.lsdd{letter-spacing:0.172368px;}
.ls93{letter-spacing:0.181944px;}
.ls92{letter-spacing:0.191520px;}
.ls9c{letter-spacing:0.192384px;}
.ls57{letter-spacing:0.202003px;}
.lsb5{letter-spacing:0.456912px;}
.ls2c{letter-spacing:0.670741px;}
.ls26{letter-spacing:0.676741px;}
.ls21{letter-spacing:0.745694px;}
.ls25{letter-spacing:0.746100px;}
.ls83{letter-spacing:1.024358px;}
.lsa{letter-spacing:1.275394px;}
.ls64{letter-spacing:1.296000px;}
.lsd5{letter-spacing:1.297852px;}
.ls3d{letter-spacing:1.399200px;}
.ls15{letter-spacing:1.410113px;}
.ls1e{letter-spacing:1.414116px;}
.ls20{letter-spacing:1.433108px;}
.ls28{letter-spacing:1.460782px;}
.ls62{letter-spacing:1.584000px;}
.ls6{letter-spacing:1.861130px;}
.ls59{letter-spacing:2.090016px;}
.ls50{letter-spacing:2.556000px;}
.ls51{letter-spacing:2.844000px;}
.ls33{letter-spacing:2.983200px;}
.ls10{letter-spacing:2.988319px;}
.lsc7{letter-spacing:2.988600px;}
.ls14{letter-spacing:2.989200px;}
.ls36{letter-spacing:2.989258px;}
.ls30{letter-spacing:2.991886px;}
.ls2d{letter-spacing:3.733200px;}
.ls3c{letter-spacing:3.739200px;}
.lsa1{letter-spacing:4.865400px;}
.ls2f{letter-spacing:7.170017px;}
.lsda{letter-spacing:7.298568px;}
.ls77{letter-spacing:10.619597px;}
.ls56{letter-spacing:10.629216px;}
.ls74{letter-spacing:10.725408px;}
.ls88{letter-spacing:11.302560px;}
.ls1c{letter-spacing:11.622124px;}
.ls1d{letter-spacing:11.628124px;}
.ls7{letter-spacing:11.954850px;}
.ls58{letter-spacing:12.170016px;}
.ls5b{letter-spacing:12.458016px;}
.ls5a{letter-spacing:12.870490px;}
.ls61{letter-spacing:13.032288px;}
.ls55{letter-spacing:13.212000px;}
.lsf2{letter-spacing:13.273386px;}
.ls72{letter-spacing:13.317782px;}
.lsf4{letter-spacing:13.424400px;}
.lsee{letter-spacing:13.448400px;}
.lsef{letter-spacing:13.454400px;}
.ls4f{letter-spacing:13.500000px;}
.lsf5{letter-spacing:14.191576px;}
.ls1b{letter-spacing:14.611200px;}
.ls91{letter-spacing:14.940124px;}
.ls12{letter-spacing:14.946124px;}
.ls4e{letter-spacing:16.092000px;}
.ls60{letter-spacing:16.212672px;}
.ls47{letter-spacing:16.296768px;}
.lse0{letter-spacing:16.456216px;}
.ls23{letter-spacing:17.319483px;}
.ls18{letter-spacing:17.351381px;}
.ls27{letter-spacing:17.899200px;}
.ls39{letter-spacing:17.929200px;}
.ls38{letter-spacing:17.929258px;}
.lsd6{letter-spacing:17.935200px;}
.ls37{letter-spacing:17.935258px;}
.ls3b{letter-spacing:18.028741px;}
.ls22{letter-spacing:18.785108px;}
.ls3e{letter-spacing:20.335829px;}
.ls24{letter-spacing:20.341200px;}
.ls34{letter-spacing:20.341258px;}
.ls29{letter-spacing:20.341829px;}
.ls31{letter-spacing:20.343886px;}
.ls3f{letter-spacing:24.495483px;}
.ls41{letter-spacing:25.723200px;}
.ls19{letter-spacing:40.053483px;}
.ls40{letter-spacing:52.956017px;}
.ls0{letter-spacing:57.415200px;}
.ls2{letter-spacing:70.236600px;}
.ls4{letter-spacing:72.353510px;}
.ls1{letter-spacing:72.361200px;}
.ls2a{letter-spacing:139.449483px;}
.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;}
}
.wsae{word-spacing:-60.120000px;}
.wsaf{word-spacing:-59.933628px;}
.ws102{word-spacing:-54.000000px;}
.ws5c{word-spacing:-48.096000px;}
.ws3d{word-spacing:-46.065614px;}
.ws12c{word-spacing:-36.000000px;}
.ws61{word-spacing:-34.720358px;}
.ws5f{word-spacing:-33.696000px;}
.ws60{word-spacing:-33.689261px;}
.ws59{word-spacing:-33.652195px;}
.ws5b{word-spacing:-28.800000px;}
.ws58{word-spacing:-21.136810px;}
.wse{word-spacing:-17.394700px;}
.ws106{word-spacing:-15.655334px;}
.wsec{word-spacing:-15.030000px;}
.ws12{word-spacing:-14.943900px;}
.wsef{word-spacing:-13.449600px;}
.wsed{word-spacing:-13.165200px;}
.wsad{word-spacing:-12.161520px;}
.ws12b{word-spacing:-12.151944px;}
.ws5d{word-spacing:-12.096144px;}
.ws5e{word-spacing:-12.057667px;}
.ws63{word-spacing:-12.024000px;}
.ws1d{word-spacing:-11.955150px;}
.ws6{word-spacing:-11.357400px;}
.ws64{word-spacing:-10.804320px;}
.ws57{word-spacing:-9.721555px;}
.ws12d{word-spacing:-9.000000px;}
.ws5a{word-spacing:-7.200000px;}
.ws53{word-spacing:-4.423394px;}
.ws52{word-spacing:-4.363619px;}
.ws4c{word-spacing:-3.856767px;}
.ws4d{word-spacing:-3.837250px;}
.ws4e{word-spacing:-3.825638px;}
.wse1{word-spacing:-3.198384px;}
.wse2{word-spacing:-3.156300px;}
.wseb{word-spacing:-3.108331px;}
.ws91{word-spacing:-2.779949px;}
.ws90{word-spacing:-2.751091px;}
.ws18{word-spacing:-2.630126px;}
.ws21{word-spacing:-2.570351px;}
.ws8a{word-spacing:-2.539469px;}
.ws154{word-spacing:-2.510575px;}
.ws16e{word-spacing:-2.474726px;}
.ws8b{word-spacing:-2.457706px;}
.ws2b{word-spacing:-2.331248px;}
.ws89{word-spacing:-2.279750px;}
.ws31{word-spacing:-2.271473px;}
.ws15b{word-spacing:-2.259533px;}
.ws32{word-spacing:-2.211697px;}
.ws20{word-spacing:-2.151922px;}
.ws38{word-spacing:-2.092146px;}
.wse4{word-spacing:-2.068128px;}
.wsf7{word-spacing:-2.062116px;}
.wsf8{word-spacing:-1.929852px;}
.ws9{word-spacing:-1.908367px;}
.ws54{word-spacing:-1.853044px;}
.ws88{word-spacing:-1.837267px;}
.ws55{word-spacing:-1.793268px;}
.ws17b{word-spacing:-1.775347px;}
.wse5{word-spacing:-1.701396px;}
.ws56{word-spacing:-1.673717px;}
.ws14a{word-spacing:-1.665324px;}
.ws14b{word-spacing:-1.611216px;}
.wse3{word-spacing:-1.569132px;}
.ws62{word-spacing:-1.548691px;}
.wsa5{word-spacing:-1.494390px;}
.wsd7{word-spacing:-1.442880px;}
.ws45{word-spacing:-1.434614px;}
.ws15e{word-spacing:-1.398758px;}
.ws137{word-spacing:-1.322640px;}
.ws8{word-spacing:-1.322630px;}
.ws3b{word-spacing:-1.315063px;}
.ws138{word-spacing:-1.268532px;}
.ws157{word-spacing:-1.255288px;}
.ws3a{word-spacing:-1.195512px;}
.ws92{word-spacing:-1.144685px;}
.ws46{word-spacing:-1.075961px;}
.wsd6{word-spacing:-1.034064px;}
.wsa6{word-spacing:-1.016185px;}
.ws173{word-spacing:-0.968371px;}
.wsc2{word-spacing:-0.961920px;}
.ws119{word-spacing:-0.934200px;}
.ws11b{word-spacing:-0.928800px;}
.ws11a{word-spacing:-0.918000px;}
.ws163{word-spacing:-0.914573px;}
.ws2d{word-spacing:-0.896634px;}
.ws147{word-spacing:-0.883764px;}
.wsd9{word-spacing:-0.667332px;}
.ws2e{word-spacing:-0.657532px;}
.ws176{word-spacing:-0.645581px;}
.ws128{word-spacing:-0.643284px;}
.ws13a{word-spacing:-0.631260px;}
.wsc3{word-spacing:-0.601200px;}
.wsfe{word-spacing:-0.577800px;}
.wsfb{word-spacing:-0.550800px;}
.wsfc{word-spacing:-0.545400px;}
.ws139{word-spacing:-0.541080px;}
.wsfd{word-spacing:-0.534600px;}
.ws170{word-spacing:-0.484186px;}
.wsa1{word-spacing:-0.478205px;}
.wsd2{word-spacing:-0.450900px;}
.ws16a{word-spacing:-0.376589px;}
.ws30{word-spacing:-0.358654px;}
.ws19{word-spacing:-0.298878px;}
.ws72{word-spacing:-0.293386px;}
.ws114{word-spacing:-0.282564px;}
.wsd3{word-spacing:-0.246492px;}
.ws14c{word-spacing:-0.240480px;}
.ws23{word-spacing:-0.239102px;}
.wsd4{word-spacing:-0.228456px;}
.ws8f{word-spacing:-0.221242px;}
.ws105{word-spacing:-0.215194px;}
.wsb{word-spacing:-0.179327px;}
.ws140{word-spacing:-0.178200px;}
.ws121{word-spacing:-0.174348px;}
.ws141{word-spacing:-0.172800px;}
.ws73{word-spacing:-0.163526px;}
.ws160{word-spacing:-0.161395px;}
.ws142{word-spacing:-0.156600px;}
.wsc{word-spacing:-0.119551px;}
.ws1{word-spacing:-0.107597px;}
.wsbb{word-spacing:-0.102204px;}
.ws74{word-spacing:-0.076954px;}
.ws3{word-spacing:-0.059776px;}
.wsb2{word-spacing:-0.057456px;}
.ws107{word-spacing:-0.053798px;}
.ws131{word-spacing:-0.052668px;}
.ws1e{word-spacing:-0.047821px;}
.ws43{word-spacing:-0.045430px;}
.ws65{word-spacing:-0.042134px;}
.ws7{word-spacing:-0.010752px;}
.ws2{word-spacing:-0.005658px;}
.ws3e{word-spacing:-0.000534px;}
.ws0{word-spacing:0.000000px;}
.ws4a{word-spacing:0.001424px;}
.ws4{word-spacing:0.002717px;}
.ws5{word-spacing:0.003608px;}
.wsa7{word-spacing:0.004800px;}
.ws7a{word-spacing:0.009619px;}
.ws6f{word-spacing:0.033667px;}
.ws149{word-spacing:0.036072px;}
.ws103{word-spacing:0.053798px;}
.ws66{word-spacing:0.057456px;}
.ws86{word-spacing:0.057715px;}
.ws1a{word-spacing:0.059776px;}
.wsf2{word-spacing:0.066132px;}
.wsb3{word-spacing:0.067032px;}
.ws132{word-spacing:0.071820px;}
.ws99{word-spacing:0.072144px;}
.ws148{word-spacing:0.078156px;}
.ws68{word-spacing:0.081763px;}
.wsc7{word-spacing:0.084168px;}
.ws135{word-spacing:0.090180px;}
.ws87{word-spacing:0.091382px;}
.ws8e{word-spacing:0.105811px;}
.wsee{word-spacing:0.107597px;}
.wsa{word-spacing:0.119551px;}
.wsc8{word-spacing:0.120240px;}
.ws127{word-spacing:0.126252px;}
.ws69{word-spacing:0.139478px;}
.ws143{word-spacing:0.140400px;}
.ws9a{word-spacing:0.142560px;}
.ws7d{word-spacing:0.144288px;}
.ws118{word-spacing:0.150300px;}
.ws11c{word-spacing:0.151200px;}
.ws9b{word-spacing:0.155520px;}
.ws126{word-spacing:0.156600px;}
.ws9c{word-spacing:0.159840px;}
.ws165{word-spacing:0.161395px;}
.wsea{word-spacing:0.162000px;}
.wse6{word-spacing:0.162324px;}
.ws152{word-spacing:0.167400px;}
.wsda{word-spacing:0.174348px;}
.ws71{word-spacing:0.177955px;}
.wsf{word-spacing:0.179327px;}
.ws122{word-spacing:0.192384px;}
.wsfa{word-spacing:0.204408px;}
.ws13f{word-spacing:0.210420px;}
.ws15c{word-spacing:0.215194px;}
.wsff{word-spacing:0.216000px;}
.wsd{word-spacing:0.239102px;}
.ws41{word-spacing:0.273084px;}
.ws40{word-spacing:0.295777px;}
.ws13{word-spacing:0.298878px;}
.ws130{word-spacing:0.322790px;}
.ws2f{word-spacing:0.358654px;}
.wsd0{word-spacing:0.360720px;}
.ws183{word-spacing:0.376589px;}
.ws181{word-spacing:0.410567px;}
.wscd{word-spacing:0.414828px;}
.ws77{word-spacing:0.418435px;}
.ws144{word-spacing:0.462924px;}
.ws187{word-spacing:0.537984px;}
.ws145{word-spacing:0.553104px;}
.ws98{word-spacing:0.591581px;}
.ws12f{word-spacing:0.591782px;}
.wsd1{word-spacing:0.595188px;}
.wscc{word-spacing:0.709416px;}
.ws3c{word-spacing:0.717307px;}
.ws189{word-spacing:0.753178px;}
.ws13b{word-spacing:0.817632px;}
.wsf9{word-spacing:0.865728px;}
.ws7c{word-spacing:0.928253px;}
.wsf6{word-spacing:0.931860px;}
.ws7b{word-spacing:0.942682px;}
.wscb{word-spacing:0.961920px;}
.ws184{word-spacing:1.129766px;}
.ws26{word-spacing:1.135736px;}
.ws117{word-spacing:1.148292px;}
.ws25{word-spacing:1.195512px;}
.ws136{word-spacing:1.268532px;}
.ws24{word-spacing:1.315063px;}
.ws158{word-spacing:1.434614px;}
.ws6d{word-spacing:1.438070px;}
.wsc5{word-spacing:1.466928px;}
.ws6c{word-spacing:1.490976px;}
.wsc6{word-spacing:1.539072px;}
.ws6e{word-spacing:1.543882px;}
.wsc1{word-spacing:1.545084px;}
.wsc0{word-spacing:1.551096px;}
.ws28{word-spacing:1.554166px;}
.wsc4{word-spacing:1.563120px;}
.ws6b{word-spacing:1.659312px;}
.wsa4{word-spacing:1.673717px;}
.ws168{word-spacing:1.721549px;}
.ws9e{word-spacing:1.853044px;}
.wsb6{word-spacing:1.905804px;}
.wsa3{word-spacing:1.912819px;}
.ws123{word-spacing:1.949400px;}
.ws4f{word-spacing:1.972595px;}
.ws124{word-spacing:1.976400px;}
.ws125{word-spacing:1.992600px;}
.wsb5{word-spacing:2.014020px;}
.wsf0{word-spacing:2.151922px;}
.ws155{word-spacing:2.211697px;}
.ws11e{word-spacing:2.248488px;}
.ws11{word-spacing:2.271473px;}
.ws116{word-spacing:2.284560px;}
.ws1b{word-spacing:2.331248px;}
.ws11d{word-spacing:2.332656px;}
.ws115{word-spacing:2.392776px;}
.ws9d{word-spacing:2.450800px;}
.wsac{word-spacing:2.510575px;}
.ws133{word-spacing:2.651292px;}
.ws111{word-spacing:2.873736px;}
.wsd8{word-spacing:2.891772px;}
.ws110{word-spacing:2.939868px;}
.ws134{word-spacing:2.975940px;}
.ws97{word-spacing:2.977142px;}
.wsa0{word-spacing:3.048556px;}
.ws9f{word-spacing:3.108331px;}
.ws2c{word-spacing:3.168107px;}
.ws95{word-spacing:3.203194px;}
.ws10f{word-spacing:3.222432px;}
.ws76{word-spacing:3.251290px;}
.ws96{word-spacing:3.270528px;}
.wsba{word-spacing:3.324636px;}
.ws156{word-spacing:3.347434px;}
.wsb9{word-spacing:3.348684px;}
.ws151{word-spacing:3.391200px;}
.wsa8{word-spacing:3.407209px;}
.ws150{word-spacing:3.412800px;}
.ws14f{word-spacing:3.439800px;}
.ws39{word-spacing:3.466985px;}
.wsab{word-spacing:3.526760px;}
.ws78{word-spacing:3.607200px;}
.ws79{word-spacing:3.636058px;}
.ws10d{word-spacing:3.643272px;}
.ws12e{word-spacing:3.706087px;}
.wsb1{word-spacing:3.712090px;}
.wsc9{word-spacing:3.721428px;}
.ws36{word-spacing:3.765863px;}
.ws10e{word-spacing:3.775536px;}
.ws186{word-spacing:3.927283px;}
.wsca{word-spacing:3.931848px;}
.ws29{word-spacing:3.945190px;}
.ws2a{word-spacing:4.004965px;}
.wsb0{word-spacing:4.034880px;}
.ws10{word-spacing:4.064741px;}
.ws15f{word-spacing:4.196275px;}
.wscf{word-spacing:4.394772px;}
.wsbc{word-spacing:4.430844px;}
.ws112{word-spacing:4.442868px;}
.wsbd{word-spacing:4.533048px;}
.ws113{word-spacing:4.545072px;}
.ws13c{word-spacing:4.629240px;}
.ws94{word-spacing:4.665312px;}
.ws17a{word-spacing:4.680461px;}
.ws13d{word-spacing:4.719420px;}
.ws104{word-spacing:4.782048px;}
.wsce{word-spacing:4.785552px;}
.ws175{word-spacing:4.788058px;}
.ws93{word-spacing:4.790362px;}
.wse7{word-spacing:4.849200px;}
.ws33{word-spacing:4.901599px;}
.wsdd{word-spacing:5.080140px;}
.wsa9{word-spacing:5.080926px;}
.wse8{word-spacing:5.081400px;}
.ws13e{word-spacing:5.098176px;}
.ws12a{word-spacing:5.128236px;}
.wsaa{word-spacing:5.140702px;}
.ws129{word-spacing:5.146272px;}
.ws167{word-spacing:5.218445px;}
.wsde{word-spacing:5.230440px;}
.wse9{word-spacing:5.243400px;}
.ws18a{word-spacing:5.378371px;}
.ws15d{word-spacing:5.379840px;}
.ws179{word-spacing:5.380714px;}
.ws109{word-spacing:5.428836px;}
.wsa2{word-spacing:5.559131px;}
.ws8c{word-spacing:5.636851px;}
.ws8d{word-spacing:5.665709px;}
.ws15a{word-spacing:5.702630px;}
.ws27{word-spacing:5.798233px;}
.ws14{word-spacing:5.971475px;}
.ws15{word-spacing:5.977560px;}
.ws159{word-spacing:6.025421px;}
.wsf1{word-spacing:6.156887px;}
.wsd5{word-spacing:6.162300px;}
.ws153{word-spacing:6.216662px;}
.wsb8{word-spacing:6.270516px;}
.wsb7{word-spacing:6.510996px;}
.wsbf{word-spacing:6.871716px;}
.ws101{word-spacing:6.933970px;}
.wsbe{word-spacing:7.034040px;}
.ws11f{word-spacing:7.256484px;}
.ws67{word-spacing:7.277760px;}
.ws34{word-spacing:7.292623px;}
.ws51{word-spacing:7.352399px;}
.ws120{word-spacing:7.358688px;}
.ws108{word-spacing:7.531726px;}
.ws35{word-spacing:7.711052px;}
.ws85{word-spacing:8.070509px;}
.ws84{word-spacing:8.089747px;}
.ws100{word-spacing:8.189257px;}
.ws10c{word-spacing:8.747460px;}
.ws14e{word-spacing:9.090144px;}
.wsb4{word-spacing:9.097200px;}
.ws10a{word-spacing:9.108180px;}
.ws14d{word-spacing:9.162288px;}
.ws10b{word-spacing:9.216396px;}
.wse0{word-spacing:9.480924px;}
.wsdf{word-spacing:9.510984px;}
.ws22{word-spacing:10.161852px;}
.ws82{word-spacing:10.436832px;}
.ws83{word-spacing:10.715789px;}
.ws7f{word-spacing:11.009174px;}
.ws178{word-spacing:11.028672px;}
.ws16{word-spacing:11.237813px;}
.ws81{word-spacing:11.240035px;}
.ws7e{word-spacing:11.316989px;}
.ws80{word-spacing:11.456467px;}
.wsf4{word-spacing:12.408768px;}
.wsf5{word-spacing:12.432816px;}
.ws16c{word-spacing:13.288205px;}
.ws166{word-spacing:13.342003px;}
.ws185{word-spacing:13.353581px;}
.ws16f{word-spacing:13.388890px;}
.ws180{word-spacing:13.392374px;}
.ws174{word-spacing:13.394285px;}
.ws162{word-spacing:13.394890px;}
.ws161{word-spacing:13.395802px;}
.ws171{word-spacing:13.396445px;}
.ws172{word-spacing:13.610995px;}
.ws17{word-spacing:13.628837px;}
.ws182{word-spacing:13.826189px;}
.ws37{word-spacing:14.884124px;}
.wsdc{word-spacing:16.292520px;}
.wsdb{word-spacing:16.316568px;}
.wsf3{word-spacing:16.587108px;}
.ws1c{word-spacing:16.689389px;}
.ws42{word-spacing:17.886494px;}
.ws177{word-spacing:18.560448px;}
.ws17c{word-spacing:18.765917px;}
.ws169{word-spacing:18.771139px;}
.ws16d{word-spacing:18.771475px;}
.ws16b{word-spacing:18.771754px;}
.ws164{word-spacing:18.775642px;}
.ws188{word-spacing:20.819981px;}
.ws146{word-spacing:21.799512px;}
.ws17d{word-spacing:22.101437px;}
.ws17f{word-spacing:22.111142px;}
.ws17e{word-spacing:35.506944px;}
.ws1f{word-spacing:430.815785px;}
.ws75{word-spacing:525.352608px;}
.ws4b{word-spacing:718.383161px;}
.ws6a{word-spacing:785.705875px;}
.ws70{word-spacing:839.563776px;}
.ws44{word-spacing:859.154699px;}
.ws50{word-spacing:930.227887px;}
.ws47{word-spacing:999.388256px;}
.ws48{word-spacing:1032.802817px;}
.ws3f{word-spacing:1060.478920px;}
.ws49{word-spacing:1087.258388px;}
._3{margin-left:-13.879987px;}
._1f{margin-left:-7.721141px;}
._4{margin-left:-6.630866px;}
._13{margin-left:-5.379804px;}
._2{margin-left:-3.981082px;}
._7{margin-left:-2.271699px;}
._1{margin-left:-1.063024px;}
._8{width:1.091170px;}
._5{width:2.993388px;}
._0{width:10.165172px;}
._d{width:11.955150px;}
._11{width:13.688612px;}
._c{width:15.960537px;}
._f{width:17.514251px;}
._6{width:18.829440px;}
._9{width:20.921460px;}
._1e{width:22.451742px;}
._1c{width:23.692102px;}
._10{width:24.866650px;}
._17{width:26.335165px;}
._b{width:28.320697px;}
._19{width:29.454054px;}
._14{width:31.740844px;}
._a{width:33.534112px;}
._18{width:36.821770px;}
._22{width:41.048179px;}
._12{width:43.204822px;}
._1b{width:45.425231px;}
._21{width:46.680343px;}
._23{width:61.868160px;}
._16{width:773.566445px;}
._15{width:1271.322239px;}
._20{width:1515.546193px;}
._e{width:1539.456493px;}
._1d{width:1588.607214px;}
._1a{width:1590.316036px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(12,11,11);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(40,82,46);}
.fc0{color:rgb(14,15,14);}
.fse{font-size:28.800000px;}
.fs15{font-size:33.120000px;}
.fsf{font-size:33.696000px;}
.fs13{font-size:36.000000px;}
.fsb{font-size:38.304000px;}
.fs5{font-size:41.842800px;}
.fs8{font-size:41.936104px;}
.fsc{font-size:43.200000px;}
.fs4{font-size:45.429600px;}
.fs7{font-size:47.236800px;}
.fs9{font-size:47.820600px;}
.fs10{font-size:47.880000px;}
.fsd{font-size:48.096000px;}
.fs6{font-size:53.798400px;}
.fs11{font-size:54.000000px;}
.fs0{font-size:56.694600px;}
.fs2{font-size:59.775600px;}
.fs12{font-size:60.120000px;}
.fs1{font-size:60.474240px;}
.fsa{font-size:62.286600px;}
.fs14{font-size:72.000000px;}
.fs3{font-size:107.596800px;}
.y14f{bottom:-622.154550px;}
.y170{bottom:-587.684172px;}
.y1a6{bottom:-587.464050px;}
.y16f{bottom:-567.524433px;}
.y1bc{bottom:-565.774500px;}
.y1bb{bottom:-546.244050px;}
.y16e{bottom:-538.274550px;}
.y1ba{bottom:-521.853378px;}
.y16d{bottom:-500.475000px;}
.y16b{bottom:-480.944550px;}
.y16c{bottom:-477.164550px;}
.y16a{bottom:-456.464253px;}
.y1b9{bottom:-231.243819px;}
.y1b8{bottom:-210.993384px;}
.y1b7{bottom:-190.743465px;}
.y179{bottom:-184.264050px;}
.y1b6{bottom:-170.493546px;}
.yf2{bottom:-161.356050px;}
.y1b5{bottom:-150.243627px;}
.y19a{bottom:-149.793672px;}
.y1b4{bottom:-129.993708px;}
.y199{bottom:-129.633933px;}
.y169{bottom:-126.704550px;}
.y167{bottom:-126.704469px;}
.y168{bottom:-122.924550px;}
.y1b3{bottom:-109.743789px;}
.y166{bottom:-106.454550px;}
.y164{bottom:-106.454289px;}
.y165{bottom:-102.674550px;}
.y198{bottom:-100.384050px;}
.y1b2{bottom:-89.584050px;}
.y163{bottom:-86.294550px;}
.y122{bottom:-81.886050px;}
.y131{bottom:-81.501150px;}
.y1ca{bottom:-67.590300px;}
.y197{bottom:-62.584500px;}
.ybb{bottom:-57.999480px;}
.y1b1{bottom:-51.784500px;}
.y162{bottom:-48.495000px;}
.y1e0{bottom:-45.900750px;}
.y195{bottom:-43.054050px;}
.y121{bottom:-41.926500px;}
.y145{bottom:-40.461150px;}
.y143{bottom:-40.460700px;}
.y196{bottom:-39.274050px;}
.y144{bottom:-36.681150px;}
.y1b0{bottom:-32.254050px;}
.y161{bottom:-28.964550px;}
.y1df{bottom:-26.370300px;}
.ye3{bottom:-25.599480px;}
.y120{bottom:-22.396050px;}
.y142{bottom:-19.761150px;}
.y194{bottom:-18.573753px;}
.y1af{bottom:-7.863537px;}
.ye2{bottom:-6.014681px;}
.y160{bottom:-4.484388px;}
.y1de{bottom:-1.979628px;}
.y0{bottom:0.000000px;}
.y11f{bottom:2.085138px;}
.y11{bottom:3.425340px;}
.y4{bottom:6.350457px;}
.y141{bottom:8.048382px;}
.y10{bottom:14.151273px;}
.y3{bottom:20.308195px;}
.y140{bottom:32.798283px;}
.y2{bottom:37.114269px;}
.y32{bottom:63.780000px;}
.y14a{bottom:108.612000px;}
.ye4{bottom:108.828000px;}
.y31{bottom:118.141500px;}
.y1a3{bottom:118.228500px;}
.y6a{bottom:123.121500px;}
.y214{bottom:124.348500px;}
.y247{bottom:128.325000px;}
.y149{bottom:128.875500px;}
.yb9{bottom:131.257740px;}
.y30{bottom:138.406500px;}
.y1a2{bottom:138.492000px;}
.y69{bottom:143.386500px;}
.y213{bottom:143.715000px;}
.y246{bottom:147.691500px;}
.y92{bottom:148.228500px;}
.y1e3{bottom:158.410500px;}
.y2f{bottom:158.670000px;}
.y1a1{bottom:158.755500px;}
.y148{bottom:162.253500px;}
.y212{bottom:163.083000px;}
.y68{bottom:163.650000px;}
.y91{bottom:166.251000px;}
.y245{bottom:167.059500px;}
.y90{bottom:168.493500px;}
.y1e1{bottom:177.643500px;}
.y2e{bottom:178.935000px;}
.y1a0{bottom:179.020500px;}
.y146{bottom:181.486500px;}
.y211{bottom:182.449500px;}
.y1e2{bottom:182.526000px;}
.y67{bottom:183.913500px;}
.y147{bottom:186.369000px;}
.y244{bottom:186.427500px;}
.y8e{bottom:186.516000px;}
.y8d{bottom:188.757000px;}
.y8f{bottom:194.181000px;}
.y12f{bottom:194.949600px;}
.y125{bottom:195.870000px;}
.y2d{bottom:199.198500px;}
.y19f{bottom:199.284000px;}
.y1c8{bottom:200.072250px;}
.y210{bottom:201.817500px;}
.y66{bottom:204.178500px;}
.y243{bottom:205.794000px;}
.y8c{bottom:209.020500px;}
.y123{bottom:215.103000px;}
.y2c{bottom:219.462000px;}
.y124{bottom:219.985500px;}
.y20f{bottom:221.185500px;}
.y65{bottom:224.442000px;}
.y242{bottom:225.162000px;}
.ye1{bottom:226.257737px;}
.y8b{bottom:226.456500px;}
.y19e{bottom:228.514500px;}
.yf0{bottom:228.565500px;}
.y8a{bottom:229.285500px;}
.y2b{bottom:239.727000px;}
.ye0{bottom:242.457672px;}
.y241{bottom:244.528500px;}
.y64{bottom:244.707000px;}
.y20e{bottom:249.519000px;}
.y13f{bottom:251.768850px;}
.ydf{bottom:258.657607px;}
.y2a{bottom:259.990500px;}
.y19d{bottom:260.137500px;}
.y240{bottom:263.896500px;}
.y63{bottom:264.970500px;}
.y15f{bottom:265.516035px;}
.y89{bottom:266.436000px;}
.yde{bottom:274.785398px;}
.y13e{bottom:276.518751px;}
.y19b{bottom:279.370500px;}
.y29{bottom:280.255500px;}
.y11e{bottom:281.085525px;}
.y23f{bottom:283.264500px;}
.y19c{bottom:284.253000px;}
.y62{bottom:285.234000px;}
.y15e{bottom:285.675774px;}
.y1dd{bottom:288.629931px;}
.y20d{bottom:288.970500px;}
.ydd{bottom:290.985334px;}
.y28{bottom:300.519000px;}
.y11d{bottom:301.335444px;}
.y177{bottom:301.800000px;}
.y23e{bottom:302.631000px;}
.y88{bottom:303.586500px;}
.y61{bottom:305.499000px;}
.y15d{bottom:305.925693px;}
.ydc{bottom:307.185269px;}
.y1dc{bottom:308.880366px;}
.y193{bottom:311.185950px;}
.y191{bottom:311.186031px;}
.y20c{bottom:313.135500px;}
.y192{bottom:314.965950px;}
.y27{bottom:320.782500px;}
.y11c{bottom:321.585363px;}
.y23d{bottom:321.999000px;}
.ydb{bottom:323.385204px;}
.y87{bottom:323.851500px;}
.y60{bottom:325.762500px;}
.y15c{bottom:326.175612px;}
.y20b{bottom:328.333500px;}
.y1db{bottom:329.130285px;}
.y190{bottom:331.435950px;}
.y18e{bottom:331.436211px;}
.y18f{bottom:335.215950px;}
.y1ae{bottom:340.616031px;}
.y26{bottom:341.047500px;}
.yb8{bottom:341.058000px;}
.y23c{bottom:341.367000px;}
.y11b{bottom:341.745102px;}
.y20a{bottom:343.531500px;}
.y86{bottom:344.115000px;}
.y5f{bottom:346.027500px;}
.y15b{bottom:346.425531px;}
.yda{bottom:346.785110px;}
.y1da{bottom:349.380204px;}
.y18d{bottom:351.595950px;}
.y209{bottom:358.729500px;}
.y23b{bottom:360.733500px;}
.y1ad{bottom:360.866616px;}
.y25{bottom:361.311000px;}
.yb7{bottom:361.323000px;}
.y11a{bottom:361.995021px;}
.y85{bottom:364.378500px;}
.y5d{bottom:366.291000px;}
.y15a{bottom:366.675450px;}
.y158{bottom:366.675531px;}
.y1d9{bottom:369.630123px;}
.y159{bottom:370.455450px;}
.y5e{bottom:371.715000px;}
.yd9{bottom:377.384988px;}
.y23a{bottom:380.101500px;}
.y1ac{bottom:381.116535px;}
.y24{bottom:381.576000px;}
.yb6{bottom:381.586500px;}
.y119{bottom:382.244940px;}
.y208{bottom:382.894500px;}
.y84{bottom:384.643500px;}
.y5c{bottom:386.554500px;}
.y157{bottom:386.925450px;}
.y155{bottom:386.925531px;}
.y18c{bottom:389.395500px;}
.y1d8{bottom:389.880042px;}
.y156{bottom:390.705450px;}
.yd8{bottom:393.584923px;}
.y207{bottom:398.092500px;}
.y239{bottom:399.468000px;}
.y1ab{bottom:401.366454px;}
.y23{bottom:401.839500px;}
.yb5{bottom:401.851500px;}
.y82{bottom:402.079500px;}
.y118{bottom:402.494859px;}
.y81{bottom:404.907000px;}
.y5b{bottom:406.819500px;}
.y154{bottom:407.175450px;}
.y152{bottom:407.175792px;}
.y18b{bottom:408.925950px;}
.yd7{bottom:409.712714px;}
.y1d7{bottom:410.129961px;}
.y83{bottom:410.332500px;}
.y153{bottom:410.955450px;}
.y238{bottom:418.836000px;}
.y1aa{bottom:421.616373px;}
.y22{bottom:422.103000px;}
.yb4{bottom:422.115000px;}
.y206{bottom:422.256000px;}
.y117{bottom:422.744778px;}
.yd6{bottom:425.912650px;}
.y5a{bottom:427.083000px;}
.y151{bottom:427.335531px;}
.y1d6{bottom:430.289700px;}
.y18a{bottom:433.406112px;}
.y80{bottom:437.073000px;}
.y205{bottom:437.454000px;}
.y237{bottom:438.204000px;}
.y1a9{bottom:441.866292px;}
.yd5{bottom:442.112585px;}
.yb3{bottom:442.378500px;}
.y116{bottom:442.994697px;}
.y7f{bottom:447.325500px;}
.y59{bottom:447.348000px;}
.y150{bottom:447.585450px;}
.y21{bottom:451.333500px;}
.y204{bottom:452.652000px;}
.y236{bottom:457.570500px;}
.yd4{bottom:458.312650px;}
.y1a8{bottom:462.026031px;}
.y115{bottom:463.154436px;}
.y58{bottom:467.611500px;}
.y203{bottom:467.850000px;}
.y1d5{bottom:468.089250px;}
.yb2{bottom:471.609000px;}
.yd3{bottom:474.512585px;}
.y235{bottom:476.938500px;}
.y1a7{bottom:482.275950px;}
.y202{bottom:483.049500px;}
.y114{bottom:483.404355px;}
.y14e{bottom:484.935450px;}
.y1d4{bottom:487.619700px;}
.y57{bottom:487.875000px;}
.y7e{bottom:490.326000px;}
.yd1{bottom:490.711750px;}
.y1c7{bottom:491.757000px;}
.yd2{bottom:493.736520px;}
.y234{bottom:496.305000px;}
.y113{bottom:503.654274px;}
.yb1{bottom:506.428500px;}
.yd0{bottom:506.911685px;}
.y55{bottom:508.140000px;}
.y13d{bottom:508.269327px;}
.y7d{bottom:510.591000px;}
.y1d3{bottom:512.010213px;}
.y1c5{bottom:512.020500px;}
.y56{bottom:513.564000px;}
.y233{bottom:515.673000px;}
.y201{bottom:516.180000px;}
.y1c6{bottom:517.444500px;}
.y1a5{bottom:519.625950px;}
.ycf{bottom:523.039476px;}
.y112{bottom:523.904193px;}
.yb0{bottom:526.693500px;}
.y20{bottom:527.749500px;}
.y54{bottom:528.403500px;}
.y7c{bottom:530.854500px;}
.y1c4{bottom:532.284000px;}
.y13c{bottom:533.019228px;}
.y232{bottom:535.041000px;}
.y200{bottom:536.443500px;}
.yce{bottom:542.840640px;}
.y111{bottom:544.154112px;}
.ycd{bottom:544.568887px;}
.yaf{bottom:546.957000px;}
.y52{bottom:548.667000px;}
.ycb{bottom:550.616722px;}
.y7b{bottom:551.119500px;}
.y1c3{bottom:552.549000px;}
.y53{bottom:554.092500px;}
.y231{bottom:554.407500px;}
.ycc{bottom:555.944520px;}
.y1ff{bottom:556.708500px;}
.y110{bottom:564.404031px;}
.y1f{bottom:565.947000px;}
.yae{bottom:567.222000px;}
.y51{bottom:568.932000px;}
.y7a{bottom:571.383000px;}
.y1c2{bottom:572.812500px;}
.y230{bottom:573.775500px;}
.yca{bottom:576.536858px;}
.y1fe{bottom:576.972000px;}
.y10f{bottom:584.653950px;}
.y10d{bottom:584.654292px;}
.y1e{bottom:586.210500px;}
.yad{bottom:587.485500px;}
.y10e{bottom:588.433950px;}
.y50{bottom:589.195500px;}
.y78{bottom:591.646500px;}
.yc9{bottom:592.736794px;}
.y1c1{bottom:593.077500px;}
.y22f{bottom:593.142000px;}
.y176{bottom:595.120500px;}
.y79{bottom:597.072000px;}
.y1fd{bottom:597.235500px;}
.y10c{bottom:604.814031px;}
.y1d{bottom:606.475500px;}
.yab{bottom:607.749000px;}
.yc8{bottom:608.936729px;}
.y4f{bottom:609.460500px;}
.y77{bottom:611.911500px;}
.y22e{bottom:612.510000px;}
.yac{bottom:613.174500px;}
.y1c0{bottom:613.341000px;}
.y174{bottom:615.385500px;}
.y1fc{bottom:617.500500px;}
.y175{bottom:620.809500px;}
.y10b{bottom:625.063950px;}
.y109{bottom:625.064112px;}
.yc7{bottom:625.064585px;}
.y1c{bottom:626.739000px;}
.yaa{bottom:628.014000px;}
.y10a{bottom:628.843950px;}
.y4d{bottom:629.724000px;}
.y22d{bottom:631.878000px;}
.y75{bottom:632.175000px;}
.y1bf{bottom:633.604500px;}
.y4e{bottom:635.149500px;}
.y173{bottom:635.649000px;}
.y76{bottom:637.600500px;}
.y1fb{bottom:637.764000px;}
.yc6{bottom:641.264808px;}
.y108{bottom:645.314031px;}
.ya8{bottom:646.036500px;}
.y1b{bottom:647.002500px;}
.ya7{bottom:648.277500px;}
.y4c{bottom:649.987500px;}
.y22c{bottom:651.244500px;}
.y74{bottom:652.438500px;}
.ya9{bottom:653.703000px;}
.y1f9{bottom:658.029000px;}
.yc5{bottom:662.216520px;}
.y1fa{bottom:663.453000px;}
.yc4{bottom:664.664614px;}
.y107{bottom:665.563950px;}
.y105{bottom:665.564859px;}
.y1a{bottom:667.267500px;}
.ya6{bottom:668.542500px;}
.y1be{bottom:668.605500px;}
.y106{bottom:669.343950px;}
.y4b{bottom:670.252500px;}
.y22b{bottom:670.612500px;}
.y172{bottom:670.650000px;}
.y73{bottom:672.703500px;}
.yef{bottom:675.676500px;}
.y1f8{bottom:678.292500px;}
.y104{bottom:685.814778px;}
.y18{bottom:687.531000px;}
.y1bd{bottom:687.838500px;}
.yc3{bottom:688.064614px;}
.ya5{bottom:688.806000px;}
.y171{bottom:689.883000px;}
.y22a{bottom:689.979000px;}
.y4a{bottom:690.516000px;}
.y19{bottom:692.956500px;}
.y72{bottom:692.967000px;}
.yee{bottom:695.941500px;}
.y1f7{bottom:698.556000px;}
.y189{bottom:703.406535px;}
.y103{bottom:706.064697px;}
.y17{bottom:707.796000px;}
.yc2{bottom:709.016520px;}
.y229{bottom:709.347000px;}
.y1a4{bottom:710.268000px;}
.y49{bottom:710.781000px;}
.yc1{bottom:711.464678px;}
.y14d{bottom:712.311000px;}
.y70{bottom:713.232000px;}
.ya4{bottom:715.159500px;}
.yed{bottom:716.205000px;}
.y71{bottom:718.656000px;}
.y1f6{bottom:718.821000px;}
.y188{bottom:723.566274px;}
.ya3{bottom:726.039000px;}
.y102{bottom:726.314616px;}
.y16{bottom:728.059500px;}
.y228{bottom:728.715000px;}
.y48{bottom:731.044500px;}
.y6f{bottom:733.495500px;}
.yc0{bottom:734.864585px;}
.y1f5{bottom:739.084500px;}
.y187{bottom:743.816193px;}
.y101{bottom:746.474355px;}
.y227{bottom:748.081500px;}
.y15{bottom:748.323000px;}
.ybf{bottom:751.064758px;}
.y47{bottom:751.308000px;}
.y6e{bottom:753.759000px;}
.ya2{bottom:754.969500px;}
.y1f4{bottom:759.349500px;}
.y186{bottom:764.066112px;}
.y100{bottom:766.724274px;}
.y226{bottom:767.449500px;}
.y14{bottom:768.588000px;}
.y46{bottom:771.573000px;}
.ybe{bottom:771.944520px;}
.y6d{bottom:774.024000px;}
.ybd{bottom:774.392614px;}
.ya1{bottom:775.234500px;}
.y13b{bottom:779.079867px;}
.y185{bottom:784.316031px;}
.y225{bottom:786.816000px;}
.yff{bottom:786.974193px;}
.y1f3{bottom:788.578500px;}
.y13{bottom:788.851500px;}
.y45{bottom:791.836500px;}
.ya0{bottom:795.498000px;}
.yec{bottom:797.262000px;}
.ybc{bottom:797.792520px;}
.y13a{bottom:799.329786px;}
.y6c{bottom:803.254500px;}
.y184{bottom:804.565950px;}
.y182{bottom:804.566031px;}
.y224{bottom:806.184000px;}
.yfe{bottom:807.224112px;}
.y183{bottom:808.345950px;}
.y12{bottom:809.116500px;}
.y44{bottom:812.101500px;}
.y9e{bottom:812.965500px;}
.y9f{bottom:813.520500px;}
.y9d{bottom:815.763000px;}
.y139{bottom:819.579705px;}
.y1f2{bottom:823.398000px;}
.y181{bottom:824.815950px;}
.y17f{bottom:824.816031px;}
.y223{bottom:825.552000px;}
.yfd{bottom:827.474031px;}
.yba{bottom:827.672520px;}
.y180{bottom:828.595950px;}
.y43{bottom:832.365000px;}
.yeb{bottom:837.789000px;}
.y6b{bottom:838.074000px;}
.y138{bottom:839.829624px;}
.y1f1{bottom:843.663000px;}
.yf{bottom:844.548055px;}
.y222{bottom:844.918500px;}
.y17e{bottom:845.065950px;}
.y17c{bottom:845.066292px;}
.ye{bottom:845.314500px;}
.yfc{bottom:847.723950px;}
.yfa{bottom:847.724031px;}
.y17d{bottom:848.845950px;}
.y42{bottom:849.832500px;}
.yfb{bottom:851.503950px;}
.y41{bottom:852.628500px;}
.y9c{bottom:852.913500px;}
.yea{bottom:858.054000px;}
.y137{bottom:860.079543px;}
.y1d2{bottom:860.489781px;}
.y1f0{bottom:863.926500px;}
.y221{bottom:864.286500px;}
.y17b{bottom:865.226031px;}
.yf9{bottom:867.973950px;}
.yf7{bottom:867.974211px;}
.yf8{bottom:871.753950px;}
.y40{bottom:872.893500px;}
.ye9{bottom:878.317500px;}
.y136{bottom:880.329462px;}
.y1d1{bottom:880.740366px;}
.y220{bottom:883.653000px;}
.y1ef{bottom:884.191500px;}
.yd{bottom:884.320500px;}
.y17a{bottom:885.475950px;}
.yf6{bottom:888.133950px;}
.yf4{bottom:888.134031px;}
.y9b{bottom:890.064000px;}
.yf5{bottom:891.913950px;}
.y3f{bottom:893.157000px;}
.y135{bottom:900.579381px;}
.y1d0{bottom:900.990285px;}
.yc{bottom:902.478000px;}
.y21f{bottom:903.021000px;}
.y1ee{bottom:904.455000px;}
.yf3{bottom:908.383950px;}
.y24a{bottom:908.899500px;}
.y3e{bottom:913.422000px;}
.y134{bottom:920.829300px;}
.y1cf{bottom:921.240204px;}
.y21e{bottom:922.389000px;}
.y178{bottom:922.825950px;}
.y1ed{bottom:924.718500px;}
.yb{bottom:925.516500px;}
.y9a{bottom:927.214500px;}
.y249{bottom:928.267500px;}
.y12e{bottom:930.427500px;}
.y3d{bottom:933.685500px;}
.y1ce{bottom:941.490123px;}
.y21d{bottom:941.755500px;}
.ya{bottom:943.674000px;}
.y1ec{bottom:944.983500px;}
.yf1{bottom:945.733950px;}
.y248{bottom:947.634000px;}
.y133{bottom:949.989003px;}
.y12c{bottom:950.692500px;}
.y3c{bottom:953.949000px;}
.y12d{bottom:956.116500px;}
.ye8{bottom:959.374500px;}
.y21c{bottom:961.123500px;}
.y1cd{bottom:961.740042px;}
.y99{bottom:964.366500px;}
.y1eb{bottom:965.247000px;}
.y9{bottom:965.914500px;}
.y12b{bottom:970.956000px;}
.y3b{bottom:974.214000px;}
.y21b{bottom:980.490000px;}
.y1cc{bottom:981.899781px;}
.y97{bottom:982.389000px;}
.y96{bottom:984.630000px;}
.y1ea{bottom:985.512000px;}
.y132{bottom:988.238850px;}
.y98{bottom:990.054000px;}
.y12a{bottom:991.219500px;}
.y3a{bottom:994.477500px;}
.y21a{bottom:999.858000px;}
.y14c{bottom:999.903000px;}
.y1cb{bottom:1002.149700px;}
.y1e9{bottom:1005.775500px;}
.y8{bottom:1010.451000px;}
.y129{bottom:1011.484500px;}
.y39{bottom:1014.742500px;}
.y219{bottom:1019.226000px;}
.y95{bottom:1021.780500px;}
.y130{bottom:1025.588850px;}
.y1e7{bottom:1026.039000px;}
.y1e8{bottom:1031.464500px;}
.y128{bottom:1031.748000px;}
.y38{bottom:1035.006000px;}
.y218{bottom:1038.592500px;}
.y1c9{bottom:1039.499700px;}
.y7{bottom:1040.848500px;}
.y1e6{bottom:1046.304000px;}
.y127{bottom:1052.013000px;}
.y37{bottom:1055.269500px;}
.y217{bottom:1057.960500px;}
.y94{bottom:1058.931000px;}
.ye7{bottom:1060.695000px;}
.y1e5{bottom:1066.567500px;}
.y6{bottom:1071.244500px;}
.y36{bottom:1075.534500px;}
.y216{bottom:1077.327000px;}
.ye6{bottom:1080.958500px;}
.y126{bottom:1081.243500px;}
.y93{bottom:1085.076000px;}
.y1e4{bottom:1086.832500px;}
.y35{bottom:1095.798000px;}
.y215{bottom:1096.695000px;}
.y5{bottom:1100.145000px;}
.ye5{bottom:1101.223500px;}
.y34{bottom:1116.063000px;}
.y14b{bottom:1121.487000px;}
.y1{bottom:1137.954000px;}
.y33{bottom:1168.366500px;}
.h3e{height:22.888012px;}
.h32{height:23.013141px;}
.h41{height:24.176953px;}
.h10{height:24.849991px;}
.h2e{height:24.927169px;}
.ha{height:25.508090px;}
.h39{height:26.279297px;}
.h23{height:28.092094px;}
.h17{height:28.273859px;}
.h24{height:28.792969px;}
.h8{height:30.461558px;}
.h2f{height:30.686286px;}
.h2c{height:30.686766px;}
.h34{height:31.682813px;}
.h2d{height:31.838766px;}
.h14{height:32.697253px;}
.h12{height:33.072749px;}
.hc{height:33.112997px;}
.h19{height:33.299897px;}
.h26{height:33.934922px;}
.hb{height:34.199443px;}
.h33{height:34.615969px;}
.h11{height:35.052500px;}
.h25{height:35.109141px;}
.h31{height:35.112222px;}
.h36{height:35.115117px;}
.h37{height:35.991211px;}
.h45{height:37.658880px;}
.h4d{height:37.927872px;}
.h4b{height:38.412058px;}
.h4c{height:38.465856px;}
.h3d{height:38.734848px;}
.h9{height:39.165235px;}
.h3{height:39.402747px;}
.h44{height:39.418945px;}
.h46{height:39.434227px;}
.h3a{height:39.603516px;}
.h4{height:41.001535px;}
.h16{height:41.842920px;}
.h49{height:42.418012px;}
.hf{height:42.679778px;}
.hd{height:43.038432px;}
.h40{height:43.269961px;}
.he{height:43.516637px;}
.h27{height:43.726922px;}
.h5{height:43.815515px;}
.h38{height:43.886426px;}
.h3c{height:44.091914px;}
.h28{height:44.901141px;}
.h29{height:45.742144px;}
.h2a{height:45.742922px;}
.h1a{height:46.545991px;}
.h13{height:46.551991px;}
.h1d{height:46.714950px;}
.h1b{height:47.344950px;}
.h3b{height:47.988281px;}
.h42{height:49.991558px;}
.h2{height:50.931027px;}
.h2b{height:53.150362px;}
.h7{height:54.411312px;}
.h15{height:54.768749px;}
.h1e{height:54.774749px;}
.h1f{height:63.738749px;}
.h30{height:66.212661px;}
.h6{height:77.469696px;}
.h18{height:84.285515px;}
.h1c{height:86.404637px;}
.h21{height:87.034637px;}
.h20{height:92.830950px;}
.h22{height:186.152160px;}
.h43{height:238.254000px;}
.h35{height:255.925500px;}
.h4a{height:268.035750px;}
.h47{height:269.673000px;}
.h48{height:301.090500px;}
.h3f{height:713.453400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w5{width:401.890500px;}
.w4{width:434.355600px;}
.wa{width:469.798500px;}
.w8{width:562.908000px;}
.w9{width:572.725500px;}
.w7{width:602.180250px;}
.w6{width:626.397900px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xab{left:-132.577500px;}
.xb2{left:-126.187500px;}
.xb3{left:-118.717500px;}
.xac{left:-100.717500px;}
.xf4{left:-93.306000px;}
.xf5{left:-61.446000px;}
.x88{left:-48.724800px;}
.xe2{left:-36.220500px;}
.xcd{left:-30.468750px;}
.xe3{left:-27.220500px;}
.x8b{left:-23.236246px;}
.xd2{left:-17.238750px;}
.xbf{left:-14.105100px;}
.xe4{left:-12.910500px;}
.xad{left:-10.177500px;}
.xd3{left:-8.238750px;}
.xaf{left:-5.587500px;}
.xe5{left:-3.910500px;}
.xae{left:-1.177500px;}
.x0{left:0.000000px;}
.xce{left:1.391250px;}
.xb0{left:4.672500px;}
.xd4{left:6.071250px;}
.xd5{left:15.071250px;}
.xc0{left:17.754794px;}
.x8{left:29.274117px;}
.xb4{left:34.642500px;}
.x96{left:41.419200px;}
.xb5{left:43.642500px;}
.x2{left:59.014071px;}
.xe1{left:67.819500px;}
.xb6{left:78.562500px;}
.xb8{left:83.422500px;}
.xb7{left:86.032500px;}
.xe8{left:96.529500px;}
.x8e{left:103.266782px;}
.xe9{left:105.529500px;}
.x3{left:113.458500px;}
.x1{left:114.802500px;}
.xea{left:118.039500px;}
.x6{left:122.110500px;}
.x4{left:123.307500px;}
.xd7{left:124.511250px;}
.xeb{left:126.949500px;}
.xa5{left:129.096000px;}
.xbe{left:133.259100px;}
.xd8{left:137.021250px;}
.x8f{left:144.379200px;}
.x5{left:146.170500px;}
.xa6{left:149.202000px;}
.xbc{left:150.882000px;}
.x105{left:155.194500px;}
.xef{left:160.095000px;}
.xdc{left:162.973500px;}
.xa7{left:164.415000px;}
.x27{left:167.524500px;}
.x56{left:169.308000px;}
.x23{left:170.334000px;}
.xdd{left:171.636000px;}
.x28{left:174.211500px;}
.x24{left:177.021000px;}
.x70{left:178.251000px;}
.x57{left:179.614500px;}
.x8c{left:181.747798px;}
.x53{left:186.342000px;}
.x9{left:189.171000px;}
.x54{left:194.292000px;}
.x20{left:198.643500px;}
.x14{left:200.535000px;}
.x7b{left:202.609500px;}
.xe{left:204.585000px;}
.x92{left:208.675200px;}
.xf{left:212.056500px;}
.x21{left:213.588000px;}
.x89{left:215.155200px;}
.x7c{left:217.554000px;}
.x17{left:219.633000px;}
.xec{left:220.674000px;}
.x93{left:223.867200px;}
.x71{left:227.854500px;}
.x87{left:229.278000px;}
.xc{left:230.565000px;}
.x101{left:232.110000px;}
.x102{left:235.969500px;}
.xd{left:237.252000px;}
.x94{left:238.555200px;}
.x100{left:240.426000px;}
.x8d{left:242.155200px;}
.xaa{left:245.512500px;}
.x8a{left:249.643200px;}
.x10a{left:251.667000px;}
.x2b{left:252.730500px;}
.x91{left:254.611200px;}
.x90{left:257.635200px;}
.x2c{left:259.417500px;}
.xff{left:260.988000px;}
.xa0{left:264.456000px;}
.xfe{left:265.911000px;}
.x10b{left:267.238500px;}
.xc4{left:272.454900px;}
.x9b{left:277.876500px;}
.x45{left:280.938000px;}
.xa1{left:282.775500px;}
.x46{left:285.228000px;}
.x9c{left:287.874000px;}
.xbd{left:295.147500px;}
.xb9{left:298.692000px;}
.xfc{left:300.172500px;}
.xfd{left:303.846000px;}
.xc2{left:308.723100px;}
.x9d{left:310.200000px;}
.x76{left:313.090500px;}
.x6f{left:315.564000px;}
.x9e{left:316.887000px;}
.x1e{left:318.766500px;}
.x77{left:321.040500px;}
.x5c{left:327.526500px;}
.x1f{left:328.909500px;}
.x29{left:331.215000px;}
.x35{left:333.345000px;}
.x5d{left:335.476500px;}
.x7d{left:337.645500px;}
.x2a{left:346.159500px;}
.xf2{left:347.179500px;}
.x5f{left:350.947500px;}
.x7e{left:352.590000px;}
.x108{left:357.442500px;}
.x68{left:358.618500px;}
.xf3{left:361.203000px;}
.x69{left:363.783000px;}
.x74{left:368.524500px;}
.x1a{left:371.497500px;}
.x1b{left:378.969000px;}
.x31{left:381.010500px;}
.x3e{left:385.587000px;}
.x3f{left:389.875500px;}
.x86{left:392.197500px;}
.x4e{left:393.240000px;}
.x52{left:394.929000px;}
.x32{left:395.953500px;}
.x4f{left:397.528500px;}
.x47{left:398.683500px;}
.x55{left:401.079000px;}
.x48{left:405.370500px;}
.x6e{left:407.782500px;}
.x75{left:421.458000px;}
.x103{left:427.194000px;}
.x2d{left:428.317500px;}
.x38{left:430.702500px;}
.x60{left:433.560000px;}
.x39{left:434.991000px;}
.x64{left:441.723000px;}
.x2e{left:443.262000px;}
.x61{left:447.766500px;}
.x65{left:450.670500px;}
.x49{left:453.201000px;}
.xda{left:455.484000px;}
.x6b{left:457.180500px;}
.xa8{left:458.311500px;}
.x4a{left:459.888000px;}
.x58{left:463.495500px;}
.xdb{left:464.743500px;}
.x10{left:467.328000px;}
.xe6{left:468.589500px;}
.x59{left:470.182500px;}
.x95{left:471.691200px;}
.x11{left:474.799500px;}
.x12{left:478.468500px;}
.xd9{left:483.521250px;}
.x13{left:485.941500px;}
.x4d{left:487.741500px;}
.x7f{left:490.453500px;}
.xe7{left:491.809500px;}
.xb1{left:497.332350px;}
.x80{left:500.880000px;}
.x5a{left:503.070000px;}
.x1c{left:504.609000px;}
.xd6{left:510.791250px;}
.x5b{left:513.376500px;}
.x5e{left:515.359500px;}
.xcb{left:516.610500px;}
.x6c{left:517.873500px;}
.x1d{left:519.553500px;}
.xcc{left:523.297500px;}
.x78{left:526.308000px;}
.x6d{left:531.898500px;}
.xd0{left:536.351250px;}
.xf8{left:540.019500px;}
.xf1{left:542.789352px;}
.xd1{left:545.261250px;}
.x2f{left:549.529500px;}
.xdf{left:552.379500px;}
.xf9{left:554.964000px;}
.x30{left:556.216500px;}
.xfa{left:558.688500px;}
.xc5{left:559.789500px;}
.xe0{left:561.379500px;}
.x3a{left:565.698000px;}
.xcf{left:571.361250px;}
.x40{left:573.258000px;}
.x3b{left:580.642500px;}
.xa9{left:584.287500px;}
.x3c{left:588.264000px;}
.x83{left:592.345500px;}
.x106{left:593.434500px;}
.x41{left:595.950000px;}
.x107{left:597.295500px;}
.xf0{left:599.940126px;}
.x3d{left:603.207000px;}
.x84{left:610.681500px;}
.x4b{left:615.733500px;}
.x42{left:622.257000px;}
.x85{left:624.877500px;}
.x43{left:628.944000px;}
.xba{left:629.956500px;}
.xde{left:632.616000px;}
.x25{left:634.923000px;}
.xc3{left:636.952428px;}
.xc1{left:640.462034px;}
.x26{left:641.611500px;}
.x44{left:643.588500px;}
.x4c{left:644.706000px;}
.x18{left:651.093000px;}
.xc6{left:654.807000px;}
.x19{left:658.566000px;}
.xa{left:660.499500px;}
.xfb{left:661.995000px;}
.xb{left:664.788000px;}
.x104{left:667.755000px;}
.x66{left:669.388500px;}
.x109{left:674.928000px;}
.xa2{left:677.152500px;}
.xa3{left:681.441000px;}
.x67{left:683.412000px;}
.x22{left:685.989000px;}
.x79{left:691.774500px;}
.xc7{left:694.284000px;}
.x99{left:695.904000px;}
.x7{left:701.339982px;}
.x36{left:704.193000px;}
.x9a{left:705.901500px;}
.xbb{left:709.657500px;}
.x62{left:711.313500px;}
.x97{left:712.923000px;}
.x63{left:717.739500px;}
.x37{left:719.137500px;}
.xf6{left:722.776500px;}
.x33{left:725.007000px;}
.x34{left:729.295500px;}
.x98{left:731.379000px;}
.xf7{left:732.502500px;}
.xc9{left:733.681500px;}
.xed{left:736.216500px;}
.x72{left:738.165000px;}
.x9f{left:743.551500px;}
.xc8{left:744.879000px;}
.x7a{left:748.684500px;}
.xa4{left:751.161000px;}
.xca{left:752.304000px;}
.x73{left:753.487500px;}
.x6a{left:755.133000px;}
.xee{left:756.969000px;}
.x50{left:762.144000px;}
.x15{left:764.550000px;}
.x81{left:766.431000px;}
.x82{left:770.721000px;}
.x16{left:772.021500px;}
.x51{left:776.167500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v19{vertical-align:-13.440000pt;}
.v6{vertical-align:-10.853333pt;}
.v7{vertical-align:-9.946667pt;}
.v5{vertical-align:-8.970667pt;}
.v8{vertical-align:-7.968000pt;}
.v13{vertical-align:-6.144000pt;}
.v16{vertical-align:-3.073869pt;}
.v11{vertical-align:-1.791309pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:1.791309pt;}
.v14{vertical-align:6.144000pt;}
.v15{vertical-align:7.168000pt;}
.ve{vertical-align:8.704000pt;}
.vf{vertical-align:10.752000pt;}
.v18{vertical-align:13.437632pt;}
.v17{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:26.330667pt;}
.v9{vertical-align:28.005333pt;}
.vd{vertical-align:31.466667pt;}
.vc{vertical-align:32.464000pt;}
.v12{vertical-align:33.792000pt;}
.v3{vertical-align:35.973333pt;}
.va{vertical-align:38.682667pt;}
.vb{vertical-align:40.432000pt;}
.lsbe{letter-spacing:-0.336000pt;}
.lsce{letter-spacing:-0.297600pt;}
.lsea{letter-spacing:-0.293920pt;}
.ls7c{letter-spacing:-0.256000pt;}
.lsd8{letter-spacing:-0.219104pt;}
.lsb1{letter-spacing:-0.208416pt;}
.lsbd{letter-spacing:-0.192000pt;}
.lscc{letter-spacing:-0.187040pt;}
.lsb9{letter-spacing:-0.165664pt;}
.lsb7{letter-spacing:-0.154976pt;}
.lse7{letter-spacing:-0.144704pt;}
.lsab{letter-spacing:-0.144288pt;}
.ls87{letter-spacing:-0.136806pt;}
.lsa7{letter-spacing:-0.136192pt;}
.ls75{letter-spacing:-0.132531pt;}
.lsb2{letter-spacing:-0.128256pt;}
.ls7b{letter-spacing:-0.123981pt;}
.lsb6{letter-spacing:-0.122912pt;}
.lsc9{letter-spacing:-0.117568pt;}
.ls6f{letter-spacing:-0.115763pt;}
.lsd9{letter-spacing:-0.112224pt;}
.ls8b{letter-spacing:-0.106880pt;}
.ls7d{letter-spacing:-0.102400pt;}
.lsac{letter-spacing:-0.101536pt;}
.ls8d{letter-spacing:-0.098330pt;}
.lscb{letter-spacing:-0.096192pt;}
.ls79{letter-spacing:-0.094054pt;}
.lsb4{letter-spacing:-0.092800pt;}
.lsec{letter-spacing:-0.090848pt;}
.lsad{letter-spacing:-0.085504pt;}
.ls8a{letter-spacing:-0.081229pt;}
.lse6{letter-spacing:-0.080864pt;}
.lsbb{letter-spacing:-0.080160pt;}
.lsa6{letter-spacing:-0.076608pt;}
.lse9{letter-spacing:-0.074816pt;}
.lsba{letter-spacing:-0.069472pt;}
.ls80{letter-spacing:-0.068403pt;}
.ls6e{letter-spacing:-0.064691pt;}
.ls85{letter-spacing:-0.064128pt;}
.ls71{letter-spacing:-0.059853pt;}
.lsbc{letter-spacing:-0.058784pt;}
.ls89{letter-spacing:-0.055578pt;}
.lsdb{letter-spacing:-0.053440pt;}
.ls7f{letter-spacing:-0.051302pt;}
.lsa9{letter-spacing:-0.048096pt;}
.ls7a{letter-spacing:-0.047027pt;}
.lsaa{letter-spacing:-0.044800pt;}
.lsca{letter-spacing:-0.042752pt;}
.ls73{letter-spacing:-0.038938pt;}
.lse8{letter-spacing:-0.037408pt;}
.lse5{letter-spacing:-0.034048pt;}
.lsb8{letter-spacing:-0.032064pt;}
.ls82{letter-spacing:-0.029952pt;}
.ls76{letter-spacing:-0.029926pt;}
.lscd{letter-spacing:-0.028800pt;}
.ls6d{letter-spacing:-0.027238pt;}
.lsb0{letter-spacing:-0.026720pt;}
.ls8c{letter-spacing:-0.025651pt;}
.lsa5{letter-spacing:-0.025536pt;}
.ls8e{letter-spacing:-0.021376pt;}
.lseb{letter-spacing:-0.019200pt;}
.ls78{letter-spacing:-0.017101pt;}
.lsae{letter-spacing:-0.016032pt;}
.ls86{letter-spacing:-0.012826pt;}
.ls8f{letter-spacing:-0.011520pt;}
.lsa8{letter-spacing:-0.010688pt;}
.ls70{letter-spacing:-0.008550pt;}
.ls81{letter-spacing:-0.005990pt;}
.lsaf{letter-spacing:-0.005344pt;}
.lsdc{letter-spacing:-0.004800pt;}
.ls84{letter-spacing:-0.004275pt;}
.ls9{letter-spacing:0.000000pt;}
.lsf1{letter-spacing:0.000047pt;}
.ls17{letter-spacing:0.000316pt;}
.lse4{letter-spacing:0.000397pt;}
.ls2b{letter-spacing:0.000518pt;}
.lsc{letter-spacing:0.000577pt;}
.lse3{letter-spacing:0.000797pt;}
.lse1{letter-spacing:0.001009pt;}
.ls32{letter-spacing:0.001067pt;}
.ls35{letter-spacing:0.001098pt;}
.lsd4{letter-spacing:0.001259pt;}
.lsd{letter-spacing:0.001349pt;}
.lse2{letter-spacing:0.001370pt;}
.ls3a{letter-spacing:0.001630pt;}
.lse{letter-spacing:0.001792pt;}
.ls2e{letter-spacing:0.001867pt;}
.ls16{letter-spacing:0.001972pt;}
.ls1f{letter-spacing:0.001990pt;}
.lsbf{letter-spacing:0.002389pt;}
.lsf0{letter-spacing:0.002435pt;}
.ls5{letter-spacing:0.002551pt;}
.lsb{letter-spacing:0.002630pt;}
.lsc6{letter-spacing:0.002815pt;}
.ls90{letter-spacing:0.002868pt;}
.ls8{letter-spacing:0.003100pt;}
.ls11{letter-spacing:0.003106pt;}
.ls13{letter-spacing:0.003198pt;}
.ls3{letter-spacing:0.003430pt;}
.lsf{letter-spacing:0.003712pt;}
.ls6b{letter-spacing:0.003840pt;}
.lsd7{letter-spacing:0.004256pt;}
.lsf3{letter-spacing:0.004267pt;}
.ls66{letter-spacing:0.004275pt;}
.ls1a{letter-spacing:0.004541pt;}
.lsdf{letter-spacing:0.004800pt;}
.lsed{letter-spacing:0.004813pt;}
.ls9e{letter-spacing:0.005344pt;}
.lsc5{letter-spacing:0.005888pt;}
.ls95{letter-spacing:0.006400pt;}
.ls65{letter-spacing:0.008550pt;}
.lsa0{letter-spacing:0.009600pt;}
.ls96{letter-spacing:0.010688pt;}
.ls4d{letter-spacing:0.011699pt;}
.ls67{letter-spacing:0.012826pt;}
.ls9f{letter-spacing:0.014400pt;}
.ls46{letter-spacing:0.014874pt;}
.ls54{letter-spacing:0.015309pt;}
.lsd1{letter-spacing:0.016032pt;}
.ls49{letter-spacing:0.017101pt;}
.ls53{letter-spacing:0.017152pt;}
.ls4a{letter-spacing:0.017331pt;}
.lsa4{letter-spacing:0.019200pt;}
.ls44{letter-spacing:0.020890pt;}
.ls98{letter-spacing:0.021376pt;}
.lsa2{letter-spacing:0.024000pt;}
.ls45{letter-spacing:0.025600pt;}
.ls48{letter-spacing:0.025651pt;}
.lsc0{letter-spacing:0.026720pt;}
.lsd3{letter-spacing:0.028800pt;}
.ls7e{letter-spacing:0.029926pt;}
.lscf{letter-spacing:0.032064pt;}
.lsd2{letter-spacing:0.033600pt;}
.ls4c{letter-spacing:0.034202pt;}
.ls97{letter-spacing:0.037408pt;}
.lsc3{letter-spacing:0.038400pt;}
.ls68{letter-spacing:0.042752pt;}
.ls9b{letter-spacing:0.048096pt;}
.ls6a{letter-spacing:0.051302pt;}
.ls9a{letter-spacing:0.053440pt;}
.ls5f{letter-spacing:0.055578pt;}
.ls94{letter-spacing:0.058784pt;}
.ls69{letter-spacing:0.059853pt;}
.ls4b{letter-spacing:0.064128pt;}
.lsc2{letter-spacing:0.067200pt;}
.ls52{letter-spacing:0.068403pt;}
.lsc8{letter-spacing:0.069472pt;}
.ls9d{letter-spacing:0.074816pt;}
.ls99{letter-spacing:0.085504pt;}
.ls5d{letter-spacing:0.089600pt;}
.lsd0{letter-spacing:0.090848pt;}
.ls5c{letter-spacing:0.092723pt;}
.lsb3{letter-spacing:0.096192pt;}
.ls5e{letter-spacing:0.098330pt;}
.ls63{letter-spacing:0.113818pt;}
.ls43{letter-spacing:0.122573pt;}
.lsde{letter-spacing:0.122912pt;}
.lsa3{letter-spacing:0.124800pt;}
.ls6c{letter-spacing:0.126720pt;}
.ls42{letter-spacing:0.129382pt;}
.lsc1{letter-spacing:0.133600pt;}
.lsc4{letter-spacing:0.139200pt;}
.lsdd{letter-spacing:0.153216pt;}
.ls93{letter-spacing:0.161728pt;}
.ls92{letter-spacing:0.170240pt;}
.ls9c{letter-spacing:0.171008pt;}
.ls57{letter-spacing:0.179558pt;}
.lsb5{letter-spacing:0.406144pt;}
.ls2c{letter-spacing:0.596214pt;}
.ls26{letter-spacing:0.601548pt;}
.ls21{letter-spacing:0.662839pt;}
.ls25{letter-spacing:0.663200pt;}
.ls83{letter-spacing:0.910541pt;}
.lsa{letter-spacing:1.133683pt;}
.ls64{letter-spacing:1.152000pt;}
.lsd5{letter-spacing:1.153646pt;}
.ls3d{letter-spacing:1.243733pt;}
.ls15{letter-spacing:1.253434pt;}
.ls1e{letter-spacing:1.256992pt;}
.ls20{letter-spacing:1.273874pt;}
.ls28{letter-spacing:1.298473pt;}
.ls62{letter-spacing:1.408000pt;}
.ls6{letter-spacing:1.654338pt;}
.ls59{letter-spacing:1.857792pt;}
.ls50{letter-spacing:2.272000pt;}
.ls51{letter-spacing:2.528000pt;}
.ls33{letter-spacing:2.651733pt;}
.ls10{letter-spacing:2.656284pt;}
.lsc7{letter-spacing:2.656533pt;}
.ls14{letter-spacing:2.657067pt;}
.ls36{letter-spacing:2.657118pt;}
.ls30{letter-spacing:2.659454pt;}
.ls2d{letter-spacing:3.318400pt;}
.ls3c{letter-spacing:3.323733pt;}
.lsa1{letter-spacing:4.324800pt;}
.ls2f{letter-spacing:6.373348pt;}
.lsda{letter-spacing:6.487616pt;}
.ls77{letter-spacing:9.439642pt;}
.ls56{letter-spacing:9.448192pt;}
.ls74{letter-spacing:9.533696pt;}
.ls88{letter-spacing:10.046720pt;}
.ls1c{letter-spacing:10.330777pt;}
.ls1d{letter-spacing:10.336110pt;}
.ls7{letter-spacing:10.626533pt;}
.ls58{letter-spacing:10.817792pt;}
.ls5b{letter-spacing:11.073792pt;}
.ls5a{letter-spacing:11.440435pt;}
.ls61{letter-spacing:11.584256pt;}
.ls55{letter-spacing:11.744000pt;}
.lsf2{letter-spacing:11.798566pt;}
.ls72{letter-spacing:11.838029pt;}
.lsf4{letter-spacing:11.932800pt;}
.lsee{letter-spacing:11.954133pt;}
.lsef{letter-spacing:11.959467pt;}
.ls4f{letter-spacing:12.000000pt;}
.lsf5{letter-spacing:12.614735pt;}
.ls1b{letter-spacing:12.987733pt;}
.ls91{letter-spacing:13.280110pt;}
.ls12{letter-spacing:13.285443pt;}
.ls4e{letter-spacing:14.304000pt;}
.ls60{letter-spacing:14.411264pt;}
.ls47{letter-spacing:14.486016pt;}
.lse0{letter-spacing:14.627747pt;}
.ls23{letter-spacing:15.395096pt;}
.ls18{letter-spacing:15.423450pt;}
.ls27{letter-spacing:15.910400pt;}
.ls39{letter-spacing:15.937067pt;}
.ls38{letter-spacing:15.937118pt;}
.lsd6{letter-spacing:15.942400pt;}
.ls37{letter-spacing:15.942451pt;}
.ls3b{letter-spacing:16.025548pt;}
.ls22{letter-spacing:16.697874pt;}
.ls3e{letter-spacing:18.076292pt;}
.ls24{letter-spacing:18.081067pt;}
.ls34{letter-spacing:18.081118pt;}
.ls29{letter-spacing:18.081626pt;}
.ls31{letter-spacing:18.083454pt;}
.ls3f{letter-spacing:21.773762pt;}
.ls41{letter-spacing:22.865067pt;}
.ls19{letter-spacing:35.603096pt;}
.ls40{letter-spacing:47.072015pt;}
.ls0{letter-spacing:51.035733pt;}
.ls2{letter-spacing:62.432533pt;}
.ls4{letter-spacing:64.314231pt;}
.ls1{letter-spacing:64.321067pt;}
.ls2a{letter-spacing:123.955096pt;}
.wsae{word-spacing:-53.440000pt;}
.wsaf{word-spacing:-53.274336pt;}
.ws102{word-spacing:-48.000000pt;}
.ws5c{word-spacing:-42.752000pt;}
.ws3d{word-spacing:-40.947213pt;}
.ws12c{word-spacing:-32.000000pt;}
.ws61{word-spacing:-30.862541pt;}
.ws5f{word-spacing:-29.952000pt;}
.ws60{word-spacing:-29.946010pt;}
.ws59{word-spacing:-29.913062pt;}
.ws5b{word-spacing:-25.600000pt;}
.ws58{word-spacing:-18.788275pt;}
.wse{word-spacing:-15.461955pt;}
.ws106{word-spacing:-13.915853pt;}
.wsec{word-spacing:-13.360000pt;}
.ws12{word-spacing:-13.283467pt;}
.wsef{word-spacing:-11.955200pt;}
.wsed{word-spacing:-11.702400pt;}
.wsad{word-spacing:-10.810240pt;}
.ws12b{word-spacing:-10.801728pt;}
.ws5d{word-spacing:-10.752128pt;}
.ws5e{word-spacing:-10.717926pt;}
.ws63{word-spacing:-10.688000pt;}
.ws1d{word-spacing:-10.626800pt;}
.ws6{word-spacing:-10.095467pt;}
.ws64{word-spacing:-9.603840pt;}
.ws57{word-spacing:-8.641382pt;}
.ws12d{word-spacing:-8.000000pt;}
.ws5a{word-spacing:-6.400000pt;}
.ws53{word-spacing:-3.931906pt;}
.ws52{word-spacing:-3.878772pt;}
.ws4c{word-spacing:-3.428237pt;}
.ws4d{word-spacing:-3.410889pt;}
.ws4e{word-spacing:-3.400567pt;}
.wse1{word-spacing:-2.843008pt;}
.wse2{word-spacing:-2.805600pt;}
.wseb{word-spacing:-2.762961pt;}
.ws91{word-spacing:-2.471066pt;}
.ws90{word-spacing:-2.445414pt;}
.ws18{word-spacing:-2.337890pt;}
.ws21{word-spacing:-2.284756pt;}
.ws8a{word-spacing:-2.257306pt;}
.ws154{word-spacing:-2.231622pt;}
.ws16e{word-spacing:-2.199757pt;}
.ws8b{word-spacing:-2.184627pt;}
.ws2b{word-spacing:-2.072221pt;}
.ws89{word-spacing:-2.026445pt;}
.ws31{word-spacing:-2.019087pt;}
.ws15b{word-spacing:-2.008474pt;}
.ws32{word-spacing:-1.965953pt;}
.ws20{word-spacing:-1.912819pt;}
.ws38{word-spacing:-1.859685pt;}
.wse4{word-spacing:-1.838336pt;}
.wsf7{word-spacing:-1.832992pt;}
.wsf8{word-spacing:-1.715424pt;}
.ws9{word-spacing:-1.696326pt;}
.ws54{word-spacing:-1.647150pt;}
.ws88{word-spacing:-1.633126pt;}
.ws55{word-spacing:-1.594016pt;}
.ws17b{word-spacing:-1.578086pt;}
.wse5{word-spacing:-1.512352pt;}
.ws56{word-spacing:-1.487748pt;}
.ws14a{word-spacing:-1.480288pt;}
.ws14b{word-spacing:-1.432192pt;}
.wse3{word-spacing:-1.394784pt;}
.ws62{word-spacing:-1.376614pt;}
.wsa5{word-spacing:-1.328347pt;}
.wsd7{word-spacing:-1.282560pt;}
.ws45{word-spacing:-1.275213pt;}
.ws15e{word-spacing:-1.243341pt;}
.ws137{word-spacing:-1.175680pt;}
.ws8{word-spacing:-1.175671pt;}
.ws3b{word-spacing:-1.168945pt;}
.ws138{word-spacing:-1.127584pt;}
.ws157{word-spacing:-1.115811pt;}
.ws3a{word-spacing:-1.062677pt;}
.ws92{word-spacing:-1.017498pt;}
.ws46{word-spacing:-0.956410pt;}
.wsd6{word-spacing:-0.919168pt;}
.wsa6{word-spacing:-0.903276pt;}
.ws173{word-spacing:-0.860774pt;}
.wsc2{word-spacing:-0.855040pt;}
.ws119{word-spacing:-0.830400pt;}
.ws11b{word-spacing:-0.825600pt;}
.ws11a{word-spacing:-0.816000pt;}
.ws163{word-spacing:-0.812954pt;}
.ws2d{word-spacing:-0.797008pt;}
.ws147{word-spacing:-0.785568pt;}
.wsd9{word-spacing:-0.593184pt;}
.ws2e{word-spacing:-0.584473pt;}
.ws176{word-spacing:-0.573850pt;}
.ws128{word-spacing:-0.571808pt;}
.ws13a{word-spacing:-0.561120pt;}
.wsc3{word-spacing:-0.534400pt;}
.wsfe{word-spacing:-0.513600pt;}
.wsfb{word-spacing:-0.489600pt;}
.wsfc{word-spacing:-0.484800pt;}
.ws139{word-spacing:-0.480960pt;}
.wsfd{word-spacing:-0.475200pt;}
.ws170{word-spacing:-0.430387pt;}
.wsa1{word-spacing:-0.425071pt;}
.wsd2{word-spacing:-0.400800pt;}
.ws16a{word-spacing:-0.334746pt;}
.ws30{word-spacing:-0.318803pt;}
.ws19{word-spacing:-0.265669pt;}
.ws72{word-spacing:-0.260787pt;}
.ws114{word-spacing:-0.251168pt;}
.wsd3{word-spacing:-0.219104pt;}
.ws14c{word-spacing:-0.213760pt;}
.ws23{word-spacing:-0.212535pt;}
.wsd4{word-spacing:-0.203072pt;}
.ws8f{word-spacing:-0.196659pt;}
.ws105{word-spacing:-0.191283pt;}
.wsb{word-spacing:-0.159402pt;}
.ws140{word-spacing:-0.158400pt;}
.ws121{word-spacing:-0.154976pt;}
.ws141{word-spacing:-0.153600pt;}
.ws73{word-spacing:-0.145357pt;}
.ws160{word-spacing:-0.143462pt;}
.ws142{word-spacing:-0.139200pt;}
.wsc{word-spacing:-0.106268pt;}
.ws1{word-spacing:-0.095642pt;}
.wsbb{word-spacing:-0.090848pt;}
.ws74{word-spacing:-0.068403pt;}
.ws3{word-spacing:-0.053134pt;}
.wsb2{word-spacing:-0.051072pt;}
.ws107{word-spacing:-0.047821pt;}
.ws131{word-spacing:-0.046816pt;}
.ws1e{word-spacing:-0.042507pt;}
.ws43{word-spacing:-0.040382pt;}
.ws65{word-spacing:-0.037453pt;}
.ws7{word-spacing:-0.009557pt;}
.ws2{word-spacing:-0.005029pt;}
.ws3e{word-spacing:-0.000475pt;}
.ws0{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.001266pt;}
.ws4{word-spacing:0.002415pt;}
.ws5{word-spacing:0.003207pt;}
.wsa7{word-spacing:0.004267pt;}
.ws7a{word-spacing:0.008550pt;}
.ws6f{word-spacing:0.029926pt;}
.ws149{word-spacing:0.032064pt;}
.ws103{word-spacing:0.047821pt;}
.ws66{word-spacing:0.051072pt;}
.ws86{word-spacing:0.051302pt;}
.ws1a{word-spacing:0.053134pt;}
.wsf2{word-spacing:0.058784pt;}
.wsb3{word-spacing:0.059584pt;}
.ws132{word-spacing:0.063840pt;}
.ws99{word-spacing:0.064128pt;}
.ws148{word-spacing:0.069472pt;}
.ws68{word-spacing:0.072678pt;}
.wsc7{word-spacing:0.074816pt;}
.ws135{word-spacing:0.080160pt;}
.ws87{word-spacing:0.081229pt;}
.ws8e{word-spacing:0.094054pt;}
.wsee{word-spacing:0.095642pt;}
.wsa{word-spacing:0.106268pt;}
.wsc8{word-spacing:0.106880pt;}
.ws127{word-spacing:0.112224pt;}
.ws69{word-spacing:0.123981pt;}
.ws143{word-spacing:0.124800pt;}
.ws9a{word-spacing:0.126720pt;}
.ws7d{word-spacing:0.128256pt;}
.ws118{word-spacing:0.133600pt;}
.ws11c{word-spacing:0.134400pt;}
.ws9b{word-spacing:0.138240pt;}
.ws126{word-spacing:0.139200pt;}
.ws9c{word-spacing:0.142080pt;}
.ws165{word-spacing:0.143462pt;}
.wsea{word-spacing:0.144000pt;}
.wse6{word-spacing:0.144288pt;}
.ws152{word-spacing:0.148800pt;}
.wsda{word-spacing:0.154976pt;}
.ws71{word-spacing:0.158182pt;}
.wsf{word-spacing:0.159402pt;}
.ws122{word-spacing:0.171008pt;}
.wsfa{word-spacing:0.181696pt;}
.ws13f{word-spacing:0.187040pt;}
.ws15c{word-spacing:0.191283pt;}
.wsff{word-spacing:0.192000pt;}
.wsd{word-spacing:0.212535pt;}
.ws41{word-spacing:0.242741pt;}
.ws40{word-spacing:0.262913pt;}
.ws13{word-spacing:0.265669pt;}
.ws130{word-spacing:0.286925pt;}
.ws2f{word-spacing:0.318803pt;}
.wsd0{word-spacing:0.320640pt;}
.ws183{word-spacing:0.334746pt;}
.ws181{word-spacing:0.364949pt;}
.wscd{word-spacing:0.368736pt;}
.ws77{word-spacing:0.371942pt;}
.ws144{word-spacing:0.411488pt;}
.ws187{word-spacing:0.478208pt;}
.ws145{word-spacing:0.491648pt;}
.ws98{word-spacing:0.525850pt;}
.ws12f{word-spacing:0.526029pt;}
.wsd1{word-spacing:0.529056pt;}
.wscc{word-spacing:0.630592pt;}
.ws3c{word-spacing:0.637606pt;}
.ws189{word-spacing:0.669491pt;}
.ws13b{word-spacing:0.726784pt;}
.wsf9{word-spacing:0.769536pt;}
.ws7c{word-spacing:0.825114pt;}
.wsf6{word-spacing:0.828320pt;}
.ws7b{word-spacing:0.837939pt;}
.wscb{word-spacing:0.855040pt;}
.ws184{word-spacing:1.004237pt;}
.ws26{word-spacing:1.009543pt;}
.ws117{word-spacing:1.020704pt;}
.ws25{word-spacing:1.062677pt;}
.ws136{word-spacing:1.127584pt;}
.ws24{word-spacing:1.168945pt;}
.ws158{word-spacing:1.275213pt;}
.ws6d{word-spacing:1.278285pt;}
.wsc5{word-spacing:1.303936pt;}
.ws6c{word-spacing:1.325312pt;}
.wsc6{word-spacing:1.368064pt;}
.ws6e{word-spacing:1.372339pt;}
.wsc1{word-spacing:1.373408pt;}
.wsc0{word-spacing:1.378752pt;}
.ws28{word-spacing:1.381481pt;}
.wsc4{word-spacing:1.389440pt;}
.ws6b{word-spacing:1.474944pt;}
.wsa4{word-spacing:1.487748pt;}
.ws168{word-spacing:1.530266pt;}
.ws9e{word-spacing:1.647150pt;}
.wsb6{word-spacing:1.694048pt;}
.wsa3{word-spacing:1.700284pt;}
.ws123{word-spacing:1.732800pt;}
.ws4f{word-spacing:1.753418pt;}
.ws124{word-spacing:1.756800pt;}
.ws125{word-spacing:1.771200pt;}
.wsb5{word-spacing:1.790240pt;}
.wsf0{word-spacing:1.912819pt;}
.ws155{word-spacing:1.965953pt;}
.ws11e{word-spacing:1.998656pt;}
.ws11{word-spacing:2.019087pt;}
.ws116{word-spacing:2.030720pt;}
.ws1b{word-spacing:2.072221pt;}
.ws11d{word-spacing:2.073472pt;}
.ws115{word-spacing:2.126912pt;}
.ws9d{word-spacing:2.178489pt;}
.wsac{word-spacing:2.231622pt;}
.ws133{word-spacing:2.356704pt;}
.ws111{word-spacing:2.554432pt;}
.wsd8{word-spacing:2.570464pt;}
.ws110{word-spacing:2.613216pt;}
.ws134{word-spacing:2.645280pt;}
.ws97{word-spacing:2.646349pt;}
.wsa0{word-spacing:2.709827pt;}
.ws9f{word-spacing:2.762961pt;}
.ws2c{word-spacing:2.816095pt;}
.ws95{word-spacing:2.847283pt;}
.ws10f{word-spacing:2.864384pt;}
.ws76{word-spacing:2.890035pt;}
.ws96{word-spacing:2.907136pt;}
.wsba{word-spacing:2.955232pt;}
.ws156{word-spacing:2.975497pt;}
.wsb9{word-spacing:2.976608pt;}
.ws151{word-spacing:3.014400pt;}
.wsa8{word-spacing:3.028630pt;}
.ws150{word-spacing:3.033600pt;}
.ws14f{word-spacing:3.057600pt;}
.ws39{word-spacing:3.081764pt;}
.wsab{word-spacing:3.134898pt;}
.ws78{word-spacing:3.206400pt;}
.ws79{word-spacing:3.232051pt;}
.ws10d{word-spacing:3.238464pt;}
.ws12e{word-spacing:3.294300pt;}
.wsb1{word-spacing:3.299635pt;}
.wsc9{word-spacing:3.307936pt;}
.ws36{word-spacing:3.347434pt;}
.ws10e{word-spacing:3.356032pt;}
.ws186{word-spacing:3.490918pt;}
.wsca{word-spacing:3.494976pt;}
.ws29{word-spacing:3.506835pt;}
.ws2a{word-spacing:3.559969pt;}
.wsb0{word-spacing:3.586560pt;}
.ws10{word-spacing:3.613103pt;}
.ws15f{word-spacing:3.730022pt;}
.wscf{word-spacing:3.906464pt;}
.wsbc{word-spacing:3.938528pt;}
.ws112{word-spacing:3.949216pt;}
.wsbd{word-spacing:4.029376pt;}
.ws113{word-spacing:4.040064pt;}
.ws13c{word-spacing:4.114880pt;}
.ws94{word-spacing:4.146944pt;}
.ws17a{word-spacing:4.160410pt;}
.ws13d{word-spacing:4.195040pt;}
.ws104{word-spacing:4.250709pt;}
.wsce{word-spacing:4.253824pt;}
.ws175{word-spacing:4.256051pt;}
.ws93{word-spacing:4.258099pt;}
.wse7{word-spacing:4.310400pt;}
.ws33{word-spacing:4.356977pt;}
.wsdd{word-spacing:4.515680pt;}
.wsa9{word-spacing:4.516379pt;}
.wse8{word-spacing:4.516800pt;}
.ws13e{word-spacing:4.531712pt;}
.ws12a{word-spacing:4.558432pt;}
.wsaa{word-spacing:4.569513pt;}
.ws129{word-spacing:4.574464pt;}
.ws167{word-spacing:4.638618pt;}
.wsde{word-spacing:4.649280pt;}
.wse9{word-spacing:4.660800pt;}
.ws18a{word-spacing:4.780774pt;}
.ws15d{word-spacing:4.782080pt;}
.ws179{word-spacing:4.782857pt;}
.ws109{word-spacing:4.825632pt;}
.wsa2{word-spacing:4.941450pt;}
.ws8c{word-spacing:5.010534pt;}
.ws8d{word-spacing:5.036186pt;}
.ws15a{word-spacing:5.069005pt;}
.ws27{word-spacing:5.153985pt;}
.ws14{word-spacing:5.307978pt;}
.ws15{word-spacing:5.313387pt;}
.ws159{word-spacing:5.355930pt;}
.wsf1{word-spacing:5.472788pt;}
.wsd5{word-spacing:5.477600pt;}
.ws153{word-spacing:5.525922pt;}
.wsb8{word-spacing:5.573792pt;}
.wsb7{word-spacing:5.787552pt;}
.wsbf{word-spacing:6.108192pt;}
.ws101{word-spacing:6.163529pt;}
.wsbe{word-spacing:6.252480pt;}
.ws11f{word-spacing:6.450208pt;}
.ws67{word-spacing:6.469120pt;}
.ws34{word-spacing:6.482332pt;}
.ws51{word-spacing:6.535466pt;}
.ws120{word-spacing:6.541056pt;}
.ws108{word-spacing:6.694867pt;}
.ws35{word-spacing:6.854269pt;}
.ws85{word-spacing:7.173786pt;}
.ws84{word-spacing:7.190886pt;}
.ws100{word-spacing:7.279340pt;}
.ws10c{word-spacing:7.775520pt;}
.ws14e{word-spacing:8.080128pt;}
.wsb4{word-spacing:8.086400pt;}
.ws10a{word-spacing:8.096160pt;}
.ws14d{word-spacing:8.144256pt;}
.ws10b{word-spacing:8.192352pt;}
.wse0{word-spacing:8.427488pt;}
.wsdf{word-spacing:8.454208pt;}
.ws22{word-spacing:9.032757pt;}
.ws82{word-spacing:9.277184pt;}
.ws83{word-spacing:9.525146pt;}
.ws7f{word-spacing:9.785933pt;}
.ws178{word-spacing:9.803264pt;}
.ws16{word-spacing:9.989167pt;}
.ws81{word-spacing:9.991142pt;}
.ws7e{word-spacing:10.059546pt;}
.ws80{word-spacing:10.183526pt;}
.wsf4{word-spacing:11.030016pt;}
.wsf5{word-spacing:11.051392pt;}
.ws16c{word-spacing:11.811738pt;}
.ws166{word-spacing:11.859558pt;}
.ws185{word-spacing:11.869850pt;}
.ws16f{word-spacing:11.901235pt;}
.ws180{word-spacing:11.904333pt;}
.ws174{word-spacing:11.906031pt;}
.ws162{word-spacing:11.906569pt;}
.ws161{word-spacing:11.907379pt;}
.ws171{word-spacing:11.907951pt;}
.ws172{word-spacing:12.098662pt;}
.ws17{word-spacing:12.114522pt;}
.ws182{word-spacing:12.289946pt;}
.ws37{word-spacing:13.230333pt;}
.wsdc{word-spacing:14.482240pt;}
.wsdb{word-spacing:14.503616pt;}
.wsf3{word-spacing:14.744096pt;}
.ws1c{word-spacing:14.835013pt;}
.ws42{word-spacing:15.899106pt;}
.ws177{word-spacing:16.498176pt;}
.ws17c{word-spacing:16.680815pt;}
.ws169{word-spacing:16.685457pt;}
.ws16d{word-spacing:16.685756pt;}
.ws16b{word-spacing:16.686003pt;}
.ws164{word-spacing:16.689459pt;}
.ws188{word-spacing:18.506650pt;}
.ws146{word-spacing:19.377344pt;}
.ws17d{word-spacing:19.645721pt;}
.ws17f{word-spacing:19.654349pt;}
.ws17e{word-spacing:31.561728pt;}
.ws1f{word-spacing:382.947365pt;}
.ws75{word-spacing:466.980096pt;}
.ws4b{word-spacing:638.562810pt;}
.ws6a{word-spacing:698.405222pt;}
.ws70{word-spacing:746.278912pt;}
.ws44{word-spacing:763.693066pt;}
.ws50{word-spacing:826.869233pt;}
.ws47{word-spacing:888.345117pt;}
.ws48{word-spacing:918.046948pt;}
.ws3f{word-spacing:942.647929pt;}
.ws49{word-spacing:966.451901pt;}
._3{margin-left:-12.337766pt;}
._1f{margin-left:-6.863236pt;}
._4{margin-left:-5.894103pt;}
._13{margin-left:-4.782048pt;}
._2{margin-left:-3.538739pt;}
._7{margin-left:-2.019288pt;}
._1{margin-left:-0.944910pt;}
._8{width:0.969929pt;}
._5{width:2.660789pt;}
._0{width:9.035708pt;}
._d{width:10.626800pt;}
._11{width:12.167655pt;}
._c{width:14.187144pt;}
._f{width:15.568223pt;}
._6{width:16.737280pt;}
._9{width:18.596853pt;}
._1e{width:19.957104pt;}
._1c{width:21.059646pt;}
._10{width:22.103689pt;}
._17{width:23.409036pt;}
._b{width:25.173953pt;}
._19{width:26.181381pt;}
._14{width:28.214083pt;}
._a{width:29.808099pt;}
._18{width:32.730462pt;}
._22{width:36.487270pt;}
._12{width:38.404286pt;}
._1b{width:40.377983pt;}
._21{width:41.493639pt;}
._23{width:54.993920pt;}
._16{width:687.614618pt;}
._15{width:1130.064212pt;}
._20{width:1347.152171pt;}
._e{width:1368.405771pt;}
._1d{width:1412.095301pt;}
._1a{width:1413.614254pt;}
.fse{font-size:25.600000pt;}
.fs15{font-size:29.440000pt;}
.fsf{font-size:29.952000pt;}
.fs13{font-size:32.000000pt;}
.fsb{font-size:34.048000pt;}
.fs5{font-size:37.193600pt;}
.fs8{font-size:37.276537pt;}
.fsc{font-size:38.400000pt;}
.fs4{font-size:40.381867pt;}
.fs7{font-size:41.988267pt;}
.fs9{font-size:42.507200pt;}
.fs10{font-size:42.560000pt;}
.fsd{font-size:42.752000pt;}
.fs6{font-size:47.820800pt;}
.fs11{font-size:48.000000pt;}
.fs0{font-size:50.395200pt;}
.fs2{font-size:53.133867pt;}
.fs12{font-size:53.440000pt;}
.fs1{font-size:53.754880pt;}
.fsa{font-size:55.365867pt;}
.fs14{font-size:64.000000pt;}
.fs3{font-size:95.641600pt;}
.y14f{bottom:-553.026267pt;}
.y170{bottom:-522.385931pt;}
.y1a6{bottom:-522.190267pt;}
.y16f{bottom:-504.466163pt;}
.y1bc{bottom:-502.910667pt;}
.y1bb{bottom:-485.550267pt;}
.y16e{bottom:-478.466267pt;}
.y1ba{bottom:-463.869669pt;}
.y16d{bottom:-444.866667pt;}
.y16b{bottom:-427.506267pt;}
.y16c{bottom:-424.146267pt;}
.y16a{bottom:-405.746003pt;}
.y1b9{bottom:-205.550061pt;}
.y1b8{bottom:-187.549675pt;}
.y1b7{bottom:-169.549747pt;}
.y179{bottom:-163.790267pt;}
.y1b6{bottom:-151.549819pt;}
.yf2{bottom:-143.427600pt;}
.y1b5{bottom:-133.549891pt;}
.y19a{bottom:-133.149931pt;}
.y1b4{bottom:-115.549963pt;}
.y199{bottom:-115.230163pt;}
.y169{bottom:-112.626267pt;}
.y167{bottom:-112.626195pt;}
.y168{bottom:-109.266267pt;}
.y1b3{bottom:-97.550035pt;}
.y166{bottom:-94.626267pt;}
.y164{bottom:-94.626035pt;}
.y165{bottom:-91.266267pt;}
.y198{bottom:-89.230267pt;}
.y1b2{bottom:-79.630267pt;}
.y163{bottom:-76.706267pt;}
.y122{bottom:-72.787600pt;}
.y131{bottom:-72.445467pt;}
.y1ca{bottom:-60.080267pt;}
.y197{bottom:-55.630667pt;}
.ybb{bottom:-51.555093pt;}
.y1b1{bottom:-46.030667pt;}
.y162{bottom:-43.106667pt;}
.y1e0{bottom:-40.800667pt;}
.y195{bottom:-38.270267pt;}
.y121{bottom:-37.268000pt;}
.y145{bottom:-35.965467pt;}
.y143{bottom:-35.965067pt;}
.y196{bottom:-34.910267pt;}
.y144{bottom:-32.605467pt;}
.y1b0{bottom:-28.670267pt;}
.y161{bottom:-25.746267pt;}
.y1df{bottom:-23.440267pt;}
.ye3{bottom:-22.755093pt;}
.y120{bottom:-19.907600pt;}
.y142{bottom:-17.565467pt;}
.y194{bottom:-16.510003pt;}
.y1af{bottom:-6.989811pt;}
.ye2{bottom:-5.346383pt;}
.y160{bottom:-3.986123pt;}
.y1de{bottom:-1.759669pt;}
.y0{bottom:0.000000pt;}
.y11f{bottom:1.853456pt;}
.y11{bottom:3.044747pt;}
.y4{bottom:5.644850pt;}
.y141{bottom:7.154117pt;}
.y10{bottom:12.578910pt;}
.y3{bottom:18.051729pt;}
.y140{bottom:29.154029pt;}
.y2{bottom:32.990462pt;}
.y32{bottom:56.693333pt;}
.y14a{bottom:96.544000pt;}
.ye4{bottom:96.736000pt;}
.y31{bottom:105.014667pt;}
.y1a3{bottom:105.092000pt;}
.y6a{bottom:109.441333pt;}
.y214{bottom:110.532000pt;}
.y247{bottom:114.066667pt;}
.y149{bottom:114.556000pt;}
.yb9{bottom:116.673547pt;}
.y30{bottom:123.028000pt;}
.y1a2{bottom:123.104000pt;}
.y69{bottom:127.454667pt;}
.y213{bottom:127.746667pt;}
.y246{bottom:131.281333pt;}
.y92{bottom:131.758667pt;}
.y1e3{bottom:140.809333pt;}
.y2f{bottom:141.040000pt;}
.y1a1{bottom:141.116000pt;}
.y148{bottom:144.225333pt;}
.y212{bottom:144.962667pt;}
.y68{bottom:145.466667pt;}
.y91{bottom:147.778667pt;}
.y245{bottom:148.497333pt;}
.y90{bottom:149.772000pt;}
.y1e1{bottom:157.905333pt;}
.y2e{bottom:159.053333pt;}
.y1a0{bottom:159.129333pt;}
.y146{bottom:161.321333pt;}
.y211{bottom:162.177333pt;}
.y1e2{bottom:162.245333pt;}
.y67{bottom:163.478667pt;}
.y147{bottom:165.661333pt;}
.y244{bottom:165.713333pt;}
.y8e{bottom:165.792000pt;}
.y8d{bottom:167.784000pt;}
.y8f{bottom:172.605333pt;}
.y12f{bottom:173.288533pt;}
.y125{bottom:174.106667pt;}
.y2d{bottom:177.065333pt;}
.y19f{bottom:177.141333pt;}
.y1c8{bottom:177.842000pt;}
.y210{bottom:179.393333pt;}
.y66{bottom:181.492000pt;}
.y243{bottom:182.928000pt;}
.y8c{bottom:185.796000pt;}
.y123{bottom:191.202667pt;}
.y2c{bottom:195.077333pt;}
.y124{bottom:195.542667pt;}
.y20f{bottom:196.609333pt;}
.y65{bottom:199.504000pt;}
.y242{bottom:200.144000pt;}
.ye1{bottom:201.117988pt;}
.y8b{bottom:201.294667pt;}
.y19e{bottom:203.124000pt;}
.yf0{bottom:203.169333pt;}
.y8a{bottom:203.809333pt;}
.y2b{bottom:213.090667pt;}
.ye0{bottom:215.517931pt;}
.y241{bottom:217.358667pt;}
.y64{bottom:217.517333pt;}
.y20e{bottom:221.794667pt;}
.y13f{bottom:223.794533pt;}
.ydf{bottom:229.917873pt;}
.y2a{bottom:231.102667pt;}
.y19d{bottom:231.233333pt;}
.y240{bottom:234.574667pt;}
.y63{bottom:235.529333pt;}
.y15f{bottom:236.014253pt;}
.y89{bottom:236.832000pt;}
.yde{bottom:244.253687pt;}
.y13e{bottom:245.794445pt;}
.y19b{bottom:248.329333pt;}
.y29{bottom:249.116000pt;}
.y11e{bottom:249.853800pt;}
.y23f{bottom:251.790667pt;}
.y19c{bottom:252.669333pt;}
.y62{bottom:253.541333pt;}
.y15e{bottom:253.934021pt;}
.y1dd{bottom:256.559939pt;}
.y20d{bottom:256.862667pt;}
.ydd{bottom:258.653630pt;}
.y28{bottom:267.128000pt;}
.y11d{bottom:267.853728pt;}
.y177{bottom:268.266667pt;}
.y23e{bottom:269.005333pt;}
.y88{bottom:269.854667pt;}
.y61{bottom:271.554667pt;}
.y15d{bottom:271.933949pt;}
.ydc{bottom:273.053572pt;}
.y1dc{bottom:274.560325pt;}
.y193{bottom:276.609733pt;}
.y191{bottom:276.609805pt;}
.y20c{bottom:278.342667pt;}
.y192{bottom:279.969733pt;}
.y27{bottom:285.140000pt;}
.y11c{bottom:285.853656pt;}
.y23d{bottom:286.221333pt;}
.ydb{bottom:287.453515pt;}
.y87{bottom:287.868000pt;}
.y60{bottom:289.566667pt;}
.y15c{bottom:289.933877pt;}
.y20b{bottom:291.852000pt;}
.y1db{bottom:292.560253pt;}
.y190{bottom:294.609733pt;}
.y18e{bottom:294.609965pt;}
.y18f{bottom:297.969733pt;}
.y1ae{bottom:302.769805pt;}
.y26{bottom:303.153333pt;}
.yb8{bottom:303.162667pt;}
.y23c{bottom:303.437333pt;}
.y11b{bottom:303.773424pt;}
.y20a{bottom:305.361333pt;}
.y86{bottom:305.880000pt;}
.y5f{bottom:307.580000pt;}
.y15b{bottom:307.933805pt;}
.yda{bottom:308.253431pt;}
.y1da{bottom:310.560181pt;}
.y18d{bottom:312.529733pt;}
.y209{bottom:318.870667pt;}
.y23b{bottom:320.652000pt;}
.y1ad{bottom:320.770325pt;}
.y25{bottom:321.165333pt;}
.yb7{bottom:321.176000pt;}
.y11a{bottom:321.773352pt;}
.y85{bottom:323.892000pt;}
.y5d{bottom:325.592000pt;}
.y15a{bottom:325.933733pt;}
.y158{bottom:325.933805pt;}
.y1d9{bottom:328.560109pt;}
.y159{bottom:329.293733pt;}
.y5e{bottom:330.413333pt;}
.yd9{bottom:335.453323pt;}
.y23a{bottom:337.868000pt;}
.y1ac{bottom:338.770253pt;}
.y24{bottom:339.178667pt;}
.yb6{bottom:339.188000pt;}
.y119{bottom:339.773280pt;}
.y208{bottom:340.350667pt;}
.y84{bottom:341.905333pt;}
.y5c{bottom:343.604000pt;}
.y157{bottom:343.933733pt;}
.y155{bottom:343.933805pt;}
.y18c{bottom:346.129333pt;}
.y1d8{bottom:346.560037pt;}
.y156{bottom:347.293733pt;}
.yd8{bottom:349.853265pt;}
.y207{bottom:353.860000pt;}
.y239{bottom:355.082667pt;}
.y1ab{bottom:356.770181pt;}
.y23{bottom:357.190667pt;}
.yb5{bottom:357.201333pt;}
.y82{bottom:357.404000pt;}
.y118{bottom:357.773208pt;}
.y81{bottom:359.917333pt;}
.y5b{bottom:361.617333pt;}
.y154{bottom:361.933733pt;}
.y152{bottom:361.934037pt;}
.y18b{bottom:363.489733pt;}
.yd7{bottom:364.189079pt;}
.y1d7{bottom:364.559965pt;}
.y83{bottom:364.740000pt;}
.y153{bottom:365.293733pt;}
.y238{bottom:372.298667pt;}
.y1aa{bottom:374.770109pt;}
.y22{bottom:375.202667pt;}
.yb4{bottom:375.213333pt;}
.y206{bottom:375.338667pt;}
.y117{bottom:375.773136pt;}
.yd6{bottom:378.589022pt;}
.y5a{bottom:379.629333pt;}
.y151{bottom:379.853805pt;}
.y1d6{bottom:382.479733pt;}
.y18a{bottom:385.249877pt;}
.y80{bottom:388.509333pt;}
.y205{bottom:388.848000pt;}
.y237{bottom:389.514667pt;}
.y1a9{bottom:392.770037pt;}
.yd5{bottom:392.988964pt;}
.yb3{bottom:393.225333pt;}
.y116{bottom:393.773064pt;}
.y7f{bottom:397.622667pt;}
.y59{bottom:397.642667pt;}
.y150{bottom:397.853733pt;}
.y21{bottom:401.185333pt;}
.y204{bottom:402.357333pt;}
.y236{bottom:406.729333pt;}
.yd4{bottom:407.389022pt;}
.y1a8{bottom:410.689805pt;}
.y115{bottom:411.692832pt;}
.y58{bottom:415.654667pt;}
.y203{bottom:415.866667pt;}
.y1d5{bottom:416.079333pt;}
.yb2{bottom:419.208000pt;}
.yd3{bottom:421.788964pt;}
.y235{bottom:423.945333pt;}
.y1a7{bottom:428.689733pt;}
.y202{bottom:429.377333pt;}
.y114{bottom:429.692760pt;}
.y14e{bottom:431.053733pt;}
.y1d4{bottom:433.439733pt;}
.y57{bottom:433.666667pt;}
.y7e{bottom:435.845333pt;}
.yd1{bottom:436.188222pt;}
.y1c7{bottom:437.117333pt;}
.yd2{bottom:438.876907pt;}
.y234{bottom:441.160000pt;}
.y113{bottom:447.692688pt;}
.yb1{bottom:450.158667pt;}
.yd0{bottom:450.588164pt;}
.y55{bottom:451.680000pt;}
.y13d{bottom:451.794957pt;}
.y7d{bottom:453.858667pt;}
.y1d3{bottom:455.120189pt;}
.y1c5{bottom:455.129333pt;}
.y56{bottom:456.501333pt;}
.y233{bottom:458.376000pt;}
.y201{bottom:458.826667pt;}
.y1c6{bottom:459.950667pt;}
.y1a5{bottom:461.889733pt;}
.ycf{bottom:464.923979pt;}
.y112{bottom:465.692616pt;}
.yb0{bottom:468.172000pt;}
.y20{bottom:469.110667pt;}
.y54{bottom:469.692000pt;}
.y7c{bottom:471.870667pt;}
.y1c4{bottom:473.141333pt;}
.y13c{bottom:473.794869pt;}
.y232{bottom:475.592000pt;}
.y200{bottom:476.838667pt;}
.yce{bottom:482.525013pt;}
.y111{bottom:483.692544pt;}
.ycd{bottom:484.061233pt;}
.yaf{bottom:486.184000pt;}
.y52{bottom:487.704000pt;}
.ycb{bottom:489.437086pt;}
.y7b{bottom:489.884000pt;}
.y1c3{bottom:491.154667pt;}
.y53{bottom:492.526667pt;}
.y231{bottom:492.806667pt;}
.ycc{bottom:494.172907pt;}
.y1ff{bottom:494.852000pt;}
.y110{bottom:501.692472pt;}
.y1f{bottom:503.064000pt;}
.yae{bottom:504.197333pt;}
.y51{bottom:505.717333pt;}
.y7a{bottom:507.896000pt;}
.y1c2{bottom:509.166667pt;}
.y230{bottom:510.022667pt;}
.yca{bottom:512.477207pt;}
.y1fe{bottom:512.864000pt;}
.y10f{bottom:519.692400pt;}
.y10d{bottom:519.692704pt;}
.y1e{bottom:521.076000pt;}
.yad{bottom:522.209333pt;}
.y10e{bottom:523.052400pt;}
.y50{bottom:523.729333pt;}
.y78{bottom:525.908000pt;}
.yc9{bottom:526.877150pt;}
.y1c1{bottom:527.180000pt;}
.y22f{bottom:527.237333pt;}
.y176{bottom:528.996000pt;}
.y79{bottom:530.730667pt;}
.y1fd{bottom:530.876000pt;}
.y10c{bottom:537.612472pt;}
.y1d{bottom:539.089333pt;}
.yab{bottom:540.221333pt;}
.yc8{bottom:541.277092pt;}
.y4f{bottom:541.742667pt;}
.y77{bottom:543.921333pt;}
.y22e{bottom:544.453333pt;}
.yac{bottom:545.044000pt;}
.y1c0{bottom:545.192000pt;}
.y174{bottom:547.009333pt;}
.y1fc{bottom:548.889333pt;}
.y175{bottom:551.830667pt;}
.y10b{bottom:555.612400pt;}
.y109{bottom:555.612544pt;}
.yc7{bottom:555.612964pt;}
.y1c{bottom:557.101333pt;}
.yaa{bottom:558.234667pt;}
.y10a{bottom:558.972400pt;}
.y4d{bottom:559.754667pt;}
.y22d{bottom:561.669333pt;}
.y75{bottom:561.933333pt;}
.y1bf{bottom:563.204000pt;}
.y4e{bottom:564.577333pt;}
.y173{bottom:565.021333pt;}
.y76{bottom:566.756000pt;}
.y1fb{bottom:566.901333pt;}
.yc6{bottom:570.013163pt;}
.y108{bottom:573.612472pt;}
.ya8{bottom:574.254667pt;}
.y1b{bottom:575.113333pt;}
.ya7{bottom:576.246667pt;}
.y4c{bottom:577.766667pt;}
.y22c{bottom:578.884000pt;}
.y74{bottom:579.945333pt;}
.ya9{bottom:581.069333pt;}
.y1f9{bottom:584.914667pt;}
.yc5{bottom:588.636907pt;}
.y1fa{bottom:589.736000pt;}
.yc4{bottom:590.812990pt;}
.y107{bottom:591.612400pt;}
.y105{bottom:591.613208pt;}
.y1a{bottom:593.126667pt;}
.ya6{bottom:594.260000pt;}
.y1be{bottom:594.316000pt;}
.y106{bottom:594.972400pt;}
.y4b{bottom:595.780000pt;}
.y22b{bottom:596.100000pt;}
.y172{bottom:596.133333pt;}
.y73{bottom:597.958667pt;}
.yef{bottom:600.601333pt;}
.y1f8{bottom:602.926667pt;}
.y104{bottom:609.613136pt;}
.y18{bottom:611.138667pt;}
.y1bd{bottom:611.412000pt;}
.yc3{bottom:611.612990pt;}
.ya5{bottom:612.272000pt;}
.y171{bottom:613.229333pt;}
.y22a{bottom:613.314667pt;}
.y4a{bottom:613.792000pt;}
.y19{bottom:615.961333pt;}
.y72{bottom:615.970667pt;}
.yee{bottom:618.614667pt;}
.y1f7{bottom:620.938667pt;}
.y189{bottom:625.250253pt;}
.y103{bottom:627.613064pt;}
.y17{bottom:629.152000pt;}
.yc2{bottom:630.236907pt;}
.y229{bottom:630.530667pt;}
.y1a4{bottom:631.349333pt;}
.y49{bottom:631.805333pt;}
.yc1{bottom:632.413047pt;}
.y14d{bottom:633.165333pt;}
.y70{bottom:633.984000pt;}
.ya4{bottom:635.697333pt;}
.yed{bottom:636.626667pt;}
.y71{bottom:638.805333pt;}
.y1f6{bottom:638.952000pt;}
.y188{bottom:643.170021pt;}
.ya3{bottom:645.368000pt;}
.y102{bottom:645.612992pt;}
.y16{bottom:647.164000pt;}
.y228{bottom:647.746667pt;}
.y48{bottom:649.817333pt;}
.y6f{bottom:651.996000pt;}
.yc0{bottom:653.212964pt;}
.y1f5{bottom:656.964000pt;}
.y187{bottom:661.169949pt;}
.y101{bottom:663.532760pt;}
.y227{bottom:664.961333pt;}
.y15{bottom:665.176000pt;}
.ybf{bottom:667.613118pt;}
.y47{bottom:667.829333pt;}
.y6e{bottom:670.008000pt;}
.ya2{bottom:671.084000pt;}
.y1f4{bottom:674.977333pt;}
.y186{bottom:679.169877pt;}
.y100{bottom:681.532688pt;}
.y226{bottom:682.177333pt;}
.y14{bottom:683.189333pt;}
.y46{bottom:685.842667pt;}
.ybe{bottom:686.172907pt;}
.y6d{bottom:688.021333pt;}
.ybd{bottom:688.348990pt;}
.ya1{bottom:689.097333pt;}
.y13b{bottom:692.515437pt;}
.y185{bottom:697.169805pt;}
.y225{bottom:699.392000pt;}
.yff{bottom:699.532616pt;}
.y1f3{bottom:700.958667pt;}
.y13{bottom:701.201333pt;}
.y45{bottom:703.854667pt;}
.ya0{bottom:707.109333pt;}
.yec{bottom:708.677333pt;}
.ybc{bottom:709.148907pt;}
.y13a{bottom:710.515365pt;}
.y6c{bottom:714.004000pt;}
.y184{bottom:715.169733pt;}
.y182{bottom:715.169805pt;}
.y224{bottom:716.608000pt;}
.yfe{bottom:717.532544pt;}
.y183{bottom:718.529733pt;}
.y12{bottom:719.214667pt;}
.y44{bottom:721.868000pt;}
.y9e{bottom:722.636000pt;}
.y9f{bottom:723.129333pt;}
.y9d{bottom:725.122667pt;}
.y139{bottom:728.515293pt;}
.y1f2{bottom:731.909333pt;}
.y181{bottom:733.169733pt;}
.y17f{bottom:733.169805pt;}
.y223{bottom:733.824000pt;}
.yfd{bottom:735.532472pt;}
.yba{bottom:735.708907pt;}
.y180{bottom:736.529733pt;}
.y43{bottom:739.880000pt;}
.yeb{bottom:744.701333pt;}
.y6b{bottom:744.954667pt;}
.y138{bottom:746.515221pt;}
.y1f1{bottom:749.922667pt;}
.yf{bottom:750.709382pt;}
.y222{bottom:751.038667pt;}
.y17e{bottom:751.169733pt;}
.y17c{bottom:751.170037pt;}
.ye{bottom:751.390667pt;}
.yfc{bottom:753.532400pt;}
.yfa{bottom:753.532472pt;}
.y17d{bottom:754.529733pt;}
.y42{bottom:755.406667pt;}
.yfb{bottom:756.892400pt;}
.y41{bottom:757.892000pt;}
.y9c{bottom:758.145333pt;}
.yea{bottom:762.714667pt;}
.y137{bottom:764.515149pt;}
.y1d2{bottom:764.879805pt;}
.y1f0{bottom:767.934667pt;}
.y221{bottom:768.254667pt;}
.y17b{bottom:769.089805pt;}
.yf9{bottom:771.532400pt;}
.yf7{bottom:771.532632pt;}
.yf8{bottom:774.892400pt;}
.y40{bottom:775.905333pt;}
.ye9{bottom:780.726667pt;}
.y136{bottom:782.515077pt;}
.y1d1{bottom:782.880325pt;}
.y220{bottom:785.469333pt;}
.y1ef{bottom:785.948000pt;}
.yd{bottom:786.062667pt;}
.y17a{bottom:787.089733pt;}
.yf6{bottom:789.452400pt;}
.yf4{bottom:789.452472pt;}
.y9b{bottom:791.168000pt;}
.yf5{bottom:792.812400pt;}
.y3f{bottom:793.917333pt;}
.y135{bottom:800.515005pt;}
.y1d0{bottom:800.880253pt;}
.yc{bottom:802.202667pt;}
.y21f{bottom:802.685333pt;}
.y1ee{bottom:803.960000pt;}
.yf3{bottom:807.452400pt;}
.y24a{bottom:807.910667pt;}
.y3e{bottom:811.930667pt;}
.y134{bottom:818.514933pt;}
.y1cf{bottom:818.880181pt;}
.y21e{bottom:819.901333pt;}
.y178{bottom:820.289733pt;}
.y1ed{bottom:821.972000pt;}
.yb{bottom:822.681333pt;}
.y9a{bottom:824.190667pt;}
.y249{bottom:825.126667pt;}
.y12e{bottom:827.046667pt;}
.y3d{bottom:829.942667pt;}
.y1ce{bottom:836.880109pt;}
.y21d{bottom:837.116000pt;}
.ya{bottom:838.821333pt;}
.y1ec{bottom:839.985333pt;}
.yf1{bottom:840.652400pt;}
.y248{bottom:842.341333pt;}
.y133{bottom:844.434669pt;}
.y12c{bottom:845.060000pt;}
.y3c{bottom:847.954667pt;}
.y12d{bottom:849.881333pt;}
.ye8{bottom:852.777333pt;}
.y21c{bottom:854.332000pt;}
.y1cd{bottom:854.880037pt;}
.y99{bottom:857.214667pt;}
.y1eb{bottom:857.997333pt;}
.y9{bottom:858.590667pt;}
.y12b{bottom:863.072000pt;}
.y3b{bottom:865.968000pt;}
.y21b{bottom:871.546667pt;}
.y1cc{bottom:872.799805pt;}
.y97{bottom:873.234667pt;}
.y96{bottom:875.226667pt;}
.y1ea{bottom:876.010667pt;}
.y132{bottom:878.434533pt;}
.y98{bottom:880.048000pt;}
.y12a{bottom:881.084000pt;}
.y3a{bottom:883.980000pt;}
.y21a{bottom:888.762667pt;}
.y14c{bottom:888.802667pt;}
.y1cb{bottom:890.799733pt;}
.y1e9{bottom:894.022667pt;}
.y8{bottom:898.178667pt;}
.y129{bottom:899.097333pt;}
.y39{bottom:901.993333pt;}
.y219{bottom:905.978667pt;}
.y95{bottom:908.249333pt;}
.y130{bottom:911.634533pt;}
.y1e7{bottom:912.034667pt;}
.y1e8{bottom:916.857333pt;}
.y128{bottom:917.109333pt;}
.y38{bottom:920.005333pt;}
.y218{bottom:923.193333pt;}
.y1c9{bottom:923.999733pt;}
.y7{bottom:925.198667pt;}
.y1e6{bottom:930.048000pt;}
.y127{bottom:935.122667pt;}
.y37{bottom:938.017333pt;}
.y217{bottom:940.409333pt;}
.y94{bottom:941.272000pt;}
.ye7{bottom:942.840000pt;}
.y1e5{bottom:948.060000pt;}
.y6{bottom:952.217333pt;}
.y36{bottom:956.030667pt;}
.y216{bottom:957.624000pt;}
.ye6{bottom:960.852000pt;}
.y126{bottom:961.105333pt;}
.y93{bottom:964.512000pt;}
.y1e4{bottom:966.073333pt;}
.y35{bottom:974.042667pt;}
.y215{bottom:974.840000pt;}
.y5{bottom:977.906667pt;}
.ye5{bottom:978.865333pt;}
.y34{bottom:992.056000pt;}
.y14b{bottom:996.877333pt;}
.y1{bottom:1011.514667pt;}
.y33{bottom:1038.548000pt;}
.h3e{height:20.344899pt;}
.h32{height:20.456125pt;}
.h41{height:21.490625pt;}
.h10{height:22.088881pt;}
.h2e{height:22.157483pt;}
.ha{height:22.673858pt;}
.h39{height:23.359375pt;}
.h23{height:24.970750pt;}
.h17{height:25.132319pt;}
.h24{height:25.593750pt;}
.h8{height:27.076941pt;}
.h2f{height:27.276698pt;}
.h2c{height:27.277125pt;}
.h34{height:28.162500pt;}
.h2d{height:28.301125pt;}
.h14{height:29.064225pt;}
.h12{height:29.397999pt;}
.hc{height:29.433775pt;}
.h19{height:29.599908pt;}
.h26{height:30.164375pt;}
.hb{height:30.399505pt;}
.h33{height:30.769750pt;}
.h11{height:31.157778pt;}
.h25{height:31.208125pt;}
.h31{height:31.210864pt;}
.h36{height:31.213438pt;}
.h37{height:31.992188pt;}
.h45{height:33.474560pt;}
.h4d{height:33.713664pt;}
.h4b{height:34.144051pt;}
.h4c{height:34.191872pt;}
.h3d{height:34.430976pt;}
.h9{height:34.813542pt;}
.h3{height:35.024664pt;}
.h44{height:35.039062pt;}
.h46{height:35.052646pt;}
.h3a{height:35.203125pt;}
.h4{height:36.445809pt;}
.h16{height:37.193707pt;}
.h49{height:37.704899pt;}
.hf{height:37.937581pt;}
.hd{height:38.256384pt;}
.h40{height:38.462187pt;}
.he{height:38.681455pt;}
.h27{height:38.868375pt;}
.h5{height:38.947124pt;}
.h38{height:39.010156pt;}
.h3c{height:39.192812pt;}
.h28{height:39.912125pt;}
.h29{height:40.659684pt;}
.h2a{height:40.660375pt;}
.h1a{height:41.374214pt;}
.h13{height:41.379548pt;}
.h1d{height:41.524400pt;}
.h1b{height:42.084400pt;}
.h3b{height:42.656250pt;}
.h42{height:44.436941pt;}
.h2{height:45.272024pt;}
.h2b{height:47.244767pt;}
.h7{height:48.365611pt;}
.h15{height:48.683332pt;}
.h1e{height:48.688666pt;}
.h1f{height:56.656666pt;}
.h30{height:58.855698pt;}
.h6{height:68.861952pt;}
.h18{height:74.920458pt;}
.h1c{height:76.804122pt;}
.h21{height:77.364122pt;}
.h20{height:82.516400pt;}
.h22{height:165.468587pt;}
.h43{height:211.781333pt;}
.h35{height:227.489333pt;}
.h4a{height:238.254000pt;}
.h47{height:239.709333pt;}
.h48{height:267.636000pt;}
.h3f{height:634.180800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w5{width:357.236000pt;}
.w4{width:386.093867pt;}
.wa{width:417.598667pt;}
.w8{width:500.362667pt;}
.w9{width:509.089333pt;}
.w7{width:535.271333pt;}
.w6{width:556.798133pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xab{left:-117.846667pt;}
.xb2{left:-112.166667pt;}
.xb3{left:-105.526667pt;}
.xac{left:-89.526667pt;}
.xf4{left:-82.938667pt;}
.xf5{left:-54.618667pt;}
.x88{left:-43.310933pt;}
.xe2{left:-32.196000pt;}
.xcd{left:-27.083333pt;}
.xe3{left:-24.196000pt;}
.x8b{left:-20.654441pt;}
.xd2{left:-15.323333pt;}
.xbf{left:-12.537867pt;}
.xe4{left:-11.476000pt;}
.xad{left:-9.046667pt;}
.xd3{left:-7.323333pt;}
.xaf{left:-4.966667pt;}
.xe5{left:-3.476000pt;}
.xae{left:-1.046667pt;}
.x0{left:0.000000pt;}
.xce{left:1.236667pt;}
.xb0{left:4.153333pt;}
.xd4{left:5.396667pt;}
.xd5{left:13.396667pt;}
.xc0{left:15.782039pt;}
.x8{left:26.021437pt;}
.xb4{left:30.793333pt;}
.x96{left:36.817067pt;}
.xb5{left:38.793333pt;}
.x2{left:52.456952pt;}
.xe1{left:60.284000pt;}
.xb6{left:69.833333pt;}
.xb8{left:74.153333pt;}
.xb7{left:76.473333pt;}
.xe8{left:85.804000pt;}
.x8e{left:91.792695pt;}
.xe9{left:93.804000pt;}
.x3{left:100.852000pt;}
.x1{left:102.046667pt;}
.xea{left:104.924000pt;}
.x6{left:108.542667pt;}
.x4{left:109.606667pt;}
.xd7{left:110.676667pt;}
.xeb{left:112.844000pt;}
.xa5{left:114.752000pt;}
.xbe{left:118.452533pt;}
.xd8{left:121.796667pt;}
.x8f{left:128.337067pt;}
.x5{left:129.929333pt;}
.xa6{left:132.624000pt;}
.xbc{left:134.117333pt;}
.x105{left:137.950667pt;}
.xef{left:142.306667pt;}
.xdc{left:144.865333pt;}
.xa7{left:146.146667pt;}
.x27{left:148.910667pt;}
.x56{left:150.496000pt;}
.x23{left:151.408000pt;}
.xdd{left:152.565333pt;}
.x28{left:154.854667pt;}
.x24{left:157.352000pt;}
.x70{left:158.445333pt;}
.x57{left:159.657333pt;}
.x8c{left:161.553598pt;}
.x53{left:165.637333pt;}
.x9{left:168.152000pt;}
.x54{left:172.704000pt;}
.x20{left:176.572000pt;}
.x14{left:178.253333pt;}
.x7b{left:180.097333pt;}
.xe{left:181.853333pt;}
.x92{left:185.489067pt;}
.xf{left:188.494667pt;}
.x21{left:189.856000pt;}
.x89{left:191.249067pt;}
.x7c{left:193.381333pt;}
.x17{left:195.229333pt;}
.xec{left:196.154667pt;}
.x93{left:198.993067pt;}
.x71{left:202.537333pt;}
.x87{left:203.802667pt;}
.xc{left:204.946667pt;}
.x101{left:206.320000pt;}
.x102{left:209.750667pt;}
.xd{left:210.890667pt;}
.x94{left:212.049067pt;}
.x100{left:213.712000pt;}
.x8d{left:215.249067pt;}
.xaa{left:218.233333pt;}
.x8a{left:221.905067pt;}
.x10a{left:223.704000pt;}
.x2b{left:224.649333pt;}
.x91{left:226.321067pt;}
.x90{left:229.009067pt;}
.x2c{left:230.593333pt;}
.xff{left:231.989333pt;}
.xa0{left:235.072000pt;}
.xfe{left:236.365333pt;}
.x10b{left:237.545333pt;}
.xc4{left:242.182133pt;}
.x9b{left:247.001333pt;}
.x45{left:249.722667pt;}
.xa1{left:251.356000pt;}
.x46{left:253.536000pt;}
.x9c{left:255.888000pt;}
.xbd{left:262.353333pt;}
.xb9{left:265.504000pt;}
.xfc{left:266.820000pt;}
.xfd{left:270.085333pt;}
.xc2{left:274.420533pt;}
.x9d{left:275.733333pt;}
.x76{left:278.302667pt;}
.x6f{left:280.501333pt;}
.x9e{left:281.677333pt;}
.x1e{left:283.348000pt;}
.x77{left:285.369333pt;}
.x5c{left:291.134667pt;}
.x1f{left:292.364000pt;}
.x29{left:294.413333pt;}
.x35{left:296.306667pt;}
.x5d{left:298.201333pt;}
.x7d{left:300.129333pt;}
.x2a{left:307.697333pt;}
.xf2{left:308.604000pt;}
.x5f{left:311.953333pt;}
.x7e{left:313.413333pt;}
.x108{left:317.726667pt;}
.x68{left:318.772000pt;}
.xf3{left:321.069333pt;}
.x69{left:323.362667pt;}
.x74{left:327.577333pt;}
.x1a{left:330.220000pt;}
.x1b{left:336.861333pt;}
.x31{left:338.676000pt;}
.x3e{left:342.744000pt;}
.x3f{left:346.556000pt;}
.x86{left:348.620000pt;}
.x4e{left:349.546667pt;}
.x52{left:351.048000pt;}
.x32{left:351.958667pt;}
.x4f{left:353.358667pt;}
.x47{left:354.385333pt;}
.x55{left:356.514667pt;}
.x48{left:360.329333pt;}
.x6e{left:362.473333pt;}
.x75{left:374.629333pt;}
.x103{left:379.728000pt;}
.x2d{left:380.726667pt;}
.x38{left:382.846667pt;}
.x60{left:385.386667pt;}
.x39{left:386.658667pt;}
.x64{left:392.642667pt;}
.x2e{left:394.010667pt;}
.x61{left:398.014667pt;}
.x65{left:400.596000pt;}
.x49{left:402.845333pt;}
.xda{left:404.874667pt;}
.x6b{left:406.382667pt;}
.xa8{left:407.388000pt;}
.x4a{left:408.789333pt;}
.x58{left:411.996000pt;}
.xdb{left:413.105333pt;}
.x10{left:415.402667pt;}
.xe6{left:416.524000pt;}
.x59{left:417.940000pt;}
.x95{left:419.281067pt;}
.x11{left:422.044000pt;}
.x12{left:425.305333pt;}
.xd9{left:429.796667pt;}
.x13{left:431.948000pt;}
.x4d{left:433.548000pt;}
.x7f{left:435.958667pt;}
.xe7{left:437.164000pt;}
.xb1{left:442.073200pt;}
.x80{left:445.226667pt;}
.x5a{left:447.173333pt;}
.x1c{left:448.541333pt;}
.xd6{left:454.036667pt;}
.x5b{left:456.334667pt;}
.x5e{left:458.097333pt;}
.xcb{left:459.209333pt;}
.x6c{left:460.332000pt;}
.x1d{left:461.825333pt;}
.xcc{left:465.153333pt;}
.x78{left:467.829333pt;}
.x6d{left:472.798667pt;}
.xd0{left:476.756667pt;}
.xf8{left:480.017333pt;}
.xf1{left:482.479424pt;}
.xd1{left:484.676667pt;}
.x2f{left:488.470667pt;}
.xdf{left:491.004000pt;}
.xf9{left:493.301333pt;}
.x30{left:494.414667pt;}
.xfa{left:496.612000pt;}
.xc5{left:497.590667pt;}
.xe0{left:499.004000pt;}
.x3a{left:502.842667pt;}
.xcf{left:507.876667pt;}
.x40{left:509.562667pt;}
.x3b{left:516.126667pt;}
.xa9{left:519.366667pt;}
.x3c{left:522.901333pt;}
.x83{left:526.529333pt;}
.x106{left:527.497333pt;}
.x41{left:529.733333pt;}
.x107{left:530.929333pt;}
.xf0{left:533.280112pt;}
.x3d{left:536.184000pt;}
.x84{left:542.828000pt;}
.x4b{left:547.318667pt;}
.x42{left:553.117333pt;}
.x85{left:555.446667pt;}
.x43{left:559.061333pt;}
.xba{left:559.961333pt;}
.xde{left:562.325333pt;}
.x25{left:564.376000pt;}
.xc3{left:566.179936pt;}
.xc1{left:569.299586pt;}
.x26{left:570.321333pt;}
.x44{left:572.078667pt;}
.x4c{left:573.072000pt;}
.x18{left:578.749333pt;}
.xc6{left:582.050667pt;}
.x19{left:585.392000pt;}
.xa{left:587.110667pt;}
.xfb{left:588.440000pt;}
.xb{left:590.922667pt;}
.x104{left:593.560000pt;}
.x66{left:595.012000pt;}
.x109{left:599.936000pt;}
.xa2{left:601.913333pt;}
.xa3{left:605.725333pt;}
.x67{left:607.477333pt;}
.x22{left:609.768000pt;}
.x79{left:614.910667pt;}
.xc7{left:617.141333pt;}
.x99{left:618.581333pt;}
.x7{left:623.413317pt;}
.x36{left:625.949333pt;}
.x9a{left:627.468000pt;}
.xbb{left:630.806667pt;}
.x62{left:632.278667pt;}
.x97{left:633.709333pt;}
.x63{left:637.990667pt;}
.x37{left:639.233333pt;}
.xf6{left:642.468000pt;}
.x33{left:644.450667pt;}
.x34{left:648.262667pt;}
.x98{left:650.114667pt;}
.xf7{left:651.113333pt;}
.xc9{left:652.161333pt;}
.xed{left:654.414667pt;}
.x72{left:656.146667pt;}
.x9f{left:660.934667pt;}
.xc8{left:662.114667pt;}
.x7a{left:665.497333pt;}
.xa4{left:667.698667pt;}
.xca{left:668.714667pt;}
.x73{left:669.766667pt;}
.x6a{left:671.229333pt;}
.xee{left:672.861333pt;}
.x50{left:677.461333pt;}
.x15{left:679.600000pt;}
.x81{left:681.272000pt;}
.x82{left:685.085333pt;}
.x16{left:686.241333pt;}
.x51{left:689.926667pt;}
}




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