
    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_36f60287b1518a437e376aa1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e327d1b311c5ee7d49322da7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b99371574a6a24bcd3f6d7d9.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_ca6370452657b2de9db57934.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.894000;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_8b984260fe620eb3a98abf94.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943000;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_929080f3d6a863173ac3ef8d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;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_a75a33f2112bc51e69eb902f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.803000;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_7a2f53bbf0b85b50afa39d5d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_22fd4f2f24d9815df2ce473f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.200195;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_b81aaba88f5a57fc85ab01ac.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.206055;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_29fcb5572629ebddbf30fb82.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.736816;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_3150f24c9c3c9f860fe87fbe.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.909180;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_340196782561c7da9f62cfc1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.727539;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_8659bffb5844c2ccc15a142f.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_4da06aa3ab8c3dd15d051202.woff2')format("woff");}.fff{font-family:fff;line-height:1.200195;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_663f8fb58a3f132a34a07bda.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.206055;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_3150f24c9c3c9f860fe87fbe.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.909180;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_340196782561c7da9f62cfc1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.727539;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_df2f815c18ab6db7f1c0cb01.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.736816;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_0edd213f5e5acdeeaad4b21a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.493000;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_64f9613d0550eb08e6e795a9.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_1f0b5119c7c196eaa4611094.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.200195;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_fd5020f96c1e5e55fe4abcb8.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.206055;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_3150f24c9c3c9f860fe87fbe.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.909180;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_340196782561c7da9f62cfc1.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.727539;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_b752b20e30da64088e4e1d94.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.736816;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_c4e50b69672ddd2ec00e563f.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_f6cec81f0cae4a2dd75b1064.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.200195;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_81b88d818a35346fd15f8445.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.206055;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_94b187701f2a5af49221eb55.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.736816;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_3150f24c9c3c9f860fe87fbe.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.909180;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_e5ec542f64035d342ddf4145.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_37c8bb92bdc4ec8795039c5e.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.200195;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_b33b8bdbe3a59daf240e39c0.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.206055;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_8babcf3291d6e94b7591183d.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.909180;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_98ae17fc1a29327cf14c0128.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.736816;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_0095852599722785f957b78a.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.727539;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_f2ff9090ab69d40c7dc84a84.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_4237d514e175555e6fdd28f0.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.200195;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_cf82e76b67473df9da58669c.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.206055;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_3150f24c9c3c9f860fe87fbe.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.909180;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_f2ff9090ab69d40c7dc84a84.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_4237d514e175555e6fdd28f0.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.200195;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_cf82e76b67473df9da58669c.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.206055;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_3150f24c9c3c9f860fe87fbe.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.909180;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_8659bffb5844c2ccc15a142f.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_a98360bee01a32d2afc2a09f.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.200195;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_0954c51d28e4f8119cf81b31.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.206055;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_3150f24c9c3c9f860fe87fbe.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.909180;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_29fcb5572629ebddbf30fb82.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.736816;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_340196782561c7da9f62cfc1.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.727539;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_3e19a72a27f4084efb0608e0.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_00189268315e11e3d2807219.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.200195;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_1f5ae276e2097306ee2acdfa.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.206055;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_340196782561c7da9f62cfc1.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.727539;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_29fcb5572629ebddbf30fb82.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.736816;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_3150f24c9c3c9f860fe87fbe.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.909180;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:ff3a;src:url('chunks/assets/font_a7e48ab3f063ddb9bba8bd80.woff2')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_8fdc1baf58e60f4bf33614ba.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.200195;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:ff3c;src:url('chunks/assets/font_fe0eb71a3f303bd108ae13ac.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.206055;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:ff3d;src:url('chunks/assets/font_340196782561c7da9f62cfc1.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.727539;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:ff3e;src:url('chunks/assets/font_b752b20e30da64088e4e1d94.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.736816;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:ff3f;src:url('chunks/assets/font_edccfa30e64f4d3af224c6d5.woff2')format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url('chunks/assets/font_3150f24c9c3c9f860fe87fbe.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.909180;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:ff41;src:url('chunks/assets/font_478d2a3061f30e238fa25cbd.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.938477;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:ff42;src:url('chunks/assets/font_72c47217f7dafa67d5639934.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.740234;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:ff43;src:url('chunks/assets/font_da08bbf742e6a1512a55169f.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.926758;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:ff44;src:url('chunks/assets/font_a7e48ab3f063ddb9bba8bd80.woff2')format("woff");}.ff44{font-family:ff44;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:ff45;src:url('chunks/assets/font_8fdc1baf58e60f4bf33614ba.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.200195;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:ff46;src:url('chunks/assets/font_fe0eb71a3f303bd108ae13ac.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.206055;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:ff47;src:url('chunks/assets/font_340196782561c7da9f62cfc1.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.727539;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:ff48;src:url('chunks/assets/font_b752b20e30da64088e4e1d94.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.736816;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:ff49;src:url('chunks/assets/font_edccfa30e64f4d3af224c6d5.woff2')format("woff");}.ff49{font-family:ff49;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:ff4a;src:url('chunks/assets/font_3150f24c9c3c9f860fe87fbe.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.909180;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:ff4b;src:url('chunks/assets/font_478d2a3061f30e238fa25cbd.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.938477;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:ff4c;src:url('chunks/assets/font_72c47217f7dafa67d5639934.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.740234;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:ff4d;src:url('chunks/assets/font_da08bbf742e6a1512a55169f.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.926758;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:ff4e;src:url('chunks/assets/font_8ce26a261b3c3e9cc9e97e6f.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_b56f0902d8288f5cb34bdc9d.woff2')format("woff");}.ff4f{font-family:ff4f;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:ff50;src:url('chunks/assets/font_0318de2128217b44285d7fcd.woff2')format("woff");}.ff50{font-family:ff50;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;}
.m2f{transform:matrix(0.000000,-0.249588,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249588,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249588,0.250000,0.000000,0,0);}
.m2a{transform:matrix(0.000000,-0.249807,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249807,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249807,0.250000,0.000000,0,0);}
.m2d{transform:matrix(0.176474,-0.176474,0.176777,0.176777,0,0);-ms-transform:matrix(0.176474,-0.176474,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176474,-0.176474,0.176777,0.176777,0,0);}
.m32{transform:matrix(0.176474,-0.176474,0.176777,0.176777,0,0);-ms-transform:matrix(0.176474,-0.176474,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176474,-0.176474,0.176777,0.176777,0,0);}
.m3{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);}
.m22{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);}
.m28{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);}
.m8{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);}
.m1f{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);}
.m21{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);}
.m1e{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);}
.m1b{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);}
.m27{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);}
.md{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);}
.m2{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);}
.m11{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);}
.m34{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);}
.m5{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);}
.m6{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);}
.m15{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);}
.m1c{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);}
.m14{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);}
.me{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);}
.m31{transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249807,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);}
.m18{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);}
.m24{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);}
.mb{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);}
.m26{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.mf{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);}
.m7{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);}
.m13{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);}
.m25{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);}
.m16{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);}
.m10{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);}
.m19{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m1d{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m12{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.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);}
.ma{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v5{vertical-align:-15.120000px;}
.v8{vertical-align:-13.608000px;}
.v3{vertical-align:-11.958000px;}
.v13{vertical-align:-8.964000px;}
.vb{vertical-align:-2.090659px;}
.vc{vertical-align:-1.082251px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:5.675782px;}
.va{vertical-align:6.872148px;}
.vd{vertical-align:8.279697px;}
.v7{vertical-align:13.608745px;}
.v4{vertical-align:15.110316px;}
.ve{vertical-align:16.200240px;}
.v6{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v11{vertical-align:24.576000px;}
.v10{vertical-align:31.500000px;}
.vf{vertical-align:40.470000px;}
.v12{vertical-align:51.072000px;}
.v14{vertical-align:64.356000px;}
.ls48{letter-spacing:-1.304604px;}
.ls12e{letter-spacing:-0.995811px;}
.ls3b{letter-spacing:-0.991980px;}
.ls12c{letter-spacing:-0.974163px;}
.ls12d{letter-spacing:-0.959731px;}
.ls12f{letter-spacing:-0.945299px;}
.ls12b{letter-spacing:-0.909219px;}
.ls11f{letter-spacing:-0.858600px;}
.lsf5{letter-spacing:-0.826523px;}
.lsf3{letter-spacing:-0.808555px;}
.lsf4{letter-spacing:-0.796576px;}
.ls130{letter-spacing:-0.786009px;}
.lsf6{letter-spacing:-0.784598px;}
.ls11b{letter-spacing:-0.761400px;}
.lsf2{letter-spacing:-0.754651px;}
.ls12a{letter-spacing:-0.724960px;}
.lse4{letter-spacing:-0.712638px;}
.ls11c{letter-spacing:-0.707400px;}
.ls123{letter-spacing:-0.696600px;}
.ls124{letter-spacing:-0.685800px;}
.ls127{letter-spacing:-0.669600px;}
.ls121{letter-spacing:-0.653400px;}
.lsf7{letter-spacing:-0.652388px;}
.lse0{letter-spacing:-0.631962px;}
.ls125{letter-spacing:-0.631800px;}
.ls120{letter-spacing:-0.615600px;}
.ls11d{letter-spacing:-0.604800px;}
.lsf1{letter-spacing:-0.601717px;}
.ls126{letter-spacing:-0.594000px;}
.lse1{letter-spacing:-0.587142px;}
.ls137{letter-spacing:-0.581139px;}
.lse8{letter-spacing:-0.578178px;}
.ls13e{letter-spacing:-0.570849px;}
.lse9{letter-spacing:-0.569214px;}
.lsec{letter-spacing:-0.555768px;}
.ls13c{letter-spacing:-0.549707px;}
.lse6{letter-spacing:-0.542322px;}
.ls11e{letter-spacing:-0.540000px;}
.lsea{letter-spacing:-0.524394px;}
.ls122{letter-spacing:-0.513000px;}
.lse5{letter-spacing:-0.510948px;}
.lse2{letter-spacing:-0.501984px;}
.lseb{letter-spacing:-0.493020px;}
.lsfe{letter-spacing:-0.482346px;}
.ls105{letter-spacing:-0.473805px;}
.ls103{letter-spacing:-0.456256px;}
.lse3{letter-spacing:-0.448200px;}
.lse7{letter-spacing:-0.425790px;}
.ls138{letter-spacing:-0.369995px;}
.ls8c{letter-spacing:-0.362524px;}
.lsc5{letter-spacing:-0.342383px;}
.lsff{letter-spacing:-0.307096px;}
.ls52{letter-spacing:-0.302400px;}
.ls38{letter-spacing:-0.288576px;}
.ls136{letter-spacing:-0.267443px;}
.ls53{letter-spacing:-0.259200px;}
.lsd3{letter-spacing:-0.234090px;}
.lsfd{letter-spacing:-0.221978px;}
.ls2e{letter-spacing:-0.204408px;}
.ls33{letter-spacing:-0.198396px;}
.ls2d{letter-spacing:-0.174348px;}
.ls59{letter-spacing:-0.168336px;}
.ls45{letter-spacing:-0.162324px;}
.lsd6{letter-spacing:-0.158416px;}
.ls57{letter-spacing:-0.150300px;}
.ls132{letter-spacing:-0.148180px;}
.ls51{letter-spacing:-0.144288px;}
.ls26{letter-spacing:-0.138276px;}
.lsd5{letter-spacing:-0.132865px;}
.ls47{letter-spacing:-0.132264px;}
.lsd2{letter-spacing:-0.127755px;}
.ls41{letter-spacing:-0.126252px;}
.lsee{letter-spacing:-0.124749px;}
.lsf9{letter-spacing:-0.122989px;}
.lscc{letter-spacing:-0.122645px;}
.ls43{letter-spacing:-0.120240px;}
.lsc6{letter-spacing:-0.117535px;}
.ls58{letter-spacing:-0.114228px;}
.lsd0{letter-spacing:-0.112424px;}
.ls37{letter-spacing:-0.108216px;}
.ls8d{letter-spacing:-0.102805px;}
.ls25{letter-spacing:-0.102204px;}
.lsdc{letter-spacing:-0.099799px;}
.lsc4{letter-spacing:-0.097094px;}
.ls2f{letter-spacing:-0.096192px;}
.lsce{letter-spacing:-0.091984px;}
.ls133{letter-spacing:-0.090353px;}
.ls3a{letter-spacing:-0.090180px;}
.lscd{letter-spacing:-0.086873px;}
.ls71{letter-spacing:-0.086573px;}
.ls2b{letter-spacing:-0.084168px;}
.ls8e{letter-spacing:-0.081162px;}
.ls27{letter-spacing:-0.078156px;}
.lsfa{letter-spacing:-0.074993px;}
.ls39{letter-spacing:-0.072144px;}
.lsd1{letter-spacing:-0.066433px;}
.ls31{letter-spacing:-0.066132px;}
.ls13a{letter-spacing:-0.061440px;}
.lsca{letter-spacing:-0.061322px;}
.ls36{letter-spacing:-0.060120px;}
.lsd4{letter-spacing:-0.056212px;}
.ls13b{letter-spacing:-0.054212px;}
.ls28{letter-spacing:-0.054108px;}
.ls101{letter-spacing:-0.050995px;}
.lsed{letter-spacing:-0.049900px;}
.ls29{letter-spacing:-0.048096px;}
.ls102{letter-spacing:-0.044996px;}
.lsdf{letter-spacing:-0.044910px;}
.ls85{letter-spacing:-0.043740px;}
.ls86{letter-spacing:-0.043286px;}
.ls32{letter-spacing:-0.042084px;}
.lsc8{letter-spacing:-0.040882px;}
.ls87{letter-spacing:-0.037876px;}
.ls54{letter-spacing:-0.037800px;}
.ls46{letter-spacing:-0.036072px;}
.lscb{letter-spacing:-0.035771px;}
.lsdb{letter-spacing:-0.034930px;}
.ls8a{letter-spacing:-0.032465px;}
.ls129{letter-spacing:-0.031770px;}
.ls2c{letter-spacing:-0.030060px;}
.ls84{letter-spacing:-0.029160px;}
.ls88{letter-spacing:-0.027054px;}
.lsf0{letter-spacing:-0.026369px;}
.lsdd{letter-spacing:-0.024950px;}
.ls42{letter-spacing:-0.024048px;}
.lscf{letter-spacing:-0.020441px;}
.lsde{letter-spacing:-0.019960px;}
.ls134{letter-spacing:-0.018071px;}
.ls35{letter-spacing:-0.018036px;}
.ls8b{letter-spacing:-0.016232px;}
.ls55{letter-spacing:-0.016200px;}
.lsfb{letter-spacing:-0.014999px;}
.ls128{letter-spacing:-0.012708px;}
.ls2a{letter-spacing:-0.012024px;}
.ls11a{letter-spacing:-0.010800px;}
.lsef{letter-spacing:-0.010548px;}
.lsd9{letter-spacing:-0.008964px;}
.ls34{letter-spacing:-0.006012px;}
.ls74{letter-spacing:-0.005411px;}
.ls30{letter-spacing:-0.005400px;}
.lsc7{letter-spacing:-0.005110px;}
.lsda{letter-spacing:-0.004990px;}
.ls24{letter-spacing:-0.004788px;}
.ls70{letter-spacing:-0.004309px;}
.lsc3{letter-spacing:-0.004070px;}
.lsd7{letter-spacing:-0.003974px;}
.ls9{letter-spacing:0.000000px;}
.ls16f{letter-spacing:0.000208px;}
.ls50{letter-spacing:0.000303px;}
.ls140{letter-spacing:0.000435px;}
.ls166{letter-spacing:0.000556px;}
.ls4{letter-spacing:0.000583px;}
.ls6f{letter-spacing:0.000606px;}
.ls146{letter-spacing:0.000683px;}
.ls16b{letter-spacing:0.000699px;}
.ls13f{letter-spacing:0.000840px;}
.ls4f{letter-spacing:0.001074px;}
.ls118{letter-spacing:0.001133px;}
.ls145{letter-spacing:0.001936px;}
.ls171{letter-spacing:0.001988px;}
.ls149{letter-spacing:0.001996px;}
.ls16c{letter-spacing:0.002053px;}
.ls167{letter-spacing:0.002074px;}
.ls148{letter-spacing:0.002177px;}
.ls165{letter-spacing:0.002271px;}
.ls4e{letter-spacing:0.002488px;}
.ls1{letter-spacing:0.002725px;}
.ls6e{letter-spacing:0.002841px;}
.ls144{letter-spacing:0.002888px;}
.ls23{letter-spacing:0.003178px;}
.ls5{letter-spacing:0.003488px;}
.ls170{letter-spacing:0.004376px;}
.lsa9{letter-spacing:0.004482px;}
.ls98{letter-spacing:0.004590px;}
.ls169{letter-spacing:0.004800px;}
.ls64{letter-spacing:0.004860px;}
.lsb2{letter-spacing:0.004990px;}
.ls143{letter-spacing:0.005282px;}
.ls15{letter-spacing:0.005400px;}
.ls6a{letter-spacing:0.005411px;}
.ls14{letter-spacing:0.006012px;}
.lsa7{letter-spacing:0.008964px;}
.ls9e{letter-spacing:0.009180px;}
.ls7f{letter-spacing:0.009720px;}
.lsb5{letter-spacing:0.009980px;}
.ls3e{letter-spacing:0.010800px;}
.ls21{letter-spacing:0.012024px;}
.lsd8{letter-spacing:0.013446px;}
.lsb1{letter-spacing:0.014970px;}
.ls97{letter-spacing:0.015331px;}
.ls4b{letter-spacing:0.016200px;}
.ls6b{letter-spacing:0.016232px;}
.lsa8{letter-spacing:0.017928px;}
.lsd{letter-spacing:0.018036px;}
.lsaf{letter-spacing:0.019960px;}
.ls19{letter-spacing:0.021600px;}
.ls79{letter-spacing:0.021643px;}
.ls9c{letter-spacing:0.022950px;}
.ls13{letter-spacing:0.024048px;}
.ls96{letter-spacing:0.025551px;}
.ls5c{letter-spacing:0.027000px;}
.ls82{letter-spacing:0.027054px;}
.ls68{letter-spacing:0.029160px;}
.ls10{letter-spacing:0.030060px;}
.ls95{letter-spacing:0.030661px;}
.ls18{letter-spacing:0.032400px;}
.ls7c{letter-spacing:0.032465px;}
.lsa1{letter-spacing:0.035766px;}
.ls94{letter-spacing:0.035771px;}
.ls1c{letter-spacing:0.036072px;}
.ls8f{letter-spacing:0.036628px;}
.ls9f{letter-spacing:0.036720px;}
.ls7a{letter-spacing:0.037876px;}
.ls61{letter-spacing:0.038783px;}
.ls67{letter-spacing:0.038880px;}
.lsa5{letter-spacing:0.040338px;}
.ls92{letter-spacing:0.040882px;}
.ls9a{letter-spacing:0.041310px;}
.lsc0{letter-spacing:0.041996px;}
.ls12{letter-spacing:0.042084px;}
.lsa{letter-spacing:0.043092px;}
.ls1e{letter-spacing:0.043200px;}
.ls72{letter-spacing:0.043286px;}
.ls66{letter-spacing:0.043740px;}
.lsa6{letter-spacing:0.044820px;}
.lsae{letter-spacing:0.044910px;}
.ls1d{letter-spacing:0.048096px;}
.ls5f{letter-spacing:0.048600px;}
.lsa4{letter-spacing:0.049302px;}
.ls114{letter-spacing:0.050598px;}
.ls5d{letter-spacing:0.054000px;}
.lsf{letter-spacing:0.054108px;}
.lsb4{letter-spacing:0.054890px;}
.lsac{letter-spacing:0.058266px;}
.ls107{letter-spacing:0.059400px;}
.ls7b{letter-spacing:0.059519px;}
.ls104{letter-spacing:0.059995px;}
.lse{letter-spacing:0.060120px;}
.lsa0{letter-spacing:0.061322px;}
.ls6c{letter-spacing:0.064930px;}
.ls44{letter-spacing:0.066132px;}
.lsc9{letter-spacing:0.066433px;}
.ls17{letter-spacing:0.070200px;}
.ls1b{letter-spacing:0.072144px;}
.ls13d{letter-spacing:0.072283px;}
.ls80{letter-spacing:0.072900px;}
.ls69{letter-spacing:0.075751px;}
.lsaa{letter-spacing:0.076194px;}
.ls9d{letter-spacing:0.078030px;}
.lsad{letter-spacing:0.080676px;}
.ls5e{letter-spacing:0.081000px;}
.lsbf{letter-spacing:0.083993px;}
.ls20{letter-spacing:0.084168px;}
.lsb0{letter-spacing:0.084829px;}
.ls93{letter-spacing:0.086873px;}
.ls108{letter-spacing:0.091800px;}
.ls78{letter-spacing:0.091984px;}
.ls109{letter-spacing:0.097200px;}
.ls113{letter-spacing:0.101196px;}
.ls11{letter-spacing:0.102204px;}
.lsab{letter-spacing:0.103086px;}
.ls9b{letter-spacing:0.105570px;}
.ls77{letter-spacing:0.111780px;}
.ls40{letter-spacing:0.120240px;}
.ls1f{letter-spacing:0.124200px;}
.ls7e{letter-spacing:0.126360px;}
.lsb8{letter-spacing:0.140987px;}
.lsa3{letter-spacing:0.143065px;}
.ls4c{letter-spacing:0.145800px;}
.ls91{letter-spacing:0.146513px;}
.lsb3{letter-spacing:0.149699px;}
.ls63{letter-spacing:0.150822px;}
.lsa2{letter-spacing:0.151014px;}
.ls99{letter-spacing:0.151470px;}
.ls81{letter-spacing:0.151502px;}
.ls90{letter-spacing:0.154652px;}
.ls76{letter-spacing:0.155131px;}
.lsba{letter-spacing:0.155986px;}
.ls4d{letter-spacing:0.156312px;}
.ls62{letter-spacing:0.163750px;}
.lsc{letter-spacing:0.167580px;}
.ls3f{letter-spacing:0.168336px;}
.ls10c{letter-spacing:0.169864px;}
.ls106{letter-spacing:0.172368px;}
.ls1a{letter-spacing:0.178200px;}
.ls56{letter-spacing:0.180360px;}
.lsb{letter-spacing:0.181944px;}
.lsbe{letter-spacing:0.182984px;}
.ls10e{letter-spacing:0.187935px;}
.lsb9{letter-spacing:0.197982px;}
.ls112{letter-spacing:0.220462px;}
.ls10d{letter-spacing:0.238533px;}
.lsb6{letter-spacing:0.274239px;}
.lsf8{letter-spacing:0.299973px;}
.ls100{letter-spacing:0.308972px;}
.ls10a{letter-spacing:0.330408px;}
.lsfc{letter-spacing:0.347969px;}
.ls131{letter-spacing:0.361414px;}
.ls139{letter-spacing:0.372256px;}
.lsb7{letter-spacing:0.395965px;}
.ls135{letter-spacing:0.419240px;}
.ls10b{letter-spacing:0.477066px;}
.ls65{letter-spacing:0.486000px;}
.ls6d{letter-spacing:0.540000px;}
.lsbb{letter-spacing:0.620945px;}
.ls14a{letter-spacing:0.670741px;}
.ls141{letter-spacing:0.717483px;}
.ls14f{letter-spacing:0.742483px;}
.ls150{letter-spacing:0.744583px;}
.ls14b{letter-spacing:0.746496px;}
.ls10f{letter-spacing:0.748126px;}
.ls151{letter-spacing:0.748200px;}
.ls15d{letter-spacing:0.748483px;}
.ls4a{letter-spacing:0.901800px;}
.ls157{letter-spacing:1.135740px;}
.ls15b{letter-spacing:1.615834px;}
.ls73{letter-spacing:2.348287px;}
.ls7d{letter-spacing:2.430000px;}
.ls75{letter-spacing:2.609208px;}
.ls155{letter-spacing:2.928583px;}
.ls22{letter-spacing:2.988600px;}
.ls147{letter-spacing:2.989200px;}
.ls89{letter-spacing:2.997583px;}
.ls3{letter-spacing:2.998354px;}
.ls3d{letter-spacing:3.061800px;}
.ls16{letter-spacing:3.418200px;}
.ls142{letter-spacing:3.559200px;}
.ls154{letter-spacing:3.763694px;}
.ls156{letter-spacing:3.769694px;}
.ls60{letter-spacing:5.488956px;}
.ls5b{letter-spacing:5.578200px;}
.ls0{letter-spacing:10.461300px;}
.ls8{letter-spacing:11.954850px;}
.ls162{letter-spacing:12.339483px;}
.ls14e{letter-spacing:12.345483px;}
.ls15f{letter-spacing:12.364200px;}
.ls117{letter-spacing:13.173929px;}
.ls119{letter-spacing:13.444800px;}
.ls168{letter-spacing:13.448400px;}
.ls16a{letter-spacing:13.454400px;}
.ls16d{letter-spacing:13.638368px;}
.ls49{letter-spacing:14.525471px;}
.ls159{letter-spacing:14.583483px;}
.ls2{letter-spacing:14.944200px;}
.ls5a{letter-spacing:15.063451px;}
.ls161{letter-spacing:15.357950px;}
.ls14d{letter-spacing:15.488815px;}
.ls172{letter-spacing:15.573929px;}
.ls15c{letter-spacing:15.657483px;}
.ls3c{letter-spacing:15.663483px;}
.ls16e{letter-spacing:15.979812px;}
.ls83{letter-spacing:16.434600px;}
.ls15e{letter-spacing:17.325483px;}
.ls14c{letter-spacing:18.028741px;}
.ls152{letter-spacing:18.100483px;}
.ls160{letter-spacing:19.515483px;}
.ls158{letter-spacing:24.495483px;}
.ls164{letter-spacing:46.521483px;}
.ls6{letter-spacing:62.761200px;}
.ls7{letter-spacing:64.321654px;}
.ls153{letter-spacing:66.969483px;}
.ls163{letter-spacing:69.993950px;}
.lsbc{letter-spacing:100.367549px;}
.lsc2{letter-spacing:100.967719px;}
.lsc1{letter-spacing:108.447987px;}
.lsbd{letter-spacing:108.750059px;}
.ls110{letter-spacing:120.924757px;}
.ls116{letter-spacing:121.647854px;}
.ls115{letter-spacing:130.660225px;}
.ls111{letter-spacing:131.024168px;}
.ls15a{letter-spacing:231.085834px;}
.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;}
}
.ws6e{word-spacing:-60.120000px;}
.ws16a{word-spacing:-54.108000px;}
.ws125{word-spacing:-54.000000px;}
.ws122{word-spacing:-47.337600px;}
.ws127{word-spacing:-43.600200px;}
.wsb{word-spacing:-38.216790px;}
.ws20f{word-spacing:-20.428615px;}
.ws20e{word-spacing:-17.994528px;}
.ws1ab{word-spacing:-16.955751px;}
.ws105{word-spacing:-15.030000px;}
.wse{word-spacing:-14.943900px;}
.ws1aa{word-spacing:-14.935458px;}
.ws12{word-spacing:-14.355754px;}
.ws75{word-spacing:-13.500000px;}
.ws76{word-spacing:-13.449600px;}
.ws1a8{word-spacing:-12.474900px;}
.ws6b{word-spacing:-12.151944px;}
.ws167{word-spacing:-12.150000px;}
.ws6c{word-spacing:-11.970000px;}
.ws18{word-spacing:-11.955150px;}
.ws11{word-spacing:-11.357400px;}
.ws1a7{word-spacing:-11.205000px;}
.ws146{word-spacing:-10.936750px;}
.ws147{word-spacing:-10.773000px;}
.ws214{word-spacing:-10.466538px;}
.ws3{word-spacing:-10.460700px;}
.ws215{word-spacing:-10.419554px;}
.ws211{word-spacing:-10.408711px;}
.ws19c{word-spacing:-10.329152px;}
.ws19d{word-spacing:-10.174500px;}
.ws1a3{word-spacing:-10.086114px;}
.ws210{word-spacing:-10.047298px;}
.ws213{word-spacing:-10.029227px;}
.ws217{word-spacing:-9.993086px;}
.ws216{word-spacing:-9.985857px;}
.ws212{word-spacing:-9.956944px;}
.ws1a4{word-spacing:-9.935100px;}
.ws6f{word-spacing:-9.000000px;}
.ws1b0{word-spacing:-8.687226px;}
.ws1b1{word-spacing:-8.648230px;}
.ws1ad{word-spacing:-8.639230px;}
.ws1ac{word-spacing:-8.339257px;}
.ws1af{word-spacing:-8.324259px;}
.ws1b3{word-spacing:-8.294261px;}
.ws1b2{word-spacing:-8.288262px;}
.ws74{word-spacing:-8.280000px;}
.ws1ae{word-spacing:-8.264264px;}
.ws168{word-spacing:-8.100000px;}
.ws19f{word-spacing:-7.650000px;}
.ws169{word-spacing:-7.452000px;}
.ws1a0{word-spacing:-7.038000px;}
.ws97{word-spacing:-3.511008px;}
.wsf6{word-spacing:-3.492972px;}
.wsf7{word-spacing:-3.480948px;}
.ws81{word-spacing:-3.456900px;}
.ws80{word-spacing:-3.432852px;}
.ws9a{word-spacing:-3.414816px;}
.ws98{word-spacing:-3.336660px;}
.ws99{word-spacing:-3.306600px;}
.ws248{word-spacing:-3.227882px;}
.ws249{word-spacing:-3.168107px;}
.ws86{word-spacing:-2.819628px;}
.ws22e{word-spacing:-2.813616px;}
.ws22f{word-spacing:-2.807604px;}
.ws87{word-spacing:-2.777544px;}
.ws23d{word-spacing:-2.732400px;}
.ws241{word-spacing:-2.729448px;}
.ws23c{word-spacing:-2.721600px;}
.ws62{word-spacing:-2.689902px;}
.ws252{word-spacing:-2.575200px;}
.ws58{word-spacing:-2.570351px;}
.ws119{word-spacing:-2.476944px;}
.ws7a{word-spacing:-2.446884px;}
.wscb{word-spacing:-2.434860px;}
.ws163{word-spacing:-2.422836px;}
.wse8{word-spacing:-2.392776px;}
.ws254{word-spacing:-2.391024px;}
.ws9f{word-spacing:-2.386764px;}
.ws9e{word-spacing:-2.362716px;}
.ws1ef{word-spacing:-2.335301px;}
.ws53{word-spacing:-2.331248px;}
.ws1f0{word-spacing:-2.330311px;}
.ws51{word-spacing:-2.271473px;}
.ws201{word-spacing:-2.267892px;}
.ws206{word-spacing:-2.265442px;}
.ws200{word-spacing:-2.258928px;}
.wsa0{word-spacing:-2.230452px;}
.ws5d{word-spacing:-2.211697px;}
.ws157{word-spacing:-2.202196px;}
.ws158{word-spacing:-2.180552px;}
.wsbf{word-spacing:-2.151936px;}
.ws5e{word-spacing:-2.151922px;}
.ws140{word-spacing:-2.080152px;}
.wsc{word-spacing:-2.044339px;}
.ws104{word-spacing:-2.032370px;}
.wsea{word-spacing:-2.014020px;}
.wse9{word-spacing:-2.001996px;}
.wsc9{word-spacing:-1.989972px;}
.ws103{word-spacing:-1.972595px;}
.wsca{word-spacing:-1.941876px;}
.wse7{word-spacing:-1.935864px;}
.ws2e{word-spacing:-1.853044px;}
.ws1c2{word-spacing:-1.783460px;}
.ws142{word-spacing:-1.749492px;}
.wsb3{word-spacing:-1.743480px;}
.wsb4{word-spacing:-1.707408px;}
.ws1c1{word-spacing:-1.696586px;}
.ws55{word-spacing:-1.673717px;}
.ws141{word-spacing:-1.623240px;}
.ws149{word-spacing:-1.613941px;}
.ws193{word-spacing:-1.579954px;}
.ws24b{word-spacing:-1.554166px;}
.ws128{word-spacing:-1.434614px;}
.ws195{word-spacing:-1.433862px;}
.wsaf{word-spacing:-1.412820px;}
.wse1{word-spacing:-1.406808px;}
.ws107{word-spacing:-1.382760px;}
.ws109{word-spacing:-1.370736px;}
.ws243{word-spacing:-1.358712px;}
.ws23e{word-spacing:-1.350000px;}
.ws143{word-spacing:-1.322640px;}
.ws5a{word-spacing:-1.315063px;}
.ws226{word-spacing:-1.312200px;}
.ws221{word-spacing:-1.255288px;}
.ws231{word-spacing:-1.232460px;}
.ws189{word-spacing:-1.212019px;}
.ws242{word-spacing:-1.202400px;}
.ws250{word-spacing:-1.181170px;}
.ws1d9{word-spacing:-1.149795px;}
.ws175{word-spacing:-1.137240px;}
.ws129{word-spacing:-1.135736px;}
.ws208{word-spacing:-1.127731px;}
.ws18a{word-spacing:-1.125446px;}
.ws202{word-spacing:-1.120500px;}
.ws173{word-spacing:-1.103220px;}
.ws1f4{word-spacing:-1.097791px;}
.ws1e7{word-spacing:-1.089126px;}
.ws174{word-spacing:-1.088640px;}
.ws1d8{word-spacing:-1.088473px;}
.wsc0{word-spacing:-1.075961px;}
.wsd7{word-spacing:-1.058112px;}
.ws23f{word-spacing:-1.026000px;}
.ws1f3{word-spacing:-1.022942px;}
.ws207{word-spacing:-0.997992px;}
.wsd6{word-spacing:-0.985968px;}
.wsf8{word-spacing:-0.979956px;}
.wsd5{word-spacing:-0.973944px;}
.ws14a{word-spacing:-0.968371px;}
.wsb5{word-spacing:-0.961920px;}
.ws40{word-spacing:-0.956410px;}
.ws191{word-spacing:-0.925247px;}
.ws14b{word-spacing:-0.914573px;}
.ws1c4{word-spacing:-0.884065px;}
.ws1c3{word-spacing:-0.858514px;}
.ws194{word-spacing:-0.854906px;}
.wsef{word-spacing:-0.853704px;}
.ws203{word-spacing:-0.851580px;}
.ws54{word-spacing:-0.777083px;}
.ws1a1{word-spacing:-0.753178px;}
.ws63{word-spacing:-0.717307px;}
.wsec{word-spacing:-0.661320px;}
.ws25c{word-spacing:-0.657532px;}
.wsd0{word-spacing:-0.655308px;}
.wsee{word-spacing:-0.643284px;}
.ws100{word-spacing:-0.597756px;}
.ws49{word-spacing:-0.537980px;}
.ws131{word-spacing:-0.535068px;}
.wsd1{word-spacing:-0.511020px;}
.ws46{word-spacing:-0.478205px;}
.wsfe{word-spacing:-0.418429px;}
.wse5{word-spacing:-0.390780px;}
.ws23b{word-spacing:-0.388800px;}
.ws126{word-spacing:-0.376589px;}
.ws42{word-spacing:-0.358654px;}
.ws15e{word-spacing:-0.354708px;}
.ws8f{word-spacing:-0.342684px;}
.ws22c{word-spacing:-0.336672px;}
.wsd2{word-spacing:-0.324648px;}
.ws1b5{word-spacing:-0.322790px;}
.ws1ff{word-spacing:-0.322704px;}
.ws152{word-spacing:-0.319237px;}
.wse4{word-spacing:-0.312624px;}
.wsf0{word-spacing:-0.306612px;}
.wsdf{word-spacing:-0.300600px;}
.ws32{word-spacing:-0.298878px;}
.ws238{word-spacing:-0.297000px;}
.ws219{word-spacing:-0.295793px;}
.ws1d7{word-spacing:-0.291281px;}
.ws23a{word-spacing:-0.286200px;}
.ws260{word-spacing:-0.280890px;}
.ws1ed{word-spacing:-0.279438px;}
.ws77{word-spacing:-0.272916px;}
.ws27{word-spacing:-0.268992px;}
.ws1d0{word-spacing:-0.260620px;}
.wsf1{word-spacing:-0.258516px;}
.ws244{word-spacing:-0.253711px;}
.ws25e{word-spacing:-0.249894px;}
.ws22b{word-spacing:-0.248400px;}
.ws1fc{word-spacing:-0.246510px;}
.ws106{word-spacing:-0.246492px;}
.ws14c{word-spacing:-0.245624px;}
.wsd3{word-spacing:-0.240480px;}
.ws35{word-spacing:-0.239102px;}
.ws224{word-spacing:-0.237600px;}
.ws1fe{word-spacing:-0.237546px;}
.wsda{word-spacing:-0.234468px;}
.ws1b6{word-spacing:-0.231979px;}
.ws1e1{word-spacing:-0.226520px;}
.wsdc{word-spacing:-0.222444px;}
.wsdb{word-spacing:-0.216432px;}
.ws21b{word-spacing:-0.215194px;}
.ws15d{word-spacing:-0.210600px;}
.ws209{word-spacing:-0.210580px;}
.ws1ec{word-spacing:-0.206172px;}
.ws1e5{word-spacing:-0.197208px;}
.ws237{word-spacing:-0.194400px;}
.ws151{word-spacing:-0.189540px;}
.wse0{word-spacing:-0.186372px;}
.ws2d{word-spacing:-0.179327px;}
.ws223{word-spacing:-0.178200px;}
.wsf9{word-spacing:-0.162324px;}
.ws20{word-spacing:-0.161395px;}
.ws1fb{word-spacing:-0.161352px;}
.ws1e4{word-spacing:-0.147906px;}
.ws236{word-spacing:-0.140400px;}
.ws34{word-spacing:-0.119551px;}
.ws1fa{word-spacing:-0.116532px;}
.wsd9{word-spacing:-0.108216px;}
.ws262{word-spacing:-0.107597px;}
.ws78{word-spacing:-0.086184px;}
.ws14d{word-spacing:-0.077566px;}
.ws245{word-spacing:-0.073999px;}
.ws1b7{word-spacing:-0.073256px;}
.ws1e2{word-spacing:-0.071533px;}
.ws20a{word-spacing:-0.061419px;}
.ws6d{word-spacing:-0.060120px;}
.wsd{word-spacing:-0.059776px;}
.ws16b{word-spacing:-0.054108px;}
.ws124{word-spacing:-0.054000px;}
.ws21{word-spacing:-0.053798px;}
.ws246{word-spacing:-0.052856px;}
.ws19e{word-spacing:-0.051102px;}
.ws1a6{word-spacing:-0.049900px;}
.wsed{word-spacing:-0.048096px;}
.ws16{word-spacing:-0.047821px;}
.ws1a5{word-spacing:-0.044820px;}
.ws20b{word-spacing:-0.043871px;}
.ws239{word-spacing:-0.043200px;}
.ws4{word-spacing:-0.041843px;}
.ws1fd{word-spacing:-0.035856px;}
.ws21c{word-spacing:-0.006154px;}
.ws10{word-spacing:-0.004517px;}
.ws21d{word-spacing:-0.003024px;}
.ws14{word-spacing:-0.000157px;}
.ws1{word-spacing:0.000000px;}
.ws88{word-spacing:0.006012px;}
.ws15a{word-spacing:0.016232px;}
.ws165{word-spacing:0.018036px;}
.ws116{word-spacing:0.024048px;}
.ws1e0{word-spacing:0.045992px;}
.ws13b{word-spacing:0.048096px;}
.ws180{word-spacing:0.048697px;}
.ws24{word-spacing:0.053798px;}
.wsb6{word-spacing:0.054108px;}
.ws37{word-spacing:0.059776px;}
.ws8e{word-spacing:0.060120px;}
.ws19a{word-spacing:0.064930px;}
.ws1ee{word-spacing:0.074849px;}
.wsd4{word-spacing:0.078156px;}
.ws185{word-spacing:0.087480px;}
.ws22d{word-spacing:0.090180px;}
.ws15{word-spacing:0.095641px;}
.wsa2{word-spacing:0.096192px;}
.ws204{word-spacing:0.107568px;}
.ws25{word-spacing:0.107597px;}
.ws8b{word-spacing:0.108000px;}
.wsa3{word-spacing:0.108216px;}
.ws4d{word-spacing:0.119551px;}
.ws1f9{word-spacing:0.119759px;}
.ws130{word-spacing:0.129600px;}
.ws9c{word-spacing:0.135000px;}
.ws199{word-spacing:0.135270px;}
.ws9b{word-spacing:0.138276px;}
.wsc7{word-spacing:0.140400px;}
.ws17{word-spacing:0.143462px;}
.ws235{word-spacing:0.144288px;}
.ws8c{word-spacing:0.145800px;}
.ws1d6{word-spacing:0.146880px;}
.wsb0{word-spacing:0.150300px;}
.ws184{word-spacing:0.150660px;}
.ws8d{word-spacing:0.156600px;}
.ws1eb{word-spacing:0.156870px;}
.ws176{word-spacing:0.160380px;}
.ws26{word-spacing:0.161395px;}
.ws36{word-spacing:0.179327px;}
.ws9d{word-spacing:0.183600px;}
.ws22a{word-spacing:0.189000px;}
.ws115{word-spacing:0.194400px;}
.ws11e{word-spacing:0.198396px;}
.ws11f{word-spacing:0.204408px;}
.ws275{word-spacing:0.215194px;}
.ws114{word-spacing:0.216000px;}
.ws38{word-spacing:0.239102px;}
.ws120{word-spacing:0.258516px;}
.ws263{word-spacing:0.268992px;}
.ws30{word-spacing:0.298878px;}
.ws21f{word-spacing:0.358654px;}
.ws28{word-spacing:0.376589px;}
.wsf2{word-spacing:0.414828px;}
.ws1d2{word-spacing:0.417690px;}
.wsab{word-spacing:0.438876px;}
.ws150{word-spacing:0.442260px;}
.ws1d1{word-spacing:0.454410px;}
.ws1c8{word-spacing:0.470138px;}
.ws1c9{word-spacing:0.475249px;}
.ws14f{word-spacing:0.481140px;}
.ws1c7{word-spacing:0.485469px;}
.ws172{word-spacing:0.486000px;}
.ws15c{word-spacing:0.491400px;}
.wsac{word-spacing:0.517032px;}
.wsf3{word-spacing:0.529056px;}
.ws15b{word-spacing:0.534600px;}
.wsbc{word-spacing:0.537980px;}
.ws1b{word-spacing:0.537984px;}
.ws247{word-spacing:0.568500px;}
.ws20c{word-spacing:0.597756px;}
.ws255{word-spacing:0.657532px;}
.ws270{word-spacing:0.699379px;}
.ws1ca{word-spacing:0.710318px;}
.ws256{word-spacing:0.717307px;}
.ws93{word-spacing:0.739476px;}
.ws190{word-spacing:0.746690px;}
.ws18f{word-spacing:0.768334px;}
.ws3d{word-spacing:0.777083px;}
.ws7f{word-spacing:0.781560px;}
.ws1cb{word-spacing:0.802301px;}
.ws85{word-spacing:0.805608px;}
.ws3a{word-spacing:0.836858px;}
.ws110{word-spacing:0.885600px;}
.ws10f{word-spacing:0.896400px;}
.ws166{word-spacing:0.896634px;}
.ws112{word-spacing:0.901800px;}
.ws28b{word-spacing:0.914573px;}
.ws66{word-spacing:0.956410px;}
.ws265{word-spacing:0.968371px;}
.ws186{word-spacing:1.017230px;}
.ws192{word-spacing:1.049695px;}
.ws3e{word-spacing:1.075961px;}
.ws57{word-spacing:1.135736px;}
.ws10e{word-spacing:1.148292px;}
.wsce{word-spacing:1.160316px;}
.ws113{word-spacing:1.161000px;}
.ws13f{word-spacing:1.178352px;}
.ws277{word-spacing:1.183565px;}
.ws4a{word-spacing:1.195512px;}
.ws111{word-spacing:1.204200px;}
.ws282{word-spacing:1.237363px;}
.wsae{word-spacing:1.244484px;}
.ws220{word-spacing:1.255288px;}
.ws92{word-spacing:1.256508px;}
.ws10d{word-spacing:1.316628px;}
.ws196{word-spacing:1.368932px;}
.wsa{word-spacing:1.380812px;}
.ws266{word-spacing:1.452557px;}
.wsad{word-spacing:1.490976px;}
.ws73{word-spacing:1.494390px;}
.ws1f8{word-spacing:1.546888px;}
.ws286{word-spacing:1.667750px;}
.ws71{word-spacing:1.673717px;}
.ws205{word-spacing:1.851275px;}
.ws170{word-spacing:1.853044px;}
.ws234{word-spacing:1.863720px;}
.ws26e{word-spacing:1.882944px;}
.ws3b{word-spacing:1.912819px;}
.ws5f{word-spacing:1.972595px;}
.ws188{word-spacing:1.985764px;}
.ws1c{word-spacing:1.990541px;}
.ws4e{word-spacing:2.032370px;}
.wsc3{word-spacing:2.092146px;}
.ws27b{word-spacing:2.098138px;}
.ws121{word-spacing:2.151922px;}
.ws288{word-spacing:2.151936px;}
.ws1f5{word-spacing:2.160653px;}
.ws21e{word-spacing:2.211697px;}
.ws1e9{word-spacing:2.223072px;}
.ws240{word-spacing:2.230452px;}
.ws1e8{word-spacing:2.232036px;}
.ws1ea{word-spacing:2.236518px;}
.ws108{word-spacing:2.242476px;}
.ws102{word-spacing:2.271473px;}
.ws82{word-spacing:2.296584px;}
.ws183{word-spacing:2.303640px;}
.ws155{word-spacing:2.305001px;}
.ws1e{word-spacing:2.367130px;}
.ws187{word-spacing:2.375341px;}
.ws12b{word-spacing:2.391024px;}
.ws182{word-spacing:2.391120px;}
.ws259{word-spacing:2.407592px;}
.ws181{word-spacing:2.425140px;}
.ws1f2{word-spacing:2.499970px;}
.ws0{word-spacing:2.511541px;}
.ws1cf{word-spacing:2.524439px;}
.ws272{word-spacing:2.528525px;}
.ws1c5{word-spacing:2.560210px;}
.ws161{word-spacing:2.561112px;}
.ws2b{word-spacing:2.570351px;}
.ws1cd{word-spacing:2.590871px;}
.ws232{word-spacing:2.603196px;}
.ws13c{word-spacing:2.615220px;}
.ws1cc{word-spacing:2.621533px;}
.ws1bb{word-spacing:2.626643px;}
.ws50{word-spacing:2.630126px;}
.ws1bc{word-spacing:2.641973px;}
.ws1c6{word-spacing:2.647084px;}
.ws1ce{word-spacing:2.652194px;}
.ws159{word-spacing:2.672935px;}
.ws228{word-spacing:2.678400px;}
.ws227{word-spacing:2.689200px;}
.ws280{word-spacing:2.689920px;}
.ws229{word-spacing:2.694600px;}
.wsa9{word-spacing:2.717424px;}
.ws69{word-spacing:2.749678px;}
.ws1f1{word-spacing:2.769428px;}
.ws1e6{word-spacing:2.796768px;}
.ws25b{word-spacing:2.809453px;}
.wsc2{word-spacing:2.869229px;}
.ws19{word-spacing:2.869236px;}
.wsaa{word-spacing:2.897784px;}
.ws7c{word-spacing:2.909808px;}
.ws13a{word-spacing:2.927844px;}
.ws257{word-spacing:2.929004px;}
.ws164{word-spacing:2.969928px;}
.ws52{word-spacing:2.988780px;}
.ws145{word-spacing:2.999988px;}
.ws18c{word-spacing:3.002994px;}
.ws138{word-spacing:3.012012px;}
.wsa8{word-spacing:3.030048px;}
.wsc5{word-spacing:3.051000px;}
.wsc4{word-spacing:3.056400px;}
.ws139{word-spacing:3.060108px;}
.ws7b{word-spacing:3.072132px;}
.ws64{word-spacing:3.108331px;}
.ws1dd{word-spacing:3.112112px;}
.ws5c{word-spacing:3.168107px;}
.ws13d{word-spacing:3.168324px;}
.ws26a{word-spacing:3.218246px;}
.ws29{word-spacing:3.219667px;}
.ws27c{word-spacing:3.224093px;}
.wsbd{word-spacing:3.227882px;}
.ws1b4{word-spacing:3.227904px;}
.ws18d{word-spacing:3.289766px;}
.ws18e{word-spacing:3.295177px;}
.wsc8{word-spacing:3.300588px;}
.ws118{word-spacing:3.306600px;}
.ws230{word-spacing:3.336660px;}
.ws10b{word-spacing:3.342672px;}
.ws16f{word-spacing:3.347434px;}
.ws18b{word-spacing:3.354696px;}
.ws225{word-spacing:3.369600px;}
.ws10a{word-spacing:3.372732px;}
.ws1f6{word-spacing:3.383193px;}
.ws1f7{word-spacing:3.388183px;}
.ws4c{word-spacing:3.407209px;}
.ws89{word-spacing:3.412800px;}
.ws8a{word-spacing:3.418200px;}
.ws123{word-spacing:3.466985px;}
.ws28d{word-spacing:3.496896px;}
.ws12a{word-spacing:3.526760px;}
.ws24a{word-spacing:3.585000px;}
.ws2a{word-spacing:3.586536px;}
.ws24c{word-spacing:3.588938px;}
.ws17e{word-spacing:3.630647px;}
.ws17d{word-spacing:3.684755px;}
.ws47{word-spacing:3.706087px;}
.ws198{word-spacing:3.728041px;}
.wsbe{word-spacing:3.765863px;}
.ws5b{word-spacing:3.825638px;}
.ws3c{word-spacing:3.885414px;}
.ws1d{word-spacing:3.927283px;}
.ws3f{word-spacing:3.945190px;}
.wsb2{word-spacing:3.997980px;}
.ws94{word-spacing:4.003992px;}
.ws31{word-spacing:4.004965px;}
.ws197{word-spacing:4.025635px;}
.ws84{word-spacing:4.028040px;}
.ws96{word-spacing:4.046076px;}
.ws4f{word-spacing:4.064741px;}
.ws233{word-spacing:4.076136px;}
.ws95{word-spacing:4.082148px;}
.ws11a{word-spacing:4.232448px;}
.wsff{word-spacing:4.244068px;}
.ws44{word-spacing:4.303843px;}
.wsa7{word-spacing:4.346676px;}
.ws43{word-spacing:4.363619px;}
.wsf5{word-spacing:4.364712px;}
.wsa1{word-spacing:4.370724px;}
.wscf{word-spacing:4.382748px;}
.wsa6{word-spacing:4.430844px;}
.ws132{word-spacing:4.454892px;}
.wsc6{word-spacing:4.465800px;}
.wsf4{word-spacing:4.496976px;}
.ws16e{word-spacing:4.542946px;}
.ws1a{word-spacing:4.557096px;}
.ws1bf{word-spacing:4.599180px;}
.ws2f{word-spacing:4.602721px;}
.ws1be{word-spacing:4.629841px;}
.ws1c0{word-spacing:4.634951px;}
.ws1bd{word-spacing:4.706494px;}
.wsa4{word-spacing:4.713408px;}
.ws65{word-spacing:4.722272px;}
.ws83{word-spacing:4.725432px;}
.ws267{word-spacing:4.734259px;}
.ws269{word-spacing:4.788058px;}
.ws67{word-spacing:4.841824px;}
.ws1f{word-spacing:4.841856px;}
.ws11b{word-spacing:4.845672px;}
.wsa5{word-spacing:4.869720px;}
.ws179{word-spacing:4.880542px;}
.ws17a{word-spacing:4.902185px;}
.ws17f{word-spacing:4.945471px;}
.ws1a2{word-spacing:5.021150px;}
.ws90{word-spacing:5.092164px;}
.ws91{word-spacing:5.104188px;}
.ws117{word-spacing:5.152284px;}
.wsb7{word-spacing:5.176332px;}
.ws45{word-spacing:5.260253px;}
.ws1d5{word-spacing:5.319810px;}
.ws1d3{word-spacing:5.333580px;}
.ws1d4{word-spacing:5.347350px;}
.ws264{word-spacing:5.355293px;}
.ws16d{word-spacing:5.379804px;}
.ws23{word-spacing:5.433638px;}
.ws6a{word-spacing:5.439580px;}
.ws13e{word-spacing:5.452884px;}
.ws8{word-spacing:5.481407px;}
.ws12e{word-spacing:5.497200px;}
.ws12f{word-spacing:5.524200px;}
.ws17b{word-spacing:5.546070px;}
.ws12d{word-spacing:5.551200px;}
.wsc1{word-spacing:5.559131px;}
.ws12c{word-spacing:5.572800px;}
.ws17c{word-spacing:5.594767px;}
.ws68{word-spacing:5.618906px;}
.ws16c{word-spacing:5.678682px;}
.ws48{word-spacing:5.738458px;}
.ws2c{word-spacing:5.798233px;}
.wseb{word-spacing:5.819616px;}
.ws72{word-spacing:5.858009px;}
.wsb1{word-spacing:5.939856px;}
.ws101{word-spacing:5.977560px;}
.ws59{word-spacing:6.037336px;}
.ws39{word-spacing:6.097111px;}
.wsdd{word-spacing:6.180336px;}
.wsde{word-spacing:6.198372px;}
.ws19b{word-spacing:6.217009px;}
.ws22{word-spacing:6.509606px;}
.wse3{word-spacing:6.547068px;}
.ws4b{word-spacing:6.575316px;}
.ws289{word-spacing:6.617203px;}
.ws1de{word-spacing:6.633040px;}
.ws1df{word-spacing:6.658591px;}
.ws133{word-spacing:6.685344px;}
.ws134{word-spacing:6.703380px;}
.wsd8{word-spacing:6.913800px;}
.wsb9{word-spacing:6.949872px;}
.wsb8{word-spacing:6.991956px;}
.wsba{word-spacing:6.997968px;}
.ws10c{word-spacing:7.034040px;}
.ws1b9{word-spacing:7.072517px;}
.ws1ba{word-spacing:7.210492px;}
.wsfb{word-spacing:7.232848px;}
.wse2{word-spacing:7.250472px;}
.ws148{word-spacing:7.316582px;}
.ws1dc{word-spacing:7.389349px;}
.ws60{word-spacing:7.531726px;}
.wsbb{word-spacing:7.591501px;}
.wscc{word-spacing:7.617204px;}
.wscd{word-spacing:7.671312px;}
.wse6{word-spacing:7.683336px;}
.ws61{word-spacing:7.830604px;}
.ws178{word-spacing:7.834838px;}
.ws41{word-spacing:7.950155px;}
.ws11d{word-spacing:8.013996px;}
.ws11c{word-spacing:8.158284px;}
.ws7d{word-spacing:8.314596px;}
.ws135{word-spacing:8.392752px;}
.ws7e{word-spacing:8.506980px;}
.wsfa{word-spacing:8.801568px;}
.ws24e{word-spacing:8.863154px;}
.ws1da{word-spacing:8.917299px;}
.ws1db{word-spacing:9.004172px;}
.ws137{word-spacing:9.096156px;}
.ws136{word-spacing:9.120204px;}
.ws1e3{word-spacing:9.641021px;}
.ws6{word-spacing:9.833058px;}
.ws56{word-spacing:9.862974px;}
.ws1b8{word-spacing:9.873335px;}
.ws2{word-spacing:10.413659px;}
.ws171{word-spacing:10.454119px;}
.ws14e{word-spacing:10.458428px;}
.ws222{word-spacing:11.615688px;}
.ws79{word-spacing:11.620476px;}
.ws7{word-spacing:11.841512px;}
.ws33{word-spacing:11.911153px;}
.ws268{word-spacing:13.055400px;}
.ws21a{word-spacing:13.090799px;}
.ws218{word-spacing:13.126810px;}
.ws276{word-spacing:13.180608px;}
.ws156{word-spacing:13.370087px;}
.ws26f{word-spacing:13.385290px;}
.ws27a{word-spacing:13.385750px;}
.ws26d{word-spacing:13.390358px;}
.ws28c{word-spacing:13.390637px;}
.ws271{word-spacing:13.390646px;}
.ws28a{word-spacing:13.391424px;}
.ws26b{word-spacing:13.394736px;}
.ws27f{word-spacing:13.395802px;}
.ws274{word-spacing:13.396358px;}
.ws278{word-spacing:13.557197px;}
.ws261{word-spacing:14.313846px;}
.ws25f{word-spacing:14.585246px;}
.ws25d{word-spacing:14.590371px;}
.ws162{word-spacing:14.855652px;}
.ws70{word-spacing:14.884124px;}
.ws177{word-spacing:15.350440px;}
.ws273{word-spacing:15.924326px;}
.ws144{word-spacing:16.009956px;}
.ws283{word-spacing:16.354714px;}
.ws279{word-spacing:16.615325px;}
.ws27d{word-spacing:16.616410px;}
.ws281{word-spacing:16.619030px;}
.ws26c{word-spacing:16.623706px;}
.ws285{word-spacing:16.731302px;}
.ws27e{word-spacing:16.785101px;}
.wsfd{word-spacing:18.470660px;}
.ws251{word-spacing:19.045154px;}
.ws287{word-spacing:22.003546px;}
.ws5{word-spacing:22.339429px;}
.ws9{word-spacing:22.720640px;}
.ws284{word-spacing:22.971917px;}
.ws154{word-spacing:25.668835px;}
.wsfc{word-spacing:25.703508px;}
.ws153{word-spacing:25.760819px;}
.ws160{word-spacing:28.520928px;}
.ws15f{word-spacing:28.623132px;}
.wsf{word-spacing:40.036186px;}
.ws13{word-spacing:54.982186px;}
.ws24d{word-spacing:333.308746px;}
.ws1a9{word-spacing:457.503885px;}
.ws20d{word-spacing:551.209500px;}
.ws253{word-spacing:692.201448px;}
.ws258{word-spacing:726.034438px;}
.ws25a{word-spacing:842.058877px;}
.ws24f{word-spacing:890.058684px;}
._28{margin-left:-7.998089px;}
._7{margin-left:-6.766623px;}
._9{margin-left:-5.487451px;}
._6{margin-left:-4.399495px;}
._1{margin-left:-3.096367px;}
._0{margin-left:-1.506341px;}
._1a{width:1.010686px;}
._4{width:2.999688px;}
._1b{width:4.406400px;}
._27{width:7.172983px;}
._21{width:11.674253px;}
._2{width:12.975635px;}
._24{width:14.107042px;}
._8{width:15.386342px;}
._b{width:16.462310px;}
._e{width:18.351109px;}
._14{width:19.618348px;}
._d{width:20.808007px;}
._29{width:21.860299px;}
._a{width:23.079514px;}
._2c{width:24.311192px;}
._3{width:25.314894px;}
._16{width:26.468687px;}
._17{width:28.453186px;}
._12{width:29.828024px;}
._18{width:30.963761px;}
._13{width:32.039722px;}
._c{width:34.472799px;}
._11{width:37.419526px;}
._1d{width:39.025200px;}
._15{width:49.207270px;}
._5{width:54.387816px;}
._2b{width:61.868160px;}
._2a{width:88.767360px;}
._26{width:751.558619px;}
._25{width:767.600425px;}
._f{width:1125.109249px;}
._22{width:1815.353394px;}
._20{width:1859.096849px;}
._1e{width:1968.455488px;}
._1c{width:1989.837738px;}
._23{width:2187.172764px;}
._19{width:2210.930820px;}
._1f{width:2621.499000px;}
._10{width:2645.409000px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(56,126,127);}
.fc1{color:rgb(41,66,37);}
.fc0{color:rgb(0,0,0);}
.fs1b{font-size:28.152000px;}
.fs15{font-size:29.808000px;}
.fs23{font-size:29.997030px;}
.fs22{font-size:29.997328px;}
.fs19{font-size:30.600000px;}
.fs14{font-size:32.400000px;}
.fsf{font-size:33.120000px;}
.fs6{font-size:35.865600px;}
.fs24{font-size:35.995938px;}
.fse{font-size:36.000000px;}
.fs2b{font-size:36.141000px;}
.fs2a{font-size:36.141359px;}
.fs1c{font-size:39.740400px;}
.fs26{font-size:39.746376px;}
.fs17{font-size:40.698000px;}
.fs0{font-size:41.842800px;}
.fs11{font-size:43.092000px;}
.fs2c{font-size:43.368600px;}
.fs9{font-size:43.600200px;}
.fs25{font-size:43.870812px;}
.fs1e{font-size:44.820000px;}
.fs5{font-size:45.429600px;}
.fs1a{font-size:45.900000px;}
.fsa{font-size:47.337600px;}
.fs7{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fs2e{font-size:47.887200px;}
.fs13{font-size:48.600000px;}
.fs1d{font-size:49.899600px;}
.fs18{font-size:51.102000px;}
.fs1f{font-size:52.738200px;}
.fs2d{font-size:52.856400px;}
.fs8{font-size:53.798400px;}
.fsd{font-size:54.000000px;}
.fs12{font-size:54.108000px;}
.fs16{font-size:56.058000px;}
.fs3{font-size:59.775600px;}
.fs21{font-size:59.892966px;}
.fsc{font-size:60.120000px;}
.fs10{font-size:62.286600px;}
.fs20{font-size:63.338628px;}
.fs27{font-size:63.540000px;}
.fs29{font-size:72.160200px;}
.fs28{font-size:76.311600px;}
.fs1{font-size:80.255364px;}
.fs4{font-size:107.596800px;}
.fs2{font-size:152.867162px;}
.yc7{bottom:-832.333050px;}
.yee{bottom:-771.204474px;}
.yed{bottom:-752.035212px;}
.yec{bottom:-732.775770px;}
.ya8{bottom:-729.271050px;}
.yeb{bottom:-713.606508px;}
.y13b{bottom:-711.347550px;}
.yea{bottom:-694.347066px;}
.ye9{bottom:-675.087624px;}
.y169{bottom:-668.689695px;}
.y83{bottom:-659.255550px;}
.ye8{bottom:-655.918362px;}
.ye7{bottom:-636.658920px;}
.y1f8{bottom:-629.934767px;}
.ye6{bottom:-617.399478px;}
.ye5{bottom:-598.230216px;}
.y175{bottom:-597.246115px;}
.ye4{bottom:-578.970774px;}
.y20f{bottom:-573.310613px;}
.ye3{bottom:-559.801512px;}
.y20e{bottom:-557.325276px;}
.y20d{bottom:-541.414788px;}
.ye2{bottom:-540.542070px;}
.y20c{bottom:-521.694467px;}
.ye1{bottom:-516.871323px;}
.y20b{bottom:-491.142914px;}
.y11c{bottom:-485.057550px;}
.ye0{bottom:-479.611953px;}
.y20a{bottom:-476.725440px;}
.y209{bottom:-462.383040px;}
.ydf{bottom:-460.352511px;}
.y208{bottom:-447.965567px;}
.ybf{bottom:-443.154957px;}
.yde{bottom:-441.183249px;}
.y207{bottom:-429.364026px;}
.y22d{bottom:-425.556026px;}
.y221{bottom:-425.554502px;}
.ybe{bottom:-423.984192px;}
.y1d2{bottom:-422.297468px;}
.ydd{bottom:-421.923807px;}
.y230{bottom:-421.148582px;}
.y22c{bottom:-421.147988px;}
.y220{bottom:-421.146994px;}
.y22e{bottom:-417.339680px;}
.y231{bottom:-417.338620px;}
.y222{bottom:-417.337563px;}
.y21e{bottom:-411.960167px;}
.y22f{bottom:-409.644752px;}
.y22b{bottom:-409.644688px;}
.y21f{bottom:-409.643694px;}
.ybd{bottom:-404.724750px;}
.ydc{bottom:-402.664365px;}
.y150{bottom:-401.559990px;}
.y174{bottom:-394.178791px;}
.y196{bottom:-388.158345px;}
.y223{bottom:-386.263367px;}
.ybc{bottom:-385.465308px;}
.ydb{bottom:-383.495103px;}
.y14f{bottom:-382.300548px;}
.ybb{bottom:-366.296046px;}
.yda{bottom:-364.235661px;}
.y14e{bottom:-363.041106px;}
.y228{bottom:-360.118366px;}
.y224{bottom:-359.744492px;}
.yba{bottom:-347.036604px;}
.yd9{bottom:-345.066399px;}
.y14d{bottom:-343.871844px;}
.y225{bottom:-333.151375px;}
.y1b4{bottom:-329.910705px;}
.yb9{bottom:-327.867342px;}
.yd8{bottom:-325.806957px;}
.y14c{bottom:-324.612402px;}
.y232{bottom:-312.683867px;}
.y1b3{bottom:-312.658369px;}
.yb8{bottom:-308.607900px;}
.y226{bottom:-306.632501px;}
.yd7{bottom:-306.547515px;}
.y14b{bottom:-305.443140px;}
.y22a{bottom:-303.047442px;}
.y233{bottom:-301.329321px;}
.y1b2{bottom:-295.324871px;}
.yb7{bottom:-289.348458px;}
.yd6{bottom:-287.376750px;}
.y14a{bottom:-286.183698px;}
.y227{bottom:-279.964391px;}
.y1b1{bottom:-277.991374px;}
.yb6{bottom:-270.179196px;}
.yd5{bottom:-268.117308px;}
.y149{bottom:-266.924256px;}
.y1b0{bottom:-260.739038px;}
.y229{bottom:-252.998567px;}
.yb5{bottom:-250.919754px;}
.yd4{bottom:-248.857866px;}
.y148{bottom:-247.753491px;}
.y1af{bottom:-243.405540px;}
.y23d{bottom:-241.405050px;}
.yb4{bottom:-231.750492px;}
.yd3{bottom:-229.688604px;}
.y147{bottom:-228.494049px;}
.y1ae{bottom:-226.072042px;}
.y206{bottom:-222.295656px;}
.y99{bottom:-222.214992px;}
.yb3{bottom:-212.487900px;}
.yd2{bottom:-210.429162px;}
.y146{bottom:-209.324787px;}
.y1ad{bottom:-208.819706px;}
.y205{bottom:-206.385169px;}
.y98{bottom:-202.953129px;}
.y12e{bottom:-200.385147px;}
.yb2{bottom:-193.228458px;}
.y1ac{bottom:-191.486209px;}
.yd1{bottom:-191.259900px;}
.y204{bottom:-190.399832px;}
.y145{bottom:-190.065345px;}
.y1e9{bottom:-183.997925px;}
.y97{bottom:-183.783867px;}
.y12d{bottom:-181.125705px;}
.y173{bottom:-174.992694px;}
.y203{bottom:-174.488097px;}
.y1ab{bottom:-174.233873px;}
.yb1{bottom:-174.059196px;}
.y254{bottom:-173.183178px;}
.yd0{bottom:-172.000458px;}
.y144{bottom:-170.805903px;}
.y1e8{bottom:-167.704052px;}
.y96{bottom:-164.524425px;}
.y12c{bottom:-161.956443px;}
.y202{bottom:-158.502760px;}
.y172{bottom:-157.659196px;}
.y1aa{bottom:-156.900375px;}
.yb0{bottom:-154.799754px;}
.y253{bottom:-153.923736px;}
.ycf{bottom:-152.741016px;}
.y143{bottom:-151.636641px;}
.y1e7{bottom:-151.333527px;}
.y95{bottom:-145.264983px;}
.y12b{bottom:-142.697001px;}
.y201{bottom:-142.517423px;}
.y171{bottom:-140.325699px;}
.y1a9{bottom:-139.566877px;}
.yaf{bottom:-135.630492px;}
.y1e6{bottom:-134.963001px;}
.y252{bottom:-134.754474px;}
.yce{bottom:-133.571754px;}
.y142{bottom:-132.377199px;}
.y200{bottom:-126.605688px;}
.y94{bottom:-126.095721px;}
.y12a{bottom:-123.437559px;}
.y170{bottom:-123.073363px;}
.y1a8{bottom:-122.314541px;}
.y1e5{bottom:-118.669128px;}
.yae{bottom:-116.369196px;}
.ycd{bottom:-114.312312px;}
.y141{bottom:-113.206434px;}
.y251{bottom:-110.995050px;}
.y1ff{bottom:-106.885367px;}
.y16f{bottom:-105.739865px;}
.y1a7{bottom:-104.981044px;}
.y129{bottom:-104.268297px;}
.y93{bottom:-102.424974px;}
.y1e4{bottom:-102.298602px;}
.yad{bottom:-97.109754px;}
.ycc{bottom:-95.143050px;}
.y140{bottom:-93.946992px;}
.y16e{bottom:-88.486177px;}
.y1a6{bottom:-87.728708px;}
.y182{bottom:-86.252250px;}
.y1e3{bottom:-82.178468px;}
.y128{bottom:-80.597550px;}
.y92{bottom:-78.665550px;}
.yac{bottom:-77.940492px;}
.y1fe{bottom:-76.333814px;}
.y13f{bottom:-74.687550px;}
.y250{bottom:-74.185950px;}
.y1a5{bottom:-70.395210px;}
.y16d{bottom:-67.102695px;}
.y1fd{bottom:-61.916340px;}
.yab{bottom:-58.681050px;}
.ycb{bottom:-58.332600px;}
.y24f{bottom:-56.815500px;}
.y1e2{bottom:-50.889458px;}
.y1fc{bottom:-47.573940px;}
.y127{bottom:-43.698000px;}
.y91{bottom:-41.855100px;}
.yca{bottom:-40.873050px;}
.y24e{bottom:-39.535500px;}
.y13e{bottom:-37.878000px;}
.y1a4{bottom:-37.266615px;}
.y1e1{bottom:-36.048840px;}
.y16c{bottom:-33.974100px;}
.y1fb{bottom:-33.156467px;}
.y126{bottom:-26.327550px;}
.y90{bottom:-24.395550px;}
.yc9{bottom:-23.593050px;}
.y24d{bottom:-22.165050px;}
.yaa{bottom:-21.871050px;}
.y1a3{bottom:-21.633210px;}
.y1e0{bottom:-21.360840px;}
.y13d{bottom:-20.507550px;}
.y1fa{bottom:-18.814067px;}
.y16b{bottom:-18.340695px;}
.y18e{bottom:-6.870495px;}
.y125{bottom:-3.914184px;}
.y1df{bottom:-2.384684px;}
.y8f{bottom:-1.980123px;}
.y1a2{bottom:-1.462790px;}
.yc8{bottom:-1.183068px;}
.y1f9{bottom:-0.214289px;}
.y0{bottom:0.000000px;}
.y24c{bottom:0.246444px;}
.ya9{bottom:0.629337px;}
.y16a{bottom:1.828815px;}
.y13c{bottom:1.902603px;}
.y21d{bottom:3.670634px;}
.y272{bottom:4.834396px;}
.y266{bottom:4.836233px;}
.y275{bottom:10.144570px;}
.y271{bottom:10.145285px;}
.y265{bottom:10.146483px;}
.y273{bottom:14.733608px;}
.y276{bottom:14.734885px;}
.y267{bottom:14.736159px;}
.y18{bottom:16.519673px;}
.y263{bottom:21.214950px;}
.y274{bottom:24.004605px;}
.y270{bottom:24.004683px;}
.y264{bottom:24.005881px;}
.y17{bottom:26.264057px;}
.y210{bottom:27.724158px;}
.y47{bottom:31.890000px;}
.y211{bottom:43.411033px;}
.y268{bottom:52.174950px;}
.y212{bottom:83.525027px;}
.y26d{bottom:83.674950px;}
.y269{bottom:84.125401px;}
.y1ce{bottom:103.621500px;}
.y15{bottom:104.646000px;}
.y2fa{bottom:108.412500px;}
.y217{bottom:108.549434px;}
.y102{bottom:108.885000px;}
.y130{bottom:111.373500px;}
.y26a{bottom:116.165301px;}
.y191{bottom:116.796000px;}
.y7e{bottom:119.596500px;}
.y1cd{bottom:122.449500px;}
.y14{bottom:122.535000px;}
.y213{bottom:123.714172px;}
.y2f9{bottom:127.242000px;}
.y101{bottom:127.713000px;}
.y29a{bottom:129.237000px;}
.y12f{bottom:130.606500px;}
.yc0{bottom:133.561500px;}
.y190{bottom:136.029000px;}
.y2ce{bottom:136.927500px;}
.y7d{bottom:138.426000px;}
.y238{bottom:139.698000px;}
.y46{bottom:139.941000px;}
.y13{bottom:140.422500px;}
.y277{bottom:140.824950px;}
.y1cc{bottom:141.279000px;}
.y31c{bottom:142.371000px;}
.y299{bottom:145.336500px;}
.y2f8{bottom:146.071500px;}
.y100{bottom:146.542500px;}
.y298{bottom:148.066500px;}
.y26b{bottom:148.115752px;}
.y26f{bottom:152.435100px;}
.y278{bottom:154.505126px;}
.y18f{bottom:155.262000px;}
.y2cc{bottom:155.757000px;}
.ya5{bottom:155.991000px;}
.y119{bottom:156.025500px;}
.y7c{bottom:157.255500px;}
.y12{bottom:158.310000px;}
.y45{bottom:158.770500px;}
.y237{bottom:158.931000px;}
.y31b{bottom:159.631500px;}
.y1ca{bottom:160.108500px;}
.y2cd{bottom:161.182500px;}
.y214{bottom:163.828166px;}
.y296{bottom:164.166000px;}
.y2f7{bottom:164.901000px;}
.yff{bottom:165.372000px;}
.y1cb{bottom:165.534000px;}
.y295{bottom:166.896000px;}
.y21c{bottom:167.711834px;}
.y297{bottom:172.320000px;}
.y2cb{bottom:174.586500px;}
.y7b{bottom:176.085000px;}
.y11{bottom:176.199000px;}
.y31a{bottom:176.892000px;}
.y44{bottom:177.600000px;}
.y17f{bottom:177.691200px;}
.y236{bottom:178.164000px;}
.y1c9{bottom:178.938000px;}
.y26c{bottom:180.246005px;}
.y2f6{bottom:183.730500px;}
.yfe{bottom:184.201500px;}
.y294{bottom:185.725500px;}
.y21a{bottom:190.047134px;}
.y2ca{bottom:193.416000px;}
.y10{bottom:194.086500px;}
.y319{bottom:194.152500px;}
.y7a{bottom:194.914500px;}
.y43{bottom:196.429500px;}
.y235{bottom:197.397000px;}
.y1c8{bottom:197.767500px;}
.y2f4{bottom:202.560000px;}
.y34d{bottom:202.759500px;}
.yfd{bottom:203.031000px;}
.y215{bottom:204.017311px;}
.y293{bottom:204.555000px;}
.y2f5{bottom:207.984000px;}
.y318{bottom:211.413000px;}
.yf{bottom:211.974000px;}
.y21b{bottom:212.382434px;}
.y26e{bottom:212.734950px;}
.y79{bottom:213.744000px;}
.y165{bottom:214.813500px;}
.y42{bottom:215.259000px;}
.y1c7{bottom:216.597000px;}
.y234{bottom:216.630000px;}
.y2c9{bottom:216.729000px;}
.y18d{bottom:218.759865px;}
.y34c{bottom:220.020000px;}
.yfc{bottom:221.860500px;}
.y292{bottom:223.384500px;}
.y2f3{bottom:225.871500px;}
.y8e{bottom:227.879679px;}
.y317{bottom:228.673500px;}
.ye{bottom:229.863000px;}
.y78{bottom:232.573500px;}
.y164{bottom:233.643000px;}
.y41{bottom:234.088500px;}
.y219{bottom:234.792434px;}
.y1c6{bottom:235.426500px;}
.y34b{bottom:237.280500px;}
.yfb{bottom:240.690000px;}
.y1f5{bottom:242.047500px;}
.y290{bottom:242.214000px;}
.y216{bottom:244.131304px;}
.y316{bottom:245.934000px;}
.y8d{bottom:247.139121px;}
.y291{bottom:247.638000px;}
.y24b{bottom:249.726408px;}
.y2c8{bottom:250.353000px;}
.y77{bottom:251.403000px;}
.y163{bottom:252.472500px;}
.y40{bottom:252.918000px;}
.y1c5{bottom:254.256000px;}
.y34a{bottom:254.541000px;}
.y2f2{bottom:256.522500px;}
.y218{bottom:257.127734px;}
.yfa{bottom:259.519500px;}
.y28f{bottom:261.043500px;}
.y315{bottom:263.194500px;}
.y8c{bottom:266.308383px;}
.y2f1{bottom:266.773500px;}
.y24a{bottom:268.895670px;}
.y2c7{bottom:269.182500px;}
.y76{bottom:270.232500px;}
.y162{bottom:271.302000px;}
.y3f{bottom:271.747500px;}
.y349{bottom:271.801500px;}
.y1c4{bottom:273.085500px;}
.yf9{bottom:278.349000px;}
.y314{bottom:280.453500px;}
.y28e{bottom:284.356500px;}
.y8b{bottom:285.567825px;}
.y249{bottom:288.155112px;}
.y75{bottom:289.062000px;}
.y161{bottom:290.131500px;}
.y3e{bottom:290.575500px;}
.y1c3{bottom:291.915000px;}
.yf8{bottom:297.178500px;}
.y313{bottom:297.714000px;}
.yd{bottom:299.892000px;}
.y2c6{bottom:300.345000px;}
.yc6{bottom:301.757085px;}
.y28d{bottom:304.530000px;}
.y8a{bottom:304.827267px;}
.y348{bottom:306.321000px;}
.y248{bottom:307.325877px;}
.y74{bottom:307.891500px;}
.y160{bottom:308.961000px;}
.y3d{bottom:309.405000px;}
.y2c5{bottom:310.596000px;}
.y1c2{bottom:310.744500px;}
.y1f7{bottom:311.360046px;}
.yc5{bottom:311.386950px;}
.y2f0{bottom:312.019500px;}
.y312{bottom:314.974500px;}
.y1de{bottom:315.395659px;}
.yf7{bottom:316.008000px;}
.yc{bottom:317.779500px;}
.y1f6{bottom:319.352834px;}
.y347{bottom:323.581500px;}
.y89{bottom:323.996529px;}
.y247{bottom:326.585319px;}
.y73{bottom:326.719500px;}
.y15f{bottom:327.790500px;}
.y1c1{bottom:329.574000px;}
.y2ef{bottom:330.849000px;}
.y1dd{bottom:331.766184px;}
.y311{bottom:332.235000px;}
.y3c{bottom:332.718000px;}
.yf6{bottom:334.837500px;}
.yb{bottom:335.667000px;}
.y28c{bottom:338.154000px;}
.y346{bottom:340.842000px;}
.y88{bottom:343.255971px;}
.y72{bottom:345.549000px;}
.y246{bottom:345.844761px;}
.y15e{bottom:346.620000px;}
.y1dc{bottom:348.136710px;}
.y1c0{bottom:348.403500px;}
.y168{bottom:351.991427px;}
.y2c4{bottom:352.992000px;}
.ya{bottom:353.556000px;}
.yf5{bottom:353.667000px;}
.y310{bottom:353.979000px;}
.y28b{bottom:356.983500px;}
.y345{bottom:358.102500px;}
.y167{bottom:360.658305px;}
.y2ee{bottom:361.122000px;}
.y87{bottom:362.425233px;}
.y71{bottom:364.378500px;}
.y1db{bottom:364.430583px;}
.y245{bottom:365.015526px;}
.y15d{bottom:365.449500px;}
.y1bf{bottom:367.233000px;}
.y2ed{bottom:371.373000px;}
.y2c3{bottom:371.821500px;}
.yf4{bottom:372.496500px;}
.y344{bottom:375.363000px;}
.y28a{bottom:375.813000px;}
.y1da{bottom:380.801108px;}
.y86{bottom:381.684675px;}
.y9{bottom:381.904500px;}
.y70{bottom:383.208000px;}
.y15c{bottom:384.279000px;}
.y1be{bottom:386.062500px;}
.y30f{bottom:387.603000px;}
.y244{bottom:388.774950px;}
.y2c2{bottom:390.651000px;}
.yf3{bottom:391.326000px;}
.y343{bottom:392.623500px;}
.y289{bottom:394.642500px;}
.y1d9{bottom:397.171634px;}
.y1a1{bottom:399.244826px;}
.y85{bottom:400.944117px;}
.y6f{bottom:402.037500px;}
.y15b{bottom:403.108500px;}
.ya7{bottom:404.819085px;}
.y1bd{bottom:404.892000px;}
.y3b{bottom:407.868000px;}
.y8{bottom:408.759000px;}
.y342{bottom:409.884000px;}
.y2ec{bottom:413.245500px;}
.y1d8{bottom:413.465507px;}
.y288{bottom:413.472000px;}
.y30e{bottom:414.142500px;}
.ya6{bottom:414.448950px;}
.y1a0{bottom:416.578324px;}
.y84{bottom:420.114882px;}
.y6e{bottom:420.867000px;}
.y15a{bottom:421.938000px;}
.y2c1{bottom:422.338500px;}
.y13a{bottom:422.742585px;}
.y1bc{bottom:423.721500px;}
.yf2{bottom:424.891500px;}
.y243{bottom:425.584050px;}
.y7{bottom:426.646500px;}
.y341{bottom:427.144500px;}
.y2eb{bottom:429.834000px;}
.y1d7{bottom:429.837325px;}
.y30d{bottom:431.716500px;}
.y2ea{bottom:432.075000px;}
.y287{bottom:432.301500px;}
.y139{bottom:432.372450px;}
.y19f{bottom:433.830659px;}
.y2c0{bottom:435.106500px;}
.y6d{bottom:439.696500px;}
.y159{bottom:440.767500px;}
.y1bb{bottom:442.551000px;}
.y242{bottom:442.954500px;}
.yf0{bottom:444.124500px;}
.y340{bottom:444.403500px;}
.y6{bottom:444.534000px;}
.y3a{bottom:445.258500px;}
.y1d6{bottom:446.131198px;}
.yf1{bottom:449.007000px;}
.y286{bottom:451.131000px;}
.y19e{bottom:451.164157px;}
.y30c{bottom:458.257500px;}
.y6c{bottom:458.526000px;}
.y158{bottom:459.597000px;}
.y124{bottom:459.765825px;}
.y241{bottom:460.234500px;}
.y1ba{bottom:461.380500px;}
.y33f{bottom:461.664000px;}
.y18c{bottom:462.299973px;}
.y5{bottom:462.423000px;}
.y1d5{bottom:462.501724px;}
.yef{bottom:463.357500px;}
.y39{bottom:464.715000px;}
.y2e9{bottom:466.596000px;}
.y19d{bottom:468.496966px;}
.y285{bottom:469.960500px;}
.y82{bottom:474.834585px;}
.y30b{bottom:475.831500px;}
.y2bf{bottom:477.151500px;}
.y6b{bottom:477.355500px;}
.y240{bottom:477.604950px;}
.y157{bottom:478.426500px;}
.y1d4{bottom:478.872249px;}
.y33e{bottom:478.924500px;}
.y123{bottom:479.025267px;}
.y1b9{bottom:480.210000px;}
.y4{bottom:480.310500px;}
.y18b{bottom:481.559415px;}
.y38{bottom:484.173000px;}
.y81{bottom:484.464450px;}
.y19c{bottom:485.750469px;}
.yc4{bottom:485.787000px;}
.y284{bottom:488.790000px;}
.y23f{bottom:494.884950px;}
.y1d3{bottom:495.167400px;}
.y2bd{bottom:495.981000px;}
.y6a{bottom:496.185000px;}
.y156{bottom:497.256000px;}
.y122{bottom:498.194529px;}
.y3{bottom:498.198000px;}
.y1b8{bottom:499.039500px;}
.y18a{bottom:500.818857px;}
.y2e8{bottom:501.117000px;}
.y2be{bottom:501.405000px;}
.y30a{bottom:502.372500px;}
.y19b{bottom:503.083966px;}
.y37{bottom:503.629500px;}
.y283{bottom:507.619500px;}
.y33d{bottom:513.445500px;}
.y2bc{bottom:514.810500px;}
.y69{bottom:515.014500px;}
.y155{bottom:516.085500px;}
.y2{bottom:516.087000px;}
.y23e{bottom:517.294320px;}
.y121{bottom:517.453971px;}
.y1b7{bottom:517.869000px;}
.y2e7{bottom:519.946500px;}
.y189{bottom:519.988119px;}
.y19a{bottom:520.337655px;}
.y262{bottom:521.974950px;}
.y36{bottom:523.086000px;}
.ya4{bottom:525.222000px;}
.y282{bottom:526.449000px;}
.y309{bottom:528.913500px;}
.y33c{bottom:530.706000px;}
.y2bb{bottom:533.640000px;}
.y68{bottom:533.844000px;}
.y1{bottom:533.974500px;}
.y154{bottom:534.915000px;}
.y120{bottom:536.623233px;}
.y188{bottom:539.247561px;}
.y1d1{bottom:541.679147px;}
.y35{bottom:542.544000px;}
.y1f4{bottom:542.770500px;}
.ya2{bottom:544.051500px;}
.y281{bottom:545.278500px;}
.y33b{bottom:547.966500px;}
.ya3{bottom:549.475500px;}
.y1d0{bottom:549.864533px;}
.y1b6{bottom:549.873000px;}
.y255{bottom:550.955100px;}
.y67{bottom:552.673500px;}
.y199{bottom:553.467060px;}
.y2e6{bottom:554.467500px;}
.y308{bottom:555.453000px;}
.y11f{bottom:555.882675px;}
.y2ba{bottom:556.953000px;}
.y187{bottom:558.418326px;}
.y1f3{bottom:561.600000px;}
.y34{bottom:562.000500px;}
.ya1{bottom:562.881000px;}
.y280{bottom:564.108000px;}
.y33a{bottom:565.227000px;}
.y153{bottom:568.480500px;}
.y1b5{bottom:569.106000px;}
.y198{bottom:569.180655px;}
.y256{bottom:569.854950px;}
.y66{bottom:571.503000px;}
.y307{bottom:573.027000px;}
.y11e{bottom:575.142117px;}
.y1f2{bottom:580.428000px;}
.y33{bottom:581.457000px;}
.ya0{bottom:581.710500px;}
.y186{bottom:582.177750px;}
.y339{bottom:582.487500px;}
.y27f{bottom:582.937500px;}
.y197{bottom:584.732655px;}
.y2b9{bottom:587.545500px;}
.y151{bottom:587.713500px;}
.y2e5{bottom:588.987000px;}
.y65{bottom:590.332500px;}
.y306{bottom:590.601000px;}
.y193{bottom:591.534000px;}
.y152{bottom:592.596000px;}
.y11d{bottom:594.312882px;}
.y1f1{bottom:599.257500px;}
.y338{bottom:599.746500px;}
.y2b8{bottom:600.535500px;}
.y9f{bottom:600.540000px;}
.y32{bottom:600.915000px;}
.y27e{bottom:601.767000px;}
.y2b5{bottom:607.108500px;}
.y2e4{bottom:607.816500px;}
.y305{bottom:608.176500px;}
.y118{bottom:608.713500px;}
.y64{bottom:609.162000px;}
.y138{bottom:610.143000px;}
.y2b7{bottom:613.005000px;}
.y337{bottom:617.007000px;}
.y1f0{bottom:618.087000px;}
.y257{bottom:618.185062px;}
.y185{bottom:618.987300px;}
.y9e{bottom:619.369500px;}
.y31{bottom:620.371500px;}
.y27d{bottom:625.078500px;}
.y304{bottom:625.750500px;}
.y2b6{bottom:625.996500px;}
.y17e{bottom:626.458500px;}
.y2e3{bottom:626.646000px;}
.y117{bottom:627.543000px;}
.y63{bottom:627.991500px;}
.y195{bottom:632.522777px;}
.y336{bottom:634.267500px;}
.y184{bottom:636.357750px;}
.y1ef{bottom:636.916500px;}
.y2f{bottom:639.829500px;}
.y194{bottom:641.189655px;}
.y9d{bottom:642.681000px;}
.y30{bottom:644.710500px;}
.y17d{bottom:645.288000px;}
.y2e2{bottom:645.475500px;}
.y116{bottom:646.372500px;}
.y62{bottom:646.821000px;}
.y25c{bottom:648.334950px;}
.y11b{bottom:649.032585px;}
.y335{bottom:651.528000px;}
.y303{bottom:652.290000px;}
.y27c{bottom:655.506000px;}
.y2b4{bottom:655.612500px;}
.y11a{bottom:658.662450px;}
.y183{bottom:658.768317px;}
.y2e{bottom:659.286000px;}
.y1ee{bottom:660.229500px;}
.y9c{bottom:662.856000px;}
.y17c{bottom:664.117500px;}
.y2e0{bottom:664.305000px;}
.y115{bottom:665.202000px;}
.y61{bottom:665.650500px;}
.y258{bottom:666.605719px;}
.y334{bottom:668.788500px;}
.y2e1{bottom:669.730500px;}
.y302{bottom:669.864000px;}
.y2b3{bottom:674.442000px;}
.y27b{bottom:674.739000px;}
.y2d{bottom:678.742500px;}
.y17b{bottom:682.947000px;}
.y2df{bottom:683.134500px;}
.y114{bottom:684.031500px;}
.y60{bottom:684.480000px;}
.y333{bottom:686.049000px;}
.y301{bottom:687.438000px;}
.y1ed{bottom:690.657000px;}
.y2b2{bottom:693.271500px;}
.y9b{bottom:693.283500px;}
.y27a{bottom:693.972000px;}
.y2c{bottom:698.200500px;}
.y17a{bottom:701.776500px;}
.y2de{bottom:701.964000px;}
.y113{bottom:702.861000px;}
.y5f{bottom:703.309500px;}
.y300{bottom:705.013500px;}
.y1eb{bottom:709.890000px;}
.y2b0{bottom:712.101000px;}
.y9a{bottom:712.516500px;}
.y279{bottom:713.205000px;}
.y1ec{bottom:714.772500px;}
.y259{bottom:714.935832px;}
.y2b1{bottom:717.526500px;}
.y2b{bottom:717.657000px;}
.y261{bottom:719.614950px;}
.y332{bottom:720.570000px;}
.y179{bottom:720.606000px;}
.y2dd{bottom:720.793500px;}
.y112{bottom:721.690500px;}
.y5e{bottom:722.139000px;}
.y1ea{bottom:729.123000px;}
.y2ae{bottom:730.930500px;}
.y2af{bottom:736.356000px;}
.y2a{bottom:737.113500px;}
.y331{bottom:737.829000px;}
.y80{bottom:737.934000px;}
.y23a{bottom:738.622500px;}
.y2dc{bottom:739.623000px;}
.y111{bottom:740.520000px;}
.y5d{bottom:740.968500px;}
.y178{bottom:743.919000px;}
.y25f{bottom:746.524950px;}
.y2ad{bottom:749.760000px;}
.y1cf{bottom:754.540500px;}
.y330{bottom:755.089500px;}
.y29{bottom:756.571500px;}
.y2db{bottom:758.452500px;}
.y110{bottom:759.349500px;}
.y5c{bottom:759.798000px;}
.y25a{bottom:763.356489px;}
.y2ab{bottom:768.589500px;}
.y32f{bottom:772.350000px;}
.y260{bottom:773.434950px;}
.y2ac{bottom:774.015000px;}
.y177{bottom:774.346500px;}
.y10f{bottom:778.179000px;}
.y5b{bottom:778.627500px;}
.y2da{bottom:781.765500px;}
.y32e{bottom:789.610500px;}
.y2aa{bottom:791.902500px;}
.y176{bottom:793.579500px;}
.y28{bottom:795.156000px;}
.y10e{bottom:797.008500px;}
.y5a{bottom:797.457000px;}
.y25e{bottom:800.434950px;}
.y32d{bottom:806.871000px;}
.y25b{bottom:811.686601px;}
.y2d9{bottom:815.389500px;}
.y27{bottom:815.635500px;}
.y10d{bottom:815.838000px;}
.y166{bottom:816.009000px;}
.y59{bottom:816.286500px;}
.y2ff{bottom:821.262000px;}
.y32c{bottom:824.131500px;}
.y25d{bottom:827.344950px;}
.y26{bottom:827.436000px;}
.y2a9{bottom:828.838500px;}
.y2d8{bottom:834.219000px;}
.y10c{bottom:834.667500px;}
.y58{bottom:835.114500px;}
.y2fe{bottom:840.091500px;}
.y32b{bottom:841.392000px;}
.y2a8{bottom:847.668000px;}
.y25{bottom:847.915500px;}
.y2d7{bottom:853.048500px;}
.y10b{bottom:853.497000px;}
.y57{bottom:853.944000px;}
.y32a{bottom:858.652500px;}
.y2fd{bottom:858.921000px;}
.y24{bottom:859.714500px;}
.y2a7{bottom:866.497500px;}
.y2d6{bottom:871.878000px;}
.y10a{bottom:872.326500px;}
.y56{bottom:872.773500px;}
.y329{bottom:875.913000px;}
.y23{bottom:880.194000px;}
.y2a6{bottom:885.327000px;}
.y109{bottom:891.156000px;}
.y55{bottom:891.603000px;}
.y22{bottom:891.994500px;}
.y23c{bottom:892.685085px;}
.y328{bottom:893.172000px;}
.y2d5{bottom:895.189500px;}
.y23b{bottom:902.314950px;}
.y2a5{bottom:904.156500px;}
.y108{bottom:909.984000px;}
.y54{bottom:910.432500px;}
.y21{bottom:912.472500px;}
.y2fc{bottom:915.409500px;}
.y2a4{bottom:922.986000px;}
.y20{bottom:924.273000px;}
.y327{bottom:927.693000px;}
.y107{bottom:928.813500px;}
.y53{bottom:929.262000px;}
.y1f{bottom:940.413000px;}
.y326{bottom:944.953500px;}
.y2a3{bottom:946.299000px;}
.y106{bottom:947.643000px;}
.y52{bottom:948.091500px;}
.y2d4{bottom:953.068500px;}
.y1e{bottom:956.551500px;}
.y1d{bottom:960.892500px;}
.y325{bottom:962.214000px;}
.y105{bottom:966.472500px;}
.y51{bottom:966.921000px;}
.y2fb{bottom:970.956000px;}
.y2d3{bottom:971.898000px;}
.yc3{bottom:972.346500px;}
.y324{bottom:979.474500px;}
.y2a2{bottom:979.923000px;}
.y239{bottom:981.267000px;}
.y104{bottom:985.302000px;}
.y50{bottom:985.750500px;}
.y350{bottom:992.176500px;}
.y323{bottom:996.735000px;}
.y2a1{bottom:998.752500px;}
.y137{bottom:1000.096500px;}
.y2d2{bottom:1004.131500px;}
.y4f{bottom:1004.580000px;}
.y1c{bottom:1005.568500px;}
.y103{bottom:1008.615000px;}
.y34f{bottom:1009.437000px;}
.y7f{bottom:1010.005500px;}
.y322{bottom:1013.995500px;}
.y29f{bottom:1017.582000px;}
.y136{bottom:1018.926000px;}
.y2d1{bottom:1022.961000px;}
.y2a0{bottom:1023.006000px;}
.y4e{bottom:1023.409500px;}
.y1b{bottom:1024.398000px;}
.y34e{bottom:1026.697500px;}
.y321{bottom:1031.254500px;}
.y29e{bottom:1036.411500px;}
.y134{bottom:1037.755500px;}
.y2d0{bottom:1041.790500px;}
.y4d{bottom:1042.239000px;}
.y135{bottom:1043.181000px;}
.y181{bottom:1047.837885px;}
.y320{bottom:1048.515000px;}
.y29d{bottom:1055.241000px;}
.y133{bottom:1056.585000px;}
.y180{bottom:1057.467750px;}
.y4c{bottom:1061.068500px;}
.y1a{bottom:1064.728500px;}
.y2cf{bottom:1065.103500px;}
.y31f{bottom:1065.775500px;}
.yc2{bottom:1066.492500px;}
.y29c{bottom:1074.070500px;}
.y132{bottom:1075.414500px;}
.y4b{bottom:1079.898000px;}
.y31e{bottom:1083.036000px;}
.y192{bottom:1085.322000px;}
.y19{bottom:1092.972000px;}
.y131{bottom:1094.244000px;}
.y29b{bottom:1097.382000px;}
.y4a{bottom:1098.727500px;}
.y31d{bottom:1100.296500px;}
.y49{bottom:1117.557000px;}
.yc1{bottom:1122.981000px;}
.y16{bottom:1136.460000px;}
.y48{bottom:1177.662000px;}
.h42{height:21.838658px;}
.h40{height:21.838875px;}
.h41{height:22.048856px;}
.h48{height:22.051856px;}
.h46{height:22.258838px;}
.h43{height:26.206027px;}
.h51{height:26.311636px;}
.h4f{height:26.311898px;}
.h50{height:26.564887px;}
.h57{height:26.568501px;}
.h55{height:26.817877px;}
.h5a{height:27.855430px;}
.h1c{height:28.811839px;}
.h49{height:28.936449px;}
.hd{height:29.037733px;}
.h10{height:31.526842px;}
.h52{height:31.573527px;}
.h44{height:31.939151px;}
.h9{height:32.565965px;}
.h45{height:34.612231px;}
.h58{height:34.863191px;}
.h4a{height:35.510499px;}
.h3b{height:35.914068px;}
.h37{height:36.752108px;}
.h34{height:36.779467px;}
.h36{height:36.965558px;}
.h2d{height:37.334628px;}
.h30{height:37.637701px;}
.h2f{height:37.856294px;}
.h2{height:37.993262px;}
.h3d{height:38.394852px;}
.h53{height:38.480904px;}
.h26{height:38.942965px;}
.h22{height:39.851684px;}
.h21{height:40.083135px;}
.h19{height:41.250077px;}
.h3a{height:41.449746px;}
.h28{height:41.482876px;}
.h39{height:41.690479px;}
.h54{height:41.701483px;}
.h47{height:42.382648px;}
.h33{height:42.448535px;}
.h32{height:42.695068px;}
.h59{height:42.783734px;}
.he{height:43.038432px;}
.h18{height:43.269961px;}
.hb{height:43.421105px;}
.h3f{height:43.603717px;}
.ha{height:43.660208px;}
.h6{height:43.815515px;}
.h13{height:44.279648px;}
.h12{height:44.536816px;}
.h25{height:44.945508px;}
.h2c{height:44.946588px;}
.h24{height:45.206543px;}
.h3e{height:46.112253px;}
.h38{height:46.147384px;}
.h4c{height:46.258857px;}
.h3c{height:46.415399px;}
.h31{height:47.259369px;}
.hc{height:48.848947px;}
.h64{height:49.117939px;}
.h16{height:49.939453px;}
.h23{height:50.039332px;}
.h2a{height:50.040077px;}
.h2b{height:50.042086px;}
.h15{height:50.229492px;}
.h3{height:50.885293px;}
.h56{height:51.063431px;}
.h4e{height:52.534599px;}
.hf{height:54.276245px;}
.h4{height:54.413137px;}
.h62{height:54.995897px;}
.h8{height:55.352206px;}
.h4d{height:55.556931px;}
.h14{height:55.599258px;}
.h17{height:55.922168px;}
.h1b{height:57.523262px;}
.h5f{height:57.875897px;}
.h5c{height:62.946077px;}
.h5b{height:62.952077px;}
.h7{height:77.469696px;}
.h5d{height:84.285515px;}
.h60{height:94.746245px;}
.h61{height:95.280245px;}
.h5{height:103.643936px;}
.h5e{height:105.348245px;}
.h63{height:105.606077px;}
.h11{height:195.483000px;}
.h4b{height:227.970000px;}
.h1d{height:259.336500px;}
.h35{height:277.080975px;}
.h2e{height:291.851325px;}
.h20{height:316.495350px;}
.h1a{height:354.556500px;}
.h1f{height:375.280500px;}
.h29{height:381.106350px;}
.h27{height:434.094300px;}
.h1e{height:438.015000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:122.343167px;}
.w9{width:278.379000px;}
.wa{width:280.789200px;}
.w4{width:285.102000px;}
.w5{width:343.354500px;}
.w8{width:408.896100px;}
.wc{width:482.101350px;}
.w7{width:499.068000px;}
.wb{width:619.886003px;}
.w6{width:623.974950px;}
.w3{width:699.030450px;}
.wd{width:769.605600px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x63{left:-254.067000px;}
.x3a{left:-203.655000px;}
.x57{left:-195.253500px;}
.x48{left:-193.573500px;}
.x6c{left:-179.760600px;}
.x5e{left:-175.926600px;}
.x79{left:-164.850450px;}
.x8a{left:-145.503150px;}
.x89{left:-135.867097px;}
.x88{left:-131.609278px;}
.x87{left:-127.500450px;}
.x83{left:-116.146050px;}
.x8b{left:-108.078450px;}
.x84{left:-84.098739px;}
.x50{left:-80.989050px;}
.x8c{left:-71.475450px;}
.x85{left:-65.946501px;}
.x64{left:-58.497000px;}
.x86{left:-40.772710px;}
.x36{left:-32.258550px;}
.x65{left:-26.636406px;}
.x72{left:-18.373897px;}
.x9f{left:-10.413900px;}
.x3c{left:-8.085000px;}
.x6d{left:-3.747600px;}
.x7b{left:-2.527350px;}
.x0{left:0.000000px;}
.x4a{left:1.996500px;}
.xad{left:12.896100px;}
.x80{left:16.894650px;}
.x3d{left:23.775000px;}
.x6e{left:24.926400px;}
.x60{left:28.760935px;}
.x59{left:32.176500px;}
.x4b{left:33.856500px;}
.x7f{left:38.930769px;}
.x7e{left:46.251750px;}
.xa9{left:48.266100px;}
.x1{left:53.574000px;}
.xae{left:57.986100px;}
.x2{left:60.781714px;}
.x94{left:74.413650px;}
.x93{left:84.124573px;}
.xf6{left:85.848000px;}
.xaa{left:86.877318px;}
.x92{left:88.307522px;}
.x91{left:92.416350px;}
.x35{left:96.730050px;}
.xaf{left:102.086100px;}
.x8d{left:103.845450px;}
.xab{left:108.747484px;}
.x95{left:111.464850px;}
.x51{left:114.581310px;}
.x7d{left:116.021550px;}
.x4f{left:134.257050px;}
.x71{left:136.298873px;}
.xac{left:139.077353px;}
.x53{left:146.441544px;}
.x73{left:147.860908px;}
.x8e{left:153.968704px;}
.x37{left:163.311810px;}
.x74{left:174.942413px;}
.x8f{left:179.143026px;}
.x82{left:184.147950px;}
.xa1{left:185.156100px;}
.x39{left:195.172044px;}
.x78{left:205.194000px;}
.xa7{left:208.556100px;}
.x90{left:217.090210px;}
.xa6{left:226.105820px;}
.xa5{left:235.105641px;}
.xa4{left:243.926100px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.xde{left:254.173500px;}
.x44{left:255.448500px;}
.xe0{left:265.945500px;}
.x4{left:269.764500px;}
.xe1{left:273.637500px;}
.x67{left:276.753162px;}
.x66{left:277.922496px;}
.x8{left:281.479500px;}
.xb2{left:289.556007px;}
.x9c{left:294.255750px;}
.x5c{left:295.291500px;}
.x3b{left:300.165630px;}
.x62{left:301.811546px;}
.x61{left:302.863946px;}
.x9b{left:303.891973px;}
.x9a{left:308.074922px;}
.x5d{left:310.236000px;}
.x99{left:312.183750px;}
.xb0{left:313.316100px;}
.x2a{left:314.932500px;}
.x68{left:317.248500px;}
.x3e{left:322.729500px;}
.xa3{left:327.986100px;}
.x3f{left:329.155500px;}
.x22{left:330.238500px;}
.x2b{left:332.157000px;}
.x69{left:333.285000px;}
.xd7{left:338.395500px;}
.x23{left:345.183000px;}
.x2c{left:347.101500px;}
.x49{left:351.196365px;}
.x40{left:352.509000px;}
.x96{left:355.659102px;}
.x41{left:358.935000px;}
.x33{left:366.975000px;}
.x9d{left:368.283450px;}
.x34{left:371.124000px;}
.x97{left:373.810811px;}
.xd3{left:377.641500px;}
.x81{left:390.319950px;}
.x46{left:395.518500px;}
.x9e{left:397.192055px;}
.x98{left:398.910426px;}
.xe8{left:400.429500px;}
.x47{left:403.596000px;}
.xa8{left:410.066100px;}
.xe9{left:417.093000px;}
.x6{left:418.798500px;}
.x7{left:422.679000px;}
.xc0{left:428.389500px;}
.x5f{left:430.277789px;}
.xea{left:432.336000px;}
.xc1{left:434.815500px;}
.x27{left:437.581500px;}
.xeb{left:438.762000px;}
.xd5{left:442.494000px;}
.xf1{left:444.373500px;}
.xc2{left:447.000000px;}
.xb1{left:449.755570px;}
.x2d{left:451.047000px;}
.x28{left:452.526000px;}
.xe4{left:457.242000px;}
.xc3{left:459.105000px;}
.xc8{left:461.454000px;}
.x2e{left:465.990000px;}
.xf2{left:468.960000px;}
.xc4{left:471.274500px;}
.xba{left:477.375000px;}
.x7c{left:479.288218px;}
.x7a{left:481.976857px;}
.xc5{left:489.211500px;}
.xd1{left:491.958000px;}
.xc6{left:495.637500px;}
.x6f{left:499.497000px;}
.x11{left:502.813500px;}
.x58{left:504.586887px;}
.xe2{left:506.415000px;}
.xcc{left:508.293000px;}
.x12{left:510.285000px;}
.x13{left:512.850000px;}
.x70{left:513.915000px;}
.xe3{left:516.564000px;}
.x14{left:520.321500px;}
.xcd{left:523.236000px;}
.xef{left:524.841000px;}
.x24{left:527.043000px;}
.xf0{left:531.646500px;}
.x15{left:534.747000px;}
.x16{left:542.218500px;}
.x19{left:543.955500px;}
.x17{left:545.920500px;}
.x54{left:549.501000px;}
.xcb{left:552.129000px;}
.xb5{left:554.336007px;}
.xee{left:557.757000px;}
.x1a{left:558.898500px;}
.x18{left:560.865000px;}
.xb4{left:564.326100px;}
.x5a{left:568.411500px;}
.xd6{left:570.580500px;}
.x5b{left:575.554500px;}
.xe7{left:576.631500px;}
.x1b{left:578.493000px;}
.x55{left:583.374000px;}
.xf3{left:584.583000px;}
.xb6{left:587.276100px;}
.x56{left:591.067500px;}
.x1c{left:593.437500px;}
.xbb{left:601.549500px;}
.x1e{left:604.141500px;}
.x4c{left:611.236500px;}
.x4d{left:615.117000px;}
.xb3{left:616.706043px;}
.x1f{left:619.086000px;}
.x52{left:622.541202px;}
.x31{left:623.851500px;}
.xf{left:626.503500px;}
.xb7{left:631.916100px;}
.x10{left:633.976500px;}
.xe6{left:637.630500px;}
.x32{left:638.796000px;}
.xca{left:641.386500px;}
.xbc{left:652.864500px;}
.x25{left:659.337000px;}
.xe5{left:661.159500px;}
.xbd{left:664.845000px;}
.xb8{left:666.745744px;}
.xd{left:668.361000px;}
.x26{left:674.281500px;}
.xe{left:675.832500px;}
.xbe{left:684.763500px;}
.xf4{left:686.710500px;}
.x6a{left:693.114000px;}
.xce{left:694.569000px;}
.x6b{left:699.540000px;}
.xc7{left:700.822500px;}
.xf5{left:702.744000px;}
.x75{left:707.205000px;}
.xd2{left:708.721500px;}
.x45{left:712.831500px;}
.x38{left:714.921828px;}
.xdf{left:717.052500px;}
.x76{left:721.377000px;}
.xd9{left:723.333000px;}
.x2f{left:727.590000px;}
.xc9{left:733.582500px;}
.xda{left:735.624000px;}
.x77{left:738.883500px;}
.xb{left:740.347500px;}
.x30{left:742.534500px;}
.xc{left:747.820500px;}
.xcf{left:749.412000px;}
.xdb{left:753.487500px;}
.xd0{left:755.838000px;}
.xd4{left:758.866500px;}
.xdc{left:760.293000px;}
.x1d{left:763.360500px;}
.xa2{left:765.656784px;}
.xa0{left:768.896109px;}
.xdd{left:777.414000px;}
.x9{left:778.645500px;}
.xd8{left:784.704000px;}
.xa{left:786.117000px;}
.xec{left:789.661500px;}
.x4e{left:794.140500px;}
.x42{left:797.299500px;}
.xed{left:798.892500px;}
.x43{left:812.242500px;}
.x20{left:818.046000px;}
.xb9{left:823.636500px;}
.x21{left:832.990500px;}
.xbf{left:836.317500px;}
.x29{left:837.829500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v5{vertical-align:-13.440000pt;}
.v8{vertical-align:-12.096000pt;}
.v3{vertical-align:-10.629333pt;}
.v13{vertical-align:-7.968000pt;}
.vb{vertical-align:-1.858364pt;}
.vc{vertical-align:-0.962001pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:5.045140pt;}
.va{vertical-align:6.108576pt;}
.vd{vertical-align:7.359731pt;}
.v7{vertical-align:12.096662pt;}
.v4{vertical-align:13.431392pt;}
.ve{vertical-align:14.400213pt;}
.v6{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v11{vertical-align:21.845333pt;}
.v10{vertical-align:28.000000pt;}
.vf{vertical-align:35.973333pt;}
.v12{vertical-align:45.397333pt;}
.v14{vertical-align:57.205333pt;}
.ls48{letter-spacing:-1.159648pt;}
.ls12e{letter-spacing:-0.885165pt;}
.ls3b{letter-spacing:-0.881760pt;}
.ls12c{letter-spacing:-0.865922pt;}
.ls12d{letter-spacing:-0.853094pt;}
.ls12f{letter-spacing:-0.840265pt;}
.ls12b{letter-spacing:-0.808194pt;}
.ls11f{letter-spacing:-0.763200pt;}
.lsf5{letter-spacing:-0.734687pt;}
.lsf3{letter-spacing:-0.718716pt;}
.lsf4{letter-spacing:-0.708068pt;}
.ls130{letter-spacing:-0.698675pt;}
.lsf6{letter-spacing:-0.697420pt;}
.ls11b{letter-spacing:-0.676800pt;}
.lsf2{letter-spacing:-0.670801pt;}
.ls12a{letter-spacing:-0.644409pt;}
.lse4{letter-spacing:-0.633456pt;}
.ls11c{letter-spacing:-0.628800pt;}
.ls123{letter-spacing:-0.619200pt;}
.ls124{letter-spacing:-0.609600pt;}
.ls127{letter-spacing:-0.595200pt;}
.ls121{letter-spacing:-0.580800pt;}
.lsf7{letter-spacing:-0.579900pt;}
.lse0{letter-spacing:-0.561744pt;}
.ls125{letter-spacing:-0.561600pt;}
.ls120{letter-spacing:-0.547200pt;}
.ls11d{letter-spacing:-0.537600pt;}
.lsf1{letter-spacing:-0.534860pt;}
.ls126{letter-spacing:-0.528000pt;}
.lse1{letter-spacing:-0.521904pt;}
.ls137{letter-spacing:-0.516568pt;}
.lse8{letter-spacing:-0.513936pt;}
.ls13e{letter-spacing:-0.507421pt;}
.lse9{letter-spacing:-0.505968pt;}
.lsec{letter-spacing:-0.494016pt;}
.ls13c{letter-spacing:-0.488628pt;}
.lse6{letter-spacing:-0.482064pt;}
.ls11e{letter-spacing:-0.480000pt;}
.lsea{letter-spacing:-0.466128pt;}
.ls122{letter-spacing:-0.456000pt;}
.lse5{letter-spacing:-0.454176pt;}
.lse2{letter-spacing:-0.446208pt;}
.lseb{letter-spacing:-0.438240pt;}
.lsfe{letter-spacing:-0.428752pt;}
.ls105{letter-spacing:-0.421160pt;}
.ls103{letter-spacing:-0.405561pt;}
.lse3{letter-spacing:-0.398400pt;}
.lse7{letter-spacing:-0.378480pt;}
.ls138{letter-spacing:-0.328884pt;}
.ls8c{letter-spacing:-0.322243pt;}
.lsc5{letter-spacing:-0.304341pt;}
.lsff{letter-spacing:-0.272974pt;}
.ls52{letter-spacing:-0.268800pt;}
.ls38{letter-spacing:-0.256512pt;}
.ls136{letter-spacing:-0.237727pt;}
.ls53{letter-spacing:-0.230400pt;}
.lsd3{letter-spacing:-0.208080pt;}
.lsfd{letter-spacing:-0.197314pt;}
.ls2e{letter-spacing:-0.181696pt;}
.ls33{letter-spacing:-0.176352pt;}
.ls2d{letter-spacing:-0.154976pt;}
.ls59{letter-spacing:-0.149632pt;}
.ls45{letter-spacing:-0.144288pt;}
.lsd6{letter-spacing:-0.140814pt;}
.ls57{letter-spacing:-0.133600pt;}
.ls132{letter-spacing:-0.131715pt;}
.ls51{letter-spacing:-0.128256pt;}
.ls26{letter-spacing:-0.122912pt;}
.lsd5{letter-spacing:-0.118102pt;}
.ls47{letter-spacing:-0.117568pt;}
.lsd2{letter-spacing:-0.113560pt;}
.ls41{letter-spacing:-0.112224pt;}
.lsee{letter-spacing:-0.110888pt;}
.lsf9{letter-spacing:-0.109324pt;}
.lscc{letter-spacing:-0.109018pt;}
.ls43{letter-spacing:-0.106880pt;}
.lsc6{letter-spacing:-0.104475pt;}
.ls58{letter-spacing:-0.101536pt;}
.lsd0{letter-spacing:-0.099933pt;}
.ls37{letter-spacing:-0.096192pt;}
.ls8d{letter-spacing:-0.091382pt;}
.ls25{letter-spacing:-0.090848pt;}
.lsdc{letter-spacing:-0.088710pt;}
.lsc4{letter-spacing:-0.086306pt;}
.ls2f{letter-spacing:-0.085504pt;}
.lsce{letter-spacing:-0.081763pt;}
.ls133{letter-spacing:-0.080314pt;}
.ls3a{letter-spacing:-0.080160pt;}
.lscd{letter-spacing:-0.077221pt;}
.ls71{letter-spacing:-0.076954pt;}
.ls2b{letter-spacing:-0.074816pt;}
.ls8e{letter-spacing:-0.072144pt;}
.ls27{letter-spacing:-0.069472pt;}
.lsfa{letter-spacing:-0.066661pt;}
.ls39{letter-spacing:-0.064128pt;}
.lsd1{letter-spacing:-0.059051pt;}
.ls31{letter-spacing:-0.058784pt;}
.ls13a{letter-spacing:-0.054614pt;}
.lsca{letter-spacing:-0.054509pt;}
.ls36{letter-spacing:-0.053440pt;}
.lsd4{letter-spacing:-0.049966pt;}
.ls13b{letter-spacing:-0.048188pt;}
.ls28{letter-spacing:-0.048096pt;}
.ls101{letter-spacing:-0.045329pt;}
.lsed{letter-spacing:-0.044355pt;}
.ls29{letter-spacing:-0.042752pt;}
.ls102{letter-spacing:-0.039996pt;}
.lsdf{letter-spacing:-0.039920pt;}
.ls85{letter-spacing:-0.038880pt;}
.ls86{letter-spacing:-0.038477pt;}
.ls32{letter-spacing:-0.037408pt;}
.lsc8{letter-spacing:-0.036339pt;}
.ls87{letter-spacing:-0.033667pt;}
.ls54{letter-spacing:-0.033600pt;}
.ls46{letter-spacing:-0.032064pt;}
.lscb{letter-spacing:-0.031797pt;}
.lsdb{letter-spacing:-0.031049pt;}
.ls8a{letter-spacing:-0.028858pt;}
.ls129{letter-spacing:-0.028240pt;}
.ls2c{letter-spacing:-0.026720pt;}
.ls84{letter-spacing:-0.025920pt;}
.ls88{letter-spacing:-0.024048pt;}
.lsf0{letter-spacing:-0.023439pt;}
.lsdd{letter-spacing:-0.022178pt;}
.ls42{letter-spacing:-0.021376pt;}
.lscf{letter-spacing:-0.018170pt;}
.lsde{letter-spacing:-0.017742pt;}
.ls134{letter-spacing:-0.016063pt;}
.ls35{letter-spacing:-0.016032pt;}
.ls8b{letter-spacing:-0.014429pt;}
.ls55{letter-spacing:-0.014400pt;}
.lsfb{letter-spacing:-0.013332pt;}
.ls128{letter-spacing:-0.011296pt;}
.ls2a{letter-spacing:-0.010688pt;}
.ls11a{letter-spacing:-0.009600pt;}
.lsef{letter-spacing:-0.009376pt;}
.lsd9{letter-spacing:-0.007968pt;}
.ls34{letter-spacing:-0.005344pt;}
.ls74{letter-spacing:-0.004810pt;}
.ls30{letter-spacing:-0.004800pt;}
.lsc7{letter-spacing:-0.004542pt;}
.lsda{letter-spacing:-0.004436pt;}
.ls24{letter-spacing:-0.004256pt;}
.ls70{letter-spacing:-0.003830pt;}
.lsc3{letter-spacing:-0.003618pt;}
.lsd7{letter-spacing:-0.003532pt;}
.ls9{letter-spacing:0.000000pt;}
.ls16f{letter-spacing:0.000185pt;}
.ls50{letter-spacing:0.000269pt;}
.ls140{letter-spacing:0.000387pt;}
.ls166{letter-spacing:0.000494pt;}
.ls4{letter-spacing:0.000518pt;}
.ls6f{letter-spacing:0.000539pt;}
.ls146{letter-spacing:0.000607pt;}
.ls16b{letter-spacing:0.000621pt;}
.ls13f{letter-spacing:0.000747pt;}
.ls4f{letter-spacing:0.000955pt;}
.ls118{letter-spacing:0.001007pt;}
.ls145{letter-spacing:0.001721pt;}
.ls171{letter-spacing:0.001767pt;}
.ls149{letter-spacing:0.001774pt;}
.ls16c{letter-spacing:0.001825pt;}
.ls167{letter-spacing:0.001843pt;}
.ls148{letter-spacing:0.001935pt;}
.ls165{letter-spacing:0.002018pt;}
.ls4e{letter-spacing:0.002212pt;}
.ls1{letter-spacing:0.002422pt;}
.ls6e{letter-spacing:0.002525pt;}
.ls144{letter-spacing:0.002567pt;}
.ls23{letter-spacing:0.002825pt;}
.ls5{letter-spacing:0.003100pt;}
.ls170{letter-spacing:0.003890pt;}
.lsa9{letter-spacing:0.003984pt;}
.ls98{letter-spacing:0.004080pt;}
.ls169{letter-spacing:0.004267pt;}
.ls64{letter-spacing:0.004320pt;}
.lsb2{letter-spacing:0.004436pt;}
.ls143{letter-spacing:0.004695pt;}
.ls15{letter-spacing:0.004800pt;}
.ls6a{letter-spacing:0.004810pt;}
.ls14{letter-spacing:0.005344pt;}
.lsa7{letter-spacing:0.007968pt;}
.ls9e{letter-spacing:0.008160pt;}
.ls7f{letter-spacing:0.008640pt;}
.lsb5{letter-spacing:0.008871pt;}
.ls3e{letter-spacing:0.009600pt;}
.ls21{letter-spacing:0.010688pt;}
.lsd8{letter-spacing:0.011952pt;}
.lsb1{letter-spacing:0.013307pt;}
.ls97{letter-spacing:0.013627pt;}
.ls4b{letter-spacing:0.014400pt;}
.ls6b{letter-spacing:0.014429pt;}
.lsa8{letter-spacing:0.015936pt;}
.lsd{letter-spacing:0.016032pt;}
.lsaf{letter-spacing:0.017742pt;}
.ls19{letter-spacing:0.019200pt;}
.ls79{letter-spacing:0.019238pt;}
.ls9c{letter-spacing:0.020400pt;}
.ls13{letter-spacing:0.021376pt;}
.ls96{letter-spacing:0.022712pt;}
.ls5c{letter-spacing:0.024000pt;}
.ls82{letter-spacing:0.024048pt;}
.ls68{letter-spacing:0.025920pt;}
.ls10{letter-spacing:0.026720pt;}
.ls95{letter-spacing:0.027254pt;}
.ls18{letter-spacing:0.028800pt;}
.ls7c{letter-spacing:0.028858pt;}
.lsa1{letter-spacing:0.031792pt;}
.ls94{letter-spacing:0.031797pt;}
.ls1c{letter-spacing:0.032064pt;}
.ls8f{letter-spacing:0.032558pt;}
.ls9f{letter-spacing:0.032640pt;}
.ls7a{letter-spacing:0.033667pt;}
.ls61{letter-spacing:0.034474pt;}
.ls67{letter-spacing:0.034560pt;}
.lsa5{letter-spacing:0.035856pt;}
.ls92{letter-spacing:0.036339pt;}
.ls9a{letter-spacing:0.036720pt;}
.lsc0{letter-spacing:0.037330pt;}
.ls12{letter-spacing:0.037408pt;}
.lsa{letter-spacing:0.038304pt;}
.ls1e{letter-spacing:0.038400pt;}
.ls72{letter-spacing:0.038477pt;}
.ls66{letter-spacing:0.038880pt;}
.lsa6{letter-spacing:0.039840pt;}
.lsae{letter-spacing:0.039920pt;}
.ls1d{letter-spacing:0.042752pt;}
.ls5f{letter-spacing:0.043200pt;}
.lsa4{letter-spacing:0.043824pt;}
.ls114{letter-spacing:0.044976pt;}
.ls5d{letter-spacing:0.048000pt;}
.lsf{letter-spacing:0.048096pt;}
.lsb4{letter-spacing:0.048791pt;}
.lsac{letter-spacing:0.051792pt;}
.ls107{letter-spacing:0.052800pt;}
.ls7b{letter-spacing:0.052906pt;}
.ls104{letter-spacing:0.053329pt;}
.lse{letter-spacing:0.053440pt;}
.lsa0{letter-spacing:0.054509pt;}
.ls6c{letter-spacing:0.057715pt;}
.ls44{letter-spacing:0.058784pt;}
.lsc9{letter-spacing:0.059051pt;}
.ls17{letter-spacing:0.062400pt;}
.ls1b{letter-spacing:0.064128pt;}
.ls13d{letter-spacing:0.064251pt;}
.ls80{letter-spacing:0.064800pt;}
.ls69{letter-spacing:0.067334pt;}
.lsaa{letter-spacing:0.067728pt;}
.ls9d{letter-spacing:0.069360pt;}
.lsad{letter-spacing:0.071712pt;}
.ls5e{letter-spacing:0.072000pt;}
.lsbf{letter-spacing:0.074660pt;}
.ls20{letter-spacing:0.074816pt;}
.lsb0{letter-spacing:0.075404pt;}
.ls93{letter-spacing:0.077221pt;}
.ls108{letter-spacing:0.081600pt;}
.ls78{letter-spacing:0.081763pt;}
.ls109{letter-spacing:0.086400pt;}
.ls113{letter-spacing:0.089952pt;}
.ls11{letter-spacing:0.090848pt;}
.lsab{letter-spacing:0.091632pt;}
.ls9b{letter-spacing:0.093840pt;}
.ls77{letter-spacing:0.099360pt;}
.ls40{letter-spacing:0.106880pt;}
.ls1f{letter-spacing:0.110400pt;}
.ls7e{letter-spacing:0.112320pt;}
.lsb8{letter-spacing:0.125322pt;}
.lsa3{letter-spacing:0.127169pt;}
.ls4c{letter-spacing:0.129600pt;}
.ls91{letter-spacing:0.130234pt;}
.lsb3{letter-spacing:0.133066pt;}
.ls63{letter-spacing:0.134064pt;}
.lsa2{letter-spacing:0.134234pt;}
.ls99{letter-spacing:0.134640pt;}
.ls81{letter-spacing:0.134669pt;}
.ls90{letter-spacing:0.137469pt;}
.ls76{letter-spacing:0.137894pt;}
.lsba{letter-spacing:0.138654pt;}
.ls4d{letter-spacing:0.138944pt;}
.ls62{letter-spacing:0.145555pt;}
.lsc{letter-spacing:0.148960pt;}
.ls3f{letter-spacing:0.149632pt;}
.ls10c{letter-spacing:0.150991pt;}
.ls106{letter-spacing:0.153216pt;}
.ls1a{letter-spacing:0.158400pt;}
.ls56{letter-spacing:0.160320pt;}
.lsb{letter-spacing:0.161728pt;}
.lsbe{letter-spacing:0.162652pt;}
.ls10e{letter-spacing:0.167053pt;}
.lsb9{letter-spacing:0.175984pt;}
.ls112{letter-spacing:0.195966pt;}
.ls10d{letter-spacing:0.212029pt;}
.lsb6{letter-spacing:0.243768pt;}
.lsf8{letter-spacing:0.266643pt;}
.ls100{letter-spacing:0.274642pt;}
.ls10a{letter-spacing:0.293696pt;}
.lsfc{letter-spacing:0.309306pt;}
.ls131{letter-spacing:0.321257pt;}
.ls139{letter-spacing:0.330894pt;}
.lsb7{letter-spacing:0.351969pt;}
.ls135{letter-spacing:0.372658pt;}
.ls10b{letter-spacing:0.424059pt;}
.ls65{letter-spacing:0.432000pt;}
.ls6d{letter-spacing:0.480000pt;}
.lsbb{letter-spacing:0.551951pt;}
.ls14a{letter-spacing:0.596214pt;}
.ls141{letter-spacing:0.637762pt;}
.ls14f{letter-spacing:0.659985pt;}
.ls150{letter-spacing:0.661852pt;}
.ls14b{letter-spacing:0.663552pt;}
.ls10f{letter-spacing:0.665001pt;}
.ls151{letter-spacing:0.665067pt;}
.ls15d{letter-spacing:0.665318pt;}
.ls4a{letter-spacing:0.801600pt;}
.ls157{letter-spacing:1.009547pt;}
.ls15b{letter-spacing:1.436297pt;}
.ls73{letter-spacing:2.087366pt;}
.ls7d{letter-spacing:2.160000pt;}
.ls75{letter-spacing:2.319296pt;}
.ls155{letter-spacing:2.603185pt;}
.ls22{letter-spacing:2.656533pt;}
.ls147{letter-spacing:2.657067pt;}
.ls89{letter-spacing:2.664518pt;}
.ls3{letter-spacing:2.665203pt;}
.ls3d{letter-spacing:2.721600pt;}
.ls16{letter-spacing:3.038400pt;}
.ls142{letter-spacing:3.163733pt;}
.ls154{letter-spacing:3.345506pt;}
.ls156{letter-spacing:3.350839pt;}
.ls60{letter-spacing:4.879072pt;}
.ls5b{letter-spacing:4.958400pt;}
.ls0{letter-spacing:9.298933pt;}
.ls8{letter-spacing:10.626533pt;}
.ls162{letter-spacing:10.968429pt;}
.ls14e{letter-spacing:10.973762pt;}
.ls15f{letter-spacing:10.990400pt;}
.ls117{letter-spacing:11.710159pt;}
.ls119{letter-spacing:11.950933pt;}
.ls168{letter-spacing:11.954133pt;}
.ls16a{letter-spacing:11.959467pt;}
.ls16d{letter-spacing:12.122993pt;}
.ls49{letter-spacing:12.911530pt;}
.ls159{letter-spacing:12.963096pt;}
.ls2{letter-spacing:13.283733pt;}
.ls5a{letter-spacing:13.389734pt;}
.ls161{letter-spacing:13.651511pt;}
.ls14d{letter-spacing:13.767835pt;}
.ls172{letter-spacing:13.843493pt;}
.ls15c{letter-spacing:13.917762pt;}
.ls3c{letter-spacing:13.923096pt;}
.ls16e{letter-spacing:14.204277pt;}
.ls83{letter-spacing:14.608533pt;}
.ls15e{letter-spacing:15.400429pt;}
.ls14c{letter-spacing:16.025548pt;}
.ls152{letter-spacing:16.089318pt;}
.ls160{letter-spacing:17.347096pt;}
.ls158{letter-spacing:21.773762pt;}
.ls164{letter-spacing:41.352429pt;}
.ls6{letter-spacing:55.787733pt;}
.ls7{letter-spacing:57.174803pt;}
.ls153{letter-spacing:59.528429pt;}
.ls163{letter-spacing:62.216845pt;}
.lsbc{letter-spacing:89.215599pt;}
.lsc2{letter-spacing:89.749084pt;}
.lsc1{letter-spacing:96.398211pt;}
.lsbd{letter-spacing:96.666719pt;}
.ls110{letter-spacing:107.488673pt;}
.ls116{letter-spacing:108.131426pt;}
.ls115{letter-spacing:116.142422pt;}
.ls111{letter-spacing:116.465927pt;}
.ls15a{letter-spacing:205.409630pt;}
.ws6e{word-spacing:-53.440000pt;}
.ws16a{word-spacing:-48.096000pt;}
.ws125{word-spacing:-48.000000pt;}
.ws122{word-spacing:-42.077867pt;}
.ws127{word-spacing:-38.755733pt;}
.wsb{word-spacing:-33.970480pt;}
.ws20f{word-spacing:-18.158769pt;}
.ws20e{word-spacing:-15.995136pt;}
.ws1ab{word-spacing:-15.071778pt;}
.ws105{word-spacing:-13.360000pt;}
.wse{word-spacing:-13.283467pt;}
.ws1aa{word-spacing:-13.275963pt;}
.ws12{word-spacing:-12.760670pt;}
.ws75{word-spacing:-12.000000pt;}
.ws76{word-spacing:-11.955200pt;}
.ws1a8{word-spacing:-11.088800pt;}
.ws6b{word-spacing:-10.801728pt;}
.ws167{word-spacing:-10.800000pt;}
.ws6c{word-spacing:-10.640000pt;}
.ws18{word-spacing:-10.626800pt;}
.ws11{word-spacing:-10.095467pt;}
.ws1a7{word-spacing:-9.960000pt;}
.ws146{word-spacing:-9.721555pt;}
.ws147{word-spacing:-9.576000pt;}
.ws214{word-spacing:-9.303589pt;}
.ws3{word-spacing:-9.298400pt;}
.ws215{word-spacing:-9.261826pt;}
.ws211{word-spacing:-9.252188pt;}
.ws19c{word-spacing:-9.181469pt;}
.ws19d{word-spacing:-9.044000pt;}
.ws1a3{word-spacing:-8.965434pt;}
.ws210{word-spacing:-8.930931pt;}
.ws213{word-spacing:-8.914869pt;}
.ws217{word-spacing:-8.882743pt;}
.ws216{word-spacing:-8.876318pt;}
.ws212{word-spacing:-8.850617pt;}
.ws1a4{word-spacing:-8.831200pt;}
.ws6f{word-spacing:-8.000000pt;}
.ws1b0{word-spacing:-7.721979pt;}
.ws1b1{word-spacing:-7.687315pt;}
.ws1ad{word-spacing:-7.679316pt;}
.ws1ac{word-spacing:-7.412673pt;}
.ws1af{word-spacing:-7.399341pt;}
.ws1b3{word-spacing:-7.372677pt;}
.ws1b2{word-spacing:-7.367344pt;}
.ws74{word-spacing:-7.360000pt;}
.ws1ae{word-spacing:-7.346012pt;}
.ws168{word-spacing:-7.200000pt;}
.ws19f{word-spacing:-6.800000pt;}
.ws169{word-spacing:-6.624000pt;}
.ws1a0{word-spacing:-6.256000pt;}
.ws97{word-spacing:-3.120896pt;}
.wsf6{word-spacing:-3.104864pt;}
.wsf7{word-spacing:-3.094176pt;}
.ws81{word-spacing:-3.072800pt;}
.ws80{word-spacing:-3.051424pt;}
.ws9a{word-spacing:-3.035392pt;}
.ws98{word-spacing:-2.965920pt;}
.ws99{word-spacing:-2.939200pt;}
.ws248{word-spacing:-2.869229pt;}
.ws249{word-spacing:-2.816095pt;}
.ws86{word-spacing:-2.506336pt;}
.ws22e{word-spacing:-2.500992pt;}
.ws22f{word-spacing:-2.495648pt;}
.ws87{word-spacing:-2.468928pt;}
.ws23d{word-spacing:-2.428800pt;}
.ws241{word-spacing:-2.426176pt;}
.ws23c{word-spacing:-2.419200pt;}
.ws62{word-spacing:-2.391024pt;}
.ws252{word-spacing:-2.289067pt;}
.ws58{word-spacing:-2.284756pt;}
.ws119{word-spacing:-2.201728pt;}
.ws7a{word-spacing:-2.175008pt;}
.wscb{word-spacing:-2.164320pt;}
.ws163{word-spacing:-2.153632pt;}
.wse8{word-spacing:-2.126912pt;}
.ws254{word-spacing:-2.125355pt;}
.ws9f{word-spacing:-2.121568pt;}
.ws9e{word-spacing:-2.100192pt;}
.ws1ef{word-spacing:-2.075823pt;}
.ws53{word-spacing:-2.072221pt;}
.ws1f0{word-spacing:-2.071388pt;}
.ws51{word-spacing:-2.019087pt;}
.ws201{word-spacing:-2.015904pt;}
.ws206{word-spacing:-2.013726pt;}
.ws200{word-spacing:-2.007936pt;}
.wsa0{word-spacing:-1.982624pt;}
.ws5d{word-spacing:-1.965953pt;}
.ws157{word-spacing:-1.957507pt;}
.ws158{word-spacing:-1.938269pt;}
.wsbf{word-spacing:-1.912832pt;}
.ws5e{word-spacing:-1.912819pt;}
.ws140{word-spacing:-1.849024pt;}
.wsc{word-spacing:-1.817190pt;}
.ws104{word-spacing:-1.806551pt;}
.wsea{word-spacing:-1.790240pt;}
.wse9{word-spacing:-1.779552pt;}
.wsc9{word-spacing:-1.768864pt;}
.ws103{word-spacing:-1.753418pt;}
.wsca{word-spacing:-1.726112pt;}
.wse7{word-spacing:-1.720768pt;}
.ws2e{word-spacing:-1.647150pt;}
.ws1c2{word-spacing:-1.585298pt;}
.ws142{word-spacing:-1.555104pt;}
.wsb3{word-spacing:-1.549760pt;}
.wsb4{word-spacing:-1.517696pt;}
.ws1c1{word-spacing:-1.508077pt;}
.ws55{word-spacing:-1.487748pt;}
.ws141{word-spacing:-1.442880pt;}
.ws149{word-spacing:-1.434614pt;}
.ws193{word-spacing:-1.404403pt;}
.ws24b{word-spacing:-1.381481pt;}
.ws128{word-spacing:-1.275213pt;}
.ws195{word-spacing:-1.274544pt;}
.wsaf{word-spacing:-1.255840pt;}
.wse1{word-spacing:-1.250496pt;}
.ws107{word-spacing:-1.229120pt;}
.ws109{word-spacing:-1.218432pt;}
.ws243{word-spacing:-1.207744pt;}
.ws23e{word-spacing:-1.200000pt;}
.ws143{word-spacing:-1.175680pt;}
.ws5a{word-spacing:-1.168945pt;}
.ws226{word-spacing:-1.166400pt;}
.ws221{word-spacing:-1.115811pt;}
.ws231{word-spacing:-1.095520pt;}
.ws189{word-spacing:-1.077350pt;}
.ws242{word-spacing:-1.068800pt;}
.ws250{word-spacing:-1.049929pt;}
.ws1d9{word-spacing:-1.022040pt;}
.ws175{word-spacing:-1.010880pt;}
.ws129{word-spacing:-1.009543pt;}
.ws208{word-spacing:-1.002428pt;}
.ws18a{word-spacing:-1.000397pt;}
.ws202{word-spacing:-0.996000pt;}
.ws173{word-spacing:-0.980640pt;}
.ws1f4{word-spacing:-0.975814pt;}
.ws1e7{word-spacing:-0.968112pt;}
.ws174{word-spacing:-0.967680pt;}
.ws1d8{word-spacing:-0.967531pt;}
.wsc0{word-spacing:-0.956410pt;}
.wsd7{word-spacing:-0.940544pt;}
.ws23f{word-spacing:-0.912000pt;}
.ws1f3{word-spacing:-0.909282pt;}
.ws207{word-spacing:-0.887104pt;}
.wsd6{word-spacing:-0.876416pt;}
.wsf8{word-spacing:-0.871072pt;}
.wsd5{word-spacing:-0.865728pt;}
.ws14a{word-spacing:-0.860774pt;}
.wsb5{word-spacing:-0.855040pt;}
.ws40{word-spacing:-0.850142pt;}
.ws191{word-spacing:-0.822442pt;}
.ws14b{word-spacing:-0.812954pt;}
.ws1c4{word-spacing:-0.785835pt;}
.ws1c3{word-spacing:-0.763123pt;}
.ws194{word-spacing:-0.759917pt;}
.wsef{word-spacing:-0.758848pt;}
.ws203{word-spacing:-0.756960pt;}
.ws54{word-spacing:-0.690740pt;}
.ws1a1{word-spacing:-0.669491pt;}
.ws63{word-spacing:-0.637606pt;}
.wsec{word-spacing:-0.587840pt;}
.ws25c{word-spacing:-0.584473pt;}
.wsd0{word-spacing:-0.582496pt;}
.wsee{word-spacing:-0.571808pt;}
.ws100{word-spacing:-0.531339pt;}
.ws49{word-spacing:-0.478205pt;}
.ws131{word-spacing:-0.475616pt;}
.wsd1{word-spacing:-0.454240pt;}
.ws46{word-spacing:-0.425071pt;}
.wsfe{word-spacing:-0.371937pt;}
.wse5{word-spacing:-0.347360pt;}
.ws23b{word-spacing:-0.345600pt;}
.ws126{word-spacing:-0.334746pt;}
.ws42{word-spacing:-0.318803pt;}
.ws15e{word-spacing:-0.315296pt;}
.ws8f{word-spacing:-0.304608pt;}
.ws22c{word-spacing:-0.299264pt;}
.wsd2{word-spacing:-0.288576pt;}
.ws1b5{word-spacing:-0.286925pt;}
.ws1ff{word-spacing:-0.286848pt;}
.ws152{word-spacing:-0.283766pt;}
.wse4{word-spacing:-0.277888pt;}
.wsf0{word-spacing:-0.272544pt;}
.wsdf{word-spacing:-0.267200pt;}
.ws32{word-spacing:-0.265669pt;}
.ws238{word-spacing:-0.264000pt;}
.ws219{word-spacing:-0.262927pt;}
.ws1d7{word-spacing:-0.258917pt;}
.ws23a{word-spacing:-0.254400pt;}
.ws260{word-spacing:-0.249680pt;}
.ws1ed{word-spacing:-0.248389pt;}
.ws77{word-spacing:-0.242592pt;}
.ws27{word-spacing:-0.239104pt;}
.ws1d0{word-spacing:-0.231662pt;}
.wsf1{word-spacing:-0.229792pt;}
.ws244{word-spacing:-0.225521pt;}
.ws25e{word-spacing:-0.222128pt;}
.ws22b{word-spacing:-0.220800pt;}
.ws1fc{word-spacing:-0.219120pt;}
.ws106{word-spacing:-0.219104pt;}
.ws14c{word-spacing:-0.218333pt;}
.wsd3{word-spacing:-0.213760pt;}
.ws35{word-spacing:-0.212535pt;}
.ws224{word-spacing:-0.211200pt;}
.ws1fe{word-spacing:-0.211152pt;}
.wsda{word-spacing:-0.208416pt;}
.ws1b6{word-spacing:-0.206203pt;}
.ws1e1{word-spacing:-0.201351pt;}
.wsdc{word-spacing:-0.197728pt;}
.wsdb{word-spacing:-0.192384pt;}
.ws21b{word-spacing:-0.191283pt;}
.ws15d{word-spacing:-0.187200pt;}
.ws209{word-spacing:-0.187182pt;}
.ws1ec{word-spacing:-0.183264pt;}
.ws1e5{word-spacing:-0.175296pt;}
.ws237{word-spacing:-0.172800pt;}
.ws151{word-spacing:-0.168480pt;}
.wse0{word-spacing:-0.165664pt;}
.ws2d{word-spacing:-0.159402pt;}
.ws223{word-spacing:-0.158400pt;}
.wsf9{word-spacing:-0.144288pt;}
.ws20{word-spacing:-0.143462pt;}
.ws1fb{word-spacing:-0.143424pt;}
.ws1e4{word-spacing:-0.131472pt;}
.ws236{word-spacing:-0.124800pt;}
.ws34{word-spacing:-0.106268pt;}
.ws1fa{word-spacing:-0.103584pt;}
.wsd9{word-spacing:-0.096192pt;}
.ws262{word-spacing:-0.095642pt;}
.ws78{word-spacing:-0.076608pt;}
.ws14d{word-spacing:-0.068947pt;}
.ws245{word-spacing:-0.065777pt;}
.ws1b7{word-spacing:-0.065117pt;}
.ws1e2{word-spacing:-0.063585pt;}
.ws20a{word-spacing:-0.054595pt;}
.ws6d{word-spacing:-0.053440pt;}
.wsd{word-spacing:-0.053134pt;}
.ws16b{word-spacing:-0.048096pt;}
.ws124{word-spacing:-0.048000pt;}
.ws21{word-spacing:-0.047821pt;}
.ws246{word-spacing:-0.046983pt;}
.ws19e{word-spacing:-0.045424pt;}
.ws1a6{word-spacing:-0.044355pt;}
.wsed{word-spacing:-0.042752pt;}
.ws16{word-spacing:-0.042507pt;}
.ws1a5{word-spacing:-0.039840pt;}
.ws20b{word-spacing:-0.038996pt;}
.ws239{word-spacing:-0.038400pt;}
.ws4{word-spacing:-0.037194pt;}
.ws1fd{word-spacing:-0.031872pt;}
.ws21c{word-spacing:-0.005470pt;}
.ws10{word-spacing:-0.004015pt;}
.ws21d{word-spacing:-0.002688pt;}
.ws14{word-spacing:-0.000140pt;}
.ws1{word-spacing:0.000000pt;}
.ws88{word-spacing:0.005344pt;}
.ws15a{word-spacing:0.014429pt;}
.ws165{word-spacing:0.016032pt;}
.ws116{word-spacing:0.021376pt;}
.ws1e0{word-spacing:0.040882pt;}
.ws13b{word-spacing:0.042752pt;}
.ws180{word-spacing:0.043286pt;}
.ws24{word-spacing:0.047821pt;}
.wsb6{word-spacing:0.048096pt;}
.ws37{word-spacing:0.053134pt;}
.ws8e{word-spacing:0.053440pt;}
.ws19a{word-spacing:0.057715pt;}
.ws1ee{word-spacing:0.066533pt;}
.wsd4{word-spacing:0.069472pt;}
.ws185{word-spacing:0.077760pt;}
.ws22d{word-spacing:0.080160pt;}
.ws15{word-spacing:0.085014pt;}
.wsa2{word-spacing:0.085504pt;}
.ws204{word-spacing:0.095616pt;}
.ws25{word-spacing:0.095642pt;}
.ws8b{word-spacing:0.096000pt;}
.wsa3{word-spacing:0.096192pt;}
.ws4d{word-spacing:0.106268pt;}
.ws1f9{word-spacing:0.106452pt;}
.ws130{word-spacing:0.115200pt;}
.ws9c{word-spacing:0.120000pt;}
.ws199{word-spacing:0.120240pt;}
.ws9b{word-spacing:0.122912pt;}
.wsc7{word-spacing:0.124800pt;}
.ws17{word-spacing:0.127522pt;}
.ws235{word-spacing:0.128256pt;}
.ws8c{word-spacing:0.129600pt;}
.ws1d6{word-spacing:0.130560pt;}
.wsb0{word-spacing:0.133600pt;}
.ws184{word-spacing:0.133920pt;}
.ws8d{word-spacing:0.139200pt;}
.ws1eb{word-spacing:0.139440pt;}
.ws176{word-spacing:0.142560pt;}
.ws26{word-spacing:0.143462pt;}
.ws36{word-spacing:0.159402pt;}
.ws9d{word-spacing:0.163200pt;}
.ws22a{word-spacing:0.168000pt;}
.ws115{word-spacing:0.172800pt;}
.ws11e{word-spacing:0.176352pt;}
.ws11f{word-spacing:0.181696pt;}
.ws275{word-spacing:0.191283pt;}
.ws114{word-spacing:0.192000pt;}
.ws38{word-spacing:0.212535pt;}
.ws120{word-spacing:0.229792pt;}
.ws263{word-spacing:0.239104pt;}
.ws30{word-spacing:0.265669pt;}
.ws21f{word-spacing:0.318803pt;}
.ws28{word-spacing:0.334746pt;}
.wsf2{word-spacing:0.368736pt;}
.ws1d2{word-spacing:0.371280pt;}
.wsab{word-spacing:0.390112pt;}
.ws150{word-spacing:0.393120pt;}
.ws1d1{word-spacing:0.403920pt;}
.ws1c8{word-spacing:0.417901pt;}
.ws1c9{word-spacing:0.422443pt;}
.ws14f{word-spacing:0.427680pt;}
.ws1c7{word-spacing:0.431528pt;}
.ws172{word-spacing:0.432000pt;}
.ws15c{word-spacing:0.436800pt;}
.wsac{word-spacing:0.459584pt;}
.wsf3{word-spacing:0.470272pt;}
.ws15b{word-spacing:0.475200pt;}
.wsbc{word-spacing:0.478205pt;}
.ws1b{word-spacing:0.478208pt;}
.ws247{word-spacing:0.505333pt;}
.ws20c{word-spacing:0.531339pt;}
.ws255{word-spacing:0.584473pt;}
.ws270{word-spacing:0.621670pt;}
.ws1ca{word-spacing:0.631394pt;}
.ws256{word-spacing:0.637606pt;}
.ws93{word-spacing:0.657312pt;}
.ws190{word-spacing:0.663725pt;}
.ws18f{word-spacing:0.682963pt;}
.ws3d{word-spacing:0.690740pt;}
.ws7f{word-spacing:0.694720pt;}
.ws1cb{word-spacing:0.713157pt;}
.ws85{word-spacing:0.716096pt;}
.ws3a{word-spacing:0.743874pt;}
.ws110{word-spacing:0.787200pt;}
.ws10f{word-spacing:0.796800pt;}
.ws166{word-spacing:0.797008pt;}
.ws112{word-spacing:0.801600pt;}
.ws28b{word-spacing:0.812954pt;}
.ws66{word-spacing:0.850142pt;}
.ws265{word-spacing:0.860774pt;}
.ws186{word-spacing:0.904205pt;}
.ws192{word-spacing:0.933062pt;}
.ws3e{word-spacing:0.956410pt;}
.ws57{word-spacing:1.009543pt;}
.ws10e{word-spacing:1.020704pt;}
.wsce{word-spacing:1.031392pt;}
.ws113{word-spacing:1.032000pt;}
.ws13f{word-spacing:1.047424pt;}
.ws277{word-spacing:1.052058pt;}
.ws4a{word-spacing:1.062677pt;}
.ws111{word-spacing:1.070400pt;}
.ws282{word-spacing:1.099878pt;}
.wsae{word-spacing:1.106208pt;}
.ws220{word-spacing:1.115811pt;}
.ws92{word-spacing:1.116896pt;}
.ws10d{word-spacing:1.170336pt;}
.ws196{word-spacing:1.216829pt;}
.wsa{word-spacing:1.227389pt;}
.ws266{word-spacing:1.291162pt;}
.wsad{word-spacing:1.325312pt;}
.ws73{word-spacing:1.328347pt;}
.ws1f8{word-spacing:1.375011pt;}
.ws286{word-spacing:1.482445pt;}
.ws71{word-spacing:1.487748pt;}
.ws205{word-spacing:1.645578pt;}
.ws170{word-spacing:1.647150pt;}
.ws234{word-spacing:1.656640pt;}
.ws26e{word-spacing:1.673728pt;}
.ws3b{word-spacing:1.700284pt;}
.ws5f{word-spacing:1.753418pt;}
.ws188{word-spacing:1.765123pt;}
.ws1c{word-spacing:1.769370pt;}
.ws4e{word-spacing:1.806551pt;}
.wsc3{word-spacing:1.859685pt;}
.ws27b{word-spacing:1.865011pt;}
.ws121{word-spacing:1.912819pt;}
.ws288{word-spacing:1.912832pt;}
.ws1f5{word-spacing:1.920580pt;}
.ws21e{word-spacing:1.965953pt;}
.ws1e9{word-spacing:1.976064pt;}
.ws240{word-spacing:1.982624pt;}
.ws1e8{word-spacing:1.984032pt;}
.ws1ea{word-spacing:1.988016pt;}
.ws108{word-spacing:1.993312pt;}
.ws102{word-spacing:2.019087pt;}
.ws82{word-spacing:2.041408pt;}
.ws183{word-spacing:2.047680pt;}
.ws155{word-spacing:2.048890pt;}
.ws1e{word-spacing:2.104115pt;}
.ws187{word-spacing:2.111414pt;}
.ws12b{word-spacing:2.125355pt;}
.ws182{word-spacing:2.125440pt;}
.ws259{word-spacing:2.140082pt;}
.ws181{word-spacing:2.155680pt;}
.ws1f2{word-spacing:2.222196pt;}
.ws0{word-spacing:2.232481pt;}
.ws1cf{word-spacing:2.243946pt;}
.ws272{word-spacing:2.247578pt;}
.ws1c5{word-spacing:2.275742pt;}
.ws161{word-spacing:2.276544pt;}
.ws2b{word-spacing:2.284756pt;}
.ws1cd{word-spacing:2.302997pt;}
.ws232{word-spacing:2.313952pt;}
.ws13c{word-spacing:2.324640pt;}
.ws1cc{word-spacing:2.330251pt;}
.ws1bb{word-spacing:2.334794pt;}
.ws50{word-spacing:2.337890pt;}
.ws1bc{word-spacing:2.348421pt;}
.ws1c6{word-spacing:2.352963pt;}
.ws1ce{word-spacing:2.357506pt;}
.ws159{word-spacing:2.375942pt;}
.ws228{word-spacing:2.380800pt;}
.ws227{word-spacing:2.390400pt;}
.ws280{word-spacing:2.391040pt;}
.ws229{word-spacing:2.395200pt;}
.wsa9{word-spacing:2.415488pt;}
.ws69{word-spacing:2.444158pt;}
.ws1f1{word-spacing:2.461714pt;}
.ws1e6{word-spacing:2.486016pt;}
.ws25b{word-spacing:2.497292pt;}
.wsc2{word-spacing:2.550426pt;}
.ws19{word-spacing:2.550432pt;}
.wsaa{word-spacing:2.575808pt;}
.ws7c{word-spacing:2.586496pt;}
.ws13a{word-spacing:2.602528pt;}
.ws257{word-spacing:2.603559pt;}
.ws164{word-spacing:2.639936pt;}
.ws52{word-spacing:2.656693pt;}
.ws145{word-spacing:2.666656pt;}
.ws18c{word-spacing:2.669328pt;}
.ws138{word-spacing:2.677344pt;}
.wsa8{word-spacing:2.693376pt;}
.wsc5{word-spacing:2.712000pt;}
.wsc4{word-spacing:2.716800pt;}
.ws139{word-spacing:2.720096pt;}
.ws7b{word-spacing:2.730784pt;}
.ws64{word-spacing:2.762961pt;}
.ws1dd{word-spacing:2.766322pt;}
.ws5c{word-spacing:2.816095pt;}
.ws13d{word-spacing:2.816288pt;}
.ws26a{word-spacing:2.860663pt;}
.ws29{word-spacing:2.861926pt;}
.ws27c{word-spacing:2.865860pt;}
.wsbd{word-spacing:2.869229pt;}
.ws1b4{word-spacing:2.869248pt;}
.ws18d{word-spacing:2.924237pt;}
.ws18e{word-spacing:2.929046pt;}
.wsc8{word-spacing:2.933856pt;}
.ws118{word-spacing:2.939200pt;}
.ws230{word-spacing:2.965920pt;}
.ws10b{word-spacing:2.971264pt;}
.ws16f{word-spacing:2.975497pt;}
.ws18b{word-spacing:2.981952pt;}
.ws225{word-spacing:2.995200pt;}
.ws10a{word-spacing:2.997984pt;}
.ws1f6{word-spacing:3.007283pt;}
.ws1f7{word-spacing:3.011718pt;}
.ws4c{word-spacing:3.028630pt;}
.ws89{word-spacing:3.033600pt;}
.ws8a{word-spacing:3.038400pt;}
.ws123{word-spacing:3.081764pt;}
.ws28d{word-spacing:3.108352pt;}
.ws12a{word-spacing:3.134898pt;}
.ws24a{word-spacing:3.186667pt;}
.ws2a{word-spacing:3.188032pt;}
.ws24c{word-spacing:3.190167pt;}
.ws17e{word-spacing:3.227242pt;}
.ws17d{word-spacing:3.275338pt;}
.ws47{word-spacing:3.294300pt;}
.ws198{word-spacing:3.313814pt;}
.wsbe{word-spacing:3.347434pt;}
.ws5b{word-spacing:3.400567pt;}
.ws3c{word-spacing:3.453701pt;}
.ws1d{word-spacing:3.490918pt;}
.ws3f{word-spacing:3.506835pt;}
.wsb2{word-spacing:3.553760pt;}
.ws94{word-spacing:3.559104pt;}
.ws31{word-spacing:3.559969pt;}
.ws197{word-spacing:3.578342pt;}
.ws84{word-spacing:3.580480pt;}
.ws96{word-spacing:3.596512pt;}
.ws4f{word-spacing:3.613103pt;}
.ws233{word-spacing:3.623232pt;}
.ws95{word-spacing:3.628576pt;}
.ws11a{word-spacing:3.762176pt;}
.wsff{word-spacing:3.772505pt;}
.ws44{word-spacing:3.825638pt;}
.wsa7{word-spacing:3.863712pt;}
.ws43{word-spacing:3.878772pt;}
.wsf5{word-spacing:3.879744pt;}
.wsa1{word-spacing:3.885088pt;}
.wscf{word-spacing:3.895776pt;}
.wsa6{word-spacing:3.938528pt;}
.ws132{word-spacing:3.959904pt;}
.wsc6{word-spacing:3.969600pt;}
.wsf4{word-spacing:3.997312pt;}
.ws16e{word-spacing:4.038174pt;}
.ws1a{word-spacing:4.050752pt;}
.ws1bf{word-spacing:4.088160pt;}
.ws2f{word-spacing:4.091308pt;}
.ws1be{word-spacing:4.115414pt;}
.ws1c0{word-spacing:4.119957pt;}
.ws1bd{word-spacing:4.183550pt;}
.wsa4{word-spacing:4.189696pt;}
.ws65{word-spacing:4.197575pt;}
.ws83{word-spacing:4.200384pt;}
.ws267{word-spacing:4.208230pt;}
.ws269{word-spacing:4.256051pt;}
.ws67{word-spacing:4.303843pt;}
.ws1f{word-spacing:4.303872pt;}
.ws11b{word-spacing:4.307264pt;}
.wsa5{word-spacing:4.328640pt;}
.ws179{word-spacing:4.338259pt;}
.ws17a{word-spacing:4.357498pt;}
.ws17f{word-spacing:4.395974pt;}
.ws1a2{word-spacing:4.463245pt;}
.ws90{word-spacing:4.526368pt;}
.ws91{word-spacing:4.537056pt;}
.ws117{word-spacing:4.579808pt;}
.wsb7{word-spacing:4.601184pt;}
.ws45{word-spacing:4.675780pt;}
.ws1d5{word-spacing:4.728720pt;}
.ws1d3{word-spacing:4.740960pt;}
.ws1d4{word-spacing:4.753200pt;}
.ws264{word-spacing:4.760260pt;}
.ws16d{word-spacing:4.782048pt;}
.ws23{word-spacing:4.829901pt;}
.ws6a{word-spacing:4.835182pt;}
.ws13e{word-spacing:4.847008pt;}
.ws8{word-spacing:4.872362pt;}
.ws12e{word-spacing:4.886400pt;}
.ws12f{word-spacing:4.910400pt;}
.ws17b{word-spacing:4.929840pt;}
.ws12d{word-spacing:4.934400pt;}
.wsc1{word-spacing:4.941450pt;}
.ws12c{word-spacing:4.953600pt;}
.ws17c{word-spacing:4.973126pt;}
.ws68{word-spacing:4.994583pt;}
.ws16c{word-spacing:5.047717pt;}
.ws48{word-spacing:5.100851pt;}
.ws2c{word-spacing:5.153985pt;}
.wseb{word-spacing:5.172992pt;}
.ws72{word-spacing:5.207119pt;}
.wsb1{word-spacing:5.279872pt;}
.ws101{word-spacing:5.313387pt;}
.ws59{word-spacing:5.366521pt;}
.ws39{word-spacing:5.419654pt;}
.wsdd{word-spacing:5.493632pt;}
.wsde{word-spacing:5.509664pt;}
.ws19b{word-spacing:5.526230pt;}
.ws22{word-spacing:5.786317pt;}
.wse3{word-spacing:5.819616pt;}
.ws4b{word-spacing:5.844725pt;}
.ws289{word-spacing:5.881958pt;}
.ws1de{word-spacing:5.896035pt;}
.ws1df{word-spacing:5.918747pt;}
.ws133{word-spacing:5.942528pt;}
.ws134{word-spacing:5.958560pt;}
.wsd8{word-spacing:6.145600pt;}
.wsb9{word-spacing:6.177664pt;}
.wsb8{word-spacing:6.215072pt;}
.wsba{word-spacing:6.220416pt;}
.ws10c{word-spacing:6.252480pt;}
.ws1b9{word-spacing:6.286682pt;}
.ws1ba{word-spacing:6.409326pt;}
.wsfb{word-spacing:6.429198pt;}
.wse2{word-spacing:6.444864pt;}
.ws148{word-spacing:6.503629pt;}
.ws1dc{word-spacing:6.568310pt;}
.ws60{word-spacing:6.694867pt;}
.wsbb{word-spacing:6.748001pt;}
.wscc{word-spacing:6.770848pt;}
.wscd{word-spacing:6.818944pt;}
.wse6{word-spacing:6.829632pt;}
.ws61{word-spacing:6.960537pt;}
.ws178{word-spacing:6.964301pt;}
.ws41{word-spacing:7.066804pt;}
.ws11d{word-spacing:7.123552pt;}
.ws11c{word-spacing:7.251808pt;}
.ws7d{word-spacing:7.390752pt;}
.ws135{word-spacing:7.460224pt;}
.ws7e{word-spacing:7.561760pt;}
.wsfa{word-spacing:7.823616pt;}
.ws24e{word-spacing:7.878359pt;}
.ws1da{word-spacing:7.926488pt;}
.ws1db{word-spacing:8.003709pt;}
.ws137{word-spacing:8.085472pt;}
.ws136{word-spacing:8.106848pt;}
.ws1e3{word-spacing:8.569796pt;}
.ws6{word-spacing:8.740496pt;}
.ws56{word-spacing:8.767088pt;}
.ws1b8{word-spacing:8.776298pt;}
.ws2{word-spacing:9.256586pt;}
.ws171{word-spacing:9.292550pt;}
.ws14e{word-spacing:9.296381pt;}
.ws222{word-spacing:10.325056pt;}
.ws79{word-spacing:10.329312pt;}
.ws7{word-spacing:10.525789pt;}
.ws33{word-spacing:10.587691pt;}
.ws268{word-spacing:11.604800pt;}
.ws21a{word-spacing:11.636266pt;}
.ws218{word-spacing:11.668275pt;}
.ws276{word-spacing:11.716096pt;}
.ws156{word-spacing:11.884522pt;}
.ws26f{word-spacing:11.898035pt;}
.ws27a{word-spacing:11.898445pt;}
.ws26d{word-spacing:11.902541pt;}
.ws28c{word-spacing:11.902788pt;}
.ws271{word-spacing:11.902797pt;}
.ws28a{word-spacing:11.903488pt;}
.ws26b{word-spacing:11.906432pt;}
.ws27f{word-spacing:11.907379pt;}
.ws274{word-spacing:11.907874pt;}
.ws278{word-spacing:12.050842pt;}
.ws261{word-spacing:12.723419pt;}
.ws25f{word-spacing:12.964663pt;}
.ws25d{word-spacing:12.969219pt;}
.ws162{word-spacing:13.205024pt;}
.ws70{word-spacing:13.230333pt;}
.ws177{word-spacing:13.644835pt;}
.ws273{word-spacing:14.154957pt;}
.ws144{word-spacing:14.231072pt;}
.ws283{word-spacing:14.537523pt;}
.ws279{word-spacing:14.769178pt;}
.ws27d{word-spacing:14.770142pt;}
.ws281{word-spacing:14.772471pt;}
.ws26c{word-spacing:14.776627pt;}
.ws285{word-spacing:14.872269pt;}
.ws27e{word-spacing:14.920090pt;}
.wsfd{word-spacing:16.418365pt;}
.ws251{word-spacing:16.929026pt;}
.ws287{word-spacing:19.558707pt;}
.ws5{word-spacing:19.857270pt;}
.ws9{word-spacing:20.196125pt;}
.ws284{word-spacing:20.419482pt;}
.ws154{word-spacing:22.816742pt;}
.wsfc{word-spacing:22.847563pt;}
.ws153{word-spacing:22.898506pt;}
.ws160{word-spacing:25.351936pt;}
.ws15f{word-spacing:25.442784pt;}
.wsf{word-spacing:35.587721pt;}
.ws13{word-spacing:48.873054pt;}
.ws24d{word-spacing:296.274441pt;}
.ws1a9{word-spacing:406.670120pt;}
.ws20d{word-spacing:489.964000pt;}
.ws253{word-spacing:615.290176pt;}
.ws258{word-spacing:645.363945pt;}
.ws25a{word-spacing:748.496780pt;}
.ws24f{word-spacing:791.163275pt;}
._28{margin-left:-7.109413pt;}
._7{margin-left:-6.014776pt;}
._9{margin-left:-4.877734pt;}
._6{margin-left:-3.910662pt;}
._1{margin-left:-2.752326pt;}
._0{margin-left:-1.338970pt;}
._1a{width:0.898387pt;}
._4{width:2.666389pt;}
._1b{width:3.916800pt;}
._27{width:6.375985pt;}
._21{width:10.377114pt;}
._2{width:11.533898pt;}
._24{width:12.539593pt;}
._8{width:13.676749pt;}
._b{width:14.633165pt;}
._e{width:16.312097pt;}
._14{width:17.438531pt;}
._d{width:18.496006pt;}
._29{width:19.431377pt;}
._a{width:20.515123pt;}
._2c{width:21.609949pt;}
._3{width:22.502128pt;}
._16{width:23.527722pt;}
._17{width:25.291721pt;}
._12{width:26.513799pt;}
._18{width:27.523343pt;}
._13{width:28.479753pt;}
._c{width:30.642488pt;}
._11{width:33.261801pt;}
._1d{width:34.689067pt;}
._15{width:43.739795pt;}
._5{width:48.344725pt;}
._2b{width:54.993920pt;}
._2a{width:78.904320pt;}
._26{width:668.052106pt;}
._25{width:682.311489pt;}
._f{width:1000.097110pt;}
._22{width:1613.647461pt;}
._20{width:1652.530533pt;}
._1e{width:1749.738211pt;}
._1c{width:1768.744656pt;}
._23{width:1944.153568pt;}
._19{width:1965.271840pt;}
._1f{width:2330.221333pt;}
._10{width:2351.474667pt;}
.fs1b{font-size:25.024000pt;}
.fs15{font-size:26.496000pt;}
.fs23{font-size:26.664027pt;}
.fs22{font-size:26.664291pt;}
.fs19{font-size:27.200000pt;}
.fs14{font-size:28.800000pt;}
.fsf{font-size:29.440000pt;}
.fs6{font-size:31.880533pt;}
.fs24{font-size:31.996389pt;}
.fse{font-size:32.000000pt;}
.fs2b{font-size:32.125333pt;}
.fs2a{font-size:32.125652pt;}
.fs1c{font-size:35.324800pt;}
.fs26{font-size:35.330112pt;}
.fs17{font-size:36.176000pt;}
.fs0{font-size:37.193600pt;}
.fs11{font-size:38.304000pt;}
.fs2c{font-size:38.549867pt;}
.fs9{font-size:38.755733pt;}
.fs25{font-size:38.996277pt;}
.fs1e{font-size:39.840000pt;}
.fs5{font-size:40.381867pt;}
.fs1a{font-size:40.800000pt;}
.fsa{font-size:42.077867pt;}
.fs7{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fs2e{font-size:42.566400pt;}
.fs13{font-size:43.200000pt;}
.fs1d{font-size:44.355200pt;}
.fs18{font-size:45.424000pt;}
.fs1f{font-size:46.878400pt;}
.fs2d{font-size:46.983467pt;}
.fs8{font-size:47.820800pt;}
.fsd{font-size:48.000000pt;}
.fs12{font-size:48.096000pt;}
.fs16{font-size:49.829333pt;}
.fs3{font-size:53.133867pt;}
.fs21{font-size:53.238192pt;}
.fsc{font-size:53.440000pt;}
.fs10{font-size:55.365867pt;}
.fs20{font-size:56.301003pt;}
.fs27{font-size:56.480000pt;}
.fs29{font-size:64.142400pt;}
.fs28{font-size:67.832533pt;}
.fs1{font-size:71.338101pt;}
.fs4{font-size:95.641600pt;}
.fs2{font-size:135.881922pt;}
.yc7{bottom:-739.851600pt;}
.yee{bottom:-685.515088pt;}
.yed{bottom:-668.475744pt;}
.yec{bottom:-651.356240pt;}
.ya8{bottom:-648.240933pt;}
.yeb{bottom:-634.316896pt;}
.y13b{bottom:-632.308933pt;}
.yea{bottom:-617.197392pt;}
.ye9{bottom:-600.077888pt;}
.y169{bottom:-594.390840pt;}
.y83{bottom:-586.004933pt;}
.ye8{bottom:-583.038544pt;}
.ye7{bottom:-565.919040pt;}
.y1f8{bottom:-559.942015pt;}
.ye6{bottom:-548.799536pt;}
.ye5{bottom:-531.760192pt;}
.y175{bottom:-530.885436pt;}
.ye4{bottom:-514.640688pt;}
.y20f{bottom:-509.609434pt;}
.ye3{bottom:-497.601344pt;}
.y20e{bottom:-495.400245pt;}
.y20d{bottom:-481.257590pt;}
.ye2{bottom:-480.481840pt;}
.y20c{bottom:-463.728415pt;}
.ye1{bottom:-459.441176pt;}
.y20b{bottom:-436.571479pt;}
.y11c{bottom:-431.162267pt;}
.ye0{bottom:-426.321736pt;}
.y20a{bottom:-423.755947pt;}
.y209{bottom:-411.007147pt;}
.ydf{bottom:-409.202232pt;}
.y208{bottom:-398.191615pt;}
.ybf{bottom:-393.915517pt;}
.yde{bottom:-392.162888pt;}
.y207{bottom:-381.656912pt;}
.y22d{bottom:-378.272023pt;}
.y221{bottom:-378.270668pt;}
.ybe{bottom:-376.874837pt;}
.y1d2{bottom:-375.375527pt;}
.ydd{bottom:-375.043384pt;}
.y230{bottom:-374.354295pt;}
.y22c{bottom:-374.353767pt;}
.y220{bottom:-374.352884pt;}
.y22e{bottom:-370.968605pt;}
.y231{bottom:-370.967663pt;}
.y222{bottom:-370.966722pt;}
.y21e{bottom:-366.186815pt;}
.y22f{bottom:-364.128669pt;}
.y22b{bottom:-364.128611pt;}
.y21f{bottom:-364.127728pt;}
.ybd{bottom:-359.755333pt;}
.ydc{bottom:-357.923880pt;}
.y150{bottom:-356.942213pt;}
.y174{bottom:-350.381148pt;}
.y196{bottom:-345.029640pt;}
.y223{bottom:-343.345215pt;}
.ybc{bottom:-342.635829pt;}
.ydb{bottom:-340.884536pt;}
.y14f{bottom:-339.822709pt;}
.ybb{bottom:-325.596485pt;}
.yda{bottom:-323.765032pt;}
.y14e{bottom:-322.703205pt;}
.y228{bottom:-320.105215pt;}
.y224{bottom:-319.772882pt;}
.yba{bottom:-308.476981pt;}
.yd9{bottom:-306.725688pt;}
.y14d{bottom:-305.663861pt;}
.y225{bottom:-296.134556pt;}
.y1b4{bottom:-293.253960pt;}
.yb9{bottom:-291.437637pt;}
.yd8{bottom:-289.606184pt;}
.y14c{bottom:-288.544357pt;}
.y232{bottom:-277.941215pt;}
.y1b3{bottom:-277.918550pt;}
.yb8{bottom:-274.318133pt;}
.y226{bottom:-272.562223pt;}
.yd7{bottom:-272.486680pt;}
.y14b{bottom:-271.505013pt;}
.y22a{bottom:-269.375504pt;}
.y233{bottom:-267.848285pt;}
.y1b2{bottom:-262.510997pt;}
.yb7{bottom:-257.198629pt;}
.yd6{bottom:-255.446000pt;}
.y14a{bottom:-254.385509pt;}
.y227{bottom:-248.857237pt;}
.y1b1{bottom:-247.103443pt;}
.yb6{bottom:-240.159285pt;}
.yd5{bottom:-238.326496pt;}
.y149{bottom:-237.266005pt;}
.y1b0{bottom:-231.768034pt;}
.y229{bottom:-224.887615pt;}
.yb5{bottom:-223.039781pt;}
.yd4{bottom:-221.206992pt;}
.y148{bottom:-220.225325pt;}
.y1af{bottom:-216.360480pt;}
.y23d{bottom:-214.582267pt;}
.yb4{bottom:-206.000437pt;}
.yd3{bottom:-204.167648pt;}
.y147{bottom:-203.105821pt;}
.y1ae{bottom:-200.952926pt;}
.y206{bottom:-197.596139pt;}
.y99{bottom:-197.524437pt;}
.yb3{bottom:-188.878133pt;}
.yd2{bottom:-187.048144pt;}
.y146{bottom:-186.066477pt;}
.y1ad{bottom:-185.617517pt;}
.y205{bottom:-183.453483pt;}
.y98{bottom:-180.402781pt;}
.y12e{bottom:-178.120131pt;}
.yb2{bottom:-171.758629pt;}
.y1ac{bottom:-170.209963pt;}
.yd1{bottom:-170.008800pt;}
.y204{bottom:-169.244295pt;}
.y145{bottom:-168.946973pt;}
.y1e9{bottom:-163.553711pt;}
.y97{bottom:-163.363437pt;}
.y12d{bottom:-161.000627pt;}
.y173{bottom:-155.549062pt;}
.y203{bottom:-155.100531pt;}
.y1ab{bottom:-154.874554pt;}
.yb1{bottom:-154.719285pt;}
.y254{bottom:-153.940603pt;}
.yd0{bottom:-152.889296pt;}
.y144{bottom:-151.827469pt;}
.y1e8{bottom:-149.070269pt;}
.y96{bottom:-146.243933pt;}
.y12c{bottom:-143.961283pt;}
.y202{bottom:-140.891342pt;}
.y172{bottom:-140.141508pt;}
.y1aa{bottom:-139.467000pt;}
.yb0{bottom:-137.599781pt;}
.y253{bottom:-136.821099pt;}
.ycf{bottom:-135.769792pt;}
.y143{bottom:-134.788125pt;}
.y1e7{bottom:-134.518690pt;}
.y95{bottom:-129.124429pt;}
.y12b{bottom:-126.841779pt;}
.y201{bottom:-126.682154pt;}
.y171{bottom:-124.733954pt;}
.y1a9{bottom:-124.059446pt;}
.yaf{bottom:-120.560437pt;}
.y1e6{bottom:-119.967112pt;}
.y252{bottom:-119.781755pt;}
.yce{bottom:-118.730448pt;}
.y142{bottom:-117.668621pt;}
.y200{bottom:-112.538390pt;}
.y94{bottom:-112.085085pt;}
.y12a{bottom:-109.722275pt;}
.y170{bottom:-109.398545pt;}
.y1a8{bottom:-108.724037pt;}
.y1e5{bottom:-105.483669pt;}
.yae{bottom:-103.439285pt;}
.ycd{bottom:-101.610944pt;}
.y141{bottom:-100.627941pt;}
.y251{bottom:-98.662267pt;}
.y1ff{bottom:-95.009215pt;}
.y16f{bottom:-93.990991pt;}
.y1a7{bottom:-93.316483pt;}
.y129{bottom:-92.682931pt;}
.y93{bottom:-91.044421pt;}
.y1e4{bottom:-90.932091pt;}
.yad{bottom:-86.319781pt;}
.ycc{bottom:-84.571600pt;}
.y140{bottom:-83.508437pt;}
.y16e{bottom:-78.654379pt;}
.y1a6{bottom:-77.981074pt;}
.y182{bottom:-76.668667pt;}
.y1e3{bottom:-73.047527pt;}
.y128{bottom:-71.642267pt;}
.y92{bottom:-69.924933pt;}
.yac{bottom:-69.280437pt;}
.y1fe{bottom:-67.852279pt;}
.y13f{bottom:-66.388933pt;}
.y250{bottom:-65.943067pt;}
.y1a5{bottom:-62.573520pt;}
.y16d{bottom:-59.646840pt;}
.y1fd{bottom:-55.036747pt;}
.yab{bottom:-52.160933pt;}
.ycb{bottom:-51.851200pt;}
.y24f{bottom:-50.502667pt;}
.y1e2{bottom:-45.235073pt;}
.y1fc{bottom:-42.287947pt;}
.y127{bottom:-38.842667pt;}
.y91{bottom:-37.204533pt;}
.yca{bottom:-36.331600pt;}
.y24e{bottom:-35.142667pt;}
.y13e{bottom:-33.669333pt;}
.y1a4{bottom:-33.125880pt;}
.y1e1{bottom:-32.043413pt;}
.y16c{bottom:-30.199200pt;}
.y1fb{bottom:-29.472415pt;}
.y126{bottom:-23.402267pt;}
.y90{bottom:-21.684933pt;}
.yc9{bottom:-20.971600pt;}
.y24d{bottom:-19.702267pt;}
.yaa{bottom:-19.440933pt;}
.y1a3{bottom:-19.229520pt;}
.y1e0{bottom:-18.987413pt;}
.y13d{bottom:-18.228933pt;}
.y1fa{bottom:-16.723615pt;}
.y16b{bottom:-16.302840pt;}
.y18e{bottom:-6.107107pt;}
.y125{bottom:-3.479275pt;}
.y1df{bottom:-2.119719pt;}
.y8f{bottom:-1.760109pt;}
.y1a2{bottom:-1.300258pt;}
.yc8{bottom:-1.051616pt;}
.y1f9{bottom:-0.190479pt;}
.y0{bottom:0.000000pt;}
.y24c{bottom:0.219061pt;}
.ya9{bottom:0.559411pt;}
.y16a{bottom:1.625614pt;}
.y13c{bottom:1.691203pt;}
.y21d{bottom:3.262785pt;}
.y272{bottom:4.297241pt;}
.y266{bottom:4.298874pt;}
.y275{bottom:9.017395pt;}
.y271{bottom:9.018031pt;}
.y265{bottom:9.019096pt;}
.y273{bottom:13.096541pt;}
.y276{bottom:13.097676pt;}
.y267{bottom:13.098808pt;}
.y18{bottom:14.684153pt;}
.y263{bottom:18.857733pt;}
.y274{bottom:21.337427pt;}
.y270{bottom:21.337496pt;}
.y264{bottom:21.338561pt;}
.y17{bottom:23.345828pt;}
.y210{bottom:24.643696pt;}
.y47{bottom:28.346667pt;}
.y211{bottom:38.587585pt;}
.y268{bottom:46.377733pt;}
.y212{bottom:74.244468pt;}
.y26d{bottom:74.377733pt;}
.y269{bottom:74.778134pt;}
.y1ce{bottom:92.108000pt;}
.y15{bottom:93.018667pt;}
.y2fa{bottom:96.366667pt;}
.y217{bottom:96.488385pt;}
.y102{bottom:96.786667pt;}
.y130{bottom:98.998667pt;}
.y26a{bottom:103.258045pt;}
.y191{bottom:103.818667pt;}
.y7e{bottom:106.308000pt;}
.y1cd{bottom:108.844000pt;}
.y14{bottom:108.920000pt;}
.y213{bottom:109.968153pt;}
.y2f9{bottom:113.104000pt;}
.y101{bottom:113.522667pt;}
.y29a{bottom:114.877333pt;}
.y12f{bottom:116.094667pt;}
.yc0{bottom:118.721333pt;}
.y190{bottom:120.914667pt;}
.y2ce{bottom:121.713333pt;}
.y7d{bottom:123.045333pt;}
.y238{bottom:124.176000pt;}
.y46{bottom:124.392000pt;}
.y13{bottom:124.820000pt;}
.y277{bottom:125.177733pt;}
.y1cc{bottom:125.581333pt;}
.y31c{bottom:126.552000pt;}
.y299{bottom:129.188000pt;}
.y2f8{bottom:129.841333pt;}
.y100{bottom:130.260000pt;}
.y298{bottom:131.614667pt;}
.y26b{bottom:131.658446pt;}
.y26f{bottom:135.497867pt;}
.y278{bottom:137.337890pt;}
.y18f{bottom:138.010667pt;}
.y2cc{bottom:138.450667pt;}
.ya5{bottom:138.658667pt;}
.y119{bottom:138.689333pt;}
.y7c{bottom:139.782667pt;}
.y12{bottom:140.720000pt;}
.y45{bottom:141.129333pt;}
.y237{bottom:141.272000pt;}
.y31b{bottom:141.894667pt;}
.y1ca{bottom:142.318667pt;}
.y2cd{bottom:143.273333pt;}
.y214{bottom:145.625036pt;}
.y296{bottom:145.925333pt;}
.y2f7{bottom:146.578667pt;}
.yff{bottom:146.997333pt;}
.y1cb{bottom:147.141333pt;}
.y295{bottom:148.352000pt;}
.y21c{bottom:149.077185pt;}
.y297{bottom:153.173333pt;}
.y2cb{bottom:155.188000pt;}
.y7b{bottom:156.520000pt;}
.y11{bottom:156.621333pt;}
.y31a{bottom:157.237333pt;}
.y44{bottom:157.866667pt;}
.y17f{bottom:157.947733pt;}
.y236{bottom:158.368000pt;}
.y1c9{bottom:159.056000pt;}
.y26c{bottom:160.218671pt;}
.y2f6{bottom:163.316000pt;}
.yfe{bottom:163.734667pt;}
.y294{bottom:165.089333pt;}
.y21a{bottom:168.930785pt;}
.y2ca{bottom:171.925333pt;}
.y10{bottom:172.521333pt;}
.y319{bottom:172.580000pt;}
.y7a{bottom:173.257333pt;}
.y43{bottom:174.604000pt;}
.y235{bottom:175.464000pt;}
.y1c8{bottom:175.793333pt;}
.y2f4{bottom:180.053333pt;}
.y34d{bottom:180.230667pt;}
.yfd{bottom:180.472000pt;}
.y215{bottom:181.348721pt;}
.y293{bottom:181.826667pt;}
.y2f5{bottom:184.874667pt;}
.y318{bottom:187.922667pt;}
.yf{bottom:188.421333pt;}
.y21b{bottom:188.784385pt;}
.y26e{bottom:189.097733pt;}
.y79{bottom:189.994667pt;}
.y165{bottom:190.945333pt;}
.y42{bottom:191.341333pt;}
.y1c7{bottom:192.530667pt;}
.y234{bottom:192.560000pt;}
.y2c9{bottom:192.648000pt;}
.y18d{bottom:194.453213pt;}
.y34c{bottom:195.573333pt;}
.yfc{bottom:197.209333pt;}
.y292{bottom:198.564000pt;}
.y2f3{bottom:200.774667pt;}
.y8e{bottom:202.559715pt;}
.y317{bottom:203.265333pt;}
.ye{bottom:204.322667pt;}
.y78{bottom:206.732000pt;}
.y164{bottom:207.682667pt;}
.y41{bottom:208.078667pt;}
.y219{bottom:208.704385pt;}
.y1c6{bottom:209.268000pt;}
.y34b{bottom:210.916000pt;}
.yfb{bottom:213.946667pt;}
.y1f5{bottom:215.153333pt;}
.y290{bottom:215.301333pt;}
.y216{bottom:217.005604pt;}
.y316{bottom:218.608000pt;}
.y8d{bottom:219.679219pt;}
.y291{bottom:220.122667pt;}
.y24b{bottom:221.979029pt;}
.y2c8{bottom:222.536000pt;}
.y77{bottom:223.469333pt;}
.y163{bottom:224.420000pt;}
.y40{bottom:224.816000pt;}
.y1c5{bottom:226.005333pt;}
.y34a{bottom:226.258667pt;}
.y2f2{bottom:228.020000pt;}
.y218{bottom:228.557985pt;}
.yfa{bottom:230.684000pt;}
.y28f{bottom:232.038667pt;}
.y315{bottom:233.950667pt;}
.y8c{bottom:236.718563pt;}
.y2f1{bottom:237.132000pt;}
.y24a{bottom:239.018373pt;}
.y2c7{bottom:239.273333pt;}
.y76{bottom:240.206667pt;}
.y162{bottom:241.157333pt;}
.y3f{bottom:241.553333pt;}
.y349{bottom:241.601333pt;}
.y1c4{bottom:242.742667pt;}
.yf9{bottom:247.421333pt;}
.y314{bottom:249.292000pt;}
.y28e{bottom:252.761333pt;}
.y8b{bottom:253.838067pt;}
.y249{bottom:256.137877pt;}
.y75{bottom:256.944000pt;}
.y161{bottom:257.894667pt;}
.y3e{bottom:258.289333pt;}
.y1c3{bottom:259.480000pt;}
.yf8{bottom:264.158667pt;}
.y313{bottom:264.634667pt;}
.yd{bottom:266.570667pt;}
.y2c6{bottom:266.973333pt;}
.yc6{bottom:268.228520pt;}
.y28d{bottom:270.693333pt;}
.y8a{bottom:270.957571pt;}
.y348{bottom:272.285333pt;}
.y248{bottom:273.178557pt;}
.y74{bottom:273.681333pt;}
.y160{bottom:274.632000pt;}
.y3d{bottom:275.026667pt;}
.y2c5{bottom:276.085333pt;}
.y1c2{bottom:276.217333pt;}
.y1f7{bottom:276.764485pt;}
.yc5{bottom:276.788400pt;}
.y2f0{bottom:277.350667pt;}
.y312{bottom:279.977333pt;}
.y1de{bottom:280.351697pt;}
.yf7{bottom:280.896000pt;}
.yc{bottom:282.470667pt;}
.y1f6{bottom:283.869185pt;}
.y347{bottom:287.628000pt;}
.y89{bottom:287.996915pt;}
.y247{bottom:290.298061pt;}
.y73{bottom:290.417333pt;}
.y15f{bottom:291.369333pt;}
.y1c1{bottom:292.954667pt;}
.y2ef{bottom:294.088000pt;}
.y1dd{bottom:294.903275pt;}
.y311{bottom:295.320000pt;}
.y3c{bottom:295.749333pt;}
.yf6{bottom:297.633333pt;}
.yb{bottom:298.370667pt;}
.y28c{bottom:300.581333pt;}
.y346{bottom:302.970667pt;}
.y88{bottom:305.116419pt;}
.y72{bottom:307.154667pt;}
.y246{bottom:307.417565pt;}
.y15e{bottom:308.106667pt;}
.y1dc{bottom:309.454853pt;}
.y1c0{bottom:309.692000pt;}
.y168{bottom:312.881268pt;}
.y2c4{bottom:313.770667pt;}
.ya{bottom:314.272000pt;}
.yf5{bottom:314.370667pt;}
.y310{bottom:314.648000pt;}
.y28b{bottom:317.318667pt;}
.y345{bottom:318.313333pt;}
.y167{bottom:320.585160pt;}
.y2ee{bottom:320.997333pt;}
.y87{bottom:322.155763pt;}
.y71{bottom:323.892000pt;}
.y1db{bottom:323.938296pt;}
.y245{bottom:324.458245pt;}
.y15d{bottom:324.844000pt;}
.y1bf{bottom:326.429333pt;}
.y2ed{bottom:330.109333pt;}
.y2c3{bottom:330.508000pt;}
.yf4{bottom:331.108000pt;}
.y344{bottom:333.656000pt;}
.y28a{bottom:334.056000pt;}
.y1da{bottom:338.489874pt;}
.y86{bottom:339.275267pt;}
.y9{bottom:339.470667pt;}
.y70{bottom:340.629333pt;}
.y15c{bottom:341.581333pt;}
.y1be{bottom:343.166667pt;}
.y30f{bottom:344.536000pt;}
.y244{bottom:345.577733pt;}
.y2c2{bottom:347.245333pt;}
.yf3{bottom:347.845333pt;}
.y343{bottom:348.998667pt;}
.y289{bottom:350.793333pt;}
.y1d9{bottom:353.041453pt;}
.y1a1{bottom:354.884290pt;}
.y85{bottom:356.394771pt;}
.y6f{bottom:357.366667pt;}
.y15b{bottom:358.318667pt;}
.ya7{bottom:359.839187pt;}
.y1bd{bottom:359.904000pt;}
.y3b{bottom:362.549333pt;}
.y8{bottom:363.341333pt;}
.y342{bottom:364.341333pt;}
.y2ec{bottom:367.329333pt;}
.y1d8{bottom:367.524895pt;}
.y288{bottom:367.530667pt;}
.y30e{bottom:368.126667pt;}
.ya6{bottom:368.399067pt;}
.y1a0{bottom:370.291843pt;}
.y84{bottom:373.435451pt;}
.y6e{bottom:374.104000pt;}
.y15a{bottom:375.056000pt;}
.y2c1{bottom:375.412000pt;}
.y13a{bottom:375.771187pt;}
.y1bc{bottom:376.641333pt;}
.yf2{bottom:377.681333pt;}
.y243{bottom:378.296933pt;}
.y7{bottom:379.241333pt;}
.y341{bottom:379.684000pt;}
.y2eb{bottom:382.074667pt;}
.y1d7{bottom:382.077623pt;}
.y30d{bottom:383.748000pt;}
.y2ea{bottom:384.066667pt;}
.y287{bottom:384.268000pt;}
.y139{bottom:384.331067pt;}
.y19f{bottom:385.627253pt;}
.y2c0{bottom:386.761333pt;}
.y6d{bottom:390.841333pt;}
.y159{bottom:391.793333pt;}
.y1bb{bottom:393.378667pt;}
.y242{bottom:393.737333pt;}
.yf0{bottom:394.777333pt;}
.y340{bottom:395.025333pt;}
.y6{bottom:395.141333pt;}
.y3a{bottom:395.785333pt;}
.y1d6{bottom:396.561065pt;}
.yf1{bottom:399.117333pt;}
.y286{bottom:401.005333pt;}
.y19e{bottom:401.034806pt;}
.y30c{bottom:407.340000pt;}
.y6c{bottom:407.578667pt;}
.y158{bottom:408.530667pt;}
.y124{bottom:408.680733pt;}
.y241{bottom:409.097333pt;}
.y1ba{bottom:410.116000pt;}
.y33f{bottom:410.368000pt;}
.y18c{bottom:410.933309pt;}
.y5{bottom:411.042667pt;}
.y1d5{bottom:411.112643pt;}
.yef{bottom:411.873333pt;}
.y39{bottom:413.080000pt;}
.y2e9{bottom:414.752000pt;}
.y19d{bottom:416.441748pt;}
.y285{bottom:417.742667pt;}
.y82{bottom:422.075187pt;}
.y30b{bottom:422.961333pt;}
.y2bf{bottom:424.134667pt;}
.y6b{bottom:424.316000pt;}
.y240{bottom:424.537733pt;}
.y157{bottom:425.268000pt;}
.y1d4{bottom:425.664222pt;}
.y33e{bottom:425.710667pt;}
.y123{bottom:425.800237pt;}
.y1b9{bottom:426.853333pt;}
.y4{bottom:426.942667pt;}
.y18b{bottom:428.052813pt;}
.y38{bottom:430.376000pt;}
.y81{bottom:430.635067pt;}
.y19c{bottom:431.778194pt;}
.yc4{bottom:431.810667pt;}
.y284{bottom:434.480000pt;}
.y23f{bottom:439.897733pt;}
.y1d3{bottom:440.148800pt;}
.y2bd{bottom:440.872000pt;}
.y6a{bottom:441.053333pt;}
.y156{bottom:442.005333pt;}
.y122{bottom:442.839581pt;}
.y3{bottom:442.842667pt;}
.y1b8{bottom:443.590667pt;}
.y18a{bottom:445.172317pt;}
.y2e8{bottom:445.437333pt;}
.y2be{bottom:445.693333pt;}
.y30a{bottom:446.553333pt;}
.y19b{bottom:447.185748pt;}
.y37{bottom:447.670667pt;}
.y283{bottom:451.217333pt;}
.y33d{bottom:456.396000pt;}
.y2bc{bottom:457.609333pt;}
.y69{bottom:457.790667pt;}
.y155{bottom:458.742667pt;}
.y2{bottom:458.744000pt;}
.y23e{bottom:459.817173pt;}
.y121{bottom:459.959085pt;}
.y1b7{bottom:460.328000pt;}
.y2e7{bottom:462.174667pt;}
.y189{bottom:462.211661pt;}
.y19a{bottom:462.522360pt;}
.y262{bottom:463.977733pt;}
.y36{bottom:464.965333pt;}
.ya4{bottom:466.864000pt;}
.y282{bottom:467.954667pt;}
.y309{bottom:470.145333pt;}
.y33c{bottom:471.738667pt;}
.y2bb{bottom:474.346667pt;}
.y68{bottom:474.528000pt;}
.y1{bottom:474.644000pt;}
.y154{bottom:475.480000pt;}
.y120{bottom:476.998429pt;}
.y188{bottom:479.331165pt;}
.y1d1{bottom:481.492575pt;}
.y35{bottom:482.261333pt;}
.y1f4{bottom:482.462667pt;}
.ya2{bottom:483.601333pt;}
.y281{bottom:484.692000pt;}
.y33b{bottom:487.081333pt;}
.ya3{bottom:488.422667pt;}
.y1d0{bottom:488.768473pt;}
.y1b6{bottom:488.776000pt;}
.y255{bottom:489.737867pt;}
.y67{bottom:491.265333pt;}
.y199{bottom:491.970720pt;}
.y2e6{bottom:492.860000pt;}
.y308{bottom:493.736000pt;}
.y11f{bottom:494.117933pt;}
.y2ba{bottom:495.069333pt;}
.y187{bottom:496.371845pt;}
.y1f3{bottom:499.200000pt;}
.y34{bottom:499.556000pt;}
.ya1{bottom:500.338667pt;}
.y280{bottom:501.429333pt;}
.y33a{bottom:502.424000pt;}
.y153{bottom:505.316000pt;}
.y1b5{bottom:505.872000pt;}
.y198{bottom:505.938360pt;}
.y256{bottom:506.537733pt;}
.y66{bottom:508.002667pt;}
.y307{bottom:509.357333pt;}
.y11e{bottom:511.237437pt;}
.y1f2{bottom:515.936000pt;}
.y33{bottom:516.850667pt;}
.ya0{bottom:517.076000pt;}
.y186{bottom:517.491333pt;}
.y339{bottom:517.766667pt;}
.y27f{bottom:518.166667pt;}
.y197{bottom:519.762360pt;}
.y2b9{bottom:522.262667pt;}
.y151{bottom:522.412000pt;}
.y2e5{bottom:523.544000pt;}
.y65{bottom:524.740000pt;}
.y306{bottom:524.978667pt;}
.y193{bottom:525.808000pt;}
.y152{bottom:526.752000pt;}
.y11d{bottom:528.278117pt;}
.y1f1{bottom:532.673333pt;}
.y338{bottom:533.108000pt;}
.y2b8{bottom:533.809333pt;}
.y9f{bottom:533.813333pt;}
.y32{bottom:534.146667pt;}
.y27e{bottom:534.904000pt;}
.y2b5{bottom:539.652000pt;}
.y2e4{bottom:540.281333pt;}
.y305{bottom:540.601333pt;}
.y118{bottom:541.078667pt;}
.y64{bottom:541.477333pt;}
.y138{bottom:542.349333pt;}
.y2b7{bottom:544.893333pt;}
.y337{bottom:548.450667pt;}
.y1f0{bottom:549.410667pt;}
.y257{bottom:549.497833pt;}
.y185{bottom:550.210933pt;}
.y9e{bottom:550.550667pt;}
.y31{bottom:551.441333pt;}
.y27d{bottom:555.625333pt;}
.y304{bottom:556.222667pt;}
.y2b6{bottom:556.441333pt;}
.y17e{bottom:556.852000pt;}
.y2e3{bottom:557.018667pt;}
.y117{bottom:557.816000pt;}
.y63{bottom:558.214667pt;}
.y195{bottom:562.242468pt;}
.y336{bottom:563.793333pt;}
.y184{bottom:565.651333pt;}
.y1ef{bottom:566.148000pt;}
.y2f{bottom:568.737333pt;}
.y194{bottom:569.946360pt;}
.y9d{bottom:571.272000pt;}
.y30{bottom:573.076000pt;}
.y17d{bottom:573.589333pt;}
.y2e2{bottom:573.756000pt;}
.y116{bottom:574.553333pt;}
.y62{bottom:574.952000pt;}
.y25c{bottom:576.297733pt;}
.y11b{bottom:576.917853pt;}
.y335{bottom:579.136000pt;}
.y303{bottom:579.813333pt;}
.y27c{bottom:582.672000pt;}
.y2b4{bottom:582.766667pt;}
.y11a{bottom:585.477733pt;}
.y183{bottom:585.571837pt;}
.y2e{bottom:586.032000pt;}
.y1ee{bottom:586.870667pt;}
.y9c{bottom:589.205333pt;}
.y17c{bottom:590.326667pt;}
.y2e0{bottom:590.493333pt;}
.y115{bottom:591.290667pt;}
.y61{bottom:591.689333pt;}
.y258{bottom:592.538417pt;}
.y334{bottom:594.478667pt;}
.y2e1{bottom:595.316000pt;}
.y302{bottom:595.434667pt;}
.y2b3{bottom:599.504000pt;}
.y27b{bottom:599.768000pt;}
.y2d{bottom:603.326667pt;}
.y17b{bottom:607.064000pt;}
.y2df{bottom:607.230667pt;}
.y114{bottom:608.028000pt;}
.y60{bottom:608.426667pt;}
.y333{bottom:609.821333pt;}
.y301{bottom:611.056000pt;}
.y1ed{bottom:613.917333pt;}
.y2b2{bottom:616.241333pt;}
.y9b{bottom:616.252000pt;}
.y27a{bottom:616.864000pt;}
.y2c{bottom:620.622667pt;}
.y17a{bottom:623.801333pt;}
.y2de{bottom:623.968000pt;}
.y113{bottom:624.765333pt;}
.y5f{bottom:625.164000pt;}
.y300{bottom:626.678667pt;}
.y1eb{bottom:631.013333pt;}
.y2b0{bottom:632.978667pt;}
.y9a{bottom:633.348000pt;}
.y279{bottom:633.960000pt;}
.y1ec{bottom:635.353333pt;}
.y259{bottom:635.498517pt;}
.y2b1{bottom:637.801333pt;}
.y2b{bottom:637.917333pt;}
.y261{bottom:639.657733pt;}
.y332{bottom:640.506667pt;}
.y179{bottom:640.538667pt;}
.y2dd{bottom:640.705333pt;}
.y112{bottom:641.502667pt;}
.y5e{bottom:641.901333pt;}
.y1ea{bottom:648.109333pt;}
.y2ae{bottom:649.716000pt;}
.y2af{bottom:654.538667pt;}
.y2a{bottom:655.212000pt;}
.y331{bottom:655.848000pt;}
.y80{bottom:655.941333pt;}
.y23a{bottom:656.553333pt;}
.y2dc{bottom:657.442667pt;}
.y111{bottom:658.240000pt;}
.y5d{bottom:658.638667pt;}
.y178{bottom:661.261333pt;}
.y25f{bottom:663.577733pt;}
.y2ad{bottom:666.453333pt;}
.y1cf{bottom:670.702667pt;}
.y330{bottom:671.190667pt;}
.y29{bottom:672.508000pt;}
.y2db{bottom:674.180000pt;}
.y110{bottom:674.977333pt;}
.y5c{bottom:675.376000pt;}
.y25a{bottom:678.539101pt;}
.y2ab{bottom:683.190667pt;}
.y32f{bottom:686.533333pt;}
.y260{bottom:687.497733pt;}
.y2ac{bottom:688.013333pt;}
.y177{bottom:688.308000pt;}
.y10f{bottom:691.714667pt;}
.y5b{bottom:692.113333pt;}
.y2da{bottom:694.902667pt;}
.y32e{bottom:701.876000pt;}
.y2aa{bottom:703.913333pt;}
.y176{bottom:705.404000pt;}
.y28{bottom:706.805333pt;}
.y10e{bottom:708.452000pt;}
.y5a{bottom:708.850667pt;}
.y25e{bottom:711.497733pt;}
.y32d{bottom:717.218667pt;}
.y25b{bottom:721.499201pt;}
.y2d9{bottom:724.790667pt;}
.y27{bottom:725.009333pt;}
.y10d{bottom:725.189333pt;}
.y166{bottom:725.341333pt;}
.y59{bottom:725.588000pt;}
.y2ff{bottom:730.010667pt;}
.y32c{bottom:732.561333pt;}
.y25d{bottom:735.417733pt;}
.y26{bottom:735.498667pt;}
.y2a9{bottom:736.745333pt;}
.y2d8{bottom:741.528000pt;}
.y10c{bottom:741.926667pt;}
.y58{bottom:742.324000pt;}
.y2fe{bottom:746.748000pt;}
.y32b{bottom:747.904000pt;}
.y2a8{bottom:753.482667pt;}
.y25{bottom:753.702667pt;}
.y2d7{bottom:758.265333pt;}
.y10b{bottom:758.664000pt;}
.y57{bottom:759.061333pt;}
.y32a{bottom:763.246667pt;}
.y2fd{bottom:763.485333pt;}
.y24{bottom:764.190667pt;}
.y2a7{bottom:770.220000pt;}
.y2d6{bottom:775.002667pt;}
.y10a{bottom:775.401333pt;}
.y56{bottom:775.798667pt;}
.y329{bottom:778.589333pt;}
.y23{bottom:782.394667pt;}
.y2a6{bottom:786.957333pt;}
.y109{bottom:792.138667pt;}
.y55{bottom:792.536000pt;}
.y22{bottom:792.884000pt;}
.y23c{bottom:793.497853pt;}
.y328{bottom:793.930667pt;}
.y2d5{bottom:795.724000pt;}
.y23b{bottom:802.057733pt;}
.y2a5{bottom:803.694667pt;}
.y108{bottom:808.874667pt;}
.y54{bottom:809.273333pt;}
.y21{bottom:811.086667pt;}
.y2fc{bottom:813.697333pt;}
.y2a4{bottom:820.432000pt;}
.y20{bottom:821.576000pt;}
.y327{bottom:824.616000pt;}
.y107{bottom:825.612000pt;}
.y53{bottom:826.010667pt;}
.y1f{bottom:835.922667pt;}
.y326{bottom:839.958667pt;}
.y2a3{bottom:841.154667pt;}
.y106{bottom:842.349333pt;}
.y52{bottom:842.748000pt;}
.y2d4{bottom:847.172000pt;}
.y1e{bottom:850.268000pt;}
.y1d{bottom:854.126667pt;}
.y325{bottom:855.301333pt;}
.y105{bottom:859.086667pt;}
.y51{bottom:859.485333pt;}
.y2fb{bottom:863.072000pt;}
.y2d3{bottom:863.909333pt;}
.yc3{bottom:864.308000pt;}
.y324{bottom:870.644000pt;}
.y2a2{bottom:871.042667pt;}
.y239{bottom:872.237333pt;}
.y104{bottom:875.824000pt;}
.y50{bottom:876.222667pt;}
.y350{bottom:881.934667pt;}
.y323{bottom:885.986667pt;}
.y2a1{bottom:887.780000pt;}
.y137{bottom:888.974667pt;}
.y2d2{bottom:892.561333pt;}
.y4f{bottom:892.960000pt;}
.y1c{bottom:893.838667pt;}
.y103{bottom:896.546667pt;}
.y34f{bottom:897.277333pt;}
.y7f{bottom:897.782667pt;}
.y322{bottom:901.329333pt;}
.y29f{bottom:904.517333pt;}
.y136{bottom:905.712000pt;}
.y2d1{bottom:909.298667pt;}
.y2a0{bottom:909.338667pt;}
.y4e{bottom:909.697333pt;}
.y1b{bottom:910.576000pt;}
.y34e{bottom:912.620000pt;}
.y321{bottom:916.670667pt;}
.y29e{bottom:921.254667pt;}
.y134{bottom:922.449333pt;}
.y2d0{bottom:926.036000pt;}
.y4d{bottom:926.434667pt;}
.y135{bottom:927.272000pt;}
.y181{bottom:931.411453pt;}
.y320{bottom:932.013333pt;}
.y29d{bottom:937.992000pt;}
.y133{bottom:939.186667pt;}
.y180{bottom:939.971333pt;}
.y4c{bottom:943.172000pt;}
.y1a{bottom:946.425333pt;}
.y2cf{bottom:946.758667pt;}
.y31f{bottom:947.356000pt;}
.yc2{bottom:947.993333pt;}
.y29c{bottom:954.729333pt;}
.y132{bottom:955.924000pt;}
.y4b{bottom:959.909333pt;}
.y31e{bottom:962.698667pt;}
.y192{bottom:964.730667pt;}
.y19{bottom:971.530667pt;}
.y131{bottom:972.661333pt;}
.y29b{bottom:975.450667pt;}
.y4a{bottom:976.646667pt;}
.y31d{bottom:978.041333pt;}
.y49{bottom:993.384000pt;}
.yc1{bottom:998.205333pt;}
.y16{bottom:1010.186667pt;}
.y48{bottom:1046.810667pt;}
.h42{height:19.412141pt;}
.h40{height:19.412333pt;}
.h41{height:19.598983pt;}
.h48{height:19.601650pt;}
.h46{height:19.785633pt;}
.h43{height:23.294246pt;}
.h51{height:23.388121pt;}
.h4f{height:23.388353pt;}
.h50{height:23.613233pt;}
.h57{height:23.616446pt;}
.h55{height:23.838113pt;}
.h5a{height:24.760382pt;}
.h1c{height:25.610524pt;}
.h49{height:25.721288pt;}
.hd{height:25.811318pt;}
.h10{height:28.023859pt;}
.h52{height:28.065357pt;}
.h44{height:28.390356pt;}
.h9{height:28.947524pt;}
.h45{height:30.766428pt;}
.h58{height:30.989503pt;}
.h4a{height:31.564888pt;}
.h3b{height:31.923616pt;}
.h37{height:32.668541pt;}
.h34{height:32.692859pt;}
.h36{height:32.858273pt;}
.h2d{height:33.186336pt;}
.h30{height:33.455734pt;}
.h2f{height:33.650039pt;}
.h2{height:33.771789pt;}
.h3d{height:34.128757pt;}
.h53{height:34.205248pt;}
.h26{height:34.615969pt;}
.h22{height:35.423719pt;}
.h21{height:35.629453pt;}
.h19{height:36.666735pt;}
.h3a{height:36.844219pt;}
.h28{height:36.873667pt;}
.h39{height:37.058203pt;}
.h54{height:37.067985pt;}
.h47{height:37.673464pt;}
.h33{height:37.732031pt;}
.h32{height:37.951172pt;}
.h59{height:38.029986pt;}
.he{height:38.256384pt;}
.h18{height:38.462187pt;}
.hb{height:38.596538pt;}
.h3f{height:38.758860pt;}
.ha{height:38.809074pt;}
.h6{height:38.947124pt;}
.h13{height:39.359687pt;}
.h12{height:39.588281pt;}
.h25{height:39.951563pt;}
.h2c{height:39.952523pt;}
.h24{height:40.183594pt;}
.h3e{height:40.988669pt;}
.h38{height:41.019897pt;}
.h4c{height:41.118984pt;}
.h3c{height:41.258133pt;}
.h31{height:42.008328pt;}
.hc{height:43.421286pt;}
.h64{height:43.660390pt;}
.h16{height:44.390625pt;}
.h23{height:44.479406pt;}
.h2a{height:44.480069pt;}
.h2b{height:44.481854pt;}
.h15{height:44.648438pt;}
.h3{height:45.231372pt;}
.h56{height:45.389716pt;}
.h4e{height:46.697421pt;}
.hf{height:48.245551pt;}
.h4{height:48.367233pt;}
.h62{height:48.885242pt;}
.h8{height:49.201961pt;}
.h4d{height:49.383939pt;}
.h14{height:49.421563pt;}
.h17{height:49.708594pt;}
.h1b{height:51.131789pt;}
.h5f{height:51.445242pt;}
.h5c{height:55.952068pt;}
.h5b{height:55.957402pt;}
.h7{height:68.861952pt;}
.h5d{height:74.920458pt;}
.h60{height:84.218884pt;}
.h61{height:84.693551pt;}
.h5{height:92.127943pt;}
.h5e{height:93.642884pt;}
.h63{height:93.872068pt;}
.h11{height:173.762667pt;}
.h4b{height:202.640000pt;}
.h1d{height:230.521333pt;}
.h35{height:246.294200pt;}
.h2e{height:259.423400pt;}
.h20{height:281.329200pt;}
.h1a{height:315.161333pt;}
.h1f{height:333.582667pt;}
.h29{height:338.761200pt;}
.h27{height:385.861600pt;}
.h1e{height:389.346667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:108.749482pt;}
.w9{width:247.448000pt;}
.wa{width:249.590400pt;}
.w4{width:253.424000pt;}
.w5{width:305.204000pt;}
.w8{width:363.463200pt;}
.wc{width:428.534533pt;}
.w7{width:443.616000pt;}
.wb{width:551.009780pt;}
.w6{width:554.644400pt;}
.w3{width:621.360400pt;}
.wd{width:684.093867pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x63{left:-225.837333pt;}
.x3a{left:-181.026667pt;}
.x57{left:-173.558667pt;}
.x48{left:-172.065333pt;}
.x6c{left:-159.787200pt;}
.x5e{left:-156.379200pt;}
.x79{left:-146.533733pt;}
.x8a{left:-129.336133pt;}
.x89{left:-120.770752pt;}
.x88{left:-116.986025pt;}
.x87{left:-113.333733pt;}
.x83{left:-103.240933pt;}
.x8b{left:-96.069733pt;}
.x84{left:-74.754435pt;}
.x50{left:-71.990267pt;}
.x8c{left:-63.533733pt;}
.x85{left:-58.619112pt;}
.x64{left:-51.997333pt;}
.x86{left:-36.242409pt;}
.x36{left:-28.674267pt;}
.x65{left:-23.676805pt;}
.x72{left:-16.332353pt;}
.x9f{left:-9.256800pt;}
.x3c{left:-7.186667pt;}
.x6d{left:-3.331200pt;}
.x7b{left:-2.246533pt;}
.x0{left:0.000000pt;}
.x4a{left:1.774667pt;}
.xad{left:11.463200pt;}
.x80{left:15.017467pt;}
.x3d{left:21.133333pt;}
.x6e{left:22.156800pt;}
.x60{left:25.565275pt;}
.x59{left:28.601333pt;}
.x4b{left:30.094667pt;}
.x7f{left:34.605128pt;}
.x7e{left:41.112667pt;}
.xa9{left:42.903200pt;}
.x1{left:47.621333pt;}
.xae{left:51.543200pt;}
.x2{left:54.028190pt;}
.x94{left:66.145467pt;}
.x93{left:74.777398pt;}
.xf6{left:76.309333pt;}
.xaa{left:77.224283pt;}
.x92{left:78.495575pt;}
.x91{left:82.147867pt;}
.x35{left:85.982267pt;}
.xaf{left:90.743200pt;}
.x8d{left:92.307067pt;}
.xab{left:96.664430pt;}
.x95{left:99.079867pt;}
.x51{left:101.850053pt;}
.x7d{left:103.130267pt;}
.x4f{left:119.339600pt;}
.x71{left:121.154553pt;}
.xac{left:123.624313pt;}
.x53{left:130.170261pt;}
.x73{left:131.431919pt;}
.x8e{left:136.861071pt;}
.x37{left:145.166053pt;}
.x74{left:155.504367pt;}
.x8f{left:159.238245pt;}
.x82{left:163.687067pt;}
.xa1{left:164.583200pt;}
.x39{left:173.486261pt;}
.x78{left:182.394667pt;}
.xa7{left:185.383200pt;}
.x90{left:192.969075pt;}
.xa6{left:200.982951pt;}
.xa5{left:208.982792pt;}
.xa4{left:216.823200pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.xde{left:225.932000pt;}
.x44{left:227.065333pt;}
.xe0{left:236.396000pt;}
.x4{left:239.790667pt;}
.xe1{left:243.233333pt;}
.x67{left:246.002811pt;}
.x66{left:247.042219pt;}
.x8{left:250.204000pt;}
.xb2{left:257.383117pt;}
.x9c{left:261.560667pt;}
.x5c{left:262.481333pt;}
.x3b{left:266.813893pt;}
.x62{left:268.276930pt;}
.x61{left:269.212397pt;}
.x9b{left:270.126198pt;}
.x9a{left:273.844375pt;}
.x5d{left:275.765333pt;}
.x99{left:277.496667pt;}
.xb0{left:278.503200pt;}
.x2a{left:279.940000pt;}
.x68{left:281.998667pt;}
.x3e{left:286.870667pt;}
.xa3{left:291.543200pt;}
.x3f{left:292.582667pt;}
.x22{left:293.545333pt;}
.x2b{left:295.250667pt;}
.x69{left:296.253333pt;}
.xd7{left:300.796000pt;}
.x23{left:306.829333pt;}
.x2c{left:308.534667pt;}
.x49{left:312.174547pt;}
.x40{left:313.341333pt;}
.x96{left:316.141424pt;}
.x41{left:319.053333pt;}
.x33{left:326.200000pt;}
.x9d{left:327.363067pt;}
.x34{left:329.888000pt;}
.x97{left:332.276276pt;}
.xd3{left:335.681333pt;}
.x81{left:346.951067pt;}
.x46{left:351.572000pt;}
.x9e{left:353.059604pt;}
.x98{left:354.587045pt;}
.xe8{left:355.937333pt;}
.x47{left:358.752000pt;}
.xa8{left:364.503200pt;}
.xe9{left:370.749333pt;}
.x6{left:372.265333pt;}
.x7{left:375.714667pt;}
.xc0{left:380.790667pt;}
.x5f{left:382.469146pt;}
.xea{left:384.298667pt;}
.xc1{left:386.502667pt;}
.x27{left:388.961333pt;}
.xeb{left:390.010667pt;}
.xd5{left:393.328000pt;}
.xf1{left:394.998667pt;}
.xc2{left:397.333333pt;}
.xb1{left:399.782729pt;}
.x2d{left:400.930667pt;}
.x28{left:402.245333pt;}
.xe4{left:406.437333pt;}
.xc3{left:408.093333pt;}
.xc8{left:410.181333pt;}
.x2e{left:414.213333pt;}
.xf2{left:416.853333pt;}
.xc4{left:418.910667pt;}
.xba{left:424.333333pt;}
.x7c{left:426.033971pt;}
.x7a{left:428.423873pt;}
.xc5{left:434.854667pt;}
.xd1{left:437.296000pt;}
.xc6{left:440.566667pt;}
.x6f{left:443.997333pt;}
.x11{left:446.945333pt;}
.x58{left:448.521677pt;}
.xe2{left:450.146667pt;}
.xcc{left:451.816000pt;}
.x12{left:453.586667pt;}
.x13{left:455.866667pt;}
.x70{left:456.813333pt;}
.xe3{left:459.168000pt;}
.x14{left:462.508000pt;}
.xcd{left:465.098667pt;}
.xef{left:466.525333pt;}
.x24{left:468.482667pt;}
.xf0{left:472.574667pt;}
.x15{left:475.330667pt;}
.x16{left:481.972000pt;}
.x19{left:483.516000pt;}
.x17{left:485.262667pt;}
.x54{left:488.445333pt;}
.xcb{left:490.781333pt;}
.xb5{left:492.743117pt;}
.xee{left:495.784000pt;}
.x1a{left:496.798667pt;}
.x18{left:498.546667pt;}
.xb4{left:501.623200pt;}
.x5a{left:505.254667pt;}
.xd6{left:507.182667pt;}
.x5b{left:511.604000pt;}
.xe7{left:512.561333pt;}
.x1b{left:514.216000pt;}
.x55{left:518.554667pt;}
.xf3{left:519.629333pt;}
.xb6{left:522.023200pt;}
.x56{left:525.393333pt;}
.x1c{left:527.500000pt;}
.xbb{left:534.710667pt;}
.x1e{left:537.014667pt;}
.x4c{left:543.321333pt;}
.x4d{left:546.770667pt;}
.xb3{left:548.183149pt;}
.x1f{left:550.298667pt;}
.x52{left:553.369957pt;}
.x31{left:554.534667pt;}
.xf{left:556.892000pt;}
.xb7{left:561.703200pt;}
.x10{left:563.534667pt;}
.xe6{left:566.782667pt;}
.x32{left:567.818667pt;}
.xca{left:570.121333pt;}
.xbc{left:580.324000pt;}
.x25{left:586.077333pt;}
.xe5{left:587.697333pt;}
.xbd{left:590.973333pt;}
.xb8{left:592.662884pt;}
.xd{left:594.098667pt;}
.x26{left:599.361333pt;}
.xe{left:600.740000pt;}
.xbe{left:608.678667pt;}
.xf4{left:610.409333pt;}
.x6a{left:616.101333pt;}
.xce{left:617.394667pt;}
.x6b{left:621.813333pt;}
.xc7{left:622.953333pt;}
.xf5{left:624.661333pt;}
.x75{left:628.626667pt;}
.xd2{left:629.974667pt;}
.x45{left:633.628000pt;}
.x38{left:635.486069pt;}
.xdf{left:637.380000pt;}
.x76{left:641.224000pt;}
.xd9{left:642.962667pt;}
.x2f{left:646.746667pt;}
.xc9{left:652.073333pt;}
.xda{left:653.888000pt;}
.x77{left:656.785333pt;}
.xb{left:658.086667pt;}
.x30{left:660.030667pt;}
.xc{left:664.729333pt;}
.xcf{left:666.144000pt;}
.xdb{left:669.766667pt;}
.xd0{left:671.856000pt;}
.xd4{left:674.548000pt;}
.xdc{left:675.816000pt;}
.x1d{left:678.542667pt;}
.xa2{left:680.583808pt;}
.xa0{left:683.463208pt;}
.xdd{left:691.034667pt;}
.x9{left:692.129333pt;}
.xd8{left:697.514667pt;}
.xa{left:698.770667pt;}
.xec{left:701.921333pt;}
.x4e{left:705.902667pt;}
.x42{left:708.710667pt;}
.xed{left:710.126667pt;}
.x43{left:721.993333pt;}
.x20{left:727.152000pt;}
.xb9{left:732.121333pt;}
.x21{left:740.436000pt;}
.xbf{left:743.393333pt;}
.x29{left:744.737333pt;}
}




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