
    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_66df9ef737227cec5806cb67.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5d366273b3d48a41ca0eca78.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.126000;font-style:normal;font-weight: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_84b56bf1163763b114d2d22e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;font-style:normal;font-weight: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_be684004eb8b66c040ac9d31.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;font-style:normal;font-weight: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_708f09c3dd083534e7d678f8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;font-style:normal;font-weight: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_eb03a9830d984f24539355fe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239000;font-style:normal;font-weight: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_835934c8588bc4472b50f14f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.090000;font-style:normal;font-weight: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_6a80c9d718d33979002a034c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.328000;font-style:normal;font-weight: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_abc04409d245e69dab1f2e8a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;font-style:normal;font-weight: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_82e3e5bca9e1d853365a7cdc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.607000;font-style:normal;font-weight: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_0a1d4e65ddf1a6d5a2185a50.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.144000;font-style:normal;font-weight: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_237ade23031dca2e98d7976f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9b5c73e824b06016dd55809f.woff2')format("woff");}.fff{font-family:fff;line-height:0.911000;font-style:normal;font-weight: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_476b4b12c43e32c20c76e61c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.916000;font-style:normal;font-weight: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_d459b535350ab73acb94c7fa.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.715000;font-style:normal;font-weight: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_87ba71ec5fffed3fcb63fe5a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_37b6c0ce1226a14aba02b292.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.911000;font-style:normal;font-weight: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_fd1abf0c01a72fabfd0d8d66.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.911000;font-style:normal;font-weight: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_0541f1885ab8e6ea525e7ac9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_ece1b60a9e5adad6cc5fd11c.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.911000;font-style:normal;font-weight: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_df2815fb5527ea4da3d701ad.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_dd1ba3bd87fcc055fc66c104.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.911000;font-style:normal;font-weight: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_1ba3d924ffd6d3d59fa5e34b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.911000;font-style:normal;font-weight: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_f2ff285086b6e87aae6ea067.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_3dc5af6ec7be32b33cc04d65.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.916000;font-style:normal;font-weight: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_5e83a32066b8d64d7454ecac.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.911000;font-style:normal;font-weight: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_c652337867ca62b791d2237c.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_0f58a7088dd7183a2ff0921f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_568dc339362a753cd3a79514.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.916000;font-style:normal;font-weight: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_0651cef374df1b18b731ba5b.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.911000;font-style:normal;font-weight: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_d7fedf3949aca860186f5da5.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_5816a284945b77f42b505574.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_3ccdbe52f38988a1eb248e1c.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.911000;font-style:normal;font-weight: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_ece7b6ef62bc6e0cd05bbc5a.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.911000;font-style:normal;font-weight: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_68bb1d7093e47a18163206b1.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_3af1f6f1390e27f426714705.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_5857bcb2e38c2a8531d908ce.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.911000;font-style:normal;font-weight: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_9895ebeb511857be8a0cf605.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.911000;font-style:normal;font-weight: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_9ef912cf7633e3f14bad3397.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_f34c69f345cc5d9dc408f3d5.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{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);}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400011px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.328011px;}
