
    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_42a654e00180ec1a3af0f5bb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ee06858a5068a64a70eb16db.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cd9cf2a936e44fb77e99b7e1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fdb76cee6ec551c4e4f27634.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d51ed1550e72e15641a95647.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5aebd73ee9914017114d523c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.522000;font-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_f0549ac584db6d059d076f27.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.669000;font-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_33e399b7ff06c7bcd1e5ebf4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a986376ce1ffca1905eed9f0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006348;font-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_79ddc25adea162c5a7ffba63.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-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_95a3712c835f1e4f3dca8a05.woff2')format("woff");}.fff{font-family:fff;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_bf164778fe697be26fc0e4bf.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_80a5b752cbaf77a3027a2ced.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.675781;font-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_4e9822279ce5dfd1ab289886.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.493000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_33e399b7ff06c7bcd1e5ebf4.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_a986376ce1ffca1905eed9f0.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.006348;font-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_fbb86eb2b1a97e11e201090f.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_33e399b7ff06c7bcd1e5ebf4.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_d8da4c2129d61d6e4b87d334.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.006348;font-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_aa8e832f4b113ae21171b695.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_33e399b7ff06c7bcd1e5ebf4.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_c1ff96b6742538abdbf848bc.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.006348;font-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_c1f2b1e236641b9e8def410c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.284668;font-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_09f4e7999df40d5b00adb9a0.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.311035;font-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_bf9541f86e230c5585a434ee.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_e1b1c698222383fba710271f.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.006348;font-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_bbee44856216cde07679597d.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_95a3712c835f1e4f3dca8a05.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_33e399b7ff06c7bcd1e5ebf4.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_d802c1ef2fbe89e9c7cecd5f.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.006348;font-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_006595b70bb4262e21d42752.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_cbc254513f9b8790c110f3d9.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_33e399b7ff06c7bcd1e5ebf4.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_afbeda12706b1c584246145c.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.006348;font-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_1fa1c69bb1c09d013276ffd5.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_55d10d169827bd2ddf70da3a.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_c3a0e8d8852f9a82b5905028.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_33e399b7ff06c7bcd1e5ebf4.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_0580f2aff70c15e2f3ce21b2.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.006348;font-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_03648d95ee640f463735cd1e.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_33e399b7ff06c7bcd1e5ebf4.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_564ee7b9f14fe49e8bbdaeab.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.006348;font-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_b7048778a7284eca626e7708.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m23{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);}
