
    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_959ec42f52ab118e2e2b6154.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5c0a20145e620f590297d7e2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_18d5a2e7514f56ecba2afa6e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_02938fc6dcd79747b46a4041.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_225da0e85137217e58c845de.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_467ca5a8e1dec6d7516c6cbd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.734000;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_4bdddf47a743db1f5a5d8a51.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.388000;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_de2870aae315c809ea203bbe.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_192aeb02fca36fca0d456c89.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6bea816fe9159ff79de48ee3.woff2')format("woff");}.fff{font-family:fff;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_de2870aae315c809ea203bbe.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_af23b1ec8431d7d93b4a5376.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_86c4c09e7577c0c506075a24.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_469381effddac0930be1f61e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.749023;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_a7dd843c037aadaa1266bc11.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_c14dfa58eb00b7af5a0f1e50.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_530ce8288e0caa6d4ebabd88.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_de2870aae315c809ea203bbe.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_a61f8e72e1bb25301c20a998.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_00251c334ddc39b35e724a9f.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_de2870aae315c809ea203bbe.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_fbcd6f76d5ed428805e93d2d.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_66b0102a0b0a319370099606.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_de2870aae315c809ea203bbe.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_d7ccb69e9dc98f1ddf6b73ab.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_935ee27957e6c5fad840a0ac.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_382c38ff1b9ccfef38c65b86.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_21327b4873d23cb7ee23cd2c.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_581f571407760311ca835e43.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_7dfdcbf6a5f1a8b49fca1ba1.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.752441;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_774bd1b96b4a2e9039cbda79.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_de64f979e89266b95521a5a7.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.858398;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_70fdf8242c91390f58eb81d9.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.061000;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_bcbea410de556670483fc95b.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_ff871b0eef8a4c264e2d8606.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_102f11eebb4b995d99e7ddd1.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_7de3c982ec3d07fc063c8e08.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_ff871b0eef8a4c264e2d8606.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_2bcbdbdde98b52bac02b3923.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_1a7d635949f4abf48dec5881.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.891602;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_62f1891866d004c97444e0e9.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_1f322e423f0d1a5c8b21e63f.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_9d8bc6812de9a742c832cd06.woff2')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_8d9b81fc756ee3925b2f7931.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_dae6cd5ce3d2eba211bf04da.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.938965;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_72fb3a724d3c966188cfd06a.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_4f0e4159c032338c49fdf011.woff2')format("woff");}.ff34{font-family:ff34;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;}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249938,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.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);}
