
    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_d6ec7edb1f1b9f1f4bd4934a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_1a4857f8592eb3e50e3750c4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_ebb424773916298925ea06e0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133000;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_f1a2c997ed3eac6bbd5ec5e6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_2eb3940263a34b31c3c2a770.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893000;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_684ec14483ad0dbea4677110.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_437b9f41eef46a52b046a459.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.881000;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_e6f45168aa916d89203a4524.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_00b655ee52eada7600cb3f5a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.712000;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_a8e059a30fb11ce01225ff9e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_209528d5c835288c9cb8ea08.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_df6f40c359b4df7dc2f9956e.woff2')format("woff");}.ffc{font-family:ffc;line-height:3.109000;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_1ebab17e1f42cec2863707df.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_5f16e95c688bc5ff3f3a60df.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.998000;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_3f7cb14e80b9cf9bb16165b2.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_59ff4bb936d0fea0253b97a5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.908000;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_5f16e95c688bc5ff3f3a60df.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.998000;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_3f7cb14e80b9cf9bb16165b2.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_59ff4bb936d0fea0253b97a5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.908000;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_b2d14f46b6b6daa5e1bbe322.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_8280221a4cf8a51923a2d4ec.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_ce5c77461eb7e478e8c36c58.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_b1ec954916f2af2daafcf387.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.664000;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_3f7cb14e80b9cf9bb16165b2.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_59ff4bb936d0fea0253b97a5.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.908000;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_2501ca0329594614b3d238b4.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_ef26bff95c8b6351ae2f369f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.451000;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_bc9ab92106b113b3851a2226.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.451000;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_5f16e95c688bc5ff3f3a60df.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.998000;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_b2d14f46b6b6daa5e1bbe322.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_3f7cb14e80b9cf9bb16165b2.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_59ff4bb936d0fea0253b97a5.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.908000;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_5f16e95c688bc5ff3f3a60df.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.998000;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_3f7cb14e80b9cf9bb16165b2.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_59ff4bb936d0fea0253b97a5.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.908000;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_9af9920250c201979a89ee75.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_87101bbac035fd7e50f46e8c.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_6903bd84017508dde4360529.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.686000;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_f8bc90aa89d18bf42f48a96d.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_17314a4ed7c69880e4c53714.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.921000;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_1647c5618b41eff0a1aaddc3.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.451000;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_dc1f33ff73b5ed0be045217e.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.451000;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_2d143acb55ee1730d6f4adf6.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.046000;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_9af9920250c201979a89ee75.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_87101bbac035fd7e50f46e8c.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_6903bd84017508dde4360529.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_f8bc90aa89d18bf42f48a96d.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_17314a4ed7c69880e4c53714.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_1647c5618b41eff0a1aaddc3.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.451000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_dc1f33ff73b5ed0be045217e.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.451000;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;}