.m6{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);}
.m14{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m13{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);}
.m28{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);}
.m10{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);}
.m17{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m25{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);}
.m21{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);}
.m27{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);}
.me{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);}
.m8{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);}
.m4{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);}
.m1f{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);}
.mc{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);}
.m1a{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);}
.m11{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);}
.m1e{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);}
.m7{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);}
.m19{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);}
.m5{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);}
.m20{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);}
.m22{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);}
.mf{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);}
.m1c{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);}
.m18{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);}
.m15{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);}
.m1d{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.mb{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);}
.m12{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);}
.m16{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);}
.m1b{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.vc{vertical-align:-21.702000px;}
.vf{vertical-align:-17.358000px;}
.ve{vertical-align:-15.120000px;}
.vd{vertical-align:-12.300000px;}
.v1{vertical-align:-10.494000px;}
.v9{vertical-align:-9.156000px;}
.v8{vertical-align:-1.086000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:10.920000px;}
.vb{vertical-align:14.106000px;}
.v7{vertical-align:15.192000px;}
.v10{vertical-align:17.358000px;}
.va{vertical-align:18.444000px;}
.v6{vertical-align:19.530000px;}
.v2{vertical-align:21.696000px;}
.v5{vertical-align:34.380000px;}
.v4{vertical-align:43.932000px;}
.ls56{letter-spacing:-0.601200px;}
.ls61{letter-spacing:-0.541080px;}
.ls3a{letter-spacing:-0.480960px;}
.ls39{letter-spacing:-0.420840px;}
.ls32{letter-spacing:-0.360720px;}
.ls4f{letter-spacing:-0.331200px;}
.ls49{letter-spacing:-0.324000px;}
.ls4b{letter-spacing:-0.300600px;}
.ls31{letter-spacing:-0.240480px;}
.ls33{letter-spacing:-0.180360px;}
.ls4d{letter-spacing:-0.162000px;}
.ls47{letter-spacing:-0.144000px;}
.ls37{letter-spacing:-0.120240px;}
.ls43{letter-spacing:-0.108000px;}
.ls30{letter-spacing:-0.095760px;}
.ls4a{letter-spacing:-0.072000px;}
.ls34{letter-spacing:-0.060120px;}
.ls7{letter-spacing:0.000000px;}
.ls87{letter-spacing:0.000014px;}
.ls5f{letter-spacing:0.000552px;}
.ls83{letter-spacing:0.000676px;}
.ls75{letter-spacing:0.000699px;}
.ls73{letter-spacing:0.000800px;}
.ls78{letter-spacing:0.000901px;}
.ls6b{letter-spacing:0.000959px;}
.ls64{letter-spacing:0.001036px;}
.ls6c{letter-spacing:0.001102px;}
.ls74{letter-spacing:0.001155px;}
.ls6e{letter-spacing:0.001254px;}
.ls77{letter-spacing:0.001584px;}
.ls88{letter-spacing:0.001651px;}
.ls80{letter-spacing:0.001899px;}
.ls6f{letter-spacing:0.001938px;}
.ls7b{letter-spacing:0.002053px;}
.ls72{letter-spacing:0.002293px;}
.ls84{letter-spacing:0.002458px;}
.ls79{letter-spacing:0.002461px;}
.ls81{letter-spacing:0.002697px;}
.ls76{letter-spacing:0.002841px;}
.ls7f{letter-spacing:0.003040px;}
.ls12{letter-spacing:0.003178px;}
.ls7c{letter-spacing:0.003668px;}
.ls71{letter-spacing:0.003701px;}
.ls6d{letter-spacing:0.003717px;}
.ls6a{letter-spacing:0.004800px;}
.ls35{letter-spacing:0.054000px;}
.ls36{letter-spacing:0.060120px;}
.ls46{letter-spacing:0.072000px;}
.ls48{letter-spacing:0.090180px;}
.ls1f{letter-spacing:0.108000px;}
.ls20{letter-spacing:0.120240px;}
.ls5e{letter-spacing:0.132264px;}
.ls4c{letter-spacing:0.132480px;}
.ls38{letter-spacing:0.144000px;}
.ls4e{letter-spacing:0.162000px;}
.ls1e{letter-spacing:0.180360px;}
.ls2f{letter-spacing:0.191520px;}
.ls3f{letter-spacing:0.192384px;}
.ls53{letter-spacing:0.198396px;}
.ls62{letter-spacing:0.216000px;}
.ls5b{letter-spacing:0.330660px;}
.ls5a{letter-spacing:0.360000px;}
.ls3b{letter-spacing:0.420840px;}
.ls23{letter-spacing:0.432864px;}
.ls60{letter-spacing:0.480960px;}
.ls15{letter-spacing:0.503764px;}
.ls14{letter-spacing:0.520090px;}
.ls18{letter-spacing:0.526090px;}
.lsc{letter-spacing:0.542815px;}
.lsd{letter-spacing:0.548815px;}
.ls28{letter-spacing:0.571200px;}
.ls2e{letter-spacing:0.720783px;}
.ls2c{letter-spacing:0.742200px;}
.ls2b{letter-spacing:0.748200px;}
.ls25{letter-spacing:0.781560px;}
.ls3e{letter-spacing:1.080000px;}
.ls5d{letter-spacing:1.142280px;}
.ls8{letter-spacing:1.275394px;}
.ls22{letter-spacing:1.503000px;}
.ls1{letter-spacing:1.861130px;}
.ls21{letter-spacing:1.863720px;}
.ls1d{letter-spacing:2.224440px;}
.ls26{letter-spacing:2.585160px;}
.lse{letter-spacing:2.983200px;}
.ls11{letter-spacing:2.988600px;}
.ls5{letter-spacing:2.989200px;}
.ls66{letter-spacing:2.994600px;}
.ls5c{letter-spacing:3.306600px;}
.ls1a{letter-spacing:3.491764px;}
.ls9{letter-spacing:3.553200px;}
.lsa{letter-spacing:3.559200px;}
.ls24{letter-spacing:3.667320px;}
.lsb{letter-spacing:3.733200px;}
.ls50{letter-spacing:4.028040px;}
.ls3d{letter-spacing:5.470920px;}
.ls3c{letter-spacing:5.831640px;}
.ls44{letter-spacing:6.192360px;}
.ls52{letter-spacing:6.553080px;}
.ls54{letter-spacing:6.913800px;}
.ls40{letter-spacing:8.356680px;}
.ls57{letter-spacing:9.438840px;}
.ls2{letter-spacing:10.461300px;}
.ls41{letter-spacing:11.242440px;}
.ls59{letter-spacing:11.778480px;}
.ls6{letter-spacing:11.954850px;}
.ls55{letter-spacing:12.194222px;}
.ls51{letter-spacing:13.046040px;}
.ls82{letter-spacing:13.209827px;}
.ls86{letter-spacing:13.240055px;}
.ls7a{letter-spacing:13.388400px;}
.ls68{letter-spacing:13.448400px;}
.ls69{letter-spacing:13.454400px;}
.ls7e{letter-spacing:13.764249px;}
.ls70{letter-spacing:13.868047px;}
.ls65{letter-spacing:14.573929px;}
.ls10{letter-spacing:14.704798px;}
.ls0{letter-spacing:14.944200px;}
.ls4{letter-spacing:16.434600px;}
.ls17{letter-spacing:16.440049px;}
.ls13{letter-spacing:16.440600px;}
.ls67{letter-spacing:16.676400px;}
.ls89{letter-spacing:16.682400px;}
.ls7d{letter-spacing:17.155288px;}
.ls2d{letter-spacing:17.929200px;}
.lsf{letter-spacing:17.935200px;}
.ls85{letter-spacing:18.079812px;}
.ls63{letter-spacing:18.889090px;}
.ls2a{letter-spacing:19.160815px;}
.ls27{letter-spacing:20.084602px;}
.ls42{letter-spacing:23.133157px;}
.ls29{letter-spacing:24.020815px;}
.ls45{letter-spacing:25.344854px;}
.ls3{letter-spacing:28.453654px;}
.ls16{letter-spacing:112.284600px;}
.ls19{letter-spacing:151.878600px;}
.ls1b{letter-spacing:179.214600px;}
.ls1c{letter-spacing:321.216600px;}
.ls58{letter-spacing:2085.030360px;}
.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;}
}
.ws71{word-spacing:-60.120000px;}
.ws6e{word-spacing:-36.000000px;}
.wseb{word-spacing:-18.144000px;}
.wse9{word-spacing:-17.928000px;}
.wsea{word-spacing:-17.856000px;}
.ws69{word-spacing:-15.210360px;}
.ws73{word-spacing:-15.150240px;}
.ws6d{word-spacing:-15.090120px;}
.ws6a{word-spacing:-15.030000px;}
.ws74{word-spacing:-14.969880px;}
.ws50{word-spacing:-14.943900px;}
.ws6f{word-spacing:-14.909760px;}
.wsae{word-spacing:-14.849640px;}
.ws67{word-spacing:-14.789520px;}
.wse8{word-spacing:-14.729400px;}
.ws68{word-spacing:-14.669280px;}
.ws72{word-spacing:-14.609160px;}
.ws75{word-spacing:-14.549040px;}
.ws13e{word-spacing:-14.488920px;}
.wsac{word-spacing:-13.608000px;}
.ws6c{word-spacing:-13.500000px;}
.ws1a{word-spacing:-13.449600px;}
.wsad{word-spacing:-13.392000px;}
.ws66{word-spacing:-12.161520px;}
.ws32{word-spacing:-11.955150px;}
.ws5{word-spacing:-10.460700px;}
.ws70{word-spacing:-9.144000px;}
.wse7{word-spacing:-9.108000px;}
.wsce{word-spacing:-9.072000px;}
.ws6b{word-spacing:-9.000000px;}
.wse6{word-spacing:-8.928000px;}
.wse5{word-spacing:-8.892000px;}
.wscf{word-spacing:-8.856000px;}
.ws128{word-spacing:-8.280000px;}
.ws42{word-spacing:-3.347434px;}
.ws38{word-spacing:-2.988780px;}
.ws43{word-spacing:-2.929004px;}
.ws10c{word-spacing:-2.689902px;}
.wsfa{word-spacing:-2.391024px;}
.ws4c{word-spacing:-2.331248px;}
.wse1{word-spacing:-2.164320px;}
.ws15e{word-spacing:-2.151922px;}
.wsfb{word-spacing:-2.092146px;}
.ws28{word-spacing:-2.032370px;}
.ws3{word-spacing:-1.908367px;}
.ws26{word-spacing:-1.853044px;}
.ws2d{word-spacing:-1.733492px;}
.ws144{word-spacing:-1.673717px;}
.ws167{word-spacing:-1.667750px;}
.wse0{word-spacing:-1.623240px;}
.ws17f{word-spacing:-1.613952px;}
.ws2{word-spacing:-1.322630px;}
.ws2e{word-spacing:-1.315063px;}
.ws133{word-spacing:-1.262520px;}
.ws10f{word-spacing:-1.135736px;}
.ws12b{word-spacing:-1.016185px;}
.ws125{word-spacing:-0.961920px;}
.ws2f{word-spacing:-0.956410px;}
.ws105{word-spacing:-0.901800px;}
.ws56{word-spacing:-0.896634px;}
.ws104{word-spacing:-0.781560px;}
.ws110{word-spacing:-0.777083px;}
.wsb1{word-spacing:-0.717307px;}
.ws16{word-spacing:-0.699379px;}
.ws7c{word-spacing:-0.657532px;}
.ws164{word-spacing:-0.645581px;}
.ws9c{word-spacing:-0.601200px;}
.ws9b{word-spacing:-0.541080px;}
.ws34{word-spacing:-0.537980px;}
.ws147{word-spacing:-0.480960px;}
.ws10e{word-spacing:-0.478205px;}
.wscc{word-spacing:-0.420840px;}
.ws161{word-spacing:-0.376589px;}
.ws40{word-spacing:-0.358654px;}
.ws41{word-spacing:-0.298878px;}
.ws129{word-spacing:-0.268992px;}
.wsdc{word-spacing:-0.240480px;}
.ws36{word-spacing:-0.239102px;}
.wsfd{word-spacing:-0.216000px;}
.ws163{word-spacing:-0.215194px;}
.ws7e{word-spacing:-0.191520px;}
.ws9d{word-spacing:-0.180360px;}
.ws23{word-spacing:-0.179327px;}
.ws100{word-spacing:-0.162000px;}
.ws154{word-spacing:-0.161395px;}
.wsff{word-spacing:-0.132480px;}
.wsdd{word-spacing:-0.120240px;}
.ws3b{word-spacing:-0.119551px;}
.ws159{word-spacing:-0.107597px;}
.ws94{word-spacing:-0.060120px;}
.ws1{word-spacing:-0.059776px;}
.ws18{word-spacing:-0.053798px;}
.ws33{word-spacing:-0.047821px;}
.ws6{word-spacing:-0.041843px;}
.ws5c{word-spacing:-0.005194px;}
.wsf1{word-spacing:-0.003734px;}
.ws0{word-spacing:0.000000px;}
.ws5a{word-spacing:0.000806px;}
.ws13{word-spacing:0.053798px;}
.ws3a{word-spacing:0.059776px;}
.wsab{word-spacing:0.060120px;}
.ws7f{word-spacing:0.095760px;}
.ws162{word-spacing:0.107597px;}
.ws92{word-spacing:0.108000px;}
.ws2c{word-spacing:0.119551px;}
.ws99{word-spacing:0.120240px;}
.wse2{word-spacing:0.144000px;}
.ws16e{word-spacing:0.161395px;}
.ws91{word-spacing:0.162000px;}
.ws35{word-spacing:0.179327px;}
.ws90{word-spacing:0.180360px;}
.ws7{word-spacing:0.209214px;}
.ws17{word-spacing:0.215194px;}
.ws3c{word-spacing:0.239102px;}
.ws81{word-spacing:0.240480px;}
.ws15{word-spacing:0.268992px;}
.ws9{word-spacing:0.292900px;}
.ws3d{word-spacing:0.298878px;}
.wsfe{word-spacing:0.300600px;}
.ws14{word-spacing:0.322790px;}
.wsfc{word-spacing:0.324000px;}
.ws101{word-spacing:0.331200px;}
.ws10a{word-spacing:0.358654px;}
.wsc0{word-spacing:0.360720px;}
.ws64{word-spacing:0.382565px;}
.ws30{word-spacing:0.418429px;}
.ws136{word-spacing:0.420840px;}
.ws178{word-spacing:0.430387px;}
.ws4a{word-spacing:0.478205px;}
.ws8f{word-spacing:0.480960px;}
.wsc4{word-spacing:0.541080px;}
.ws49{word-spacing:0.562500px;}
.ws118{word-spacing:0.601200px;}
.wsb9{word-spacing:0.661320px;}
.ws17b{word-spacing:0.699379px;}
.ws54{word-spacing:0.717307px;}
.ws120{word-spacing:0.781560px;}
.ws192{word-spacing:0.806976px;}
.ws52{word-spacing:0.836858px;}
.wsa8{word-spacing:0.841680px;}
.ws16b{word-spacing:0.860774px;}
.ws4b{word-spacing:0.896634px;}
.wsa7{word-spacing:0.901800px;}
.ws39{word-spacing:0.956410px;}
.ws3e{word-spacing:1.016185px;}
.wsda{word-spacing:1.022040px;}
.wsbf{word-spacing:1.082160px;}
.ws16d{word-spacing:1.129766px;}
.ws156{word-spacing:1.188000px;}
.ws4f{word-spacing:1.195512px;}
.wsc8{word-spacing:1.202400px;}
.ws157{word-spacing:1.242000px;}
.wsbe{word-spacing:1.262520px;}
.ws12{word-spacing:1.291162px;}
.wsb4{word-spacing:1.315063px;}
.ws1f{word-spacing:1.374839px;}
.ws14e{word-spacing:1.382760px;}
.ws8b{word-spacing:1.503000px;}
.ws27{word-spacing:1.554166px;}
.ws84{word-spacing:1.563120px;}
.ws145{word-spacing:1.623240px;}
.ws168{word-spacing:1.667750px;}
.ws8a{word-spacing:1.683360px;}
.wsdb{word-spacing:1.743480px;}
.ws17a{word-spacing:1.829146px;}
.ws107{word-spacing:1.863720px;}
.ws65{word-spacing:1.912819px;}
.ws13a{word-spacing:1.923840px;}
.ws143{word-spacing:1.972595px;}
.wsc3{word-spacing:1.983960px;}
.ws155{word-spacing:1.998000px;}
.ws8{word-spacing:2.008454px;}
.ws13f{word-spacing:2.032370px;}
.ws139{word-spacing:2.044080px;}
.ws7d{word-spacing:2.092146px;}
.ws83{word-spacing:2.104200px;}
.ws80{word-spacing:2.224440px;}
.ws47{word-spacing:2.271473px;}
.wsa3{word-spacing:2.284560px;}
.ws48{word-spacing:2.331248px;}
.ws12f{word-spacing:2.344680px;}
.ws179{word-spacing:2.367130px;}
.ws4e{word-spacing:2.391024px;}
.ws82{word-spacing:2.404800px;}
.wsb2{word-spacing:2.450800px;}
.ws14c{word-spacing:2.464920px;}
.wsb3{word-spacing:2.510575px;}
.wsaa{word-spacing:2.525040px;}
.ws1e{word-spacing:2.570351px;}
.wsa4{word-spacing:2.585160px;}
.ws89{word-spacing:2.645280px;}
.ws108{word-spacing:2.689902px;}
.ws18b{word-spacing:2.689920px;}
.ws15f{word-spacing:2.749678px;}
.ws88{word-spacing:2.765520px;}
.ws87{word-spacing:2.825640px;}
.ws11{word-spacing:2.869236px;}
.wsb6{word-spacing:2.929004px;}
.ws9e{word-spacing:2.945880px;}
.ws132{word-spacing:3.024000px;}
.ws46{word-spacing:3.048556px;}
.ws106{word-spacing:3.066120px;}
.wsa1{word-spacing:3.126240px;}
.ws141{word-spacing:3.168107px;}
.ws19{word-spacing:3.219667px;}
.ws18a{word-spacing:3.221587px;}
.ws188{word-spacing:3.224957px;}
.ws184{word-spacing:3.225072px;}
.ws191{word-spacing:3.225130px;}
.wscd{word-spacing:3.227882px;}
.ws187{word-spacing:3.227904px;}
.ws15c{word-spacing:3.240000px;}
.ws122{word-spacing:3.306600px;}
.ws15b{word-spacing:3.348000px;}
.wsa2{word-spacing:3.366720px;}
.wsb5{word-spacing:3.407209px;}
.ws14d{word-spacing:3.426840px;}
.ws121{word-spacing:3.486960px;}
.ws29{word-spacing:3.526760px;}
.ws1b{word-spacing:3.586536px;}
.ws7a{word-spacing:3.646312px;}
.ws183{word-spacing:3.658291px;}
.ws137{word-spacing:3.667320px;}
.ws12a{word-spacing:3.706087px;}
.ws124{word-spacing:3.727440px;}
.ws24{word-spacing:3.765863px;}
.ws131{word-spacing:3.780000px;}
.ws146{word-spacing:3.907800px;}
.wsd1{word-spacing:3.945190px;}
.ws9f{word-spacing:3.967920px;}
.ws12e{word-spacing:4.028040px;}
.ws12c{word-spacing:4.064741px;}
.wsa0{word-spacing:4.088160px;}
.wsaf{word-spacing:4.124516px;}
.ws173{word-spacing:4.142477px;}
.ws15a{word-spacing:4.158000px;}
.ws114{word-spacing:4.208400px;}
.ws149{word-spacing:4.268520px;}
.ws130{word-spacing:4.328640px;}
.ws190{word-spacing:4.357670px;}
.ws109{word-spacing:4.363619px;}
.ws113{word-spacing:4.388760px;}
.ws78{word-spacing:4.423394px;}
.ws85{word-spacing:4.448880px;}
.ws148{word-spacing:4.509000px;}
.ws86{word-spacing:4.569120px;}
.ws10b{word-spacing:4.602721px;}
.ws18c{word-spacing:4.626662px;}
.ws13b{word-spacing:4.629240px;}
.ws160{word-spacing:4.662497px;}
.ws16a{word-spacing:4.734259px;}
.wsde{word-spacing:4.749480px;}
.ws97{word-spacing:4.809600px;}
.ws37{word-spacing:4.901599px;}
.wsc9{word-spacing:4.929840px;}
.ws166{word-spacing:4.949453px;}
.wsdf{word-spacing:4.989960px;}
.ws10d{word-spacing:5.021150px;}
.ws77{word-spacing:5.080926px;}
.ws8d{word-spacing:5.110200px;}
.ws20{word-spacing:5.140702px;}
.ws11b{word-spacing:5.170320px;}
.ws140{word-spacing:5.200477px;}
.ws11a{word-spacing:5.230440px;}
.ws1d{word-spacing:5.260253px;}
.wsbc{word-spacing:5.290560px;}
.ws126{word-spacing:5.410800px;}
.ws8e{word-spacing:5.470920px;}
.wsca{word-spacing:5.531040px;}
.ws8c{word-spacing:5.651280px;}
.ws103{word-spacing:5.711400px;}
.wsba{word-spacing:5.771520px;}
.wsbd{word-spacing:5.831640px;}
.wsc1{word-spacing:5.891760px;}
.wsf9{word-spacing:5.975434px;}
.ws1c{word-spacing:5.977560px;}
.ws59{word-spacing:5.978848px;}
.wsf8{word-spacing:5.980310px;}
.wsc2{word-spacing:6.012000px;}
.ws4d{word-spacing:6.037336px;}
.wsf{word-spacing:6.067206px;}
.ws10{word-spacing:6.150892px;}
.ws111{word-spacing:6.156887px;}
.wsa9{word-spacing:6.192360px;}
.ws55{word-spacing:6.216662px;}
.wsbb{word-spacing:6.252480px;}
.ws7b{word-spacing:6.336214px;}
.wse3{word-spacing:6.372720px;}
.wsd9{word-spacing:6.395989px;}
.wse4{word-spacing:6.432840px;}
.ws51{word-spacing:6.455765px;}
.ws9a{word-spacing:6.553080px;}
.wsd5{word-spacing:6.573072px;}
.wsd7{word-spacing:6.573578px;}
.wsd4{word-spacing:6.573600px;}
.wsd6{word-spacing:6.573636px;}
.ws22{word-spacing:6.575316px;}
.ws14a{word-spacing:6.613200px;}
.ws12d{word-spacing:6.635092px;}
.ws11f{word-spacing:6.673320px;}
.ws53{word-spacing:6.694867px;}
.ws98{word-spacing:6.733440px;}
.ws11d{word-spacing:6.793560px;}
.ws112{word-spacing:6.913800px;}
.ws79{word-spacing:6.933970px;}
.ws11e{word-spacing:6.973920px;}
.ws189{word-spacing:7.047590px;}
.ws123{word-spacing:7.094160px;}
.ws11c{word-spacing:7.214400px;}
.wsb7{word-spacing:7.274520px;}
.wsb8{word-spacing:7.334640px;}
.ws2a{word-spacing:7.352399px;}
.ws76{word-spacing:7.412174px;}
.ws142{word-spacing:7.471950px;}
.ws169{word-spacing:7.531776px;}
.ws15d{word-spacing:7.711052px;}
.ws117{word-spacing:7.815600px;}
.wsa5{word-spacing:7.995960px;}
.wsa6{word-spacing:8.056080px;}
.ws127{word-spacing:8.069706px;}
.ws138{word-spacing:8.176320px;}
.wsb0{word-spacing:8.189257px;}
.ws45{word-spacing:8.249033px;}
.ws135{word-spacing:8.296560px;}
.ws44{word-spacing:8.308808px;}
.wsc5{word-spacing:8.356680px;}
.ws25{word-spacing:8.368584px;}
.ws134{word-spacing:8.416800px;}
.wsd8{word-spacing:8.428360px;}
.wsd{word-spacing:8.661460px;}
.wscb{word-spacing:8.717400px;}
.ws153{word-spacing:8.957880px;}
.ws152{word-spacing:9.138240px;}
.wsd2{word-spacing:9.205442px;}
.wsd3{word-spacing:9.265218px;}
.ws165{word-spacing:9.307123px;}
.ws13d{word-spacing:9.559080px;}
.ws158{word-spacing:9.679320px;}
.ws102{word-spacing:9.799560px;}
.ws13c{word-spacing:9.979920px;}
.wsc6{word-spacing:10.160280px;}
.wsc7{word-spacing:10.220400px;}
.ws151{word-spacing:10.400760px;}
.wsd0{word-spacing:10.400954px;}
.ws182{word-spacing:10.490688px;}
.ws14f{word-spacing:10.521000px;}
.ws14b{word-spacing:10.581120px;}
.ws95{word-spacing:10.941840px;}
.ws150{word-spacing:11.062080px;}
.ws93{word-spacing:11.242440px;}
.ws96{word-spacing:11.302560px;}
.ws119{word-spacing:11.603160px;}
.ws31{word-spacing:11.905687px;}
.ws116{word-spacing:13.046040px;}
.ws115{word-spacing:13.106160px;}
.ws180{word-spacing:13.234406px;}
.ws17d{word-spacing:13.288205px;}
.ws176{word-spacing:13.391184px;}
.ws171{word-spacing:13.391645px;}
.ws170{word-spacing:13.395802px;}
.ws177{word-spacing:13.664794px;}
.ws16c{word-spacing:14.256576px;}
.ws18d{word-spacing:14.639301px;}
.ws3f{word-spacing:14.884124px;}
.ws4{word-spacing:15.483541px;}
.ws181{word-spacing:15.924326px;}
.wsa{word-spacing:16.142252px;}
.wsb{word-spacing:16.151321px;}
.ws186{word-spacing:16.354714px;}
.ws172{word-spacing:16.616832px;}
.ws185{word-spacing:16.620941px;}
.ws16f{word-spacing:16.623706px;}
.ws175{word-spacing:16.625107px;}
.ws17e{word-spacing:16.677504px;}
.ws174{word-spacing:16.892698px;}
.ws18f{word-spacing:16.946496px;}
.wsc{word-spacing:17.699504px;}
.ws17c{word-spacing:19.152230px;}
.ws21{word-spacing:19.606397px;}
.ws2b{word-spacing:26.181713px;}
.wse{word-spacing:27.448877px;}
.ws18e{word-spacing:28.028966px;}
.wsec{word-spacing:157.142554px;}
.wsf4{word-spacing:158.478912px;}
.wsf0{word-spacing:159.419856px;}
.ws5b{word-spacing:200.397792px;}
.wsef{word-spacing:208.145100px;}
.wsf2{word-spacing:226.860595px;}
.wsf5{word-spacing:247.032595px;}
.ws63{word-spacing:291.311491px;}
.ws5e{word-spacing:291.311846px;}
.ws60{word-spacing:291.333274px;}
.ws62{word-spacing:291.337018px;}
.wsee{word-spacing:293.812500px;}
.wsf3{word-spacing:298.312128px;}
.wsed{word-spacing:304.270500px;}
.wsf7{word-spacing:311.761728px;}
.wsf6{word-spacing:325.211328px;}
.ws5d{word-spacing:340.920461px;}
.ws61{word-spacing:367.819661px;}
.ws5f{word-spacing:387.994061px;}
.ws57{word-spacing:738.630710px;}
.ws58{word-spacing:1182.704026px;}
._3e{margin-left:-24.727968px;}
._15{margin-left:-7.683545px;}
._1{margin-left:-6.638924px;}
._3{margin-left:-4.644551px;}
._8{margin-left:-3.392887px;}
._0{margin-left:-1.936742px;}
._2{width:1.091170px;}
._6{width:2.301354px;}
._18{width:3.670562px;}
._27{width:5.543942px;}
._24{width:6.835660px;}
._3a{width:7.888622px;}
._23{width:11.302560px;}
._4{width:12.969002px;}
._a{width:14.417971px;}
._38{width:15.565579px;}
._9{width:16.838899px;}
._e{width:18.195706px;}
._12{width:19.486846px;}
._f{width:20.526954px;}
._c{width:21.578992px;}
._d{width:23.133157px;}
._11{width:24.292817px;}
._5{width:25.946136px;}
._16{width:28.214083px;}
._26{width:29.648698px;}
._29{width:31.143088px;}
._7{width:32.637384px;}
._25{width:33.832990px;}
._b{width:35.590405px;}
._17{width:38.220532px;}
._3b{width:39.834473px;}
._39{width:43.038432px;}
._10{width:44.054617px;}
._28{width:50.271280px;}
._3d{width:61.868160px;}
._2d{width:166.010960px;}
._19{width:176.035301px;}
._2e{width:191.560943px;}
._37{width:248.763802px;}
._2f{width:259.478160px;}
._34{width:264.688128px;}
._21{width:311.600333px;}
._1e{width:313.106688px;}
._30{width:318.490262px;}
._20{width:320.746061px;}
._31{width:325.211328px;}
._35{width:331.932394px;}
._33{width:338.660928px;}
._32{width:352.114262px;}
._1f{width:354.370061px;}
._1a{width:362.063232px;}
._36{width:365.560128px;}
._1b{width:374.544461px;}
._1c{width:387.994061px;}
._2b{width:405.639936px;}
._1d{width:421.618061px;}
._2c{width:727.055952px;}
._13{width:890.059057px;}
._2a{width:1569.600000px;}
._22{width:2109.182020px;}
._3c{width:2493.266700px;}
._14{width:2517.176700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(137,92,52);}
.fs12{font-size:2.880000px;}
.fs13{font-size:33.120000px;}
.fsc{font-size:35.865600px;}
.fs10{font-size:36.000000px;}
.fsd{font-size:37.371600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fsb{font-size:43.600200px;}
.fs8{font-size:45.429600px;}
.fs3{font-size:47.236800px;}
.fs9{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fse{font-size:47.880000px;}
.fs7{font-size:53.798400px;}
.fs11{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fsf{font-size:60.120000px;}
.fsa{font-size:62.286600px;}
.fs14{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:147.405960px;}
.y21e{bottom:-669.168000px;}
.y23d{bottom:-599.661540px;}
.y23c{bottom:-580.408110px;}
.y23b{bottom:-561.154680px;}
.y123{bottom:-557.226000px;}
.y23a{bottom:-541.991430px;}
.y1e8{bottom:-532.000500px;}
.y239{bottom:-522.724680px;}
.ye9{bottom:-504.408000px;}
.y238{bottom:-503.561430px;}
.y13c{bottom:-488.819250px;}
.y169{bottom:-486.277500px;}
.y237{bottom:-484.294680px;}
.y13b{bottom:-469.649430px;}
.y236{bottom:-465.041250px;}
.y13a{bottom:-450.389430px;}
.y235{bottom:-445.864680px;}
.y139{bottom:-431.122680px;}
.y234{bottom:-426.611250px;}
.y106{bottom:-414.401250px;}
.y138{bottom:-411.959430px;}
.y183{bottom:-409.690500px;}
.y233{bottom:-407.414790px;}
.y105{bottom:-395.218110px;}
.y137{bottom:-392.692680px;}
.y232{bottom:-388.161360px;}
.y202{bottom:-388.083930px;}
.y104{bottom:-375.964680px;}
.y136{bottom:-373.529430px;}
.y231{bottom:-368.907930px;}
.y201{bottom:-368.823750px;}
.y1b6{bottom:-363.298500px;}
.y103{bottom:-356.801430px;}
.y135{bottom:-354.249540px;}
.y230{bottom:-349.744680px;}
.y200{bottom:-349.653930px;}
.y198{bottom:-340.923930px;}
.y102{bottom:-337.528110px;}
.y134{bottom:-334.996110px;}
.y22f{bottom:-330.491250px;}
.y1ff{bottom:-330.393930px;}
.y197{bottom:-321.650430px;}
.y101{bottom:-318.274680px;}
.y133{bottom:-315.832860px;}
.y22e{bottom:-311.268330px;}
.y1fe{bottom:-311.133750px;}
.y1cf{bottom:-307.691820px;}
.y196{bottom:-302.487180px;}
.y100{bottom:-299.111430px;}
.y132{bottom:-296.579430px;}
.y22d{bottom:-292.014900px;}
.y1fd{bottom:-291.897510px;}
.y1ce{bottom:-288.438390px;}
.y195{bottom:-283.233750px;}
.yff{bottom:-279.838110px;}
.y131{bottom:-277.312680px;}
.y22c{bottom:-272.761470px;}
.y1fc{bottom:-272.644080px;}
.y1cd{bottom:-269.275140px;}
.y194{bottom:-264.070500px;}
.yfe{bottom:-260.674860px;}
.y130{bottom:-258.149430px;}
.y22b{bottom:-253.598220px;}
.y1fb{bottom:-253.390650px;}
.y1cc{bottom:-250.021710px;}
.yfd{bottom:-241.421430px;}
.y12f{bottom:-238.889250px;}
.y22a{bottom:-234.344790px;}
.y1fa{bottom:-234.227400px;}
.y1cb{bottom:-230.768280px;}
.y26b{bottom:-230.056500px;}
.y193{bottom:-227.175000px;}
.yfc{bottom:-222.161250px;}
.y12e{bottom:-219.719430px;}
.y229{bottom:-215.091360px;}
.y1f9{bottom:-214.973970px;}
.y1ca{bottom:-211.605030px;}
.y192{bottom:-206.020500px;}
.yfb{bottom:-202.984680px;}
.y12d{bottom:-200.419470px;}
.y228{bottom:-195.928110px;}
.y1f8{bottom:-195.810720px;}
.y1c9{bottom:-192.351600px;}
.y191{bottom:-190.450500px;}
.yfa{bottom:-183.731250px;}
.y175{bottom:-182.334360px;}
.y12c{bottom:-181.166040px;}
.y227{bottom:-176.674680px;}
.y1f7{bottom:-176.557290px;}
.y1c8{bottom:-173.188350px;}
.y190{bottom:-170.200500px;}
.yf9{bottom:-164.554860px;}
.y174{bottom:-163.080930px;}
.y12b{bottom:-162.002790px;}
.y226{bottom:-157.511430px;}
.y1f6{bottom:-157.303860px;}
.y273{bottom:-156.879750px;}
.y1c7{bottom:-153.934920px;}
.y18e{bottom:-149.950500px;}
.y18f{bottom:-146.170500px;}
.yf8{bottom:-145.301430px;}
.y173{bottom:-143.820750px;}
.y12a{bottom:-142.749360px;}
.y225{bottom:-138.251430px;}
.y1f5{bottom:-138.140610px;}
.y272{bottom:-137.703180px;}
.y1c6{bottom:-134.681490px;}
.y18c{bottom:-129.700500px;}
.yf7{bottom:-126.028110px;}
.y18d{bottom:-125.920500px;}
.y172{bottom:-124.634550px;}
.y129{bottom:-123.586110px;}
.y224{bottom:-118.991250px;}
.y282{bottom:-118.918200px;}
.y1f4{bottom:-118.887180px;}
.y271{bottom:-118.449750px;}
.y1c5{bottom:-115.518240px;}
.y18b{bottom:-108.730500px;}
.yf6{bottom:-106.864860px;}
.y171{bottom:-105.381120px;}
.y128{bottom:-104.332680px;}
.y223{bottom:-99.821430px;}
.y1f3{bottom:-99.723930px;}
.y270{bottom:-99.279930px;}
.y188{bottom:-98.200500px;}
.y1c4{bottom:-96.264810px;}
.y189{bottom:-87.760500px;}
.yf5{bottom:-87.611430px;}
.y170{bottom:-86.127690px;}
.y127{bottom:-85.079250px;}
.y18a{bottom:-83.980500px;}
.y222{bottom:-80.561250px;}
.y1f2{bottom:-80.470500px;}
.y26f{bottom:-80.026500px;}
.y1c3{bottom:-72.592560px;}
.yf4{bottom:-68.358000px;}
.y16f{bottom:-66.964440px;}
.y126{bottom:-65.916000px;}
.y221{bottom:-61.398000px;}
.y187{bottom:-57.696000px;}
.y1f1{bottom:-43.665000px;}
.y26e{bottom:-43.221000px;}
.y16e{bottom:-38.444790px;}
.y289{bottom:-35.402700px;}
.y1c2{bottom:-35.062650px;}
.yf3{bottom:-31.638000px;}
.y125{bottom:-29.106000px;}
.y1f0{bottom:-26.290500px;}
.y26d{bottom:-25.846500px;}
.y220{bottom:-24.588000px;}
.y186{bottom:-22.420500px;}
.y288{bottom:-18.028200px;}
.yf2{bottom:-9.102090px;}
.y124{bottom:-6.601950px;}
.y16d{bottom:-4.687410px;}
.y1ef{bottom:-3.854040px;}
.y26c{bottom:-3.434160px;}
.y21f{bottom:-2.091510px;}
.y1c1{bottom:-1.305270px;}
.y0{bottom:0.000000px;}
.y19a{bottom:2.970000px;}
.ya{bottom:3.425340px;}
.y287{bottom:4.402950px;}
.y185{bottom:9.169500px;}
.y9{bottom:14.151273px;}
.y2{bottom:15.837920px;}
.y55{bottom:31.890000px;}
.y27e{bottom:89.364000px;}
.y1e4{bottom:93.075000px;}
.y1ad{bottom:93.618000px;}
.ye5{bottom:95.569500px;}
.y164{bottom:96.834000px;}
.y24{bottom:102.823500px;}
.y54{bottom:103.621500px;}
.y9b{bottom:104.395500px;}
.y2c2{bottom:104.857500px;}
.y99{bottom:107.125500px;}
.y27d{bottom:108.192000px;}
.ye4{bottom:111.669000px;}
.y1e3{bottom:111.904500px;}
.y1ac{bottom:112.447500px;}
.y9a{bottom:112.551000px;}
.ye3{bottom:114.399000px;}
.y163{bottom:115.663500px;}
.y28b{bottom:119.254500px;}
.y23{bottom:120.711000px;}
.y2ff{bottom:120.817500px;}
.y2c1{bottom:122.118000px;}
.y53{bottom:122.449500px;}
.y27b{bottom:124.293000px;}
.y98{bottom:125.955000px;}
.y27a{bottom:127.021500px;}
.y1aa{bottom:128.547000px;}
.y1e2{bottom:130.734000px;}
.y1a9{bottom:131.277000px;}
.y162{bottom:131.763000px;}
.y27c{bottom:132.447000px;}
.ye2{bottom:133.228500px;}
.y267{bottom:133.458000px;}
.y161{bottom:134.491500px;}
.y2fe{bottom:135.454500px;}
.y1ab{bottom:136.701000px;}
.y2fd{bottom:138.078000px;}
.y28a{bottom:138.487500px;}
.y22{bottom:138.600000px;}
.y2c0{bottom:139.378500px;}
.y52{bottom:141.279000px;}
.y97{bottom:144.784500px;}
.y279{bottom:145.851000px;}
.y1e1{bottom:149.563500px;}
.y1a8{bottom:150.106500px;}
.y160{bottom:150.592500px;}
.ye1{bottom:152.058000px;}
.y266{bottom:152.286000px;}
.y15f{bottom:153.321000px;}
.y2fc{bottom:155.338500px;}
.y21{bottom:156.487500px;}
.y2bf{bottom:156.639000px;}
.y51{bottom:160.108500px;}
.y27f{bottom:160.916700px;}
.y278{bottom:161.950500px;}
.y96{bottom:163.614000px;}
.y277{bottom:164.680500px;}
.y1df{bottom:168.393000px;}
.y1a6{bottom:168.936000px;}
.y15e{bottom:169.422000px;}
.y265{bottom:171.115500px;}
.y15d{bottom:172.150500px;}
.y2fb{bottom:172.599000px;}
.y1e0{bottom:173.818500px;}
.y2be{bottom:173.899500px;}
.y1a7{bottom:174.360000px;}
.y20{bottom:174.375000px;}
.y50{bottom:178.938000px;}
.y95{bottom:182.443500px;}
.y276{bottom:183.510000px;}
.y264{bottom:187.216500px;}
.y1de{bottom:187.222500px;}
.y1a5{bottom:187.765500px;}
.ye0{bottom:188.221500px;}
.y2fa{bottom:189.858000px;}
.y263{bottom:189.945000px;}
.y15c{bottom:190.980000px;}
.y2bd{bottom:191.160000px;}
.y1f{bottom:192.264000px;}
.y4f{bottom:197.767500px;}
.ydf{bottom:200.317500px;}
.y94{bottom:201.273000px;}
.yde{bottom:202.419000px;}
.y261{bottom:206.044500px;}
.y1dc{bottom:206.052000px;}
.ydd{bottom:206.758500px;}
.y15b{bottom:207.079500px;}
.y2f9{bottom:207.118500px;}
.y2bc{bottom:208.419000px;}
.y260{bottom:208.774500px;}
.y15a{bottom:209.809500px;}
.y1e{bottom:210.151500px;}
.y1dd{bottom:211.477500px;}
.y262{bottom:214.200000px;}
.y4e{bottom:216.597000px;}
.y275{bottom:217.075500px;}
.ydc{bottom:218.112000px;}
.y92{bottom:220.102500px;}
.ydb{bottom:222.451500px;}
.y11f{bottom:222.826500px;}
.y2bb{bottom:223.057500px;}
.y2f8{bottom:224.379000px;}
.y1db{bottom:224.881500px;}
.y93{bottom:225.526500px;}
.y2ba{bottom:225.679500px;}
.y25f{bottom:227.604000px;}
.y1a4{bottom:227.755500px;}
.y1d{bottom:228.039000px;}
.y158{bottom:228.639000px;}
.y21a{bottom:229.429500px;}
.y4d{bottom:232.696500px;}
.y159{bottom:234.064500px;}
.y4c{bottom:235.426500px;}
.y91{bottom:236.202000px;}
.y274{bottom:236.308500px;}
.y8f{bottom:238.932000px;}
.yda{bottom:241.170000px;}
.y2f7{bottom:241.639500px;}
.y11e{bottom:241.656000px;}
.y2b9{bottom:242.940000px;}
.y1d9{bottom:243.711000px;}
.y90{bottom:244.356000px;}
.y157{bottom:244.738500px;}
.y1a3{bottom:246.162000px;}
.y25e{bottom:246.433500px;}
.y156{bottom:247.468500px;}
.y218{bottom:248.259000px;}
.y1da{bottom:249.136500px;}
.y4b{bottom:251.526000px;}
.y219{bottom:253.683000px;}
.y4a{bottom:254.256000px;}
.y8d{bottom:255.031500px;}
.y2b8{bottom:257.578500px;}
.y8c{bottom:257.761500px;}
.yd9{bottom:258.234000px;}
.y268{bottom:258.738000px;}
.y2f6{bottom:258.900000px;}
.y2b7{bottom:260.200500px;}
.y11d{bottom:260.485500px;}
.y25d{bottom:262.533000px;}
.y1d7{bottom:262.540500px;}
.y1a2{bottom:262.600500px;}
.y8e{bottom:263.185500px;}
.y216{bottom:264.846000px;}
.y25c{bottom:265.263000px;}
.y155{bottom:266.298000px;}
.y215{bottom:267.088500px;}
.y1d8{bottom:267.966000px;}
.y217{bottom:272.512500px;}
.y49{bottom:273.085500px;}
.yd8{bottom:275.296500px;}
.y2f5{bottom:276.160500px;}
.y8b{bottom:276.591000px;}
.y2b6{bottom:277.461000px;}
.y11c{bottom:279.315000px;}
.y1a1{bottom:279.511500px;}
.y1d5{bottom:281.370000px;}
.y25b{bottom:284.092500px;}
.y154{bottom:285.127500px;}
.y214{bottom:285.918000px;}
.y1d6{bottom:286.794000px;}
.y2f4{bottom:290.797500px;}
.y48{bottom:291.915000px;}
.yd7{bottom:292.359000px;}
.y8a{bottom:292.690500px;}
.y2f3{bottom:293.421000px;}
.y2b5{bottom:294.721500px;}
.y11b{bottom:295.414500px;}
.y89{bottom:295.420500px;}
.y1a0{bottom:296.893500px;}
.y11a{bottom:298.144500px;}
.y25a{bottom:300.192000px;}
.y1d4{bottom:300.199500px;}
.y213{bottom:302.017500px;}
.y259{bottom:302.922000px;}
.y153{bottom:303.957000px;}
.y212{bottom:304.747500px;}
.y1c{bottom:307.299000px;}
.yd6{bottom:309.111000px;}
.y2f2{bottom:310.681500px;}
.y47{bottom:310.744500px;}
.y2b4{bottom:311.982000px;}
.y88{bottom:314.250000px;}
.y119{bottom:316.974000px;}
.y1d3{bottom:319.029000px;}
.y152{bottom:320.056500px;}
.y19f{bottom:321.006000px;}
.y211{bottom:321.334500px;}
.y257{bottom:321.751500px;}
.y151{bottom:322.786500px;}
.y210{bottom:323.577000px;}
.y1b{bottom:325.186500px;}
.y258{bottom:327.177000px;}
.y2f1{bottom:327.940500px;}
.y46{bottom:329.574000px;}
.yd5{bottom:333.022500px;}
.y87{bottom:333.079500px;}
.y2b3{bottom:333.724500px;}
.y19e{bottom:334.131000px;}
.y118{bottom:335.803500px;}
.y1d2{bottom:337.858500px;}
.y256{bottom:340.581000px;}
.y14f{bottom:341.616000px;}
.y20f{bottom:342.406500px;}
.y2f0{bottom:342.579000px;}
.y1a{bottom:343.074000px;}
.y2ef{bottom:345.201000px;}
.y45{bottom:345.673500px;}
.yd4{bottom:346.342500px;}
.y150{bottom:347.041500px;}
.y44{bottom:348.403500px;}
.y184{bottom:351.529500px;}
.y117{bottom:351.903000px;}
.y86{bottom:351.909000px;}
.y116{bottom:354.633000px;}
.y14e{bottom:357.715500px;}
.y254{bottom:359.410500px;}
.y14d{bottom:360.445500px;}
.y19{bottom:360.963000px;}
.y1d1{bottom:361.171500px;}
.y20e{bottom:361.236000px;}
.y2ee{bottom:362.461500px;}
.y17f{bottom:364.249500px;}
.y255{bottom:364.836000px;}
.y43{bottom:367.233000px;}
.y2b2{bottom:367.348500px;}
.y85{bottom:370.738500px;}
.y115{bottom:373.462500px;}
.y14c{bottom:376.545000px;}
.y2ed{bottom:377.100000px;}
.y19d{bottom:377.199000px;}
.y253{bottom:378.240000px;}
.y14b{bottom:379.275000px;}
.y2ec{bottom:379.722000px;}
.y20d{bottom:380.065500px;}
.y17e{bottom:383.079000px;}
.y42{bottom:386.062500px;}
.yd3{bottom:388.944000px;}
.y83{bottom:389.568000px;}
.y1d0{bottom:391.599000px;}
.y114{bottom:392.290500px;}
.y2b1{bottom:393.889500px;}
.y252{bottom:394.339500px;}
.y84{bottom:394.992000px;}
.y14a{bottom:395.374500px;}
.y2eb{bottom:396.982500px;}
.y251{bottom:397.069500px;}
.y149{bottom:398.104500px;}
.y20c{bottom:398.895000px;}
.y18{bottom:399.024000px;}
.y17d{bottom:401.908500px;}
.y41{bottom:404.892000px;}
.y82{bottom:405.667500px;}
.y81{bottom:408.397500px;}
.y112{bottom:411.120000px;}
.y2b0{bottom:411.463500px;}
.y1b3{bottom:414.028500px;}
.y2ea{bottom:414.243000px;}
.y19c{bottom:414.364500px;}
.y250{bottom:415.899000px;}
.y113{bottom:416.545500px;}
.y17{bottom:416.913000px;}
.y147{bottom:416.934000px;}
.y20b{bottom:417.723000px;}
.y17c{bottom:418.008000px;}
.y17b{bottom:420.738000px;}
.y3f{bottom:420.991500px;}
.y40{bottom:421.479000px;}
.y148{bottom:422.358000px;}
.y3e{bottom:423.721500px;}
.yd2{bottom:424.554000px;}
.y7f{bottom:427.225500px;}
.y2af{bottom:429.037500px;}
.y111{bottom:429.949500px;}
.y2e9{bottom:431.503500px;}
.y80{bottom:432.651000px;}
.y24f{bottom:434.728500px;}
.y16{bottom:434.800500px;}
.y146{bottom:435.763500px;}
.y20a{bottom:436.552500px;}
.y180{bottom:436.794000px;}
.y17a{bottom:439.567500px;}
.yf1{bottom:440.445210px;}
.y3d{bottom:442.551000px;}
.y7e{bottom:443.326500px;}
.yd0{bottom:443.383500px;}
.y7d{bottom:446.055000px;}
.y2ae{bottom:446.611500px;}
.y2e8{bottom:448.764000px;}
.y110{bottom:448.779000px;}
.yd1{bottom:448.809000px;}
.y1ee{bottom:451.269390px;}
.y24e{bottom:453.558000px;}
.y144{bottom:454.593000px;}
.y209{bottom:455.382000px;}
.y179{bottom:458.397000px;}
.yf0{bottom:459.698640px;}
.y145{bottom:460.017000px;}
.y3c{bottom:461.380500px;}
.ycf{bottom:462.213000px;}
.y2ad{bottom:464.185500px;}
.y21d{bottom:464.916150px;}
.y2e7{bottom:466.024500px;}
.y10e{bottom:467.608500px;}
.y7c{bottom:469.368000px;}
.y1ed{bottom:470.522820px;}
.y15{bottom:470.622000px;}
.y24d{bottom:472.387500px;}
.y10f{bottom:473.034000px;}
.y142{bottom:473.422500px;}
.y208{bottom:474.211500px;}
.y21c{bottom:474.552000px;}
.y177{bottom:477.226500px;}
.y143{bottom:478.846500px;}
.yef{bottom:478.861890px;}
.y3b{bottom:480.210000px;}
.yce{bottom:481.042500px;}
.y178{bottom:482.652000px;}
.y2e6{bottom:483.283500px;}
.y10d{bottom:486.438000px;}
.y1ec{bottom:489.686070px;}
.y2ac{bottom:490.726500px;}
.y24c{bottom:491.217000px;}
.y141{bottom:492.252000px;}
.y207{bottom:493.041000px;}
.yee{bottom:498.115320px;}
.y3a{bottom:499.039500px;}
.ycd{bottom:499.872000px;}
.y2e5{bottom:500.544000px;}
.y7b{bottom:502.992000px;}
.y10b{bottom:505.267500px;}
.y14{bottom:506.442000px;}
.y1eb{bottom:508.947240px;}
.y24a{bottom:510.046500px;}
.y10c{bottom:510.693000px;}
.y176{bottom:510.792000px;}
.y140{bottom:511.081500px;}
.y206{bottom:511.870500px;}
.y24b{bottom:515.470500px;}
.y2ab{bottom:517.267500px;}
.yed{bottom:517.278570px;}
.y2e4{bottom:517.804500px;}
.ycc{bottom:518.701500px;}
.y7a{bottom:519.091500px;}
.y79{bottom:521.821500px;}
.y39{bottom:522.351000px;}
.y10a{bottom:524.097000px;}
.y13{bottom:524.329500px;}
.y13f{bottom:527.181000px;}
.y1ea{bottom:528.200670px;}
.y249{bottom:528.876000px;}
.y13e{bottom:529.911000px;}
.y205{bottom:530.700000px;}
.y166{bottom:533.221500px;}
.y2e3{bottom:535.065000px;}
.yec{bottom:536.539740px;}
.ycb{bottom:537.531000px;}
.y78{bottom:537.921000px;}
.y77{bottom:540.651000px;}
.y12{bottom:542.218500px;}
.y109{bottom:542.926500px;}
.y1c0{bottom:543.111390px;}
.y2aa{bottom:543.807000px;}
.y1e9{bottom:547.363920px;}
.y248{bottom:547.705500px;}
.y2e2{bottom:552.325500px;}
.y16c{bottom:554.669070px;}
.yeb{bottom:555.793170px;}
.yca{bottom:556.360500px;}
.y76{bottom:559.480500px;}
.y11{bottom:560.106000px;}
.y108{bottom:561.756000px;}
.y1bf{bottom:562.274640px;}
.y13d{bottom:563.476500px;}
.y247{bottom:563.805000px;}
.y204{bottom:564.265500px;}
.y246{bottom:566.535000px;}
.y2e1{bottom:569.586000px;}
.y2a9{bottom:570.348000px;}
.yc9{bottom:572.460000px;}
.y16b{bottom:573.923670px;}
.yea{bottom:574.956420px;}
.yc8{bottom:575.190000px;}
.y122{bottom:576.858150px;}
.y10{bottom:577.993500px;}
.y75{bottom:578.310000px;}
.y1be{bottom:581.528070px;}
.y245{bottom:582.634500px;}
.y203{bottom:583.498500px;}
.y244{bottom:585.364500px;}
.y120{bottom:585.906000px;}
.y121{bottom:586.494000px;}
.y2e0{bottom:586.846500px;}
.y2a8{bottom:587.922000px;}
.y16a{bottom:593.086920px;}
.y107{bottom:595.321500px;}
.yf{bottom:595.882500px;}
.y74{bottom:597.139500px;}
.y38{bottom:597.502500px;}
.yc7{bottom:598.503000px;}
.y1bd{bottom:600.794820px;}
.y243{bottom:601.464000px;}
.y1e7{bottom:602.083650px;}
.y2df{bottom:604.107000px;}
.y242{bottom:604.194000px;}
.y2a7{bottom:605.496000px;}
.y1e5{bottom:605.928000px;}
.y1e6{bottom:611.719500px;}
.ye{bottom:613.770000px;}
.y73{bottom:615.969000px;}
.ye6{bottom:617.751000px;}
.yc6{bottom:618.676500px;}
.y1bc{bottom:619.958070px;}
.y241{bottom:620.293500px;}
.y2de{bottom:621.366000px;}
.y240{bottom:623.023500px;}
.ye8{bottom:629.676150px;}
.yd{bottom:631.657500px;}
.y2a6{bottom:632.037000px;}
.y71{bottom:634.798500px;}
.y37{bottom:634.891500px;}
.y2dd{bottom:638.626500px;}
.y1bb{bottom:639.224820px;}
.ye7{bottom:639.312000px;}
.y72{bottom:640.222500px;}
.y23f{bottom:641.853000px;}
.y168{bottom:647.806650px;}
.yc{bottom:649.546500px;}
.y2a5{bottom:649.611000px;}
.y70{bottom:650.898000px;}
.y36{bottom:651.726000px;}
.yc5{bottom:652.300500px;}
.y6f{bottom:653.628000px;}
.y35{bottom:654.348000px;}
.y2dc{bottom:655.887000px;}
.y167{bottom:657.442500px;}
.y1ba{bottom:658.388070px;}
.y2a4{bottom:667.185000px;}
.yb{bottom:667.434000px;}
.yc4{bottom:671.130000px;}
.y6e{bottom:672.457500px;}
.y2db{bottom:673.147500px;}
.y34{bottom:673.806000px;}
.y23e{bottom:675.418500px;}
.y1b9{bottom:677.649240px;}
.y2a3{bottom:684.759000px;}
.y8{bottom:689.805055px;}
.yc3{bottom:689.959500px;}
.y2da{bottom:690.408000px;}
.y33{bottom:690.640500px;}
.y32{bottom:693.262500px;}
.y6d{bottom:695.770500px;}
.y1b8{bottom:696.902670px;}
.y21b{bottom:697.848000px;}
.y2a2{bottom:702.333000px;}
.yc2{bottom:706.059000px;}
.y2d9{bottom:707.668500px;}
.yc1{bottom:708.789000px;}
.y31{bottom:712.720500px;}
.y6c{bottom:715.944000px;}
.y1b7{bottom:716.065920px;}
.y2a1{bottom:719.907000px;}
.y182{bottom:724.393650px;}
.y2d8{bottom:724.929000px;}
.yc0{bottom:727.618500px;}
.y30{bottom:732.177000px;}
.y181{bottom:734.029500px;}
.y2d7{bottom:742.189500px;}
.ybe{bottom:746.448000px;}
.y6b{bottom:749.568000px;}
.y19b{bottom:750.703500px;}
.y2f{bottom:751.633500px;}
.ybf{bottom:751.873500px;}
.y2d6{bottom:759.450000px;}
.ybd{bottom:762.547500px;}
.y2a0{bottom:764.493000px;}
.ybb{bottom:765.277500px;}
.y6a{bottom:768.397500px;}
.ybc{bottom:770.701500px;}
.y1b5{bottom:770.785650px;}
.y2e{bottom:771.091500px;}
.y2d5{bottom:776.709000px;}
.y29f{bottom:779.916000px;}
.y1b4{bottom:780.421500px;}
.yb8{bottom:781.377000px;}
.yb9{bottom:781.866000px;}
.y29e{bottom:782.538000px;}
.yb7{bottom:784.107000px;}
.y69{bottom:787.227000px;}
.y2d{bottom:787.926000px;}
.yba{bottom:789.531000px;}
.y2c{bottom:790.548000px;}
.y2d4{bottom:793.969500px;}
.yb5{bottom:800.206500px;}
.y29d{bottom:800.583000px;}
.yb4{bottom:802.936500px;}
.y68{bottom:803.326500px;}
.y67{bottom:806.056500px;}
.yb6{bottom:808.360500px;}
.y2b{bottom:810.004500px;}
.y2d3{bottom:811.230000px;}
.yb3{bottom:821.766000px;}
.y66{bottom:824.886000px;}
.y2d2{bottom:828.490500px;}
.y2a{bottom:829.462500px;}
.y29c{bottom:836.560500px;}
.yb2{bottom:840.595500px;}
.y2d1{bottom:843.129000px;}
.y65{bottom:843.715500px;}
.y2d0{bottom:845.751000px;}
.y29b{bottom:852.660000px;}
.y29a{bottom:855.390000px;}
.y64{bottom:862.545000px;}
.y2cf{bottom:863.011500px;}
.yb1{bottom:863.908500px;}
.y29{bottom:864.586500px;}
.y299{bottom:874.219500px;}
.y2ce{bottom:880.272000px;}
.y28{bottom:880.725000px;}
.y63{bottom:881.374500px;}
.y298{bottom:890.319000px;}
.y297{bottom:893.049000px;}
.y27{bottom:896.865000px;}
.yb0{bottom:897.532500px;}
.y62{bottom:900.204000px;}
.y286{bottom:902.776110px;}
.y26a{bottom:904.027650px;}
.y296{bottom:911.878500px;}
.y26{bottom:913.005000px;}
.yae{bottom:913.632000px;}
.y269{bottom:913.663500px;}
.y2cd{bottom:914.791500px;}
.y301{bottom:914.793000px;}
.yad{bottom:916.362000px;}
.y61{bottom:919.033500px;}
.yaf{bottom:921.786000px;}
.y285{bottom:922.029540px;}
.y25{bottom:929.143500px;}
.y295{bottom:930.708000px;}
.y2cc{bottom:932.052000px;}
.yac{bottom:935.191500px;}
.y60{bottom:937.863000px;}
.y284{bottom:941.282970px;}
.y2cb{bottom:949.312500px;}
.y294{bottom:949.537500px;}
.yaa{bottom:951.291000px;}
.ya9{bottom:954.021000px;}
.y5f{bottom:956.692500px;}
.yab{bottom:959.445000px;}
.y283{bottom:960.446220px;}
.y2ca{bottom:966.573000px;}
.y293{bottom:968.367000px;}
.y7{bottom:970.215000px;}
.ya8{bottom:972.849000px;}
.y5e{bottom:975.522000px;}
.y2c9{bottom:983.833500px;}
.y292{bottom:987.196500px;}
.ya6{bottom:991.678500px;}
.y5d{bottom:994.351500px;}
.ya7{bottom:997.104000px;}
.y2c8{bottom:1001.094000px;}
.y291{bottom:1006.026000px;}
.y1b1{bottom:1007.778000px;}
.ya5{bottom:1010.508000px;}
.y6{bottom:1012.954500px;}
.y5c{bottom:1013.181000px;}
.y281{bottom:1015.165950px;}
.y1b2{bottom:1015.933500px;}
.y2c7{bottom:1018.354500px;}
.y280{bottom:1024.801800px;}
.y290{bottom:1024.855500px;}
.ya4{bottom:1029.337500px;}
.y5b{bottom:1032.010500px;}
.y300{bottom:1032.991500px;}
.y1b0{bottom:1034.763000px;}
.y2c6{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y28f{bottom:1043.685000px;}
.y1af{bottom:1045.437000px;}
.ya3{bottom:1048.167000px;}
.y5a{bottom:1050.840000px;}
.y2c5{bottom:1052.875500px;}
.y28e{bottom:1059.784500px;}
.y28d{bottom:1062.513000px;}
.ya1{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y59{bottom:1069.669500px;}
.y2c4{bottom:1070.134500px;}
.ya2{bottom:1072.422000px;}
.y28c{bottom:1081.342500px;}
.y1ae{bottom:1083.096000px;}
.y9f{bottom:1085.826000px;}
.y2c3{bottom:1087.395000px;}
.y58{bottom:1088.499000px;}
.y199{bottom:1090.003500px;}
.ya0{bottom:1091.251500px;}
.y3{bottom:1097.688000px;}
.y9d{bottom:1101.925500px;}
.y165{bottom:1102.414500px;}
.y9c{bottom:1104.655500px;}
.y57{bottom:1107.327000px;}
.y9e{bottom:1110.081000px;}
.y1{bottom:1141.174500px;}
.y56{bottom:1173.397500px;}
.h34{height:-174.700500px;}
.h33{height:-154.450500px;}
.h32{height:-134.200500px;}
.h30{height:-113.950500px;}
.h2f{height:-92.980500px;}
.h2d{height:-72.010500px;}
.h2b{height:2.663438px;}
.h1f{height:19.096888px;}
.h39{height:21.688500px;}
.h37{height:21.690000px;}
.h13{height:24.189514px;}
.h46{height:25.285248px;}
.h7{height:25.508090px;}
.h1e{height:26.110157px;}
.h2e{height:26.507812px;}
.h19{height:28.094532px;}
.h25{height:28.811839px;}
.ha{height:30.461558px;}
.hb{height:30.670772px;}
.h17{height:31.828453px;}
.h11{height:33.072749px;}
.h9{height:33.112997px;}
.h31{height:33.292969px;}
.h27{height:33.299897px;}
.h8{height:34.199443px;}
.hc{height:34.813397px;}
.h35{height:34.819453px;}
.h12{height:35.052500px;}
.hd{height:38.896243px;}
.he{height:39.165235px;}
.h45{height:39.434227px;}
.h15{height:42.748453px;}
.hf{height:43.217759px;}
.h3d{height:43.269961px;}
.h10{height:43.516637px;}
.h4{height:43.815515px;}
.h2c{height:44.268047px;}
.h21{height:44.279648px;}
.h6{height:44.473046px;}
.h14{height:45.885514px;}
.h16{height:45.891514px;}
.h3b{height:48.101558px;}
.h1d{height:48.737558px;}
.h1c{height:48.743558px;}
.h44{height:49.117939px;}
.h1b{height:49.782344px;}
.h23{height:49.939453px;}
.h3f{height:49.957453px;}
.h2{height:50.930649px;}
.h41{height:54.575123px;}
.h18{height:54.768749px;}
.h22{height:55.599258px;}
.h29{height:55.628418px;}
.h36{height:58.924212px;}
.h24{height:59.004492px;}
.h38{height:72.562500px;}
.h5{height:77.792486px;}
.h1a{height:82.828243px;}
.h3a{height:91.842344px;}
.h3{height:99.941241px;}
.h20{height:406.776000px;}
.h3e{height:418.599000px;}
.h40{height:421.753500px;}
.h3c{height:516.352500px;}
.h28{height:528.964500px;}
.h26{height:533.695500px;}
.h2a{height:682.807500px;}
.h42{height:860.863500px;}
.h43{height:882.441300px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wd{width:53.190000px;}
.we{width:55.458000px;}
.wc{width:63.720000px;}
.wb{width:74.430000px;}
.w3{width:75.364879px;}
.w8{width:85.050000px;}
.wf{width:91.530000px;}
.w10{width:95.130000px;}
.w9{width:138.150000px;}
.w2{width:198.822293px;}
.wa{width:225.558000px;}
.w5{width:349.227000px;}
.w6{width:350.803500px;}
.w11{width:358.687500px;}
.w4{width:480.090000px;}
.w12{width:501.373500px;}
.w13{width:502.951500px;}
.w14{width:513.207000px;}
.w15{width:528.018000px;}
.w7{width:733.439550px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xbf{left:-217.183500px;}
.x111{left:-215.607000px;}
.x124{left:-209.299500px;}
.x142{left:-207.840000px;}
.x11b{left:-205.359000px;}
.xaa{left:-197.475000px;}
.xc1{left:-21.613500px;}
.x112{left:-20.036640px;}
.x126{left:-13.729500px;}
.x143{left:-12.269640px;}
.x11c{left:-9.788640px;}
.xab{left:-1.904640px;}
.x0{left:0.000000px;}
.xe8{left:8.550000px;}
.xc2{left:10.246500px;}
.x113{left:11.827320px;}
.xed{left:13.590000px;}
.xfd{left:15.300000px;}
.xf2{left:17.100000px;}
.x127{left:18.130500px;}
.xf6{left:20.070000px;}
.xfc{left:22.500000px;}
.xfb{left:24.030000px;}
.xf1{left:25.920000px;}
.xff{left:28.080000px;}
.x3{left:29.274117px;}
.xeb{left:30.960000px;}
.x102{left:33.120000px;}
.x100{left:35.010000px;}
.xf4{left:36.090000px;}
.x101{left:40.950000px;}
.xef{left:43.290000px;}
.xfe{left:44.730000px;}
.xee{left:50.580000px;}
.xe9{left:52.020000px;}
.x1{left:54.000000px;}
.x2{left:57.551633px;}
.xfa{left:71.460000px;}
.x109{left:75.922500px;}
.x107{left:78.034500px;}
.xe3{left:79.737450px;}
.x9d{left:82.930500px;}
.x9e{left:84.847500px;}
.x9f{left:85.890000px;}
.x9a{left:86.905500px;}
.x104{left:90.009000px;}
.x9c{left:95.176500px;}
.xa0{left:100.081500px;}
.x10a{left:122.877000px;}
.xa3{left:148.602000px;}
.xa4{left:153.832500px;}
.x108{left:171.618000px;}
.x9b{left:182.434500px;}
.xe5{left:193.147050px;}
.xe4{left:197.021550px;}
.xe6{left:210.971550px;}
.x103{left:225.011550px;}
.xec{left:243.540000px;}
.x5{left:249.832500px;}
.x4{left:250.897500px;}
.x106{left:254.029500px;}
.x121{left:260.211000px;}
.xd6{left:263.578500px;}
.xcf{left:269.557500px;}
.x122{left:270.694500px;}
.x99{left:272.401500px;}
.x12d{left:274.110000px;}
.xd0{left:275.983500px;}
.xdd{left:281.482500px;}
.xf{left:282.786000px;}
.xb1{left:284.572500px;}
.xd1{left:287.718000px;}
.xd8{left:292.630500px;}
.xca{left:294.870000px;}
.xd2{left:297.867000px;}
.x10{left:299.377500px;}
.xcb{left:301.296000px;}
.xb2{left:303.367500px;}
.x50{left:305.343000px;}
.x11{left:306.850500px;}
.xe1{left:308.763000px;}
.x6{left:310.227000px;}
.xcc{left:313.111500px;}
.x12{left:314.472000px;}
.x149{left:315.613500px;}
.x51{left:316.675500px;}
.x10f{left:317.676000px;}
.x13{left:321.943500px;}
.x95{left:323.977500px;}
.x117{left:325.510500px;}
.x60{left:327.565500px;}
.x10b{left:328.993500px;}
.x6d{left:330.544500px;}
.xb3{left:331.587000px;}
.x61{left:334.372500px;}
.xde{left:335.847000px;}
.xdf{left:339.850500px;}
.x6e{left:341.370000px;}
.xc4{left:343.258500px;}
.xf9{left:345.791550px;}
.x118{left:348.076500px;}
.x52{left:350.314500px;}
.x13b{left:352.749000px;}
.x53{left:356.740500px;}
.x13c{left:359.556000px;}
.x54{left:361.647000px;}
.x119{left:363.019500px;}
.xe7{left:364.419000px;}
.x55{left:368.073000px;}
.x14{left:373.195500px;}
.x12e{left:376.717500px;}
.x5c{left:378.243000px;}
.x144{left:380.089500px;}
.x12f{left:383.143500px;}
.x15{left:384.751500px;}
.x145{left:386.814000px;}
.xc8{left:389.023500px;}
.x5d{left:390.534000px;}
.x81{left:392.484000px;}
.xc9{left:395.829000px;}
.xbb{left:397.320000px;}
.x82{left:398.910000px;}
.x130{left:404.112000px;}
.xc0{left:405.614610px;}
.xbd{left:407.218500px;}
.xcd{left:410.001000px;}
.xa8{left:412.803000px;}
.x146{left:414.792000px;}
.x5e{left:415.851000px;}
.x36{left:417.294000px;}
.x11a{left:418.429500px;}
.xa9{left:419.610000px;}
.x5f{left:422.656500px;}
.x123{left:425.350500px;}
.x23{left:426.666000px;}
.xa1{left:429.864000px;}
.x13d{left:430.962000px;}
.x37{left:432.238500px;}
.x68{left:434.196000px;}
.x70{left:435.336000px;}
.x19{left:438.849000px;}
.x71{left:442.143000px;}
.xa2{left:444.529500px;}
.x1a{left:446.320500px;}
.x1b{left:449.982000px;}
.xd3{left:452.238000px;}
.xb4{left:454.156500px;}
.x1c{left:457.453500px;}
.x11e{left:458.937000px;}
.xad{left:460.987500px;}
.x1d{left:464.776500px;}
.x69{left:466.461000px;}
.x115{left:467.512500px;}
.x1e{left:472.248000px;}
.x6a{left:473.266500px;}
.xc7{left:476.503500px;}
.x24{left:477.918000px;}
.xce{left:481.725000px;}
.x7d{left:483.061500px;}
.x56{left:485.265000px;}
.x57{left:491.691000px;}
.xbc{left:493.990500px;}
.x58{left:496.597500px;}
.x141{left:498.441000px;}
.xae{left:500.283000px;}
.x59{left:503.023500px;}
.xbe{left:504.616500px;}
.xda{left:506.464500px;}
.x1f{left:509.248500px;}
.x11f{left:511.092000px;}
.x125{left:512.681580px;}
.xaf{left:514.476000px;}
.x20{left:515.674500px;}
.x75{left:516.816000px;}
.x76{left:518.967000px;}
.xdb{left:521.409000px;}
.xf0{left:523.899000px;}
.x77{left:525.393000px;}
.x83{left:526.863000px;}
.xb0{left:531.685500px;}
.x11d{left:533.095320px;}
.xf3{left:534.971550px;}
.x131{left:537.808500px;}
.x7f{left:539.466000px;}
.x44{left:544.104000px;}
.xb6{left:545.460000px;}
.xd7{left:547.299000px;}
.x80{left:548.695500px;}
.x45{left:550.909500px;}
.x84{left:553.509000px;}
.x87{left:554.589000px;}
.xb7{left:557.007000px;}
.xac{left:558.042000px;}
.x88{left:565.221000px;}
.xb8{left:567.168000px;}
.x85{left:569.275500px;}
.x7e{left:570.852000px;}
.x38{left:576.337500px;}
.x134{left:577.696500px;}
.x132{left:582.307500px;}
.x135{left:584.502000px;}
.xea{left:587.619000px;}
.x3e{left:588.696000px;}
.x39{left:591.280500px;}
.x3f{left:595.122000px;}
.x3c{left:597.859500px;}
.x3a{left:598.902000px;}
.x40{left:600.108000px;}
.x91{left:602.311500px;}
.x3d{left:604.285500px;}
.x41{left:606.534000px;}
.xb{left:607.723500px;}
.x3b{left:609.049500px;}
.xa5{left:610.501500px;}
.xe2{left:612.256500px;}
.x2f{left:613.449000px;}
.xa6{left:616.032000px;}
.xc{left:617.074500px;}
.xc5{left:619.209000px;}
.x30{left:620.920500px;}
.xb9{left:621.951000px;}
.x31{left:624.642000px;}
.xc6{left:626.016000px;}
.x86{left:627.526500px;}
.x136{left:628.999500px;}
.xa7{left:630.870000px;}
.x32{left:632.113500px;}
.x33{left:635.835000px;}
.xba{left:636.894000px;}
.x6f{left:638.401500px;}
.x42{left:639.805500px;}
.xf5{left:640.809000px;}
.x34{left:643.306500px;}
.xf7{left:644.321550px;}
.x116{left:645.480000px;}
.x35{left:647.028000px;}
.x14e{left:648.451500px;}
.x43{left:649.980000px;}
.x21{left:651.463500px;}
.xd4{left:652.561500px;}
.xd{left:654.541500px;}
.xd5{left:659.368500px;}
.xe{left:660.520500px;}
.x114{left:661.588500px;}
.x22{left:662.607000px;}
.x62{left:665.542500px;}
.x110{left:667.101000px;}
.x27{left:668.436000px;}
.x63{left:671.968500px;}
.x137{left:673.275000px;}
.x28{left:675.907500px;}
.x72{left:678.178500px;}
.x29{left:679.569000px;}
.x133{left:681.472500px;}
.x46{left:682.474500px;}
.x10c{left:683.871000px;}
.x2a{left:687.040500px;}
.x138{left:688.219500px;}
.x2b{left:690.702000px;}
.x139{left:692.029500px;}
.x47{left:693.777000px;}
.xe0{left:694.980000px;}
.x105{left:696.699000px;}
.x2c{left:698.173500px;}
.xdc{left:700.200000px;}
.x10e{left:701.202000px;}
.x89{left:702.723000px;}
.x2d{left:705.496500px;}
.x13a{left:706.974000px;}
.x48{left:708.423000px;}
.xb5{left:710.274000px;}
.x2e{left:712.968000px;}
.x64{left:715.254000px;}
.x8d{left:716.931000px;}
.x93{left:718.084500px;}
.x49{left:719.541000px;}
.x148{left:720.672000px;}
.x65{left:721.680000px;}
.xc3{left:722.863500px;}
.x140{left:724.153500px;}
.x78{left:725.581500px;}
.xd9{left:726.777000px;}
.x94{left:728.241000px;}
.x73{left:729.852000px;}
.x4a{left:731.725500px;}
.x14a{left:734.736000px;}
.x74{left:736.657500px;}
.x4b{left:738.151500px;}
.x8e{left:740.421000px;}
.x120{left:742.285500px;}
.x7{left:743.682000px;}
.x10d{left:744.855000px;}
.x92{left:746.713500px;}
.x147{left:747.754500px;}
.x8{left:749.661000px;}
.x8f{left:750.876000px;}
.x79{left:752.490000px;}
.x16{left:755.895000px;}
.xf8{left:757.719000px;}
.x5a{left:759.787500px;}
.x17{left:762.502500px;}
.x96{left:766.123500px;}
.x7a{left:768.258000px;}
.x5b{left:769.939500px;}
.x97{left:774.741000px;}
.x128{left:777.163500px;}
.x6b{left:778.222500px;}
.x90{left:779.686500px;}
.x8a{left:782.023500px;}
.x14d{left:783.100500px;}
.x6c{left:784.648500px;}
.x129{left:787.317000px;}
.x4c{left:789.114000px;}
.x8b{left:792.657000px;}
.x98{left:794.430000px;}
.x25{left:795.777000px;}
.x14b{left:796.942500px;}
.x66{left:798.259500px;}
.x4d{left:800.232000px;}
.x26{left:803.248500px;}
.x67{left:805.065000px;}
.x9{left:806.482500px;}
.x12a{left:809.523000px;}
.xa{left:815.742000px;}
.x13e{left:817.771500px;}
.x4e{left:819.739500px;}
.x7b{left:821.299500px;}
.x14c{left:822.354000px;}
.x14f{left:823.584000px;}
.x4f{left:826.165500px;}
.x7c{left:828.106500px;}
.x12b{left:830.574000px;}
.x18{left:832.488000px;}
.x13f{left:833.977500px;}
.x8c{left:835.332000px;}
.x12c{left:837.000000px;}
@media print{
.vc{vertical-align:-19.290667pt;}
.vf{vertical-align:-15.429333pt;}
.ve{vertical-align:-13.440000pt;}
.vd{vertical-align:-10.933333pt;}
.v1{vertical-align:-9.328000pt;}
.v9{vertical-align:-8.138667pt;}
.v8{vertical-align:-0.965333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:9.706667pt;}
.vb{vertical-align:12.538667pt;}
.v7{vertical-align:13.504000pt;}
.v10{vertical-align:15.429333pt;}
.va{vertical-align:16.394667pt;}
.v6{vertical-align:17.360000pt;}
.v2{vertical-align:19.285333pt;}
.v5{vertical-align:30.560000pt;}
.v4{vertical-align:39.050667pt;}
.ls56{letter-spacing:-0.534400pt;}
.ls61{letter-spacing:-0.480960pt;}
.ls3a{letter-spacing:-0.427520pt;}
.ls39{letter-spacing:-0.374080pt;}
.ls32{letter-spacing:-0.320640pt;}
.ls4f{letter-spacing:-0.294400pt;}
.ls49{letter-spacing:-0.288000pt;}
.ls4b{letter-spacing:-0.267200pt;}
.ls31{letter-spacing:-0.213760pt;}
.ls33{letter-spacing:-0.160320pt;}
.ls4d{letter-spacing:-0.144000pt;}
.ls47{letter-spacing:-0.128000pt;}
.ls37{letter-spacing:-0.106880pt;}
.ls43{letter-spacing:-0.096000pt;}
.ls30{letter-spacing:-0.085120pt;}
.ls4a{letter-spacing:-0.064000pt;}
.ls34{letter-spacing:-0.053440pt;}
.ls7{letter-spacing:0.000000pt;}
.ls87{letter-spacing:0.000012pt;}
.ls5f{letter-spacing:0.000491pt;}
.ls83{letter-spacing:0.000600pt;}
.ls75{letter-spacing:0.000621pt;}
.ls73{letter-spacing:0.000711pt;}
.ls78{letter-spacing:0.000801pt;}
.ls6b{letter-spacing:0.000853pt;}
.ls64{letter-spacing:0.000921pt;}
.ls6c{letter-spacing:0.000980pt;}
.ls74{letter-spacing:0.001026pt;}
.ls6e{letter-spacing:0.001115pt;}
.ls77{letter-spacing:0.001408pt;}
.ls88{letter-spacing:0.001467pt;}
.ls80{letter-spacing:0.001688pt;}
.ls6f{letter-spacing:0.001723pt;}
.ls7b{letter-spacing:0.001825pt;}
.ls72{letter-spacing:0.002038pt;}
.ls84{letter-spacing:0.002185pt;}
.ls79{letter-spacing:0.002188pt;}
.ls81{letter-spacing:0.002397pt;}
.ls76{letter-spacing:0.002525pt;}
.ls7f{letter-spacing:0.002703pt;}
.ls12{letter-spacing:0.002825pt;}
.ls7c{letter-spacing:0.003261pt;}
.ls71{letter-spacing:0.003290pt;}
.ls6d{letter-spacing:0.003304pt;}
.ls6a{letter-spacing:0.004267pt;}
.ls35{letter-spacing:0.048000pt;}
.ls36{letter-spacing:0.053440pt;}
.ls46{letter-spacing:0.064000pt;}
.ls48{letter-spacing:0.080160pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls20{letter-spacing:0.106880pt;}
.ls5e{letter-spacing:0.117568pt;}
.ls4c{letter-spacing:0.117760pt;}
.ls38{letter-spacing:0.128000pt;}
.ls4e{letter-spacing:0.144000pt;}
.ls1e{letter-spacing:0.160320pt;}
.ls2f{letter-spacing:0.170240pt;}
.ls3f{letter-spacing:0.171008pt;}
.ls53{letter-spacing:0.176352pt;}
.ls62{letter-spacing:0.192000pt;}
.ls5b{letter-spacing:0.293920pt;}
.ls5a{letter-spacing:0.320000pt;}
.ls3b{letter-spacing:0.374080pt;}
.ls23{letter-spacing:0.384768pt;}
.ls60{letter-spacing:0.427520pt;}
.ls15{letter-spacing:0.447791pt;}
.ls14{letter-spacing:0.462302pt;}
.ls18{letter-spacing:0.467635pt;}
.lsc{letter-spacing:0.482502pt;}
.lsd{letter-spacing:0.487835pt;}
.ls28{letter-spacing:0.507733pt;}
.ls2e{letter-spacing:0.640696pt;}
.ls2c{letter-spacing:0.659733pt;}
.ls2b{letter-spacing:0.665067pt;}
.ls25{letter-spacing:0.694720pt;}
.ls3e{letter-spacing:0.960000pt;}
.ls5d{letter-spacing:1.015360pt;}
.ls8{letter-spacing:1.133683pt;}
.ls22{letter-spacing:1.336000pt;}
.ls1{letter-spacing:1.654338pt;}
.ls21{letter-spacing:1.656640pt;}
.ls1d{letter-spacing:1.977280pt;}
.ls26{letter-spacing:2.297920pt;}
.lse{letter-spacing:2.651733pt;}
.ls11{letter-spacing:2.656533pt;}
.ls5{letter-spacing:2.657067pt;}
.ls66{letter-spacing:2.661867pt;}
.ls5c{letter-spacing:2.939200pt;}
.ls1a{letter-spacing:3.103791pt;}
.ls9{letter-spacing:3.158400pt;}
.lsa{letter-spacing:3.163733pt;}
.ls24{letter-spacing:3.259840pt;}
.lsb{letter-spacing:3.318400pt;}
.ls50{letter-spacing:3.580480pt;}
.ls3d{letter-spacing:4.863040pt;}
.ls3c{letter-spacing:5.183680pt;}
.ls44{letter-spacing:5.504320pt;}
.ls52{letter-spacing:5.824960pt;}
.ls54{letter-spacing:6.145600pt;}
.ls40{letter-spacing:7.428160pt;}
.ls57{letter-spacing:8.390080pt;}
.ls2{letter-spacing:9.298933pt;}
.ls41{letter-spacing:9.993280pt;}
.ls59{letter-spacing:10.469760pt;}
.ls6{letter-spacing:10.626533pt;}
.ls55{letter-spacing:10.839309pt;}
.ls51{letter-spacing:11.596480pt;}
.ls82{letter-spacing:11.742069pt;}
.ls86{letter-spacing:11.768938pt;}
.ls7a{letter-spacing:11.900800pt;}
.ls68{letter-spacing:11.954133pt;}
.ls69{letter-spacing:11.959467pt;}
.ls7e{letter-spacing:12.234888pt;}
.ls70{letter-spacing:12.327153pt;}
.ls65{letter-spacing:12.954604pt;}
.ls10{letter-spacing:13.070931pt;}
.ls0{letter-spacing:13.283733pt;}
.ls4{letter-spacing:14.608533pt;}
.ls17{letter-spacing:14.613377pt;}
.ls13{letter-spacing:14.613867pt;}
.ls67{letter-spacing:14.823467pt;}
.ls89{letter-spacing:14.828800pt;}
.ls7d{letter-spacing:15.249145pt;}
.ls2d{letter-spacing:15.937067pt;}
.lsf{letter-spacing:15.942400pt;}
.ls85{letter-spacing:16.070944pt;}
.ls63{letter-spacing:16.790302pt;}
.ls2a{letter-spacing:17.031835pt;}
.ls27{letter-spacing:17.852979pt;}
.ls42{letter-spacing:20.562806pt;}
.ls29{letter-spacing:21.351835pt;}
.ls45{letter-spacing:22.528759pt;}
.ls3{letter-spacing:25.292137pt;}
.ls16{letter-spacing:99.808533pt;}
.ls19{letter-spacing:135.003200pt;}
.ls1b{letter-spacing:159.301867pt;}
.ls1c{letter-spacing:285.525867pt;}
.ls58{letter-spacing:1853.360320pt;}
.ws71{word-spacing:-53.440000pt;}
.ws6e{word-spacing:-32.000000pt;}
.wseb{word-spacing:-16.128000pt;}
.wse9{word-spacing:-15.936000pt;}
.wsea{word-spacing:-15.872000pt;}
.ws69{word-spacing:-13.520320pt;}
.ws73{word-spacing:-13.466880pt;}
.ws6d{word-spacing:-13.413440pt;}
.ws6a{word-spacing:-13.360000pt;}
.ws74{word-spacing:-13.306560pt;}
.ws50{word-spacing:-13.283467pt;}
.ws6f{word-spacing:-13.253120pt;}
.wsae{word-spacing:-13.199680pt;}
.ws67{word-spacing:-13.146240pt;}
.wse8{word-spacing:-13.092800pt;}
.ws68{word-spacing:-13.039360pt;}
.ws72{word-spacing:-12.985920pt;}
.ws75{word-spacing:-12.932480pt;}
.ws13e{word-spacing:-12.879040pt;}
.wsac{word-spacing:-12.096000pt;}
.ws6c{word-spacing:-12.000000pt;}
.ws1a{word-spacing:-11.955200pt;}
.wsad{word-spacing:-11.904000pt;}
.ws66{word-spacing:-10.810240pt;}
.ws32{word-spacing:-10.626800pt;}
.ws5{word-spacing:-9.298400pt;}
.ws70{word-spacing:-8.128000pt;}
.wse7{word-spacing:-8.096000pt;}
.wsce{word-spacing:-8.064000pt;}
.ws6b{word-spacing:-8.000000pt;}
.wse6{word-spacing:-7.936000pt;}
.wse5{word-spacing:-7.904000pt;}
.wscf{word-spacing:-7.872000pt;}
.ws128{word-spacing:-7.360000pt;}
.ws42{word-spacing:-2.975497pt;}
.ws38{word-spacing:-2.656693pt;}
.ws43{word-spacing:-2.603559pt;}
.ws10c{word-spacing:-2.391024pt;}
.wsfa{word-spacing:-2.125355pt;}
.ws4c{word-spacing:-2.072221pt;}
.wse1{word-spacing:-1.923840pt;}
.ws15e{word-spacing:-1.912819pt;}
.wsfb{word-spacing:-1.859685pt;}
.ws28{word-spacing:-1.806551pt;}
.ws3{word-spacing:-1.696326pt;}
.ws26{word-spacing:-1.647150pt;}
.ws2d{word-spacing:-1.540882pt;}
.ws144{word-spacing:-1.487748pt;}
.ws167{word-spacing:-1.482445pt;}
.wse0{word-spacing:-1.442880pt;}
.ws17f{word-spacing:-1.434624pt;}
.ws2{word-spacing:-1.175671pt;}
.ws2e{word-spacing:-1.168945pt;}
.ws133{word-spacing:-1.122240pt;}
.ws10f{word-spacing:-1.009543pt;}
.ws12b{word-spacing:-0.903276pt;}
.ws125{word-spacing:-0.855040pt;}
.ws2f{word-spacing:-0.850142pt;}
.ws105{word-spacing:-0.801600pt;}
.ws56{word-spacing:-0.797008pt;}
.ws104{word-spacing:-0.694720pt;}
.ws110{word-spacing:-0.690740pt;}
.wsb1{word-spacing:-0.637606pt;}
.ws16{word-spacing:-0.621670pt;}
.ws7c{word-spacing:-0.584473pt;}
.ws164{word-spacing:-0.573850pt;}
.ws9c{word-spacing:-0.534400pt;}
.ws9b{word-spacing:-0.480960pt;}
.ws34{word-spacing:-0.478205pt;}
.ws147{word-spacing:-0.427520pt;}
.ws10e{word-spacing:-0.425071pt;}
.wscc{word-spacing:-0.374080pt;}
.ws161{word-spacing:-0.334746pt;}
.ws40{word-spacing:-0.318803pt;}
.ws41{word-spacing:-0.265669pt;}
.ws129{word-spacing:-0.239104pt;}
.wsdc{word-spacing:-0.213760pt;}
.ws36{word-spacing:-0.212535pt;}
.wsfd{word-spacing:-0.192000pt;}
.ws163{word-spacing:-0.191283pt;}
.ws7e{word-spacing:-0.170240pt;}
.ws9d{word-spacing:-0.160320pt;}
.ws23{word-spacing:-0.159402pt;}
.ws100{word-spacing:-0.144000pt;}
.ws154{word-spacing:-0.143462pt;}
.wsff{word-spacing:-0.117760pt;}
.wsdd{word-spacing:-0.106880pt;}
.ws3b{word-spacing:-0.106268pt;}
.ws159{word-spacing:-0.095642pt;}
.ws94{word-spacing:-0.053440pt;}
.ws1{word-spacing:-0.053134pt;}
.ws18{word-spacing:-0.047821pt;}
.ws33{word-spacing:-0.042507pt;}
.ws6{word-spacing:-0.037194pt;}
.ws5c{word-spacing:-0.004617pt;}
.wsf1{word-spacing:-0.003319pt;}
.ws0{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.000717pt;}
.ws13{word-spacing:0.047821pt;}
.ws3a{word-spacing:0.053134pt;}
.wsab{word-spacing:0.053440pt;}
.ws7f{word-spacing:0.085120pt;}
.ws162{word-spacing:0.095642pt;}
.ws92{word-spacing:0.096000pt;}
.ws2c{word-spacing:0.106268pt;}
.ws99{word-spacing:0.106880pt;}
.wse2{word-spacing:0.128000pt;}
.ws16e{word-spacing:0.143462pt;}
.ws91{word-spacing:0.144000pt;}
.ws35{word-spacing:0.159402pt;}
.ws90{word-spacing:0.160320pt;}
.ws7{word-spacing:0.185968pt;}
.ws17{word-spacing:0.191283pt;}
.ws3c{word-spacing:0.212535pt;}
.ws81{word-spacing:0.213760pt;}
.ws15{word-spacing:0.239104pt;}
.ws9{word-spacing:0.260355pt;}
.ws3d{word-spacing:0.265669pt;}
.wsfe{word-spacing:0.267200pt;}
.ws14{word-spacing:0.286925pt;}
.wsfc{word-spacing:0.288000pt;}
.ws101{word-spacing:0.294400pt;}
.ws10a{word-spacing:0.318803pt;}
.wsc0{word-spacing:0.320640pt;}
.ws64{word-spacing:0.340058pt;}
.ws30{word-spacing:0.371937pt;}
.ws136{word-spacing:0.374080pt;}
.ws178{word-spacing:0.382566pt;}
.ws4a{word-spacing:0.425071pt;}
.ws8f{word-spacing:0.427520pt;}
.wsc4{word-spacing:0.480960pt;}
.ws49{word-spacing:0.500000pt;}
.ws118{word-spacing:0.534400pt;}
.wsb9{word-spacing:0.587840pt;}
.ws17b{word-spacing:0.621670pt;}
.ws54{word-spacing:0.637606pt;}
.ws120{word-spacing:0.694720pt;}
.ws192{word-spacing:0.717312pt;}
.ws52{word-spacing:0.743874pt;}
.wsa8{word-spacing:0.748160pt;}
.ws16b{word-spacing:0.765133pt;}
.ws4b{word-spacing:0.797008pt;}
.wsa7{word-spacing:0.801600pt;}
.ws39{word-spacing:0.850142pt;}
.ws3e{word-spacing:0.903276pt;}
.wsda{word-spacing:0.908480pt;}
.wsbf{word-spacing:0.961920pt;}
.ws16d{word-spacing:1.004237pt;}
.ws156{word-spacing:1.056000pt;}
.ws4f{word-spacing:1.062677pt;}
.wsc8{word-spacing:1.068800pt;}
.ws157{word-spacing:1.104000pt;}
.wsbe{word-spacing:1.122240pt;}
.ws12{word-spacing:1.147699pt;}
.wsb4{word-spacing:1.168945pt;}
.ws1f{word-spacing:1.222079pt;}
.ws14e{word-spacing:1.229120pt;}
.ws8b{word-spacing:1.336000pt;}
.ws27{word-spacing:1.381481pt;}
.ws84{word-spacing:1.389440pt;}
.ws145{word-spacing:1.442880pt;}
.ws168{word-spacing:1.482445pt;}
.ws8a{word-spacing:1.496320pt;}
.wsdb{word-spacing:1.549760pt;}
.ws17a{word-spacing:1.625907pt;}
.ws107{word-spacing:1.656640pt;}
.ws65{word-spacing:1.700284pt;}
.ws13a{word-spacing:1.710080pt;}
.ws143{word-spacing:1.753418pt;}
.wsc3{word-spacing:1.763520pt;}
.ws155{word-spacing:1.776000pt;}
.ws8{word-spacing:1.785293pt;}
.ws13f{word-spacing:1.806551pt;}
.ws139{word-spacing:1.816960pt;}
.ws7d{word-spacing:1.859685pt;}
.ws83{word-spacing:1.870400pt;}
.ws80{word-spacing:1.977280pt;}
.ws47{word-spacing:2.019087pt;}
.wsa3{word-spacing:2.030720pt;}
.ws48{word-spacing:2.072221pt;}
.ws12f{word-spacing:2.084160pt;}
.ws179{word-spacing:2.104115pt;}
.ws4e{word-spacing:2.125355pt;}
.ws82{word-spacing:2.137600pt;}
.wsb2{word-spacing:2.178489pt;}
.ws14c{word-spacing:2.191040pt;}
.wsb3{word-spacing:2.231622pt;}
.wsaa{word-spacing:2.244480pt;}
.ws1e{word-spacing:2.284756pt;}
.wsa4{word-spacing:2.297920pt;}
.ws89{word-spacing:2.351360pt;}
.ws108{word-spacing:2.391024pt;}
.ws18b{word-spacing:2.391040pt;}
.ws15f{word-spacing:2.444158pt;}
.ws88{word-spacing:2.458240pt;}
.ws87{word-spacing:2.511680pt;}
.ws11{word-spacing:2.550432pt;}
.wsb6{word-spacing:2.603559pt;}
.ws9e{word-spacing:2.618560pt;}
.ws132{word-spacing:2.688000pt;}
.ws46{word-spacing:2.709827pt;}
.ws106{word-spacing:2.725440pt;}
.wsa1{word-spacing:2.778880pt;}
.ws141{word-spacing:2.816095pt;}
.ws19{word-spacing:2.861926pt;}
.ws18a{word-spacing:2.863633pt;}
.ws188{word-spacing:2.866628pt;}
.ws184{word-spacing:2.866731pt;}
.ws191{word-spacing:2.866782pt;}
.wscd{word-spacing:2.869229pt;}
.ws187{word-spacing:2.869248pt;}
.ws15c{word-spacing:2.880000pt;}
.ws122{word-spacing:2.939200pt;}
.ws15b{word-spacing:2.976000pt;}
.wsa2{word-spacing:2.992640pt;}
.wsb5{word-spacing:3.028630pt;}
.ws14d{word-spacing:3.046080pt;}
.ws121{word-spacing:3.099520pt;}
.ws29{word-spacing:3.134898pt;}
.ws1b{word-spacing:3.188032pt;}
.ws7a{word-spacing:3.241166pt;}
.ws183{word-spacing:3.251814pt;}
.ws137{word-spacing:3.259840pt;}
.ws12a{word-spacing:3.294300pt;}
.ws124{word-spacing:3.313280pt;}
.ws24{word-spacing:3.347434pt;}
.ws131{word-spacing:3.360000pt;}
.ws146{word-spacing:3.473600pt;}
.wsd1{word-spacing:3.506835pt;}
.ws9f{word-spacing:3.527040pt;}
.ws12e{word-spacing:3.580480pt;}
.ws12c{word-spacing:3.613103pt;}
.wsa0{word-spacing:3.633920pt;}
.wsaf{word-spacing:3.666237pt;}
.ws173{word-spacing:3.682202pt;}
.ws15a{word-spacing:3.696000pt;}
.ws114{word-spacing:3.740800pt;}
.ws149{word-spacing:3.794240pt;}
.ws130{word-spacing:3.847680pt;}
.ws190{word-spacing:3.873485pt;}
.ws109{word-spacing:3.878772pt;}
.ws113{word-spacing:3.901120pt;}
.ws78{word-spacing:3.931906pt;}
.ws85{word-spacing:3.954560pt;}
.ws148{word-spacing:4.008000pt;}
.ws86{word-spacing:4.061440pt;}
.ws10b{word-spacing:4.091308pt;}
.ws18c{word-spacing:4.112589pt;}
.ws13b{word-spacing:4.114880pt;}
.ws160{word-spacing:4.144442pt;}
.ws16a{word-spacing:4.208230pt;}
.wsde{word-spacing:4.221760pt;}
.ws97{word-spacing:4.275200pt;}
.ws37{word-spacing:4.356977pt;}
.wsc9{word-spacing:4.382080pt;}
.ws166{word-spacing:4.399514pt;}
.wsdf{word-spacing:4.435520pt;}
.ws10d{word-spacing:4.463245pt;}
.ws77{word-spacing:4.516379pt;}
.ws8d{word-spacing:4.542400pt;}
.ws20{word-spacing:4.569513pt;}
.ws11b{word-spacing:4.595840pt;}
.ws140{word-spacing:4.622646pt;}
.ws11a{word-spacing:4.649280pt;}
.ws1d{word-spacing:4.675780pt;}
.wsbc{word-spacing:4.702720pt;}
.ws126{word-spacing:4.809600pt;}
.ws8e{word-spacing:4.863040pt;}
.wsca{word-spacing:4.916480pt;}
.ws8c{word-spacing:5.023360pt;}
.ws103{word-spacing:5.076800pt;}
.wsba{word-spacing:5.130240pt;}
.wsbd{word-spacing:5.183680pt;}
.wsc1{word-spacing:5.237120pt;}
.wsf9{word-spacing:5.311497pt;}
.ws1c{word-spacing:5.313387pt;}
.ws59{word-spacing:5.314531pt;}
.wsf8{word-spacing:5.315831pt;}
.wsc2{word-spacing:5.344000pt;}
.ws4d{word-spacing:5.366521pt;}
.wsf{word-spacing:5.393072pt;}
.ws10{word-spacing:5.467459pt;}
.ws111{word-spacing:5.472788pt;}
.wsa9{word-spacing:5.504320pt;}
.ws55{word-spacing:5.525922pt;}
.wsbb{word-spacing:5.557760pt;}
.ws7b{word-spacing:5.632190pt;}
.wse3{word-spacing:5.664640pt;}
.wsd9{word-spacing:5.685324pt;}
.wse4{word-spacing:5.718080pt;}
.ws51{word-spacing:5.738458pt;}
.ws9a{word-spacing:5.824960pt;}
.wsd5{word-spacing:5.842731pt;}
.wsd7{word-spacing:5.843181pt;}
.wsd4{word-spacing:5.843200pt;}
.wsd6{word-spacing:5.843232pt;}
.ws22{word-spacing:5.844725pt;}
.ws14a{word-spacing:5.878400pt;}
.ws12d{word-spacing:5.897859pt;}
.ws11f{word-spacing:5.931840pt;}
.ws53{word-spacing:5.950993pt;}
.ws98{word-spacing:5.985280pt;}
.ws11d{word-spacing:6.038720pt;}
.ws112{word-spacing:6.145600pt;}
.ws79{word-spacing:6.163529pt;}
.ws11e{word-spacing:6.199040pt;}
.ws189{word-spacing:6.264525pt;}
.ws123{word-spacing:6.305920pt;}
.ws11c{word-spacing:6.412800pt;}
.wsb7{word-spacing:6.466240pt;}
.wsb8{word-spacing:6.519680pt;}
.ws2a{word-spacing:6.535466pt;}
.ws76{word-spacing:6.588599pt;}
.ws142{word-spacing:6.641733pt;}
.ws169{word-spacing:6.694912pt;}
.ws15d{word-spacing:6.854269pt;}
.ws117{word-spacing:6.947200pt;}
.wsa5{word-spacing:7.107520pt;}
.wsa6{word-spacing:7.160960pt;}
.ws127{word-spacing:7.173072pt;}
.ws138{word-spacing:7.267840pt;}
.wsb0{word-spacing:7.279340pt;}
.ws45{word-spacing:7.332474pt;}
.ws135{word-spacing:7.374720pt;}
.ws44{word-spacing:7.385607pt;}
.wsc5{word-spacing:7.428160pt;}
.ws25{word-spacing:7.438741pt;}
.ws134{word-spacing:7.481600pt;}
.wsd8{word-spacing:7.491875pt;}
.wsd{word-spacing:7.699075pt;}
.wscb{word-spacing:7.748800pt;}
.ws153{word-spacing:7.962560pt;}
.ws152{word-spacing:8.122880pt;}
.wsd2{word-spacing:8.182615pt;}
.wsd3{word-spacing:8.235749pt;}
.ws165{word-spacing:8.272998pt;}
.ws13d{word-spacing:8.496960pt;}
.ws158{word-spacing:8.603840pt;}
.ws102{word-spacing:8.710720pt;}
.ws13c{word-spacing:8.871040pt;}
.wsc6{word-spacing:9.031360pt;}
.wsc7{word-spacing:9.084800pt;}
.ws151{word-spacing:9.245120pt;}
.wsd0{word-spacing:9.245293pt;}
.ws182{word-spacing:9.325056pt;}
.ws14f{word-spacing:9.352000pt;}
.ws14b{word-spacing:9.405440pt;}
.ws95{word-spacing:9.726080pt;}
.ws150{word-spacing:9.832960pt;}
.ws93{word-spacing:9.993280pt;}
.ws96{word-spacing:10.046720pt;}
.ws119{word-spacing:10.313920pt;}
.ws31{word-spacing:10.582833pt;}
.ws116{word-spacing:11.596480pt;}
.ws115{word-spacing:11.649920pt;}
.ws180{word-spacing:11.763917pt;}
.ws17d{word-spacing:11.811738pt;}
.ws176{word-spacing:11.903275pt;}
.ws171{word-spacing:11.903684pt;}
.ws170{word-spacing:11.907379pt;}
.ws177{word-spacing:12.146483pt;}
.ws16c{word-spacing:12.672512pt;}
.ws18d{word-spacing:13.012712pt;}
.ws3f{word-spacing:13.230333pt;}
.ws4{word-spacing:13.763148pt;}
.ws181{word-spacing:14.154957pt;}
.wsa{word-spacing:14.348669pt;}
.wsb{word-spacing:14.356730pt;}
.ws186{word-spacing:14.537523pt;}
.ws172{word-spacing:14.770517pt;}
.ws185{word-spacing:14.774170pt;}
.ws16f{word-spacing:14.776627pt;}
.ws175{word-spacing:14.777873pt;}
.ws17e{word-spacing:14.824448pt;}
.ws174{word-spacing:15.015731pt;}
.ws18f{word-spacing:15.063552pt;}
.wsc{word-spacing:15.732893pt;}
.ws17c{word-spacing:17.024205pt;}
.ws21{word-spacing:17.427908pt;}
.ws2b{word-spacing:23.272634pt;}
.wse{word-spacing:24.399002pt;}
.ws18e{word-spacing:24.914637pt;}
.wsec{word-spacing:139.682270pt;}
.wsf4{word-spacing:140.870144pt;}
.wsf0{word-spacing:141.706539pt;}
.ws5b{word-spacing:178.131371pt;}
.wsef{word-spacing:185.017867pt;}
.wsf2{word-spacing:201.653862pt;}
.wsf5{word-spacing:219.584529pt;}
.ws63{word-spacing:258.943548pt;}
.ws5e{word-spacing:258.943863pt;}
.ws60{word-spacing:258.962910pt;}
.ws62{word-spacing:258.966238pt;}
.wsee{word-spacing:261.166667pt;}
.wsf3{word-spacing:265.166336pt;}
.wsed{word-spacing:270.462667pt;}
.wsf7{word-spacing:277.121536pt;}
.wsf6{word-spacing:289.076736pt;}
.ws5d{word-spacing:303.040410pt;}
.ws61{word-spacing:326.950810pt;}
.ws5f{word-spacing:344.883610pt;}
.ws57{word-spacing:656.560631pt;}
.ws58{word-spacing:1051.292467pt;}
._3e{margin-left:-21.980416pt;}
._15{margin-left:-6.829818pt;}
._1{margin-left:-5.901266pt;}
._3{margin-left:-4.128490pt;}
._8{margin-left:-3.015900pt;}
._0{margin-left:-1.721549pt;}
._2{width:0.969929pt;}
._6{width:2.045648pt;}
._18{width:3.262722pt;}
._27{width:4.927949pt;}
._24{width:6.076142pt;}
._3a{width:7.012109pt;}
._23{width:10.046720pt;}
._4{width:11.528002pt;}
._a{width:12.815974pt;}
._38{width:13.836070pt;}
._9{width:14.967910pt;}
._e{width:16.173961pt;}
._12{width:17.321641pt;}
._f{width:18.246181pt;}
._c{width:19.181326pt;}
._d{width:20.562806pt;}
._11{width:21.593615pt;}
._5{width:23.063232pt;}
._16{width:25.079185pt;}
._26{width:26.354398pt;}
._29{width:27.682745pt;}
._7{width:29.011008pt;}
._25{width:30.073769pt;}
._b{width:31.635916pt;}
._17{width:33.973806pt;}
._3b{width:35.408420pt;}
._39{width:38.256384pt;}
._10{width:39.159660pt;}
._28{width:44.685582pt;}
._3d{width:54.993920pt;}
._2d{width:147.565298pt;}
._19{width:156.475823pt;}
._2e{width:170.276394pt;}
._37{width:221.123379pt;}
._2f{width:230.647253pt;}
._34{width:235.278336pt;}
._21{width:276.978074pt;}
._1e{width:278.317056pt;}
._30{width:283.102455pt;}
._20{width:285.107610pt;}
._31{width:289.076736pt;}
._35{width:295.051017pt;}
._33{width:301.031936pt;}
._32{width:312.990455pt;}
._1f{width:314.995610pt;}
._1a{width:321.833984pt;}
._36{width:324.942336pt;}
._1b{width:332.928410pt;}
._1c{width:344.883610pt;}
._2b{width:360.568832pt;}
._1d{width:374.771610pt;}
._2c{width:646.271957pt;}
._13{width:791.163606pt;}
._2a{width:1395.200000pt;}
._22{width:1874.828462pt;}
._3c{width:2216.237067pt;}
._14{width:2237.490400pt;}
.fs12{font-size:2.560000pt;}
.fs13{font-size:29.440000pt;}
.fsc{font-size:31.880533pt;}
.fs10{font-size:32.000000pt;}
.fsd{font-size:33.219200pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fsb{font-size:38.755733pt;}
.fs8{font-size:40.381867pt;}
.fs3{font-size:41.988267pt;}
.fs9{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fse{font-size:42.560000pt;}
.fs7{font-size:47.820800pt;}
.fs11{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fsf{font-size:53.440000pt;}
.fsa{font-size:55.365867pt;}
.fs14{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:131.027520pt;}
.y21e{bottom:-594.816000pt;}
.y23d{bottom:-533.032480pt;}
.y23c{bottom:-515.918320pt;}
.y23b{bottom:-498.804160pt;}
.y123{bottom:-495.312000pt;}
.y23a{bottom:-481.770160pt;}
.y1e8{bottom:-472.889333pt;}
.y239{bottom:-464.644160pt;}
.ye9{bottom:-448.362667pt;}
.y238{bottom:-447.610160pt;}
.y13c{bottom:-434.506000pt;}
.y169{bottom:-432.246667pt;}
.y237{bottom:-430.484160pt;}
.y13b{bottom:-417.466160pt;}
.y236{bottom:-413.370000pt;}
.y13a{bottom:-400.346160pt;}
.y235{bottom:-396.324160pt;}
.y139{bottom:-383.220160pt;}
.y234{bottom:-379.210000pt;}
.y106{bottom:-368.356667pt;}
.y138{bottom:-366.186160pt;}
.y183{bottom:-364.169333pt;}
.y233{bottom:-362.146480pt;}
.y105{bottom:-351.304987pt;}
.y137{bottom:-349.060160pt;}
.y232{bottom:-345.032320pt;}
.y202{bottom:-344.963493pt;}
.y104{bottom:-334.190827pt;}
.y136{bottom:-332.026160pt;}
.y231{bottom:-327.918160pt;}
.y201{bottom:-327.843333pt;}
.y1b6{bottom:-322.932000pt;}
.y103{bottom:-317.156827pt;}
.y135{bottom:-314.888480pt;}
.y230{bottom:-310.884160pt;}
.y200{bottom:-310.803493pt;}
.y198{bottom:-303.043493pt;}
.y102{bottom:-300.024987pt;}
.y134{bottom:-297.774320pt;}
.y22f{bottom:-293.770000pt;}
.y1ff{bottom:-293.683493pt;}
.y197{bottom:-285.911493pt;}
.y101{bottom:-282.910827pt;}
.y133{bottom:-280.740320pt;}
.y22e{bottom:-276.682960pt;}
.y1fe{bottom:-276.563333pt;}
.y1cf{bottom:-273.503840pt;}
.y196{bottom:-268.877493pt;}
.y100{bottom:-265.876827pt;}
.y132{bottom:-263.626160pt;}
.y22d{bottom:-259.568800pt;}
.y1fd{bottom:-259.464453pt;}
.y1ce{bottom:-256.389680pt;}
.y195{bottom:-251.763333pt;}
.yff{bottom:-248.744987pt;}
.y131{bottom:-246.500160pt;}
.y22c{bottom:-242.454640pt;}
.y1fc{bottom:-242.350293pt;}
.y1cd{bottom:-239.355680pt;}
.y194{bottom:-234.729333pt;}
.yfe{bottom:-231.710987pt;}
.y130{bottom:-229.466160pt;}
.y22b{bottom:-225.420640pt;}
.y1fb{bottom:-225.236133pt;}
.y1cc{bottom:-222.241520pt;}
.yfd{bottom:-214.596827pt;}
.y12f{bottom:-212.346000pt;}
.y22a{bottom:-208.306480pt;}
.y1fa{bottom:-208.202133pt;}
.y1cb{bottom:-205.127360pt;}
.y26b{bottom:-204.494667pt;}
.y193{bottom:-201.933333pt;}
.yfc{bottom:-197.476667pt;}
.y12e{bottom:-195.306160pt;}
.y229{bottom:-191.192320pt;}
.y1f9{bottom:-191.087973pt;}
.y1ca{bottom:-188.093360pt;}
.y192{bottom:-183.129333pt;}
.yfb{bottom:-180.430827pt;}
.y12d{bottom:-178.150640pt;}
.y228{bottom:-174.158320pt;}
.y1f8{bottom:-174.053973pt;}
.y1c9{bottom:-170.979200pt;}
.y191{bottom:-169.289333pt;}
.yfa{bottom:-163.316667pt;}
.y175{bottom:-162.074987pt;}
.y12c{bottom:-161.036480pt;}
.y227{bottom:-157.044160pt;}
.y1f7{bottom:-156.939813pt;}
.y1c8{bottom:-153.945200pt;}
.y190{bottom:-151.289333pt;}
.yf9{bottom:-146.270987pt;}
.y174{bottom:-144.960827pt;}
.y12b{bottom:-144.002480pt;}
.y226{bottom:-140.010160pt;}
.y1f6{bottom:-139.825653pt;}
.y273{bottom:-139.448667pt;}
.y1c7{bottom:-136.831040pt;}
.y18e{bottom:-133.289333pt;}
.y18f{bottom:-129.929333pt;}
.yf8{bottom:-129.156827pt;}
.y173{bottom:-127.840667pt;}
.y12a{bottom:-126.888320pt;}
.y225{bottom:-122.890160pt;}
.y1f5{bottom:-122.791653pt;}
.y272{bottom:-122.402827pt;}
.y1c6{bottom:-119.716880pt;}
.y18c{bottom:-115.289333pt;}
.yf7{bottom:-112.024987pt;}
.y18d{bottom:-111.929333pt;}
.y172{bottom:-110.786267pt;}
.y129{bottom:-109.854320pt;}
.y224{bottom:-105.770000pt;}
.y282{bottom:-105.705067pt;}
.y1f4{bottom:-105.677493pt;}
.y271{bottom:-105.288667pt;}
.y1c5{bottom:-102.682880pt;}
.y18b{bottom:-96.649333pt;}
.yf6{bottom:-94.990987pt;}
.y171{bottom:-93.672107pt;}
.y128{bottom:-92.740160pt;}
.y223{bottom:-88.730160pt;}
.y1f3{bottom:-88.643493pt;}
.y270{bottom:-88.248827pt;}
.y188{bottom:-87.289333pt;}
.y1c4{bottom:-85.568720pt;}
.y189{bottom:-78.009333pt;}
.yf5{bottom:-77.876827pt;}
.y170{bottom:-76.557947pt;}
.y127{bottom:-75.626000pt;}
.y18a{bottom:-74.649333pt;}
.y222{bottom:-71.610000pt;}
.y1f2{bottom:-71.529333pt;}
.y26f{bottom:-71.134667pt;}
.y1c3{bottom:-64.526720pt;}
.yf4{bottom:-60.762667pt;}
.y16f{bottom:-59.523947pt;}
.y126{bottom:-58.592000pt;}
.y221{bottom:-54.576000pt;}
.y187{bottom:-51.285333pt;}
.y1f1{bottom:-38.813333pt;}
.y26e{bottom:-38.418667pt;}
.y16e{bottom:-34.173147pt;}
.y289{bottom:-31.469067pt;}
.y1c2{bottom:-31.166800pt;}
.yf3{bottom:-28.122667pt;}
.y125{bottom:-25.872000pt;}
.y1f0{bottom:-23.369333pt;}
.y26d{bottom:-22.974667pt;}
.y220{bottom:-21.856000pt;}
.y186{bottom:-19.929333pt;}
.y288{bottom:-16.025067pt;}
.yf2{bottom:-8.090747pt;}
.y124{bottom:-5.868400pt;}
.y16d{bottom:-4.166587pt;}
.y1ef{bottom:-3.425813pt;}
.y26c{bottom:-3.052587pt;}
.y21f{bottom:-1.859120pt;}
.y1c1{bottom:-1.160240pt;}
.y0{bottom:0.000000pt;}
.y19a{bottom:2.640000pt;}
.ya{bottom:3.044747pt;}
.y287{bottom:3.913733pt;}
.y185{bottom:8.150667pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:14.078151pt;}
.y55{bottom:28.346667pt;}
.y27e{bottom:79.434667pt;}
.y1e4{bottom:82.733333pt;}
.y1ad{bottom:83.216000pt;}
.ye5{bottom:84.950667pt;}
.y164{bottom:86.074667pt;}
.y24{bottom:91.398667pt;}
.y54{bottom:92.108000pt;}
.y9b{bottom:92.796000pt;}
.y2c2{bottom:93.206667pt;}
.y99{bottom:95.222667pt;}
.y27d{bottom:96.170667pt;}
.ye4{bottom:99.261333pt;}
.y1e3{bottom:99.470667pt;}
.y1ac{bottom:99.953333pt;}
.y9a{bottom:100.045333pt;}
.ye3{bottom:101.688000pt;}
.y163{bottom:102.812000pt;}
.y28b{bottom:106.004000pt;}
.y23{bottom:107.298667pt;}
.y2ff{bottom:107.393333pt;}
.y2c1{bottom:108.549333pt;}
.y53{bottom:108.844000pt;}
.y27b{bottom:110.482667pt;}
.y98{bottom:111.960000pt;}
.y27a{bottom:112.908000pt;}
.y1aa{bottom:114.264000pt;}
.y1e2{bottom:116.208000pt;}
.y1a9{bottom:116.690667pt;}
.y162{bottom:117.122667pt;}
.y27c{bottom:117.730667pt;}
.ye2{bottom:118.425333pt;}
.y267{bottom:118.629333pt;}
.y161{bottom:119.548000pt;}
.y2fe{bottom:120.404000pt;}
.y1ab{bottom:121.512000pt;}
.y2fd{bottom:122.736000pt;}
.y28a{bottom:123.100000pt;}
.y22{bottom:123.200000pt;}
.y2c0{bottom:123.892000pt;}
.y52{bottom:125.581333pt;}
.y97{bottom:128.697333pt;}
.y279{bottom:129.645333pt;}
.y1e1{bottom:132.945333pt;}
.y1a8{bottom:133.428000pt;}
.y160{bottom:133.860000pt;}
.ye1{bottom:135.162667pt;}
.y266{bottom:135.365333pt;}
.y15f{bottom:136.285333pt;}
.y2fc{bottom:138.078667pt;}
.y21{bottom:139.100000pt;}
.y2bf{bottom:139.234667pt;}
.y51{bottom:142.318667pt;}
.y27f{bottom:143.037067pt;}
.y278{bottom:143.956000pt;}
.y96{bottom:145.434667pt;}
.y277{bottom:146.382667pt;}
.y1df{bottom:149.682667pt;}
.y1a6{bottom:150.165333pt;}
.y15e{bottom:150.597333pt;}
.y265{bottom:152.102667pt;}
.y15d{bottom:153.022667pt;}
.y2fb{bottom:153.421333pt;}
.y1e0{bottom:154.505333pt;}
.y2be{bottom:154.577333pt;}
.y1a7{bottom:154.986667pt;}
.y20{bottom:155.000000pt;}
.y50{bottom:159.056000pt;}
.y95{bottom:162.172000pt;}
.y276{bottom:163.120000pt;}
.y264{bottom:166.414667pt;}
.y1de{bottom:166.420000pt;}
.y1a5{bottom:166.902667pt;}
.ye0{bottom:167.308000pt;}
.y2fa{bottom:168.762667pt;}
.y263{bottom:168.840000pt;}
.y15c{bottom:169.760000pt;}
.y2bd{bottom:169.920000pt;}
.y1f{bottom:170.901333pt;}
.y4f{bottom:175.793333pt;}
.ydf{bottom:178.060000pt;}
.y94{bottom:178.909333pt;}
.yde{bottom:179.928000pt;}
.y261{bottom:183.150667pt;}
.y1dc{bottom:183.157333pt;}
.ydd{bottom:183.785333pt;}
.y15b{bottom:184.070667pt;}
.y2f9{bottom:184.105333pt;}
.y2bc{bottom:185.261333pt;}
.y260{bottom:185.577333pt;}
.y15a{bottom:186.497333pt;}
.y1e{bottom:186.801333pt;}
.y1dd{bottom:187.980000pt;}
.y262{bottom:190.400000pt;}
.y4e{bottom:192.530667pt;}
.y275{bottom:192.956000pt;}
.ydc{bottom:193.877333pt;}
.y92{bottom:195.646667pt;}
.ydb{bottom:197.734667pt;}
.y11f{bottom:198.068000pt;}
.y2bb{bottom:198.273333pt;}
.y2f8{bottom:199.448000pt;}
.y1db{bottom:199.894667pt;}
.y93{bottom:200.468000pt;}
.y2ba{bottom:200.604000pt;}
.y25f{bottom:202.314667pt;}
.y1a4{bottom:202.449333pt;}
.y1d{bottom:202.701333pt;}
.y158{bottom:203.234667pt;}
.y21a{bottom:203.937333pt;}
.y4d{bottom:206.841333pt;}
.y159{bottom:208.057333pt;}
.y4c{bottom:209.268000pt;}
.y91{bottom:209.957333pt;}
.y274{bottom:210.052000pt;}
.y8f{bottom:212.384000pt;}
.yda{bottom:214.373333pt;}
.y2f7{bottom:214.790667pt;}
.y11e{bottom:214.805333pt;}
.y2b9{bottom:215.946667pt;}
.y1d9{bottom:216.632000pt;}
.y90{bottom:217.205333pt;}
.y157{bottom:217.545333pt;}
.y1a3{bottom:218.810667pt;}
.y25e{bottom:219.052000pt;}
.y156{bottom:219.972000pt;}
.y218{bottom:220.674667pt;}
.y1da{bottom:221.454667pt;}
.y4b{bottom:223.578667pt;}
.y219{bottom:225.496000pt;}
.y4a{bottom:226.005333pt;}
.y8d{bottom:226.694667pt;}
.y2b8{bottom:228.958667pt;}
.y8c{bottom:229.121333pt;}
.yd9{bottom:229.541333pt;}
.y268{bottom:229.989333pt;}
.y2f6{bottom:230.133333pt;}
.y2b7{bottom:231.289333pt;}
.y11d{bottom:231.542667pt;}
.y25d{bottom:233.362667pt;}
.y1d7{bottom:233.369333pt;}
.y1a2{bottom:233.422667pt;}
.y8e{bottom:233.942667pt;}
.y216{bottom:235.418667pt;}
.y25c{bottom:235.789333pt;}
.y155{bottom:236.709333pt;}
.y215{bottom:237.412000pt;}
.y1d8{bottom:238.192000pt;}
.y217{bottom:242.233333pt;}
.y49{bottom:242.742667pt;}
.yd8{bottom:244.708000pt;}
.y2f5{bottom:245.476000pt;}
.y8b{bottom:245.858667pt;}
.y2b6{bottom:246.632000pt;}
.y11c{bottom:248.280000pt;}
.y1a1{bottom:248.454667pt;}
.y1d5{bottom:250.106667pt;}
.y25b{bottom:252.526667pt;}
.y154{bottom:253.446667pt;}
.y214{bottom:254.149333pt;}
.y1d6{bottom:254.928000pt;}
.y2f4{bottom:258.486667pt;}
.y48{bottom:259.480000pt;}
.yd7{bottom:259.874667pt;}
.y8a{bottom:260.169333pt;}
.y2f3{bottom:260.818667pt;}
.y2b5{bottom:261.974667pt;}
.y11b{bottom:262.590667pt;}
.y89{bottom:262.596000pt;}
.y1a0{bottom:263.905333pt;}
.y11a{bottom:265.017333pt;}
.y25a{bottom:266.837333pt;}
.y1d4{bottom:266.844000pt;}
.y213{bottom:268.460000pt;}
.y259{bottom:269.264000pt;}
.y153{bottom:270.184000pt;}
.y212{bottom:270.886667pt;}
.y1c{bottom:273.154667pt;}
.yd6{bottom:274.765333pt;}
.y2f2{bottom:276.161333pt;}
.y47{bottom:276.217333pt;}
.y2b4{bottom:277.317333pt;}
.y88{bottom:279.333333pt;}
.y119{bottom:281.754667pt;}
.y1d3{bottom:283.581333pt;}
.y152{bottom:284.494667pt;}
.y19f{bottom:285.338667pt;}
.y211{bottom:285.630667pt;}
.y257{bottom:286.001333pt;}
.y151{bottom:286.921333pt;}
.y210{bottom:287.624000pt;}
.y1b{bottom:289.054667pt;}
.y258{bottom:290.824000pt;}
.y2f1{bottom:291.502667pt;}
.y46{bottom:292.954667pt;}
.yd5{bottom:296.020000pt;}
.y87{bottom:296.070667pt;}
.y2b3{bottom:296.644000pt;}
.y19e{bottom:297.005333pt;}
.y118{bottom:298.492000pt;}
.y1d2{bottom:300.318667pt;}
.y256{bottom:302.738667pt;}
.y14f{bottom:303.658667pt;}
.y20f{bottom:304.361333pt;}
.y2f0{bottom:304.514667pt;}
.y1a{bottom:304.954667pt;}
.y2ef{bottom:306.845333pt;}
.y45{bottom:307.265333pt;}
.yd4{bottom:307.860000pt;}
.y150{bottom:308.481333pt;}
.y44{bottom:309.692000pt;}
.y184{bottom:312.470667pt;}
.y117{bottom:312.802667pt;}
.y86{bottom:312.808000pt;}
.y116{bottom:315.229333pt;}
.y14e{bottom:317.969333pt;}
.y254{bottom:319.476000pt;}
.y14d{bottom:320.396000pt;}
.y19{bottom:320.856000pt;}
.y1d1{bottom:321.041333pt;}
.y20e{bottom:321.098667pt;}
.y2ee{bottom:322.188000pt;}
.y17f{bottom:323.777333pt;}
.y255{bottom:324.298667pt;}
.y43{bottom:326.429333pt;}
.y2b2{bottom:326.532000pt;}
.y85{bottom:329.545333pt;}
.y115{bottom:331.966667pt;}
.y14c{bottom:334.706667pt;}
.y2ed{bottom:335.200000pt;}
.y19d{bottom:335.288000pt;}
.y253{bottom:336.213333pt;}
.y14b{bottom:337.133333pt;}
.y2ec{bottom:337.530667pt;}
.y20d{bottom:337.836000pt;}
.y17e{bottom:340.514667pt;}
.y42{bottom:343.166667pt;}
.yd3{bottom:345.728000pt;}
.y83{bottom:346.282667pt;}
.y1d0{bottom:348.088000pt;}
.y114{bottom:348.702667pt;}
.y2b1{bottom:350.124000pt;}
.y252{bottom:350.524000pt;}
.y84{bottom:351.104000pt;}
.y14a{bottom:351.444000pt;}
.y2eb{bottom:352.873333pt;}
.y251{bottom:352.950667pt;}
.y149{bottom:353.870667pt;}
.y20c{bottom:354.573333pt;}
.y18{bottom:354.688000pt;}
.y17d{bottom:357.252000pt;}
.y41{bottom:359.904000pt;}
.y82{bottom:360.593333pt;}
.y81{bottom:363.020000pt;}
.y112{bottom:365.440000pt;}
.y2b0{bottom:365.745333pt;}
.y1b3{bottom:368.025333pt;}
.y2ea{bottom:368.216000pt;}
.y19c{bottom:368.324000pt;}
.y250{bottom:369.688000pt;}
.y113{bottom:370.262667pt;}
.y17{bottom:370.589333pt;}
.y147{bottom:370.608000pt;}
.y20b{bottom:371.309333pt;}
.y17c{bottom:371.562667pt;}
.y17b{bottom:373.989333pt;}
.y3f{bottom:374.214667pt;}
.y40{bottom:374.648000pt;}
.y148{bottom:375.429333pt;}
.y3e{bottom:376.641333pt;}
.yd2{bottom:377.381333pt;}
.y7f{bottom:379.756000pt;}
.y2af{bottom:381.366667pt;}
.y111{bottom:382.177333pt;}
.y2e9{bottom:383.558667pt;}
.y80{bottom:384.578667pt;}
.y24f{bottom:386.425333pt;}
.y16{bottom:386.489333pt;}
.y146{bottom:387.345333pt;}
.y20a{bottom:388.046667pt;}
.y180{bottom:388.261333pt;}
.y17a{bottom:390.726667pt;}
.yf1{bottom:391.506853pt;}
.y3d{bottom:393.378667pt;}
.y7e{bottom:394.068000pt;}
.yd0{bottom:394.118667pt;}
.y7d{bottom:396.493333pt;}
.y2ae{bottom:396.988000pt;}
.y2e8{bottom:398.901333pt;}
.y110{bottom:398.914667pt;}
.yd1{bottom:398.941333pt;}
.y1ee{bottom:401.128347pt;}
.y24e{bottom:403.162667pt;}
.y144{bottom:404.082667pt;}
.y209{bottom:404.784000pt;}
.y179{bottom:407.464000pt;}
.yf0{bottom:408.621013pt;}
.y145{bottom:408.904000pt;}
.y3c{bottom:410.116000pt;}
.ycf{bottom:410.856000pt;}
.y2ad{bottom:412.609333pt;}
.y21d{bottom:413.258800pt;}
.y2e7{bottom:414.244000pt;}
.y10e{bottom:415.652000pt;}
.y7c{bottom:417.216000pt;}
.y1ed{bottom:418.242507pt;}
.y15{bottom:418.330667pt;}
.y24d{bottom:419.900000pt;}
.y10f{bottom:420.474667pt;}
.y142{bottom:420.820000pt;}
.y208{bottom:421.521333pt;}
.y21c{bottom:421.824000pt;}
.y177{bottom:424.201333pt;}
.y143{bottom:425.641333pt;}
.yef{bottom:425.655013pt;}
.y3b{bottom:426.853333pt;}
.yce{bottom:427.593333pt;}
.y178{bottom:429.024000pt;}
.y2e6{bottom:429.585333pt;}
.y10d{bottom:432.389333pt;}
.y1ec{bottom:435.276507pt;}
.y2ac{bottom:436.201333pt;}
.y24c{bottom:436.637333pt;}
.y141{bottom:437.557333pt;}
.y207{bottom:438.258667pt;}
.yee{bottom:442.769173pt;}
.y3a{bottom:443.590667pt;}
.ycd{bottom:444.330667pt;}
.y2e5{bottom:444.928000pt;}
.y7b{bottom:447.104000pt;}
.y10b{bottom:449.126667pt;}
.y14{bottom:450.170667pt;}
.y1eb{bottom:452.397547pt;}
.y24a{bottom:453.374667pt;}
.y10c{bottom:453.949333pt;}
.y176{bottom:454.037333pt;}
.y140{bottom:454.294667pt;}
.y206{bottom:454.996000pt;}
.y24b{bottom:458.196000pt;}
.y2ab{bottom:459.793333pt;}
.yed{bottom:459.803173pt;}
.y2e4{bottom:460.270667pt;}
.ycc{bottom:461.068000pt;}
.y7a{bottom:461.414667pt;}
.y79{bottom:463.841333pt;}
.y39{bottom:464.312000pt;}
.y10a{bottom:465.864000pt;}
.y13{bottom:466.070667pt;}
.y13f{bottom:468.605333pt;}
.y1ea{bottom:469.511707pt;}
.y249{bottom:470.112000pt;}
.y13e{bottom:471.032000pt;}
.y205{bottom:471.733333pt;}
.y166{bottom:473.974667pt;}
.y2e3{bottom:475.613333pt;}
.yec{bottom:476.924213pt;}
.ycb{bottom:477.805333pt;}
.y78{bottom:478.152000pt;}
.y77{bottom:480.578667pt;}
.y12{bottom:481.972000pt;}
.y109{bottom:482.601333pt;}
.y1c0{bottom:482.765680pt;}
.y2aa{bottom:483.384000pt;}
.y1e9{bottom:486.545707pt;}
.y248{bottom:486.849333pt;}
.y2e2{bottom:490.956000pt;}
.y16c{bottom:493.039173pt;}
.yeb{bottom:494.038373pt;}
.yca{bottom:494.542667pt;}
.y76{bottom:497.316000pt;}
.y11{bottom:497.872000pt;}
.y108{bottom:499.338667pt;}
.y1bf{bottom:499.799680pt;}
.y13d{bottom:500.868000pt;}
.y247{bottom:501.160000pt;}
.y204{bottom:501.569333pt;}
.y246{bottom:503.586667pt;}
.y2e1{bottom:506.298667pt;}
.y2a9{bottom:506.976000pt;}
.yc9{bottom:508.853333pt;}
.y16b{bottom:510.154373pt;}
.yea{bottom:511.072373pt;}
.yc8{bottom:511.280000pt;}
.y122{bottom:512.762800pt;}
.y10{bottom:513.772000pt;}
.y75{bottom:514.053333pt;}
.y1be{bottom:516.913840pt;}
.y245{bottom:517.897333pt;}
.y203{bottom:518.665333pt;}
.y244{bottom:520.324000pt;}
.y120{bottom:520.805333pt;}
.y121{bottom:521.328000pt;}
.y2e0{bottom:521.641333pt;}
.y2a8{bottom:522.597333pt;}
.y16a{bottom:527.188373pt;}
.y107{bottom:529.174667pt;}
.yf{bottom:529.673333pt;}
.y74{bottom:530.790667pt;}
.y38{bottom:531.113333pt;}
.yc7{bottom:532.002667pt;}
.y1bd{bottom:534.039840pt;}
.y243{bottom:534.634667pt;}
.y1e7{bottom:535.185467pt;}
.y2df{bottom:536.984000pt;}
.y242{bottom:537.061333pt;}
.y2a7{bottom:538.218667pt;}
.y1e5{bottom:538.602667pt;}
.y1e6{bottom:543.750667pt;}
.ye{bottom:545.573333pt;}
.y73{bottom:547.528000pt;}
.ye6{bottom:549.112000pt;}
.yc6{bottom:549.934667pt;}
.y1bc{bottom:551.073840pt;}
.y241{bottom:551.372000pt;}
.y2de{bottom:552.325333pt;}
.y240{bottom:553.798667pt;}
.ye8{bottom:559.712133pt;}
.yd{bottom:561.473333pt;}
.y2a6{bottom:561.810667pt;}
.y71{bottom:564.265333pt;}
.y37{bottom:564.348000pt;}
.y2dd{bottom:567.668000pt;}
.y1bb{bottom:568.199840pt;}
.ye7{bottom:568.277333pt;}
.y72{bottom:569.086667pt;}
.y23f{bottom:570.536000pt;}
.y168{bottom:575.828133pt;}
.yc{bottom:577.374667pt;}
.y2a5{bottom:577.432000pt;}
.y70{bottom:578.576000pt;}
.y36{bottom:579.312000pt;}
.yc5{bottom:579.822667pt;}
.y6f{bottom:581.002667pt;}
.y35{bottom:581.642667pt;}
.y2dc{bottom:583.010667pt;}
.y167{bottom:584.393333pt;}
.y1ba{bottom:585.233840pt;}
.y2a4{bottom:593.053333pt;}
.yb{bottom:593.274667pt;}
.yc4{bottom:596.560000pt;}
.y6e{bottom:597.740000pt;}
.y2db{bottom:598.353333pt;}
.y34{bottom:598.938667pt;}
.y23e{bottom:600.372000pt;}
.y1b9{bottom:602.354880pt;}
.y2a3{bottom:608.674667pt;}
.y8{bottom:613.160048pt;}
.yc3{bottom:613.297333pt;}
.y2da{bottom:613.696000pt;}
.y33{bottom:613.902667pt;}
.y32{bottom:616.233333pt;}
.y6d{bottom:618.462667pt;}
.y1b8{bottom:619.469040pt;}
.y21b{bottom:620.309333pt;}
.y2a2{bottom:624.296000pt;}
.yc2{bottom:627.608000pt;}
.y2d9{bottom:629.038667pt;}
.yc1{bottom:630.034667pt;}
.y31{bottom:633.529333pt;}
.y6c{bottom:636.394667pt;}
.y1b7{bottom:636.503040pt;}
.y2a1{bottom:639.917333pt;}
.y182{bottom:643.905467pt;}
.y2d8{bottom:644.381333pt;}
.yc0{bottom:646.772000pt;}
.y30{bottom:650.824000pt;}
.y181{bottom:652.470667pt;}
.y2d7{bottom:659.724000pt;}
.ybe{bottom:663.509333pt;}
.y6b{bottom:666.282667pt;}
.y19b{bottom:667.292000pt;}
.y2f{bottom:668.118667pt;}
.ybf{bottom:668.332000pt;}
.y2d6{bottom:675.066667pt;}
.ybd{bottom:677.820000pt;}
.y2a0{bottom:679.549333pt;}
.ybb{bottom:680.246667pt;}
.y6a{bottom:683.020000pt;}
.ybc{bottom:685.068000pt;}
.y1b5{bottom:685.142800pt;}
.y2e{bottom:685.414667pt;}
.y2d5{bottom:690.408000pt;}
.y29f{bottom:693.258667pt;}
.y1b4{bottom:693.708000pt;}
.yb8{bottom:694.557333pt;}
.yb9{bottom:694.992000pt;}
.y29e{bottom:695.589333pt;}
.yb7{bottom:696.984000pt;}
.y69{bottom:699.757333pt;}
.y2d{bottom:700.378667pt;}
.yba{bottom:701.805333pt;}
.y2c{bottom:702.709333pt;}
.y2d4{bottom:705.750667pt;}
.yb5{bottom:711.294667pt;}
.y29d{bottom:711.629333pt;}
.yb4{bottom:713.721333pt;}
.y68{bottom:714.068000pt;}
.y67{bottom:716.494667pt;}
.yb6{bottom:718.542667pt;}
.y2b{bottom:720.004000pt;}
.y2d3{bottom:721.093333pt;}
.yb3{bottom:730.458667pt;}
.y66{bottom:733.232000pt;}
.y2d2{bottom:736.436000pt;}
.y2a{bottom:737.300000pt;}
.y29c{bottom:743.609333pt;}
.yb2{bottom:747.196000pt;}
.y2d1{bottom:749.448000pt;}
.y65{bottom:749.969333pt;}
.y2d0{bottom:751.778667pt;}
.y29b{bottom:757.920000pt;}
.y29a{bottom:760.346667pt;}
.y64{bottom:766.706667pt;}
.y2cf{bottom:767.121333pt;}
.yb1{bottom:767.918667pt;}
.y29{bottom:768.521333pt;}
.y299{bottom:777.084000pt;}
.y2ce{bottom:782.464000pt;}
.y28{bottom:782.866667pt;}
.y63{bottom:783.444000pt;}
.y298{bottom:791.394667pt;}
.y297{bottom:793.821333pt;}
.y27{bottom:797.213333pt;}
.yb0{bottom:797.806667pt;}
.y62{bottom:800.181333pt;}
.y286{bottom:802.467653pt;}
.y26a{bottom:803.580133pt;}
.y296{bottom:810.558667pt;}
.y26{bottom:811.560000pt;}
.yae{bottom:812.117333pt;}
.y269{bottom:812.145333pt;}
.y2cd{bottom:813.148000pt;}
.y301{bottom:813.149333pt;}
.yad{bottom:814.544000pt;}
.y61{bottom:816.918667pt;}
.yaf{bottom:819.365333pt;}
.y285{bottom:819.581813pt;}
.y25{bottom:825.905333pt;}
.y295{bottom:827.296000pt;}
.y2cc{bottom:828.490667pt;}
.yac{bottom:831.281333pt;}
.y60{bottom:833.656000pt;}
.y284{bottom:836.695973pt;}
.y2cb{bottom:843.833333pt;}
.y294{bottom:844.033333pt;}
.yaa{bottom:845.592000pt;}
.ya9{bottom:848.018667pt;}
.y5f{bottom:850.393333pt;}
.yab{bottom:852.840000pt;}
.y283{bottom:853.729973pt;}
.y2ca{bottom:859.176000pt;}
.y293{bottom:860.770667pt;}
.y7{bottom:862.413333pt;}
.ya8{bottom:864.754667pt;}
.y5e{bottom:867.130667pt;}
.y2c9{bottom:874.518667pt;}
.y292{bottom:877.508000pt;}
.ya6{bottom:881.492000pt;}
.y5d{bottom:883.868000pt;}
.ya7{bottom:886.314667pt;}
.y2c8{bottom:889.861333pt;}
.y291{bottom:894.245333pt;}
.y1b1{bottom:895.802667pt;}
.ya5{bottom:898.229333pt;}
.y6{bottom:900.404000pt;}
.y5c{bottom:900.605333pt;}
.y281{bottom:902.369733pt;}
.y1b2{bottom:903.052000pt;}
.y2c7{bottom:905.204000pt;}
.y280{bottom:910.934933pt;}
.y290{bottom:910.982667pt;}
.ya4{bottom:914.966667pt;}
.y5b{bottom:917.342667pt;}
.y300{bottom:918.214667pt;}
.y1b0{bottom:919.789333pt;}
.y2c6{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y28f{bottom:927.720000pt;}
.y1af{bottom:929.277333pt;}
.ya3{bottom:931.704000pt;}
.y5a{bottom:934.080000pt;}
.y2c5{bottom:935.889333pt;}
.y28e{bottom:942.030667pt;}
.y28d{bottom:944.456000pt;}
.ya1{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y59{bottom:950.817333pt;}
.y2c4{bottom:951.230667pt;}
.ya2{bottom:953.264000pt;}
.y28c{bottom:961.193333pt;}
.y1ae{bottom:962.752000pt;}
.y9f{bottom:965.178667pt;}
.y2c3{bottom:966.573333pt;}
.y58{bottom:967.554667pt;}
.y199{bottom:968.892000pt;}
.ya0{bottom:970.001333pt;}
.y3{bottom:975.722667pt;}
.y9d{bottom:979.489333pt;}
.y165{bottom:979.924000pt;}
.y9c{bottom:981.916000pt;}
.y57{bottom:984.290667pt;}
.y9e{bottom:986.738667pt;}
.y1{bottom:1014.377333pt;}
.y56{bottom:1043.020000pt;}
.h34{height:-155.289333pt;}
.h33{height:-137.289333pt;}
.h32{height:-119.289333pt;}
.h30{height:-101.289333pt;}
.h2f{height:-82.649333pt;}
.h2d{height:-64.009333pt;}
.h2b{height:2.367500pt;}
.h1f{height:16.975011pt;}
.h39{height:19.278667pt;}
.h37{height:19.280000pt;}
.h13{height:21.501790pt;}
.h46{height:22.475776pt;}
.h7{height:22.673858pt;}
.h1e{height:23.209028pt;}
.h2e{height:23.562500pt;}
.h19{height:24.972917pt;}
.h25{height:25.610524pt;}
.ha{height:27.076941pt;}
.hb{height:27.262909pt;}
.h17{height:28.291958pt;}
.h11{height:29.397999pt;}
.h9{height:29.433775pt;}
.h31{height:29.593750pt;}
.h27{height:29.599908pt;}
.h8{height:30.399505pt;}
.hc{height:30.945242pt;}
.h35{height:30.950625pt;}
.h12{height:31.157778pt;}
.hd{height:34.574438pt;}
.he{height:34.813542pt;}
.h45{height:35.052646pt;}
.h15{height:37.998625pt;}
.hf{height:38.415786pt;}
.h3d{height:38.462187pt;}
.h10{height:38.681455pt;}
.h4{height:38.947124pt;}
.h2c{height:39.349375pt;}
.h21{height:39.359687pt;}
.h6{height:39.531597pt;}
.h14{height:40.787123pt;}
.h16{height:40.792457pt;}
.h3b{height:42.756941pt;}
.h1d{height:43.322274pt;}
.h1c{height:43.327607pt;}
.h44{height:43.660390pt;}
.h1b{height:44.250973pt;}
.h23{height:44.390625pt;}
.h3f{height:44.406625pt;}
.h2{height:45.271688pt;}
.h41{height:48.511220pt;}
.h18{height:48.683332pt;}
.h22{height:49.421563pt;}
.h29{height:49.447483pt;}
.h36{height:52.377078pt;}
.h24{height:52.448437pt;}
.h38{height:64.500000pt;}
.h5{height:69.148877pt;}
.h1a{height:73.625105pt;}
.h3a{height:81.637639pt;}
.h3{height:88.836659pt;}
.h20{height:361.578667pt;}
.h3e{height:372.088000pt;}
.h40{height:374.892000pt;}
.h3c{height:458.980000pt;}
.h28{height:470.190667pt;}
.h26{height:474.396000pt;}
.h2a{height:606.940000pt;}
.h42{height:765.212000pt;}
.h43{height:784.392267pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wd{width:47.280000pt;}
.we{width:49.296000pt;}
.wc{width:56.640000pt;}
.wb{width:66.160000pt;}
.w3{width:66.991004pt;}
.w8{width:75.600000pt;}
.wf{width:81.360000pt;}
.w10{width:84.560000pt;}
.w9{width:122.800000pt;}
.w2{width:176.730927pt;}
.wa{width:200.496000pt;}
.w5{width:310.424000pt;}
.w6{width:311.825333pt;}
.w11{width:318.833333pt;}
.w4{width:426.746667pt;}
.w12{width:445.665333pt;}
.w13{width:447.068000pt;}
.w14{width:456.184000pt;}
.w15{width:469.349333pt;}
.w7{width:651.946267pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xbf{left:-193.052000pt;}
.x111{left:-191.650667pt;}
.x124{left:-186.044000pt;}
.x142{left:-184.746667pt;}
.x11b{left:-182.541333pt;}
.xaa{left:-175.533333pt;}
.xc1{left:-19.212000pt;}
.x112{left:-17.810347pt;}
.x126{left:-12.204000pt;}
.x143{left:-10.906347pt;}
.x11c{left:-8.701013pt;}
.xab{left:-1.693013pt;}
.x0{left:0.000000pt;}
.xe8{left:7.600000pt;}
.xc2{left:9.108000pt;}
.x113{left:10.513173pt;}
.xed{left:12.080000pt;}
.xfd{left:13.600000pt;}
.xf2{left:15.200000pt;}
.x127{left:16.116000pt;}
.xf6{left:17.840000pt;}
.xfc{left:20.000000pt;}
.xfb{left:21.360000pt;}
.xf1{left:23.040000pt;}
.xff{left:24.960000pt;}
.x3{left:26.021437pt;}
.xeb{left:27.520000pt;}
.x102{left:29.440000pt;}
.x100{left:31.120000pt;}
.xf4{left:32.080000pt;}
.x101{left:36.400000pt;}
.xef{left:38.480000pt;}
.xfe{left:39.760000pt;}
.xee{left:44.960000pt;}
.xe9{left:46.240000pt;}
.x1{left:48.000000pt;}
.x2{left:51.157007pt;}
.xfa{left:63.520000pt;}
.x109{left:67.486667pt;}
.x107{left:69.364000pt;}
.xe3{left:70.877733pt;}
.x9d{left:73.716000pt;}
.x9e{left:75.420000pt;}
.x9f{left:76.346667pt;}
.x9a{left:77.249333pt;}
.x104{left:80.008000pt;}
.x9c{left:84.601333pt;}
.xa0{left:88.961333pt;}
.x10a{left:109.224000pt;}
.xa3{left:132.090667pt;}
.xa4{left:136.740000pt;}
.x108{left:152.549333pt;}
.x9b{left:162.164000pt;}
.xe5{left:171.686267pt;}
.xe4{left:175.130267pt;}
.xe6{left:187.530267pt;}
.x103{left:200.010267pt;}
.xec{left:216.480000pt;}
.x5{left:222.073333pt;}
.x4{left:223.020000pt;}
.x106{left:225.804000pt;}
.x121{left:231.298667pt;}
.xd6{left:234.292000pt;}
.xcf{left:239.606667pt;}
.x122{left:240.617333pt;}
.x99{left:242.134667pt;}
.x12d{left:243.653333pt;}
.xd0{left:245.318667pt;}
.xdd{left:250.206667pt;}
.xf{left:251.365333pt;}
.xb1{left:252.953333pt;}
.xd1{left:255.749333pt;}
.xd8{left:260.116000pt;}
.xca{left:262.106667pt;}
.xd2{left:264.770667pt;}
.x10{left:266.113333pt;}
.xcb{left:267.818667pt;}
.xb2{left:269.660000pt;}
.x50{left:271.416000pt;}
.x11{left:272.756000pt;}
.xe1{left:274.456000pt;}
.x6{left:275.757333pt;}
.xcc{left:278.321333pt;}
.x12{left:279.530667pt;}
.x149{left:280.545333pt;}
.x51{left:281.489333pt;}
.x10f{left:282.378667pt;}
.x13{left:286.172000pt;}
.x95{left:287.980000pt;}
.x117{left:289.342667pt;}
.x60{left:291.169333pt;}
.x10b{left:292.438667pt;}
.x6d{left:293.817333pt;}
.xb3{left:294.744000pt;}
.x61{left:297.220000pt;}
.xde{left:298.530667pt;}
.xdf{left:302.089333pt;}
.x6e{left:303.440000pt;}
.xc4{left:305.118667pt;}
.xf9{left:307.370267pt;}
.x118{left:309.401333pt;}
.x52{left:311.390667pt;}
.x13b{left:313.554667pt;}
.x53{left:317.102667pt;}
.x13c{left:319.605333pt;}
.x54{left:321.464000pt;}
.x119{left:322.684000pt;}
.xe7{left:323.928000pt;}
.x55{left:327.176000pt;}
.x14{left:331.729333pt;}
.x12e{left:334.860000pt;}
.x5c{left:336.216000pt;}
.x144{left:337.857333pt;}
.x12f{left:340.572000pt;}
.x15{left:342.001333pt;}
.x145{left:343.834667pt;}
.xc8{left:345.798667pt;}
.x5d{left:347.141333pt;}
.x81{left:348.874667pt;}
.xc9{left:351.848000pt;}
.xbb{left:353.173333pt;}
.x82{left:354.586667pt;}
.x130{left:359.210667pt;}
.xc0{left:360.546320pt;}
.xbd{left:361.972000pt;}
.xcd{left:364.445333pt;}
.xa8{left:366.936000pt;}
.x146{left:368.704000pt;}
.x5e{left:369.645333pt;}
.x36{left:370.928000pt;}
.x11a{left:371.937333pt;}
.xa9{left:372.986667pt;}
.x5f{left:375.694667pt;}
.x123{left:378.089333pt;}
.x23{left:379.258667pt;}
.xa1{left:382.101333pt;}
.x13d{left:383.077333pt;}
.x37{left:384.212000pt;}
.x68{left:385.952000pt;}
.x70{left:386.965333pt;}
.x19{left:390.088000pt;}
.x71{left:393.016000pt;}
.xa2{left:395.137333pt;}
.x1a{left:396.729333pt;}
.x1b{left:399.984000pt;}
.xd3{left:401.989333pt;}
.xb4{left:403.694667pt;}
.x1c{left:406.625333pt;}
.x11e{left:407.944000pt;}
.xad{left:409.766667pt;}
.x1d{left:413.134667pt;}
.x69{left:414.632000pt;}
.x115{left:415.566667pt;}
.x1e{left:419.776000pt;}
.x6a{left:420.681333pt;}
.xc7{left:423.558667pt;}
.x24{left:424.816000pt;}
.xce{left:428.200000pt;}
.x7d{left:429.388000pt;}
.x56{left:431.346667pt;}
.x57{left:437.058667pt;}
.xbc{left:439.102667pt;}
.x58{left:441.420000pt;}
.x141{left:443.058667pt;}
.xae{left:444.696000pt;}
.x59{left:447.132000pt;}
.xbe{left:448.548000pt;}
.xda{left:450.190667pt;}
.x1f{left:452.665333pt;}
.x11f{left:454.304000pt;}
.x125{left:455.716960pt;}
.xaf{left:457.312000pt;}
.x20{left:458.377333pt;}
.x75{left:459.392000pt;}
.x76{left:461.304000pt;}
.xdb{left:463.474667pt;}
.xf0{left:465.688000pt;}
.x77{left:467.016000pt;}
.x83{left:468.322667pt;}
.xb0{left:472.609333pt;}
.x11d{left:473.862507pt;}
.xf3{left:475.530267pt;}
.x131{left:478.052000pt;}
.x7f{left:479.525333pt;}
.x44{left:483.648000pt;}
.xb6{left:484.853333pt;}
.xd7{left:486.488000pt;}
.x80{left:487.729333pt;}
.x45{left:489.697333pt;}
.x84{left:492.008000pt;}
.x87{left:492.968000pt;}
.xb7{left:495.117333pt;}
.xac{left:496.037333pt;}
.x88{left:502.418667pt;}
.xb8{left:504.149333pt;}
.x85{left:506.022667pt;}
.x7e{left:507.424000pt;}
.x38{left:512.300000pt;}
.x134{left:513.508000pt;}
.x132{left:517.606667pt;}
.x135{left:519.557333pt;}
.xea{left:522.328000pt;}
.x3e{left:523.285333pt;}
.x39{left:525.582667pt;}
.x3f{left:528.997333pt;}
.x3c{left:531.430667pt;}
.x3a{left:532.357333pt;}
.x40{left:533.429333pt;}
.x91{left:535.388000pt;}
.x3d{left:537.142667pt;}
.x41{left:539.141333pt;}
.xb{left:540.198667pt;}
.x3b{left:541.377333pt;}
.xa5{left:542.668000pt;}
.xe2{left:544.228000pt;}
.x2f{left:545.288000pt;}
.xa6{left:547.584000pt;}
.xc{left:548.510667pt;}
.xc5{left:550.408000pt;}
.x30{left:551.929333pt;}
.xb9{left:552.845333pt;}
.x31{left:555.237333pt;}
.xc6{left:556.458667pt;}
.x86{left:557.801333pt;}
.x136{left:559.110667pt;}
.xa7{left:560.773333pt;}
.x32{left:561.878667pt;}
.x33{left:565.186667pt;}
.xba{left:566.128000pt;}
.x6f{left:567.468000pt;}
.x42{left:568.716000pt;}
.xf5{left:569.608000pt;}
.x34{left:571.828000pt;}
.xf7{left:572.730267pt;}
.x116{left:573.760000pt;}
.x35{left:575.136000pt;}
.x14e{left:576.401333pt;}
.x43{left:577.760000pt;}
.x21{left:579.078667pt;}
.xd4{left:580.054667pt;}
.xd{left:581.814667pt;}
.xd5{left:586.105333pt;}
.xe{left:587.129333pt;}
.x114{left:588.078667pt;}
.x22{left:588.984000pt;}
.x62{left:591.593333pt;}
.x110{left:592.978667pt;}
.x27{left:594.165333pt;}
.x63{left:597.305333pt;}
.x137{left:598.466667pt;}
.x28{left:600.806667pt;}
.x72{left:602.825333pt;}
.x29{left:604.061333pt;}
.x133{left:605.753333pt;}
.x46{left:606.644000pt;}
.x10c{left:607.885333pt;}
.x2a{left:610.702667pt;}
.x138{left:611.750667pt;}
.x2b{left:613.957333pt;}
.x139{left:615.137333pt;}
.x47{left:616.690667pt;}
.xe0{left:617.760000pt;}
.x105{left:619.288000pt;}
.x2c{left:620.598667pt;}
.xdc{left:622.400000pt;}
.x10e{left:623.290667pt;}
.x89{left:624.642667pt;}
.x2d{left:627.108000pt;}
.x13a{left:628.421333pt;}
.x48{left:629.709333pt;}
.xb5{left:631.354667pt;}
.x2e{left:633.749333pt;}
.x64{left:635.781333pt;}
.x8d{left:637.272000pt;}
.x93{left:638.297333pt;}
.x49{left:639.592000pt;}
.x148{left:640.597333pt;}
.x65{left:641.493333pt;}
.xc3{left:642.545333pt;}
.x140{left:643.692000pt;}
.x78{left:644.961333pt;}
.xd9{left:646.024000pt;}
.x94{left:647.325333pt;}
.x73{left:648.757333pt;}
.x4a{left:650.422667pt;}
.x14a{left:653.098667pt;}
.x74{left:654.806667pt;}
.x4b{left:656.134667pt;}
.x8e{left:658.152000pt;}
.x120{left:659.809333pt;}
.x7{left:661.050667pt;}
.x10d{left:662.093333pt;}
.x92{left:663.745333pt;}
.x147{left:664.670667pt;}
.x8{left:666.365333pt;}
.x8f{left:667.445333pt;}
.x79{left:668.880000pt;}
.x16{left:671.906667pt;}
.xf8{left:673.528000pt;}
.x5a{left:675.366667pt;}
.x17{left:677.780000pt;}
.x96{left:680.998667pt;}
.x7a{left:682.896000pt;}
.x5b{left:684.390667pt;}
.x97{left:688.658667pt;}
.x128{left:690.812000pt;}
.x6b{left:691.753333pt;}
.x90{left:693.054667pt;}
.x8a{left:695.132000pt;}
.x14d{left:696.089333pt;}
.x6c{left:697.465333pt;}
.x129{left:699.837333pt;}
.x4c{left:701.434667pt;}
.x8b{left:704.584000pt;}
.x98{left:706.160000pt;}
.x25{left:707.357333pt;}
.x14b{left:708.393333pt;}
.x66{left:709.564000pt;}
.x4d{left:711.317333pt;}
.x26{left:713.998667pt;}
.x67{left:715.613333pt;}
.x9{left:716.873333pt;}
.x12a{left:719.576000pt;}
.xa{left:725.104000pt;}
.x13e{left:726.908000pt;}
.x4e{left:728.657333pt;}
.x7b{left:730.044000pt;}
.x14c{left:730.981333pt;}
.x14f{left:732.074667pt;}
.x4f{left:734.369333pt;}
.x7c{left:736.094667pt;}
.x12b{left:738.288000pt;}
.x18{left:739.989333pt;}
.x13f{left:741.313333pt;}
.x8c{left:742.517333pt;}
.x12c{left:744.000000pt;}
}




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