
    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_cb8b709532421204ab6b2446.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_4c6ee2db173311dfe085a2c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3537068219c3e848bd0fd3da.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6d1cdd44bc4a0d181ee290ff.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fc04db2b9fe8876d1d9b44ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_054b3cc1f7e4d1d1351f535e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_16f9d139eb298a8f563d17f9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4d64c70881ab0751f012d344.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.718000;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_9a14db30b413b716ab985701.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_caf0a270915e3aa61144bd55.woff2')format("woff");}.fff{font-family:fff;line-height:3.175000;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_aacbcf97fe94e7414ede9f11.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_31b96c34d1f9729f68dccf04.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.006836;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_a5de6d3fcfae251d4b2382fc.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_b3c2868a3ae26db3a16937dd.woff2')format("woff");}.ff13{font-family:ff13;line-height:4.457031;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_914abf83995d0afa818b6bf1.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_826a9d25079c00168edf72b9.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.006836;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_60f3a5f0692f5fee00757cc2.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_3f5cd0c1f20677fdb54dcb1f.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_914abf83995d0afa818b6bf1.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_a659a767b7b9f8ecb014b53e.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.006836;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_c0bf62eaa98db3cda2b947c0.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_914abf83995d0afa818b6bf1.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_21e12bf3d34c6edad3371173.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.006836;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_d0dc154c36980847ea9c573f.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_914abf83995d0afa818b6bf1.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_21e12bf3d34c6edad3371173.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.006836;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_d0dc154c36980847ea9c573f.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_914abf83995d0afa818b6bf1.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_9fe2ada92339a72b53227fd6.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.006836;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_dd44aabbdd640f8709f5d837.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_0477ef00392ae7c1379e0cf4.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_914abf83995d0afa818b6bf1.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_9fe2ada92339a72b53227fd6.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.006836;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_dd44aabbdd640f8709f5d837.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_0477ef00392ae7c1379e0cf4.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_a83d5c2c39d3782e53c63fd1.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.914000;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_bd4d61b1a04036cd83a2e69f.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.740000;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_3975b9d502bb44ac169d0ceb.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_7469d0ec7f29662ccc643431.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{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);}