.m29{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{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);}
.m26{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);}
.m25{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);}
.m28{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m1c{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);}
.m3{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);}
.mb{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);}
.m1{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.ma{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);}
.m27{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);}
.m6{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);}
.m11{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);}
.m22{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);}
.m1e{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);}
.mf{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);}
.m23{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);}
.m15{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m24{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);}
.m1a{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m9{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);}
.m4{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);}
.m20{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);}
.me{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);}
.m1f{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.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);}
.md{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);}
.m8{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);}
.m7{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);}
.mc{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);}
.v3{vertical-align:-12.318000px;}
.v2{vertical-align:-10.284000px;}
.vf{vertical-align:-9.072000px;}
.v17{vertical-align:-7.358040px;}
.v18{vertical-align:-5.496290px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.502000px;}
.v6{vertical-align:10.146000px;}
.v4{vertical-align:12.318000px;}
.v1{vertical-align:14.148000px;}
.vb{vertical-align:15.414000px;}
.v10{vertical-align:22.584000px;}
.v15{vertical-align:23.760000px;}
.vd{vertical-align:25.788000px;}
.vc{vertical-align:27.030000px;}
.v16{vertical-align:41.502000px;}
.v7{vertical-align:44.316000px;}
.ve{vertical-align:52.284000px;}
.v12{vertical-align:54.126000px;}
.va{vertical-align:55.818000px;}
.v11{vertical-align:61.860000px;}
.v9{vertical-align:68.070000px;}
.v14{vertical-align:89.214000px;}
.v8{vertical-align:95.160000px;}
.v13{vertical-align:137.226000px;}
.ls17{letter-spacing:-1.152000px;}
.ls14{letter-spacing:-0.504000px;}
.ls13{letter-spacing:-0.450000px;}
.ls11{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.270000px;}
.ls10{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.096000px;}
.ls15{letter-spacing:0.000000px;}
.ls101{letter-spacing:0.000563px;}
.lsfe{letter-spacing:0.000598px;}
.ls10a{letter-spacing:0.000872px;}
.ls103{letter-spacing:0.002369px;}
.lsef{letter-spacing:0.002700px;}
.ls0{letter-spacing:0.072000px;}
.ls118{letter-spacing:0.081832px;}
.ls114{letter-spacing:0.083789px;}
.lsf{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.162000px;}
.lsd{letter-spacing:0.186000px;}
.ls11a{letter-spacing:0.188822px;}
.ls112{letter-spacing:0.191482px;}
.lsc{letter-spacing:0.192000px;}
.ls2{letter-spacing:0.204000px;}
.ls107{letter-spacing:0.209949px;}
.ls105{letter-spacing:0.211755px;}
.ls16{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.228000px;}
.lsb{letter-spacing:0.234000px;}
.ls115{letter-spacing:0.244986px;}
.ls117{letter-spacing:0.246943px;}
.ls110{letter-spacing:0.248437px;}
.ls10e{letter-spacing:0.250421px;}
.lsa{letter-spacing:0.252000px;}
.ls9{letter-spacing:0.258000px;}
.ls104{letter-spacing:0.271084px;}
.lsff{letter-spacing:0.273453px;}
.ls1{letter-spacing:0.288000px;}
.ls9f{letter-spacing:0.399782px;}
.lsfa{letter-spacing:0.413675px;}
.ls66{letter-spacing:0.423242px;}
.ls8{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.648000px;}
.lsf7{letter-spacing:0.725675px;}
.ls37{letter-spacing:0.735782px;}
.ls61{letter-spacing:0.739542px;}
.lsf5{letter-spacing:0.747634px;}
.lsf9{letter-spacing:0.749108px;}
.lsc0{letter-spacing:0.783084px;}
.ls34{letter-spacing:0.786984px;}
.ls5c{letter-spacing:0.789084px;}
.ls71{letter-spacing:0.791700px;}
.ls2d{letter-spacing:0.792984px;}
.ls6b{letter-spacing:0.795746px;}
.ls5{letter-spacing:0.810000px;}
.ls5d{letter-spacing:0.812700px;}
.ls93{letter-spacing:0.813782px;}
.lsa8{letter-spacing:0.815967px;}
.ls22{letter-spacing:0.815971px;}
.ls4c{letter-spacing:0.817610px;}
.ls7e{letter-spacing:0.818158px;}
.ls39{letter-spacing:0.818700px;}
.ls91{letter-spacing:0.819227px;}
.ls8e{letter-spacing:0.821967px;}
.ls21{letter-spacing:0.939227px;}
.ls74{letter-spacing:0.939242px;}
.ls2c{letter-spacing:0.948984px;}
.ls95{letter-spacing:0.978512px;}
.lsa3{letter-spacing:0.980700px;}
.lsbe{letter-spacing:0.984512px;}
.ls9d{letter-spacing:0.986700px;}
.ls3d{letter-spacing:1.076700px;}
.ls4e{letter-spacing:1.077242px;}
.ls4{letter-spacing:1.080000px;}
.ls49{letter-spacing:1.082700px;}
.ls3b{letter-spacing:1.083242px;}
.lse3{letter-spacing:1.195515px;}
.ls36{letter-spacing:1.215782px;}
.ls18{letter-spacing:1.296000px;}
.ls5e{letter-spacing:1.297542px;}
.ls8b{letter-spacing:1.419782px;}
.ls108{letter-spacing:1.471633px;}
.lsc7{letter-spacing:1.555542px;}
.ls40{letter-spacing:1.633610px;}
.ls60{letter-spacing:1.634690px;}
.lsbd{letter-spacing:1.634700px;}
.ls64{letter-spacing:1.635242px;}
.ls9c{letter-spacing:1.635779px;}
.lse2{letter-spacing:1.652158px;}
.ls7a{letter-spacing:1.673700px;}
.ls106{letter-spacing:1.889116px;}
.ls6c{letter-spacing:2.007368px;}
.ls77{letter-spacing:2.126700px;}
.lsb3{letter-spacing:2.288700px;}
.lsd5{letter-spacing:2.290321px;}
.lsb6{letter-spacing:2.294700px;}
.ls6d{letter-spacing:2.297700px;}
.ls70{letter-spacing:2.301746px;}
.ls11b{letter-spacing:2.577867px;}
.ls113{letter-spacing:2.612191px;}
.ls54{letter-spacing:2.713621px;}
.ls52{letter-spacing:2.719621px;}
.lsed{letter-spacing:2.721084px;}
.ls3c{letter-spacing:2.749610px;}
.lsb7{letter-spacing:2.940512px;}
.lsb4{letter-spacing:2.946512px;}
.ls1f{letter-spacing:2.988600px;}
.lsf6{letter-spacing:2.989200px;}
.ls4f{letter-spacing:3.086700px;}
.ls44{letter-spacing:3.087242px;}
.ls45{letter-spacing:3.092700px;}
.ls58{letter-spacing:3.093242px;}
.lsdf{letter-spacing:3.267781px;}
.ls1b{letter-spacing:3.557845px;}
.ls9e{letter-spacing:3.561779px;}
.lsa4{letter-spacing:3.567779px;}
.ls59{letter-spacing:3.583873px;}
.ls1a{letter-spacing:3.584074px;}
.ls1c{letter-spacing:3.586963px;}
.ls1e{letter-spacing:3.587290px;}
.ls1d{letter-spacing:3.590074px;}
.ls62{letter-spacing:3.803700px;}
.ls94{letter-spacing:3.809700px;}
.ls2f{letter-spacing:4.009621px;}
.ls50{letter-spacing:4.405873px;}
.lsd9{letter-spacing:4.407746px;}
.ls26{letter-spacing:4.483621px;}
.ls55{letter-spacing:4.741873px;}
.ls6a{letter-spacing:4.803368px;}
.lsdc{letter-spacing:4.885573px;}
.ls92{letter-spacing:5.117700px;}
.ls5b{letter-spacing:7.994700px;}
.ls63{letter-spacing:8.184984px;}
.ls5f{letter-spacing:8.367746px;}
.ls69{letter-spacing:8.574513px;}
.ls47{letter-spacing:8.775084px;}
.ls7c{letter-spacing:8.800869px;}
.ls9b{letter-spacing:11.261700px;}
.lsa2{letter-spacing:11.267700px;}
.ls72{letter-spacing:13.243363px;}
.lse8{letter-spacing:13.467084px;}
.ls24{letter-spacing:13.677084px;}
.ls48{letter-spacing:13.807610px;}
.ls3a{letter-spacing:13.843610px;}
.lsea{letter-spacing:13.917084px;}
.ls116{letter-spacing:14.188149px;}
.ls119{letter-spacing:14.190107px;}
.ls4a{letter-spacing:14.331084px;}
.ls7d{letter-spacing:14.360158px;}
.lsda{letter-spacing:14.361241px;}
.ls111{letter-spacing:14.389974px;}
.lse7{letter-spacing:14.968321px;}
.ls10f{letter-spacing:15.000221px;}
.ls2b{letter-spacing:15.315746px;}
.lse9{letter-spacing:15.412321px;}
.ls100{letter-spacing:15.525360px;}
.ls102{letter-spacing:15.527166px;}
.ls33{letter-spacing:15.793573px;}
.lsdb{letter-spacing:15.969084px;}
.ls4d{letter-spacing:16.013700px;}
.ls87{letter-spacing:16.298195px;}
.ls25{letter-spacing:16.363650px;}
.lsde{letter-spacing:16.560014px;}
.lsd6{letter-spacing:16.625468px;}
.lsee{letter-spacing:16.756378px;}
.ls43{letter-spacing:16.945873px;}
.lsfc{letter-spacing:17.129108px;}
.ls56{letter-spacing:17.131873px;}
.ls10c{letter-spacing:17.183967px;}
.ls38{letter-spacing:17.183978px;}
.lsec{letter-spacing:17.836321px;}
.lsb9{letter-spacing:17.840161px;}
.lseb{letter-spacing:17.848321px;}
.ls2a{letter-spacing:18.002700px;}
.ls68{letter-spacing:18.899700px;}
.lsce{letter-spacing:18.963084px;}
.ls3e{letter-spacing:18.969084px;}
.lsb0{letter-spacing:18.975084px;}
.lse1{letter-spacing:18.987084px;}
.lsbb{letter-spacing:18.999084px;}
.lse6{letter-spacing:19.035084px;}
.ls89{letter-spacing:19.047084px;}
.ls82{letter-spacing:19.053084px;}
.lsc9{letter-spacing:19.089084px;}
.ls23{letter-spacing:19.131084px;}
.lsfd{letter-spacing:19.142158px;}
.lsa6{letter-spacing:19.491084px;}
.lsac{letter-spacing:19.623084px;}
.ls20{letter-spacing:19.785084px;}
.ls46{letter-spacing:19.791084px;}
.ls76{letter-spacing:19.815793px;}
.lse4{letter-spacing:19.817967px;}
.lsbc{letter-spacing:19.833084px;}
.lsf4{letter-spacing:19.947028px;}
.ls10b{letter-spacing:19.951613px;}
.lsf2{letter-spacing:19.953028px;}
.lsaa{letter-spacing:20.079084px;}
.ls8d{letter-spacing:20.199084px;}
.lsb2{letter-spacing:20.217084px;}
.lsb5{letter-spacing:20.470321px;}
.lsb8{letter-spacing:20.476321px;}
.lse0{letter-spacing:20.488321px;}
.lsba{letter-spacing:20.500321px;}
.lsbf{letter-spacing:20.516161px;}
.ls5a{letter-spacing:20.685084px;}
.lsd2{letter-spacing:20.733084px;}
.ls97{letter-spacing:20.943084px;}
.ls6f{letter-spacing:21.285084px;}
.lsd8{letter-spacing:21.423084px;}
.ls42{letter-spacing:21.507084px;}
.ls81{letter-spacing:21.539428px;}
.lsd1{letter-spacing:21.584158px;}
.ls90{letter-spacing:21.759084px;}
.lsf3{letter-spacing:21.911740px;}
.lsa7{letter-spacing:21.983700px;}
.ls10d{letter-spacing:21.989700px;}
.lsaf{letter-spacing:22.001700px;}
.lsc6{letter-spacing:22.041084px;}
.lsc8{letter-spacing:22.103700px;}
.ls84{letter-spacing:22.497084px;}
.lsa5{letter-spacing:22.511700px;}
.ls98{letter-spacing:22.581028px;}
.ls99{letter-spacing:22.585613px;}
.ls27{letter-spacing:22.587746px;}
.lsab{letter-spacing:22.643700px;}
.lse5{letter-spacing:22.647028px;}
.lsc4{letter-spacing:22.863084px;}
.ls30{letter-spacing:23.059573px;}
.ls75{letter-spacing:23.061787px;}
.ls78{letter-spacing:23.063700px;}
.lsa9{letter-spacing:23.099700px;}
.lsb1{letter-spacing:23.237700px;}
.lsd0{letter-spacing:23.367084px;}
.ls73{letter-spacing:23.457746px;}
.lsc5{letter-spacing:23.552161px;}
.lsa0{letter-spacing:23.731613px;}
.lsd4{letter-spacing:23.753700px;}
.ls8c{letter-spacing:23.823787px;}
.ls8f{letter-spacing:23.963700px;}
.lsd7{letter-spacing:24.067573px;}
.lscf{letter-spacing:24.209967px;}
.ls32{letter-spacing:24.350700px;}
.lsd3{letter-spacing:24.351028px;}
.ls29{letter-spacing:24.356700px;}
.ls6e{letter-spacing:24.463363px;}
.ls96{letter-spacing:24.561028px;}
.ls8a{letter-spacing:24.617740px;}
.lscd{letter-spacing:24.621084px;}
.lscb{letter-spacing:24.627084px;}
.ls88{letter-spacing:24.629740px;}
.ls109{letter-spacing:25.340490px;}
.ls83{letter-spacing:25.523700px;}
.lsc3{letter-spacing:25.605084px;}
.lsca{letter-spacing:26.122321px;}
.lscc{letter-spacing:26.128321px;}
.ls28{letter-spacing:26.139084px;}
.ls31{letter-spacing:26.145084px;}
.ls79{letter-spacing:26.301084px;}
.lsc1{letter-spacing:26.421084px;}
.ls57{letter-spacing:26.541084px;}
.ls67{letter-spacing:27.015084px;}
.lsc2{letter-spacing:27.104161px;}
.lsae{letter-spacing:27.249084px;}
.ls86{letter-spacing:27.645084px;}
.ls53{letter-spacing:28.082700px;}
.ls51{letter-spacing:30.009084px;}
.lsad{letter-spacing:30.263700px;}
.ls85{letter-spacing:30.659700px;}
.ls41{letter-spacing:37.573618px;}
.ls4b{letter-spacing:38.990700px;}
.ls7b{letter-spacing:41.435428px;}
.ls7f{letter-spacing:66.377700px;}
.lsf8{letter-spacing:108.268514px;}
.lsfb{letter-spacing:108.550514px;}
.lsa1{letter-spacing:111.027084px;}
.ls9a{letter-spacing:112.035084px;}
.lsf1{letter-spacing:473.675700px;}
.lsf0{letter-spacing:552.761700px;}
.ls65{letter-spacing:1629.504984px;}
.lsdd{letter-spacing:1708.905241px;}
.ls80{letter-spacing:1798.252869px;}
.ls35{letter-spacing:1838.273700px;}
.ls2e{letter-spacing:1859.501700px;}
.ls3f{letter-spacing:2195.102700px;}
.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;}
}
.ws1{word-spacing:-24.296892px;}
.ws2{word-spacing:-24.026892px;}
.ws4{word-spacing:-22.946892px;}
.ws0{word-spacing:-22.856892px;}
.ws5{word-spacing:-22.766892px;}
.wsa3{word-spacing:-21.519300px;}
.ws11{word-spacing:-21.312000px;}
.ws9{word-spacing:-20.520000px;}
.ws8{word-spacing:-20.304000px;}
.wsd{word-spacing:-20.250000px;}
.ws6{word-spacing:-20.244000px;}
.ws12{word-spacing:-20.208000px;}
.ws7{word-spacing:-20.178000px;}
.ws10{word-spacing:-19.872000px;}
.wsf{word-spacing:-18.864000px;}
.ws1e{word-spacing:-16.363650px;}
.ws2b{word-spacing:-14.943900px;}
.ws20{word-spacing:-14.346150px;}
.ws37{word-spacing:-3.207275px;}
.ws49{word-spacing:-3.076366px;}
.ws3{word-spacing:-2.981364px;}
.ws56{word-spacing:-2.880002px;}
.wsbc{word-spacing:-2.487275px;}
.ws4a{word-spacing:-2.421820px;}
.wsb{word-spacing:-2.346000px;}
.ws5b{word-spacing:-2.290911px;}
.wsaa{word-spacing:-2.225456px;}
.ws66{word-spacing:-1.963638px;}
.ws13{word-spacing:-1.944000px;}
.ws9e{word-spacing:-1.832729px;}
.wse{word-spacing:-1.728000px;}
.wsa{word-spacing:-1.656000px;}
.ws34{word-spacing:-1.636365px;}
.ws7f{word-spacing:-1.570910px;}
.ws80{word-spacing:-1.505456px;}
.ws86{word-spacing:-1.440001px;}
.ws93{word-spacing:-1.374547px;}
.ws6a{word-spacing:-1.309092px;}
.ws7c{word-spacing:-1.243637px;}
.ws94{word-spacing:-1.243336px;}
.ws9f{word-spacing:-1.178183px;}
.ws45{word-spacing:-1.112728px;}
.ws3f{word-spacing:-1.047274px;}
.wsa9{word-spacing:-0.916364px;}
.ws18{word-spacing:-0.864000px;}
.ws9b{word-spacing:-0.785455px;}
.wsac{word-spacing:-0.654546px;}
.ws70{word-spacing:-0.589091px;}
.wsc{word-spacing:-0.540000px;}
.ws23{word-spacing:-0.537980px;}
.ws71{word-spacing:-0.523637px;}
.ws79{word-spacing:-0.458182px;}
.ws61{word-spacing:-0.392728px;}
.ws2e{word-spacing:-0.327273px;}
.ws3e{word-spacing:-0.261818px;}
.ws29{word-spacing:-0.239102px;}
.wsb0{word-spacing:-0.225271px;}
.ws2f{word-spacing:-0.196364px;}
.ws14{word-spacing:-0.186000px;}
.ws16{word-spacing:-0.144000px;}
.ws39{word-spacing:-0.130909px;}
.ws25{word-spacing:-0.119551px;}
.wsdf{word-spacing:-0.071271px;}
.ws40{word-spacing:-0.065455px;}
.wsdb{word-spacing:-0.062919px;}
.ws17{word-spacing:-0.060000px;}
.wsc9{word-spacing:-0.048870px;}
.ws51{word-spacing:-0.047821px;}
.wsdc{word-spacing:-0.047189px;}
.wscc{word-spacing:-0.046146px;}
.wse4{word-spacing:-0.040558px;}
.wsf3{word-spacing:-0.039995px;}
.wsd0{word-spacing:-0.036917px;}
.ws21{word-spacing:-0.014555px;}
.ws1c{word-spacing:-0.012098px;}
.wsb7{word-spacing:-0.004639px;}
.wsa7{word-spacing:-0.003123px;}
.wse2{word-spacing:-0.002371px;}
.wsb4{word-spacing:-0.001936px;}
.ws98{word-spacing:-0.000092px;}
.ws1b{word-spacing:0.000000px;}
.wsb3{word-spacing:0.000253px;}
.wsab{word-spacing:0.003295px;}
.ws1f{word-spacing:0.020888px;}
.ws30{word-spacing:0.065455px;}
.ws15{word-spacing:0.072000px;}
.ws24{word-spacing:0.119551px;}
.ws42{word-spacing:0.130909px;}
.ws19{word-spacing:0.162000px;}
.ws22{word-spacing:0.179327px;}
.ws31{word-spacing:0.196364px;}
.ws2c{word-spacing:0.239102px;}
.ws36{word-spacing:0.261818px;}
.ws32{word-spacing:0.327273px;}
.ws5d{word-spacing:0.392728px;}
.ws89{word-spacing:0.458182px;}
.ws26{word-spacing:0.478205px;}
.wsb8{word-spacing:0.523637px;}
.ws1a{word-spacing:0.540000px;}
.ws63{word-spacing:0.589091px;}
.ws6f{word-spacing:0.654546px;}
.ws38{word-spacing:0.720001px;}
.ws2a{word-spacing:0.777083px;}
.ws9c{word-spacing:0.785455px;}
.ws91{word-spacing:0.850910px;}
.ws8b{word-spacing:0.916364px;}
.ws6d{word-spacing:0.981819px;}
.wsa8{word-spacing:1.047274px;}
.ws47{word-spacing:1.100648px;}
.ws46{word-spacing:1.112728px;}
.wsba{word-spacing:1.172003px;}
.ws8a{word-spacing:1.178183px;}
.ws62{word-spacing:1.243637px;}
.ws27{word-spacing:1.255288px;}
.ws84{word-spacing:1.309092px;}
.ws33{word-spacing:1.374547px;}
.wsa5{word-spacing:1.440001px;}
.ws96{word-spacing:1.505456px;}
.ws6b{word-spacing:1.570910px;}
.wsa1{word-spacing:1.636365px;}
.ws69{word-spacing:1.701820px;}
.wsa2{word-spacing:1.767274px;}
.ws5e{word-spacing:1.832729px;}
.ws100{word-spacing:1.898183px;}
.wsa0{word-spacing:1.929629px;}
.ws6e{word-spacing:1.963638px;}
.ws53{word-spacing:2.029093px;}
.ws81{word-spacing:2.094547px;}
.ws54{word-spacing:2.160002px;}
.ws3b{word-spacing:2.225456px;}
.ws92{word-spacing:2.290911px;}
.ws50{word-spacing:2.487275px;}
.ws90{word-spacing:2.552729px;}
.ws73{word-spacing:2.618184px;}
.ws64{word-spacing:2.683639px;}
.ws74{word-spacing:2.749093px;}
.ws8f{word-spacing:2.880002px;}
.ws48{word-spacing:3.207275px;}
.wsad{word-spacing:3.403639px;}
.wsb1{word-spacing:3.469094px;}
.ws72{word-spacing:3.534548px;}
.ws65{word-spacing:3.600003px;}
.ws43{word-spacing:3.665458px;}
.ws75{word-spacing:3.730912px;}
.ws78{word-spacing:3.796367px;}
.ws6c{word-spacing:3.861821px;}
.wsa6{word-spacing:3.927276px;}
.ws7d{word-spacing:4.058185px;}
.ws3a{word-spacing:4.189094px;}
.ws5c{word-spacing:4.254549px;}
.ws77{word-spacing:4.320004px;}
.wsae{word-spacing:4.385458px;}
.wsaf{word-spacing:4.450913px;}
.ws5f{word-spacing:4.516367px;}
.ws60{word-spacing:4.581822px;}
.wsa4{word-spacing:4.647277px;}
.ws9a{word-spacing:4.712731px;}
.ws87{word-spacing:4.909095px;}
.ws28{word-spacing:5.021150px;}
.wsc8{word-spacing:5.105459px;}
.ws3d{word-spacing:5.301823px;}
.ws1d{word-spacing:5.344687px;}
.ws3c{word-spacing:5.367277px;}
.ws44{word-spacing:5.563641px;}
.ws35{word-spacing:6.021823px;}
.ws41{word-spacing:6.218187px;}
.ws7a{word-spacing:6.414551px;}
.wsb5{word-spacing:6.610915px;}
.ws68{word-spacing:6.807278px;}
.wsb9{word-spacing:6.872733px;}
.ws99{word-spacing:7.396370px;}
.ws7b{word-spacing:7.920007px;}
.wsb2{word-spacing:7.985461px;}
.wsbb{word-spacing:8.705462px;}
.wsb6{word-spacing:8.901826px;}
.ws76{word-spacing:8.967280px;}
.wse5{word-spacing:11.647228px;}
.wscb{word-spacing:12.060547px;}
.wsf4{word-spacing:12.087256px;}
.wsed{word-spacing:12.257505px;}
.wscd{word-spacing:12.456687px;}
.wsd7{word-spacing:12.456733px;}
.ws67{word-spacing:12.479406px;}
.wsd3{word-spacing:13.012243px;}
.wsf7{word-spacing:13.391377px;}
.wsf5{word-spacing:13.647572px;}
.wse8{word-spacing:14.192212px;}
.wsfc{word-spacing:14.251372px;}
.wse6{word-spacing:14.452022px;}
.wsf1{word-spacing:14.452063px;}
.wsee{word-spacing:14.452103px;}
.wscf{word-spacing:15.053460px;}
.wsd2{word-spacing:15.055232px;}
.wse9{word-spacing:15.133632px;}
.wsdd{word-spacing:15.253836px;}
.wsfb{word-spacing:15.303887px;}
.wsf6{word-spacing:15.304009px;}
.wsfa{word-spacing:15.306016px;}
.wse7{word-spacing:15.519566px;}
.wsec{word-spacing:15.521478px;}
.wseb{word-spacing:15.521602px;}
.wsf8{word-spacing:15.525230px;}
.ws9d{word-spacing:15.840013px;}
.ws8c{word-spacing:16.267548px;}
.wse1{word-spacing:16.296395px;}
.wse3{word-spacing:16.299695px;}
.ws97{word-spacing:16.300295px;}
.ws95{word-spacing:16.301945px;}
.ws5a{word-spacing:16.302395px;}
.ws4e{word-spacing:16.488796px;}
.ws57{word-spacing:17.079946px;}
.wsce{word-spacing:17.176480px;}
.wsd1{word-spacing:17.176537px;}
.ws52{word-spacing:17.672742px;}
.ws82{word-spacing:18.976295px;}
.wsda{word-spacing:19.132510px;}
.ws4c{word-spacing:19.306283px;}
.ws88{word-spacing:19.754123px;}
.ws8e{word-spacing:21.202840px;}
.ws8d{word-spacing:21.205565px;}
.ws4d{word-spacing:21.940283px;}
.ws4b{word-spacing:21.940839px;}
.ws85{word-spacing:22.012295px;}
.ws58{word-spacing:22.778869px;}
.ws59{word-spacing:23.409946px;}
.ws83{word-spacing:25.570295px;}
.ws55{word-spacing:27.243946px;}
.ws7e{word-spacing:27.883660px;}
.wsc5{word-spacing:56.786820px;}
.ws2d{word-spacing:64.557900px;}
.wsc6{word-spacing:71.730720px;}
.wsf0{word-spacing:79.888478px;}
.wsef{word-spacing:79.892534px;}
.wsc7{word-spacing:83.805391px;}
.wsbf{word-spacing:87.250982px;}
.wsc4{word-spacing:87.940876px;}
.wsd9{word-spacing:90.075980px;}
.wsd5{word-spacing:93.410272px;}
.wsd6{word-spacing:93.412118px;}
.wsd8{word-spacing:93.415810px;}
.wsd4{word-spacing:93.417656px;}
.wsc2{word-spacing:95.970452px;}
.wsfd{word-spacing:100.090084px;}
.wsfe{word-spacing:100.094083px;}
.wsff{word-spacing:100.096083px;}
.wsc3{word-spacing:100.496134px;}
.wsf2{word-spacing:144.718955px;}
.wsca{word-spacing:166.341595px;}
.wsf9{word-spacing:231.693962px;}
.wsde{word-spacing:233.408325px;}
.wsea{word-spacing:234.951047px;}
.wse0{word-spacing:258.158078px;}
.wsc0{word-spacing:284.138419px;}
.wsc1{word-spacing:404.313064px;}
.wsbe{word-spacing:462.502204px;}
.wsbd{word-spacing:678.764202px;}
.ws4f{word-spacing:1909.306839px;}
._d{margin-left:-11.346380px;}
._13{margin-left:-9.281464px;}
._c{margin-left:-8.263392px;}
._12{margin-left:-6.741824px;}
._10{margin-left:-5.559131px;}
._e{margin-left:-4.131696px;}
._2{margin-left:-2.664000px;}
._0{margin-left:-1.152000px;}
._3{width:1.586766px;}
._4{width:2.588934px;}
._f{width:3.619538px;}
._19{width:4.960606px;}
._11{width:14.107042px;}
._1e{width:15.159284px;}
._16{width:16.420093px;}
._a{width:17.496000px;}
._b{width:18.576000px;}
._7{width:19.800000px;}
._8{width:21.384000px;}
._5{width:22.439622px;}
._6{width:24.461154px;}
._21{width:25.762930px;}
._18{width:27.342424px;}
._1c{width:29.827659px;}
._1f{width:32.092408px;}
._14{width:33.381846px;}
._1b{width:34.769226px;}
._15{width:36.916394px;}
._22{width:38.290941px;}
._9{width:39.816000px;}
._2d{width:40.904615px;}
._20{width:43.108399px;}
._32{width:46.014584px;}
._43{width:48.501859px;}
._3a{width:50.989133px;}
._33{width:61.396415px;}
._1a{width:65.454600px;}
._17{width:71.731200px;}
._1d{width:86.077200px;}
._30{width:98.749291px;}
._38{width:104.490486px;}
._31{width:106.818997px;}
._28{width:117.181098px;}
._37{width:118.919052px;}
._36{width:133.311343px;}
._2e{width:137.127387px;}
._34{width:155.179599px;}
._26{width:186.283792px;}
._2f{width:200.749258px;}
._35{width:208.222072px;}
._39{width:217.136487px;}
._3f{width:230.921262px;}
._3b{width:234.698158px;}
._42{width:253.876616px;}
._3e{width:256.846361px;}
._41{width:266.173991px;}
._3d{width:269.302696px;}
._40{width:278.497441px;}
._3c{width:281.813970px;}
._2c{width:361.505756px;}
._2b{width:419.760350px;}
._24{width:435.273090px;}
._2a{width:443.389460px;}
._25{width:447.421401px;}
._27{width:465.316751px;}
._29{width:650.604509px;}
._23{width:846.684897px;}
._1{width:1311.978000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs20{font-size:29.996044px;}
.fs1d{font-size:30.418539px;}
.fs13{font-size:32.302408px;}
.fs10{font-size:34.209000px;}
.fsc{font-size:35.865600px;}
.fs11{font-size:36.652850px;}
.fs15{font-size:36.917025px;}
.fs1f{font-size:39.994759px;}
.fs1c{font-size:40.558085px;}
.fs8{font-size:41.842800px;}
.fs17{font-size:44.042894px;}
.fse{font-size:45.429600px;}
.fs12{font-size:46.146304px;}
.fs18{font-size:47.189267px;}
.fsa{font-size:47.820600px;}
.fs21{font-size:47.993811px;}
.fs1e{font-size:48.669804px;}
.fsf{font-size:48.870385px;}
.fsd{font-size:49.829400px;}
.fs1a{font-size:49.889170px;}
.fs1b{font-size:53.453194px;}
.fs5{font-size:53.798400px;}
.fs14{font-size:55.375769px;}
.fs4{font-size:57.384600px;}
.fs7{font-size:59.775600px;}
.fs16{font-size:62.918917px;}
.fs6{font-size:65.454600px;}
.fsb{font-size:68.203800px;}
.fs19{font-size:71.270806px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.514000px;}
.fs9{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.960000px;}
.y18{bottom:3.961500px;}
.yd{bottom:4.681500px;}
.ya{bottom:5.041500px;}
.y23b{bottom:6.864193px;}
.y273{bottom:9.644054px;}
.y285{bottom:10.154372px;}
.y268{bottom:12.603046px;}
.y26c{bottom:12.742247px;}
.y26a{bottom:12.742293px;}
.y260{bottom:12.742351px;}
.y2ba{bottom:12.781427px;}
.y2a5{bottom:12.973336px;}
.y23a{bottom:20.790326px;}
.y2b4{bottom:24.336781px;}
.y269{bottom:28.304106px;}
.y25f{bottom:28.304164px;}
.y26b{bottom:28.304523px;}
.y272{bottom:28.469315px;}
.y23c{bottom:28.673914px;}
.y284{bottom:30.463742px;}
.y2a0{bottom:32.794261px;}
.y274{bottom:38.633915px;}
.y244{bottom:41.787229px;}
.y242{bottom:41.844744px;}
.y2b5{bottom:53.122234px;}
.y261{bottom:53.239240px;}
.y243{bottom:54.606100px;}
.y241{bottom:54.663615px;}
.y245{bottom:55.162858px;}
.y280{bottom:55.502017px;}
.y23d{bottom:58.106074px;}
.y28d{bottom:61.084957px;}
.y2b8{bottom:69.199850px;}
.y2a3{bottom:70.186362px;}
.y275{bottom:71.528092px;}
.y27f{bottom:72.005866px;}
.y262{bottom:72.195339px;}
.y266{bottom:73.010954px;}
.y3b{bottom:73.669500px;}
.y2a1{bottom:76.153211px;}
.y240{bottom:77.971924px;}
.y246{bottom:81.651802px;}
.y2b9{bottom:82.217052px;}
.y267{bottom:82.619508px;}
.y2a4{bottom:83.203487px;}
.y286{bottom:86.109665px;}
.y23e{bottom:87.538234px;}
.y27e{bottom:88.489348px;}
.y263{bottom:91.141479px;}
.y2b6{bottom:91.731244px;}
.y276{bottom:104.421638px;}
.y247{bottom:108.140501px;}
.y2a2{bottom:109.917012px;}
.y264{bottom:110.097115px;}
.y7{bottom:116.281500px;}
.y23f{bottom:116.970394px;}
.y68{bottom:118.501500px;}
.y8b{bottom:118.600500px;}
.y3a{bottom:121.072500px;}
.y265{bottom:129.052287px;}
.y8a{bottom:129.825000px;}
.y287{bottom:130.258537px;}
.y2b7{bottom:130.352926px;}
.y277{bottom:137.315500px;}
.y67{bottom:139.842000px;}
.y282{bottom:140.760000px;}
.y6{bottom:141.481500px;}
.y27d{bottom:150.738666px;}
.y233{bottom:152.289354px;}
.y2bc{bottom:156.289500px;}
.y66{bottom:161.182500px;}
.y39{bottom:163.947000px;}
.y22c{bottom:169.161000px;}
.y234{bottom:169.948650px;}
.y278{bottom:170.193889px;}
.y161{bottom:171.687000px;}
.y258{bottom:171.900094px;}
.y2af{bottom:173.594877px;}
.y288{bottom:174.408124px;}
.y26e{bottom:174.763500px;}
.y1e8{bottom:175.308000px;}
.y2bb{bottom:177.630000px;}
.y65{bottom:182.521500px;}
.y38{bottom:182.776500px;}
.y239{bottom:183.683658px;}
.y2b2{bottom:184.361230px;}
.y29e{bottom:186.970683px;}
.y28f{bottom:187.176000px;}
.y235{bottom:187.607946px;}
.y25d{bottom:188.787453px;}
.y22b{bottom:190.501500px;}
.y28c{bottom:190.759654px;}
.y259{bottom:190.856193px;}
.y231{bottom:190.975500px;}
.yb6{bottom:192.786000px;}
.y160{bottom:193.027500px;}
.y1c7{bottom:194.496000px;}
.y26d{bottom:196.102500px;}
.y208{bottom:196.134000px;}
.y1e7{bottom:196.648500px;}
.y29c{bottom:198.325003px;}
.y25e{bottom:201.279609px;}
.y37{bottom:201.606000px;}
.y89{bottom:202.227000px;}
.y2b3{bottom:202.690970px;}
.y279{bottom:203.087119px;}
.y64{bottom:203.862000px;}
.y236{bottom:205.267242px;}
.y29f{bottom:205.375260px;}
.y293{bottom:205.815000px;}
.y1a{bottom:207.718500px;}
.y25a{bottom:209.801059px;}
.y2b0{bottom:212.204390px;}
.y230{bottom:212.314500px;}
.y1a4{bottom:212.986500px;}
.y2a6{bottom:213.913500px;}
.yb5{bottom:214.125000px;}
.y188{bottom:214.282500px;}
.y15f{bottom:214.366500px;}
.y1c6{bottom:215.836500px;}
.yd5{bottom:217.321500px;}
.y207{bottom:217.473000px;}
.y1e6{bottom:217.989000px;}
.y289{bottom:218.556638px;}
.y237{bottom:222.926293px;}
.y88{bottom:223.566000px;}
.y63{bottom:225.202500px;}
.y292{bottom:227.155500px;}
.yf8{bottom:228.348000px;}
.y25b{bottom:228.757158px;}
.y19{bottom:229.318500px;}
.y29d{bottom:232.088804px;}
.y24a{bottom:232.387500px;}
.y22f{bottom:233.655000px;}
.yb4{bottom:235.465500px;}
.y11f{bottom:235.584000px;}
.y187{bottom:235.621500px;}
.y27a{bottom:235.981297px;}
.y206{bottom:238.813500px;}
.y36{bottom:239.265000px;}
.y238{bottom:240.585589px;}
.y87{bottom:244.906500px;}
.y15e{bottom:246.213000px;}
.y13e{bottom:246.541500px;}
.y17{bottom:246.958500px;}
.y25c{bottom:247.713719px;}
.y1c5{bottom:249.150000px;}
.y2b1{bottom:250.826071px;}
.y1e5{bottom:253.455000px;}
.y22e{bottom:254.995500px;}
.yb3{bottom:256.806000px;}
.y11e{bottom:256.924500px;}
.y186{bottom:256.962000px;}
.y62{bottom:257.802000px;}
.y35{bottom:258.094500px;}
.y28a{bottom:262.706225px;}
.y86{bottom:266.247000px;}
.y15d{bottom:267.552000px;}
.y13d{bottom:267.882000px;}
.y27b{bottom:268.874527px;}
.y1c4{bottom:270.490500px;}
.y256{bottom:272.478039px;}
.y254{bottom:272.478502px;}
.y205{bottom:273.765000px;}
.y1e4{bottom:274.795500px;}
.y34{bottom:276.924000px;}
.yb2{bottom:278.145000px;}
.y11d{bottom:278.265000px;}
.y185{bottom:278.302500px;}
.y61{bottom:279.142500px;}
.y1a3{bottom:284.977500px;}
.y255{bottom:285.401383px;}
.y253{bottom:285.401847px;}
.y85{bottom:287.586000px;}
.y15c{bottom:288.892500px;}
.y13c{bottom:289.222500px;}
.y24b{bottom:290.561596px;}
.yf7{bottom:291.390000px;}
.y1c3{bottom:291.831000px;}
.y2a7{bottom:294.070696px;}
.y204{bottom:295.105500px;}
.y33{bottom:295.753500px;}
.yb1{bottom:299.485500px;}
.y11c{bottom:299.604000px;}
.y184{bottom:299.641500px;}
.y60{bottom:300.483000px;}
.y27c{bottom:301.768705px;}
.y2aa{bottom:305.721470px;}
.y1a2{bottom:306.318000px;}
.y28b{bottom:306.855097px;}
.y84{bottom:308.926500px;}
.y24c{bottom:309.518158px;}
.y297{bottom:310.040282px;}
.y15b{bottom:310.233000px;}
.y1e3{bottom:310.261500px;}
.y250{bottom:310.333032px;}
.y13b{bottom:310.561500px;}
.yf6{bottom:312.730500px;}
.y32{bottom:314.583000px;}
.y203{bottom:316.444500px;}
.y251{bottom:319.940672px;}
.y295{bottom:320.496453px;}
.yd4{bottom:320.709000px;}
.yb0{bottom:320.826000px;}
.y11b{bottom:320.944500px;}
.y183{bottom:320.982000px;}
.y5f{bottom:321.823500px;}
.y2ab{bottom:323.165765px;}
.y1c2{bottom:325.144500px;}
.y298{bottom:327.546856px;}
.y1a1{bottom:327.658500px;}
.y24d{bottom:328.462561px;}
.y15a{bottom:331.572000px;}
.y13a{bottom:331.902000px;}
.y2a8{bottom:332.679707px;}
.y31{bottom:333.412500px;}
.yf5{bottom:334.069500px;}
.y291{bottom:335.179500px;}
.yd3{bottom:342.048000px;}
.yaf{bottom:342.165000px;}
.y182{bottom:342.322500px;}
.y5e{bottom:343.162500px;}
.y1e2{bottom:345.729000px;}
.y1c1{bottom:346.485000px;}
.y24e{bottom:347.419123px;}
.y1a0{bottom:348.997500px;}
.y202{bottom:351.396000px;}
.y30{bottom:352.242000px;}
.y159{bottom:352.912500px;}
.y139{bottom:353.242500px;}
.y296{bottom:354.260254px;}
.yf4{bottom:355.410000px;}
.y290{bottom:356.520000px;}
.y83{bottom:357.333000px;}
.yd2{bottom:363.388500px;}
.y181{bottom:363.663000px;}
.y11a{bottom:363.822000px;}
.y5d{bottom:364.503000px;}
.y24f{bottom:366.374758px;}
.y1e1{bottom:367.069500px;}
.y1c0{bottom:367.824000px;}
.y2f{bottom:371.071500px;}
.y2a9{bottom:371.301388px;}
.y201{bottom:372.736500px;}
.y158{bottom:374.253000px;}
.y138{bottom:374.583000px;}
.y11{bottom:375.480000px;}
.yf3{bottom:376.750500px;}
.y19f{bottom:382.755000px;}
.yae{bottom:384.864000px;}
.y5c{bottom:385.843500px;}
.y2e{bottom:389.901000px;}
.y257{bottom:390.226586px;}
.y252{bottom:390.227049px;}
.y180{bottom:395.422500px;}
.y157{bottom:395.593500px;}
.y137{bottom:395.922000px;}
.y29b{bottom:396.931181px;}
.y299{bottom:396.931201px;}
.y10{bottom:397.080000px;}
.yf2{bottom:398.089500px;}
.y2ae{bottom:399.395578px;}
.y2ac{bottom:399.395597px;}
.y1bf{bottom:401.139000px;}
.y1e0{bottom:402.535500px;}
.y19e{bottom:404.095500px;}
.yd1{bottom:404.793000px;}
.y5b{bottom:407.182500px;}
.y200{bottom:407.688000px;}
.y2d{bottom:408.730500px;}
.ye{bottom:414.720000px;}
.yd0{bottom:416.019000px;}
.y29a{bottom:416.524022px;}
.y17f{bottom:416.763000px;}
.y156{bottom:416.932500px;}
.yf1{bottom:419.430000px;}
.y119{bottom:420.019500px;}
.y1be{bottom:422.478000px;}
.y1df{bottom:423.876000px;}
.y19d{bottom:425.436000px;}
.y2ad{bottom:425.907725px;}
.y82{bottom:427.080000px;}
.y2c{bottom:427.560000px;}
.y5a{bottom:428.523000px;}
.y1ff{bottom:429.028500px;}
.y17e{bottom:438.102000px;}
.y155{bottom:438.273000px;}
.y136{bottom:438.514500px;}
.yad{bottom:440.650500px;}
.yf0{bottom:440.770500px;}
.y118{bottom:441.358500px;}
.y1bd{bottom:443.818500px;}
.y281{bottom:445.476000px;}
.y2b{bottom:446.388000px;}
.y19c{bottom:446.775000px;}
.y81{bottom:448.420500px;}
.y59{bottom:449.863500px;}
.y1fe{bottom:450.367500px;}
.y3{bottom:453.958500px;}
.yaa{bottom:458.548500px;}
.y1de{bottom:459.342000px;}
.y17d{bottom:459.442500px;}
.yef{bottom:462.111000px;}
.y117{bottom:462.699000px;}
.ya8{bottom:464.194500px;}
.y2a{bottom:465.217500px;}
.ya9{bottom:468.048000px;}
.y19b{bottom:468.115500px;}
.ycf{bottom:468.951000px;}
.y80{bottom:469.759500px;}
.y58{bottom:471.202500px;}
.yab{bottom:471.619500px;}
.yac{bottom:474.013500px;}
.y1bc{bottom:477.133500px;}
.y1dd{bottom:480.682500px;}
.y17c{bottom:480.783000px;}
.y154{bottom:481.332000px;}
.y271{bottom:481.761000px;}
.yee{bottom:483.450000px;}
.y116{bottom:484.039500px;}
.y29{bottom:484.047000px;}
.y1fd{bottom:485.319000px;}
.y19a{bottom:489.456000px;}
.yce{bottom:490.291500px;}
.y7f{bottom:491.100000px;}
.y135{bottom:494.052000px;}
.y1bb{bottom:498.472500px;}
.ya7{bottom:501.351000px;}
.y1dc{bottom:502.023000px;}
.y17b{bottom:502.122000px;}
.y28{bottom:502.876500px;}
.y57{bottom:503.803500px;}
.yed{bottom:504.790500px;}
.y115{bottom:505.378500px;}
.y1fc{bottom:506.659500px;}
.ycd{bottom:511.632000px;}
.y7e{bottom:512.440500px;}
.ya6{bottom:512.577000px;}
.y134{bottom:515.392500px;}
.y27{bottom:521.706000px;}
.y199{bottom:523.212000px;}
.y17a{bottom:523.462500px;}
.y56{bottom:525.144000px;}
.yec{bottom:526.131000px;}
.y114{bottom:526.719000px;}
.y1fb{bottom:528.000000px;}
.y1ba{bottom:531.787500px;}
.y5{bottom:532.800000px;}
.ycc{bottom:532.971000px;}
.y16{bottom:533.161500px;}
.y1db{bottom:537.489000px;}
.y153{bottom:538.584000px;}
.y226{bottom:540.217500px;}
.y7d{bottom:544.128000px;}
.y198{bottom:544.552500px;}
.y179{bottom:544.803000px;}
.y55{bottom:546.484500px;}
.yeb{bottom:547.470000px;}
.y133{bottom:550.242000px;}
.y1b9{bottom:553.126500px;}
.ya5{bottom:553.324500px;}
.ycb{bottom:554.311500px;}
.y113{bottom:558.441000px;}
.y1da{bottom:558.829500px;}
.y224{bottom:559.047000px;}
.y152{bottom:559.923000px;}
.y1fa{bottom:562.951500px;}
.y7c{bottom:565.468500px;}
.y197{bottom:565.893000px;}
.y178{bottom:566.143500px;}
.y54{bottom:567.823500px;}
.yea{bottom:568.810500px;}
.y132{bottom:571.582500px;}
.y1b8{bottom:574.467000px;}
.ya4{bottom:574.665000px;}
.yca{bottom:575.652000px;}
.y225{bottom:577.876500px;}
.y112{bottom:579.781500px;}
.y1d9{bottom:580.170000px;}
.y151{bottom:581.263500px;}
.y1f9{bottom:584.292000px;}
.y26{bottom:585.166500px;}
.y22a{bottom:585.471000px;}
.y7b{bottom:586.809000px;}
.y177{bottom:587.482500px;}
.y4{bottom:587.878500px;}
.y15{bottom:588.240000px;}
.y53{bottom:589.164000px;}
.ye9{bottom:590.151000px;}
.y131{bottom:592.923000px;}
.yc9{bottom:596.991000px;}
.y223{bottom:597.304500px;}
.y196{bottom:599.650500px;}
.y111{bottom:601.122000px;}
.y150{bottom:602.604000px;}
.ya3{bottom:606.268500px;}
.ya2{bottom:606.505500px;}
.y228{bottom:606.811500px;}
.y1b7{bottom:607.780500px;}
.y7a{bottom:608.148000px;}
.y176{bottom:608.823000px;}
.y52{bottom:610.504500px;}
.y229{bottom:610.779000px;}
.ye8{bottom:611.490000px;}
.y130{bottom:614.262000px;}
.y1d8{bottom:615.636000px;}
.y221{bottom:616.134000px;}
.y1f8{bottom:619.243500px;}
.y195{bottom:620.989500px;}
.y110{bottom:622.462500px;}
.y14f{bottom:623.943000px;}
.ya1{bottom:627.609000px;}
.y227{bottom:628.152000px;}
.y1b6{bottom:629.121000px;}
.y79{bottom:629.488500px;}
.y51{bottom:631.843500px;}
.ye7{bottom:632.830500px;}
.y222{bottom:634.963500px;}
.y1d7{bottom:636.976500px;}
.y175{bottom:640.582500px;}
.y194{bottom:642.330000px;}
.y10f{bottom:643.801500px;}
.y14e{bottom:645.283500px;}
.yc8{bottom:647.239500px;}
.y9f{bottom:648.948000px;}
.y12f{bottom:649.113000px;}
.ya0{bottom:649.186500px;}
.y50{bottom:653.184000px;}
.ye6{bottom:654.171000px;}
.y1d6{bottom:658.317000px;}
.y174{bottom:661.923000px;}
.y220{bottom:662.005500px;}
.y1b5{bottom:662.436000px;}
.y294{bottom:663.271500px;}
.y14{bottom:663.478500px;}
.y193{bottom:663.670500px;}
.y10e{bottom:665.142000px;}
.y14d{bottom:666.624000px;}
.y2{bottom:667.798500px;}
.y12e{bottom:670.452000px;}
.y78{bottom:672.315000px;}
.y28e{bottom:672.849000px;}
.y4f{bottom:674.524500px;}
.y173{bottom:683.263500px;}
.y1b4{bottom:683.775000px;}
.y9c{bottom:684.310500px;}
.y192{bottom:685.011000px;}
.y21f{bottom:686.110500px;}
.ye5{bottom:687.868500px;}
.y1d5{bottom:693.783000px;}
.y9e{bottom:695.536500px;}
.y4e{bottom:695.863500px;}
.y10d{bottom:696.864000px;}
.y1f7{bottom:696.874500px;}
.y14c{bottom:698.469000px;}
.y172{bottom:704.602500px;}
.y9b{bottom:706.614000px;}
.y9d{bottom:708.100500px;}
.y283{bottom:709.132500px;}
.ye4{bottom:709.209000px;}
.y8{bottom:709.560000px;}
.y13{bottom:709.920000px;}
.y1d4{bottom:715.123500px;}
.y12d{bottom:715.479000px;}
.y1b3{bottom:717.090000px;}
.y4d{bottom:717.204000px;}
.y10c{bottom:718.204500px;}
.y1f6{bottom:718.215000px;}
.y191{bottom:718.767000px;}
.y14b{bottom:719.809500px;}
.yc7{bottom:720.543000px;}
.y25{bottom:721.606500px;}
.y171{bottom:725.943000px;}
.y77{bottom:729.022500px;}
.ye3{bottom:730.549500px;}
.y1d3{bottom:736.462500px;}
.y12c{bottom:736.819500px;}
.y1b2{bottom:738.429000px;}
.y4c{bottom:738.544500px;}
.y10b{bottom:739.545000px;}
.y1f5{bottom:739.554000px;}
.y190{bottom:740.107500px;}
.y14a{bottom:741.148500px;}
.yc6{bottom:741.882000px;}
.y170{bottom:747.283500px;}
.y1{bottom:748.798500px;}
.y12{bottom:749.160000px;}
.y76{bottom:750.361500px;}
.y24{bottom:751.644000px;}
.ye2{bottom:751.890000px;}
.y21e{bottom:752.025000px;}
.y99{bottom:758.386500px;}
.y10a{bottom:760.884000px;}
.y18f{bottom:761.448000px;}
.y149{bottom:762.489000px;}
.yc5{bottom:763.222500px;}
.y12b{bottom:768.351000px;}
.y16f{bottom:768.622500px;}
.y249{bottom:768.847500px;}
.y9a{bottom:769.611000px;}
.y4b{bottom:771.145500px;}
.y75{bottom:771.702000px;}
.y1b1{bottom:771.744000px;}
.y1d2{bottom:771.930000px;}
.ye1{bottom:773.229000px;}
.y21d{bottom:773.365500px;}
.y1f4{bottom:774.505500px;}
.y98{bottom:780.690000px;}
.y109{bottom:782.224500px;}
.y23{bottom:782.578500px;}
.y18e{bottom:782.788500px;}
.y148{bottom:783.829500px;}
.yc4{bottom:784.563000px;}
.y12a{bottom:789.691500px;}
.y248{bottom:790.186500px;}
.y4a{bottom:792.484500px;}
.y74{bottom:793.042500px;}
.y1b0{bottom:793.084500px;}
.y1d1{bottom:793.270500px;}
.ye0{bottom:794.569500px;}
.y21c{bottom:794.706000px;}
.y1f3{bottom:795.846000px;}
.y16e{bottom:800.383500px;}
.y108{bottom:803.565000px;}
.y18d{bottom:804.127500px;}
.y22{bottom:804.546000px;}
.yc3{bottom:805.902000px;}
.y129{bottom:811.032000px;}
.y49{bottom:813.825000px;}
.y97{bottom:814.230000px;}
.y73{bottom:814.381500px;}
.ydf{bottom:815.910000px;}
.y21b{bottom:816.045000px;}
.y16d{bottom:821.724000px;}
.y147{bottom:822.123000px;}
.y107{bottom:824.904000px;}
.y18c{bottom:825.468000px;}
.y1af{bottom:826.398000px;}
.y232{bottom:826.471500px;}
.yc2{bottom:827.242500px;}
.y1d0{bottom:828.736500px;}
.y1f2{bottom:830.797500px;}
.y22d{bottom:831.543000px;}
.y21{bottom:834.583500px;}
.y48{bottom:835.165500px;}
.y96{bottom:835.570500px;}
.y72{bottom:835.722000px;}
.yde{bottom:837.249000px;}
.y21a{bottom:837.385500px;}
.y128{bottom:842.563500px;}
.y16c{bottom:843.063000px;}
.y106{bottom:846.244500px;}
.y18b{bottom:846.808500px;}
.y1ae{bottom:847.738500px;}
.yc1{bottom:848.583000px;}
.y1cf{bottom:850.077000px;}
.y1f1{bottom:852.138000px;}
.y270{bottom:853.008000px;}
.y47{bottom:856.504500px;}
.y71{bottom:857.062500px;}
.ydd{bottom:858.589500px;}
.y219{bottom:858.726000px;}
.y146{bottom:860.415000px;}
.y127{bottom:863.904000px;}
.y16b{bottom:864.403500px;}
.y20{bottom:865.518000px;}
.y105{bottom:867.585000px;}
.y18a{bottom:868.147500px;}
.y1ad{bottom:869.077500px;}
.yc0{bottom:869.923500px;}
.y1ce{bottom:871.417500px;}
.y1f0{bottom:873.478500px;}
.y26f{bottom:874.348500px;}
.y46{bottom:877.845000px;}
.y95{bottom:878.269500px;}
.y70{bottom:878.401500px;}
.ydc{bottom:879.930000px;}
.y218{bottom:880.066500px;}
.y126{bottom:885.243000px;}
.y1f{bottom:887.485500px;}
.ybf{bottom:891.262500px;}
.y16a{bottom:896.163000px;}
.y45{bottom:899.185500px;}
.y104{bottom:899.307000px;}
.y6f{bottom:899.742000px;}
.ydb{bottom:901.269000px;}
.y1ac{bottom:902.392500px;}
.y145{bottom:903.475500px;}
.y217{bottom:903.627000px;}
.yc{bottom:904.318500px;}
.y125{bottom:906.583500px;}
.y1cd{bottom:906.883500px;}
.y1ef{bottom:908.430000px;}
.ybe{bottom:912.603000px;}
.y169{bottom:917.503500px;}
.y1e{bottom:917.523000px;}
.y189{bottom:919.953000px;}
.y44{bottom:920.526000px;}
.y103{bottom:920.647500px;}
.y6e{bottom:921.082500px;}
.y1ab{bottom:923.731500px;}
.y124{bottom:927.924000px;}
.y1cc{bottom:928.224000px;}
.y1ee{bottom:929.769000px;}
.ybd{bottom:933.943500px;}
.y94{bottom:934.681500px;}
.y168{bottom:938.844000px;}
.y43{bottom:941.865000px;}
.y102{bottom:941.988000px;}
.y20e{bottom:943.704000px;}
.yda{bottom:947.095500px;}
.y123{bottom:949.263000px;}
.y1ed{bottom:951.109500px;}
.ybc{bottom:955.282500px;}
.y93{bottom:956.022000px;}
.y1aa{bottom:957.046500px;}
.y216{bottom:957.586500px;}
.y144{bottom:960.099000px;}
.y167{bottom:960.183000px;}
.y42{bottom:963.205500px;}
.y1cb{bottom:963.690000px;}
.y20d{bottom:965.044500px;}
.y6d{bottom:969.799500px;}
.y122{bottom:970.603500px;}
.y100{bottom:971.638500px;}
.y101{bottom:973.242000px;}
.ybb{bottom:976.623000px;}
.y92{bottom:977.362500px;}
.y1a9{bottom:978.387000px;}
.y215{bottom:978.927000px;}
.y143{bottom:981.438000px;}
.y166{bottom:981.523500px;}
.y1d{bottom:983.695500px;}
.yff{bottom:983.731500px;}
.y41{bottom:984.546000px;}
.y1ca{bottom:985.030500px;}
.y1ec{bottom:986.061000px;}
.y20c{bottom:986.385000px;}
.yb{bottom:987.480000px;}
.yfe{bottom:990.276000px;}
.y121{bottom:991.944000px;}
.yba{bottom:997.963500px;}
.y91{bottom:998.701500px;}
.y1a8{bottom:999.726000px;}
.y214{bottom:1000.267500px;}
.y142{bottom:1002.778500px;}
.y165{bottom:1002.864000px;}
.y40{bottom:1005.885000px;}
.y1eb{bottom:1007.401500px;}
.y9{bottom:1007.638500px;}
.yd9{bottom:1010.137500px;}
.y120{bottom:1013.284500px;}
.y1c{bottom:1018.215000px;}
.yb9{bottom:1019.302500px;}
.y1c9{bottom:1020.496500px;}
.y20b{bottom:1021.174500px;}
.y213{bottom:1021.606500px;}
.y141{bottom:1024.119000px;}
.y164{bottom:1024.204500px;}
.y3f{bottom:1027.225500px;}
.y90{bottom:1030.305000px;}
.yfd{bottom:1031.095500px;}
.yd8{bottom:1031.478000px;}
.y1a7{bottom:1033.041000px;}
.y6c{bottom:1034.623500px;}
.yb8{bottom:1040.643000px;}
.y1c8{bottom:1041.837000px;}
.y1ea{bottom:1042.353000px;}
.y20a{bottom:1042.515000px;}
.y212{bottom:1042.947000px;}
.y140{bottom:1045.458000px;}
.y163{bottom:1045.543500px;}
.y3e{bottom:1048.566000px;}
.y8f{bottom:1051.645500px;}
.y1b{bottom:1052.736000px;}
.yd7{bottom:1052.818500px;}
.y1a6{bottom:1054.380000px;}
.y6b{bottom:1055.964000px;}
.yfb{bottom:1060.525500px;}
.yb7{bottom:1061.983500px;}
.yfc{bottom:1062.129000px;}
.y1e9{bottom:1063.692000px;}
.y209{bottom:1063.854000px;}
.y211{bottom:1064.884500px;}
.y13f{bottom:1066.798500px;}
.y162{bottom:1066.884000px;}
.y3d{bottom:1069.905000px;}
.yfa{bottom:1072.618500px;}
.y8e{bottom:1072.986000px;}
.yd6{bottom:1074.157500px;}
.y1a5{bottom:1075.720500px;}
.y6a{bottom:1077.304500px;}
.yf9{bottom:1079.163000px;}
.y210{bottom:1086.822000px;}
.y69{bottom:1098.643500px;}
.y8d{bottom:1102.696500px;}
.y20f{bottom:1110.384000px;}
.y8c{bottom:1113.922500px;}
.y3c{bottom:1119.984000px;}
.h6{height:18.358500px;}
.h5{height:18.360000px;}
.h4{height:21.598500px;}
.h30{height:26.170135px;}
.h34{height:27.687769px;}
.h43{height:29.996069px;}
.h3f{height:30.418564px;}
.h39{height:33.693136px;}
.h2a{height:33.904805px;}
.h32{height:34.609728px;}
.h45{height:34.659558px;}
.h28{height:34.717756px;}
.h22{height:35.052500px;}
.h41{height:35.147739px;}
.h44{height:35.995358px;}
.h40{height:36.502353px;}
.h2f{height:36.603918px;}
.h2e{height:36.652789px;}
.h3d{height:38.165580px;}
.hd{height:38.941536px;}
.hb{height:41.484266px;}
.h33{height:41.531827px;}
.h24{height:45.425492px;}
.h12{height:46.407311px;}
.h36{height:47.126269px;}
.h38{height:47.189188px;}
.h1c{height:47.520040px;}
.h10{height:47.978222px;}
.h17{height:48.468040px;}
.h1d{height:49.090950px;}
.hf{height:49.781453px;}
.h11{height:51.152850px;}
.h3b{height:53.381833px;}
.h3c{height:53.453104px;}
.hc{height:54.694674px;}
.h37{height:55.769130px;}
.h26{height:58.477756px;}
.he{height:59.737577px;}
.ha{height:59.890959px;}
.h20{height:60.505756px;}
.h2c{height:61.132050px;}
.h1f{height:64.504950px;}
.h9{height:65.634048px;}
.h2{height:75.093750px;}
.h2b{height:76.213756px;}
.h29{height:76.219756px;}
.h3{height:87.102492px;}
.h15{height:91.830040px;}
.h13{height:91.836040px;}
.h1a{height:92.288222px;}
.h27{height:92.294222px;}
.h8{height:94.512546px;}
.h23{height:98.415450px;}
.h19{height:102.787756px;}
.h1e{height:109.408950px;}
.h14{height:111.457756px;}
.h16{height:111.463756px;}
.h1b{height:143.138222px;}
.h18{height:143.628040px;}
.h21{height:144.358950px;}
.h25{height:186.316950px;}
.h2d{height:253.852380px;}
.h35{height:318.931740px;}
.h3a{height:362.161125px;}
.h31{height:408.768705px;}
.h3e{height:438.907275px;}
.h42{height:447.865425px;}
.h7{height:1262.835000px;}
.h0{height:1262.878500px;}
.h1{height:1263.000000px;}
.w1b{width:21.960000px;}
.w17{width:28.078500px;}
.w11{width:29.880000px;}
.w6{width:30.960000px;}
.w1c{width:33.118500px;}
.wf{width:34.920000px;}
.w14{width:38.158500px;}
.w3{width:42.478500px;}
.w1a{width:42.840000px;}
.w1d{width:47.880000px;}
.w18{width:48.960000px;}
.w21{width:51.840000px;}
.w15{width:54.000000px;}
.w23{width:54.360000px;}
.w20{width:56.158500px;}
.w4{width:61.198500px;}
.w19{width:65.878500px;}
.w22{width:66.958500px;}
.wc{width:69.478500px;}
.w12{width:69.840000px;}
.w9{width:72.000000px;}
.wd{width:74.520000px;}
.w1f{width:78.120000px;}
.w1e{width:79.920000px;}
.w24{width:84.960000px;}
.we{width:92.158500px;}
.w8{width:92.520000px;}
.w10{width:101.158500px;}
.w16{width:105.118500px;}
.wa{width:110.158500px;}
.w13{width:110.880000px;}
.w7{width:114.840000px;}
.w5{width:127.798500px;}
.w2{width:134.638500px;}
.wb{width:139.680000px;}
.w27{width:319.461570px;}
.w29{width:432.610380px;}
.w2a{width:465.891225px;}
.w2c{width:632.280600px;}
.w2b{width:632.280915px;}
.w28{width:658.893465px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.w25{width:892.914000px;}
.w26{width:893.250000px;}
.x0{left:0.000000px;}
.x120{left:11.117998px;}
.x122{left:14.428262px;}
.x11d{left:16.721085px;}
.x11f{left:18.399944px;}
.x11c{left:24.003214px;}
.x123{left:25.943426px;}
.x12d{left:35.903760px;}
.x11e{left:38.183261px;}
.x131{left:43.426148px;}
.x121{left:46.369110px;}
.x12c{left:47.513751px;}
.x126{left:49.398482px;}
.x12a{left:52.070059px;}
.x2{left:56.158500px;}
.x1{left:58.320000px;}
.x124{left:72.545444px;}
.xc{left:73.800000px;}
.x12e{left:80.253623px;}
.x1e{left:85.318500px;}
.x132{left:87.159128px;}
.x125{left:91.045135px;}
.x22{left:97.198500px;}
.x127{left:105.867389px;}
.x6e{left:110.605500px;}
.x20{left:112.318500px;}
.x23{left:115.198500px;}
.x3f{left:118.557000px;}
.x31{left:119.832000px;}
.xac{left:121.336500px;}
.xd1{left:124.083000px;}
.x103{left:127.924500px;}
.x3d{left:129.345000px;}
.x1f{left:131.398500px;}
.x5e{left:134.200500px;}
.xf3{left:136.452000px;}
.x8a{left:139.063500px;}
.x3{left:140.397000px;}
.x13{left:142.198500px;}
.x115{left:144.379500px;}
.x24{left:145.438500px;}
.x114{left:146.556000px;}
.xd2{left:149.104500px;}
.x87{left:150.736500px;}
.x3b{left:152.022000px;}
.x113{left:153.150000px;}
.x8c{left:154.354500px;}
.x4{left:158.397000px;}
.x32{left:159.921000px;}
.x88{left:160.939500px;}
.x8e{left:162.306000px;}
.x102{left:164.335500px;}
.x1d{left:166.317000px;}
.x8b{left:167.905500px;}
.x14{left:169.198500px;}
.x95{left:170.349000px;}
.xcb{left:172.585500px;}
.xb6{left:173.769000px;}
.x5{left:176.398500px;}
.x10a{left:178.093500px;}
.xd{left:181.078500px;}
.x119{left:182.280000px;}
.x37{left:183.778500px;}
.x25{left:186.478500px;}
.xa9{left:188.334000px;}
.x12f{left:189.485430px;}
.x96{left:190.564500px;}
.x8d{left:192.115500px;}
.xaf{left:195.097500px;}
.x107{left:197.469000px;}
.xa6{left:198.748500px;}
.xa5{left:200.892000px;}
.x8f{left:202.722000px;}
.xd9{left:203.850000px;}
.xfd{left:207.927000px;}
.x12b{left:210.945000px;}
.x90{left:211.977000px;}
.x98{left:215.097000px;}
.x97{left:216.217500px;}
.xb1{left:217.792500px;}
.xee{left:220.984500px;}
.xb0{left:223.836000px;}
.x3c{left:226.146000px;}
.x116{left:228.073500px;}
.x5f{left:229.945500px;}
.x7d{left:232.743000px;}
.x4c{left:235.575000px;}
.x106{left:236.979000px;}
.x60{left:238.126500px;}
.x4d{left:243.757500px;}
.x61{left:245.889000px;}
.x99{left:250.728000px;}
.x4e{left:253.465500px;}
.x81{left:257.718000px;}
.xec{left:259.246500px;}
.x15{left:262.438500px;}
.x26{left:263.520000px;}
.xca{left:265.924500px;}
.xef{left:268.755000px;}
.x62{left:270.015000px;}
.x4f{left:271.356000px;}
.xe{left:272.878500px;}
.xbf{left:274.359000px;}
.xe2{left:275.799000px;}
.x50{left:279.537000px;}
.x117{left:281.931000px;}
.x9a{left:284.394000px;}
.x63{left:286.378500px;}
.x16{left:289.438500px;}
.xb2{left:290.736000px;}
.x64{left:294.139500px;}
.xe8{left:295.188000px;}
.x9d{left:296.571000px;}
.x9b{left:298.446000px;}
.xde{left:301.596000px;}
.x38{left:304.123500px;}
.x51{left:305.610000px;}
.x9c{left:307.723500px;}
.x84{left:309.102000px;}
.x6{left:310.680000px;}
.x130{left:312.460710px;}
.xad{left:313.552500px;}
.x52{left:315.318000px;}
.xcf{left:317.215500px;}
.xf9{left:319.555500px;}
.xfa{left:320.886000px;}
.x9e{left:323.163000px;}
.x27{left:326.518500px;}
.x53{left:331.681500px;}
.x36{left:334.297500px;}
.xe6{left:336.517500px;}
.xf{left:338.760000px;}
.xae{left:343.906500px;}
.x118{left:345.318000px;}
.x28{left:346.318500px;}
.xf6{left:348.310500px;}
.xa0{left:350.392500px;}
.xe7{left:351.991500px;}
.x7{left:353.878500px;}
.x11a{left:355.245000px;}
.x128{left:356.308105px;}
.x35{left:361.587000px;}
.xe9{left:363.361500px;}
.xeb{left:365.584500px;}
.x7e{left:367.177500px;}
.x65{left:370.015500px;}
.xf7{left:371.709000px;}
.x9f{left:373.041000px;}
.x17{left:375.478500px;}
.x29{left:376.558500px;}
.xcc{left:379.312500px;}
.x21{left:382.318500px;}
.x7f{left:385.060500px;}
.x33{left:387.202500px;}
.x112{left:389.694000px;}
.xbd{left:392.697000px;}
.x34{left:393.763500px;}
.x66{left:396.315000px;}
.xa1{left:399.438000px;}
.xf8{left:400.584000px;}
.x39{left:405.832500px;}
.xea{left:411.127500px;}
.x67{left:412.678500px;}
.x8{left:414.720000px;}
.x3a{left:416.080500px;}
.xa2{left:419.712000px;}
.xf2{left:422.314500px;}
.xe1{left:423.496500px;}
.x48{left:427.390500px;}
.x10d{left:430.342500px;}
.x6f{left:433.029000px;}
.xfb{left:434.217000px;}
.x49{left:435.571500px;}
.x18{left:437.398500px;}
.x3e{left:439.792500px;}
.x10{left:441.000000px;}
.xcd{left:443.365500px;}
.x4a{left:444.982500px;}
.x6d{left:447.744000px;}
.x111{left:450.147000px;}
.x2a{left:451.438500px;}
.x4b{left:453.165000px;}
.xa3{left:454.726500px;}
.xce{left:455.796000px;}
.xd0{left:457.627500px;}
.xb7{left:459.189000px;}
.xaa{left:464.887500px;}
.x109{left:469.276500px;}
.xd6{left:470.763000px;}
.xe0{left:473.965500px;}
.xb8{left:475.552500px;}
.xb9{left:484.090500px;}
.x10e{left:487.659000px;}
.xff{left:490.219500px;}
.x93{left:492.879000px;}
.xf0{left:495.442500px;}
.xd7{left:496.681500px;}
.xe3{left:497.968500px;}
.xba{left:500.454000px;}
.x54{left:502.153500px;}
.x2b{left:504.360000px;}
.xbb{left:508.992000px;}
.x55{left:510.334500px;}
.xed{left:511.440000px;}
.xda{left:513.705000px;}
.xdd{left:515.719500px;}
.x56{left:520.044000px;}
.x94{left:521.721000px;}
.x7b{left:523.483500px;}
.xbc{left:525.355500px;}
.xd4{left:528.264000px;}
.x40{left:530.235000px;}
.x7c{left:532.786500px;}
.xc1{left:535.240500px;}
.x57{left:536.407500px;}
.x41{left:538.417500px;}
.x101{left:541.860000px;}
.x9{left:542.878500px;}
.x19{left:545.398500px;}
.x42{left:546.520500px;}
.xd8{left:550.572000px;}
.xc2{left:551.604000px;}
.x2c{left:553.680000px;}
.x43{left:554.703000px;}
.x6a{left:557.173500px;}
.x80{left:560.031000px;}
.x10f{left:561.199500px;}
.x44{left:562.806000px;}
.x129{left:566.231876px;}
.xa{left:568.438500px;}
.x45{left:570.988500px;}
.x58{left:572.187000px;}
.x6b{left:573.537000px;}
.x11{left:574.558500px;}
.xc3{left:576.109500px;}
.x1a{left:580.318500px;}
.x46{left:582.220500px;}
.x10b{left:583.480500px;}
.x59{left:588.550500px;}
.x47{left:590.403000px;}
.xc0{left:592.750500px;}
.x6c{left:598.132500px;}
.xb3{left:603.637500px;}
.x74{left:605.046000px;}
.x78{left:609.552000px;}
.x2d{left:613.078500px;}
.xe4{left:614.917500px;}
.xd5{left:616.851000px;}
.xb4{left:618.123000px;}
.x105{left:621.988500px;}
.x68{left:625.350000px;}
.x75{left:630.036000px;}
.x1b{left:631.438500px;}
.x85{left:634.554000px;}
.x76{left:638.661000px;}
.xc4{left:639.952500px;}
.x69{left:641.713500px;}
.x12{left:642.958500px;}
.x86{left:648.204000px;}
.x10c{left:652.035000px;}
.x77{left:655.026000px;}
.xc5{left:656.316000px;}
.x110{left:658.911000px;}
.xbe{left:660.258000px;}
.x2e{left:664.558500px;}
.xfc{left:665.793000px;}
.x79{left:668.269500px;}
.xc6{left:672.031500px;}
.xb{left:677.158500px;}
.xc7{left:679.564500px;}
.xa7{left:683.061000px;}
.x7a{left:684.633000px;}
.xf4{left:688.233000px;}
.x91{left:689.706000px;}
.xa8{left:695.548500px;}
.xdb{left:697.749000px;}
.x2f{left:698.758500px;}
.x82{left:701.409000px;}
.x92{left:702.594000px;}
.xdc{left:714.112500px;}
.xd3{left:716.358000px;}
.xc8{left:719.826000px;}
.xfe{left:720.913500px;}
.x83{left:722.790000px;}
.xc9{left:727.359000px;}
.x70{left:729.025500px;}
.x104{left:730.158000px;}
.xdf{left:732.013500px;}
.x1c{left:733.680000px;}
.x30{left:743.758500px;}
.x71{left:745.389000px;}
.xb5{left:747.777000px;}
.xab{left:749.422500px;}
.x72{left:753.595500px;}
.xf1{left:754.930500px;}
.x100{left:756.159000px;}
.xe5{left:757.575000px;}
.xf5{left:759.355500px;}
.x5a{left:762.684000px;}
.x108{left:763.771500px;}
.xa4{left:765.526500px;}
.x89{left:767.809500px;}
.x73{left:769.959000px;}
.x11b{left:770.992500px;}
.x5c{left:774.427500px;}
.x5b{left:779.047500px;}
.x5d{left:782.610000px;}
@media print{
.v3{vertical-align:-10.949333pt;}
.v2{vertical-align:-9.141333pt;}
.vf{vertical-align:-8.064000pt;}
.v17{vertical-align:-6.540480pt;}
.v18{vertical-align:-4.885591pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.224000pt;}
.v6{vertical-align:9.018667pt;}
.v4{vertical-align:10.949333pt;}
.v1{vertical-align:12.576000pt;}
.vb{vertical-align:13.701333pt;}
.v10{vertical-align:20.074667pt;}
.v15{vertical-align:21.120000pt;}
.vd{vertical-align:22.922667pt;}
.vc{vertical-align:24.026667pt;}
.v16{vertical-align:36.890667pt;}
.v7{vertical-align:39.392000pt;}
.ve{vertical-align:46.474667pt;}
.v12{vertical-align:48.112000pt;}
.va{vertical-align:49.616000pt;}
.v11{vertical-align:54.986667pt;}
.v9{vertical-align:60.506667pt;}
.v14{vertical-align:79.301333pt;}
.v8{vertical-align:84.586667pt;}
.v13{vertical-align:121.978667pt;}
.ls17{letter-spacing:-1.024000pt;}
.ls14{letter-spacing:-0.448000pt;}
.ls13{letter-spacing:-0.400000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.240000pt;}
.ls10{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.085333pt;}
.ls15{letter-spacing:0.000000pt;}
.ls101{letter-spacing:0.000500pt;}
.lsfe{letter-spacing:0.000531pt;}
.ls10a{letter-spacing:0.000775pt;}
.ls103{letter-spacing:0.002106pt;}
.lsef{letter-spacing:0.002400pt;}
.ls0{letter-spacing:0.064000pt;}
.ls118{letter-spacing:0.072740pt;}
.ls114{letter-spacing:0.074479pt;}
.lsf{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.144000pt;}
.lsd{letter-spacing:0.165333pt;}
.ls11a{letter-spacing:0.167842pt;}
.ls112{letter-spacing:0.170206pt;}
.lsc{letter-spacing:0.170667pt;}
.ls2{letter-spacing:0.181333pt;}
.ls107{letter-spacing:0.186621pt;}
.ls105{letter-spacing:0.188227pt;}
.ls16{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.202667pt;}
.lsb{letter-spacing:0.208000pt;}
.ls115{letter-spacing:0.217765pt;}
.ls117{letter-spacing:0.219505pt;}
.ls110{letter-spacing:0.220833pt;}
.ls10e{letter-spacing:0.222597pt;}
.lsa{letter-spacing:0.224000pt;}
.ls9{letter-spacing:0.229333pt;}
.ls104{letter-spacing:0.240964pt;}
.lsff{letter-spacing:0.243070pt;}
.ls1{letter-spacing:0.256000pt;}
.ls9f{letter-spacing:0.355362pt;}
.lsfa{letter-spacing:0.367711pt;}
.ls66{letter-spacing:0.376215pt;}
.ls8{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.576000pt;}
.lsf7{letter-spacing:0.645044pt;}
.ls37{letter-spacing:0.654028pt;}
.ls61{letter-spacing:0.657371pt;}
.lsf5{letter-spacing:0.664563pt;}
.lsf9{letter-spacing:0.665874pt;}
.lsc0{letter-spacing:0.696075pt;}
.ls34{letter-spacing:0.699542pt;}
.ls5c{letter-spacing:0.701408pt;}
.ls71{letter-spacing:0.703733pt;}
.ls2d{letter-spacing:0.704875pt;}
.ls6b{letter-spacing:0.707330pt;}
.ls5{letter-spacing:0.720000pt;}
.ls5d{letter-spacing:0.722400pt;}
.ls93{letter-spacing:0.723362pt;}
.lsa8{letter-spacing:0.725304pt;}
.ls22{letter-spacing:0.725308pt;}
.ls4c{letter-spacing:0.726764pt;}
.ls7e{letter-spacing:0.727251pt;}
.ls39{letter-spacing:0.727733pt;}
.ls91{letter-spacing:0.728202pt;}
.ls8e{letter-spacing:0.730637pt;}
.ls21{letter-spacing:0.834869pt;}
.ls74{letter-spacing:0.834882pt;}
.ls2c{letter-spacing:0.843542pt;}
.ls95{letter-spacing:0.869789pt;}
.lsa3{letter-spacing:0.871733pt;}
.lsbe{letter-spacing:0.875122pt;}
.ls9d{letter-spacing:0.877067pt;}
.ls3d{letter-spacing:0.957067pt;}
.ls4e{letter-spacing:0.957549pt;}
.ls4{letter-spacing:0.960000pt;}
.ls49{letter-spacing:0.962400pt;}
.ls3b{letter-spacing:0.962882pt;}
.lse3{letter-spacing:1.062680pt;}
.ls36{letter-spacing:1.080695pt;}
.ls18{letter-spacing:1.152000pt;}
.ls5e{letter-spacing:1.153371pt;}
.ls8b{letter-spacing:1.262028pt;}
.ls108{letter-spacing:1.308118pt;}
.lsc7{letter-spacing:1.382704pt;}
.ls40{letter-spacing:1.452098pt;}
.ls60{letter-spacing:1.453058pt;}
.lsbd{letter-spacing:1.453067pt;}
.ls64{letter-spacing:1.453549pt;}
.ls9c{letter-spacing:1.454026pt;}
.lse2{letter-spacing:1.468585pt;}
.ls7a{letter-spacing:1.487733pt;}
.ls106{letter-spacing:1.679214pt;}
.ls6c{letter-spacing:1.784327pt;}
.ls77{letter-spacing:1.890400pt;}
.lsb3{letter-spacing:2.034400pt;}
.lsd5{letter-spacing:2.035841pt;}
.lsb6{letter-spacing:2.039733pt;}
.ls6d{letter-spacing:2.042400pt;}
.ls70{letter-spacing:2.045997pt;}
.ls11b{letter-spacing:2.291437pt;}
.ls113{letter-spacing:2.321948pt;}
.ls54{letter-spacing:2.412108pt;}
.ls52{letter-spacing:2.417441pt;}
.lsed{letter-spacing:2.418742pt;}
.ls3c{letter-spacing:2.444098pt;}
.lsb7{letter-spacing:2.613789pt;}
.lsb4{letter-spacing:2.619122pt;}
.ls1f{letter-spacing:2.656533pt;}
.lsf6{letter-spacing:2.657067pt;}
.ls4f{letter-spacing:2.743733pt;}
.ls44{letter-spacing:2.744215pt;}
.ls45{letter-spacing:2.749067pt;}
.ls58{letter-spacing:2.749549pt;}
.lsdf{letter-spacing:2.904694pt;}
.ls1b{letter-spacing:3.162529pt;}
.ls9e{letter-spacing:3.166026pt;}
.lsa4{letter-spacing:3.171359pt;}
.ls59{letter-spacing:3.185665pt;}
.ls1a{letter-spacing:3.185843pt;}
.ls1c{letter-spacing:3.188412pt;}
.ls1e{letter-spacing:3.188702pt;}
.ls1d{letter-spacing:3.191177pt;}
.ls62{letter-spacing:3.381067pt;}
.ls94{letter-spacing:3.386400pt;}
.ls2f{letter-spacing:3.564108pt;}
.ls50{letter-spacing:3.916332pt;}
.lsd9{letter-spacing:3.917997pt;}
.ls26{letter-spacing:3.985441pt;}
.ls55{letter-spacing:4.214998pt;}
.ls6a{letter-spacing:4.269660pt;}
.lsdc{letter-spacing:4.342732pt;}
.ls92{letter-spacing:4.549067pt;}
.ls5b{letter-spacing:7.106400pt;}
.ls63{letter-spacing:7.275542pt;}
.ls5f{letter-spacing:7.437997pt;}
.ls69{letter-spacing:7.621789pt;}
.ls47{letter-spacing:7.800075pt;}
.ls7c{letter-spacing:7.822995pt;}
.ls9b{letter-spacing:10.010400pt;}
.lsa2{letter-spacing:10.015733pt;}
.ls72{letter-spacing:11.771878pt;}
.lse8{letter-spacing:11.970742pt;}
.ls24{letter-spacing:12.157408pt;}
.ls48{letter-spacing:12.273431pt;}
.ls3a{letter-spacing:12.305431pt;}
.lsea{letter-spacing:12.370742pt;}
.ls116{letter-spacing:12.611688pt;}
.ls119{letter-spacing:12.613428pt;}
.ls4a{letter-spacing:12.738742pt;}
.ls7d{letter-spacing:12.764585pt;}
.lsda{letter-spacing:12.765547pt;}
.ls111{letter-spacing:12.791088pt;}
.lse7{letter-spacing:13.305174pt;}
.ls10f{letter-spacing:13.333530pt;}
.ls2b{letter-spacing:13.613997pt;}
.lse9{letter-spacing:13.699841pt;}
.ls100{letter-spacing:13.800320pt;}
.ls102{letter-spacing:13.801926pt;}
.ls33{letter-spacing:14.038732pt;}
.lsdb{letter-spacing:14.194742pt;}
.ls4d{letter-spacing:14.234400pt;}
.ls87{letter-spacing:14.487285pt;}
.ls25{letter-spacing:14.545467pt;}
.lsde{letter-spacing:14.720012pt;}
.lsd6{letter-spacing:14.778194pt;}
.lsee{letter-spacing:14.894558pt;}
.ls43{letter-spacing:15.062998pt;}
.lsfc{letter-spacing:15.225874pt;}
.ls56{letter-spacing:15.228332pt;}
.ls10c{letter-spacing:15.274637pt;}
.ls38{letter-spacing:15.274647pt;}
.lsec{letter-spacing:15.854508pt;}
.lsb9{letter-spacing:15.857921pt;}
.lseb{letter-spacing:15.865174pt;}
.ls2a{letter-spacing:16.002400pt;}
.ls68{letter-spacing:16.799733pt;}
.lsce{letter-spacing:16.856075pt;}
.ls3e{letter-spacing:16.861408pt;}
.lsb0{letter-spacing:16.866742pt;}
.lse1{letter-spacing:16.877408pt;}
.lsbb{letter-spacing:16.888075pt;}
.lse6{letter-spacing:16.920075pt;}
.ls89{letter-spacing:16.930742pt;}
.ls82{letter-spacing:16.936075pt;}
.lsc9{letter-spacing:16.968075pt;}
.ls23{letter-spacing:17.005408pt;}
.lsfd{letter-spacing:17.015251pt;}
.lsa6{letter-spacing:17.325408pt;}
.lsac{letter-spacing:17.442742pt;}
.ls20{letter-spacing:17.586742pt;}
.ls46{letter-spacing:17.592075pt;}
.ls76{letter-spacing:17.614038pt;}
.lse4{letter-spacing:17.615971pt;}
.lsbc{letter-spacing:17.629408pt;}
.lsf4{letter-spacing:17.730692pt;}
.ls10b{letter-spacing:17.734767pt;}
.lsf2{letter-spacing:17.736025pt;}
.lsaa{letter-spacing:17.848075pt;}
.ls8d{letter-spacing:17.954742pt;}
.lsb2{letter-spacing:17.970742pt;}
.lsb5{letter-spacing:18.195841pt;}
.lsb8{letter-spacing:18.201174pt;}
.lse0{letter-spacing:18.211841pt;}
.lsba{letter-spacing:18.222508pt;}
.lsbf{letter-spacing:18.236587pt;}
.ls5a{letter-spacing:18.386742pt;}
.lsd2{letter-spacing:18.429408pt;}
.ls97{letter-spacing:18.616075pt;}
.ls6f{letter-spacing:18.920075pt;}
.lsd8{letter-spacing:19.042742pt;}
.ls42{letter-spacing:19.117408pt;}
.ls81{letter-spacing:19.146158pt;}
.lsd1{letter-spacing:19.185918pt;}
.ls90{letter-spacing:19.341408pt;}
.lsf3{letter-spacing:19.477102pt;}
.lsa7{letter-spacing:19.541067pt;}
.ls10d{letter-spacing:19.546400pt;}
.lsaf{letter-spacing:19.557067pt;}
.lsc6{letter-spacing:19.592075pt;}
.lsc8{letter-spacing:19.647733pt;}
.ls84{letter-spacing:19.997408pt;}
.lsa5{letter-spacing:20.010400pt;}
.ls98{letter-spacing:20.072025pt;}
.ls99{letter-spacing:20.076101pt;}
.ls27{letter-spacing:20.077997pt;}
.lsab{letter-spacing:20.127733pt;}
.lse5{letter-spacing:20.130692pt;}
.lsc4{letter-spacing:20.322742pt;}
.ls30{letter-spacing:20.497398pt;}
.ls75{letter-spacing:20.499366pt;}
.ls78{letter-spacing:20.501067pt;}
.lsa9{letter-spacing:20.533067pt;}
.lsb1{letter-spacing:20.655733pt;}
.lsd0{letter-spacing:20.770742pt;}
.ls73{letter-spacing:20.851330pt;}
.lsc5{letter-spacing:20.935254pt;}
.lsa0{letter-spacing:21.094767pt;}
.lsd4{letter-spacing:21.114400pt;}
.ls8c{letter-spacing:21.176699pt;}
.ls8f{letter-spacing:21.301067pt;}
.lsd7{letter-spacing:21.393398pt;}
.lscf{letter-spacing:21.519971pt;}
.ls32{letter-spacing:21.645067pt;}
.lsd3{letter-spacing:21.645358pt;}
.ls29{letter-spacing:21.650400pt;}
.ls6e{letter-spacing:21.745212pt;}
.ls96{letter-spacing:21.832025pt;}
.ls8a{letter-spacing:21.882436pt;}
.lscd{letter-spacing:21.885408pt;}
.lscb{letter-spacing:21.890742pt;}
.ls88{letter-spacing:21.893102pt;}
.ls109{letter-spacing:22.524880pt;}
.ls83{letter-spacing:22.687733pt;}
.lsc3{letter-spacing:22.760075pt;}
.lsca{letter-spacing:23.219841pt;}
.lscc{letter-spacing:23.225174pt;}
.ls28{letter-spacing:23.234742pt;}
.ls31{letter-spacing:23.240075pt;}
.ls79{letter-spacing:23.378742pt;}
.lsc1{letter-spacing:23.485408pt;}
.ls57{letter-spacing:23.592075pt;}
.ls67{letter-spacing:24.013408pt;}
.lsc2{letter-spacing:24.092587pt;}
.lsae{letter-spacing:24.221408pt;}
.ls86{letter-spacing:24.573408pt;}
.ls53{letter-spacing:24.962400pt;}
.ls51{letter-spacing:26.674742pt;}
.lsad{letter-spacing:26.901067pt;}
.ls85{letter-spacing:27.253067pt;}
.ls41{letter-spacing:33.398772pt;}
.ls4b{letter-spacing:34.658400pt;}
.ls7b{letter-spacing:36.831492pt;}
.ls7f{letter-spacing:59.002400pt;}
.lsf8{letter-spacing:96.238679pt;}
.lsfb{letter-spacing:96.489346pt;}
.lsa1{letter-spacing:98.690742pt;}
.ls9a{letter-spacing:99.586742pt;}
.lsf1{letter-spacing:421.045067pt;}
.lsf0{letter-spacing:491.343733pt;}
.ls65{letter-spacing:1448.448875pt;}
.lsdd{letter-spacing:1519.026881pt;}
.ls80{letter-spacing:1598.446995pt;}
.ls35{letter-spacing:1634.021067pt;}
.ls2e{letter-spacing:1652.890400pt;}
.ls3f{letter-spacing:1951.202400pt;}
.ws1{word-spacing:-21.597237pt;}
.ws2{word-spacing:-21.357237pt;}
.ws4{word-spacing:-20.397237pt;}
.ws0{word-spacing:-20.317237pt;}
.ws5{word-spacing:-20.237237pt;}
.wsa3{word-spacing:-19.128267pt;}
.ws11{word-spacing:-18.944000pt;}
.ws9{word-spacing:-18.240000pt;}
.ws8{word-spacing:-18.048000pt;}
.wsd{word-spacing:-18.000000pt;}
.ws6{word-spacing:-17.994667pt;}
.ws12{word-spacing:-17.962667pt;}
.ws7{word-spacing:-17.936000pt;}
.ws10{word-spacing:-17.664000pt;}
.wsf{word-spacing:-16.768000pt;}
.ws1e{word-spacing:-14.545467pt;}
.ws2b{word-spacing:-13.283467pt;}
.ws20{word-spacing:-12.752133pt;}
.ws37{word-spacing:-2.850911pt;}
.ws49{word-spacing:-2.734548pt;}
.ws3{word-spacing:-2.650101pt;}
.ws56{word-spacing:-2.560002pt;}
.wsbc{word-spacing:-2.210911pt;}
.ws4a{word-spacing:-2.152729pt;}
.wsb{word-spacing:-2.085333pt;}
.ws5b{word-spacing:-2.036365pt;}
.wsaa{word-spacing:-1.978183pt;}
.ws66{word-spacing:-1.745456pt;}
.ws13{word-spacing:-1.728000pt;}
.ws9e{word-spacing:-1.629092pt;}
.wse{word-spacing:-1.536000pt;}
.wsa{word-spacing:-1.472000pt;}
.ws34{word-spacing:-1.454547pt;}
.ws7f{word-spacing:-1.396365pt;}
.ws80{word-spacing:-1.338183pt;}
.ws86{word-spacing:-1.280001pt;}
.ws93{word-spacing:-1.221819pt;}
.ws6a{word-spacing:-1.163637pt;}
.ws7c{word-spacing:-1.105455pt;}
.ws94{word-spacing:-1.105187pt;}
.ws9f{word-spacing:-1.047274pt;}
.ws45{word-spacing:-0.989092pt;}
.ws3f{word-spacing:-0.930910pt;}
.wsa9{word-spacing:-0.814546pt;}
.ws18{word-spacing:-0.768000pt;}
.ws9b{word-spacing:-0.698182pt;}
.wsac{word-spacing:-0.581819pt;}
.ws70{word-spacing:-0.523637pt;}
.wsc{word-spacing:-0.480000pt;}
.ws23{word-spacing:-0.478205pt;}
.ws71{word-spacing:-0.465455pt;}
.ws79{word-spacing:-0.407273pt;}
.ws61{word-spacing:-0.349091pt;}
.ws2e{word-spacing:-0.290909pt;}
.ws3e{word-spacing:-0.232727pt;}
.ws29{word-spacing:-0.212535pt;}
.wsb0{word-spacing:-0.200241pt;}
.ws2f{word-spacing:-0.174546pt;}
.ws14{word-spacing:-0.165333pt;}
.ws16{word-spacing:-0.128000pt;}
.ws39{word-spacing:-0.116364pt;}
.ws25{word-spacing:-0.106268pt;}
.wsdf{word-spacing:-0.063352pt;}
.ws40{word-spacing:-0.058182pt;}
.wsdb{word-spacing:-0.055928pt;}
.ws17{word-spacing:-0.053333pt;}
.wsc9{word-spacing:-0.043440pt;}
.ws51{word-spacing:-0.042507pt;}
.wsdc{word-spacing:-0.041946pt;}
.wscc{word-spacing:-0.041019pt;}
.wse4{word-spacing:-0.036052pt;}
.wsf3{word-spacing:-0.035551pt;}
.wsd0{word-spacing:-0.032815pt;}
.ws21{word-spacing:-0.012938pt;}
.ws1c{word-spacing:-0.010754pt;}
.wsb7{word-spacing:-0.004123pt;}
.wsa7{word-spacing:-0.002776pt;}
.wse2{word-spacing:-0.002108pt;}
.wsb4{word-spacing:-0.001721pt;}
.ws98{word-spacing:-0.000082pt;}
.ws1b{word-spacing:0.000000pt;}
.wsb3{word-spacing:0.000225pt;}
.wsab{word-spacing:0.002929pt;}
.ws1f{word-spacing:0.018567pt;}
.ws30{word-spacing:0.058182pt;}
.ws15{word-spacing:0.064000pt;}
.ws24{word-spacing:0.106268pt;}
.ws42{word-spacing:0.116364pt;}
.ws19{word-spacing:0.144000pt;}
.ws22{word-spacing:0.159402pt;}
.ws31{word-spacing:0.174546pt;}
.ws2c{word-spacing:0.212535pt;}
.ws36{word-spacing:0.232727pt;}
.ws32{word-spacing:0.290909pt;}
.ws5d{word-spacing:0.349091pt;}
.ws89{word-spacing:0.407273pt;}
.ws26{word-spacing:0.425071pt;}
.wsb8{word-spacing:0.465455pt;}
.ws1a{word-spacing:0.480000pt;}
.ws63{word-spacing:0.523637pt;}
.ws6f{word-spacing:0.581819pt;}
.ws38{word-spacing:0.640001pt;}
.ws2a{word-spacing:0.690740pt;}
.ws9c{word-spacing:0.698182pt;}
.ws91{word-spacing:0.756364pt;}
.ws8b{word-spacing:0.814546pt;}
.ws6d{word-spacing:0.872728pt;}
.wsa8{word-spacing:0.930910pt;}
.ws47{word-spacing:0.978354pt;}
.ws46{word-spacing:0.989092pt;}
.wsba{word-spacing:1.041781pt;}
.ws8a{word-spacing:1.047274pt;}
.ws62{word-spacing:1.105455pt;}
.ws27{word-spacing:1.115811pt;}
.ws84{word-spacing:1.163637pt;}
.ws33{word-spacing:1.221819pt;}
.wsa5{word-spacing:1.280001pt;}
.ws96{word-spacing:1.338183pt;}
.ws6b{word-spacing:1.396365pt;}
.wsa1{word-spacing:1.454547pt;}
.ws69{word-spacing:1.512729pt;}
.wsa2{word-spacing:1.570910pt;}
.ws5e{word-spacing:1.629092pt;}
.ws100{word-spacing:1.687274pt;}
.wsa0{word-spacing:1.715226pt;}
.ws6e{word-spacing:1.745456pt;}
.ws53{word-spacing:1.803638pt;}
.ws81{word-spacing:1.861820pt;}
.ws54{word-spacing:1.920002pt;}
.ws3b{word-spacing:1.978183pt;}
.ws92{word-spacing:2.036365pt;}
.ws50{word-spacing:2.210911pt;}
.ws90{word-spacing:2.269093pt;}
.ws73{word-spacing:2.327275pt;}
.ws64{word-spacing:2.385457pt;}
.ws74{word-spacing:2.443638pt;}
.ws8f{word-spacing:2.560002pt;}
.ws48{word-spacing:2.850911pt;}
.wsad{word-spacing:3.025457pt;}
.wsb1{word-spacing:3.083639pt;}
.ws72{word-spacing:3.141821pt;}
.ws65{word-spacing:3.200003pt;}
.ws43{word-spacing:3.258185pt;}
.ws75{word-spacing:3.316366pt;}
.ws78{word-spacing:3.374548pt;}
.ws6c{word-spacing:3.432730pt;}
.wsa6{word-spacing:3.490912pt;}
.ws7d{word-spacing:3.607276pt;}
.ws3a{word-spacing:3.723639pt;}
.ws5c{word-spacing:3.781821pt;}
.ws77{word-spacing:3.840003pt;}
.wsae{word-spacing:3.898185pt;}
.wsaf{word-spacing:3.956367pt;}
.ws5f{word-spacing:4.014549pt;}
.ws60{word-spacing:4.072731pt;}
.wsa4{word-spacing:4.130913pt;}
.ws9a{word-spacing:4.189094pt;}
.ws87{word-spacing:4.363640pt;}
.ws28{word-spacing:4.463245pt;}
.wsc8{word-spacing:4.538186pt;}
.ws3d{word-spacing:4.712731pt;}
.ws1d{word-spacing:4.750833pt;}
.ws3c{word-spacing:4.770913pt;}
.ws44{word-spacing:4.945459pt;}
.ws35{word-spacing:5.352732pt;}
.ws41{word-spacing:5.527277pt;}
.ws7a{word-spacing:5.701823pt;}
.wsb5{word-spacing:5.876369pt;}
.ws68{word-spacing:6.050914pt;}
.wsb9{word-spacing:6.109096pt;}
.ws99{word-spacing:6.574551pt;}
.ws7b{word-spacing:7.040006pt;}
.wsb2{word-spacing:7.098188pt;}
.wsbb{word-spacing:7.738188pt;}
.wsb6{word-spacing:7.912734pt;}
.ws76{word-spacing:7.970916pt;}
.wse5{word-spacing:10.353091pt;}
.wscb{word-spacing:10.720486pt;}
.wsf4{word-spacing:10.744228pt;}
.wsed{word-spacing:10.895560pt;}
.wscd{word-spacing:11.072611pt;}
.wsd7{word-spacing:11.072652pt;}
.ws67{word-spacing:11.092805pt;}
.wsd3{word-spacing:11.566438pt;}
.wsf7{word-spacing:11.903446pt;}
.wsf5{word-spacing:12.131175pt;}
.wse8{word-spacing:12.615300pt;}
.wsfc{word-spacing:12.667887pt;}
.wse6{word-spacing:12.846242pt;}
.wsf1{word-spacing:12.846278pt;}
.wsee{word-spacing:12.846314pt;}
.wscf{word-spacing:13.380853pt;}
.wsd2{word-spacing:13.382428pt;}
.wse9{word-spacing:13.452118pt;}
.wsdd{word-spacing:13.558965pt;}
.wsfb{word-spacing:13.603455pt;}
.wsf6{word-spacing:13.603564pt;}
.wsfa{word-spacing:13.605348pt;}
.wse7{word-spacing:13.795170pt;}
.wsec{word-spacing:13.796869pt;}
.wseb{word-spacing:13.796979pt;}
.wsf8{word-spacing:13.800204pt;}
.ws9d{word-spacing:14.080012pt;}
.ws8c{word-spacing:14.460043pt;}
.wse1{word-spacing:14.485685pt;}
.wse3{word-spacing:14.488618pt;}
.ws97{word-spacing:14.489151pt;}
.ws95{word-spacing:14.490618pt;}
.ws5a{word-spacing:14.491018pt;}
.ws4e{word-spacing:14.656707pt;}
.ws57{word-spacing:15.182174pt;}
.wsce{word-spacing:15.267982pt;}
.wsd1{word-spacing:15.268033pt;}
.ws52{word-spacing:15.709104pt;}
.ws82{word-spacing:16.867818pt;}
.wsda{word-spacing:17.006676pt;}
.ws4c{word-spacing:17.161141pt;}
.ws88{word-spacing:17.559220pt;}
.ws8e{word-spacing:18.846969pt;}
.ws8d{word-spacing:18.849391pt;}
.ws4d{word-spacing:19.502474pt;}
.ws4b{word-spacing:19.502968pt;}
.ws85{word-spacing:19.566485pt;}
.ws58{word-spacing:20.247883pt;}
.ws59{word-spacing:20.808841pt;}
.ws83{word-spacing:22.729151pt;}
.ws55{word-spacing:24.216841pt;}
.ws7e{word-spacing:24.785475pt;}
.wsc5{word-spacing:50.477173pt;}
.ws2d{word-spacing:57.384800pt;}
.wsc6{word-spacing:63.760640pt;}
.wsf0{word-spacing:71.011980pt;}
.wsef{word-spacing:71.015585pt;}
.wsc7{word-spacing:74.493681pt;}
.wsbf{word-spacing:77.556428pt;}
.wsc4{word-spacing:78.169667pt;}
.wsd9{word-spacing:80.067538pt;}
.wsd5{word-spacing:83.031353pt;}
.wsd6{word-spacing:83.032994pt;}
.wsd8{word-spacing:83.036275pt;}
.wsd4{word-spacing:83.037916pt;}
.wsc2{word-spacing:85.307069pt;}
.wsfd{word-spacing:88.968963pt;}
.wsfe{word-spacing:88.972518pt;}
.wsff{word-spacing:88.974296pt;}
.wsc3{word-spacing:89.329897pt;}
.wsf2{word-spacing:128.639071pt;}
.wsca{word-spacing:147.859195pt;}
.wsf9{word-spacing:205.950188pt;}
.wsde{word-spacing:207.474066pt;}
.wsea{word-spacing:208.845375pt;}
.wse0{word-spacing:229.473847pt;}
.wsc0{word-spacing:252.567483pt;}
.wsc1{word-spacing:359.389390pt;}
.wsbe{word-spacing:411.113070pt;}
.wsbd{word-spacing:603.345957pt;}
.ws4f{word-spacing:1697.161635pt;}
._d{margin-left:-10.085671pt;}
._13{margin-left:-8.250190pt;}
._c{margin-left:-7.345237pt;}
._12{margin-left:-5.992732pt;}
._10{margin-left:-4.941450pt;}
._e{margin-left:-3.672619pt;}
._2{margin-left:-2.368000pt;}
._0{margin-left:-1.024000pt;}
._3{width:1.410459pt;}
._4{width:2.301275pt;}
._f{width:3.217367pt;}
._19{width:4.409427pt;}
._11{width:12.539593pt;}
._1e{width:13.474919pt;}
._16{width:14.595639pt;}
._a{width:15.552000pt;}
._b{width:16.512000pt;}
._7{width:17.600000pt;}
._8{width:19.008000pt;}
._5{width:19.946331pt;}
._6{width:21.743248pt;}
._21{width:22.900382pt;}
._18{width:24.304377pt;}
._1c{width:26.513475pt;}
._1f{width:28.526585pt;}
._14{width:29.672752pt;}
._1b{width:30.905979pt;}
._15{width:32.814573pt;}
._22{width:34.036392pt;}
._9{width:35.392000pt;}
._2d{width:36.359658pt;}
._20{width:38.318577pt;}
._32{width:40.901852pt;}
._43{width:43.112763pt;}
._3a{width:45.323674pt;}
._33{width:54.574591pt;}
._1a{width:58.181867pt;}
._17{width:63.761067pt;}
._1d{width:76.513067pt;}
._30{width:87.777148pt;}
._38{width:92.880432pt;}
._31{width:94.950220pt;}
._28{width:104.160976pt;}
._37{width:105.705824pt;}
._36{width:118.498971pt;}
._2e{width:121.891011pt;}
._34{width:137.937421pt;}
._26{width:165.585593pt;}
._2f{width:178.443785pt;}
._35{width:185.086286pt;}
._39{width:193.010211pt;}
._3f{width:205.263344pt;}
._3b{width:208.620585pt;}
._42{width:225.668104pt;}
._3e{width:228.307876pt;}
._41{width:236.599104pt;}
._3d{width:239.380174pt;}
._40{width:247.553281pt;}
._3c{width:250.501307pt;}
._2c{width:321.338450pt;}
._2b{width:373.120311pt;}
._24{width:386.909413pt;}
._2a{width:394.123965pt;}
._25{width:397.707912pt;}
._27{width:413.614890pt;}
._29{width:578.315119pt;}
._23{width:752.608797pt;}
._1{width:1166.202667pt;}
.fs20{font-size:26.663150pt;}
.fs1d{font-size:27.038701pt;}
.fs13{font-size:28.713252pt;}
.fs10{font-size:30.408000pt;}
.fsc{font-size:31.880533pt;}
.fs11{font-size:32.580311pt;}
.fs15{font-size:32.815133pt;}
.fs1f{font-size:35.550897pt;}
.fs1c{font-size:36.051632pt;}
.fs8{font-size:37.193600pt;}
.fs17{font-size:39.149239pt;}
.fse{font-size:40.381867pt;}
.fs12{font-size:41.018937pt;}
.fs18{font-size:41.946015pt;}
.fsa{font-size:42.507200pt;}
.fs21{font-size:42.661165pt;}
.fs1e{font-size:43.262048pt;}
.fsf{font-size:43.440342pt;}
.fsd{font-size:44.292800pt;}
.fs1a{font-size:44.345929pt;}
.fs1b{font-size:47.513950pt;}
.fs5{font-size:47.820800pt;}
.fs14{font-size:49.222906pt;}
.fs4{font-size:51.008533pt;}
.fs7{font-size:53.133867pt;}
.fs16{font-size:55.927926pt;}
.fs6{font-size:58.181867pt;}
.fsb{font-size:60.625600pt;}
.fs19{font-size:63.351827pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.234667pt;}
.fs9{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.520000pt;}
.y18{bottom:3.521333pt;}
.yd{bottom:4.161333pt;}
.ya{bottom:4.481333pt;}
.y23b{bottom:6.101505pt;}
.y273{bottom:8.572492pt;}
.y285{bottom:9.026108pt;}
.y268{bottom:11.202707pt;}
.y26c{bottom:11.326442pt;}
.y26a{bottom:11.326483pt;}
.y260{bottom:11.326534pt;}
.y2ba{bottom:11.361268pt;}
.y2a5{bottom:11.531854pt;}
.y23a{bottom:18.480290pt;}
.y2b4{bottom:21.632695pt;}
.y269{bottom:25.159206pt;}
.y25f{bottom:25.159257pt;}
.y26b{bottom:25.159576pt;}
.y272{bottom:25.306058pt;}
.y23c{bottom:25.487924pt;}
.y284{bottom:27.078882pt;}
.y2a0{bottom:29.150454pt;}
.y274{bottom:34.341258pt;}
.y244{bottom:37.144203pt;}
.y242{bottom:37.195328pt;}
.y2b5{bottom:47.219763pt;}
.y261{bottom:47.323769pt;}
.y243{bottom:48.538755pt;}
.y241{bottom:48.589880pt;}
.y245{bottom:49.033652pt;}
.y280{bottom:49.335126pt;}
.y23d{bottom:51.649844pt;}
.y28d{bottom:54.297739pt;}
.y2b8{bottom:61.510978pt;}
.y2a3{bottom:62.387877pt;}
.y275{bottom:63.580527pt;}
.y27f{bottom:64.005214pt;}
.y262{bottom:64.173635pt;}
.y266{bottom:64.898626pt;}
.y3b{bottom:65.484000pt;}
.y2a1{bottom:67.691743pt;}
.y240{bottom:69.308376pt;}
.y246{bottom:72.579380pt;}
.y2b9{bottom:73.081824pt;}
.y267{bottom:73.439563pt;}
.y2a4{bottom:73.958655pt;}
.y286{bottom:76.541924pt;}
.y23e{bottom:77.811764pt;}
.y27e{bottom:78.657198pt;}
.y263{bottom:81.014648pt;}
.y2b6{bottom:81.538884pt;}
.y276{bottom:92.819234pt;}
.y247{bottom:96.124890pt;}
.y2a2{bottom:97.704011pt;}
.y264{bottom:97.864102pt;}
.y7{bottom:103.361333pt;}
.y23f{bottom:103.973684pt;}
.y68{bottom:105.334667pt;}
.y8b{bottom:105.422667pt;}
.y3a{bottom:107.620000pt;}
.y265{bottom:114.713144pt;}
.y8a{bottom:115.400000pt;}
.y287{bottom:115.785366pt;}
.y2b7{bottom:115.869267pt;}
.y277{bottom:122.058222pt;}
.y67{bottom:124.304000pt;}
.y282{bottom:125.120000pt;}
.y6{bottom:125.761333pt;}
.y27d{bottom:133.989925pt;}
.y233{bottom:135.368315pt;}
.y2bc{bottom:138.924000pt;}
.y66{bottom:143.273333pt;}
.y39{bottom:145.730667pt;}
.y22c{bottom:150.365333pt;}
.y234{bottom:151.065467pt;}
.y278{bottom:151.283457pt;}
.y161{bottom:152.610667pt;}
.y258{bottom:152.800084pt;}
.y2af{bottom:154.306558pt;}
.y288{bottom:155.029443pt;}
.y26e{bottom:155.345333pt;}
.y1e8{bottom:155.829333pt;}
.y2bb{bottom:157.893333pt;}
.y65{bottom:162.241333pt;}
.y38{bottom:162.468000pt;}
.y239{bottom:163.274363pt;}
.y2b2{bottom:163.876649pt;}
.y29e{bottom:166.196162pt;}
.y28f{bottom:166.378667pt;}
.y235{bottom:166.762619pt;}
.y25d{bottom:167.811069pt;}
.y22b{bottom:169.334667pt;}
.y28c{bottom:169.564137pt;}
.y259{bottom:169.649949pt;}
.y231{bottom:169.756000pt;}
.yb6{bottom:171.365333pt;}
.y160{bottom:171.580000pt;}
.y1c7{bottom:172.885333pt;}
.y26d{bottom:174.313333pt;}
.y208{bottom:174.341333pt;}
.y1e7{bottom:174.798667pt;}
.y29c{bottom:176.288892pt;}
.y25e{bottom:178.915208pt;}
.y37{bottom:179.205333pt;}
.y89{bottom:179.757333pt;}
.y2b3{bottom:180.169751pt;}
.y279{bottom:180.521884pt;}
.y64{bottom:181.210667pt;}
.y236{bottom:182.459771pt;}
.y29f{bottom:182.555787pt;}
.y293{bottom:182.946667pt;}
.y1a{bottom:184.638667pt;}
.y25a{bottom:186.489830pt;}
.y2b0{bottom:188.626124pt;}
.y230{bottom:188.724000pt;}
.y1a4{bottom:189.321333pt;}
.y2a6{bottom:190.145333pt;}
.yb5{bottom:190.333333pt;}
.y188{bottom:190.473333pt;}
.y15f{bottom:190.548000pt;}
.y1c6{bottom:191.854667pt;}
.yd5{bottom:193.174667pt;}
.y207{bottom:193.309333pt;}
.y1e6{bottom:193.768000pt;}
.y289{bottom:194.272567pt;}
.y237{bottom:198.156705pt;}
.y88{bottom:198.725333pt;}
.y63{bottom:200.180000pt;}
.y292{bottom:201.916000pt;}
.yf8{bottom:202.976000pt;}
.y25b{bottom:203.339696pt;}
.y19{bottom:203.838667pt;}
.y29d{bottom:206.301159pt;}
.y24a{bottom:206.566667pt;}
.y22f{bottom:207.693333pt;}
.yb4{bottom:209.302667pt;}
.y11f{bottom:209.408000pt;}
.y187{bottom:209.441333pt;}
.y27a{bottom:209.761153pt;}
.y206{bottom:212.278667pt;}
.y36{bottom:212.680000pt;}
.y238{bottom:213.853857pt;}
.y87{bottom:217.694667pt;}
.y15e{bottom:218.856000pt;}
.y13e{bottom:219.148000pt;}
.y17{bottom:219.518667pt;}
.y25c{bottom:220.189973pt;}
.y1c5{bottom:221.466667pt;}
.y2b1{bottom:222.956507pt;}
.y1e5{bottom:225.293333pt;}
.y22e{bottom:226.662667pt;}
.yb3{bottom:228.272000pt;}
.y11e{bottom:228.377333pt;}
.y186{bottom:228.410667pt;}
.y62{bottom:229.157333pt;}
.y35{bottom:229.417333pt;}
.y28a{bottom:233.516645pt;}
.y86{bottom:236.664000pt;}
.y15d{bottom:237.824000pt;}
.y13d{bottom:238.117333pt;}
.y27b{bottom:238.999580pt;}
.y1c4{bottom:240.436000pt;}
.y256{bottom:242.202702pt;}
.y254{bottom:242.203113pt;}
.y205{bottom:243.346667pt;}
.y1e4{bottom:244.262667pt;}
.y34{bottom:246.154667pt;}
.yb2{bottom:247.240000pt;}
.y11d{bottom:247.346667pt;}
.y185{bottom:247.380000pt;}
.y61{bottom:248.126667pt;}
.y1a3{bottom:253.313333pt;}
.y255{bottom:253.690119pt;}
.y253{bottom:253.690530pt;}
.y85{bottom:255.632000pt;}
.y15c{bottom:256.793333pt;}
.y13c{bottom:257.086667pt;}
.y24b{bottom:258.276974pt;}
.yf7{bottom:259.013333pt;}
.y1c3{bottom:259.405333pt;}
.y2a7{bottom:261.396174pt;}
.y204{bottom:262.316000pt;}
.y33{bottom:262.892000pt;}
.yb1{bottom:266.209333pt;}
.y11c{bottom:266.314667pt;}
.y184{bottom:266.348000pt;}
.y60{bottom:267.096000pt;}
.y27c{bottom:268.238849pt;}
.y2aa{bottom:271.752418pt;}
.y1a2{bottom:272.282667pt;}
.y28b{bottom:272.760086pt;}
.y84{bottom:274.601333pt;}
.y24c{bottom:275.127252pt;}
.y297{bottom:275.591362pt;}
.y15b{bottom:275.762667pt;}
.y1e3{bottom:275.788000pt;}
.y250{bottom:275.851584pt;}
.y13b{bottom:276.054667pt;}
.yf6{bottom:277.982667pt;}
.y32{bottom:279.629333pt;}
.y203{bottom:281.284000pt;}
.y251{bottom:284.391708pt;}
.y295{bottom:284.885736pt;}
.yd4{bottom:285.074667pt;}
.yb0{bottom:285.178667pt;}
.y11b{bottom:285.284000pt;}
.y183{bottom:285.317333pt;}
.y5f{bottom:286.065333pt;}
.y2ab{bottom:287.258458pt;}
.y1c2{bottom:289.017333pt;}
.y298{bottom:291.152761pt;}
.y1a1{bottom:291.252000pt;}
.y24d{bottom:291.966721pt;}
.y15a{bottom:294.730667pt;}
.y13a{bottom:295.024000pt;}
.y2a8{bottom:295.715295pt;}
.y31{bottom:296.366667pt;}
.yf5{bottom:296.950667pt;}
.y291{bottom:297.937333pt;}
.yd3{bottom:304.042667pt;}
.yaf{bottom:304.146667pt;}
.y182{bottom:304.286667pt;}
.y5e{bottom:305.033333pt;}
.y1e2{bottom:307.314667pt;}
.y1c1{bottom:307.986667pt;}
.y24e{bottom:308.816998pt;}
.y1a0{bottom:310.220000pt;}
.y202{bottom:312.352000pt;}
.y30{bottom:313.104000pt;}
.y159{bottom:313.700000pt;}
.y139{bottom:313.993333pt;}
.y296{bottom:314.898004pt;}
.yf4{bottom:315.920000pt;}
.y290{bottom:316.906667pt;}
.y83{bottom:317.629333pt;}
.yd2{bottom:323.012000pt;}
.y181{bottom:323.256000pt;}
.y11a{bottom:323.397333pt;}
.y5d{bottom:324.002667pt;}
.y24f{bottom:325.666452pt;}
.y1e1{bottom:326.284000pt;}
.y1c0{bottom:326.954667pt;}
.y2f{bottom:329.841333pt;}
.y2a9{bottom:330.045678pt;}
.y201{bottom:331.321333pt;}
.y158{bottom:332.669333pt;}
.y138{bottom:332.962667pt;}
.y11{bottom:333.760000pt;}
.yf3{bottom:334.889333pt;}
.y19f{bottom:340.226667pt;}
.yae{bottom:342.101333pt;}
.y5c{bottom:342.972000pt;}
.y2e{bottom:346.578667pt;}
.y257{bottom:346.868076pt;}
.y252{bottom:346.868488pt;}
.y180{bottom:351.486667pt;}
.y157{bottom:351.638667pt;}
.y137{bottom:351.930667pt;}
.y29b{bottom:352.827717pt;}
.y299{bottom:352.827734pt;}
.y10{bottom:352.960000pt;}
.yf2{bottom:353.857333pt;}
.y2ae{bottom:355.018291pt;}
.y2ac{bottom:355.018309pt;}
.y1bf{bottom:356.568000pt;}
.y1e0{bottom:357.809333pt;}
.y19e{bottom:359.196000pt;}
.yd1{bottom:359.816000pt;}
.y5b{bottom:361.940000pt;}
.y200{bottom:362.389333pt;}
.y2d{bottom:363.316000pt;}
.ye{bottom:368.640000pt;}
.yd0{bottom:369.794667pt;}
.y29a{bottom:370.243575pt;}
.y17f{bottom:370.456000pt;}
.y156{bottom:370.606667pt;}
.yf1{bottom:372.826667pt;}
.y119{bottom:373.350667pt;}
.y1be{bottom:375.536000pt;}
.y1df{bottom:376.778667pt;}
.y19d{bottom:378.165333pt;}
.y2ad{bottom:378.584644pt;}
.y82{bottom:379.626667pt;}
.y2c{bottom:380.053333pt;}
.y5a{bottom:380.909333pt;}
.y1ff{bottom:381.358667pt;}
.y17e{bottom:389.424000pt;}
.y155{bottom:389.576000pt;}
.y136{bottom:389.790667pt;}
.yad{bottom:391.689333pt;}
.yf0{bottom:391.796000pt;}
.y118{bottom:392.318667pt;}
.y1bd{bottom:394.505333pt;}
.y281{bottom:395.978667pt;}
.y2b{bottom:396.789333pt;}
.y19c{bottom:397.133333pt;}
.y81{bottom:398.596000pt;}
.y59{bottom:399.878667pt;}
.y1fe{bottom:400.326667pt;}
.y3{bottom:403.518667pt;}
.yaa{bottom:407.598667pt;}
.y1de{bottom:408.304000pt;}
.y17d{bottom:408.393333pt;}
.yef{bottom:410.765333pt;}
.y117{bottom:411.288000pt;}
.ya8{bottom:412.617333pt;}
.y2a{bottom:413.526667pt;}
.ya9{bottom:416.042667pt;}
.y19b{bottom:416.102667pt;}
.ycf{bottom:416.845333pt;}
.y80{bottom:417.564000pt;}
.y58{bottom:418.846667pt;}
.yab{bottom:419.217333pt;}
.yac{bottom:421.345333pt;}
.y1bc{bottom:424.118667pt;}
.y1dd{bottom:427.273333pt;}
.y17c{bottom:427.362667pt;}
.y154{bottom:427.850667pt;}
.y271{bottom:428.232000pt;}
.yee{bottom:429.733333pt;}
.y116{bottom:430.257333pt;}
.y29{bottom:430.264000pt;}
.y1fd{bottom:431.394667pt;}
.y19a{bottom:435.072000pt;}
.yce{bottom:435.814667pt;}
.y7f{bottom:436.533333pt;}
.y135{bottom:439.157333pt;}
.y1bb{bottom:443.086667pt;}
.ya7{bottom:445.645333pt;}
.y1dc{bottom:446.242667pt;}
.y17b{bottom:446.330667pt;}
.y28{bottom:447.001333pt;}
.y57{bottom:447.825333pt;}
.yed{bottom:448.702667pt;}
.y115{bottom:449.225333pt;}
.y1fc{bottom:450.364000pt;}
.ycd{bottom:454.784000pt;}
.y7e{bottom:455.502667pt;}
.ya6{bottom:455.624000pt;}
.y134{bottom:458.126667pt;}
.y27{bottom:463.738667pt;}
.y199{bottom:465.077333pt;}
.y17a{bottom:465.300000pt;}
.y56{bottom:466.794667pt;}
.yec{bottom:467.672000pt;}
.y114{bottom:468.194667pt;}
.y1fb{bottom:469.333333pt;}
.y1ba{bottom:472.700000pt;}
.y5{bottom:473.600000pt;}
.ycc{bottom:473.752000pt;}
.y16{bottom:473.921333pt;}
.y1db{bottom:477.768000pt;}
.y153{bottom:478.741333pt;}
.y226{bottom:480.193333pt;}
.y7d{bottom:483.669333pt;}
.y198{bottom:484.046667pt;}
.y179{bottom:484.269333pt;}
.y55{bottom:485.764000pt;}
.yeb{bottom:486.640000pt;}
.y133{bottom:489.104000pt;}
.y1b9{bottom:491.668000pt;}
.ya5{bottom:491.844000pt;}
.ycb{bottom:492.721333pt;}
.y113{bottom:496.392000pt;}
.y1da{bottom:496.737333pt;}
.y224{bottom:496.930667pt;}
.y152{bottom:497.709333pt;}
.y1fa{bottom:500.401333pt;}
.y7c{bottom:502.638667pt;}
.y197{bottom:503.016000pt;}
.y178{bottom:503.238667pt;}
.y54{bottom:504.732000pt;}
.yea{bottom:505.609333pt;}
.y132{bottom:508.073333pt;}
.y1b8{bottom:510.637333pt;}
.ya4{bottom:510.813333pt;}
.yca{bottom:511.690667pt;}
.y225{bottom:513.668000pt;}
.y112{bottom:515.361333pt;}
.y1d9{bottom:515.706667pt;}
.y151{bottom:516.678667pt;}
.y1f9{bottom:519.370667pt;}
.y26{bottom:520.148000pt;}
.y22a{bottom:520.418667pt;}
.y7b{bottom:521.608000pt;}
.y177{bottom:522.206667pt;}
.y4{bottom:522.558667pt;}
.y15{bottom:522.880000pt;}
.y53{bottom:523.701333pt;}
.ye9{bottom:524.578667pt;}
.y131{bottom:527.042667pt;}
.yc9{bottom:530.658667pt;}
.y223{bottom:530.937333pt;}
.y196{bottom:533.022667pt;}
.y111{bottom:534.330667pt;}
.y150{bottom:535.648000pt;}
.ya3{bottom:538.905333pt;}
.ya2{bottom:539.116000pt;}
.y228{bottom:539.388000pt;}
.y1b7{bottom:540.249333pt;}
.y7a{bottom:540.576000pt;}
.y176{bottom:541.176000pt;}
.y52{bottom:542.670667pt;}
.y229{bottom:542.914667pt;}
.ye8{bottom:543.546667pt;}
.y130{bottom:546.010667pt;}
.y1d8{bottom:547.232000pt;}
.y221{bottom:547.674667pt;}
.y1f8{bottom:550.438667pt;}
.y195{bottom:551.990667pt;}
.y110{bottom:553.300000pt;}
.y14f{bottom:554.616000pt;}
.ya1{bottom:557.874667pt;}
.y227{bottom:558.357333pt;}
.y1b6{bottom:559.218667pt;}
.y79{bottom:559.545333pt;}
.y51{bottom:561.638667pt;}
.ye7{bottom:562.516000pt;}
.y222{bottom:564.412000pt;}
.y1d7{bottom:566.201333pt;}
.y175{bottom:569.406667pt;}
.y194{bottom:570.960000pt;}
.y10f{bottom:572.268000pt;}
.y14e{bottom:573.585333pt;}
.yc8{bottom:575.324000pt;}
.y9f{bottom:576.842667pt;}
.y12f{bottom:576.989333pt;}
.ya0{bottom:577.054667pt;}
.y50{bottom:580.608000pt;}
.ye6{bottom:581.485333pt;}
.y1d6{bottom:585.170667pt;}
.y174{bottom:588.376000pt;}
.y220{bottom:588.449333pt;}
.y1b5{bottom:588.832000pt;}
.y294{bottom:589.574667pt;}
.y14{bottom:589.758667pt;}
.y193{bottom:589.929333pt;}
.y10e{bottom:591.237333pt;}
.y14d{bottom:592.554667pt;}
.y2{bottom:593.598667pt;}
.y12e{bottom:595.957333pt;}
.y78{bottom:597.613333pt;}
.y28e{bottom:598.088000pt;}
.y4f{bottom:599.577333pt;}
.y173{bottom:607.345333pt;}
.y1b4{bottom:607.800000pt;}
.y9c{bottom:608.276000pt;}
.y192{bottom:608.898667pt;}
.y21f{bottom:609.876000pt;}
.ye5{bottom:611.438667pt;}
.y1d5{bottom:616.696000pt;}
.y9e{bottom:618.254667pt;}
.y4e{bottom:618.545333pt;}
.y10d{bottom:619.434667pt;}
.y1f7{bottom:619.444000pt;}
.y14c{bottom:620.861333pt;}
.y172{bottom:626.313333pt;}
.y9b{bottom:628.101333pt;}
.y9d{bottom:629.422667pt;}
.y283{bottom:630.340000pt;}
.ye4{bottom:630.408000pt;}
.y8{bottom:630.720000pt;}
.y13{bottom:631.040000pt;}
.y1d4{bottom:635.665333pt;}
.y12d{bottom:635.981333pt;}
.y1b3{bottom:637.413333pt;}
.y4d{bottom:637.514667pt;}
.y10c{bottom:638.404000pt;}
.y1f6{bottom:638.413333pt;}
.y191{bottom:638.904000pt;}
.y14b{bottom:639.830667pt;}
.yc7{bottom:640.482667pt;}
.y25{bottom:641.428000pt;}
.y171{bottom:645.282667pt;}
.y77{bottom:648.020000pt;}
.ye3{bottom:649.377333pt;}
.y1d3{bottom:654.633333pt;}
.y12c{bottom:654.950667pt;}
.y1b2{bottom:656.381333pt;}
.y4c{bottom:656.484000pt;}
.y10b{bottom:657.373333pt;}
.y1f5{bottom:657.381333pt;}
.y190{bottom:657.873333pt;}
.y14a{bottom:658.798667pt;}
.yc6{bottom:659.450667pt;}
.y170{bottom:664.252000pt;}
.y1{bottom:665.598667pt;}
.y12{bottom:665.920000pt;}
.y76{bottom:666.988000pt;}
.y24{bottom:668.128000pt;}
.ye2{bottom:668.346667pt;}
.y21e{bottom:668.466667pt;}
.y99{bottom:674.121333pt;}
.y10a{bottom:676.341333pt;}
.y18f{bottom:676.842667pt;}
.y149{bottom:677.768000pt;}
.yc5{bottom:678.420000pt;}
.y12b{bottom:682.978667pt;}
.y16f{bottom:683.220000pt;}
.y249{bottom:683.420000pt;}
.y9a{bottom:684.098667pt;}
.y4b{bottom:685.462667pt;}
.y75{bottom:685.957333pt;}
.y1b1{bottom:685.994667pt;}
.y1d2{bottom:686.160000pt;}
.ye1{bottom:687.314667pt;}
.y21d{bottom:687.436000pt;}
.y1f4{bottom:688.449333pt;}
.y98{bottom:693.946667pt;}
.y109{bottom:695.310667pt;}
.y23{bottom:695.625333pt;}
.y18e{bottom:695.812000pt;}
.y148{bottom:696.737333pt;}
.yc4{bottom:697.389333pt;}
.y12a{bottom:701.948000pt;}
.y248{bottom:702.388000pt;}
.y4a{bottom:704.430667pt;}
.y74{bottom:704.926667pt;}
.y1b0{bottom:704.964000pt;}
.y1d1{bottom:705.129333pt;}
.ye0{bottom:706.284000pt;}
.y21c{bottom:706.405333pt;}
.y1f3{bottom:707.418667pt;}
.y16e{bottom:711.452000pt;}
.y108{bottom:714.280000pt;}
.y18d{bottom:714.780000pt;}
.y22{bottom:715.152000pt;}
.yc3{bottom:716.357333pt;}
.y129{bottom:720.917333pt;}
.y49{bottom:723.400000pt;}
.y97{bottom:723.760000pt;}
.y73{bottom:723.894667pt;}
.ydf{bottom:725.253333pt;}
.y21b{bottom:725.373333pt;}
.y16d{bottom:730.421333pt;}
.y147{bottom:730.776000pt;}
.y107{bottom:733.248000pt;}
.y18c{bottom:733.749333pt;}
.y1af{bottom:734.576000pt;}
.y232{bottom:734.641333pt;}
.yc2{bottom:735.326667pt;}
.y1d0{bottom:736.654667pt;}
.y1f2{bottom:738.486667pt;}
.y22d{bottom:739.149333pt;}
.y21{bottom:741.852000pt;}
.y48{bottom:742.369333pt;}
.y96{bottom:742.729333pt;}
.y72{bottom:742.864000pt;}
.yde{bottom:744.221333pt;}
.y21a{bottom:744.342667pt;}
.y128{bottom:748.945333pt;}
.y16c{bottom:749.389333pt;}
.y106{bottom:752.217333pt;}
.y18b{bottom:752.718667pt;}
.y1ae{bottom:753.545333pt;}
.yc1{bottom:754.296000pt;}
.y1cf{bottom:755.624000pt;}
.y1f1{bottom:757.456000pt;}
.y270{bottom:758.229333pt;}
.y47{bottom:761.337333pt;}
.y71{bottom:761.833333pt;}
.ydd{bottom:763.190667pt;}
.y219{bottom:763.312000pt;}
.y146{bottom:764.813333pt;}
.y127{bottom:767.914667pt;}
.y16b{bottom:768.358667pt;}
.y20{bottom:769.349333pt;}
.y105{bottom:771.186667pt;}
.y18a{bottom:771.686667pt;}
.y1ad{bottom:772.513333pt;}
.yc0{bottom:773.265333pt;}
.y1ce{bottom:774.593333pt;}
.y1f0{bottom:776.425333pt;}
.y26f{bottom:777.198667pt;}
.y46{bottom:780.306667pt;}
.y95{bottom:780.684000pt;}
.y70{bottom:780.801333pt;}
.ydc{bottom:782.160000pt;}
.y218{bottom:782.281333pt;}
.y126{bottom:786.882667pt;}
.y1f{bottom:788.876000pt;}
.ybf{bottom:792.233333pt;}
.y16a{bottom:796.589333pt;}
.y45{bottom:799.276000pt;}
.y104{bottom:799.384000pt;}
.y6f{bottom:799.770667pt;}
.ydb{bottom:801.128000pt;}
.y1ac{bottom:802.126667pt;}
.y145{bottom:803.089333pt;}
.y217{bottom:803.224000pt;}
.yc{bottom:803.838667pt;}
.y125{bottom:805.852000pt;}
.y1cd{bottom:806.118667pt;}
.y1ef{bottom:807.493333pt;}
.ybe{bottom:811.202667pt;}
.y169{bottom:815.558667pt;}
.y1e{bottom:815.576000pt;}
.y189{bottom:817.736000pt;}
.y44{bottom:818.245333pt;}
.y103{bottom:818.353333pt;}
.y6e{bottom:818.740000pt;}
.y1ab{bottom:821.094667pt;}
.y124{bottom:824.821333pt;}
.y1cc{bottom:825.088000pt;}
.y1ee{bottom:826.461333pt;}
.ybd{bottom:830.172000pt;}
.y94{bottom:830.828000pt;}
.y168{bottom:834.528000pt;}
.y43{bottom:837.213333pt;}
.y102{bottom:837.322667pt;}
.y20e{bottom:838.848000pt;}
.yda{bottom:841.862667pt;}
.y123{bottom:843.789333pt;}
.y1ed{bottom:845.430667pt;}
.ybc{bottom:849.140000pt;}
.y93{bottom:849.797333pt;}
.y1aa{bottom:850.708000pt;}
.y216{bottom:851.188000pt;}
.y144{bottom:853.421333pt;}
.y167{bottom:853.496000pt;}
.y42{bottom:856.182667pt;}
.y1cb{bottom:856.613333pt;}
.y20d{bottom:857.817333pt;}
.y6d{bottom:862.044000pt;}
.y122{bottom:862.758667pt;}
.y100{bottom:863.678667pt;}
.y101{bottom:865.104000pt;}
.ybb{bottom:868.109333pt;}
.y92{bottom:868.766667pt;}
.y1a9{bottom:869.677333pt;}
.y215{bottom:870.157333pt;}
.y143{bottom:872.389333pt;}
.y166{bottom:872.465333pt;}
.y1d{bottom:874.396000pt;}
.yff{bottom:874.428000pt;}
.y41{bottom:875.152000pt;}
.y1ca{bottom:875.582667pt;}
.y1ec{bottom:876.498667pt;}
.y20c{bottom:876.786667pt;}
.yb{bottom:877.760000pt;}
.yfe{bottom:880.245333pt;}
.y121{bottom:881.728000pt;}
.yba{bottom:887.078667pt;}
.y91{bottom:887.734667pt;}
.y1a8{bottom:888.645333pt;}
.y214{bottom:889.126667pt;}
.y142{bottom:891.358667pt;}
.y165{bottom:891.434667pt;}
.y40{bottom:894.120000pt;}
.y1eb{bottom:895.468000pt;}
.y9{bottom:895.678667pt;}
.yd9{bottom:897.900000pt;}
.y120{bottom:900.697333pt;}
.y1c{bottom:905.080000pt;}
.yb9{bottom:906.046667pt;}
.y1c9{bottom:907.108000pt;}
.y20b{bottom:907.710667pt;}
.y213{bottom:908.094667pt;}
.y141{bottom:910.328000pt;}
.y164{bottom:910.404000pt;}
.y3f{bottom:913.089333pt;}
.y90{bottom:915.826667pt;}
.yfd{bottom:916.529333pt;}
.yd8{bottom:916.869333pt;}
.y1a7{bottom:918.258667pt;}
.y6c{bottom:919.665333pt;}
.yb8{bottom:925.016000pt;}
.y1c8{bottom:926.077333pt;}
.y1ea{bottom:926.536000pt;}
.y20a{bottom:926.680000pt;}
.y212{bottom:927.064000pt;}
.y140{bottom:929.296000pt;}
.y163{bottom:929.372000pt;}
.y3e{bottom:932.058667pt;}
.y8f{bottom:934.796000pt;}
.y1b{bottom:935.765333pt;}
.yd7{bottom:935.838667pt;}
.y1a6{bottom:937.226667pt;}
.y6b{bottom:938.634667pt;}
.yfb{bottom:942.689333pt;}
.yb7{bottom:943.985333pt;}
.yfc{bottom:944.114667pt;}
.y1e9{bottom:945.504000pt;}
.y209{bottom:945.648000pt;}
.y211{bottom:946.564000pt;}
.y13f{bottom:948.265333pt;}
.y162{bottom:948.341333pt;}
.y3d{bottom:951.026667pt;}
.yfa{bottom:953.438667pt;}
.y8e{bottom:953.765333pt;}
.yd6{bottom:954.806667pt;}
.y1a5{bottom:956.196000pt;}
.y6a{bottom:957.604000pt;}
.yf9{bottom:959.256000pt;}
.y210{bottom:966.064000pt;}
.y69{bottom:976.572000pt;}
.y8d{bottom:980.174667pt;}
.y20f{bottom:987.008000pt;}
.y8c{bottom:990.153333pt;}
.y3c{bottom:995.541333pt;}
.h6{height:16.318667pt;}
.h5{height:16.320000pt;}
.h4{height:19.198667pt;}
.h30{height:23.262342pt;}
.h34{height:24.611350pt;}
.h43{height:26.663173pt;}
.h3f{height:27.038724pt;}
.h39{height:29.949455pt;}
.h2a{height:30.137605pt;}
.h32{height:30.764203pt;}
.h45{height:30.808496pt;}
.h28{height:30.860227pt;}
.h22{height:31.157778pt;}
.h41{height:31.242434pt;}
.h44{height:31.995874pt;}
.h40{height:32.446536pt;}
.h2f{height:32.536816pt;}
.h2e{height:32.580257pt;}
.h3d{height:33.924960pt;}
.hd{height:34.614699pt;}
.hb{height:36.874903pt;}
.h33{height:36.917179pt;}
.h24{height:40.378215pt;}
.h12{height:41.250943pt;}
.h36{height:41.890017pt;}
.h38{height:41.945945pt;}
.h1c{height:42.240035pt;}
.h10{height:42.647308pt;}
.h17{height:43.082702pt;}
.h1d{height:43.636400pt;}
.hf{height:44.250180pt;}
.h11{height:45.469200pt;}
.h3b{height:47.450519pt;}
.h3c{height:47.513870pt;}
.hc{height:48.617488pt;}
.h37{height:49.572560pt;}
.h26{height:51.980227pt;}
.he{height:53.100068pt;}
.ha{height:53.236408pt;}
.h20{height:53.782894pt;}
.h2c{height:54.339600pt;}
.h1f{height:57.337733pt;}
.h9{height:58.341376pt;}
.h2{height:66.750000pt;}
.h2b{height:67.745561pt;}
.h29{height:67.750894pt;}
.h3{height:77.424437pt;}
.h15{height:81.626702pt;}
.h13{height:81.632035pt;}
.h1a{height:82.033975pt;}
.h27{height:82.039308pt;}
.h8{height:84.011152pt;}
.h23{height:87.480400pt;}
.h19{height:91.366894pt;}
.h1e{height:97.252400pt;}
.h14{height:99.073561pt;}
.h16{height:99.078894pt;}
.h1b{height:127.233975pt;}
.h18{height:127.669369pt;}
.h21{height:128.319067pt;}
.h25{height:165.615067pt;}
.h2d{height:225.646560pt;}
.h35{height:283.494880pt;}
.h3a{height:321.921000pt;}
.h31{height:363.349960pt;}
.h3e{height:390.139800pt;}
.h42{height:398.102600pt;}
.h7{height:1122.520000pt;}
.h0{height:1122.558667pt;}
.h1{height:1122.666667pt;}
.w1b{width:19.520000pt;}
.w17{width:24.958667pt;}
.w11{width:26.560000pt;}
.w6{width:27.520000pt;}
.w1c{width:29.438667pt;}
.wf{width:31.040000pt;}
.w14{width:33.918667pt;}
.w3{width:37.758667pt;}
.w1a{width:38.080000pt;}
.w1d{width:42.560000pt;}
.w18{width:43.520000pt;}
.w21{width:46.080000pt;}
.w15{width:48.000000pt;}
.w23{width:48.320000pt;}
.w20{width:49.918667pt;}
.w4{width:54.398667pt;}
.w19{width:58.558667pt;}
.w22{width:59.518667pt;}
.wc{width:61.758667pt;}
.w12{width:62.080000pt;}
.w9{width:64.000000pt;}
.wd{width:66.240000pt;}
.w1f{width:69.440000pt;}
.w1e{width:71.040000pt;}
.w24{width:75.520000pt;}
.we{width:81.918667pt;}
.w8{width:82.240000pt;}
.w10{width:89.918667pt;}
.w16{width:93.438667pt;}
.wa{width:97.918667pt;}
.w13{width:98.560000pt;}
.w7{width:102.080000pt;}
.w5{width:113.598667pt;}
.w2{width:119.678667pt;}
.wb{width:124.160000pt;}
.w27{width:283.965840pt;}
.w29{width:384.542560pt;}
.w2a{width:414.125533pt;}
.w2c{width:562.027200pt;}
.w2b{width:562.027480pt;}
.w28{width:585.683080pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.w25{width:793.701333pt;}
.w26{width:794.000000pt;}
.x0{left:0.000000pt;}
.x120{left:9.882665pt;}
.x122{left:12.825121pt;}
.x11d{left:14.863186pt;}
.x11f{left:16.355506pt;}
.x11c{left:21.336190pt;}
.x123{left:23.060824pt;}
.x12d{left:31.914453pt;}
.x11e{left:33.940676pt;}
.x131{left:38.601021pt;}
.x121{left:41.216987pt;}
.x12c{left:42.234445pt;}
.x126{left:43.909762pt;}
.x12a{left:46.284497pt;}
.x2{left:49.918667pt;}
.x1{left:51.840000pt;}
.x124{left:64.484839pt;}
.xc{left:65.600000pt;}
.x12e{left:71.336554pt;}
.x1e{left:75.838667pt;}
.x132{left:77.474780pt;}
.x125{left:80.929009pt;}
.x22{left:86.398667pt;}
.x127{left:94.104346pt;}
.x6e{left:98.316000pt;}
.x20{left:99.838667pt;}
.x23{left:102.398667pt;}
.x3f{left:105.384000pt;}
.x31{left:106.517333pt;}
.xac{left:107.854667pt;}
.xd1{left:110.296000pt;}
.x103{left:113.710667pt;}
.x3d{left:114.973333pt;}
.x1f{left:116.798667pt;}
.x5e{left:119.289333pt;}
.xf3{left:121.290667pt;}
.x8a{left:123.612000pt;}
.x3{left:124.797333pt;}
.x13{left:126.398667pt;}
.x115{left:128.337333pt;}
.x24{left:129.278667pt;}
.x114{left:130.272000pt;}
.xd2{left:132.537333pt;}
.x87{left:133.988000pt;}
.x3b{left:135.130667pt;}
.x113{left:136.133333pt;}
.x8c{left:137.204000pt;}
.x4{left:140.797333pt;}
.x32{left:142.152000pt;}
.x88{left:143.057333pt;}
.x8e{left:144.272000pt;}
.x102{left:146.076000pt;}
.x1d{left:147.837333pt;}
.x8b{left:149.249333pt;}
.x14{left:150.398667pt;}
.x95{left:151.421333pt;}
.xcb{left:153.409333pt;}
.xb6{left:154.461333pt;}
.x5{left:156.798667pt;}
.x10a{left:158.305333pt;}
.xd{left:160.958667pt;}
.x119{left:162.026667pt;}
.x37{left:163.358667pt;}
.x25{left:165.758667pt;}
.xa9{left:167.408000pt;}
.x12f{left:168.431494pt;}
.x96{left:169.390667pt;}
.x8d{left:170.769333pt;}
.xaf{left:173.420000pt;}
.x107{left:175.528000pt;}
.xa6{left:176.665333pt;}
.xa5{left:178.570667pt;}
.x8f{left:180.197333pt;}
.xd9{left:181.200000pt;}
.xfd{left:184.824000pt;}
.x12b{left:187.506667pt;}
.x90{left:188.424000pt;}
.x98{left:191.197333pt;}
.x97{left:192.193333pt;}
.xb1{left:193.593333pt;}
.xee{left:196.430667pt;}
.xb0{left:198.965333pt;}
.x3c{left:201.018667pt;}
.x116{left:202.732000pt;}
.x5f{left:204.396000pt;}
.x7d{left:206.882667pt;}
.x4c{left:209.400000pt;}
.x106{left:210.648000pt;}
.x60{left:211.668000pt;}
.x4d{left:216.673333pt;}
.x61{left:218.568000pt;}
.x99{left:222.869333pt;}
.x4e{left:225.302667pt;}
.x81{left:229.082667pt;}
.xec{left:230.441333pt;}
.x15{left:233.278667pt;}
.x26{left:234.240000pt;}
.xca{left:236.377333pt;}
.xef{left:238.893333pt;}
.x62{left:240.013333pt;}
.x4f{left:241.205333pt;}
.xe{left:242.558667pt;}
.xbf{left:243.874667pt;}
.xe2{left:245.154667pt;}
.x50{left:248.477333pt;}
.x117{left:250.605333pt;}
.x9a{left:252.794667pt;}
.x63{left:254.558667pt;}
.x16{left:257.278667pt;}
.xb2{left:258.432000pt;}
.x64{left:261.457333pt;}
.xe8{left:262.389333pt;}
.x9d{left:263.618667pt;}
.x9b{left:265.285333pt;}
.xde{left:268.085333pt;}
.x38{left:270.332000pt;}
.x51{left:271.653333pt;}
.x9c{left:273.532000pt;}
.x84{left:274.757333pt;}
.x6{left:276.160000pt;}
.x130{left:277.742853pt;}
.xad{left:278.713333pt;}
.x52{left:280.282667pt;}
.xcf{left:281.969333pt;}
.xf9{left:284.049333pt;}
.xfa{left:285.232000pt;}
.x9e{left:287.256000pt;}
.x27{left:290.238667pt;}
.x53{left:294.828000pt;}
.x36{left:297.153333pt;}
.xe6{left:299.126667pt;}
.xf{left:301.120000pt;}
.xae{left:305.694667pt;}
.x118{left:306.949333pt;}
.x28{left:307.838667pt;}
.xf6{left:309.609333pt;}
.xa0{left:311.460000pt;}
.xe7{left:312.881333pt;}
.x7{left:314.558667pt;}
.x11a{left:315.773333pt;}
.x128{left:316.718316pt;}
.x35{left:321.410667pt;}
.xe9{left:322.988000pt;}
.xeb{left:324.964000pt;}
.x7e{left:326.380000pt;}
.x65{left:328.902667pt;}
.xf7{left:330.408000pt;}
.x9f{left:331.592000pt;}
.x17{left:333.758667pt;}
.x29{left:334.718667pt;}
.xcc{left:337.166667pt;}
.x21{left:339.838667pt;}
.x7f{left:342.276000pt;}
.x33{left:344.180000pt;}
.x112{left:346.394667pt;}
.xbd{left:349.064000pt;}
.x34{left:350.012000pt;}
.x66{left:352.280000pt;}
.xa1{left:355.056000pt;}
.xf8{left:356.074667pt;}
.x39{left:360.740000pt;}
.xea{left:365.446667pt;}
.x67{left:366.825333pt;}
.x8{left:368.640000pt;}
.x3a{left:369.849333pt;}
.xa2{left:373.077333pt;}
.xf2{left:375.390667pt;}
.xe1{left:376.441333pt;}
.x48{left:379.902667pt;}
.x10d{left:382.526667pt;}
.x6f{left:384.914667pt;}
.xfb{left:385.970667pt;}
.x49{left:387.174667pt;}
.x18{left:388.798667pt;}
.x3e{left:390.926667pt;}
.x10{left:392.000000pt;}
.xcd{left:394.102667pt;}
.x4a{left:395.540000pt;}
.x6d{left:397.994667pt;}
.x111{left:400.130667pt;}
.x2a{left:401.278667pt;}
.x4b{left:402.813333pt;}
.xa3{left:404.201333pt;}
.xce{left:405.152000pt;}
.xd0{left:406.780000pt;}
.xb7{left:408.168000pt;}
.xaa{left:413.233333pt;}
.x109{left:417.134667pt;}
.xd6{left:418.456000pt;}
.xe0{left:421.302667pt;}
.xb8{left:422.713333pt;}
.xb9{left:430.302667pt;}
.x10e{left:433.474667pt;}
.xff{left:435.750667pt;}
.x93{left:438.114667pt;}
.xf0{left:440.393333pt;}
.xd7{left:441.494667pt;}
.xe3{left:442.638667pt;}
.xba{left:444.848000pt;}
.x54{left:446.358667pt;}
.x2b{left:448.320000pt;}
.xbb{left:452.437333pt;}
.x55{left:453.630667pt;}
.xed{left:454.613333pt;}
.xda{left:456.626667pt;}
.xdd{left:458.417333pt;}
.x56{left:462.261333pt;}
.x94{left:463.752000pt;}
.x7b{left:465.318667pt;}
.xbc{left:466.982667pt;}
.xd4{left:469.568000pt;}
.x40{left:471.320000pt;}
.x7c{left:473.588000pt;}
.xc1{left:475.769333pt;}
.x57{left:476.806667pt;}
.x41{left:478.593333pt;}
.x101{left:481.653333pt;}
.x9{left:482.558667pt;}
.x19{left:484.798667pt;}
.x42{left:485.796000pt;}
.xd8{left:489.397333pt;}
.xc2{left:490.314667pt;}
.x2c{left:492.160000pt;}
.x43{left:493.069333pt;}
.x6a{left:495.265333pt;}
.x80{left:497.805333pt;}
.x10f{left:498.844000pt;}
.x44{left:500.272000pt;}
.x129{left:503.317223pt;}
.xa{left:505.278667pt;}
.x45{left:507.545333pt;}
.x58{left:508.610667pt;}
.x6b{left:509.810667pt;}
.x11{left:510.718667pt;}
.xc3{left:512.097333pt;}
.x1a{left:515.838667pt;}
.x46{left:517.529333pt;}
.x10b{left:518.649333pt;}
.x59{left:523.156000pt;}
.x47{left:524.802667pt;}
.xc0{left:526.889333pt;}
.x6c{left:531.673333pt;}
.xb3{left:536.566667pt;}
.x74{left:537.818667pt;}
.x78{left:541.824000pt;}
.x2d{left:544.958667pt;}
.xe4{left:546.593333pt;}
.xd5{left:548.312000pt;}
.xb4{left:549.442667pt;}
.x105{left:552.878667pt;}
.x68{left:555.866667pt;}
.x75{left:560.032000pt;}
.x1b{left:561.278667pt;}
.x85{left:564.048000pt;}
.x76{left:567.698667pt;}
.xc4{left:568.846667pt;}
.x69{left:570.412000pt;}
.x12{left:571.518667pt;}
.x86{left:576.181333pt;}
.x10c{left:579.586667pt;}
.x77{left:582.245333pt;}
.xc5{left:583.392000pt;}
.x110{left:585.698667pt;}
.xbe{left:586.896000pt;}
.x2e{left:590.718667pt;}
.xfc{left:591.816000pt;}
.x79{left:594.017333pt;}
.xc6{left:597.361333pt;}
.xb{left:601.918667pt;}
.xc7{left:604.057333pt;}
.xa7{left:607.165333pt;}
.x7a{left:608.562667pt;}
.xf4{left:611.762667pt;}
.x91{left:613.072000pt;}
.xa8{left:618.265333pt;}
.xdb{left:620.221333pt;}
.x2f{left:621.118667pt;}
.x82{left:623.474667pt;}
.x92{left:624.528000pt;}
.xdc{left:634.766667pt;}
.xd3{left:636.762667pt;}
.xc8{left:639.845333pt;}
.xfe{left:640.812000pt;}
.x83{left:642.480000pt;}
.xc9{left:646.541333pt;}
.x70{left:648.022667pt;}
.x104{left:649.029333pt;}
.xdf{left:650.678667pt;}
.x1c{left:652.160000pt;}
.x30{left:661.118667pt;}
.x71{left:662.568000pt;}
.xb5{left:664.690667pt;}
.xab{left:666.153333pt;}
.x72{left:669.862667pt;}
.xf1{left:671.049333pt;}
.x100{left:672.141333pt;}
.xe5{left:673.400000pt;}
.xf5{left:674.982667pt;}
.x5a{left:677.941333pt;}
.x108{left:678.908000pt;}
.xa4{left:680.468000pt;}
.x89{left:682.497333pt;}
.x73{left:684.408000pt;}
.x11b{left:685.326667pt;}
.x5c{left:688.380000pt;}
.x5b{left:692.486667pt;}
.x5d{left:695.653333pt;}
}




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