
    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_2359e0fc6d01a57b7ea8d82d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_1cc07c1e220ad28d74b01b2e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010254;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_579667ad4ba006f88b233446.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.718000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_564daf486042c06fc7c89145.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_b17d8fa644e38aea47e3dce1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_a099c6c1bdc61c6e0a6b7a6d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_f70186768426e04c3d132575.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.015137;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_d89b5bd037d211c9eabb97c6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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_564daf486042c06fc7c89145.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005371;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_b17d8fa644e38aea47e3dce1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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_f7f3e7888c173f1e96d5a84b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739258;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_4d94ea6287966f9431d94153.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.871094;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_15df72fab37f49e98fd4c9e0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.734863;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_3371ad8428a63e95418cf27a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.895996;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_d9af1228b76a0a925637e3b4.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_04e4cd7d643a6ea0c60c086c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.895996;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_d1e1953be4be37685d02e85e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_19b758f3ada0d1d45c30bc66.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.893555;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_3a453cb3676f42b7e74b8178.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.961914;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_8027190c0a951d8b30fe4071.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.005371;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_6c2ab6f15533e1aad92efbec.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.005371;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_713c1c16c6a67785b61ce0f7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.861816;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_06c583cd042645e3ceae953a.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_6556ef0d8c6f8b0f94f6a119.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.961914;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_2329ff2a252403209cecb630.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.869629;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_45853b240fc7d9ad7ad409fa.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_cacf36a6baf0445785e3e08c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.893555;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_b43e13607d2f0a7aa968b1cf.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_21c0b5e68ee6fdc8f7f41ee4.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.869629;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_b070ca505a7c1680d3f6ad20.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.861328;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_7598f9a5138e6a1725fac932.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.861816;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_47f471b7c41417e25ede539b.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.893555;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_0da9c78c1a57a6b3bf3a8491.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_21c0b5e68ee6fdc8f7f41ee4.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.869629;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_e211e939dd2c7397a184d730.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.005371;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_68fa3930416764122667b37e.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.012207;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_20413bbdc0af71fddb91aa83.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.871094;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_7ab0721e96435d29a3bbe1a7.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_61dffc88fa633da986463b45.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.893555;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_6e1d9add798744e1f1f89268.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_f68ffba8d15416f2bed942b2.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_860d7198b6990dadae6a1728.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_4ad3b629afbd38bfb1683819.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.870605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_9acfd0f717fccb5735bd48bb.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_6b80f807d775e9c84775f846.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_5b4c329a00238da2568b4fac.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_15df72fab37f49e98fd4c9e0.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_b162c8cf8babf19add5a37cb.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_2a70a053ca6d2625e3816752.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_518c542debddc06922c1c53f.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.733887;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:ff33;src:url('chunks/assets/font_a32f8e489dc056dfeb1f75d9.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.862305;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:ff34;src:url('chunks/assets/font_9c622830a40d32a021de1ae2.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.904297;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:ff35;src:url('chunks/assets/font_73dbba9ccff6498d39e44f27.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_e6c488065764dab66f8c4c7d.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.005371;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:ff37;src:url('chunks/assets/font_4693f8de2060e9a090188be5.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.895996;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:ff38;src:url('chunks/assets/font_35721679c6eb9b02c7682b91.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.871094;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:ff39;src:url('chunks/assets/font_19b8244e01c8055fe02afe26.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.005371;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);}
.vc{vertical-align:-42.000000px;}
.v6{vertical-align:-38.905920px;}
.v7{vertical-align:-33.160320px;}
.v3{vertical-align:-17.582400px;}
.v4{vertical-align:-15.814080px;}
.v10{vertical-align:-11.484000px;}
.v5{vertical-align:-8.591040px;}
.va{vertical-align:-6.000000px;}
.v13{vertical-align:-4.356000px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:4.356000px;}
.v8{vertical-align:5.745600px;}
.v9{vertical-align:7.223040px;}
.vf{vertical-align:8.676000px;}
.ve{vertical-align:11.545920px;}
.v11{vertical-align:13.032000px;}
.vd{vertical-align:15.868800px;}
.v2{vertical-align:17.582400px;}
.v1{vertical-align:21.978000px;}
.v14{vertical-align:27.972000px;}
.vb{vertical-align:42.000000px;}
.ls3d{letter-spacing:-3.484800px;}
.ls13{letter-spacing:-2.956800px;}
.ls0{letter-spacing:-2.640000px;}
.lsa8{letter-spacing:-2.534400px;}
.ls85{letter-spacing:-2.520000px;}
.ls36{letter-spacing:-2.268000px;}
.lsbd{letter-spacing:-2.246400px;}
.lsa4{letter-spacing:-2.244000px;}
.ls3b{letter-spacing:-2.112000px;}
.lsf{letter-spacing:-1.795200px;}
.ls12{letter-spacing:-1.742400px;}
.ls72{letter-spacing:-1.644000px;}
.ls3f{letter-spacing:-1.470000px;}
.ls48{letter-spacing:-1.428000px;}
.ls40{letter-spacing:-1.344000px;}
.ls5{letter-spacing:-1.320000px;}
.lsa5{letter-spacing:-1.275000px;}
.ls56{letter-spacing:-1.260000px;}
.lsac{letter-spacing:-1.218000px;}
.ls26{letter-spacing:-1.188000px;}
.ls9b{letter-spacing:-1.176000px;}
.ls47{letter-spacing:-1.169731px;}
.ls42{letter-spacing:-1.134000px;}
.lsad{letter-spacing:-1.071000px;}
.ls41{letter-spacing:-0.966000px;}
.ls1b{letter-spacing:-0.924000px;}
.ls6f{letter-spacing:-0.840000px;}
.ls2d{letter-spacing:-0.828000px;}
.ls92{letter-spacing:-0.822000px;}
.ls9c{letter-spacing:-0.756000px;}
.ls35{letter-spacing:-0.672000px;}
.ls2e{letter-spacing:-0.648000px;}
.lsa1{letter-spacing:-0.633600px;}
.ls9f{letter-spacing:-0.580800px;}
.ls78{letter-spacing:-0.546000px;}
.ls45{letter-spacing:-0.504000px;}
.ls46{letter-spacing:-0.492518px;}
.ls6{letter-spacing:-0.462000px;}
.ls4d{letter-spacing:-0.422400px;}
.ls6d{letter-spacing:-0.420000px;}
.lsa2{letter-spacing:-0.336000px;}
.ls14{letter-spacing:-0.316800px;}
.ls95{letter-spacing:-0.255000px;}
.ls50{letter-spacing:-0.252000px;}
.ls32{letter-spacing:-0.246259px;}
.ls94{letter-spacing:-0.153912px;}
.ls38{letter-spacing:-0.105600px;}
.ls1d{letter-spacing:-0.084000px;}
.ls2f{letter-spacing:-0.052800px;}
.ls2{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.002438px;}
.ls8{letter-spacing:0.003198px;}
.lsab{letter-spacing:0.042000px;}
.lse{letter-spacing:0.052800px;}
.ls3c{letter-spacing:0.092347px;}
.ls1c{letter-spacing:0.094838px;}
.ls20{letter-spacing:0.104400px;}
.ls80{letter-spacing:0.105600px;}
.ls1f{letter-spacing:0.108000px;}
.ls34{letter-spacing:0.123130px;}
.ls5a{letter-spacing:0.126000px;}
.ls22{letter-spacing:0.153000px;}
.ls7{letter-spacing:0.158400px;}
.ls4c{letter-spacing:0.165600px;}
.ls2a{letter-spacing:0.171000px;}
.ls4{letter-spacing:0.198000px;}
.ls5b{letter-spacing:0.199800px;}
.ls9{letter-spacing:0.210000px;}
.ls11{letter-spacing:0.211200px;}
.lsa0{letter-spacing:0.215477px;}
.lsb5{letter-spacing:0.234000px;}
.ls30{letter-spacing:0.252000px;}
.lsc{letter-spacing:0.264000px;}
.ls51{letter-spacing:0.277042px;}
.ls55{letter-spacing:0.307824px;}
.lsb7{letter-spacing:0.327600px;}
.ls58{letter-spacing:0.336000px;}
.ls37{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.369600px;}
.ls67{letter-spacing:0.400171px;}
.ls82{letter-spacing:0.420000px;}
.ls64{letter-spacing:0.422400px;}
.ls9e{letter-spacing:0.461736px;}
.lsaa{letter-spacing:0.462000px;}
.lsba{letter-spacing:0.468000px;}
.ls16{letter-spacing:0.475200px;}
.ls3a{letter-spacing:0.492518px;}
.ls71{letter-spacing:0.513000px;}
.lsc0{letter-spacing:0.514800px;}
.ls79{letter-spacing:0.523301px;}
.lsd{letter-spacing:0.528000px;}
.ls66{letter-spacing:0.554083px;}
.lsa6{letter-spacing:0.561000px;}
.ls15{letter-spacing:0.580800px;}
.ls3e{letter-spacing:0.584866px;}
.ls5d{letter-spacing:0.612000px;}
.ls7f{letter-spacing:0.615648px;}
.ls61{letter-spacing:0.627000px;}
.ls44{letter-spacing:0.633600px;}
.ls74{letter-spacing:0.646430px;}
.lsc2{letter-spacing:0.672000px;}
.ls7c{letter-spacing:0.684000px;}
.ls5c{letter-spacing:0.714000px;}
.ls39{letter-spacing:0.738778px;}
.ls7e{letter-spacing:0.739200px;}
.ls6a{letter-spacing:0.756000px;}
.ls65{letter-spacing:0.769560px;}
.ls31{letter-spacing:0.792000px;}
.ls53{letter-spacing:0.800342px;}
.ls23{letter-spacing:0.816000px;}
.ls5f{letter-spacing:0.831125px;}
.ls99{letter-spacing:0.840000px;}
.ls7a{letter-spacing:0.844800px;}
.lsb2{letter-spacing:0.861907px;}
.ls6e{letter-spacing:0.882000px;}
.ls54{letter-spacing:0.897600px;}
.ls5e{letter-spacing:0.918000px;}
.ls70{letter-spacing:0.923472px;}
.ls57{letter-spacing:0.924000px;}
.ls4b{letter-spacing:0.936000px;}
.ls86{letter-spacing:0.966000px;}
.lsa{letter-spacing:1.008000px;}
.lsb1{letter-spacing:1.015819px;}
.ls49{letter-spacing:1.020000px;}
.lsb8{letter-spacing:1.029600px;}
.ls8b{letter-spacing:1.046602px;}
.ls19{letter-spacing:1.050000px;}
.ls18{letter-spacing:1.056000px;}
.ls27{letter-spacing:1.080000px;}
.ls4e{letter-spacing:1.092000px;}
.ls8e{letter-spacing:1.108166px;}
.ls81{letter-spacing:1.108800px;}
.ls25{letter-spacing:1.116000px;}
.lsb4{letter-spacing:1.123200px;}
.ls59{letter-spacing:1.134000px;}
.ls75{letter-spacing:1.138949px;}
.ls96{letter-spacing:1.152000px;}
.ls69{letter-spacing:1.176000px;}
.lsa7{letter-spacing:1.188000px;}
.ls63{letter-spacing:1.200514px;}
.ls89{letter-spacing:1.214400px;}
.lsb0{letter-spacing:1.218000px;}
.ls4a{letter-spacing:1.224000px;}
.lsa9{letter-spacing:1.231296px;}
.ls1a{letter-spacing:1.260000px;}
.lsb6{letter-spacing:1.263600px;}
.ls21{letter-spacing:1.267200px;}
.ls8a{letter-spacing:1.292861px;}
.ls1e{letter-spacing:1.302000px;}
.lsbb{letter-spacing:1.310400px;}
.ls17{letter-spacing:1.320000px;}
.ls91{letter-spacing:1.344000px;}
.lsb9{letter-spacing:1.357200px;}
.ls76{letter-spacing:1.386000px;}
.lsbc{letter-spacing:1.404000px;}
.ls6c{letter-spacing:1.428000px;}
.ls83{letter-spacing:1.470000px;}
.ls93{letter-spacing:1.477555px;}
.ls52{letter-spacing:1.478400px;}
.ls7b{letter-spacing:1.508338px;}
.ls9a{letter-spacing:1.512000px;}
.lsa3{letter-spacing:1.554000px;}
.ls43{letter-spacing:1.567800px;}
.ls87{letter-spacing:1.596000px;}
.lsae{letter-spacing:1.631467px;}
.ls2b{letter-spacing:1.636800px;}
.ls77{letter-spacing:1.680000px;}
.lsc1{letter-spacing:1.684800px;}
.ls68{letter-spacing:1.722000px;}
.ls24{letter-spacing:1.764000px;}
.ls1{letter-spacing:1.804727px;}
.ls9d{letter-spacing:1.900800px;}
.ls88{letter-spacing:1.932000px;}
.ls4f{letter-spacing:2.122800px;}
.ls8c{letter-spacing:2.123986px;}
.ls84{letter-spacing:2.142000px;}
.ls8f{letter-spacing:2.184000px;}
.ls8d{letter-spacing:2.217600px;}
.ls98{letter-spacing:2.268000px;}
.lsaf{letter-spacing:2.310000px;}
.ls33{letter-spacing:2.323200px;}
.ls3{letter-spacing:2.335529px;}
.lsb{letter-spacing:2.481600px;}
.ls97{letter-spacing:2.546544px;}
.ls60{letter-spacing:2.587200px;}
.lsbe{letter-spacing:2.714400px;}
.ls90{letter-spacing:2.814000px;}
.ls2c{letter-spacing:2.851200px;}
.ls6b{letter-spacing:2.898000px;}
.ls28{letter-spacing:2.916000px;}
.ls73{letter-spacing:3.115200px;}
.lsbf{letter-spacing:3.556800px;}
.lsb3{letter-spacing:3.990600px;}
.ls7d{letter-spacing:4.488000px;}
.ls62{letter-spacing:8.507700px;}
.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;}
}
.ws18e{word-spacing:-72.000000px;}
.wsdd{word-spacing:-50.400000px;}
.ws130{word-spacing:-42.588000px;}
.ws18c{word-spacing:-37.968000px;}
.wsfa{word-spacing:-34.776000px;}
.ws12e{word-spacing:-33.583680px;}
.ws65{word-spacing:-32.844000px;}
.ws17a{word-spacing:-31.200000px;}
.ws18f{word-spacing:-30.030000px;}
.ws62{word-spacing:-25.899840px;}
.ws16a{word-spacing:-23.117760px;}
.ws1d1{word-spacing:-22.176000px;}
.ws4c{word-spacing:-21.756000px;}
.ws1e4{word-spacing:-21.504000px;}
.ws34{word-spacing:-17.160000px;}
.wsc6{word-spacing:-16.560000px;}
.ws109{word-spacing:-16.315200px;}
.ws15b{word-spacing:-15.945600px;}
.ws1e7{word-spacing:-15.724800px;}
.ws13{word-spacing:-15.048000px;}
.ws1e6{word-spacing:-14.882400px;}
.ws169{word-spacing:-14.836800px;}
.ws14{word-spacing:-14.784000px;}
.ws16e{word-spacing:-14.658000px;}
.ws141{word-spacing:-14.625600px;}
.ws11{word-spacing:-14.308800px;}
.wsa{word-spacing:-14.256000px;}
.ws12{word-spacing:-14.203200px;}
.ws15{word-spacing:-14.097600px;}
.ws9{word-spacing:-13.992000px;}
.wsd{word-spacing:-13.939200px;}
.ws18a{word-spacing:-13.833600px;}
.ws18d{word-spacing:-13.821000px;}
.ws110{word-spacing:-13.818000px;}
.wsb{word-spacing:-13.780800px;}
.ws15e{word-spacing:-13.734000px;}
.ws8{word-spacing:-13.728000px;}
.ws77{word-spacing:-13.680000px;}
.ws1e5{word-spacing:-13.572000px;}
.ws1e9{word-spacing:-13.478400px;}
.ws10{word-spacing:-13.411200px;}
.ws1d2{word-spacing:-13.291200px;}
.ws1ab{word-spacing:-13.230000px;}
.ws17b{word-spacing:-13.188000px;}
.ws15c{word-spacing:-13.104000px;}
.ws146{word-spacing:-13.062000px;}
.ws14a{word-spacing:-12.852000px;}
.ws79{word-spacing:-12.726000px;}
.ws10e{word-spacing:-12.684000px;}
.ws1e8{word-spacing:-12.682800px;}
.ws10c{word-spacing:-12.642000px;}
.ws1d5{word-spacing:-12.636000px;}
.ws12c{word-spacing:-12.600000px;}
.ws149{word-spacing:-12.516000px;}
.ws1d3{word-spacing:-12.495600px;}
.ws18b{word-spacing:-12.474000px;}
.ws17d{word-spacing:-12.432000px;}
.ws1d4{word-spacing:-12.402000px;}
.ws145{word-spacing:-12.390000px;}
.ws111{word-spacing:-12.348000px;}
.ws129{word-spacing:-12.306000px;}
.ws15f{word-spacing:-12.264000px;}
.ws4d{word-spacing:-12.222000px;}
.ws1b5{word-spacing:-12.180000px;}
.ws1ac{word-spacing:-12.138000px;}
.ws12a{word-spacing:-12.096000px;}
.ws12d{word-spacing:-12.054000px;}
.wseb{word-spacing:-12.012000px;}
.wse{word-spacing:-11.985600px;}
.ws16{word-spacing:-11.970000px;}
.wsc{word-spacing:-11.932800px;}
.ws10d{word-spacing:-11.928000px;}
.ws148{word-spacing:-11.886000px;}
.wsf8{word-spacing:-11.844000px;}
.ws112{word-spacing:-11.802000px;}
.ws17c{word-spacing:-11.760000px;}
.ws10f{word-spacing:-11.676000px;}
.ws12b{word-spacing:-11.634000px;}
.ws1f0{word-spacing:-11.592000px;}
.ws1a0{word-spacing:-11.382000px;}
.ws144{word-spacing:-11.340000px;}
.wsf9{word-spacing:-11.256000px;}
.ws68{word-spacing:-11.124000px;}
.ws1a1{word-spacing:-10.962000px;}
.wsf{word-spacing:-10.771200px;}
.ws73{word-spacing:-10.686000px;}
.wsc7{word-spacing:-10.500000px;}
.ws15d{word-spacing:-10.458000px;}
.ws91{word-spacing:-10.248000px;}
.ws113{word-spacing:-10.080000px;}
.wsc1{word-spacing:-9.996000px;}
.wsa4{word-spacing:-9.954000px;}
.wsa5{word-spacing:-9.786000px;}
.ws17e{word-spacing:-9.744000px;}
.ws1a2{word-spacing:-9.702000px;}
.wsf7{word-spacing:-9.660000px;}
.wsa3{word-spacing:-9.576000px;}
.wsda{word-spacing:-9.492000px;}
.ws168{word-spacing:-9.480979px;}
.ws61{word-spacing:-9.468000px;}
.wsa2{word-spacing:-9.450000px;}
.ws159{word-spacing:-9.296285px;}
.ws19e{word-spacing:-9.234720px;}
.ws10a{word-spacing:-9.203938px;}
.ws128{word-spacing:-9.142373px;}
.ws15a{word-spacing:-9.050026px;}
.ws142{word-spacing:-8.926896px;}
.ws4{word-spacing:-8.910000px;}
.ws108{word-spacing:-8.834549px;}
.wsf5{word-spacing:-8.803766px;}
.wsa0{word-spacing:-8.742202px;}
.ws7b{word-spacing:-8.712000px;}
.ws92{word-spacing:-8.652000px;}
.ws143{word-spacing:-8.619072px;}
.ws189{word-spacing:-8.557507px;}
.ws7a{word-spacing:-8.532000px;}
.ws140{word-spacing:-8.526725px;}
.ws11e{word-spacing:-8.507700px;}
.wsa1{word-spacing:-8.495942px;}
.ws10b{word-spacing:-8.403595px;}
.ws147{word-spacing:-8.400000px;}
.wsf6{word-spacing:-8.311248px;}
.wsf4{word-spacing:-8.280466px;}
.ws69{word-spacing:-8.172000px;}
.ws19f{word-spacing:-8.095771px;}
.ws158{word-spacing:-8.003424px;}
.ws90{word-spacing:-7.757165px;}
.ws1ed{word-spacing:-6.318000px;}
.ws88{word-spacing:-5.544000px;}
.ws139{word-spacing:-5.068800px;}
.ws153{word-spacing:-4.488000px;}
.ws104{word-spacing:-3.907200px;}
.ws1cb{word-spacing:-3.484800px;}
.ws102{word-spacing:-3.009600px;}
.ws72{word-spacing:-2.916000px;}
.wsf2{word-spacing:-2.904000px;}
.ws89{word-spacing:-2.851200px;}
.ws1a7{word-spacing:-2.692800px;}
.ws191{word-spacing:-2.640000px;}
.ws105{word-spacing:-2.587200px;}
.ws17f{word-spacing:-2.546544px;}
.ws135{word-spacing:-2.534400px;}
.ws28{word-spacing:-2.481600px;}
.ws1cc{word-spacing:-2.428800px;}
.ws1b{word-spacing:-2.323200px;}
.ws60{word-spacing:-2.270400px;}
.ws1e0{word-spacing:-2.246400px;}
.ws7e{word-spacing:-2.164800px;}
.ws165{word-spacing:-2.123986px;}
.ws136{word-spacing:-2.112000px;}
.ws162{word-spacing:-2.006400px;}
.ws1c{word-spacing:-1.953600px;}
.ws54{word-spacing:-1.914000px;}
.wsb3{word-spacing:-1.900800px;}
.ws55{word-spacing:-1.848000px;}
.ws1d0{word-spacing:-1.795200px;}
.ws58{word-spacing:-1.782000px;}
.ws93{word-spacing:-1.742400px;}
.ws1d7{word-spacing:-1.689600px;}
.ws52{word-spacing:-1.650000px;}
.ws138{word-spacing:-1.644000px;}
.ws172{word-spacing:-1.636800px;}
.ws1b2{word-spacing:-1.631467px;}
.ws48{word-spacing:-1.584000px;}
.ws1cd{word-spacing:-1.531200px;}
.ws150{word-spacing:-1.508338px;}
.ws5e{word-spacing:-1.478400px;}
.ws1ef{word-spacing:-1.450800px;}
.ws7f{word-spacing:-1.425600px;}
.ws47{word-spacing:-1.386000px;}
.ws1d{word-spacing:-1.372800px;}
.ws1e3{word-spacing:-1.357200px;}
.ws3e{word-spacing:-1.320000px;}
.ws6d{word-spacing:-1.267200px;}
.ws13d{word-spacing:-1.260000px;}
.ws1bb{word-spacing:-1.231296px;}
.ws1f{word-spacing:-1.214400px;}
.wsae{word-spacing:-1.161600px;}
.ws156{word-spacing:-1.138949px;}
.ws1e1{word-spacing:-1.123200px;}
.wse9{word-spacing:-1.116000px;}
.wsf3{word-spacing:-1.108800px;}
.ws166{word-spacing:-1.108166px;}
.wsbf{word-spacing:-1.092000px;}
.ws71{word-spacing:-1.080000px;}
.ws1eb{word-spacing:-1.076400px;}
.ws4e{word-spacing:-1.056000px;}
.ws4a{word-spacing:-1.050000px;}
.ws179{word-spacing:-1.044000px;}
.ws1b7{word-spacing:-1.015819px;}
.ws70{word-spacing:-1.008000px;}
.wse7{word-spacing:-1.003200px;}
.ws127{word-spacing:-0.966000px;}
.ws1b0{word-spacing:-0.950400px;}
.ws45{word-spacing:-0.924000px;}
.ws133{word-spacing:-0.923472px;}
.wsd9{word-spacing:-0.900000px;}
.ws9e{word-spacing:-0.897600px;}
.wse8{word-spacing:-0.867000px;}
.ws1bf{word-spacing:-0.861907px;}
.ws132{word-spacing:-0.844800px;}
.ws177{word-spacing:-0.840000px;}
.wsea{word-spacing:-0.828000px;}
.wse2{word-spacing:-0.822000px;}
.ws18{word-spacing:-0.798000px;}
.ws32{word-spacing:-0.792000px;}
.ws123{word-spacing:-0.769560px;}
.ws117{word-spacing:-0.765000px;}
.ws154{word-spacing:-0.739200px;}
.ws11b{word-spacing:-0.738778px;}
.ws1e{word-spacing:-0.686400px;}
.ws6f{word-spacing:-0.663000px;}
.ws13a{word-spacing:-0.646430px;}
.wsb9{word-spacing:-0.633600px;}
.ws1da{word-spacing:-0.608400px;}
.wsbc{word-spacing:-0.584866px;}
.ws119{word-spacing:-0.580800px;}
.ws115{word-spacing:-0.561000px;}
.ws124{word-spacing:-0.554083px;}
.ws4f{word-spacing:-0.528000px;}
.ws151{word-spacing:-0.513000px;}
.ws29{word-spacing:-0.475200px;}
.ws194{word-spacing:-0.461736px;}
.ws116{word-spacing:-0.459000px;}
.ws11c{word-spacing:-0.456000px;}
.ws2b{word-spacing:-0.422400px;}
.ws20{word-spacing:-0.369600px;}
.wsb6{word-spacing:-0.360000px;}
.ws134{word-spacing:-0.342000px;}
.ws1a{word-spacing:-0.316800px;}
.wsba{word-spacing:-0.264000px;}
.ws1ee{word-spacing:-0.234000px;}
.ws197{word-spacing:-0.215477px;}
.ws3{word-spacing:-0.212321px;}
.ws23{word-spacing:-0.211200px;}
.ws19{word-spacing:-0.210000px;}
.ws5{word-spacing:-0.198000px;}
.ws5c{word-spacing:-0.158400px;}
.ws13f{word-spacing:-0.153000px;}
.ws107{word-spacing:-0.126000px;}
.ws9f{word-spacing:-0.123130px;}
.ws19d{word-spacing:-0.108000px;}
.ws24{word-spacing:-0.105600px;}
.ws8f{word-spacing:-0.104400px;}
.wsb7{word-spacing:-0.092347px;}
.ws57{word-spacing:-0.066000px;}
.ws2a{word-spacing:-0.052800px;}
.ws19a{word-spacing:-0.042000px;}
.ws2{word-spacing:0.000000px;}
.ws21{word-spacing:0.052800px;}
.wsab{word-spacing:0.105600px;}
.ws176{word-spacing:0.153912px;}
.wscb{word-spacing:0.158400px;}
.wsf0{word-spacing:0.164400px;}
.ws49{word-spacing:0.198000px;}
.ws17{word-spacing:0.210000px;}
.wsef{word-spacing:0.211200px;}
.ws51{word-spacing:0.264000px;}
.ws1{word-spacing:0.318481px;}
.wsd0{word-spacing:0.336000px;}
.wsa8{word-spacing:0.369600px;}
.ws27{word-spacing:0.422400px;}
.ws56{word-spacing:0.462000px;}
.wsb0{word-spacing:0.475200px;}
.wsd7{word-spacing:0.492518px;}
.wsfe{word-spacing:0.504000px;}
.ws83{word-spacing:0.528000px;}
.ws13e{word-spacing:0.546000px;}
.ws195{word-spacing:0.580800px;}
.ws31{word-spacing:0.594000px;}
.ws1b9{word-spacing:0.633600px;}
.ws7{word-spacing:0.660000px;}
.ws1b4{word-spacing:0.672000px;}
.ws184{word-spacing:0.686400px;}
.ws198{word-spacing:0.739200px;}
.wsd1{word-spacing:0.756000px;}
.ws59{word-spacing:0.792000px;}
.ws173{word-spacing:0.822000px;}
.wscf{word-spacing:0.844800px;}
.ws193{word-spacing:0.897600px;}
.wse6{word-spacing:0.950400px;}
.ws13c{word-spacing:1.003200px;}
.ws1b3{word-spacing:1.056000px;}
.ws98{word-spacing:1.108800px;}
.ws4b{word-spacing:1.134000px;}
.ws5f{word-spacing:1.161600px;}
.wse1{word-spacing:1.169731px;}
.wscd{word-spacing:1.214400px;}
.ws2d{word-spacing:1.254000px;}
.ws6e{word-spacing:1.275000px;}
.ws6b{word-spacing:1.320000px;}
.wsb4{word-spacing:1.372800px;}
.ws1b8{word-spacing:1.425600px;}
.ws53{word-spacing:1.452000px;}
.ws186{word-spacing:1.478400px;}
.ws6{word-spacing:1.518000px;}
.ws178{word-spacing:1.530000px;}
.wsd8{word-spacing:1.561800px;}
.wsd2{word-spacing:1.584000px;}
.wsa6{word-spacing:1.636800px;}
.ws137{word-spacing:1.644000px;}
.wsc0{word-spacing:1.680000px;}
.ws182{word-spacing:1.689600px;}
.ws180{word-spacing:1.742400px;}
.wsca{word-spacing:1.795200px;}
.ws25{word-spacing:1.848000px;}
.ws1c5{word-spacing:1.900800px;}
.ws22{word-spacing:1.953600px;}
.wsd6{word-spacing:2.006400px;}
.ws84{word-spacing:2.059200px;}
.wsaf{word-spacing:2.112000px;}
.ws81{word-spacing:2.164800px;}
.ws1dc{word-spacing:2.246400px;}
.wsd4{word-spacing:2.270400px;}
.wsd3{word-spacing:2.323200px;}
.ws1aa{word-spacing:2.346000px;}
.wsbe{word-spacing:2.428800px;}
.ws1ec{word-spacing:2.480400px;}
.ws8d{word-spacing:2.481600px;}
.ws192{word-spacing:2.534400px;}
.ws19c{word-spacing:2.550000px;}
.ws46{word-spacing:2.574000px;}
.ws1be{word-spacing:2.587200px;}
.ws3b{word-spacing:2.640000px;}
.wsb5{word-spacing:2.692800px;}
.ws188{word-spacing:2.730000px;}
.ws121{word-spacing:2.798400px;}
.ws1c6{word-spacing:2.851200px;}
.ws6a{word-spacing:2.904000px;}
.ws103{word-spacing:2.956800px;}
.wsaa{word-spacing:3.009600px;}
.ws1dd{word-spacing:3.042000px;}
.ws26{word-spacing:3.062400px;}
.ws1e2{word-spacing:3.088800px;}
.ws101{word-spacing:3.115200px;}
.ws50{word-spacing:3.168000px;}
.wse4{word-spacing:3.220800px;}
.ws82{word-spacing:3.273600px;}
.ws2f{word-spacing:3.300000px;}
.ws1db{word-spacing:3.322800px;}
.ws152{word-spacing:3.326400px;}
.ws3a{word-spacing:3.366000px;}
.ws1a8{word-spacing:3.379200px;}
.ws0{word-spacing:3.432000px;}
.wsac{word-spacing:3.484800px;}
.ws19b{word-spacing:3.519000px;}
.ws155{word-spacing:3.537600px;}
.ws87{word-spacing:3.590400px;}
.wsf1{word-spacing:3.643200px;}
.ws38{word-spacing:3.696000px;}
.ws5a{word-spacing:3.748800px;}
.ws39{word-spacing:3.762000px;}
.ws1df{word-spacing:3.790800px;}
.wsb1{word-spacing:3.801600px;}
.ws33{word-spacing:3.828000px;}
.ws171{word-spacing:3.854400px;}
.ws8b{word-spacing:3.907200px;}
.ws122{word-spacing:3.960000px;}
.ws163{word-spacing:4.012800px;}
.ws196{word-spacing:4.065600px;}
.ws5d{word-spacing:4.118400px;}
.wse0{word-spacing:4.171200px;}
.ws199{word-spacing:4.224000px;}
.ws8a{word-spacing:4.276800px;}
.ws1c9{word-spacing:4.382400px;}
.ws14c{word-spacing:4.488000px;}
.ws1cf{word-spacing:4.593600px;}
.ws42{word-spacing:4.620000px;}
.ws14d{word-spacing:4.646400px;}
.ws94{word-spacing:4.699200px;}
.wsb8{word-spacing:4.752000px;}
.ws96{word-spacing:4.804800px;}
.ws11a{word-spacing:4.857600px;}
.ws8e{word-spacing:4.910400px;}
.ws1c4{word-spacing:5.016000px;}
.ws6c{word-spacing:5.068800px;}
.ws161{word-spacing:5.121600px;}
.ws2e{word-spacing:5.148000px;}
.wscc{word-spacing:5.174400px;}
.ws99{word-spacing:5.227200px;}
.ws86{word-spacing:5.332800px;}
.ws1bd{word-spacing:5.385600px;}
.ws125{word-spacing:5.438400px;}
.ws1d8{word-spacing:5.491200px;}
.ws3d{word-spacing:5.544000px;}
.ws1a4{word-spacing:5.649600px;}
.ws1de{word-spacing:5.662800px;}
.wsa7{word-spacing:5.702400px;}
.ws1af{word-spacing:5.755200px;}
.ws9a{word-spacing:5.860800px;}
.ws1c1{word-spacing:5.913600px;}
.ws160{word-spacing:6.019200px;}
.ws1b1{word-spacing:6.072000px;}
.wse5{word-spacing:6.124800px;}
.ws80{word-spacing:6.283200px;}
.ws1ba{word-spacing:6.336000px;}
.ws1ca{word-spacing:6.388800px;}
.ws36{word-spacing:6.468000px;}
.ws9b{word-spacing:6.494400px;}
.wsbb{word-spacing:6.547200px;}
.ws3c{word-spacing:6.600000px;}
.ws1b6{word-spacing:6.652800px;}
.ws106{word-spacing:6.758400px;}
.ws85{word-spacing:6.811200px;}
.wsff{word-spacing:6.864000px;}
.ws185{word-spacing:6.916800px;}
.ws9d{word-spacing:6.969600px;}
.ws100{word-spacing:7.022400px;}
.ws11d{word-spacing:7.128000px;}
.wse3{word-spacing:7.180800px;}
.wsce{word-spacing:7.233600px;}
.ws183{word-spacing:7.286400px;}
.ws44{word-spacing:7.392000px;}
.ws8c{word-spacing:7.444800px;}
.wsb2{word-spacing:7.497600px;}
.wsd5{word-spacing:7.550400px;}
.ws41{word-spacing:7.590000px;}
.ws175{word-spacing:7.603200px;}
.ws1a5{word-spacing:7.656000px;}
.ws95{word-spacing:7.708800px;}
.ws40{word-spacing:7.788000px;}
.ws1a6{word-spacing:7.814400px;}
.ws167{word-spacing:7.867200px;}
.ws181{word-spacing:8.025600px;}
.ws187{word-spacing:8.184000px;}
.wsad{word-spacing:8.342400px;}
.ws11f{word-spacing:8.507700px;}
.ws1c3{word-spacing:8.606400px;}
.ws174{word-spacing:8.659200px;}
.ws7d{word-spacing:8.712000px;}
.ws1c8{word-spacing:8.870400px;}
.ws1d9{word-spacing:8.892000px;}
.ws131{word-spacing:8.923200px;}
.wsa9{word-spacing:9.028800px;}
.ws1c7{word-spacing:9.240000px;}
.ws13b{word-spacing:9.398400px;}
.ws3f{word-spacing:9.504000px;}
.ws1ce{word-spacing:9.556800px;}
.ws14f{word-spacing:9.609600px;}
.ws97{word-spacing:9.662400px;}
.ws2c{word-spacing:9.702000px;}
.ws14e{word-spacing:9.715200px;}
.ws1bc{word-spacing:10.032000px;}
.ws30{word-spacing:10.164000px;}
.ws118{word-spacing:10.243200px;}
.ws164{word-spacing:10.612800px;}
.ws1d6{word-spacing:10.665600px;}
.ws37{word-spacing:10.824000px;}
.ws120{word-spacing:10.929600px;}
.ws1a9{word-spacing:11.035200px;}
.ws5b{word-spacing:11.140800px;}
.wsbd{word-spacing:11.827200px;}
.ws43{word-spacing:12.078000px;}
.ws7c{word-spacing:12.936000px;}
.ws9c{word-spacing:13.886400px;}
.ws126{word-spacing:14.490000px;}
.ws157{word-spacing:15.204000px;}
.ws1c0{word-spacing:15.206400px;}
.ws1ae{word-spacing:15.576000px;}
.wsc8{word-spacing:22.501200px;}
.ws66{word-spacing:124.419600px;}
.wsc9{word-spacing:127.448400px;}
.ws16f{word-spacing:151.871400px;}
.ws1a3{word-spacing:175.721472px;}
.ws1c2{word-spacing:203.322000px;}
.ws1ea{word-spacing:203.658000px;}
.ws1ad{word-spacing:204.750000px;}
.ws35{word-spacing:205.086000px;}
.ws14b{word-spacing:206.220000px;}
.ws190{word-spacing:206.346000px;}
.ws114{word-spacing:206.430000px;}
.ws170{word-spacing:206.514000px;}
.wsee{word-spacing:207.354000px;}
.wsc4{word-spacing:216.472320px;}
.wsc3{word-spacing:222.819840px;}
.ws63{word-spacing:226.123488px;}
.wsdb{word-spacing:235.077120px;}
.ws75{word-spacing:237.271680px;}
.wsc2{word-spacing:239.325120px;}
.wsfb{word-spacing:241.577280px;}
.wsed{word-spacing:244.322971px;}
.wsc5{word-spacing:246.732480px;}
.ws64{word-spacing:249.791040px;}
.ws76{word-spacing:250.644960px;}
.ws16c{word-spacing:251.513280px;}
.ws16d{word-spacing:252.573120px;}
.ws12f{word-spacing:255.421440px;}
.wsdc{word-spacing:265.501440px;}
.wsec{word-spacing:275.943914px;}
.ws78{word-spacing:277.047360px;}
.ws16b{word-spacing:291.919680px;}
.wsdf{word-spacing:292.271400px;}
.wsde{word-spacing:421.379400px;}
.ws74{word-spacing:474.874560px;}
.ws67{word-spacing:475.835040px;}
.wsfc{word-spacing:532.304640px;}
.wsfd{word-spacing:567.676800px;}
._a{margin-left:-139.469400px;}
._b{margin-left:-76.540800px;}
._f{margin-left:-18.348000px;}
._10{margin-left:-16.790400px;}
._e{margin-left:-15.734400px;}
._16{margin-left:-11.616000px;}
._d{margin-left:-10.500600px;}
._12{margin-left:-9.061800px;}
._30{margin-left:-7.713120px;}
._3{margin-left:-6.433320px;}
._8{margin-left:-4.877400px;}
._15{margin-left:-3.858360px;}
._6{margin-left:-2.629440px;}
._0{margin-left:-1.531200px;}
._1{width:1.742400px;}
._2{width:3.352800px;}
._4{width:4.384200px;}
._20{width:5.478840px;}
._11{width:6.976200px;}
._23{width:8.077080px;}
._3f{width:9.096120px;}
._13{width:10.144200px;}
._14{width:11.292600px;}
._7{width:15.216000px;}
._5{width:16.219200px;}
._24{width:17.559000px;}
._21{width:18.705000px;}
._22{width:20.154600px;}
._34{width:25.450800px;}
._17{width:26.455800px;}
._3d{width:31.936680px;}
._33{width:38.196000px;}
._9{width:41.160000px;}
._27{width:54.096000px;}
._26{width:66.108000px;}
._25{width:78.120000px;}
._28{width:111.781200px;}
._1b{width:120.162000px;}
._3b{width:125.100000px;}
._39{width:137.376000px;}
._37{width:141.380400px;}
._38{width:143.136000px;}
._1c{width:147.051600px;}
._1d{width:148.725600px;}
._3c{width:154.620000px;}
._3a{width:209.978400px;}
._1f{width:223.421760px;}
._2d{width:239.454720px;}
._31{width:248.872747px;}
._1e{width:261.342720px;}
._19{width:274.631040px;}
._36{width:275.690880px;}
._1a{width:310.268160px;}
._18{width:314.991072px;}
._2c{width:413.683200px;}
._2b{width:415.270080px;}
._32{width:446.153353px;}
._2e{width:456.994680px;}
._29{width:574.833600px;}
._2a{width:691.879680px;}
._40{width:1863.544200px;}
._3e{width:1864.972200px;}
._35{width:1866.442200px;}
._2f{width:1867.618200px;}
._c{width:1889.332200px;}
.fce{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc4{color:rgb(89,89,89);}
.fc1{color:rgb(247,64,58);}
.fc3{color:rgb(158,48,57);}
.fc7{color:rgb(42,161,168);}
.fc0{color:rgb(255,255,255);}
.fcc{color:rgb(246,187,24);}
.fc5{color:rgb(255,0,0);}
.fc8{color:rgb(126,101,24);}
.fca{color:rgb(126,101,24);}
.fcd{color:rgb(68,84,106);}
.fc6{color:transparent;}
.fc9{color:rgb(69,105,108);}
.fcb{color:rgb(159,48,57);}
.fs7{font-size:30.782400px;}
.fsb{font-size:34.800000px;}
.fsa{font-size:36.000000px;}
.fs13{font-size:37.416000px;}
.fs6{font-size:38.478000px;}
.fs8{font-size:41.100000px;}
.fs3{font-size:42.000000px;}
.fs14{font-size:43.651800px;}
.fs17{font-size:46.800000px;}
.fs15{font-size:48.972000px;}
.fs11{font-size:50.400000px;}
.fs9{font-size:51.000000px;}
.fs5{font-size:52.800000px;}
.fsd{font-size:54.000000px;}
.fsf{font-size:54.720000px;}
.fs12{font-size:56.872200px;}
.fse{font-size:57.000000px;}
.fs2{font-size:66.000000px;}
.fsc{font-size:66.240000px;}
.fs16{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs1{font-size:106.160400px;}
.fs10{font-size:120.000000px;}
.fs0{font-size:264.000000px;}
.y2d8{bottom:-169.275600px;}
.y221{bottom:-168.124350px;}
.y2f6{bottom:-161.447700px;}
.y220{bottom:-157.624350px;}
.y2d7{bottom:-140.970300px;}
.y2f5{bottom:-136.765650px;}
.y21f{bottom:-131.476950px;}
.y21e{bottom:-120.976950px;}
.y2d6{bottom:-112.664850px;}
.y2f4{bottom:-112.083750px;}
.y21d{bottom:-94.829400px;}
.y2f3{bottom:-87.401850px;}
.y2d5{bottom:-84.359550px;}
.y21c{bottom:-84.329400px;}
.y2f2{bottom:-62.719800px;}
.y2d4{bottom:-56.054250px;}
.y14c{bottom:-53.345250px;}
.y1d5{bottom:-53.202150px;}
.y184{bottom:-42.889650px;}
.y1d4{bottom:-38.572950px;}
.y14b{bottom:-30.475200px;}
.y183{bottom:-26.546550px;}
.y1d3{bottom:-23.943900px;}
.yaa{bottom:-17.885550px;}
.y2b4{bottom:-17.473350px;}
.y246{bottom:-4.782900px;}
.y0{bottom:0.000000px;}
.y19b{bottom:2.619150px;}
.y199{bottom:2.864662px;}
.y196{bottom:2.878880px;}
.y193{bottom:2.902735px;}
.y18f{bottom:3.162465px;}
.ye2{bottom:3.245010px;}
.ye5{bottom:3.599250px;}
.y125{bottom:3.599850px;}
.y191{bottom:3.741600px;}
.y15c{bottom:3.960450px;}
.y195{bottom:4.115850px;}
.y19c{bottom:4.353752px;}
.yd2{bottom:4.679400px;}
.yac{bottom:4.679550px;}
.y12f{bottom:4.679850px;}
.y288{bottom:4.680000px;}
.y2c1{bottom:4.680300px;}
.y88{bottom:4.680450px;}
.y1de{bottom:4.680600px;}
.y1e0{bottom:4.680750px;}
.y19f{bottom:4.863450px;}
.y1a4{bottom:4.863600px;}
.y1aa{bottom:4.863750px;}
.y18c{bottom:4.864200px;}
.y1a7{bottom:4.864500px;}
.y192{bottom:4.978570px;}
.y18e{bottom:5.238300px;}
.y2df{bottom:5.399400px;}
.y2c2{bottom:5.400300px;}
.y206{bottom:5.400600px;}
.y209{bottom:5.400750px;}
.y122{bottom:5.759850px;}
.ydc{bottom:6.482130px;}
.yd7{bottom:7.559250px;}
.y18d{bottom:8.774164px;}
.y190{bottom:8.792813px;}
.y19a{bottom:8.864679px;}
.y197{bottom:8.878897px;}
.y194{bottom:8.902752px;}
.ydd{bottom:10.439400px;}
.y198{bottom:14.111139px;}
.yc0{bottom:16.855200px;}
.ye3{bottom:17.639250px;}
.y19d{bottom:19.382231px;}
.yd9{bottom:19.439250px;}
.ye1{bottom:19.442130px;}
.y15b{bottom:20.160450px;}
.y247{bottom:20.422950px;}
.ydb{bottom:22.679250px;}
.ye0{bottom:35.639250px;}
.yc1{bottom:44.370900px;}
.y248{bottom:45.629100px;}
.y7{bottom:47.111700px;}
.y249{bottom:70.834950px;}
.y24a{bottom:96.040950px;}
.y59{bottom:97.334700px;}
.y7c{bottom:97.334850px;}
.y2e{bottom:97.370100px;}
.y11c{bottom:97.370250px;}
.y86{bottom:102.862200px;}
.y339{bottom:108.803100px;}
.y58{bottom:111.584700px;}
.y7b{bottom:111.584850px;}
.yd0{bottom:111.585000px;}
.y2d{bottom:111.620100px;}
.y23f{bottom:111.620250px;}
.y11b{bottom:111.620400px;}
.y2fd{bottom:113.302200px;}
.y32a{bottom:116.834700px;}
.y24b{bottom:121.246800px;}
.y338{bottom:124.553100px;}
.y57{bottom:125.834700px;}
.y1dc{bottom:125.834850px;}
.y112{bottom:125.835000px;}
.ycf{bottom:125.835150px;}
.y2c{bottom:125.870100px;}
.y320{bottom:125.870250px;}
.y23e{bottom:125.870400px;}
.y11a{bottom:125.870550px;}
.y344{bottom:126.584700px;}
.y329{bottom:136.334700px;}
.y84{bottom:138.564450px;}
.y56{bottom:140.084700px;}
.y1db{bottom:140.084850px;}
.y111{bottom:140.085000px;}
.yce{bottom:140.085300px;}
.y2b{bottom:140.120100px;}
.y31f{bottom:140.120250px;}
.y26c{bottom:140.120400px;}
.y119{bottom:140.120550px;}
.y337{bottom:140.303100px;}
.y343{bottom:142.334700px;}
.y2fa{bottom:145.075200px;}
.y150{bottom:152.930400px;}
.y55{bottom:154.334700px;}
.y1da{bottom:154.334850px;}
.y110{bottom:154.335000px;}
.y237{bottom:154.335150px;}
.y2a{bottom:154.370100px;}
.y31e{bottom:154.370250px;}
.y26b{bottom:154.370400px;}
.y118{bottom:154.370550px;}
.y280{bottom:154.370700px;}
.y328{bottom:155.834700px;}
.ybf{bottom:156.307500px;}
.y342{bottom:158.084700px;}
.y14f{bottom:163.370400px;}
.y336{bottom:164.557050px;}
.y54{bottom:168.584700px;}
.y1d9{bottom:168.584850px;}
.y10f{bottom:168.585000px;}
.y236{bottom:168.585150px;}
.y29{bottom:168.620100px;}
.y26a{bottom:168.620400px;}
.y117{bottom:168.620550px;}
.y27f{bottom:168.620700px;}
.y307{bottom:170.196600px;}
.yba{bottom:173.762700px;}
.y341{bottom:173.834700px;}
.y155{bottom:175.334700px;}
.y24c{bottom:177.796950px;}
.y14a{bottom:179.677500px;}
.y335{bottom:180.307050px;}
.y53{bottom:182.834700px;}
.y10e{bottom:182.835000px;}
.y235{bottom:182.835150px;}
.y28{bottom:182.870100px;}
.y269{bottom:182.870400px;}
.y116{bottom:182.870550px;}
.y326{bottom:182.870700px;}
.y27e{bottom:182.870850px;}
.y151{bottom:185.110350px;}
.y340{bottom:189.584700px;}
.y306{bottom:189.696600px;}
.y149{bottom:191.677650px;}
.y2f7{bottom:192.334950px;}
.y7a{bottom:194.834700px;}
.y257{bottom:195.358950px;}
.y52{bottom:197.084700px;}
.y10d{bottom:197.085000px;}
.y234{bottom:197.085150px;}
.y30a{bottom:197.085300px;}
.y27{bottom:197.120100px;}
.y268{bottom:197.120400px;}
.y115{bottom:197.120700px;}
.y325{bottom:197.120850px;}
.y27d{bottom:197.121000px;}
.ybb{bottom:201.275700px;}
.y334{bottom:204.561000px;}
.y33f{bottom:205.334700px;}
.yfb{bottom:207.077400px;}
.y256{bottom:207.358950px;}
.y305{bottom:209.196600px;}
.y154{bottom:209.232900px;}
.y34b{bottom:209.831100px;}
.y10c{bottom:211.335000px;}
.y233{bottom:211.335150px;}
.y309{bottom:211.335300px;}
.y26{bottom:211.370100px;}
.y267{bottom:211.370400px;}
.y2bd{bottom:211.370850px;}
.y2b9{bottom:211.371000px;}
.y79{bottom:214.334700px;}
.yfa{bottom:217.517400px;}
.y333{bottom:220.311000px;}
.y33e{bottom:221.084550px;}
.y34a{bottom:225.581100px;}
.y10b{bottom:225.585000px;}
.y232{bottom:225.585150px;}
.y25{bottom:225.620100px;}
.y266{bottom:225.620550px;}
.y2bc{bottom:225.620850px;}
.y2b8{bottom:225.621000px;}
.yc2{bottom:228.194250px;}
.y304{bottom:228.696600px;}
.y153{bottom:228.732900px;}
.ybc{bottom:228.788700px;}
.yf9{bottom:230.303700px;}
.yf6{bottom:232.784250px;}
.y78{bottom:233.834700px;}
.y10a{bottom:239.835000px;}
.y1d8{bottom:239.835150px;}
.y265{bottom:239.870700px;}
.y2bb{bottom:239.870850px;}
.y2b7{bottom:239.871000px;}
.y332{bottom:244.564950px;}
.yf5{bottom:244.784250px;}
.y303{bottom:248.196600px;}
.y152{bottom:248.232900px;}
.y2d3{bottom:251.994300px;}
.y33d{bottom:252.584550px;}
.yfd{bottom:252.867900px;}
.y77{bottom:253.334700px;}
.y109{bottom:254.085000px;}
.y1d7{bottom:254.085150px;}
.y231{bottom:254.085300px;}
.y264{bottom:254.120700px;}
.y2b6{bottom:254.121000px;}
.yc3{bottom:255.714750px;}
.ybd{bottom:256.301700px;}
.y25a{bottom:258.862200px;}
.y349{bottom:259.331100px;}
.y2be{bottom:259.369500px;}
.y331{bottom:260.314950px;}
.y30e{bottom:265.275600px;}
.y51{bottom:265.899450px;}
.y5{bottom:268.119900px;}
.y33c{bottom:268.334550px;}
.y108{bottom:268.335000px;}
.y1d6{bottom:268.335150px;}
.y230{bottom:268.335300px;}
.y263{bottom:268.370850px;}
.y259{bottom:269.302200px;}
.yfc{bottom:272.367900px;}
.y76{bottom:272.834700px;}
.y11f{bottom:275.485500px;}
.y30d{bottom:275.715600px;}
.y330{bottom:276.064950px;}
.y2d2{bottom:277.494300px;}
.yd4{bottom:278.445000px;}
.y107{bottom:282.585150px;}
.y22f{bottom:282.585300px;}
.y262{bottom:282.620850px;}
.yc4{bottom:283.235250px;}
.ybe{bottom:283.814700px;}
.y2cc{bottom:283.944900px;}
.y33b{bottom:284.084550px;}
.y24{bottom:284.380950px;}
.y2b3{bottom:285.216750px;}
.y50{bottom:288.399450px;}
.y348{bottom:290.831100px;}
.y75{bottom:292.334700px;}
.y148{bottom:295.788150px;}
.y133{bottom:296.393250px;}
.y137{bottom:296.402250px;}
.y13b{bottom:296.411250px;}
.y13f{bottom:296.420250px;}
.y143{bottom:296.429250px;}
.y22e{bottom:296.835300px;}
.y261{bottom:296.871000px;}
.y2b2{bottom:297.216750px;}
.yef{bottom:297.739500px;}
.y1fe{bottom:299.384100px;}
.y32f{bottom:300.318900px;}
.ya9{bottom:301.134450px;}
.y228{bottom:302.698800px;}
.y281{bottom:302.834700px;}
.y2d1{bottom:302.994300px;}
.yf4{bottom:303.276450px;}
.y21b{bottom:305.336700px;}
.y347{bottom:306.581100px;}
.y23{bottom:306.880950px;}
.yea{bottom:309.970500px;}
.y4f{bottom:310.899450px;}
.y22d{bottom:311.085450px;}
.y260{bottom:311.121150px;}
.y2cb{bottom:311.700900px;}
.y74{bottom:311.834700px;}
.y227{bottom:313.138800px;}
.y33a{bottom:315.584700px;}
.y32e{bottom:316.068900px;}
.y21a{bottom:317.336700px;}
.y2f1{bottom:320.322000px;}
.y346{bottom:322.331100px;}
.y1fd{bottom:324.884250px;}
.ya8{bottom:325.134450px;}
.y22c{bottom:325.335600px;}
.y25f{bottom:325.371150px;}
.y2d0{bottom:328.494300px;}
.y22{bottom:329.380950px;}
.y219{bottom:330.836700px;}
.y73{bottom:331.334700px;}
.y147{bottom:331.782150px;}
.y3{bottom:332.070750px;}
.y2f0{bottom:332.322000px;}
.y132{bottom:332.384250px;}
.y136{bottom:332.393250px;}
.y13a{bottom:332.402250px;}
.y13e{bottom:332.411250px;}
.y142{bottom:332.420250px;}
.y245{bottom:333.165000px;}
.y31b{bottom:333.706500px;}
.y317{bottom:334.297500px;}
.y255{bottom:335.223000px;}
.yee{bottom:338.041500px;}
.y345{bottom:338.081100px;}
.y22b{bottom:339.585600px;}
.y25e{bottom:339.621300px;}
.y32d{bottom:340.322850px;}
.y218{bottom:342.836700px;}
.yf3{bottom:343.575450px;}
.y2ef{bottom:345.822000px;}
.y1fc{bottom:348.884250px;}
.y2f8{bottom:349.357500px;}
.ye9{bottom:350.272500px;}
.y4e{bottom:350.407350px;}
.y72{bottom:350.834700px;}
.y21{bottom:351.880950px;}
.y2cf{bottom:352.494300px;}
.y226{bottom:353.064450px;}
.y22a{bottom:353.835600px;}
.y25d{bottom:353.871450px;}
.y217{bottom:354.836700px;}
.y83{bottom:355.334700px;}
.y32c{bottom:356.072850px;}
.y201{bottom:356.564250px;}
.y2ee{bottom:357.822000px;}
.y251{bottom:361.852950px;}
.y24d{bottom:362.453100px;}
.y2{bottom:362.857200px;}
.y146{bottom:367.776150px;}
.y25c{bottom:368.121450px;}
.y131{bottom:368.375250px;}
.y135{bottom:368.384250px;}
.y139{bottom:368.393250px;}
.y13d{bottom:368.402250px;}
.y141{bottom:368.411250px;}
.y31a{bottom:368.587500px;}
.y316{bottom:369.181500px;}
.y2ed{bottom:369.822000px;}
.y71{bottom:370.334700px;}
.y32b{bottom:371.822850px;}
.y200{bottom:372.316500px;}
.y82{bottom:372.584700px;}
.y4d{bottom:372.907350px;}
.y20{bottom:374.380950px;}
.y12c{bottom:377.068350px;}
.yed{bottom:378.343500px;}
.y23d{bottom:379.617900px;}
.y25b{bottom:382.371450px;}
.yf2{bottom:383.874450px;}
.y182{bottom:385.584750px;}
.y81{bottom:389.834550px;}
.y106{bottom:389.834700px;}
.ye8{bottom:390.574500px;}
.y1fb{bottom:393.601500px;}
.y1d2{bottom:394.662900px;}
.y4c{bottom:395.407350px;}
.y1f{bottom:396.880950px;}
.y12a{bottom:397.948350px;}
.y23c{bottom:399.117900px;}
.y27c{bottom:400.334550px;}
.y181{bottom:400.584750px;}
.y319{bottom:403.468500px;}
.y145{bottom:403.770150px;}
.y315{bottom:404.065500px;}
.y130{bottom:404.366250px;}
.y134{bottom:404.375250px;}
.y138{bottom:404.384250px;}
.y13c{bottom:404.393250px;}
.y140{bottom:404.402250px;}
.y252{bottom:406.246950px;}
.y24e{bottom:406.841100px;}
.y1d1{bottom:407.134950px;}
.y31d{bottom:409.334550px;}
.y70{bottom:409.334700px;}
.y1fa{bottom:415.967100px;}
.y1f2{bottom:416.514900px;}
.y23b{bottom:418.617900px;}
.yec{bottom:418.645500px;}
.y128{bottom:418.828350px;}
.y1e{bottom:419.380950px;}
.y1d0{bottom:419.606850px;}
.y2cd{bottom:419.781900px;}
.yf1{bottom:424.173450px;}
.yb9{bottom:426.787500px;}
.y31c{bottom:428.834550px;}
.y105{bottom:428.834700px;}
.ye7{bottom:430.876500px;}
.y4b{bottom:434.915250px;}
.y144{bottom:435.543150px;}
.y23a{bottom:438.117900px;}
.y318{bottom:438.349500px;}
.y314{bottom:438.949500px;}
.y126{bottom:439.708350px;}
.y1d{bottom:441.880950px;}
.y1f9{bottom:447.162600px;}
.yb8{bottom:447.667500px;}
.y1f1{bottom:447.717900px;}
.y27b{bottom:448.334550px;}
.y104{bottom:448.334700px;}
.y253{bottom:450.640950px;}
.y24f{bottom:451.229100px;}
.y4a{bottom:457.415250px;}
.y239{bottom:457.617900px;}
.yeb{bottom:458.947500px;}
.y123{bottom:460.588350px;}
.y2ca{bottom:461.766900px;}
.y1c{bottom:464.380950px;}
.yf0{bottom:464.472450px;}
.y27a{bottom:467.834550px;}
.y103{bottom:467.834700px;}
.y85{bottom:468.468450px;}
.yb7{bottom:468.547500px;}
.ye6{bottom:471.178500px;}
.y14e{bottom:472.334700px;}
.y1ab{bottom:477.009000px;}
.y238{bottom:477.117900px;}
.y2b5{bottom:478.334700px;}
.y1f8{bottom:478.358100px;}
.y1f0{bottom:478.920900px;}
.y120{bottom:481.468350px;}
.y2ce{bottom:483.366900px;}
.y279{bottom:487.334550px;}
.y114{bottom:487.334700px;}
.yb6{bottom:489.427500px;}
.y14d{bottom:489.584700px;}
.y30c{bottom:491.834700px;}
.y1{bottom:492.540750px;}
.y254{bottom:495.034950px;}
.y250{bottom:495.617100px;}
.y49{bottom:496.923000px;}
.y1a8{bottom:498.710100px;}
.y1b{bottom:503.888850px;}
.yc5{bottom:505.403550px;}
.y278{bottom:506.834550px;}
.y102{bottom:506.834700px;}
.y202{bottom:506.835000px;}
.y30b{bottom:509.084700px;}
.y210{bottom:509.213100px;}
.y1f7{bottom:509.553600px;}
.y1ef{bottom:510.123900px;}
.yb5{bottom:510.307500px;}
.y2dc{bottom:511.334700px;}
.y2c7{bottom:516.714300px;}
.y324{bottom:517.334700px;}
.y1a5{bottom:520.411350px;}
.y313{bottom:522.574500px;}
.y277{bottom:526.334550px;}
.y101{bottom:526.334700px;}
.yf8{bottom:528.584700px;}
.y20e{bottom:530.093250px;}
.yc7{bottom:532.555650px;}
.y48{bottom:536.430900px;}
.y162{bottom:537.037230px;}
.y214{bottom:537.404700px;}
.y2c5{bottom:537.594300px;}
.y1f6{bottom:540.749100px;}
.y1ee{bottom:541.326900px;}
.y1a2{bottom:542.112600px;}
.y312{bottom:543.454500px;}
.y12e{bottom:543.474000px;}
.yf7{bottom:545.834700px;}
.y20c{bottom:550.973100px;}
.yc6{bottom:552.055650px;}
.yb4{bottom:552.067500px;}
.y159{bottom:554.109000px;}
.y161{bottom:557.912910px;}
.y2c3{bottom:558.474300px;}
.y47{bottom:558.930900px;}
.y4{bottom:559.905300px;}
.y1a0{bottom:563.813850px;}
.y311{bottom:564.334500px;}
.y158{bottom:564.549000px;}
.y276{bottom:565.334550px;}
.y100{bottom:565.334700px;}
.y258{bottom:567.584700px;}
.y20a{bottom:571.853100px;}
.y1f5{bottom:571.944600px;}
.y1ed{bottom:572.529900px;}
.yb3{bottom:572.947500px;}
.y6f{bottom:573.281400px;}
.y160{bottom:578.788590px;}
.y46{bottom:581.430900px;}
.ya7{bottom:583.191000px;}
.y275{bottom:584.834550px;}
.yff{bottom:584.834700px;}
.y310{bottom:585.214500px;}
.y185{bottom:589.495350px;}
.y207{bottom:592.733250px;}
.yb2{bottom:593.827500px;}
.y6e{bottom:595.781400px;}
.ya6{bottom:596.901300px;}
.y15f{bottom:599.664270px;}
.y2bf{bottom:600.234300px;}
.y1f4{bottom:603.140100px;}
.y1ec{bottom:603.732900px;}
.y45{bottom:603.930900px;}
.y274{bottom:604.334550px;}
.ycd{bottom:604.334700px;}
.y9e{bottom:610.687800px;}
.y204{bottom:613.617420px;}
.y188{bottom:613.617900px;}
.yb1{bottom:614.707500px;}
.y6d{bottom:618.281400px;}
.y15e{bottom:620.539950px;}
.y273{bottom:623.834550px;}
.ycc{bottom:623.834700px;}
.y44{bottom:626.430900px;}
.y30f{bottom:626.974500px;}
.y18a{bottom:630.413850px;}
.y244{bottom:630.421500px;}
.y187{bottom:633.117900px;}
.y229{bottom:634.334700px;}
.y1f3{bottom:634.335600px;}
.y203{bottom:634.493100px;}
.y1eb{bottom:634.935900px;}
.yb0{bottom:635.587500px;}
.yd5{bottom:637.604250px;}
.y6c{bottom:640.781400px;}
.y272{bottom:643.334550px;}
.ycb{bottom:643.334700px;}
.y9f{bottom:643.657800px;}
.y12d{bottom:647.874000px;}
.y2fc{bottom:648.862200px;}
.y43{bottom:648.930900px;}
.y243{bottom:651.301500px;}
.y186{bottom:652.617900px;}
.y2e5{bottom:655.383900px;}
.yaf{bottom:656.467500px;}
.y2fb{bottom:659.302200px;}
.y271{bottom:662.834550px;}
.yca{bottom:662.834700px;}
.y6b{bottom:663.281400px;}
.y215{bottom:667.148700px;}
.y12b{bottom:668.754000px;}
.y42{bottom:671.430900px;}
.y242{bottom:672.181500px;}
.y2e3{bottom:676.263900px;}
.ya0{bottom:676.627800px;}
.y189{bottom:677.469000px;}
.y270{bottom:682.334550px;}
.yfe{bottom:682.334700px;}
.y213{bottom:683.366700px;}
.y1ff{bottom:684.584700px;}
.y129{bottom:689.634000px;}
.y2f9{bottom:691.075200px;}
.y241{bottom:693.061500px;}
.y41{bottom:693.930900px;}
.y15d{bottom:697.063500px;}
.y1ac{bottom:697.111800px;}
.y2e1{bottom:697.143900px;}
.yae{bottom:698.227500px;}
.y26f{bottom:701.834550px;}
.yc9{bottom:701.834700px;}
.y6a{bottom:702.789300px;}
.y1b2{bottom:705.418152px;}
.y283{bottom:707.362200px;}
.ya1{bottom:709.597800px;}
.y127{bottom:710.514000px;}
.y11e{bottom:712.334700px;}
.y1ca{bottom:713.128050px;}
.y1b8{bottom:713.724504px;}
.y240{bottom:713.941500px;}
.y302{bottom:716.196600px;}
.y40{bottom:716.430900px;}
.y282{bottom:717.802200px;}
.yad{bottom:719.107500px;}
.y26e{bottom:721.334550px;}
.y1a{bottom:721.334700px;}
.y1be{bottom:722.030856px;}
.y17b{bottom:725.091300px;}
.y69{bottom:725.289300px;}
.y1c4{bottom:730.337208px;}
.y124{bottom:731.394000px;}
.y176{bottom:734.856300px;}
.y301{bottom:735.696600px;}
.y3f{bottom:738.930900px;}
.ydf{bottom:740.370000px;}
.y308{bottom:740.834550px;}
.y19{bottom:740.834700px;}
.y212{bottom:741.839700px;}
.ya2{bottom:742.567800px;}
.y284{bottom:744.446850px;}
.y180{bottom:744.579300px;}
.y171{bottom:744.621300px;}
.y216{bottom:746.474700px;}
.y68{bottom:747.789300px;}
.y2c9{bottom:750.523500px;}
.y121{bottom:752.274000px;}
.y16c{bottom:754.386300px;}
.y300{bottom:755.196600px;}
.y1ad{bottom:756.930630px;}
.y26d{bottom:760.334550px;}
.yc8{bottom:760.334700px;}
.yab{bottom:760.867500px;}
.y3e{bottom:761.430900px;}
.y167{bottom:764.151300px;}
.y1b3{bottom:765.236982px;}
.y67{bottom:770.289300px;}
.y323{bottom:770.834700px;}
.y2c8{bottom:771.403500px;}
.y286{bottom:771.598950px;}
.y1cb{bottom:772.952842px;}
.y1b9{bottom:773.543334px;}
.y2ff{bottom:774.696600px;}
.ya3{bottom:775.537800px;}
.y18{bottom:779.834700px;}
.y1bf{bottom:781.849686px;}
.y3d{bottom:783.930900px;}
.yde{bottom:789.330000px;}
.y1c5{bottom:790.156038px;}
.y285{bottom:791.098950px;}
.y17a{bottom:791.608800px;}
.y2c6{bottom:792.283500px;}
.y2fe{bottom:794.196600px;}
.y17{bottom:799.334700px;}
.y175{bottom:801.373800px;}
.y3c{bottom:806.430900px;}
.y225{bottom:808.334700px;}
.ya4{bottom:808.507800px;}
.y66{bottom:809.797050px;}
.y113{bottom:809.834700px;}
.y17f{bottom:811.096800px;}
.y170{bottom:811.138800px;}
.y2b1{bottom:812.976000px;}
.y2c4{bottom:813.163500px;}
.y1ae{bottom:816.749460px;}
.y16{bottom:818.834700px;}
.y2e0{bottom:818.835000px;}
.y16b{bottom:820.903800px;}
.yda{bottom:823.530000px;}
.y1b4{bottom:825.055812px;}
.y224{bottom:825.584700px;}
.y2b0{bottom:825.597150px;}
.y3b{bottom:828.930900px;}
.y2ea{bottom:830.550450px;}
.y166{bottom:830.668800px;}
.y65{bottom:832.297050px;}
.y1cc{bottom:832.777634px;}
.y1ba{bottom:833.362164px;}
.y2c0{bottom:834.043500px;}
.y15{bottom:838.334700px;}
.y2a7{bottom:839.362650px;}
.y2a4{bottom:839.930400px;}
.ya5{bottom:841.477800px;}
.y1c0{bottom:841.668516px;}
.y2a6{bottom:841.712400px;}
.y223{bottom:842.834700px;}
.y1c6{bottom:849.974868px;}
.y1ea{bottom:852.285000px;}
.y11d{bottom:853.334700px;}
.y2a5{bottom:853.520400px;}
.y64{bottom:854.797050px;}
.yd8{bottom:857.730000px;}
.y14{bottom:857.834700px;}
.y179{bottom:858.126300px;}
.y222{bottom:860.084700px;}
.y2a2{bottom:862.592400px;}
.y2a0{bottom:865.652400px;}
.y174{bottom:867.891300px;}
.y2a8{bottom:868.080150px;}
.y3a{bottom:868.438800px;}
.y1e9{bottom:873.165000px;}
.y29e{bottom:876.128400px;}
.y1af{bottom:876.568290px;}
.y2a3{bottom:877.262400px;}
.y13{bottom:877.334700px;}
.y2e9{bottom:877.521450px;}
.y2a1{bottom:877.586400px;}
.y17e{bottom:877.614300px;}
.y16f{bottom:877.656300px;}
.y1b5{bottom:884.874642px;}
.y16a{bottom:887.421300px;}
.yd6{bottom:890.490000px;}
.y39{bottom:890.938800px;}
.y1cd{bottom:892.602426px;}
.y29f{bottom:892.652400px;}
.y1bb{bottom:893.180994px;}
.y1e8{bottom:894.045000px;}
.y63{bottom:894.304950px;}
.y2a9{bottom:896.797650px;}
.y12{bottom:896.834700px;}
.y165{bottom:897.186300px;}
.y80{bottom:899.084700px;}
.y1c1{bottom:901.487346px;}
.y2ba{bottom:907.334700px;}
.y1c7{bottom:909.793698px;}
.y29d{bottom:912.749400px;}
.y38{bottom:913.438800px;}
.y1e7{bottom:914.925000px;}
.y11{bottom:916.334700px;}
.y178{bottom:924.643800px;}
.y2aa{bottom:925.515150px;}
.y322{bottom:926.834700px;}
.y29b{bottom:932.018400px;}
.yd3{bottom:932.250000px;}
.y62{bottom:933.812850px;}
.y173{bottom:934.408800px;}
.y1e6{bottom:935.805000px;}
.y10{bottom:935.834700px;}
.y37{bottom:935.938800px;}
.y1b0{bottom:936.387120px;}
.y29c{bottom:939.677400px;}
.y17d{bottom:944.131800px;}
.y16e{bottom:944.173800px;}
.y1b6{bottom:944.693472px;}
.ye4{bottom:952.410000px;}
.y1ce{bottom:952.427218px;}
.y1bc{bottom:952.999824px;}
.yd1{bottom:953.130000px;}
.y169{bottom:953.938800px;}
.y2ab{bottom:954.232650px;}
.yf{bottom:955.334700px;}
.y61{bottom:956.312850px;}
.y1e5{bottom:956.685000px;}
.y29a{bottom:957.857400px;}
.y36{bottom:958.438800px;}
.y1c2{bottom:961.306176px;}
.y164{bottom:963.703800px;}
.y1c8{bottom:969.612528px;}
.ye{bottom:974.834700px;}
.y1e4{bottom:977.565000px;}
.y35{bottom:980.938800px;}
.y2ac{bottom:982.950150px;}
.y2eb{bottom:985.764450px;}
.y177{bottom:991.161300px;}
.yd{bottom:994.334700px;}
.y60{bottom:995.820750px;}
.y1b1{bottom:996.205950px;}
.y1e3{bottom:998.445000px;}
.y172{bottom:1000.926300px;}
.y1b7{bottom:1004.512302px;}
.y17c{bottom:1010.649300px;}
.y16d{bottom:1010.691300px;}
.y211{bottom:1011.367500px;}
.y2ad{bottom:1011.667650px;}
.y1cf{bottom:1012.252009px;}
.y1bd{bottom:1012.818654px;}
.yc{bottom:1013.834700px;}
.y296{bottom:1015.295400px;}
.y9d{bottom:1016.535000px;}
.y5f{bottom:1018.320750px;}
.y1e2{bottom:1019.325000px;}
.y34{bottom:1020.446700px;}
.y168{bottom:1020.456300px;}
.y1c3{bottom:1021.125006px;}
.y2e8{bottom:1022.772450px;}
.y295{bottom:1024.745400px;}
.y1c9{bottom:1029.431358px;}
.y163{bottom:1030.221300px;}
.y2ec{bottom:1031.403450px;}
.y20f{bottom:1032.247500px;}
.yb{bottom:1033.334700px;}
.y9c{bottom:1037.415000px;}
.y2ae{bottom:1040.385150px;}
.y5e{bottom:1040.820750px;}
.y297{bottom:1041.143400px;}
.y33{bottom:1042.946700px;}
.y298{bottom:1046.885400px;}
.ya{bottom:1052.834700px;}
.y20d{bottom:1053.127500px;}
.y299{bottom:1058.117400px;}
.y9b{bottom:1058.295000px;}
.y2db{bottom:1059.584700px;}
.y1e1{bottom:1061.085000px;}
.y5d{bottom:1063.320750px;}
.y32{bottom:1065.446700px;}
.y2af{bottom:1069.102650px;}
.y7f{bottom:1072.334700px;}
.y20b{bottom:1074.007500px;}
.y2da{bottom:1076.834700px;}
.y9a{bottom:1079.175000px;}
.y1df{bottom:1081.965000px;}
.y5c{bottom:1085.820750px;}
.y31{bottom:1087.946700px;}
.y9{bottom:1091.834700px;}
.y2d9{bottom:1094.084700px;}
.y208{bottom:1094.887500px;}
.y157{bottom:1096.334700px;}
.y99{bottom:1100.055000px;}
.y327{bottom:1106.834700px;}
.y5b{bottom:1108.320750px;}
.y30{bottom:1110.446700px;}
.y7e{bottom:1111.334700px;}
.y156{bottom:1113.584700px;}
.y205{bottom:1115.767500px;}
.y98{bottom:1120.935000px;}
.y321{bottom:1121.834700px;}
.y1dd{bottom:1123.725000px;}
.y5a{bottom:1130.820750px;}
.y7d{bottom:1130.834700px;}
.y8{bottom:1131.113250px;}
.y2f{bottom:1132.946700px;}
.y97{bottom:1141.815000px;}
.y1a9{bottom:1146.621000px;}
.y96{bottom:1162.695000px;}
.y1a6{bottom:1168.321500px;}
.y95{bottom:1183.575000px;}
.y1a3{bottom:1190.023500px;}
.y6{bottom:1197.611700px;}
.y94{bottom:1204.455000px;}
.y1a1{bottom:1211.724000px;}
.y93{bottom:1225.335000px;}
.y19e{bottom:1233.426000px;}
.y92{bottom:1246.215000px;}
.y294{bottom:1249.563000px;}
.y18b{bottom:1255.126500px;}
.y91{bottom:1267.095000px;}
.y293{bottom:1270.443000px;}
.y90{bottom:1287.975000px;}
.y292{bottom:1291.323000px;}
.y8f{bottom:1308.855000px;}
.y291{bottom:1312.203000px;}
.y8e{bottom:1329.735000px;}
.y290{bottom:1333.083000px;}
.y15a{bottom:1333.803000px;}
.y8d{bottom:1350.615000px;}
.y28f{bottom:1353.963000px;}
.y8c{bottom:1371.495000px;}
.y28e{bottom:1374.843000px;}
.y28d{bottom:1395.723000px;}
.y8b{bottom:1413.255000px;}
.y28c{bottom:1416.603000px;}
.y8a{bottom:1434.135000px;}
.y2e7{bottom:1448.659500px;}
.y89{bottom:1455.015000px;}
.y28b{bottom:1458.363000px;}
.y2e6{bottom:1469.539500px;}
.y28a{bottom:1479.243000px;}
.y2e4{bottom:1490.419500px;}
.y87{bottom:1496.775000px;}
.y289{bottom:1500.123000px;}
.y2e2{bottom:1511.299500px;}
.y2de{bottom:1532.179500px;}
.y287{bottom:1541.883000px;}
.y2dd{bottom:1573.939500px;}
.hf{height:-639.649500px;}
.h11{height:-597.889500px;}
.h12{height:-577.009500px;}
.h13{height:-556.129500px;}
.ha5{height:-526.348500px;}
.h14{height:-514.369500px;}
.h15{height:-493.489500px;}
.ha7{height:-484.588500px;}
.h16{height:-472.609500px;}
.ha9{height:-463.708500px;}
.h89{height:-457.632000px;}
.h6c{height:-457.122000px;}
.h3e{height:-454.905000px;}
.h4a{height:-454.185000px;}
.h17{height:-451.729500px;}
.haa{height:-442.828500px;}
.h2a{height:-439.843500px;}
.h3f{height:-434.025000px;}
.h18{height:-430.849500px;}
.hab{height:-421.948500px;}
.h8a{height:-415.872000px;}
.h6d{height:-415.362000px;}
.h19{height:-409.969500px;}
.hac{height:-401.068500px;}
.h2c{height:-398.083500px;}
.h8b{height:-394.992000px;}
.h6e{height:-394.482000px;}
.h43{height:-392.265000px;}
.h1a{height:-389.089500px;}
.h2d{height:-377.203500px;}
.h8c{height:-374.112000px;}
.h1b{height:-368.209500px;}
.h44{height:-359.505000px;}
.h6f{height:-352.722000px;}
.h1c{height:-347.329500px;}
.h2e{height:-335.443500px;}
.h9d{height:-333.717000px;}
.h7b{height:-333.630000px;}
.h8d{height:-332.352000px;}
.h70{height:-331.842000px;}
.h1d{height:-326.449500px;}
.h45{height:-325.305000px;}
.h2f{height:-314.563500px;}
.h9e{height:-312.837000px;}
.h7c{height:-312.750000px;}
.h8e{height:-311.472000px;}
.h71{height:-310.962000px;}
.h1e{height:-305.569500px;}
.h51{height:-302.824500px;}
.h30{height:-293.683500px;}
.h9f{height:-291.957000px;}
.h7d{height:-291.870000px;}
.h47{height:-291.105000px;}
.h8f{height:-290.592000px;}
.h72{height:-290.082000px;}
.h1f{height:-284.689500px;}
.h5b{height:-282.504000px;}
.h52{height:-281.944500px;}
.h31{height:-272.803500px;}
.ha0{height:-271.077000px;}
.h7e{height:-270.990000px;}
.h90{height:-269.712000px;}
.h73{height:-269.202000px;}
.h20{height:-263.809500px;}
.h54{height:-261.064500px;}
.h32{height:-251.923500px;}
.ha1{height:-250.197000px;}
.h7f{height:-250.110000px;}
.h91{height:-248.832000px;}
.h74{height:-248.322000px;}
.h21{height:-242.929500px;}
.h48{height:-242.145000px;}
.h55{height:-240.184500px;}
.h33{height:-231.043500px;}
.h80{height:-229.230000px;}
.h92{height:-227.952000px;}
.h75{height:-227.442000px;}
.h22{height:-222.049500px;}
.h56{height:-219.304500px;}
.h93{height:-207.072000px;}
.h61{height:-207.016500px;}
.h76{height:-206.562000px;}
.h23{height:-201.169500px;}
.h57{height:-198.424500px;}
.h82{height:-189.438000px;}
.h34{height:-189.283500px;}
.h94{height:-186.192000px;}
.h77{height:-185.682000px;}
.h63{height:-185.316000px;}
.h24{height:-180.289500px;}
.h83{height:-168.558000px;}
.h35{height:-168.403500px;}
.h95{height:-165.312000px;}
.h65{height:-163.614000px;}
.h25{height:-159.409500px;}
.had{height:-154.521000px;}
.h84{height:-147.678000px;}
.h36{height:-147.523500px;}
.h66{height:-141.913500px;}
.h85{height:-126.798000px;}
.h37{height:-126.643500px;}
.h67{height:-120.211500px;}
.hae{height:-112.761000px;}
.h86{height:-105.918000px;}
.h38{height:-105.763500px;}
.h68{height:-98.511000px;}
.h58{height:-94.024500px;}
.haf{height:-91.881000px;}
.hb0{height:-71.001000px;}
.hb1{height:-50.121000px;}
.h9a{height:-7.509000px;}
.h5a{height:24.609375px;}
.he{height:25.233398px;}
.ha2{height:26.068359px;}
.h96{height:26.103516px;}
.h4c{height:26.626758px;}
.h39{height:27.351562px;}
.hd{height:27.544922px;}
.h69{height:28.628355px;}
.h59{height:28.710938px;}
.h4b{height:30.146484px;}
.h26{height:30.454102px;}
.h3d{height:31.447119px;}
.h3b{height:31.910156px;}
.h5{height:32.135742px;}
.h81{height:33.340922px;}
.h6a{height:33.399595px;}
.h5e{height:34.453125px;}
.h97{height:34.779516px;}
.hb2{height:36.036914px;}
.hb3{height:36.128320px;}
.hb4{height:36.265430px;}
.ha4{height:36.940430px;}
.h42{height:37.085625px;}
.h29{height:37.415039px;}
.h40{height:37.994062px;}
.h60{height:38.544245px;}
.hc{height:39.021973px;}
.h62{height:39.488412px;}
.h7{height:40.657031px;}
.ha{height:40.914844px;}
.hb{height:41.285449px;}
.h6b{height:41.286049px;}
.h64{height:41.404517px;}
.h3c{height:43.612793px;}
.h46{height:43.739663px;}
.h49{height:45.217102px;}
.h50{height:45.281250px;}
.h10{height:45.895781px;}
.h98{height:46.263516px;}
.h2b{height:47.545312px;}
.h4{height:50.821289px;}
.h4e{height:50.988281px;}
.h9{height:51.143555px;}
.h5d{height:51.383576px;}
.h8{height:51.606812px;}
.ha6{height:52.277344px;}
.h53{height:55.706456px;}
.ha3{height:57.462891px;}
.h28{height:58.201172px;}
.h79{height:63.820312px;}
.h6{height:64.271484px;}
.h9b{height:65.442275px;}
.h3{height:81.227220px;}
.h4d{height:92.988281px;}
.h3a{height:164.280000px;}
.h4f{height:173.964000px;}
.h88{height:189.280500px;}
.h87{height:191.338500px;}
.h2{height:201.996094px;}
.h41{height:219.780000px;}
.ha8{height:228.756000px;}
.h9c{height:240.957000px;}
.h99{height:271.275000px;}
.h78{height:273.001500px;}
.h27{height:273.934500px;}
.h7a{height:275.302500px;}
.h5c{height:354.235500px;}
.h5f{height:370.641000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w28{width:-438.444000px;}
.w20{width:-205.635000px;}
.w11{width:-138.300000px;}
.w16{width:-91.885500px;}
.wc{width:-59.961000px;}
.w10{width:-40.740000px;}
.w15{width:9.511500px;}
.wf{width:56.820000px;}
.w6{width:73.161000px;}
.w24{width:77.494500px;}
.w23{width:84.000000px;}
.w29{width:89.532000px;}
.w3{width:96.120000px;}
.w17{width:96.829500px;}
.w9{width:97.560000px;}
.w14{width:99.900000px;}
.we{width:212.919000px;}
.w26{width:231.697500px;}
.w27{width:232.200000px;}
.w25{width:233.137500px;}
.w1e{width:234.000000px;}
.w1d{width:243.036000px;}
.w1c{width:244.477500px;}
.w1a{width:388.800000px;}
.w1f{width:398.805000px;}
.w1b{width:423.360000px;}
.w19{width:430.866000px;}
.w5{width:459.213000px;}
.w12{width:466.299000px;}
.wa{width:486.360000px;}
.wd{width:488.035500px;}
.w4{width:488.880000px;}
.w2{width:488.976000px;}
.w22{width:489.240000px;}
.w7{width:491.919000px;}
.w8{width:493.359000px;}
.wb{width:494.314500px;}
.w21{width:494.931000px;}
.w18{width:505.785000px;}
.w13{width:513.426000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xde{left:-537.119550px;}
.x1a{left:-20.799600px;}
.x22{left:-13.647300px;}
.x23{left:-10.263450px;}
.x64{left:-5.960250px;}
.xe6{left:-4.428750px;}
.x82{left:-1.199700px;}
.x0{left:0.000000px;}
.x10{left:2.159550px;}
.x2b{left:3.239250px;}
.x18{left:4.597500px;}
.xbb{left:5.774100px;}
.x6a{left:10.239750px;}
.x48{left:15.355800px;}
.xc3{left:16.564200px;}
.x2c{left:18.000750px;}
.xb1{left:19.437570px;}
.xae{left:26.469000px;}
.xdb{left:27.507600px;}
.x89{left:29.184150px;}
.xbd{left:30.696000px;}
.xdc{left:32.132250px;}
.xe3{left:34.308900px;}
.xd3{left:36.000600px;}
.x85{left:37.415700px;}
.x83{left:46.021500px;}
.xdd{left:47.116500px;}
.xc7{left:50.250150px;}
.xbc{left:51.844950px;}
.x2e{left:52.920750px;}
.x86{left:54.249871px;}
.x7c{left:56.935350px;}
.x5e{left:58.001550px;}
.x7{left:59.527500px;}
.x81{left:60.591000px;}
.x3e{left:62.194500px;}
.x8{left:63.779550px;}
.x15{left:66.784050px;}
.x19{left:68.562000px;}
.xba{left:69.889200px;}
.x87{left:71.084042px;}
.x14{left:72.779550px;}
.x9{left:76.315650px;}
.xda{left:78.100500px;}
.x8a{left:79.686664px;}
.x5d{left:80.956800px;}
.xa{left:82.913400px;}
.x4{left:83.976300px;}
.x3{left:85.039350px;}
.xaf{left:86.049300px;}
.x1{left:89.291400px;}
.x2{left:91.509900px;}
.xb{left:97.575450px;}
.x11{left:99.719550px;}
.x5{left:104.173200px;}
.xd0{left:111.904500px;}
.x16{left:115.189050px;}
.xad{left:118.579800px;}
.x5c{left:119.754300px;}
.xce{left:121.447500px;}
.x24{left:124.722000px;}
.x17{left:128.859600px;}
.x3f{left:131.280150px;}
.xe7{left:135.251250px;}
.x1b{left:139.760400px;}
.xa0{left:142.438650px;}
.x60{left:145.500000px;}
.x1c{left:148.400400px;}
.xd1{left:149.878200px;}
.x8d{left:155.572650px;}
.x29{left:158.040750px;}
.x8c{left:163.430100px;}
.xe{left:166.889700px;}
.xa3{left:171.359400px;}
.xdf{left:174.600450px;}
.xd6{left:175.679850px;}
.x7d{left:178.668300px;}
.xc6{left:180.690150px;}
.xcf{left:185.761500px;}
.xa1{left:192.632850px;}
.x4e{left:214.604250px;}
.x20{left:218.761500px;}
.x4b{left:224.738250px;}
.x4c{left:226.772250px;}
.x8e{left:229.003614px;}
.x90{left:231.501132px;}
.x91{left:234.503766px;}
.x4d{left:236.798250px;}
.x8f{left:238.890792px;}
.x21{left:243.151500px;}
.x25{left:248.822850px;}
.xcb{left:255.498000px;}
.xb4{left:257.400450px;}
.x12{left:258.900000px;}
.x84{left:260.314500px;}
.xb3{left:264.240450px;}
.x96{left:282.321414px;}
.x1f{left:283.813500px;}
.xcc{left:285.103500px;}
.xcd{left:286.354500px;}
.x7f{left:289.472700px;}
.x13{left:294.839550px;}
.x5f{left:295.986750px;}
.x92{left:298.344816px;}
.xca{left:311.771850px;}
.x93{left:314.826564px;}
.x61{left:326.633850px;}
.xa2{left:330.035400px;}
.x98{left:332.589810px;}
.x9e{left:334.675752px;}
.xc1{left:336.345000px;}
.x44{left:339.070800px;}
.xc{left:340.157400px;}
.x2a{left:341.728500px;}
.x28{left:343.167000px;}
.xc5{left:345.268950px;}
.x27{left:346.662900px;}
.x45{left:351.826800px;}
.x40{left:352.913250px;}
.x3d{left:354.736350px;}
.x46{left:358.204800px;}
.xd{left:359.291400px;}
.x88{left:361.711500px;}
.x97{left:366.133254px;}
.x51{left:368.873250px;}
.x7b{left:370.471350px;}
.x80{left:372.279150px;}
.x43{left:373.724400px;}
.x94{left:376.226220px;}
.x3c{left:381.196350px;}
.x4f{left:384.092250px;}
.x9f{left:391.360992px;}
.x9d{left:399.396078px;}
.x49{left:400.915650px;}
.x50{left:402.695250px;}
.x7e{left:404.362200px;}
.x26{left:408.696900px;}
.x4a{left:409.915650px;}
.x3b{left:414.848850px;}
.xd2{left:416.764500px;}
.xf{left:419.608350px;}
.x78{left:424.336350px;}
.x3a{left:426.587850px;}
.x79{left:429.901350px;}
.x7a{left:431.224350px;}
.xeb{left:432.534450px;}
.x39{left:438.893850px;}
.x95{left:440.338536px;}
.x55{left:442.745250px;}
.x53{left:444.410250px;}
.x52{left:446.093250px;}
.xaa{left:450.114450px;}
.xec{left:454.195950px;}
.x99{left:456.520956px;}
.xab{left:458.409450px;}
.x54{left:460.376250px;}
.x8b{left:463.108500px;}
.xe5{left:465.874200px;}
.x9c{left:467.053560px;}
.x1e{left:470.833500px;}
.xd4{left:472.123500px;}
.x57{left:473.822250px;}
.x56{left:475.586250px;}
.x9a{left:482.085438px;}
.x58{left:485.747250px;}
.x1d{left:487.096500px;}
.x9b{left:497.650494px;}
.xc8{left:500.170050px;}
.x59{left:503.243250px;}
.x76{left:505.238850px;}
.x5b{left:511.280250px;}
.x5a{left:512.972250px;}
.x6{left:517.363500px;}
.x33{left:524.836200px;}
.x38{left:527.671200px;}
.xac{left:529.798950px;}
.x6c{left:531.257850px;}
.x6b{left:533.042850px;}
.x2d{left:537.567000px;}
.x77{left:549.643350px;}
.x65{left:554.515500px;}
.xc4{left:556.622250px;}
.x75{left:561.886350px;}
.x74{left:563.629350px;}
.x62{left:565.850550px;}
.xd5{left:569.421000px;}
.x6d{left:571.199850px;}
.x41{left:572.978700px;}
.xb2{left:574.758000px;}
.xd8{left:575.821950px;}
.xbe{left:578.113800px;}
.xb8{left:580.512900px;}
.x73{left:581.521350px;}
.xc9{left:589.932300px;}
.xbf{left:593.874000px;}
.xc0{left:595.358250px;}
.xa4{left:596.994900px;}
.x6e{left:605.923350px;}
.x2f{left:611.335200px;}
.x42{left:615.747900px;}
.x47{left:618.055500px;}
.x32{left:621.973200px;}
.x34{left:626.527200px;}
.xa5{left:634.731900px;}
.x31{left:637.165200px;}
.x36{left:644.761200px;}
.xa9{left:647.439900px;}
.x63{left:648.657000px;}
.x66{left:652.075500px;}
.xe8{left:659.662050px;}
.xb9{left:661.836900px;}
.x72{left:666.067350px;}
.xe2{left:670.101300px;}
.xa7{left:672.882900px;}
.xd9{left:676.207950px;}
.x37{left:681.229200px;}
.xb0{left:695.986200px;}
.xa8{left:698.316900px;}
.xea{left:701.107050px;}
.x71{left:710.188350px;}
.x35{left:712.837200px;}
.xb5{left:719.112900px;}
.xb7{left:725.880900px;}
.xe0{left:730.797300px;}
.xa6{left:742.281900px;}
.xd7{left:746.839950px;}
.x67{left:749.635500px;}
.xe9{left:766.258050px;}
.x6f{left:769.072350px;}
.x70{left:772.201350px;}
.xe1{left:778.641300px;}
.xb6{left:784.623900px;}
.x30{left:797.725200px;}
.x68{left:847.195500px;}
.xc2{left:940.785000px;}
.x69{left:944.755500px;}
.xe4{left:1256.238000px;}
@media print{
.vc{vertical-align:-37.333333pt;}
.v6{vertical-align:-34.583040pt;}
.v7{vertical-align:-29.475840pt;}
.v3{vertical-align:-15.628800pt;}
.v4{vertical-align:-14.056960pt;}
.v10{vertical-align:-10.208000pt;}
.v5{vertical-align:-7.636480pt;}
.va{vertical-align:-5.333333pt;}
.v13{vertical-align:-3.872000pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:3.872000pt;}
.v8{vertical-align:5.107200pt;}
.v9{vertical-align:6.420480pt;}
.vf{vertical-align:7.712000pt;}
.ve{vertical-align:10.263040pt;}
.v11{vertical-align:11.584000pt;}
.vd{vertical-align:14.105600pt;}
.v2{vertical-align:15.628800pt;}
.v1{vertical-align:19.536000pt;}
.v14{vertical-align:24.864000pt;}
.vb{vertical-align:37.333333pt;}
.ls3d{letter-spacing:-3.097600pt;}
.ls13{letter-spacing:-2.628267pt;}
.ls0{letter-spacing:-2.346667pt;}
.lsa8{letter-spacing:-2.252800pt;}
.ls85{letter-spacing:-2.240000pt;}
.ls36{letter-spacing:-2.016000pt;}
.lsbd{letter-spacing:-1.996800pt;}
.lsa4{letter-spacing:-1.994667pt;}
.ls3b{letter-spacing:-1.877333pt;}
.lsf{letter-spacing:-1.595733pt;}
.ls12{letter-spacing:-1.548800pt;}
.ls72{letter-spacing:-1.461333pt;}
.ls3f{letter-spacing:-1.306667pt;}
.ls48{letter-spacing:-1.269333pt;}
.ls40{letter-spacing:-1.194667pt;}
.ls5{letter-spacing:-1.173333pt;}
.lsa5{letter-spacing:-1.133333pt;}
.ls56{letter-spacing:-1.120000pt;}
.lsac{letter-spacing:-1.082667pt;}
.ls26{letter-spacing:-1.056000pt;}
.ls9b{letter-spacing:-1.045333pt;}
.ls47{letter-spacing:-1.039761pt;}
.ls42{letter-spacing:-1.008000pt;}
.lsad{letter-spacing:-0.952000pt;}
.ls41{letter-spacing:-0.858667pt;}
.ls1b{letter-spacing:-0.821333pt;}
.ls6f{letter-spacing:-0.746667pt;}
.ls2d{letter-spacing:-0.736000pt;}
.ls92{letter-spacing:-0.730667pt;}
.ls9c{letter-spacing:-0.672000pt;}
.ls35{letter-spacing:-0.597333pt;}
.ls2e{letter-spacing:-0.576000pt;}
.lsa1{letter-spacing:-0.563200pt;}
.ls9f{letter-spacing:-0.516267pt;}
.ls78{letter-spacing:-0.485333pt;}
.ls45{letter-spacing:-0.448000pt;}
.ls46{letter-spacing:-0.437794pt;}
.ls6{letter-spacing:-0.410667pt;}
.ls4d{letter-spacing:-0.375467pt;}
.ls6d{letter-spacing:-0.373333pt;}
.lsa2{letter-spacing:-0.298667pt;}
.ls14{letter-spacing:-0.281600pt;}
.ls95{letter-spacing:-0.226667pt;}
.ls50{letter-spacing:-0.224000pt;}
.ls32{letter-spacing:-0.218897pt;}
.ls94{letter-spacing:-0.136811pt;}
.ls38{letter-spacing:-0.093867pt;}
.ls1d{letter-spacing:-0.074667pt;}
.ls2f{letter-spacing:-0.046933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.002167pt;}
.ls8{letter-spacing:0.002843pt;}
.lsab{letter-spacing:0.037333pt;}
.lse{letter-spacing:0.046933pt;}
.ls3c{letter-spacing:0.082086pt;}
.ls1c{letter-spacing:0.084301pt;}
.ls20{letter-spacing:0.092800pt;}
.ls80{letter-spacing:0.093867pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls34{letter-spacing:0.109449pt;}
.ls5a{letter-spacing:0.112000pt;}
.ls22{letter-spacing:0.136000pt;}
.ls7{letter-spacing:0.140800pt;}
.ls4c{letter-spacing:0.147200pt;}
.ls2a{letter-spacing:0.152000pt;}
.ls4{letter-spacing:0.176000pt;}
.ls5b{letter-spacing:0.177600pt;}
.ls9{letter-spacing:0.186667pt;}
.ls11{letter-spacing:0.187733pt;}
.lsa0{letter-spacing:0.191535pt;}
.lsb5{letter-spacing:0.208000pt;}
.ls30{letter-spacing:0.224000pt;}
.lsc{letter-spacing:0.234667pt;}
.ls51{letter-spacing:0.246259pt;}
.ls55{letter-spacing:0.273621pt;}
.lsb7{letter-spacing:0.291200pt;}
.ls58{letter-spacing:0.298667pt;}
.ls37{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.328533pt;}
.ls67{letter-spacing:0.355708pt;}
.ls82{letter-spacing:0.373333pt;}
.ls64{letter-spacing:0.375467pt;}
.ls9e{letter-spacing:0.410432pt;}
.lsaa{letter-spacing:0.410667pt;}
.lsba{letter-spacing:0.416000pt;}
.ls16{letter-spacing:0.422400pt;}
.ls3a{letter-spacing:0.437794pt;}
.ls71{letter-spacing:0.456000pt;}
.lsc0{letter-spacing:0.457600pt;}
.ls79{letter-spacing:0.465156pt;}
.lsd{letter-spacing:0.469333pt;}
.ls66{letter-spacing:0.492518pt;}
.lsa6{letter-spacing:0.498667pt;}
.ls15{letter-spacing:0.516267pt;}
.ls3e{letter-spacing:0.519881pt;}
.ls5d{letter-spacing:0.544000pt;}
.ls7f{letter-spacing:0.547243pt;}
.ls61{letter-spacing:0.557333pt;}
.ls44{letter-spacing:0.563200pt;}
.ls74{letter-spacing:0.574605pt;}
.lsc2{letter-spacing:0.597333pt;}
.ls7c{letter-spacing:0.608000pt;}
.ls5c{letter-spacing:0.634667pt;}
.ls39{letter-spacing:0.656691pt;}
.ls7e{letter-spacing:0.657067pt;}
.ls6a{letter-spacing:0.672000pt;}
.ls65{letter-spacing:0.684053pt;}
.ls31{letter-spacing:0.704000pt;}
.ls53{letter-spacing:0.711415pt;}
.ls23{letter-spacing:0.725333pt;}
.ls5f{letter-spacing:0.738778pt;}
.ls99{letter-spacing:0.746667pt;}
.ls7a{letter-spacing:0.750933pt;}
.lsb2{letter-spacing:0.766140pt;}
.ls6e{letter-spacing:0.784000pt;}
.ls54{letter-spacing:0.797867pt;}
.ls5e{letter-spacing:0.816000pt;}
.ls70{letter-spacing:0.820864pt;}
.ls57{letter-spacing:0.821333pt;}
.ls4b{letter-spacing:0.832000pt;}
.ls86{letter-spacing:0.858667pt;}
.lsa{letter-spacing:0.896000pt;}
.lsb1{letter-spacing:0.902950pt;}
.ls49{letter-spacing:0.906667pt;}
.lsb8{letter-spacing:0.915200pt;}
.ls8b{letter-spacing:0.930313pt;}
.ls19{letter-spacing:0.933333pt;}
.ls18{letter-spacing:0.938667pt;}
.ls27{letter-spacing:0.960000pt;}
.ls4e{letter-spacing:0.970667pt;}
.ls8e{letter-spacing:0.985037pt;}
.ls81{letter-spacing:0.985600pt;}
.ls25{letter-spacing:0.992000pt;}
.lsb4{letter-spacing:0.998400pt;}
.ls59{letter-spacing:1.008000pt;}
.ls75{letter-spacing:1.012399pt;}
.ls96{letter-spacing:1.024000pt;}
.ls69{letter-spacing:1.045333pt;}
.lsa7{letter-spacing:1.056000pt;}
.ls63{letter-spacing:1.067123pt;}
.ls89{letter-spacing:1.079467pt;}
.lsb0{letter-spacing:1.082667pt;}
.ls4a{letter-spacing:1.088000pt;}
.lsa9{letter-spacing:1.094485pt;}
.ls1a{letter-spacing:1.120000pt;}
.lsb6{letter-spacing:1.123200pt;}
.ls21{letter-spacing:1.126400pt;}
.ls8a{letter-spacing:1.149210pt;}
.ls1e{letter-spacing:1.157333pt;}
.lsbb{letter-spacing:1.164800pt;}
.ls17{letter-spacing:1.173333pt;}
.ls91{letter-spacing:1.194667pt;}
.lsb9{letter-spacing:1.206400pt;}
.ls76{letter-spacing:1.232000pt;}
.lsbc{letter-spacing:1.248000pt;}
.ls6c{letter-spacing:1.269333pt;}
.ls83{letter-spacing:1.306667pt;}
.ls93{letter-spacing:1.313382pt;}
.ls52{letter-spacing:1.314133pt;}
.ls7b{letter-spacing:1.340745pt;}
.ls9a{letter-spacing:1.344000pt;}
.lsa3{letter-spacing:1.381333pt;}
.ls43{letter-spacing:1.393600pt;}
.ls87{letter-spacing:1.418667pt;}
.lsae{letter-spacing:1.450193pt;}
.ls2b{letter-spacing:1.454933pt;}
.ls77{letter-spacing:1.493333pt;}
.lsc1{letter-spacing:1.497600pt;}
.ls68{letter-spacing:1.530667pt;}
.ls24{letter-spacing:1.568000pt;}
.ls1{letter-spacing:1.604202pt;}
.ls9d{letter-spacing:1.689600pt;}
.ls88{letter-spacing:1.717333pt;}
.ls4f{letter-spacing:1.886933pt;}
.ls8c{letter-spacing:1.887987pt;}
.ls84{letter-spacing:1.904000pt;}
.ls8f{letter-spacing:1.941333pt;}
.ls8d{letter-spacing:1.971200pt;}
.ls98{letter-spacing:2.016000pt;}
.lsaf{letter-spacing:2.053333pt;}
.ls33{letter-spacing:2.065067pt;}
.ls3{letter-spacing:2.076026pt;}
.lsb{letter-spacing:2.205867pt;}
.ls97{letter-spacing:2.263595pt;}
.ls60{letter-spacing:2.299733pt;}
.lsbe{letter-spacing:2.412800pt;}
.ls90{letter-spacing:2.501333pt;}
.ls2c{letter-spacing:2.534400pt;}
.ls6b{letter-spacing:2.576000pt;}
.ls28{letter-spacing:2.592000pt;}
.ls73{letter-spacing:2.769067pt;}
.lsbf{letter-spacing:3.161600pt;}
.lsb3{letter-spacing:3.547200pt;}
.ls7d{letter-spacing:3.989333pt;}
.ls62{letter-spacing:7.562400pt;}
.ws18e{word-spacing:-64.000000pt;}
.wsdd{word-spacing:-44.800000pt;}
.ws130{word-spacing:-37.856000pt;}
.ws18c{word-spacing:-33.749333pt;}
.wsfa{word-spacing:-30.912000pt;}
.ws12e{word-spacing:-29.852160pt;}
.ws65{word-spacing:-29.194667pt;}
.ws17a{word-spacing:-27.733333pt;}
.ws18f{word-spacing:-26.693333pt;}
.ws62{word-spacing:-23.022080pt;}
.ws16a{word-spacing:-20.549120pt;}
.ws1d1{word-spacing:-19.712000pt;}
.ws4c{word-spacing:-19.338667pt;}
.ws1e4{word-spacing:-19.114667pt;}
.ws34{word-spacing:-15.253333pt;}
.wsc6{word-spacing:-14.720000pt;}
.ws109{word-spacing:-14.502400pt;}
.ws15b{word-spacing:-14.173867pt;}
.ws1e7{word-spacing:-13.977600pt;}
.ws13{word-spacing:-13.376000pt;}
.ws1e6{word-spacing:-13.228800pt;}
.ws169{word-spacing:-13.188267pt;}
.ws14{word-spacing:-13.141333pt;}
.ws16e{word-spacing:-13.029333pt;}
.ws141{word-spacing:-13.000533pt;}
.ws11{word-spacing:-12.718933pt;}
.wsa{word-spacing:-12.672000pt;}
.ws12{word-spacing:-12.625067pt;}
.ws15{word-spacing:-12.531200pt;}
.ws9{word-spacing:-12.437333pt;}
.wsd{word-spacing:-12.390400pt;}
.ws18a{word-spacing:-12.296533pt;}
.ws18d{word-spacing:-12.285333pt;}
.ws110{word-spacing:-12.282667pt;}
.wsb{word-spacing:-12.249600pt;}
.ws15e{word-spacing:-12.208000pt;}
.ws8{word-spacing:-12.202667pt;}
.ws77{word-spacing:-12.160000pt;}
.ws1e5{word-spacing:-12.064000pt;}
.ws1e9{word-spacing:-11.980800pt;}
.ws10{word-spacing:-11.921067pt;}
.ws1d2{word-spacing:-11.814400pt;}
.ws1ab{word-spacing:-11.760000pt;}
.ws17b{word-spacing:-11.722667pt;}
.ws15c{word-spacing:-11.648000pt;}
.ws146{word-spacing:-11.610667pt;}
.ws14a{word-spacing:-11.424000pt;}
.ws79{word-spacing:-11.312000pt;}
.ws10e{word-spacing:-11.274667pt;}
.ws1e8{word-spacing:-11.273600pt;}
.ws10c{word-spacing:-11.237333pt;}
.ws1d5{word-spacing:-11.232000pt;}
.ws12c{word-spacing:-11.200000pt;}
.ws149{word-spacing:-11.125333pt;}
.ws1d3{word-spacing:-11.107200pt;}
.ws18b{word-spacing:-11.088000pt;}
.ws17d{word-spacing:-11.050667pt;}
.ws1d4{word-spacing:-11.024000pt;}
.ws145{word-spacing:-11.013333pt;}
.ws111{word-spacing:-10.976000pt;}
.ws129{word-spacing:-10.938667pt;}
.ws15f{word-spacing:-10.901333pt;}
.ws4d{word-spacing:-10.864000pt;}
.ws1b5{word-spacing:-10.826667pt;}
.ws1ac{word-spacing:-10.789333pt;}
.ws12a{word-spacing:-10.752000pt;}
.ws12d{word-spacing:-10.714667pt;}
.wseb{word-spacing:-10.677333pt;}
.wse{word-spacing:-10.653867pt;}
.ws16{word-spacing:-10.640000pt;}
.wsc{word-spacing:-10.606933pt;}
.ws10d{word-spacing:-10.602667pt;}
.ws148{word-spacing:-10.565333pt;}
.wsf8{word-spacing:-10.528000pt;}
.ws112{word-spacing:-10.490667pt;}
.ws17c{word-spacing:-10.453333pt;}
.ws10f{word-spacing:-10.378667pt;}
.ws12b{word-spacing:-10.341333pt;}
.ws1f0{word-spacing:-10.304000pt;}
.ws1a0{word-spacing:-10.117333pt;}
.ws144{word-spacing:-10.080000pt;}
.wsf9{word-spacing:-10.005333pt;}
.ws68{word-spacing:-9.888000pt;}
.ws1a1{word-spacing:-9.744000pt;}
.wsf{word-spacing:-9.574400pt;}
.ws73{word-spacing:-9.498667pt;}
.wsc7{word-spacing:-9.333333pt;}
.ws15d{word-spacing:-9.296000pt;}
.ws91{word-spacing:-9.109333pt;}
.ws113{word-spacing:-8.960000pt;}
.wsc1{word-spacing:-8.885333pt;}
.wsa4{word-spacing:-8.848000pt;}
.wsa5{word-spacing:-8.698667pt;}
.ws17e{word-spacing:-8.661333pt;}
.ws1a2{word-spacing:-8.624000pt;}
.wsf7{word-spacing:-8.586667pt;}
.wsa3{word-spacing:-8.512000pt;}
.wsda{word-spacing:-8.437333pt;}
.ws168{word-spacing:-8.427537pt;}
.ws61{word-spacing:-8.416000pt;}
.wsa2{word-spacing:-8.400000pt;}
.ws159{word-spacing:-8.263364pt;}
.ws19e{word-spacing:-8.208640pt;}
.ws10a{word-spacing:-8.181278pt;}
.ws128{word-spacing:-8.126554pt;}
.ws15a{word-spacing:-8.044467pt;}
.ws142{word-spacing:-7.935019pt;}
.ws4{word-spacing:-7.920000pt;}
.ws108{word-spacing:-7.852932pt;}
.wsf5{word-spacing:-7.825570pt;}
.wsa0{word-spacing:-7.770846pt;}
.ws7b{word-spacing:-7.744000pt;}
.ws92{word-spacing:-7.690667pt;}
.ws143{word-spacing:-7.661397pt;}
.ws189{word-spacing:-7.606673pt;}
.ws7a{word-spacing:-7.584000pt;}
.ws140{word-spacing:-7.579311pt;}
.ws11e{word-spacing:-7.562400pt;}
.wsa1{word-spacing:-7.551949pt;}
.ws10b{word-spacing:-7.469862pt;}
.ws147{word-spacing:-7.466667pt;}
.wsf6{word-spacing:-7.387776pt;}
.wsf4{word-spacing:-7.360414pt;}
.ws69{word-spacing:-7.264000pt;}
.ws19f{word-spacing:-7.196241pt;}
.ws158{word-spacing:-7.114155pt;}
.ws90{word-spacing:-6.895258pt;}
.ws1ed{word-spacing:-5.616000pt;}
.ws88{word-spacing:-4.928000pt;}
.ws139{word-spacing:-4.505600pt;}
.ws153{word-spacing:-3.989333pt;}
.ws104{word-spacing:-3.473067pt;}
.ws1cb{word-spacing:-3.097600pt;}
.ws102{word-spacing:-2.675200pt;}
.ws72{word-spacing:-2.592000pt;}
.wsf2{word-spacing:-2.581333pt;}
.ws89{word-spacing:-2.534400pt;}
.ws1a7{word-spacing:-2.393600pt;}
.ws191{word-spacing:-2.346667pt;}
.ws105{word-spacing:-2.299733pt;}
.ws17f{word-spacing:-2.263595pt;}
.ws135{word-spacing:-2.252800pt;}
.ws28{word-spacing:-2.205867pt;}
.ws1cc{word-spacing:-2.158933pt;}
.ws1b{word-spacing:-2.065067pt;}
.ws60{word-spacing:-2.018133pt;}
.ws1e0{word-spacing:-1.996800pt;}
.ws7e{word-spacing:-1.924267pt;}
.ws165{word-spacing:-1.887987pt;}
.ws136{word-spacing:-1.877333pt;}
.ws162{word-spacing:-1.783467pt;}
.ws1c{word-spacing:-1.736533pt;}
.ws54{word-spacing:-1.701333pt;}
.wsb3{word-spacing:-1.689600pt;}
.ws55{word-spacing:-1.642667pt;}
.ws1d0{word-spacing:-1.595733pt;}
.ws58{word-spacing:-1.584000pt;}
.ws93{word-spacing:-1.548800pt;}
.ws1d7{word-spacing:-1.501867pt;}
.ws52{word-spacing:-1.466667pt;}
.ws138{word-spacing:-1.461333pt;}
.ws172{word-spacing:-1.454933pt;}
.ws1b2{word-spacing:-1.450193pt;}
.ws48{word-spacing:-1.408000pt;}
.ws1cd{word-spacing:-1.361067pt;}
.ws150{word-spacing:-1.340745pt;}
.ws5e{word-spacing:-1.314133pt;}
.ws1ef{word-spacing:-1.289600pt;}
.ws7f{word-spacing:-1.267200pt;}
.ws47{word-spacing:-1.232000pt;}
.ws1d{word-spacing:-1.220267pt;}
.ws1e3{word-spacing:-1.206400pt;}
.ws3e{word-spacing:-1.173333pt;}
.ws6d{word-spacing:-1.126400pt;}
.ws13d{word-spacing:-1.120000pt;}
.ws1bb{word-spacing:-1.094485pt;}
.ws1f{word-spacing:-1.079467pt;}
.wsae{word-spacing:-1.032533pt;}
.ws156{word-spacing:-1.012399pt;}
.ws1e1{word-spacing:-0.998400pt;}
.wse9{word-spacing:-0.992000pt;}
.wsf3{word-spacing:-0.985600pt;}
.ws166{word-spacing:-0.985037pt;}
.wsbf{word-spacing:-0.970667pt;}
.ws71{word-spacing:-0.960000pt;}
.ws1eb{word-spacing:-0.956800pt;}
.ws4e{word-spacing:-0.938667pt;}
.ws4a{word-spacing:-0.933333pt;}
.ws179{word-spacing:-0.928000pt;}
.ws1b7{word-spacing:-0.902950pt;}
.ws70{word-spacing:-0.896000pt;}
.wse7{word-spacing:-0.891733pt;}
.ws127{word-spacing:-0.858667pt;}
.ws1b0{word-spacing:-0.844800pt;}
.ws45{word-spacing:-0.821333pt;}
.ws133{word-spacing:-0.820864pt;}
.wsd9{word-spacing:-0.800000pt;}
.ws9e{word-spacing:-0.797867pt;}
.wse8{word-spacing:-0.770667pt;}
.ws1bf{word-spacing:-0.766140pt;}
.ws132{word-spacing:-0.750933pt;}
.ws177{word-spacing:-0.746667pt;}
.wsea{word-spacing:-0.736000pt;}
.wse2{word-spacing:-0.730667pt;}
.ws18{word-spacing:-0.709333pt;}
.ws32{word-spacing:-0.704000pt;}
.ws123{word-spacing:-0.684053pt;}
.ws117{word-spacing:-0.680000pt;}
.ws154{word-spacing:-0.657067pt;}
.ws11b{word-spacing:-0.656691pt;}
.ws1e{word-spacing:-0.610133pt;}
.ws6f{word-spacing:-0.589333pt;}
.ws13a{word-spacing:-0.574605pt;}
.wsb9{word-spacing:-0.563200pt;}
.ws1da{word-spacing:-0.540800pt;}
.wsbc{word-spacing:-0.519881pt;}
.ws119{word-spacing:-0.516267pt;}
.ws115{word-spacing:-0.498667pt;}
.ws124{word-spacing:-0.492518pt;}
.ws4f{word-spacing:-0.469333pt;}
.ws151{word-spacing:-0.456000pt;}
.ws29{word-spacing:-0.422400pt;}
.ws194{word-spacing:-0.410432pt;}
.ws116{word-spacing:-0.408000pt;}
.ws11c{word-spacing:-0.405333pt;}
.ws2b{word-spacing:-0.375467pt;}
.ws20{word-spacing:-0.328533pt;}
.wsb6{word-spacing:-0.320000pt;}
.ws134{word-spacing:-0.304000pt;}
.ws1a{word-spacing:-0.281600pt;}
.wsba{word-spacing:-0.234667pt;}
.ws1ee{word-spacing:-0.208000pt;}
.ws197{word-spacing:-0.191535pt;}
.ws3{word-spacing:-0.188730pt;}
.ws23{word-spacing:-0.187733pt;}
.ws19{word-spacing:-0.186667pt;}
.ws5{word-spacing:-0.176000pt;}
.ws5c{word-spacing:-0.140800pt;}
.ws13f{word-spacing:-0.136000pt;}
.ws107{word-spacing:-0.112000pt;}
.ws9f{word-spacing:-0.109449pt;}
.ws19d{word-spacing:-0.096000pt;}
.ws24{word-spacing:-0.093867pt;}
.ws8f{word-spacing:-0.092800pt;}
.wsb7{word-spacing:-0.082086pt;}
.ws57{word-spacing:-0.058667pt;}
.ws2a{word-spacing:-0.046933pt;}
.ws19a{word-spacing:-0.037333pt;}
.ws2{word-spacing:0.000000pt;}
.ws21{word-spacing:0.046933pt;}
.wsab{word-spacing:0.093867pt;}
.ws176{word-spacing:0.136811pt;}
.wscb{word-spacing:0.140800pt;}
.wsf0{word-spacing:0.146133pt;}
.ws49{word-spacing:0.176000pt;}
.ws17{word-spacing:0.186667pt;}
.wsef{word-spacing:0.187733pt;}
.ws51{word-spacing:0.234667pt;}
.ws1{word-spacing:0.283094pt;}
.wsd0{word-spacing:0.298667pt;}
.wsa8{word-spacing:0.328533pt;}
.ws27{word-spacing:0.375467pt;}
.ws56{word-spacing:0.410667pt;}
.wsb0{word-spacing:0.422400pt;}
.wsd7{word-spacing:0.437794pt;}
.wsfe{word-spacing:0.448000pt;}
.ws83{word-spacing:0.469333pt;}
.ws13e{word-spacing:0.485333pt;}
.ws195{word-spacing:0.516267pt;}
.ws31{word-spacing:0.528000pt;}
.ws1b9{word-spacing:0.563200pt;}
.ws7{word-spacing:0.586667pt;}
.ws1b4{word-spacing:0.597333pt;}
.ws184{word-spacing:0.610133pt;}
.ws198{word-spacing:0.657067pt;}
.wsd1{word-spacing:0.672000pt;}
.ws59{word-spacing:0.704000pt;}
.ws173{word-spacing:0.730667pt;}
.wscf{word-spacing:0.750933pt;}
.ws193{word-spacing:0.797867pt;}
.wse6{word-spacing:0.844800pt;}
.ws13c{word-spacing:0.891733pt;}
.ws1b3{word-spacing:0.938667pt;}
.ws98{word-spacing:0.985600pt;}
.ws4b{word-spacing:1.008000pt;}
.ws5f{word-spacing:1.032533pt;}
.wse1{word-spacing:1.039761pt;}
.wscd{word-spacing:1.079467pt;}
.ws2d{word-spacing:1.114667pt;}
.ws6e{word-spacing:1.133333pt;}
.ws6b{word-spacing:1.173333pt;}
.wsb4{word-spacing:1.220267pt;}
.ws1b8{word-spacing:1.267200pt;}
.ws53{word-spacing:1.290667pt;}
.ws186{word-spacing:1.314133pt;}
.ws6{word-spacing:1.349333pt;}
.ws178{word-spacing:1.360000pt;}
.wsd8{word-spacing:1.388267pt;}
.wsd2{word-spacing:1.408000pt;}
.wsa6{word-spacing:1.454933pt;}
.ws137{word-spacing:1.461333pt;}
.wsc0{word-spacing:1.493333pt;}
.ws182{word-spacing:1.501867pt;}
.ws180{word-spacing:1.548800pt;}
.wsca{word-spacing:1.595733pt;}
.ws25{word-spacing:1.642667pt;}
.ws1c5{word-spacing:1.689600pt;}
.ws22{word-spacing:1.736533pt;}
.wsd6{word-spacing:1.783467pt;}
.ws84{word-spacing:1.830400pt;}
.wsaf{word-spacing:1.877333pt;}
.ws81{word-spacing:1.924267pt;}
.ws1dc{word-spacing:1.996800pt;}
.wsd4{word-spacing:2.018133pt;}
.wsd3{word-spacing:2.065067pt;}
.ws1aa{word-spacing:2.085333pt;}
.wsbe{word-spacing:2.158933pt;}
.ws1ec{word-spacing:2.204800pt;}
.ws8d{word-spacing:2.205867pt;}
.ws192{word-spacing:2.252800pt;}
.ws19c{word-spacing:2.266667pt;}
.ws46{word-spacing:2.288000pt;}
.ws1be{word-spacing:2.299733pt;}
.ws3b{word-spacing:2.346667pt;}
.wsb5{word-spacing:2.393600pt;}
.ws188{word-spacing:2.426667pt;}
.ws121{word-spacing:2.487467pt;}
.ws1c6{word-spacing:2.534400pt;}
.ws6a{word-spacing:2.581333pt;}
.ws103{word-spacing:2.628267pt;}
.wsaa{word-spacing:2.675200pt;}
.ws1dd{word-spacing:2.704000pt;}
.ws26{word-spacing:2.722133pt;}
.ws1e2{word-spacing:2.745600pt;}
.ws101{word-spacing:2.769067pt;}
.ws50{word-spacing:2.816000pt;}
.wse4{word-spacing:2.862933pt;}
.ws82{word-spacing:2.909867pt;}
.ws2f{word-spacing:2.933333pt;}
.ws1db{word-spacing:2.953600pt;}
.ws152{word-spacing:2.956800pt;}
.ws3a{word-spacing:2.992000pt;}
.ws1a8{word-spacing:3.003733pt;}
.ws0{word-spacing:3.050667pt;}
.wsac{word-spacing:3.097600pt;}
.ws19b{word-spacing:3.128000pt;}
.ws155{word-spacing:3.144533pt;}
.ws87{word-spacing:3.191467pt;}
.wsf1{word-spacing:3.238400pt;}
.ws38{word-spacing:3.285333pt;}
.ws5a{word-spacing:3.332267pt;}
.ws39{word-spacing:3.344000pt;}
.ws1df{word-spacing:3.369600pt;}
.wsb1{word-spacing:3.379200pt;}
.ws33{word-spacing:3.402667pt;}
.ws171{word-spacing:3.426133pt;}
.ws8b{word-spacing:3.473067pt;}
.ws122{word-spacing:3.520000pt;}
.ws163{word-spacing:3.566933pt;}
.ws196{word-spacing:3.613867pt;}
.ws5d{word-spacing:3.660800pt;}
.wse0{word-spacing:3.707733pt;}
.ws199{word-spacing:3.754667pt;}
.ws8a{word-spacing:3.801600pt;}
.ws1c9{word-spacing:3.895467pt;}
.ws14c{word-spacing:3.989333pt;}
.ws1cf{word-spacing:4.083200pt;}
.ws42{word-spacing:4.106667pt;}
.ws14d{word-spacing:4.130133pt;}
.ws94{word-spacing:4.177067pt;}
.wsb8{word-spacing:4.224000pt;}
.ws96{word-spacing:4.270933pt;}
.ws11a{word-spacing:4.317867pt;}
.ws8e{word-spacing:4.364800pt;}
.ws1c4{word-spacing:4.458667pt;}
.ws6c{word-spacing:4.505600pt;}
.ws161{word-spacing:4.552533pt;}
.ws2e{word-spacing:4.576000pt;}
.wscc{word-spacing:4.599467pt;}
.ws99{word-spacing:4.646400pt;}
.ws86{word-spacing:4.740267pt;}
.ws1bd{word-spacing:4.787200pt;}
.ws125{word-spacing:4.834133pt;}
.ws1d8{word-spacing:4.881067pt;}
.ws3d{word-spacing:4.928000pt;}
.ws1a4{word-spacing:5.021867pt;}
.ws1de{word-spacing:5.033600pt;}
.wsa7{word-spacing:5.068800pt;}
.ws1af{word-spacing:5.115733pt;}
.ws9a{word-spacing:5.209600pt;}
.ws1c1{word-spacing:5.256533pt;}
.ws160{word-spacing:5.350400pt;}
.ws1b1{word-spacing:5.397333pt;}
.wse5{word-spacing:5.444267pt;}
.ws80{word-spacing:5.585067pt;}
.ws1ba{word-spacing:5.632000pt;}
.ws1ca{word-spacing:5.678933pt;}
.ws36{word-spacing:5.749333pt;}
.ws9b{word-spacing:5.772800pt;}
.wsbb{word-spacing:5.819733pt;}
.ws3c{word-spacing:5.866667pt;}
.ws1b6{word-spacing:5.913600pt;}
.ws106{word-spacing:6.007467pt;}
.ws85{word-spacing:6.054400pt;}
.wsff{word-spacing:6.101333pt;}
.ws185{word-spacing:6.148267pt;}
.ws9d{word-spacing:6.195200pt;}
.ws100{word-spacing:6.242133pt;}
.ws11d{word-spacing:6.336000pt;}
.wse3{word-spacing:6.382933pt;}
.wsce{word-spacing:6.429867pt;}
.ws183{word-spacing:6.476800pt;}
.ws44{word-spacing:6.570667pt;}
.ws8c{word-spacing:6.617600pt;}
.wsb2{word-spacing:6.664533pt;}
.wsd5{word-spacing:6.711467pt;}
.ws41{word-spacing:6.746667pt;}
.ws175{word-spacing:6.758400pt;}
.ws1a5{word-spacing:6.805333pt;}
.ws95{word-spacing:6.852267pt;}
.ws40{word-spacing:6.922667pt;}
.ws1a6{word-spacing:6.946133pt;}
.ws167{word-spacing:6.993067pt;}
.ws181{word-spacing:7.133867pt;}
.ws187{word-spacing:7.274667pt;}
.wsad{word-spacing:7.415467pt;}
.ws11f{word-spacing:7.562400pt;}
.ws1c3{word-spacing:7.650133pt;}
.ws174{word-spacing:7.697067pt;}
.ws7d{word-spacing:7.744000pt;}
.ws1c8{word-spacing:7.884800pt;}
.ws1d9{word-spacing:7.904000pt;}
.ws131{word-spacing:7.931733pt;}
.wsa9{word-spacing:8.025600pt;}
.ws1c7{word-spacing:8.213333pt;}
.ws13b{word-spacing:8.354133pt;}
.ws3f{word-spacing:8.448000pt;}
.ws1ce{word-spacing:8.494933pt;}
.ws14f{word-spacing:8.541867pt;}
.ws97{word-spacing:8.588800pt;}
.ws2c{word-spacing:8.624000pt;}
.ws14e{word-spacing:8.635733pt;}
.ws1bc{word-spacing:8.917333pt;}
.ws30{word-spacing:9.034667pt;}
.ws118{word-spacing:9.105067pt;}
.ws164{word-spacing:9.433600pt;}
.ws1d6{word-spacing:9.480533pt;}
.ws37{word-spacing:9.621333pt;}
.ws120{word-spacing:9.715200pt;}
.ws1a9{word-spacing:9.809067pt;}
.ws5b{word-spacing:9.902933pt;}
.wsbd{word-spacing:10.513067pt;}
.ws43{word-spacing:10.736000pt;}
.ws7c{word-spacing:11.498667pt;}
.ws9c{word-spacing:12.343467pt;}
.ws126{word-spacing:12.880000pt;}
.ws157{word-spacing:13.514667pt;}
.ws1c0{word-spacing:13.516800pt;}
.ws1ae{word-spacing:13.845333pt;}
.wsc8{word-spacing:20.001067pt;}
.ws66{word-spacing:110.595200pt;}
.wsc9{word-spacing:113.287467pt;}
.ws16f{word-spacing:134.996800pt;}
.ws1a3{word-spacing:156.196864pt;}
.ws1c2{word-spacing:180.730667pt;}
.ws1ea{word-spacing:181.029333pt;}
.ws1ad{word-spacing:182.000000pt;}
.ws35{word-spacing:182.298667pt;}
.ws14b{word-spacing:183.306667pt;}
.ws190{word-spacing:183.418667pt;}
.ws114{word-spacing:183.493333pt;}
.ws170{word-spacing:183.568000pt;}
.wsee{word-spacing:184.314667pt;}
.wsc4{word-spacing:192.419840pt;}
.wsc3{word-spacing:198.062080pt;}
.ws63{word-spacing:200.998656pt;}
.wsdb{word-spacing:208.957440pt;}
.ws75{word-spacing:210.908160pt;}
.wsc2{word-spacing:212.733440pt;}
.wsfb{word-spacing:214.735360pt;}
.wsed{word-spacing:217.175974pt;}
.wsc5{word-spacing:219.317760pt;}
.ws64{word-spacing:222.036480pt;}
.ws76{word-spacing:222.795520pt;}
.ws16c{word-spacing:223.567360pt;}
.ws16d{word-spacing:224.509440pt;}
.ws12f{word-spacing:227.041280pt;}
.wsdc{word-spacing:236.001280pt;}
.wsec{word-spacing:245.283479pt;}
.ws78{word-spacing:246.264320pt;}
.ws16b{word-spacing:259.484160pt;}
.wsdf{word-spacing:259.796800pt;}
.wsde{word-spacing:374.559467pt;}
.ws74{word-spacing:422.110720pt;}
.ws67{word-spacing:422.964480pt;}
.wsfc{word-spacing:473.159680pt;}
.wsfd{word-spacing:504.601600pt;}
._a{margin-left:-123.972800pt;}
._b{margin-left:-68.036267pt;}
._f{margin-left:-16.309333pt;}
._10{margin-left:-14.924800pt;}
._e{margin-left:-13.986133pt;}
._16{margin-left:-10.325333pt;}
._d{margin-left:-9.333867pt;}
._12{margin-left:-8.054933pt;}
._30{margin-left:-6.856106pt;}
._3{margin-left:-5.718507pt;}
._8{margin-left:-4.335467pt;}
._15{margin-left:-3.429653pt;}
._6{margin-left:-2.337280pt;}
._0{margin-left:-1.361067pt;}
._1{width:1.548800pt;}
._2{width:2.980267pt;}
._4{width:3.897067pt;}
._20{width:4.870080pt;}
._11{width:6.201067pt;}
._23{width:7.179627pt;}
._3f{width:8.085440pt;}
._13{width:9.017067pt;}
._14{width:10.037867pt;}
._7{width:13.525333pt;}
._5{width:14.417067pt;}
._24{width:15.608000pt;}
._21{width:16.626667pt;}
._22{width:17.915200pt;}
._34{width:22.622933pt;}
._17{width:23.516267pt;}
._3d{width:28.388160pt;}
._33{width:33.952000pt;}
._9{width:36.586667pt;}
._27{width:48.085333pt;}
._26{width:58.762667pt;}
._25{width:69.440000pt;}
._28{width:99.361067pt;}
._1b{width:106.810667pt;}
._3b{width:111.200000pt;}
._39{width:122.112000pt;}
._37{width:125.671467pt;}
._38{width:127.232000pt;}
._1c{width:130.712533pt;}
._1d{width:132.200533pt;}
._3c{width:137.440000pt;}
._3a{width:186.647467pt;}
._1f{width:198.597120pt;}
._2d{width:212.848640pt;}
._31{width:221.220220pt;}
._1e{width:232.304640pt;}
._19{width:244.116480pt;}
._36{width:245.058560pt;}
._1a{width:275.793920pt;}
._18{width:279.992064pt;}
._2c{width:367.718400pt;}
._2b{width:369.128960pt;}
._32{width:396.580758pt;}
._2e{width:406.217493pt;}
._29{width:510.963200pt;}
._2a{width:615.004160pt;}
._40{width:1656.483733pt;}
._3e{width:1657.753067pt;}
._35{width:1659.059733pt;}
._2f{width:1660.105067pt;}
._c{width:1679.406400pt;}
.fs7{font-size:27.362133pt;}
.fsb{font-size:30.933333pt;}
.fsa{font-size:32.000000pt;}
.fs13{font-size:33.258667pt;}
.fs6{font-size:34.202667pt;}
.fs8{font-size:36.533333pt;}
.fs3{font-size:37.333333pt;}
.fs14{font-size:38.801600pt;}
.fs17{font-size:41.600000pt;}
.fs15{font-size:43.530667pt;}
.fs11{font-size:44.800000pt;}
.fs9{font-size:45.333333pt;}
.fs5{font-size:46.933333pt;}
.fsd{font-size:48.000000pt;}
.fsf{font-size:48.640000pt;}
.fs12{font-size:50.553067pt;}
.fse{font-size:50.666667pt;}
.fs2{font-size:58.666667pt;}
.fsc{font-size:58.880000pt;}
.fs16{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs1{font-size:94.364800pt;}
.fs10{font-size:106.666667pt;}
.fs0{font-size:234.666667pt;}
.y2d8{bottom:-150.467200pt;}
.y221{bottom:-149.443867pt;}
.y2f6{bottom:-143.509067pt;}
.y220{bottom:-140.110533pt;}
.y2d7{bottom:-125.306933pt;}
.y2f5{bottom:-121.569467pt;}
.y21f{bottom:-116.868400pt;}
.y21e{bottom:-107.535067pt;}
.y2d6{bottom:-100.146533pt;}
.y2f4{bottom:-99.630000pt;}
.y21d{bottom:-84.292800pt;}
.y2f3{bottom:-77.690533pt;}
.y2d5{bottom:-74.986267pt;}
.y21c{bottom:-74.959467pt;}
.y2f2{bottom:-55.750933pt;}
.y2d4{bottom:-49.826000pt;}
.y14c{bottom:-47.418000pt;}
.y1d5{bottom:-47.290800pt;}
.y184{bottom:-38.124133pt;}
.y1d4{bottom:-34.287067pt;}
.y14b{bottom:-27.089067pt;}
.y183{bottom:-23.596933pt;}
.y1d3{bottom:-21.283467pt;}
.yaa{bottom:-15.898267pt;}
.y2b4{bottom:-15.531867pt;}
.y246{bottom:-4.251467pt;}
.y0{bottom:0.000000pt;}
.y19b{bottom:2.328133pt;}
.y199{bottom:2.546366pt;}
.y196{bottom:2.559004pt;}
.y193{bottom:2.580209pt;}
.y18f{bottom:2.811080pt;}
.ye2{bottom:2.884453pt;}
.ye5{bottom:3.199333pt;}
.y125{bottom:3.199867pt;}
.y191{bottom:3.325867pt;}
.y15c{bottom:3.520400pt;}
.y195{bottom:3.658533pt;}
.y19c{bottom:3.870002pt;}
.yd2{bottom:4.159467pt;}
.yac{bottom:4.159600pt;}
.y12f{bottom:4.159867pt;}
.y288{bottom:4.160000pt;}
.y2c1{bottom:4.160267pt;}
.y88{bottom:4.160400pt;}
.y1de{bottom:4.160533pt;}
.y1e0{bottom:4.160667pt;}
.y19f{bottom:4.323067pt;}
.y1a4{bottom:4.323200pt;}
.y1aa{bottom:4.323333pt;}
.y18c{bottom:4.323733pt;}
.y1a7{bottom:4.324000pt;}
.y192{bottom:4.425396pt;}
.y18e{bottom:4.656267pt;}
.y2df{bottom:4.799467pt;}
.y2c2{bottom:4.800267pt;}
.y206{bottom:4.800533pt;}
.y209{bottom:4.800667pt;}
.y122{bottom:5.119867pt;}
.ydc{bottom:5.761893pt;}
.yd7{bottom:6.719333pt;}
.y18d{bottom:7.799257pt;}
.y190{bottom:7.815833pt;}
.y19a{bottom:7.879714pt;}
.y197{bottom:7.892353pt;}
.y194{bottom:7.913557pt;}
.ydd{bottom:9.279467pt;}
.y198{bottom:12.543235pt;}
.yc0{bottom:14.982400pt;}
.ye3{bottom:15.679333pt;}
.y19d{bottom:17.228650pt;}
.yd9{bottom:17.279333pt;}
.ye1{bottom:17.281893pt;}
.y15b{bottom:17.920400pt;}
.y247{bottom:18.153733pt;}
.ydb{bottom:20.159333pt;}
.ye0{bottom:31.679333pt;}
.yc1{bottom:39.440800pt;}
.y248{bottom:40.559200pt;}
.y7{bottom:41.877067pt;}
.y249{bottom:62.964400pt;}
.y24a{bottom:85.369733pt;}
.y59{bottom:86.519733pt;}
.y7c{bottom:86.519867pt;}
.y2e{bottom:86.551200pt;}
.y11c{bottom:86.551333pt;}
.y86{bottom:91.433067pt;}
.y339{bottom:96.713867pt;}
.y58{bottom:99.186400pt;}
.y7b{bottom:99.186533pt;}
.yd0{bottom:99.186667pt;}
.y2d{bottom:99.217867pt;}
.y23f{bottom:99.218000pt;}
.y11b{bottom:99.218133pt;}
.y2fd{bottom:100.713067pt;}
.y32a{bottom:103.853067pt;}
.y24b{bottom:107.774933pt;}
.y338{bottom:110.713867pt;}
.y57{bottom:111.853067pt;}
.y1dc{bottom:111.853200pt;}
.y112{bottom:111.853333pt;}
.ycf{bottom:111.853467pt;}
.y2c{bottom:111.884533pt;}
.y320{bottom:111.884667pt;}
.y23e{bottom:111.884800pt;}
.y11a{bottom:111.884933pt;}
.y344{bottom:112.519733pt;}
.y329{bottom:121.186400pt;}
.y84{bottom:123.168400pt;}
.y56{bottom:124.519733pt;}
.y1db{bottom:124.519867pt;}
.y111{bottom:124.520000pt;}
.yce{bottom:124.520267pt;}
.y2b{bottom:124.551200pt;}
.y31f{bottom:124.551333pt;}
.y26c{bottom:124.551467pt;}
.y119{bottom:124.551600pt;}
.y337{bottom:124.713867pt;}
.y343{bottom:126.519733pt;}
.y2fa{bottom:128.955733pt;}
.y150{bottom:135.938133pt;}
.y55{bottom:137.186400pt;}
.y1da{bottom:137.186533pt;}
.y110{bottom:137.186667pt;}
.y237{bottom:137.186800pt;}
.y2a{bottom:137.217867pt;}
.y31e{bottom:137.218000pt;}
.y26b{bottom:137.218133pt;}
.y118{bottom:137.218267pt;}
.y280{bottom:137.218400pt;}
.y328{bottom:138.519733pt;}
.ybf{bottom:138.940000pt;}
.y342{bottom:140.519733pt;}
.y14f{bottom:145.218133pt;}
.y336{bottom:146.272933pt;}
.y54{bottom:149.853067pt;}
.y1d9{bottom:149.853200pt;}
.y10f{bottom:149.853333pt;}
.y236{bottom:149.853467pt;}
.y29{bottom:149.884533pt;}
.y26a{bottom:149.884800pt;}
.y117{bottom:149.884933pt;}
.y27f{bottom:149.885067pt;}
.y307{bottom:151.285867pt;}
.yba{bottom:154.455733pt;}
.y341{bottom:154.519733pt;}
.y155{bottom:155.853067pt;}
.y24c{bottom:158.041733pt;}
.y14a{bottom:159.713333pt;}
.y335{bottom:160.272933pt;}
.y53{bottom:162.519733pt;}
.y10e{bottom:162.520000pt;}
.y235{bottom:162.520133pt;}
.y28{bottom:162.551200pt;}
.y269{bottom:162.551467pt;}
.y116{bottom:162.551600pt;}
.y326{bottom:162.551733pt;}
.y27e{bottom:162.551867pt;}
.y151{bottom:164.542533pt;}
.y340{bottom:168.519733pt;}
.y306{bottom:168.619200pt;}
.y149{bottom:170.380133pt;}
.y2f7{bottom:170.964400pt;}
.y7a{bottom:173.186400pt;}
.y257{bottom:173.652400pt;}
.y52{bottom:175.186400pt;}
.y10d{bottom:175.186667pt;}
.y234{bottom:175.186800pt;}
.y30a{bottom:175.186933pt;}
.y27{bottom:175.217867pt;}
.y268{bottom:175.218133pt;}
.y115{bottom:175.218400pt;}
.y325{bottom:175.218533pt;}
.y27d{bottom:175.218667pt;}
.ybb{bottom:178.911733pt;}
.y334{bottom:181.832000pt;}
.y33f{bottom:182.519733pt;}
.yfb{bottom:184.068800pt;}
.y256{bottom:184.319067pt;}
.y305{bottom:185.952533pt;}
.y154{bottom:185.984800pt;}
.y34b{bottom:186.516533pt;}
.y10c{bottom:187.853333pt;}
.y233{bottom:187.853467pt;}
.y309{bottom:187.853600pt;}
.y26{bottom:187.884533pt;}
.y267{bottom:187.884800pt;}
.y2bd{bottom:187.885200pt;}
.y2b9{bottom:187.885333pt;}
.y79{bottom:190.519733pt;}
.yfa{bottom:193.348800pt;}
.y333{bottom:195.832000pt;}
.y33e{bottom:196.519600pt;}
.y34a{bottom:200.516533pt;}
.y10b{bottom:200.520000pt;}
.y232{bottom:200.520133pt;}
.y25{bottom:200.551200pt;}
.y266{bottom:200.551600pt;}
.y2bc{bottom:200.551867pt;}
.y2b8{bottom:200.552000pt;}
.yc2{bottom:202.839333pt;}
.y304{bottom:203.285867pt;}
.y153{bottom:203.318133pt;}
.ybc{bottom:203.367733pt;}
.yf9{bottom:204.714400pt;}
.yf6{bottom:206.919333pt;}
.y78{bottom:207.853067pt;}
.y10a{bottom:213.186667pt;}
.y1d8{bottom:213.186800pt;}
.y265{bottom:213.218400pt;}
.y2bb{bottom:213.218533pt;}
.y2b7{bottom:213.218667pt;}
.y332{bottom:217.391067pt;}
.yf5{bottom:217.586000pt;}
.y303{bottom:220.619200pt;}
.y152{bottom:220.651467pt;}
.y2d3{bottom:223.994933pt;}
.y33d{bottom:224.519600pt;}
.yfd{bottom:224.771467pt;}
.y77{bottom:225.186400pt;}
.y109{bottom:225.853333pt;}
.y1d7{bottom:225.853467pt;}
.y231{bottom:225.853600pt;}
.y264{bottom:225.885067pt;}
.y2b6{bottom:225.885333pt;}
.yc3{bottom:227.302000pt;}
.ybd{bottom:227.823733pt;}
.y25a{bottom:230.099733pt;}
.y349{bottom:230.516533pt;}
.y2be{bottom:230.550667pt;}
.y331{bottom:231.391067pt;}
.y30e{bottom:235.800533pt;}
.y51{bottom:236.355067pt;}
.y5{bottom:238.328800pt;}
.y33c{bottom:238.519600pt;}
.y108{bottom:238.520000pt;}
.y1d6{bottom:238.520133pt;}
.y230{bottom:238.520267pt;}
.y263{bottom:238.551867pt;}
.y259{bottom:239.379733pt;}
.yfc{bottom:242.104800pt;}
.y76{bottom:242.519733pt;}
.y11f{bottom:244.876000pt;}
.y30d{bottom:245.080533pt;}
.y330{bottom:245.391067pt;}
.y2d2{bottom:246.661600pt;}
.yd4{bottom:247.506667pt;}
.y107{bottom:251.186800pt;}
.y22f{bottom:251.186933pt;}
.y262{bottom:251.218533pt;}
.yc4{bottom:251.764667pt;}
.ybe{bottom:252.279733pt;}
.y2cc{bottom:252.395467pt;}
.y33b{bottom:252.519600pt;}
.y24{bottom:252.783067pt;}
.y2b3{bottom:253.526000pt;}
.y50{bottom:256.355067pt;}
.y348{bottom:258.516533pt;}
.y75{bottom:259.853067pt;}
.y148{bottom:262.922800pt;}
.y133{bottom:263.460667pt;}
.y137{bottom:263.468667pt;}
.y13b{bottom:263.476667pt;}
.y13f{bottom:263.484667pt;}
.y143{bottom:263.492667pt;}
.y22e{bottom:263.853600pt;}
.y261{bottom:263.885333pt;}
.y2b2{bottom:264.192667pt;}
.yef{bottom:264.657333pt;}
.y1fe{bottom:266.119200pt;}
.y32f{bottom:266.950133pt;}
.ya9{bottom:267.675067pt;}
.y228{bottom:269.065600pt;}
.y281{bottom:269.186400pt;}
.y2d1{bottom:269.328267pt;}
.yf4{bottom:269.579067pt;}
.y21b{bottom:271.410400pt;}
.y347{bottom:272.516533pt;}
.y23{bottom:272.783067pt;}
.yea{bottom:275.529333pt;}
.y4f{bottom:276.355067pt;}
.y22d{bottom:276.520400pt;}
.y260{bottom:276.552133pt;}
.y2cb{bottom:277.067467pt;}
.y74{bottom:277.186400pt;}
.y227{bottom:278.345600pt;}
.y33a{bottom:280.519733pt;}
.y32e{bottom:280.950133pt;}
.y21a{bottom:282.077067pt;}
.y2f1{bottom:284.730667pt;}
.y346{bottom:286.516533pt;}
.y1fd{bottom:288.786000pt;}
.ya8{bottom:289.008400pt;}
.y22c{bottom:289.187200pt;}
.y25f{bottom:289.218800pt;}
.y2d0{bottom:291.994933pt;}
.y22{bottom:292.783067pt;}
.y219{bottom:294.077067pt;}
.y73{bottom:294.519733pt;}
.y147{bottom:294.917467pt;}
.y3{bottom:295.174000pt;}
.y2f0{bottom:295.397333pt;}
.y132{bottom:295.452667pt;}
.y136{bottom:295.460667pt;}
.y13a{bottom:295.468667pt;}
.y13e{bottom:295.476667pt;}
.y142{bottom:295.484667pt;}
.y245{bottom:296.146667pt;}
.y31b{bottom:296.628000pt;}
.y317{bottom:297.153333pt;}
.y255{bottom:297.976000pt;}
.yee{bottom:300.481333pt;}
.y345{bottom:300.516533pt;}
.y22b{bottom:301.853867pt;}
.y25e{bottom:301.885600pt;}
.y32d{bottom:302.509200pt;}
.y218{bottom:304.743733pt;}
.yf3{bottom:305.400400pt;}
.y2ef{bottom:307.397333pt;}
.y1fc{bottom:310.119333pt;}
.y2f8{bottom:310.540000pt;}
.ye9{bottom:311.353333pt;}
.y4e{bottom:311.473200pt;}
.y72{bottom:311.853067pt;}
.y21{bottom:312.783067pt;}
.y2cf{bottom:313.328267pt;}
.y226{bottom:313.835067pt;}
.y22a{bottom:314.520533pt;}
.y25d{bottom:314.552400pt;}
.y217{bottom:315.410400pt;}
.y83{bottom:315.853067pt;}
.y32c{bottom:316.509200pt;}
.y201{bottom:316.946000pt;}
.y2ee{bottom:318.064000pt;}
.y251{bottom:321.647067pt;}
.y24d{bottom:322.180533pt;}
.y2{bottom:322.539733pt;}
.y146{bottom:326.912133pt;}
.y25c{bottom:327.219067pt;}
.y131{bottom:327.444667pt;}
.y135{bottom:327.452667pt;}
.y139{bottom:327.460667pt;}
.y13d{bottom:327.468667pt;}
.y141{bottom:327.476667pt;}
.y31a{bottom:327.633333pt;}
.y316{bottom:328.161333pt;}
.y2ed{bottom:328.730667pt;}
.y71{bottom:329.186400pt;}
.y32b{bottom:330.509200pt;}
.y200{bottom:330.948000pt;}
.y82{bottom:331.186400pt;}
.y4d{bottom:331.473200pt;}
.y20{bottom:332.783067pt;}
.y12c{bottom:335.171867pt;}
.yed{bottom:336.305333pt;}
.y23d{bottom:337.438133pt;}
.y25b{bottom:339.885733pt;}
.yf2{bottom:341.221733pt;}
.y182{bottom:342.742000pt;}
.y81{bottom:346.519600pt;}
.y106{bottom:346.519733pt;}
.ye8{bottom:347.177333pt;}
.y1fb{bottom:349.868000pt;}
.y1d2{bottom:350.811467pt;}
.y4c{bottom:351.473200pt;}
.y1f{bottom:352.783067pt;}
.y12a{bottom:353.731867pt;}
.y23c{bottom:354.771467pt;}
.y27c{bottom:355.852933pt;}
.y181{bottom:356.075333pt;}
.y319{bottom:358.638667pt;}
.y145{bottom:358.906800pt;}
.y315{bottom:359.169333pt;}
.y130{bottom:359.436667pt;}
.y134{bottom:359.444667pt;}
.y138{bottom:359.452667pt;}
.y13c{bottom:359.460667pt;}
.y140{bottom:359.468667pt;}
.y252{bottom:361.108400pt;}
.y24e{bottom:361.636533pt;}
.y1d1{bottom:361.897733pt;}
.y31d{bottom:363.852933pt;}
.y70{bottom:363.853067pt;}
.y1fa{bottom:369.748533pt;}
.y1f2{bottom:370.235467pt;}
.y23b{bottom:372.104800pt;}
.yec{bottom:372.129333pt;}
.y128{bottom:372.291867pt;}
.y1e{bottom:372.783067pt;}
.y1d0{bottom:372.983867pt;}
.y2cd{bottom:373.139467pt;}
.yf1{bottom:377.043067pt;}
.yb9{bottom:379.366667pt;}
.y31c{bottom:381.186267pt;}
.y105{bottom:381.186400pt;}
.ye7{bottom:383.001333pt;}
.y4b{bottom:386.591333pt;}
.y144{bottom:387.149467pt;}
.y23a{bottom:389.438133pt;}
.y318{bottom:389.644000pt;}
.y314{bottom:390.177333pt;}
.y126{bottom:390.851867pt;}
.y1d{bottom:392.783067pt;}
.y1f9{bottom:397.477867pt;}
.yb8{bottom:397.926667pt;}
.y1f1{bottom:397.971467pt;}
.y27b{bottom:398.519600pt;}
.y104{bottom:398.519733pt;}
.y253{bottom:400.569733pt;}
.y24f{bottom:401.092533pt;}
.y4a{bottom:406.591333pt;}
.y239{bottom:406.771467pt;}
.yeb{bottom:407.953333pt;}
.y123{bottom:409.411867pt;}
.y2ca{bottom:410.459467pt;}
.y1c{bottom:412.783067pt;}
.yf0{bottom:412.864400pt;}
.y27a{bottom:415.852933pt;}
.y103{bottom:415.853067pt;}
.y85{bottom:416.416400pt;}
.yb7{bottom:416.486667pt;}
.ye6{bottom:418.825333pt;}
.y14e{bottom:419.853067pt;}
.y1ab{bottom:424.008000pt;}
.y238{bottom:424.104800pt;}
.y2b5{bottom:425.186400pt;}
.y1f8{bottom:425.207200pt;}
.y1f0{bottom:425.707467pt;}
.y120{bottom:427.971867pt;}
.y2ce{bottom:429.659467pt;}
.y279{bottom:433.186267pt;}
.y114{bottom:433.186400pt;}
.yb6{bottom:435.046667pt;}
.y14d{bottom:435.186400pt;}
.y30c{bottom:437.186400pt;}
.y1{bottom:437.814000pt;}
.y254{bottom:440.031067pt;}
.y250{bottom:440.548533pt;}
.y49{bottom:441.709333pt;}
.y1a8{bottom:443.297867pt;}
.y1b{bottom:447.901200pt;}
.yc5{bottom:449.247600pt;}
.y278{bottom:450.519600pt;}
.y102{bottom:450.519733pt;}
.y202{bottom:450.520000pt;}
.y30b{bottom:452.519733pt;}
.y210{bottom:452.633867pt;}
.y1f7{bottom:452.936533pt;}
.y1ef{bottom:453.443467pt;}
.yb5{bottom:453.606667pt;}
.y2dc{bottom:454.519733pt;}
.y2c7{bottom:459.301600pt;}
.y324{bottom:459.853067pt;}
.y1a5{bottom:462.587867pt;}
.y313{bottom:464.510667pt;}
.y277{bottom:467.852933pt;}
.y101{bottom:467.853067pt;}
.yf8{bottom:469.853067pt;}
.y20e{bottom:471.194000pt;}
.yc7{bottom:473.382800pt;}
.y48{bottom:476.827467pt;}
.y162{bottom:477.366427pt;}
.y214{bottom:477.693067pt;}
.y2c5{bottom:477.861600pt;}
.y1f6{bottom:480.665867pt;}
.y1ee{bottom:481.179467pt;}
.y1a2{bottom:481.877867pt;}
.y312{bottom:483.070667pt;}
.y12e{bottom:483.088000pt;}
.yf7{bottom:485.186400pt;}
.y20c{bottom:489.753867pt;}
.yc6{bottom:490.716133pt;}
.yb4{bottom:490.726667pt;}
.y159{bottom:492.541333pt;}
.y161{bottom:495.922587pt;}
.y2c3{bottom:496.421600pt;}
.y47{bottom:496.827467pt;}
.y4{bottom:497.693600pt;}
.y1a0{bottom:501.167867pt;}
.y311{bottom:501.630667pt;}
.y158{bottom:501.821333pt;}
.y276{bottom:502.519600pt;}
.y100{bottom:502.519733pt;}
.y258{bottom:504.519733pt;}
.y20a{bottom:508.313867pt;}
.y1f5{bottom:508.395200pt;}
.y1ed{bottom:508.915467pt;}
.yb3{bottom:509.286667pt;}
.y6f{bottom:509.583467pt;}
.y160{bottom:514.478747pt;}
.y46{bottom:516.827467pt;}
.ya7{bottom:518.392000pt;}
.y275{bottom:519.852933pt;}
.yff{bottom:519.853067pt;}
.y310{bottom:520.190667pt;}
.y185{bottom:523.995867pt;}
.y207{bottom:526.874000pt;}
.yb2{bottom:527.846667pt;}
.y6e{bottom:529.583467pt;}
.ya6{bottom:530.578933pt;}
.y15f{bottom:533.034907pt;}
.y2bf{bottom:533.541600pt;}
.y1f4{bottom:536.124533pt;}
.y1ec{bottom:536.651467pt;}
.y45{bottom:536.827467pt;}
.y274{bottom:537.186267pt;}
.ycd{bottom:537.186400pt;}
.y9e{bottom:542.833600pt;}
.y204{bottom:545.437707pt;}
.y188{bottom:545.438133pt;}
.yb1{bottom:546.406667pt;}
.y6d{bottom:549.583467pt;}
.y15e{bottom:551.591067pt;}
.y273{bottom:554.519600pt;}
.ycc{bottom:554.519733pt;}
.y44{bottom:556.827467pt;}
.y30f{bottom:557.310667pt;}
.y18a{bottom:560.367867pt;}
.y244{bottom:560.374667pt;}
.y187{bottom:562.771467pt;}
.y229{bottom:563.853067pt;}
.y1f3{bottom:563.853867pt;}
.y203{bottom:563.993867pt;}
.y1eb{bottom:564.387467pt;}
.yb0{bottom:564.966667pt;}
.yd5{bottom:566.759333pt;}
.y6c{bottom:569.583467pt;}
.y272{bottom:571.852933pt;}
.ycb{bottom:571.853067pt;}
.y9f{bottom:572.140267pt;}
.y12d{bottom:575.888000pt;}
.y2fc{bottom:576.766400pt;}
.y43{bottom:576.827467pt;}
.y243{bottom:578.934667pt;}
.y186{bottom:580.104800pt;}
.y2e5{bottom:582.563467pt;}
.yaf{bottom:583.526667pt;}
.y2fb{bottom:586.046400pt;}
.y271{bottom:589.186267pt;}
.yca{bottom:589.186400pt;}
.y6b{bottom:589.583467pt;}
.y215{bottom:593.021067pt;}
.y12b{bottom:594.448000pt;}
.y42{bottom:596.827467pt;}
.y242{bottom:597.494667pt;}
.y2e3{bottom:601.123467pt;}
.ya0{bottom:601.446933pt;}
.y189{bottom:602.194667pt;}
.y270{bottom:606.519600pt;}
.yfe{bottom:606.519733pt;}
.y213{bottom:607.437067pt;}
.y1ff{bottom:608.519733pt;}
.y129{bottom:613.008000pt;}
.y2f9{bottom:614.289067pt;}
.y241{bottom:616.054667pt;}
.y41{bottom:616.827467pt;}
.y15d{bottom:619.612000pt;}
.y1ac{bottom:619.654933pt;}
.y2e1{bottom:619.683467pt;}
.yae{bottom:620.646667pt;}
.y26f{bottom:623.852933pt;}
.yc9{bottom:623.853067pt;}
.y6a{bottom:624.701600pt;}
.y1b2{bottom:627.038357pt;}
.y283{bottom:628.766400pt;}
.ya1{bottom:630.753600pt;}
.y127{bottom:631.568000pt;}
.y11e{bottom:633.186400pt;}
.y1ca{bottom:633.891600pt;}
.y1b8{bottom:634.421781pt;}
.y240{bottom:634.614667pt;}
.y302{bottom:636.619200pt;}
.y40{bottom:636.827467pt;}
.y282{bottom:638.046400pt;}
.yad{bottom:639.206667pt;}
.y26e{bottom:641.186267pt;}
.y1a{bottom:641.186400pt;}
.y1be{bottom:641.805205pt;}
.y17b{bottom:644.525600pt;}
.y69{bottom:644.701600pt;}
.y1c4{bottom:649.188629pt;}
.y124{bottom:650.128000pt;}
.y176{bottom:653.205600pt;}
.y301{bottom:653.952533pt;}
.y3f{bottom:656.827467pt;}
.ydf{bottom:658.106667pt;}
.y308{bottom:658.519600pt;}
.y19{bottom:658.519733pt;}
.y212{bottom:659.413067pt;}
.ya2{bottom:660.060267pt;}
.y284{bottom:661.730533pt;}
.y180{bottom:661.848267pt;}
.y171{bottom:661.885600pt;}
.y216{bottom:663.533067pt;}
.y68{bottom:664.701600pt;}
.y2c9{bottom:667.132000pt;}
.y121{bottom:668.688000pt;}
.y16c{bottom:670.565600pt;}
.y300{bottom:671.285867pt;}
.y1ad{bottom:672.827227pt;}
.y26d{bottom:675.852933pt;}
.yc8{bottom:675.853067pt;}
.yab{bottom:676.326667pt;}
.y3e{bottom:676.827467pt;}
.y167{bottom:679.245600pt;}
.y1b3{bottom:680.210651pt;}
.y67{bottom:684.701600pt;}
.y323{bottom:685.186400pt;}
.y2c8{bottom:685.692000pt;}
.y286{bottom:685.865733pt;}
.y1cb{bottom:687.069193pt;}
.y1b9{bottom:687.594075pt;}
.y2ff{bottom:688.619200pt;}
.ya3{bottom:689.366933pt;}
.y18{bottom:693.186400pt;}
.y1bf{bottom:694.977499pt;}
.y3d{bottom:696.827467pt;}
.yde{bottom:701.626667pt;}
.y1c5{bottom:702.360923pt;}
.y285{bottom:703.199067pt;}
.y17a{bottom:703.652267pt;}
.y2c6{bottom:704.252000pt;}
.y2fe{bottom:705.952533pt;}
.y17{bottom:710.519733pt;}
.y175{bottom:712.332267pt;}
.y3c{bottom:716.827467pt;}
.y225{bottom:718.519733pt;}
.ya4{bottom:718.673600pt;}
.y66{bottom:719.819600pt;}
.y113{bottom:719.853067pt;}
.y17f{bottom:720.974933pt;}
.y170{bottom:721.012267pt;}
.y2b1{bottom:722.645333pt;}
.y2c4{bottom:722.812000pt;}
.y1ae{bottom:725.999520pt;}
.y16{bottom:727.853067pt;}
.y2e0{bottom:727.853333pt;}
.y16b{bottom:729.692267pt;}
.yda{bottom:732.026667pt;}
.y1b4{bottom:733.382944pt;}
.y224{bottom:733.853067pt;}
.y2b0{bottom:733.864133pt;}
.y3b{bottom:736.827467pt;}
.y2ea{bottom:738.267067pt;}
.y166{bottom:738.372267pt;}
.y65{bottom:739.819600pt;}
.y1cc{bottom:740.246786pt;}
.y1ba{bottom:740.766368pt;}
.y2c0{bottom:741.372000pt;}
.y15{bottom:745.186400pt;}
.y2a7{bottom:746.100133pt;}
.y2a4{bottom:746.604800pt;}
.ya5{bottom:747.980267pt;}
.y1c0{bottom:748.149792pt;}
.y2a6{bottom:748.188800pt;}
.y223{bottom:749.186400pt;}
.y1c6{bottom:755.533216pt;}
.y1ea{bottom:757.586667pt;}
.y11d{bottom:758.519733pt;}
.y2a5{bottom:758.684800pt;}
.y64{bottom:759.819600pt;}
.yd8{bottom:762.426667pt;}
.y14{bottom:762.519733pt;}
.y179{bottom:762.778933pt;}
.y222{bottom:764.519733pt;}
.y2a2{bottom:766.748800pt;}
.y2a0{bottom:769.468800pt;}
.y174{bottom:771.458933pt;}
.y2a8{bottom:771.626800pt;}
.y3a{bottom:771.945600pt;}
.y1e9{bottom:776.146667pt;}
.y29e{bottom:778.780800pt;}
.y1af{bottom:779.171813pt;}
.y2a3{bottom:779.788800pt;}
.y13{bottom:779.853067pt;}
.y2e9{bottom:780.019067pt;}
.y2a1{bottom:780.076800pt;}
.y17e{bottom:780.101600pt;}
.y16f{bottom:780.138933pt;}
.y1b5{bottom:786.555237pt;}
.y16a{bottom:788.818933pt;}
.yd6{bottom:791.546667pt;}
.y39{bottom:791.945600pt;}
.y1cd{bottom:793.424378pt;}
.y29f{bottom:793.468800pt;}
.y1bb{bottom:793.938661pt;}
.y1e8{bottom:794.706667pt;}
.y63{bottom:794.937733pt;}
.y2a9{bottom:797.153467pt;}
.y12{bottom:797.186400pt;}
.y165{bottom:797.498933pt;}
.y80{bottom:799.186400pt;}
.y1c1{bottom:801.322085pt;}
.y2ba{bottom:806.519733pt;}
.y1c7{bottom:808.705509pt;}
.y29d{bottom:811.332800pt;}
.y38{bottom:811.945600pt;}
.y1e7{bottom:813.266667pt;}
.y11{bottom:814.519733pt;}
.y178{bottom:821.905600pt;}
.y2aa{bottom:822.680133pt;}
.y322{bottom:823.853067pt;}
.y29b{bottom:828.460800pt;}
.yd3{bottom:828.666667pt;}
.y62{bottom:830.055867pt;}
.y173{bottom:830.585600pt;}
.y1e6{bottom:831.826667pt;}
.y10{bottom:831.853067pt;}
.y37{bottom:831.945600pt;}
.y1b0{bottom:832.344107pt;}
.y29c{bottom:835.268800pt;}
.y17d{bottom:839.228267pt;}
.y16e{bottom:839.265600pt;}
.y1b6{bottom:839.727531pt;}
.ye4{bottom:846.586667pt;}
.y1ce{bottom:846.601971pt;}
.y1bc{bottom:847.110955pt;}
.yd1{bottom:847.226667pt;}
.y169{bottom:847.945600pt;}
.y2ab{bottom:848.206800pt;}
.yf{bottom:849.186400pt;}
.y61{bottom:850.055867pt;}
.y1e5{bottom:850.386667pt;}
.y29a{bottom:851.428800pt;}
.y36{bottom:851.945600pt;}
.y1c2{bottom:854.494379pt;}
.y164{bottom:856.625600pt;}
.y1c8{bottom:861.877803pt;}
.ye{bottom:866.519733pt;}
.y1e4{bottom:868.946667pt;}
.y35{bottom:871.945600pt;}
.y2ac{bottom:873.733467pt;}
.y2eb{bottom:876.235067pt;}
.y177{bottom:881.032267pt;}
.yd{bottom:883.853067pt;}
.y60{bottom:885.174000pt;}
.y1b1{bottom:885.516400pt;}
.y1e3{bottom:887.506667pt;}
.y172{bottom:889.712267pt;}
.y1b7{bottom:892.899824pt;}
.y17c{bottom:898.354933pt;}
.y16d{bottom:898.392267pt;}
.y211{bottom:898.993333pt;}
.y2ad{bottom:899.260133pt;}
.y1cf{bottom:899.779564pt;}
.y1bd{bottom:900.283248pt;}
.yc{bottom:901.186400pt;}
.y296{bottom:902.484800pt;}
.y9d{bottom:903.586667pt;}
.y5f{bottom:905.174000pt;}
.y1e2{bottom:906.066667pt;}
.y34{bottom:907.063733pt;}
.y168{bottom:907.072267pt;}
.y1c3{bottom:907.666672pt;}
.y2e8{bottom:909.131067pt;}
.y295{bottom:910.884800pt;}
.y1c9{bottom:915.050096pt;}
.y163{bottom:915.752267pt;}
.y2ec{bottom:916.803067pt;}
.y20f{bottom:917.553333pt;}
.yb{bottom:918.519733pt;}
.y9c{bottom:922.146667pt;}
.y2ae{bottom:924.786800pt;}
.y5e{bottom:925.174000pt;}
.y297{bottom:925.460800pt;}
.y33{bottom:927.063733pt;}
.y298{bottom:930.564800pt;}
.ya{bottom:935.853067pt;}
.y20d{bottom:936.113333pt;}
.y299{bottom:940.548800pt;}
.y9b{bottom:940.706667pt;}
.y2db{bottom:941.853067pt;}
.y1e1{bottom:943.186667pt;}
.y5d{bottom:945.174000pt;}
.y32{bottom:947.063733pt;}
.y2af{bottom:950.313467pt;}
.y7f{bottom:953.186400pt;}
.y20b{bottom:954.673333pt;}
.y2da{bottom:957.186400pt;}
.y9a{bottom:959.266667pt;}
.y1df{bottom:961.746667pt;}
.y5c{bottom:965.174000pt;}
.y31{bottom:967.063733pt;}
.y9{bottom:970.519733pt;}
.y2d9{bottom:972.519733pt;}
.y208{bottom:973.233333pt;}
.y157{bottom:974.519733pt;}
.y99{bottom:977.826667pt;}
.y327{bottom:983.853067pt;}
.y5b{bottom:985.174000pt;}
.y30{bottom:987.063733pt;}
.y7e{bottom:987.853067pt;}
.y156{bottom:989.853067pt;}
.y205{bottom:991.793333pt;}
.y98{bottom:996.386667pt;}
.y321{bottom:997.186400pt;}
.y1dd{bottom:998.866667pt;}
.y5a{bottom:1005.174000pt;}
.y7d{bottom:1005.186400pt;}
.y8{bottom:1005.434000pt;}
.y2f{bottom:1007.063733pt;}
.y97{bottom:1014.946667pt;}
.y1a9{bottom:1019.218667pt;}
.y96{bottom:1033.506667pt;}
.y1a6{bottom:1038.508000pt;}
.y95{bottom:1052.066667pt;}
.y1a3{bottom:1057.798667pt;}
.y6{bottom:1064.543733pt;}
.y94{bottom:1070.626667pt;}
.y1a1{bottom:1077.088000pt;}
.y93{bottom:1089.186667pt;}
.y19e{bottom:1096.378667pt;}
.y92{bottom:1107.746667pt;}
.y294{bottom:1110.722667pt;}
.y18b{bottom:1115.668000pt;}
.y91{bottom:1126.306667pt;}
.y293{bottom:1129.282667pt;}
.y90{bottom:1144.866667pt;}
.y292{bottom:1147.842667pt;}
.y8f{bottom:1163.426667pt;}
.y291{bottom:1166.402667pt;}
.y8e{bottom:1181.986667pt;}
.y290{bottom:1184.962667pt;}
.y15a{bottom:1185.602667pt;}
.y8d{bottom:1200.546667pt;}
.y28f{bottom:1203.522667pt;}
.y8c{bottom:1219.106667pt;}
.y28e{bottom:1222.082667pt;}
.y28d{bottom:1240.642667pt;}
.y8b{bottom:1256.226667pt;}
.y28c{bottom:1259.202667pt;}
.y8a{bottom:1274.786667pt;}
.y2e7{bottom:1287.697333pt;}
.y89{bottom:1293.346667pt;}
.y28b{bottom:1296.322667pt;}
.y2e6{bottom:1306.257333pt;}
.y28a{bottom:1314.882667pt;}
.y2e4{bottom:1324.817333pt;}
.y87{bottom:1330.466667pt;}
.y289{bottom:1333.442667pt;}
.y2e2{bottom:1343.377333pt;}
.y2de{bottom:1361.937333pt;}
.y287{bottom:1370.562667pt;}
.y2dd{bottom:1399.057333pt;}
.hf{height:-568.577333pt;}
.h11{height:-531.457333pt;}
.h12{height:-512.897333pt;}
.h13{height:-494.337333pt;}
.ha5{height:-467.865333pt;}
.h14{height:-457.217333pt;}
.h15{height:-438.657333pt;}
.ha7{height:-430.745333pt;}
.h16{height:-420.097333pt;}
.ha9{height:-412.185333pt;}
.h89{height:-406.784000pt;}
.h6c{height:-406.330667pt;}
.h3e{height:-404.360000pt;}
.h4a{height:-403.720000pt;}
.h17{height:-401.537333pt;}
.haa{height:-393.625333pt;}
.h2a{height:-390.972000pt;}
.h3f{height:-385.800000pt;}
.h18{height:-382.977333pt;}
.hab{height:-375.065333pt;}
.h8a{height:-369.664000pt;}
.h6d{height:-369.210667pt;}
.h19{height:-364.417333pt;}
.hac{height:-356.505333pt;}
.h2c{height:-353.852000pt;}
.h8b{height:-351.104000pt;}
.h6e{height:-350.650667pt;}
.h43{height:-348.680000pt;}
.h1a{height:-345.857333pt;}
.h2d{height:-335.292000pt;}
.h8c{height:-332.544000pt;}
.h1b{height:-327.297333pt;}
.h44{height:-319.560000pt;}
.h6f{height:-313.530667pt;}
.h1c{height:-308.737333pt;}
.h2e{height:-298.172000pt;}
.h9d{height:-296.637333pt;}
.h7b{height:-296.560000pt;}
.h8d{height:-295.424000pt;}
.h70{height:-294.970667pt;}
.h1d{height:-290.177333pt;}
.h45{height:-289.160000pt;}
.h2f{height:-279.612000pt;}
.h9e{height:-278.077333pt;}
.h7c{height:-278.000000pt;}
.h8e{height:-276.864000pt;}
.h71{height:-276.410667pt;}
.h1e{height:-271.617333pt;}
.h51{height:-269.177333pt;}
.h30{height:-261.052000pt;}
.h9f{height:-259.517333pt;}
.h7d{height:-259.440000pt;}
.h47{height:-258.760000pt;}
.h8f{height:-258.304000pt;}
.h72{height:-257.850667pt;}
.h1f{height:-253.057333pt;}
.h5b{height:-251.114667pt;}
.h52{height:-250.617333pt;}
.h31{height:-242.492000pt;}
.ha0{height:-240.957333pt;}
.h7e{height:-240.880000pt;}
.h90{height:-239.744000pt;}
.h73{height:-239.290667pt;}
.h20{height:-234.497333pt;}
.h54{height:-232.057333pt;}
.h32{height:-223.932000pt;}
.ha1{height:-222.397333pt;}
.h7f{height:-222.320000pt;}
.h91{height:-221.184000pt;}
.h74{height:-220.730667pt;}
.h21{height:-215.937333pt;}
.h48{height:-215.240000pt;}
.h55{height:-213.497333pt;}
.h33{height:-205.372000pt;}
.h80{height:-203.760000pt;}
.h92{height:-202.624000pt;}
.h75{height:-202.170667pt;}
.h22{height:-197.377333pt;}
.h56{height:-194.937333pt;}
.h93{height:-184.064000pt;}
.h61{height:-184.014667pt;}
.h76{height:-183.610667pt;}
.h23{height:-178.817333pt;}
.h57{height:-176.377333pt;}
.h82{height:-168.389333pt;}
.h34{height:-168.252000pt;}
.h94{height:-165.504000pt;}
.h77{height:-165.050667pt;}
.h63{height:-164.725333pt;}
.h24{height:-160.257333pt;}
.h83{height:-149.829333pt;}
.h35{height:-149.692000pt;}
.h95{height:-146.944000pt;}
.h65{height:-145.434667pt;}
.h25{height:-141.697333pt;}
.had{height:-137.352000pt;}
.h84{height:-131.269333pt;}
.h36{height:-131.132000pt;}
.h66{height:-126.145333pt;}
.h85{height:-112.709333pt;}
.h37{height:-112.572000pt;}
.h67{height:-106.854667pt;}
.hae{height:-100.232000pt;}
.h86{height:-94.149333pt;}
.h38{height:-94.012000pt;}
.h68{height:-87.565333pt;}
.h58{height:-83.577333pt;}
.haf{height:-81.672000pt;}
.hb0{height:-63.112000pt;}
.hb1{height:-44.552000pt;}
.h9a{height:-6.674667pt;}
.h5a{height:21.875000pt;}
.he{height:22.429687pt;}
.ha2{height:23.171875pt;}
.h96{height:23.203125pt;}
.h4c{height:23.668229pt;}
.h39{height:24.312500pt;}
.hd{height:24.484375pt;}
.h69{height:25.447427pt;}
.h59{height:25.520833pt;}
.h4b{height:26.796875pt;}
.h26{height:27.070312pt;}
.h3d{height:27.952995pt;}
.h3b{height:28.364583pt;}
.h5{height:28.565104pt;}
.h81{height:29.636375pt;}
.h6a{height:29.688529pt;}
.h5e{height:30.625000pt;}
.h97{height:30.915125pt;}
.hb2{height:32.032812pt;}
.hb3{height:32.114062pt;}
.hb4{height:32.235937pt;}
.ha4{height:32.835938pt;}
.h42{height:32.965000pt;}
.h29{height:33.257812pt;}
.h40{height:33.772500pt;}
.h60{height:34.261551pt;}
.hc{height:34.686198pt;}
.h62{height:35.100811pt;}
.h7{height:36.139583pt;}
.ha{height:36.368750pt;}
.hb{height:36.698177pt;}
.h6b{height:36.698710pt;}
.h64{height:36.804015pt;}
.h3c{height:38.766927pt;}
.h46{height:38.879700pt;}
.h49{height:40.192980pt;}
.h50{height:40.250000pt;}
.h10{height:40.796250pt;}
.h98{height:41.123125pt;}
.h2b{height:42.262500pt;}
.h4{height:45.174479pt;}
.h4e{height:45.322917pt;}
.h9{height:45.460938pt;}
.h5d{height:45.674290pt;}
.h8{height:45.872721pt;}
.ha6{height:46.468750pt;}
.h53{height:49.516850pt;}
.ha3{height:51.078125pt;}
.h28{height:51.734375pt;}
.h79{height:56.729167pt;}
.h6{height:57.130208pt;}
.h9b{height:58.170911pt;}
.h3{height:72.201973pt;}
.h4d{height:82.656250pt;}
.h3a{height:146.026667pt;}
.h4f{height:154.634667pt;}
.h88{height:168.249333pt;}
.h87{height:170.078667pt;}
.h2{height:179.552083pt;}
.h41{height:195.360000pt;}
.ha8{height:203.338667pt;}
.h9c{height:214.184000pt;}
.h99{height:241.133333pt;}
.h78{height:242.668000pt;}
.h27{height:243.497333pt;}
.h7a{height:244.713333pt;}
.h5c{height:314.876000pt;}
.h5f{height:329.458667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w28{width:-389.728000pt;}
.w20{width:-182.786667pt;}
.w11{width:-122.933333pt;}
.w16{width:-81.676000pt;}
.wc{width:-53.298667pt;}
.w10{width:-36.213333pt;}
.w15{width:8.454667pt;}
.wf{width:50.506667pt;}
.w6{width:65.032000pt;}
.w24{width:68.884000pt;}
.w23{width:74.666667pt;}
.w29{width:79.584000pt;}
.w3{width:85.440000pt;}
.w17{width:86.070667pt;}
.w9{width:86.720000pt;}
.w14{width:88.800000pt;}
.we{width:189.261333pt;}
.w26{width:205.953333pt;}
.w27{width:206.400000pt;}
.w25{width:207.233333pt;}
.w1e{width:208.000000pt;}
.w1d{width:216.032000pt;}
.w1c{width:217.313333pt;}
.w1a{width:345.600000pt;}
.w1f{width:354.493333pt;}
.w1b{width:376.320000pt;}
.w19{width:382.992000pt;}
.w5{width:408.189333pt;}
.w12{width:414.488000pt;}
.wa{width:432.320000pt;}
.wd{width:433.809333pt;}
.w4{width:434.560000pt;}
.w2{width:434.645333pt;}
.w22{width:434.880000pt;}
.w7{width:437.261333pt;}
.w8{width:438.541333pt;}
.wb{width:439.390667pt;}
.w21{width:439.938667pt;}
.w18{width:449.586667pt;}
.w13{width:456.378667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xde{left:-477.439600pt;}
.x1a{left:-18.488533pt;}
.x22{left:-12.130933pt;}
.x23{left:-9.123067pt;}
.x64{left:-5.298000pt;}
.xe6{left:-3.936667pt;}
.x82{left:-1.066400pt;}
.x0{left:0.000000pt;}
.x10{left:1.919600pt;}
.x2b{left:2.879333pt;}
.x18{left:4.086667pt;}
.xbb{left:5.132533pt;}
.x6a{left:9.102000pt;}
.x48{left:13.649600pt;}
.xc3{left:14.723733pt;}
.x2c{left:16.000667pt;}
.xb1{left:17.277840pt;}
.xae{left:23.528000pt;}
.xdb{left:24.451200pt;}
.x89{left:25.941467pt;}
.xbd{left:27.285333pt;}
.xdc{left:28.562000pt;}
.xe3{left:30.496800pt;}
.xd3{left:32.000533pt;}
.x85{left:33.258400pt;}
.x83{left:40.908000pt;}
.xdd{left:41.881333pt;}
.xc7{left:44.666800pt;}
.xbc{left:46.084400pt;}
.x2e{left:47.040667pt;}
.x86{left:48.222108pt;}
.x7c{left:50.609200pt;}
.x5e{left:51.556933pt;}
.x7{left:52.913333pt;}
.x81{left:53.858667pt;}
.x3e{left:55.284000pt;}
.x8{left:56.692933pt;}
.x15{left:59.363600pt;}
.x19{left:60.944000pt;}
.xba{left:62.123733pt;}
.x87{left:63.185815pt;}
.x14{left:64.692933pt;}
.x9{left:67.836133pt;}
.xda{left:69.422667pt;}
.x8a{left:70.832590pt;}
.x5d{left:71.961600pt;}
.xa{left:73.700800pt;}
.x4{left:74.645600pt;}
.x3{left:75.590533pt;}
.xaf{left:76.488267pt;}
.x1{left:79.370133pt;}
.x2{left:81.342133pt;}
.xb{left:86.733733pt;}
.x11{left:88.639600pt;}
.x5{left:92.598400pt;}
.xd0{left:99.470667pt;}
.x16{left:102.390267pt;}
.xad{left:105.404267pt;}
.x5c{left:106.448267pt;}
.xce{left:107.953333pt;}
.x24{left:110.864000pt;}
.x17{left:114.541867pt;}
.x3f{left:116.693467pt;}
.xe7{left:120.223333pt;}
.x1b{left:124.231467pt;}
.xa0{left:126.612133pt;}
.x60{left:129.333333pt;}
.x1c{left:131.911467pt;}
.xd1{left:133.225067pt;}
.x8d{left:138.286800pt;}
.x29{left:140.480667pt;}
.x8c{left:145.271200pt;}
.xe{left:148.346400pt;}
.xa3{left:152.319467pt;}
.xdf{left:155.200400pt;}
.xd6{left:156.159867pt;}
.x7d{left:158.816267pt;}
.xc6{left:160.613467pt;}
.xcf{left:165.121333pt;}
.xa1{left:171.229200pt;}
.x4e{left:190.759333pt;}
.x20{left:194.454667pt;}
.x4b{left:199.767333pt;}
.x4c{left:201.575333pt;}
.x8e{left:203.558768pt;}
.x90{left:205.778784pt;}
.x91{left:208.447792pt;}
.x4d{left:210.487333pt;}
.x8f{left:212.347371pt;}
.x21{left:216.134667pt;}
.x25{left:221.175867pt;}
.xcb{left:227.109333pt;}
.xb4{left:228.800400pt;}
.x12{left:230.133333pt;}
.x84{left:231.390667pt;}
.xb3{left:234.880400pt;}
.x96{left:250.952368pt;}
.x1f{left:252.278667pt;}
.xcc{left:253.425333pt;}
.xcd{left:254.537333pt;}
.x7f{left:257.309067pt;}
.x13{left:262.079600pt;}
.x5f{left:263.099333pt;}
.x92{left:265.195392pt;}
.xca{left:277.130533pt;}
.x93{left:279.845835pt;}
.x61{left:290.341200pt;}
.xa2{left:293.364800pt;}
.x98{left:295.635387pt;}
.x9e{left:297.489557pt;}
.xc1{left:298.973333pt;}
.x44{left:301.396267pt;}
.xc{left:302.362133pt;}
.x2a{left:303.758667pt;}
.x28{left:305.037333pt;}
.xc5{left:306.905733pt;}
.x27{left:308.144800pt;}
.x45{left:312.734933pt;}
.x40{left:313.700667pt;}
.x3d{left:315.321200pt;}
.x46{left:318.404267pt;}
.xd{left:319.370133pt;}
.x88{left:321.521333pt;}
.x97{left:325.451781pt;}
.x51{left:327.887333pt;}
.x7b{left:329.307867pt;}
.x80{left:330.914800pt;}
.x43{left:332.199467pt;}
.x94{left:334.423307pt;}
.x3c{left:338.841200pt;}
.x4f{left:341.415333pt;}
.x9f{left:347.876437pt;}
.x9d{left:355.018736pt;}
.x49{left:356.369467pt;}
.x50{left:357.951333pt;}
.x7e{left:359.433067pt;}
.x26{left:363.286133pt;}
.x4a{left:364.369467pt;}
.x3b{left:368.754533pt;}
.xd2{left:370.457333pt;}
.xf{left:372.985200pt;}
.x78{left:377.187867pt;}
.x3a{left:379.189200pt;}
.x79{left:382.134533pt;}
.x7a{left:383.310533pt;}
.xeb{left:384.475067pt;}
.x39{left:390.127867pt;}
.x95{left:391.412032pt;}
.x55{left:393.551333pt;}
.x53{left:395.031333pt;}
.x52{left:396.527333pt;}
.xaa{left:400.101733pt;}
.xec{left:403.729733pt;}
.x99{left:405.796405pt;}
.xab{left:407.475067pt;}
.x54{left:409.223333pt;}
.x8b{left:411.652000pt;}
.xe5{left:414.110400pt;}
.x9c{left:415.158720pt;}
.x1e{left:418.518667pt;}
.xd4{left:419.665333pt;}
.x57{left:421.175333pt;}
.x56{left:422.743333pt;}
.x9a{left:428.520389pt;}
.x58{left:431.775333pt;}
.x1d{left:432.974667pt;}
.x9b{left:442.355995pt;}
.xc8{left:444.595600pt;}
.x59{left:447.327333pt;}
.x76{left:449.101200pt;}
.x5b{left:454.471333pt;}
.x5a{left:455.975333pt;}
.x6{left:459.878667pt;}
.x33{left:466.521067pt;}
.x38{left:469.041067pt;}
.xac{left:470.932400pt;}
.x6c{left:472.229200pt;}
.x6b{left:473.815867pt;}
.x2d{left:477.837333pt;}
.x77{left:488.571867pt;}
.x65{left:492.902667pt;}
.xc4{left:494.775333pt;}
.x75{left:499.454533pt;}
.x74{left:501.003867pt;}
.x62{left:502.978267pt;}
.xd5{left:506.152000pt;}
.x6d{left:507.733200pt;}
.x41{left:509.314400pt;}
.xb2{left:510.896000pt;}
.xd8{left:511.841733pt;}
.xbe{left:513.878933pt;}
.xb8{left:516.011467pt;}
.x73{left:516.907867pt;}
.xc9{left:524.384267pt;}
.xbf{left:527.888000pt;}
.xc0{left:529.207333pt;}
.xa4{left:530.662133pt;}
.x6e{left:538.598533pt;}
.x2f{left:543.409067pt;}
.x42{left:547.331467pt;}
.x47{left:549.382667pt;}
.x32{left:552.865067pt;}
.x34{left:556.913067pt;}
.xa5{left:564.206133pt;}
.x31{left:566.369067pt;}
.x36{left:573.121067pt;}
.xa9{left:575.502133pt;}
.x63{left:576.584000pt;}
.x66{left:579.622667pt;}
.xe8{left:586.366267pt;}
.xb9{left:588.299467pt;}
.x72{left:592.059867pt;}
.xe2{left:595.645600pt;}
.xa7{left:598.118133pt;}
.xd9{left:601.073733pt;}
.x37{left:605.537067pt;}
.xb0{left:618.654400pt;}
.xa8{left:620.726133pt;}
.xea{left:623.206267pt;}
.x71{left:631.278533pt;}
.x35{left:633.633067pt;}
.xb5{left:639.211467pt;}
.xb7{left:645.227467pt;}
.xe0{left:649.597600pt;}
.xa6{left:659.806133pt;}
.xd7{left:663.857733pt;}
.x67{left:666.342667pt;}
.xe9{left:681.118267pt;}
.x6f{left:683.619867pt;}
.x70{left:686.401200pt;}
.xe1{left:692.125600pt;}
.xb6{left:697.443467pt;}
.x30{left:709.089067pt;}
.x68{left:753.062667pt;}
.xc2{left:836.253333pt;}
.x69{left:839.782667pt;}
.xe4{left:1116.656000pt;}
}




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