.m15{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);}
.me{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);}
.m13{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);}
.ma{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);}
.m4{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);}
.m21{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);}
.m20{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);}
.m2{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);}
.m26{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.md{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m28{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);}
.mb{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);}
.m6{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m1b{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);}
.m27{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);}
.m24{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);}
.m14{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);}
.mc{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);}
.m8{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);}
.m1d{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);}
.m11{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);}
.m1a{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);}
.m25{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);}
.m19{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m17{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);}
.m23{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);}
.m1e{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);}
.m3{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vf{vertical-align:-136.857727px;}
.v19{vertical-align:-31.093200px;}
.v18{vertical-align:-23.830200px;}
.v2{vertical-align:-19.530000px;}
.v1b{vertical-align:-15.190200px;}
.v4{vertical-align:-11.184000px;}
.v3{vertical-align:-8.964000px;}
.v11{vertical-align:-6.967668px;}
.v1c{vertical-align:-5.648400px;}
.v12{vertical-align:-4.498200px;}
.va{vertical-align:-2.534178px;}
.v21{vertical-align:-1.356600px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:1.264444px;}
.v9{vertical-align:2.534178px;}
.v10{vertical-align:5.068356px;}
.v8{vertical-align:10.771200px;}
.vb{vertical-align:12.988800px;}
.v13{vertical-align:18.829800px;}
.v1{vertical-align:21.702000px;}
.v17{vertical-align:23.322600px;}
.v1a{vertical-align:24.510600px;}
.v15{vertical-align:26.686800px;}
.v6{vertical-align:29.214000px;}
.v1f{vertical-align:30.639600px;}
.v14{vertical-align:34.597800px;}
.ve{vertical-align:38.970265px;}
.v5{vertical-align:40.470000px;}
.v7{vertical-align:43.518000px;}
.v1e{vertical-align:45.073800px;}
.v1d{vertical-align:55.458000px;}
.vc{vertical-align:67.479477px;}
.v20{vertical-align:77.409000px;}
.v16{vertical-align:84.412800px;}
.ls8c{letter-spacing:-0.428535px;}
.lsbc{letter-spacing:-0.312624px;}
.lsce{letter-spacing:-0.294588px;}
.lsa0{letter-spacing:-0.222204px;}
.ls88{letter-spacing:-0.169298px;}
.lscb{letter-spacing:-0.162324px;}
.ls7e{letter-spacing:-0.158717px;}
.lscd{letter-spacing:-0.156312px;}
.ls81{letter-spacing:-0.148136px;}
.ls87{letter-spacing:-0.132264px;}
.ls80{letter-spacing:-0.126973px;}
.lscc{letter-spacing:-0.120240px;}
.ls7d{letter-spacing:-0.116392px;}
.ls8d{letter-spacing:-0.111102px;}
.lsb4{letter-spacing:-0.090972px;}
.ls7f{letter-spacing:-0.089940px;}
.ls73{letter-spacing:-0.080055px;}
.ls89{letter-spacing:-0.079358px;}
.ls85{letter-spacing:-0.074068px;}
.lsbf{letter-spacing:-0.070200px;}
.ls9e{letter-spacing:-0.067415px;}
.lsa3{letter-spacing:-0.061776px;}
.ls83{letter-spacing:-0.052906px;}
.lsd1{letter-spacing:-0.048096px;}
.ls9f{letter-spacing:-0.047615px;}
.ls7a{letter-spacing:-0.042324px;}
.lsca{letter-spacing:-0.042084px;}
.lsba{letter-spacing:-0.036072px;}
.ls8e{letter-spacing:-0.031743px;}
.lsbb{letter-spacing:-0.030060px;}
.lsb9{letter-spacing:-0.027000px;}
.ls7c{letter-spacing:-0.026453px;}
.lsa2{letter-spacing:-0.023760px;}
.lsbe{letter-spacing:-0.021600px;}
.ls86{letter-spacing:-0.021162px;}
.lsa1{letter-spacing:-0.019008px;}
.lsbd{letter-spacing:-0.018036px;}
.lsb8{letter-spacing:-0.016200px;}
.lscf{letter-spacing:-0.012024px;}
.lsb6{letter-spacing:-0.010800px;}
.ls79{letter-spacing:-0.010581px;}
.lsd0{letter-spacing:-0.006012px;}
.ls7b{letter-spacing:-0.005291px;}
.lsb5{letter-spacing:-0.004788px;}
.ls74{letter-spacing:-0.004213px;}
.ls0{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.000017px;}
.ls50{letter-spacing:0.000182px;}
.ls2a{letter-spacing:0.000389px;}
.ls10{letter-spacing:0.000435px;}
.lsec{letter-spacing:0.000540px;}
.ls106{letter-spacing:0.000712px;}
.ls39{letter-spacing:0.000904px;}
.lsb2{letter-spacing:0.000933px;}
.lsf2{letter-spacing:0.001020px;}
.lse2{letter-spacing:0.001036px;}
.ls6{letter-spacing:0.001050px;}
.lsd{letter-spacing:0.001518px;}
.ls94{letter-spacing:0.001541px;}
.lsf7{letter-spacing:0.001599px;}
.lse{letter-spacing:0.001837px;}
.ls107{letter-spacing:0.001926px;}
.ls7{letter-spacing:0.002181px;}
.ls45{letter-spacing:0.002203px;}
.ls8{letter-spacing:0.002224px;}
.ls13{letter-spacing:0.002332px;}
.ls9{letter-spacing:0.002360px;}
.ls5{letter-spacing:0.002605px;}
.ls102{letter-spacing:0.002727px;}
.ls105{letter-spacing:0.002818px;}
.lsfc{letter-spacing:0.002850px;}
.ls26{letter-spacing:0.003292px;}
.lsb{letter-spacing:0.003488px;}
.ls11{letter-spacing:0.003494px;}
.ls8f{letter-spacing:0.003550px;}
.ls3c{letter-spacing:0.003598px;}
.ls104{letter-spacing:0.003909px;}
.ls42{letter-spacing:0.003943px;}
.ls109{letter-spacing:0.004168px;}
.lsd2{letter-spacing:0.004200px;}
.lsf0{letter-spacing:0.004320px;}
.ls14{letter-spacing:0.004350px;}
.ls1e{letter-spacing:0.004403px;}
.lsf{letter-spacing:0.004518px;}
.ls6c{letter-spacing:0.005291px;}
.lsa8{letter-spacing:0.005400px;}
.lsab{letter-spacing:0.006012px;}
.ls56{letter-spacing:0.010581px;}
.lsb0{letter-spacing:0.012024px;}
.ls9b{letter-spacing:0.015872px;}
.lsb7{letter-spacing:0.016200px;}
.ls9a{letter-spacing:0.016854px;}
.lsc7{letter-spacing:0.018036px;}
.ls66{letter-spacing:0.018755px;}
.ls9d{letter-spacing:0.019008px;}
.lsc5{letter-spacing:0.024048px;}
.ls64{letter-spacing:0.026453px;}
.lsa7{letter-spacing:0.027000px;}
.lsaf{letter-spacing:0.030060px;}
.ls63{letter-spacing:0.031743px;}
.lsc6{letter-spacing:0.036072px;}
.ls59{letter-spacing:0.037034px;}
.lsc0{letter-spacing:0.037800px;}
.lsad{letter-spacing:0.042084px;}
.ls5e{letter-spacing:0.042324px;}
.ls62{letter-spacing:0.047615px;}
.lsc4{letter-spacing:0.048096px;}
.lsc2{letter-spacing:0.048600px;}
.ls6a{letter-spacing:0.052906px;}
.lsa9{letter-spacing:0.054000px;}
.lsb1{letter-spacing:0.054108px;}
.ls53{letter-spacing:0.054775px;}
.ls9c{letter-spacing:0.057024px;}
.ls5f{letter-spacing:0.058196px;}
.lsae{letter-spacing:0.060120px;}
.lsa4{letter-spacing:0.062244px;}
.ls95{letter-spacing:0.063202px;}
.ls58{letter-spacing:0.063487px;}
.lsc8{letter-spacing:0.066132px;}
.lsc3{letter-spacing:0.070200px;}
.ls8a{letter-spacing:0.074068px;}
.lsc1{letter-spacing:0.075600px;}
.ls97{letter-spacing:0.075842px;}
.lsac{letter-spacing:0.078156px;}
.ls61{letter-spacing:0.084649px;}
.lsaa{letter-spacing:0.086400px;}
.ls65{letter-spacing:0.092759px;}
.ls99{letter-spacing:0.109549px;}
.ls78{letter-spacing:0.121683px;}
.ls84{letter-spacing:0.121746px;}
.ls96{letter-spacing:0.122190px;}
.ls98{letter-spacing:0.139044px;}
.ls55{letter-spacing:0.151684px;}
.ls60{letter-spacing:0.158717px;}
.ls54{letter-spacing:0.160111px;}
.lsa6{letter-spacing:0.172368px;}
.ls5a{letter-spacing:0.174588px;}
.lsa5{letter-spacing:0.181944px;}
.ls5b{letter-spacing:0.222204px;}
.lsf9{letter-spacing:0.323077px;}
.lsfb{letter-spacing:0.421094px;}
.lsff{letter-spacing:0.426494px;}
.lse8{letter-spacing:0.453388px;}
.lsfd{letter-spacing:0.470269px;}
.ls101{letter-spacing:0.470836px;}
.lsf8{letter-spacing:0.471435px;}
.ls108{letter-spacing:0.537859px;}
.lsdb{letter-spacing:0.542739px;}
.ls3b{letter-spacing:0.542815px;}
.lsdf{letter-spacing:0.548139px;}
.ls22{letter-spacing:0.548815px;}
.ls32{letter-spacing:0.564571px;}
.ls21{letter-spacing:0.567943px;}
.ls3a{letter-spacing:0.570571px;}
.ls52{letter-spacing:0.585579px;}
.lsea{letter-spacing:0.599780px;}
.lsde{letter-spacing:0.605180px;}
.lse7{letter-spacing:0.656817px;}
.ls23{letter-spacing:0.670741px;}
.ls35{letter-spacing:0.676741px;}
.ls48{letter-spacing:0.720783px;}
.ls3d{letter-spacing:0.744904px;}
.ls40{letter-spacing:0.750904px;}
.lsfe{letter-spacing:0.761294px;}
.ls77{letter-spacing:0.782084px;}
.lsc9{letter-spacing:0.811620px;}
.lse6{letter-spacing:0.907244px;}
.ls36{letter-spacing:1.041634px;}
.ls2f{letter-spacing:1.047634px;}
.lsc{letter-spacing:1.275394px;}
.ls2c{letter-spacing:1.431154px;}
.ls4{letter-spacing:1.861130px;}
.lse4{letter-spacing:2.424090px;}
.ls6b{letter-spacing:2.534400px;}
.lseb{letter-spacing:2.689740px;}
.ls100{letter-spacing:2.820435px;}
.lsed{letter-spacing:2.825835px;}
.lsf1{letter-spacing:2.876217px;}
.ls1d{letter-spacing:2.985943px;}
.ls34{letter-spacing:2.988571px;}
.ls1f{letter-spacing:2.989200px;}
.lsd4{letter-spacing:2.991943px;}
.ls57{letter-spacing:3.015936px;}
.lsfa{letter-spacing:3.160890px;}
.ls5c{letter-spacing:3.332736px;}
.ls27{letter-spacing:3.735943px;}
.ls43{letter-spacing:4.539598px;}
.ls8b{letter-spacing:5.147715px;}
.ls41{letter-spacing:5.212741px;}
.lse3{letter-spacing:8.070736px;}
.lse0{letter-spacing:9.414783px;}
.lsdd{letter-spacing:9.995479px;}
.lsdc{letter-spacing:10.021320px;}
.ls76{letter-spacing:11.528130px;}
.ls3e{letter-spacing:11.620200px;}
.ls3f{letter-spacing:11.622124px;}
.lsa{letter-spacing:11.954850px;}
.lsf5{letter-spacing:12.100804px;}
.lsf3{letter-spacing:12.101633px;}
.lsee{letter-spacing:12.104250px;}
.lsf4{letter-spacing:12.106204px;}
.lsf6{letter-spacing:12.288417px;}
.lse9{letter-spacing:12.293817px;}
.ls25{letter-spacing:12.339483px;}
.ls4d{letter-spacing:12.345483px;}
.ls24{letter-spacing:12.370200px;}
.ls91{letter-spacing:12.372961px;}
.ls90{letter-spacing:12.374727px;}
.ls92{letter-spacing:12.374736px;}
.ls103{letter-spacing:12.778771px;}
.ls4b{letter-spacing:12.949430px;}
.ls82{letter-spacing:12.951291px;}
.ls16{letter-spacing:13.808164px;}
.ls46{letter-spacing:14.215619px;}
.ls28{letter-spacing:14.446496px;}
.lsb3{letter-spacing:14.525471px;}
.lsd7{letter-spacing:14.642265px;}
.ls71{letter-spacing:14.795838px;}
.ls4a{letter-spacing:14.868152px;}
.ls51{letter-spacing:14.941150px;}
.lsd8{letter-spacing:14.941897px;}
.ls2e{letter-spacing:14.942725px;}
.ls18{letter-spacing:14.943900px;}
.ls20{letter-spacing:14.944435px;}
.ls1c{letter-spacing:14.946124px;}
.ls93{letter-spacing:15.003676px;}
.ls44{letter-spacing:15.043792px;}
.ls70{letter-spacing:15.090586px;}
.ls72{letter-spacing:15.107093px;}
.ls2b{letter-spacing:15.167387px;}
.ls17{letter-spacing:15.183002px;}
.lsd6{letter-spacing:15.184982px;}
.lsd3{letter-spacing:15.189455px;}
.ls2d{letter-spacing:15.213879px;}
.lsd9{letter-spacing:15.242778px;}
.lsda{letter-spacing:15.302554px;}
.ls15{letter-spacing:15.481880px;}
.ls75{letter-spacing:15.839937px;}
.ls29{letter-spacing:16.068464px;}
.ls67{letter-spacing:16.174224px;}
.lsd5{letter-spacing:16.644282px;}
.ls6f{letter-spacing:17.159634px;}
.ls38{letter-spacing:17.319483px;}
.ls6e{letter-spacing:17.334924px;}
.ls47{letter-spacing:17.348758px;}
.ls1b{letter-spacing:17.931943px;}
.ls30{letter-spacing:18.022741px;}
.ls37{letter-spacing:18.028741px;}
.ls1a{letter-spacing:19.704241px;}
.ls19{letter-spacing:19.706490px;}
.ls12{letter-spacing:24.448220px;}
.ls31{letter-spacing:24.495483px;}
.ls4f{letter-spacing:29.487483px;}
.lse5{letter-spacing:31.005824px;}
.lsef{letter-spacing:31.011224px;}
.ls1{letter-spacing:57.415200px;}
.ls2{letter-spacing:70.236600px;}
.ls3{letter-spacing:72.353510px;}
.lse1{letter-spacing:98.424720px;}
.ls4c{letter-spacing:101.100124px;}
.ls69{letter-spacing:749.942171px;}
.ls68{letter-spacing:751.529339px;}
.ls5d{letter-spacing:769.903453px;}
.ls4e{letter-spacing:927.652741px;}
.ls49{letter-spacing:942.930783px;}
.ls6d{letter-spacing:1033.796586px;}
.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;}
}
.ws103{word-spacing:-60.120000px;}
.wsc0{word-spacing:-42.134400px;}
.ws71{word-spacing:-27.479169px;}
.ws77{word-spacing:-24.590523px;}
.ws72{word-spacing:-23.167362px;}
.ws11{word-spacing:-17.394700px;}
.ws5{word-spacing:-15.655334px;}
.ws15{word-spacing:-14.943900px;}
.ws12c{word-spacing:-14.089801px;}
.ws21{word-spacing:-13.915795px;}
.wse0{word-spacing:-13.516200px;}
.ws102{word-spacing:-13.505400px;}
.wse1{word-spacing:-13.473000px;}
.ws3{word-spacing:-13.449600px;}
.wsfd{word-spacing:-13.429800px;}
.ws74{word-spacing:-13.226400px;}
.ws78{word-spacing:-12.876114px;}
.ws75{word-spacing:-12.847127px;}
.wsdf{word-spacing:-12.151944px;}
.ws129{word-spacing:-12.104640px;}
.ws1f{word-spacing:-11.955150px;}
.wsc2{word-spacing:-11.856240px;}
.wsc1{word-spacing:-11.818224px;}
.ws70{word-spacing:-11.639232px;}
.ws79{word-spacing:-11.565164px;}
.ws2{word-spacing:-11.357400px;}
.ws6f{word-spacing:-10.693711px;}
.ws136{word-spacing:-9.414630px;}
.ws51{word-spacing:-4.244068px;}
.wsa{word-spacing:-3.765863px;}
.ws56{word-spacing:-3.706087px;}
.ws104{word-spacing:-3.466985px;}
.wsf{word-spacing:-3.407209px;}
.ws6a{word-spacing:-3.315300px;}
.ws16e{word-spacing:-3.281702px;}
.ws4e{word-spacing:-2.988780px;}
.ws17c{word-spacing:-2.905114px;}
.ws115{word-spacing:-2.825640px;}
.wsa8{word-spacing:-2.825159px;}
.wsb{word-spacing:-2.749678px;}
.ws7a{word-spacing:-2.689920px;}
.ws7b{word-spacing:-2.474726px;}
.ws6e{word-spacing:-2.450800px;}
.ws68{word-spacing:-2.331248px;}
.ws69{word-spacing:-2.271473px;}
.ws67{word-spacing:-2.211697px;}
.wsfb{word-spacing:-2.146284px;}
.ws45{word-spacing:-2.032370px;}
.ws5c{word-spacing:-1.982494px;}
.ws5d{word-spacing:-1.972595px;}
.ws7{word-spacing:-1.908367px;}
.wsb2{word-spacing:-1.883439px;}
.wsce{word-spacing:-1.835824px;}
.ws118{word-spacing:-1.743480px;}
.wsb1{word-spacing:-1.730013px;}
.wscf{word-spacing:-1.703560px;}
.ws33{word-spacing:-1.673717px;}
.ws169{word-spacing:-1.613952px;}
.wsad{word-spacing:-1.513100px;}
.wsd5{word-spacing:-1.497228px;}
.wsae{word-spacing:-1.423161px;}
.ws6{word-spacing:-1.322630px;}
.ws15d{word-spacing:-1.291162px;}
.ws127{word-spacing:-1.255288px;}
.ws119{word-spacing:-1.196388px;}
.ws44{word-spacing:-1.195512px;}
.ws55{word-spacing:-1.135736px;}
.ws54{word-spacing:-1.075961px;}
.wsb8{word-spacing:-1.073984px;}
.ws17{word-spacing:-1.016185px;}
.wsd4{word-spacing:-0.968172px;}
.ws16{word-spacing:-0.956410px;}
.ws3b{word-spacing:-0.896634px;}
.ws64{word-spacing:-0.717307px;}
.wsf2{word-spacing:-0.709416px;}
.ws14e{word-spacing:-0.657532px;}
.wsf1{word-spacing:-0.637272px;}
.ws22{word-spacing:-0.597756px;}
.wsa7{word-spacing:-0.581962px;}
.ws101{word-spacing:-0.567000px;}
.ws100{word-spacing:-0.540000px;}
.ws4b{word-spacing:-0.537980px;}
.wsbb{word-spacing:-0.523765px;}
.wsff{word-spacing:-0.518400px;}
.ws3d{word-spacing:-0.478205px;}
.wsba{word-spacing:-0.444407px;}
.wse6{word-spacing:-0.418429px;}
.ws159{word-spacing:-0.376589px;}
.ws2c{word-spacing:-0.358654px;}
.wsfc{word-spacing:-0.324648px;}
.ws15b{word-spacing:-0.322790px;}
.ws1b{word-spacing:-0.298878px;}
.wsd8{word-spacing:-0.285690px;}
.wse8{word-spacing:-0.263340px;}
.ws125{word-spacing:-0.252504px;}
.wsc6{word-spacing:-0.240166px;}
.ws12{word-spacing:-0.239102px;}
.ws117{word-spacing:-0.234468px;}
.ws9f{word-spacing:-0.232785px;}
.ws87{word-spacing:-0.231739px;}
.ws126{word-spacing:-0.228456px;}
.wsc9{word-spacing:-0.219099px;}
.ws160{word-spacing:-0.215194px;}
.wsa6{word-spacing:-0.211622px;}
.wsc7{word-spacing:-0.202245px;}
.ws83{word-spacing:-0.191282px;}
.wsca{word-spacing:-0.189605px;}
.ws63{word-spacing:-0.186337px;}
.ws1a{word-spacing:-0.179327px;}
.ws168{word-spacing:-0.161395px;}
.wsc8{word-spacing:-0.155897px;}
.wsc5{word-spacing:-0.143257px;}
.wscc{word-spacing:-0.134830px;}
.wsb9{word-spacing:-0.126973px;}
.ws1d{word-spacing:-0.119551px;}
.ws174{word-spacing:-0.107597px;}
.wscb{word-spacing:-0.096909px;}
.wse7{word-spacing:-0.086184px;}
.ws86{word-spacing:-0.075842px;}
.wsc{word-spacing:-0.059776px;}
.wsfe{word-spacing:-0.053798px;}
.ws13b{word-spacing:-0.051108px;}
.ws12a{word-spacing:-0.048419px;}
.ws81{word-spacing:-0.047821px;}
.ws59{word-spacing:-0.045430px;}
.ws12d{word-spacing:-0.037659px;}
.ws4{word-spacing:-0.014592px;}
.wscd{word-spacing:-0.012640px;}
.ws177{word-spacing:-0.011453px;}
.ws170{word-spacing:-0.008592px;}
.ws173{word-spacing:-0.008266px;}
.ws166{word-spacing:-0.007853px;}
.ws176{word-spacing:-0.007651px;}
.ws164{word-spacing:-0.006451px;}
.ws17e{word-spacing:-0.005453px;}
.ws167{word-spacing:-0.004838px;}
.wse5{word-spacing:-0.002755px;}
.ws172{word-spacing:-0.002467px;}
.ws13f{word-spacing:-0.002344px;}
.ws16a{word-spacing:-0.001555px;}
.wse4{word-spacing:-0.001200px;}
.ws1{word-spacing:-0.001099px;}
.ws16b{word-spacing:-0.000576px;}
.ws0{word-spacing:0.000000px;}
.ws12e{word-spacing:0.001097px;}
.ws162{word-spacing:0.001267px;}
.ws1e{word-spacing:0.001610px;}
.ws131{word-spacing:0.002160px;}
.ws5f{word-spacing:0.002188px;}
.ws91{word-spacing:0.021162px;}
.ws11d{word-spacing:0.024048px;}
.ws8b{word-spacing:0.042324px;}
.ws10d{word-spacing:0.048096px;}
.ws9a{word-spacing:0.052906px;}
.wse2{word-spacing:0.053798px;}
.ws10{word-spacing:0.059776px;}
.wsf6{word-spacing:0.060120px;}
.wsab{word-spacing:0.089940px;}
.ws116{word-spacing:0.090180px;}
.wsee{word-spacing:0.091800px;}
.ws134{word-spacing:0.096837px;}
.wsbc{word-spacing:0.100521px;}
.ws11c{word-spacing:0.102204px;}
.ws109{word-spacing:0.102600px;}
.ws165{word-spacing:0.107597px;}
.ws10c{word-spacing:0.108000px;}
.ws1c{word-spacing:0.119551px;}
.ws90{word-spacing:0.121683px;}
.wsec{word-spacing:0.124200px;}
.ws10b{word-spacing:0.129600px;}
.wsdd{word-spacing:0.137808px;}
.ws108{word-spacing:0.140400px;}
.wsde{word-spacing:0.156816px;}
.ws163{word-spacing:0.161395px;}
.ws10a{word-spacing:0.172800px;}
.ws107{word-spacing:0.178200px;}
.ws8{word-spacing:0.179327px;}
.ws133{word-spacing:0.193674px;}
.wsed{word-spacing:0.194400px;}
.ws9e{word-spacing:0.206332px;}
.ws24{word-spacing:0.239102px;}
.ws137{word-spacing:0.242093px;}
.wsac{word-spacing:0.248656px;}
.ws16c{word-spacing:0.268992px;}
.ws14{word-spacing:0.298878px;}
.ws93{word-spacing:0.312143px;}
.wse3{word-spacing:0.322790px;}
.ws19{word-spacing:0.358654px;}
.ws92{word-spacing:0.386211px;}
.ws15e{word-spacing:0.430387px;}
.ws53{word-spacing:0.478205px;}
.ws57{word-spacing:0.537980px;}
.ws29{word-spacing:0.597756px;}
.ws13{word-spacing:0.657532px;}
.wsf5{word-spacing:0.751500px;}
.wsfa{word-spacing:0.769536px;}
.ws9{word-spacing:0.777083px;}
.wsf9{word-spacing:0.799596px;}
.ws10e{word-spacing:0.853704px;}
.wsc4{word-spacing:1.022170px;}
.ws8d{word-spacing:1.031659px;}
.ws8c{word-spacing:1.042240px;}
.ws149{word-spacing:1.135736px;}
.ws11a{word-spacing:1.154304px;}
.ws106{word-spacing:1.195512px;}
.wsef{word-spacing:1.208412px;}
.ws3e{word-spacing:1.255288px;}
.ws18{word-spacing:1.315063px;}
.wsc3{word-spacing:1.344960px;}
.ws14f{word-spacing:1.374839px;}
.ws84{word-spacing:1.386797px;}
.ws17b{word-spacing:1.452557px;}
.ws11b{word-spacing:1.466928px;}
.ws40{word-spacing:1.494390px;}
.ws82{word-spacing:1.530259px;}
.ws14d{word-spacing:1.613941px;}
.ws2f{word-spacing:1.673717px;}
.ws23{word-spacing:1.733492px;}
.ws2b{word-spacing:1.793268px;}
.wsf0{word-spacing:1.839672px;}
.ws85{word-spacing:1.912819px;}
.ws94{word-spacing:1.931054px;}
.ws97{word-spacing:1.946926px;}
.wsaa{word-spacing:1.983960px;}
.ws52{word-spacing:2.032370px;}
.ws27{word-spacing:2.092146px;}
.ws6c{word-spacing:2.151922px;}
.ws11e{word-spacing:2.188368px;}
.ws114{word-spacing:2.224440px;}
.ws124{word-spacing:2.242476px;}
.wsa9{word-spacing:2.248488px;}
.ws11f{word-spacing:2.254500px;}
.ws2d{word-spacing:2.271473px;}
.ws123{word-spacing:2.290572px;}
.wsd2{word-spacing:2.306684px;}
.ws38{word-spacing:2.331248px;}
.ws80{word-spacing:2.343209px;}
.wsd1{word-spacing:2.343718px;}
.ws157{word-spacing:2.367130px;}
.ws47{word-spacing:2.391024px;}
.ws48{word-spacing:2.450800px;}
.ws4f{word-spacing:2.570351px;}
.ws26{word-spacing:2.630126px;}
.ws12b{word-spacing:2.711413px;}
.ws15a{word-spacing:2.743718px;}
.ws179{word-spacing:3.120307px;}
.ws4c{word-spacing:3.168107px;}
.ws96{word-spacing:3.206079px;}
.ws105{word-spacing:3.227882px;}
.wsdb{word-spacing:3.269376px;}
.wsdc{word-spacing:3.307392px;}
.wsd9{word-spacing:3.345408px;}
.ws6b{word-spacing:3.347434px;}
.wsda{word-spacing:3.350160px;}
.ws14b{word-spacing:3.407209px;}
.ws2e{word-spacing:3.466985px;}
.wsd3{word-spacing:3.523513px;}
.ws95{word-spacing:3.571128px;}
.ws99{word-spacing:3.592290px;}
.ws31{word-spacing:3.706087px;}
.ws89{word-spacing:3.819784px;}
.ws8a{word-spacing:3.846237px;}
.ws37{word-spacing:4.064741px;}
.ws3c{word-spacing:4.124516px;}
.wsaf{word-spacing:4.163671px;}
.ws65{word-spacing:4.184292px;}
.ws88{word-spacing:4.184833px;}
.ws4a{word-spacing:4.244068px;}
.ws62{word-spacing:4.363619px;}
.ws152{word-spacing:4.423394px;}
.wse9{word-spacing:4.471200px;}
.wseb{word-spacing:4.492800px;}
.wsea{word-spacing:4.509000px;}
.wsb0{word-spacing:4.512848px;}
.ws43{word-spacing:4.542946px;}
.ws154{word-spacing:4.602721px;}
.ws14a{word-spacing:4.662497px;}
.ws122{word-spacing:4.725432px;}
.ws58{word-spacing:4.782048px;}
.ws121{word-spacing:4.815612px;}
.ws3a{word-spacing:4.961375px;}
.ws14c{word-spacing:5.021150px;}
.ws171{word-spacing:5.057050px;}
.ws151{word-spacing:5.080926px;}
.wsa5{word-spacing:5.115972px;}
.wsb4{word-spacing:5.142424px;}
.wsb5{word-spacing:5.153005px;}
.ws112{word-spacing:5.158296px;}
.ws6d{word-spacing:5.200477px;}
.ws156{word-spacing:5.218445px;}
.ws113{word-spacing:5.248476px;}
.ws175{word-spacing:5.272243px;}
.ws158{word-spacing:5.326042px;}
.ws16f{word-spacing:5.375213px;}
.ws16d{word-spacing:5.377642px;}
.ws161{word-spacing:5.378323px;}
.ws15c{word-spacing:5.378822px;}
.ws15f{word-spacing:5.379840px;}
.ws17d{word-spacing:5.380560px;}
.ws42{word-spacing:5.499355px;}
.ws178{word-spacing:5.541235px;}
.ws155{word-spacing:5.595034px;}
.ws34{word-spacing:5.618906px;}
.ws30{word-spacing:5.678682px;}
.ws66{word-spacing:5.738458px;}
.wsa0{word-spacing:5.824907px;}
.ws49{word-spacing:5.858009px;}
.wsa1{word-spacing:5.914846px;}
.wsd{word-spacing:5.971475px;}
.wse{word-spacing:5.977560px;}
.ws5e{word-spacing:6.037336px;}
.ws32{word-spacing:6.276438px;}
.ws25{word-spacing:6.336214px;}
.wsa4{word-spacing:6.417449px;}
.ws39{word-spacing:6.455765px;}
.ws2a{word-spacing:6.635092px;}
.ws41{word-spacing:6.694867px;}
.wsa3{word-spacing:6.703140px;}
.wsa2{word-spacing:6.729592px;}
.ws153{word-spacing:6.874194px;}
.ws150{word-spacing:6.933970px;}
.wsb3{word-spacing:6.972958px;}
.ws98{word-spacing:7.020573px;}
.ws36{word-spacing:7.471950px;}
.ws35{word-spacing:7.531726px;}
.ws3f{word-spacing:7.890379px;}
.wsf8{word-spacing:8.338644px;}
.wsf7{word-spacing:8.386740px;}
.wsb6{word-spacing:8.549545px;}
.ws4d{word-spacing:8.607686px;}
.wsb7{word-spacing:8.766458px;}
.wsd6{word-spacing:8.888141px;}
.wsd7{word-spacing:8.956918px;}
.ws5a{word-spacing:8.985458px;}
.wsf3{word-spacing:9.048060px;}
.wsf4{word-spacing:9.084132px;}
.ws28{word-spacing:9.683647px;}
.ws10f{word-spacing:10.124208px;}
.ws120{word-spacing:10.839636px;}
.ws9c{word-spacing:11.009655px;}
.ws9d{word-spacing:11.258312px;}
.ws110{word-spacing:11.284524px;}
.ws9b{word-spacing:11.284764px;}
.ws111{word-spacing:11.771496px;}
.ws17a{word-spacing:11.835648px;}
.wsd0{word-spacing:12.385201px;}
.ws46{word-spacing:13.748388px;}
.ws50{word-spacing:14.107042px;}
.ws8e{word-spacing:16.511838px;}
.ws8f{word-spacing:16.554162px;}
.ws7d{word-spacing:52.437300px;}
.ws7f{word-spacing:52.485719px;}
.ws7c{word-spacing:53.807259px;}
.ws138{word-spacing:55.350484px;}
.ws13c{word-spacing:55.368660px;}
.ws142{word-spacing:55.401592px;}
.ws13a{word-spacing:56.832630px;}
.ws147{word-spacing:68.127604px;}
.ws76{word-spacing:72.015103px;}
.ws13e{word-spacing:72.471825px;}
.ws148{word-spacing:72.484137px;}
.ws144{word-spacing:76.662720px;}
.ws7e{word-spacing:113.649739px;}
.wsbe{word-spacing:163.317166px;}
.wsbf{word-spacing:197.198926px;}
.ws145{word-spacing:206.003572px;}
.ws140{word-spacing:206.009272px;}
.ws130{word-spacing:220.951938px;}
.wsbd{word-spacing:242.622176px;}
.ws143{word-spacing:253.434011px;}
.ws13d{word-spacing:253.439711px;}
.ws146{word-spacing:276.943283px;}
.ws141{word-spacing:276.948983px;}
.ws139{word-spacing:295.446832px;}
.ws128{word-spacing:309.800151px;}
.ws12f{word-spacing:335.777979px;}
.ws73{word-spacing:394.913883px;}
.ws132{word-spacing:542.438320px;}
.ws135{word-spacing:615.758380px;}
.ws61{word-spacing:788.320613px;}
.ws60{word-spacing:947.503036px;}
.ws5b{word-spacing:980.977372px;}
.ws20{word-spacing:1149.607224px;}
._1b{margin-left:-16.030406px;}
._1d{margin-left:-13.083555px;}
._0{margin-left:-11.943245px;}
._1c{margin-left:-10.766678px;}
._4{margin-left:-6.939994px;}
._b{margin-left:-5.439580px;}
._6{margin-left:-3.966490px;}
._6b{margin-left:-2.700367px;}
._8{margin-left:-1.322630px;}
._9{width:1.091170px;}
._2{width:2.999419px;}
._2f{width:10.759635px;}
._c{width:12.182135px;}
._11{width:14.174384px;}
._12{width:15.996520px;}
._5{width:17.861069px;}
._7{width:19.797811px;}
._d{width:20.918910px;}
._a{width:22.722295px;}
._14{width:24.336236px;}
._e{width:25.404630px;}
._10{width:27.278974px;}
._30{width:28.453186px;}
._19{width:29.781840px;}
._16{width:30.963761px;}
._6a{width:33.817387px;}
._17{width:34.868578px;}
._69{width:36.590234px;}
._1{width:37.658880px;}
._15{width:41.148314px;}
._13{width:44.121960px;}
._44{width:46.874520px;}
._4a{width:61.503584px;}
._22{width:64.541940px;}
._37{width:66.119871px;}
._3{width:69.349661px;}
._21{width:71.949980px;}
._65{width:73.611829px;}
._2e{width:75.339279px;}
._2b{width:76.694999px;}
._23{width:80.035880px;}
._5b{width:81.620243px;}
._2a{width:84.054620px;}
._5c{width:85.146728px;}
._28{width:88.073361px;}
._66{width:89.853557px;}
._64{width:92.250806px;}
._5f{width:93.681844px;}
._29{width:95.432982px;}
._5e{width:97.259437px;}
._60{width:98.377503px;}
._2c{width:99.500141px;}
._5d{width:100.837031px;}
._68{width:102.168811px;}
._5a{width:103.287278px;}
._46{width:105.095444px;}
._67{width:106.225502px;}
._34{width:108.739478px;}
._2d{width:111.604781px;}
._26{width:113.008919px;}
._63{width:116.425117px;}
._25{width:117.705519px;}
._4f{width:118.844789px;}
._4d{width:120.112144px;}
._38{width:121.958731px;}
._1f{width:123.145099px;}
._20{width:130.488019px;}
._3d{width:132.013652px;}
._24{width:133.151040px;}
._45{width:134.560030px;}
._27{width:141.866381px;}
._57{width:146.857398px;}
._43{width:148.722153px;}
._42{width:150.805008px;}
._62{width:153.674426px;}
._39{width:167.435170px;}
._4b{width:170.088146px;}
._61{width:176.159640px;}
._40{width:185.352189px;}
._48{width:186.453147px;}
._49{width:189.684466px;}
._47{width:202.055515px;}
._4e{width:207.668958px;}
._33{width:228.565730px;}
._3f{width:231.287929px;}
._3e{width:242.485210px;}
._4c{width:258.840074px;}
._51{width:265.585485px;}
._3c{width:276.108558px;}
._58{width:289.455958px;}
._50{width:295.564028px;}
._59{width:300.204878px;}
._41{width:310.865327px;}
._3b{width:321.550370px;}
._3a{width:356.311107px;}
._36{width:381.899778px;}
._35{width:409.468230px;}
._31{width:418.921685px;}
._55{width:428.552675px;}
._56{width:451.503072px;}
._32{width:486.432221px;}
._1e{width:732.753426px;}
._18{width:934.486214px;}
._1a{width:1543.311444px;}
._54{width:1729.645848px;}
._52{width:1753.763004px;}
._53{width:2162.445600px;}
._f{width:2186.355600px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(144,31,85);}
.fc0{color:rgb(0,0,0);}
.fs1e{font-size:26.899020px;}
.fs1f{font-size:28.028700px;}
.fs14{font-size:31.680000px;}
.fs12{font-size:37.065600px;}
.fs1c{font-size:37.658520px;}
.fs1d{font-size:39.240180px;}
.fs9{font-size:41.842800px;}
.fsc{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs10{font-size:42.134400px;}
.fs8{font-size:45.429600px;}
.fsb{font-size:47.236800px;}
.fsf{font-size:47.337600px;}
.fs17{font-size:47.520000px;}
.fsd{font-size:47.820600px;}
.fs18{font-size:47.880000px;}
.fs15{font-size:48.418560px;}
.fs16{font-size:49.494528px;}
.fs1b{font-size:50.452200px;}
.fs20{font-size:51.108480px;}
.fs11{font-size:52.905600px;}
.fsa{font-size:53.798400px;}
.fs1a{font-size:54.000000px;}
.fs13{font-size:57.974400px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs19{font-size:60.120000px;}
.fse{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.fs5{font-size:151.185600px;}
.y196{bottom:-758.747025px;}
.y195{bottom:-738.497106px;}
.y194{bottom:-718.247187px;}
.y193{bottom:-698.087448px;}
.y192{bottom:-677.837529px;}
.y191{bottom:-657.587610px;}
.y190{bottom:-637.337691px;}
.y18f{bottom:-617.087772px;}
.y18e{bottom:-596.837853px;}
.y18d{bottom:-567.678150px;}
.y18c{bottom:-529.428303px;}
.y18b{bottom:-509.178384px;}
.y18a{bottom:-488.928465px;}
.y189{bottom:-468.678546px;}
.y188{bottom:-448.428627px;}
.y1af{bottom:-432.612525px;}
.y187{bottom:-428.178708px;}
.y1ae{bottom:-412.362606px;}
.y186{bottom:-407.928789px;}
.y1ad{bottom:-392.112687px;}
.y185{bottom:-387.769050px;}
.y1ac{bottom:-371.952948px;}
.y1ab{bottom:-351.703029px;}
.y184{bottom:-349.968900px;}
.y176{bottom:-332.596050px;}
.y1aa{bottom:-331.453110px;}
.y183{bottom:-325.489050px;}
.y1a9{bottom:-311.203191px;}
.y1a8{bottom:-290.953272px;}
.y1a7{bottom:-270.703353px;}
.y165{bottom:-242.635392px;}
.y1a6{bottom:-241.543650px;}
.y164{bottom:-222.475653px;}
.y1a5{bottom:-203.293803px;}
.y163{bottom:-202.225734px;}
.y1a4{bottom:-183.043884px;}
.y162{bottom:-181.975815px;}
.y1a3{bottom:-162.793965px;}
.y161{bottom:-161.725896px;}
.y1a2{bottom:-142.544046px;}
.y160{bottom:-141.475977px;}
.y1a1{bottom:-122.294127px;}
.y15f{bottom:-121.226058px;}
.y1a0{bottom:-102.044208px;}
.y15e{bottom:-100.976139px;}
.y19f{bottom:-81.794289px;}
.y15d{bottom:-80.816400px;}
.y19e{bottom:-61.634550px;}
.y15c{bottom:-43.016850px;}
.y154{bottom:-40.353720px;}
.y175{bottom:-27.046050px;}
.y182{bottom:-26.689050px;}
.y19d{bottom:-23.834400px;}
.y15b{bottom:-23.486400px;}
.y153{bottom:-23.166924px;}
.y174{bottom:-2.566383px;}
.y181{bottom:-2.209050px;}
.y152{bottom:-1.623882px;}
.y17d{bottom:-1.072050px;}
.y0{bottom:0.000000px;}
.y19c{bottom:0.645450px;}
.y15a{bottom:0.993414px;}
.y30{bottom:3.425340px;}
.yfe{bottom:7.054748px;}
.y2f{bottom:14.151273px;}
.y23{bottom:14.814393px;}
.y50{bottom:63.780000px;}
.y5{bottom:66.525004px;}
.y129{bottom:88.359000px;}
.y4{bottom:97.125005px;}
.y128{bottom:108.624000px;}
.y4f{bottom:113.352000px;}
.y253{bottom:120.631500px;}
.y83{bottom:123.121500px;}
.yd4{bottom:124.369500px;}
.y127{bottom:128.887500px;}
.y26d{bottom:130.758000px;}
.y1c2{bottom:131.209500px;}
.y220{bottom:132.978750px;}
.y4e{bottom:133.617000px;}
.y2a0{bottom:138.606000px;}
.y21{bottom:139.264499px;}
.y21b{bottom:140.376750px;}
.y252{bottom:140.896500px;}
.y82{bottom:143.386500px;}
.yd3{bottom:144.633000px;}
.y156{bottom:145.735500px;}
.y21f{bottom:147.773400px;}
.y126{bottom:149.152500px;}
.y1c1{bottom:151.474500px;}
.y4d{bottom:153.880500px;}
.yac{bottom:154.632000px;}
.y26c{bottom:154.923000px;}
.y217{bottom:155.171400px;}
.y219{bottom:156.070500px;}
.y29f{bottom:157.974000px;}
.y251{bottom:161.160000px;}
.yfd{bottom:161.732205px;}
.y21e{bottom:162.568050px;}
.y81{bottom:163.650000px;}
.y218{bottom:164.733450px;}
.yd2{bottom:164.898000px;}
.y155{bottom:164.968500px;}
.y125{bottom:169.416000px;}
.y216{bottom:169.964700px;}
.y26b{bottom:170.121000px;}
.y1c0{bottom:171.738000px;}
.ya9{bottom:173.455500px;}
.y4c{bottom:174.145500px;}
.y29e{bottom:177.340500px;}
.y21d{bottom:177.362700px;}
.yfc{bottom:179.552134px;}
.y250{bottom:181.425000px;}
.y80{bottom:183.913500px;}
.y21a{bottom:184.759350px;}
.yd1{bottom:185.161500px;}
.y140{bottom:187.398000px;}
.yab{bottom:189.558000px;}
.y124{bottom:189.679500px;}
.y1bf{bottom:192.003000px;}
.y21c{bottom:192.157350px;}
.yaa{bottom:192.546000px;}
.y26a{bottom:194.286000px;}
.y4b{bottom:194.409000px;}
.y29d{bottom:196.708500px;}
.y18{bottom:196.933500px;}
.yfb{bottom:197.372063px;}
.y24f{bottom:201.688500px;}
.y7f{bottom:204.178500px;}
.yd0{bottom:205.426500px;}
.ya8{bottom:207.042000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y123{bottom:209.944500px;}
.y213{bottom:210.896700px;}
.y1be{bottom:212.266500px;}
.y215{bottom:213.433350px;}
.y4a{bottom:214.672500px;}
.yfa{bottom:215.191992px;}
.y29c{bottom:216.076500px;}
.y269{bottom:218.449500px;}
.y212{bottom:220.688250px;}
.y210{bottom:220.831350px;}
.y24e{bottom:221.952000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y7e{bottom:224.442000px;}
.y211{bottom:224.904300px;}
.ycf{bottom:225.690000px;}
.ya7{bottom:227.307000px;}
.y214{bottom:228.228000px;}
.y122{bottom:230.208000px;}
.y1bd{bottom:232.530000px;}
.yf9{bottom:233.011920px;}
.y268{bottom:233.647500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y49{bottom:234.937500px;}
.y29b{bottom:235.443000px;}
.y24d{bottom:242.217000px;}
.y7d{bottom:244.707000px;}
.yce{bottom:245.953500px;}
.ya6{bottom:247.570500px;}
.y17e{bottom:248.517000px;}
.y267{bottom:248.845500px;}
.y20f{bottom:249.505350px;}
.y121{bottom:250.473000px;}
.yf8{bottom:250.831849px;}
.y1bc{bottom:252.795000px;}
.y29a{bottom:254.811000px;}
.y48{bottom:255.201000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y20b{bottom:261.763350px;}
.y24c{bottom:262.480500px;}
.y266{bottom:264.043500px;}
.y20e{bottom:264.300000px;}
.y7c{bottom:264.970500px;}
.ycd{bottom:266.218500px;}
.ya5{bottom:267.834000px;}
.yf7{bottom:268.572419px;}
.y120{bottom:270.736500px;}
.y178{bottom:270.946500px;}
.y20a{bottom:271.553550px;}
.y208{bottom:271.696650px;}
.y151{bottom:271.853100px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y1bb{bottom:273.058500px;}
.y299{bottom:274.177500px;}
.y47{bottom:275.466000px;}
.y209{bottom:275.770950px;}
.y20d{bottom:279.093300px;}
.y265{bottom:279.241500px;}
.y24b{bottom:282.745500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y7b{bottom:285.234000px;}
.yf6{bottom:286.393599px;}
.ycc{bottom:286.482000px;}
.y170{bottom:287.131500px;}
.y173{bottom:289.933950px;}
.y11f{bottom:291.000000px;}
.ya4{bottom:291.646500px;}
.y1ba{bottom:293.323500px;}
.y298{bottom:293.545500px;}
.y20c{bottom:293.887950px;}
.y264{bottom:294.439500px;}
.y46{bottom:295.729500px;}
.y19b{bottom:299.445450px;}
.ya1{bottom:300.219000px;}
.y24a{bottom:303.009000px;}
.y180{bottom:303.070950px;}
.yf5{bottom:304.213528px;}
.y17c{bottom:304.477950px;}
.y7a{bottom:305.499000px;}
.y16f{bottom:307.395000px;}
.y159{bottom:307.623450px;}
.y263{bottom:309.639000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.ya0{bottom:310.470000px;}
.y11e{bottom:311.265000px;}
.y297{bottom:312.913500px;}
.y207{bottom:315.165300px;}
.ycb{bottom:315.712500px;}
.y45{bottom:315.993000px;}
.y1b9{bottom:322.554000px;}
.y202{bottom:322.561950px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y249{bottom:323.272500px;}
.y19a{bottom:323.925450px;}
.y79{bottom:325.762500px;}
.y204{bottom:326.098950px;}
.ya3{bottom:326.572500px;}
.y16e{bottom:327.660000px;}
.y17b{bottom:328.957617px;}
.ya2{bottom:329.560500px;}
.yf4{bottom:329.953425px;}
.y206{bottom:329.959950px;}
.y11d{bottom:331.528500px;}
.y296{bottom:332.280000px;}
.y203{bottom:336.082200px;}
.y44{bottom:336.258000px;}
.y201{bottom:337.356600px;}
.y262{bottom:342.769500px;}
.y248{bottom:343.537500px;}
.y9f{bottom:344.056500px;}
.y205{bottom:344.754600px;}
.y78{bottom:346.027500px;}
.y16d{bottom:347.923500px;}
.yf{bottom:348.133500px;}
.yca{bottom:350.532000px;}
.y295{bottom:351.648000px;}
.y11c{bottom:351.793500px;}
.y43{bottom:356.521500px;}
.y1b8{bottom:357.373500px;}
.y261{bottom:363.033000px;}
.yf3{bottom:363.613290px;}
.y9e{bottom:364.321500px;}
.y200{bottom:366.030600px;}
.y77{bottom:366.291000px;}
.y16c{bottom:368.187000px;}
.yc9{bottom:370.795500px;}
.y294{bottom:371.014500px;}
.y11b{bottom:372.057000px;}
.y42{bottom:376.786500px;}
.y1b7{bottom:377.637000px;}
.y1ff{bottom:380.825250px;}
.yf2{bottom:381.433219px;}
.y260{bottom:383.298000px;}
.y9d{bottom:384.585000px;}
.y76{bottom:386.554500px;}
.ye{bottom:386.785499px;}
.y16b{bottom:388.452000px;}
.y247{bottom:389.998650px;}
.y293{bottom:390.382500px;}
.yc8{bottom:391.060500px;}
.y1fb{bottom:391.382250px;}
.y11a{bottom:392.320500px;}
.y1f6{bottom:395.619900px;}
.y41{bottom:397.050000px;}
.y1b6{bottom:397.900500px;}
.y1f8{bottom:398.469750px;}
.yf1{bottom:399.173790px;}
.y1fc{bottom:402.865350px;}
.y25f{bottom:403.561500px;}
.y9c{bottom:404.848500px;}
.y246{bottom:405.615225px;}
.y75{bottom:406.819500px;}
.y1f7{bottom:407.508000px;}
.yd{bottom:408.044999px;}
.y16a{bottom:408.715500px;}
.y292{bottom:409.750500px;}
.y1f5{bottom:410.414550px;}
.yc7{bottom:411.324000px;}
.y1fa{bottom:411.732150px;}
.y119{bottom:412.585500px;}
.y1f9{bottom:414.152700px;}
.yf0{bottom:416.993718px;}
.y40{bottom:417.313500px;}
.y1b5{bottom:418.165500px;}
.y245{bottom:421.570950px;}
.y25e{bottom:423.825000px;}
.y9b{bottom:425.113500px;}
.y1fe{bottom:425.209200px;}
.y74{bottom:427.083000px;}
.y169{bottom:428.980500px;}
.y291{bottom:429.117000px;}
.yc6{bottom:431.589000px;}
.y118{bottom:432.849000px;}
.yef{bottom:434.813647px;}
.y3f{bottom:437.578500px;}
.y1b4{bottom:438.429000px;}
.y1fd{bottom:440.003850px;}
.y244{bottom:441.496725px;}
.y25d{bottom:444.090000px;}
.y9a{bottom:445.377000px;}
.y73{bottom:447.348000px;}
.y290{bottom:448.485000px;}
.y168{bottom:449.244000px;}
.yc5{bottom:451.852500px;}
.yee{bottom:452.633576px;}
.y117{bottom:453.114000px;}
.y3e{bottom:457.842000px;}
.y1b3{bottom:458.694000px;}
.y1f1{bottom:460.661550px;}
.y243{bottom:461.084775px;}
.y25c{bottom:464.353500px;}
.y99{bottom:465.642000px;}
.y1f4{bottom:466.058850px;}
.y1ee{bottom:467.607300px;}
.y72{bottom:467.611500px;}
.y28f{bottom:467.851500px;}
.yed{bottom:470.453504px;}
.y1f2{bottom:472.016400px;}
.yc4{bottom:472.116000px;}
.y116{bottom:473.377500px;}
.y1ed{bottom:473.455500px;}
.y242{bottom:476.701350px;}
.y3d{bottom:478.107000px;}
.y1b2{bottom:478.957500px;}
.y1f3{bottom:480.853500px;}
.y1f0{bottom:481.010100px;}
.y1ef{bottom:483.430650px;}
.y167{bottom:484.245000px;}
.y25b{bottom:484.618500px;}
.y98{bottom:485.905500px;}
.y28e{bottom:487.219500px;}
.y71{bottom:487.875000px;}
.yec{bottom:488.273433px;}
.yc3{bottom:492.381000px;}
.y115{bottom:493.641000px;}
.y240{bottom:496.287975px;}
.y3c{bottom:498.370500px;}
.y1b1{bottom:499.221000px;}
.yc{bottom:502.864502px;}
.y166{bottom:503.476500px;}
.y25a{bottom:504.882000px;}
.y97{bottom:506.169000px;}
.y1e9{bottom:506.290200px;}
.y28d{bottom:506.587500px;}
.y70{bottom:508.140000px;}
.yeb{bottom:510.131382px;}
.y241{bottom:511.565400px;}
.y1ec{bottom:511.687500px;}
.y23f{bottom:511.904550px;}
.y1e6{bottom:513.235950px;}
.y114{bottom:513.906000px;}
.yc2{bottom:514.722000px;}
.y1ea{bottom:517.645050px;}
.y3b{bottom:518.634000px;}
.y1e5{bottom:519.084150px;}
.yb{bottom:520.864502px;}
.yc1{bottom:524.973000px;}
.y259{bottom:525.145500px;}
.y157{bottom:525.906000px;}
.y28c{bottom:525.954000px;}
.y96{bottom:526.434000px;}
.y1eb{bottom:526.482150px;}
.y1e8{bottom:526.638750px;}
.y23e{bottom:527.521125px;}
.y6f{bottom:528.403500px;}
.y1e7{bottom:529.059300px;}
.y113{bottom:534.169500px;}
.y1b0{bottom:534.222000px;}
.ya{bottom:538.864499px;}
.y150{bottom:541.292062px;}
.y28b{bottom:545.322000px;}
.y258{bottom:545.410500px;}
.y23d{bottom:547.448325px;}
.yc0{bottom:547.584000px;}
.y3a{bottom:547.864500px;}
.y6e{bottom:548.667000px;}
.y1e2{bottom:552.537150px;}
.y177{bottom:552.666000px;}
.yea{bottom:554.088380px;}
.y112{bottom:554.434500px;}
.y1df{bottom:554.536500px;}
.y198{bottom:556.651500px;}
.y9{bottom:556.864499px;}
.y94{bottom:557.172000px;}
.y14f{bottom:559.111991px;}
.y1e4{bottom:559.933800px;}
.y1dc{bottom:561.482250px;}
.y28a{bottom:564.688500px;}
.y257{bottom:565.674000px;}
.y1e0{bottom:566.019600px;}
.y1db{bottom:567.331800px;}
.y23c{bottom:567.374100px;}
.y6d{bottom:568.932000px;}
.y111{bottom:574.698000px;}
.y1e3{bottom:574.728450px;}
.y1de{bottom:574.886400px;}
.y171{bottom:575.095500px;}
.y91{bottom:575.464500px;}
.y95{bottom:575.622000px;}
.y14e{bottom:576.852561px;}
.y1dd{bottom:577.306950px;}
.ye9{bottom:578.718582px;}
.ybf{bottom:580.326000px;}
.y1e1{bottom:582.126450px;}
.y289{bottom:584.056500px;}
.y256{bottom:585.939000px;}
.y23b{bottom:587.301300px;}
.ye8{bottom:588.461148px;}
.y6c{bottom:589.195500px;}
.ybe{bottom:591.205500px;}
.y93{bottom:591.567000px;}
.y92{bottom:594.555000px;}
.y14d{bottom:594.672490px;}
.y110{bottom:594.961500px;}
.y1d9{bottom:603.402450px;}
.y288{bottom:603.424500px;}
.y255{bottom:606.202500px;}
.y23a{bottom:606.889350px;}
.y6b{bottom:609.460500px;}
.y1d6{bottom:610.799100px;}
.y1da{bottom:610.800450px;}
.y14c{bottom:612.492419px;}
.y172{bottom:613.033950px;}
.y10f{bottom:615.226500px;}
.y1d8{bottom:618.197100px;}
.y17a{bottom:621.457950px;}
.ye7{bottom:622.359263px;}
.y239{bottom:622.504500px;}
.y287{bottom:622.791000px;}
.y39{bottom:623.376000px;}
.y1d5{bottom:625.593750px;}
.y90{bottom:626.466000px;}
.y199{bottom:629.205450px;}
.y6a{bottom:629.724000px;}
.y14b{bottom:630.312347px;}
.y1d7{bottom:632.991750px;}
.ybd{bottom:634.431000px;}
.y10e{bottom:635.490000px;}
.ye6{bottom:640.179192px;}
.y286{bottom:642.159000px;}
.y238{bottom:642.431700px;}
.y8f{bottom:644.488500px;}
.y8{bottom:645.510000px;}
.y8e{bottom:646.731000px;}
.y14a{bottom:648.132276px;}
.y69{bottom:649.987500px;}
.y1d1{bottom:654.267750px;}
.ybc{bottom:654.694500px;}
.y10d{bottom:655.755000px;}
.ye5{bottom:657.999120px;}
.y285{bottom:661.527000px;}
.y38{bottom:661.573500px;}
.y1d4{bottom:661.665750px;}
.y237{bottom:662.019750px;}
.y158{bottom:662.223450px;}
.y7{bottom:666.771000px;}
.y8d{bottom:666.994500px;}
.y1cd{bottom:669.062400px;}
.y68{bottom:670.252500px;}
.y1cf{bottom:671.751600px;}
.ybb{bottom:674.958000px;}
.ye4{bottom:675.739691px;}
.y10c{bottom:676.018500px;}
.y1d3{bottom:676.460400px;}
.y236{bottom:677.634900px;}
.y1ce{bottom:680.696700px;}
.y284{bottom:680.893500px;}
.y149{bottom:682.266431px;}
.y1cc{bottom:683.857050px;}
.y8c{bottom:687.258000px;}
.y67{bottom:690.516000px;}
.y1d2{bottom:691.255050px;}
.ye3{bottom:693.559619px;}
.yba{bottom:695.223000px;}
.y10b{bottom:696.282000px;}
.y148{bottom:696.522605px;}
.y1d0{bottom:698.651700px;}
.y37{bottom:699.771000px;}
.y235{bottom:700.094325px;}
.y283{bottom:700.261500px;}
.y8b{bottom:707.523000px;}
.y147{bottom:710.778779px;}
.y66{bottom:710.781000px;}
.ye2{bottom:711.379548px;}
.yb9{bottom:715.486500px;}
.y13f{bottom:716.260500px;}
.y10a{bottom:716.547000px;}
.y282{bottom:719.628000px;}
.y1cb{bottom:719.927700px;}
.y36{bottom:720.034500px;}
.y146{bottom:725.034953px;}
.y6{bottom:726.298500px;}
.y1c9{bottom:727.325700px;}
.y8a{bottom:727.786500px;}
.ye1{bottom:729.199477px;}
.y65{bottom:731.044500px;}
.y234{bottom:731.208000px;}
.y1c8{bottom:734.722350px;}
.yb8{bottom:735.751500px;}
.y13e{bottom:736.525500px;}
.y109{bottom:736.810500px;}
.y281{bottom:738.996000px;}
.y145{bottom:739.291128px;}
.y35{bottom:740.298000px;}
.ye0{bottom:747.019405px;}
.y89{bottom:748.051500px;}
.y1ca{bottom:749.517000px;}
.y64{bottom:751.308000px;}
.y3{bottom:752.599495px;}
.y144{bottom:753.547302px;}
.yb7{bottom:756.015000px;}
.y13d{bottom:756.789000px;}
.y280{bottom:758.364000px;}
.y34{bottom:760.563000px;}
.ydf{bottom:764.839334px;}
.y143{bottom:767.803476px;}
.y88{bottom:768.315000px;}
.y1c7{bottom:770.794350px;}
.y63{bottom:771.573000px;}
.y233{bottom:772.363200px;}
.yb6{bottom:776.278500px;}
.y13c{bottom:777.054000px;}
.y254{bottom:777.282000px;}
.y27f{bottom:777.730500px;}
.y1c6{bottom:778.191000px;}
.y108{bottom:779.938500px;}
.y33{bottom:780.826500px;}
.y142{bottom:782.059935px;}
.yde{bottom:782.659263px;}
.y232{bottom:787.979775px;}
.y87{bottom:788.578500px;}
.y62{bottom:791.836500px;}
.y107{bottom:794.136000px;}
.yb5{bottom:796.543500px;}
.y27e{bottom:797.098500px;}
.y13b{bottom:797.317500px;}
.ydd{bottom:800.399833px;}
.y32{bottom:801.091500px;}
.y231{bottom:807.905550px;}
.y106{bottom:808.332000px;}
.y86{bottom:808.843500px;}
.y61{bottom:812.101500px;}
.y141{bottom:813.422676px;}
.y1c5{bottom:815.517000px;}
.y27d{bottom:816.465000px;}
.yb4{bottom:816.807000px;}
.y13a{bottom:817.581000px;}
.ydc{bottom:818.219762px;}
.y31{bottom:821.355000px;}
.y105{bottom:822.529500px;}
.y230{bottom:827.832750px;}
.y85{bottom:829.107000px;}
.y2ae{bottom:831.490500px;}
.y60{bottom:832.365000px;}
.y27c{bottom:835.833000px;}
.y104{bottom:836.725500px;}
.yb3{bottom:837.072000px;}
.y139{bottom:837.846000px;}
.ydb{bottom:840.000079px;}
.y197{bottom:841.740000px;}
.y22f{bottom:847.419375px;}
.y2ad{bottom:850.857000px;}
.y103{bottom:850.923000px;}
.y5f{bottom:852.628500px;}
.y27b{bottom:855.201000px;}
.y2e{bottom:856.787964px;}
.yd9{bottom:856.869489px;}
.yb2{bottom:857.335500px;}
.y2d{bottom:857.554500px;}
.y84{bottom:858.337500px;}
.y22e{bottom:863.035950px;}
.y17f{bottom:864.169500px;}
.y2ac{bottom:870.225000px;}
.y102{bottom:871.753200px;}
.y5e{bottom:872.893500px;}
.y27a{bottom:874.567500px;}
.yda{bottom:876.511548px;}
.y2{bottom:879.369000px;}
.yb0{bottom:881.278500px;}
.y22c{bottom:882.624000px;}
.y138{bottom:884.045340px;}
.y101{bottom:886.547850px;}
.y5d{bottom:893.157000px;}
.y279{bottom:893.935500px;}
.yd8{bottom:896.153219px;}
.y2c{bottom:896.559000px;}
.y22d{bottom:897.901425px;}
.y22b{bottom:898.240575px;}
.y137{bottom:899.168760px;}
.yad{bottom:899.571000px;}
.yb1{bottom:899.727000px;}
.y2ab{bottom:903.021000px;}
.y100{bottom:907.825200px;}
.y278{bottom:913.302000px;}
.y5c{bottom:913.422000px;}
.y22a{bottom:913.857150px;}
.yd7{bottom:913.973148px;}
.y136{bottom:914.292180px;}
.y2b{bottom:914.716500px;}
.yaf{bottom:915.672000px;}
.yae{bottom:918.661500px;}
.y2aa{bottom:922.389000px;}
.y135{bottom:929.415600px;}
.y277{bottom:932.670000px;}
.y5b{bottom:933.685500px;}
.y229{bottom:933.782925px;}
.y2a{bottom:937.756500px;}
.y2a9{bottom:941.755500px;}
.y134{bottom:944.539020px;}
.y179{bottom:944.557950px;}
.yd6{bottom:946.841148px;}
.y29{bottom:951.030000px;}
.y276{bottom:952.038000px;}
.y228{bottom:953.710125px;}
.y5a{bottom:953.949000px;}
.y133{bottom:959.662440px;}
.y2a8{bottom:961.123500px;}
.y1{bottom:966.726000px;}
.yff{bottom:967.449000px;}
.y275{bottom:971.404500px;}
.y227{bottom:973.635900px;}
.y28{bottom:974.070000px;}
.y59{bottom:974.214000px;}
.y132{bottom:974.785860px;}
.y2a7{bottom:980.490000px;}
.yd5{bottom:989.879028px;}
.y131{bottom:989.909280px;}
.y274{bottom:990.772500px;}
.y226{bottom:993.223950px;}
.y58{bottom:994.477500px;}
.y27{bottom:996.310500px;}
.y2a6{bottom:999.858000px;}
.y130{bottom:1005.032700px;}
.y225{bottom:1008.840525px;}
.y273{bottom:1010.139000px;}
.y57{bottom:1014.742500px;}
.y2a5{bottom:1019.226000px;}
.y12f{bottom:1020.156120px;}
.y224{bottom:1028.766300px;}
.y272{bottom:1029.507000px;}
.y56{bottom:1035.006000px;}
.y12e{bottom:1035.278160px;}
.y2a4{bottom:1038.592500px;}
.y26{bottom:1040.848500px;}
.y223{bottom:1048.354350px;}
.y271{bottom:1048.875000px;}
.y12d{bottom:1050.401580px;}
.y1c4{bottom:1052.442000px;}
.y55{bottom:1055.269500px;}
.y2a3{bottom:1057.960500px;}
.y222{bottom:1063.970925px;}
.y12c{bottom:1065.525000px;}
.y270{bottom:1068.241500px;}
.y25{bottom:1071.244500px;}
.y1c3{bottom:1073.292000px;}
.y54{bottom:1075.534500px;}
.y2a2{bottom:1077.327000px;}
.y221{bottom:1086.428925px;}
.y12b{bottom:1087.275180px;}
.y26f{bottom:1087.609500px;}
.y53{bottom:1095.798000px;}
.y2a1{bottom:1096.695000px;}
.y24{bottom:1100.145000px;}
.y26e{bottom:1115.943000px;}
.y52{bottom:1116.063000px;}
.y12a{bottom:1117.543500px;}
.y22{bottom:1137.954000px;}
.y51{bottom:1168.366500px;}
.h49{height:2.856695px;}
.h18{height:3.526760px;}
.h53{height:9.332782px;}
.h10{height:25.508090px;}
.h46{height:26.436281px;}
.h4f{height:27.415403px;}
.h45{height:27.603695px;}
.h4a{height:29.430135px;}
.he{height:30.461558px;}
.h36{height:30.757289px;}
.h24{height:31.024744px;}
.h7{height:32.130000px;}
.h12{height:33.112997px;}
.h16{height:33.299897px;}
.h11{height:34.199443px;}
.h38{height:34.688672px;}
.h30{height:34.813397px;}
.h37{height:34.990313px;}
.h2e{height:35.006619px;}
.h15{height:35.052500px;}
.h2f{height:35.248712px;}
.h3a{height:35.255391px;}
.h4e{height:35.297130px;}
.h19{height:35.503200px;}
.h32{height:35.784544px;}
.h33{height:36.032016px;}
.h1e{height:36.104462px;}
.h34{height:36.279489px;}
.h58{height:36.951431px;}
.h5b{height:37.206973px;}
.h5a{height:37.258082px;}
.h50{height:37.839150px;}
.h5e{height:37.927872px;}
.h5d{height:38.412058px;}
.h26{height:38.620055px;}
.h2d{height:38.896243px;}
.h2c{height:38.955881px;}
.hf{height:39.165235px;}
.h3f{height:39.434227px;}
.h3c{height:39.761719px;}
.h55{height:41.007735px;}
.h4c{height:41.406803px;}
.h1d{height:41.962471px;}
.h2b{height:42.358712px;}
.h13{height:43.217759px;}
.h14{height:43.516637px;}
.hb{height:43.815515px;}
.h3b{height:43.886426px;}
.h41{height:44.268047px;}
.h6{height:45.900000px;}
.h17{height:46.714950px;}
.h54{height:46.886608px;}
.h56{height:46.892008px;}
.h1b{height:47.338950px;}
.h3{height:48.195000px;}
.h4b{height:50.738003px;}
.h9{height:50.930649px;}
.h52{height:51.661125px;}
.hd{height:54.547601px;}
.h31{height:54.774749px;}
.h2{height:55.080000px;}
.h1c{height:63.137897px;}
.h51{height:64.790782px;}
.h44{height:64.840712px;}
.h43{height:64.889130px;}
.h59{height:67.080673px;}
.h5c{height:67.086373px;}
.h47{height:71.064095px;}
.hc{height:77.792486px;}
.h5{height:78.030000px;}
.h1f{height:83.980637px;}
.h1a{height:83.986637px;}
.h21{height:84.285515px;}
.h22{height:84.520637px;}
.h57{height:86.741782px;}
.h20{height:87.034637px;}
.h48{height:87.269495px;}
.h4d{height:87.274895px;}
.h28{height:94.709123px;}
.ha{height:102.503837px;}
.h29{height:107.363976px;}
.h4{height:119.055004px;}
.h25{height:135.183108px;}
.h27{height:137.719345px;}
.h23{height:141.127272px;}
.h2a{height:179.216439px;}
.h3e{height:265.489500px;}
.h40{height:266.838000px;}
.h42{height:268.858500px;}
.h35{height:505.212840px;}
.h3d{height:555.912000px;}
.h39{height:605.101500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:131.582497px;}
.w8{width:355.108500px;}
.w7{width:406.779120px;}
.wb{width:462.247500px;}
.wa{width:462.249000px;}
.w9{width:466.291500px;}
.wc{width:484.485000px;}
.w6{width:521.814876px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x5a{left:-145.933500px;}
.x5d{left:-114.073500px;}
.x67{left:-100.786500px;}
.x5f{left:-97.417500px;}
.x4f{left:-86.912760px;}
.x6f{left:-73.833000px;}
.x68{left:-68.926500px;}
.x61{left:-65.557500px;}
.x53{left:-58.875960px;}
.x50{left:-57.213275px;}
.x51{left:-54.124308px;}
.x52{left:-52.936118px;}
.x74{left:-41.973000px;}
.x38{left:-29.394684px;}
.x6b{left:-13.893000px;}
.x6d{left:-12.453000px;}
.x3c{left:-1.358225px;}
.x0{left:0.000000px;}
.x71{left:12.387000px;}
.x73{left:13.827000px;}
.xb{left:29.274117px;}
.x6{left:58.056593px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:114.802500px;}
.x9{left:122.110500px;}
.x7{left:123.307500px;}
.x93{left:128.031150px;}
.x7d{left:129.309300px;}
.x77{left:130.551000px;}
.x8f{left:133.192650px;}
.x46{left:135.453450px;}
.x4c{left:141.800940px;}
.x47{left:143.188950px;}
.x4d{left:144.907320px;}
.x8{left:146.170500px;}
.x4b{left:148.161360px;}
.x48{left:155.158500px;}
.x26{left:159.183000px;}
.x1e{left:160.458000px;}
.x49{left:168.150000px;}
.x27{left:172.165500px;}
.x78{left:174.951000px;}
.x1f{left:179.496000px;}
.x37{left:185.548104px;}
.x3d{left:187.613316px;}
.xc{left:188.974500px;}
.x39{left:192.126789px;}
.x6e{left:201.232500px;}
.x4{left:203.484001px;}
.x5e{left:204.493500px;}
.x55{left:205.786500px;}
.xd{left:210.390000px;}
.x45{left:212.517000px;}
.x66{left:215.332500px;}
.x3b{left:219.214140px;}
.x3a{left:224.441316px;}
.x96{left:237.958500px;}
.x3f{left:240.597760px;}
.x4e{left:243.066000px;}
.x94{left:248.732925px;}
.x92{left:251.397675px;}
.x90{left:253.895850px;}
.x8e{left:256.559175px;}
.x40{left:259.210227px;}
.x95{left:260.653500px;}
.x99{left:265.638000px;}
.x9d{left:267.238500px;}
.x59{left:268.903500px;}
.x89{left:278.203500px;}
.x7b{left:279.259500px;}
.x88{left:281.450250px;}
.x3e{left:284.000777px;}
.x81{left:288.057150px;}
.x8a{left:295.150050px;}
.x9a{left:297.231000px;}
.x2a{left:298.786500px;}
.xe{left:300.129000px;}
.x9b{left:307.035000px;}
.x2b{left:308.784000px;}
.x83{left:311.919750px;}
.x82{left:314.081100px;}
.x4a{left:315.789000px;}
.x8c{left:319.838850px;}
.x86{left:321.091650px;}
.x85{left:324.338400px;}
.x84{left:325.619550px;}
.x80{left:327.516300px;}
.x62{left:328.684500px;}
.x8b{left:330.007050px;}
.x22{left:333.051000px;}
.x97{left:336.312000px;}
.x87{left:339.903900px;}
.x8d{left:341.793000px;}
.x98{left:343.036500px;}
.x91{left:351.174000px;}
.x63{left:352.210500px;}
.x28{left:356.485500px;}
.x10{left:357.813000px;}
.x20{left:360.516000px;}
.x33{left:362.178000px;}
.x35{left:363.895500px;}
.x11{left:366.042000px;}
.x2f{left:367.780500px;}
.x19{left:372.843000px;}
.x5c{left:374.715870px;}
.x21{left:379.554000px;}
.x14{left:381.208500px;}
.x5b{left:382.546500px;}
.x31{left:398.334000px;}
.x32{left:399.516000px;}
.x69{left:402.444000px;}
.x30{left:405.382500px;}
.x29{left:415.440000px;}
.x2c{left:418.882500px;}
.x7e{left:422.575200px;}
.x36{left:424.276500px;}
.x54{left:430.104048px;}
.x2d{left:432.708000px;}
.x16{left:437.733000px;}
.x17{left:438.916500px;}
.x24{left:442.905000px;}
.x15{left:444.783000px;}
.x9c{left:450.352500px;}
.x23{left:451.423500px;}
.x3{left:454.959000px;}
.x1c{left:456.996000px;}
.x18{left:459.231000px;}
.x1b{left:461.146500px;}
.x34{left:465.372000px;}
.x2e{left:466.501500px;}
.x1a{left:469.665000px;}
.x25{left:470.932500px;}
.x56{left:485.760000px;}
.x6a{left:487.407000px;}
.x1d{left:488.605500px;}
.x60{left:490.102500px;}
.x6c{left:492.537000px;}
.x70{left:513.687000px;}
.x72{left:518.817000px;}
.x41{left:520.692000px;}
.x64{left:522.778500px;}
.x75{left:524.886000px;}
.x76{left:534.883500px;}
.x42{left:544.291500px;}
.x79{left:547.608000px;}
.x7a{left:560.778000px;}
.x65{left:570.217500px;}
.x12{left:575.500500px;}
.x13{left:583.729500px;}
.x7f{left:601.343550px;}
.x7c{left:656.929800px;}
.x57{left:661.564500px;}
.x43{left:673.633500px;}
.xa{left:701.339982px;}
.x44{left:706.204500px;}
.x58{left:709.347000px;}
.xf{left:715.137000px;}
@media print{
.vf{vertical-align:-121.651313pt;}
.v19{vertical-align:-27.638400pt;}
.v18{vertical-align:-21.182400pt;}
.v2{vertical-align:-17.360000pt;}
.v1b{vertical-align:-13.502400pt;}
.v4{vertical-align:-9.941333pt;}
.v3{vertical-align:-7.968000pt;}
.v11{vertical-align:-6.193482pt;}
.v1c{vertical-align:-5.020800pt;}
.v12{vertical-align:-3.998400pt;}
.va{vertical-align:-2.252603pt;}
.v21{vertical-align:-1.205867pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:1.123950pt;}
.v9{vertical-align:2.252603pt;}
.v10{vertical-align:4.505206pt;}
.v8{vertical-align:9.574400pt;}
.vb{vertical-align:11.545600pt;}
.v13{vertical-align:16.737600pt;}
.v1{vertical-align:19.290667pt;}
.v17{vertical-align:20.731200pt;}
.v1a{vertical-align:21.787200pt;}
.v15{vertical-align:23.721600pt;}
.v6{vertical-align:25.968000pt;}
.v1f{vertical-align:27.235200pt;}
.v14{vertical-align:30.753600pt;}
.ve{vertical-align:34.640236pt;}
.v5{vertical-align:35.973333pt;}
.v7{vertical-align:38.682667pt;}
.v1e{vertical-align:40.065600pt;}
.v1d{vertical-align:49.296000pt;}
.vc{vertical-align:59.981757pt;}
.v20{vertical-align:68.808000pt;}
.v16{vertical-align:75.033600pt;}
.ls8c{letter-spacing:-0.380920pt;}
.lsbc{letter-spacing:-0.277888pt;}
.lsce{letter-spacing:-0.261856pt;}
.lsa0{letter-spacing:-0.197514pt;}
.ls88{letter-spacing:-0.150487pt;}
.lscb{letter-spacing:-0.144288pt;}
.ls7e{letter-spacing:-0.141082pt;}
.lscd{letter-spacing:-0.138944pt;}
.ls81{letter-spacing:-0.131676pt;}
.ls87{letter-spacing:-0.117568pt;}
.ls80{letter-spacing:-0.112865pt;}
.lscc{letter-spacing:-0.106880pt;}
.ls7d{letter-spacing:-0.103460pt;}
.ls8d{letter-spacing:-0.098757pt;}
.lsb4{letter-spacing:-0.080864pt;}
.ls7f{letter-spacing:-0.079946pt;}
.ls73{letter-spacing:-0.071160pt;}
.ls89{letter-spacing:-0.070541pt;}
.ls85{letter-spacing:-0.065838pt;}
.lsbf{letter-spacing:-0.062400pt;}
.ls9e{letter-spacing:-0.059924pt;}
.lsa3{letter-spacing:-0.054912pt;}
.ls83{letter-spacing:-0.047027pt;}
.lsd1{letter-spacing:-0.042752pt;}
.ls9f{letter-spacing:-0.042324pt;}
.ls7a{letter-spacing:-0.037622pt;}
.lsca{letter-spacing:-0.037408pt;}
.lsba{letter-spacing:-0.032064pt;}
.ls8e{letter-spacing:-0.028216pt;}
.lsbb{letter-spacing:-0.026720pt;}
.lsb9{letter-spacing:-0.024000pt;}
.ls7c{letter-spacing:-0.023514pt;}
.lsa2{letter-spacing:-0.021120pt;}
.lsbe{letter-spacing:-0.019200pt;}
.ls86{letter-spacing:-0.018811pt;}
.lsa1{letter-spacing:-0.016896pt;}
.lsbd{letter-spacing:-0.016032pt;}
.lsb8{letter-spacing:-0.014400pt;}
.lscf{letter-spacing:-0.010688pt;}
.lsb6{letter-spacing:-0.009600pt;}
.ls79{letter-spacing:-0.009405pt;}
.lsd0{letter-spacing:-0.005344pt;}
.ls7b{letter-spacing:-0.004703pt;}
.lsb5{letter-spacing:-0.004256pt;}
.ls74{letter-spacing:-0.003745pt;}
.ls0{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.000015pt;}
.ls50{letter-spacing:0.000162pt;}
.ls2a{letter-spacing:0.000346pt;}
.ls10{letter-spacing:0.000387pt;}
.lsec{letter-spacing:0.000480pt;}
.ls106{letter-spacing:0.000633pt;}
.ls39{letter-spacing:0.000803pt;}
.lsb2{letter-spacing:0.000830pt;}
.lsf2{letter-spacing:0.000906pt;}
.lse2{letter-spacing:0.000921pt;}
.ls6{letter-spacing:0.000934pt;}
.lsd{letter-spacing:0.001349pt;}
.ls94{letter-spacing:0.001370pt;}
.lsf7{letter-spacing:0.001422pt;}
.lse{letter-spacing:0.001633pt;}
.ls107{letter-spacing:0.001712pt;}
.ls7{letter-spacing:0.001939pt;}
.ls45{letter-spacing:0.001958pt;}
.ls8{letter-spacing:0.001977pt;}
.ls13{letter-spacing:0.002073pt;}
.ls9{letter-spacing:0.002097pt;}
.ls5{letter-spacing:0.002316pt;}
.ls102{letter-spacing:0.002424pt;}
.ls105{letter-spacing:0.002505pt;}
.lsfc{letter-spacing:0.002533pt;}
.ls26{letter-spacing:0.002926pt;}
.lsb{letter-spacing:0.003100pt;}
.ls11{letter-spacing:0.003106pt;}
.ls8f{letter-spacing:0.003156pt;}
.ls3c{letter-spacing:0.003198pt;}
.ls104{letter-spacing:0.003475pt;}
.ls42{letter-spacing:0.003505pt;}
.ls109{letter-spacing:0.003705pt;}
.lsd2{letter-spacing:0.003733pt;}
.lsf0{letter-spacing:0.003840pt;}
.ls14{letter-spacing:0.003866pt;}
.ls1e{letter-spacing:0.003914pt;}
.lsf{letter-spacing:0.004016pt;}
.ls6c{letter-spacing:0.004703pt;}
.lsa8{letter-spacing:0.004800pt;}
.lsab{letter-spacing:0.005344pt;}
.ls56{letter-spacing:0.009405pt;}
.lsb0{letter-spacing:0.010688pt;}
.ls9b{letter-spacing:0.014108pt;}
.lsb7{letter-spacing:0.014400pt;}
.ls9a{letter-spacing:0.014981pt;}
.lsc7{letter-spacing:0.016032pt;}
.ls66{letter-spacing:0.016671pt;}
.ls9d{letter-spacing:0.016896pt;}
.lsc5{letter-spacing:0.021376pt;}
.ls64{letter-spacing:0.023514pt;}
.lsa7{letter-spacing:0.024000pt;}
.lsaf{letter-spacing:0.026720pt;}
.ls63{letter-spacing:0.028216pt;}
.lsc6{letter-spacing:0.032064pt;}
.ls59{letter-spacing:0.032919pt;}
.lsc0{letter-spacing:0.033600pt;}
.lsad{letter-spacing:0.037408pt;}
.ls5e{letter-spacing:0.037622pt;}
.ls62{letter-spacing:0.042324pt;}
.lsc4{letter-spacing:0.042752pt;}
.lsc2{letter-spacing:0.043200pt;}
.ls6a{letter-spacing:0.047027pt;}
.lsa9{letter-spacing:0.048000pt;}
.lsb1{letter-spacing:0.048096pt;}
.ls53{letter-spacing:0.048689pt;}
.ls9c{letter-spacing:0.050688pt;}
.ls5f{letter-spacing:0.051730pt;}
.lsae{letter-spacing:0.053440pt;}
.lsa4{letter-spacing:0.055328pt;}
.ls95{letter-spacing:0.056179pt;}
.ls58{letter-spacing:0.056433pt;}
.lsc8{letter-spacing:0.058784pt;}
.lsc3{letter-spacing:0.062400pt;}
.ls8a{letter-spacing:0.065838pt;}
.lsc1{letter-spacing:0.067200pt;}
.ls97{letter-spacing:0.067415pt;}
.lsac{letter-spacing:0.069472pt;}
.ls61{letter-spacing:0.075244pt;}
.lsaa{letter-spacing:0.076800pt;}
.ls65{letter-spacing:0.082452pt;}
.ls99{letter-spacing:0.097377pt;}
.ls78{letter-spacing:0.108163pt;}
.ls84{letter-spacing:0.108219pt;}
.ls96{letter-spacing:0.108613pt;}
.ls98{letter-spacing:0.123594pt;}
.ls55{letter-spacing:0.134830pt;}
.ls60{letter-spacing:0.141082pt;}
.ls54{letter-spacing:0.142321pt;}
.lsa6{letter-spacing:0.153216pt;}
.ls5a{letter-spacing:0.155190pt;}
.lsa5{letter-spacing:0.161728pt;}
.ls5b{letter-spacing:0.197514pt;}
.lsf9{letter-spacing:0.287180pt;}
.lsfb{letter-spacing:0.374306pt;}
.lsff{letter-spacing:0.379106pt;}
.lse8{letter-spacing:0.403012pt;}
.lsfd{letter-spacing:0.418017pt;}
.ls101{letter-spacing:0.418521pt;}
.lsf8{letter-spacing:0.419053pt;}
.ls108{letter-spacing:0.478097pt;}
.lsdb{letter-spacing:0.482435pt;}
.ls3b{letter-spacing:0.482502pt;}
.lsdf{letter-spacing:0.487235pt;}
.ls22{letter-spacing:0.487835pt;}
.ls32{letter-spacing:0.501841pt;}
.ls21{letter-spacing:0.504838pt;}
.ls3a{letter-spacing:0.507174pt;}
.ls52{letter-spacing:0.520515pt;}
.lsea{letter-spacing:0.533138pt;}
.lsde{letter-spacing:0.537938pt;}
.lse7{letter-spacing:0.583837pt;}
.ls23{letter-spacing:0.596214pt;}
.ls35{letter-spacing:0.601548pt;}
.ls48{letter-spacing:0.640696pt;}
.ls3d{letter-spacing:0.662137pt;}
.ls40{letter-spacing:0.667470pt;}
.lsfe{letter-spacing:0.676706pt;}
.ls77{letter-spacing:0.695186pt;}
.lsc9{letter-spacing:0.721440pt;}
.lse6{letter-spacing:0.806439pt;}
.ls36{letter-spacing:0.925897pt;}
.ls2f{letter-spacing:0.931230pt;}
.lsc{letter-spacing:1.133683pt;}
.ls2c{letter-spacing:1.272137pt;}
.ls4{letter-spacing:1.654338pt;}
.lse4{letter-spacing:2.154747pt;}
.ls6b{letter-spacing:2.252800pt;}
.lseb{letter-spacing:2.390880pt;}
.ls100{letter-spacing:2.507053pt;}
.lsed{letter-spacing:2.511853pt;}
.lsf1{letter-spacing:2.556637pt;}
.ls1d{letter-spacing:2.654172pt;}
.ls34{letter-spacing:2.656508pt;}
.ls1f{letter-spacing:2.657067pt;}
.lsd4{letter-spacing:2.659505pt;}
.ls57{letter-spacing:2.680832pt;}
.lsfa{letter-spacing:2.809680pt;}
.ls5c{letter-spacing:2.962432pt;}
.ls27{letter-spacing:3.320838pt;}
.ls43{letter-spacing:4.035198pt;}
.ls8b{letter-spacing:4.575747pt;}
.ls41{letter-spacing:4.633548pt;}
.lse3{letter-spacing:7.173988pt;}
.lse0{letter-spacing:8.368696pt;}
.lsdd{letter-spacing:8.884870pt;}
.lsdc{letter-spacing:8.907840pt;}
.ls76{letter-spacing:10.247227pt;}
.ls3e{letter-spacing:10.329067pt;}
.ls3f{letter-spacing:10.330777pt;}
.lsa{letter-spacing:10.626533pt;}
.lsf5{letter-spacing:10.756270pt;}
.lsf3{letter-spacing:10.757007pt;}
.lsee{letter-spacing:10.759333pt;}
.lsf4{letter-spacing:10.761070pt;}
.lsf6{letter-spacing:10.923037pt;}
.lse9{letter-spacing:10.927837pt;}
.ls25{letter-spacing:10.968429pt;}
.ls4d{letter-spacing:10.973762pt;}
.ls24{letter-spacing:10.995733pt;}
.ls91{letter-spacing:10.998187pt;}
.ls90{letter-spacing:10.999757pt;}
.ls92{letter-spacing:10.999765pt;}
.ls103{letter-spacing:11.358907pt;}
.ls4b{letter-spacing:11.510604pt;}
.ls82{letter-spacing:11.512259pt;}
.ls16{letter-spacing:12.273923pt;}
.ls46{letter-spacing:12.636106pt;}
.ls28{letter-spacing:12.841330pt;}
.lsb3{letter-spacing:12.911530pt;}
.lsd7{letter-spacing:13.015346pt;}
.ls71{letter-spacing:13.151856pt;}
.ls4a{letter-spacing:13.216135pt;}
.ls51{letter-spacing:13.281023pt;}
.lsd8{letter-spacing:13.281686pt;}
.ls2e{letter-spacing:13.282422pt;}
.ls18{letter-spacing:13.283467pt;}
.ls20{letter-spacing:13.283942pt;}
.ls1c{letter-spacing:13.285443pt;}
.ls93{letter-spacing:13.336601pt;}
.ls44{letter-spacing:13.372260pt;}
.ls70{letter-spacing:13.413854pt;}
.ls72{letter-spacing:13.428527pt;}
.ls2b{letter-spacing:13.482122pt;}
.ls17{letter-spacing:13.496002pt;}
.lsd6{letter-spacing:13.497761pt;}
.lsd3{letter-spacing:13.501738pt;}
.ls2d{letter-spacing:13.523448pt;}
.lsd9{letter-spacing:13.549136pt;}
.lsda{letter-spacing:13.602270pt;}
.ls15{letter-spacing:13.761671pt;}
.ls75{letter-spacing:14.079944pt;}
.ls29{letter-spacing:14.283079pt;}
.ls67{letter-spacing:14.377088pt;}
.lsd5{letter-spacing:14.794917pt;}
.ls6f{letter-spacing:15.253008pt;}
.ls38{letter-spacing:15.395096pt;}
.ls6e{letter-spacing:15.408821pt;}
.ls47{letter-spacing:15.421118pt;}
.ls1b{letter-spacing:15.939505pt;}
.ls30{letter-spacing:16.020214pt;}
.ls37{letter-spacing:16.025548pt;}
.ls1a{letter-spacing:17.514881pt;}
.ls19{letter-spacing:17.516880pt;}
.ls12{letter-spacing:21.731751pt;}
.ls31{letter-spacing:21.773762pt;}
.ls4f{letter-spacing:26.211096pt;}
.lse5{letter-spacing:27.560732pt;}
.lsef{letter-spacing:27.565532pt;}
.ls1{letter-spacing:51.035733pt;}
.ls2{letter-spacing:62.432533pt;}
.ls3{letter-spacing:64.314231pt;}
.lse1{letter-spacing:87.488640pt;}
.ls4c{letter-spacing:89.866777pt;}
.ls69{letter-spacing:666.615263pt;}
.ls68{letter-spacing:668.026079pt;}
.ls5d{letter-spacing:684.358625pt;}
.ls4e{letter-spacing:824.580214pt;}
.ls49{letter-spacing:838.160696pt;}
.ls6d{letter-spacing:918.930299pt;}
.ws103{word-spacing:-53.440000pt;}
.wsc0{word-spacing:-37.452800pt;}
.ws71{word-spacing:-24.425928pt;}
.ws77{word-spacing:-21.858243pt;}
.ws72{word-spacing:-20.593211pt;}
.ws11{word-spacing:-15.461955pt;}
.ws5{word-spacing:-13.915853pt;}
.ws15{word-spacing:-13.283467pt;}
.ws12c{word-spacing:-12.524268pt;}
.ws21{word-spacing:-12.369595pt;}
.wse0{word-spacing:-12.014400pt;}
.ws102{word-spacing:-12.004800pt;}
.wse1{word-spacing:-11.976000pt;}
.ws3{word-spacing:-11.955200pt;}
.wsfd{word-spacing:-11.937600pt;}
.ws74{word-spacing:-11.756800pt;}
.ws78{word-spacing:-11.445435pt;}
.ws75{word-spacing:-11.419668pt;}
.wsdf{word-spacing:-10.801728pt;}
.ws129{word-spacing:-10.759680pt;}
.ws1f{word-spacing:-10.626800pt;}
.wsc2{word-spacing:-10.538880pt;}
.wsc1{word-spacing:-10.505088pt;}
.ws70{word-spacing:-10.345984pt;}
.ws79{word-spacing:-10.280146pt;}
.ws2{word-spacing:-10.095467pt;}
.ws6f{word-spacing:-9.505521pt;}
.ws136{word-spacing:-8.368560pt;}
.ws51{word-spacing:-3.772505pt;}
.wsa{word-spacing:-3.347434pt;}
.ws56{word-spacing:-3.294300pt;}
.ws104{word-spacing:-3.081764pt;}
.wsf{word-spacing:-3.028630pt;}
.ws6a{word-spacing:-2.946933pt;}
.ws16e{word-spacing:-2.917069pt;}
.ws4e{word-spacing:-2.656693pt;}
.ws17c{word-spacing:-2.582323pt;}
.ws115{word-spacing:-2.511680pt;}
.wsa8{word-spacing:-2.511252pt;}
.wsb{word-spacing:-2.444158pt;}
.ws7a{word-spacing:-2.391040pt;}
.ws7b{word-spacing:-2.199757pt;}
.ws6e{word-spacing:-2.178489pt;}
.ws68{word-spacing:-2.072221pt;}
.ws69{word-spacing:-2.019087pt;}
.ws67{word-spacing:-1.965953pt;}
.wsfb{word-spacing:-1.907808pt;}
.ws45{word-spacing:-1.806551pt;}
.ws5c{word-spacing:-1.762217pt;}
.ws5d{word-spacing:-1.753418pt;}
.ws7{word-spacing:-1.696326pt;}
.wsb2{word-spacing:-1.674168pt;}
.wsce{word-spacing:-1.631844pt;}
.ws118{word-spacing:-1.549760pt;}
.wsb1{word-spacing:-1.537789pt;}
.wscf{word-spacing:-1.514276pt;}
.ws33{word-spacing:-1.487748pt;}
.ws169{word-spacing:-1.434624pt;}
.wsad{word-spacing:-1.344978pt;}
.wsd5{word-spacing:-1.330870pt;}
.wsae{word-spacing:-1.265032pt;}
.ws6{word-spacing:-1.175671pt;}
.ws15d{word-spacing:-1.147699pt;}
.ws127{word-spacing:-1.115811pt;}
.ws119{word-spacing:-1.063456pt;}
.ws44{word-spacing:-1.062677pt;}
.ws55{word-spacing:-1.009543pt;}
.ws54{word-spacing:-0.956410pt;}
.wsb8{word-spacing:-0.954652pt;}
.ws17{word-spacing:-0.903276pt;}
.wsd4{word-spacing:-0.860598pt;}
.ws16{word-spacing:-0.850142pt;}
.ws3b{word-spacing:-0.797008pt;}
.ws64{word-spacing:-0.637606pt;}
.wsf2{word-spacing:-0.630592pt;}
.ws14e{word-spacing:-0.584473pt;}
.wsf1{word-spacing:-0.566464pt;}
.ws22{word-spacing:-0.531339pt;}
.wsa7{word-spacing:-0.517299pt;}
.ws101{word-spacing:-0.504000pt;}
.ws100{word-spacing:-0.480000pt;}
.ws4b{word-spacing:-0.478205pt;}
.wsbb{word-spacing:-0.465569pt;}
.wsff{word-spacing:-0.460800pt;}
.ws3d{word-spacing:-0.425071pt;}
.wsba{word-spacing:-0.395028pt;}
.wse6{word-spacing:-0.371937pt;}
.ws159{word-spacing:-0.334746pt;}
.ws2c{word-spacing:-0.318803pt;}
.wsfc{word-spacing:-0.288576pt;}
.ws15b{word-spacing:-0.286925pt;}
.ws1b{word-spacing:-0.265669pt;}
.wsd8{word-spacing:-0.253947pt;}
.wse8{word-spacing:-0.234080pt;}
.ws125{word-spacing:-0.224448pt;}
.wsc6{word-spacing:-0.213481pt;}
.ws12{word-spacing:-0.212535pt;}
.ws117{word-spacing:-0.208416pt;}
.ws9f{word-spacing:-0.206920pt;}
.ws87{word-spacing:-0.205990pt;}
.ws126{word-spacing:-0.203072pt;}
.wsc9{word-spacing:-0.194755pt;}
.ws160{word-spacing:-0.191283pt;}
.wsa6{word-spacing:-0.188109pt;}
.wsc7{word-spacing:-0.179773pt;}
.ws83{word-spacing:-0.170029pt;}
.wsca{word-spacing:-0.168538pt;}
.ws63{word-spacing:-0.165633pt;}
.ws1a{word-spacing:-0.159402pt;}
.ws168{word-spacing:-0.143462pt;}
.wsc8{word-spacing:-0.138575pt;}
.wsc5{word-spacing:-0.127340pt;}
.wscc{word-spacing:-0.119849pt;}
.wsb9{word-spacing:-0.112865pt;}
.ws1d{word-spacing:-0.106268pt;}
.ws174{word-spacing:-0.095642pt;}
.wscb{word-spacing:-0.086141pt;}
.wse7{word-spacing:-0.076608pt;}
.ws86{word-spacing:-0.067415pt;}
.wsc{word-spacing:-0.053134pt;}
.wsfe{word-spacing:-0.047821pt;}
.ws13b{word-spacing:-0.045430pt;}
.ws12a{word-spacing:-0.043039pt;}
.ws81{word-spacing:-0.042507pt;}
.ws59{word-spacing:-0.040382pt;}
.ws12d{word-spacing:-0.033474pt;}
.ws4{word-spacing:-0.012971pt;}
.wscd{word-spacing:-0.011236pt;}
.ws177{word-spacing:-0.010180pt;}
.ws170{word-spacing:-0.007637pt;}
.ws173{word-spacing:-0.007347pt;}
.ws166{word-spacing:-0.006980pt;}
.ws176{word-spacing:-0.006801pt;}
.ws164{word-spacing:-0.005734pt;}
.ws17e{word-spacing:-0.004847pt;}
.ws167{word-spacing:-0.004301pt;}
.wse5{word-spacing:-0.002449pt;}
.ws172{word-spacing:-0.002193pt;}
.ws13f{word-spacing:-0.002083pt;}
.ws16a{word-spacing:-0.001382pt;}
.wse4{word-spacing:-0.001067pt;}
.ws1{word-spacing:-0.000977pt;}
.ws16b{word-spacing:-0.000512pt;}
.ws0{word-spacing:0.000000pt;}
.ws12e{word-spacing:0.000975pt;}
.ws162{word-spacing:0.001126pt;}
.ws1e{word-spacing:0.001431pt;}
.ws131{word-spacing:0.001920pt;}
.ws5f{word-spacing:0.001945pt;}
.ws91{word-spacing:0.018811pt;}
.ws11d{word-spacing:0.021376pt;}
.ws8b{word-spacing:0.037622pt;}
.ws10d{word-spacing:0.042752pt;}
.ws9a{word-spacing:0.047027pt;}
.wse2{word-spacing:0.047821pt;}
.ws10{word-spacing:0.053134pt;}
.wsf6{word-spacing:0.053440pt;}
.wsab{word-spacing:0.079946pt;}
.ws116{word-spacing:0.080160pt;}
.wsee{word-spacing:0.081600pt;}
.ws134{word-spacing:0.086077pt;}
.wsbc{word-spacing:0.089352pt;}
.ws11c{word-spacing:0.090848pt;}
.ws109{word-spacing:0.091200pt;}
.ws165{word-spacing:0.095642pt;}
.ws10c{word-spacing:0.096000pt;}
.ws1c{word-spacing:0.106268pt;}
.ws90{word-spacing:0.108163pt;}
.wsec{word-spacing:0.110400pt;}
.ws10b{word-spacing:0.115200pt;}
.wsdd{word-spacing:0.122496pt;}
.ws108{word-spacing:0.124800pt;}
.wsde{word-spacing:0.139392pt;}
.ws163{word-spacing:0.143462pt;}
.ws10a{word-spacing:0.153600pt;}
.ws107{word-spacing:0.158400pt;}
.ws8{word-spacing:0.159402pt;}
.ws133{word-spacing:0.172155pt;}
.wsed{word-spacing:0.172800pt;}
.ws9e{word-spacing:0.183406pt;}
.ws24{word-spacing:0.212535pt;}
.ws137{word-spacing:0.215194pt;}
.wsac{word-spacing:0.221028pt;}
.ws16c{word-spacing:0.239104pt;}
.ws14{word-spacing:0.265669pt;}
.ws93{word-spacing:0.277460pt;}
.wse3{word-spacing:0.286925pt;}
.ws19{word-spacing:0.318803pt;}
.ws92{word-spacing:0.343299pt;}
.ws15e{word-spacing:0.382566pt;}
.ws53{word-spacing:0.425071pt;}
.ws57{word-spacing:0.478205pt;}
.ws29{word-spacing:0.531339pt;}
.ws13{word-spacing:0.584473pt;}
.wsf5{word-spacing:0.668000pt;}
.wsfa{word-spacing:0.684032pt;}
.ws9{word-spacing:0.690740pt;}
.wsf9{word-spacing:0.710752pt;}
.ws10e{word-spacing:0.758848pt;}
.wsc4{word-spacing:0.908595pt;}
.ws8d{word-spacing:0.917030pt;}
.ws8c{word-spacing:0.926436pt;}
.ws149{word-spacing:1.009543pt;}
.ws11a{word-spacing:1.026048pt;}
.ws106{word-spacing:1.062677pt;}
.wsef{word-spacing:1.074144pt;}
.ws3e{word-spacing:1.115811pt;}
.ws18{word-spacing:1.168945pt;}
.wsc3{word-spacing:1.195520pt;}
.ws14f{word-spacing:1.222079pt;}
.ws84{word-spacing:1.232709pt;}
.ws17b{word-spacing:1.291162pt;}
.ws11b{word-spacing:1.303936pt;}
.ws40{word-spacing:1.328347pt;}
.ws82{word-spacing:1.360230pt;}
.ws14d{word-spacing:1.434614pt;}
.ws2f{word-spacing:1.487748pt;}
.ws23{word-spacing:1.540882pt;}
.ws2b{word-spacing:1.594016pt;}
.wsf0{word-spacing:1.635264pt;}
.ws85{word-spacing:1.700284pt;}
.ws94{word-spacing:1.716493pt;}
.ws97{word-spacing:1.730601pt;}
.wsaa{word-spacing:1.763520pt;}
.ws52{word-spacing:1.806551pt;}
.ws27{word-spacing:1.859685pt;}
.ws6c{word-spacing:1.912819pt;}
.ws11e{word-spacing:1.945216pt;}
.ws114{word-spacing:1.977280pt;}
.ws124{word-spacing:1.993312pt;}
.wsa9{word-spacing:1.998656pt;}
.ws11f{word-spacing:2.004000pt;}
.ws2d{word-spacing:2.019087pt;}
.ws123{word-spacing:2.036064pt;}
.wsd2{word-spacing:2.050386pt;}
.ws38{word-spacing:2.072221pt;}
.ws80{word-spacing:2.082853pt;}
.wsd1{word-spacing:2.083305pt;}
.ws157{word-spacing:2.104115pt;}
.ws47{word-spacing:2.125355pt;}
.ws48{word-spacing:2.178489pt;}
.ws4f{word-spacing:2.284756pt;}
.ws26{word-spacing:2.337890pt;}
.ws12b{word-spacing:2.410145pt;}
.ws15a{word-spacing:2.438861pt;}
.ws179{word-spacing:2.773606pt;}
.ws4c{word-spacing:2.816095pt;}
.ws96{word-spacing:2.849848pt;}
.ws105{word-spacing:2.869229pt;}
.wsdb{word-spacing:2.906112pt;}
.wsdc{word-spacing:2.939904pt;}
.wsd9{word-spacing:2.973696pt;}
.ws6b{word-spacing:2.975497pt;}
.wsda{word-spacing:2.977920pt;}
.ws14b{word-spacing:3.028630pt;}
.ws2e{word-spacing:3.081764pt;}
.wsd3{word-spacing:3.132012pt;}
.ws95{word-spacing:3.174336pt;}
.ws99{word-spacing:3.193147pt;}
.ws31{word-spacing:3.294300pt;}
.ws89{word-spacing:3.395364pt;}
.ws8a{word-spacing:3.418877pt;}
.ws37{word-spacing:3.613103pt;}
.ws3c{word-spacing:3.666237pt;}
.wsaf{word-spacing:3.701041pt;}
.ws65{word-spacing:3.719371pt;}
.ws88{word-spacing:3.719852pt;}
.ws4a{word-spacing:3.772505pt;}
.ws62{word-spacing:3.878772pt;}
.ws152{word-spacing:3.931906pt;}
.wse9{word-spacing:3.974400pt;}
.wseb{word-spacing:3.993600pt;}
.wsea{word-spacing:4.008000pt;}
.wsb0{word-spacing:4.011420pt;}
.ws43{word-spacing:4.038174pt;}
.ws154{word-spacing:4.091308pt;}
.ws14a{word-spacing:4.144442pt;}
.ws122{word-spacing:4.200384pt;}
.ws58{word-spacing:4.250709pt;}
.ws121{word-spacing:4.280544pt;}
.ws3a{word-spacing:4.410111pt;}
.ws14c{word-spacing:4.463245pt;}
.ws171{word-spacing:4.495155pt;}
.ws151{word-spacing:4.516379pt;}
.wsa5{word-spacing:4.547530pt;}
.wsb4{word-spacing:4.571044pt;}
.wsb5{word-spacing:4.580449pt;}
.ws112{word-spacing:4.585152pt;}
.ws6d{word-spacing:4.622646pt;}
.ws156{word-spacing:4.638618pt;}
.ws113{word-spacing:4.665312pt;}
.ws175{word-spacing:4.686438pt;}
.ws158{word-spacing:4.734259pt;}
.ws16f{word-spacing:4.777967pt;}
.ws16d{word-spacing:4.780126pt;}
.ws161{word-spacing:4.780732pt;}
.ws15c{word-spacing:4.781175pt;}
.ws15f{word-spacing:4.782080pt;}
.ws17d{word-spacing:4.782720pt;}
.ws42{word-spacing:4.888316pt;}
.ws178{word-spacing:4.925542pt;}
.ws155{word-spacing:4.973363pt;}
.ws34{word-spacing:4.994583pt;}
.ws30{word-spacing:5.047717pt;}
.ws66{word-spacing:5.100851pt;}
.wsa0{word-spacing:5.177695pt;}
.ws49{word-spacing:5.207119pt;}
.wsa1{word-spacing:5.257641pt;}
.wsd{word-spacing:5.307978pt;}
.wse{word-spacing:5.313387pt;}
.ws5e{word-spacing:5.366521pt;}
.ws32{word-spacing:5.579056pt;}
.ws25{word-spacing:5.632190pt;}
.wsa4{word-spacing:5.704399pt;}
.ws39{word-spacing:5.738458pt;}
.ws2a{word-spacing:5.897859pt;}
.ws41{word-spacing:5.950993pt;}
.wsa3{word-spacing:5.958346pt;}
.wsa2{word-spacing:5.981860pt;}
.ws153{word-spacing:6.110395pt;}
.ws150{word-spacing:6.163529pt;}
.wsb3{word-spacing:6.198185pt;}
.ws98{word-spacing:6.240509pt;}
.ws36{word-spacing:6.641733pt;}
.ws35{word-spacing:6.694867pt;}
.ws3f{word-spacing:7.013670pt;}
.wsf8{word-spacing:7.412128pt;}
.wsf7{word-spacing:7.454880pt;}
.wsb6{word-spacing:7.599596pt;}
.ws4d{word-spacing:7.651277pt;}
.wsb7{word-spacing:7.792407pt;}
.wsd6{word-spacing:7.900570pt;}
.wsd7{word-spacing:7.961705pt;}
.ws5a{word-spacing:7.987074pt;}
.wsf3{word-spacing:8.042720pt;}
.wsf4{word-spacing:8.074784pt;}
.ws28{word-spacing:8.607686pt;}
.ws10f{word-spacing:8.999296pt;}
.ws120{word-spacing:9.635232pt;}
.ws9c{word-spacing:9.786360pt;}
.ws9d{word-spacing:10.007388pt;}
.ws110{word-spacing:10.030688pt;}
.ws9b{word-spacing:10.030902pt;}
.ws111{word-spacing:10.463552pt;}
.ws17a{word-spacing:10.520576pt;}
.wsd0{word-spacing:11.009068pt;}
.ws46{word-spacing:12.220789pt;}
.ws50{word-spacing:12.539593pt;}
.ws8e{word-spacing:14.677189pt;}
.ws8f{word-spacing:14.714811pt;}
.ws7d{word-spacing:46.610934pt;}
.ws7f{word-spacing:46.653972pt;}
.ws7c{word-spacing:47.828675pt;}
.ws138{word-spacing:49.200430pt;}
.ws13c{word-spacing:49.216587pt;}
.ws142{word-spacing:49.245860pt;}
.ws13a{word-spacing:50.517893pt;}
.ws147{word-spacing:60.557870pt;}
.ws76{word-spacing:64.013425pt;}
.ws13e{word-spacing:64.419400pt;}
.ws148{word-spacing:64.430344pt;}
.ws144{word-spacing:68.144640pt;}
.ws7e{word-spacing:101.021990pt;}
.wsbe{word-spacing:145.170815pt;}
.wsbf{word-spacing:175.287935pt;}
.ws145{word-spacing:183.114287pt;}
.ws140{word-spacing:183.119353pt;}
.ws130{word-spacing:196.401723pt;}
.wsbd{word-spacing:215.664157pt;}
.ws143{word-spacing:225.274676pt;}
.ws13d{word-spacing:225.279743pt;}
.ws146{word-spacing:246.171807pt;}
.ws141{word-spacing:246.176873pt;}
.ws139{word-spacing:262.619407pt;}
.ws128{word-spacing:275.377912pt;}
.ws12f{word-spacing:298.469315pt;}
.ws73{word-spacing:351.034563pt;}
.ws132{word-spacing:482.167396pt;}
.ws135{word-spacing:547.340782pt;}
.ws61{word-spacing:700.729434pt;}
.ws60{word-spacing:842.224921pt;}
.ws5b{word-spacing:871.979886pt;}
.ws20{word-spacing:1021.873088pt;}
._1b{margin-left:-14.249250pt;}
._1d{margin-left:-11.629827pt;}
._0{margin-left:-10.616218pt;}
._1c{margin-left:-9.570381pt;}
._4{margin-left:-6.168883pt;}
._b{margin-left:-4.835182pt;}
._6{margin-left:-3.525769pt;}
._6b{margin-left:-2.400326pt;}
._8{margin-left:-1.175671pt;}
._9{width:0.969929pt;}
._2{width:2.666150pt;}
._2f{width:9.564120pt;}
._c{width:10.828564pt;}
._11{width:12.599453pt;}
._12{width:14.219129pt;}
._5{width:15.876506pt;}
._7{width:17.598054pt;}
._d{width:18.594587pt;}
._a{width:20.197596pt;}
._14{width:21.632210pt;}
._e{width:22.581893pt;}
._10{width:24.247977pt;}
._30{width:25.291721pt;}
._19{width:26.472747pt;}
._16{width:27.523343pt;}
._6a{width:30.059900pt;}
._17{width:30.994291pt;}
._69{width:32.524653pt;}
._1{width:33.474560pt;}
._15{width:36.576279pt;}
._13{width:39.219520pt;}
._44{width:41.666240pt;}
._4a{width:54.669852pt;}
._22{width:57.370614pt;}
._37{width:58.773219pt;}
._3{width:61.644143pt;}
._21{width:63.955538pt;}
._65{width:65.432737pt;}
._2e{width:66.968248pt;}
._2b{width:68.173332pt;}
._23{width:71.143004pt;}
._5b{width:72.551327pt;}
._2a{width:74.715218pt;}
._5c{width:75.685980pt;}
._28{width:78.287432pt;}
._66{width:79.869828pt;}
._64{width:82.000717pt;}
._5f{width:83.272750pt;}
._29{width:84.829317pt;}
._5e{width:86.452833pt;}
._60{width:87.446670pt;}
._2c{width:88.444570pt;}
._5d{width:89.632916pt;}
._68{width:90.816721pt;}
._5a{width:91.810914pt;}
._46{width:93.418173pt;}
._67{width:94.422669pt;}
._34{width:96.657314pt;}
._2d{width:99.204250pt;}
._26{width:100.452372pt;}
._63{width:103.488993pt;}
._25{width:104.627128pt;}
._4f{width:105.639813pt;}
._4d{width:106.766351pt;}
._38{width:108.407761pt;}
._1f{width:109.462310pt;}
._20{width:115.989350pt;}
._3d{width:117.345468pt;}
._24{width:118.356480pt;}
._45{width:119.608916pt;}
._27{width:126.103450pt;}
._57{width:130.539909pt;}
._43{width:132.197470pt;}
._42{width:134.048896pt;}
._62{width:136.599490pt;}
._39{width:148.831262pt;}
._4b{width:151.189463pt;}
._61{width:156.586347pt;}
._40{width:164.757501pt;}
._48{width:165.736131pt;}
._49{width:168.608414pt;}
._47{width:179.604902pt;}
._4e{width:184.594629pt;}
._33{width:203.169538pt;}
._3f{width:205.589271pt;}
._3e{width:215.542409pt;}
._4c{width:230.080066pt;}
._51{width:236.075986pt;}
._3c{width:245.429830pt;}
._58{width:257.294185pt;}
._50{width:262.723580pt;}
._59{width:266.848781pt;}
._41{width:276.324735pt;}
._3b{width:285.822551pt;}
._3a{width:316.720984pt;}
._36{width:339.466469pt;}
._35{width:363.971760pt;}
._31{width:372.374831pt;}
._55{width:380.935711pt;}
._56{width:401.336064pt;}
._32{width:432.384197pt;}
._1e{width:651.336379pt;}
._18{width:830.654412pt;}
._1a{width:1371.832394pt;}
._54{width:1537.462976pt;}
._52{width:1558.900448pt;}
._53{width:1922.173867pt;}
._f{width:1943.427200pt;}
.fs1e{font-size:23.910240pt;}
.fs1f{font-size:24.914400pt;}
.fs14{font-size:28.160000pt;}
.fs12{font-size:32.947200pt;}
.fs1c{font-size:33.474240pt;}
.fs1d{font-size:34.880160pt;}
.fs9{font-size:37.193600pt;}
.fsc{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs10{font-size:37.452800pt;}
.fs8{font-size:40.381867pt;}
.fsb{font-size:41.988267pt;}
.fsf{font-size:42.077867pt;}
.fs17{font-size:42.240000pt;}
.fsd{font-size:42.507200pt;}
.fs18{font-size:42.560000pt;}
.fs15{font-size:43.038720pt;}
.fs16{font-size:43.995136pt;}
.fs1b{font-size:44.846400pt;}
.fs20{font-size:45.429760pt;}
.fs11{font-size:47.027200pt;}
.fsa{font-size:47.820800pt;}
.fs1a{font-size:48.000000pt;}
.fs13{font-size:51.532800pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs19{font-size:53.440000pt;}
.fse{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.fs5{font-size:134.387200pt;}
.y196{bottom:-674.441800pt;}
.y195{bottom:-656.441872pt;}
.y194{bottom:-638.441944pt;}
.y193{bottom:-620.522176pt;}
.y192{bottom:-602.522248pt;}
.y191{bottom:-584.522320pt;}
.y190{bottom:-566.522392pt;}
.y18f{bottom:-548.522464pt;}
.y18e{bottom:-530.522536pt;}
.y18d{bottom:-504.602800pt;}
.y18c{bottom:-470.602936pt;}
.y18b{bottom:-452.603008pt;}
.y18a{bottom:-434.603080pt;}
.y189{bottom:-416.603152pt;}
.y188{bottom:-398.603224pt;}
.y1af{bottom:-384.544467pt;}
.y187{bottom:-380.603296pt;}
.y1ae{bottom:-366.544539pt;}
.y186{bottom:-362.603368pt;}
.y1ad{bottom:-348.544611pt;}
.y185{bottom:-344.683600pt;}
.y1ac{bottom:-330.624843pt;}
.y1ab{bottom:-312.624915pt;}
.y184{bottom:-311.083467pt;}
.y176{bottom:-295.640933pt;}
.y1aa{bottom:-294.624987pt;}
.y183{bottom:-289.323600pt;}
.y1a9{bottom:-276.625059pt;}
.y1a8{bottom:-258.625131pt;}
.y1a7{bottom:-240.625203pt;}
.y165{bottom:-215.675904pt;}
.y1a6{bottom:-214.705467pt;}
.y164{bottom:-197.756136pt;}
.y1a5{bottom:-180.705603pt;}
.y163{bottom:-179.756208pt;}
.y1a4{bottom:-162.705675pt;}
.y162{bottom:-161.756280pt;}
.y1a3{bottom:-144.705747pt;}
.y161{bottom:-143.756352pt;}
.y1a2{bottom:-126.705819pt;}
.y160{bottom:-125.756424pt;}
.y1a1{bottom:-108.705891pt;}
.y15f{bottom:-107.756496pt;}
.y1a0{bottom:-90.705963pt;}
.y15e{bottom:-89.756568pt;}
.y19f{bottom:-72.706035pt;}
.y15d{bottom:-71.836800pt;}
.y19e{bottom:-54.786267pt;}
.y15c{bottom:-38.237200pt;}
.y154{bottom:-35.869973pt;}
.y175{bottom:-24.040933pt;}
.y182{bottom:-23.723600pt;}
.y19d{bottom:-21.186133pt;}
.y15b{bottom:-20.876800pt;}
.y153{bottom:-20.592821pt;}
.y174{bottom:-2.281229pt;}
.y181{bottom:-1.963600pt;}
.y152{bottom:-1.443451pt;}
.y17d{bottom:-0.952933pt;}
.y0{bottom:0.000000pt;}
.y19c{bottom:0.573733pt;}
.y15a{bottom:0.883035pt;}
.y30{bottom:3.044747pt;}
.yfe{bottom:6.270887pt;}
.y2f{bottom:12.578910pt;}
.y23{bottom:13.168350pt;}
.y50{bottom:56.693333pt;}
.y5{bottom:59.133337pt;}
.y129{bottom:78.541333pt;}
.y4{bottom:86.333337pt;}
.y128{bottom:96.554667pt;}
.y4f{bottom:100.757333pt;}
.y253{bottom:107.228000pt;}
.y83{bottom:109.441333pt;}
.yd4{bottom:110.550667pt;}
.y127{bottom:114.566667pt;}
.y26d{bottom:116.229333pt;}
.y1c2{bottom:116.630667pt;}
.y220{bottom:118.203333pt;}
.y4e{bottom:118.770667pt;}
.y2a0{bottom:123.205333pt;}
.y21{bottom:123.790666pt;}
.y21b{bottom:124.779333pt;}
.y252{bottom:125.241333pt;}
.y82{bottom:127.454667pt;}
.yd3{bottom:128.562667pt;}
.y156{bottom:129.542667pt;}
.y21f{bottom:131.354133pt;}
.y126{bottom:132.580000pt;}
.y1c1{bottom:134.644000pt;}
.y4d{bottom:136.782667pt;}
.yac{bottom:137.450667pt;}
.y26c{bottom:137.709333pt;}
.y217{bottom:137.930133pt;}
.y219{bottom:138.729333pt;}
.y29f{bottom:140.421333pt;}
.y251{bottom:143.253333pt;}
.yfd{bottom:143.761960pt;}
.y21e{bottom:144.504933pt;}
.y81{bottom:145.466667pt;}
.y218{bottom:146.429733pt;}
.yd2{bottom:146.576000pt;}
.y155{bottom:146.638667pt;}
.y125{bottom:150.592000pt;}
.y216{bottom:151.079733pt;}
.y26b{bottom:151.218667pt;}
.y1c0{bottom:152.656000pt;}
.ya9{bottom:154.182667pt;}
.y4c{bottom:154.796000pt;}
.y29e{bottom:157.636000pt;}
.y21d{bottom:157.655733pt;}
.yfc{bottom:159.601897pt;}
.y250{bottom:161.266667pt;}
.y80{bottom:163.478667pt;}
.y21a{bottom:164.230533pt;}
.yd1{bottom:164.588000pt;}
.y140{bottom:166.576000pt;}
.yab{bottom:168.496000pt;}
.y124{bottom:168.604000pt;}
.y1bf{bottom:170.669333pt;}
.y21c{bottom:170.806533pt;}
.yaa{bottom:171.152000pt;}
.y26a{bottom:172.698667pt;}
.y4b{bottom:172.808000pt;}
.y29d{bottom:174.852000pt;}
.y18{bottom:175.052000pt;}
.yfb{bottom:175.441834pt;}
.y24f{bottom:179.278667pt;}
.y7f{bottom:181.492000pt;}
.yd0{bottom:182.601333pt;}
.ya8{bottom:184.037333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y123{bottom:186.617333pt;}
.y213{bottom:187.463733pt;}
.y1be{bottom:188.681333pt;}
.y215{bottom:189.718533pt;}
.y4a{bottom:190.820000pt;}
.yfa{bottom:191.281770pt;}
.y29c{bottom:192.068000pt;}
.y269{bottom:194.177333pt;}
.y212{bottom:196.167333pt;}
.y210{bottom:196.294533pt;}
.y24e{bottom:197.290667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y7e{bottom:199.504000pt;}
.y211{bottom:199.914933pt;}
.ycf{bottom:200.613333pt;}
.ya7{bottom:202.050667pt;}
.y214{bottom:202.869333pt;}
.y122{bottom:204.629333pt;}
.y1bd{bottom:206.693333pt;}
.yf9{bottom:207.121707pt;}
.y268{bottom:207.686667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y49{bottom:208.833333pt;}
.y29b{bottom:209.282667pt;}
.y24d{bottom:215.304000pt;}
.y7d{bottom:217.517333pt;}
.yce{bottom:218.625333pt;}
.ya6{bottom:220.062667pt;}
.y17e{bottom:220.904000pt;}
.y267{bottom:221.196000pt;}
.y20f{bottom:221.782533pt;}
.y121{bottom:222.642667pt;}
.yf8{bottom:222.961644pt;}
.y1bc{bottom:224.706667pt;}
.y29a{bottom:226.498667pt;}
.y48{bottom:226.845333pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y20b{bottom:232.678533pt;}
.y24c{bottom:233.316000pt;}
.y266{bottom:234.705333pt;}
.y20e{bottom:234.933333pt;}
.y7c{bottom:235.529333pt;}
.ycd{bottom:236.638667pt;}
.ya5{bottom:238.074667pt;}
.yf7{bottom:238.731039pt;}
.y120{bottom:240.654667pt;}
.y178{bottom:240.841333pt;}
.y20a{bottom:241.380933pt;}
.y208{bottom:241.508133pt;}
.y151{bottom:241.647200pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y1bb{bottom:242.718667pt;}
.y299{bottom:243.713333pt;}
.y47{bottom:244.858667pt;}
.y209{bottom:245.129733pt;}
.y20d{bottom:248.082933pt;}
.y265{bottom:248.214667pt;}
.y24b{bottom:251.329333pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y7b{bottom:253.541333pt;}
.yf6{bottom:254.572088pt;}
.ycc{bottom:254.650667pt;}
.y170{bottom:255.228000pt;}
.y173{bottom:257.719067pt;}
.y11f{bottom:258.666667pt;}
.ya4{bottom:259.241333pt;}
.y1ba{bottom:260.732000pt;}
.y298{bottom:260.929333pt;}
.y20c{bottom:261.233733pt;}
.y264{bottom:261.724000pt;}
.y46{bottom:262.870667pt;}
.y19b{bottom:266.173733pt;}
.ya1{bottom:266.861333pt;}
.y24a{bottom:269.341333pt;}
.y180{bottom:269.396400pt;}
.yf5{bottom:270.412025pt;}
.y17c{bottom:270.647067pt;}
.y7a{bottom:271.554667pt;}
.y16f{bottom:273.240000pt;}
.y159{bottom:273.443067pt;}
.y263{bottom:275.234667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.ya0{bottom:275.973333pt;}
.y11e{bottom:276.680000pt;}
.y297{bottom:278.145333pt;}
.y207{bottom:280.146933pt;}
.ycb{bottom:280.633333pt;}
.y45{bottom:280.882667pt;}
.y1b9{bottom:286.714667pt;}
.y202{bottom:286.721733pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y249{bottom:287.353333pt;}
.y19a{bottom:287.933733pt;}
.y79{bottom:289.566667pt;}
.y204{bottom:289.865733pt;}
.ya3{bottom:290.286667pt;}
.y16e{bottom:291.253333pt;}
.y17b{bottom:292.406771pt;}
.ya2{bottom:292.942667pt;}
.yf4{bottom:293.291933pt;}
.y206{bottom:293.297733pt;}
.y11d{bottom:294.692000pt;}
.y296{bottom:295.360000pt;}
.y203{bottom:298.739733pt;}
.y44{bottom:298.896000pt;}
.y201{bottom:299.872533pt;}
.y262{bottom:304.684000pt;}
.y248{bottom:305.366667pt;}
.y9f{bottom:305.828000pt;}
.y205{bottom:306.448533pt;}
.y78{bottom:307.580000pt;}
.y16d{bottom:309.265333pt;}
.yf{bottom:309.452000pt;}
.yca{bottom:311.584000pt;}
.y295{bottom:312.576000pt;}
.y11c{bottom:312.705333pt;}
.y43{bottom:316.908000pt;}
.y1b8{bottom:317.665333pt;}
.y261{bottom:322.696000pt;}
.yf3{bottom:323.211814pt;}
.y9e{bottom:323.841333pt;}
.y200{bottom:325.360533pt;}
.y77{bottom:325.592000pt;}
.y16c{bottom:327.277333pt;}
.yc9{bottom:329.596000pt;}
.y294{bottom:329.790667pt;}
.y11b{bottom:330.717333pt;}
.y42{bottom:334.921333pt;}
.y1b7{bottom:335.677333pt;}
.y1ff{bottom:338.511333pt;}
.yf2{bottom:339.051750pt;}
.y260{bottom:340.709333pt;}
.y9d{bottom:341.853333pt;}
.y76{bottom:343.604000pt;}
.ye{bottom:343.809333pt;}
.y16b{bottom:345.290667pt;}
.y247{bottom:346.665467pt;}
.y293{bottom:347.006667pt;}
.yc8{bottom:347.609333pt;}
.y1fb{bottom:347.895333pt;}
.y11a{bottom:348.729333pt;}
.y1f6{bottom:351.662133pt;}
.y41{bottom:352.933333pt;}
.y1b6{bottom:353.689333pt;}
.y1f8{bottom:354.195333pt;}
.yf1{bottom:354.821146pt;}
.y1fc{bottom:358.102533pt;}
.y25f{bottom:358.721333pt;}
.y9c{bottom:359.865333pt;}
.y246{bottom:360.546867pt;}
.y75{bottom:361.617333pt;}
.y1f7{bottom:362.229333pt;}
.yd{bottom:362.706666pt;}
.y16a{bottom:363.302667pt;}
.y292{bottom:364.222667pt;}
.y1f5{bottom:364.812933pt;}
.yc7{bottom:365.621333pt;}
.y1fa{bottom:365.984133pt;}
.y119{bottom:366.742667pt;}
.y1f9{bottom:368.135733pt;}
.yf0{bottom:370.661083pt;}
.y40{bottom:370.945333pt;}
.y1b5{bottom:371.702667pt;}
.y245{bottom:374.729733pt;}
.y25e{bottom:376.733333pt;}
.y9b{bottom:377.878667pt;}
.y1fe{bottom:377.963733pt;}
.y74{bottom:379.629333pt;}
.y169{bottom:381.316000pt;}
.y291{bottom:381.437333pt;}
.yc6{bottom:383.634667pt;}
.y118{bottom:384.754667pt;}
.yef{bottom:386.501020pt;}
.y3f{bottom:388.958667pt;}
.y1b4{bottom:389.714667pt;}
.y1fd{bottom:391.114533pt;}
.y244{bottom:392.441533pt;}
.y25d{bottom:394.746667pt;}
.y9a{bottom:395.890667pt;}
.y73{bottom:397.642667pt;}
.y290{bottom:398.653333pt;}
.y168{bottom:399.328000pt;}
.yc5{bottom:401.646667pt;}
.yee{bottom:402.340956pt;}
.y117{bottom:402.768000pt;}
.y3e{bottom:406.970667pt;}
.y1b3{bottom:407.728000pt;}
.y1f1{bottom:409.476933pt;}
.y243{bottom:409.853133pt;}
.y25c{bottom:412.758667pt;}
.y99{bottom:413.904000pt;}
.y1f4{bottom:414.274533pt;}
.y1ee{bottom:415.650933pt;}
.y72{bottom:415.654667pt;}
.y28f{bottom:415.868000pt;}
.yed{bottom:418.180893pt;}
.y1f2{bottom:419.570133pt;}
.yc4{bottom:419.658667pt;}
.y116{bottom:420.780000pt;}
.y1ed{bottom:420.849333pt;}
.y242{bottom:423.734533pt;}
.y3d{bottom:424.984000pt;}
.y1b2{bottom:425.740000pt;}
.y1f3{bottom:427.425333pt;}
.y1f0{bottom:427.564533pt;}
.y1ef{bottom:429.716133pt;}
.y167{bottom:430.440000pt;}
.y25b{bottom:430.772000pt;}
.y98{bottom:431.916000pt;}
.y28e{bottom:433.084000pt;}
.y71{bottom:433.666667pt;}
.yec{bottom:434.020829pt;}
.yc3{bottom:437.672000pt;}
.y115{bottom:438.792000pt;}
.y240{bottom:441.144867pt;}
.y3c{bottom:442.996000pt;}
.y1b1{bottom:443.752000pt;}
.yc{bottom:446.990669pt;}
.y166{bottom:447.534667pt;}
.y25a{bottom:448.784000pt;}
.y97{bottom:449.928000pt;}
.y1e9{bottom:450.035733pt;}
.y28d{bottom:450.300000pt;}
.y70{bottom:451.680000pt;}
.yeb{bottom:453.450117pt;}
.y241{bottom:454.724800pt;}
.y1ec{bottom:454.833333pt;}
.y23f{bottom:455.026267pt;}
.y1e6{bottom:456.209733pt;}
.y114{bottom:456.805333pt;}
.yc2{bottom:457.530667pt;}
.y1ea{bottom:460.128933pt;}
.y3b{bottom:461.008000pt;}
.y1e5{bottom:461.408133pt;}
.yb{bottom:462.990669pt;}
.yc1{bottom:466.642667pt;}
.y259{bottom:466.796000pt;}
.y157{bottom:467.472000pt;}
.y28c{bottom:467.514667pt;}
.y96{bottom:467.941333pt;}
.y1eb{bottom:467.984133pt;}
.y1e8{bottom:468.123333pt;}
.y23e{bottom:468.907667pt;}
.y6f{bottom:469.692000pt;}
.y1e7{bottom:470.274933pt;}
.y113{bottom:474.817333pt;}
.y1b0{bottom:474.864000pt;}
.ya{bottom:478.990666pt;}
.y150{bottom:481.148500pt;}
.y28b{bottom:484.730667pt;}
.y258{bottom:484.809333pt;}
.y23d{bottom:486.620733pt;}
.yc0{bottom:486.741333pt;}
.y3a{bottom:486.990667pt;}
.y6e{bottom:487.704000pt;}
.y1e2{bottom:491.144133pt;}
.y177{bottom:491.258667pt;}
.yea{bottom:492.523004pt;}
.y112{bottom:492.830667pt;}
.y1df{bottom:492.921333pt;}
.y198{bottom:494.801333pt;}
.y9{bottom:494.990666pt;}
.y94{bottom:495.264000pt;}
.y14f{bottom:496.988436pt;}
.y1e4{bottom:497.718933pt;}
.y1dc{bottom:499.095333pt;}
.y28a{bottom:501.945333pt;}
.y257{bottom:502.821333pt;}
.y1e0{bottom:503.128533pt;}
.y1db{bottom:504.294933pt;}
.y23c{bottom:504.332533pt;}
.y6d{bottom:505.717333pt;}
.y111{bottom:510.842667pt;}
.y1e3{bottom:510.869733pt;}
.y1de{bottom:511.010133pt;}
.y171{bottom:511.196000pt;}
.y91{bottom:511.524000pt;}
.y95{bottom:511.664000pt;}
.y14e{bottom:512.757832pt;}
.y1dd{bottom:513.161733pt;}
.ye9{bottom:514.416517pt;}
.ybf{bottom:515.845333pt;}
.y1e1{bottom:517.445733pt;}
.y289{bottom:519.161333pt;}
.y256{bottom:520.834667pt;}
.y23b{bottom:522.045600pt;}
.ye8{bottom:523.076576pt;}
.y6c{bottom:523.729333pt;}
.ybe{bottom:525.516000pt;}
.y93{bottom:525.837333pt;}
.y92{bottom:528.493333pt;}
.y14d{bottom:528.597769pt;}
.y110{bottom:528.854667pt;}
.y1d9{bottom:536.357733pt;}
.y288{bottom:536.377333pt;}
.y255{bottom:538.846667pt;}
.y23a{bottom:539.457200pt;}
.y6b{bottom:541.742667pt;}
.y1d6{bottom:542.932533pt;}
.y1da{bottom:542.933733pt;}
.y14c{bottom:544.437705pt;}
.y172{bottom:544.919067pt;}
.y10f{bottom:546.868000pt;}
.y1d8{bottom:549.508533pt;}
.y17a{bottom:552.407067pt;}
.ye7{bottom:553.208234pt;}
.y239{bottom:553.337333pt;}
.y287{bottom:553.592000pt;}
.y39{bottom:554.112000pt;}
.y1d5{bottom:556.083333pt;}
.y90{bottom:556.858667pt;}
.y199{bottom:559.293733pt;}
.y6a{bottom:559.754667pt;}
.y14b{bottom:560.277642pt;}
.y1d7{bottom:562.659333pt;}
.ybd{bottom:563.938667pt;}
.y10e{bottom:564.880000pt;}
.ye6{bottom:569.048170pt;}
.y286{bottom:570.808000pt;}
.y238{bottom:571.050400pt;}
.y8f{bottom:572.878667pt;}
.y8{bottom:573.786667pt;}
.y8e{bottom:574.872000pt;}
.y14a{bottom:576.117579pt;}
.y69{bottom:577.766667pt;}
.y1d1{bottom:581.571333pt;}
.ybc{bottom:581.950667pt;}
.y10d{bottom:582.893333pt;}
.ye5{bottom:584.888107pt;}
.y285{bottom:588.024000pt;}
.y38{bottom:588.065333pt;}
.y1d4{bottom:588.147333pt;}
.y237{bottom:588.462000pt;}
.y158{bottom:588.643067pt;}
.y7{bottom:592.685334pt;}
.y8d{bottom:592.884000pt;}
.y1cd{bottom:594.722133pt;}
.y68{bottom:595.780000pt;}
.y1cf{bottom:597.112533pt;}
.ybb{bottom:599.962667pt;}
.ye4{bottom:600.657503pt;}
.y10c{bottom:600.905333pt;}
.y1d3{bottom:601.298133pt;}
.y236{bottom:602.342133pt;}
.y1ce{bottom:605.063733pt;}
.y284{bottom:605.238667pt;}
.y149{bottom:606.459049pt;}
.y1cc{bottom:607.872933pt;}
.y8c{bottom:610.896000pt;}
.y67{bottom:613.792000pt;}
.y1d2{bottom:614.448933pt;}
.ye3{bottom:616.497439pt;}
.yba{bottom:617.976000pt;}
.y10b{bottom:618.917333pt;}
.y148{bottom:619.131204pt;}
.y1d0{bottom:621.023733pt;}
.y37{bottom:622.018667pt;}
.y235{bottom:622.306067pt;}
.y283{bottom:622.454667pt;}
.y8b{bottom:628.909333pt;}
.y147{bottom:631.803359pt;}
.y66{bottom:631.805333pt;}
.ye2{bottom:632.337376pt;}
.yb9{bottom:635.988000pt;}
.y13f{bottom:636.676000pt;}
.y10a{bottom:636.930667pt;}
.y282{bottom:639.669333pt;}
.y1cb{bottom:639.935733pt;}
.y36{bottom:640.030667pt;}
.y146{bottom:644.475514pt;}
.y6{bottom:645.598667pt;}
.y1c9{bottom:646.511733pt;}
.y8a{bottom:646.921333pt;}
.ye1{bottom:648.177313pt;}
.y65{bottom:649.817333pt;}
.y234{bottom:649.962667pt;}
.y1c8{bottom:653.086533pt;}
.yb8{bottom:654.001333pt;}
.y13e{bottom:654.689333pt;}
.y109{bottom:654.942667pt;}
.y281{bottom:656.885333pt;}
.y145{bottom:657.147669pt;}
.y35{bottom:658.042667pt;}
.ye0{bottom:664.017249pt;}
.y89{bottom:664.934667pt;}
.y1ca{bottom:666.237333pt;}
.y64{bottom:667.829333pt;}
.y3{bottom:668.977329pt;}
.y144{bottom:669.819824pt;}
.yb7{bottom:672.013333pt;}
.y13d{bottom:672.701333pt;}
.y280{bottom:674.101333pt;}
.y34{bottom:676.056000pt;}
.ydf{bottom:679.857186pt;}
.y143{bottom:682.491979pt;}
.y88{bottom:682.946667pt;}
.y1c7{bottom:685.150533pt;}
.y63{bottom:685.842667pt;}
.y233{bottom:686.545067pt;}
.yb6{bottom:690.025333pt;}
.y13c{bottom:690.714667pt;}
.y254{bottom:690.917333pt;}
.y27f{bottom:691.316000pt;}
.y1c6{bottom:691.725333pt;}
.y108{bottom:693.278667pt;}
.y33{bottom:694.068000pt;}
.y142{bottom:695.164387pt;}
.yde{bottom:695.697123pt;}
.y232{bottom:700.426467pt;}
.y87{bottom:700.958667pt;}
.y62{bottom:703.854667pt;}
.y107{bottom:705.898667pt;}
.yb5{bottom:708.038667pt;}
.y27e{bottom:708.532000pt;}
.y13b{bottom:708.726667pt;}
.ydd{bottom:711.466518pt;}
.y32{bottom:712.081333pt;}
.y231{bottom:718.138267pt;}
.y106{bottom:718.517333pt;}
.y86{bottom:718.972000pt;}
.y61{bottom:721.868000pt;}
.y141{bottom:723.042379pt;}
.y1c5{bottom:724.904000pt;}
.y27d{bottom:725.746667pt;}
.yb4{bottom:726.050667pt;}
.y13a{bottom:726.738667pt;}
.ydc{bottom:727.306455pt;}
.y31{bottom:730.093333pt;}
.y105{bottom:731.137333pt;}
.y230{bottom:735.851333pt;}
.y85{bottom:736.984000pt;}
.y2ae{bottom:739.102667pt;}
.y60{bottom:739.880000pt;}
.y27c{bottom:742.962667pt;}
.y104{bottom:743.756000pt;}
.yb3{bottom:744.064000pt;}
.y139{bottom:744.752000pt;}
.ydb{bottom:746.666737pt;}
.y197{bottom:748.213333pt;}
.y22f{bottom:753.261667pt;}
.y2ad{bottom:756.317333pt;}
.y103{bottom:756.376000pt;}
.y5f{bottom:757.892000pt;}
.y27b{bottom:760.178667pt;}
.y2e{bottom:761.589301pt;}
.yd9{bottom:761.661768pt;}
.yb2{bottom:762.076000pt;}
.y2d{bottom:762.270667pt;}
.y84{bottom:762.966667pt;}
.y22e{bottom:767.143067pt;}
.y17f{bottom:768.150667pt;}
.y2ac{bottom:773.533333pt;}
.y102{bottom:774.891733pt;}
.y5e{bottom:775.905333pt;}
.y27a{bottom:777.393333pt;}
.yda{bottom:779.121376pt;}
.y2{bottom:781.661334pt;}
.yb0{bottom:783.358667pt;}
.y22c{bottom:784.554667pt;}
.y138{bottom:785.818080pt;}
.y101{bottom:788.042533pt;}
.y5d{bottom:793.917333pt;}
.y279{bottom:794.609333pt;}
.yd8{bottom:796.580639pt;}
.y2c{bottom:796.941333pt;}
.y22d{bottom:798.134600pt;}
.y22b{bottom:798.436067pt;}
.y137{bottom:799.261120pt;}
.yad{bottom:799.618667pt;}
.yb1{bottom:799.757333pt;}
.y2ab{bottom:802.685333pt;}
.y100{bottom:806.955733pt;}
.y278{bottom:811.824000pt;}
.y5c{bottom:811.930667pt;}
.y22a{bottom:812.317467pt;}
.yd7{bottom:812.420576pt;}
.y136{bottom:812.704160pt;}
.y2b{bottom:813.081333pt;}
.yaf{bottom:813.930667pt;}
.yae{bottom:816.588000pt;}
.y2aa{bottom:819.901333pt;}
.y135{bottom:826.147200pt;}
.y277{bottom:829.040000pt;}
.y5b{bottom:829.942667pt;}
.y229{bottom:830.029267pt;}
.y2a{bottom:833.561333pt;}
.y2a9{bottom:837.116000pt;}
.y134{bottom:839.590240pt;}
.y179{bottom:839.607067pt;}
.yd6{bottom:841.636576pt;}
.y29{bottom:845.360000pt;}
.y276{bottom:846.256000pt;}
.y228{bottom:847.742333pt;}
.y5a{bottom:847.954667pt;}
.y133{bottom:853.033280pt;}
.y2a8{bottom:854.332000pt;}
.y1{bottom:859.312000pt;}
.yff{bottom:859.954667pt;}
.y275{bottom:863.470667pt;}
.y227{bottom:865.454133pt;}
.y28{bottom:865.840000pt;}
.y59{bottom:865.968000pt;}
.y132{bottom:866.476320pt;}
.y2a7{bottom:871.546667pt;}
.yd5{bottom:879.892469pt;}
.y131{bottom:879.919360pt;}
.y274{bottom:880.686667pt;}
.y226{bottom:882.865733pt;}
.y58{bottom:883.980000pt;}
.y27{bottom:885.609333pt;}
.y2a6{bottom:888.762667pt;}
.y130{bottom:893.362400pt;}
.y225{bottom:896.747133pt;}
.y273{bottom:897.901333pt;}
.y57{bottom:901.993333pt;}
.y2a5{bottom:905.978667pt;}
.y12f{bottom:906.805440pt;}
.y224{bottom:914.458933pt;}
.y272{bottom:915.117333pt;}
.y56{bottom:920.005333pt;}
.y12e{bottom:920.247253pt;}
.y2a4{bottom:923.193333pt;}
.y26{bottom:925.198667pt;}
.y223{bottom:931.870533pt;}
.y271{bottom:932.333333pt;}
.y12d{bottom:933.690293pt;}
.y1c4{bottom:935.504000pt;}
.y55{bottom:938.017333pt;}
.y2a3{bottom:940.409333pt;}
.y222{bottom:945.751933pt;}
.y12c{bottom:947.133333pt;}
.y270{bottom:949.548000pt;}
.y25{bottom:952.217333pt;}
.y1c3{bottom:954.037333pt;}
.y54{bottom:956.030667pt;}
.y2a2{bottom:957.624000pt;}
.y221{bottom:965.714600pt;}
.y12b{bottom:966.466827pt;}
.y26f{bottom:966.764000pt;}
.y53{bottom:974.042667pt;}
.y2a1{bottom:974.840000pt;}
.y24{bottom:977.906667pt;}
.y26e{bottom:991.949333pt;}
.y52{bottom:992.056000pt;}
.y12a{bottom:993.372000pt;}
.y22{bottom:1011.514667pt;}
.y51{bottom:1038.548000pt;}
.h49{height:2.539284pt;}
.h18{height:3.134898pt;}
.h53{height:8.295806pt;}
.h10{height:22.673858pt;}
.h46{height:23.498916pt;}
.h4f{height:24.369247pt;}
.h45{height:24.536618pt;}
.h4a{height:26.160120pt;}
.he{height:27.076941pt;}
.h36{height:27.339813pt;}
.h24{height:27.577550pt;}
.h7{height:28.560000pt;}
.h12{height:29.433775pt;}
.h16{height:29.599908pt;}
.h11{height:30.399505pt;}
.h38{height:30.834375pt;}
.h30{height:30.945242pt;}
.h37{height:31.102500pt;}
.h2e{height:31.116995pt;}
.h15{height:31.157778pt;}
.h2f{height:31.332188pt;}
.h3a{height:31.338125pt;}
.h4e{height:31.375227pt;}
.h19{height:31.558400pt;}
.h32{height:31.808483pt;}
.h33{height:32.028459pt;}
.h1e{height:32.092855pt;}
.h34{height:32.248435pt;}
.h58{height:32.845716pt;}
.h5b{height:33.072865pt;}
.h5a{height:33.118295pt;}
.h50{height:33.634800pt;}
.h5e{height:33.713664pt;}
.h5d{height:34.144051pt;}
.h26{height:34.328938pt;}
.h2d{height:34.574438pt;}
.h2c{height:34.627450pt;}
.hf{height:34.813542pt;}
.h3f{height:35.052646pt;}
.h3c{height:35.343750pt;}
.h55{height:36.451320pt;}
.h4c{height:36.806047pt;}
.h1d{height:37.299974pt;}
.h2b{height:37.652188pt;}
.h13{height:38.415786pt;}
.h14{height:38.681455pt;}
.hb{height:38.947124pt;}
.h3b{height:39.010156pt;}
.h41{height:39.349375pt;}
.h6{height:40.800000pt;}
.h17{height:41.524400pt;}
.h54{height:41.676985pt;}
.h56{height:41.681785pt;}
.h1b{height:42.079067pt;}
.h3{height:42.840000pt;}
.h4b{height:45.100447pt;}
.h9{height:45.271688pt;}
.h52{height:45.921000pt;}
.hd{height:48.486756pt;}
.h31{height:48.688666pt;}
.h2{height:48.960000pt;}
.h1c{height:56.122575pt;}
.h51{height:57.591806pt;}
.h44{height:57.636188pt;}
.h43{height:57.679227pt;}
.h59{height:59.627265pt;}
.h5c{height:59.632332pt;}
.h47{height:63.168084pt;}
.hc{height:69.148877pt;}
.h5{height:69.360000pt;}
.h1f{height:74.649455pt;}
.h1a{height:74.654788pt;}
.h21{height:74.920458pt;}
.h22{height:75.129455pt;}
.h57{height:77.103806pt;}
.h20{height:77.364122pt;}
.h48{height:77.572884pt;}
.h4d{height:77.577684pt;}
.h28{height:84.185888pt;}
.ha{height:91.114522pt;}
.h29{height:95.434645pt;}
.h4{height:105.826671pt;}
.h25{height:120.162763pt;}
.h27{height:122.417196pt;}
.h23{height:125.446464pt;}
.h2a{height:159.303501pt;}
.h3e{height:235.990667pt;}
.h40{height:237.189333pt;}
.h42{height:238.985333pt;}
.h35{height:449.078080pt;}
.h3d{height:494.144000pt;}
.h39{height:537.868000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:116.962220pt;}
.w8{width:315.652000pt;}
.w7{width:361.581440pt;}
.wb{width:410.886667pt;}
.wa{width:410.888000pt;}
.w9{width:414.481333pt;}
.wc{width:430.653333pt;}
.w6{width:463.835445pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x5a{left:-129.718667pt;}
.x5d{left:-101.398667pt;}
.x67{left:-89.588000pt;}
.x5f{left:-86.593333pt;}
.x4f{left:-77.255787pt;}
.x6f{left:-65.629333pt;}
.x68{left:-61.268000pt;}
.x61{left:-58.273333pt;}
.x53{left:-52.334187pt;}
.x50{left:-50.856244pt;}
.x51{left:-48.110496pt;}
.x52{left:-47.054327pt;}
.x74{left:-37.309333pt;}
.x38{left:-26.128608pt;}
.x6b{left:-12.349333pt;}
.x6d{left:-11.069333pt;}
.x3c{left:-1.207311pt;}
.x0{left:0.000000pt;}
.x71{left:11.010667pt;}
.x73{left:12.290667pt;}
.xb{left:26.021437pt;}
.x6{left:51.605861pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:102.046667pt;}
.x9{left:108.542667pt;}
.x7{left:109.606667pt;}
.x93{left:113.805467pt;}
.x7d{left:114.941600pt;}
.x77{left:116.045333pt;}
.x8f{left:118.393467pt;}
.x46{left:120.403067pt;}
.x4c{left:126.045280pt;}
.x47{left:127.279067pt;}
.x4d{left:128.806507pt;}
.x8{left:129.929333pt;}
.x4b{left:131.698987pt;}
.x48{left:137.918667pt;}
.x26{left:141.496000pt;}
.x1e{left:142.629333pt;}
.x49{left:149.466667pt;}
.x27{left:153.036000pt;}
.x78{left:155.512000pt;}
.x1f{left:159.552000pt;}
.x37{left:164.931648pt;}
.x3d{left:166.767392pt;}
.xc{left:167.977333pt;}
.x39{left:170.779368pt;}
.x6e{left:178.873333pt;}
.x4{left:180.874667pt;}
.x5e{left:181.772000pt;}
.x55{left:182.921333pt;}
.xd{left:187.013333pt;}
.x45{left:188.904000pt;}
.x66{left:191.406667pt;}
.x3b{left:194.857013pt;}
.x3a{left:199.503392pt;}
.x96{left:211.518667pt;}
.x3f{left:213.864675pt;}
.x4e{left:216.058667pt;}
.x94{left:221.095933pt;}
.x92{left:223.464600pt;}
.x90{left:225.685200pt;}
.x8e{left:228.052600pt;}
.x40{left:230.409091pt;}
.x95{left:231.692000pt;}
.x99{left:236.122667pt;}
.x9d{left:237.545333pt;}
.x59{left:239.025333pt;}
.x89{left:247.292000pt;}
.x7b{left:248.230667pt;}
.x88{left:250.178000pt;}
.x3e{left:252.445135pt;}
.x81{left:256.050800pt;}
.x8a{left:262.355600pt;}
.x9a{left:264.205333pt;}
.x2a{left:265.588000pt;}
.xe{left:266.781333pt;}
.x9b{left:272.920000pt;}
.x2b{left:274.474667pt;}
.x83{left:277.262000pt;}
.x82{left:279.183200pt;}
.x4a{left:280.701333pt;}
.x8c{left:284.301200pt;}
.x86{left:285.414800pt;}
.x85{left:288.300800pt;}
.x84{left:289.439600pt;}
.x80{left:291.125600pt;}
.x62{left:292.164000pt;}
.x8b{left:293.339600pt;}
.x22{left:296.045333pt;}
.x97{left:298.944000pt;}
.x87{left:302.136800pt;}
.x8d{left:303.816000pt;}
.x98{left:304.921333pt;}
.x91{left:312.154667pt;}
.x63{left:313.076000pt;}
.x28{left:316.876000pt;}
.x10{left:318.056000pt;}
.x20{left:320.458667pt;}
.x33{left:321.936000pt;}
.x35{left:323.462667pt;}
.x11{left:325.370667pt;}
.x2f{left:326.916000pt;}
.x19{left:331.416000pt;}
.x5c{left:333.080773pt;}
.x21{left:337.381333pt;}
.x14{left:338.852000pt;}
.x5b{left:340.041333pt;}
.x31{left:354.074667pt;}
.x32{left:355.125333pt;}
.x69{left:357.728000pt;}
.x30{left:360.340000pt;}
.x29{left:369.280000pt;}
.x2c{left:372.340000pt;}
.x7e{left:375.622400pt;}
.x36{left:377.134667pt;}
.x54{left:382.314709pt;}
.x2d{left:384.629333pt;}
.x16{left:389.096000pt;}
.x17{left:390.148000pt;}
.x24{left:393.693333pt;}
.x15{left:395.362667pt;}
.x9c{left:400.313333pt;}
.x23{left:401.265333pt;}
.x3{left:404.408000pt;}
.x1c{left:406.218667pt;}
.x18{left:408.205333pt;}
.x1b{left:409.908000pt;}
.x34{left:413.664000pt;}
.x2e{left:414.668000pt;}
.x1a{left:417.480000pt;}
.x25{left:418.606667pt;}
.x56{left:431.786667pt;}
.x6a{left:433.250667pt;}
.x1d{left:434.316000pt;}
.x60{left:435.646667pt;}
.x6c{left:437.810667pt;}
.x70{left:456.610667pt;}
.x72{left:461.170667pt;}
.x41{left:462.837333pt;}
.x64{left:464.692000pt;}
.x75{left:466.565333pt;}
.x76{left:475.452000pt;}
.x42{left:483.814667pt;}
.x79{left:486.762667pt;}
.x7a{left:498.469333pt;}
.x65{left:506.860000pt;}
.x12{left:511.556000pt;}
.x13{left:518.870667pt;}
.x7f{left:534.527600pt;}
.x7c{left:583.937600pt;}
.x57{left:588.057333pt;}
.x43{left:598.785333pt;}
.xa{left:623.413317pt;}
.x44{left:627.737333pt;}
.x58{left:630.530667pt;}
.xf{left:635.677333pt;}
}




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