
    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_dde9698c598fd9ecfe3c8daf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.140137;font-style:normal;font-weight: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_b07cd2aab68d37e5079f501d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.137000;font-style:normal;font-weight: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_1d253b7a96257c9fca73452e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.098000;font-style:normal;font-weight: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_09b49a2722021784c115a67b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136230;font-style:normal;font-weight: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_99a72d051831d46fce28ac98.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.019043;font-style:normal;font-weight: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_9bbb82a416f7c300522cb599.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.113281;font-style:normal;font-weight: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_fdef0fc3153a760d0670d5a0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fdef0fc3153a760d0670d5a0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2ab06e380ff69ba2dfa03ab5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.141113;font-style:normal;font-weight: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_0089220a4004973793d96fbf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962000;font-style:normal;font-weight: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_f42cd05f37989539be79045e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d06cc9860668f870e2a7ea38.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.862000;font-style:normal;font-weight: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_4426a40691ae7dc88ef32b0c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.105000;font-style:normal;font-weight: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_729e9042499367edc820d85a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ef5b66b9353c94e897cd7912.woff2')format("woff");}.fff{font-family:fff;line-height:0.947266;font-style:normal;font-weight: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_7b221686bd87c8bf3553a014.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.862000;font-style:normal;font-weight: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_0f2dde97ef7d6b3358f11b6b.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.105000;font-style:normal;font-weight: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_729e9042499367edc820d85a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_bb40dea6b3e37f11b0eed023.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.947266;font-style:normal;font-weight: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_e1ed53f64fe0e29099dae67f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.862000;font-style:normal;font-weight: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_9c8bc90c96792a99ffece30e.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.105000;font-style:normal;font-weight: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_0397cb88b1da0f241c0c0f62.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.947266;font-style:normal;font-weight: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_0d2d87b03c8c6480cf59edd9.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910156;font-style:normal;font-weight: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_729e9042499367edc820d85a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_936a760e7a5e47381b10c7d8.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.862000;font-style:normal;font-weight: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_bc07d2fa463272f43ca993da.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.105000;font-style:normal;font-weight: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_729e9042499367edc820d85a.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_0431ea3b4a7b10951988a546.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.947266;font-style:normal;font-weight: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_ef791e0ac849b553fefcbc5e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.862000;font-style:normal;font-weight: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_50ef1f367785d4371ee64d45.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.105000;font-style:normal;font-weight: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_729e9042499367edc820d85a.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_73fd4b19c2c502f1ba328590.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.947266;font-style:normal;font-weight: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_9288ca0ce07072e7deb6b705.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.862000;font-style:normal;font-weight: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_1a615441405ec4619efa236a.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.105000;font-style:normal;font-weight: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_729e9042499367edc820d85a.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_637a1627f74bc93e62640d0e.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.947266;font-style:normal;font-weight: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_8d32ca85505a94c7883a7451.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.862000;font-style:normal;font-weight: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_04a1bd5a5202d9edf269e983.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.105000;font-style:normal;font-weight: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_aebd42e1eac07647a808d946.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_d4d801d343586759e3ae758b.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.947266;font-style:normal;font-weight: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_e8b02a4240c427624ade999d.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.862000;font-style:normal;font-weight: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_729e9042499367edc820d85a.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_3fe36ed5df751167b6414501.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.105000;font-style:normal;font-weight: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_53053e568efdd1073d880445.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.947266;font-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.000000,0.275000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.275000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.275000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.275000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.275000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.275000,0.250000,0.000000,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);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls5{letter-spacing:-2.847372px;}