.v1{vertical-align:24.000000px;}
.ls67{letter-spacing:-6.026880px;}
.ls5e{letter-spacing:-5.931626px;}
.ls58{letter-spacing:-5.446750px;}
.ls5b{letter-spacing:-5.149939px;}
.ls5a{letter-spacing:-4.184326px;}
.ls71{letter-spacing:-3.423168px;}
.ls89{letter-spacing:-3.423034px;}
.ls6a{letter-spacing:-3.268606px;}
.ls31{letter-spacing:-2.880000px;}
.ls9b{letter-spacing:-2.833272px;}
.ls72{letter-spacing:-2.781324px;}
.ls8a{letter-spacing:-2.781215px;}
.ls90{letter-spacing:-1.894894px;}
.ls97{letter-spacing:-1.650391px;}
.ls6f{letter-spacing:-1.508587px;}
.ls30{letter-spacing:-1.320000px;}
.ls96{letter-spacing:-1.260814px;}
.ls4a{letter-spacing:-1.155492px;}
.ls78{letter-spacing:-1.100304px;}
.ls92{letter-spacing:-1.100261px;}
.ls4e{letter-spacing:-0.840000px;}
.ls5d{letter-spacing:-0.827669px;}
.ls6e{letter-spacing:-0.796199px;}
.lsa2{letter-spacing:-0.612000px;}
.ls98{letter-spacing:-0.580693px;}
.ls76{letter-spacing:-0.560381px;}
.ls8c{letter-spacing:-0.560362px;}
.ls74{letter-spacing:-0.550152px;}
.ls8b{letter-spacing:-0.550130px;}
.lse6{letter-spacing:-0.510000px;}
.ls2e{letter-spacing:-0.480000px;}
.ls77{letter-spacing:-0.458460px;}
.ls8f{letter-spacing:-0.458442px;}
.ls2d{letter-spacing:-0.420000px;}
.ls2f{letter-spacing:-0.360000px;}
.lsc2{letter-spacing:-0.357000px;}
.ls48{letter-spacing:-0.352930px;}
.lsc1{letter-spacing:-0.306000px;}
.ls2a{letter-spacing:-0.300000px;}
.lsc4{letter-spacing:-0.255000px;}
.ls2c{letter-spacing:-0.240000px;}
.lsa1{letter-spacing:-0.204000px;}
.ls2b{letter-spacing:-0.180000px;}
.lsbf{letter-spacing:-0.153000px;}
.ls1e{letter-spacing:-0.120000px;}
.lsc3{letter-spacing:-0.102000px;}
.ls47{letter-spacing:-0.064194px;}
.ls93{letter-spacing:-0.061126px;}
.ls1d{letter-spacing:-0.060000px;}
.ls59{letter-spacing:-0.059204px;}
.lsbe{letter-spacing:-0.051000px;}
.ls49{letter-spacing:-0.050419px;}
.ls5c{letter-spacing:-0.045982px;}
.ls6c{letter-spacing:-0.041905px;}
.ls8e{letter-spacing:-0.035023px;}
.ls73{letter-spacing:-0.030564px;}
.ls88{letter-spacing:-0.030563px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.000037px;}
.ls6{letter-spacing:0.030000px;}
.ls84{letter-spacing:0.030563px;}
.ls65{letter-spacing:0.030564px;}
.ls87{letter-spacing:0.035023px;}
.ls64{letter-spacing:0.035024px;}
.ls63{letter-spacing:0.036569px;}
.ls62{letter-spacing:0.041905px;}
.ls56{letter-spacing:0.045982px;}
.ls3a{letter-spacing:0.049759px;}
.ls43{letter-spacing:0.050419px;}
.lsac{letter-spacing:0.051000px;}
.ls7{letter-spacing:0.060000px;}
.ls85{letter-spacing:0.061126px;}
.ls66{letter-spacing:0.061128px;}
.ls41{letter-spacing:0.064194px;}
.ls8d{letter-spacing:0.070045px;}
.ls70{letter-spacing:0.070048px;}
.lsc8{letter-spacing:0.076500px;}
.ls61{letter-spacing:0.083810px;}
.ls33{letter-spacing:0.090000px;}
.ls7d{letter-spacing:0.091692px;}
.ls44{letter-spacing:0.100837px;}
.lsad{letter-spacing:0.102000px;}
.ls8{letter-spacing:0.120000px;}
.ls42{letter-spacing:0.128388px;}
.ls4{letter-spacing:0.150000px;}
.ls46{letter-spacing:0.151256px;}
.lsb0{letter-spacing:0.153000px;}
.ls1a{letter-spacing:0.178791px;}
.ls5{letter-spacing:0.180000px;}
.ls86{letter-spacing:0.183377px;}
.ls7e{letter-spacing:0.183384px;}
.lsa3{letter-spacing:0.204000px;}
.lsa{letter-spacing:0.209930px;}
.ls9c{letter-spacing:0.210000px;}
.ls9a{letter-spacing:0.213940px;}
.ls2{letter-spacing:0.240000px;}
.ls1b{letter-spacing:0.255000px;}
.lsab{letter-spacing:0.264000px;}
.ls57{letter-spacing:0.275890px;}
.lsdb{letter-spacing:0.280500px;}
.lsaf{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.300000px;}
.lsd8{letter-spacing:0.300900px;}
.lsb6{letter-spacing:0.305993px;}
.lsd6{letter-spacing:0.305994px;}
.lsa8{letter-spacing:0.306000px;}
.lse0{letter-spacing:0.311082px;}
.ls37{letter-spacing:0.330000px;}
.lsdc{letter-spacing:0.331486px;}
.lsd5{letter-spacing:0.331500px;}
.lsd4{letter-spacing:0.336582px;}
.lsd2{letter-spacing:0.336588px;}
.lsb5{letter-spacing:0.336591px;}
.lsda{letter-spacing:0.336593px;}
.lsde{letter-spacing:0.341682px;}
.lsa9{letter-spacing:0.357000px;}
.ls26{letter-spacing:0.360000px;}
.ls3c{letter-spacing:0.370789px;}
.lscf{letter-spacing:0.382500px;}
.ls4d{letter-spacing:0.390000px;}
.lsa4{letter-spacing:0.408000px;}
.ls9{letter-spacing:0.420000px;}
.ls50{letter-spacing:0.450000px;}
.ls7f{letter-spacing:0.458460px;}
.lsae{letter-spacing:0.459000px;}
.ls19{letter-spacing:0.480000px;}
.lsc5{letter-spacing:0.484500px;}
.ls3b{letter-spacing:0.488983px;}
.ls99{letter-spacing:0.489005px;}
.lse{letter-spacing:0.510000px;}
.lsf{letter-spacing:0.540000px;}
.lscd{letter-spacing:0.561000px;}
.ls3e{letter-spacing:0.570000px;}
.ls28{letter-spacing:0.600000px;}
.lsa6{letter-spacing:0.612000px;}
.ls40{letter-spacing:0.630000px;}
.lsc9{letter-spacing:0.637500px;}
.lsb{letter-spacing:0.660000px;}
.lsa5{letter-spacing:0.663000px;}
.ls4c{letter-spacing:0.690000px;}
.lsbc{letter-spacing:0.714000px;}
.lsd{letter-spacing:0.720000px;}
.lse4{letter-spacing:0.739500px;}
.ls3d{letter-spacing:0.750000px;}
.lsb3{letter-spacing:0.765000px;}
.ls25{letter-spacing:0.780000px;}
.lsb1{letter-spacing:0.790500px;}
.ls34{letter-spacing:0.810000px;}
.lsa7{letter-spacing:0.816000px;}
.ls21{letter-spacing:0.840000px;}
.lsd9{letter-spacing:0.841500px;}
.lsbd{letter-spacing:0.867000px;}
.ls79{letter-spacing:0.870000px;}
.lsd0{letter-spacing:0.892500px;}
.ls27{letter-spacing:0.900000px;}
.lsb8{letter-spacing:0.918000px;}
.ls11{letter-spacing:0.930000px;}
.lsc{letter-spacing:0.960000px;}
.lsaa{letter-spacing:0.969000px;}
.ls95{letter-spacing:0.990000px;}
.ls12{letter-spacing:1.020000px;}
.ls23{letter-spacing:1.050000px;}
.lsca{letter-spacing:1.071000px;}
.ls32{letter-spacing:1.080000px;}
.ls94{letter-spacing:1.110000px;}
.lsc7{letter-spacing:1.122000px;}
.ls16{letter-spacing:1.140000px;}
.lsb7{letter-spacing:1.173000px;}
.ls17{letter-spacing:1.200000px;}
.lse2{letter-spacing:1.224000px;}
.ls7c{letter-spacing:1.230000px;}
.ls20{letter-spacing:1.260000px;}
.lsc0{letter-spacing:1.275000px;}
.ls24{letter-spacing:1.290000px;}
.ls10{letter-spacing:1.320000px;}
.lscc{letter-spacing:1.320900px;}
.lse1{letter-spacing:1.326000px;}
.ls36{letter-spacing:1.350000px;}
.lscb{letter-spacing:1.377000px;}
.ls38{letter-spacing:1.380000px;}
.lsb4{letter-spacing:1.402500px;}
.lsce{letter-spacing:1.428000px;}
.ls22{letter-spacing:1.440000px;}
.ls9d{letter-spacing:1.470000px;}
.lsd3{letter-spacing:1.479000px;}
.ls4b{letter-spacing:1.500000px;}
.ls4f{letter-spacing:1.530000px;}
.ls35{letter-spacing:1.560000px;}
.lsb9{letter-spacing:1.581000px;}
.ls83{letter-spacing:1.590000px;}
.ls18{letter-spacing:1.620000px;}
.lsc6{letter-spacing:1.632000px;}
.ls5f{letter-spacing:1.680000px;}
.lsd7{letter-spacing:1.683000px;}
.lsd1{letter-spacing:1.734000px;}
.ls14{letter-spacing:1.740000px;}
.lsb2{letter-spacing:1.769700px;}
.lsa0{letter-spacing:1.770000px;}
.lsba{letter-spacing:1.785000px;}
.ls29{letter-spacing:1.800000px;}
.lse3{letter-spacing:1.836000px;}
.ls15{letter-spacing:1.860000px;}
.ls9f{letter-spacing:1.920000px;}
.lsdd{letter-spacing:1.938000px;}
.lsdf{letter-spacing:1.978756px;}
.ls54{letter-spacing:1.980000px;}
.ls13{letter-spacing:2.040000px;}
.ls53{letter-spacing:2.070000px;}
.ls39{letter-spacing:2.100000px;}
.ls52{letter-spacing:2.160000px;}
.ls51{letter-spacing:2.220000px;}
.ls7a{letter-spacing:2.280000px;}
.ls3f{letter-spacing:2.340000px;}
.ls55{letter-spacing:2.400000px;}
.ls9e{letter-spacing:2.460000px;}
.ls1f{letter-spacing:2.580000px;}
.ls7b{letter-spacing:2.760000px;}
.ls60{letter-spacing:3.180000px;}
.ls1{letter-spacing:3.990000px;}
.lsbb{letter-spacing:5.727300px;}
.lse5{letter-spacing:6.502500px;}
.ls82{letter-spacing:7.274232px;}
.ls91{letter-spacing:7.549012px;}
.ls80{letter-spacing:7.579872px;}
.ls81{letter-spacing:7.671564px;}
.ls75{letter-spacing:9.071164px;}
.ls6b{letter-spacing:10.224869px;}
.ls69{letter-spacing:10.266774px;}
.ls68{letter-spacing:10.308679px;}
.ls6d{letter-spacing:10.685826px;}
.ls45{letter-spacing:11.949208px;}
.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;}
}
.wsef{word-spacing:-21.162126px;}
.wse9{word-spacing:-20.784979px;}
.wsea{word-spacing:-20.743074px;}
.wsec{word-spacing:-20.701169px;}
.wsfa{word-spacing:-17.827114px;}
.ws70{word-spacing:-17.100000px;}
.ws27{word-spacing:-16.860000px;}
.ws112{word-spacing:-16.590000px;}
.wse3{word-spacing:-16.500000px;}
.ws52{word-spacing:-16.380000px;}
.ws51{word-spacing:-16.350000px;}
.wsc5{word-spacing:-16.320000px;}
.ws53{word-spacing:-16.260000px;}
.wsa0{word-spacing:-16.176888px;}
.ws13a{word-spacing:-16.140000px;}
.ws13c{word-spacing:-16.020000px;}
.wsa5{word-spacing:-15.984306px;}
.ws8{word-spacing:-15.960000px;}
.ws13b{word-spacing:-15.900000px;}
.ws109{word-spacing:-15.870000px;}
.wsbf{word-spacing:-15.840000px;}
.ws29{word-spacing:-15.780000px;}
.wsd0{word-spacing:-15.720000px;}
.wsd3{word-spacing:-15.660000px;}
.ws50{word-spacing:-15.600000px;}
.ws72{word-spacing:-15.540000px;}
.wscd{word-spacing:-15.480000px;}
.ws4f{word-spacing:-15.360000px;}
.ws10e{word-spacing:-15.312564px;}
.ws9f{word-spacing:-15.300000px;}
.ws10d{word-spacing:-15.220872px;}
.ws11c{word-spacing:-15.189712px;}
.wse5{word-spacing:-15.120000px;}
.ws71{word-spacing:-15.060000px;}
.ws26{word-spacing:-15.000000px;}
.wsce{word-spacing:-14.940000px;}
.ws10f{word-spacing:-14.915232px;}
.wsa2{word-spacing:-14.893008px;}
.ws147{word-spacing:-14.832000px;}
.wscf{word-spacing:-14.820000px;}
.ws54{word-spacing:-14.760000px;}
.wsd7{word-spacing:-14.741746px;}
.ws28{word-spacing:-14.700000px;}
.wse4{word-spacing:-14.640000px;}
.ws7{word-spacing:-14.544000px;}
.wsc4{word-spacing:-14.160000px;}
.ws185{word-spacing:-13.923000px;}
.ws183{word-spacing:-13.719000px;}
.ws149{word-spacing:-13.515000px;}
.ws184{word-spacing:-13.209000px;}
.ws14a{word-spacing:-13.158000px;}
.ws148{word-spacing:-13.005000px;}
.ws14c{word-spacing:-12.954000px;}
.ws146{word-spacing:-12.852000px;}
.ws4b{word-spacing:-12.750000px;}
.wsa3{word-spacing:-12.655069px;}
.wsa6{word-spacing:-12.604650px;}
.ws141{word-spacing:-12.546000px;}
.ws14b{word-spacing:-12.495000px;}
.ws6f{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.360000px;}
.ws1a0{word-spacing:-12.240000px;}
.ws142{word-spacing:-12.138000px;}
.wse7{word-spacing:-11.771250px;}
.wsdd{word-spacing:-11.541382px;}
.ws6{word-spacing:-11.520000px;}
.wsda{word-spacing:-11.449418px;}
.ws145{word-spacing:-10.761000px;}
.wsdb{word-spacing:-10.667731px;}
.wsed{word-spacing:-10.560110px;}
.wsf0{word-spacing:-10.518205px;}
.wse8{word-spacing:-10.476300px;}
.wsee{word-spacing:-10.434395px;}
.ws144{word-spacing:-10.200000px;}
.ws2{word-spacing:-9.996000px;}
.ws131{word-spacing:-9.837750px;}
.ws1{word-spacing:-9.408000px;}
.wsd6{word-spacing:-9.354200px;}
.wsf4{word-spacing:-9.178919px;}
.wsf3{word-spacing:-9.142350px;}
.wsf2{word-spacing:-8.967713px;}
.ws4a{word-spacing:-8.925000px;}
.wsf5{word-spacing:-8.790974px;}
.ws118{word-spacing:-8.790673px;}
.wsf9{word-spacing:-8.755950px;}
.ws117{word-spacing:-8.755650px;}
.ws128{word-spacing:-8.720627px;}
.ws4{word-spacing:-8.694000px;}
.wsfb{word-spacing:-8.195569px;}
.ws119{word-spacing:-8.195288px;}
.ws12b{word-spacing:-8.129705px;}
.ws10c{word-spacing:-8.099460px;}
.wsfc{word-spacing:-7.702128px;}
.ws113{word-spacing:-7.701826px;}
.wsf8{word-spacing:-7.671564px;}
.ws114{word-spacing:-7.671263px;}
.wsfd{word-spacing:-7.641000px;}
.ws11e{word-spacing:-7.640700px;}
.wsfe{word-spacing:-7.610436px;}
.ws11f{word-spacing:-7.610137px;}
.ws127{word-spacing:-7.494836px;}
.wsd8{word-spacing:-7.311074px;}
.wseb{word-spacing:-7.207694px;}
.wsff{word-spacing:-7.182540px;}
.ws11a{word-spacing:-7.182258px;}
.ws120{word-spacing:-7.090570px;}
.ws12a{word-spacing:-7.060007px;}
.ws132{word-spacing:-7.004478px;}
.ws100{word-spacing:-6.540696px;}
.ws11d{word-spacing:-6.540439px;}
.wsd9{word-spacing:-6.345461px;}
.ws129{word-spacing:-5.990309px;}
.ws11b{word-spacing:-5.745806px;}
.wse6{word-spacing:-5.744370px;}
.wsdc{word-spacing:-5.563774px;}
.wsf7{word-spacing:-4.859676px;}
.ws116{word-spacing:-4.859485px;}
.wsf6{word-spacing:-4.217832px;}
.ws115{word-spacing:-4.217666px;}
.ws134{word-spacing:-2.808000px;}
.ws2a{word-spacing:-2.580000px;}
.ws140{word-spacing:-2.460000px;}
.ws158{word-spacing:-2.244000px;}
.wsde{word-spacing:-1.980000px;}
.wsc2{word-spacing:-1.914000px;}
.ws169{word-spacing:-1.785000px;}
.wsdf{word-spacing:-1.740000px;}
.ws157{word-spacing:-1.734000px;}
.ws13d{word-spacing:-1.680000px;}
.wse0{word-spacing:-1.620000px;}
.ws37{word-spacing:-1.560000px;}
.wsd{word-spacing:-1.500000px;}
.ws18d{word-spacing:-1.479000px;}
.ws56{word-spacing:-1.440000px;}
.ws194{word-spacing:-1.428000px;}
.ws69{word-spacing:-1.380000px;}
.ws1a1{word-spacing:-1.377000px;}
.ws16c{word-spacing:-1.326000px;}
.wsaa{word-spacing:-1.320000px;}
.ws14f{word-spacing:-1.275000px;}
.ws2c{word-spacing:-1.260000px;}
.ws16d{word-spacing:-1.224000px;}
.ws34{word-spacing:-1.200000px;}
.ws18c{word-spacing:-1.173000px;}
.ws20{word-spacing:-1.140000px;}
.wsc{word-spacing:-1.080000px;}
.ws15b{word-spacing:-1.071000px;}
.ws21{word-spacing:-1.020000px;}
.ws153{word-spacing:-0.969000px;}
.ws18{word-spacing:-0.960000px;}
.ws3f{word-spacing:-0.900000px;}
.ws174{word-spacing:-0.867000px;}
.ws1c{word-spacing:-0.840000px;}
.ws162{word-spacing:-0.816000px;}
.wsa4{word-spacing:-0.806698px;}
.ws5a{word-spacing:-0.780000px;}
.ws15c{word-spacing:-0.765000px;}
.wse{word-spacing:-0.720000px;}
.ws15d{word-spacing:-0.714000px;}
.ws164{word-spacing:-0.663000px;}
.wsb{word-spacing:-0.660000px;}
.ws25{word-spacing:-0.612000px;}
.ws38{word-spacing:-0.600000px;}
.wsa{word-spacing:-0.570000px;}
.ws17c{word-spacing:-0.561000px;}
.ws32{word-spacing:-0.540000px;}
.ws163{word-spacing:-0.510000px;}
.ws46{word-spacing:-0.480000px;}
.ws16a{word-spacing:-0.459000px;}
.ws19{word-spacing:-0.420000px;}
.ws138{word-spacing:-0.408000px;}
.ws5d{word-spacing:-0.360000px;}
.ws179{word-spacing:-0.357000px;}
.ws167{word-spacing:-0.306000px;}
.ws14{word-spacing:-0.300000px;}
.ws156{word-spacing:-0.264000px;}
.ws160{word-spacing:-0.255000px;}
.ws16{word-spacing:-0.240000px;}
.ws143{word-spacing:-0.204000px;}
.ws1b{word-spacing:-0.180000px;}
.ws188{word-spacing:-0.153000px;}
.ws10b{word-spacing:-0.152820px;}
.wsaf{word-spacing:-0.151256px;}
.ws12c{word-spacing:-0.122257px;}
.ws15{word-spacing:-0.120000px;}
.ws178{word-spacing:-0.102000px;}
.wsa7{word-spacing:-0.100837px;}
.ws10a{word-spacing:-0.091692px;}
.ws102{word-spacing:-0.083810px;}
.ws105{word-spacing:-0.070048px;}
.ws125{word-spacing:-0.070045px;}
.wsc0{word-spacing:-0.066000px;}
.wsb1{word-spacing:-0.064194px;}
.ws130{word-spacing:-0.061126px;}
.ws59{word-spacing:-0.060000px;}
.ws15f{word-spacing:-0.051000px;}
.wsa1{word-spacing:-0.050419px;}
.wse1{word-spacing:-0.045982px;}
.ws103{word-spacing:-0.041905px;}
.ws135{word-spacing:-0.035023px;}
.ws106{word-spacing:-0.030564px;}
.ws122{word-spacing:-0.030563px;}
.ws0{word-spacing:0.000000px;}
.ws121{word-spacing:0.030563px;}
.ws108{word-spacing:0.030564px;}
.wse2{word-spacing:0.045982px;}
.wsb0{word-spacing:0.050419px;}
.ws18e{word-spacing:0.051000px;}
.ws7c{word-spacing:0.060000px;}
.ws126{word-spacing:0.061126px;}
.wsad{word-spacing:0.064194px;}
.ws17a{word-spacing:0.102000px;}
.ws79{word-spacing:0.120000px;}
.ws19c{word-spacing:0.153000px;}
.ws64{word-spacing:0.180000px;}
.ws16f{word-spacing:0.204000px;}
.wsf1{word-spacing:0.209526px;}
.ws33{word-spacing:0.240000px;}
.ws14d{word-spacing:0.255000px;}
.ws30{word-spacing:0.300000px;}
.ws172{word-spacing:0.306000px;}
.wsae{word-spacing:0.352930px;}
.ws14e{word-spacing:0.357000px;}
.ws3d{word-spacing:0.360000px;}
.ws8f{word-spacing:0.408000px;}
.ws10{word-spacing:0.420000px;}
.ws159{word-spacing:0.459000px;}
.wsab{word-spacing:0.480000px;}
.ws195{word-spacing:0.510000px;}
.wsa9{word-spacing:0.540000px;}
.ws123{word-spacing:0.550130px;}
.ws107{word-spacing:0.550152px;}
.ws124{word-spacing:0.560362px;}
.ws9c{word-spacing:0.561000px;}
.ws45{word-spacing:0.600000px;}
.ws22{word-spacing:0.660000px;}
.ws18f{word-spacing:0.663000px;}
.ws17b{word-spacing:0.714000px;}
.ws3a{word-spacing:0.720000px;}
.ws152{word-spacing:0.765000px;}
.ws6d{word-spacing:0.780000px;}
.ws104{word-spacing:0.796199px;}
.ws80{word-spacing:0.816000px;}
.ws39{word-spacing:0.840000px;}
.ws15e{word-spacing:0.867000px;}
.wsd2{word-spacing:0.900000px;}
.ws165{word-spacing:0.918000px;}
.ws73{word-spacing:0.960000px;}
.ws177{word-spacing:0.969000px;}
.wsac{word-spacing:1.020000px;}
.ws181{word-spacing:1.071000px;}
.ws7d{word-spacing:1.080000px;}
.ws175{word-spacing:1.122000px;}
.ws13{word-spacing:1.140000px;}
.wsb2{word-spacing:1.155492px;}
.ws15a{word-spacing:1.173000px;}
.ws6c{word-spacing:1.200000px;}
.ws154{word-spacing:1.224000px;}
.ws3c{word-spacing:1.260000px;}
.ws150{word-spacing:1.275000px;}
.ws2d{word-spacing:1.320000px;}
.ws6e{word-spacing:1.377000px;}
.ws6a{word-spacing:1.380000px;}
.ws187{word-spacing:1.428000px;}
.ws5f{word-spacing:1.440000px;}
.ws151{word-spacing:1.479000px;}
.wsf{word-spacing:1.500000px;}
.ws11{word-spacing:1.560000px;}
.ws176{word-spacing:1.581000px;}
.ws57{word-spacing:1.620000px;}
.ws16b{word-spacing:1.632000px;}
.ws36{word-spacing:1.680000px;}
.ws197{word-spacing:1.683000px;}
.ws17f{word-spacing:1.734000px;}
.ws4c{word-spacing:1.740000px;}
.ws19b{word-spacing:1.785000px;}
.ws23{word-spacing:1.800000px;}
.ws193{word-spacing:1.836000px;}
.ws48{word-spacing:1.860000px;}
.ws86{word-spacing:1.887000px;}
.ws3b{word-spacing:1.920000px;}
.ws166{word-spacing:1.938000px;}
.ws75{word-spacing:1.980000px;}
.ws186{word-spacing:1.989000px;}
.ws8a{word-spacing:2.040000px;}
.ws16e{word-spacing:2.091000px;}
.ws61{word-spacing:2.100000px;}
.ws1e{word-spacing:2.160000px;}
.ws99{word-spacing:2.193000px;}
.ws77{word-spacing:2.220000px;}
.ws17d{word-spacing:2.244000px;}
.ws60{word-spacing:2.280000px;}
.ws199{word-spacing:2.295000px;}
.ws3e{word-spacing:2.340000px;}
.ws170{word-spacing:2.397000px;}
.ws12{word-spacing:2.400000px;}
.ws190{word-spacing:2.448000px;}
.wsa8{word-spacing:2.460000px;}
.ws95{word-spacing:2.499000px;}
.ws65{word-spacing:2.520000px;}
.ws18b{word-spacing:2.550000px;}
.ws76{word-spacing:2.580000px;}
.ws8d{word-spacing:2.601000px;}
.ws43{word-spacing:2.640000px;}
.ws18a{word-spacing:2.652000px;}
.ws7b{word-spacing:2.700000px;}
.ws171{word-spacing:2.703000px;}
.ws189{word-spacing:2.754000px;}
.ws5c{word-spacing:2.760000px;}
.ws198{word-spacing:2.805000px;}
.ws31{word-spacing:2.820000px;}
.ws92{word-spacing:2.856000px;}
.ws1a{word-spacing:2.880000px;}
.ws1f{word-spacing:2.940000px;}
.ws191{word-spacing:2.958000px;}
.ws2e{word-spacing:3.000000px;}
.ws4e{word-spacing:3.009000px;}
.ws78{word-spacing:3.060000px;}
.ws161{word-spacing:3.111000px;}
.wsc6{word-spacing:3.120000px;}
.ws87{word-spacing:3.162000px;}
.ws62{word-spacing:3.180000px;}
.ws12e{word-spacing:3.240000px;}
.ws84{word-spacing:3.264000px;}
.ws55{word-spacing:3.300000px;}
.ws182{word-spacing:3.315000px;}
.ws63{word-spacing:3.360000px;}
.ws44{word-spacing:3.420000px;}
.ws94{word-spacing:3.468000px;}
.ws68{word-spacing:3.480000px;}
.ws5b{word-spacing:3.540000px;}
.ws168{word-spacing:3.570000px;}
.ws6b{word-spacing:3.600000px;}
.wsb5{word-spacing:3.660000px;}
.wsd4{word-spacing:3.720000px;}
.ws8c{word-spacing:3.774000px;}
.ws42{word-spacing:3.780000px;}
.ws7f{word-spacing:3.825000px;}
.ws47{word-spacing:3.840000px;}
.ws19a{word-spacing:3.876000px;}
.ws1d{word-spacing:3.900000px;}
.ws58{word-spacing:3.960000px;}
.ws17e{word-spacing:3.978000px;}
.wsb3{word-spacing:4.020000px;}
.ws4d{word-spacing:4.029000px;}
.wsca{word-spacing:4.080000px;}
.ws196{word-spacing:4.131000px;}
.ws35{word-spacing:4.140000px;}
.ws192{word-spacing:4.182000px;}
.ws2f{word-spacing:4.200000px;}
.ws19d{word-spacing:4.233000px;}
.ws155{word-spacing:4.284000px;}
.wsc1{word-spacing:4.320000px;}
.wsc9{word-spacing:4.380000px;}
.ws17{word-spacing:4.440000px;}
.wsc3{word-spacing:4.500000px;}
.wsbe{word-spacing:4.539000px;}
.wsb8{word-spacing:4.560000px;}
.ws7e{word-spacing:4.590000px;}
.wsd5{word-spacing:4.620000px;}
.wsd1{word-spacing:4.680000px;}
.wsc8{word-spacing:4.740000px;}
.ws96{word-spacing:4.794000px;}
.wsb4{word-spacing:4.800000px;}
.ws82{word-spacing:4.845000px;}
.ws133{word-spacing:4.860000px;}
.ws180{word-spacing:4.896000px;}
.wscc{word-spacing:4.980000px;}
.ws1a2{word-spacing:4.998000px;}
.wsb7{word-spacing:5.040000px;}
.wsb9{word-spacing:5.100000px;}
.wsb6{word-spacing:5.160000px;}
.ws19f{word-spacing:5.202000px;}
.wscb{word-spacing:5.220000px;}
.ws93{word-spacing:5.253000px;}
.ws9a{word-spacing:5.355000px;}
.wsbb{word-spacing:5.400000px;}
.ws13f{word-spacing:5.460000px;}
.ws5e{word-spacing:5.640000px;}
.wsba{word-spacing:5.700000px;}
.wsc7{word-spacing:5.760000px;}
.ws12f{word-spacing:5.880000px;}
.ws13e{word-spacing:5.940000px;}
.ws83{word-spacing:6.018000px;}
.ws81{word-spacing:6.171000px;}
.ws91{word-spacing:6.273000px;}
.ws173{word-spacing:6.375000px;}
.ws2b{word-spacing:6.480000px;}
.ws49{word-spacing:6.900000px;}
.ws41{word-spacing:7.080000px;}
.ws98{word-spacing:7.140000px;}
.ws19e{word-spacing:7.191000px;}
.ws12d{word-spacing:7.200000px;}
.ws85{word-spacing:7.242000px;}
.ws8e{word-spacing:7.344000px;}
.ws88{word-spacing:7.650000px;}
.ws101{word-spacing:7.740000px;}
.ws9d{word-spacing:7.803000px;}
.ws89{word-spacing:8.313000px;}
.ws74{word-spacing:8.340000px;}
.ws9b{word-spacing:8.415000px;}
.ws110{word-spacing:9.180000px;}
.ws7a{word-spacing:9.360000px;}
.ws9e{word-spacing:9.384000px;}
.ws8b{word-spacing:9.537000px;}
.ws90{word-spacing:10.659000px;}
.wsbd{word-spacing:11.628000px;}
.ws111{word-spacing:11.700000px;}
.wsbc{word-spacing:11.985000px;}
.ws97{word-spacing:12.750000px;}
.ws1a3{word-spacing:13.515000px;}
.ws1a4{word-spacing:17.595000px;}
.ws40{word-spacing:32.280000px;}
.ws66{word-spacing:67.926893px;}
.ws67{word-spacing:67.931993px;}
.ws24{word-spacing:72.267000px;}
.ws139{word-spacing:95.523000px;}
.ws136{word-spacing:352.817986px;}
.ws137{word-spacing:437.886000px;}
.ws9{word-spacing:1241.313859px;}
._b{margin-left:-72.675000px;}
._e{margin-left:-24.984006px;}
._7{margin-left:-16.575000px;}
._10{margin-left:-14.637618px;}
._11{margin-left:-13.617009px;}
._12{margin-left:-11.985618px;}
._21{margin-left:-10.057248px;}
._20{margin-left:-8.940000px;}
._22{margin-left:-7.427070px;}
._3{margin-left:-6.420000px;}
._1{margin-left:-4.622700px;}
._2{margin-left:-2.908800px;}
._0{margin-left:-1.632000px;}
._5{width:1.578000px;}
._23{width:2.638800px;}
._6{width:3.642000px;}
._1e{width:4.946991px;}
._1d{width:6.012900px;}
._1c{width:8.159991px;}
._1f{width:10.789569px;}
._38{width:14.382000px;}
._f{width:15.602700px;}
._8{width:18.360000px;}
._4{width:39.179958px;}
._d{width:40.500000px;}
._1b{width:43.912800px;}
._15{width:50.644793px;}
._2d{width:51.972000px;}
._2c{width:53.450986px;}
._a{width:54.621000px;}
._2f{width:64.871986px;}
._9{width:72.267000px;}
._19{width:73.803600px;}
._28{width:95.472000px;}
._36{width:115.209000px;}
._33{width:148.971000px;}
._34{width:155.091000px;}
._31{width:166.820992px;}
._30{width:168.248986px;}
._1a{width:171.206993px;}
._2a{width:194.515800px;}
._35{width:201.653990px;}
._29{width:222.564000px;}
._17{width:227.975100px;}
._2e{width:374.238000px;}
._25{width:410.498986px;}
._26{width:416.006992px;}
._14{width:440.792976px;}
._24{width:458.133000px;}
._2b{width:464.916000px;}
._27{width:479.913000px;}
._16{width:484.857000px;}
._18{width:496.230000px;}
._37{width:514.133964px;}
._32{width:600.371980px;}
._13{width:629.442000px;}
._c{width:2369.408938px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(191,191,191);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:30.562800px;}
.fs13{font-size:30.563999px;}
.fs16{font-size:35.022600px;}
.fs12{font-size:35.023799px;}
.fs9{font-size:35.699999px;}
.fs11{font-size:36.569400px;}
.fs17{font-size:39.350999px;}
.fs14{font-size:39.352800px;}
.fs10{font-size:41.905200px;}
.fs4{font-size:42.000000px;}
.fse{font-size:45.981600px;}
.fsf{font-size:47.084999px;}
.fs5{font-size:48.000000px;}
.fsc{font-size:50.418600px;}
.fs6{font-size:51.000000px;}
.fs7{font-size:57.000000px;}
.fsd{font-size:59.203800px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:64.194000px;}
.fsa{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1f5{bottom:3.525925px;}
.y1fb{bottom:3.856384px;}
.y5{bottom:66.525004px;}
.y22{bottom:68.829002px;}
.y4{bottom:97.125005px;}
.y35c{bottom:112.872299px;}
.y3ea{bottom:112.919416px;}
.y30c{bottom:112.932152px;}
.y30d{bottom:112.932183px;}
.y317{bottom:112.932200px;}
.y321{bottom:112.932223px;}
.y32b{bottom:112.932247px;}
.y335{bottom:112.932270px;}
.y33b{bottom:112.932275px;}
.y33f{bottom:112.932290px;}
.y30b{bottom:112.932300px;}
.y3f6{bottom:112.932449px;}
.y55{bottom:112.950300px;}
.y8b{bottom:113.415344px;}
.y23b{bottom:113.559895px;}
.y297{bottom:113.683823px;}
.y18c{bottom:114.729342px;}
.y3e6{bottom:114.735260px;}
.y1e8{bottom:114.735294px;}
.yf2{bottom:114.735306px;}
.y12d{bottom:114.874786px;}
.y2c6{bottom:114.874809px;}
.y8f{bottom:114.874947px;}
.y259{bottom:115.314606px;}
.y4f6{bottom:116.614823px;}
.y4f5{bottom:116.997307px;}
.y538{bottom:117.010073px;}
.y3f5{bottom:121.933652px;}
.y340{bottom:121.933790px;}
.y3ec{bottom:121.933800px;}
.y3f7{bottom:121.933949px;}
.y54{bottom:127.944300px;}
.y432{bottom:131.154295px;}
.y4b3{bottom:131.608823px;}
.y35b{bottom:131.622299px;}
.y4f4{bottom:131.991307px;}
.y537{bottom:132.004073px;}
.y8a{bottom:132.165344px;}
.y296{bottom:132.433823px;}
.y18b{bottom:133.479342px;}
.y3e5{bottom:133.485260px;}
.y1e7{bottom:133.485294px;}
.yf1{bottom:133.485306px;}
.y12c{bottom:133.624786px;}
.y2c5{bottom:133.624809px;}
.y8e{bottom:133.624947px;}
.y258{bottom:134.064606px;}
.y21{bottom:139.264499px;}
.y4d{bottom:141.211349px;}
.y53{bottom:142.938300px;}
.y431{bottom:146.148295px;}
.y4b2{bottom:146.602823px;}
.y472{bottom:146.671045px;}
.y4f3{bottom:146.985307px;}
.y536{bottom:146.998073px;}
.y35a{bottom:150.372299px;}
.y89{bottom:150.915344px;}
.y295{bottom:151.183823px;}
.y18a{bottom:152.229342px;}
.y3e4{bottom:152.235260px;}
.y1e6{bottom:152.235294px;}
.yf0{bottom:152.235306px;}
.y12b{bottom:152.374786px;}
.y2c4{bottom:152.374809px;}
.y8d{bottom:152.374947px;}
.y257{bottom:152.814606px;}
.y4c{bottom:159.961349px;}
.y430{bottom:161.142295px;}
.y4b1{bottom:161.596823px;}
.y471{bottom:161.665045px;}
.y4f2{bottom:161.979307px;}
.y535{bottom:161.992073px;}
.y52{bottom:163.032303px;}
.y359{bottom:169.122299px;}
.y88{bottom:169.665344px;}
.y294{bottom:169.933823px;}
.y189{bottom:170.979342px;}
.y3e3{bottom:170.985260px;}
.yef{bottom:170.985306px;}
.y12a{bottom:171.124786px;}
.y2c3{bottom:171.124809px;}
.y256{bottom:171.564606px;}
.y42f{bottom:176.136295px;}
.y4b0{bottom:176.590823px;}
.y1af{bottom:176.596812px;}
.y470{bottom:176.659045px;}
.y237{bottom:176.667263px;}
.y4f1{bottom:176.973307px;}
.y534{bottom:176.986073px;}
.y4b{bottom:178.711349px;}
.y221{bottom:179.042404px;}
.y236{bottom:185.851745px;}
.y358{bottom:187.872299px;}
.y51{bottom:188.044059px;}
.y87{bottom:188.415344px;}
.y293{bottom:188.683823px;}
.y188{bottom:189.729342px;}
.y3e2{bottom:189.735260px;}
.y1e5{bottom:189.735294px;}
.yee{bottom:189.735306px;}
.y129{bottom:189.874786px;}
.y2c2{bottom:189.874809px;}
.y255{bottom:190.314606px;}
.y42e{bottom:191.130295px;}
.y4af{bottom:191.584823px;}
.y1ae{bottom:191.590812px;}
.y46f{bottom:191.653045px;}
.y4f0{bottom:191.967307px;}
.y533{bottom:191.980073px;}
.y235{bottom:195.036227px;}
.y18{bottom:196.933500px;}
.y4a{bottom:197.461349px;}
.y94{bottom:199.623897px;}
.y50{bottom:203.038059px;}
.y42d{bottom:206.124295px;}
.y4ae{bottom:206.578823px;}
.y1ad{bottom:206.584812px;}
.y357{bottom:206.622299px;}
.y46e{bottom:206.647045px;}
.y4ef{bottom:206.961307px;}
.y532{bottom:206.974073px;}
.y86{bottom:207.165344px;}
.y292{bottom:207.433823px;}
.y187{bottom:208.479342px;}
.y3e1{bottom:208.485260px;}
.yed{bottom:208.485306px;}
.y128{bottom:208.624786px;}
.y2c1{bottom:208.624809px;}
.y254{bottom:209.064606px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y234{bottom:213.397549px;}
.y49{bottom:216.211349px;}
.y93{bottom:219.717911px;}
.y42c{bottom:221.118295px;}
.y4ad{bottom:221.572823px;}
.y1ac{bottom:221.578812px;}
.y46d{bottom:221.641045px;}
.y4ee{bottom:221.955307px;}
.y531{bottom:221.968073px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y233{bottom:222.582031px;}
.y356{bottom:225.372299px;}
.y4f{bottom:225.580059px;}
.y85{bottom:225.915344px;}
.y291{bottom:226.183823px;}
.y186{bottom:227.229342px;}
.y1e4{bottom:227.235260px;}
.yec{bottom:227.235306px;}
.y127{bottom:227.374786px;}
.y2c0{bottom:227.374809px;}
.y253{bottom:227.814606px;}
.y232{bottom:231.766513px;}
.y92{bottom:233.875789px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y48{bottom:234.961349px;}
.y42b{bottom:236.112295px;}
.y4ac{bottom:236.566823px;}
.y1ab{bottom:236.572812px;}
.y46c{bottom:236.635045px;}
.y4ed{bottom:236.949307px;}
.y530{bottom:236.962073px;}
.y4e{bottom:240.574059px;}
.y231{bottom:240.950995px;}
.y355{bottom:244.122299px;}
.y84{bottom:244.665344px;}
.y290{bottom:244.933823px;}
.y185{bottom:245.979342px;}
.y1e3{bottom:245.985260px;}
.yeb{bottom:245.985306px;}
.y126{bottom:246.124786px;}
.y2bf{bottom:246.124809px;}
.y252{bottom:246.564606px;}
.y230{bottom:250.135476px;}
.y42a{bottom:251.106295px;}
.y4ab{bottom:251.560823px;}
.y1aa{bottom:251.566812px;}
.y46b{bottom:251.629045px;}
.y4ec{bottom:251.943307px;}
.y52f{bottom:251.956073px;}
.y47{bottom:253.711349px;}
.y91{bottom:253.969803px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y354{bottom:262.872299px;}
.y83{bottom:263.415344px;}
.y28f{bottom:263.683823px;}
.y184{bottom:264.729342px;}
.y1e2{bottom:264.735260px;}
.yea{bottom:264.735306px;}
.y125{bottom:264.874786px;}
.y2be{bottom:264.874809px;}
.y251{bottom:265.314606px;}
.y429{bottom:266.100295px;}
.y4aa{bottom:266.554823px;}
.y1a9{bottom:266.560812px;}
.y46a{bottom:266.623045px;}
.y4eb{bottom:266.937307px;}
.y52e{bottom:266.950073px;}
.y22f{bottom:268.496799px;}
.y46{bottom:272.461349px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yc0{bottom:276.501760px;}
.y341{bottom:277.330786px;}
.y22e{bottom:277.681281px;}
.y428{bottom:281.094295px;}
.y4a9{bottom:281.548823px;}
.y1a8{bottom:281.554812px;}
.y469{bottom:281.617045px;}
.y353{bottom:281.622299px;}
.y4ea{bottom:281.931307px;}
.y52d{bottom:281.944073px;}
.y82{bottom:282.165344px;}
.y28e{bottom:282.433823px;}
.y183{bottom:283.479342px;}
.y1e1{bottom:283.485260px;}
.ye9{bottom:283.485306px;}
.y124{bottom:283.624786px;}
.y2bd{bottom:283.624809px;}
.y250{bottom:284.064606px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y30e{bottom:286.332183px;}
.y318{bottom:286.332200px;}
.y322{bottom:286.332223px;}
.y32c{bottom:286.332247px;}
.y342{bottom:286.332286px;}
.y22d{bottom:286.865762px;}
.y44{bottom:291.211349px;}
.ybf{bottom:295.295260px;}
.y22c{bottom:296.050244px;}
.y427{bottom:296.088295px;}
.y4a8{bottom:296.542823px;}
.y1a7{bottom:296.548812px;}
.y468{bottom:296.611045px;}
.y4e9{bottom:296.925307px;}
.y52c{bottom:296.938073px;}
.y352{bottom:300.372299px;}
.y81{bottom:300.915344px;}
.y28d{bottom:301.183823px;}
.y182{bottom:302.229342px;}
.y1e0{bottom:302.235260px;}
.ye8{bottom:302.235306px;}
.y123{bottom:302.374786px;}
.y2bc{bottom:302.374809px;}
.y24f{bottom:302.814606px;}
.y22b{bottom:305.234726px;}
.y43{bottom:309.961349px;}
.y3ed{bottom:310.221748px;}
.y3f8{bottom:310.221909px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y4a7{bottom:311.536823px;}
.y1a6{bottom:311.542812px;}
.y467{bottom:311.605045px;}
.y4e8{bottom:311.919307px;}
.y52b{bottom:311.932073px;}
.ybe{bottom:314.018260px;}
.y22a{bottom:314.419208px;}
.y351{bottom:319.122299px;}
.y3ee{bottom:319.223248px;}
.y3f9{bottom:319.223409px;}
.y80{bottom:319.665344px;}
.y28c{bottom:319.933823px;}
.y219{bottom:320.103771px;}
.y181{bottom:320.979342px;}
.y1df{bottom:320.985260px;}
.ye7{bottom:320.985306px;}
.y122{bottom:321.124786px;}
.y2bb{bottom:321.124809px;}
.y24e{bottom:321.564606px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y4a6{bottom:326.530823px;}
.y1a5{bottom:326.536812px;}
.y466{bottom:326.599045px;}
.y4e7{bottom:326.913307px;}
.y52a{bottom:326.926073px;}
.y42{bottom:328.711349px;}
.ybd{bottom:328.985247px;}
.y426{bottom:329.838295px;}
.y218{bottom:330.593399px;}
.y229{bottom:332.780530px;}
.y350{bottom:337.872299px;}
.y7f{bottom:338.415344px;}
.y28b{bottom:338.683823px;}
.y180{bottom:339.729342px;}
.y1de{bottom:339.735260px;}
.ye6{bottom:339.735306px;}
.y121{bottom:339.874786px;}
.y2ba{bottom:339.874809px;}
.y24d{bottom:340.314606px;}
.y4a5{bottom:341.524823px;}
.y1a4{bottom:341.530812px;}
.y465{bottom:341.593045px;}
.y4e6{bottom:341.907307px;}
.y529{bottom:341.920073px;}
.y228{bottom:341.965012px;}
.y41{bottom:347.461349px;}
.ybc{bottom:347.702247px;}
.yf{bottom:348.133500px;}
.y227{bottom:351.149494px;}
.y4a4{bottom:356.518823px;}
.y1a3{bottom:356.524812px;}
.y464{bottom:356.587045px;}
.y34f{bottom:356.622299px;}
.y4e5{bottom:356.901307px;}
.y528{bottom:356.914073px;}
.y7e{bottom:357.165344px;}
.y28a{bottom:357.433823px;}
.y17f{bottom:358.479342px;}
.y1dd{bottom:358.485260px;}
.ye5{bottom:358.485306px;}
.y120{bottom:358.624786px;}
.y2d6{bottom:358.624809px;}
.y24c{bottom:359.064606px;}
.y226{bottom:360.333975px;}
.y40{bottom:366.211349px;}
.ybb{bottom:366.419247px;}
.y225{bottom:369.518457px;}
.y4a3{bottom:371.512823px;}
.y1a2{bottom:371.518812px;}
.y463{bottom:371.581045px;}
.y4e4{bottom:371.895307px;}
.y527{bottom:371.908073px;}
.y220{bottom:372.547508px;}
.y34e{bottom:375.372299px;}
.y7d{bottom:375.915344px;}
.y289{bottom:376.183823px;}
.y17e{bottom:377.229342px;}
.y1dc{bottom:377.235260px;}
.ye4{bottom:377.235306px;}
.y2e5{bottom:377.368786px;}
.y11f{bottom:377.374786px;}
.y2b9{bottom:377.374809px;}
.y24b{bottom:377.814606px;}
.y224{bottom:378.702939px;}
.y3f{bottom:384.961349px;}
.yba{bottom:385.136247px;}
.y4a2{bottom:386.506823px;}
.y1a1{bottom:386.512812px;}
.y462{bottom:386.575045px;}
.ye{bottom:386.785499px;}
.y4e3{bottom:386.889307px;}
.y526{bottom:386.902073px;}
.y223{bottom:387.887421px;}
.y34d{bottom:394.122299px;}
.y7c{bottom:394.665344px;}
.y288{bottom:394.933823px;}
.y17d{bottom:395.979342px;}
.y1db{bottom:395.985260px;}
.ye3{bottom:395.985306px;}
.y11e{bottom:396.124786px;}
.y2d5{bottom:396.124809px;}
.y24a{bottom:396.564606px;}
.y21b{bottom:396.608411px;}
.y4a1{bottom:401.500823px;}
.y1a0{bottom:401.506812px;}
.y461{bottom:401.569045px;}
.y4e2{bottom:401.883307px;}
.y525{bottom:401.896073px;}
.y3e{bottom:403.711349px;}
.yb9{bottom:403.853247px;}
.y425{bottom:404.919293px;}
.y21a{bottom:405.792892px;}
.y222{bottom:406.481415px;}
.yd{bottom:408.044999px;}
.y34c{bottom:412.872299px;}
.y7b{bottom:413.415344px;}
.y287{bottom:413.683823px;}
.y17c{bottom:414.729342px;}
.y1d9{bottom:414.735260px;}
.ye2{bottom:414.735306px;}
.y1cb{bottom:414.741306px;}
.y11d{bottom:414.874786px;}
.y2d4{bottom:414.874809px;}
.y249{bottom:415.314606px;}
.y4a0{bottom:416.494823px;}
.y19f{bottom:416.500812px;}
.y460{bottom:416.563045px;}
.y4e1{bottom:416.877307px;}
.y524{bottom:416.890073px;}
.y424{bottom:419.913293px;}
.y3d{bottom:422.461349px;}
.yb8{bottom:422.570247px;}
.y21d{bottom:430.847731px;}
.y49f{bottom:431.488823px;}
.y45f{bottom:431.557045px;}
.y34b{bottom:431.622299px;}
.y4e0{bottom:431.871307px;}
.y523{bottom:431.884073px;}
.y7a{bottom:432.165344px;}
.y286{bottom:432.433823px;}
.y17b{bottom:433.479342px;}
.y1d8{bottom:433.485260px;}
.ye1{bottom:433.485306px;}
.y11c{bottom:433.624786px;}
.y2d3{bottom:433.624809px;}
.y248{bottom:434.064606px;}
.y423{bottom:434.907293px;}
.y19e{bottom:436.594803px;}
.y21c{bottom:440.032213px;}
.y3c{bottom:441.211349px;}
.yb7{bottom:441.281238px;}
.y30f{bottom:442.290183px;}
.y319{bottom:442.290200px;}
.y323{bottom:442.290223px;}
.y32d{bottom:442.290247px;}
.y343{bottom:442.290286px;}
.y239{bottom:444.280160px;}
.y49e{bottom:446.482823px;}
.y45e{bottom:446.551045px;}
.y4df{bottom:446.865307px;}
.y522{bottom:446.878073px;}
.y422{bottom:449.901293px;}
.y19d{bottom:450.153312px;}
.y79{bottom:450.915344px;}
.y285{bottom:451.183823px;}
.y310{bottom:451.291683px;}
.y31a{bottom:451.291700px;}
.y324{bottom:451.291723px;}
.y32e{bottom:451.291747px;}
.y336{bottom:451.291762px;}
.y344{bottom:451.291786px;}
.y17a{bottom:452.229342px;}
.y1d7{bottom:452.235260px;}
.ye0{bottom:452.235306px;}
.y11b{bottom:452.374786px;}
.y2d2{bottom:452.374809px;}
.y247{bottom:452.814606px;}
.y238{bottom:456.871216px;}
.y3b{bottom:459.961349px;}
.yb6{bottom:459.998238px;}
.y49d{bottom:461.476823px;}
.y45d{bottom:461.545045px;}
.y4de{bottom:461.859307px;}
.y521{bottom:461.872073px;}
.y21f{bottom:464.154848px;}
.y421{bottom:464.895293px;}
.y19c{bottom:465.147312px;}
.y78{bottom:469.665344px;}
.y284{bottom:469.933823px;}
.y179{bottom:470.979342px;}
.y1d6{bottom:470.985260px;}
.ydf{bottom:470.985306px;}
.y11a{bottom:471.124786px;}
.y2d1{bottom:471.124809px;}
.y246{bottom:471.564606px;}
.y21e{bottom:473.339330px;}
.y49c{bottom:476.470823px;}
.y45c{bottom:476.539045px;}
.y4dd{bottom:476.853307px;}
.y520{bottom:476.866073px;}
.y3a{bottom:478.711349px;}
.yb5{bottom:478.715238px;}
.y420{bottom:479.889293px;}
.y19b{bottom:480.141312px;}
.y77{bottom:488.415344px;}
.y283{bottom:488.683823px;}
.y178{bottom:489.729342px;}
.y1d5{bottom:489.735260px;}
.yde{bottom:489.735306px;}
.y119{bottom:489.874786px;}
.y2d0{bottom:489.874809px;}
.y245{bottom:490.314606px;}
.y23a{bottom:490.937714px;}
.y49b{bottom:491.464823px;}
.y45b{bottom:491.533045px;}
.y4dc{bottom:491.847307px;}
.y51f{bottom:491.860073px;}
.y1f6{bottom:493.313416px;}
.yb4{bottom:493.709238px;}
.y41f{bottom:494.883293px;}
.y19a{bottom:495.135312px;}
.y3d1{bottom:497.160754px;}
.y3d7{bottom:497.186254px;}
.y39{bottom:497.461349px;}
.yc{bottom:502.864502px;}
.y49a{bottom:506.458823px;}
.y45a{bottom:506.527045px;}
.y4db{bottom:506.841307px;}
.y51e{bottom:506.854073px;}
.y76{bottom:507.165344px;}
.y282{bottom:507.433823px;}
.y177{bottom:508.479342px;}
.y1d4{bottom:508.485260px;}
.ydd{bottom:508.485306px;}
.y118{bottom:508.624786px;}
.y2cf{bottom:508.624809px;}
.y244{bottom:509.064606px;}
.y41e{bottom:509.877293px;}
.y199{bottom:510.129312px;}
.y3d0{bottom:512.154754px;}
.y3d6{bottom:512.180254px;}
.y3dc{bottom:512.205754px;}
.yb3{bottom:512.426238px;}
.y45{bottom:516.211349px;}
.y3eb{bottom:516.265657px;}
.y3e7{bottom:516.278402px;}
.y3ef{bottom:516.287248px;}
.y3fa{bottom:516.287409px;}
.yb{bottom:520.864502px;}
.y499{bottom:521.452823px;}
.y459{bottom:521.521045px;}
.y4da{bottom:521.835307px;}
.y51d{bottom:521.848073px;}
.y41d{bottom:524.871293px;}
.y198{bottom:525.123312px;}
.y3f0{bottom:525.288748px;}
.y3fb{bottom:525.288909px;}
.y75{bottom:525.915344px;}
.y281{bottom:526.183823px;}
.y3cf{bottom:527.148754px;}
.y3d5{bottom:527.174254px;}
.y3db{bottom:527.199754px;}
.y3e0{bottom:527.225252px;}
.y176{bottom:527.229342px;}
.y1d3{bottom:527.235260px;}
.ydc{bottom:527.235306px;}
.y117{bottom:527.374786px;}
.y2ce{bottom:527.374809px;}
.y243{bottom:527.814606px;}
.y1f2{bottom:528.386993px;}
.yb2{bottom:531.143238px;}
.y38{bottom:534.961349px;}
.y498{bottom:536.446823px;}
.y458{bottom:536.515045px;}
.y4d9{bottom:536.829307px;}
.y51c{bottom:536.842073px;}
.ya{bottom:538.864499px;}
.y41c{bottom:539.865293px;}
.y197{bottom:540.117312px;}
.y3ce{bottom:542.142754px;}
.y3d4{bottom:542.168254px;}
.y3da{bottom:542.193754px;}
.y3df{bottom:542.219252px;}
.y74{bottom:544.665344px;}
.y280{bottom:544.933823px;}
.y175{bottom:545.979342px;}
.y1d2{bottom:545.985260px;}
.ydb{bottom:545.985306px;}
.y116{bottom:546.124786px;}
.y2cd{bottom:546.124809px;}
.yb1{bottom:546.143238px;}
.y242{bottom:546.564606px;}
.y497{bottom:551.440823px;}
.y457{bottom:551.509045px;}
.y4d8{bottom:551.823307px;}
.y51b{bottom:551.836073px;}
.y41b{bottom:554.859293px;}
.y196{bottom:555.111312px;}
.y9{bottom:556.864499px;}
.y3cd{bottom:557.136754px;}
.y3d3{bottom:557.162254px;}
.y3d9{bottom:557.187754px;}
.y3de{bottom:557.213252px;}
.yb0{bottom:561.128256px;}
.y1f3{bottom:561.725281px;}
.y73{bottom:563.415344px;}
.y27f{bottom:563.683823px;}
.y174{bottom:564.729342px;}
.y1d1{bottom:564.735260px;}
.yda{bottom:564.735306px;}
.y115{bottom:564.874786px;}
.y2cc{bottom:564.874809px;}
.y241{bottom:565.314606px;}
.y496{bottom:566.434823px;}
.y456{bottom:566.503045px;}
.y4d7{bottom:566.817307px;}
.y51a{bottom:566.830073px;}
.y41a{bottom:569.853293px;}
.y195{bottom:570.105312px;}
.y3cc{bottom:572.130754px;}
.y3d2{bottom:572.156254px;}
.y3d8{bottom:572.181754px;}
.y3dd{bottom:572.207252px;}
.yaf{bottom:579.845256px;}
.y495{bottom:581.428823px;}
.y455{bottom:581.497045px;}
.y4d6{bottom:581.811307px;}
.y519{bottom:581.824073px;}
.y72{bottom:582.165344px;}
.y27e{bottom:582.433823px;}
.y173{bottom:583.479342px;}
.y1d0{bottom:583.485260px;}
.yd9{bottom:583.485306px;}
.y114{bottom:583.624786px;}
.y2cb{bottom:583.624809px;}
.y240{bottom:584.064606px;}
.y194{bottom:585.099312px;}
.y3bc{bottom:590.847758px;}
.y3c1{bottom:590.873256px;}
.y37{bottom:591.211395px;}
.y494{bottom:596.422823px;}
.y454{bottom:596.491045px;}
.y4d5{bottom:596.805307px;}
.y518{bottom:596.818073px;}
.yae{bottom:598.553228px;}
.y193{bottom:600.093312px;}
.y71{bottom:600.915344px;}
.y1c9{bottom:600.922485px;}
.y27d{bottom:601.183823px;}
.y172{bottom:602.229342px;}
.y1cf{bottom:602.235260px;}
.y10c{bottom:602.235306px;}
.y113{bottom:602.374786px;}
.y2ca{bottom:602.374809px;}
.y23f{bottom:602.814606px;}
.y3bb{bottom:605.841758px;}
.y3c0{bottom:605.867256px;}
.y3c8{bottom:605.905504px;}
.y311{bottom:607.249683px;}
.y31b{bottom:607.249700px;}
.y325{bottom:607.249723px;}
.y32f{bottom:607.249747px;}
.y337{bottom:607.249762px;}
.y345{bottom:607.249786px;}
.y419{bottom:607.338293px;}
.y493{bottom:611.416823px;}
.y453{bottom:611.485045px;}
.y4d4{bottom:611.799307px;}
.y517{bottom:611.812073px;}
.y192{bottom:615.087312px;}
.y312{bottom:616.251183px;}
.y31c{bottom:616.251200px;}
.y326{bottom:616.251223px;}
.y330{bottom:616.251247px;}
.y338{bottom:616.251257px;}
.y346{bottom:616.251286px;}
.y1b8{bottom:616.933365px;}
.yad{bottom:617.270228px;}
.y70{bottom:619.665344px;}
.y27c{bottom:619.933823px;}
.y3ba{bottom:620.835758px;}
.y3bf{bottom:620.861256px;}
.y3c4{bottom:620.886754px;}
.y3c7{bottom:620.899504px;}
.y3cb{bottom:620.912254px;}
.y171{bottom:620.979342px;}
.y1ce{bottom:620.985260px;}
.yd8{bottom:620.985306px;}
.y112{bottom:621.124786px;}
.y2c9{bottom:621.124809px;}
.y23e{bottom:621.564606px;}
.y418{bottom:622.332293px;}
.y492{bottom:626.410823px;}
.y452{bottom:626.479045px;}
.y4d3{bottom:626.793307px;}
.y516{bottom:626.806073px;}
.y36{bottom:628.711395px;}
.y191{bottom:630.081312px;}
.y3b9{bottom:635.829758px;}
.y3be{bottom:635.855256px;}
.y3c3{bottom:635.880754px;}
.y3c6{bottom:635.893504px;}
.y3ca{bottom:635.906254px;}
.yac{bottom:635.960421px;}
.y6f{bottom:638.415344px;}
.y170{bottom:639.729342px;}
.y1cd{bottom:639.735260px;}
.y10b{bottom:639.735306px;}
.y111{bottom:639.874786px;}
.y2c8{bottom:639.874809px;}
.y23d{bottom:640.314606px;}
.y491{bottom:641.404823px;}
.y451{bottom:641.473045px;}
.y4d2{bottom:641.787307px;}
.y515{bottom:641.800073px;}
.y190{bottom:645.075312px;}
.y8{bottom:645.510000px;}
.y35{bottom:647.461395px;}
.y3b8{bottom:650.823758px;}
.y3bd{bottom:650.849256px;}
.y3c2{bottom:650.874754px;}
.y3c5{bottom:650.887504px;}
.y3c9{bottom:650.900254px;}
.y417{bottom:652.333043px;}
.yab{bottom:654.677421px;}
.y490{bottom:656.398823px;}
.y450{bottom:656.467045px;}
.y4d1{bottom:656.781307px;}
.y514{bottom:656.794073px;}
.y6e{bottom:657.165344px;}
.y27b{bottom:657.433823px;}
.y16f{bottom:658.479342px;}
.y1cc{bottom:658.485260px;}
.y10a{bottom:658.485306px;}
.y1ca{bottom:658.491306px;}
.y110{bottom:658.624786px;}
.y2c7{bottom:658.624809px;}
.y23c{bottom:659.064606px;}
.y18f{bottom:660.069312px;}
.y34{bottom:666.211395px;}
.y7{bottom:666.771000px;}
.y416{bottom:667.327043px;}
.y3a8{bottom:669.489760px;}
.y48f{bottom:671.392823px;}
.y44f{bottom:671.461045px;}
.y4d0{bottom:671.775307px;}
.y513{bottom:671.788073px;}
.yaa{bottom:673.394421px;}
.y18e{bottom:675.063312px;}
.y6d{bottom:675.915344px;}
.y16e{bottom:677.229342px;}
.yd7{bottom:677.235260px;}
.y109{bottom:677.235306px;}
.y10f{bottom:677.374786px;}
.y3a7{bottom:684.483760px;}
.y3ac{bottom:684.509258px;}
.y3b0{bottom:684.522008px;}
.y3b4{bottom:684.534758px;}
.y33{bottom:684.961395px;}
.y48e{bottom:686.386823px;}
.y44e{bottom:686.455045px;}
.y4cf{bottom:686.769307px;}
.y512{bottom:686.782073px;}
.ya9{bottom:692.111421px;}
.y6c{bottom:694.665344px;}
.y18d{bottom:695.157303px;}
.y16d{bottom:695.979342px;}
.yd6{bottom:695.985260px;}
.y108{bottom:695.985306px;}
.y10e{bottom:696.124786px;}
.y415{bottom:697.327793px;}
.y3a6{bottom:699.477760px;}
.y3ab{bottom:699.503258px;}
.y3af{bottom:699.516008px;}
.y3b3{bottom:699.528758px;}
.y3b7{bottom:699.541508px;}
.y48d{bottom:701.380823px;}
.y44d{bottom:701.449045px;}
.y4ce{bottom:701.763307px;}
.y511{bottom:701.776073px;}
.y1c7{bottom:702.878902px;}
.y32{bottom:703.711395px;}
.y27a{bottom:707.900711px;}
.y2b8{bottom:707.917328px;}
.ya8{bottom:710.828421px;}
.y414{bottom:712.321793px;}
.y3e8{bottom:713.023652px;}
.y3f1{bottom:713.045246px;}
.y3fc{bottom:713.045406px;}
.y6b{bottom:713.415344px;}
.y3a5{bottom:714.471760px;}
.y3aa{bottom:714.497258px;}
.y3ae{bottom:714.510008px;}
.y3b2{bottom:714.522758px;}
.y3b6{bottom:714.535508px;}
.y16c{bottom:714.729342px;}
.yd5{bottom:714.735260px;}
.y107{bottom:714.735306px;}
.y10d{bottom:714.874786px;}
.y48c{bottom:716.374823px;}
.y44c{bottom:716.443045px;}
.y4cd{bottom:716.757307px;}
.y510{bottom:716.770073px;}
.y1c6{bottom:718.029692px;}
.y3f2{bottom:722.046746px;}
.y3fd{bottom:722.046906px;}
.y31{bottom:722.461395px;}
.y6{bottom:726.298500px;}
.y3a4{bottom:729.465760px;}
.y3a9{bottom:729.491258px;}
.y3ad{bottom:729.504008px;}
.y3b1{bottom:729.516758px;}
.y3b5{bottom:729.529508px;}
.ya7{bottom:729.545421px;}
.y1b9{bottom:729.626999px;}
.y217{bottom:729.932831px;}
.y48b{bottom:731.368823px;}
.y44b{bottom:731.437045px;}
.y4cc{bottom:731.751307px;}
.y50f{bottom:731.764073px;}
.y6a{bottom:732.165344px;}
.y1c5{bottom:733.180481px;}
.y16b{bottom:733.479342px;}
.yd4{bottom:733.485260px;}
.y106{bottom:733.485306px;}
.y30{bottom:741.211395px;}
.y413{bottom:742.321793px;}
.y48a{bottom:746.362823px;}
.y44a{bottom:746.431045px;}
.y4cb{bottom:746.745307px;}
.y50e{bottom:746.758073px;}
.y38f{bottom:748.080768px;}
.ya6{bottom:748.241292px;}
.y69{bottom:750.915344px;}
.y157{bottom:751.044342px;}
.y16a{bottom:752.229342px;}
.yd3{bottom:752.235260px;}
.y105{bottom:752.235306px;}
.y3{bottom:752.599495px;}
.y2f{bottom:759.961395px;}
.y489{bottom:761.356823px;}
.y449{bottom:761.425045px;}
.y4ca{bottom:761.739307px;}
.y50d{bottom:761.752073px;}
.y38e{bottom:763.074768px;}
.y1fa{bottom:765.007507px;}
.y1c8{bottom:766.420486px;}
.ya5{bottom:766.958292px;}
.y12f{bottom:767.875812px;}
.y25a{bottom:769.145874px;}
.y68{bottom:769.665344px;}
.y306{bottom:769.719698px;}
.y2e2{bottom:769.726515px;}
.y156{bottom:769.794342px;}
.y169{bottom:770.979342px;}
.yd2{bottom:770.985260px;}
.y104{bottom:770.985306px;}
.y313{bottom:771.852183px;}
.y31d{bottom:771.852200px;}
.y327{bottom:771.852223px;}
.y331{bottom:771.852247px;}
.y339{bottom:771.852257px;}
.y347{bottom:771.852286px;}
.y298{bottom:773.188385px;}
.y2e6{bottom:775.549164px;}
.y412{bottom:776.159588px;}
.y488{bottom:776.350823px;}
.y448{bottom:776.419045px;}
.y4c9{bottom:776.733307px;}
.y50c{bottom:776.746073px;}
.y38d{bottom:778.068768px;}
.y397{bottom:778.119768px;}
.y39f{bottom:778.158014px;}
.y2d7{bottom:778.499725px;}
.y2e{bottom:778.711395px;}
.y305{bottom:778.903820px;}
.y2e1{bottom:778.910636px;}
.y314{bottom:780.853683px;}
.y31e{bottom:780.853700px;}
.y328{bottom:780.853723px;}
.y332{bottom:780.853747px;}
.y33c{bottom:780.853766px;}
.y348{bottom:780.853786px;}
.ya4{bottom:785.675292px;}
.y12e{bottom:787.969757px;}
.y304{bottom:788.087941px;}
.y2e0{bottom:788.094758px;}
.y67{bottom:788.415344px;}
.y155{bottom:788.544342px;}
.y168{bottom:789.729342px;}
.yd1{bottom:789.735260px;}
.y103{bottom:789.735306px;}
.y1fe{bottom:790.291067px;}
.y411{bottom:791.153588px;}
.y487{bottom:791.344823px;}
.y447{bottom:791.413045px;}
.y4c8{bottom:791.727307px;}
.y50b{bottom:791.740073px;}
.y38c{bottom:793.062768px;}
.y396{bottom:793.113768px;}
.y39e{bottom:793.152014px;}
.y276{bottom:797.255010px;}
.y303{bottom:797.272062px;}
.y2b4{bottom:797.278879px;}
.y2d{bottom:797.461395px;}
.y1ea{bottom:801.827727px;}
.y1fd{bottom:802.841675px;}
.ya3{bottom:804.392292px;}
.y1bd{bottom:804.679956px;}
.y410{bottom:806.147588px;}
.y486{bottom:806.338823px;}
.y446{bottom:806.407045px;}
.y275{bottom:806.439492px;}
.y2b3{bottom:806.463001px;}
.y4c7{bottom:806.721307px;}
.y50a{bottom:806.734073px;}
.y66{bottom:807.165344px;}
.y154{bottom:807.294342px;}
.y38b{bottom:808.056768px;}
.y395{bottom:808.107768px;}
.y39d{bottom:808.146014px;}
.y167{bottom:808.479342px;}
.yd0{bottom:808.485260px;}
.y102{bottom:808.485306px;}
.y144{bottom:811.665719px;}
.y274{bottom:815.623974px;}
.y302{bottom:815.632664px;}
.y2b2{bottom:815.647122px;}
.y2c{bottom:816.211395px;}
.y1e9{bottom:819.588867px;}
.y1bc{bottom:819.830746px;}
.y485{bottom:821.332823px;}
.y445{bottom:821.401045px;}
.y4c6{bottom:821.715307px;}
.y509{bottom:821.728073px;}
.y385{bottom:823.025270px;}
.y38a{bottom:823.050768px;}
.y394{bottom:823.101768px;}
.ya2{bottom:823.109292px;}
.y39c{bottom:823.140014px;}
.y273{bottom:824.808456px;}
.y301{bottom:824.816786px;}
.y2df{bottom:824.823603px;}
.y2b1{bottom:824.831243px;}
.y65{bottom:825.915344px;}
.y153{bottom:826.044342px;}
.y143{bottom:826.659719px;}
.y166{bottom:827.229342px;}
.ycf{bottom:827.235260px;}
.y101{bottom:827.235306px;}
.y272{bottom:833.992937px;}
.y300{bottom:834.000907px;}
.y2de{bottom:834.007724px;}
.y2b0{bottom:834.015365px;}
.y2b{bottom:834.961395px;}
.y1bb{bottom:834.981535px;}
.y40f{bottom:836.148338px;}
.y484{bottom:836.326823px;}
.y444{bottom:836.395045px;}
.y4c5{bottom:836.709307px;}
.y508{bottom:836.722073px;}
.y384{bottom:838.019270px;}
.y389{bottom:838.044768px;}
.y393{bottom:838.095768px;}
.y39b{bottom:838.134014px;}
.y3a3{bottom:838.172260px;}
.y142{bottom:841.653719px;}
.y145{bottom:841.666469px;}
.ya1{bottom:841.826292px;}
.y201{bottom:842.341426px;}
.y271{bottom:843.177419px;}
.y2ff{bottom:843.185029px;}
.y2dd{bottom:843.191845px;}
.y2af{bottom:843.199486px;}
.y64{bottom:844.665344px;}
.y152{bottom:844.794342px;}
.y165{bottom:845.979342px;}
.yce{bottom:845.985260px;}
.y100{bottom:845.985306px;}
.y202{bottom:848.145296px;}
.y1ba{bottom:850.132324px;}
.y40e{bottom:851.142338px;}
.y483{bottom:851.320823px;}
.y443{bottom:851.389045px;}
.y4c4{bottom:851.703307px;}
.y507{bottom:851.716073px;}
.y2fe{bottom:852.369150px;}
.y2dc{bottom:852.375967px;}
.y2ae{bottom:852.383608px;}
.y383{bottom:853.013270px;}
.y388{bottom:853.038768px;}
.y392{bottom:853.089768px;}
.y39a{bottom:853.128014px;}
.y3a2{bottom:853.166260px;}
.y20e{bottom:856.544760px;}
.y140{bottom:860.434469px;}
.ya0{bottom:860.543292px;}
.y270{bottom:861.538742px;}
.y2fd{bottom:861.553271px;}
.y2db{bottom:861.560088px;}
.y63{bottom:863.415344px;}
.y151{bottom:863.544342px;}
.y164{bottom:864.729342px;}
.ycd{bottom:864.735260px;}
.yff{bottom:864.735306px;}
.y40d{bottom:866.136338px;}
.y482{bottom:866.314823px;}
.y442{bottom:866.383045px;}
.y4c3{bottom:866.697307px;}
.y506{bottom:866.710073px;}
.y382{bottom:868.007270px;}
.y387{bottom:868.032768px;}
.y391{bottom:868.083768px;}
.y399{bottom:868.122014px;}
.y3a1{bottom:868.160260px;}
.y20d{bottom:869.095367px;}
.y26f{bottom:870.723223px;}
.y2fc{bottom:870.737393px;}
.y2ad{bottom:870.744210px;}
.y13f{bottom:875.428469px;}
.y9f{bottom:875.528219px;}
.y1c4{bottom:875.796021px;}
.y2a{bottom:879.144153px;}
.y2{bottom:879.369000px;}
.y26e{bottom:879.907705px;}
.y2da{bottom:879.920690px;}
.y2fb{bottom:879.921514px;}
.y2ac{bottom:879.928331px;}
.y40c{bottom:881.130338px;}
.y481{bottom:881.308823px;}
.y441{bottom:881.377045px;}
.y4c2{bottom:881.691307px;}
.y505{bottom:881.704073px;}
.y62{bottom:882.165344px;}
.y150{bottom:882.294342px;}
.y381{bottom:883.001270px;}
.y386{bottom:883.026768px;}
.y1eb{bottom:883.047913px;}
.y390{bottom:883.077768px;}
.y398{bottom:883.116014px;}
.y3a0{bottom:883.154260px;}
.y163{bottom:883.479342px;}
.ycc{bottom:883.485260px;}
.yfe{bottom:883.485306px;}
.y2d9{bottom:889.104812px;}
.y2fa{bottom:889.105636px;}
.y2ab{bottom:889.112452px;}
.y216{bottom:889.856416px;}
.y13e{bottom:890.422469px;}
.y141{bottom:890.435219px;}
.y29{bottom:894.138153px;}
.y9e{bottom:894.245219px;}
.y40b{bottom:896.124338px;}
.y480{bottom:896.302823px;}
.y440{bottom:896.371045px;}
.y4c1{bottom:896.685307px;}
.y504{bottom:896.698073px;}
.y26d{bottom:898.269028px;}
.y2d8{bottom:898.288933px;}
.y2f9{bottom:898.289757px;}
.y215{bottom:900.845521px;}
.y61{bottom:900.915344px;}
.y14f{bottom:901.044342px;}
.y365{bottom:901.578024px;}
.y1da{bottom:902.229260px;}
.y162{bottom:902.229342px;}
.ycb{bottom:902.235260px;}
.yfd{bottom:902.235306px;}
.y1fc{bottom:906.478180px;}
.y3e9{bottom:906.721652px;}
.y3f3{bottom:906.743246px;}
.y3fe{bottom:906.743406px;}
.y26c{bottom:907.453509px;}
.y2aa{bottom:907.473055px;}
.y2f8{bottom:907.473878px;}
.y13c{bottom:909.139469px;}
.y1b7{bottom:910.017876px;}
.y40a{bottom:911.118338px;}
.y47f{bottom:911.296823px;}
.y544{bottom:911.296824px;}
.y43f{bottom:911.365045px;}
.y4c0{bottom:911.679307px;}
.y503{bottom:911.692073px;}
.y214{bottom:911.834626px;}
.y9d{bottom:912.959421px;}
.y262{bottom:914.443203px;}
.y2a0{bottom:914.461598px;}
.y2ee{bottom:914.462971px;}
.y3f4{bottom:915.744746px;}
.y3ff{bottom:915.744906px;}
.y364{bottom:916.572024px;}
.y26b{bottom:916.637991px;}
.y2a9{bottom:916.657176px;}
.y2f7{bottom:916.658000px;}
.y375{bottom:916.661274px;}
.y1b1{bottom:917.458466px;}
.y60{bottom:919.665344px;}
.y1ed{bottom:919.771579px;}
.y14e{bottom:919.794342px;}
.y161{bottom:920.979342px;}
.yca{bottom:920.985260px;}
.yfc{bottom:920.985306px;}
.y1b2{bottom:921.454542px;}
.y213{bottom:922.823730px;}
.y13b{bottom:924.133469px;}
.y261{bottom:924.932831px;}
.y29f{bottom:924.950867px;}
.y2ed{bottom:924.952240px;}
.y1b6{bottom:925.168665px;}
.y26a{bottom:925.822473px;}
.y2a8{bottom:925.841297px;}
.y2f6{bottom:925.842121px;}
.y47e{bottom:926.290823px;}
.y543{bottom:926.290824px;}
.y43e{bottom:926.359045px;}
.y4bf{bottom:926.673307px;}
.y502{bottom:926.686073px;}
.y9c{bottom:927.953421px;}
.y200{bottom:929.053761px;}
.y363{bottom:931.566024px;}
.y374{bottom:931.655274px;}
.y1ec{bottom:933.589050px;}
.y2a7{bottom:935.025419px;}
.y315{bottom:936.441933px;}
.y31f{bottom:936.441950px;}
.y329{bottom:936.441973px;}
.y333{bottom:936.441997px;}
.y33d{bottom:936.442016px;}
.y349{bottom:936.442036px;}
.y28{bottom:936.738190px;}
.y5f{bottom:938.415344px;}
.y14d{bottom:938.544342px;}
.y13a{bottom:939.127469px;}
.y13d{bottom:939.140219px;}
.y160{bottom:939.729342px;}
.yc9{bottom:939.735260px;}
.yfb{bottom:939.735306px;}
.y1b5{bottom:940.319454px;}
.y1ff{bottom:940.588165px;}
.y409{bottom:941.119088px;}
.y47d{bottom:941.284823px;}
.y43d{bottom:941.353045px;}
.y4be{bottom:941.667307px;}
.y501{bottom:941.680073px;}
.y269{bottom:944.183795px;}
.y2f5{bottom:944.202723px;}
.y2a6{bottom:944.209540px;}
.y316{bottom:945.443427px;}
.y320{bottom:945.443450px;}
.y32a{bottom:945.443473px;}
.y334{bottom:945.443497px;}
.y33a{bottom:945.443502px;}
.y33e{bottom:945.443516px;}
.y34a{bottom:945.443536px;}
.y362{bottom:946.560024px;}
.y36c{bottom:946.611024px;}
.y373{bottom:946.649274px;}
.y9b{bottom:946.670421px;}
.y20a{bottom:949.562430px;}
.y268{bottom:953.368277px;}
.y2f4{bottom:953.386845px;}
.y1b4{bottom:955.470243px;}
.y408{bottom:956.113088px;}
.y47c{bottom:956.278823px;}
.y43c{bottom:956.347045px;}
.y542{bottom:956.380823px;}
.y4bd{bottom:956.661307px;}
.y500{bottom:956.674073px;}
.y5e{bottom:957.165344px;}
.y14c{bottom:957.294342px;}
.y136{bottom:957.831719px;}
.y139{bottom:957.844469px;}
.y15f{bottom:958.479342px;}
.yc8{bottom:958.485260px;}
.yfa{bottom:958.485306px;}
.y361{bottom:961.554024px;}
.y36b{bottom:961.605024px;}
.y372{bottom:961.643274px;}
.y37b{bottom:961.694270px;}
.y209{bottom:962.113037px;}
.y267{bottom:962.552759px;}
.y2a5{bottom:962.570142px;}
.y2f3{bottom:962.570966px;}
.y9a{bottom:965.379024px;}
.y263{bottom:966.663483px;}
.y2a1{bottom:966.680969px;}
.y2ef{bottom:966.681793px;}
.y1{bottom:966.726000px;}
.y1b3{bottom:970.621033px;}
.y1ef{bottom:971.052559px;}
.y407{bottom:971.107088px;}
.y47b{bottom:971.272823px;}
.y43b{bottom:971.341045px;}
.y541{bottom:971.374823px;}
.y4bc{bottom:971.655307px;}
.y4ff{bottom:971.668073px;}
.y266{bottom:971.737241px;}
.y2a4{bottom:971.754264px;}
.y2f2{bottom:971.755088px;}
.y135{bottom:972.825719px;}
.y138{bottom:972.838469px;}
.y5d{bottom:975.915344px;}
.y14b{bottom:976.044342px;}
.y360{bottom:976.548024px;}
.y36a{bottom:976.599024px;}
.y371{bottom:976.637274px;}
.y37a{bottom:976.688270px;}
.y380{bottom:976.713770px;}
.y15e{bottom:977.229342px;}
.yc7{bottom:977.235260px;}
.yf9{bottom:977.235306px;}
.y265{bottom:980.921722px;}
.y2a3{bottom:980.938385px;}
.y2f1{bottom:980.939209px;}
.y27{bottom:981.424622px;}
.y99{bottom:984.096024px;}
.y1ee{bottom:984.870029px;}
.y406{bottom:986.101088px;}
.y47a{bottom:986.266823px;}
.y43a{bottom:986.335045px;}
.y540{bottom:986.368823px;}
.y4bb{bottom:986.649307px;}
.y4fe{bottom:986.662073px;}
.y134{bottom:987.819719px;}
.y137{bottom:987.832469px;}
.y25c{bottom:990.556088px;}
.y29a{bottom:990.571555px;}
.y2e8{bottom:990.572287px;}
.y35f{bottom:991.542024px;}
.y369{bottom:991.593024px;}
.y370{bottom:991.631274px;}
.y379{bottom:991.682270px;}
.y37f{bottom:991.707770px;}
.y5c{bottom:994.665344px;}
.y14a{bottom:994.794342px;}
.y15d{bottom:995.979342px;}
.yc6{bottom:995.985260px;}
.yf8{bottom:995.985306px;}
.y208{bottom:996.005118px;}
.y206{bottom:997.191824px;}
.y25b{bottom:999.740570px;}
.y299{bottom:999.755676px;}
.y2e7{bottom:999.756409px;}
.y264{bottom:1000.828033px;}
.y2a2{bottom:1000.842773px;}
.y2f0{bottom:1000.844055px;}
.y405{bottom:1001.095088px;}
.y479{bottom:1001.260823px;}
.y439{bottom:1001.329045px;}
.y53f{bottom:1001.362823px;}
.y4ba{bottom:1001.643307px;}
.y4fd{bottom:1001.656073px;}
.y98{bottom:1002.813024px;}
.y35e{bottom:1006.536024px;}
.y132{bottom:1006.536719px;}
.y368{bottom:1006.587024px;}
.y36f{bottom:1006.625274px;}
.y378{bottom:1006.676270px;}
.y37e{bottom:1006.701770px;}
.y26{bottom:1008.424622px;}
.y207{bottom:1008.555725px;}
.y205{bottom:1009.742432px;}
.y5b{bottom:1013.415344px;}
.y149{bottom:1013.544342px;}
.y15c{bottom:1014.729342px;}
.yc5{bottom:1014.735260px;}
.yf7{bottom:1014.735306px;}
.y404{bottom:1016.089088px;}
.y478{bottom:1016.254823px;}
.y438{bottom:1016.323045px;}
.y53e{bottom:1016.356823px;}
.y4b9{bottom:1016.637307px;}
.y4fc{bottom:1016.650073px;}
.y97{bottom:1017.807024px;}
.y1f1{bottom:1020.931098px;}
.y203{bottom:1021.059174px;}
.y35d{bottom:1021.530024px;}
.y131{bottom:1021.530719px;}
.y367{bottom:1021.581024px;}
.y36e{bottom:1021.619274px;}
.y377{bottom:1021.670270px;}
.y37d{bottom:1021.695770px;}
.y1bf{bottom:1022.346540px;}
.y204{bottom:1024.275398px;}
.y1be{bottom:1024.625427px;}
.y25e{bottom:1024.642588px;}
.y29c{bottom:1024.656718px;}
.y2ea{bottom:1024.657450px;}
.y1c3{bottom:1024.758356px;}
.y309{bottom:1026.051325px;}
.y403{bottom:1031.083088px;}
.y477{bottom:1031.248823px;}
.y437{bottom:1031.317045px;}
.y53d{bottom:1031.350823px;}
.y4b8{bottom:1031.631307px;}
.y4fb{bottom:1031.644073px;}
.y5a{bottom:1032.165344px;}
.y148{bottom:1032.294342px;}
.y15b{bottom:1033.479342px;}
.yc4{bottom:1033.485260px;}
.yf6{bottom:1033.485306px;}
.y25d{bottom:1033.827070px;}
.y29b{bottom:1033.840839px;}
.y2e9{bottom:1033.841571px;}
.y1f0{bottom:1034.748569px;}
.y96{bottom:1036.524024px;}
.y130{bottom:1036.524719px;}
.y133{bottom:1036.537469px;}
.y366{bottom:1036.575024px;}
.y36d{bottom:1036.613274px;}
.y376{bottom:1036.664270px;}
.y37c{bottom:1036.689770px;}
.y278{bottom:1038.627694px;}
.y2e4{bottom:1038.640393px;}
.y2b6{bottom:1038.641217px;}
.y308{bottom:1038.641950px;}
.y212{bottom:1039.775667px;}
.y1c2{bottom:1039.909145px;}
.y20c{bottom:1042.578451px;}
.y402{bottom:1046.077088px;}
.y476{bottom:1046.242823px;}
.y436{bottom:1046.311045px;}
.y53c{bottom:1046.344823px;}
.y4b7{bottom:1046.625307px;}
.y4fa{bottom:1046.638073px;}
.y211{bottom:1050.764772px;}
.y59{bottom:1050.915344px;}
.y277{bottom:1051.218750px;}
.y2e3{bottom:1051.231018px;}
.y2b5{bottom:1051.231842px;}
.y307{bottom:1051.232574px;}
.y15a{bottom:1052.229342px;}
.yc3{bottom:1052.235260px;}
.yf5{bottom:1052.235306px;}
.y1f9{bottom:1052.239803px;}
.y1c1{bottom:1055.059935px;}
.y20b{bottom:1055.129059px;}
.y260{bottom:1057.796886px;}
.y29e{bottom:1057.809714px;}
.y2ec{bottom:1057.810446px;}
.y475{bottom:1061.236823px;}
.y435{bottom:1061.305045px;}
.y53b{bottom:1061.338823px;}
.y4b6{bottom:1061.619307px;}
.y4f9{bottom:1061.632073px;}
.y210{bottom:1061.753876px;}
.y95{bottom:1064.612274px;}
.y25f{bottom:1066.981367px;}
.y29d{bottom:1066.993835px;}
.y2eb{bottom:1066.994568px;}
.y58{bottom:1069.665344px;}
.y147{bottom:1069.800342px;}
.y1c0{bottom:1070.210724px;}
.y159{bottom:1070.979342px;}
.yc2{bottom:1070.985260px;}
.yf4{bottom:1070.985306px;}
.y1f8{bottom:1070.989803px;}
.y20f{bottom:1072.742981px;}
.y1b0{bottom:1075.108844px;}
.y401{bottom:1076.077838px;}
.y25{bottom:1076.132080px;}
.y474{bottom:1076.230823px;}
.y1f4{bottom:1076.294220px;}
.y434{bottom:1076.299045px;}
.y53a{bottom:1076.332823px;}
.y4b5{bottom:1076.613307px;}
.y4f8{bottom:1076.626073px;}
.y279{bottom:1085.283783px;}
.y2b7{bottom:1085.295410px;}
.y30a{bottom:1085.296783px;}
.y57{bottom:1088.415344px;}
.y146{bottom:1088.544342px;}
.y158{bottom:1089.729342px;}
.yc1{bottom:1089.735260px;}
.yf3{bottom:1089.735306px;}
.y1f7{bottom:1089.739803px;}
.y90{bottom:1090.102844px;}
.y400{bottom:1091.071838px;}
.y473{bottom:1091.224823px;}
.y433{bottom:1091.293045px;}
.y539{bottom:1091.326823px;}
.y4b4{bottom:1091.607307px;}
.y4f7{bottom:1091.620073px;}
.y24{bottom:1109.586556px;}
.y23{bottom:1126.582306px;}
.y56{bottom:1127.482361px;}
.y8c{bottom:1127.482544px;}
.h36{height:20.721578px;}
.h31{height:20.722391px;}
.h35{height:21.241146px;}
.h30{height:21.241979px;}
.h34{height:21.393960px;}
.h33{height:21.394799px;}
.h37{height:23.745323px;}
.h2f{height:23.746136px;}
.h2e{height:24.794053px;}
.h38{height:26.679977px;}
.h32{height:26.681198px;}
.h2d{height:28.411726px;}
.h2c{height:29.124114px;}
.h16{height:31.130399px;}
.h27{height:31.175525px;}
.h1f{height:31.773220px;}
.h2b{height:31.923629px;}
.h28{height:31.957212px;}
.h7{height:32.130000px;}
.h24{height:35.040927px;}
.h23{height:35.293020px;}
.h26{height:40.140176px;}
.ha{height:42.048000px;}
.h22{height:43.523532px;}
.h15{height:44.472000px;}
.hb{height:44.676000px;}
.h18{height:45.186000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h17{height:51.458410px;}
.h20{height:51.530179px;}
.h1a{height:52.173000px;}
.h1b{height:52.184194px;}
.h1d{height:52.208927px;}
.h1c{height:52.209293px;}
.h1e{height:52.281055px;}
.h11{height:52.320000px;}
.h12{height:53.160000px;}
.h19{height:53.805000px;}
.h2{height:55.080000px;}
.hc{height:55.461000px;}
.h21{height:59.004000px;}
.hf{height:59.340000px;}
.h14{height:60.624000px;}
.h25{height:60.624183px;}
.h10{height:61.380000px;}
.he{height:64.866000px;}
.h13{height:71.208000px;}
.h5{height:78.030000px;}
.hd{height:85.056000px;}
.h4{height:119.055004px;}
.h2a{height:334.657494px;}
.h29{height:571.277985px;}
.h8{height:1186.299000px;}
.h9{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:357.165000px;}
.w5{width:595.275009px;}
.w2{width:637.794021px;}
.w4{width:739.841995px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x2b{left:80.280447px;}
.x7{left:85.181849px;}
.x84{left:91.923150px;}
.xb{left:93.545408px;}
.xa{left:97.796100px;}
.x2d{left:98.828396px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9c{left:107.301155px;}
.x5b{left:108.397202px;}
.x48{left:114.601055px;}
.x32{left:119.467346px;}
.x33{left:132.017954px;}
.x5c{left:133.887600px;}
.x85{left:146.327400px;}
.x2a{left:148.817997px;}
.x2f{left:152.496717px;}
.x2c{left:155.191046px;}
.x2e{left:162.428249px;}
.x36{left:164.605053px;}
.x37{left:167.307938px;}
.x3e{left:168.417180px;}
.x3f{left:169.989664px;}
.x40{left:172.970069px;}
.x86{left:174.423145px;}
.x5d{left:176.969850px;}
.x7d{left:186.134412px;}
.x87{left:189.417145px;}
.x5e{left:191.963850px;}
.x4{left:203.484001px;}
.x5f{left:206.957850px;}
.x88{left:219.405145px;}
.x60{left:221.951850px;}
.x89{left:234.399145px;}
.x61{left:236.856606px;}
.x38{left:249.210159px;}
.x30{left:250.554885px;}
.x31{left:252.482524px;}
.x55{left:254.690311px;}
.x45{left:257.178241px;}
.x43{left:259.035004px;}
.x39{left:260.315037px;}
.x4c{left:262.077705px;}
.x44{left:263.887039px;}
.x46{left:264.972059px;}
.x4d{left:266.417793px;}
.x41{left:268.754997px;}
.x56{left:271.223991px;}
.x42{left:273.448184px;}
.x52{left:274.702492px;}
.x7e{left:276.493660px;}
.x8a{left:279.381145px;}
.x47{left:282.350990px;}
.x62{left:285.561606px;}
.x11{left:289.906805px;}
.xe{left:298.857300px;}
.x63{left:300.555606px;}
.x28{left:303.944555px;}
.x3d{left:306.381695px;}
.x3c{left:307.953140px;}
.x18{left:308.957245px;}
.x8b{left:313.129643px;}
.x64{left:315.549606px;}
.x12{left:318.604497px;}
.x8c{left:328.123643px;}
.x65{left:330.543606px;}
.x34{left:343.581139px;}
.x13{left:345.176994px;}
.x3a{left:347.167648px;}
.x35{left:348.410713px;}
.x1a{left:349.658971px;}
.x14{left:350.685245px;}
.x3b{left:352.971517px;}
.x8d{left:358.111643px;}
.x66{left:360.467856px;}
.x15{left:365.420073px;}
.x8e{left:373.105643px;}
.x7f{left:376.083910px;}
.x67{left:379.133860px;}
.x80{left:385.085410px;}
.x8f{left:388.099643px;}
.x26{left:392.219176px;}
.x6c{left:394.000364px;}
.x24{left:395.012558px;}
.x25{left:402.312137px;}
.x19{left:404.615250px;}
.x27{left:406.128610px;}
.x5a{left:408.351013px;}
.x54{left:413.368515px;}
.x90{left:418.087643px;}
.x29{left:420.692550px;}
.x17{left:422.811447px;}
.x21{left:424.103531px;}
.x22{left:425.184000px;}
.x1b{left:428.387612px;}
.x23{left:430.160568px;}
.x91{left:433.081643px;}
.x68{left:439.109860px;}
.x92{left:448.075643px;}
.x6d{left:453.950864px;}
.x3{left:454.959000px;}
.x8{left:459.217029px;}
.x93{left:466.923157px;}
.x69{left:469.097860px;}
.x9{left:476.227027px;}
.x94{left:481.917157px;}
.x6a{left:484.053610px;}
.x81{left:485.721158px;}
.xc{left:489.545380px;}
.x49{left:491.699982px;}
.x4e{left:493.348480px;}
.x58{left:494.529376px;}
.x1d{left:496.381030px;}
.x57{left:497.445007px;}
.x4a{left:499.501442px;}
.xf{left:502.411050px;}
.x51{left:504.497342px;}
.x50{left:505.871979px;}
.x1f{left:511.778355px;}
.x6b{left:514.041610px;}
.x95{left:526.899157px;}
.x4f{left:533.459486px;}
.x4b{left:538.696789px;}
.x96{left:541.893157px;}
.x16{left:548.515227px;}
.x1c{left:553.324903px;}
.x97{left:556.887157px;}
.x6e{left:562.631864px;}
.x98{left:571.881157px;}
.x82{left:576.093155px;}
.x6f{left:577.625864px;}
.x53{left:586.050809px;}
.x70{left:592.619864px;}
.x99{left:601.869157px;}
.x71{left:607.613864px;}
.x59{left:617.108469px;}
.x72{left:622.518616px;}
.x9a{left:631.857157px;}
.x73{left:637.512616px;}
.x9b{left:646.851157px;}
.x74{left:652.506616px;}
.x1e{left:668.440659px;}
.x75{left:671.223616px;}
.x83{left:676.448405px;}
.x20{left:677.464645px;}
.x10{left:681.370053px;}
.x76{left:686.217616px;}
.x77{left:704.934616px;}
.x78{left:719.928616px;}
.x5{left:728.220612px;}
.x79{left:738.722116px;}
.x7a{left:753.716116px;}
.x7b{left:768.710116px;}
.x7c{left:783.691366px;}
.xd{left:798.209564px;}
@media print{
.v2{vertical-align:-18.133343pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.069343pt;}
.v1{vertical-align:21.333333pt;}
.ls67{letter-spacing:-5.357227pt;}
.ls5e{letter-spacing:-5.272557pt;}
.ls58{letter-spacing:-4.841555pt;}
.ls5b{letter-spacing:-4.577724pt;}
.ls5a{letter-spacing:-3.719401pt;}
.ls71{letter-spacing:-3.042816pt;}
.ls89{letter-spacing:-3.042697pt;}
.ls6a{letter-spacing:-2.905427pt;}
.ls31{letter-spacing:-2.560000pt;}
.ls9b{letter-spacing:-2.518464pt;}
.ls72{letter-spacing:-2.472288pt;}
.ls8a{letter-spacing:-2.472191pt;}
.ls90{letter-spacing:-1.684350pt;}
.ls97{letter-spacing:-1.467014pt;}
.ls6f{letter-spacing:-1.340966pt;}
.ls30{letter-spacing:-1.173333pt;}
.ls96{letter-spacing:-1.120723pt;}
.ls4a{letter-spacing:-1.027104pt;}
.ls78{letter-spacing:-0.978048pt;}
.ls92{letter-spacing:-0.978010pt;}
.ls4e{letter-spacing:-0.746667pt;}
.ls5d{letter-spacing:-0.735706pt;}
.ls6e{letter-spacing:-0.707732pt;}
.lsa2{letter-spacing:-0.544000pt;}
.ls98{letter-spacing:-0.516172pt;}
.ls76{letter-spacing:-0.498116pt;}
.ls8c{letter-spacing:-0.498099pt;}
.ls74{letter-spacing:-0.489024pt;}
.ls8b{letter-spacing:-0.489005pt;}
.lse6{letter-spacing:-0.453333pt;}
.ls2e{letter-spacing:-0.426667pt;}
.ls77{letter-spacing:-0.407520pt;}
.ls8f{letter-spacing:-0.407504pt;}
.ls2d{letter-spacing:-0.373333pt;}
.ls2f{letter-spacing:-0.320000pt;}
.lsc2{letter-spacing:-0.317333pt;}
.ls48{letter-spacing:-0.313716pt;}
.lsc1{letter-spacing:-0.272000pt;}
.ls2a{letter-spacing:-0.266667pt;}
.lsc4{letter-spacing:-0.226667pt;}
.ls2c{letter-spacing:-0.213333pt;}
.lsa1{letter-spacing:-0.181333pt;}
.ls2b{letter-spacing:-0.160000pt;}
.lsbf{letter-spacing:-0.136000pt;}
.ls1e{letter-spacing:-0.106667pt;}
.lsc3{letter-spacing:-0.090667pt;}
.ls47{letter-spacing:-0.057061pt;}
.ls93{letter-spacing:-0.054334pt;}
.ls1d{letter-spacing:-0.053333pt;}
.ls59{letter-spacing:-0.052626pt;}
.lsbe{letter-spacing:-0.045333pt;}
.ls49{letter-spacing:-0.044817pt;}
.ls5c{letter-spacing:-0.040873pt;}
.ls6c{letter-spacing:-0.037249pt;}
.ls8e{letter-spacing:-0.031131pt;}
.ls73{letter-spacing:-0.027168pt;}
.ls88{letter-spacing:-0.027167pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000033pt;}
.ls6{letter-spacing:0.026667pt;}
.ls84{letter-spacing:0.027167pt;}
.ls65{letter-spacing:0.027168pt;}
.ls87{letter-spacing:0.031131pt;}
.ls64{letter-spacing:0.031132pt;}
.ls63{letter-spacing:0.032506pt;}
.ls62{letter-spacing:0.037249pt;}
.ls56{letter-spacing:0.040873pt;}
.ls3a{letter-spacing:0.044230pt;}
.ls43{letter-spacing:0.044817pt;}
.lsac{letter-spacing:0.045333pt;}
.ls7{letter-spacing:0.053333pt;}
.ls85{letter-spacing:0.054334pt;}
.ls66{letter-spacing:0.054336pt;}
.ls41{letter-spacing:0.057061pt;}
.ls8d{letter-spacing:0.062262pt;}
.ls70{letter-spacing:0.062265pt;}
.lsc8{letter-spacing:0.068000pt;}
.ls61{letter-spacing:0.074498pt;}
.ls33{letter-spacing:0.080000pt;}
.ls7d{letter-spacing:0.081504pt;}
.ls44{letter-spacing:0.089633pt;}
.lsad{letter-spacing:0.090667pt;}
.ls8{letter-spacing:0.106667pt;}
.ls42{letter-spacing:0.114123pt;}
.ls4{letter-spacing:0.133333pt;}
.ls46{letter-spacing:0.134450pt;}
.lsb0{letter-spacing:0.136000pt;}
.ls1a{letter-spacing:0.158926pt;}
.ls5{letter-spacing:0.160000pt;}
.ls86{letter-spacing:0.163002pt;}
.ls7e{letter-spacing:0.163008pt;}
.lsa3{letter-spacing:0.181333pt;}
.lsa{letter-spacing:0.186605pt;}
.ls9c{letter-spacing:0.186667pt;}
.ls9a{letter-spacing:0.190169pt;}
.ls2{letter-spacing:0.213333pt;}
.ls1b{letter-spacing:0.226667pt;}
.lsab{letter-spacing:0.234667pt;}
.ls57{letter-spacing:0.245235pt;}
.lsdb{letter-spacing:0.249333pt;}
.lsaf{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.266667pt;}
.lsd8{letter-spacing:0.267467pt;}
.lsb6{letter-spacing:0.271994pt;}
.lsd6{letter-spacing:0.271995pt;}
.lsa8{letter-spacing:0.272000pt;}
.lse0{letter-spacing:0.276517pt;}
.ls37{letter-spacing:0.293333pt;}
.lsdc{letter-spacing:0.294655pt;}
.lsd5{letter-spacing:0.294667pt;}
.lsd4{letter-spacing:0.299184pt;}
.lsd2{letter-spacing:0.299189pt;}
.lsb5{letter-spacing:0.299192pt;}
.lsda{letter-spacing:0.299193pt;}
.lsde{letter-spacing:0.303717pt;}
.lsa9{letter-spacing:0.317333pt;}
.ls26{letter-spacing:0.320000pt;}
.ls3c{letter-spacing:0.329590pt;}
.lscf{letter-spacing:0.340000pt;}
.ls4d{letter-spacing:0.346667pt;}
.lsa4{letter-spacing:0.362667pt;}
.ls9{letter-spacing:0.373333pt;}
.ls50{letter-spacing:0.400000pt;}
.ls7f{letter-spacing:0.407520pt;}
.lsae{letter-spacing:0.408000pt;}
.ls19{letter-spacing:0.426667pt;}
.lsc5{letter-spacing:0.430667pt;}
.ls3b{letter-spacing:0.434652pt;}
.ls99{letter-spacing:0.434671pt;}
.lse{letter-spacing:0.453333pt;}
.lsf{letter-spacing:0.480000pt;}
.lscd{letter-spacing:0.498667pt;}
.ls3e{letter-spacing:0.506667pt;}
.ls28{letter-spacing:0.533333pt;}
.lsa6{letter-spacing:0.544000pt;}
.ls40{letter-spacing:0.560000pt;}
.lsc9{letter-spacing:0.566667pt;}
.lsb{letter-spacing:0.586667pt;}
.lsa5{letter-spacing:0.589333pt;}
.ls4c{letter-spacing:0.613333pt;}
.lsbc{letter-spacing:0.634667pt;}
.lsd{letter-spacing:0.640000pt;}
.lse4{letter-spacing:0.657333pt;}
.ls3d{letter-spacing:0.666667pt;}
.lsb3{letter-spacing:0.680000pt;}
.ls25{letter-spacing:0.693333pt;}
.lsb1{letter-spacing:0.702667pt;}
.ls34{letter-spacing:0.720000pt;}
.lsa7{letter-spacing:0.725333pt;}
.ls21{letter-spacing:0.746667pt;}
.lsd9{letter-spacing:0.748000pt;}
.lsbd{letter-spacing:0.770667pt;}
.ls79{letter-spacing:0.773333pt;}
.lsd0{letter-spacing:0.793333pt;}
.ls27{letter-spacing:0.800000pt;}
.lsb8{letter-spacing:0.816000pt;}
.ls11{letter-spacing:0.826667pt;}
.lsc{letter-spacing:0.853333pt;}
.lsaa{letter-spacing:0.861333pt;}
.ls95{letter-spacing:0.880000pt;}
.ls12{letter-spacing:0.906667pt;}
.ls23{letter-spacing:0.933333pt;}
.lsca{letter-spacing:0.952000pt;}
.ls32{letter-spacing:0.960000pt;}
.ls94{letter-spacing:0.986667pt;}
.lsc7{letter-spacing:0.997333pt;}
.ls16{letter-spacing:1.013333pt;}
.lsb7{letter-spacing:1.042667pt;}
.ls17{letter-spacing:1.066667pt;}
.lse2{letter-spacing:1.088000pt;}
.ls7c{letter-spacing:1.093333pt;}
.ls20{letter-spacing:1.120000pt;}
.lsc0{letter-spacing:1.133333pt;}
.ls24{letter-spacing:1.146667pt;}
.ls10{letter-spacing:1.173333pt;}
.lscc{letter-spacing:1.174133pt;}
.lse1{letter-spacing:1.178667pt;}
.ls36{letter-spacing:1.200000pt;}
.lscb{letter-spacing:1.224000pt;}
.ls38{letter-spacing:1.226667pt;}
.lsb4{letter-spacing:1.246667pt;}
.lsce{letter-spacing:1.269333pt;}
.ls22{letter-spacing:1.280000pt;}
.ls9d{letter-spacing:1.306667pt;}
.lsd3{letter-spacing:1.314667pt;}
.ls4b{letter-spacing:1.333333pt;}
.ls4f{letter-spacing:1.360000pt;}
.ls35{letter-spacing:1.386667pt;}
.lsb9{letter-spacing:1.405333pt;}
.ls83{letter-spacing:1.413333pt;}
.ls18{letter-spacing:1.440000pt;}
.lsc6{letter-spacing:1.450667pt;}
.ls5f{letter-spacing:1.493333pt;}
.lsd7{letter-spacing:1.496000pt;}
.lsd1{letter-spacing:1.541333pt;}
.ls14{letter-spacing:1.546667pt;}
.lsb2{letter-spacing:1.573067pt;}
.lsa0{letter-spacing:1.573333pt;}
.lsba{letter-spacing:1.586667pt;}
.ls29{letter-spacing:1.600000pt;}
.lse3{letter-spacing:1.632000pt;}
.ls15{letter-spacing:1.653333pt;}
.ls9f{letter-spacing:1.706667pt;}
.lsdd{letter-spacing:1.722667pt;}
.lsdf{letter-spacing:1.758895pt;}
.ls54{letter-spacing:1.760000pt;}
.ls13{letter-spacing:1.813333pt;}
.ls53{letter-spacing:1.840000pt;}
.ls39{letter-spacing:1.866667pt;}
.ls52{letter-spacing:1.920000pt;}
.ls51{letter-spacing:1.973333pt;}
.ls7a{letter-spacing:2.026667pt;}
.ls3f{letter-spacing:2.080000pt;}
.ls55{letter-spacing:2.133333pt;}
.ls9e{letter-spacing:2.186667pt;}
.ls1f{letter-spacing:2.293333pt;}
.ls7b{letter-spacing:2.453333pt;}
.ls60{letter-spacing:2.826667pt;}
.ls1{letter-spacing:3.546667pt;}
.lsbb{letter-spacing:5.090933pt;}
.lse5{letter-spacing:5.780000pt;}
.ls82{letter-spacing:6.465984pt;}
.ls91{letter-spacing:6.710233pt;}
.ls80{letter-spacing:6.737664pt;}
.ls81{letter-spacing:6.819168pt;}
.ls75{letter-spacing:8.063257pt;}
.ls6b{letter-spacing:9.088772pt;}
.ls69{letter-spacing:9.126021pt;}
.ls68{letter-spacing:9.163270pt;}
.ls6d{letter-spacing:9.498512pt;}
.ls45{letter-spacing:10.621518pt;}
.wsef{word-spacing:-18.810779pt;}
.wse9{word-spacing:-18.475537pt;}
.wsea{word-spacing:-18.438288pt;}
.wsec{word-spacing:-18.401039pt;}
.wsfa{word-spacing:-15.846323pt;}
.ws70{word-spacing:-15.200000pt;}
.ws27{word-spacing:-14.986667pt;}
.ws112{word-spacing:-14.746667pt;}
.wse3{word-spacing:-14.666667pt;}
.ws52{word-spacing:-14.560000pt;}
.ws51{word-spacing:-14.533333pt;}
.wsc5{word-spacing:-14.506667pt;}
.ws53{word-spacing:-14.453333pt;}
.wsa0{word-spacing:-14.379456pt;}
.ws13a{word-spacing:-14.346667pt;}
.ws13c{word-spacing:-14.240000pt;}
.wsa5{word-spacing:-14.208272pt;}
.ws8{word-spacing:-14.186667pt;}
.ws13b{word-spacing:-14.133333pt;}
.ws109{word-spacing:-14.106667pt;}
.wsbf{word-spacing:-14.080000pt;}
.ws29{word-spacing:-14.026667pt;}
.wsd0{word-spacing:-13.973333pt;}
.wsd3{word-spacing:-13.920000pt;}
.ws50{word-spacing:-13.866667pt;}
.ws72{word-spacing:-13.813333pt;}
.wscd{word-spacing:-13.760000pt;}
.ws4f{word-spacing:-13.653333pt;}
.ws10e{word-spacing:-13.611168pt;}
.ws9f{word-spacing:-13.600000pt;}
.ws10d{word-spacing:-13.529664pt;}
.ws11c{word-spacing:-13.501966pt;}
.wse5{word-spacing:-13.440000pt;}
.ws71{word-spacing:-13.386667pt;}
.ws26{word-spacing:-13.333333pt;}
.wsce{word-spacing:-13.280000pt;}
.ws10f{word-spacing:-13.257984pt;}
.wsa2{word-spacing:-13.238229pt;}
.ws147{word-spacing:-13.184000pt;}
.wscf{word-spacing:-13.173333pt;}
.ws54{word-spacing:-13.120000pt;}
.wsd7{word-spacing:-13.103774pt;}
.ws28{word-spacing:-13.066667pt;}
.wse4{word-spacing:-13.013333pt;}
.ws7{word-spacing:-12.928000pt;}
.wsc4{word-spacing:-12.586667pt;}
.ws185{word-spacing:-12.376000pt;}
.ws183{word-spacing:-12.194667pt;}
.ws149{word-spacing:-12.013333pt;}
.ws184{word-spacing:-11.741333pt;}
.ws14a{word-spacing:-11.696000pt;}
.ws148{word-spacing:-11.560000pt;}
.ws14c{word-spacing:-11.514667pt;}
.ws146{word-spacing:-11.424000pt;}
.ws4b{word-spacing:-11.333333pt;}
.wsa3{word-spacing:-11.248950pt;}
.wsa6{word-spacing:-11.204133pt;}
.ws141{word-spacing:-11.152000pt;}
.ws14b{word-spacing:-11.106667pt;}
.ws6f{word-spacing:-11.088000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.986667pt;}
.ws1a0{word-spacing:-10.880000pt;}
.ws142{word-spacing:-10.789333pt;}
.wse7{word-spacing:-10.463333pt;}
.wsdd{word-spacing:-10.259006pt;}
.ws6{word-spacing:-10.240000pt;}
.wsda{word-spacing:-10.177261pt;}
.ws145{word-spacing:-9.565333pt;}
.wsdb{word-spacing:-9.482428pt;}
.wsed{word-spacing:-9.386765pt;}
.wsf0{word-spacing:-9.349516pt;}
.wse8{word-spacing:-9.312267pt;}
.wsee{word-spacing:-9.275018pt;}
.ws144{word-spacing:-9.066667pt;}
.ws2{word-spacing:-8.885333pt;}
.ws131{word-spacing:-8.744666pt;}
.ws1{word-spacing:-8.362667pt;}
.wsd6{word-spacing:-8.314845pt;}
.wsf4{word-spacing:-8.159039pt;}
.wsf3{word-spacing:-8.126533pt;}
.wsf2{word-spacing:-7.971300pt;}
.ws4a{word-spacing:-7.933333pt;}
.wsf5{word-spacing:-7.814199pt;}
.ws118{word-spacing:-7.813931pt;}
.wsf9{word-spacing:-7.783066pt;}
.ws117{word-spacing:-7.782800pt;}
.ws128{word-spacing:-7.751669pt;}
.ws4{word-spacing:-7.728000pt;}
.wsfb{word-spacing:-7.284950pt;}
.ws119{word-spacing:-7.284701pt;}
.ws12b{word-spacing:-7.226404pt;}
.ws10c{word-spacing:-7.199520pt;}
.wsfc{word-spacing:-6.846336pt;}
.ws113{word-spacing:-6.846067pt;}
.wsf8{word-spacing:-6.819168pt;}
.ws114{word-spacing:-6.818900pt;}
.wsfd{word-spacing:-6.792000pt;}
.ws11e{word-spacing:-6.791733pt;}
.wsfe{word-spacing:-6.764832pt;}
.ws11f{word-spacing:-6.764566pt;}
.ws127{word-spacing:-6.662077pt;}
.wsd8{word-spacing:-6.498733pt;}
.wseb{word-spacing:-6.406839pt;}
.wsff{word-spacing:-6.384480pt;}
.ws11a{word-spacing:-6.384229pt;}
.ws120{word-spacing:-6.302729pt;}
.ws12a{word-spacing:-6.275562pt;}
.ws132{word-spacing:-6.226202pt;}
.ws100{word-spacing:-5.813952pt;}
.ws11d{word-spacing:-5.813724pt;}
.wsd9{word-spacing:-5.640410pt;}
.ws129{word-spacing:-5.324719pt;}
.ws11b{word-spacing:-5.107383pt;}
.wse6{word-spacing:-5.106107pt;}
.wsdc{word-spacing:-4.945577pt;}
.wsf7{word-spacing:-4.319712pt;}
.ws116{word-spacing:-4.319542pt;}
.wsf6{word-spacing:-3.749184pt;}
.ws115{word-spacing:-3.749037pt;}
.ws134{word-spacing:-2.496000pt;}
.ws2a{word-spacing:-2.293333pt;}
.ws140{word-spacing:-2.186667pt;}
.ws158{word-spacing:-1.994667pt;}
.wsde{word-spacing:-1.760000pt;}
.wsc2{word-spacing:-1.701333pt;}
.ws169{word-spacing:-1.586667pt;}
.wsdf{word-spacing:-1.546667pt;}
.ws157{word-spacing:-1.541333pt;}
.ws13d{word-spacing:-1.493333pt;}
.wse0{word-spacing:-1.440000pt;}
.ws37{word-spacing:-1.386667pt;}
.wsd{word-spacing:-1.333333pt;}
.ws18d{word-spacing:-1.314667pt;}
.ws56{word-spacing:-1.280000pt;}
.ws194{word-spacing:-1.269333pt;}
.ws69{word-spacing:-1.226667pt;}
.ws1a1{word-spacing:-1.224000pt;}
.ws16c{word-spacing:-1.178667pt;}
.wsaa{word-spacing:-1.173333pt;}
.ws14f{word-spacing:-1.133333pt;}
.ws2c{word-spacing:-1.120000pt;}
.ws16d{word-spacing:-1.088000pt;}
.ws34{word-spacing:-1.066667pt;}
.ws18c{word-spacing:-1.042667pt;}
.ws20{word-spacing:-1.013333pt;}
.wsc{word-spacing:-0.960000pt;}
.ws15b{word-spacing:-0.952000pt;}
.ws21{word-spacing:-0.906667pt;}
.ws153{word-spacing:-0.861333pt;}
.ws18{word-spacing:-0.853333pt;}
.ws3f{word-spacing:-0.800000pt;}
.ws174{word-spacing:-0.770667pt;}
.ws1c{word-spacing:-0.746667pt;}
.ws162{word-spacing:-0.725333pt;}
.wsa4{word-spacing:-0.717065pt;}
.ws5a{word-spacing:-0.693333pt;}
.ws15c{word-spacing:-0.680000pt;}
.wse{word-spacing:-0.640000pt;}
.ws15d{word-spacing:-0.634667pt;}
.ws164{word-spacing:-0.589333pt;}
.wsb{word-spacing:-0.586667pt;}
.ws25{word-spacing:-0.544000pt;}
.ws38{word-spacing:-0.533333pt;}
.wsa{word-spacing:-0.506667pt;}
.ws17c{word-spacing:-0.498667pt;}
.ws32{word-spacing:-0.480000pt;}
.ws163{word-spacing:-0.453333pt;}
.ws46{word-spacing:-0.426667pt;}
.ws16a{word-spacing:-0.408000pt;}
.ws19{word-spacing:-0.373333pt;}
.ws138{word-spacing:-0.362667pt;}
.ws5d{word-spacing:-0.320000pt;}
.ws179{word-spacing:-0.317333pt;}
.ws167{word-spacing:-0.272000pt;}
.ws14{word-spacing:-0.266667pt;}
.ws156{word-spacing:-0.234667pt;}
.ws160{word-spacing:-0.226667pt;}
.ws16{word-spacing:-0.213333pt;}
.ws143{word-spacing:-0.181333pt;}
.ws1b{word-spacing:-0.160000pt;}
.ws188{word-spacing:-0.136000pt;}
.ws10b{word-spacing:-0.135840pt;}
.wsaf{word-spacing:-0.134450pt;}
.ws12c{word-spacing:-0.108673pt;}
.ws15{word-spacing:-0.106667pt;}
.ws178{word-spacing:-0.090667pt;}
.wsa7{word-spacing:-0.089633pt;}
.ws10a{word-spacing:-0.081504pt;}
.ws102{word-spacing:-0.074498pt;}
.ws105{word-spacing:-0.062265pt;}
.ws125{word-spacing:-0.062262pt;}
.wsc0{word-spacing:-0.058667pt;}
.wsb1{word-spacing:-0.057061pt;}
.ws130{word-spacing:-0.054334pt;}
.ws59{word-spacing:-0.053333pt;}
.ws15f{word-spacing:-0.045333pt;}
.wsa1{word-spacing:-0.044817pt;}
.wse1{word-spacing:-0.040873pt;}
.ws103{word-spacing:-0.037249pt;}
.ws135{word-spacing:-0.031131pt;}
.ws106{word-spacing:-0.027168pt;}
.ws122{word-spacing:-0.027167pt;}
.ws0{word-spacing:0.000000pt;}
.ws121{word-spacing:0.027167pt;}
.ws108{word-spacing:0.027168pt;}
.wse2{word-spacing:0.040873pt;}
.wsb0{word-spacing:0.044817pt;}
.ws18e{word-spacing:0.045333pt;}
.ws7c{word-spacing:0.053333pt;}
.ws126{word-spacing:0.054334pt;}
.wsad{word-spacing:0.057061pt;}
.ws17a{word-spacing:0.090667pt;}
.ws79{word-spacing:0.106667pt;}
.ws19c{word-spacing:0.136000pt;}
.ws64{word-spacing:0.160000pt;}
.ws16f{word-spacing:0.181333pt;}
.wsf1{word-spacing:0.186245pt;}
.ws33{word-spacing:0.213333pt;}
.ws14d{word-spacing:0.226667pt;}
.ws30{word-spacing:0.266667pt;}
.ws172{word-spacing:0.272000pt;}
.wsae{word-spacing:0.313716pt;}
.ws14e{word-spacing:0.317333pt;}
.ws3d{word-spacing:0.320000pt;}
.ws8f{word-spacing:0.362667pt;}
.ws10{word-spacing:0.373333pt;}
.ws159{word-spacing:0.408000pt;}
.wsab{word-spacing:0.426667pt;}
.ws195{word-spacing:0.453333pt;}
.wsa9{word-spacing:0.480000pt;}
.ws123{word-spacing:0.489005pt;}
.ws107{word-spacing:0.489024pt;}
.ws124{word-spacing:0.498099pt;}
.ws9c{word-spacing:0.498667pt;}
.ws45{word-spacing:0.533333pt;}
.ws22{word-spacing:0.586667pt;}
.ws18f{word-spacing:0.589333pt;}
.ws17b{word-spacing:0.634667pt;}
.ws3a{word-spacing:0.640000pt;}
.ws152{word-spacing:0.680000pt;}
.ws6d{word-spacing:0.693333pt;}
.ws104{word-spacing:0.707732pt;}
.ws80{word-spacing:0.725333pt;}
.ws39{word-spacing:0.746667pt;}
.ws15e{word-spacing:0.770667pt;}
.wsd2{word-spacing:0.800000pt;}
.ws165{word-spacing:0.816000pt;}
.ws73{word-spacing:0.853333pt;}
.ws177{word-spacing:0.861333pt;}
.wsac{word-spacing:0.906667pt;}
.ws181{word-spacing:0.952000pt;}
.ws7d{word-spacing:0.960000pt;}
.ws175{word-spacing:0.997333pt;}
.ws13{word-spacing:1.013333pt;}
.wsb2{word-spacing:1.027104pt;}
.ws15a{word-spacing:1.042667pt;}
.ws6c{word-spacing:1.066667pt;}
.ws154{word-spacing:1.088000pt;}
.ws3c{word-spacing:1.120000pt;}
.ws150{word-spacing:1.133333pt;}
.ws2d{word-spacing:1.173333pt;}
.ws6e{word-spacing:1.224000pt;}
.ws6a{word-spacing:1.226667pt;}
.ws187{word-spacing:1.269333pt;}
.ws5f{word-spacing:1.280000pt;}
.ws151{word-spacing:1.314667pt;}
.wsf{word-spacing:1.333333pt;}
.ws11{word-spacing:1.386667pt;}
.ws176{word-spacing:1.405333pt;}
.ws57{word-spacing:1.440000pt;}
.ws16b{word-spacing:1.450667pt;}
.ws36{word-spacing:1.493333pt;}
.ws197{word-spacing:1.496000pt;}
.ws17f{word-spacing:1.541333pt;}
.ws4c{word-spacing:1.546667pt;}
.ws19b{word-spacing:1.586667pt;}
.ws23{word-spacing:1.600000pt;}
.ws193{word-spacing:1.632000pt;}
.ws48{word-spacing:1.653333pt;}
.ws86{word-spacing:1.677333pt;}
.ws3b{word-spacing:1.706667pt;}
.ws166{word-spacing:1.722667pt;}
.ws75{word-spacing:1.760000pt;}
.ws186{word-spacing:1.768000pt;}
.ws8a{word-spacing:1.813333pt;}
.ws16e{word-spacing:1.858667pt;}
.ws61{word-spacing:1.866667pt;}
.ws1e{word-spacing:1.920000pt;}
.ws99{word-spacing:1.949333pt;}
.ws77{word-spacing:1.973333pt;}
.ws17d{word-spacing:1.994667pt;}
.ws60{word-spacing:2.026667pt;}
.ws199{word-spacing:2.040000pt;}
.ws3e{word-spacing:2.080000pt;}
.ws170{word-spacing:2.130667pt;}
.ws12{word-spacing:2.133333pt;}
.ws190{word-spacing:2.176000pt;}
.wsa8{word-spacing:2.186667pt;}
.ws95{word-spacing:2.221333pt;}
.ws65{word-spacing:2.240000pt;}
.ws18b{word-spacing:2.266667pt;}
.ws76{word-spacing:2.293333pt;}
.ws8d{word-spacing:2.312000pt;}
.ws43{word-spacing:2.346667pt;}
.ws18a{word-spacing:2.357333pt;}
.ws7b{word-spacing:2.400000pt;}
.ws171{word-spacing:2.402667pt;}
.ws189{word-spacing:2.448000pt;}
.ws5c{word-spacing:2.453333pt;}
.ws198{word-spacing:2.493333pt;}
.ws31{word-spacing:2.506667pt;}
.ws92{word-spacing:2.538667pt;}
.ws1a{word-spacing:2.560000pt;}
.ws1f{word-spacing:2.613333pt;}
.ws191{word-spacing:2.629333pt;}
.ws2e{word-spacing:2.666667pt;}
.ws4e{word-spacing:2.674667pt;}
.ws78{word-spacing:2.720000pt;}
.ws161{word-spacing:2.765333pt;}
.wsc6{word-spacing:2.773333pt;}
.ws87{word-spacing:2.810667pt;}
.ws62{word-spacing:2.826667pt;}
.ws12e{word-spacing:2.880000pt;}
.ws84{word-spacing:2.901333pt;}
.ws55{word-spacing:2.933333pt;}
.ws182{word-spacing:2.946667pt;}
.ws63{word-spacing:2.986667pt;}
.ws44{word-spacing:3.040000pt;}
.ws94{word-spacing:3.082667pt;}
.ws68{word-spacing:3.093333pt;}
.ws5b{word-spacing:3.146667pt;}
.ws168{word-spacing:3.173333pt;}
.ws6b{word-spacing:3.200000pt;}
.wsb5{word-spacing:3.253333pt;}
.wsd4{word-spacing:3.306667pt;}
.ws8c{word-spacing:3.354667pt;}
.ws42{word-spacing:3.360000pt;}
.ws7f{word-spacing:3.400000pt;}
.ws47{word-spacing:3.413333pt;}
.ws19a{word-spacing:3.445333pt;}
.ws1d{word-spacing:3.466667pt;}
.ws58{word-spacing:3.520000pt;}
.ws17e{word-spacing:3.536000pt;}
.wsb3{word-spacing:3.573333pt;}
.ws4d{word-spacing:3.581333pt;}
.wsca{word-spacing:3.626667pt;}
.ws196{word-spacing:3.672000pt;}
.ws35{word-spacing:3.680000pt;}
.ws192{word-spacing:3.717333pt;}
.ws2f{word-spacing:3.733333pt;}
.ws19d{word-spacing:3.762667pt;}
.ws155{word-spacing:3.808000pt;}
.wsc1{word-spacing:3.840000pt;}
.wsc9{word-spacing:3.893333pt;}
.ws17{word-spacing:3.946667pt;}
.wsc3{word-spacing:4.000000pt;}
.wsbe{word-spacing:4.034667pt;}
.wsb8{word-spacing:4.053333pt;}
.ws7e{word-spacing:4.080000pt;}
.wsd5{word-spacing:4.106667pt;}
.wsd1{word-spacing:4.160000pt;}
.wsc8{word-spacing:4.213333pt;}
.ws96{word-spacing:4.261333pt;}
.wsb4{word-spacing:4.266667pt;}
.ws82{word-spacing:4.306667pt;}
.ws133{word-spacing:4.320000pt;}
.ws180{word-spacing:4.352000pt;}
.wscc{word-spacing:4.426667pt;}
.ws1a2{word-spacing:4.442667pt;}
.wsb7{word-spacing:4.480000pt;}
.wsb9{word-spacing:4.533333pt;}
.wsb6{word-spacing:4.586667pt;}
.ws19f{word-spacing:4.624000pt;}
.wscb{word-spacing:4.640000pt;}
.ws93{word-spacing:4.669333pt;}
.ws9a{word-spacing:4.760000pt;}
.wsbb{word-spacing:4.800000pt;}
.ws13f{word-spacing:4.853333pt;}
.ws5e{word-spacing:5.013333pt;}
.wsba{word-spacing:5.066667pt;}
.wsc7{word-spacing:5.120000pt;}
.ws12f{word-spacing:5.226667pt;}
.ws13e{word-spacing:5.280000pt;}
.ws83{word-spacing:5.349333pt;}
.ws81{word-spacing:5.485333pt;}
.ws91{word-spacing:5.576000pt;}
.ws173{word-spacing:5.666667pt;}
.ws2b{word-spacing:5.760000pt;}
.ws49{word-spacing:6.133333pt;}
.ws41{word-spacing:6.293333pt;}
.ws98{word-spacing:6.346667pt;}
.ws19e{word-spacing:6.392000pt;}
.ws12d{word-spacing:6.400000pt;}
.ws85{word-spacing:6.437333pt;}
.ws8e{word-spacing:6.528000pt;}
.ws88{word-spacing:6.800000pt;}
.ws101{word-spacing:6.880000pt;}
.ws9d{word-spacing:6.936000pt;}
.ws89{word-spacing:7.389333pt;}
.ws74{word-spacing:7.413333pt;}
.ws9b{word-spacing:7.480000pt;}
.ws110{word-spacing:8.160000pt;}
.ws7a{word-spacing:8.320000pt;}
.ws9e{word-spacing:8.341333pt;}
.ws8b{word-spacing:8.477333pt;}
.ws90{word-spacing:9.474667pt;}
.wsbd{word-spacing:10.336000pt;}
.ws111{word-spacing:10.400000pt;}
.wsbc{word-spacing:10.653333pt;}
.ws97{word-spacing:11.333333pt;}
.ws1a3{word-spacing:12.013333pt;}
.ws1a4{word-spacing:15.640000pt;}
.ws40{word-spacing:28.693333pt;}
.ws66{word-spacing:60.379461pt;}
.ws67{word-spacing:60.383994pt;}
.ws24{word-spacing:64.237333pt;}
.ws139{word-spacing:84.909333pt;}
.ws136{word-spacing:313.615988pt;}
.ws137{word-spacing:389.232000pt;}
.ws9{word-spacing:1103.390097pt;}
._b{margin-left:-64.600000pt;}
._e{margin-left:-22.208005pt;}
._7{margin-left:-14.733333pt;}
._10{margin-left:-13.011216pt;}
._11{margin-left:-12.104008pt;}
._12{margin-left:-10.653883pt;}
._21{margin-left:-8.939776pt;}
._20{margin-left:-7.946667pt;}
._22{margin-left:-6.601840pt;}
._3{margin-left:-5.706667pt;}
._1{margin-left:-4.109067pt;}
._2{margin-left:-2.585600pt;}
._0{margin-left:-1.450667pt;}
._5{width:1.402667pt;}
._23{width:2.345600pt;}
._6{width:3.237333pt;}
._1e{width:4.397326pt;}
._1d{width:5.344800pt;}
._1c{width:7.253326pt;}
._1f{width:9.590728pt;}
._38{width:12.784000pt;}
._f{width:13.869066pt;}
._8{width:16.320000pt;}
._4{width:34.826629pt;}
._d{width:36.000000pt;}
._1b{width:39.033600pt;}
._15{width:45.017594pt;}
._2d{width:46.197333pt;}
._2c{width:47.511988pt;}
._a{width:48.552000pt;}
._2f{width:57.663988pt;}
._9{width:64.237333pt;}
._19{width:65.603200pt;}
._28{width:84.864000pt;}
._36{width:102.408000pt;}
._33{width:132.418667pt;}
._34{width:137.858667pt;}
._31{width:148.285326pt;}
._30{width:149.554654pt;}
._1a{width:152.183994pt;}
._2a{width:172.902933pt;}
._35{width:179.247992pt;}
._29{width:197.834667pt;}
._17{width:202.644533pt;}
._2e{width:332.656000pt;}
._25{width:364.887988pt;}
._26{width:369.783993pt;}
._14{width:391.815979pt;}
._24{width:407.229333pt;}
._2b{width:413.258667pt;}
._27{width:426.589333pt;}
._16{width:430.984000pt;}
._18{width:441.093333pt;}
._37{width:457.007968pt;}
._32{width:533.663982pt;}
._13{width:559.504000pt;}
._c{width:2106.141278pt;}
.fs15{font-size:27.166933pt;}
.fs13{font-size:27.167999pt;}
.fs16{font-size:31.131200pt;}
.fs12{font-size:31.132266pt;}
.fs9{font-size:31.733332pt;}
.fs11{font-size:32.506133pt;}
.fs17{font-size:34.978666pt;}
.fs14{font-size:34.980267pt;}
.fs10{font-size:37.249067pt;}
.fs4{font-size:37.333333pt;}
.fse{font-size:40.872533pt;}
.fsf{font-size:41.853333pt;}
.fs5{font-size:42.666667pt;}
.fsc{font-size:44.816533pt;}
.fs6{font-size:45.333333pt;}
.fs7{font-size:50.666667pt;}
.fsd{font-size:52.625600pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:57.061333pt;}
.fsa{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1f5{bottom:3.134155pt;}
.y1fb{bottom:3.427897pt;}
.y5{bottom:59.133337pt;}
.y22{bottom:61.181335pt;}
.y4{bottom:86.333337pt;}
.y35c{bottom:100.330933pt;}
.y3ea{bottom:100.372814pt;}
.y30c{bottom:100.384135pt;}
.y30d{bottom:100.384162pt;}
.y317{bottom:100.384178pt;}
.y321{bottom:100.384199pt;}
.y32b{bottom:100.384219pt;}
.y335{bottom:100.384240pt;}
.y33b{bottom:100.384245pt;}
.y33f{bottom:100.384258pt;}
.y30b{bottom:100.384267pt;}
.y3f6{bottom:100.384399pt;}
.y55{bottom:100.400267pt;}
.y8b{bottom:100.813639pt;}
.y23b{bottom:100.942128pt;}
.y297{bottom:101.052287pt;}
.y18c{bottom:101.981637pt;}
.y3e6{bottom:101.986898pt;}
.y1e8{bottom:101.986928pt;}
.yf2{bottom:101.986938pt;}
.y12d{bottom:102.110921pt;}
.y2c6{bottom:102.110942pt;}
.y8f{bottom:102.111064pt;}
.y259{bottom:102.501872pt;}
.y4f6{bottom:103.657620pt;}
.y4f5{bottom:103.997606pt;}
.y538{bottom:104.008954pt;}
.y3f5{bottom:108.385468pt;}
.y340{bottom:108.385591pt;}
.y3ec{bottom:108.385600pt;}
.y3f7{bottom:108.385733pt;}
.y54{bottom:113.728267pt;}
.y432{bottom:116.581596pt;}
.y4b3{bottom:116.985620pt;}
.y35b{bottom:116.997599pt;}
.y4f4{bottom:117.325606pt;}
.y537{bottom:117.336954pt;}
.y8a{bottom:117.480306pt;}
.y296{bottom:117.718953pt;}
.y18b{bottom:118.648304pt;}
.y3e5{bottom:118.653564pt;}
.y1e7{bottom:118.653595pt;}
.yf1{bottom:118.653605pt;}
.y12c{bottom:118.777588pt;}
.y2c5{bottom:118.777608pt;}
.y8e{bottom:118.777730pt;}
.y258{bottom:119.168538pt;}
.y21{bottom:123.790666pt;}
.y4d{bottom:125.521200pt;}
.y53{bottom:127.056267pt;}
.y431{bottom:129.909596pt;}
.y4b2{bottom:130.313620pt;}
.y472{bottom:130.374262pt;}
.y4f3{bottom:130.653606pt;}
.y536{bottom:130.664954pt;}
.y35a{bottom:133.664266pt;}
.y89{bottom:134.146973pt;}
.y295{bottom:134.385620pt;}
.y18a{bottom:135.314971pt;}
.y3e4{bottom:135.320231pt;}
.y1e6{bottom:135.320262pt;}
.yf0{bottom:135.320272pt;}
.y12b{bottom:135.444255pt;}
.y2c4{bottom:135.444275pt;}
.y8d{bottom:135.444397pt;}
.y257{bottom:135.835205pt;}
.y4c{bottom:142.187866pt;}
.y430{bottom:143.237596pt;}
.y4b1{bottom:143.641620pt;}
.y471{bottom:143.702262pt;}
.y4f2{bottom:143.981606pt;}
.y535{bottom:143.992954pt;}
.y52{bottom:144.917603pt;}
.y359{bottom:150.330933pt;}
.y88{bottom:150.813639pt;}
.y294{bottom:151.052287pt;}
.y189{bottom:151.981637pt;}
.y3e3{bottom:151.986898pt;}
.yef{bottom:151.986938pt;}
.y12a{bottom:152.110921pt;}
.y2c3{bottom:152.110942pt;}
.y256{bottom:152.501872pt;}
.y42f{bottom:156.565596pt;}
.y4b0{bottom:156.969620pt;}
.y1af{bottom:156.974944pt;}
.y470{bottom:157.030262pt;}
.y237{bottom:157.037567pt;}
.y4f1{bottom:157.309606pt;}
.y534{bottom:157.320954pt;}
.y4b{bottom:158.854533pt;}
.y221{bottom:159.148804pt;}
.y236{bottom:165.201551pt;}
.y358{bottom:166.997599pt;}
.y51{bottom:167.150274pt;}
.y87{bottom:167.480306pt;}
.y293{bottom:167.718953pt;}
.y188{bottom:168.648304pt;}
.y3e2{bottom:168.653564pt;}
.y1e5{bottom:168.653595pt;}
.yee{bottom:168.653605pt;}
.y129{bottom:168.777588pt;}
.y2c2{bottom:168.777608pt;}
.y255{bottom:169.168538pt;}
.y42e{bottom:169.893596pt;}
.y4af{bottom:170.297620pt;}
.y1ae{bottom:170.302944pt;}
.y46f{bottom:170.358262pt;}
.y4f0{bottom:170.637606pt;}
.y533{bottom:170.648954pt;}
.y235{bottom:173.365535pt;}
.y18{bottom:175.052000pt;}
.y4a{bottom:175.521200pt;}
.y94{bottom:177.443464pt;}
.y50{bottom:180.478274pt;}
.y42d{bottom:183.221596pt;}
.y4ae{bottom:183.625620pt;}
.y1ad{bottom:183.630944pt;}
.y357{bottom:183.664266pt;}
.y46e{bottom:183.686262pt;}
.y4ef{bottom:183.965606pt;}
.y532{bottom:183.976954pt;}
.y86{bottom:184.146973pt;}
.y292{bottom:184.385620pt;}
.y187{bottom:185.314971pt;}
.y3e1{bottom:185.320231pt;}
.yed{bottom:185.320272pt;}
.y128{bottom:185.444255pt;}
.y2c1{bottom:185.444275pt;}
.y254{bottom:185.835205pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y234{bottom:189.686711pt;}
.y49{bottom:192.187866pt;}
.y93{bottom:195.304810pt;}
.y42c{bottom:196.549596pt;}
.y4ad{bottom:196.953620pt;}
.y1ac{bottom:196.958944pt;}
.y46d{bottom:197.014262pt;}
.y4ee{bottom:197.293606pt;}
.y531{bottom:197.304954pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y233{bottom:197.850694pt;}
.y356{bottom:200.330933pt;}
.y4f{bottom:200.515608pt;}
.y85{bottom:200.813639pt;}
.y291{bottom:201.052287pt;}
.y186{bottom:201.981637pt;}
.y1e4{bottom:201.986898pt;}
.yec{bottom:201.986938pt;}
.y127{bottom:202.110921pt;}
.y2c0{bottom:202.110942pt;}
.y253{bottom:202.501872pt;}
.y232{bottom:206.014678pt;}
.y92{bottom:207.889590pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y48{bottom:208.854533pt;}
.y42b{bottom:209.877596pt;}
.y4ac{bottom:210.281620pt;}
.y1ab{bottom:210.286944pt;}
.y46c{bottom:210.342262pt;}
.y4ed{bottom:210.621606pt;}
.y530{bottom:210.632954pt;}
.y4e{bottom:213.843608pt;}
.y231{bottom:214.178662pt;}
.y355{bottom:216.997599pt;}
.y84{bottom:217.480306pt;}
.y290{bottom:217.718953pt;}
.y185{bottom:218.648304pt;}
.y1e3{bottom:218.653564pt;}
.yeb{bottom:218.653605pt;}
.y126{bottom:218.777588pt;}
.y2bf{bottom:218.777608pt;}
.y252{bottom:219.168538pt;}
.y230{bottom:222.342646pt;}
.y42a{bottom:223.205596pt;}
.y4ab{bottom:223.609620pt;}
.y1aa{bottom:223.614944pt;}
.y46b{bottom:223.670262pt;}
.y4ec{bottom:223.949606pt;}
.y52f{bottom:223.960954pt;}
.y47{bottom:225.521200pt;}
.y91{bottom:225.750936pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y354{bottom:233.664266pt;}
.y83{bottom:234.146973pt;}
.y28f{bottom:234.385620pt;}
.y184{bottom:235.314971pt;}
.y1e2{bottom:235.320231pt;}
.yea{bottom:235.320272pt;}
.y125{bottom:235.444255pt;}
.y2be{bottom:235.444275pt;}
.y251{bottom:235.835205pt;}
.y429{bottom:236.533596pt;}
.y4aa{bottom:236.937620pt;}
.y1a9{bottom:236.942944pt;}
.y46a{bottom:236.998262pt;}
.y4eb{bottom:237.277606pt;}
.y52e{bottom:237.288954pt;}
.y22f{bottom:238.663821pt;}
.y46{bottom:242.187866pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yc0{bottom:245.779343pt;}
.y341{bottom:246.516255pt;}
.y22e{bottom:246.827805pt;}
.y428{bottom:249.861596pt;}
.y4a9{bottom:250.265620pt;}
.y1a8{bottom:250.270944pt;}
.y469{bottom:250.326262pt;}
.y353{bottom:250.330933pt;}
.y4ea{bottom:250.605606pt;}
.y52d{bottom:250.616954pt;}
.y82{bottom:250.813639pt;}
.y28e{bottom:251.052287pt;}
.y183{bottom:251.981637pt;}
.y1e1{bottom:251.986898pt;}
.ye9{bottom:251.986938pt;}
.y124{bottom:252.110921pt;}
.y2bd{bottom:252.110942pt;}
.y250{bottom:252.501872pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y30e{bottom:254.517496pt;}
.y318{bottom:254.517511pt;}
.y322{bottom:254.517532pt;}
.y32c{bottom:254.517553pt;}
.y342{bottom:254.517588pt;}
.y22d{bottom:254.991789pt;}
.y44{bottom:258.854533pt;}
.ybf{bottom:262.484676pt;}
.y22c{bottom:263.155773pt;}
.y427{bottom:263.189596pt;}
.y4a8{bottom:263.593620pt;}
.y1a7{bottom:263.598944pt;}
.y468{bottom:263.654262pt;}
.y4e9{bottom:263.933606pt;}
.y52c{bottom:263.944954pt;}
.y352{bottom:266.997599pt;}
.y81{bottom:267.480306pt;}
.y28d{bottom:267.718953pt;}
.y182{bottom:268.648304pt;}
.y1e0{bottom:268.653564pt;}
.ye8{bottom:268.653605pt;}
.y123{bottom:268.777588pt;}
.y2bc{bottom:268.777608pt;}
.y24f{bottom:269.168538pt;}
.y22b{bottom:271.319756pt;}
.y43{bottom:275.521200pt;}
.y3ed{bottom:275.752665pt;}
.y3f8{bottom:275.752808pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y4a7{bottom:276.921620pt;}
.y1a6{bottom:276.926944pt;}
.y467{bottom:276.982262pt;}
.y4e8{bottom:277.261606pt;}
.y52b{bottom:277.272954pt;}
.ybe{bottom:279.127343pt;}
.y22a{bottom:279.483740pt;}
.y351{bottom:283.664266pt;}
.y3ee{bottom:283.753999pt;}
.y3f9{bottom:283.754141pt;}
.y80{bottom:284.146973pt;}
.y28c{bottom:284.385620pt;}
.y219{bottom:284.536686pt;}
.y181{bottom:285.314971pt;}
.y1df{bottom:285.320231pt;}
.ye7{bottom:285.320272pt;}
.y122{bottom:285.444255pt;}
.y2bb{bottom:285.444275pt;}
.y24e{bottom:285.835205pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y4a6{bottom:290.249620pt;}
.y1a5{bottom:290.254944pt;}
.y466{bottom:290.310262pt;}
.y4e7{bottom:290.589606pt;}
.y52a{bottom:290.600954pt;}
.y42{bottom:292.187866pt;}
.ybd{bottom:292.431330pt;}
.y426{bottom:293.189596pt;}
.y218{bottom:293.860799pt;}
.y229{bottom:295.804916pt;}
.y350{bottom:300.330933pt;}
.y7f{bottom:300.813639pt;}
.y28b{bottom:301.052287pt;}
.y180{bottom:301.981637pt;}
.y1de{bottom:301.986898pt;}
.ye6{bottom:301.986938pt;}
.y121{bottom:302.110921pt;}
.y2ba{bottom:302.110942pt;}
.y24d{bottom:302.501872pt;}
.y4a5{bottom:303.577620pt;}
.y1a4{bottom:303.582944pt;}
.y465{bottom:303.638262pt;}
.y4e6{bottom:303.917606pt;}
.y529{bottom:303.928954pt;}
.y228{bottom:303.968899pt;}
.y41{bottom:308.854533pt;}
.ybc{bottom:309.068664pt;}
.yf{bottom:309.452000pt;}
.y227{bottom:312.132883pt;}
.y4a4{bottom:316.905620pt;}
.y1a3{bottom:316.910944pt;}
.y464{bottom:316.966262pt;}
.y34f{bottom:316.997599pt;}
.y4e5{bottom:317.245606pt;}
.y528{bottom:317.256954pt;}
.y7e{bottom:317.480306pt;}
.y28a{bottom:317.718953pt;}
.y17f{bottom:318.648304pt;}
.y1dd{bottom:318.653564pt;}
.ye5{bottom:318.653605pt;}
.y120{bottom:318.777588pt;}
.y2d6{bottom:318.777608pt;}
.y24c{bottom:319.168538pt;}
.y226{bottom:320.296867pt;}
.y40{bottom:325.521200pt;}
.ybb{bottom:325.705997pt;}
.y225{bottom:328.460851pt;}
.y4a3{bottom:330.233620pt;}
.y1a2{bottom:330.238944pt;}
.y463{bottom:330.294262pt;}
.y4e4{bottom:330.573606pt;}
.y527{bottom:330.584954pt;}
.y220{bottom:331.153341pt;}
.y34e{bottom:333.664266pt;}
.y7d{bottom:334.146973pt;}
.y289{bottom:334.385620pt;}
.y17e{bottom:335.314971pt;}
.y1dc{bottom:335.320231pt;}
.ye4{bottom:335.320272pt;}
.y2e5{bottom:335.438921pt;}
.y11f{bottom:335.444255pt;}
.y2b9{bottom:335.444275pt;}
.y24b{bottom:335.835205pt;}
.y224{bottom:336.624835pt;}
.y3f{bottom:342.187866pt;}
.yba{bottom:342.343330pt;}
.y4a2{bottom:343.561620pt;}
.y1a1{bottom:343.566944pt;}
.y462{bottom:343.622262pt;}
.ye{bottom:343.809333pt;}
.y4e3{bottom:343.901606pt;}
.y526{bottom:343.912954pt;}
.y223{bottom:344.788818pt;}
.y34d{bottom:350.330933pt;}
.y7c{bottom:350.813639pt;}
.y288{bottom:351.052287pt;}
.y17d{bottom:351.981637pt;}
.y1db{bottom:351.986898pt;}
.ye3{bottom:351.986938pt;}
.y11e{bottom:352.110921pt;}
.y2d5{bottom:352.110942pt;}
.y24a{bottom:352.501872pt;}
.y21b{bottom:352.540810pt;}
.y4a1{bottom:356.889620pt;}
.y1a0{bottom:356.894944pt;}
.y461{bottom:356.950262pt;}
.y4e2{bottom:357.229606pt;}
.y525{bottom:357.240954pt;}
.y3e{bottom:358.854533pt;}
.yb9{bottom:358.980664pt;}
.y425{bottom:359.928260pt;}
.y21a{bottom:360.704793pt;}
.y222{bottom:361.316813pt;}
.yd{bottom:362.706666pt;}
.y34c{bottom:366.997599pt;}
.y7b{bottom:367.480306pt;}
.y287{bottom:367.718953pt;}
.y17c{bottom:368.648304pt;}
.y1d9{bottom:368.653564pt;}
.ye2{bottom:368.653605pt;}
.y1cb{bottom:368.658938pt;}
.y11d{bottom:368.777588pt;}
.y2d4{bottom:368.777608pt;}
.y249{bottom:369.168538pt;}
.y4a0{bottom:370.217620pt;}
.y19f{bottom:370.222944pt;}
.y460{bottom:370.278262pt;}
.y4e1{bottom:370.557606pt;}
.y524{bottom:370.568954pt;}
.y424{bottom:373.256260pt;}
.y3d{bottom:375.521200pt;}
.yb8{bottom:375.617997pt;}
.y21d{bottom:382.975761pt;}
.y49f{bottom:383.545620pt;}
.y45f{bottom:383.606262pt;}
.y34b{bottom:383.664266pt;}
.y4e0{bottom:383.885606pt;}
.y523{bottom:383.896954pt;}
.y7a{bottom:384.146973pt;}
.y286{bottom:384.385620pt;}
.y17b{bottom:385.314971pt;}
.y1d8{bottom:385.320231pt;}
.ye1{bottom:385.320272pt;}
.y11c{bottom:385.444255pt;}
.y2d3{bottom:385.444275pt;}
.y248{bottom:385.835205pt;}
.y423{bottom:386.584260pt;}
.y19e{bottom:388.084269pt;}
.y21c{bottom:391.139744pt;}
.y3c{bottom:392.187866pt;}
.yb7{bottom:392.249989pt;}
.y30f{bottom:393.146829pt;}
.y319{bottom:393.146845pt;}
.y323{bottom:393.146865pt;}
.y32d{bottom:393.146886pt;}
.y343{bottom:393.146921pt;}
.y239{bottom:394.915698pt;}
.y49e{bottom:396.873620pt;}
.y45e{bottom:396.934262pt;}
.y4df{bottom:397.213606pt;}
.y522{bottom:397.224954pt;}
.y422{bottom:399.912260pt;}
.y19d{bottom:400.136277pt;}
.y79{bottom:400.813639pt;}
.y285{bottom:401.052287pt;}
.y310{bottom:401.148162pt;}
.y31a{bottom:401.148178pt;}
.y324{bottom:401.148199pt;}
.y32e{bottom:401.148219pt;}
.y336{bottom:401.148233pt;}
.y344{bottom:401.148255pt;}
.y17a{bottom:401.981637pt;}
.y1d7{bottom:401.986898pt;}
.ye0{bottom:401.986938pt;}
.y11b{bottom:402.110921pt;}
.y2d2{bottom:402.110942pt;}
.y247{bottom:402.501872pt;}
.y238{bottom:406.107747pt;}
.y3b{bottom:408.854533pt;}
.yb6{bottom:408.887322pt;}
.y49d{bottom:410.201620pt;}
.y45d{bottom:410.262262pt;}
.y4de{bottom:410.541606pt;}
.y521{bottom:410.552954pt;}
.y21f{bottom:412.582087pt;}
.y421{bottom:413.240260pt;}
.y19c{bottom:413.464277pt;}
.y78{bottom:417.480306pt;}
.y284{bottom:417.718953pt;}
.y179{bottom:418.648304pt;}
.y1d6{bottom:418.653564pt;}
.ydf{bottom:418.653605pt;}
.y11a{bottom:418.777588pt;}
.y2d1{bottom:418.777608pt;}
.y246{bottom:419.168538pt;}
.y21e{bottom:420.746071pt;}
.y49c{bottom:423.529620pt;}
.y45c{bottom:423.590262pt;}
.y4dd{bottom:423.869606pt;}
.y520{bottom:423.880954pt;}
.y3a{bottom:425.521200pt;}
.yb5{bottom:425.524656pt;}
.y420{bottom:426.568260pt;}
.y19b{bottom:426.792277pt;}
.y77{bottom:434.146973pt;}
.y283{bottom:434.385620pt;}
.y178{bottom:435.314971pt;}
.y1d5{bottom:435.320231pt;}
.yde{bottom:435.320272pt;}
.y119{bottom:435.444255pt;}
.y2d0{bottom:435.444275pt;}
.y245{bottom:435.835205pt;}
.y23a{bottom:436.389079pt;}
.y49b{bottom:436.857620pt;}
.y45b{bottom:436.918262pt;}
.y4dc{bottom:437.197606pt;}
.y51f{bottom:437.208954pt;}
.y1f6{bottom:438.500814pt;}
.yb4{bottom:438.852656pt;}
.y41f{bottom:439.896260pt;}
.y19a{bottom:440.120277pt;}
.y3d1{bottom:441.920670pt;}
.y3d7{bottom:441.943337pt;}
.y39{bottom:442.187866pt;}
.yc{bottom:446.990669pt;}
.y49a{bottom:450.185620pt;}
.y45a{bottom:450.246262pt;}
.y4db{bottom:450.525606pt;}
.y51e{bottom:450.536954pt;}
.y76{bottom:450.813639pt;}
.y282{bottom:451.052287pt;}
.y177{bottom:451.981637pt;}
.y1d4{bottom:451.986898pt;}
.ydd{bottom:451.986938pt;}
.y118{bottom:452.110921pt;}
.y2cf{bottom:452.110942pt;}
.y244{bottom:452.501872pt;}
.y41e{bottom:453.224260pt;}
.y199{bottom:453.448277pt;}
.y3d0{bottom:455.248670pt;}
.y3d6{bottom:455.271337pt;}
.y3dc{bottom:455.294004pt;}
.yb3{bottom:455.489989pt;}
.y45{bottom:458.854533pt;}
.y3eb{bottom:458.902806pt;}
.y3e7{bottom:458.914135pt;}
.y3ef{bottom:458.921999pt;}
.y3fa{bottom:458.922141pt;}
.yb{bottom:462.990669pt;}
.y499{bottom:463.513620pt;}
.y459{bottom:463.574262pt;}
.y4da{bottom:463.853606pt;}
.y51d{bottom:463.864954pt;}
.y41d{bottom:466.552260pt;}
.y198{bottom:466.776277pt;}
.y3f0{bottom:466.923332pt;}
.y3fb{bottom:466.923474pt;}
.y75{bottom:467.480306pt;}
.y281{bottom:467.718953pt;}
.y3cf{bottom:468.576670pt;}
.y3d5{bottom:468.599337pt;}
.y3db{bottom:468.622004pt;}
.y3e0{bottom:468.644669pt;}
.y176{bottom:468.648304pt;}
.y1d3{bottom:468.653564pt;}
.ydc{bottom:468.653605pt;}
.y117{bottom:468.777588pt;}
.y2ce{bottom:468.777608pt;}
.y243{bottom:469.168538pt;}
.y1f2{bottom:469.677327pt;}
.yb2{bottom:472.127322pt;}
.y38{bottom:475.521200pt;}
.y498{bottom:476.841620pt;}
.y458{bottom:476.902262pt;}
.y4d9{bottom:477.181606pt;}
.y51c{bottom:477.192954pt;}
.ya{bottom:478.990666pt;}
.y41c{bottom:479.880260pt;}
.y197{bottom:480.104277pt;}
.y3ce{bottom:481.904670pt;}
.y3d4{bottom:481.927337pt;}
.y3da{bottom:481.950004pt;}
.y3df{bottom:481.972669pt;}
.y74{bottom:484.146973pt;}
.y280{bottom:484.385620pt;}
.y175{bottom:485.314971pt;}
.y1d2{bottom:485.320231pt;}
.ydb{bottom:485.320272pt;}
.y116{bottom:485.444255pt;}
.y2cd{bottom:485.444275pt;}
.yb1{bottom:485.460656pt;}
.y242{bottom:485.835205pt;}
.y497{bottom:490.169620pt;}
.y457{bottom:490.230262pt;}
.y4d8{bottom:490.509606pt;}
.y51b{bottom:490.520954pt;}
.y41b{bottom:493.208260pt;}
.y196{bottom:493.432277pt;}
.y9{bottom:494.990666pt;}
.y3cd{bottom:495.232670pt;}
.y3d3{bottom:495.255337pt;}
.y3d9{bottom:495.278004pt;}
.y3de{bottom:495.300669pt;}
.yb0{bottom:498.780672pt;}
.y1f3{bottom:499.311361pt;}
.y73{bottom:500.813639pt;}
.y27f{bottom:501.052287pt;}
.y174{bottom:501.981637pt;}
.y1d1{bottom:501.986898pt;}
.yda{bottom:501.986938pt;}
.y115{bottom:502.110921pt;}
.y2cc{bottom:502.110942pt;}
.y241{bottom:502.501872pt;}
.y496{bottom:503.497620pt;}
.y456{bottom:503.558262pt;}
.y4d7{bottom:503.837606pt;}
.y51a{bottom:503.848954pt;}
.y41a{bottom:506.536260pt;}
.y195{bottom:506.760277pt;}
.y3cc{bottom:508.560670pt;}
.y3d2{bottom:508.583337pt;}
.y3d8{bottom:508.606004pt;}
.y3dd{bottom:508.628669pt;}
.yaf{bottom:515.418005pt;}
.y495{bottom:516.825620pt;}
.y455{bottom:516.886262pt;}
.y4d6{bottom:517.165606pt;}
.y519{bottom:517.176954pt;}
.y72{bottom:517.480306pt;}
.y27e{bottom:517.718953pt;}
.y173{bottom:518.648304pt;}
.y1d0{bottom:518.653564pt;}
.yd9{bottom:518.653605pt;}
.y114{bottom:518.777588pt;}
.y2cb{bottom:518.777608pt;}
.y240{bottom:519.168538pt;}
.y194{bottom:520.088277pt;}
.y3bc{bottom:525.198007pt;}
.y3c1{bottom:525.220672pt;}
.y37{bottom:525.521240pt;}
.y494{bottom:530.153620pt;}
.y454{bottom:530.214262pt;}
.y4d5{bottom:530.493606pt;}
.y518{bottom:530.504954pt;}
.yae{bottom:532.047314pt;}
.y193{bottom:533.416277pt;}
.y71{bottom:534.146973pt;}
.y1c9{bottom:534.153320pt;}
.y27d{bottom:534.385620pt;}
.y172{bottom:535.314971pt;}
.y1cf{bottom:535.320231pt;}
.y10c{bottom:535.320272pt;}
.y113{bottom:535.444255pt;}
.y2ca{bottom:535.444275pt;}
.y23f{bottom:535.835205pt;}
.y3bb{bottom:538.526007pt;}
.y3c0{bottom:538.548672pt;}
.y3c8{bottom:538.582670pt;}
.y311{bottom:539.777496pt;}
.y31b{bottom:539.777511pt;}
.y325{bottom:539.777532pt;}
.y32f{bottom:539.777553pt;}
.y337{bottom:539.777566pt;}
.y345{bottom:539.777588pt;}
.y419{bottom:539.856260pt;}
.y493{bottom:543.481620pt;}
.y453{bottom:543.542262pt;}
.y4d4{bottom:543.821606pt;}
.y517{bottom:543.832954pt;}
.y192{bottom:546.744277pt;}
.y312{bottom:547.778829pt;}
.y31c{bottom:547.778845pt;}
.y326{bottom:547.778865pt;}
.y330{bottom:547.778886pt;}
.y338{bottom:547.778895pt;}
.y346{bottom:547.778921pt;}
.y1b8{bottom:548.385213pt;}
.yad{bottom:548.684647pt;}
.y70{bottom:550.813639pt;}
.y27c{bottom:551.052287pt;}
.y3ba{bottom:551.854007pt;}
.y3bf{bottom:551.876672pt;}
.y3c4{bottom:551.899337pt;}
.y3c7{bottom:551.910670pt;}
.y3cb{bottom:551.922004pt;}
.y171{bottom:551.981637pt;}
.y1ce{bottom:551.986898pt;}
.yd8{bottom:551.986938pt;}
.y112{bottom:552.110921pt;}
.y2c9{bottom:552.110942pt;}
.y23e{bottom:552.501872pt;}
.y418{bottom:553.184260pt;}
.y492{bottom:556.809620pt;}
.y452{bottom:556.870262pt;}
.y4d3{bottom:557.149606pt;}
.y516{bottom:557.160954pt;}
.y36{bottom:558.854574pt;}
.y191{bottom:560.072277pt;}
.y3b9{bottom:565.182007pt;}
.y3be{bottom:565.204672pt;}
.y3c3{bottom:565.227337pt;}
.y3c6{bottom:565.238670pt;}
.y3ca{bottom:565.250004pt;}
.yac{bottom:565.298152pt;}
.y6f{bottom:567.480306pt;}
.y170{bottom:568.648304pt;}
.y1cd{bottom:568.653564pt;}
.y10b{bottom:568.653605pt;}
.y111{bottom:568.777588pt;}
.y2c8{bottom:568.777608pt;}
.y23d{bottom:569.168538pt;}
.y491{bottom:570.137620pt;}
.y451{bottom:570.198262pt;}
.y4d2{bottom:570.477606pt;}
.y515{bottom:570.488954pt;}
.y190{bottom:573.400277pt;}
.y8{bottom:573.786667pt;}
.y35{bottom:575.521240pt;}
.y3b8{bottom:578.510007pt;}
.y3bd{bottom:578.532672pt;}
.y3c2{bottom:578.555337pt;}
.y3c5{bottom:578.566670pt;}
.y3c9{bottom:578.578004pt;}
.y417{bottom:579.851593pt;}
.yab{bottom:581.935485pt;}
.y490{bottom:583.465620pt;}
.y450{bottom:583.526262pt;}
.y4d1{bottom:583.805606pt;}
.y514{bottom:583.816954pt;}
.y6e{bottom:584.146973pt;}
.y27b{bottom:584.385620pt;}
.y16f{bottom:585.314971pt;}
.y1cc{bottom:585.320231pt;}
.y10a{bottom:585.320272pt;}
.y1ca{bottom:585.325605pt;}
.y110{bottom:585.444255pt;}
.y2c7{bottom:585.444275pt;}
.y23c{bottom:585.835205pt;}
.y18f{bottom:586.728277pt;}
.y34{bottom:592.187907pt;}
.y7{bottom:592.685334pt;}
.y416{bottom:593.179593pt;}
.y3a8{bottom:595.102009pt;}
.y48f{bottom:596.793620pt;}
.y44f{bottom:596.854262pt;}
.y4d0{bottom:597.133606pt;}
.y513{bottom:597.144954pt;}
.yaa{bottom:598.572818pt;}
.y18e{bottom:600.056277pt;}
.y6d{bottom:600.813639pt;}
.y16e{bottom:601.981637pt;}
.yd7{bottom:601.986898pt;}
.y109{bottom:601.986938pt;}
.y10f{bottom:602.110921pt;}
.y3a7{bottom:608.430009pt;}
.y3ac{bottom:608.452674pt;}
.y3b0{bottom:608.464007pt;}
.y3b4{bottom:608.475340pt;}
.y33{bottom:608.854574pt;}
.y48e{bottom:610.121620pt;}
.y44e{bottom:610.182262pt;}
.y4cf{bottom:610.461606pt;}
.y512{bottom:610.472954pt;}
.ya9{bottom:615.210152pt;}
.y6c{bottom:617.480306pt;}
.y18d{bottom:617.917603pt;}
.y16d{bottom:618.648304pt;}
.yd6{bottom:618.653564pt;}
.y108{bottom:618.653605pt;}
.y10e{bottom:618.777588pt;}
.y415{bottom:619.846927pt;}
.y3a6{bottom:621.758009pt;}
.y3ab{bottom:621.780674pt;}
.y3af{bottom:621.792007pt;}
.y3b3{bottom:621.803340pt;}
.y3b7{bottom:621.814674pt;}
.y48d{bottom:623.449620pt;}
.y44d{bottom:623.510262pt;}
.y4ce{bottom:623.789606pt;}
.y511{bottom:623.800954pt;}
.y1c7{bottom:624.781247pt;}
.y32{bottom:625.521240pt;}
.y27a{bottom:629.245076pt;}
.y2b8{bottom:629.259847pt;}
.ya8{bottom:631.847485pt;}
.y414{bottom:633.174927pt;}
.y3e8{bottom:633.798802pt;}
.y3f1{bottom:633.817997pt;}
.y3fc{bottom:633.818139pt;}
.y6b{bottom:634.146973pt;}
.y3a5{bottom:635.086009pt;}
.y3aa{bottom:635.108674pt;}
.y3ae{bottom:635.120007pt;}
.y3b2{bottom:635.131340pt;}
.y3b6{bottom:635.142674pt;}
.y16c{bottom:635.314971pt;}
.yd5{bottom:635.320231pt;}
.y107{bottom:635.320272pt;}
.y10d{bottom:635.444255pt;}
.y48c{bottom:636.777620pt;}
.y44c{bottom:636.838262pt;}
.y4cd{bottom:637.117606pt;}
.y510{bottom:637.128954pt;}
.y1c6{bottom:638.248615pt;}
.y3f2{bottom:641.819330pt;}
.y3fd{bottom:641.819472pt;}
.y31{bottom:642.187907pt;}
.y6{bottom:645.598667pt;}
.y3a4{bottom:648.414009pt;}
.y3a9{bottom:648.436674pt;}
.y3ad{bottom:648.448007pt;}
.y3b1{bottom:648.459340pt;}
.y3b5{bottom:648.470674pt;}
.ya7{bottom:648.484818pt;}
.y1b9{bottom:648.557332pt;}
.y217{bottom:648.829183pt;}
.y48b{bottom:650.105620pt;}
.y44b{bottom:650.166262pt;}
.y4cc{bottom:650.445606pt;}
.y50f{bottom:650.456954pt;}
.y6a{bottom:650.813639pt;}
.y1c5{bottom:651.715983pt;}
.y16b{bottom:651.981637pt;}
.yd4{bottom:651.986898pt;}
.y106{bottom:651.986938pt;}
.y30{bottom:658.854574pt;}
.y413{bottom:659.841593pt;}
.y48a{bottom:663.433620pt;}
.y44a{bottom:663.494262pt;}
.y4cb{bottom:663.773606pt;}
.y50e{bottom:663.784954pt;}
.y38f{bottom:664.960683pt;}
.ya6{bottom:665.103371pt;}
.y69{bottom:667.480306pt;}
.y157{bottom:667.594971pt;}
.y16a{bottom:668.648304pt;}
.yd3{bottom:668.653564pt;}
.y105{bottom:668.653605pt;}
.y3{bottom:668.977329pt;}
.y2f{bottom:675.521240pt;}
.y489{bottom:676.761620pt;}
.y449{bottom:676.822262pt;}
.y4ca{bottom:677.101606pt;}
.y50d{bottom:677.112954pt;}
.y38e{bottom:678.288683pt;}
.y1fa{bottom:680.006673pt;}
.y1c8{bottom:681.262655pt;}
.ya5{bottom:681.740704pt;}
.y12f{bottom:682.556277pt;}
.y25a{bottom:683.685221pt;}
.y68{bottom:684.146973pt;}
.y306{bottom:684.195287pt;}
.y2e2{bottom:684.201347pt;}
.y156{bottom:684.261637pt;}
.y169{bottom:685.314971pt;}
.yd2{bottom:685.320231pt;}
.y104{bottom:685.320272pt;}
.y313{bottom:686.090829pt;}
.y31d{bottom:686.090845pt;}
.y327{bottom:686.090865pt;}
.y331{bottom:686.090886pt;}
.y339{bottom:686.090895pt;}
.y347{bottom:686.090921pt;}
.y298{bottom:687.278564pt;}
.y2e6{bottom:689.377035pt;}
.y412{bottom:689.919634pt;}
.y488{bottom:690.089620pt;}
.y448{bottom:690.150262pt;}
.y4c9{bottom:690.429606pt;}
.y50c{bottom:690.440954pt;}
.y38d{bottom:691.616683pt;}
.y397{bottom:691.662016pt;}
.y39f{bottom:691.696013pt;}
.y2d7{bottom:691.999756pt;}
.y2e{bottom:692.187907pt;}
.y305{bottom:692.358951pt;}
.y2e1{bottom:692.365010pt;}
.y314{bottom:694.092162pt;}
.y31e{bottom:694.092178pt;}
.y328{bottom:694.092199pt;}
.y332{bottom:694.092219pt;}
.y33c{bottom:694.092237pt;}
.y348{bottom:694.092255pt;}
.ya4{bottom:698.378038pt;}
.y12e{bottom:700.417562pt;}
.y304{bottom:700.522614pt;}
.y2e0{bottom:700.528674pt;}
.y67{bottom:700.813639pt;}
.y155{bottom:700.928304pt;}
.y168{bottom:701.981637pt;}
.yd1{bottom:701.986898pt;}
.y103{bottom:701.986938pt;}
.y1fe{bottom:702.480949pt;}
.y411{bottom:703.247634pt;}
.y487{bottom:703.417620pt;}
.y447{bottom:703.478262pt;}
.y4c8{bottom:703.757606pt;}
.y50b{bottom:703.768954pt;}
.y38c{bottom:704.944683pt;}
.y396{bottom:704.990016pt;}
.y39e{bottom:705.024013pt;}
.y276{bottom:708.671120pt;}
.y303{bottom:708.686278pt;}
.y2b4{bottom:708.692337pt;}
.y2d{bottom:708.854574pt;}
.y1ea{bottom:712.735757pt;}
.y1fd{bottom:713.637044pt;}
.ya3{bottom:715.015371pt;}
.y1bd{bottom:715.271072pt;}
.y410{bottom:716.575634pt;}
.y486{bottom:716.745620pt;}
.y446{bottom:716.806262pt;}
.y275{bottom:716.835104pt;}
.y2b3{bottom:716.856000pt;}
.y4c7{bottom:717.085606pt;}
.y50a{bottom:717.096954pt;}
.y66{bottom:717.480306pt;}
.y154{bottom:717.594971pt;}
.y38b{bottom:718.272683pt;}
.y395{bottom:718.318016pt;}
.y39d{bottom:718.352013pt;}
.y167{bottom:718.648304pt;}
.yd0{bottom:718.653564pt;}
.y102{bottom:718.653605pt;}
.y144{bottom:721.480639pt;}
.y274{bottom:724.999088pt;}
.y302{bottom:725.006813pt;}
.y2b2{bottom:725.019664pt;}
.y2c{bottom:725.521240pt;}
.y1e9{bottom:728.523437pt;}
.y1bc{bottom:728.738441pt;}
.y485{bottom:730.073620pt;}
.y445{bottom:730.134262pt;}
.y4c6{bottom:730.413606pt;}
.y509{bottom:730.424954pt;}
.y385{bottom:731.578018pt;}
.y38a{bottom:731.600683pt;}
.y394{bottom:731.646016pt;}
.ya2{bottom:731.652704pt;}
.y39c{bottom:731.680013pt;}
.y273{bottom:733.163072pt;}
.y301{bottom:733.170476pt;}
.y2df{bottom:733.176536pt;}
.y2b1{bottom:733.183327pt;}
.y65{bottom:734.146973pt;}
.y153{bottom:734.261637pt;}
.y143{bottom:734.808639pt;}
.y166{bottom:735.314971pt;}
.ycf{bottom:735.320231pt;}
.y101{bottom:735.320272pt;}
.y272{bottom:741.327055pt;}
.y300{bottom:741.334140pt;}
.y2de{bottom:741.340199pt;}
.y2b0{bottom:741.346991pt;}
.y2b{bottom:742.187907pt;}
.y1bb{bottom:742.205809pt;}
.y40f{bottom:743.242967pt;}
.y484{bottom:743.401620pt;}
.y444{bottom:743.462262pt;}
.y4c5{bottom:743.741606pt;}
.y508{bottom:743.752954pt;}
.y384{bottom:744.906018pt;}
.y389{bottom:744.928683pt;}
.y393{bottom:744.974016pt;}
.y39b{bottom:745.008013pt;}
.y3a3{bottom:745.042009pt;}
.y142{bottom:748.136639pt;}
.y145{bottom:748.147973pt;}
.ya1{bottom:748.290038pt;}
.y201{bottom:748.747934pt;}
.y271{bottom:749.491039pt;}
.y2ff{bottom:749.497803pt;}
.y2dd{bottom:749.503863pt;}
.y2af{bottom:749.510654pt;}
.y64{bottom:750.813639pt;}
.y152{bottom:750.928304pt;}
.y165{bottom:751.981637pt;}
.yce{bottom:751.986898pt;}
.y100{bottom:751.986938pt;}
.y202{bottom:753.906930pt;}
.y1ba{bottom:755.673177pt;}
.y40e{bottom:756.570967pt;}
.y483{bottom:756.729620pt;}
.y443{bottom:756.790262pt;}
.y4c4{bottom:757.069606pt;}
.y507{bottom:757.080954pt;}
.y2fe{bottom:757.661467pt;}
.y2dc{bottom:757.667526pt;}
.y2ae{bottom:757.674318pt;}
.y383{bottom:758.234018pt;}
.y388{bottom:758.256683pt;}
.y392{bottom:758.302016pt;}
.y39a{bottom:758.336013pt;}
.y3a2{bottom:758.370009pt;}
.y20e{bottom:761.373120pt;}
.y140{bottom:764.830639pt;}
.ya0{bottom:764.927371pt;}
.y270{bottom:765.812215pt;}
.y2fd{bottom:765.825130pt;}
.y2db{bottom:765.831190pt;}
.y63{bottom:767.480306pt;}
.y151{bottom:767.594971pt;}
.y164{bottom:768.648304pt;}
.ycd{bottom:768.653564pt;}
.yff{bottom:768.653605pt;}
.y40d{bottom:769.898967pt;}
.y482{bottom:770.057620pt;}
.y442{bottom:770.118262pt;}
.y4c3{bottom:770.397606pt;}
.y506{bottom:770.408954pt;}
.y382{bottom:771.562018pt;}
.y387{bottom:771.584683pt;}
.y391{bottom:771.630016pt;}
.y399{bottom:771.664013pt;}
.y3a1{bottom:771.698009pt;}
.y20d{bottom:772.529215pt;}
.y26f{bottom:773.976199pt;}
.y2fc{bottom:773.988794pt;}
.y2ad{bottom:773.994853pt;}
.y13f{bottom:778.158639pt;}
.y9f{bottom:778.247306pt;}
.y1c4{bottom:778.485352pt;}
.y2a{bottom:781.461469pt;}
.y2{bottom:781.661334pt;}
.y26e{bottom:782.140182pt;}
.y2da{bottom:782.151725pt;}
.y2fb{bottom:782.152457pt;}
.y2ac{bottom:782.158516pt;}
.y40c{bottom:783.226967pt;}
.y481{bottom:783.385620pt;}
.y441{bottom:783.446262pt;}
.y4c2{bottom:783.725606pt;}
.y505{bottom:783.736954pt;}
.y62{bottom:784.146973pt;}
.y150{bottom:784.261637pt;}
.y381{bottom:784.890018pt;}
.y386{bottom:784.912683pt;}
.y1eb{bottom:784.931478pt;}
.y390{bottom:784.958016pt;}
.y398{bottom:784.992013pt;}
.y3a0{bottom:785.026009pt;}
.y163{bottom:785.314971pt;}
.ycc{bottom:785.320231pt;}
.yfe{bottom:785.320272pt;}
.y2d9{bottom:790.315388pt;}
.y2fa{bottom:790.316121pt;}
.y2ab{bottom:790.322180pt;}
.y216{bottom:790.983481pt;}
.y13e{bottom:791.486639pt;}
.y141{bottom:791.497973pt;}
.y29{bottom:794.789469pt;}
.y9e{bottom:794.884639pt;}
.y40b{bottom:796.554967pt;}
.y480{bottom:796.713620pt;}
.y440{bottom:796.774262pt;}
.y4c1{bottom:797.053606pt;}
.y504{bottom:797.064954pt;}
.y26d{bottom:798.461358pt;}
.y2d8{bottom:798.479052pt;}
.y2f9{bottom:798.479784pt;}
.y215{bottom:800.751574pt;}
.y61{bottom:800.813639pt;}
.y14f{bottom:800.928304pt;}
.y365{bottom:801.402688pt;}
.y1da{bottom:801.981564pt;}
.y162{bottom:801.981637pt;}
.ycb{bottom:801.986898pt;}
.yfd{bottom:801.986938pt;}
.y1fc{bottom:805.758382pt;}
.y3e9{bottom:805.974802pt;}
.y3f3{bottom:805.993997pt;}
.y3fe{bottom:805.994139pt;}
.y26c{bottom:806.625342pt;}
.y2aa{bottom:806.642715pt;}
.y2f8{bottom:806.643448pt;}
.y13c{bottom:808.123973pt;}
.y1b7{bottom:808.904778pt;}
.y40a{bottom:809.882967pt;}
.y47f{bottom:810.041620pt;}
.y544{bottom:810.041622pt;}
.y43f{bottom:810.102262pt;}
.y4c0{bottom:810.381606pt;}
.y503{bottom:810.392954pt;}
.y214{bottom:810.519667pt;}
.y9d{bottom:811.519485pt;}
.y262{bottom:812.838403pt;}
.y2a0{bottom:812.854754pt;}
.y2ee{bottom:812.855974pt;}
.y3f4{bottom:813.995330pt;}
.y3ff{bottom:813.995472pt;}
.y364{bottom:814.730688pt;}
.y26b{bottom:814.789325pt;}
.y2a9{bottom:814.806379pt;}
.y2f7{bottom:814.807111pt;}
.y375{bottom:814.810021pt;}
.y1b1{bottom:815.518636pt;}
.y60{bottom:817.480306pt;}
.y1ed{bottom:817.574737pt;}
.y14e{bottom:817.594971pt;}
.y161{bottom:818.648304pt;}
.yca{bottom:818.653564pt;}
.yfc{bottom:818.653605pt;}
.y1b2{bottom:819.070704pt;}
.y213{bottom:820.287760pt;}
.y13b{bottom:821.451973pt;}
.y261{bottom:822.162516pt;}
.y29f{bottom:822.178548pt;}
.y2ed{bottom:822.179769pt;}
.y1b6{bottom:822.372147pt;}
.y26a{bottom:822.953309pt;}
.y2a8{bottom:822.970042pt;}
.y2f6{bottom:822.970774pt;}
.y47e{bottom:823.369620pt;}
.y543{bottom:823.369622pt;}
.y43e{bottom:823.430262pt;}
.y4bf{bottom:823.709606pt;}
.y502{bottom:823.720954pt;}
.y9c{bottom:824.847485pt;}
.y200{bottom:825.825565pt;}
.y363{bottom:828.058688pt;}
.y374{bottom:828.138021pt;}
.y1ec{bottom:829.856933pt;}
.y2a7{bottom:831.133706pt;}
.y315{bottom:832.392829pt;}
.y31f{bottom:832.392845pt;}
.y329{bottom:832.392865pt;}
.y333{bottom:832.392886pt;}
.y33d{bottom:832.392904pt;}
.y349{bottom:832.392921pt;}
.y28{bottom:832.656169pt;}
.y5f{bottom:834.146973pt;}
.y14d{bottom:834.261637pt;}
.y13a{bottom:834.779973pt;}
.y13d{bottom:834.791306pt;}
.y160{bottom:835.314971pt;}
.yc9{bottom:835.320231pt;}
.yfb{bottom:835.320272pt;}
.y1b5{bottom:835.839515pt;}
.y1ff{bottom:836.078369pt;}
.y409{bottom:836.550301pt;}
.y47d{bottom:836.697620pt;}
.y43d{bottom:836.758262pt;}
.y4be{bottom:837.037606pt;}
.y501{bottom:837.048954pt;}
.y269{bottom:839.274485pt;}
.y2f5{bottom:839.291310pt;}
.y2a6{bottom:839.297369pt;}
.y316{bottom:840.394157pt;}
.y320{bottom:840.394178pt;}
.y32a{bottom:840.394199pt;}
.y334{bottom:840.394219pt;}
.y33a{bottom:840.394224pt;}
.y33e{bottom:840.394237pt;}
.y34a{bottom:840.394255pt;}
.y362{bottom:841.386688pt;}
.y36c{bottom:841.432021pt;}
.y373{bottom:841.466021pt;}
.y9b{bottom:841.484818pt;}
.y20a{bottom:844.055493pt;}
.y268{bottom:847.438469pt;}
.y2f4{bottom:847.454973pt;}
.y1b4{bottom:849.306883pt;}
.y408{bottom:849.878301pt;}
.y47c{bottom:850.025620pt;}
.y43c{bottom:850.086262pt;}
.y542{bottom:850.116287pt;}
.y4bd{bottom:850.365606pt;}
.y500{bottom:850.376954pt;}
.y5e{bottom:850.813639pt;}
.y14c{bottom:850.928304pt;}
.y136{bottom:851.405973pt;}
.y139{bottom:851.417306pt;}
.y15f{bottom:851.981637pt;}
.yc8{bottom:851.986898pt;}
.yfa{bottom:851.986938pt;}
.y361{bottom:854.714688pt;}
.y36b{bottom:854.760021pt;}
.y372{bottom:854.794021pt;}
.y37b{bottom:854.839351pt;}
.y209{bottom:855.211589pt;}
.y267{bottom:855.602452pt;}
.y2a5{bottom:855.617904pt;}
.y2f3{bottom:855.618637pt;}
.y9a{bottom:858.114688pt;}
.y263{bottom:859.256429pt;}
.y2a1{bottom:859.271973pt;}
.y2ef{bottom:859.272705pt;}
.y1{bottom:859.312000pt;}
.y1b3{bottom:862.774251pt;}
.y1ef{bottom:863.157830pt;}
.y407{bottom:863.206301pt;}
.y47b{bottom:863.353620pt;}
.y43b{bottom:863.414262pt;}
.y541{bottom:863.444287pt;}
.y4bc{bottom:863.693606pt;}
.y4ff{bottom:863.704954pt;}
.y266{bottom:863.766436pt;}
.y2a4{bottom:863.781568pt;}
.y2f2{bottom:863.782300pt;}
.y135{bottom:864.733973pt;}
.y138{bottom:864.745306pt;}
.y5d{bottom:867.480306pt;}
.y14b{bottom:867.594971pt;}
.y360{bottom:868.042688pt;}
.y36a{bottom:868.088021pt;}
.y371{bottom:868.122021pt;}
.y37a{bottom:868.167351pt;}
.y380{bottom:868.190018pt;}
.y15e{bottom:868.648304pt;}
.yc7{bottom:868.653564pt;}
.yf9{bottom:868.653605pt;}
.y265{bottom:871.930420pt;}
.y2a3{bottom:871.945231pt;}
.y2f1{bottom:871.945964pt;}
.y27{bottom:872.377441pt;}
.y99{bottom:874.752021pt;}
.y1ee{bottom:875.440026pt;}
.y406{bottom:876.534301pt;}
.y47a{bottom:876.681620pt;}
.y43a{bottom:876.742262pt;}
.y540{bottom:876.772287pt;}
.y4bb{bottom:877.021606pt;}
.y4fe{bottom:877.032954pt;}
.y134{bottom:878.061973pt;}
.y137{bottom:878.073306pt;}
.y25c{bottom:880.494301pt;}
.y29a{bottom:880.508049pt;}
.y2e8{bottom:880.508700pt;}
.y35f{bottom:881.370688pt;}
.y369{bottom:881.416021pt;}
.y370{bottom:881.450021pt;}
.y379{bottom:881.495351pt;}
.y37f{bottom:881.518018pt;}
.y5c{bottom:884.146973pt;}
.y14a{bottom:884.261637pt;}
.y15d{bottom:885.314971pt;}
.yc6{bottom:885.320231pt;}
.yf8{bottom:885.320272pt;}
.y208{bottom:885.337882pt;}
.y206{bottom:886.392733pt;}
.y25b{bottom:888.658285pt;}
.y299{bottom:888.671712pt;}
.y2e7{bottom:888.672363pt;}
.y264{bottom:889.624919pt;}
.y2a2{bottom:889.638021pt;}
.y2f0{bottom:889.639160pt;}
.y405{bottom:889.862301pt;}
.y479{bottom:890.009620pt;}
.y439{bottom:890.070262pt;}
.y53f{bottom:890.100287pt;}
.y4ba{bottom:890.349606pt;}
.y4fd{bottom:890.360954pt;}
.y98{bottom:891.389355pt;}
.y35e{bottom:894.698688pt;}
.y132{bottom:894.699306pt;}
.y368{bottom:894.744021pt;}
.y36f{bottom:894.778021pt;}
.y378{bottom:894.823351pt;}
.y37e{bottom:894.846018pt;}
.y26{bottom:896.377441pt;}
.y207{bottom:896.493978pt;}
.y205{bottom:897.548828pt;}
.y5b{bottom:900.813639pt;}
.y149{bottom:900.928304pt;}
.y15c{bottom:901.981637pt;}
.yc5{bottom:901.986898pt;}
.yf7{bottom:901.986938pt;}
.y404{bottom:903.190301pt;}
.y478{bottom:903.337620pt;}
.y438{bottom:903.398262pt;}
.y53e{bottom:903.428287pt;}
.y4b9{bottom:903.677606pt;}
.y4fc{bottom:903.688954pt;}
.y97{bottom:904.717355pt;}
.y1f1{bottom:907.494309pt;}
.y203{bottom:907.608154pt;}
.y35d{bottom:908.026688pt;}
.y131{bottom:908.027306pt;}
.y367{bottom:908.072021pt;}
.y36e{bottom:908.106021pt;}
.y377{bottom:908.151351pt;}
.y37d{bottom:908.174018pt;}
.y1bf{bottom:908.752480pt;}
.y204{bottom:910.467020pt;}
.y1be{bottom:910.778158pt;}
.y25e{bottom:910.793412pt;}
.y29c{bottom:910.805971pt;}
.y2ea{bottom:910.806622pt;}
.y1c3{bottom:910.896316pt;}
.y309{bottom:912.045622pt;}
.y403{bottom:916.518301pt;}
.y477{bottom:916.665620pt;}
.y437{bottom:916.726262pt;}
.y53d{bottom:916.756287pt;}
.y4b8{bottom:917.005606pt;}
.y4fb{bottom:917.016954pt;}
.y5a{bottom:917.480306pt;}
.y148{bottom:917.594971pt;}
.y15b{bottom:918.648304pt;}
.yc4{bottom:918.653564pt;}
.yf6{bottom:918.653605pt;}
.y25d{bottom:918.957396pt;}
.y29b{bottom:918.969635pt;}
.y2e9{bottom:918.970286pt;}
.y1f0{bottom:919.776506pt;}
.y96{bottom:921.354688pt;}
.y130{bottom:921.355306pt;}
.y133{bottom:921.366639pt;}
.y366{bottom:921.400021pt;}
.y36d{bottom:921.434021pt;}
.y376{bottom:921.479351pt;}
.y37c{bottom:921.502018pt;}
.y278{bottom:923.224617pt;}
.y2e4{bottom:923.235905pt;}
.y2b6{bottom:923.236638pt;}
.y308{bottom:923.237289pt;}
.y212{bottom:924.245037pt;}
.y1c2{bottom:924.363685pt;}
.y20c{bottom:926.736401pt;}
.y402{bottom:929.846301pt;}
.y476{bottom:929.993620pt;}
.y436{bottom:930.054262pt;}
.y53c{bottom:930.084287pt;}
.y4b7{bottom:930.333606pt;}
.y4fa{bottom:930.344954pt;}
.y211{bottom:934.013130pt;}
.y59{bottom:934.146973pt;}
.y277{bottom:934.416667pt;}
.y2e3{bottom:934.427572pt;}
.y2b5{bottom:934.428304pt;}
.y307{bottom:934.428955pt;}
.y15a{bottom:935.314971pt;}
.yc3{bottom:935.320231pt;}
.yf5{bottom:935.320272pt;}
.y1f9{bottom:935.324270pt;}
.y1c1{bottom:937.831053pt;}
.y20b{bottom:937.892497pt;}
.y260{bottom:940.263898pt;}
.y29e{bottom:940.275301pt;}
.y2ec{bottom:940.275952pt;}
.y475{bottom:943.321620pt;}
.y435{bottom:943.382262pt;}
.y53b{bottom:943.412287pt;}
.y4b6{bottom:943.661606pt;}
.y4f9{bottom:943.672954pt;}
.y210{bottom:943.781223pt;}
.y95{bottom:946.322021pt;}
.y25f{bottom:948.427882pt;}
.y29d{bottom:948.438965pt;}
.y2eb{bottom:948.439616pt;}
.y58{bottom:950.813639pt;}
.y147{bottom:950.933637pt;}
.y1c0{bottom:951.298421pt;}
.y159{bottom:951.981637pt;}
.yc2{bottom:951.986898pt;}
.yf4{bottom:951.986938pt;}
.y1f8{bottom:951.990936pt;}
.y20f{bottom:953.549316pt;}
.y1b0{bottom:955.652306pt;}
.y401{bottom:956.513634pt;}
.y25{bottom:956.561849pt;}
.y474{bottom:956.649620pt;}
.y1f4{bottom:956.705973pt;}
.y434{bottom:956.710262pt;}
.y53a{bottom:956.740287pt;}
.y4b5{bottom:956.989606pt;}
.y4f8{bottom:957.000954pt;}
.y279{bottom:964.696696pt;}
.y2b7{bottom:964.707031pt;}
.y30a{bottom:964.708252pt;}
.y57{bottom:967.480306pt;}
.y146{bottom:967.594971pt;}
.y158{bottom:968.648304pt;}
.yc1{bottom:968.653564pt;}
.yf3{bottom:968.653605pt;}
.y1f7{bottom:968.657603pt;}
.y90{bottom:968.980306pt;}
.y400{bottom:969.841634pt;}
.y473{bottom:969.977620pt;}
.y433{bottom:970.038262pt;}
.y539{bottom:970.068287pt;}
.y4b4{bottom:970.317606pt;}
.y4f7{bottom:970.328954pt;}
.y24{bottom:986.299161pt;}
.y23{bottom:1001.406494pt;}
.y56{bottom:1002.206543pt;}
.y8c{bottom:1002.206706pt;}
.h36{height:18.419181pt;}
.h31{height:18.419904pt;}
.h35{height:18.881019pt;}
.h30{height:18.881759pt;}
.h34{height:19.016853pt;}
.h33{height:19.017599pt;}
.h37{height:21.106954pt;}
.h2f{height:21.107676pt;}
.h2e{height:22.039158pt;}
.h38{height:23.715535pt;}
.h32{height:23.716621pt;}
.h2d{height:25.254867pt;}
.h2c{height:25.888101pt;}
.h16{height:27.671466pt;}
.h27{height:27.711578pt;}
.h1f{height:28.242862pt;}
.h2b{height:28.376559pt;}
.h28{height:28.406411pt;}
.h7{height:28.560000pt;}
.h24{height:31.147491pt;}
.h23{height:31.371573pt;}
.h26{height:35.680157pt;}
.ha{height:37.376000pt;}
.h22{height:38.687584pt;}
.h15{height:39.530667pt;}
.hb{height:39.712000pt;}
.h18{height:40.165333pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h17{height:45.740809pt;}
.h20{height:45.804604pt;}
.h1a{height:46.376000pt;}
.h1b{height:46.385951pt;}
.h1d{height:46.407935pt;}
.h1c{height:46.408260pt;}
.h1e{height:46.472049pt;}
.h11{height:46.506667pt;}
.h12{height:47.253333pt;}
.h19{height:47.826667pt;}
.h2{height:48.960000pt;}
.hc{height:49.298667pt;}
.h21{height:52.448000pt;}
.hf{height:52.746667pt;}
.h14{height:53.888000pt;}
.h25{height:53.888163pt;}
.h10{height:54.560000pt;}
.he{height:57.658667pt;}
.h13{height:63.296000pt;}
.h5{height:69.360000pt;}
.hd{height:75.605333pt;}
.h4{height:105.826671pt;}
.h2a{height:297.473328pt;}
.h29{height:507.802653pt;}
.h8{height:1054.488000pt;}
.h9{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:317.480000pt;}
.w5{width:529.133341pt;}
.w2{width:566.928019pt;}
.w4{width:657.637329pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x2b{left:71.360397pt;}
.x7{left:75.717199pt;}
.x84{left:81.709467pt;}
.xb{left:83.151474pt;}
.xa{left:86.929867pt;}
.x2d{left:87.847463pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9c{left:95.378804pt;}
.x5b{left:96.353068pt;}
.x48{left:101.867605pt;}
.x32{left:106.193197pt;}
.x33{left:117.349292pt;}
.x5c{left:119.011200pt;}
.x85{left:130.068800pt;}
.x2a{left:132.282664pt;}
.x2f{left:135.552637pt;}
.x2c{left:137.947596pt;}
.x2e{left:144.380666pt;}
.x36{left:146.315603pt;}
.x37{left:148.718167pt;}
.x3e{left:149.704160pt;}
.x3f{left:151.101923pt;}
.x40{left:153.751172pt;}
.x86{left:155.042796pt;}
.x5d{left:157.306533pt;}
.x7d{left:165.452810pt;}
.x87{left:168.370796pt;}
.x5e{left:170.634533pt;}
.x4{left:180.874667pt;}
.x5f{left:183.962533pt;}
.x88{left:195.026796pt;}
.x60{left:197.290533pt;}
.x89{left:208.354796pt;}
.x61{left:210.539205pt;}
.x38{left:221.520142pt;}
.x30{left:222.715453pt;}
.x31{left:224.428910pt;}
.x55{left:226.391388pt;}
.x45{left:228.602881pt;}
.x43{left:230.253337pt;}
.x39{left:231.391144pt;}
.x4c{left:232.957960pt;}
.x44{left:234.566256pt;}
.x46{left:235.530719pt;}
.x4d{left:236.815816pt;}
.x41{left:238.893331pt;}
.x56{left:241.087992pt;}
.x42{left:243.065053pt;}
.x52{left:244.179993pt;}
.x7e{left:245.772143pt;}
.x8a{left:248.338796pt;}
.x47{left:250.978658pt;}
.x62{left:253.832538pt;}
.x11{left:257.694938pt;}
.xe{left:265.650933pt;}
.x63{left:267.160538pt;}
.x28{left:270.172938pt;}
.x3d{left:272.339285pt;}
.x3c{left:273.736125pt;}
.x18{left:274.628662pt;}
.x8b{left:278.337460pt;}
.x64{left:280.488538pt;}
.x12{left:283.203997pt;}
.x8c{left:291.665460pt;}
.x65{left:293.816538pt;}
.x34{left:305.405457pt;}
.x13{left:306.823995pt;}
.x3a{left:308.593465pt;}
.x35{left:309.698411pt;}
.x1a{left:310.807974pt;}
.x14{left:311.720218pt;}
.x3b{left:313.752460pt;}
.x8d{left:318.321460pt;}
.x66{left:320.415872pt;}
.x15{left:324.817843pt;}
.x8e{left:331.649460pt;}
.x7f{left:334.296809pt;}
.x67{left:337.007876pt;}
.x80{left:342.298143pt;}
.x8f{left:344.977460pt;}
.x26{left:348.639267pt;}
.x6c{left:350.222546pt;}
.x24{left:351.122274pt;}
.x25{left:357.610788pt;}
.x19{left:359.658000pt;}
.x27{left:361.003209pt;}
.x5a{left:362.978678pt;}
.x54{left:367.438680pt;}
.x90{left:371.633460pt;}
.x29{left:373.948933pt;}
.x17{left:375.832397pt;}
.x21{left:376.980916pt;}
.x22{left:377.941334pt;}
.x1b{left:380.788989pt;}
.x23{left:382.364950pt;}
.x91{left:384.961460pt;}
.x68{left:390.319876pt;}
.x92{left:398.289460pt;}
.x6d{left:403.511880pt;}
.x3{left:404.408000pt;}
.x8{left:408.192914pt;}
.x93{left:415.042806pt;}
.x69{left:416.975876pt;}
.x9{left:423.312913pt;}
.x94{left:428.370806pt;}
.x6a{left:430.269876pt;}
.x81{left:431.752140pt;}
.xc{left:435.151449pt;}
.x49{left:437.066650pt;}
.x4e{left:438.531982pt;}
.x58{left:439.581667pt;}
.x1d{left:441.227582pt;}
.x57{left:442.173340pt;}
.x4a{left:444.001282pt;}
.xf{left:446.587600pt;}
.x51{left:448.442082pt;}
.x50{left:449.663981pt;}
.x1f{left:454.914094pt;}
.x6b{left:456.925876pt;}
.x95{left:468.354806pt;}
.x4f{left:474.186210pt;}
.x4b{left:478.841591pt;}
.x96{left:481.682806pt;}
.x16{left:487.569091pt;}
.x1c{left:491.844358pt;}
.x97{left:495.010806pt;}
.x6e{left:500.117213pt;}
.x98{left:508.338806pt;}
.x82{left:512.082805pt;}
.x6f{left:513.445213pt;}
.x53{left:520.934053pt;}
.x70{left:526.773213pt;}
.x99{left:534.994806pt;}
.x71{left:540.101213pt;}
.x59{left:548.540862pt;}
.x72{left:553.349881pt;}
.x9a{left:561.650806pt;}
.x73{left:566.677881pt;}
.x9b{left:574.978806pt;}
.x74{left:580.005881pt;}
.x1e{left:594.169474pt;}
.x75{left:596.643215pt;}
.x83{left:601.287471pt;}
.x20{left:602.190796pt;}
.x10{left:605.662269pt;}
.x76{left:609.971215pt;}
.x77{left:626.608548pt;}
.x78{left:639.936548pt;}
.x5{left:647.307210pt;}
.x79{left:656.641881pt;}
.x7a{left:669.969881pt;}
.x7b{left:683.297881pt;}
.x7c{left:696.614548pt;}
.xd{left:709.519613pt;}
}




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