.vb{vertical-align:-28.189541px;}
.va{vertical-align:-25.920275px;}
.v1{vertical-align:-22.322556px;}
.v8{vertical-align:-17.172324px;}
.vc{vertical-align:-15.120000px;}
.v9{vertical-align:-10.690872px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:12.241038px;}
.v2{vertical-align:15.108948px;}
.v7{vertical-align:19.439951px;}
.v5{vertical-align:22.226400px;}
.v6{vertical-align:34.524000px;}
.v4{vertical-align:39.513600px;}
.v3{vertical-align:40.680000px;}
.lsc8{letter-spacing:-0.392280px;}
.lsc3{letter-spacing:-0.382349px;}
.lsa0{letter-spacing:-0.324648px;}
.ls9d{letter-spacing:-0.303383px;}
.lsbd{letter-spacing:-0.292969px;}
.lscc{letter-spacing:-0.283037px;}
.ls74{letter-spacing:-0.276552px;}
.lsf1{letter-spacing:-0.270000px;}
.lsbb{letter-spacing:-0.192638px;}
.lscb{letter-spacing:-0.188692px;}
.lsde{letter-spacing:-0.183726px;}
.ls49{letter-spacing:-0.180360px;}
.ls93{letter-spacing:-0.176753px;}
.ls97{letter-spacing:-0.170861px;}
.ls5b{letter-spacing:-0.159919px;}
.lscf{letter-spacing:-0.148967px;}
.lsd0{letter-spacing:-0.139036px;}
.ls6f{letter-spacing:-0.138276px;}
.ls61{letter-spacing:-0.137074px;}
.ls94{letter-spacing:-0.135510px;}
.lsc0{letter-spacing:-0.134070px;}
.ls32{letter-spacing:-0.132264px;}
.ls37{letter-spacing:-0.126252px;}
.ls81{letter-spacing:-0.123120px;}
.ls75{letter-spacing:-0.120240px;}
.ls73{letter-spacing:-0.114228px;}
.ls5d{letter-spacing:-0.108517px;}
.lsf6{letter-spacing:-0.108291px;}
.ls38{letter-spacing:-0.108216px;}
.ls35{letter-spacing:-0.108000px;}
.ls67{letter-spacing:-0.102805px;}
.lsc2{letter-spacing:-0.099311px;}
.lsf3{letter-spacing:-0.097200px;}
.lsd2{letter-spacing:-0.094346px;}
.ls99{letter-spacing:-0.094268px;}
.ls43{letter-spacing:-0.090972px;}
.ls47{letter-spacing:-0.090180px;}
.ls8f{letter-spacing:-0.089153px;}
.ls29{letter-spacing:-0.086184px;}
.ls70{letter-spacing:-0.084168px;}
.ls5a{letter-spacing:-0.081875px;}
.ls5e{letter-spacing:-0.079960px;}
.lsf5{letter-spacing:-0.079793px;}
.ls2d{letter-spacing:-0.078156px;}
.ls71{letter-spacing:-0.072144px;}
.ls6e{letter-spacing:-0.070200px;}
.ls63{letter-spacing:-0.068537px;}
.ls72{letter-spacing:-0.066132px;}
.lsba{letter-spacing:-0.066047px;}
.ls82{letter-spacing:-0.062825px;}
.ls31{letter-spacing:-0.060120px;}
.lsd9{letter-spacing:-0.059587px;}
.lsb8{letter-spacing:-0.059519px;}
.lsed{letter-spacing:-0.059400px;}
.lsdc{letter-spacing:-0.054621px;}
.ls2a{letter-spacing:-0.054108px;}
.ls60{letter-spacing:-0.051403px;}
.lsd4{letter-spacing:-0.049656px;}
.ls33{letter-spacing:-0.048096px;}
.ls66{letter-spacing:-0.045691px;}
.lsd8{letter-spacing:-0.044690px;}
.lsf2{letter-spacing:-0.043200px;}
.ls4a{letter-spacing:-0.042084px;}
.ls98{letter-spacing:-0.041242px;}
.lsb9{letter-spacing:-0.037876px;}
.lsf0{letter-spacing:-0.037800px;}
.ls46{letter-spacing:-0.036072px;}
.ls91{letter-spacing:-0.035351px;}
.lsbe{letter-spacing:-0.034759px;}
.ls6a{letter-spacing:-0.034268px;}
.ls78{letter-spacing:-0.032400px;}
.ls2b{letter-spacing:-0.030060px;}
.lsdd{letter-spacing:-0.029793px;}
.ls68{letter-spacing:-0.028557px;}
.ls64{letter-spacing:-0.025650px;}
.lsdf{letter-spacing:-0.024828px;}
.ls2e{letter-spacing:-0.024048px;}
.ls48{letter-spacing:-0.021600px;}
.lsdb{letter-spacing:-0.019862px;}
.ls2c{letter-spacing:-0.018036px;}
.ls9a{letter-spacing:-0.017675px;}
.ls5c{letter-spacing:-0.017134px;}
.lsee{letter-spacing:-0.016200px;}
.ls2f{letter-spacing:-0.012024px;}
.ls69{letter-spacing:-0.011423px;}
.lsef{letter-spacing:-0.010800px;}
.lsd7{letter-spacing:-0.009931px;}
.ls30{letter-spacing:-0.006012px;}
.ls96{letter-spacing:-0.005892px;}
.ls65{letter-spacing:-0.005711px;}
.ls45{letter-spacing:-0.005400px;}
.lscd{letter-spacing:-0.004966px;}
.ls44{letter-spacing:-0.004788px;}
.ls90{letter-spacing:-0.004692px;}
.lsb7{letter-spacing:-0.004309px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.001933px;}
.ls4c{letter-spacing:0.004549px;}
.ls14{letter-spacing:0.004788px;}
.ls7a{letter-spacing:0.005130px;}
.ls1d{letter-spacing:0.005400px;}
.lse5{letter-spacing:0.005700px;}
.ls7f{letter-spacing:0.005711px;}
.ls88{letter-spacing:0.005892px;}
.ls41{letter-spacing:0.006012px;}
.ls26{letter-spacing:0.010800px;}
.ls4e{letter-spacing:0.011423px;}
.ls3d{letter-spacing:0.012024px;}
.lsaf{letter-spacing:0.014897px;}
.ls79{letter-spacing:0.015390px;}
.ls76{letter-spacing:0.016200px;}
.ls55{letter-spacing:0.017134px;}
.ls1a{letter-spacing:0.018036px;}
.ls7e{letter-spacing:0.020520px;}
.ls27{letter-spacing:0.021600px;}
.ls58{letter-spacing:0.022846px;}
.ls1b{letter-spacing:0.024048px;}
.lsab{letter-spacing:0.024828px;}
.ls3c{letter-spacing:0.027000px;}
.lsce{letter-spacing:0.029793px;}
.ls16{letter-spacing:0.030060px;}
.ls52{letter-spacing:0.030780px;}
.ls22{letter-spacing:0.032400px;}
.ls59{letter-spacing:0.034268px;}
.lsa7{letter-spacing:0.034759px;}
.ls18{letter-spacing:0.036072px;}
.ls24{letter-spacing:0.037800px;}
.lsc9{letter-spacing:0.039725px;}
.ls51{letter-spacing:0.039980px;}
.ls54{letter-spacing:0.041040px;}
.ls19{letter-spacing:0.042084px;}
.ls77{letter-spacing:0.043200px;}
.ls57{letter-spacing:0.045691px;}
.ls3e{letter-spacing:0.048096px;}
.lse1{letter-spacing:0.048600px;}
.lsc7{letter-spacing:0.049656px;}
.ls53{letter-spacing:0.051300px;}
.ls56{letter-spacing:0.051403px;}
.ls87{letter-spacing:0.053026px;}
.ls28{letter-spacing:0.054000px;}
.ls17{letter-spacing:0.054108px;}
.lsc6{letter-spacing:0.054621px;}
.lsa1{letter-spacing:0.056020px;}
.ls7c{letter-spacing:0.056430px;}
.ls50{letter-spacing:0.057114px;}
.ls23{letter-spacing:0.059400px;}
.lsd3{letter-spacing:0.059587px;}
.ls42{letter-spacing:0.060120px;}
.ls83{letter-spacing:0.060999px;}
.ls7d{letter-spacing:0.061560px;}
.ls39{letter-spacing:0.062244px;}
.ls62{letter-spacing:0.062825px;}
.lsb0{letter-spacing:0.064552px;}
.ls6c{letter-spacing:0.064800px;}
.ls21{letter-spacing:0.066132px;}
.ls4b{letter-spacing:0.068229px;}
.lsc5{letter-spacing:0.069518px;}
.ls3f{letter-spacing:0.070200px;}
.ls12{letter-spacing:0.071820px;}
.lsae{letter-spacing:0.074484px;}
.lse2{letter-spacing:0.075600px;}
.ls1c{letter-spacing:0.078156px;}
.lsd5{letter-spacing:0.079449px;}
.ls5f{letter-spacing:0.079960px;}
.ls6d{letter-spacing:0.084168px;}
.lsad{letter-spacing:0.084415px;}
.ls80{letter-spacing:0.085671px;}
.ls25{letter-spacing:0.086400px;}
.ls1f{letter-spacing:0.090180px;}
.lsea{letter-spacing:0.091192px;}
.lsda{letter-spacing:0.099311px;}
.ls20{letter-spacing:0.102204px;}
.lsc4{letter-spacing:0.104277px;}
.ls92{letter-spacing:0.106052px;}
.lsd1{letter-spacing:0.109243px;}
.lsb3{letter-spacing:0.119174px;}
.lsb2{letter-spacing:0.129105px;}
.ls95{letter-spacing:0.129619px;}
.lse9{letter-spacing:0.131089px;}
.ls36{letter-spacing:0.132264px;}
.lsa8{letter-spacing:0.134070px;}
.lsb6{letter-spacing:0.139036px;}
.lsac{letter-spacing:0.144002px;}
.lsbf{letter-spacing:0.148967px;}
.lsa3{letter-spacing:0.155131px;}
.lsbc{letter-spacing:0.159615px;}
.lsa2{letter-spacing:0.163750px;}
.lsb1{letter-spacing:0.163864px;}
.lsb4{letter-spacing:0.168829px;}
.ls85{letter-spacing:0.168921px;}
.ls3b{letter-spacing:0.172368px;}
.ls4d{letter-spacing:0.172847px;}
.ls89{letter-spacing:0.176753px;}
.ls15{letter-spacing:0.177156px;}
.ls84{letter-spacing:0.178305px;}
.lsb5{letter-spacing:0.178761px;}
.ls40{letter-spacing:0.180360px;}
.ls3a{letter-spacing:0.181944px;}
.ls4f{letter-spacing:0.182765px;}
.ls13{letter-spacing:0.191520px;}
.lse4{letter-spacing:0.227981px;}
.lse7{letter-spacing:0.284976px;}
.lseb{letter-spacing:0.313474px;}
.lse6{letter-spacing:0.347671px;}
.lse8{letter-spacing:0.364769px;}
.lsca{letter-spacing:0.387314px;}
.lsd6{letter-spacing:0.407177px;}
.lsc1{letter-spacing:0.451867px;}
.lsf4{letter-spacing:0.489401px;}
.ls9e{letter-spacing:0.669725px;}
.ls9f{letter-spacing:0.675725px;}
.ls5{letter-spacing:1.275394px;}
.ls1{letter-spacing:1.861130px;}
.ls7b{letter-spacing:3.596130px;}
.ls34{letter-spacing:11.621196px;}
.ls4{letter-spacing:11.954850px;}
.lsec{letter-spacing:13.239451px;}
.ls10{letter-spacing:14.166817px;}
.lsc{letter-spacing:14.645022px;}
.ls9{letter-spacing:14.764573px;}
.ls7{letter-spacing:14.884124px;}
.lsb{letter-spacing:14.943900px;}
.ls6{letter-spacing:15.003676px;}
.lsf{letter-spacing:15.123227px;}
.lsa{letter-spacing:15.183002px;}
.lsd{letter-spacing:15.302554px;}
.ls11{letter-spacing:15.362329px;}
.ls9b{letter-spacing:16.616373px;}
.ls8{letter-spacing:18.530436px;}
.lsaa{letter-spacing:21.620092px;}
.lsa9{letter-spacing:22.590683px;}
.ls6b{letter-spacing:22.894055px;}
.lsa6{letter-spacing:22.916106px;}
.lsa5{letter-spacing:23.889357px;}
.ls3{letter-spacing:28.453654px;}
.ls9c{letter-spacing:59.307290px;}
.ls8e{letter-spacing:64.952675px;}
.lse{letter-spacing:94.215000px;}
.lse0{letter-spacing:95.866200px;}
.ls8c{letter-spacing:166.258623px;}
.lsa4{letter-spacing:226.404983px;}
.ls8b{letter-spacing:250.929000px;}
.ls8a{letter-spacing:251.281800px;}
.lse3{letter-spacing:251.342143px;}
.lsf7{letter-spacing:321.272317px;}
.ls86{letter-spacing:410.749940px;}
.ls8d{letter-spacing:831.993105px;}
.ls1e{letter-spacing:947.629476px;}
.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;}
}
.ws192{word-spacing:-74.218158px;}
.ws191{word-spacing:-61.164487px;}
.wsd7{word-spacing:-60.120000px;}
.ws18f{word-spacing:-58.917600px;}
.ws190{word-spacing:-25.881856px;}
.ws8b{word-spacing:-15.750000px;}
.wsd8{word-spacing:-15.017976px;}
.ws61{word-spacing:-14.943900px;}
.ws1b4{word-spacing:-13.500000px;}
.ws7f{word-spacing:-13.449600px;}
.ws1ad{word-spacing:-12.448684px;}
.ws8a{word-spacing:-12.161520px;}
.wsd6{word-spacing:-12.151944px;}
.ws13{word-spacing:-11.955150px;}
.ws18e{word-spacing:-11.908905px;}
.wsfc{word-spacing:-11.553444px;}
.ws1ac{word-spacing:-10.936750px;}
.ws11{word-spacing:-10.460700px;}
.wsd9{word-spacing:-9.000000px;}
.ws193{word-spacing:-8.962100px;}
.ws1b3{word-spacing:-8.280000px;}
.ws94{word-spacing:-3.559104px;}
.ws21{word-spacing:-3.526760px;}
.ws4c{word-spacing:-2.809453px;}
.ws165{word-spacing:-2.783556px;}
.ws9c{word-spacing:-2.777544px;}
.ws9a{word-spacing:-2.771532px;}
.ws9b{word-spacing:-2.759508px;}
.ws138{word-spacing:-2.732400px;}
.ws166{word-spacing:-2.729448px;}
.ws9e{word-spacing:-2.723436px;}
.ws136{word-spacing:-2.710800px;}
.ws137{word-spacing:-2.694600px;}
.ws120{word-spacing:-2.689902px;}
.ws135{word-spacing:-2.678400px;}
.ws9f{word-spacing:-2.651292px;}
.ws18a{word-spacing:-2.570351px;}
.ws16a{word-spacing:-2.450800px;}
.ws91{word-spacing:-2.392776px;}
.ws90{word-spacing:-2.368728px;}
.ws101{word-spacing:-2.267460px;}
.ws100{word-spacing:-2.246940px;}
.ws13f{word-spacing:-2.116224px;}
.ws69{word-spacing:-2.092146px;}
.ws7a{word-spacing:-2.032370px;}
.ws10b{word-spacing:-2.010413px;}
.ws173{word-spacing:-1.976144px;}
.ws2{word-spacing:-1.908367px;}
.ws54{word-spacing:-1.853044px;}
.ws53{word-spacing:-1.793268px;}
.wsec{word-spacing:-1.761516px;}
.wsbc{word-spacing:-1.733492px;}
.ws12e{word-spacing:-1.725444px;}
.ws1f3{word-spacing:-1.667750px;}
.ws15f{word-spacing:-1.657800px;}
.ws84{word-spacing:-1.613941px;}
.ws174{word-spacing:-1.610615px;}
.ws160{word-spacing:-1.582200px;}
.ws38{word-spacing:-1.374839px;}
.ws1{word-spacing:-1.322630px;}
.ws72{word-spacing:-1.315063px;}
.ws125{word-spacing:-1.310616px;}
.ws10d{word-spacing:-1.302199px;}
.ws1e2{word-spacing:-1.285200px;}
.ws1d6{word-spacing:-1.279800px;}
.ws1e3{word-spacing:-1.274400px;}
.ws10e{word-spacing:-1.262219px;}
.ws1e4{word-spacing:-1.258200px;}
.ws2a{word-spacing:-1.255288px;}
.ws1da{word-spacing:-1.252800px;}
.ws1d3{word-spacing:-1.247400px;}
.ws126{word-spacing:-1.238472px;}
.ws1d9{word-spacing:-1.236600px;}
.ws1db{word-spacing:-1.225800px;}
.ws1d4{word-spacing:-1.220400px;}
.ws16d{word-spacing:-1.205550px;}
.ws1dc{word-spacing:-1.198800px;}
.ws1d5{word-spacing:-1.150200px;}
.ws5a{word-spacing:-1.135736px;}
.ws40{word-spacing:-1.075961px;}
.ws16e{word-spacing:-1.067040px;}
.ws140{word-spacing:-0.979956px;}
.wse7{word-spacing:-0.973944px;}
.ws178{word-spacing:-0.936670px;}
.ws179{word-spacing:-0.925247px;}
.ws103{word-spacing:-0.902880px;}
.ws86{word-spacing:-0.896634px;}
.ws102{word-spacing:-0.892620px;}
.wse8{word-spacing:-0.883764px;}
.ws3a{word-spacing:-0.717307px;}
.ws13e{word-spacing:-0.673344px;}
.ws10c{word-spacing:-0.639677px;}
.ws96{word-spacing:-0.607212px;}
.ws182{word-spacing:-0.599697px;}
.ws2c{word-spacing:-0.597756px;}
.ws17a{word-spacing:-0.588274px;}
.wsb1{word-spacing:-0.567000px;}
.ws56{word-spacing:-0.537980px;}
.ws1b6{word-spacing:-0.430387px;}
.ws14f{word-spacing:-0.418429px;}
.ws198{word-spacing:-0.394748px;}
.ws3e{word-spacing:-0.358654px;}
.wsa6{word-spacing:-0.342684px;}
.ws1f1{word-spacing:-0.322790px;}
.ws127{word-spacing:-0.306612px;}
.ws3f{word-spacing:-0.298878px;}
.ws148{word-spacing:-0.288576px;}
.ws19{word-spacing:-0.268992px;}
.wsf6{word-spacing:-0.240480px;}
.ws26{word-spacing:-0.239102px;}
.ws167{word-spacing:-0.222444px;}
.ws1a{word-spacing:-0.215194px;}
.ws168{word-spacing:-0.210420px;}
.ws1b2{word-spacing:-0.183967px;}
.ws25{word-spacing:-0.179327px;}
.wsfd{word-spacing:-0.161395px;}
.ws22{word-spacing:-0.119551px;}
.ws17{word-spacing:-0.107597px;}
.ws8d{word-spacing:-0.090972px;}
.wsfe{word-spacing:-0.086423px;}
.wse0{word-spacing:-0.086184px;}
.ws194{word-spacing:-0.084460px;}
.ws1ae{word-spacing:-0.077566px;}
.ws24{word-spacing:-0.059776px;}
.ws15{word-spacing:-0.053798px;}
.ws12{word-spacing:-0.047821px;}
.wsac{word-spacing:-0.036072px;}
.ws81{word-spacing:-0.009686px;}
.wsae{word-spacing:-0.006012px;}
.ws1f2{word-spacing:-0.005635px;}
.ws7e{word-spacing:-0.005520px;}
.ws5{word-spacing:-0.004048px;}
.ws1ba{word-spacing:-0.003859px;}
.ws1bc{word-spacing:-0.003302px;}
.ws83{word-spacing:-0.002755px;}
.ws1f5{word-spacing:-0.001747px;}
.ws0{word-spacing:0.000000px;}
.ws29{word-spacing:0.001610px;}
.wsab{word-spacing:0.006012px;}
.wsaf{word-spacing:0.030060px;}
.ws88{word-spacing:0.047821px;}
.ws18{word-spacing:0.053798px;}
.ws9d{word-spacing:0.054108px;}
.ws1f{word-spacing:0.059776px;}
.wsaa{word-spacing:0.066132px;}
.ws116{word-spacing:0.079960px;}
.ws89{word-spacing:0.095641px;}
.ws1dd{word-spacing:0.102600px;}
.ws82{word-spacing:0.107597px;}
.wsf4{word-spacing:0.108000px;}
.ws171{word-spacing:0.112860px;}
.ws13b{word-spacing:0.113400px;}
.wsa9{word-spacing:0.114228px;}
.ws1e1{word-spacing:0.118800px;}
.ws1b1{word-spacing:0.119038px;}
.ws23{word-spacing:0.119551px;}
.ws176{word-spacing:0.119939px;}
.ws196{word-spacing:0.123727px;}
.wsb3{word-spacing:0.124200px;}
.wsba{word-spacing:0.129600px;}
.ws142{word-spacing:0.132264px;}
.ws1e5{word-spacing:0.140400px;}
.ws1b0{word-spacing:0.140681px;}
.ws1eb{word-spacing:0.145800px;}
.wsb2{word-spacing:0.151200px;}
.ws172{word-spacing:0.153900px;}
.ws175{word-spacing:0.154208px;}
.wse5{word-spacing:0.156600px;}
.ws11a{word-spacing:0.161395px;}
.wsb9{word-spacing:0.162000px;}
.wse6{word-spacing:0.167400px;}
.ws159{word-spacing:0.168336px;}
.ws161{word-spacing:0.172800px;}
.wsa7{word-spacing:0.178200px;}
.ws31{word-spacing:0.179327px;}
.ws1ab{word-spacing:0.180360px;}
.wsf2{word-spacing:0.183600px;}
.ws1d7{word-spacing:0.189000px;}
.ws1cd{word-spacing:0.194400px;}
.wsf3{word-spacing:0.199800px;}
.ws104{word-spacing:0.200070px;}
.wsb0{word-spacing:0.204408px;}
.ws7{word-spacing:0.209214px;}
.ws14a{word-spacing:0.210420px;}
.ws1bb{word-spacing:0.215194px;}
.ws1e6{word-spacing:0.221400px;}
.wsad{word-spacing:0.222444px;}
.ws158{word-spacing:0.228456px;}
.ws1e{word-spacing:0.239102px;}
.ws1ed{word-spacing:0.268992px;}
.ws1ea{word-spacing:0.275400px;}
.wsa8{word-spacing:0.291600px;}
.ws9{word-spacing:0.292900px;}
.ws28{word-spacing:0.298878px;}
.ws34{word-spacing:0.358654px;}
.wsa4{word-spacing:0.414828px;}
.ws186{word-spacing:0.418429px;}
.wsa3{word-spacing:0.432864px;}
.ws1d8{word-spacing:0.448200px;}
.ws14c{word-spacing:0.450900px;}
.wsa2{word-spacing:0.456912px;}
.ws187{word-spacing:0.478205px;}
.ws141{word-spacing:0.498996px;}
.wsf8{word-spacing:0.526027px;}
.ws14d{word-spacing:0.529056px;}
.ws75{word-spacing:0.537980px;}
.wsd4{word-spacing:0.573847px;}
.ws1ef{word-spacing:0.591782px;}
.ws20{word-spacing:0.597756px;}
.ws30{word-spacing:0.657532px;}
.ws42{word-spacing:0.717307px;}
.ws18b{word-spacing:0.753178px;}
.ws17e{word-spacing:0.765328px;}
.wsf9{word-spacing:0.777083px;}
.ws107{word-spacing:0.782462px;}
.ws17d{word-spacing:0.793885px;}
.ws1b7{word-spacing:0.806976px;}
.ws60{word-spacing:0.836858px;}
.ws162{word-spacing:0.859716px;}
.ws6e{word-spacing:0.896634px;}
.ws18d{word-spacing:0.914573px;}
.wsdb{word-spacing:0.968371px;}
.ws2b{word-spacing:1.016185px;}
.ws68{word-spacing:1.075961px;}
.ws78{word-spacing:1.135736px;}
.ws152{word-spacing:1.166328px;}
.ws5f{word-spacing:1.195512px;}
.wsee{word-spacing:1.208412px;}
.wsda{word-spacing:1.237363px;}
.ws45{word-spacing:1.255288px;}
.wsef{word-spacing:1.262520px;}
.ws5d{word-spacing:1.315063px;}
.ws58{word-spacing:1.374839px;}
.ws115{word-spacing:1.427850px;}
.ws37{word-spacing:1.434614px;}
.ws13d{word-spacing:1.442880px;}
.ws1b9{word-spacing:1.452557px;}
.ws46{word-spacing:1.494390px;}
.wsa5{word-spacing:1.503000px;}
.ws157{word-spacing:1.515024px;}
.ws13c{word-spacing:1.527048px;}
.ws47{word-spacing:1.554166px;}
.ws133{word-spacing:1.599192px;}
.ws11f{word-spacing:1.613941px;}
.ws153{word-spacing:1.659312px;}
.ws33{word-spacing:1.673717px;}
.ws169{word-spacing:1.733492px;}
.ws5c{word-spacing:1.793268px;}
.ws10f{word-spacing:1.827648px;}
.ws3c{word-spacing:1.853044px;}
.ws62{word-spacing:1.912819px;}
.ws1bf{word-spacing:1.922400px;}
.ws143{word-spacing:1.929852px;}
.ws1c0{word-spacing:1.944000px;}
.ws14b{word-spacing:1.971936px;}
.ws8{word-spacing:2.008454px;}
.ws65{word-spacing:2.032370px;}
.ws11b{word-spacing:2.044339px;}
.ws2d{word-spacing:2.092146px;}
.ws4d{word-spacing:2.151922px;}
.wsf1{word-spacing:2.200392px;}
.ws1b8{word-spacing:2.205734px;}
.ws15a{word-spacing:2.206404px;}
.wsf0{word-spacing:2.236464px;}
.ws2f{word-spacing:2.271473px;}
.ws1be{word-spacing:2.300400px;}
.wseb{word-spacing:2.302596px;}
.ws1bd{word-spacing:2.305800px;}
.ws3b{word-spacing:2.331248px;}
.ws12d{word-spacing:2.338668px;}
.ws14e{word-spacing:2.367130px;}
.ws43{word-spacing:2.391024px;}
.ws184{word-spacing:2.398788px;}
.ws49{word-spacing:2.450800px;}
.ws183{word-spacing:2.484459px;}
.ws4{word-spacing:2.510568px;}
.ws5e{word-spacing:2.510575px;}
.ws32{word-spacing:2.570351px;}
.ws95{word-spacing:2.579148px;}
.ws144{word-spacing:2.615220px;}
.wsb5{word-spacing:2.619000px;}
.ws123{word-spacing:2.627244px;}
.ws52{word-spacing:2.630126px;}
.ws154{word-spacing:2.639268px;}
.wsb4{word-spacing:2.667600px;}
.wsd5{word-spacing:2.689902px;}
.ws12c{word-spacing:2.693376px;}
.wsb6{word-spacing:2.705400px;}
.ws121{word-spacing:2.721600px;}
.ws124{word-spacing:2.747484px;}
.ws41{word-spacing:2.749678px;}
.ws122{word-spacing:2.770200px;}
.ws17b{word-spacing:2.827143px;}
.ws105{word-spacing:2.832854px;}
.ws106{word-spacing:2.844277px;}
.ws14{word-spacing:2.869236px;}
.ws17c{word-spacing:2.929948px;}
.wsea{word-spacing:2.993976px;}
.ws97{word-spacing:2.999988px;}
.ws1cf{word-spacing:3.002400px;}
.ws3d{word-spacing:3.048556px;}
.ws1ce{word-spacing:3.051000px;}
.ws8c{word-spacing:3.066509px;}
.ws145{word-spacing:3.084156px;}
.wse9{word-spacing:3.102192px;}
.ws177{word-spacing:3.124136px;}
.ws16b{word-spacing:3.168107px;}
.ws114{word-spacing:3.181250px;}
.ws1b{word-spacing:3.219667px;}
.ws16c{word-spacing:3.227882px;}
.ws87{word-spacing:3.227904px;}
.ws134{word-spacing:3.282552px;}
.ws151{word-spacing:3.287658px;}
.ws155{word-spacing:3.330648px;}
.ws1ee{word-spacing:3.389299px;}
.ws1e9{word-spacing:3.402000px;}
.ws39{word-spacing:3.407209px;}
.ws156{word-spacing:3.408804px;}
.ws1e7{word-spacing:3.423600px;}
.ws1e8{word-spacing:3.429000px;}
.ws17f{word-spacing:3.466820px;}
.ws4a{word-spacing:3.466985px;}
.ws185{word-spacing:3.518222px;}
.ws66{word-spacing:3.526760px;}
.ws170{word-spacing:3.539700px;}
.ws1c{word-spacing:3.586536px;}
.ws16f{word-spacing:3.591000px;}
.ws11e{word-spacing:3.646312px;}
.ws6f{word-spacing:3.706087px;}
.wse2{word-spacing:3.753000px;}
.ws6a{word-spacing:3.765863px;}
.ws1ec{word-spacing:3.765888px;}
.wse4{word-spacing:3.769200px;}
.ws12f{word-spacing:3.769524px;}
.ws130{word-spacing:3.781548px;}
.wse3{word-spacing:3.785400px;}
.ws51{word-spacing:3.825638px;}
.ws50{word-spacing:3.885414px;}
.ws113{word-spacing:3.889463px;}
.ws112{word-spacing:3.906598px;}
.ws188{word-spacing:3.945190px;}
.ws7b{word-spacing:4.004965px;}
.wsa0{word-spacing:4.040064px;}
.wsfa{word-spacing:4.064741px;}
.wsa1{word-spacing:4.106196px;}
.ws6c{word-spacing:4.124516px;}
.ws119{word-spacing:4.303843px;}
.ws27{word-spacing:4.363619px;}
.ws5b{word-spacing:4.423394px;}
.ws1cc{word-spacing:4.455000px;}
.ws1cb{word-spacing:4.471200px;}
.ws1de{word-spacing:4.476600px;}
.ws1df{word-spacing:4.487400px;}
.ws1e0{word-spacing:4.509000px;}
.ws4f{word-spacing:4.602721px;}
.ws1f0{word-spacing:4.626662px;}
.ws63{word-spacing:4.662497px;}
.ws70{word-spacing:4.722272px;}
.ws8f{word-spacing:4.749480px;}
.ws164{word-spacing:4.755492px;}
.ws16{word-spacing:4.788058px;}
.ws163{word-spacing:4.791564px;}
.ws139{word-spacing:4.800600px;}
.ws59{word-spacing:4.841824px;}
.ws13a{word-spacing:4.849200px;}
.ws4b{word-spacing:5.021150px;}
.ws149{word-spacing:5.074128px;}
.wsfb{word-spacing:5.140702px;}
.ws35{word-spacing:5.200477px;}
.ws44{word-spacing:5.260253px;}
.ws73{word-spacing:5.320028px;}
.ws67{word-spacing:5.439580px;}
.ws74{word-spacing:5.499355px;}
.ws1d{word-spacing:5.559131px;}
.ws15d{word-spacing:5.562000px;}
.ws15e{word-spacing:5.567400px;}
.ws15c{word-spacing:5.572800px;}
.ws189{word-spacing:5.678682px;}
.ws48{word-spacing:5.738458px;}
.ws71{word-spacing:5.798233px;}
.ws11d{word-spacing:5.858009px;}
.ws1b5{word-spacing:5.864026px;}
.ws6d{word-spacing:5.917784px;}
.wsf{word-spacing:6.067206px;}
.ws10{word-spacing:6.150892px;}
.ws15b{word-spacing:6.186348px;}
.ws132{word-spacing:6.198372px;}
.ws85{word-spacing:6.216662px;}
.ws1c8{word-spacing:6.269400px;}
.ws1c7{word-spacing:6.274800px;}
.ws131{word-spacing:6.294564px;}
.wsb7{word-spacing:6.296400px;}
.wsb8{word-spacing:6.307200px;}
.ws79{word-spacing:6.336214px;}
.ws146{word-spacing:6.336648px;}
.ws1f4{word-spacing:6.402010px;}
.ws147{word-spacing:6.486948px;}
.ws92{word-spacing:6.547068px;}
.ws4e{word-spacing:6.575316px;}
.wsdc{word-spacing:6.617203px;}
.ws181{word-spacing:6.705184px;}
.ws180{word-spacing:6.750875px;}
.ws55{word-spacing:6.754643px;}
.ws64{word-spacing:6.814418px;}
.ws150{word-spacing:6.933970px;}
.ws93{word-spacing:6.955884px;}
.ws117{word-spacing:6.993745px;}
.ws18c{word-spacing:7.047590px;}
.ws76{word-spacing:7.053521px;}
.ws10a{word-spacing:7.259189px;}
.wsed{word-spacing:7.262496px;}
.ws108{word-spacing:7.322015px;}
.ws77{word-spacing:7.352399px;}
.ws109{word-spacing:7.379129px;}
.ws36{word-spacing:7.412174px;}
.ws11c{word-spacing:7.711052px;}
.ws118{word-spacing:7.890379px;}
.ws111{word-spacing:7.927423px;}
.ws2e{word-spacing:7.950155px;}
.ws128{word-spacing:7.971912px;}
.ws110{word-spacing:7.973114px;}
.ws129{word-spacing:8.038044px;}
.wsbb{word-spacing:8.069706px;}
.ws57{word-spacing:8.189257px;}
.ws6b{word-spacing:8.428360px;}
.wsd{word-spacing:8.661460px;}
.ws1c9{word-spacing:8.796600px;}
.ws1ca{word-spacing:8.812800px;}
.ws99{word-spacing:9.126216px;}
.ws1c1{word-spacing:9.131400px;}
.ws1c3{word-spacing:9.163800px;}
.ws98{word-spacing:9.180324px;}
.ws1c2{word-spacing:9.212400px;}
.ws1d2{word-spacing:9.876600px;}
.ws1d1{word-spacing:9.919800px;}
.ws1d0{word-spacing:9.930600px;}
.ws1af{word-spacing:10.454119px;}
.wsff{word-spacing:11.034904px;}
.ws1c5{word-spacing:11.313000px;}
.ws1c6{word-spacing:11.318400px;}
.ws195{word-spacing:11.383374px;}
.ws1c4{word-spacing:11.399400px;}
.wse1{word-spacing:11.615688px;}
.ws8e{word-spacing:11.620476px;}
.wsf5{word-spacing:12.276504px;}
.ws6{word-spacing:15.481836px;}
.ws3{word-spacing:15.483541px;}
.wsa{word-spacing:16.142252px;}
.wsb{word-spacing:16.151321px;}
.ws12a{word-spacing:17.001936px;}
.ws12b{word-spacing:17.031996px;}
.wsc{word-spacing:17.699504px;}
.wse{word-spacing:27.448877px;}
.ws80{word-spacing:80.091600px;}
.ws7d{word-spacing:82.785600px;}
.ws197{word-spacing:84.352328px;}
.ws199{word-spacing:91.134490px;}
.ws19c{word-spacing:163.542000px;}
.ws19f{word-spacing:166.811155px;}
.ws1a7{word-spacing:166.990234px;}
.ws19d{word-spacing:167.697984px;}
.wsde{word-spacing:167.896963px;}
.wsdf{word-spacing:174.001200px;}
.ws1a4{word-spacing:174.342000px;}
.ws1a2{word-spacing:185.142000px;}
.ws1a1{word-spacing:188.617190px;}
.ws1a5{word-spacing:192.759667px;}
.wsf7{word-spacing:194.986752px;}
.wsdd{word-spacing:198.049200px;}
.ws19b{word-spacing:200.081818px;}
.ws1a8{word-spacing:200.084218px;}
.ws19a{word-spacing:213.887155px;}
.ws1aa{word-spacing:214.063834px;}
.ws19e{word-spacing:214.332826px;}
.ws1a6{word-spacing:214.386624px;}
.ws1a9{word-spacing:214.748410px;}
.ws1a3{word-spacing:236.334931px;}
.ws1a0{word-spacing:247.157818px;}
.wsc0{word-spacing:255.811392px;}
.wscb{word-spacing:261.944410px;}
.wsd3{word-spacing:294.600038px;}
.wsbd{word-spacing:297.720346px;}
.wsd0{word-spacing:298.043136px;}
.wsd2{word-spacing:301.647629px;}
.wscf{word-spacing:303.100186px;}
.wsc4{word-spacing:305.467315px;}
.wsca{word-spacing:307.135066px;}
.wsc3{word-spacing:308.372429px;}
.wscc{word-spacing:309.986381px;}
.wsbe{word-spacing:315.473818px;}
.wsc7{word-spacing:318.109939px;}
.wsc6{word-spacing:320.638464px;}
.wsc5{word-spacing:321.660634px;}
.wscd{word-spacing:322.467610px;}
.wsc9{word-spacing:324.458150px;}
.wsc1{word-spacing:325.587917px;}
.wsc2{word-spacing:328.600627px;}
.wsbf{word-spacing:330.375974px;}
.wsd1{word-spacing:334.787443px;}
.wsc8{word-spacing:342.695808px;}
.wsce{word-spacing:355.822618px;}
.ws7c{word-spacing:1282.984243px;}
._d5{margin-left:-120.986459px;}
._d6{margin-left:-70.216426px;}
._a3{margin-left:-59.750065px;}
._a2{margin-left:-58.684125px;}
._a7{margin-left:-57.495191px;}
._d7{margin-left:-32.042710px;}
._a{margin-left:-22.140938px;}
._a1{margin-left:-17.852000px;}
._9f{margin-left:-16.755765px;}
._a0{margin-left:-15.558632px;}
._93{margin-left:-14.370003px;}
._94{margin-left:-11.474133px;}
._95{margin-left:-10.331271px;}
._92{margin-left:-8.758171px;}
._18{margin-left:-7.643710px;}
._1{margin-left:-6.635092px;}
._1b{margin-left:-5.439580px;}
._0{margin-left:-4.423394px;}
._4{margin-left:-2.522510px;}
._2{margin-left:-1.322630px;}
._3{width:1.091170px;}
._7{width:2.301354px;}
._9{width:3.969110px;}
._a6{width:6.649452px;}
._a4{width:8.744261px;}
._5{width:11.034557px;}
._6{width:12.971268px;}
._10{width:14.822886px;}
._d{width:16.462310px;}
._e{width:18.034213px;}
._b{width:19.385312px;}
._c{width:20.389594px;}
._f{width:21.459440px;}
._15{width:22.812024px;}
._90{width:23.850464px;}
._13{width:25.105752px;}
._14{width:27.018571px;}
._1e{width:28.333634px;}
._17{width:29.409595px;}
._19{width:30.605107px;}
._8{width:32.637384px;}
._1a{width:33.960108px;}
._16{width:36.224014px;}
._1f{width:37.718404px;}
._1c{width:39.877892px;}
._8f{width:42.859105px;}
._1d{width:44.413271px;}
._a9{width:45.761646px;}
._5a{width:47.055924px;}
._a5{width:48.487994px;}
._5b{width:49.779360px;}
._a8{width:51.341435px;}
._59{width:55.695168px;}
._b7{width:65.528195px;}
._aa{width:67.338742px;}
._b9{width:69.071079px;}
._ca{width:70.947586px;}
._ab{width:71.975583px;}
._b8{width:81.753144px;}
._71{width:83.010931px;}
._bb{width:84.677865px;}
._5c{width:91.381159px;}
._72{width:95.446195px;}
._70{width:103.077734px;}
._6d{width:106.704550px;}
._d1{width:113.675048px;}
._6e{width:123.198336px;}
._ad{width:124.704691px;}
._9b{width:127.120103px;}
._6f{width:129.223757px;}
._ac{width:139.431108px;}
._9a{width:141.937703px;}
._cf{width:144.180757px;}
._d4{width:145.250389px;}
._9d{width:151.758191px;}
._ce{width:153.174600px;}
._97{width:155.868310px;}
._c6{width:157.774347px;}
._b0{width:161.233805px;}
._cd{width:162.658943px;}
._9e{width:165.901714px;}
._96{width:169.288029px;}
._98{width:170.685910px;}
._c7{width:178.059593px;}
._c8{width:182.364935px;}
._99{width:184.952914px;}
._8a{width:188.130661px;}
._8c{width:189.247408px;}
._89{width:190.386143px;}
._8d{width:191.392545px;}
._c1{width:192.511425px;}
._8b{width:193.900534px;}
._65{width:196.405128px;}
._61{width:198.178200px;}
._5f{width:200.338200px;}
._b6{width:201.621080px;}
._ae{width:202.981363px;}
._36{width:205.133299px;}
._60{width:206.458200px;}
._b4{width:209.371459px;}
._7b{width:211.936109px;}
._82{width:213.575846px;}
._be{width:214.796040px;}
._64{width:215.818560px;}
._37{width:217.130342px;}
._35{width:218.636698px;}
._86{width:220.110058px;}
._9c{width:222.194710px;}
._73{width:223.254470px;}
._58{width:224.638380px;}
._d2{width:225.765253px;}
._83{width:226.864627px;}
._88{width:228.033815px;}
._7e{width:230.972611px;}
._7a{width:232.734780px;}
._74{width:233.776440px;}
._79{width:235.711930px;}
._ba{width:238.210472px;}
._5e{width:239.310720px;}
._77{width:240.983616px;}
._62{width:242.817600px;}
._5d{width:244.451160px;}
._7d{width:246.170707px;}
._7f{width:247.171248px;}
._81{width:248.972112px;}
._c9{width:250.000772px;}
._78{width:251.095814px;}
._68{width:253.095660px;}
._75{width:254.704800px;}
._67{width:256.378670px;}
._63{width:257.531112px;}
._85{width:260.267069px;}
._34{width:262.697587px;}
._c4{width:264.824411px;}
._6a{width:266.500440px;}
._80{width:268.175798px;}
._3f{width:269.615251px;}
._69{width:270.969264px;}
._6c{width:273.103272px;}
._4c{width:275.394010px;}
._8e{width:276.489768px;}
._66{width:277.717824px;}
._bf{width:279.720047px;}
._84{width:281.331216px;}
._bc{width:282.813597px;}
._c0{width:284.367674px;}
._bd{width:287.820147px;}
._cc{width:290.354170px;}
._6b{width:293.802264px;}
._4b{width:295.568410px;}
._76{width:297.227160px;}
._7c{width:298.337822px;}
._d3{width:301.519145px;}
._3e{width:302.938790px;}
._c2{width:304.677002px;}
._c5{width:305.972068px;}
._c3{width:310.265632px;}
._53{width:311.492736px;}
._d0{width:313.530595px;}
._20{width:315.162953px;}
._54{width:316.388390px;}
._4a{width:321.660634px;}
._51{width:323.220787px;}
._cb{width:326.210551px;}
._55{width:328.224038px;}
._52{width:331.667136px;}
._43{width:334.088064px;}
._4e{width:335.648218px;}
._48{width:336.885581px;}
._3b{width:339.037517px;}
._49{width:340.705267px;}
._4d{width:341.835034px;}
._3d{width:343.825574px;}
._38{width:344.847744px;}
._45{width:350.335181px;}
._46{width:351.680141px;}
._41{width:355.446029px;}
._47{width:358.028352px;}
._39{width:362.547418px;}
._42{width:367.765862px;}
._50{width:369.272218px;}
._3a{width:372.661517px;}
._40{width:375.728026px;}
._3c{width:377.449574px;}
._44{width:383.959181px;}
._4f{width:389.446618px;}
._d8{width:391.753945px;}
._27{width:403.057613px;}
._21{width:459.707328px;}
._2a{width:463.218588px;}
._23{width:490.802803px;}
._22{width:515.119680px;}
._af{width:531.689587px;}
._b3{width:554.814346px;}
._25{width:558.427392px;}
._b2{width:576.387504px;}
._b1{width:587.915798px;}
._28{width:603.940838px;}
._26{width:608.567501px;}
._24{width:644.289638px;}
._32{width:653.197769px;}
._2b{width:689.441590px;}
._2c{width:690.652548px;}
._30{width:691.710660px;}
._2d{width:723.914388px;}
._2f{width:826.487676px;}
._33{width:850.725523px;}
._31{width:856.178398px;}
._2e{width:921.591494px;}
._11{width:1107.046890px;}
._87{width:2083.868312px;}
._91{width:2148.750309px;}
._57{width:2192.602356px;}
._29{width:2217.318012px;}
._56{width:2624.961300px;}
._12{width:2648.871300px;}
._b5{width:3304.984032px;}
.fca{color:rgb(28,29,30);}
.fc9{color:rgb(154,51,0);}
.fc7{color:rgb(154,51,0);}
.fc4{color:transparent;}
.fc8{color:rgb(51,51,154);}
.fc6{color:rgb(51,51,154);}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(144,31,85);}
.fc5{color:rgb(10,10,10);}
.fc0{color:rgb(0,0,0);}
.fs1f{font-size:33.120000px;}
.fs14{font-size:36.000000px;}
.fs1a{font-size:40.997712px;}
.fsa{font-size:41.842800px;}
.fs9{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs1b{font-size:43.092000px;}
.fsd{font-size:45.429600px;}
.fs15{font-size:45.486000px;}
.fs18{font-size:46.922400px;}
.fs8{font-size:47.236800px;}
.fsb{font-size:47.820600px;}
.fsf{font-size:47.880000px;}
.fs1e{font-size:49.655700px;}
.fs17{font-size:51.300000px;}
.fsc{font-size:53.798400px;}
.fs11{font-size:54.000000px;}
.fs1c{font-size:54.108000px;}
.fs1d{font-size:55.039500px;}
.fse{font-size:56.058000px;}
.fs21{font-size:56.995200px;}
.fs16{font-size:57.114000px;}
.fs19{font-size:58.917600px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs10{font-size:60.120000px;}
.fs13{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs22{font-size:63.076200px;}
.fs12{font-size:65.880000px;}
.fs20{font-size:69.914400px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.fs5{font-size:151.185600px;}
.y34d{bottom:-722.374050px;}
.y2e9{bottom:-715.445619px;}
.y1c7{bottom:-626.186550px;}
.y1e2{bottom:-565.346550px;}
.y37f{bottom:-560.825550px;}
.y1e1{bottom:-544.286550px;}
.y1e0{bottom:-523.316550px;}
.y309{bottom:-503.765619px;}
.y1df{bottom:-502.346550px;}
.y1de{bottom:-481.376550px;}
.y308{bottom:-480.304419px;}
.y270{bottom:-475.709550px;}
.y399{bottom:-473.885550px;}
.y1dd{bottom:-460.406400px;}
.y305{bottom:-460.106619px;}
.y307{bottom:-459.753819px;}
.y398{bottom:-456.605550px;}
.y306{bottom:-439.908819px;}
.y1dc{bottom:-439.436550px;}
.y397{bottom:-439.325550px;}
.y396{bottom:-421.955550px;}
.y304{bottom:-419.358219px;}
.y1db{bottom:-418.376550px;}
.y395{bottom:-404.676000px;}
.y237{bottom:-400.765050px;}
.y301{bottom:-399.160419px;}
.y303{bottom:-398.807619px;}
.y1da{bottom:-397.406550px;}
.y394{bottom:-387.396000px;}
.y302{bottom:-378.962619px;}
.y1d9{bottom:-376.436550px;}
.y393{bottom:-370.116000px;}
.y300{bottom:-358.323672px;}
.y1d8{bottom:-355.466550px;}
.y392{bottom:-352.836000px;}
.y29a{bottom:-345.408173px;}
.y258{bottom:-339.736896px;}
.y2fd{bottom:-338.125872px;}
.y2ff{bottom:-337.773219px;}
.y391{bottom:-335.465550px;}
.y1d7{bottom:-334.496550px;}
.y257{bottom:-320.477454px;}
.y390{bottom:-318.185550px;}
.y2fe{bottom:-317.928219px;}
.y1d6{bottom:-313.436550px;}
.y256{bottom:-301.308192px;}
.y38f{bottom:-300.905550px;}
.y2fc{bottom:-297.377472px;}
.y1d5{bottom:-292.466550px;}
.y2ab{bottom:-284.097986px;}
.y38e{bottom:-283.625550px;}
.y1d4{bottom:-282.386550px;}
.y255{bottom:-282.048750px;}
.y2f9{bottom:-277.179819px;}
.y2fb{bottom:-276.826872px;}
.y2aa{bottom:-265.887187px;}
.y254{bottom:-262.879488px;}
.y38d{bottom:-261.485550px;}
.y2fa{bottom:-256.981872px;}
.y2a9{bottom:-247.590718px;}
.y253{bottom:-243.620046px;}
.y1d3{bottom:-242.246400px;}
.y2f8{bottom:-236.431419px;}
.y2a8{bottom:-229.294248px;}
.y38c{bottom:-224.585850px;}
.y252{bottom:-224.360604px;}
.y2f5{bottom:-216.233619px;}
.y2f7{bottom:-215.880819px;}
.y2a7{bottom:-211.083449px;}
.y1d2{bottom:-206.513787px;}
.y251{bottom:-205.191342px;}
.y38b{bottom:-203.435550px;}
.y2f6{bottom:-196.035819px;}
.y2a6{bottom:-192.786979px;}
.y38a{bottom:-189.935850px;}
.y1d1{bottom:-187.254345px;}
.y250{bottom:-185.931900px;}
.y2f4{bottom:-175.485219px;}
.y2a5{bottom:-174.576180px;}
.y389{bottom:-172.655850px;}
.y1d0{bottom:-167.994903px;}
.y24f{bottom:-166.672458px;}
.y2a4{bottom:-156.279710px;}
.y388{bottom:-155.375850px;}
.y2f1{bottom:-155.287419px;}
.y2f3{bottom:-154.934619px;}
.y16f{bottom:-149.378550px;}
.y1cf{bottom:-148.825641px;}
.y24e{bottom:-147.503196px;}
.y280{bottom:-145.677696px;}
.y387{bottom:-138.005400px;}
.y2a3{bottom:-137.983240px;}
.y2f2{bottom:-135.089619px;}
.y1ce{bottom:-129.566199px;}
.y24d{bottom:-128.243754px;}
.y27f{bottom:-126.508434px;}
.y386{bottom:-120.725400px;}
.y2a2{bottom:-119.772441px;}
.y2f0{bottom:-114.539019px;}
.y1cd{bottom:-110.395434px;}
.y24c{bottom:-109.074492px;}
.y27e{bottom:-107.248992px;}
.y385{bottom:-103.445400px;}
.y2a1{bottom:-101.475971px;}
.y2ed{bottom:-94.341219px;}
.y2ef{bottom:-93.900219px;}
.y1cc{bottom:-91.135992px;}
.y24b{bottom:-89.815050px;}
.y27d{bottom:-87.989550px;}
.y2a0{bottom:-83.265173px;}
.y354{bottom:-83.180250px;}
.y384{bottom:-82.385400px;}
.y2ee{bottom:-74.143419px;}
.y1cb{bottom:-71.876550px;}
.y383{bottom:-68.795550px;}
.y24a{bottom:-53.005350px;}
.y18e{bottom:-52.179000px;}
.y27c{bottom:-51.268950px;}
.y29f{bottom:-48.295245px;}
.y2ec{bottom:-48.035884px;}
.y382{bottom:-47.735550px;}
.y213{bottom:-47.167358px;}
.y249{bottom:-35.634900px;}
.y1ca{bottom:-35.067000px;}
.y18d{bottom:-34.808550px;}
.y27b{bottom:-33.809400px;}
.y29e{bottom:-31.708673px;}
.y357{bottom:-29.720193px;}
.y381{bottom:-29.465451px;}
.y2eb{bottom:-28.102587px;}
.y248{bottom:-18.354900px;}
.y1c9{bottom:-17.696550px;}
.y18c{bottom:-17.528550px;}
.y27a{bottom:-16.529400px;}
.y29d{bottom:-15.292672px;}
.y350{bottom:-0.032250px;}
.y0{bottom:0.000000px;}
.y356{bottom:0.654685px;}
.y35f{bottom:2.673000px;}
.y31d{bottom:2.734641px;}
.y2a{bottom:3.425340px;}
.y380{bottom:3.654657px;}
.y247{bottom:4.058460px;}
.y2ea{bottom:4.266743px;}
.y231{bottom:4.309140px;}
.y1c8{bottom:4.712730px;}
.y18b{bottom:4.881450px;}
.y279{bottom:5.880600px;}
.y29c{bottom:5.997135px;}
.y326{bottom:8.501661px;}
.y37b{bottom:13.614750px;}
.y29{bottom:14.151273px;}
.y23{bottom:14.814393px;}
.y3b2{bottom:20.214450px;}
.y325{bottom:21.996058px;}
.y69{bottom:31.890000px;}
.y37a{bottom:32.325750px;}
.y324{bottom:35.490454px;}
.y3b1{bottom:43.974450px;}
.y323{bottom:48.984851px;}
.y379{bottom:51.036750px;}
.y322{bottom:62.567393px;}
.y5{bottom:66.525004px;}
.y3b0{bottom:67.734450px;}
.y378{bottom:69.666750px;}
.y321{bottom:76.061790px;}
.y3ae{bottom:85.014450px;}
.y233{bottom:87.271500px;}
.y377{bottom:88.377750px;}
.y320{bottom:89.556187px;}
.y3cf{bottom:91.372500px;}
.y4{bottom:97.125005px;}
.y26c{bottom:99.309000px;}
.y2bb{bottom:100.675500px;}
.y3af{bottom:101.394870px;}
.yd5{bottom:102.211500px;}
.y40{bottom:102.823500px;}
.y31f{bottom:103.050584px;}
.y68{bottom:103.621500px;}
.y122{bottom:104.424000px;}
.y160{bottom:105.015000px;}
.y2d7{bottom:106.246500px;}
.y232{bottom:106.504500px;}
.y10a{bottom:106.695000px;}
.y376{bottom:107.088750px;}
.y3ce{bottom:108.633000px;}
.y9f{bottom:113.253000px;}
.y2e6{bottom:115.857000px;}
.y31e{bottom:116.544981px;}
.y31b{bottom:116.548598px;}
.y26b{bottom:118.138500px;}
.y2ba{bottom:119.505000px;}
.y3ad{bottom:119.845079px;}
.y3f{bottom:120.711000px;}
.yd4{bottom:121.041000px;}
.y67{bottom:122.449500px;}
.y121{bottom:123.253500px;}
.y15f{bottom:123.844500px;}
.y2d6{bottom:125.076000px;}
.y109{bottom:125.524500px;}
.y375{bottom:125.799750px;}
.y3cd{bottom:125.893500px;}
.y210{bottom:128.934285px;}
.y31a{bottom:130.042995px;}
.y9e{bottom:132.082500px;}
.y26a{bottom:136.968000px;}
.y2b9{bottom:138.334500px;}
.y296{bottom:138.523500px;}
.y3e{bottom:138.600000px;}
.y21{bottom:139.264499px;}
.y196{bottom:139.729500px;}
.yd3{bottom:139.870500px;}
.y66{bottom:141.279000px;}
.y120{bottom:142.083000px;}
.y15e{bottom:142.672500px;}
.y3cc{bottom:143.152500px;}
.y319{bottom:143.625537px;}
.y2d5{bottom:143.905500px;}
.y108{bottom:144.354000px;}
.y374{bottom:144.510750px;}
.y3ac{bottom:147.924450px;}
.y9d{bottom:150.912000px;}
.y269{bottom:155.797500px;}
.y3d{bottom:156.487500px;}
.y318{bottom:157.119934px;}
.y2b8{bottom:157.164000px;}
.y295{bottom:157.353000px;}
.y195{bottom:158.559000px;}
.yd2{bottom:158.700000px;}
.y1f7{bottom:159.144000px;}
.y65{bottom:160.108500px;}
.y3cb{bottom:160.413000px;}
.y11f{bottom:160.912500px;}
.y15d{bottom:161.502000px;}
.y34a{bottom:161.515500px;}
.y2d4{bottom:162.735000px;}
.y373{bottom:163.140750px;}
.y107{bottom:163.183500px;}
.y9c{bottom:169.741500px;}
.y317{bottom:170.614331px;}
.y3c{bottom:174.375000px;}
.y268{bottom:174.627000px;}
.y2b7{bottom:175.993500px;}
.y294{bottom:176.182500px;}
.y194{bottom:177.388500px;}
.yd1{bottom:177.529500px;}
.y3ca{bottom:177.673500px;}
.y64{bottom:178.938000px;}
.y11e{bottom:179.742000px;}
.y15c{bottom:180.331500px;}
.y1f6{bottom:181.261500px;}
.y2d3{bottom:181.564500px;}
.y106{bottom:182.013000px;}
.y372{bottom:182.499750px;}
.y316{bottom:184.108728px;}
.y9b{bottom:188.571000px;}
.y3ab{bottom:188.784600px;}
.y3b{bottom:192.264000px;}
.y267{bottom:193.456500px;}
.y2b6{bottom:194.823000px;}
.y3c9{bottom:194.934000px;}
.y293{bottom:195.012000px;}
.y193{bottom:196.218000px;}
.yd0{bottom:196.359000px;}
.y18{bottom:196.933500px;}
.y1c2{bottom:197.538000px;}
.y315{bottom:197.603125px;}
.y63{bottom:197.767500px;}
.y11d{bottom:198.571500px;}
.y15b{bottom:199.161000px;}
.y3aa{bottom:199.224450px;}
.y2d2{bottom:200.394000px;}
.y105{bottom:200.842500px;}
.y371{bottom:201.129750px;}
.y1c3{bottom:202.962000px;}
.y1f5{bottom:203.379000px;}
.y9a{bottom:207.400500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y3a{bottom:210.151500px;}
.y314{bottom:211.185667px;}
.y3c8{bottom:212.194500px;}
.y266{bottom:212.286000px;}
.y2b5{bottom:213.652500px;}
.y292{bottom:213.841500px;}
.y192{bottom:215.047500px;}
.ycf{bottom:215.188500px;}
.y62{bottom:216.597000px;}
.y11b{bottom:217.401000px;}
.y15a{bottom:217.990500px;}
.y1c1{bottom:218.190000px;}
.y2d1{bottom:219.223500px;}
.y104{bottom:219.672000px;}
.y370{bottom:219.840750px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y11c{bottom:222.825000px;}
.y3a9{bottom:222.984450px;}
.y313{bottom:224.680064px;}
.y1f4{bottom:225.496500px;}
.y99{bottom:226.230000px;}
.y39{bottom:228.039000px;}
.y3c7{bottom:229.455000px;}
.y31c{bottom:229.667340px;}
.y265{bottom:231.115500px;}
.y2b4{bottom:232.482000px;}
.y291{bottom:232.671000px;}
.y230{bottom:233.876007px;}
.yce{bottom:234.018000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y61{bottom:235.426500px;}
.y159{bottom:236.820000px;}
.y1c0{bottom:237.019500px;}
.y11a{bottom:238.053000px;}
.y312{bottom:238.174461px;}
.y103{bottom:238.501500px;}
.y36f{bottom:238.551750px;}
.y98{bottom:245.058000px;}
.y3c6{bottom:246.715500px;}
.y3a8{bottom:246.744450px;}
.y1f3{bottom:247.612500px;}
.y191{bottom:248.613000px;}
.y264{bottom:249.945000px;}
.y2b3{bottom:251.311500px;}
.y290{bottom:251.500500px;}
.y311{bottom:251.668858px;}
.ycd{bottom:252.847500px;}
.y60{bottom:254.256000px;}
.y158{bottom:255.649500px;}
.y1bf{bottom:255.849000px;}
.y119{bottom:256.882500px;}
.y36e{bottom:257.262750px;}
.y102{bottom:257.331000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y3a3{bottom:260.784822px;}
.y3a7{bottom:263.844262px;}
.y3a5{bottom:263.844709px;}
.y97{bottom:263.887500px;}
.y3c5{bottom:263.976000px;}
.y310{bottom:265.163254px;}
.y190{bottom:267.846000px;}
.y263{bottom:268.774500px;}
.y1f2{bottom:269.730000px;}
.y2b2{bottom:270.141000px;}
.y28f{bottom:270.330000px;}
.ycc{bottom:271.677000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y5f{bottom:273.085500px;}
.y157{bottom:274.479000px;}
.y1be{bottom:274.678500px;}
.y118{bottom:275.712000px;}
.y36d{bottom:275.973750px;}
.y101{bottom:276.160500px;}
.y30f{bottom:278.657651px;}
.y3a6{bottom:280.314450px;}
.y3c4{bottom:281.235000px;}
.y96{bottom:282.717000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y18f{bottom:287.079000px;}
.y262{bottom:287.604000px;}
.y2b1{bottom:288.970500px;}
.y28e{bottom:289.159500px;}
.ycb{bottom:290.506500px;}
.y1f1{bottom:291.847500px;}
.y5e{bottom:291.915000px;}
.y30e{bottom:292.240193px;}
.y156{bottom:293.308500px;}
.y1bd{bottom:293.508000px;}
.y117{bottom:294.541500px;}
.y36c{bottom:294.684750px;}
.y100{bottom:294.990000px;}
.y3c3{bottom:298.495500px;}
.y95{bottom:301.546500px;}
.y3a4{bottom:302.544450px;}
.y30d{bottom:305.734590px;}
.y261{bottom:306.433500px;}
.y38{bottom:307.299000px;}
.y2b0{bottom:307.800000px;}
.y28d{bottom:307.989000px;}
.yca{bottom:309.336000px;}
.y16c{bottom:309.508500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y3fa{bottom:310.681500px;}
.y5d{bottom:310.744500px;}
.y155{bottom:312.138000px;}
.y1bc{bottom:312.337500px;}
.y36b{bottom:313.314750px;}
.y116{bottom:313.371000px;}
.yff{bottom:313.819500px;}
.y1f0{bottom:313.965000px;}
.y30c{bottom:319.228987px;}
.y3c2{bottom:320.239500px;}
.y94{bottom:320.376000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y37{bottom:325.186500px;}
.y260{bottom:325.263000px;}
.y2af{bottom:326.629500px;}
.y28c{bottom:326.818500px;}
.y3a2{bottom:327.654450px;}
.y3f9{bottom:327.940500px;}
.yc9{bottom:328.165500px;}
.y5c{bottom:329.574000px;}
.y36a{bottom:332.025750px;}
.y115{bottom:332.200500px;}
.yfe{bottom:332.649000px;}
.y30b{bottom:332.723384px;}
.y1ef{bottom:336.081000px;}
.y34f{bottom:337.736940px;}
.y93{bottom:339.205500px;}
.y36{bottom:343.074000px;}
.y25f{bottom:344.092500px;}
.y3f8{bottom:345.201000px;}
.y3a1{bottom:345.474450px;}
.y28b{bottom:345.648000px;}
.y30a{bottom:346.217781px;}
.yc8{bottom:346.995000px;}
.yf{bottom:348.133500px;}
.y5b{bottom:348.403500px;}
.y369{bottom:350.736750px;}
.y114{bottom:351.030000px;}
.yfd{bottom:351.478500px;}
.y1bb{bottom:352.471500px;}
.y3c1{bottom:356.853000px;}
.y34e{bottom:356.996382px;}
.y92{bottom:358.035000px;}
.y1ee{bottom:358.198500px;}
.y154{bottom:359.094000px;}
.y2ae{bottom:360.195000px;}
.y35{bottom:360.963000px;}
.y3f7{bottom:362.461500px;}
.y25e{bottom:362.922000px;}
.y28a{bottom:364.477500px;}
.y29b{bottom:365.097127px;}
.yc7{bottom:365.824500px;}
.y1ba{bottom:366.667500px;}
.y5a{bottom:367.233000px;}
.y368{bottom:369.447750px;}
.y113{bottom:369.859500px;}
.yfc{bottom:370.308000px;}
.y3c0{bottom:374.112000px;}
.y153{bottom:375.532500px;}
.y91{bottom:376.864500px;}
.y3a0{bottom:378.954450px;}
.y3bf{bottom:378.994500px;}
.y2ad{bottom:379.428000px;}
.y3f6{bottom:379.722000px;}
.y1ed{bottom:380.316000px;}
.y25d{bottom:381.751500px;}
.y289{bottom:383.307000px;}
.yc6{bottom:384.654000px;}
.y1b9{bottom:385.512000px;}
.y59{bottom:386.062500px;}
.ye{bottom:386.785499px;}
.y367{bottom:388.158750px;}
.y14f{bottom:388.236000px;}
.y112{bottom:388.689000px;}
.yfb{bottom:389.137500px;}
.y152{bottom:391.971000px;}
.y3be{bottom:394.743000px;}
.y246{bottom:395.287857px;}
.y18a{bottom:395.661900px;}
.y90{bottom:395.694000px;}
.y2e8{bottom:395.962713px;}
.y3f5{bottom:396.982500px;}
.y2ac{bottom:398.661000px;}
.y34{bottom:399.024000px;}
.y25c{bottom:400.581000px;}
.y1b8{bottom:401.949000px;}
.y288{bottom:402.136500px;}
.y1ec{bottom:402.432000px;}
.y39f{bottom:402.714450px;}
.yc5{bottom:403.483500px;}
.y14e{bottom:404.673000px;}
.y58{bottom:404.892000px;}
.y2e7{bottom:405.399981px;}
.y366{bottom:406.788750px;}
.y111{bottom:407.518500px;}
.yfa{bottom:407.967000px;}
.yd{bottom:408.044999px;}
.y151{bottom:408.409500px;}
.y34c{bottom:411.716085px;}
.y3bd{bottom:412.003500px;}
.y189{bottom:413.121450px;}
.y3f4{bottom:414.243000px;}
.y8f{bottom:414.523500px;}
.y245{bottom:414.547299px;}
.y33{bottom:416.913000px;}
.y1b7{bottom:418.387500px;}
.y287{bottom:420.966000px;}
.y297{bottom:421.090500px;}
.y34b{bottom:421.345950px;}
.yc4{bottom:422.313000px;}
.y57{bottom:423.721500px;}
.y1eb{bottom:424.549500px;}
.y150{bottom:424.848000px;}
.y365{bottom:425.499750px;}
.y110{bottom:426.348000px;}
.y39e{bottom:426.474450px;}
.yf9{bottom:426.796500px;}
.y3bc{bottom:429.264000px;}
.y3f3{bottom:431.503500px;}
.y188{bottom:432.471855px;}
.y8e{bottom:433.353000px;}
.y244{bottom:433.806741px;}
.y25b{bottom:434.146500px;}
.y32{bottom:434.800500px;}
.y1b6{bottom:434.826000px;}
.y286{bottom:439.795500px;}
.yc3{bottom:441.142500px;}
.y56{bottom:442.551000px;}
.y39c{bottom:443.574450px;}
.y364{bottom:444.210750px;}
.y10f{bottom:445.177500px;}
.yf8{bottom:445.626000px;}
.y3bb{bottom:446.523000px;}
.y1ea{bottom:446.667000px;}
.y3f2{bottom:448.764000px;}
.y22f{bottom:449.592730px;}
.y1b5{bottom:451.264500px;}
.y14d{bottom:451.477500px;}
.y8d{bottom:452.182500px;}
.y187{bottom:452.721774px;}
.y243{bottom:452.976003px;}
.y25a{bottom:453.379500px;}
.y285{bottom:458.623500px;}
.y39d{bottom:459.865103px;}
.yc2{bottom:459.972000px;}
.y55{bottom:461.380500px;}
.y363{bottom:462.921750px;}
.y3ba{bottom:463.783500px;}
.y10e{bottom:464.007000px;}
.yf7{bottom:464.454000px;}
.y3f1{bottom:466.024500px;}
.y1b4{bottom:467.703000px;}
.y22e{bottom:467.889200px;}
.y14c{bottom:467.916000px;}
.y1e9{bottom:468.784500px;}
.y278{bottom:469.113825px;}
.y31{bottom:470.622000px;}
.y8c{bottom:471.012000px;}
.y242{bottom:472.235445px;}
.y259{bottom:472.612500px;}
.y186{bottom:472.971693px;}
.y284{bottom:477.453000px;}
.y360{bottom:477.825750px;}
.y35b{bottom:477.826218px;}
.y362{bottom:477.826991px;}
.y35d{bottom:477.827459px;}
.y39b{bottom:478.494190px;}
.yc1{bottom:478.801500px;}
.y54{bottom:480.210000px;}
.y3b9{bottom:481.044000px;}
.y349{bottom:481.180500px;}
.y10d{bottom:482.836500px;}
.yf6{bottom:483.283500px;}
.y1b3{bottom:484.141500px;}
.y14b{bottom:484.354500px;}
.y22d{bottom:486.185670px;}
.y277{bottom:488.373267px;}
.y147{bottom:488.838000px;}
.y2e5{bottom:489.741000px;}
.y8b{bottom:489.841500px;}
.y1e8{bottom:490.900500px;}
.y241{bottom:491.406210px;}
.y35a{bottom:492.243750px;}
.y361{bottom:492.244524px;}
.y35c{bottom:492.244991px;}
.y185{bottom:493.221612px;}
.y234{bottom:495.040500px;}
.yc0{bottom:497.631000px;}
.y3b8{bottom:498.304500px;}
.y53{bottom:499.039500px;}
.y348{bottom:500.010000px;}
.y3f0{bottom:500.544000px;}
.y1b2{bottom:500.580000px;}
.y14a{bottom:500.793000px;}
.y10c{bottom:501.666000px;}
.yf5{bottom:502.113000px;}
.yc{bottom:502.864502px;}
.y3b7{bottom:503.187000px;}
.y359{bottom:503.745750px;}
.y22c{bottom:504.397896px;}
.y146{bottom:505.276500px;}
.y30{bottom:506.442000px;}
.y39a{bottom:506.664450px;}
.y276{bottom:507.542529px;}
.y1c6{bottom:507.903585px;}
.y358{bottom:508.038750px;}
.y8a{bottom:508.671000px;}
.y240{bottom:510.665652px;}
.y283{bottom:511.020000px;}
.y1e7{bottom:513.018000px;}
.y2e4{bottom:513.052500px;}
.y184{bottom:513.471531px;}
.ybf{bottom:516.460500px;}
.y1b1{bottom:517.018500px;}
.y149{bottom:517.231500px;}
.y1c5{bottom:517.533450px;}
.y3ef{bottom:517.804500px;}
.y52{bottom:517.869000px;}
.y3b6{bottom:518.934000px;}
.y2d0{bottom:520.495500px;}
.yb{bottom:520.864502px;}
.yf4{bottom:520.942500px;}
.y22b{bottom:522.694366px;}
.y2f{bottom:524.329500px;}
.y10b{bottom:524.977500px;}
.y275{bottom:526.801971px;}
.y89{bottom:527.500500px;}
.y23f{bottom:529.925094px;}
.y282{bottom:530.251500px;}
.y1b0{bottom:533.457000px;}
.y148{bottom:533.670000px;}
.y183{bottom:533.721450px;}
.y3ee{bottom:535.065000px;}
.y1e6{bottom:535.135500px;}
.ybe{bottom:535.290000px;}
.y3b5{bottom:536.194500px;}
.y347{bottom:538.828500px;}
.ya{bottom:538.864499px;}
.y2cf{bottom:539.323500px;}
.yf3{bottom:539.772000px;}
.y22a{bottom:540.905165px;}
.y3b4{bottom:541.077000px;}
.y51{bottom:541.180500px;}
.y2e{bottom:542.218500px;}
.y355{bottom:543.192896px;}
.y351{bottom:544.533000px;}
.y274{bottom:545.971233px;}
.y88{bottom:546.330000px;}
.y23e{bottom:549.095859px;}
.y281{bottom:549.484500px;}
.y2e3{bottom:549.814500px;}
.y1af{bottom:549.895500px;}
.y3ed{bottom:552.325500px;}
.y182{bottom:553.881450px;}
.ybd{bottom:554.118000px;}
.y9{bottom:556.864499px;}
.y2ce{bottom:558.153000px;}
.yf2{bottom:558.601500px;}
.y229{bottom:559.201635px;}
.y2d{bottom:560.106000px;}
.y145{bottom:560.299500px;}
.y3b3{bottom:562.222500px;}
.y87{bottom:565.159500px;}
.y273{bottom:565.230675px;}
.y1e5{bottom:566.325000px;}
.y1ae{bottom:566.334000px;}
.y23d{bottom:568.355301px;}
.y346{bottom:569.355000px;}
.y3ec{bottom:569.586000px;}
.y26d{bottom:571.914000px;}
.ybc{bottom:572.947500px;}
.y37e{bottom:573.264585px;}
.y2e2{bottom:576.355500px;}
.y144{bottom:576.736500px;}
.y2cd{bottom:576.982500px;}
.yf1{bottom:577.431000px;}
.y228{bottom:577.498105px;}
.y2c{bottom:577.993500px;}
.y181{bottom:580.521450px;}
.y1ad{bottom:582.771000px;}
.y37d{bottom:582.894450px;}
.y345{bottom:583.539000px;}
.y86{bottom:583.989000px;}
.y272{bottom:584.490117px;}
.y3eb{bottom:586.846500px;}
.y20f{bottom:587.041500px;}
.y23c{bottom:587.526066px;}
.ybb{bottom:591.777000px;}
.y37c{bottom:592.858500px;}
.y143{bottom:593.175000px;}
.y227{bottom:595.708904px;}
.y2cc{bottom:595.812000px;}
.y343{bottom:595.843500px;}
.y2b{bottom:595.882500px;}
.yf0{bottom:596.260500px;}
.y1ac{bottom:599.209500px;}
.y85{bottom:602.818500px;}
.y2e1{bottom:602.896500px;}
.y1e4{bottom:603.490500px;}
.y271{bottom:603.660882px;}
.y3ea{bottom:604.107000px;}
.y344{bottom:604.473000px;}
.y353{bottom:604.590872px;}
.y180{bottom:604.911450px;}
.y20e{bottom:605.871000px;}
.y23b{bottom:606.785508px;}
.y142{bottom:609.613500px;}
.yba{bottom:610.606500px;}
.y342{bottom:613.104000px;}
.y352{bottom:613.257750px;}
.y226{bottom:614.005374px;}
.y2cb{bottom:614.641500px;}
.yef{bottom:615.090000px;}
.y50{bottom:615.523500px;}
.y1ab{bottom:615.648000px;}
.y28{bottom:618.253464px;}
.y3e9{bottom:621.366000px;}
.y84{bottom:621.648000px;}
.y1e3{bottom:622.723500px;}
.y20d{bottom:624.700500px;}
.y23a{bottom:626.044950px;}
.y141{bottom:626.052000px;}
.yb9{bottom:629.436000px;}
.y1aa{bottom:632.086500px;}
.y225{bottom:632.216173px;}
.y2ca{bottom:633.471000px;}
.yee{bottom:633.919500px;}
.y3e8{bottom:638.626500px;}
.y341{bottom:639.741000px;}
.y83{bottom:640.477500px;}
.y17f{bottom:641.008569px;}
.y140{bottom:642.490500px;}
.y20c{bottom:643.530000px;}
.y1c4{bottom:645.153000px;}
.y8{bottom:645.510000px;}
.yb8{bottom:648.265500px;}
.y1a9{bottom:648.525000px;}
.y224{bottom:650.512643px;}
.y2c9{bottom:652.300500px;}
.yed{bottom:652.749000px;}
.y4f{bottom:652.914000px;}
.y340{bottom:653.925000px;}
.y139{bottom:655.192500px;}
.y3e7{bottom:655.887000px;}
.y2e0{bottom:655.977000px;}
.y26f{bottom:658.380585px;}
.y13f{bottom:658.929000px;}
.y82{bottom:659.307000px;}
.y17e{bottom:660.897768px;}
.y20b{bottom:662.358000px;}
.y239{bottom:662.854500px;}
.y1a8{bottom:664.963500px;}
.y33f{bottom:666.229500px;}
.y7{bottom:666.771000px;}
.yb7{bottom:667.095000px;}
.y26e{bottom:668.010450px;}
.y2c8{bottom:671.130000px;}
.yec{bottom:671.578500px;}
.y3e6{bottom:673.147500px;}
.y2df{bottom:673.551000px;}
.y13e{bottom:675.367500px;}
.y81{bottom:678.136500px;}
.y17d{bottom:680.068533px;}
.y238{bottom:680.224950px;}
.y20a{bottom:681.187500px;}
.y1a7{bottom:681.402000px;}
.y33e{bottom:683.490000px;}
.y223{bottom:685.481857px;}
.yb6{bottom:685.924500px;}
.y2c7{bottom:689.959500px;}
.y4e{bottom:690.304500px;}
.yeb{bottom:690.408000px;}
.y2de{bottom:691.125000px;}
.y13d{bottom:691.806000px;}
.y80{bottom:696.966000px;}
.y1a6{bottom:697.840500px;}
.y17c{bottom:699.327975px;}
.y209{bottom:700.017000px;}
.y222{bottom:701.983785px;}
.yb5{bottom:704.754000px;}
.y3e5{bottom:707.668500px;}
.y13c{bottom:708.244500px;}
.y2c6{bottom:708.789000px;}
.yea{bottom:709.237500px;}
.y4d{bottom:709.761000px;}
.y33d{bottom:710.127000px;}
.y16b{bottom:711.156000px;}
.y1a5{bottom:714.279000px;}
.y7f{bottom:715.795500px;}
.y2dd{bottom:717.666000px;}
.y221{bottom:718.399785px;}
.y17b{bottom:718.497237px;}
.y208{bottom:718.846500px;}
.yb4{bottom:723.583500px;}
.y33c{bottom:724.311000px;}
.y13b{bottom:724.683000px;}
.y3e4{bottom:724.929000px;}
.y16a{bottom:725.352000px;}
.y6{bottom:726.298500px;}
.y2c5{bottom:727.618500px;}
.ye9{bottom:728.067000px;}
.y4c{bottom:729.217500px;}
.y1a4{bottom:730.717500px;}
.y299{bottom:731.977456px;}
.y236{bottom:733.325085px;}
.y7e{bottom:734.625000px;}
.y2dc{bottom:735.240000px;}
.y33b{bottom:736.615500px;}
.y220{bottom:736.867643px;}
.y207{bottom:737.676000px;}
.y17a{bottom:737.756679px;}
.y13a{bottom:741.120000px;}
.y298{bottom:741.125828px;}
.y3e3{bottom:742.189500px;}
.yb3{bottom:742.413000px;}
.y235{bottom:742.954950px;}
.y169{bottom:744.196500px;}
.y2c4{bottom:746.448000px;}
.ye8{bottom:746.896500px;}
.y1a3{bottom:747.154500px;}
.y4b{bottom:748.675500px;}
.y3{bottom:752.599495px;}
.y2db{bottom:752.814000px;}
.y7d{bottom:753.453000px;}
.y33a{bottom:753.876000px;}
.y206{bottom:756.505500px;}
.y21f{bottom:756.789143px;}
.y179{bottom:757.016121px;}
.y3e2{bottom:759.450000px;}
.y168{bottom:760.635000px;}
.yb2{bottom:761.242500px;}
.y1a2{bottom:763.593000px;}
.y2c3{bottom:765.277500px;}
.ye7{bottom:765.726000px;}
.y138{bottom:767.749500px;}
.y4a{bottom:768.132000px;}
.y2da{bottom:770.388000px;}
.y7c{bottom:772.282500px;}
.y205{bottom:775.335000px;}
.y178{bottom:776.185383px;}
.y3e1{bottom:776.709000px;}
.y21e{bottom:776.710643px;}
.y167{bottom:777.073500px;}
.y1a1{bottom:780.031500px;}
.yb1{bottom:780.072000px;}
.y339{bottom:780.513000px;}
.y2c2{bottom:784.107000px;}
.y137{bottom:784.188000px;}
.ye6{bottom:784.555500px;}
.y49{bottom:787.588500px;}
.y2d9{bottom:787.962000px;}
.y7b{bottom:791.112000px;}
.y166{bottom:793.512000px;}
.y3e0{bottom:793.969500px;}
.y204{bottom:794.164500px;}
.y338{bottom:794.697000px;}
.y177{bottom:795.444825px;}
.y21d{bottom:796.717643px;}
.yb0{bottom:798.901500px;}
.y136{bottom:800.626500px;}
.y2c1{bottom:802.936500px;}
.ye5{bottom:803.385000px;}
.y1a0{bottom:803.673000px;}
.y133{bottom:805.110000px;}
.y2d8{bottom:805.536000px;}
.y336{bottom:807.001500px;}
.y48{bottom:807.046500px;}
.y7a{bottom:809.941500px;}
.y165{bottom:809.949000px;}
.y3df{bottom:811.230000px;}
.y176{bottom:814.704267px;}
.y337{bottom:815.631000px;}
.y21c{bottom:816.639142px;}
.y135{bottom:817.065000px;}
.yaf{bottom:817.731000px;}
.y2c0{bottom:821.766000px;}
.ye4{bottom:822.214500px;}
.y335{bottom:824.262000px;}
.y164{bottom:826.387500px;}
.y47{bottom:826.503000px;}
.y3de{bottom:828.490500px;}
.y134{bottom:833.503500px;}
.y175{bottom:833.873529px;}
.y19f{bottom:835.291500px;}
.y79{bottom:836.244000px;}
.yae{bottom:836.560500px;}
.y21b{bottom:836.560643px;}
.y203{bottom:837.337500px;}
.y2bf{bottom:840.595500px;}
.ye3{bottom:841.044000px;}
.y163{bottom:842.826000px;}
.y3dd{bottom:845.751000px;}
.y46{bottom:845.961000px;}
.y334{bottom:850.899000px;}
.y202{bottom:851.535000px;}
.y174{bottom:853.132971px;}
.y78{bottom:855.073500px;}
.yad{bottom:855.390000px;}
.y21a{bottom:856.482143px;}
.y2be{bottom:859.425000px;}
.ye2{bottom:859.873500px;}
.y132{bottom:862.375500px;}
.y3dc{bottom:863.011500px;}
.y333{bottom:865.083000px;}
.y45{bottom:865.417500px;}
.y162{bottom:866.467500px;}
.y173{bottom:872.302233px;}
.y19e{bottom:872.397000px;}
.y77{bottom:873.903000px;}
.yac{bottom:874.219500px;}
.y12f{bottom:875.077500px;}
.y201{bottom:875.893500px;}
.y219{bottom:876.403643px;}
.y331{bottom:877.387500px;}
.y2bd{bottom:878.254500px;}
.ye1{bottom:878.703000px;}
.y131{bottom:878.812500px;}
.y2{bottom:879.369000px;}
.y3db{bottom:880.272000px;}
.y44{bottom:884.874000px;}
.y332{bottom:886.017000px;}
.y19d{bottom:891.225000px;}
.y12e{bottom:891.516000px;}
.y172{bottom:891.561675px;}
.y76{bottom:892.732500px;}
.yab{bottom:893.049000px;}
.y330{bottom:894.648000px;}
.y130{bottom:895.251000px;}
.y218{bottom:896.410643px;}
.ye0{bottom:897.532500px;}
.y200{bottom:898.011000px;}
.y161{bottom:898.086000px;}
.y2bc{bottom:901.567500px;}
.y19c{bottom:910.054500px;}
.y171{bottom:910.821117px;}
.y75{bottom:911.562000px;}
.yaa{bottom:911.878500px;}
.y3da{bottom:914.793000px;}
.y217{bottom:916.332142px;}
.ydf{bottom:916.362000px;}
.y1ff{bottom:920.127000px;}
.y32f{bottom:921.285000px;}
.y43{bottom:922.554000px;}
.y12d{bottom:924.123000px;}
.y19b{bottom:928.884000px;}
.y170{bottom:929.991882px;}
.y74{bottom:930.390000px;}
.ya9{bottom:930.708000px;}
.y3d9{bottom:932.052000px;}
.yde{bottom:935.191500px;}
.y32e{bottom:935.469000px;}
.y216{bottom:936.253643px;}
.y42{bottom:938.692500px;}
.y12c{bottom:940.561500px;}
.y1fe{bottom:942.244500px;}
.y19a{bottom:947.713500px;}
.y32d{bottom:947.773500px;}
.y3d8{bottom:949.312500px;}
.ya8{bottom:949.537500px;}
.ydd{bottom:954.021000px;}
.y41{bottom:954.832500px;}
.y215{bottom:956.175142px;}
.y73{bottom:956.692500px;}
.y12b{bottom:957.000000px;}
.y1fd{bottom:964.362000px;}
.y32c{bottom:965.034000px;}
.y199{bottom:966.543000px;}
.y3d7{bottom:966.573000px;}
.y1{bottom:966.726000px;}
.ya7{bottom:968.367000px;}
.y127{bottom:969.702000px;}
.ydc{bottom:972.849000px;}
.y12a{bottom:973.437000px;}
.y72{bottom:975.522000px;}
.y214{bottom:976.097061px;}
.y3d6{bottom:983.833500px;}
.y16e{bottom:984.711585px;}
.y197{bottom:985.372500px;}
.y1fc{bottom:986.479500px;}
.ya6{bottom:987.196500px;}
.y129{bottom:989.875500px;}
.y198{bottom:990.798000px;}
.y32b{bottom:991.671000px;}
.ydb{bottom:991.678500px;}
.y16d{bottom:994.341450px;}
.y71{bottom:994.351500px;}
.y27{bottom:998.460000px;}
.y3d5{bottom:1001.094000px;}
.y32a{bottom:1005.855000px;}
.ya5{bottom:1006.026000px;}
.y128{bottom:1006.314000px;}
.y1fb{bottom:1008.595500px;}
.yda{bottom:1010.508000px;}
.y70{bottom:1013.181000px;}
.y329{bottom:1018.159500px;}
.y3d4{bottom:1018.354500px;}
.y35e{bottom:1019.685750px;}
.ya4{bottom:1024.855500px;}
.yd9{bottom:1029.337500px;}
.y212{bottom:1030.218271px;}
.y1fa{bottom:1030.713000px;}
.y6f{bottom:1032.010500px;}
.y126{bottom:1032.943500px;}
.y328{bottom:1035.420000px;}
.y3d3{bottom:1035.615000px;}
.y211{bottom:1039.366642px;}
.y26{bottom:1041.199500px;}
.ya3{bottom:1043.685000px;}
.yd8{bottom:1048.167000px;}
.y125{bottom:1049.382000px;}
.y6e{bottom:1050.840000px;}
.y1f9{bottom:1052.830500px;}
.y3d2{bottom:1052.875500px;}
.y327{bottom:1062.057000px;}
.ya2{bottom:1062.513000px;}
.yd7{bottom:1066.996500px;}
.y25{bottom:1069.443000px;}
.y6d{bottom:1069.669500px;}
.y3d1{bottom:1070.134500px;}
.y124{bottom:1074.517500px;}
.y1f8{bottom:1074.948000px;}
.ya1{bottom:1081.342500px;}
.yd6{bottom:1085.826000px;}
.y3d0{bottom:1087.395000px;}
.y6c{bottom:1088.499000px;}
.y24{bottom:1097.688000px;}
.ya0{bottom:1104.655500px;}
.y123{bottom:1106.137500px;}
.y6b{bottom:1107.327000px;}
.y22{bottom:1141.174500px;}
.y6a{bottom:1173.397500px;}
.h35{height:12.524400px;}
.h41{height:13.689000px;}
.h43{height:24.298945px;}
.h44{height:24.299545px;}
.h1a{height:24.889752px;}
.he{height:25.508090px;}
.h21{height:27.655250px;}
.h34{height:27.885651px;}
.h11{height:30.461558px;}
.h12{height:30.670772px;}
.h3b{height:31.456318px;}
.h7{height:32.130000px;}
.h18{height:33.072749px;}
.h10{height:33.112997px;}
.h25{height:33.203892px;}
.hf{height:34.199443px;}
.h2b{height:34.252436px;}
.h3f{height:34.477737px;}
.h13{height:34.813397px;}
.h1c{height:34.951465px;}
.h17{height:35.052500px;}
.h40{height:37.302161px;}
.h27{height:37.447998px;}
.h14{height:38.896243px;}
.h15{height:39.165235px;}
.h3d{height:39.260004px;}
.h1f{height:39.418945px;}
.h19{height:39.434227px;}
.h3c{height:39.497783px;}
.h47{height:41.521894px;}
.h26{height:41.692104px;}
.h2d{height:42.749782px;}
.h2c{height:43.008697px;}
.hd{height:43.217759px;}
.h16{height:43.516637px;}
.h39{height:43.622227px;}
.h48{height:43.796072px;}
.hb{height:43.815515px;}
.h1d{height:43.886426px;}
.h6{height:45.900000px;}
.h1e{height:45.960294px;}
.h20{height:48.091113px;}
.h3{height:48.195000px;}
.h45{height:50.899595px;}
.h9{height:50.930649px;}
.h46{height:53.762932px;}
.h49{height:54.119377px;}
.h2{height:55.080000px;}
.h3e{height:56.742113px;}
.h33{height:64.881709px;}
.h31{height:64.882297px;}
.h2f{height:65.235097px;}
.h37{height:73.414243px;}
.h36{height:73.420243px;}
.hc{height:77.792486px;}
.h5{height:78.030000px;}
.h32{height:82.521709px;}
.h2e{height:82.522297px;}
.h30{height:82.875097px;}
.h23{height:84.566426px;}
.ha{height:102.503837px;}
.h4{height:119.055004px;}
.h38{height:308.038500px;}
.h2a{height:363.754440px;}
.h1b{height:378.850500px;}
.h24{height:434.467965px;}
.h28{height:452.613000px;}
.h22{height:474.448500px;}
.h42{height:526.743000px;}
.h3a{height:531.166950px;}
.h29{height:698.513625px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w10{width:40.743000px;}
.w11{width:41.067000px;}
.wd{width:42.865200px;}
.w5{width:75.364879px;}
.w4{width:131.582497px;}
.w8{width:352.619100px;}
.w6{width:521.656500px;}
.wb{width:534.255300px;}
.we{width:538.180500px;}
.w12{width:541.770000px;}
.w7{width:549.393000px;}
.w2{width:637.794021px;}
.wa{width:686.297550px;}
.wc{width:769.726692px;}
.wf{width:771.583050px;}
.w9{width:785.436000px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x78{left:-194.436000px;}
.x1e{left:-188.535000px;}
.x4f{left:-181.351200px;}
.x39{left:-173.464500px;}
.x50{left:-164.764200px;}
.x36{left:-161.674500px;}
.x3a{left:-158.704500px;}
.x2a{left:-156.675000px;}
.x3b{left:-155.284500px;}
.x37{left:-153.844500px;}
.x38{left:-152.584500px;}
.x54{left:-151.084200px;}
.x3c{left:-149.074500px;}
.x52{left:-145.441200px;}
.x51{left:-139.883700px;}
.x53{left:-135.010200px;}
.x34{left:-130.354500px;}
.x28{left:-115.904962px;}
.x23{left:-100.155000px;}
.x24{left:-91.515000px;}
.x26{left:-72.614808px;}
.x29{left:-59.925538px;}
.x27{left:-58.484736px;}
.x25{left:-48.675566px;}
.x33{left:-30.364500px;}
.x60{left:-16.228950px;}
.x22{left:-11.505000px;}
.x0{left:0.000000px;}
.x79{left:1.134360px;}
.x67{left:2.607192px;}
.x56{left:4.440400px;}
.x20{left:7.033910px;}
.x6f{left:9.839763px;}
.x80{left:12.882375px;}
.x6e{left:14.249592px;}
.x6a{left:16.895592px;}
.x7{left:29.274117px;}
.x21{left:32.505000px;}
.x55{left:34.707300px;}
.x84{left:36.935325px;}
.x1f{left:38.893805px;}
.x5{left:54.000000px;}
.x8a{left:55.341518px;}
.x7e{left:56.460375px;}
.x6{left:58.056593px;}
.x7b{left:60.669000px;}
.x14{left:62.293500px;}
.x45{left:64.494000px;}
.x49{left:66.021000px;}
.x73{left:67.371000px;}
.x70{left:71.436180px;}
.x41{left:74.971500px;}
.x4c{left:76.309500px;}
.x46{left:77.628000px;}
.x42{left:79.402500px;}
.x47{left:80.701500px;}
.x43{left:81.931500px;}
.x44{left:83.128500px;}
.x4d{left:84.225000px;}
.x48{left:86.202000px;}
.x93{left:87.621000px;}
.x4b{left:89.490000px;}
.x4e{left:94.036500px;}
.x6d{left:95.040792px;}
.x15{left:96.439500px;}
.x8e{left:98.271000px;}
.x6c{left:99.803592px;}
.x1{left:102.045000px;}
.x5d{left:103.308450px;}
.x2{left:106.297500px;}
.x8f{left:109.341000px;}
.x6b{left:111.622392px;}
.x8c{left:122.661187px;}
.x8b{left:127.791045px;}
.x13{left:137.280000px;}
.x74{left:139.548000px;}
.x5c{left:143.104500px;}
.x72{left:144.301500px;}
.x62{left:145.492500px;}
.x5e{left:147.479960px;}
.x90{left:150.111000px;}
.x71{left:155.136000px;}
.x40{left:163.320000px;}
.x88{left:175.572000px;}
.x61{left:179.341050px;}
.x69{left:194.266145px;}
.x59{left:195.870000px;}
.x4{left:203.484001px;}
.x3f{left:214.125000px;}
.x5a{left:227.730000px;}
.x77{left:245.928000px;}
.x11{left:248.820000px;}
.x9{left:249.832500px;}
.x8{left:250.897500px;}
.x75{left:253.333500px;}
.x8d{left:257.480594px;}
.x81{left:270.382600px;}
.xb{left:282.786000px;}
.x76{left:285.679500px;}
.x1c{left:287.463000px;}
.x19{left:301.498500px;}
.x2f{left:302.974500px;}
.x16{left:304.392000px;}
.x2e{left:306.336000px;}
.x2c{left:308.205000px;}
.xa{left:309.465000px;}
.x66{left:310.932000px;}
.x1b{left:326.116500px;}
.x17{left:334.953000px;}
.x1d{left:337.501500px;}
.x12{left:339.049500px;}
.x58{left:340.456367px;}
.x1a{left:347.589000px;}
.x57{left:349.091411px;}
.x82{left:385.968375px;}
.x7d{left:388.722893px;}
.x65{left:392.064000px;}
.x30{left:403.341000px;}
.x4a{left:405.483000px;}
.x31{left:415.632000px;}
.x91{left:418.761166px;}
.xe{left:431.727000px;}
.x3{left:454.959000px;}
.x2b{left:517.784850px;}
.x35{left:524.035350px;}
.x64{left:528.809091px;}
.x63{left:530.262062px;}
.x92{left:531.981000px;}
.x3d{left:534.108000px;}
.x7a{left:537.355161px;}
.x32{left:541.945221px;}
.x89{left:543.051018px;}
.x3e{left:544.155000px;}
.x18{left:548.994000px;}
.x85{left:577.209375px;}
.x7f{left:578.748375px;}
.x83{left:596.974050px;}
.x87{left:652.944375px;}
.x86{left:672.869700px;}
.x5f{left:682.081050px;}
.xc{left:705.949500px;}
.xd{left:729.520500px;}
.x68{left:766.507754px;}
.x7c{left:769.666209px;}
.x5b{left:779.881098px;}
.xf{left:830.544000px;}
.x2d{left:832.488000px;}
.x10{left:836.970000px;}
@media print{
.vb{vertical-align:-25.057370pt;}
.va{vertical-align:-23.040245pt;}
.v1{vertical-align:-19.842272pt;}
.v8{vertical-align:-15.264288pt;}
.vc{vertical-align:-13.440000pt;}
.v9{vertical-align:-9.502998pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:10.880923pt;}
.v2{vertical-align:13.430176pt;}
.v7{vertical-align:17.279957pt;}
.v5{vertical-align:19.756800pt;}
.v6{vertical-align:30.688000pt;}
.v4{vertical-align:35.123200pt;}
.v3{vertical-align:36.160000pt;}
.lsc8{letter-spacing:-0.348693pt;}
.lsc3{letter-spacing:-0.339866pt;}
.lsa0{letter-spacing:-0.288576pt;}
.ls9d{letter-spacing:-0.269674pt;}
.lsbd{letter-spacing:-0.260417pt;}
.lscc{letter-spacing:-0.251589pt;}
.ls74{letter-spacing:-0.245824pt;}
.lsf1{letter-spacing:-0.240000pt;}
.lsbb{letter-spacing:-0.171234pt;}
.lscb{letter-spacing:-0.167726pt;}
.lsde{letter-spacing:-0.163312pt;}
.ls49{letter-spacing:-0.160320pt;}
.ls93{letter-spacing:-0.157114pt;}
.ls97{letter-spacing:-0.151876pt;}
.ls5b{letter-spacing:-0.142150pt;}
.lscf{letter-spacing:-0.132415pt;}
.lsd0{letter-spacing:-0.123588pt;}
.ls6f{letter-spacing:-0.122912pt;}
.ls61{letter-spacing:-0.121843pt;}
.ls94{letter-spacing:-0.120454pt;}
.lsc0{letter-spacing:-0.119174pt;}
.ls32{letter-spacing:-0.117568pt;}
.ls37{letter-spacing:-0.112224pt;}
.ls81{letter-spacing:-0.109440pt;}
.ls75{letter-spacing:-0.106880pt;}
.ls73{letter-spacing:-0.101536pt;}
.ls5d{letter-spacing:-0.096459pt;}
.lsf6{letter-spacing:-0.096259pt;}
.ls38{letter-spacing:-0.096192pt;}
.ls35{letter-spacing:-0.096000pt;}
.ls67{letter-spacing:-0.091382pt;}
.lsc2{letter-spacing:-0.088277pt;}
.lsf3{letter-spacing:-0.086400pt;}
.lsd2{letter-spacing:-0.083863pt;}
.ls99{letter-spacing:-0.083794pt;}
.ls43{letter-spacing:-0.080864pt;}
.ls47{letter-spacing:-0.080160pt;}
.ls8f{letter-spacing:-0.079247pt;}
.ls29{letter-spacing:-0.076608pt;}
.ls70{letter-spacing:-0.074816pt;}
.ls5a{letter-spacing:-0.072778pt;}
.ls5e{letter-spacing:-0.071075pt;}
.lsf5{letter-spacing:-0.070927pt;}
.ls2d{letter-spacing:-0.069472pt;}
.ls71{letter-spacing:-0.064128pt;}
.ls6e{letter-spacing:-0.062400pt;}
.ls63{letter-spacing:-0.060922pt;}
.ls72{letter-spacing:-0.058784pt;}
.lsba{letter-spacing:-0.058709pt;}
.ls82{letter-spacing:-0.055845pt;}
.ls31{letter-spacing:-0.053440pt;}
.lsd9{letter-spacing:-0.052966pt;}
.lsb8{letter-spacing:-0.052906pt;}
.lsed{letter-spacing:-0.052800pt;}
.lsdc{letter-spacing:-0.048552pt;}
.ls2a{letter-spacing:-0.048096pt;}
.ls60{letter-spacing:-0.045691pt;}
.lsd4{letter-spacing:-0.044138pt;}
.ls33{letter-spacing:-0.042752pt;}
.ls66{letter-spacing:-0.040614pt;}
.lsd8{letter-spacing:-0.039725pt;}
.lsf2{letter-spacing:-0.038400pt;}
.ls4a{letter-spacing:-0.037408pt;}
.ls98{letter-spacing:-0.036660pt;}
.lsb9{letter-spacing:-0.033667pt;}
.lsf0{letter-spacing:-0.033600pt;}
.ls46{letter-spacing:-0.032064pt;}
.ls91{letter-spacing:-0.031423pt;}
.lsbe{letter-spacing:-0.030897pt;}
.ls6a{letter-spacing:-0.030461pt;}
.ls78{letter-spacing:-0.028800pt;}
.ls2b{letter-spacing:-0.026720pt;}
.lsdd{letter-spacing:-0.026483pt;}
.ls68{letter-spacing:-0.025384pt;}
.ls64{letter-spacing:-0.022800pt;}
.lsdf{letter-spacing:-0.022069pt;}
.ls2e{letter-spacing:-0.021376pt;}
.ls48{letter-spacing:-0.019200pt;}
.lsdb{letter-spacing:-0.017655pt;}
.ls2c{letter-spacing:-0.016032pt;}
.ls9a{letter-spacing:-0.015711pt;}
.ls5c{letter-spacing:-0.015230pt;}
.lsee{letter-spacing:-0.014400pt;}
.ls2f{letter-spacing:-0.010688pt;}
.ls69{letter-spacing:-0.010154pt;}
.lsef{letter-spacing:-0.009600pt;}
.lsd7{letter-spacing:-0.008828pt;}
.ls30{letter-spacing:-0.005344pt;}
.ls96{letter-spacing:-0.005237pt;}
.ls65{letter-spacing:-0.005077pt;}
.ls45{letter-spacing:-0.004800pt;}
.lscd{letter-spacing:-0.004414pt;}
.ls44{letter-spacing:-0.004256pt;}
.ls90{letter-spacing:-0.004171pt;}
.lsb7{letter-spacing:-0.003830pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.001718pt;}
.ls4c{letter-spacing:0.004043pt;}
.ls14{letter-spacing:0.004256pt;}
.ls7a{letter-spacing:0.004560pt;}
.ls1d{letter-spacing:0.004800pt;}
.lse5{letter-spacing:0.005066pt;}
.ls7f{letter-spacing:0.005077pt;}
.ls88{letter-spacing:0.005237pt;}
.ls41{letter-spacing:0.005344pt;}
.ls26{letter-spacing:0.009600pt;}
.ls4e{letter-spacing:0.010154pt;}
.ls3d{letter-spacing:0.010688pt;}
.lsaf{letter-spacing:0.013242pt;}
.ls79{letter-spacing:0.013680pt;}
.ls76{letter-spacing:0.014400pt;}
.ls55{letter-spacing:0.015230pt;}
.ls1a{letter-spacing:0.016032pt;}
.ls7e{letter-spacing:0.018240pt;}
.ls27{letter-spacing:0.019200pt;}
.ls58{letter-spacing:0.020307pt;}
.ls1b{letter-spacing:0.021376pt;}
.lsab{letter-spacing:0.022069pt;}
.ls3c{letter-spacing:0.024000pt;}
.lsce{letter-spacing:0.026483pt;}
.ls16{letter-spacing:0.026720pt;}
.ls52{letter-spacing:0.027360pt;}
.ls22{letter-spacing:0.028800pt;}
.ls59{letter-spacing:0.030461pt;}
.lsa7{letter-spacing:0.030897pt;}
.ls18{letter-spacing:0.032064pt;}
.ls24{letter-spacing:0.033600pt;}
.lsc9{letter-spacing:0.035311pt;}
.ls51{letter-spacing:0.035538pt;}
.ls54{letter-spacing:0.036480pt;}
.ls19{letter-spacing:0.037408pt;}
.ls77{letter-spacing:0.038400pt;}
.ls57{letter-spacing:0.040614pt;}
.ls3e{letter-spacing:0.042752pt;}
.lse1{letter-spacing:0.043200pt;}
.lsc7{letter-spacing:0.044138pt;}
.ls53{letter-spacing:0.045600pt;}
.ls56{letter-spacing:0.045691pt;}
.ls87{letter-spacing:0.047134pt;}
.ls28{letter-spacing:0.048000pt;}
.ls17{letter-spacing:0.048096pt;}
.lsc6{letter-spacing:0.048552pt;}
.lsa1{letter-spacing:0.049795pt;}
.ls7c{letter-spacing:0.050160pt;}
.ls50{letter-spacing:0.050768pt;}
.ls23{letter-spacing:0.052800pt;}
.lsd3{letter-spacing:0.052966pt;}
.ls42{letter-spacing:0.053440pt;}
.ls83{letter-spacing:0.054221pt;}
.ls7d{letter-spacing:0.054720pt;}
.ls39{letter-spacing:0.055328pt;}
.ls62{letter-spacing:0.055845pt;}
.lsb0{letter-spacing:0.057380pt;}
.ls6c{letter-spacing:0.057600pt;}
.ls21{letter-spacing:0.058784pt;}
.ls4b{letter-spacing:0.060648pt;}
.lsc5{letter-spacing:0.061794pt;}
.ls3f{letter-spacing:0.062400pt;}
.ls12{letter-spacing:0.063840pt;}
.lsae{letter-spacing:0.066208pt;}
.lse2{letter-spacing:0.067200pt;}
.ls1c{letter-spacing:0.069472pt;}
.lsd5{letter-spacing:0.070621pt;}
.ls5f{letter-spacing:0.071075pt;}
.ls6d{letter-spacing:0.074816pt;}
.lsad{letter-spacing:0.075035pt;}
.ls80{letter-spacing:0.076152pt;}
.ls25{letter-spacing:0.076800pt;}
.ls1f{letter-spacing:0.080160pt;}
.lsea{letter-spacing:0.081060pt;}
.lsda{letter-spacing:0.088277pt;}
.ls20{letter-spacing:0.090848pt;}
.lsc4{letter-spacing:0.092691pt;}
.ls92{letter-spacing:0.094268pt;}
.lsd1{letter-spacing:0.097104pt;}
.lsb3{letter-spacing:0.105932pt;}
.lsb2{letter-spacing:0.114760pt;}
.ls95{letter-spacing:0.115217pt;}
.lse9{letter-spacing:0.116524pt;}
.ls36{letter-spacing:0.117568pt;}
.lsa8{letter-spacing:0.119174pt;}
.lsb6{letter-spacing:0.123588pt;}
.lsac{letter-spacing:0.128001pt;}
.lsbf{letter-spacing:0.132415pt;}
.lsa3{letter-spacing:0.137894pt;}
.lsbc{letter-spacing:0.141880pt;}
.lsa2{letter-spacing:0.145555pt;}
.lsb1{letter-spacing:0.145657pt;}
.lsb4{letter-spacing:0.150071pt;}
.ls85{letter-spacing:0.150152pt;}
.ls3b{letter-spacing:0.153216pt;}
.ls4d{letter-spacing:0.153642pt;}
.ls89{letter-spacing:0.157114pt;}
.ls15{letter-spacing:0.157472pt;}
.ls84{letter-spacing:0.158493pt;}
.lsb5{letter-spacing:0.158898pt;}
.ls40{letter-spacing:0.160320pt;}
.ls3a{letter-spacing:0.161728pt;}
.ls4f{letter-spacing:0.162458pt;}
.ls13{letter-spacing:0.170240pt;}
.lse4{letter-spacing:0.202650pt;}
.lse7{letter-spacing:0.253312pt;}
.lseb{letter-spacing:0.278643pt;}
.lse6{letter-spacing:0.309041pt;}
.lse8{letter-spacing:0.324239pt;}
.lsca{letter-spacing:0.344280pt;}
.lsd6{letter-spacing:0.361935pt;}
.lsc1{letter-spacing:0.401659pt;}
.lsf4{letter-spacing:0.435023pt;}
.ls9e{letter-spacing:0.595311pt;}
.ls9f{letter-spacing:0.600644pt;}
.ls5{letter-spacing:1.133683pt;}
.ls1{letter-spacing:1.654338pt;}
.ls7b{letter-spacing:3.196560pt;}
.ls34{letter-spacing:10.329952pt;}
.ls4{letter-spacing:10.626533pt;}
.lsec{letter-spacing:11.768401pt;}
.ls10{letter-spacing:12.592726pt;}
.lsc{letter-spacing:13.017797pt;}
.ls9{letter-spacing:13.124065pt;}
.ls7{letter-spacing:13.230333pt;}
.lsb{letter-spacing:13.283467pt;}
.ls6{letter-spacing:13.336601pt;}
.lsf{letter-spacing:13.442868pt;}
.lsa{letter-spacing:13.496002pt;}
.lsd{letter-spacing:13.602270pt;}
.ls11{letter-spacing:13.655404pt;}
.ls9b{letter-spacing:14.770109pt;}
.ls8{letter-spacing:16.471499pt;}
.lsaa{letter-spacing:19.217859pt;}
.lsa9{letter-spacing:20.080607pt;}
.ls6b{letter-spacing:20.350271pt;}
.lsa6{letter-spacing:20.369872pt;}
.lsa5{letter-spacing:21.234984pt;}
.ls3{letter-spacing:25.292137pt;}
.ls9c{letter-spacing:52.717591pt;}
.ls8e{letter-spacing:57.735711pt;}
.lse{letter-spacing:83.746667pt;}
.lse0{letter-spacing:85.214400pt;}
.ls8c{letter-spacing:147.785443pt;}
.lsa4{letter-spacing:201.248874pt;}
.ls8b{letter-spacing:223.048000pt;}
.ls8a{letter-spacing:223.361600pt;}
.lse3{letter-spacing:223.415238pt;}
.lsf7{letter-spacing:285.575393pt;}
.ls86{letter-spacing:365.111058pt;}
.ls8d{letter-spacing:739.549427pt;}
.ls1e{letter-spacing:842.337312pt;}
.ws192{word-spacing:-65.971696pt;}
.ws191{word-spacing:-54.368432pt;}
.wsd7{word-spacing:-53.440000pt;}
.ws18f{word-spacing:-52.371200pt;}
.ws190{word-spacing:-23.006094pt;}
.ws8b{word-spacing:-14.000000pt;}
.wsd8{word-spacing:-13.349312pt;}
.ws61{word-spacing:-13.283467pt;}
.ws1b4{word-spacing:-12.000000pt;}
.ws7f{word-spacing:-11.955200pt;}
.ws1ad{word-spacing:-11.065497pt;}
.ws8a{word-spacing:-10.810240pt;}
.wsd6{word-spacing:-10.801728pt;}
.ws13{word-spacing:-10.626800pt;}
.ws18e{word-spacing:-10.585693pt;}
.wsfc{word-spacing:-10.269728pt;}
.ws1ac{word-spacing:-9.721555pt;}
.ws11{word-spacing:-9.298400pt;}
.wsd9{word-spacing:-8.000000pt;}
.ws193{word-spacing:-7.966311pt;}
.ws1b3{word-spacing:-7.360000pt;}
.ws94{word-spacing:-3.163648pt;}
.ws21{word-spacing:-3.134898pt;}
.ws4c{word-spacing:-2.497292pt;}
.ws165{word-spacing:-2.474272pt;}
.ws9c{word-spacing:-2.468928pt;}
.ws9a{word-spacing:-2.463584pt;}
.ws9b{word-spacing:-2.452896pt;}
.ws138{word-spacing:-2.428800pt;}
.ws166{word-spacing:-2.426176pt;}
.ws9e{word-spacing:-2.420832pt;}
.ws136{word-spacing:-2.409600pt;}
.ws137{word-spacing:-2.395200pt;}
.ws120{word-spacing:-2.391024pt;}
.ws135{word-spacing:-2.380800pt;}
.ws9f{word-spacing:-2.356704pt;}
.ws18a{word-spacing:-2.284756pt;}
.ws16a{word-spacing:-2.178489pt;}
.ws91{word-spacing:-2.126912pt;}
.ws90{word-spacing:-2.105536pt;}
.ws101{word-spacing:-2.015520pt;}
.ws100{word-spacing:-1.997280pt;}
.ws13f{word-spacing:-1.881088pt;}
.ws69{word-spacing:-1.859685pt;}
.ws7a{word-spacing:-1.806551pt;}
.ws10b{word-spacing:-1.787034pt;}
.ws173{word-spacing:-1.756573pt;}
.ws2{word-spacing:-1.696326pt;}
.ws54{word-spacing:-1.647150pt;}
.ws53{word-spacing:-1.594016pt;}
.wsec{word-spacing:-1.565792pt;}
.wsbc{word-spacing:-1.540882pt;}
.ws12e{word-spacing:-1.533728pt;}
.ws1f3{word-spacing:-1.482445pt;}
.ws15f{word-spacing:-1.473600pt;}
.ws84{word-spacing:-1.434614pt;}
.ws174{word-spacing:-1.431658pt;}
.ws160{word-spacing:-1.406400pt;}
.ws38{word-spacing:-1.222079pt;}
.ws1{word-spacing:-1.175671pt;}
.ws72{word-spacing:-1.168945pt;}
.ws125{word-spacing:-1.164992pt;}
.ws10d{word-spacing:-1.157510pt;}
.ws1e2{word-spacing:-1.142400pt;}
.ws1d6{word-spacing:-1.137600pt;}
.ws1e3{word-spacing:-1.132800pt;}
.ws10e{word-spacing:-1.121973pt;}
.ws1e4{word-spacing:-1.118400pt;}
.ws2a{word-spacing:-1.115811pt;}
.ws1da{word-spacing:-1.113600pt;}
.ws1d3{word-spacing:-1.108800pt;}
.ws126{word-spacing:-1.100864pt;}
.ws1d9{word-spacing:-1.099200pt;}
.ws1db{word-spacing:-1.089600pt;}
.ws1d4{word-spacing:-1.084800pt;}
.ws16d{word-spacing:-1.071600pt;}
.ws1dc{word-spacing:-1.065600pt;}
.ws1d5{word-spacing:-1.022400pt;}
.ws5a{word-spacing:-1.009543pt;}
.ws40{word-spacing:-0.956410pt;}
.ws16e{word-spacing:-0.948480pt;}
.ws140{word-spacing:-0.871072pt;}
.wse7{word-spacing:-0.865728pt;}
.ws178{word-spacing:-0.832595pt;}
.ws179{word-spacing:-0.822442pt;}
.ws103{word-spacing:-0.802560pt;}
.ws86{word-spacing:-0.797008pt;}
.ws102{word-spacing:-0.793440pt;}
.wse8{word-spacing:-0.785568pt;}
.ws3a{word-spacing:-0.637606pt;}
.ws13e{word-spacing:-0.598528pt;}
.ws10c{word-spacing:-0.568602pt;}
.ws96{word-spacing:-0.539744pt;}
.ws182{word-spacing:-0.533064pt;}
.ws2c{word-spacing:-0.531339pt;}
.ws17a{word-spacing:-0.522910pt;}
.wsb1{word-spacing:-0.504000pt;}
.ws56{word-spacing:-0.478205pt;}
.ws1b6{word-spacing:-0.382566pt;}
.ws14f{word-spacing:-0.371937pt;}
.ws198{word-spacing:-0.350887pt;}
.ws3e{word-spacing:-0.318803pt;}
.wsa6{word-spacing:-0.304608pt;}
.ws1f1{word-spacing:-0.286925pt;}
.ws127{word-spacing:-0.272544pt;}
.ws3f{word-spacing:-0.265669pt;}
.ws148{word-spacing:-0.256512pt;}
.ws19{word-spacing:-0.239104pt;}
.wsf6{word-spacing:-0.213760pt;}
.ws26{word-spacing:-0.212535pt;}
.ws167{word-spacing:-0.197728pt;}
.ws1a{word-spacing:-0.191283pt;}
.ws168{word-spacing:-0.187040pt;}
.ws1b2{word-spacing:-0.163526pt;}
.ws25{word-spacing:-0.159402pt;}
.wsfd{word-spacing:-0.143462pt;}
.ws22{word-spacing:-0.106268pt;}
.ws17{word-spacing:-0.095642pt;}
.ws8d{word-spacing:-0.080864pt;}
.wsfe{word-spacing:-0.076821pt;}
.wse0{word-spacing:-0.076608pt;}
.ws194{word-spacing:-0.075076pt;}
.ws1ae{word-spacing:-0.068947pt;}
.ws24{word-spacing:-0.053134pt;}
.ws15{word-spacing:-0.047821pt;}
.ws12{word-spacing:-0.042507pt;}
.wsac{word-spacing:-0.032064pt;}
.ws81{word-spacing:-0.008610pt;}
.wsae{word-spacing:-0.005344pt;}
.ws1f2{word-spacing:-0.005009pt;}
.ws7e{word-spacing:-0.004907pt;}
.ws5{word-spacing:-0.003598pt;}
.ws1ba{word-spacing:-0.003430pt;}
.ws1bc{word-spacing:-0.002935pt;}
.ws83{word-spacing:-0.002449pt;}
.ws1f5{word-spacing:-0.001553pt;}
.ws0{word-spacing:0.000000pt;}
.ws29{word-spacing:0.001431pt;}
.wsab{word-spacing:0.005344pt;}
.wsaf{word-spacing:0.026720pt;}
.ws88{word-spacing:0.042507pt;}
.ws18{word-spacing:0.047821pt;}
.ws9d{word-spacing:0.048096pt;}
.ws1f{word-spacing:0.053134pt;}
.wsaa{word-spacing:0.058784pt;}
.ws116{word-spacing:0.071075pt;}
.ws89{word-spacing:0.085014pt;}
.ws1dd{word-spacing:0.091200pt;}
.ws82{word-spacing:0.095642pt;}
.wsf4{word-spacing:0.096000pt;}
.ws171{word-spacing:0.100320pt;}
.ws13b{word-spacing:0.100800pt;}
.wsa9{word-spacing:0.101536pt;}
.ws1e1{word-spacing:0.105600pt;}
.ws1b1{word-spacing:0.105811pt;}
.ws23{word-spacing:0.106268pt;}
.ws176{word-spacing:0.106613pt;}
.ws196{word-spacing:0.109980pt;}
.wsb3{word-spacing:0.110400pt;}
.wsba{word-spacing:0.115200pt;}
.ws142{word-spacing:0.117568pt;}
.ws1e5{word-spacing:0.124800pt;}
.ws1b0{word-spacing:0.125050pt;}
.ws1eb{word-spacing:0.129600pt;}
.wsb2{word-spacing:0.134400pt;}
.ws172{word-spacing:0.136800pt;}
.ws175{word-spacing:0.137074pt;}
.wse5{word-spacing:0.139200pt;}
.ws11a{word-spacing:0.143462pt;}
.wsb9{word-spacing:0.144000pt;}
.wse6{word-spacing:0.148800pt;}
.ws159{word-spacing:0.149632pt;}
.ws161{word-spacing:0.153600pt;}
.wsa7{word-spacing:0.158400pt;}
.ws31{word-spacing:0.159402pt;}
.ws1ab{word-spacing:0.160320pt;}
.wsf2{word-spacing:0.163200pt;}
.ws1d7{word-spacing:0.168000pt;}
.ws1cd{word-spacing:0.172800pt;}
.wsf3{word-spacing:0.177600pt;}
.ws104{word-spacing:0.177840pt;}
.wsb0{word-spacing:0.181696pt;}
.ws7{word-spacing:0.185968pt;}
.ws14a{word-spacing:0.187040pt;}
.ws1bb{word-spacing:0.191283pt;}
.ws1e6{word-spacing:0.196800pt;}
.wsad{word-spacing:0.197728pt;}
.ws158{word-spacing:0.203072pt;}
.ws1e{word-spacing:0.212535pt;}
.ws1ed{word-spacing:0.239104pt;}
.ws1ea{word-spacing:0.244800pt;}
.wsa8{word-spacing:0.259200pt;}
.ws9{word-spacing:0.260355pt;}
.ws28{word-spacing:0.265669pt;}
.ws34{word-spacing:0.318803pt;}
.wsa4{word-spacing:0.368736pt;}
.ws186{word-spacing:0.371937pt;}
.wsa3{word-spacing:0.384768pt;}
.ws1d8{word-spacing:0.398400pt;}
.ws14c{word-spacing:0.400800pt;}
.wsa2{word-spacing:0.406144pt;}
.ws187{word-spacing:0.425071pt;}
.ws141{word-spacing:0.443552pt;}
.wsf8{word-spacing:0.467579pt;}
.ws14d{word-spacing:0.470272pt;}
.ws75{word-spacing:0.478205pt;}
.wsd4{word-spacing:0.510086pt;}
.ws1ef{word-spacing:0.526029pt;}
.ws20{word-spacing:0.531339pt;}
.ws30{word-spacing:0.584473pt;}
.ws42{word-spacing:0.637606pt;}
.ws18b{word-spacing:0.669491pt;}
.ws17e{word-spacing:0.680291pt;}
.wsf9{word-spacing:0.690740pt;}
.ws107{word-spacing:0.695522pt;}
.ws17d{word-spacing:0.705675pt;}
.ws1b7{word-spacing:0.717312pt;}
.ws60{word-spacing:0.743874pt;}
.ws162{word-spacing:0.764192pt;}
.ws6e{word-spacing:0.797008pt;}
.ws18d{word-spacing:0.812954pt;}
.wsdb{word-spacing:0.860774pt;}
.ws2b{word-spacing:0.903276pt;}
.ws68{word-spacing:0.956410pt;}
.ws78{word-spacing:1.009543pt;}
.ws152{word-spacing:1.036736pt;}
.ws5f{word-spacing:1.062677pt;}
.wsee{word-spacing:1.074144pt;}
.wsda{word-spacing:1.099878pt;}
.ws45{word-spacing:1.115811pt;}
.wsef{word-spacing:1.122240pt;}
.ws5d{word-spacing:1.168945pt;}
.ws58{word-spacing:1.222079pt;}
.ws115{word-spacing:1.269200pt;}
.ws37{word-spacing:1.275213pt;}
.ws13d{word-spacing:1.282560pt;}
.ws1b9{word-spacing:1.291162pt;}
.ws46{word-spacing:1.328347pt;}
.wsa5{word-spacing:1.336000pt;}
.ws157{word-spacing:1.346688pt;}
.ws13c{word-spacing:1.357376pt;}
.ws47{word-spacing:1.381481pt;}
.ws133{word-spacing:1.421504pt;}
.ws11f{word-spacing:1.434614pt;}
.ws153{word-spacing:1.474944pt;}
.ws33{word-spacing:1.487748pt;}
.ws169{word-spacing:1.540882pt;}
.ws5c{word-spacing:1.594016pt;}
.ws10f{word-spacing:1.624576pt;}
.ws3c{word-spacing:1.647150pt;}
.ws62{word-spacing:1.700284pt;}
.ws1bf{word-spacing:1.708800pt;}
.ws143{word-spacing:1.715424pt;}
.ws1c0{word-spacing:1.728000pt;}
.ws14b{word-spacing:1.752832pt;}
.ws8{word-spacing:1.785293pt;}
.ws65{word-spacing:1.806551pt;}
.ws11b{word-spacing:1.817190pt;}
.ws2d{word-spacing:1.859685pt;}
.ws4d{word-spacing:1.912819pt;}
.wsf1{word-spacing:1.955904pt;}
.ws1b8{word-spacing:1.960653pt;}
.ws15a{word-spacing:1.961248pt;}
.wsf0{word-spacing:1.987968pt;}
.ws2f{word-spacing:2.019087pt;}
.ws1be{word-spacing:2.044800pt;}
.wseb{word-spacing:2.046752pt;}
.ws1bd{word-spacing:2.049600pt;}
.ws3b{word-spacing:2.072221pt;}
.ws12d{word-spacing:2.078816pt;}
.ws14e{word-spacing:2.104115pt;}
.ws43{word-spacing:2.125355pt;}
.ws184{word-spacing:2.132256pt;}
.ws49{word-spacing:2.178489pt;}
.ws183{word-spacing:2.208408pt;}
.ws4{word-spacing:2.231616pt;}
.ws5e{word-spacing:2.231622pt;}
.ws32{word-spacing:2.284756pt;}
.ws95{word-spacing:2.292576pt;}
.ws144{word-spacing:2.324640pt;}
.wsb5{word-spacing:2.328000pt;}
.ws123{word-spacing:2.335328pt;}
.ws52{word-spacing:2.337890pt;}
.ws154{word-spacing:2.346016pt;}
.wsb4{word-spacing:2.371200pt;}
.wsd5{word-spacing:2.391024pt;}
.ws12c{word-spacing:2.394112pt;}
.wsb6{word-spacing:2.404800pt;}
.ws121{word-spacing:2.419200pt;}
.ws124{word-spacing:2.442208pt;}
.ws41{word-spacing:2.444158pt;}
.ws122{word-spacing:2.462400pt;}
.ws17b{word-spacing:2.513016pt;}
.ws105{word-spacing:2.518093pt;}
.ws106{word-spacing:2.528246pt;}
.ws14{word-spacing:2.550432pt;}
.ws17c{word-spacing:2.604398pt;}
.wsea{word-spacing:2.661312pt;}
.ws97{word-spacing:2.666656pt;}
.ws1cf{word-spacing:2.668800pt;}
.ws3d{word-spacing:2.709827pt;}
.ws1ce{word-spacing:2.712000pt;}
.ws8c{word-spacing:2.725786pt;}
.ws145{word-spacing:2.741472pt;}
.wse9{word-spacing:2.757504pt;}
.ws177{word-spacing:2.777010pt;}
.ws16b{word-spacing:2.816095pt;}
.ws114{word-spacing:2.827778pt;}
.ws1b{word-spacing:2.861926pt;}
.ws16c{word-spacing:2.869229pt;}
.ws87{word-spacing:2.869248pt;}
.ws134{word-spacing:2.917824pt;}
.ws151{word-spacing:2.922363pt;}
.ws155{word-spacing:2.960576pt;}
.ws1ee{word-spacing:3.012710pt;}
.ws1e9{word-spacing:3.024000pt;}
.ws39{word-spacing:3.028630pt;}
.ws156{word-spacing:3.030048pt;}
.ws1e7{word-spacing:3.043200pt;}
.ws1e8{word-spacing:3.048000pt;}
.ws17f{word-spacing:3.081618pt;}
.ws4a{word-spacing:3.081764pt;}
.ws185{word-spacing:3.127309pt;}
.ws66{word-spacing:3.134898pt;}
.ws170{word-spacing:3.146400pt;}
.ws1c{word-spacing:3.188032pt;}
.ws16f{word-spacing:3.192000pt;}
.ws11e{word-spacing:3.241166pt;}
.ws6f{word-spacing:3.294300pt;}
.wse2{word-spacing:3.336000pt;}
.ws6a{word-spacing:3.347434pt;}
.ws1ec{word-spacing:3.347456pt;}
.wse4{word-spacing:3.350400pt;}
.ws12f{word-spacing:3.350688pt;}
.ws130{word-spacing:3.361376pt;}
.wse3{word-spacing:3.364800pt;}
.ws51{word-spacing:3.400567pt;}
.ws50{word-spacing:3.453701pt;}
.ws113{word-spacing:3.457301pt;}
.ws112{word-spacing:3.472531pt;}
.ws188{word-spacing:3.506835pt;}
.ws7b{word-spacing:3.559969pt;}
.wsa0{word-spacing:3.591168pt;}
.wsfa{word-spacing:3.613103pt;}
.wsa1{word-spacing:3.649952pt;}
.ws6c{word-spacing:3.666237pt;}
.ws119{word-spacing:3.825638pt;}
.ws27{word-spacing:3.878772pt;}
.ws5b{word-spacing:3.931906pt;}
.ws1cc{word-spacing:3.960000pt;}
.ws1cb{word-spacing:3.974400pt;}
.ws1de{word-spacing:3.979200pt;}
.ws1df{word-spacing:3.988800pt;}
.ws1e0{word-spacing:4.008000pt;}
.ws4f{word-spacing:4.091308pt;}
.ws1f0{word-spacing:4.112589pt;}
.ws63{word-spacing:4.144442pt;}
.ws70{word-spacing:4.197575pt;}
.ws8f{word-spacing:4.221760pt;}
.ws164{word-spacing:4.227104pt;}
.ws16{word-spacing:4.256051pt;}
.ws163{word-spacing:4.259168pt;}
.ws139{word-spacing:4.267200pt;}
.ws59{word-spacing:4.303843pt;}
.ws13a{word-spacing:4.310400pt;}
.ws4b{word-spacing:4.463245pt;}
.ws149{word-spacing:4.510336pt;}
.wsfb{word-spacing:4.569513pt;}
.ws35{word-spacing:4.622646pt;}
.ws44{word-spacing:4.675780pt;}
.ws73{word-spacing:4.728914pt;}
.ws67{word-spacing:4.835182pt;}
.ws74{word-spacing:4.888316pt;}
.ws1d{word-spacing:4.941450pt;}
.ws15d{word-spacing:4.944000pt;}
.ws15e{word-spacing:4.948800pt;}
.ws15c{word-spacing:4.953600pt;}
.ws189{word-spacing:5.047717pt;}
.ws48{word-spacing:5.100851pt;}
.ws71{word-spacing:5.153985pt;}
.ws11d{word-spacing:5.207119pt;}
.ws1b5{word-spacing:5.212467pt;}
.ws6d{word-spacing:5.260253pt;}
.wsf{word-spacing:5.393072pt;}
.ws10{word-spacing:5.467459pt;}
.ws15b{word-spacing:5.498976pt;}
.ws132{word-spacing:5.509664pt;}
.ws85{word-spacing:5.525922pt;}
.ws1c8{word-spacing:5.572800pt;}
.ws1c7{word-spacing:5.577600pt;}
.ws131{word-spacing:5.595168pt;}
.wsb7{word-spacing:5.596800pt;}
.wsb8{word-spacing:5.606400pt;}
.ws79{word-spacing:5.632190pt;}
.ws146{word-spacing:5.632576pt;}
.ws1f4{word-spacing:5.690675pt;}
.ws147{word-spacing:5.766176pt;}
.ws92{word-spacing:5.819616pt;}
.ws4e{word-spacing:5.844725pt;}
.wsdc{word-spacing:5.881958pt;}
.ws181{word-spacing:5.960163pt;}
.ws180{word-spacing:6.000778pt;}
.ws55{word-spacing:6.004127pt;}
.ws64{word-spacing:6.057261pt;}
.ws150{word-spacing:6.163529pt;}
.ws93{word-spacing:6.183008pt;}
.ws117{word-spacing:6.216662pt;}
.ws18c{word-spacing:6.264525pt;}
.ws76{word-spacing:6.269796pt;}
.ws10a{word-spacing:6.452613pt;}
.wsed{word-spacing:6.455552pt;}
.ws108{word-spacing:6.508458pt;}
.ws77{word-spacing:6.535466pt;}
.ws109{word-spacing:6.559226pt;}
.ws36{word-spacing:6.588599pt;}
.ws11c{word-spacing:6.854269pt;}
.ws118{word-spacing:7.013670pt;}
.ws111{word-spacing:7.046598pt;}
.ws2e{word-spacing:7.066804pt;}
.ws128{word-spacing:7.086144pt;}
.ws110{word-spacing:7.087213pt;}
.ws129{word-spacing:7.144928pt;}
.wsbb{word-spacing:7.173072pt;}
.ws57{word-spacing:7.279340pt;}
.ws6b{word-spacing:7.491875pt;}
.wsd{word-spacing:7.699075pt;}
.ws1c9{word-spacing:7.819200pt;}
.ws1ca{word-spacing:7.833600pt;}
.ws99{word-spacing:8.112192pt;}
.ws1c1{word-spacing:8.116800pt;}
.ws1c3{word-spacing:8.145600pt;}
.ws98{word-spacing:8.160288pt;}
.ws1c2{word-spacing:8.188800pt;}
.ws1d2{word-spacing:8.779200pt;}
.ws1d1{word-spacing:8.817600pt;}
.ws1d0{word-spacing:8.827200pt;}
.ws1af{word-spacing:9.292550pt;}
.wsff{word-spacing:9.808803pt;}
.ws1c5{word-spacing:10.056000pt;}
.ws1c6{word-spacing:10.060800pt;}
.ws195{word-spacing:10.118555pt;}
.ws1c4{word-spacing:10.132800pt;}
.wse1{word-spacing:10.325056pt;}
.ws8e{word-spacing:10.329312pt;}
.wsf5{word-spacing:10.912448pt;}
.ws6{word-spacing:13.761632pt;}
.ws3{word-spacing:13.763148pt;}
.wsa{word-spacing:14.348669pt;}
.wsb{word-spacing:14.356730pt;}
.ws12a{word-spacing:15.112832pt;}
.ws12b{word-spacing:15.139552pt;}
.wsc{word-spacing:15.732893pt;}
.wse{word-spacing:24.399002pt;}
.ws80{word-spacing:71.192533pt;}
.ws7d{word-spacing:73.587200pt;}
.ws197{word-spacing:74.979847pt;}
.ws199{word-spacing:81.008435pt;}
.ws19c{word-spacing:145.370667pt;}
.ws19f{word-spacing:148.276582pt;}
.ws1a7{word-spacing:148.435763pt;}
.ws19d{word-spacing:149.064875pt;}
.wsde{word-spacing:149.241745pt;}
.wsdf{word-spacing:154.667733pt;}
.ws1a4{word-spacing:154.970667pt;}
.ws1a2{word-spacing:164.570667pt;}
.ws1a1{word-spacing:167.659725pt;}
.ws1a5{word-spacing:171.341926pt;}
.wsf7{word-spacing:173.321557pt;}
.wsdd{word-spacing:176.043733pt;}
.ws19b{word-spacing:177.850505pt;}
.ws1a8{word-spacing:177.852638pt;}
.ws19a{word-spacing:190.121916pt;}
.ws1aa{word-spacing:190.278963pt;}
.ws19e{word-spacing:190.518067pt;}
.ws1a6{word-spacing:190.565888pt;}
.ws1a9{word-spacing:190.887475pt;}
.ws1a3{word-spacing:210.075494pt;}
.ws1a0{word-spacing:219.695838pt;}
.wsc0{word-spacing:227.387904pt;}
.wscb{word-spacing:232.839475pt;}
.wsd3{word-spacing:261.866701pt;}
.wsbd{word-spacing:264.640307pt;}
.wsd0{word-spacing:264.927232pt;}
.wsd2{word-spacing:268.131226pt;}
.wscf{word-spacing:269.422387pt;}
.wsc4{word-spacing:271.526502pt;}
.wsca{word-spacing:273.008947pt;}
.wsc3{word-spacing:274.108826pt;}
.wscc{word-spacing:275.543450pt;}
.wsbe{word-spacing:280.421171pt;}
.wsc7{word-spacing:282.764390pt;}
.wsc6{word-spacing:285.011968pt;}
.wsc5{word-spacing:285.920563pt;}
.wscd{word-spacing:286.637875pt;}
.wsc9{word-spacing:288.407245pt;}
.wsc1{word-spacing:289.411482pt;}
.wsc2{word-spacing:292.089446pt;}
.wsbf{word-spacing:293.667533pt;}
.wsd1{word-spacing:297.588838pt;}
.wsc8{word-spacing:304.618496pt;}
.wsce{word-spacing:316.286771pt;}
.ws7c{word-spacing:1140.430438pt;}
._d5{margin-left:-107.543519pt;}
._d6{margin-left:-62.414601pt;}
._a3{margin-left:-53.111169pt;}
._a2{margin-left:-52.163667pt;}
._a7{margin-left:-51.106837pt;}
._d7{margin-left:-28.482409pt;}
._a{margin-left:-19.680834pt;}
._a1{margin-left:-15.868444pt;}
._9f{margin-left:-14.894013pt;}
._a0{margin-left:-13.829895pt;}
._93{margin-left:-12.773336pt;}
._94{margin-left:-10.199229pt;}
._95{margin-left:-9.183352pt;}
._92{margin-left:-7.785041pt;}
._18{margin-left:-6.794409pt;}
._1{margin-left:-5.897859pt;}
._1b{margin-left:-4.835182pt;}
._0{margin-left:-3.931906pt;}
._4{margin-left:-2.242231pt;}
._2{margin-left:-1.175671pt;}
._3{width:0.969929pt;}
._7{width:2.045648pt;}
._9{width:3.528098pt;}
._a6{width:5.910624pt;}
._a4{width:7.772676pt;}
._5{width:9.808495pt;}
._6{width:11.530016pt;}
._10{width:13.175899pt;}
._d{width:14.633165pt;}
._e{width:16.030412pt;}
._b{width:17.231389pt;}
._c{width:18.124083pt;}
._f{width:19.075058pt;}
._15{width:20.277355pt;}
._90{width:21.200413pt;}
._13{width:22.316224pt;}
._14{width:24.016508pt;}
._1e{width:25.185453pt;}
._17{width:26.141862pt;}
._19{width:27.204540pt;}
._8{width:29.011008pt;}
._1a{width:30.186763pt;}
._16{width:32.199123pt;}
._1f{width:33.527470pt;}
._1c{width:35.447015pt;}
._8f{width:38.096982pt;}
._1d{width:39.478463pt;}
._a9{width:40.677019pt;}
._5a{width:41.827488pt;}
._a5{width:43.100439pt;}
._5b{width:44.248320pt;}
._a8{width:45.636831pt;}
._59{width:49.506816pt;}
._b7{width:58.247284pt;}
._aa{width:59.856660pt;}
._b9{width:61.396514pt;}
._ca{width:63.064521pt;}
._ab{width:63.978296pt;}
._b8{width:72.669462pt;}
._71{width:73.787494pt;}
._bb{width:75.269214pt;}
._5c{width:81.227697pt;}
._72{width:84.841062pt;}
._70{width:91.624653pt;}
._6d{width:94.848489pt;}
._d1{width:101.044487pt;}
._6e{width:109.509632pt;}
._ad{width:110.848614pt;}
._9b{width:112.995647pt;}
._6f{width:114.865562pt;}
._ac{width:123.938762pt;}
._9a{width:126.166847pt;}
._cf{width:128.160673pt;}
._d4{width:129.111457pt;}
._9d{width:134.896169pt;}
._ce{width:136.155200pt;}
._97{width:138.549609pt;}
._c6{width:140.243864pt;}
._b0{width:143.318938pt;}
._cd{width:144.585727pt;}
._9e{width:147.468190pt;}
._96{width:150.478248pt;}
._98{width:151.720809pt;}
._c7{width:158.275194pt;}
._c8{width:162.102164pt;}
._99{width:164.402590pt;}
._8a{width:167.227254pt;}
._8c{width:168.219918pt;}
._89{width:169.232127pt;}
._8d{width:170.126706pt;}
._c1{width:171.121267pt;}
._8b{width:172.356030pt;}
._65{width:174.582336pt;}
._61{width:176.158400pt;}
._5f{width:178.078400pt;}
._b6{width:179.218738pt;}
._ae{width:180.427878pt;}
._36{width:182.340710pt;}
._60{width:183.518400pt;}
._b4{width:186.107964pt;}
._7b{width:188.387652pt;}
._82{width:189.845197pt;}
._be{width:190.929814pt;}
._64{width:191.838720pt;}
._37{width:193.004749pt;}
._35{width:194.343731pt;}
._86{width:195.653385pt;}
._9c{width:197.506409pt;}
._73{width:198.448418pt;}
._58{width:199.678560pt;}
._d2{width:200.680225pt;}
._83{width:201.657446pt;}
._88{width:202.696724pt;}
._7e{width:205.308988pt;}
._7a{width:206.875360pt;}
._74{width:207.801280pt;}
._79{width:209.521715pt;}
._ba{width:211.742642pt;}
._5e{width:212.720640pt;}
._77{width:214.207659pt;}
._62{width:215.837867pt;}
._5d{width:217.289920pt;}
._7d{width:218.818406pt;}
._7f{width:219.707776pt;}
._81{width:221.308544pt;}
._c9{width:222.222908pt;}
._78{width:223.196279pt;}
._68{width:224.973920pt;}
._75{width:226.404267pt;}
._67{width:227.892151pt;}
._63{width:228.916544pt;}
._85{width:231.348506pt;}
._34{width:233.508966pt;}
._c4{width:235.399476pt;}
._6a{width:236.889280pt;}
._80{width:238.378487pt;}
._3f{width:239.658001pt;}
._69{width:240.861568pt;}
._6c{width:242.758464pt;}
._4c{width:244.794675pt;}
._8e{width:245.768683pt;}
._66{width:246.860288pt;}
._bf{width:248.640042pt;}
._84{width:250.072192pt;}
._bc{width:251.389864pt;}
._c0{width:252.771265pt;}
._bd{width:255.840130pt;}
._cc{width:258.092596pt;}
._6b{width:261.157568pt;}
._4b{width:262.727475pt;}
._76{width:264.201920pt;}
._7c{width:265.189175pt;}
._d3{width:268.017018pt;}
._3e{width:269.278925pt;}
._c2{width:270.824002pt;}
._c5{width:271.975172pt;}
._c3{width:275.791673pt;}
._53{width:276.882432pt;}
._d0{width:278.693862pt;}
._20{width:280.144847pt;}
._54{width:281.234125pt;}
._4a{width:285.920563pt;}
._51{width:287.307366pt;}
._cb{width:289.964934pt;}
._55{width:291.754701pt;}
._52{width:294.815232pt;}
._43{width:296.967168pt;}
._4e{width:298.353971pt;}
._48{width:299.453850pt;}
._3b{width:301.366682pt;}
._49{width:302.849126pt;}
._4d{width:303.853363pt;}
._3d{width:305.622733pt;}
._38{width:306.531328pt;}
._45{width:311.409050pt;}
._46{width:312.604570pt;}
._41{width:315.952026pt;}
._47{width:318.247424pt;}
._39{width:322.264371pt;}
._42{width:326.902989pt;}
._50{width:328.241971pt;}
._3a{width:331.254682pt;}
._40{width:333.980467pt;}
._3c{width:335.510733pt;}
._44{width:341.297050pt;}
._4f{width:346.174771pt;}
._d8{width:348.225729pt;}
._27{width:358.273434pt;}
._21{width:408.628736pt;}
._2a{width:411.749856pt;}
._23{width:436.269158pt;}
._22{width:457.884160pt;}
._af{width:472.612966pt;}
._b3{width:493.168307pt;}
._25{width:496.379904pt;}
._b2{width:512.344448pt;}
._b1{width:522.591821pt;}
._28{width:536.836301pt;}
._26{width:540.948890pt;}
._24{width:572.701901pt;}
._32{width:580.620239pt;}
._2b{width:612.836969pt;}
._2c{width:613.913376pt;}
._30{width:614.853920pt;}
._2d{width:643.479456pt;}
._2f{width:734.655712pt;}
._33{width:756.200465pt;}
._31{width:761.047465pt;}
._2e{width:819.192439pt;}
._11{width:984.041680pt;}
._87{width:1852.327389pt;}
._91{width:1910.000275pt;}
._57{width:1948.979872pt;}
._29{width:1970.949344pt;}
._56{width:2333.298933pt;}
._12{width:2354.552267pt;}
._b5{width:2937.763584pt;}
.fs1f{font-size:29.440000pt;}
.fs14{font-size:32.000000pt;}
.fs1a{font-size:36.442411pt;}
.fsa{font-size:37.193600pt;}
.fs9{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs1b{font-size:38.304000pt;}
.fsd{font-size:40.381867pt;}
.fs15{font-size:40.432000pt;}
.fs18{font-size:41.708800pt;}
.fs8{font-size:41.988267pt;}
.fsb{font-size:42.507200pt;}
.fsf{font-size:42.560000pt;}
.fs1e{font-size:44.138400pt;}
.fs17{font-size:45.600000pt;}
.fsc{font-size:47.820800pt;}
.fs11{font-size:48.000000pt;}
.fs1c{font-size:48.096000pt;}
.fs1d{font-size:48.924000pt;}
.fse{font-size:49.829333pt;}
.fs21{font-size:50.662400pt;}
.fs16{font-size:50.768000pt;}
.fs19{font-size:52.371200pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs10{font-size:53.440000pt;}
.fs13{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs22{font-size:56.067733pt;}
.fs12{font-size:58.560000pt;}
.fs20{font-size:62.146133pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.fs5{font-size:134.387200pt;}
.y34d{bottom:-642.110267pt;}
.y2e9{bottom:-635.951661pt;}
.y1c7{bottom:-556.610267pt;}
.y1e2{bottom:-502.530267pt;}
.y37f{bottom:-498.511600pt;}
.y1e1{bottom:-483.810267pt;}
.y1e0{bottom:-465.170267pt;}
.y309{bottom:-447.791661pt;}
.y1df{bottom:-446.530267pt;}
.y1de{bottom:-427.890267pt;}
.y308{bottom:-426.937261pt;}
.y270{bottom:-422.852933pt;}
.y399{bottom:-421.231600pt;}
.y1dd{bottom:-409.250133pt;}
.y305{bottom:-408.983661pt;}
.y307{bottom:-408.670061pt;}
.y398{bottom:-405.871600pt;}
.y306{bottom:-391.030061pt;}
.y1dc{bottom:-390.610267pt;}
.y397{bottom:-390.511600pt;}
.y396{bottom:-375.071600pt;}
.y304{bottom:-372.762861pt;}
.y1db{bottom:-371.890267pt;}
.y395{bottom:-359.712000pt;}
.y237{bottom:-356.235600pt;}
.y301{bottom:-354.809261pt;}
.y303{bottom:-354.495661pt;}
.y1da{bottom:-353.250267pt;}
.y394{bottom:-344.352000pt;}
.y302{bottom:-336.855661pt;}
.y1d9{bottom:-334.610267pt;}
.y393{bottom:-328.992000pt;}
.y300{bottom:-318.509931pt;}
.y1d8{bottom:-315.970267pt;}
.y392{bottom:-313.632000pt;}
.y29a{bottom:-307.029487pt;}
.y258{bottom:-301.988352pt;}
.y2fd{bottom:-300.556331pt;}
.y2ff{bottom:-300.242861pt;}
.y391{bottom:-298.191600pt;}
.y1d7{bottom:-297.330267pt;}
.y257{bottom:-284.868848pt;}
.y390{bottom:-282.831600pt;}
.y2fe{bottom:-282.602861pt;}
.y1d6{bottom:-278.610267pt;}
.y256{bottom:-267.829504pt;}
.y38f{bottom:-267.471600pt;}
.y2fc{bottom:-264.335531pt;}
.y1d5{bottom:-259.970267pt;}
.y2ab{bottom:-252.531543pt;}
.y38e{bottom:-252.111600pt;}
.y1d4{bottom:-251.010267pt;}
.y255{bottom:-250.710000pt;}
.y2f9{bottom:-246.382061pt;}
.y2fb{bottom:-246.068331pt;}
.y2aa{bottom:-236.344167pt;}
.y254{bottom:-233.670656pt;}
.y38d{bottom:-232.431600pt;}
.y2fa{bottom:-228.428331pt;}
.y2a9{bottom:-220.080638pt;}
.y253{bottom:-216.551152pt;}
.y1d3{bottom:-215.330133pt;}
.y2f8{bottom:-210.161261pt;}
.y2a8{bottom:-203.817109pt;}
.y38c{bottom:-199.631867pt;}
.y252{bottom:-199.431648pt;}
.y2f5{bottom:-192.207661pt;}
.y2f7{bottom:-191.894061pt;}
.y2a7{bottom:-187.629732pt;}
.y1d2{bottom:-183.567811pt;}
.y251{bottom:-182.392304pt;}
.y38b{bottom:-180.831600pt;}
.y2f6{bottom:-174.254061pt;}
.y2a6{bottom:-171.366203pt;}
.y38a{bottom:-168.831867pt;}
.y1d1{bottom:-166.448307pt;}
.y250{bottom:-165.272800pt;}
.y2f4{bottom:-155.986861pt;}
.y2a5{bottom:-155.178827pt;}
.y389{bottom:-153.471867pt;}
.y1d0{bottom:-149.328803pt;}
.y24f{bottom:-148.153296pt;}
.y2a4{bottom:-138.915298pt;}
.y388{bottom:-138.111867pt;}
.y2f1{bottom:-138.033261pt;}
.y2f3{bottom:-137.719661pt;}
.y16f{bottom:-132.780933pt;}
.y1cf{bottom:-132.289459pt;}
.y24e{bottom:-131.113952pt;}
.y280{bottom:-129.491285pt;}
.y387{bottom:-122.671467pt;}
.y2a3{bottom:-122.651769pt;}
.y2f2{bottom:-120.079661pt;}
.y1ce{bottom:-115.169955pt;}
.y24d{bottom:-113.994448pt;}
.y27f{bottom:-112.451941pt;}
.y386{bottom:-107.311467pt;}
.y2a2{bottom:-106.464392pt;}
.y2f0{bottom:-101.812461pt;}
.y1cd{bottom:-98.129275pt;}
.y24c{bottom:-96.955104pt;}
.y27e{bottom:-95.332437pt;}
.y385{bottom:-91.951467pt;}
.y2a1{bottom:-90.200863pt;}
.y2ed{bottom:-83.858861pt;}
.y2ef{bottom:-83.466861pt;}
.y1cc{bottom:-81.009771pt;}
.y24b{bottom:-79.835600pt;}
.y27d{bottom:-78.212933pt;}
.y2a0{bottom:-74.013487pt;}
.y354{bottom:-73.938000pt;}
.y384{bottom:-73.231467pt;}
.y2ee{bottom:-65.905261pt;}
.y1cb{bottom:-63.890267pt;}
.y383{bottom:-61.151600pt;}
.y24a{bottom:-47.115867pt;}
.y18e{bottom:-46.381333pt;}
.y27c{bottom:-45.572400pt;}
.y29f{bottom:-42.929107pt;}
.y2ec{bottom:-42.698563pt;}
.y382{bottom:-42.431600pt;}
.y213{bottom:-41.926540pt;}
.y249{bottom:-31.675467pt;}
.y1ca{bottom:-31.170667pt;}
.y18d{bottom:-30.940933pt;}
.y27b{bottom:-30.052800pt;}
.y29e{bottom:-28.185487pt;}
.y357{bottom:-26.417950pt;}
.y381{bottom:-26.191512pt;}
.y2eb{bottom:-24.980077pt;}
.y248{bottom:-16.315467pt;}
.y1c9{bottom:-15.730267pt;}
.y18c{bottom:-15.580933pt;}
.y27a{bottom:-14.692800pt;}
.y29d{bottom:-13.593487pt;}
.y350{bottom:-0.028667pt;}
.y0{bottom:0.000000pt;}
.y356{bottom:0.581942pt;}
.y35f{bottom:2.376000pt;}
.y31d{bottom:2.430792pt;}
.y2a{bottom:3.044747pt;}
.y380{bottom:3.248584pt;}
.y247{bottom:3.607520pt;}
.y2ea{bottom:3.792660pt;}
.y231{bottom:3.830347pt;}
.y1c8{bottom:4.189093pt;}
.y18b{bottom:4.339067pt;}
.y279{bottom:5.227200pt;}
.y29c{bottom:5.330787pt;}
.y326{bottom:7.557032pt;}
.y37b{bottom:12.102000pt;}
.y29{bottom:12.578910pt;}
.y23{bottom:13.168350pt;}
.y3b2{bottom:17.968400pt;}
.y325{bottom:19.552051pt;}
.y69{bottom:28.346667pt;}
.y37a{bottom:28.734000pt;}
.y324{bottom:31.547071pt;}
.y3b1{bottom:39.088400pt;}
.y323{bottom:43.542090pt;}
.y379{bottom:45.366000pt;}
.y322{bottom:55.615461pt;}
.y5{bottom:59.133337pt;}
.y3b0{bottom:60.208400pt;}
.y378{bottom:61.926000pt;}
.y321{bottom:67.610480pt;}
.y3ae{bottom:75.568400pt;}
.y233{bottom:77.574667pt;}
.y377{bottom:78.558000pt;}
.y320{bottom:79.605500pt;}
.y3cf{bottom:81.220000pt;}
.y4{bottom:86.333337pt;}
.y26c{bottom:88.274667pt;}
.y2bb{bottom:89.489333pt;}
.y3af{bottom:90.128774pt;}
.yd5{bottom:90.854667pt;}
.y40{bottom:91.398667pt;}
.y31f{bottom:91.600519pt;}
.y68{bottom:92.108000pt;}
.y122{bottom:92.821333pt;}
.y160{bottom:93.346667pt;}
.y2d7{bottom:94.441333pt;}
.y232{bottom:94.670667pt;}
.y10a{bottom:94.840000pt;}
.y376{bottom:95.190000pt;}
.y3ce{bottom:96.562667pt;}
.y9f{bottom:100.669333pt;}
.y2e6{bottom:102.984000pt;}
.y31e{bottom:103.595539pt;}
.y31b{bottom:103.598754pt;}
.y26b{bottom:105.012000pt;}
.y2ba{bottom:106.226667pt;}
.y3ad{bottom:106.528959pt;}
.y3f{bottom:107.298667pt;}
.yd4{bottom:107.592000pt;}
.y67{bottom:108.844000pt;}
.y121{bottom:109.558667pt;}
.y15f{bottom:110.084000pt;}
.y2d6{bottom:111.178667pt;}
.y109{bottom:111.577333pt;}
.y375{bottom:111.822000pt;}
.y3cd{bottom:111.905333pt;}
.y210{bottom:114.608253pt;}
.y31a{bottom:115.593774pt;}
.y9e{bottom:117.406667pt;}
.y26a{bottom:121.749333pt;}
.y2b9{bottom:122.964000pt;}
.y296{bottom:123.132000pt;}
.y3e{bottom:123.200000pt;}
.y21{bottom:123.790666pt;}
.y196{bottom:124.204000pt;}
.yd3{bottom:124.329333pt;}
.y66{bottom:125.581333pt;}
.y120{bottom:126.296000pt;}
.y15e{bottom:126.820000pt;}
.y3cc{bottom:127.246667pt;}
.y319{bottom:127.667144pt;}
.y2d5{bottom:127.916000pt;}
.y108{bottom:128.314667pt;}
.y374{bottom:128.454000pt;}
.y3ac{bottom:131.488400pt;}
.y9d{bottom:134.144000pt;}
.y269{bottom:138.486667pt;}
.y3d{bottom:139.100000pt;}
.y318{bottom:139.662164pt;}
.y2b8{bottom:139.701333pt;}
.y295{bottom:139.869333pt;}
.y195{bottom:140.941333pt;}
.yd2{bottom:141.066667pt;}
.y1f7{bottom:141.461333pt;}
.y65{bottom:142.318667pt;}
.y3cb{bottom:142.589333pt;}
.y11f{bottom:143.033333pt;}
.y15d{bottom:143.557333pt;}
.y34a{bottom:143.569333pt;}
.y2d4{bottom:144.653333pt;}
.y373{bottom:145.014000pt;}
.y107{bottom:145.052000pt;}
.y9c{bottom:150.881333pt;}
.y317{bottom:151.657183pt;}
.y3c{bottom:155.000000pt;}
.y268{bottom:155.224000pt;}
.y2b7{bottom:156.438667pt;}
.y294{bottom:156.606667pt;}
.y194{bottom:157.678667pt;}
.yd1{bottom:157.804000pt;}
.y3ca{bottom:157.932000pt;}
.y64{bottom:159.056000pt;}
.y11e{bottom:159.770667pt;}
.y15c{bottom:160.294667pt;}
.y1f6{bottom:161.121333pt;}
.y2d3{bottom:161.390667pt;}
.y106{bottom:161.789333pt;}
.y372{bottom:162.222000pt;}
.y316{bottom:163.652203pt;}
.y9b{bottom:167.618667pt;}
.y3ab{bottom:167.808533pt;}
.y3b{bottom:170.901333pt;}
.y267{bottom:171.961333pt;}
.y2b6{bottom:173.176000pt;}
.y3c9{bottom:173.274667pt;}
.y293{bottom:173.344000pt;}
.y193{bottom:174.416000pt;}
.yd0{bottom:174.541333pt;}
.y18{bottom:175.052000pt;}
.y1c2{bottom:175.589333pt;}
.y315{bottom:175.647222pt;}
.y63{bottom:175.793333pt;}
.y11d{bottom:176.508000pt;}
.y15b{bottom:177.032000pt;}
.y3aa{bottom:177.088400pt;}
.y2d2{bottom:178.128000pt;}
.y105{bottom:178.526667pt;}
.y371{bottom:178.782000pt;}
.y1c3{bottom:180.410667pt;}
.y1f5{bottom:180.781333pt;}
.y9a{bottom:184.356000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y3a{bottom:186.801333pt;}
.y314{bottom:187.720593pt;}
.y3c8{bottom:188.617333pt;}
.y266{bottom:188.698667pt;}
.y2b5{bottom:189.913333pt;}
.y292{bottom:190.081333pt;}
.y192{bottom:191.153333pt;}
.ycf{bottom:191.278667pt;}
.y62{bottom:192.530667pt;}
.y11b{bottom:193.245333pt;}
.y15a{bottom:193.769333pt;}
.y1c1{bottom:193.946667pt;}
.y2d1{bottom:194.865333pt;}
.y104{bottom:195.264000pt;}
.y370{bottom:195.414000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y11c{bottom:198.066667pt;}
.y3a9{bottom:198.208400pt;}
.y313{bottom:199.715612pt;}
.y1f4{bottom:200.441333pt;}
.y99{bottom:201.093333pt;}
.y39{bottom:202.701333pt;}
.y3c7{bottom:203.960000pt;}
.y31c{bottom:204.148747pt;}
.y265{bottom:205.436000pt;}
.y2b4{bottom:206.650667pt;}
.y291{bottom:206.818667pt;}
.y230{bottom:207.889784pt;}
.yce{bottom:208.016000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y61{bottom:209.268000pt;}
.y159{bottom:210.506667pt;}
.y1c0{bottom:210.684000pt;}
.y11a{bottom:211.602667pt;}
.y312{bottom:211.710632pt;}
.y103{bottom:212.001333pt;}
.y36f{bottom:212.046000pt;}
.y98{bottom:217.829333pt;}
.y3c6{bottom:219.302667pt;}
.y3a8{bottom:219.328400pt;}
.y1f3{bottom:220.100000pt;}
.y191{bottom:220.989333pt;}
.y264{bottom:222.173333pt;}
.y2b3{bottom:223.388000pt;}
.y290{bottom:223.556000pt;}
.y311{bottom:223.705651pt;}
.ycd{bottom:224.753333pt;}
.y60{bottom:226.005333pt;}
.y158{bottom:227.244000pt;}
.y1bf{bottom:227.421333pt;}
.y119{bottom:228.340000pt;}
.y36e{bottom:228.678000pt;}
.y102{bottom:228.738667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y3a3{bottom:231.808731pt;}
.y3a7{bottom:234.528233pt;}
.y3a5{bottom:234.528630pt;}
.y97{bottom:234.566667pt;}
.y3c5{bottom:234.645333pt;}
.y310{bottom:235.700671pt;}
.y190{bottom:238.085333pt;}
.y263{bottom:238.910667pt;}
.y1f2{bottom:239.760000pt;}
.y2b2{bottom:240.125333pt;}
.y28f{bottom:240.293333pt;}
.ycc{bottom:241.490667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y5f{bottom:242.742667pt;}
.y157{bottom:243.981333pt;}
.y1be{bottom:244.158667pt;}
.y118{bottom:245.077333pt;}
.y36d{bottom:245.310000pt;}
.y101{bottom:245.476000pt;}
.y30f{bottom:247.695690pt;}
.y3a6{bottom:249.168400pt;}
.y3c4{bottom:249.986667pt;}
.y96{bottom:251.304000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y18f{bottom:255.181333pt;}
.y262{bottom:255.648000pt;}
.y2b1{bottom:256.862667pt;}
.y28e{bottom:257.030667pt;}
.ycb{bottom:258.228000pt;}
.y1f1{bottom:259.420000pt;}
.y5e{bottom:259.480000pt;}
.y30e{bottom:259.769061pt;}
.y156{bottom:260.718667pt;}
.y1bd{bottom:260.896000pt;}
.y117{bottom:261.814667pt;}
.y36c{bottom:261.942000pt;}
.y100{bottom:262.213333pt;}
.y3c3{bottom:265.329333pt;}
.y95{bottom:268.041333pt;}
.y3a4{bottom:268.928400pt;}
.y30d{bottom:271.764080pt;}
.y261{bottom:272.385333pt;}
.y38{bottom:273.154667pt;}
.y2b0{bottom:273.600000pt;}
.y28d{bottom:273.768000pt;}
.yca{bottom:274.965333pt;}
.y16c{bottom:275.118667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y3fa{bottom:276.161333pt;}
.y5d{bottom:276.217333pt;}
.y155{bottom:277.456000pt;}
.y1bc{bottom:277.633333pt;}
.y36b{bottom:278.502000pt;}
.y116{bottom:278.552000pt;}
.yff{bottom:278.950667pt;}
.y1f0{bottom:279.080000pt;}
.y30c{bottom:283.759100pt;}
.y3c2{bottom:284.657333pt;}
.y94{bottom:284.778667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y37{bottom:289.054667pt;}
.y260{bottom:289.122667pt;}
.y2af{bottom:290.337333pt;}
.y28c{bottom:290.505333pt;}
.y3a2{bottom:291.248400pt;}
.y3f9{bottom:291.502667pt;}
.yc9{bottom:291.702667pt;}
.y5c{bottom:292.954667pt;}
.y36a{bottom:295.134000pt;}
.y115{bottom:295.289333pt;}
.yfe{bottom:295.688000pt;}
.y30b{bottom:295.754119pt;}
.y1ef{bottom:298.738667pt;}
.y34f{bottom:300.210613pt;}
.y93{bottom:301.516000pt;}
.y36{bottom:304.954667pt;}
.y25f{bottom:305.860000pt;}
.y3f8{bottom:306.845333pt;}
.y3a1{bottom:307.088400pt;}
.y28b{bottom:307.242667pt;}
.y30a{bottom:307.749139pt;}
.yc8{bottom:308.440000pt;}
.yf{bottom:309.452000pt;}
.y5b{bottom:309.692000pt;}
.y369{bottom:311.766000pt;}
.y114{bottom:312.026667pt;}
.yfd{bottom:312.425333pt;}
.y1bb{bottom:313.308000pt;}
.y3c1{bottom:317.202667pt;}
.y34e{bottom:317.330117pt;}
.y92{bottom:318.253333pt;}
.y1ee{bottom:318.398667pt;}
.y154{bottom:319.194667pt;}
.y2ae{bottom:320.173333pt;}
.y35{bottom:320.856000pt;}
.y3f7{bottom:322.188000pt;}
.y25e{bottom:322.597333pt;}
.y28a{bottom:323.980000pt;}
.y29b{bottom:324.530779pt;}
.yc7{bottom:325.177333pt;}
.y1ba{bottom:325.926667pt;}
.y5a{bottom:326.429333pt;}
.y368{bottom:328.398000pt;}
.y113{bottom:328.764000pt;}
.yfc{bottom:329.162667pt;}
.y3c0{bottom:332.544000pt;}
.y153{bottom:333.806667pt;}
.y91{bottom:334.990667pt;}
.y3a0{bottom:336.848400pt;}
.y3bf{bottom:336.884000pt;}
.y2ad{bottom:337.269333pt;}
.y3f6{bottom:337.530667pt;}
.y1ed{bottom:338.058667pt;}
.y25d{bottom:339.334667pt;}
.y289{bottom:340.717333pt;}
.yc6{bottom:341.914667pt;}
.y1b9{bottom:342.677333pt;}
.y59{bottom:343.166667pt;}
.ye{bottom:343.809333pt;}
.y367{bottom:345.030000pt;}
.y14f{bottom:345.098667pt;}
.y112{bottom:345.501333pt;}
.yfb{bottom:345.900000pt;}
.y152{bottom:348.418667pt;}
.y3be{bottom:350.882667pt;}
.y246{bottom:351.366984pt;}
.y18a{bottom:351.699467pt;}
.y90{bottom:351.728000pt;}
.y2e8{bottom:351.966856pt;}
.y3f5{bottom:352.873333pt;}
.y2ac{bottom:354.365333pt;}
.y34{bottom:354.688000pt;}
.y25c{bottom:356.072000pt;}
.y1b8{bottom:357.288000pt;}
.y288{bottom:357.454667pt;}
.y1ec{bottom:357.717333pt;}
.y39f{bottom:357.968400pt;}
.yc5{bottom:358.652000pt;}
.y14e{bottom:359.709333pt;}
.y58{bottom:359.904000pt;}
.y2e7{bottom:360.355539pt;}
.y366{bottom:361.590000pt;}
.y111{bottom:362.238667pt;}
.yfa{bottom:362.637333pt;}
.yd{bottom:362.706666pt;}
.y151{bottom:363.030667pt;}
.y34c{bottom:365.969853pt;}
.y3bd{bottom:366.225333pt;}
.y189{bottom:367.219067pt;}
.y3f4{bottom:368.216000pt;}
.y8f{bottom:368.465333pt;}
.y245{bottom:368.486488pt;}
.y33{bottom:370.589333pt;}
.y1b7{bottom:371.900000pt;}
.y287{bottom:374.192000pt;}
.y297{bottom:374.302667pt;}
.y34b{bottom:374.529733pt;}
.yc4{bottom:375.389333pt;}
.y57{bottom:376.641333pt;}
.y1eb{bottom:377.377333pt;}
.y150{bottom:377.642667pt;}
.y365{bottom:378.222000pt;}
.y110{bottom:378.976000pt;}
.y39e{bottom:379.088400pt;}
.yf9{bottom:379.374667pt;}
.y3bc{bottom:381.568000pt;}
.y3f3{bottom:383.558667pt;}
.y188{bottom:384.419427pt;}
.y8e{bottom:385.202667pt;}
.y244{bottom:385.605992pt;}
.y25b{bottom:385.908000pt;}
.y32{bottom:386.489333pt;}
.y1b6{bottom:386.512000pt;}
.y286{bottom:390.929333pt;}
.yc3{bottom:392.126667pt;}
.y56{bottom:393.378667pt;}
.y39c{bottom:394.288400pt;}
.y364{bottom:394.854000pt;}
.y10f{bottom:395.713333pt;}
.yf8{bottom:396.112000pt;}
.y3bb{bottom:396.909333pt;}
.y1ea{bottom:397.037333pt;}
.y3f2{bottom:398.901333pt;}
.y22f{bottom:399.637982pt;}
.y1b5{bottom:401.124000pt;}
.y14d{bottom:401.313333pt;}
.y8d{bottom:401.940000pt;}
.y187{bottom:402.419355pt;}
.y243{bottom:402.645336pt;}
.y25a{bottom:403.004000pt;}
.y285{bottom:407.665333pt;}
.y39d{bottom:408.768980pt;}
.yc2{bottom:408.864000pt;}
.y55{bottom:410.116000pt;}
.y363{bottom:411.486000pt;}
.y3ba{bottom:412.252000pt;}
.y10e{bottom:412.450667pt;}
.yf7{bottom:412.848000pt;}
.y3f1{bottom:414.244000pt;}
.y1b4{bottom:415.736000pt;}
.y22e{bottom:415.901511pt;}
.y14c{bottom:415.925333pt;}
.y1e9{bottom:416.697333pt;}
.y278{bottom:416.990067pt;}
.y31{bottom:418.330667pt;}
.y8c{bottom:418.677333pt;}
.y242{bottom:419.764840pt;}
.y259{bottom:420.100000pt;}
.y186{bottom:420.419283pt;}
.y284{bottom:424.402667pt;}
.y360{bottom:424.734000pt;}
.y35b{bottom:424.734416pt;}
.y362{bottom:424.735103pt;}
.y35d{bottom:424.735519pt;}
.y39b{bottom:425.328169pt;}
.yc1{bottom:425.601333pt;}
.y54{bottom:426.853333pt;}
.y3b9{bottom:427.594667pt;}
.y349{bottom:427.716000pt;}
.y10d{bottom:429.188000pt;}
.yf6{bottom:429.585333pt;}
.y1b3{bottom:430.348000pt;}
.y14b{bottom:430.537333pt;}
.y22d{bottom:432.165040pt;}
.y277{bottom:434.109571pt;}
.y147{bottom:434.522667pt;}
.y2e5{bottom:435.325333pt;}
.y8b{bottom:435.414667pt;}
.y1e8{bottom:436.356000pt;}
.y241{bottom:436.805520pt;}
.y35a{bottom:437.550000pt;}
.y361{bottom:437.550688pt;}
.y35c{bottom:437.551103pt;}
.y185{bottom:438.419211pt;}
.y234{bottom:440.036000pt;}
.yc0{bottom:442.338667pt;}
.y3b8{bottom:442.937333pt;}
.y53{bottom:443.590667pt;}
.y348{bottom:444.453333pt;}
.y3f0{bottom:444.928000pt;}
.y1b2{bottom:444.960000pt;}
.y14a{bottom:445.149333pt;}
.y10c{bottom:445.925333pt;}
.yf5{bottom:446.322667pt;}
.yc{bottom:446.990669pt;}
.y3b7{bottom:447.277333pt;}
.y359{bottom:447.774000pt;}
.y22c{bottom:448.353686pt;}
.y146{bottom:449.134667pt;}
.y30{bottom:450.170667pt;}
.y39a{bottom:450.368400pt;}
.y276{bottom:451.148915pt;}
.y1c6{bottom:451.469853pt;}
.y358{bottom:451.590000pt;}
.y8a{bottom:452.152000pt;}
.y240{bottom:453.925024pt;}
.y283{bottom:454.240000pt;}
.y1e7{bottom:456.016000pt;}
.y2e4{bottom:456.046667pt;}
.y184{bottom:456.419139pt;}
.ybf{bottom:459.076000pt;}
.y1b1{bottom:459.572000pt;}
.y149{bottom:459.761333pt;}
.y1c5{bottom:460.029733pt;}
.y3ef{bottom:460.270667pt;}
.y52{bottom:460.328000pt;}
.y3b6{bottom:461.274667pt;}
.y2d0{bottom:462.662667pt;}
.yb{bottom:462.990669pt;}
.yf4{bottom:463.060000pt;}
.y22b{bottom:464.617214pt;}
.y2f{bottom:466.070667pt;}
.y10b{bottom:466.646667pt;}
.y275{bottom:468.268419pt;}
.y89{bottom:468.889333pt;}
.y23f{bottom:471.044528pt;}
.y282{bottom:471.334667pt;}
.y1b0{bottom:474.184000pt;}
.y148{bottom:474.373333pt;}
.y183{bottom:474.419067pt;}
.y3ee{bottom:475.613333pt;}
.y1e6{bottom:475.676000pt;}
.ybe{bottom:475.813333pt;}
.y3b5{bottom:476.617333pt;}
.y347{bottom:478.958667pt;}
.ya{bottom:478.990666pt;}
.y2cf{bottom:479.398667pt;}
.yf3{bottom:479.797333pt;}
.y22a{bottom:480.804591pt;}
.y3b4{bottom:480.957333pt;}
.y51{bottom:481.049333pt;}
.y2e{bottom:481.972000pt;}
.y355{bottom:482.838130pt;}
.y351{bottom:484.029333pt;}
.y274{bottom:485.307763pt;}
.y88{bottom:485.626667pt;}
.y23e{bottom:488.085208pt;}
.y281{bottom:488.430667pt;}
.y2e3{bottom:488.724000pt;}
.y1af{bottom:488.796000pt;}
.y3ed{bottom:490.956000pt;}
.y182{bottom:492.339067pt;}
.ybd{bottom:492.549333pt;}
.y9{bottom:494.990666pt;}
.y2ce{bottom:496.136000pt;}
.yf2{bottom:496.534667pt;}
.y229{bottom:497.068120pt;}
.y2d{bottom:497.872000pt;}
.y145{bottom:498.044000pt;}
.y3b3{bottom:499.753333pt;}
.y87{bottom:502.364000pt;}
.y273{bottom:502.427267pt;}
.y1e5{bottom:503.400000pt;}
.y1ae{bottom:503.408000pt;}
.y23d{bottom:505.204712pt;}
.y346{bottom:506.093333pt;}
.y3ec{bottom:506.298667pt;}
.y26d{bottom:508.368000pt;}
.ybc{bottom:509.286667pt;}
.y37e{bottom:509.568520pt;}
.y2e2{bottom:512.316000pt;}
.y144{bottom:512.654667pt;}
.y2cd{bottom:512.873333pt;}
.yf1{bottom:513.272000pt;}
.y228{bottom:513.331649pt;}
.y2c{bottom:513.772000pt;}
.y181{bottom:516.019067pt;}
.y1ad{bottom:518.018667pt;}
.y37d{bottom:518.128400pt;}
.y345{bottom:518.701333pt;}
.y86{bottom:519.101333pt;}
.y272{bottom:519.546771pt;}
.y3eb{bottom:521.641333pt;}
.y20f{bottom:521.814667pt;}
.y23c{bottom:522.245392pt;}
.ybb{bottom:526.024000pt;}
.y37c{bottom:526.985333pt;}
.y143{bottom:527.266667pt;}
.y227{bottom:529.519026pt;}
.y2cc{bottom:529.610667pt;}
.y343{bottom:529.638667pt;}
.y2b{bottom:529.673333pt;}
.yf0{bottom:530.009333pt;}
.y1ac{bottom:532.630667pt;}
.y85{bottom:535.838667pt;}
.y2e1{bottom:535.908000pt;}
.y1e4{bottom:536.436000pt;}
.y271{bottom:536.587451pt;}
.y3ea{bottom:536.984000pt;}
.y344{bottom:537.309333pt;}
.y353{bottom:537.414108pt;}
.y180{bottom:537.699067pt;}
.y20e{bottom:538.552000pt;}
.y23b{bottom:539.364896pt;}
.y142{bottom:541.878667pt;}
.yba{bottom:542.761333pt;}
.y342{bottom:544.981333pt;}
.y352{bottom:545.118000pt;}
.y226{bottom:545.782554pt;}
.y2cb{bottom:546.348000pt;}
.yef{bottom:546.746667pt;}
.y50{bottom:547.132000pt;}
.y1ab{bottom:547.242667pt;}
.y28{bottom:549.558634pt;}
.y3e9{bottom:552.325333pt;}
.y84{bottom:552.576000pt;}
.y1e3{bottom:553.532000pt;}
.y20d{bottom:555.289333pt;}
.y23a{bottom:556.484400pt;}
.y141{bottom:556.490667pt;}
.yb9{bottom:559.498667pt;}
.y1aa{bottom:561.854667pt;}
.y225{bottom:561.969931pt;}
.y2ca{bottom:563.085333pt;}
.yee{bottom:563.484000pt;}
.y3e8{bottom:567.668000pt;}
.y341{bottom:568.658667pt;}
.y83{bottom:569.313333pt;}
.y17f{bottom:569.785395pt;}
.y140{bottom:571.102667pt;}
.y20c{bottom:572.026667pt;}
.y1c4{bottom:573.469333pt;}
.y8{bottom:573.786667pt;}
.yb8{bottom:576.236000pt;}
.y1a9{bottom:576.466667pt;}
.y224{bottom:578.233460pt;}
.y2c9{bottom:579.822667pt;}
.yed{bottom:580.221333pt;}
.y4f{bottom:580.368000pt;}
.y340{bottom:581.266667pt;}
.y139{bottom:582.393333pt;}
.y3e7{bottom:583.010667pt;}
.y2e0{bottom:583.090667pt;}
.y26f{bottom:585.227187pt;}
.y13f{bottom:585.714667pt;}
.y82{bottom:586.050667pt;}
.y17e{bottom:587.464683pt;}
.y20b{bottom:588.762667pt;}
.y239{bottom:589.204000pt;}
.y1a8{bottom:591.078667pt;}
.y33f{bottom:592.204000pt;}
.y7{bottom:592.685334pt;}
.yb7{bottom:592.973333pt;}
.y26e{bottom:593.787067pt;}
.y2c8{bottom:596.560000pt;}
.yec{bottom:596.958667pt;}
.y3e6{bottom:598.353333pt;}
.y2df{bottom:598.712000pt;}
.y13e{bottom:600.326667pt;}
.y81{bottom:602.788000pt;}
.y17d{bottom:604.505363pt;}
.y238{bottom:604.644400pt;}
.y20a{bottom:605.500000pt;}
.y1a7{bottom:605.690667pt;}
.y33e{bottom:607.546667pt;}
.y223{bottom:609.317207pt;}
.yb6{bottom:609.710667pt;}
.y2c7{bottom:613.297333pt;}
.y4e{bottom:613.604000pt;}
.yeb{bottom:613.696000pt;}
.y2de{bottom:614.333333pt;}
.y13d{bottom:614.938667pt;}
.y80{bottom:619.525333pt;}
.y1a6{bottom:620.302667pt;}
.y17c{bottom:621.624867pt;}
.y209{bottom:622.237333pt;}
.y222{bottom:623.985587pt;}
.yb5{bottom:626.448000pt;}
.y3e5{bottom:629.038667pt;}
.y13c{bottom:629.550667pt;}
.y2c6{bottom:630.034667pt;}
.yea{bottom:630.433333pt;}
.y4d{bottom:630.898667pt;}
.y33d{bottom:631.224000pt;}
.y16b{bottom:632.138667pt;}
.y1a5{bottom:634.914667pt;}
.y7f{bottom:636.262667pt;}
.y2dd{bottom:637.925333pt;}
.y221{bottom:638.577587pt;}
.y17b{bottom:638.664211pt;}
.y208{bottom:638.974667pt;}
.yb4{bottom:643.185333pt;}
.y33c{bottom:643.832000pt;}
.y13b{bottom:644.162667pt;}
.y3e4{bottom:644.381333pt;}
.y16a{bottom:644.757333pt;}
.y6{bottom:645.598667pt;}
.y2c5{bottom:646.772000pt;}
.ye9{bottom:647.170667pt;}
.y4c{bottom:648.193333pt;}
.y1a4{bottom:649.526667pt;}
.y299{bottom:650.646627pt;}
.y236{bottom:651.844520pt;}
.y7e{bottom:653.000000pt;}
.y2dc{bottom:653.546667pt;}
.y33b{bottom:654.769333pt;}
.y220{bottom:654.993460pt;}
.y207{bottom:655.712000pt;}
.y17a{bottom:655.783715pt;}
.y13a{bottom:658.773333pt;}
.y298{bottom:658.778513pt;}
.y3e3{bottom:659.724000pt;}
.yb3{bottom:659.922667pt;}
.y235{bottom:660.404400pt;}
.y169{bottom:661.508000pt;}
.y2c4{bottom:663.509333pt;}
.ye8{bottom:663.908000pt;}
.y1a3{bottom:664.137333pt;}
.y4b{bottom:665.489333pt;}
.y3{bottom:668.977329pt;}
.y2db{bottom:669.168000pt;}
.y7d{bottom:669.736000pt;}
.y33a{bottom:670.112000pt;}
.y206{bottom:672.449333pt;}
.y21f{bottom:672.701460pt;}
.y179{bottom:672.903219pt;}
.y3e2{bottom:675.066667pt;}
.y168{bottom:676.120000pt;}
.yb2{bottom:676.660000pt;}
.y1a2{bottom:678.749333pt;}
.y2c3{bottom:680.246667pt;}
.ye7{bottom:680.645333pt;}
.y138{bottom:682.444000pt;}
.y4a{bottom:682.784000pt;}
.y2da{bottom:684.789333pt;}
.y7c{bottom:686.473333pt;}
.y205{bottom:689.186667pt;}
.y178{bottom:689.942563pt;}
.y3e1{bottom:690.408000pt;}
.y21e{bottom:690.409460pt;}
.y167{bottom:690.732000pt;}
.y1a1{bottom:693.361333pt;}
.yb1{bottom:693.397333pt;}
.y339{bottom:693.789333pt;}
.y2c2{bottom:696.984000pt;}
.y137{bottom:697.056000pt;}
.ye6{bottom:697.382667pt;}
.y49{bottom:700.078667pt;}
.y2d9{bottom:700.410667pt;}
.y7b{bottom:703.210667pt;}
.y166{bottom:705.344000pt;}
.y3e0{bottom:705.750667pt;}
.y204{bottom:705.924000pt;}
.y338{bottom:706.397333pt;}
.y177{bottom:707.062067pt;}
.y21d{bottom:708.193460pt;}
.yb0{bottom:710.134667pt;}
.y136{bottom:711.668000pt;}
.y2c1{bottom:713.721333pt;}
.ye5{bottom:714.120000pt;}
.y1a0{bottom:714.376000pt;}
.y133{bottom:715.653333pt;}
.y2d8{bottom:716.032000pt;}
.y336{bottom:717.334667pt;}
.y48{bottom:717.374667pt;}
.y7a{bottom:719.948000pt;}
.y165{bottom:719.954667pt;}
.y3df{bottom:721.093333pt;}
.y176{bottom:724.181571pt;}
.y337{bottom:725.005333pt;}
.y21c{bottom:725.901460pt;}
.y135{bottom:726.280000pt;}
.yaf{bottom:726.872000pt;}
.y2c0{bottom:730.458667pt;}
.ye4{bottom:730.857333pt;}
.y335{bottom:732.677333pt;}
.y164{bottom:734.566667pt;}
.y47{bottom:734.669333pt;}
.y3de{bottom:736.436000pt;}
.y134{bottom:740.892000pt;}
.y175{bottom:741.220915pt;}
.y19f{bottom:742.481333pt;}
.y79{bottom:743.328000pt;}
.yae{bottom:743.609333pt;}
.y21b{bottom:743.609460pt;}
.y203{bottom:744.300000pt;}
.y2bf{bottom:747.196000pt;}
.ye3{bottom:747.594667pt;}
.y163{bottom:749.178667pt;}
.y3dd{bottom:751.778667pt;}
.y46{bottom:751.965333pt;}
.y334{bottom:756.354667pt;}
.y202{bottom:756.920000pt;}
.y174{bottom:758.340419pt;}
.y78{bottom:760.065333pt;}
.yad{bottom:760.346667pt;}
.y21a{bottom:761.317460pt;}
.y2be{bottom:763.933333pt;}
.ye2{bottom:764.332000pt;}
.y132{bottom:766.556000pt;}
.y3dc{bottom:767.121333pt;}
.y333{bottom:768.962667pt;}
.y45{bottom:769.260000pt;}
.y162{bottom:770.193333pt;}
.y173{bottom:775.379763pt;}
.y19e{bottom:775.464000pt;}
.y77{bottom:776.802667pt;}
.yac{bottom:777.084000pt;}
.y12f{bottom:777.846667pt;}
.y201{bottom:778.572000pt;}
.y219{bottom:779.025460pt;}
.y331{bottom:779.900000pt;}
.y2bd{bottom:780.670667pt;}
.ye1{bottom:781.069333pt;}
.y131{bottom:781.166667pt;}
.y2{bottom:781.661334pt;}
.y3db{bottom:782.464000pt;}
.y44{bottom:786.554667pt;}
.y332{bottom:787.570667pt;}
.y19d{bottom:792.200000pt;}
.y12e{bottom:792.458667pt;}
.y172{bottom:792.499267pt;}
.y76{bottom:793.540000pt;}
.yab{bottom:793.821333pt;}
.y330{bottom:795.242667pt;}
.y130{bottom:795.778667pt;}
.y218{bottom:796.809460pt;}
.ye0{bottom:797.806667pt;}
.y200{bottom:798.232000pt;}
.y161{bottom:798.298667pt;}
.y2bc{bottom:801.393333pt;}
.y19c{bottom:808.937333pt;}
.y171{bottom:809.618771pt;}
.y75{bottom:810.277333pt;}
.yaa{bottom:810.558667pt;}
.y3da{bottom:813.149333pt;}
.y217{bottom:814.517460pt;}
.ydf{bottom:814.544000pt;}
.y1ff{bottom:817.890667pt;}
.y32f{bottom:818.920000pt;}
.y43{bottom:820.048000pt;}
.y12d{bottom:821.442667pt;}
.y19b{bottom:825.674667pt;}
.y170{bottom:826.659451pt;}
.y74{bottom:827.013333pt;}
.ya9{bottom:827.296000pt;}
.y3d9{bottom:828.490667pt;}
.yde{bottom:831.281333pt;}
.y32e{bottom:831.528000pt;}
.y216{bottom:832.225460pt;}
.y42{bottom:834.393333pt;}
.y12c{bottom:836.054667pt;}
.y1fe{bottom:837.550667pt;}
.y19a{bottom:842.412000pt;}
.y32d{bottom:842.465333pt;}
.y3d8{bottom:843.833333pt;}
.ya8{bottom:844.033333pt;}
.ydd{bottom:848.018667pt;}
.y41{bottom:848.740000pt;}
.y215{bottom:849.933460pt;}
.y73{bottom:850.393333pt;}
.y12b{bottom:850.666667pt;}
.y1fd{bottom:857.210667pt;}
.y32c{bottom:857.808000pt;}
.y199{bottom:859.149333pt;}
.y3d7{bottom:859.176000pt;}
.y1{bottom:859.312000pt;}
.ya7{bottom:860.770667pt;}
.y127{bottom:861.957333pt;}
.ydc{bottom:864.754667pt;}
.y12a{bottom:865.277333pt;}
.y72{bottom:867.130667pt;}
.y214{bottom:867.641832pt;}
.y3d6{bottom:874.518667pt;}
.y16e{bottom:875.299187pt;}
.y197{bottom:875.886667pt;}
.y1fc{bottom:876.870667pt;}
.ya6{bottom:877.508000pt;}
.y129{bottom:879.889333pt;}
.y198{bottom:880.709333pt;}
.y32b{bottom:881.485333pt;}
.ydb{bottom:881.492000pt;}
.y16d{bottom:883.859067pt;}
.y71{bottom:883.868000pt;}
.y27{bottom:887.520000pt;}
.y3d5{bottom:889.861333pt;}
.y32a{bottom:894.093333pt;}
.ya5{bottom:894.245333pt;}
.y128{bottom:894.501333pt;}
.y1fb{bottom:896.529333pt;}
.yda{bottom:898.229333pt;}
.y70{bottom:900.605333pt;}
.y329{bottom:905.030667pt;}
.y3d4{bottom:905.204000pt;}
.y35e{bottom:906.387333pt;}
.ya4{bottom:910.982667pt;}
.yd9{bottom:914.966667pt;}
.y212{bottom:915.749574pt;}
.y1fa{bottom:916.189333pt;}
.y6f{bottom:917.342667pt;}
.y126{bottom:918.172000pt;}
.y328{bottom:920.373333pt;}
.y3d3{bottom:920.546667pt;}
.y211{bottom:923.881460pt;}
.y26{bottom:925.510667pt;}
.ya3{bottom:927.720000pt;}
.yd8{bottom:931.704000pt;}
.y125{bottom:932.784000pt;}
.y6e{bottom:934.080000pt;}
.y1f9{bottom:935.849333pt;}
.y3d2{bottom:935.889333pt;}
.y327{bottom:944.050667pt;}
.ya2{bottom:944.456000pt;}
.yd7{bottom:948.441333pt;}
.y25{bottom:950.616000pt;}
.y6d{bottom:950.817333pt;}
.y3d1{bottom:951.230667pt;}
.y124{bottom:955.126667pt;}
.y1f8{bottom:955.509333pt;}
.ya1{bottom:961.193333pt;}
.yd6{bottom:965.178667pt;}
.y3d0{bottom:966.573333pt;}
.y6c{bottom:967.554667pt;}
.y24{bottom:975.722667pt;}
.ya0{bottom:981.916000pt;}
.y123{bottom:983.233333pt;}
.y6b{bottom:984.290667pt;}
.y22{bottom:1014.377333pt;}
.y6a{bottom:1043.020000pt;}
.h35{height:11.132800pt;}
.h41{height:12.168000pt;}
.h43{height:21.599063pt;}
.h44{height:21.599596pt;}
.h1a{height:22.124224pt;}
.he{height:22.673858pt;}
.h21{height:24.582445pt;}
.h34{height:24.787245pt;}
.h11{height:27.076941pt;}
.h12{height:27.262909pt;}
.h3b{height:27.961172pt;}
.h7{height:28.560000pt;}
.h18{height:29.397999pt;}
.h10{height:29.433775pt;}
.h25{height:29.514570pt;}
.hf{height:30.399505pt;}
.h2b{height:30.446609pt;}
.h3f{height:30.646877pt;}
.h13{height:30.945242pt;}
.h1c{height:31.067969pt;}
.h17{height:31.157778pt;}
.h40{height:33.157477pt;}
.h27{height:33.287109pt;}
.h14{height:34.574438pt;}
.h15{height:34.813542pt;}
.h3d{height:34.897781pt;}
.h1f{height:35.039062pt;}
.h19{height:35.052646pt;}
.h3c{height:35.109141pt;}
.h47{height:36.908350pt;}
.h26{height:37.059648pt;}
.h2d{height:37.999806pt;}
.h2c{height:38.229953pt;}
.hd{height:38.415786pt;}
.h16{height:38.681455pt;}
.h39{height:38.775312pt;}
.h48{height:38.929842pt;}
.hb{height:38.947124pt;}
.h1d{height:39.010156pt;}
.h6{height:40.800000pt;}
.h1e{height:40.853594pt;}
.h20{height:42.747656pt;}
.h3{height:42.840000pt;}
.h45{height:45.244084pt;}
.h9{height:45.271688pt;}
.h46{height:47.789273pt;}
.h49{height:48.106113pt;}
.h2{height:48.960000pt;}
.h3e{height:50.437433pt;}
.h33{height:57.672630pt;}
.h31{height:57.673153pt;}
.h2f{height:57.986753pt;}
.h37{height:65.257105pt;}
.h36{height:65.262438pt;}
.hc{height:69.148877pt;}
.h5{height:69.360000pt;}
.h32{height:73.352630pt;}
.h2e{height:73.353153pt;}
.h30{height:73.666753pt;}
.h23{height:75.170156pt;}
.ha{height:91.114522pt;}
.h4{height:105.826671pt;}
.h38{height:273.812000pt;}
.h2a{height:323.337280pt;}
.h1b{height:336.756000pt;}
.h24{height:386.193747pt;}
.h28{height:402.322667pt;}
.h22{height:421.732000pt;}
.h42{height:468.216000pt;}
.h3a{height:472.148400pt;}
.h29{height:620.901000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w10{width:36.216000pt;}
.w11{width:36.504000pt;}
.wd{width:38.102400pt;}
.w5{width:66.991004pt;}
.w4{width:116.962220pt;}
.w8{width:313.439200pt;}
.w6{width:463.694667pt;}
.wb{width:474.893600pt;}
.we{width:478.382667pt;}
.w12{width:481.573333pt;}
.w7{width:488.349333pt;}
.w2{width:566.928019pt;}
.wa{width:610.042267pt;}
.wc{width:684.201504pt;}
.wf{width:685.851600pt;}
.w9{width:698.165333pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x78{left:-172.832000pt;}
.x1e{left:-167.586667pt;}
.x4f{left:-161.201067pt;}
.x39{left:-154.190667pt;}
.x50{left:-146.457067pt;}
.x36{left:-143.710667pt;}
.x3a{left:-141.070667pt;}
.x2a{left:-139.266667pt;}
.x3b{left:-138.030667pt;}
.x37{left:-136.750667pt;}
.x38{left:-135.630667pt;}
.x54{left:-134.297067pt;}
.x3c{left:-132.510667pt;}
.x52{left:-129.281067pt;}
.x51{left:-124.341067pt;}
.x53{left:-120.009067pt;}
.x34{left:-115.870667pt;}
.x28{left:-103.026633pt;}
.x23{left:-89.026667pt;}
.x24{left:-81.346667pt;}
.x26{left:-64.546496pt;}
.x29{left:-53.267145pt;}
.x27{left:-51.986432pt;}
.x25{left:-43.267170pt;}
.x33{left:-26.990667pt;}
.x60{left:-14.425733pt;}
.x22{left:-10.226667pt;}
.x0{left:0.000000pt;}
.x79{left:1.008320pt;}
.x67{left:2.317504pt;}
.x56{left:3.947023pt;}
.x20{left:6.252365pt;}
.x6f{left:8.746456pt;}
.x80{left:11.451000pt;}
.x6e{left:12.666304pt;}
.x6a{left:15.018304pt;}
.x7{left:26.021437pt;}
.x21{left:28.893333pt;}
.x55{left:30.850933pt;}
.x84{left:32.831400pt;}
.x1f{left:34.572271pt;}
.x5{left:48.000000pt;}
.x8a{left:49.192461pt;}
.x7e{left:50.187000pt;}
.x6{left:51.605861pt;}
.x7b{left:53.928000pt;}
.x14{left:55.372000pt;}
.x45{left:57.328000pt;}
.x49{left:58.685333pt;}
.x73{left:59.885333pt;}
.x70{left:63.498827pt;}
.x41{left:66.641333pt;}
.x4c{left:67.830667pt;}
.x46{left:69.002667pt;}
.x42{left:70.580000pt;}
.x47{left:71.734667pt;}
.x43{left:72.828000pt;}
.x44{left:73.892000pt;}
.x4d{left:74.866667pt;}
.x48{left:76.624000pt;}
.x93{left:77.885333pt;}
.x4b{left:79.546667pt;}
.x4e{left:83.588000pt;}
.x6d{left:84.480704pt;}
.x15{left:85.724000pt;}
.x8e{left:87.352000pt;}
.x6c{left:88.714304pt;}
.x1{left:90.706667pt;}
.x5d{left:91.829733pt;}
.x2{left:94.486667pt;}
.x8f{left:97.192000pt;}
.x6b{left:99.219904pt;}
.x8c{left:109.032166pt;}
.x8b{left:113.592040pt;}
.x13{left:122.026667pt;}
.x74{left:124.042667pt;}
.x5c{left:127.204000pt;}
.x72{left:128.268000pt;}
.x62{left:129.326667pt;}
.x5e{left:131.093298pt;}
.x90{left:133.432000pt;}
.x71{left:137.898667pt;}
.x40{left:145.173333pt;}
.x88{left:156.064000pt;}
.x61{left:159.414267pt;}
.x69{left:172.681018pt;}
.x59{left:174.106667pt;}
.x4{left:180.874667pt;}
.x3f{left:190.333333pt;}
.x5a{left:202.426667pt;}
.x77{left:218.602667pt;}
.x11{left:221.173333pt;}
.x9{left:222.073333pt;}
.x8{left:223.020000pt;}
.x75{left:225.185333pt;}
.x8d{left:228.871639pt;}
.x81{left:240.340089pt;}
.xb{left:251.365333pt;}
.x76{left:253.937333pt;}
.x1c{left:255.522667pt;}
.x19{left:267.998667pt;}
.x2f{left:269.310667pt;}
.x16{left:270.570667pt;}
.x2e{left:272.298667pt;}
.x2c{left:273.960000pt;}
.xa{left:275.080000pt;}
.x66{left:276.384000pt;}
.x1b{left:289.881333pt;}
.x17{left:297.736000pt;}
.x1d{left:300.001333pt;}
.x12{left:301.377333pt;}
.x58{left:302.627882pt;}
.x1a{left:308.968000pt;}
.x57{left:310.303476pt;}
.x82{left:343.083000pt;}
.x7d{left:345.531461pt;}
.x65{left:348.501333pt;}
.x30{left:358.525333pt;}
.x4a{left:360.429333pt;}
.x31{left:369.450667pt;}
.x91{left:372.232148pt;}
.xe{left:383.757333pt;}
.x3{left:404.408000pt;}
.x2b{left:460.253200pt;}
.x35{left:465.809200pt;}
.x64{left:470.052526pt;}
.x63{left:471.344055pt;}
.x92{left:472.872000pt;}
.x3d{left:474.762667pt;}
.x7a{left:477.649032pt;}
.x32{left:481.729085pt;}
.x89{left:482.712016pt;}
.x3e{left:483.693333pt;}
.x18{left:487.994667pt;}
.x85{left:513.075000pt;}
.x7f{left:514.443000pt;}
.x83{left:530.643600pt;}
.x87{left:580.395000pt;}
.x86{left:598.106400pt;}
.x5f{left:606.294267pt;}
.xc{left:627.510667pt;}
.xd{left:648.462667pt;}
.x68{left:681.340225pt;}
.x7c{left:684.147742pt;}
.x5b{left:693.227643pt;}
.xf{left:738.261333pt;}
.x2d{left:739.989333pt;}
.x10{left:743.973333pt;}
}




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