.ls6{letter-spacing:-2.070816px;}
.ls3{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.660000px;}
.lsa{letter-spacing:-0.480000px;}
.ls7{letter-spacing:-0.330000px;}
.ls8{letter-spacing:-0.192390px;}
.ls13{letter-spacing:-0.111728px;}
.ls12{letter-spacing:-0.103748px;}
.ls16{letter-spacing:-0.071825px;}
.ls14{letter-spacing:-0.039903px;}
.ls11{letter-spacing:-0.031922px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.005832px;}
.ls15{letter-spacing:0.023942px;}
.lsf{letter-spacing:0.055864px;}
.lse{letter-spacing:0.079806px;}
.lsc{letter-spacing:0.093429px;}
.lsb{letter-spacing:0.660000px;}
.ls9{letter-spacing:1.320000px;}
.ls1{letter-spacing:2.100000px;}
.ls10{letter-spacing:5.942084px;}
.lsd{letter-spacing:6.079114px;}
.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;}
}
.ws2f{word-spacing:-18.348000px;}
.wsf1{word-spacing:-15.972000px;}
.ws0{word-spacing:-13.344000px;}
.ws91{word-spacing:-10.696884px;}
.wsa7{word-spacing:-10.504494px;}
.wsdb{word-spacing:-8.832000px;}
.ws92{word-spacing:-7.849512px;}
.wsca{word-spacing:-6.732000px;}
.wsd1{word-spacing:-6.468000px;}
.ws10a{word-spacing:-6.006000px;}
.ws5b{word-spacing:-5.082000px;}
.ws46{word-spacing:-4.752000px;}
.ws61{word-spacing:-4.554000px;}
.wsc3{word-spacing:-4.422000px;}
.ws10b{word-spacing:-4.356000px;}
.wsa3{word-spacing:-3.630000px;}
.ws115{word-spacing:-3.552000px;}
.ws109{word-spacing:-3.432000px;}
.ws5a{word-spacing:-3.366000px;}
.wsc7{word-spacing:-3.234000px;}
.wsbf{word-spacing:-3.168000px;}
.wsf4{word-spacing:-3.102000px;}
.ws9e{word-spacing:-3.036000px;}
.ws3f{word-spacing:-2.838000px;}
.ws45{word-spacing:-2.706000px;}
.wsf8{word-spacing:-2.640000px;}
.wse2{word-spacing:-2.574000px;}
.ws116{word-spacing:-2.544000px;}
.wsba{word-spacing:-2.508000px;}
.wsd6{word-spacing:-2.442000px;}
.ws9c{word-spacing:-2.376000px;}
.ws16{word-spacing:-2.310000px;}
.ws4b{word-spacing:-2.244000px;}
.ws5{word-spacing:-2.178000px;}
.ws17{word-spacing:-2.112000px;}
.ws26{word-spacing:-2.046000px;}
.ws4{word-spacing:-1.980000px;}
.wsfd{word-spacing:-1.931305px;}
.ws75{word-spacing:-1.920000px;}
.wsa4{word-spacing:-1.914000px;}
.ws100{word-spacing:-1.899383px;}
.wsfa{word-spacing:-1.891402px;}
.ws119{word-spacing:-1.872000px;}
.ws102{word-spacing:-1.867460px;}
.wsa1{word-spacing:-1.848000px;}
.ws101{word-spacing:-1.835538px;}
.ws103{word-spacing:-1.827557px;}
.ws56{word-spacing:-1.824000px;}
.wsfb{word-spacing:-1.811596px;}
.ws50{word-spacing:-1.782000px;}
.wsf9{word-spacing:-1.779674px;}
.ws11f{word-spacing:-1.776000px;}
.wsff{word-spacing:-1.771693px;}
.wsfc{word-spacing:-1.707848px;}
.wsfe{word-spacing:-1.699868px;}
.ws29{word-spacing:-1.518000px;}
.ws2a{word-spacing:-1.452000px;}
.ws4d{word-spacing:-1.392000px;}
.ws87{word-spacing:-1.320000px;}
.wsc{word-spacing:-1.296000px;}
.ws41{word-spacing:-1.254000px;}
.ws10c{word-spacing:-1.122000px;}
.ws43{word-spacing:-1.104000px;}
.wsc2{word-spacing:-1.056000px;}
.ws20{word-spacing:-0.924000px;}
.ws11c{word-spacing:-0.864000px;}
.ws28{word-spacing:-0.858000px;}
.ws1b{word-spacing:-0.726000px;}
.ws60{word-spacing:-0.660000px;}
.ws40{word-spacing:-0.594000px;}
.ws9d{word-spacing:-0.462000px;}
.wsee{word-spacing:-0.330000px;}
.ws3a{word-spacing:-0.264000px;}
.ws107{word-spacing:-0.211772px;}
.ws96{word-spacing:-0.198000px;}
.ws120{word-spacing:-0.144000px;}
.ws86{word-spacing:-0.132000px;}
.ws108{word-spacing:-0.093429px;}
.ws1{word-spacing:0.000000px;}
.wsb9{word-spacing:0.330000px;}
.ws11{word-spacing:0.336000px;}
.ws11a{word-spacing:0.480000px;}
.ws24{word-spacing:0.528000px;}
.ws31{word-spacing:0.594000px;}
.ws95{word-spacing:0.660000px;}
.ws6{word-spacing:0.726000px;}
.ws94{word-spacing:0.792000px;}
.ws117{word-spacing:0.816000px;}
.ws52{word-spacing:0.858000px;}
.ws5f{word-spacing:0.990000px;}
.ws66{word-spacing:1.056000px;}
.wsab{word-spacing:1.122000px;}
.ws4c{word-spacing:1.188000px;}
.ws11e{word-spacing:1.296000px;}
.ws3e{word-spacing:1.320000px;}
.ws10{word-spacing:1.392000px;}
.ws83{word-spacing:1.452000px;}
.ws9f{word-spacing:1.518000px;}
.wsf7{word-spacing:1.536000px;}
.ws1e{word-spacing:1.584000px;}
.ws78{word-spacing:1.716000px;}
.wsb0{word-spacing:1.782000px;}
.ws8a{word-spacing:1.824000px;}
.wsda{word-spacing:1.848000px;}
.ws4a{word-spacing:1.914000px;}
.ws123{word-spacing:1.968000px;}
.wsb{word-spacing:2.046000px;}
.wsa6{word-spacing:2.070816px;}
.wsb5{word-spacing:2.112000px;}
.ws47{word-spacing:2.178000px;}
.ws27{word-spacing:2.244000px;}
.ws11b{word-spacing:2.304000px;}
.wsd0{word-spacing:2.376000px;}
.ws105{word-spacing:2.574000px;}
.ws53{word-spacing:2.592000px;}
.wsd9{word-spacing:2.640000px;}
.ws54{word-spacing:2.688000px;}
.wsce{word-spacing:2.772000px;}
.ws22{word-spacing:2.838000px;}
.ws65{word-spacing:2.904000px;}
.wsd{word-spacing:2.928000px;}
.ws1f{word-spacing:2.970000px;}
.wsa2{word-spacing:3.102000px;}
.wsea{word-spacing:3.168000px;}
.ws88{word-spacing:3.300000px;}
.wscd{word-spacing:3.366000px;}
.ws64{word-spacing:3.432000px;}
.ws2c{word-spacing:3.564000px;}
.ws19{word-spacing:3.762000px;}
.ws10e{word-spacing:3.828000px;}
.ws5e{word-spacing:3.894000px;}
.ws73{word-spacing:3.936000px;}
.wsae{word-spacing:3.960000px;}
.ws110{word-spacing:4.026000px;}
.ws76{word-spacing:4.092000px;}
.ws3{word-spacing:4.158000px;}
.ws89{word-spacing:4.224000px;}
.ws9b{word-spacing:4.356000px;}
.ws3b{word-spacing:4.422000px;}
.ws122{word-spacing:4.464000px;}
.ws5c{word-spacing:4.488000px;}
.ws14{word-spacing:4.554000px;}
.ws11d{word-spacing:4.560000px;}
.wsdd{word-spacing:4.620000px;}
.ws118{word-spacing:4.656000px;}
.ws59{word-spacing:4.686000px;}
.ws18{word-spacing:4.752000px;}
.wsa9{word-spacing:4.818000px;}
.wsdc{word-spacing:4.884000px;}
.wsf6{word-spacing:4.896000px;}
.wse3{word-spacing:4.950000px;}
.ws33{word-spacing:5.016000px;}
.wsb1{word-spacing:5.148000px;}
.ws106{word-spacing:5.214000px;}
.ws4f{word-spacing:5.280000px;}
.ws44{word-spacing:5.328000px;}
.wsc4{word-spacing:5.346000px;}
.wse5{word-spacing:5.412000px;}
.ws10d{word-spacing:5.478000px;}
.ws84{word-spacing:5.544000px;}
.ws58{word-spacing:5.712000px;}
.ws25{word-spacing:5.742000px;}
.wsb3{word-spacing:5.808000px;}
.ws37{word-spacing:5.874000px;}
.ws12{word-spacing:5.904000px;}
.ws93{word-spacing:6.006000px;}
.ws8{word-spacing:6.072000px;}
.ws7f{word-spacing:6.138000px;}
.ws2d{word-spacing:6.204000px;}
.ws7c{word-spacing:6.270000px;}
.ws21{word-spacing:6.336000px;}
.wsbd{word-spacing:6.402000px;}
.ws7e{word-spacing:6.468000px;}
.ws62{word-spacing:6.534000px;}
.ws74{word-spacing:6.576000px;}
.wsc8{word-spacing:6.600000px;}
.ws114{word-spacing:6.672000px;}
.wsb6{word-spacing:6.798000px;}
.wscc{word-spacing:6.864000px;}
.wsd3{word-spacing:6.930000px;}
.ws10f{word-spacing:6.996000px;}
.ws48{word-spacing:7.062000px;}
.ws2b{word-spacing:7.128000px;}
.ws13{word-spacing:7.194000px;}
.ws99{word-spacing:7.458000px;}
.ws2e{word-spacing:7.524000px;}
.ws38{word-spacing:7.656000px;}
.wsa5{word-spacing:7.776000px;}
.wsc5{word-spacing:7.788000px;}
.wsf5{word-spacing:7.824000px;}
.wsa{word-spacing:7.854000px;}
.ws63{word-spacing:7.920000px;}
.ws3d{word-spacing:8.052000px;}
.ws23{word-spacing:8.118000px;}
.ws36{word-spacing:8.184000px;}
.wsd2{word-spacing:8.316000px;}
.ws6f{word-spacing:8.400000px;}
.wsc9{word-spacing:8.448000px;}
.ws1d{word-spacing:8.514000px;}
.ws79{word-spacing:8.580000px;}
.ws1c{word-spacing:8.778000px;}
.ws7d{word-spacing:8.844000px;}
.ws9a{word-spacing:8.910000px;}
.ws112{word-spacing:8.976000px;}
.ws15{word-spacing:9.174000px;}
.ws3c{word-spacing:9.240000px;}
.wsa0{word-spacing:9.306000px;}
.wsd8{word-spacing:9.438000px;}
.ws55{word-spacing:9.456000px;}
.ws39{word-spacing:9.504000px;}
.ws82{word-spacing:9.570000px;}
.wsad{word-spacing:9.702000px;}
.ws85{word-spacing:9.768000px;}
.ws9{word-spacing:9.966000px;}
.ws5d{word-spacing:10.098000px;}
.ws81{word-spacing:10.164000px;}
.ws1a{word-spacing:10.230000px;}
.ws67{word-spacing:10.296000px;}
.wsbb{word-spacing:10.362000px;}
.wsbe{word-spacing:10.428000px;}
.ws8c{word-spacing:10.560000px;}
.ws7{word-spacing:10.758000px;}
.ws32{word-spacing:10.824000px;}
.wsac{word-spacing:11.220000px;}
.wsbc{word-spacing:11.286000px;}
.wsc1{word-spacing:11.418000px;}
.ws51{word-spacing:11.484000px;}
.wsa8{word-spacing:11.550000px;}
.wse9{word-spacing:11.682000px;}
.wsf3{word-spacing:11.946000px;}
.wsef{word-spacing:12.012000px;}
.wsaa{word-spacing:12.078000px;}
.ws57{word-spacing:12.144000px;}
.ws6b{word-spacing:12.288000px;}
.wsb7{word-spacing:12.342000px;}
.ws8d{word-spacing:12.408000px;}
.ws121{word-spacing:12.432000px;}
.ws8f{word-spacing:12.474000px;}
.wsf{word-spacing:12.576000px;}
.ws98{word-spacing:12.738000px;}
.ws97{word-spacing:13.002000px;}
.wsf2{word-spacing:13.200000px;}
.ws80{word-spacing:13.398000px;}
.wsec{word-spacing:13.662000px;}
.wsaf{word-spacing:14.124000px;}
.wse4{word-spacing:14.256000px;}
.ws42{word-spacing:14.322000px;}
.ws113{word-spacing:14.388000px;}
.wse{word-spacing:14.448000px;}
.ws34{word-spacing:15.114000px;}
.wse1{word-spacing:15.180000px;}
.ws35{word-spacing:15.246000px;}
.wsc0{word-spacing:15.378000px;}
.wsc6{word-spacing:15.444000px;}
.ws104{word-spacing:15.510000px;}
.wsb8{word-spacing:15.642000px;}
.ws7b{word-spacing:16.104000px;}
.ws8e{word-spacing:16.170000px;}
.wse8{word-spacing:16.368000px;}
.ws71{word-spacing:16.416000px;}
.wsd4{word-spacing:16.566000px;}
.ws49{word-spacing:16.632000px;}
.wscb{word-spacing:17.094000px;}
.ws72{word-spacing:17.280000px;}
.wscf{word-spacing:18.282000px;}
.ws77{word-spacing:18.876000px;}
.ws7a{word-spacing:19.074000px;}
.ws90{word-spacing:19.104000px;}
.wsb4{word-spacing:19.404000px;}
.wse7{word-spacing:19.800000px;}
.ws4e{word-spacing:19.998000px;}
.wse6{word-spacing:20.064000px;}
.wsb2{word-spacing:21.054000px;}
.wseb{word-spacing:21.714000px;}
.ws8b{word-spacing:21.912000px;}
.ws70{word-spacing:22.992000px;}
.wsd7{word-spacing:23.496000px;}
.wsf0{word-spacing:24.090000px;}
.wsde{word-spacing:24.156000px;}
.wsed{word-spacing:24.354000px;}
.ws6a{word-spacing:24.384000px;}
.ws6e{word-spacing:24.576000px;}
.ws30{word-spacing:25.410000px;}
.wsdf{word-spacing:26.202000px;}
.wse0{word-spacing:27.456000px;}
.wsd5{word-spacing:28.050000px;}
.ws69{word-spacing:28.560000px;}
.ws6c{word-spacing:30.960000px;}
.ws111{word-spacing:39.864000px;}
.ws68{word-spacing:41.280000px;}
.ws6d{word-spacing:45.888000px;}
.ws2{word-spacing:194.040000px;}
._22{margin-left:-838.095502px;}
._21{margin-left:-835.660119px;}
._2{margin-left:-208.008000px;}
._3{margin-left:-194.040000px;}
._7{margin-left:-18.432000px;}
._1d{margin-left:-11.088000px;}
._1{margin-left:-7.992000px;}
._b{margin-left:-6.153600px;}
._0{margin-left:-4.884000px;}
._c{margin-left:-3.544800px;}
._9{margin-left:-2.461800px;}
._a{margin-left:-1.273800px;}
._d{width:1.134000px;}
._f{width:2.177400px;}
._13{width:3.413400px;}
._e{width:4.441800px;}
._12{width:5.794800px;}
._11{width:7.167600px;}
._10{width:8.665800px;}
._15{width:9.992400px;}
._17{width:11.140944px;}
._19{width:12.711456px;}
._16{width:14.434200px;}
._14{width:15.807000px;}
._18{width:19.116600px;}
._1c{width:20.361000px;}
._1b{width:27.066600px;}
._1a{width:28.129200px;}
._20{width:48.576000px;}
._4{width:50.112000px;}
._1e{width:71.760000px;}
._6{width:98.136000px;}
._5{width:194.040000px;}
._8{width:195.480000px;}
._1f{width:2253.094800px;}
.fc5{color:transparent;}
.fc3{color:rgb(126,39,124);}
.fc2{color:rgb(99,204,202);}
.fc4{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(90,87,88);}
.fs9{font-size:6.228600px;}
.fs8{font-size:7.980600px;}
.fs6{font-size:27.984000px;}
.fs5{font-size:38.478000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.fs1{font-size:186.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:35.707650px;}
.y23{bottom:36.229050px;}
.ybe{bottom:62.270250px;}
.y111{bottom:63.376950px;}
.y1f{bottom:63.779550px;}
.y195{bottom:63.789000px;}
.y30c{bottom:64.843050px;}
.y13f{bottom:67.775550px;}
.y271{bottom:73.974514px;}
.y2e1{bottom:73.999615px;}
.ybd{bottom:76.670250px;}
.y270{bottom:76.797651px;}
.y2e0{bottom:76.822752px;}
.y1e{bottom:78.179550px;}
.y1ae{bottom:78.189000px;}
.y30b{bottom:79.243050px;}
.y26f{bottom:79.620789px;}
.y2df{bottom:79.645889px;}
.y73{bottom:82.175550px;}
.y2de{bottom:82.469026px;}
.y317{bottom:83.494950px;}
.y192{bottom:84.788700px;}
.y167{bottom:84.927150px;}
.ydb{bottom:85.010400px;}
.y48{bottom:85.052100px;}
.yae{bottom:85.197150px;}
.y2dd{bottom:85.292164px;}
.y2d7{bottom:85.297083px;}
.y1d6{bottom:85.345800px;}
.y147{bottom:87.106650px;}
.y2d6{bottom:87.413250px;}
.y2dc{bottom:88.115301px;}
.y13e{bottom:90.935400px;}
.y2db{bottom:90.938438px;}
.y91{bottom:92.579550px;}
.y30a{bottom:93.643050px;}
.y2d5{bottom:93.732485px;}
.y2da{bottom:93.761575px;}
.y2d4{bottom:96.555622px;}
.y2d9{bottom:96.584713px;}
.y110{bottom:96.831450px;}
.y2fb{bottom:97.207650px;}
.y55{bottom:99.212550px;}
.y2d3{bottom:99.378759px;}
.y2d8{bottom:99.407850px;}
.y72{bottom:100.827600px;}
.y316{bottom:102.147000px;}
.y2d2{bottom:102.201896px;}
.y2d1{bottom:105.025034px;}
.y191{bottom:105.797700px;}
.y54{bottom:105.944850px;}
.y166{bottom:106.074750px;}
.yda{bottom:106.241100px;}
.y47{bottom:106.324650px;}
.yad{bottom:106.614750px;}
.y175{bottom:106.979550px;}
.y26a{bottom:107.848171px;}
.y146{bottom:110.433900px;}
.y269{bottom:110.671308px;}
.y1b9{bottom:110.975550px;}
.y1d5{bottom:111.163950px;}
.y13d{bottom:111.961950px;}
.y309{bottom:112.294950px;}
.y268{bottom:113.494445px;}
.y10f{bottom:115.227450px;}
.y267{bottom:116.317583px;}
.y315{bottom:116.547000px;}
.y1d{bottom:117.141750px;}
.y2fa{bottom:118.207650px;}
.y266{bottom:119.140720px;}
.y71{bottom:119.479500px;}
.y174{bottom:121.379550px;}
.y265{bottom:121.963857px;}
.y264{bottom:124.786994px;}
.yd9{bottom:127.471950px;}
.y1ab{bottom:127.597200px;}
.y263{bottom:127.610132px;}
.yac{bottom:128.032350px;}
.y262{bottom:130.433269px;}
.y308{bottom:130.947000px;}
.y190{bottom:131.058750px;}
.y165{bottom:131.474250px;}
.y46{bottom:131.849100px;}
.y1d4{bottom:132.730200px;}
.y13c{bottom:132.988500px;}
.y261{bottom:133.256406px;}
.y145{bottom:133.761000px;}
.y314{bottom:135.198900px;}
.y1c{bottom:135.537750px;}
.y272{bottom:135.877350px;}
.y260{bottom:136.079543px;}
.y10e{bottom:138.387450px;}
.y25f{bottom:138.902681px;}
.y2f9{bottom:139.207650px;}
.y25e{bottom:141.725818px;}
.y25d{bottom:144.548955px;}
.y307{bottom:145.347000px;}
.y1b8{bottom:147.286350px;}
.y25c{bottom:147.372092px;}
.yd8{bottom:148.702800px;}
.y1aa{bottom:148.869750px;}
.yab{bottom:149.449950px;}
.y313{bottom:149.598900px;}
.y25b{bottom:150.195230px;}
.y18f{bottom:152.067750px;}
.y164{bottom:152.921850px;}
.y25a{bottom:153.018367px;}
.y45{bottom:153.121650px;}
.y13b{bottom:154.014900px;}
.y1d3{bottom:154.296450px;}
.y259{bottom:155.841504px;}
.y70{bottom:156.055650px;}
.y144{bottom:157.088100px;}
.y258{bottom:158.664641px;}
.y1b{bottom:158.697600px;}
.y10d{bottom:159.417750px;}
.y2f8{bottom:160.207650px;}
.y257{bottom:161.487779px;}
.y306{bottom:163.998900px;}
.y256{bottom:164.310916px;}
.y255{bottom:167.134053px;}
.y312{bottom:168.250950px;}
.y1b7{bottom:168.286350px;}
.yd7{bottom:169.933650px;}
.y254{bottom:169.957190px;}
.y1a9{bottom:170.142300px;}
.yaa{bottom:170.867550px;}
.y253{bottom:172.780327px;}
.y18e{bottom:173.076900px;}
.y163{bottom:174.369450px;}
.y44{bottom:174.394200px;}
.y13a{bottom:175.041450px;}
.y252{bottom:175.603465px;}
.y1d2{bottom:175.862550px;}
.y6f{bottom:177.055650px;}
.y305{bottom:178.398900px;}
.y251{bottom:178.426602px;}
.y1a{bottom:179.697600px;}
.y143{bottom:180.415200px;}
.y10c{bottom:180.448200px;}
.y2f7{bottom:181.207650px;}
.y250{bottom:181.249739px;}
.y311{bottom:182.650950px;}
.y24f{bottom:184.072877px;}
.y24e{bottom:186.896014px;}
.y1b6{bottom:189.286350px;}
.y24d{bottom:189.719151px;}
.yd6{bottom:191.164350px;}
.y1a8{bottom:191.414850px;}
.ya9{bottom:192.285150px;}
.y26e{bottom:192.518346px;}
.y24c{bottom:192.542288px;}
.y18d{bottom:194.085900px;}
.y26d{bottom:195.341484px;}
.y24b{bottom:195.365426px;}
.y43{bottom:195.666750px;}
.y162{bottom:195.817050px;}
.y139{bottom:196.067850px;}
.y304{bottom:197.050800px;}
.y1d1{bottom:197.428800px;}
.y26c{bottom:198.164621px;}
.y24a{bottom:198.188563px;}
.y19{bottom:200.697600px;}
.y26b{bottom:200.987758px;}
.y249{bottom:201.011700px;}
.y10b{bottom:201.478500px;}
.y2f6{bottom:202.207650px;}
.y6e{bottom:202.307550px;}
.y142{bottom:203.742450px;}
.y1b5{bottom:210.286350px;}
.y303{bottom:211.450950px;}
.yd5{bottom:212.395200px;}
.y1a7{bottom:212.687250px;}
.ya8{bottom:213.702750px;}
.y18c{bottom:215.095050px;}
.y310{bottom:215.702850px;}
.y42{bottom:216.939300px;}
.y138{bottom:217.094400px;}
.y161{bottom:217.264650px;}
.y1d0{bottom:218.995050px;}
.y18{bottom:221.697600px;}
.y10a{bottom:222.508950px;}
.y2f5{bottom:223.207650px;}
.y6d{bottom:223.307550px;}
.y141{bottom:227.069550px;}
.y302{bottom:230.102850px;}
.y1b4{bottom:231.286350px;}
.yd4{bottom:233.626050px;}
.y1a6{bottom:233.959800px;}
.y30f{bottom:234.354750px;}
.ya7{bottom:235.120350px;}
.y18b{bottom:236.104050px;}
.y137{bottom:238.120950px;}
.y41{bottom:238.211850px;}
.y160{bottom:238.712250px;}
.y1cf{bottom:240.561150px;}
.y17{bottom:242.697600px;}
.y109{bottom:243.539400px;}
.y2f4{bottom:244.207650px;}
.y6c{bottom:244.307550px;}
.y301{bottom:244.502850px;}
.y2cc{bottom:246.133354px;}
.y247{bottom:246.145325px;}
.y23f{bottom:246.151311px;}
.y2d0{bottom:246.161700px;}
.y30e{bottom:248.754750px;}
.y2cb{bottom:248.956492px;}
.y246{bottom:248.968462px;}
.y23e{bottom:248.974448px;}
.y140{bottom:250.396650px;}
.y2cf{bottom:251.007506px;}
.y2ca{bottom:251.779629px;}
.y245{bottom:251.791600px;}
.y23d{bottom:251.797585px;}
.y1b3{bottom:252.286350px;}
.y2ce{bottom:253.830643px;}
.y2c9{bottom:254.602766px;}
.y244{bottom:254.614737px;}
.y23c{bottom:254.620722px;}
.yd3{bottom:254.856750px;}
.y1a5{bottom:255.232350px;}
.ya6{bottom:256.537950px;}
.y2cd{bottom:256.653780px;}
.y18a{bottom:257.113200px;}
.y2c8{bottom:257.425903px;}
.y243{bottom:257.437874px;}
.y23b{bottom:257.443860px;}
.y136{bottom:259.147350px;}
.y40{bottom:259.484400px;}
.y15f{bottom:260.159850px;}
.y2c7{bottom:260.249041px;}
.y242{bottom:260.261011px;}
.y23a{bottom:260.266997px;}
.y1ce{bottom:262.127400px;}
.y2c6{bottom:263.072178px;}
.y241{bottom:263.084149px;}
.y239{bottom:263.090134px;}
.y300{bottom:263.154900px;}
.y16{bottom:263.697600px;}
.y108{bottom:264.569700px;}
.y2f3{bottom:265.207650px;}
.y6b{bottom:265.307550px;}
.y240{bottom:265.907286px;}
.y238{bottom:265.913271px;}
.yd2{bottom:276.087600px;}
.y1a4{bottom:276.504900px;}
.y1b2{bottom:277.538400px;}
.y2ff{bottom:277.554900px;}
.ya5{bottom:277.955400px;}
.y3f{bottom:280.756950px;}
.y15e{bottom:281.607450px;}
.y189{bottom:282.374250px;}
.y135{bottom:284.425800px;}
.y15{bottom:284.697600px;}
.y107{bottom:285.600150px;}
.y2f2{bottom:286.207650px;}
.y6a{bottom:286.307550px;}
.y1cd{bottom:287.945550px;}
.y2fe{bottom:291.954900px;}
.y14a{bottom:293.337600px;}
.y30d{bottom:296.206800px;}
.yd1{bottom:297.318450px;}
.y1a3{bottom:297.777450px;}
.y1b1{bottom:298.538400px;}
.ya4{bottom:299.373150px;}
.y3e{bottom:302.029500px;}
.y15d{bottom:303.055050px;}
.y188{bottom:303.383250px;}
.y121{bottom:303.625050px;}
.y134{bottom:305.452350px;}
.y14{bottom:305.697600px;}
.y106{bottom:306.630450px;}
.y2f1{bottom:307.207650px;}
.y69{bottom:307.307550px;}
.y149{bottom:307.737600px;}
.y248{bottom:308.032200px;}
.y1cc{bottom:309.511800px;}
.y2fd{bottom:310.606800px;}
.y194{bottom:312.519600px;}
.yd0{bottom:318.549150px;}
.y1a2{bottom:319.050000px;}
.y1b0{bottom:319.538400px;}
.ya3{bottom:320.790750px;}
.y2a{bottom:321.115650px;}
.y148{bottom:322.137600px;}
.y3d{bottom:323.301900px;}
.y187{bottom:324.392400px;}
.y15c{bottom:324.502650px;}
.y120{bottom:325.042650px;}
.y13{bottom:326.697600px;}
.y105{bottom:327.660900px;}
.y133{bottom:327.730800px;}
.y2f0{bottom:328.207650px;}
.y68{bottom:328.307550px;}
.y193{bottom:328.931550px;}
.y237{bottom:329.117133px;}
.y1cb{bottom:331.078050px;}
.y236{bottom:331.233300px;}
.y2fc{bottom:333.510750px;}
.y2b5{bottom:333.642629px;}
.y29{bottom:335.515800px;}
.y2c3{bottom:336.455790px;}
.y235{bottom:336.457785px;}
.y2b4{bottom:336.465766px;}
.y2c2{bottom:339.278927px;}
.y234{bottom:339.280922px;}
.y2b3{bottom:339.288903px;}
.ycf{bottom:339.780000px;}
.y1a1{bottom:340.322550px;}
.y1af{bottom:340.538400px;}
.y2c1{bottom:342.102064px;}
.y233{bottom:342.104060px;}
.y2b2{bottom:342.112040px;}
.ya2{bottom:342.208350px;}
.y3c{bottom:344.574450px;}
.y2c0{bottom:344.925202px;}
.y232{bottom:344.927197px;}
.y227{bottom:344.935178px;}
.y186{bottom:345.401400px;}
.y15b{bottom:345.950250px;}
.y11f{bottom:346.460250px;}
.y12{bottom:347.697600px;}
.y2bf{bottom:347.748339px;}
.y231{bottom:347.750334px;}
.y226{bottom:347.758315px;}
.y104{bottom:348.691200px;}
.y2ef{bottom:349.207650px;}
.y67{bottom:349.307550px;}
.y28{bottom:349.915800px;}
.y2be{bottom:350.571476px;}
.y230{bottom:350.573471px;}
.y225{bottom:350.581452px;}
.y1ca{bottom:352.644300px;}
.y132{bottom:353.009250px;}
.y2bd{bottom:353.394613px;}
.y22f{bottom:353.396609px;}
.y224{bottom:353.404589px;}
.y2bc{bottom:356.217751px;}
.y22e{bottom:356.219746px;}
.y223{bottom:356.227726px;}
.y2bb{bottom:359.040888px;}
.y22d{bottom:359.042883px;}
.y222{bottom:359.050864px;}
.yce{bottom:361.010850px;}
.y1a0{bottom:361.595100px;}
.y2ba{bottom:361.864025px;}
.y22c{bottom:361.866020px;}
.y221{bottom:361.874001px;}
.y1bb{bottom:362.148000px;}
.ya1{bottom:363.625950px;}
.y27{bottom:364.315800px;}
.y2b9{bottom:364.687162px;}
.y22b{bottom:364.689158px;}
.y220{bottom:364.697138px;}
.y3b{bottom:365.847000px;}
.y185{bottom:366.410550px;}
.y15a{bottom:367.397850px;}
.y2b8{bottom:367.510300px;}
.y22a{bottom:367.512295px;}
.y21f{bottom:367.520275px;}
.y11e{bottom:367.877850px;}
.y11{bottom:368.697600px;}
.y103{bottom:369.721650px;}
.y2ee{bottom:370.207650px;}
.y66{bottom:370.307550px;}
.y2c5{bottom:370.323461px;}
.y2b7{bottom:370.333437px;}
.y229{bottom:370.335432px;}
.y21e{bottom:370.343413px;}
.y31b{bottom:371.388600px;}
.y2c4{bottom:373.146598px;}
.y2b6{bottom:373.156574px;}
.y228{bottom:373.158569px;}
.y21d{bottom:373.166550px;}
.y131{bottom:374.035800px;}
.y1c9{bottom:374.210550px;}
.y1ba{bottom:378.559950px;}
.y26{bottom:378.715800px;}
.y2e3{bottom:381.448050px;}
.ycd{bottom:382.241700px;}
.y83{bottom:382.677150px;}
.y56{bottom:382.832850px;}
.y19f{bottom:382.867650px;}
.ya0{bottom:385.043550px;}
.y31a{bottom:385.788600px;}
.y3a{bottom:387.119550px;}
.y184{bottom:387.419550px;}
.y159{bottom:388.845450px;}
.y11d{bottom:389.295450px;}
.y1ad{bottom:389.608650px;}
.y102{bottom:390.751950px;}
.y2ed{bottom:391.207650px;}
.y65{bottom:391.307550px;}
.y25{bottom:393.115650px;}
.y130{bottom:395.062200px;}
.y1c8{bottom:395.776650px;}
.y82{bottom:397.077150px;}
.y2e2{bottom:397.860000px;}
.y319{bottom:400.188600px;}
.ycc{bottom:403.472400px;}
.y19e{bottom:404.140200px;}
.y22{bottom:405.365700px;}
.y1ac{bottom:406.020600px;}
.y9f{bottom:406.461150px;}
.y24{bottom:407.515800px;}
.y39{bottom:408.392100px;}
.y183{bottom:408.428700px;}
.y158{bottom:410.293050px;}
.y11c{bottom:410.713050px;}
.y101{bottom:411.782400px;}
.y2ec{bottom:412.207650px;}
.y64{bottom:412.307550px;}
.y318{bottom:414.588600px;}
.y10{bottom:414.936750px;}
.y81{bottom:415.473150px;}
.y12f{bottom:416.088750px;}
.y1c7{bottom:417.342900px;}
.y2b1{bottom:418.457959px;}
.y2ad{bottom:418.459954px;}
.y21b{bottom:418.463945px;}
.y216{bottom:418.465940px;}
.y2b0{bottom:421.281096px;}
.y2ac{bottom:421.283092px;}
.y21a{bottom:421.287082px;}
.y215{bottom:421.289077px;}
.y2af{bottom:424.104234px;}
.y2ab{bottom:424.106229px;}
.y219{bottom:424.110219px;}
.y214{bottom:424.112214px;}
.ycb{bottom:424.703250px;}
.y2ae{bottom:426.927371px;}
.y2aa{bottom:426.929366px;}
.y218{bottom:426.933356px;}
.y9e{bottom:427.878600px;}
.y182{bottom:429.437700px;}
.y38{bottom:429.664650px;}
.y2a9{bottom:429.752503px;}
.y217{bottom:429.756494px;}
.y90{bottom:430.129200px;}
.y157{bottom:431.740650px;}
.y11b{bottom:432.130650px;}
.y2a8{bottom:432.575641px;}
.y100{bottom:432.812700px;}
.y2eb{bottom:433.207650px;}
.y63{bottom:433.307550px;}
.yf{bottom:434.436750px;}
.y2a7{bottom:435.398778px;}
.y12e{bottom:437.115300px;}
.y80{bottom:438.633150px;}
.y1c6{bottom:438.909150px;}
.y8f{bottom:444.529200px;}
.yca{bottom:445.934100px;}
.y9d{bottom:449.296350px;}
.y37{bottom:450.937200px;}
.y156{bottom:453.188250px;}
.y11a{bottom:453.548250px;}
.yff{bottom:453.843150px;}
.ye{bottom:453.936750px;}
.y2ea{bottom:454.207650px;}
.y62{bottom:454.307550px;}
.y181{bottom:454.698750px;}
.y12d{bottom:458.141700px;}
.y1c5{bottom:460.475400px;}
.y7f{bottom:461.227950px;}
.y173{bottom:462.059700px;}
.y8e{bottom:462.925200px;}
.yc9{bottom:467.164800px;}
.y9c{bottom:470.713950px;}
.y19d{bottom:472.209750px;}
.yd{bottom:473.436750px;}
.y155{bottom:474.635850px;}
.yfe{bottom:474.873450px;}
.y119{bottom:474.965850px;}
.y2e9{bottom:475.207650px;}
.y61{bottom:475.307550px;}
.y180{bottom:475.707900px;}
.y36{bottom:476.461650px;}
.y12c{bottom:479.168250px;}
.y21c{bottom:480.358650px;}
.y1c4{bottom:482.041650px;}
.y172{bottom:482.759700px;}
.y7e{bottom:483.822750px;}
.y8d{bottom:486.085050px;}
.yc8{bottom:488.395650px;}
.y9b{bottom:492.131400px;}
.yc{bottom:492.936750px;}
.y19c{bottom:493.482300px;}
.yfd{bottom:495.903900px;}
.y154{bottom:496.083450px;}
.y2e8{bottom:496.207650px;}
.y60{bottom:496.307550px;}
.y118{bottom:496.383450px;}
.y17f{bottom:496.716900px;}
.y35{bottom:497.734200px;}
.y12b{bottom:500.194650px;}
.y53{bottom:500.559450px;}
.y2a4{bottom:503.136116px;}
.y171{bottom:503.459700px;}
.y1c3{bottom:503.607750px;}
.y2a3{bottom:505.959253px;}
.y7d{bottom:506.417700px;}
.y8c{bottom:508.453650px;}
.y2a2{bottom:508.782390px;}
.y294{bottom:508.792366px;}
.yc7{bottom:509.626500px;}
.y2a1{bottom:511.605527px;}
.y293{bottom:511.615503px;}
.yb{bottom:512.436750px;}
.y9a{bottom:513.549150px;}
.ye4{bottom:513.660300px;}
.y2a0{bottom:514.428664px;}
.y206{bottom:514.438640px;}
.y19b{bottom:514.754850px;}
.yfc{bottom:516.934350px;}
.y29f{bottom:517.251802px;}
.y205{bottom:517.261777px;}
.y5f{bottom:517.307550px;}
.y153{bottom:517.531050px;}
.y17e{bottom:517.726050px;}
.y117{bottom:517.801050px;}
.y34{bottom:519.006750px;}
.y29e{bottom:520.074939px;}
.y204{bottom:520.084915px;}
.y12a{bottom:521.221200px;}
.y2e7{bottom:521.459700px;}
.y52{bottom:521.559450px;}
.y29d{bottom:522.898076px;}
.y203{bottom:522.908052px;}
.y170{bottom:524.159700px;}
.y1c2{bottom:525.174000px;}
.y29c{bottom:525.721213px;}
.y20e{bottom:525.723209px;}
.y202{bottom:525.731189px;}
.ybc{bottom:526.634700px;}
.y29b{bottom:528.544351px;}
.y20d{bottom:528.546346px;}
.y201{bottom:528.554327px;}
.y7c{bottom:529.012500px;}
.y4{bottom:530.272200px;}
.y8b{bottom:530.822400px;}
.y29a{bottom:531.367488px;}
.y20c{bottom:531.369483px;}
.y200{bottom:531.377464px;}
.ya{bottom:531.936750px;}
.ye3{bottom:532.056450px;}
.y299{bottom:534.190625px;}
.y20b{bottom:534.192620px;}
.y1ff{bottom:534.200601px;}
.y99{bottom:534.966750px;}
.yc6{bottom:535.109250px;}
.y19a{bottom:536.027400px;}
.y298{bottom:537.013762px;}
.y20a{bottom:537.015758px;}
.y1fe{bottom:537.023738px;}
.yfb{bottom:537.964650px;}
.yf3{bottom:538.207650px;}
.y5e{bottom:538.307550px;}
.y17d{bottom:538.735050px;}
.y152{bottom:538.978650px;}
.y116{bottom:539.218650px;}
.y211{bottom:539.832909px;}
.y297{bottom:539.836900px;}
.y209{bottom:539.838895px;}
.y1fd{bottom:539.846876px;}
.y33{bottom:540.279300px;}
.ybb{bottom:541.034700px;}
.y129{bottom:542.247750px;}
.y2e6{bottom:542.459700px;}
.y51{bottom:542.559450px;}
.y2a6{bottom:542.650061px;}
.y213{bottom:542.654052px;}
.y210{bottom:542.656047px;}
.y296{bottom:542.660037px;}
.y208{bottom:542.662032px;}
.y1fa{bottom:542.669863px;}
.y1fc{bottom:542.670013px;}
.y16f{bottom:544.859700px;}
.y2a5{bottom:545.473199px;}
.y212{bottom:545.477189px;}
.y20f{bottom:545.479184px;}
.y295{bottom:545.483174px;}
.y207{bottom:545.485169px;}
.y1f9{bottom:545.493000px;}
.y1fb{bottom:545.493150px;}
.y1c1{bottom:546.740250px;}
.ye2{bottom:550.708350px;}
.y9{bottom:551.436750px;}
.y7b{bottom:551.607450px;}
.y8a{bottom:553.191000px;}
.y3{bottom:554.024250px;}
.yba{bottom:555.434700px;}
.y98{bottom:556.384350px;}
.y199{bottom:557.299800px;}
.yfa{bottom:558.994950px;}
.yf2{bottom:559.207650px;}
.y5d{bottom:559.307550px;}
.y17c{bottom:559.744200px;}
.y151{bottom:560.426250px;}
.y115{bottom:560.636250px;}
.y32{bottom:561.551850px;}
.y128{bottom:563.274150px;}
.yeb{bottom:563.459550px;}
.y2e5{bottom:563.459700px;}
.y50{bottom:563.559450px;}
.y16e{bottom:565.559700px;}
.yb9{bottom:569.834700px;}
.y8{bottom:570.936750px;}
.y1c0{bottom:572.558400px;}
.ye1{bottom:573.868350px;}
.y7a{bottom:574.202400px;}
.y89{bottom:575.559750px;}
.y97{bottom:577.801950px;}
.y198{bottom:578.572350px;}
.yf1{bottom:580.207650px;}
.y5c{bottom:580.307550px;}
.y17b{bottom:580.753200px;}
.y150{bottom:581.873850px;}
.y114{bottom:582.053850px;}
.y31{bottom:582.824400px;}
.yc5{bottom:583.074750px;}
.yb8{bottom:584.234700px;}
.yf9{bottom:584.277300px;}
.y127{bottom:584.300700px;}
.yea{bottom:584.459550px;}
.y2e4{bottom:584.459700px;}
.y4f{bottom:584.559450px;}
.y16d{bottom:586.259700px;}
.y292{bottom:588.466804px;}
.y28b{bottom:588.470795px;}
.y1f7{bottom:588.472790px;}
.y1f2{bottom:588.474785px;}
.y7{bottom:590.436750px;}
.y291{bottom:591.289942px;}
.y28a{bottom:591.293932px;}
.y1f6{bottom:591.295927px;}
.y1f1{bottom:591.297922px;}
.y290{bottom:594.113079px;}
.y289{bottom:594.117069px;}
.y1f5{bottom:594.119064px;}
.y1f0{bottom:594.121059px;}
.ye0{bottom:596.633550px;}
.y79{bottom:596.797200px;}
.y28f{bottom:596.936216px;}
.y288{bottom:596.940206px;}
.y1f4{bottom:596.942202px;}
.y1ef{bottom:596.944197px;}
.y88{bottom:597.928350px;}
.yb7{bottom:598.634700px;}
.y96{bottom:599.219550px;}
.y28e{bottom:599.759353px;}
.y287{bottom:599.763344px;}
.y1f3{bottom:599.765339px;}
.y1ee{bottom:599.767334px;}
.y197{bottom:599.844900px;}
.y5b{bottom:601.307550px;}
.y17a{bottom:601.762350px;}
.y28d{bottom:602.582491px;}
.y286{bottom:602.586481px;}
.y1ed{bottom:602.590471px;}
.y14f{bottom:603.321450px;}
.y113{bottom:603.471450px;}
.y30{bottom:604.096950px;}
.yc4{bottom:604.305600px;}
.yf8{bottom:605.307750px;}
.y126{bottom:605.327250px;}
.y28c{bottom:605.405628px;}
.y285{bottom:605.409618px;}
.y1ec{bottom:605.413608px;}
.ye9{bottom:605.459550px;}
.yf0{bottom:605.459700px;}
.y4e{bottom:605.559450px;}
.y16c{bottom:606.959700px;}
.y1eb{bottom:608.236746px;}
.yb6{bottom:613.034700px;}
.y78{bottom:619.392150px;}
.ydf{bottom:619.398750px;}
.y87{bottom:620.296950px;}
.y95{bottom:620.637150px;}
.y5a{bottom:622.307550px;}
.y179{bottom:622.771350px;}
.y1bf{bottom:624.194850px;}
.y14e{bottom:624.769050px;}
.y112{bottom:624.889050px;}
.y2f{bottom:625.369500px;}
.yc3{bottom:625.536450px;}
.yf7{bottom:626.338050px;}
.y125{bottom:626.353650px;}
.ye8{bottom:626.459550px;}
.yef{bottom:626.459700px;}
.y4d{bottom:626.559450px;}
.yb5{bottom:627.434700px;}
.y16b{bottom:627.659700px;}
.yb4{bottom:641.834700px;}
.y77{bottom:641.986950px;}
.yde{bottom:642.163950px;}
.y86{bottom:642.665700px;}
.y59{bottom:643.307550px;}
.y178{bottom:643.780500px;}
.y1be{bottom:645.760950px;}
.y14d{bottom:646.216650px;}
.y94{bottom:646.306650px;}
.y2e{bottom:646.642050px;}
.yc2{bottom:646.767150px;}
.yf6{bottom:647.368500px;}
.y124{bottom:647.380200px;}
.ye7{bottom:647.459550px;}
.yee{bottom:647.459700px;}
.y4c{bottom:647.559450px;}
.y16a{bottom:648.359700px;}
.y6{bottom:649.621050px;}
.y1f8{bottom:650.365500px;}
.yb3{bottom:656.234700px;}
.y58{bottom:664.307550px;}
.y76{bottom:664.581900px;}
.ydd{bottom:664.929150px;}
.y85{bottom:665.034300px;}
.y1bd{bottom:667.327200px;}
.y14c{bottom:667.664250px;}
.y93{bottom:667.724250px;}
.y2d{bottom:667.914600px;}
.yc1{bottom:667.998000px;}
.yf5{bottom:668.398950px;}
.y123{bottom:668.406600px;}
.ye6{bottom:668.459550px;}
.yed{bottom:668.459700px;}
.y4b{bottom:668.559450px;}
.y177{bottom:669.041400px;}
.y169{bottom:669.059700px;}
.yb2{bottom:670.634700px;}
.y20{bottom:679.606350px;}
.y5{bottom:682.621050px;}
.y277{bottom:684.445490px;}
.yb1{bottom:685.034700px;}
.y57{bottom:685.307550px;}
.y21{bottom:686.338650px;}
.y75{bottom:687.176700px;}
.y282{bottom:687.260647px;}
.y276{bottom:687.268627px;}
.y84{bottom:687.402900px;}
.ydc{bottom:687.694350px;}
.y1bc{bottom:688.893450px;}
.y14b{bottom:689.111850px;}
.y92{bottom:689.141850px;}
.y196{bottom:689.187000px;}
.y2c{bottom:689.187150px;}
.yc0{bottom:689.228850px;}
.yf4{bottom:689.429250px;}
.y122{bottom:689.433150px;}
.ye5{bottom:689.459550px;}
.yec{bottom:689.459700px;}
.y4a{bottom:689.559450px;}
.y176{bottom:689.750550px;}
.y168{bottom:689.759700px;}
.y281{bottom:690.083784px;}
.y275{bottom:690.091765px;}
.y280{bottom:692.906921px;}
.y1e8{bottom:692.910912px;}
.y274{bottom:692.914902px;}
.y27f{bottom:695.730059px;}
.y1e7{bottom:695.734049px;}
.y273{bottom:695.738039px;}
.y27e{bottom:698.553196px;}
.y1e6{bottom:698.557186px;}
.y1df{bottom:698.561176px;}
.yb0{bottom:699.434700px;}
.y27d{bottom:701.376333px;}
.y1e5{bottom:701.380323px;}
.y1de{bottom:701.384314px;}
.y27c{bottom:704.199470px;}
.y1e4{bottom:704.203461px;}
.y1dd{bottom:704.207451px;}
.y27b{bottom:707.022608px;}
.y1e3{bottom:707.026598px;}
.y1dc{bottom:707.030588px;}
.y74{bottom:709.771650px;}
.y27a{bottom:709.845745px;}
.y1e2{bottom:709.849735px;}
.y1db{bottom:709.853725px;}
.ybf{bottom:710.459550px;}
.y2b{bottom:710.459700px;}
.y49{bottom:710.559450px;}
.y284{bottom:712.660902px;}
.y1ea{bottom:712.666887px;}
.y279{bottom:712.668882px;}
.y1e1{bottom:712.672872px;}
.y1d8{bottom:712.676713px;}
.y1da{bottom:712.676863px;}
.yaf{bottom:713.834700px;}
.y283{bottom:715.484039px;}
.y1e9{bottom:715.490024px;}
.y278{bottom:715.492019px;}
.y1e0{bottom:715.496010px;}
.y1d7{bottom:715.499850px;}
.y1d9{bottom:715.500000px;}
.y2{bottom:725.449050px;}
.h11{height:4.622789px;}
.he{height:5.586420px;}
.h10{height:5.714110px;}
.hf{height:6.671782px;}
.h8{height:27.937875px;}
.ha{height:30.577148px;}
.hd{height:38.109375px;}
.h2{height:38.431641px;}
.h9{height:43.921875px;}
.hc{height:44.114475px;}
.h4{height:59.928000px;}
.h7{height:60.392578px;}
.hb{height:60.940430px;}
.h6{height:65.376000px;}
.h5{height:98.064000px;}
.h3{height:168.888000px;}
.h0{height:786.613500px;}
.h1{height:786.750000px;}
.w1{width:1190.250000px;}
.w0{width:1190.551500px;}
.x2{left:-544.251900px;}
.x0{left:0.000000px;}
.x1{left:51.023550px;}
.xb{left:54.737100px;}
.xc{left:72.595350px;}
.x9{left:148.818900px;}
.x14{left:153.001650px;}
.x1a{left:159.848834px;}
.x1e{left:165.991950px;}
.x17{left:178.264069px;}
.x1c{left:196.679303px;}
.x1d{left:199.993201px;}
.x16{left:208.955461px;}
.x3{left:216.808350px;}
.x4{left:233.533200px;}
.x19{left:272.959873px;}
.x18{left:291.375108px;}
.x1f{left:303.654804px;}
.x15{left:322.066500px;}
.x1b{left:365.033550px;}
.xd{left:388.346400px;}
.x20{left:406.087500px;}
.x26{left:412.840934px;}
.x23{left:431.256169px;}
.x22{left:461.947561px;}
.x2a{left:465.261601px;}
.x10{left:486.141750px;}
.x25{left:525.951973px;}
.x29{left:532.090908px;}
.x24{left:544.367208px;}
.x13{left:557.007900px;}
.x28{left:562.782300px;}
.x21{left:575.058600px;}
.x27{left:618.025800px;}
.xa{left:654.803100px;}
.xe{left:725.669250px;}
.x11{left:823.464600px;}
.x12{left:844.724400px;}
.x8{left:967.020450px;}
.xf{left:975.826650px;}
.x2b{left:992.126100px;}
.x6{left:1117.955850px;}
.x7{left:1127.848350px;}
.x5{left:1135.814100px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls5{letter-spacing:-2.530997pt;}
.ls6{letter-spacing:-1.840725pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.586667pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls7{letter-spacing:-0.293333pt;}
.ls8{letter-spacing:-0.171013pt;}
.ls13{letter-spacing:-0.099314pt;}
.ls12{letter-spacing:-0.092220pt;}
.ls16{letter-spacing:-0.063845pt;}
.ls14{letter-spacing:-0.035469pt;}
.ls11{letter-spacing:-0.028375pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.005184pt;}
.ls15{letter-spacing:0.021282pt;}
.lsf{letter-spacing:0.049657pt;}
.lse{letter-spacing:0.070939pt;}
.lsc{letter-spacing:0.083048pt;}
.lsb{letter-spacing:0.586667pt;}
.ls9{letter-spacing:1.173333pt;}
.ls1{letter-spacing:1.866667pt;}
.ls10{letter-spacing:5.281853pt;}
.lsd{letter-spacing:5.403657pt;}
.ws2f{word-spacing:-16.309333pt;}
.wsf1{word-spacing:-14.197333pt;}
.ws0{word-spacing:-11.861333pt;}
.ws91{word-spacing:-9.508341pt;}
.wsa7{word-spacing:-9.337328pt;}
.wsdb{word-spacing:-7.850667pt;}
.ws92{word-spacing:-6.977344pt;}
.wsca{word-spacing:-5.984000pt;}
.wsd1{word-spacing:-5.749333pt;}
.ws10a{word-spacing:-5.338667pt;}
.ws5b{word-spacing:-4.517333pt;}
.ws46{word-spacing:-4.224000pt;}
.ws61{word-spacing:-4.048000pt;}
.wsc3{word-spacing:-3.930667pt;}
.ws10b{word-spacing:-3.872000pt;}
.wsa3{word-spacing:-3.226667pt;}
.ws115{word-spacing:-3.157333pt;}
.ws109{word-spacing:-3.050667pt;}
.ws5a{word-spacing:-2.992000pt;}
.wsc7{word-spacing:-2.874667pt;}
.wsbf{word-spacing:-2.816000pt;}
.wsf4{word-spacing:-2.757333pt;}
.ws9e{word-spacing:-2.698667pt;}
.ws3f{word-spacing:-2.522667pt;}
.ws45{word-spacing:-2.405333pt;}
.wsf8{word-spacing:-2.346667pt;}
.wse2{word-spacing:-2.288000pt;}
.ws116{word-spacing:-2.261333pt;}
.wsba{word-spacing:-2.229333pt;}
.wsd6{word-spacing:-2.170667pt;}
.ws9c{word-spacing:-2.112000pt;}
.ws16{word-spacing:-2.053333pt;}
.ws4b{word-spacing:-1.994667pt;}
.ws5{word-spacing:-1.936000pt;}
.ws17{word-spacing:-1.877333pt;}
.ws26{word-spacing:-1.818667pt;}
.ws4{word-spacing:-1.760000pt;}
.wsfd{word-spacing:-1.716716pt;}
.ws75{word-spacing:-1.706667pt;}
.wsa4{word-spacing:-1.701333pt;}
.ws100{word-spacing:-1.688340pt;}
.wsfa{word-spacing:-1.681246pt;}
.ws119{word-spacing:-1.664000pt;}
.ws102{word-spacing:-1.659965pt;}
.wsa1{word-spacing:-1.642667pt;}
.ws101{word-spacing:-1.631589pt;}
.ws103{word-spacing:-1.624495pt;}
.ws56{word-spacing:-1.621333pt;}
.wsfb{word-spacing:-1.610308pt;}
.ws50{word-spacing:-1.584000pt;}
.wsf9{word-spacing:-1.581932pt;}
.ws11f{word-spacing:-1.578667pt;}
.wsff{word-spacing:-1.574838pt;}
.wsfc{word-spacing:-1.518087pt;}
.wsfe{word-spacing:-1.510994pt;}
.ws29{word-spacing:-1.349333pt;}
.ws2a{word-spacing:-1.290667pt;}
.ws4d{word-spacing:-1.237333pt;}
.ws87{word-spacing:-1.173333pt;}
.wsc{word-spacing:-1.152000pt;}
.ws41{word-spacing:-1.114667pt;}
.ws10c{word-spacing:-0.997333pt;}
.ws43{word-spacing:-0.981333pt;}
.wsc2{word-spacing:-0.938667pt;}
.ws20{word-spacing:-0.821333pt;}
.ws11c{word-spacing:-0.768000pt;}
.ws28{word-spacing:-0.762667pt;}
.ws1b{word-spacing:-0.645333pt;}
.ws60{word-spacing:-0.586667pt;}
.ws40{word-spacing:-0.528000pt;}
.ws9d{word-spacing:-0.410667pt;}
.wsee{word-spacing:-0.293333pt;}
.ws3a{word-spacing:-0.234667pt;}
.ws107{word-spacing:-0.188242pt;}
.ws96{word-spacing:-0.176000pt;}
.ws120{word-spacing:-0.128000pt;}
.ws86{word-spacing:-0.117333pt;}
.ws108{word-spacing:-0.083048pt;}
.ws1{word-spacing:0.000000pt;}
.wsb9{word-spacing:0.293333pt;}
.ws11{word-spacing:0.298667pt;}
.ws11a{word-spacing:0.426667pt;}
.ws24{word-spacing:0.469333pt;}
.ws31{word-spacing:0.528000pt;}
.ws95{word-spacing:0.586667pt;}
.ws6{word-spacing:0.645333pt;}
.ws94{word-spacing:0.704000pt;}
.ws117{word-spacing:0.725333pt;}
.ws52{word-spacing:0.762667pt;}
.ws5f{word-spacing:0.880000pt;}
.ws66{word-spacing:0.938667pt;}
.wsab{word-spacing:0.997333pt;}
.ws4c{word-spacing:1.056000pt;}
.ws11e{word-spacing:1.152000pt;}
.ws3e{word-spacing:1.173333pt;}
.ws10{word-spacing:1.237333pt;}
.ws83{word-spacing:1.290667pt;}
.ws9f{word-spacing:1.349333pt;}
.wsf7{word-spacing:1.365333pt;}
.ws1e{word-spacing:1.408000pt;}
.ws78{word-spacing:1.525333pt;}
.wsb0{word-spacing:1.584000pt;}
.ws8a{word-spacing:1.621333pt;}
.wsda{word-spacing:1.642667pt;}
.ws4a{word-spacing:1.701333pt;}
.ws123{word-spacing:1.749333pt;}
.wsb{word-spacing:1.818667pt;}
.wsa6{word-spacing:1.840725pt;}
.wsb5{word-spacing:1.877333pt;}
.ws47{word-spacing:1.936000pt;}
.ws27{word-spacing:1.994667pt;}
.ws11b{word-spacing:2.048000pt;}
.wsd0{word-spacing:2.112000pt;}
.ws105{word-spacing:2.288000pt;}
.ws53{word-spacing:2.304000pt;}
.wsd9{word-spacing:2.346667pt;}
.ws54{word-spacing:2.389333pt;}
.wsce{word-spacing:2.464000pt;}
.ws22{word-spacing:2.522667pt;}
.ws65{word-spacing:2.581333pt;}
.wsd{word-spacing:2.602667pt;}
.ws1f{word-spacing:2.640000pt;}
.wsa2{word-spacing:2.757333pt;}
.wsea{word-spacing:2.816000pt;}
.ws88{word-spacing:2.933333pt;}
.wscd{word-spacing:2.992000pt;}
.ws64{word-spacing:3.050667pt;}
.ws2c{word-spacing:3.168000pt;}
.ws19{word-spacing:3.344000pt;}
.ws10e{word-spacing:3.402667pt;}
.ws5e{word-spacing:3.461333pt;}
.ws73{word-spacing:3.498667pt;}
.wsae{word-spacing:3.520000pt;}
.ws110{word-spacing:3.578667pt;}
.ws76{word-spacing:3.637333pt;}
.ws3{word-spacing:3.696000pt;}
.ws89{word-spacing:3.754667pt;}
.ws9b{word-spacing:3.872000pt;}
.ws3b{word-spacing:3.930667pt;}
.ws122{word-spacing:3.968000pt;}
.ws5c{word-spacing:3.989333pt;}
.ws14{word-spacing:4.048000pt;}
.ws11d{word-spacing:4.053333pt;}
.wsdd{word-spacing:4.106667pt;}
.ws118{word-spacing:4.138667pt;}
.ws59{word-spacing:4.165333pt;}
.ws18{word-spacing:4.224000pt;}
.wsa9{word-spacing:4.282667pt;}
.wsdc{word-spacing:4.341333pt;}
.wsf6{word-spacing:4.352000pt;}
.wse3{word-spacing:4.400000pt;}
.ws33{word-spacing:4.458667pt;}
.wsb1{word-spacing:4.576000pt;}
.ws106{word-spacing:4.634667pt;}
.ws4f{word-spacing:4.693333pt;}
.ws44{word-spacing:4.736000pt;}
.wsc4{word-spacing:4.752000pt;}
.wse5{word-spacing:4.810667pt;}
.ws10d{word-spacing:4.869333pt;}
.ws84{word-spacing:4.928000pt;}
.ws58{word-spacing:5.077333pt;}
.ws25{word-spacing:5.104000pt;}
.wsb3{word-spacing:5.162667pt;}
.ws37{word-spacing:5.221333pt;}
.ws12{word-spacing:5.248000pt;}
.ws93{word-spacing:5.338667pt;}
.ws8{word-spacing:5.397333pt;}
.ws7f{word-spacing:5.456000pt;}
.ws2d{word-spacing:5.514667pt;}
.ws7c{word-spacing:5.573333pt;}
.ws21{word-spacing:5.632000pt;}
.wsbd{word-spacing:5.690667pt;}
.ws7e{word-spacing:5.749333pt;}
.ws62{word-spacing:5.808000pt;}
.ws74{word-spacing:5.845333pt;}
.wsc8{word-spacing:5.866667pt;}
.ws114{word-spacing:5.930667pt;}
.wsb6{word-spacing:6.042667pt;}
.wscc{word-spacing:6.101333pt;}
.wsd3{word-spacing:6.160000pt;}
.ws10f{word-spacing:6.218667pt;}
.ws48{word-spacing:6.277333pt;}
.ws2b{word-spacing:6.336000pt;}
.ws13{word-spacing:6.394667pt;}
.ws99{word-spacing:6.629333pt;}
.ws2e{word-spacing:6.688000pt;}
.ws38{word-spacing:6.805333pt;}
.wsa5{word-spacing:6.912000pt;}
.wsc5{word-spacing:6.922667pt;}
.wsf5{word-spacing:6.954667pt;}
.wsa{word-spacing:6.981333pt;}
.ws63{word-spacing:7.040000pt;}
.ws3d{word-spacing:7.157333pt;}
.ws23{word-spacing:7.216000pt;}
.ws36{word-spacing:7.274667pt;}
.wsd2{word-spacing:7.392000pt;}
.ws6f{word-spacing:7.466667pt;}
.wsc9{word-spacing:7.509333pt;}
.ws1d{word-spacing:7.568000pt;}
.ws79{word-spacing:7.626667pt;}
.ws1c{word-spacing:7.802667pt;}
.ws7d{word-spacing:7.861333pt;}
.ws9a{word-spacing:7.920000pt;}
.ws112{word-spacing:7.978667pt;}
.ws15{word-spacing:8.154667pt;}
.ws3c{word-spacing:8.213333pt;}
.wsa0{word-spacing:8.272000pt;}
.wsd8{word-spacing:8.389333pt;}
.ws55{word-spacing:8.405333pt;}
.ws39{word-spacing:8.448000pt;}
.ws82{word-spacing:8.506667pt;}
.wsad{word-spacing:8.624000pt;}
.ws85{word-spacing:8.682667pt;}
.ws9{word-spacing:8.858667pt;}
.ws5d{word-spacing:8.976000pt;}
.ws81{word-spacing:9.034667pt;}
.ws1a{word-spacing:9.093333pt;}
.ws67{word-spacing:9.152000pt;}
.wsbb{word-spacing:9.210667pt;}
.wsbe{word-spacing:9.269333pt;}
.ws8c{word-spacing:9.386667pt;}
.ws7{word-spacing:9.562667pt;}
.ws32{word-spacing:9.621333pt;}
.wsac{word-spacing:9.973333pt;}
.wsbc{word-spacing:10.032000pt;}
.wsc1{word-spacing:10.149333pt;}
.ws51{word-spacing:10.208000pt;}
.wsa8{word-spacing:10.266667pt;}
.wse9{word-spacing:10.384000pt;}
.wsf3{word-spacing:10.618667pt;}
.wsef{word-spacing:10.677333pt;}
.wsaa{word-spacing:10.736000pt;}
.ws57{word-spacing:10.794667pt;}
.ws6b{word-spacing:10.922667pt;}
.wsb7{word-spacing:10.970667pt;}
.ws8d{word-spacing:11.029333pt;}
.ws121{word-spacing:11.050667pt;}
.ws8f{word-spacing:11.088000pt;}
.wsf{word-spacing:11.178667pt;}
.ws98{word-spacing:11.322667pt;}
.ws97{word-spacing:11.557333pt;}
.wsf2{word-spacing:11.733333pt;}
.ws80{word-spacing:11.909333pt;}
.wsec{word-spacing:12.144000pt;}
.wsaf{word-spacing:12.554667pt;}
.wse4{word-spacing:12.672000pt;}
.ws42{word-spacing:12.730667pt;}
.ws113{word-spacing:12.789333pt;}
.wse{word-spacing:12.842667pt;}
.ws34{word-spacing:13.434667pt;}
.wse1{word-spacing:13.493333pt;}
.ws35{word-spacing:13.552000pt;}
.wsc0{word-spacing:13.669333pt;}
.wsc6{word-spacing:13.728000pt;}
.ws104{word-spacing:13.786667pt;}
.wsb8{word-spacing:13.904000pt;}
.ws7b{word-spacing:14.314667pt;}
.ws8e{word-spacing:14.373333pt;}
.wse8{word-spacing:14.549333pt;}
.ws71{word-spacing:14.592000pt;}
.wsd4{word-spacing:14.725333pt;}
.ws49{word-spacing:14.784000pt;}
.wscb{word-spacing:15.194667pt;}
.ws72{word-spacing:15.360000pt;}
.wscf{word-spacing:16.250667pt;}
.ws77{word-spacing:16.778667pt;}
.ws7a{word-spacing:16.954667pt;}
.ws90{word-spacing:16.981333pt;}
.wsb4{word-spacing:17.248000pt;}
.wse7{word-spacing:17.600000pt;}
.ws4e{word-spacing:17.776000pt;}
.wse6{word-spacing:17.834667pt;}
.wsb2{word-spacing:18.714667pt;}
.wseb{word-spacing:19.301333pt;}
.ws8b{word-spacing:19.477333pt;}
.ws70{word-spacing:20.437333pt;}
.wsd7{word-spacing:20.885333pt;}
.wsf0{word-spacing:21.413333pt;}
.wsde{word-spacing:21.472000pt;}
.wsed{word-spacing:21.648000pt;}
.ws6a{word-spacing:21.674667pt;}
.ws6e{word-spacing:21.845333pt;}
.ws30{word-spacing:22.586667pt;}
.wsdf{word-spacing:23.290667pt;}
.wse0{word-spacing:24.405333pt;}
.wsd5{word-spacing:24.933333pt;}
.ws69{word-spacing:25.386667pt;}
.ws6c{word-spacing:27.520000pt;}
.ws111{word-spacing:35.434667pt;}
.ws68{word-spacing:36.693333pt;}
.ws6d{word-spacing:40.789333pt;}
.ws2{word-spacing:172.480000pt;}
._22{margin-left:-744.973779pt;}
._21{margin-left:-742.808995pt;}
._2{margin-left:-184.896000pt;}
._3{margin-left:-172.480000pt;}
._7{margin-left:-16.384000pt;}
._1d{margin-left:-9.856000pt;}
._1{margin-left:-7.104000pt;}
._b{margin-left:-5.469867pt;}
._0{margin-left:-4.341333pt;}
._c{margin-left:-3.150933pt;}
._9{margin-left:-2.188267pt;}
._a{margin-left:-1.132267pt;}
._d{width:1.008000pt;}
._f{width:1.935467pt;}
._13{width:3.034133pt;}
._e{width:3.948267pt;}
._12{width:5.150933pt;}
._11{width:6.371200pt;}
._10{width:7.702933pt;}
._15{width:8.882133pt;}
._17{width:9.903061pt;}
._19{width:11.299072pt;}
._16{width:12.830400pt;}
._14{width:14.050667pt;}
._18{width:16.992533pt;}
._1c{width:18.098667pt;}
._1b{width:24.059200pt;}
._1a{width:25.003733pt;}
._20{width:43.178667pt;}
._4{width:44.544000pt;}
._1e{width:63.786667pt;}
._6{width:87.232000pt;}
._5{width:172.480000pt;}
._8{width:173.760000pt;}
._1f{width:2002.750933pt;}
.fs9{font-size:5.536533pt;}
.fs8{font-size:7.093867pt;}
.fs6{font-size:24.874667pt;}
.fs5{font-size:34.202667pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.fs1{font-size:165.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:31.740133pt;}
.y23{bottom:32.203600pt;}
.ybe{bottom:55.351333pt;}
.y111{bottom:56.335067pt;}
.y1f{bottom:56.692933pt;}
.y195{bottom:56.701333pt;}
.y30c{bottom:57.638267pt;}
.y13f{bottom:60.244933pt;}
.y271{bottom:65.755124pt;}
.y2e1{bottom:65.777435pt;}
.ybd{bottom:68.151333pt;}
.y270{bottom:68.264579pt;}
.y2e0{bottom:68.286891pt;}
.y1e{bottom:69.492933pt;}
.y1ae{bottom:69.501333pt;}
.y30b{bottom:70.438267pt;}
.y26f{bottom:70.774034pt;}
.y2df{bottom:70.796346pt;}
.y73{bottom:73.044933pt;}
.y2de{bottom:73.305801pt;}
.y317{bottom:74.217733pt;}
.y192{bottom:75.367733pt;}
.y167{bottom:75.490800pt;}
.ydb{bottom:75.564800pt;}
.y48{bottom:75.601867pt;}
.yae{bottom:75.730800pt;}
.y2dd{bottom:75.815257pt;}
.y2d7{bottom:75.819629pt;}
.y1d6{bottom:75.862933pt;}
.y147{bottom:77.428133pt;}
.y2d6{bottom:77.700667pt;}
.y2dc{bottom:78.324712pt;}
.y13e{bottom:80.831467pt;}
.y2db{bottom:80.834167pt;}
.y91{bottom:82.292933pt;}
.y30a{bottom:83.238267pt;}
.y2d5{bottom:83.317764pt;}
.y2da{bottom:83.343623pt;}
.y2d4{bottom:85.827219pt;}
.y2d9{bottom:85.853078pt;}
.y110{bottom:86.072400pt;}
.y2fb{bottom:86.406800pt;}
.y55{bottom:88.188933pt;}
.y2d3{bottom:88.336675pt;}
.y2d8{bottom:88.362533pt;}
.y72{bottom:89.624533pt;}
.y316{bottom:90.797333pt;}
.y2d2{bottom:90.846130pt;}
.y2d1{bottom:93.355585pt;}
.y191{bottom:94.042400pt;}
.y54{bottom:94.173200pt;}
.y166{bottom:94.288667pt;}
.yda{bottom:94.436533pt;}
.y47{bottom:94.510800pt;}
.yad{bottom:94.768667pt;}
.y175{bottom:95.092933pt;}
.y26a{bottom:95.865041pt;}
.y146{bottom:98.163467pt;}
.y269{bottom:98.374496pt;}
.y1b9{bottom:98.644933pt;}
.y1d5{bottom:98.812400pt;}
.y13d{bottom:99.521733pt;}
.y309{bottom:99.817733pt;}
.y268{bottom:100.883951pt;}
.y10f{bottom:102.424400pt;}
.y267{bottom:103.393407pt;}
.y315{bottom:103.597333pt;}
.y1d{bottom:104.126000pt;}
.y2fa{bottom:105.073467pt;}
.y266{bottom:105.902862pt;}
.y71{bottom:106.204000pt;}
.y174{bottom:107.892933pt;}
.y265{bottom:108.412317pt;}
.y264{bottom:110.921773pt;}
.yd9{bottom:113.308400pt;}
.y1ab{bottom:113.419733pt;}
.y263{bottom:113.431228pt;}
.yac{bottom:113.806533pt;}
.y262{bottom:115.940683pt;}
.y308{bottom:116.397333pt;}
.y190{bottom:116.496667pt;}
.y165{bottom:116.866000pt;}
.y46{bottom:117.199200pt;}
.y1d4{bottom:117.982400pt;}
.y13c{bottom:118.212000pt;}
.y261{bottom:118.450139pt;}
.y145{bottom:118.898667pt;}
.y314{bottom:120.176800pt;}
.y1c{bottom:120.478000pt;}
.y272{bottom:120.779867pt;}
.y260{bottom:120.959594pt;}
.y10e{bottom:123.011067pt;}
.y25f{bottom:123.469049pt;}
.y2f9{bottom:123.740133pt;}
.y25e{bottom:125.978505pt;}
.y25d{bottom:128.487960pt;}
.y307{bottom:129.197333pt;}
.y1b8{bottom:130.921200pt;}
.y25c{bottom:130.997415pt;}
.yd8{bottom:132.180267pt;}
.y1aa{bottom:132.328667pt;}
.yab{bottom:132.844400pt;}
.y313{bottom:132.976800pt;}
.y25b{bottom:133.506871pt;}
.y18f{bottom:135.171333pt;}
.y164{bottom:135.930533pt;}
.y25a{bottom:136.016326pt;}
.y45{bottom:136.108133pt;}
.y13b{bottom:136.902133pt;}
.y1d3{bottom:137.152400pt;}
.y259{bottom:138.525781pt;}
.y70{bottom:138.716133pt;}
.y144{bottom:139.633867pt;}
.y258{bottom:141.035237pt;}
.y1b{bottom:141.064533pt;}
.y10d{bottom:141.704667pt;}
.y2f8{bottom:142.406800pt;}
.y257{bottom:143.544692pt;}
.y306{bottom:145.776800pt;}
.y256{bottom:146.054147pt;}
.y255{bottom:148.563603pt;}
.y312{bottom:149.556400pt;}
.y1b7{bottom:149.587867pt;}
.yd7{bottom:151.052133pt;}
.y254{bottom:151.073058pt;}
.y1a9{bottom:151.237600pt;}
.yaa{bottom:151.882267pt;}
.y253{bottom:153.582513pt;}
.y18e{bottom:153.846133pt;}
.y163{bottom:154.995067pt;}
.y44{bottom:155.017067pt;}
.y13a{bottom:155.592400pt;}
.y252{bottom:156.091969pt;}
.y1d2{bottom:156.322267pt;}
.y6f{bottom:157.382800pt;}
.y305{bottom:158.576800pt;}
.y251{bottom:158.601424pt;}
.y1a{bottom:159.731200pt;}
.y143{bottom:160.369067pt;}
.y10c{bottom:160.398400pt;}
.y2f7{bottom:161.073467pt;}
.y250{bottom:161.110879pt;}
.y311{bottom:162.356400pt;}
.y24f{bottom:163.620335pt;}
.y24e{bottom:166.129790pt;}
.y1b6{bottom:168.254533pt;}
.y24d{bottom:168.639245pt;}
.yd6{bottom:169.923867pt;}
.y1a8{bottom:170.146533pt;}
.ya9{bottom:170.920133pt;}
.y26e{bottom:171.127419pt;}
.y24c{bottom:171.148701pt;}
.y18d{bottom:172.520800pt;}
.y26d{bottom:173.636874pt;}
.y24b{bottom:173.658156pt;}
.y43{bottom:173.926000pt;}
.y162{bottom:174.059600pt;}
.y139{bottom:174.282533pt;}
.y304{bottom:175.156267pt;}
.y1d1{bottom:175.492267pt;}
.y26c{bottom:176.146330pt;}
.y24a{bottom:176.167611pt;}
.y19{bottom:178.397867pt;}
.y26b{bottom:178.655785pt;}
.y249{bottom:178.677067pt;}
.y10b{bottom:179.092000pt;}
.y2f6{bottom:179.740133pt;}
.y6e{bottom:179.828933pt;}
.y142{bottom:181.104400pt;}
.y1b5{bottom:186.921200pt;}
.y303{bottom:187.956400pt;}
.yd5{bottom:188.795733pt;}
.y1a7{bottom:189.055333pt;}
.ya8{bottom:189.958000pt;}
.y18c{bottom:191.195600pt;}
.y310{bottom:191.735867pt;}
.y42{bottom:192.834933pt;}
.y138{bottom:192.972800pt;}
.y161{bottom:193.124133pt;}
.y1d0{bottom:194.662267pt;}
.y18{bottom:197.064533pt;}
.y10a{bottom:197.785733pt;}
.y2f5{bottom:198.406800pt;}
.y6d{bottom:198.495600pt;}
.y141{bottom:201.839600pt;}
.y302{bottom:204.535867pt;}
.y1b4{bottom:205.587867pt;}
.yd4{bottom:207.667600pt;}
.y1a6{bottom:207.964267pt;}
.y30f{bottom:208.315333pt;}
.ya7{bottom:208.995867pt;}
.y18b{bottom:209.870267pt;}
.y137{bottom:211.663067pt;}
.y41{bottom:211.743867pt;}
.y160{bottom:212.188667pt;}
.y1cf{bottom:213.832133pt;}
.y17{bottom:215.731200pt;}
.y109{bottom:216.479467pt;}
.y2f4{bottom:217.073467pt;}
.y6c{bottom:217.162267pt;}
.y301{bottom:217.335867pt;}
.y2cc{bottom:218.785204pt;}
.y247{bottom:218.795845pt;}
.y23f{bottom:218.801165pt;}
.y2d0{bottom:218.810400pt;}
.y30e{bottom:221.115333pt;}
.y2cb{bottom:221.294659pt;}
.y246{bottom:221.305300pt;}
.y23e{bottom:221.310620pt;}
.y140{bottom:222.574800pt;}
.y2cf{bottom:223.117783pt;}
.y2ca{bottom:223.804115pt;}
.y245{bottom:223.814755pt;}
.y23d{bottom:223.820076pt;}
.y1b3{bottom:224.254533pt;}
.y2ce{bottom:225.627238pt;}
.y2c9{bottom:226.313570pt;}
.y244{bottom:226.324211pt;}
.y23c{bottom:226.329531pt;}
.yd3{bottom:226.539333pt;}
.y1a5{bottom:226.873200pt;}
.ya6{bottom:228.033733pt;}
.y2cd{bottom:228.136694pt;}
.y18a{bottom:228.545067pt;}
.y2c8{bottom:228.823025pt;}
.y243{bottom:228.833666pt;}
.y23b{bottom:228.838986pt;}
.y136{bottom:230.353200pt;}
.y40{bottom:230.652800pt;}
.y15f{bottom:231.253200pt;}
.y2c7{bottom:231.332481pt;}
.y242{bottom:231.343121pt;}
.y23a{bottom:231.348442pt;}
.y1ce{bottom:233.002133pt;}
.y2c6{bottom:233.841936pt;}
.y241{bottom:233.852577pt;}
.y239{bottom:233.857897pt;}
.y300{bottom:233.915467pt;}
.y16{bottom:234.397867pt;}
.y108{bottom:235.173067pt;}
.y2f3{bottom:235.740133pt;}
.y6b{bottom:235.828933pt;}
.y240{bottom:236.362032pt;}
.y238{bottom:236.367352pt;}
.yd2{bottom:245.411200pt;}
.y1a4{bottom:245.782133pt;}
.y1b2{bottom:246.700800pt;}
.y2ff{bottom:246.715467pt;}
.ya5{bottom:247.071467pt;}
.y3f{bottom:249.561733pt;}
.y15e{bottom:250.317733pt;}
.y189{bottom:250.999333pt;}
.y135{bottom:252.822933pt;}
.y15{bottom:253.064533pt;}
.y107{bottom:253.866800pt;}
.y2f2{bottom:254.406800pt;}
.y6a{bottom:254.495600pt;}
.y1cd{bottom:255.951600pt;}
.y2fe{bottom:259.515467pt;}
.y14a{bottom:260.744533pt;}
.y30d{bottom:263.294933pt;}
.yd1{bottom:264.283067pt;}
.y1a3{bottom:264.691067pt;}
.y1b1{bottom:265.367467pt;}
.ya4{bottom:266.109467pt;}
.y3e{bottom:268.470667pt;}
.y15d{bottom:269.382267pt;}
.y188{bottom:269.674000pt;}
.y121{bottom:269.888933pt;}
.y134{bottom:271.513200pt;}
.y14{bottom:271.731200pt;}
.y106{bottom:272.560400pt;}
.y2f1{bottom:273.073467pt;}
.y69{bottom:273.162267pt;}
.y149{bottom:273.544533pt;}
.y248{bottom:273.806400pt;}
.y1cc{bottom:275.121600pt;}
.y2fd{bottom:276.094933pt;}
.y194{bottom:277.795200pt;}
.yd0{bottom:283.154800pt;}
.y1a2{bottom:283.600000pt;}
.y1b0{bottom:284.034133pt;}
.ya3{bottom:285.147333pt;}
.y2a{bottom:285.436133pt;}
.y148{bottom:286.344533pt;}
.y3d{bottom:287.379467pt;}
.y187{bottom:288.348800pt;}
.y15c{bottom:288.446800pt;}
.y120{bottom:288.926800pt;}
.y13{bottom:290.397867pt;}
.y105{bottom:291.254133pt;}
.y133{bottom:291.316267pt;}
.y2f0{bottom:291.740133pt;}
.y68{bottom:291.828933pt;}
.y193{bottom:292.383600pt;}
.y237{bottom:292.548563pt;}
.y1cb{bottom:294.291600pt;}
.y236{bottom:294.429600pt;}
.y2fc{bottom:296.454000pt;}
.y2b5{bottom:296.571225pt;}
.y29{bottom:298.236267pt;}
.y2c3{bottom:299.071813pt;}
.y235{bottom:299.073587pt;}
.y2b4{bottom:299.080681pt;}
.y2c2{bottom:301.581269pt;}
.y234{bottom:301.583042pt;}
.y2b3{bottom:301.590136pt;}
.ycf{bottom:302.026667pt;}
.y1a1{bottom:302.508933pt;}
.y1af{bottom:302.700800pt;}
.y2c1{bottom:304.090724pt;}
.y233{bottom:304.092497pt;}
.y2b2{bottom:304.099591pt;}
.ya2{bottom:304.185200pt;}
.y3c{bottom:306.288400pt;}
.y2c0{bottom:306.600179pt;}
.y232{bottom:306.601953pt;}
.y227{bottom:306.609047pt;}
.y186{bottom:307.023467pt;}
.y15b{bottom:307.511333pt;}
.y11f{bottom:307.964667pt;}
.y12{bottom:309.064533pt;}
.y2bf{bottom:309.109635pt;}
.y231{bottom:309.111408pt;}
.y226{bottom:309.118502pt;}
.y104{bottom:309.947733pt;}
.y2ef{bottom:310.406800pt;}
.y67{bottom:310.495600pt;}
.y28{bottom:311.036267pt;}
.y2be{bottom:311.619090pt;}
.y230{bottom:311.620863pt;}
.y225{bottom:311.627957pt;}
.y1ca{bottom:313.461600pt;}
.y132{bottom:313.786000pt;}
.y2bd{bottom:314.128545pt;}
.y22f{bottom:314.130319pt;}
.y224{bottom:314.137413pt;}
.y2bc{bottom:316.638001pt;}
.y22e{bottom:316.639774pt;}
.y223{bottom:316.646868pt;}
.y2bb{bottom:319.147456pt;}
.y22d{bottom:319.149229pt;}
.y222{bottom:319.156323pt;}
.yce{bottom:320.898533pt;}
.y1a0{bottom:321.417867pt;}
.y2ba{bottom:321.656911pt;}
.y22c{bottom:321.658685pt;}
.y221{bottom:321.665779pt;}
.y1bb{bottom:321.909333pt;}
.ya1{bottom:323.223067pt;}
.y27{bottom:323.836267pt;}
.y2b9{bottom:324.166367pt;}
.y22b{bottom:324.168140pt;}
.y220{bottom:324.175234pt;}
.y3b{bottom:325.197333pt;}
.y185{bottom:325.698267pt;}
.y15a{bottom:326.575867pt;}
.y2b8{bottom:326.675822pt;}
.y22a{bottom:326.677595pt;}
.y21f{bottom:326.684689pt;}
.y11e{bottom:327.002533pt;}
.y11{bottom:327.731200pt;}
.y103{bottom:328.641467pt;}
.y2ee{bottom:329.073467pt;}
.y66{bottom:329.162267pt;}
.y2c5{bottom:329.176410pt;}
.y2b7{bottom:329.185277pt;}
.y229{bottom:329.187051pt;}
.y21e{bottom:329.194145pt;}
.y31b{bottom:330.123200pt;}
.y2c4{bottom:331.685865pt;}
.y2b6{bottom:331.694733pt;}
.y228{bottom:331.696506pt;}
.y21d{bottom:331.703600pt;}
.y131{bottom:332.476267pt;}
.y1c9{bottom:332.631600pt;}
.y1ba{bottom:336.497733pt;}
.y26{bottom:336.636267pt;}
.y2e3{bottom:339.064933pt;}
.ycd{bottom:339.770400pt;}
.y83{bottom:340.157467pt;}
.y56{bottom:340.295867pt;}
.y19f{bottom:340.326800pt;}
.ya0{bottom:342.260933pt;}
.y31a{bottom:342.923200pt;}
.y3a{bottom:344.106267pt;}
.y184{bottom:344.372933pt;}
.y159{bottom:345.640400pt;}
.y11d{bottom:346.040400pt;}
.y1ad{bottom:346.318800pt;}
.y102{bottom:347.335067pt;}
.y2ed{bottom:347.740133pt;}
.y65{bottom:347.828933pt;}
.y25{bottom:349.436133pt;}
.y130{bottom:351.166400pt;}
.y1c8{bottom:351.801467pt;}
.y82{bottom:352.957467pt;}
.y2e2{bottom:353.653333pt;}
.y319{bottom:355.723200pt;}
.ycc{bottom:358.642133pt;}
.y19e{bottom:359.235733pt;}
.y22{bottom:360.325067pt;}
.y1ac{bottom:360.907200pt;}
.y9f{bottom:361.298800pt;}
.y24{bottom:362.236267pt;}
.y39{bottom:363.015200pt;}
.y183{bottom:363.047733pt;}
.y158{bottom:364.704933pt;}
.y11c{bottom:365.078267pt;}
.y101{bottom:366.028800pt;}
.y2ec{bottom:366.406800pt;}
.y64{bottom:366.495600pt;}
.y318{bottom:368.523200pt;}
.y10{bottom:368.832667pt;}
.y81{bottom:369.309467pt;}
.y12f{bottom:369.856667pt;}
.y1c7{bottom:370.971467pt;}
.y2b1{bottom:371.962630pt;}
.y2ad{bottom:371.964404pt;}
.y21b{bottom:371.967951pt;}
.y216{bottom:371.969724pt;}
.y2b0{bottom:374.472086pt;}
.y2ac{bottom:374.473859pt;}
.y21a{bottom:374.477406pt;}
.y215{bottom:374.479180pt;}
.y2af{bottom:376.981541pt;}
.y2ab{bottom:376.983315pt;}
.y219{bottom:376.986861pt;}
.y214{bottom:376.988635pt;}
.ycb{bottom:377.514000pt;}
.y2ae{bottom:379.490996pt;}
.y2aa{bottom:379.492770pt;}
.y218{bottom:379.496317pt;}
.y9e{bottom:380.336533pt;}
.y182{bottom:381.722400pt;}
.y38{bottom:381.924133pt;}
.y2a9{bottom:382.002225pt;}
.y217{bottom:382.005772pt;}
.y90{bottom:382.337067pt;}
.y157{bottom:383.769467pt;}
.y11b{bottom:384.116133pt;}
.y2a8{bottom:384.511681pt;}
.y100{bottom:384.722400pt;}
.y2eb{bottom:385.073467pt;}
.y63{bottom:385.162267pt;}
.yf{bottom:386.166000pt;}
.y2a7{bottom:387.021136pt;}
.y12e{bottom:388.546933pt;}
.y80{bottom:389.896133pt;}
.y1c6{bottom:390.141467pt;}
.y8f{bottom:395.137067pt;}
.yca{bottom:396.385867pt;}
.y9d{bottom:399.374533pt;}
.y37{bottom:400.833067pt;}
.y156{bottom:402.834000pt;}
.y11a{bottom:403.154000pt;}
.yff{bottom:403.416133pt;}
.ye{bottom:403.499333pt;}
.y2ea{bottom:403.740133pt;}
.y62{bottom:403.828933pt;}
.y181{bottom:404.176667pt;}
.y12d{bottom:407.237067pt;}
.y1c5{bottom:409.311467pt;}
.y7f{bottom:409.980400pt;}
.y173{bottom:410.719733pt;}
.y8e{bottom:411.489067pt;}
.yc9{bottom:415.257600pt;}
.y9c{bottom:418.412400pt;}
.y19d{bottom:419.742000pt;}
.yd{bottom:420.832667pt;}
.y155{bottom:421.898533pt;}
.yfe{bottom:422.109733pt;}
.y119{bottom:422.191867pt;}
.y2e9{bottom:422.406800pt;}
.y61{bottom:422.495600pt;}
.y180{bottom:422.851467pt;}
.y36{bottom:423.521467pt;}
.y12c{bottom:425.927333pt;}
.y21c{bottom:426.985467pt;}
.y1c4{bottom:428.481467pt;}
.y172{bottom:429.119733pt;}
.y7e{bottom:430.064667pt;}
.y8d{bottom:432.075600pt;}
.yc8{bottom:434.129467pt;}
.y9b{bottom:437.450133pt;}
.yc{bottom:438.166000pt;}
.y19c{bottom:438.650933pt;}
.yfd{bottom:440.803467pt;}
.y154{bottom:440.963067pt;}
.y2e8{bottom:441.073467pt;}
.y60{bottom:441.162267pt;}
.y118{bottom:441.229733pt;}
.y17f{bottom:441.526133pt;}
.y35{bottom:442.430400pt;}
.y12b{bottom:444.617467pt;}
.y53{bottom:444.941733pt;}
.y2a4{bottom:447.232103pt;}
.y171{bottom:447.519733pt;}
.y1c3{bottom:447.651333pt;}
.y2a3{bottom:449.741558pt;}
.y7d{bottom:450.149067pt;}
.y8c{bottom:451.958800pt;}
.y2a2{bottom:452.251013pt;}
.y294{bottom:452.259881pt;}
.yc7{bottom:453.001333pt;}
.y2a1{bottom:454.760469pt;}
.y293{bottom:454.769336pt;}
.yb{bottom:455.499333pt;}
.y9a{bottom:456.488133pt;}
.ye4{bottom:456.586933pt;}
.y2a0{bottom:457.269924pt;}
.y206{bottom:457.278791pt;}
.y19b{bottom:457.559867pt;}
.yfc{bottom:459.497200pt;}
.y29f{bottom:459.779379pt;}
.y205{bottom:459.788247pt;}
.y5f{bottom:459.828933pt;}
.y153{bottom:460.027600pt;}
.y17e{bottom:460.200933pt;}
.y117{bottom:460.267600pt;}
.y34{bottom:461.339333pt;}
.y29e{bottom:462.288835pt;}
.y204{bottom:462.297702pt;}
.y12a{bottom:463.307733pt;}
.y2e7{bottom:463.519733pt;}
.y52{bottom:463.608400pt;}
.y29d{bottom:464.798290pt;}
.y203{bottom:464.807157pt;}
.y170{bottom:465.919733pt;}
.y1c2{bottom:466.821333pt;}
.y29c{bottom:467.307745pt;}
.y20e{bottom:467.309519pt;}
.y202{bottom:467.316613pt;}
.ybc{bottom:468.119733pt;}
.y29b{bottom:469.817201pt;}
.y20d{bottom:469.818974pt;}
.y201{bottom:469.826068pt;}
.y7c{bottom:470.233333pt;}
.y4{bottom:471.353067pt;}
.y8b{bottom:471.842133pt;}
.y29a{bottom:472.326656pt;}
.y20c{bottom:472.328429pt;}
.y200{bottom:472.335523pt;}
.ya{bottom:472.832667pt;}
.ye3{bottom:472.939067pt;}
.y299{bottom:474.836111pt;}
.y20b{bottom:474.837885pt;}
.y1ff{bottom:474.844979pt;}
.y99{bottom:475.526000pt;}
.yc6{bottom:475.652667pt;}
.y19a{bottom:476.468800pt;}
.y298{bottom:477.345567pt;}
.y20a{bottom:477.347340pt;}
.y1fe{bottom:477.354434pt;}
.yfb{bottom:478.190800pt;}
.yf3{bottom:478.406800pt;}
.y5e{bottom:478.495600pt;}
.y17d{bottom:478.875600pt;}
.y152{bottom:479.092133pt;}
.y116{bottom:479.305467pt;}
.y211{bottom:479.851475pt;}
.y297{bottom:479.855022pt;}
.y209{bottom:479.856795pt;}
.y1fd{bottom:479.863889pt;}
.y33{bottom:480.248267pt;}
.ybb{bottom:480.919733pt;}
.y129{bottom:481.998000pt;}
.y2e6{bottom:482.186400pt;}
.y51{bottom:482.275067pt;}
.y2a6{bottom:482.355610pt;}
.y213{bottom:482.359157pt;}
.y210{bottom:482.360930pt;}
.y296{bottom:482.364477pt;}
.y208{bottom:482.366251pt;}
.y1fa{bottom:482.373211pt;}
.y1fc{bottom:482.373345pt;}
.y16f{bottom:484.319733pt;}
.y2a5{bottom:484.865065pt;}
.y212{bottom:484.868612pt;}
.y20f{bottom:484.870386pt;}
.y295{bottom:484.873933pt;}
.y207{bottom:484.875706pt;}
.y1f9{bottom:484.882667pt;}
.y1fb{bottom:484.882800pt;}
.y1c1{bottom:485.991333pt;}
.ye2{bottom:489.518533pt;}
.y9{bottom:490.166000pt;}
.y7b{bottom:490.317733pt;}
.y8a{bottom:491.725333pt;}
.y3{bottom:492.466000pt;}
.yba{bottom:493.719733pt;}
.y98{bottom:494.563867pt;}
.y199{bottom:495.377600pt;}
.yfa{bottom:496.884400pt;}
.yf2{bottom:497.073467pt;}
.y5d{bottom:497.162267pt;}
.y17c{bottom:497.550400pt;}
.y151{bottom:498.156667pt;}
.y115{bottom:498.343333pt;}
.y32{bottom:499.157200pt;}
.y128{bottom:500.688133pt;}
.yeb{bottom:500.852933pt;}
.y2e5{bottom:500.853067pt;}
.y50{bottom:500.941733pt;}
.y16e{bottom:502.719733pt;}
.yb9{bottom:506.519733pt;}
.y8{bottom:507.499333pt;}
.y1c0{bottom:508.940800pt;}
.ye1{bottom:510.105200pt;}
.y7a{bottom:510.402133pt;}
.y89{bottom:511.608667pt;}
.y97{bottom:513.601733pt;}
.y198{bottom:514.286533pt;}
.yf1{bottom:515.740133pt;}
.y5c{bottom:515.828933pt;}
.y17b{bottom:516.225067pt;}
.y150{bottom:517.221200pt;}
.y114{bottom:517.381200pt;}
.y31{bottom:518.066133pt;}
.yc5{bottom:518.288667pt;}
.yb8{bottom:519.319733pt;}
.yf9{bottom:519.357600pt;}
.y127{bottom:519.378400pt;}
.yea{bottom:519.519600pt;}
.y2e4{bottom:519.519733pt;}
.y4f{bottom:519.608400pt;}
.y16d{bottom:521.119733pt;}
.y292{bottom:523.081604pt;}
.y28b{bottom:523.085151pt;}
.y1f7{bottom:523.086924pt;}
.y1f2{bottom:523.088698pt;}
.y7{bottom:524.832667pt;}
.y291{bottom:525.591059pt;}
.y28a{bottom:525.594606pt;}
.y1f6{bottom:525.596380pt;}
.y1f1{bottom:525.598153pt;}
.y290{bottom:528.100515pt;}
.y289{bottom:528.104061pt;}
.y1f5{bottom:528.105835pt;}
.y1f0{bottom:528.107608pt;}
.ye0{bottom:530.340933pt;}
.y79{bottom:530.486400pt;}
.y28f{bottom:530.609970pt;}
.y288{bottom:530.613517pt;}
.y1f4{bottom:530.615290pt;}
.y1ef{bottom:530.617064pt;}
.y88{bottom:531.491867pt;}
.yb7{bottom:532.119733pt;}
.y96{bottom:532.639600pt;}
.y28e{bottom:533.119425pt;}
.y287{bottom:533.122972pt;}
.y1f3{bottom:533.124746pt;}
.y1ee{bottom:533.126519pt;}
.y197{bottom:533.195467pt;}
.y5b{bottom:534.495600pt;}
.y17a{bottom:534.899867pt;}
.y28d{bottom:535.628881pt;}
.y286{bottom:535.632427pt;}
.y1ed{bottom:535.635974pt;}
.y14f{bottom:536.285733pt;}
.y113{bottom:536.419067pt;}
.y30{bottom:536.975067pt;}
.yc4{bottom:537.160533pt;}
.yf8{bottom:538.051333pt;}
.y126{bottom:538.068667pt;}
.y28c{bottom:538.138336pt;}
.y285{bottom:538.141883pt;}
.y1ec{bottom:538.145430pt;}
.ye9{bottom:538.186267pt;}
.yf0{bottom:538.186400pt;}
.y4e{bottom:538.275067pt;}
.y16c{bottom:539.519733pt;}
.y1eb{bottom:540.654885pt;}
.yb6{bottom:544.919733pt;}
.y78{bottom:550.570800pt;}
.ydf{bottom:550.576667pt;}
.y87{bottom:551.375067pt;}
.y95{bottom:551.677467pt;}
.y5a{bottom:553.162267pt;}
.y179{bottom:553.574533pt;}
.y1bf{bottom:554.839867pt;}
.y14e{bottom:555.350267pt;}
.y112{bottom:555.456933pt;}
.y2f{bottom:555.884000pt;}
.yc3{bottom:556.032400pt;}
.yf7{bottom:556.744933pt;}
.y125{bottom:556.758800pt;}
.ye8{bottom:556.852933pt;}
.yef{bottom:556.853067pt;}
.y4d{bottom:556.941733pt;}
.yb5{bottom:557.719733pt;}
.y16b{bottom:557.919733pt;}
.yb4{bottom:570.519733pt;}
.y77{bottom:570.655067pt;}
.yde{bottom:570.812400pt;}
.y86{bottom:571.258400pt;}
.y59{bottom:571.828933pt;}
.y178{bottom:572.249333pt;}
.y1be{bottom:574.009733pt;}
.y14d{bottom:574.414800pt;}
.y94{bottom:574.494800pt;}
.y2e{bottom:574.792933pt;}
.yc2{bottom:574.904133pt;}
.yf6{bottom:575.438667pt;}
.y124{bottom:575.449067pt;}
.ye7{bottom:575.519600pt;}
.yee{bottom:575.519733pt;}
.y4c{bottom:575.608400pt;}
.y16a{bottom:576.319733pt;}
.y6{bottom:577.440933pt;}
.y1f8{bottom:578.102667pt;}
.yb3{bottom:583.319733pt;}
.y58{bottom:590.495600pt;}
.y76{bottom:590.739467pt;}
.ydd{bottom:591.048133pt;}
.y85{bottom:591.141600pt;}
.y1bd{bottom:593.179733pt;}
.y14c{bottom:593.479333pt;}
.y93{bottom:593.532667pt;}
.y2d{bottom:593.701867pt;}
.yc1{bottom:593.776000pt;}
.yf5{bottom:594.132400pt;}
.y123{bottom:594.139200pt;}
.ye6{bottom:594.186267pt;}
.yed{bottom:594.186400pt;}
.y4b{bottom:594.275067pt;}
.y177{bottom:594.703467pt;}
.y169{bottom:594.719733pt;}
.yb2{bottom:596.119733pt;}
.y20{bottom:604.094533pt;}
.y5{bottom:606.774267pt;}
.y277{bottom:608.395991pt;}
.yb1{bottom:608.919733pt;}
.y57{bottom:609.162267pt;}
.y21{bottom:610.078800pt;}
.y75{bottom:610.823733pt;}
.y282{bottom:610.898353pt;}
.y276{bottom:610.905447pt;}
.y84{bottom:611.024800pt;}
.ydc{bottom:611.283867pt;}
.y1bc{bottom:612.349733pt;}
.y14b{bottom:612.543867pt;}
.y92{bottom:612.570533pt;}
.y196{bottom:612.610667pt;}
.y2c{bottom:612.610800pt;}
.yc0{bottom:612.647867pt;}
.yf4{bottom:612.826000pt;}
.y122{bottom:612.829467pt;}
.ye5{bottom:612.852933pt;}
.yec{bottom:612.853067pt;}
.y4a{bottom:612.941733pt;}
.y176{bottom:613.111600pt;}
.y168{bottom:613.119733pt;}
.y281{bottom:613.407808pt;}
.y275{bottom:613.414902pt;}
.y280{bottom:615.917263pt;}
.y1e8{bottom:615.920810pt;}
.y274{bottom:615.924357pt;}
.y27f{bottom:618.426719pt;}
.y1e7{bottom:618.430266pt;}
.y273{bottom:618.433813pt;}
.y27e{bottom:620.936174pt;}
.y1e6{bottom:620.939721pt;}
.y1df{bottom:620.943268pt;}
.yb0{bottom:621.719733pt;}
.y27d{bottom:623.445629pt;}
.y1e5{bottom:623.449176pt;}
.y1de{bottom:623.452723pt;}
.y27c{bottom:625.955085pt;}
.y1e4{bottom:625.958632pt;}
.y1dd{bottom:625.962179pt;}
.y27b{bottom:628.464540pt;}
.y1e3{bottom:628.468087pt;}
.y1dc{bottom:628.471634pt;}
.y74{bottom:630.908133pt;}
.y27a{bottom:630.973995pt;}
.y1e2{bottom:630.977542pt;}
.y1db{bottom:630.981089pt;}
.ybf{bottom:631.519600pt;}
.y2b{bottom:631.519733pt;}
.y49{bottom:631.608400pt;}
.y284{bottom:633.476357pt;}
.y1ea{bottom:633.481677pt;}
.y279{bottom:633.483451pt;}
.y1e1{bottom:633.486998pt;}
.y1d8{bottom:633.490411pt;}
.y1da{bottom:633.490545pt;}
.yaf{bottom:634.519733pt;}
.y283{bottom:635.985812pt;}
.y1e9{bottom:635.991133pt;}
.y278{bottom:635.992906pt;}
.y1e0{bottom:635.996453pt;}
.y1d7{bottom:635.999867pt;}
.y1d9{bottom:636.000000pt;}
.y2{bottom:644.843600pt;}
.h11{height:4.109146pt;}
.he{height:4.965707pt;}
.h10{height:5.079209pt;}
.hf{height:5.930473pt;}
.h8{height:24.833667pt;}
.ha{height:27.179688pt;}
.hd{height:33.875000pt;}
.h2{height:34.161458pt;}
.h9{height:39.041667pt;}
.hc{height:39.212867pt;}
.h4{height:53.269333pt;}
.h7{height:53.682292pt;}
.hb{height:54.169271pt;}
.h6{height:58.112000pt;}
.h5{height:87.168000pt;}
.h3{height:150.122667pt;}
.h0{height:699.212000pt;}
.h1{height:699.333333pt;}
.w1{width:1058.000000pt;}
.w0{width:1058.268000pt;}
.x2{left:-483.779467pt;}
.x0{left:0.000000pt;}
.x1{left:45.354267pt;}
.xb{left:48.655200pt;}
.xc{left:64.529200pt;}
.x9{left:132.283467pt;}
.x14{left:136.001467pt;}
.x1a{left:142.087853pt;}
.x1e{left:147.548400pt;}
.x17{left:158.456950pt;}
.x1c{left:174.826047pt;}
.x1d{left:177.771734pt;}
.x16{left:185.738188pt;}
.x3{left:192.718533pt;}
.x4{left:207.585067pt;}
.x19{left:242.630998pt;}
.x18{left:259.000096pt;}
.x1f{left:269.915382pt;}
.x15{left:286.281333pt;}
.x1b{left:324.474267pt;}
.xd{left:345.196800pt;}
.x20{left:360.966667pt;}
.x26{left:366.969719pt;}
.x23{left:383.338817pt;}
.x22{left:410.620054pt;}
.x2a{left:413.565867pt;}
.x10{left:432.126000pt;}
.x25{left:467.512865pt;}
.x29{left:472.969696pt;}
.x24{left:483.881962pt;}
.x13{left:495.118133pt;}
.x28{left:500.250933pt;}
.x21{left:511.163200pt;}
.x27{left:549.356267pt;}
.xa{left:582.047200pt;}
.xe{left:645.039333pt;}
.x11{left:731.968533pt;}
.x12{left:750.866133pt;}
.x8{left:859.573733pt;}
.xf{left:867.401467pt;}
.x2b{left:881.889867pt;}
.x6{left:993.738533pt;}
.x7{left:1002.531867pt;}
.x5{left:1009.612533pt;}
}




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