
    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_e646ba2d90922e127bdf6624.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_e4cd49efea9052216108f43c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7127903216fb80bc4297a381.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cc43bd2988546dae474b6b05.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.997000;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_f857581edcaa53b4c9db49df.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6e5117e147614ead0b5e75c0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1191032478340879bc2ec4ca.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_38ab50f5ee4f4fce70e8a8fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.773000;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_bfb5bbf66c5586c0fa32d57c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_28191351b210aa1517aeef06.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006836;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_f841f84beb837586b7dff656.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.012207;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e3bbcbac4fbfc5489ce0a421.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.727539;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_4007f0c63ed7db42fefa868b.woff2')format("woff");}.fff{font-family:fff;line-height:0.738770;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_f595da3246c3df8e9bc7f33f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.909180;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_49342d3525029eecf0f6c472.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_6679bb147558ebb8e7536eeb.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.006836;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_68b9d37d91e4050827171c8a.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.012207;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_f595da3246c3df8e9bc7f33f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.909180;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_49342d3525029eecf0f6c472.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_6679bb147558ebb8e7536eeb.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.006836;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_68b9d37d91e4050827171c8a.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.012207;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_f595da3246c3df8e9bc7f33f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.909180;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_49342d3525029eecf0f6c472.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_6679bb147558ebb8e7536eeb.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.006836;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_68b9d37d91e4050827171c8a.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.012207;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_f595da3246c3df8e9bc7f33f.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.909180;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_51f0e18331956162d385ed3f.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_a6d3447b596b505ea35f4858.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.006836;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_0653824c98a800ed16853865.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.012207;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_a9c7734f7c0cbd37339660b8.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.738770;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_e3bbcbac4fbfc5489ce0a421.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.727539;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_dfe272dc2124ac5e8c6c7943.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_9fbe4f0551f9ec14d034ebc3.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.006836;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_0499bfea108242c396bba04e.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.012207;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_a9c7734f7c0cbd37339660b8.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.738770;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_e3bbcbac4fbfc5489ce0a421.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.727539;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_dfe272dc2124ac5e8c6c7943.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_9fbe4f0551f9ec14d034ebc3.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.006836;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_0499bfea108242c396bba04e.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.012207;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_a9c7734f7c0cbd37339660b8.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.738770;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_e3bbcbac4fbfc5489ce0a421.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.727539;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_226da3e6c93fa89c3f7d1196.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_9a7928dfffde0df255448fd3.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.006836;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_1fbebe7aede09fa72c94abcc.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.012207;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_e3bbcbac4fbfc5489ce0a421.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.727539;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_fece73cb8dc7c27c52570ba2.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.738770;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_735081d767049781c73ac5fe.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_5cdb652cee61c933fdc2f14f.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.006836;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_d38d8ec486219dae2b90837b.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.012207;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_af5b64c656001fd7b3648352.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_d988fcfb50ff2b02eefc80e6.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_f22269b391f2a0825fe59d6f.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.012207;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_e3bbcbac4fbfc5489ce0a421.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_4007f0c63ed7db42fefa868b.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.738770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_b8e9127af47e4e9d55acf60b.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_ed78256e4cbd732f29961916.woff2')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_7ac4dfe82f7917ec6c4e6c4e.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.006836;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:ff3c;src:url('chunks/assets/font_2dba33edf67f4f93e4aa907c.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.012207;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_0ee1a5878b318d23e69ec819.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.738770;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:ff3e;src:url('chunks/assets/font_e3bbcbac4fbfc5489ce0a421.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.727539;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:ff3f;src:url('chunks/assets/font_226da3e6c93fa89c3f7d1196.woff2')format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url('chunks/assets/font_5a8a3b625a733727ec1bc0a8.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.006836;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:ff41;src:url('chunks/assets/font_03539a49a83496d22112a959.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.012207;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_5426680e589fda9290f63f4c.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.726000;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);}
.m27{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);}
.m1d{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);}
.m1e{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);}
.m1b{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);}
.me{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);}
.m20{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);}
.m3{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);}
.m18{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);}
.m19{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);}
.m1c{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);}
.m4{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);}
.mc{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);}
.m11{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);}
.m12{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);}
.m23{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);}
.m21{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);}
.m16{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);}
.m9{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);}
.m2a{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m29{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);}
.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);}
.m5{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);}
.m1a{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);}
.m25{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);}
.md{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);}
.m17{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);}
.m10{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m15{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);}
.m14{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);}
.m8{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);}
.m26{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);}
.mb{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);}
.m13{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);}
.m2c{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);}
.m2d{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);}
.mf{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);}
.m22{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);}
.m1f{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);}
.m2{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);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v4{vertical-align:-8.278524px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:19.524000px;}
.v1{vertical-align:21.696000px;}
.v7{vertical-align:28.392000px;}
.v5{vertical-align:32.880000px;}
.ls7c{letter-spacing:-4.268520px;}
.ls78{letter-spacing:-1.022040px;}
.ls67{letter-spacing:-0.420840px;}
.ls68{letter-spacing:-0.354708px;}
.ls5b{letter-spacing:-0.294588px;}
.ls49{letter-spacing:-0.240480px;}
.ls6f{letter-spacing:-0.222444px;}
.ls5f{letter-spacing:-0.192384px;}
.ls46{letter-spacing:-0.174348px;}
.ls6a{letter-spacing:-0.150300px;}
.ls5c{letter-spacing:-0.144288px;}
.ls62{letter-spacing:-0.138276px;}
.ls3f{letter-spacing:-0.132264px;}
.ls58{letter-spacing:-0.126252px;}
.ls41{letter-spacing:-0.120240px;}
.ls44{letter-spacing:-0.114228px;}
.ls4a{letter-spacing:-0.108216px;}
.ls39{letter-spacing:-0.102204px;}
.ls47{letter-spacing:-0.096192px;}
.ls3a{letter-spacing:-0.090180px;}
.ls59{letter-spacing:-0.084168px;}
.ls3d{letter-spacing:-0.078156px;}
.ls42{letter-spacing:-0.072144px;}
.ls45{letter-spacing:-0.066132px;}
.ls37{letter-spacing:-0.060120px;}
.ls4c{letter-spacing:-0.054108px;}
.ls63{letter-spacing:-0.048096px;}
.ls3c{letter-spacing:-0.042084px;}
.ls3e{letter-spacing:-0.036072px;}
.ls5e{letter-spacing:-0.032400px;}
.ls5a{letter-spacing:-0.030060px;}
.ls7a{letter-spacing:-0.027000px;}
.ls8a{letter-spacing:-0.025551px;}
.ls48{letter-spacing:-0.024048px;}
.ls79{letter-spacing:-0.021600px;}
.ls3b{letter-spacing:-0.018036px;}
.ls61{letter-spacing:-0.016200px;}
.ls57{letter-spacing:-0.014364px;}
.ls40{letter-spacing:-0.012024px;}
.ls8b{letter-spacing:-0.010220px;}
.ls38{letter-spacing:-0.006012px;}
.ls5d{letter-spacing:-0.005400px;}
.ls36{letter-spacing:-0.004788px;}
.ls89{letter-spacing:-0.004070px;}
.ls0{letter-spacing:0.000000px;}
.ls91{letter-spacing:0.000009px;}
.ls74{letter-spacing:0.000106px;}
.ls12{letter-spacing:0.000435px;}
.ls96{letter-spacing:0.000566px;}
.ls1{letter-spacing:0.000600px;}
.ls92{letter-spacing:0.000676px;}
.ls72{letter-spacing:0.000800px;}
.ls97{letter-spacing:0.000845px;}
.ls71{letter-spacing:0.000862px;}
.ls93{letter-spacing:0.001036px;}
.ls90{letter-spacing:0.001155px;}
.ls94{letter-spacing:0.001584px;}
.lse{letter-spacing:0.001701px;}
.ls15{letter-spacing:0.001773px;}
.ls2{letter-spacing:0.001831px;}
.ls1b{letter-spacing:0.001996px;}
.ls9b{letter-spacing:0.002045px;}
.ls95{letter-spacing:0.002074px;}
.ls1a{letter-spacing:0.002108px;}
.ls70{letter-spacing:0.002161px;}
.ls99{letter-spacing:0.002220px;}
.ls98{letter-spacing:0.002375px;}
.ls5{letter-spacing:0.002725px;}
.ls9a{letter-spacing:0.003419px;}
.ls8{letter-spacing:0.003488px;}
.ls16{letter-spacing:0.003657px;}
.ls14{letter-spacing:0.003699px;}
.ls3{letter-spacing:0.004200px;}
.ls11{letter-spacing:0.004308px;}
.ls2a{letter-spacing:0.006012px;}
.ls83{letter-spacing:0.009180px;}
.ls30{letter-spacing:0.010800px;}
.ls51{letter-spacing:0.012024px;}
.ls81{letter-spacing:0.013770px;}
.ls31{letter-spacing:0.016200px;}
.ls24{letter-spacing:0.018036px;}
.ls4d{letter-spacing:0.019152px;}
.ls88{letter-spacing:0.020441px;}
.ls33{letter-spacing:0.021600px;}
.ls84{letter-spacing:0.022950px;}
.ls28{letter-spacing:0.024048px;}
.ls7d{letter-spacing:0.024419px;}
.ls35{letter-spacing:0.027000px;}
.ls1c{letter-spacing:0.028728px;}
.ls22{letter-spacing:0.030060px;}
.ls82{letter-spacing:0.032130px;}
.ls2d{letter-spacing:0.032400px;}
.ls32{letter-spacing:0.036072px;}
.ls86{letter-spacing:0.036720px;}
.ls2f{letter-spacing:0.037800px;}
.ls21{letter-spacing:0.042084px;}
.ls52{letter-spacing:0.043200px;}
.ls23{letter-spacing:0.048096px;}
.ls4b{letter-spacing:0.054108px;}
.ls87{letter-spacing:0.055080px;}
.ls20{letter-spacing:0.060120px;}
.ls25{letter-spacing:0.066132px;}
.ls53{letter-spacing:0.070200px;}
.ls55{letter-spacing:0.072144px;}
.ls2b{letter-spacing:0.078156px;}
.ls56{letter-spacing:0.081000px;}
.ls2c{letter-spacing:0.084168px;}
.ls26{letter-spacing:0.090180px;}
.ls34{letter-spacing:0.091800px;}
.ls27{letter-spacing:0.096192px;}
.ls69{letter-spacing:0.108216px;}
.ls43{letter-spacing:0.114228px;}
.ls85{letter-spacing:0.119340px;}
.ls29{letter-spacing:0.120240px;}
.ls54{letter-spacing:0.124200px;}
.ls76{letter-spacing:0.126252px;}
.ls80{letter-spacing:0.127755px;}
.ls66{letter-spacing:0.132264px;}
.ls6e{letter-spacing:0.138276px;}
.ls7f{letter-spacing:0.154652px;}
.ls7e{letter-spacing:0.162792px;}
.ls65{letter-spacing:0.168336px;}
.ls4f{letter-spacing:0.172368px;}
.ls1e{letter-spacing:0.177156px;}
.ls50{letter-spacing:0.180360px;}
.ls4e{letter-spacing:0.181944px;}
.ls2e{letter-spacing:0.183600px;}
.ls1d{letter-spacing:0.191520px;}
.ls1f{letter-spacing:0.192384px;}
.ls8c{letter-spacing:0.648088px;}
.ls60{letter-spacing:5.849676px;}
.lsf{letter-spacing:11.954850px;}
.ls9{letter-spacing:11.957700px;}
.lsa{letter-spacing:11.959933px;}
.lsb{letter-spacing:12.073690px;}
.lsc{letter-spacing:12.077554px;}
.ls9c{letter-spacing:13.445510px;}
.ls8f{letter-spacing:14.695272px;}
.ls8d{letter-spacing:14.704798px;}
.ls6c{letter-spacing:14.764573px;}
.ls64{letter-spacing:14.943900px;}
.ls6{letter-spacing:14.944200px;}
.ls10{letter-spacing:15.123227px;}
.ls6b{letter-spacing:15.302554px;}
.ls8e{letter-spacing:15.959978px;}
.ls18{letter-spacing:17.095822px;}
.ls19{letter-spacing:17.574026px;}
.ls17{letter-spacing:17.633802px;}
.ls13{letter-spacing:17.935200px;}
.ls77{letter-spacing:19.725948px;}
.ls75{letter-spacing:20.144377px;}
.ls7{letter-spacing:62.761200px;}
.lsd{letter-spacing:64.321654px;}
.ls4{letter-spacing:72.355200px;}
.ls73{letter-spacing:534.438600px;}
.ls7b{letter-spacing:849.309228px;}
.ls6d{letter-spacing:1410.210792px;}
.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;}
}
.wse6{word-spacing:-60.120000px;}
.ws13e{word-spacing:-15.108156px;}
.ws180{word-spacing:-15.030000px;}
.ws3a{word-spacing:-14.943900px;}
.ws8c{word-spacing:-14.933808px;}
.ws182{word-spacing:-13.449600px;}
.ws20c{word-spacing:-12.775500px;}
.ws89{word-spacing:-12.161520px;}
.wse5{word-spacing:-12.151944px;}
.ws8a{word-spacing:-11.970000px;}
.ws12{word-spacing:-11.955150px;}
.ws20d{word-spacing:-11.475000px;}
.wse{word-spacing:-11.357400px;}
.ws2{word-spacing:-10.460700px;}
.ws20a{word-spacing:-10.337292px;}
.ws20b{word-spacing:-10.174500px;}
.wsc5{word-spacing:-3.240468px;}
.wsc4{word-spacing:-3.192372px;}
.ws1e2{word-spacing:-3.162312px;}
.wsd5{word-spacing:-3.132252px;}
.ws175{word-spacing:-3.120228px;}
.ws35{word-spacing:-3.108331px;}
.ws176{word-spacing:-3.096180px;}
.wsd4{word-spacing:-3.090168px;}
.ws1e3{word-spacing:-3.060108px;}
.wsf4{word-spacing:-2.807604px;}
.ws1ad{word-spacing:-2.770536px;}
.wsf5{word-spacing:-2.765520px;}
.ws39{word-spacing:-2.749678px;}
.ws77{word-spacing:-2.630126px;}
.ws22e{word-spacing:-2.582323px;}
.wsa2{word-spacing:-2.513016px;}
.wsa1{word-spacing:-2.488968px;}
.ws9c{word-spacing:-2.470932px;}
.ws1f9{word-spacing:-2.464920px;}
.ws114{word-spacing:-2.452896px;}
.wsa0{word-spacing:-2.440872px;}
.ws1bd{word-spacing:-2.434860px;}
.ws1d1{word-spacing:-2.410812px;}
.wsff{word-spacing:-2.398788px;}
.wse2{word-spacing:-2.391024px;}
.ws9b{word-spacing:-2.380752px;}
.ws1be{word-spacing:-2.374740px;}
.ws9d{word-spacing:-2.344680px;}
.ws105{word-spacing:-2.332656px;}
.ws7f{word-spacing:-2.331248px;}
.wsfa{word-spacing:-2.314620px;}
.ws106{word-spacing:-2.302596px;}
.ws7e{word-spacing:-2.271473px;}
.wsbe{word-spacing:-2.152296px;}
.ws60{word-spacing:-2.092146px;}
.ws168{word-spacing:-2.080152px;}
.ws6c{word-spacing:-2.032370px;}
.ws167{word-spacing:-2.032056px;}
.ws115{word-spacing:-2.026044px;}
.wsbf{word-spacing:-1.989972px;}
.ws1fa{word-spacing:-1.977948px;}
.ws230{word-spacing:-1.936742px;}
.ws87{word-spacing:-1.912819px;}
.ws1c8{word-spacing:-1.779552px;}
.ws15f{word-spacing:-1.755504px;}
.ws254{word-spacing:-1.721549px;}
.ws1c7{word-spacing:-1.689372px;}
.ws116{word-spacing:-1.677348px;}
.ws17b{word-spacing:-1.673717px;}
.ws78{word-spacing:-1.613941px;}
.wsf2{word-spacing:-1.605204px;}
.wsf3{word-spacing:-1.581156px;}
.ws139{word-spacing:-1.575144px;}
.ws13a{word-spacing:-1.563120px;}
.ws1a0{word-spacing:-1.560154px;}
.ws71{word-spacing:-1.554166px;}
.ws76{word-spacing:-1.494390px;}
.wsc3{word-spacing:-1.436868px;}
.ws21c{word-spacing:-1.434614px;}
.ws1bb{word-spacing:-1.424844px;}
.ws73{word-spacing:-1.374839px;}
.ws15e{word-spacing:-1.358712px;}
.ws1cd{word-spacing:-1.346688px;}
.ws1bc{word-spacing:-1.334664px;}
.ws166{word-spacing:-1.316628px;}
.ws206{word-spacing:-1.310616px;}
.wsaf{word-spacing:-1.304604px;}
.wsae{word-spacing:-1.280556px;}
.wsc2{word-spacing:-1.274544px;}
.ws1ce{word-spacing:-1.268532px;}
.ws134{word-spacing:-1.262520px;}
.ws202{word-spacing:-1.256508px;}
.ws207{word-spacing:-1.250496px;}
.ws1ed{word-spacing:-1.226448px;}
.ws36{word-spacing:-1.195512px;}
.ws2f{word-spacing:-1.135736px;}
.ws212{word-spacing:-1.097010px;}
.wsf1{word-spacing:-1.082160px;}
.ws211{word-spacing:-1.078650px;}
.ws79{word-spacing:-1.075961px;}
.ws3b{word-spacing:-1.016185px;}
.wsf0{word-spacing:-0.991980px;}
.ws256{word-spacing:-0.968371px;}
.ws80{word-spacing:-0.956410px;}
.ws165{word-spacing:-0.931860px;}
.ws126{word-spacing:-0.901800px;}
.ws6b{word-spacing:-0.896634px;}
.ws155{word-spacing:-0.859716px;}
.ws156{word-spacing:-0.841680px;}
.ws218{word-spacing:-0.812522px;}
.ws7d{word-spacing:-0.777083px;}
.ws6f{word-spacing:-0.717307px;}
.ws257{word-spacing:-0.699379px;}
.wsa6{word-spacing:-0.691380px;}
.ws1fc{word-spacing:-0.673344px;}
.ws16c{word-spacing:-0.661320px;}
.ws62{word-spacing:-0.657532px;}
.ws144{word-spacing:-0.631260px;}
.ws104{word-spacing:-0.625248px;}
.ws91{word-spacing:-0.619236px;}
.ws16d{word-spacing:-0.607212px;}
.ws1dc{word-spacing:-0.595188px;}
.ws227{word-spacing:-0.591782px;}
.wsa7{word-spacing:-0.553104px;}
.ws1da{word-spacing:-0.547092px;}
.ws1cf{word-spacing:-0.541080px;}
.ws13c{word-spacing:-0.537980px;}
.ws1c6{word-spacing:-0.535068px;}
.ws92{word-spacing:-0.523044px;}
.ws145{word-spacing:-0.511020px;}
.wse8{word-spacing:-0.484186px;}
.ws67{word-spacing:-0.478205px;}
.ws265{word-spacing:-0.430387px;}
.ws22{word-spacing:-0.418429px;}
.ws223{word-spacing:-0.382565px;}
.ws181{word-spacing:-0.376589px;}
.ws5d{word-spacing:-0.358654px;}
.ws136{word-spacing:-0.348696px;}
.wsb8{word-spacing:-0.342684px;}
.ws1fd{word-spacing:-0.336672px;}
.ws10a{word-spacing:-0.324648px;}
.ws183{word-spacing:-0.322790px;}
.ws1fe{word-spacing:-0.300600px;}
.ws21{word-spacing:-0.298878px;}
.wsa5{word-spacing:-0.288576px;}
.ws8d{word-spacing:-0.277704px;}
.wsed{word-spacing:-0.272916px;}
.ws25f{word-spacing:-0.271113px;}
.wsb7{word-spacing:-0.270540px;}
.ws24f{word-spacing:-0.268992px;}
.ws12a{word-spacing:-0.252504px;}
.ws1b7{word-spacing:-0.240480px;}
.ws28{word-spacing:-0.239102px;}
.ws20e{word-spacing:-0.236048px;}
.ws1b{word-spacing:-0.215194px;}
.ws21a{word-spacing:-0.214628px;}
.ws1e1{word-spacing:-0.183600px;}
.ws146{word-spacing:-0.180360px;}
.ws31{word-spacing:-0.179327px;}
.ws187{word-spacing:-0.161395px;}
.ws1e0{word-spacing:-0.151200px;}
.ws18b{word-spacing:-0.137151px;}
.ws129{word-spacing:-0.132264px;}
.ws25{word-spacing:-0.119551px;}
.wse0{word-spacing:-0.107597px;}
.ws8e{word-spacing:-0.081396px;}
.wsee{word-spacing:-0.076608px;}
.ws20f{word-spacing:-0.069187px;}
.ws8b{word-spacing:-0.060120px;}
.wsf{word-spacing:-0.059776px;}
.ws249{word-spacing:-0.053798px;}
.ws11{word-spacing:-0.047821px;}
.ws3{word-spacing:-0.041843px;}
.ws143{word-spacing:-0.030060px;}
.ws263{word-spacing:-0.009955px;}
.ws255{word-spacing:-0.008486px;}
.ws25c{word-spacing:-0.008438px;}
.ws250{word-spacing:-0.008198px;}
.ws261{word-spacing:-0.006461px;}
.ws26c{word-spacing:-0.005971px;}
.ws266{word-spacing:-0.005510px;}
.ws259{word-spacing:-0.004963px;}
.wsd{word-spacing:-0.003233px;}
.ws46{word-spacing:-0.001991px;}
.ws244{word-spacing:-0.000461px;}
.ws30{word-spacing:-0.000448px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.000631px;}
.ws10{word-spacing:0.004034px;}
.wsd8{word-spacing:0.006012px;}
.ws135{word-spacing:0.012024px;}
.ws7b{word-spacing:0.017206px;}
.ws1ef{word-spacing:0.024048px;}
.wsd1{word-spacing:0.042084px;}
.ws13b{word-spacing:0.048096px;}
.ws1c{word-spacing:0.053798px;}
.ws95{word-spacing:0.054108px;}
.ws37{word-spacing:0.059776px;}
.ws12e{word-spacing:0.060120px;}
.ws1d0{word-spacing:0.066132px;}
.ws1ec{word-spacing:0.078156px;}
.ws137{word-spacing:0.090180px;}
.ws14{word-spacing:0.095641px;}
.ws98{word-spacing:0.096192px;}
.ws216{word-spacing:0.100980px;}
.wsb9{word-spacing:0.102204px;}
.ws240{word-spacing:0.107597px;}
.ws10c{word-spacing:0.108000px;}
.wsa3{word-spacing:0.108216px;}
.ws99{word-spacing:0.114228px;}
.ws215{word-spacing:0.119340px;}
.ws29{word-spacing:0.119551px;}
.ws11a{word-spacing:0.120240px;}
.ws1b9{word-spacing:0.126252px;}
.ws268{word-spacing:0.127158px;}
.ws9e{word-spacing:0.132264px;}
.ws214{word-spacing:0.133110px;}
.ws10b{word-spacing:0.135000px;}
.ws13{word-spacing:0.143462px;}
.wsce{word-spacing:0.145800px;}
.ws213{word-spacing:0.146880px;}
.wscd{word-spacing:0.151200px;}
.ws90{word-spacing:0.156312px;}
.ws18{word-spacing:0.161395px;}
.wsde{word-spacing:0.162000px;}
.wsd0{word-spacing:0.167400px;}
.ws11b{word-spacing:0.168336px;}
.wscf{word-spacing:0.172800px;}
.wsb6{word-spacing:0.174348px;}
.ws3c{word-spacing:0.179327px;}
.ws1c1{word-spacing:0.180360px;}
.ws9a{word-spacing:0.186372px;}
.ws1f8{word-spacing:0.189000px;}
.ws192{word-spacing:0.191282px;}
.ws1f4{word-spacing:0.192384px;}
.ws161{word-spacing:0.198396px;}
.wscc{word-spacing:0.204408px;}
.ws12f{word-spacing:0.210420px;}
.ws10e{word-spacing:0.210600px;}
.ws245{word-spacing:0.215194px;}
.wsa4{word-spacing:0.216432px;}
.ws9f{word-spacing:0.228456px;}
.ws20{word-spacing:0.239102px;}
.ws1b5{word-spacing:0.268992px;}
.ws33{word-spacing:0.298878px;}
.ws22a{word-spacing:0.322790px;}
.ws125{word-spacing:0.330660px;}
.ws23{word-spacing:0.358654px;}
.ws1a{word-spacing:0.376589px;}
.ws204{word-spacing:0.378756px;}
.ws1f2{word-spacing:0.384768px;}
.wsf8{word-spacing:0.402804px;}
.ws4f{word-spacing:0.418429px;}
.ws246{word-spacing:0.430387px;}
.wscb{word-spacing:0.432864px;}
.wsb1{word-spacing:0.438876px;}
.ws1eb{word-spacing:0.444888px;}
.ws128{word-spacing:0.462924px;}
.wsb2{word-spacing:0.468936px;}
.ws51{word-spacing:0.478205px;}
.wsca{word-spacing:0.480960px;}
.ws40{word-spacing:0.537980px;}
.ws267{word-spacing:0.537984px;}
.ws127{word-spacing:0.553104px;}
.ws205{word-spacing:0.571140px;}
.ws26a{word-spacing:0.591782px;}
.ws4b{word-spacing:0.597756px;}
.ws188{word-spacing:0.645581px;}
.ws13d{word-spacing:0.657532px;}
.ws5e{word-spacing:0.717307px;}
.ws1d2{word-spacing:0.769536px;}
.ws45{word-spacing:0.777083px;}
.ws171{word-spacing:0.787572px;}
.ws1b3{word-spacing:0.806976px;}
.ws1fb{word-spacing:0.817632px;}
.wsf9{word-spacing:0.823644px;}
.ws124{word-spacing:0.835668px;}
.ws27{word-spacing:0.836858px;}
.ws1f1{word-spacing:0.847692px;}
.ws173{word-spacing:0.853704px;}
.wse1{word-spacing:0.860774px;}
.ws1d3{word-spacing:0.895788px;}
.ws4a{word-spacing:0.896634px;}
.ws1c2{word-spacing:0.937872px;}
.ws55{word-spacing:0.956410px;}
.ws253{word-spacing:0.968371px;}
.ws49{word-spacing:1.016185px;}
.ws264{word-spacing:1.022170px;}
.ws42{word-spacing:1.075961px;}
.wse7{word-spacing:1.075968px;}
.ws159{word-spacing:1.118232px;}
.ws72{word-spacing:1.135736px;}
.ws109{word-spacing:1.136268px;}
.ws1ff{word-spacing:1.142280px;}
.ws15d{word-spacing:1.148292px;}
.ws1ba{word-spacing:1.154304px;}
.ws17d{word-spacing:1.195512px;}
.ws1de{word-spacing:1.196388px;}
.wsfe{word-spacing:1.202400px;}
.ws172{word-spacing:1.214424px;}
.ws1d9{word-spacing:1.232460px;}
.ws243{word-spacing:1.237363px;}
.ws17e{word-spacing:1.255288px;}
.ws1df{word-spacing:1.262520px;}
.wsdf{word-spacing:1.315063px;}
.ws3f{word-spacing:1.374839px;}
.wsc{word-spacing:1.380812px;}
.ws160{word-spacing:1.454904px;}
.ws63{word-spacing:1.494390px;}
.ws147{word-spacing:1.503000px;}
.ws189{word-spacing:1.506355px;}
.ws12c{word-spacing:1.509012px;}
.ws12d{word-spacing:1.545084px;}
.ws1db{word-spacing:1.551096px;}
.ws3e{word-spacing:1.554166px;}
.ws1c5{word-spacing:1.569132px;}
.ws15c{word-spacing:1.575144px;}
.ws15b{word-spacing:1.605204px;}
.ws1ae{word-spacing:1.613941px;}
.ws242{word-spacing:1.613952px;}
.ws2b{word-spacing:1.673717px;}
.ws24b{word-spacing:1.775347px;}
.ws1b6{word-spacing:1.793268px;}
.ws226{word-spacing:1.853044px;}
.ws19{word-spacing:1.882944px;}
.ws162{word-spacing:1.887768px;}
.ws203{word-spacing:1.899792px;}
.ws5b{word-spacing:1.912819px;}
.ws16b{word-spacing:1.923840px;}
.ws164{word-spacing:1.935864px;}
.ws151{word-spacing:1.965924px;}
.ws84{word-spacing:1.972595px;}
.ws152{word-spacing:1.983960px;}
.ws163{word-spacing:1.989972px;}
.ws16a{word-spacing:2.020032px;}
.ws47{word-spacing:2.032370px;}
.ws25a{word-spacing:2.044339px;}
.ws195{word-spacing:2.092146px;}
.ws228{word-spacing:2.098138px;}
.ws1b2{word-spacing:2.151922px;}
.ws11c{word-spacing:2.206404px;}
.ws225{word-spacing:2.211697px;}
.wsad{word-spacing:2.212416px;}
.ws1cc{word-spacing:2.248488px;}
.wsd2{word-spacing:2.266524px;}
.ws61{word-spacing:2.271473px;}
.wsd3{word-spacing:2.278548px;}
.wsc6{word-spacing:2.296584px;}
.ws24a{word-spacing:2.313331px;}
.wsac{word-spacing:2.320632px;}
.ws247{word-spacing:2.420928px;}
.ws66{word-spacing:2.450800px;}
.wsc7{word-spacing:2.494980px;}
.ws4{word-spacing:2.510568px;}
.wseb{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws22f{word-spacing:2.528525px;}
.ws222{word-spacing:2.534492px;}
.wsb0{word-spacing:2.549088px;}
.ws24{word-spacing:2.570351px;}
.ws11f{word-spacing:2.585160px;}
.wsdb{word-spacing:2.613600px;}
.ws122{word-spacing:2.619000px;}
.ws201{word-spacing:2.627244px;}
.ws200{word-spacing:2.633256px;}
.ws241{word-spacing:2.636122px;}
.ws14d{word-spacing:2.645280px;}
.ws11e{word-spacing:2.651292px;}
.wsd9{word-spacing:2.667600px;}
.ws120{word-spacing:2.673000px;}
.ws191{word-spacing:2.677954px;}
.wsda{word-spacing:2.683800px;}
.ws121{word-spacing:2.689200px;}
.ws17c{word-spacing:2.689902px;}
.wsec{word-spacing:2.749678px;}
.ws252{word-spacing:2.797517px;}
.ws38{word-spacing:2.809453px;}
.ws251{word-spacing:2.851315px;}
.wse4{word-spacing:2.869229px;}
.ws15{word-spacing:2.869236px;}
.ws17{word-spacing:2.905114px;}
.ws94{word-spacing:2.915820px;}
.ws1d7{word-spacing:2.921832px;}
.wsea{word-spacing:2.929004px;}
.ws100{word-spacing:2.945880px;}
.ws209{word-spacing:2.957904px;}
.ws260{word-spacing:2.958912px;}
.ws1ee{word-spacing:2.987964px;}
.ws43{word-spacing:2.988780px;}
.ws13f{word-spacing:2.999988px;}
.ws1d8{word-spacing:3.012012px;}
.ws208{word-spacing:3.042072px;}
.ws2a{word-spacing:3.048556px;}
.ws93{word-spacing:3.066120px;}
.ws24d{word-spacing:3.066509px;}
.ws108{word-spacing:3.096180px;}
.ws140{word-spacing:3.102192px;}
.ws1af{word-spacing:3.108331px;}
.ws25d{word-spacing:3.120307px;}
.ws48{word-spacing:3.168107px;}
.ws1d{word-spacing:3.219667px;}
.ws26b{word-spacing:3.221597px;}
.ws262{word-spacing:3.222730px;}
.ws269{word-spacing:3.223037px;}
.ws248{word-spacing:3.223642px;}
.ws22b{word-spacing:3.224822px;}
.ws1b4{word-spacing:3.227882px;}
.ws235{word-spacing:3.227904px;}
.ws1cb{word-spacing:3.276540px;}
.ws5f{word-spacing:3.287658px;}
.ws26{word-spacing:3.347434px;}
.wsc1{word-spacing:3.354696px;}
.wsc0{word-spacing:3.360708px;}
.ws107{word-spacing:3.396780px;}
.ws86{word-spacing:3.407209px;}
.ws1e8{word-spacing:3.408804px;}
.ws217{word-spacing:3.428944px;}
.ws25e{word-spacing:3.443098px;}
.ws138{word-spacing:3.450888px;}
.ws34{word-spacing:3.466985px;}
.ws1e9{word-spacing:3.480948px;}
.ws26d{word-spacing:3.496896px;}
.ws4e{word-spacing:3.526760px;}
.ws1e{word-spacing:3.586536px;}
.ws1ca{word-spacing:3.637260px;}
.ws52{word-spacing:3.646312px;}
.ws179{word-spacing:3.667320px;}
.wsf7{word-spacing:3.679344px;}
.ws16e{word-spacing:3.685356px;}
.ws4c{word-spacing:3.706087px;}
.ws1c9{word-spacing:3.709404px;}
.ws1ac{word-spacing:3.712090px;}
.ws1f0{word-spacing:3.715416px;}
.ws17a{word-spacing:3.727440px;}
.ws178{word-spacing:3.733452px;}
.ws1f7{word-spacing:3.747600px;}
.ws1f5{word-spacing:3.753000px;}
.wsdd{word-spacing:3.758400px;}
.ws177{word-spacing:3.763512px;}
.ws1f6{word-spacing:3.763800px;}
.ws5c{word-spacing:3.765863px;}
.wsdc{word-spacing:3.769200px;}
.ws4d{word-spacing:3.825638px;}
.ws2c{word-spacing:3.885414px;}
.ws17f{word-spacing:3.945190px;}
.ws1f3{word-spacing:4.064112px;}
.ws58{word-spacing:4.064741px;}
.wsf6{word-spacing:4.088160px;}
.ws6e{word-spacing:4.124516px;}
.ws170{word-spacing:4.130244px;}
.ws10d{word-spacing:4.147200px;}
.ws174{word-spacing:4.166316px;}
.ws41{word-spacing:4.184292px;}
.ws25b{word-spacing:4.250074px;}
.ws1d4{word-spacing:4.298580px;}
.ws85{word-spacing:4.303843px;}
.wsbd{word-spacing:4.334652px;}
.ws57{word-spacing:4.363619px;}
.ws1dd{word-spacing:4.376736px;}
.ws219{word-spacing:4.379441px;}
.ws22d{word-spacing:4.411469px;}
.ws88{word-spacing:4.423394px;}
.ws1d6{word-spacing:4.424832px;}
.ws1b8{word-spacing:4.466916px;}
.ws16f{word-spacing:4.472928px;}
.wsbc{word-spacing:4.478940px;}
.ws3d{word-spacing:4.483170px;}
.ws1d5{word-spacing:4.521024px;}
.ws83{word-spacing:4.662497px;}
.ws229{word-spacing:4.734259px;}
.ws14a{word-spacing:4.743468px;}
.ws132{word-spacing:4.755492px;}
.ws15a{word-spacing:4.773528px;}
.wse3{word-spacing:4.782048px;}
.ws133{word-spacing:4.815612px;}
.ws68{word-spacing:4.841824px;}
.wsd6{word-spacing:4.857696px;}
.ws53{word-spacing:4.961375px;}
.ws69{word-spacing:5.021150px;}
.ws14b{word-spacing:5.062104px;}
.ws75{word-spacing:5.080926px;}
.ws141{word-spacing:5.140260px;}
.ws82{word-spacing:5.200477px;}
.ws123{word-spacing:5.238000px;}
.ws117{word-spacing:5.248476px;}
.ws224{word-spacing:5.439580px;}
.ws119{word-spacing:5.476932px;}
.wsa{word-spacing:5.481407px;}
.ws10f{word-spacing:5.488956px;}
.ws65{word-spacing:5.499355px;}
.ws110{word-spacing:5.506992px;}
.ws1bf{word-spacing:5.525028px;}
.ws1c0{word-spacing:5.543064px;}
.ws111{word-spacing:5.555088px;}
.ws1b0{word-spacing:5.559131px;}
.ws158{word-spacing:5.585148px;}
.ws142{word-spacing:5.597172px;}
.ws7c{word-spacing:5.678682px;}
.ws118{word-spacing:5.681340px;}
.ws14c{word-spacing:5.843664px;}
.ws11d{word-spacing:5.861700px;}
.wsab{word-spacing:5.867712px;}
.ws148{word-spacing:5.915808px;}
.ws21b{word-spacing:5.917784px;}
.ws103{word-spacing:5.951880px;}
.ws149{word-spacing:5.987952px;}
.ws1f{word-spacing:6.037336px;}
.ws5a{word-spacing:6.097111px;}
.wsb4{word-spacing:6.156288px;}
.ws12b{word-spacing:6.162300px;}
.ws1c3{word-spacing:6.204384px;}
.wsb3{word-spacing:6.216408px;}
.ws50{word-spacing:6.216662px;}
.ws1c4{word-spacing:6.222420px;}
.wsfd{word-spacing:6.234444px;}
.wsfb{word-spacing:6.240456px;}
.ws1e4{word-spacing:6.252480px;}
.ws6d{word-spacing:6.276438px;}
.wsb5{word-spacing:6.390756px;}
.ws32{word-spacing:6.395989px;}
.ws2e{word-spacing:6.455765px;}
.wsfc{word-spacing:6.504984px;}
.ws2d{word-spacing:6.515540px;}
.ws131{word-spacing:6.535044px;}
.wsc8{word-spacing:6.547068px;}
.ws169{word-spacing:6.577128px;}
.ws157{word-spacing:6.601176px;}
.ws130{word-spacing:6.643260px;}
.wsc9{word-spacing:6.673320px;}
.ws64{word-spacing:6.694867px;}
.ws6a{word-spacing:6.754643px;}
.wsd7{word-spacing:6.901776px;}
.ws7a{word-spacing:6.933970px;}
.ws56{word-spacing:6.993745px;}
.ws24c{word-spacing:6.993792px;}
.ws1ea{word-spacing:7.040052px;}
.ws1b1{word-spacing:7.053521px;}
.ws258{word-spacing:7.208986px;}
.ws112{word-spacing:7.220412px;}
.ws74{word-spacing:7.232848px;}
.ws153{word-spacing:7.322616px;}
.ws113{word-spacing:7.412796px;}
.ws193{word-spacing:7.471950px;}
.wsbb{word-spacing:7.575120px;}
.ws54{word-spacing:7.591501px;}
.ws154{word-spacing:7.647264px;}
.ws194{word-spacing:7.651277px;}
.wsba{word-spacing:7.761492px;}
.ws44{word-spacing:7.830604px;}
.ws81{word-spacing:7.950155px;}
.ws101{word-spacing:8.122212px;}
.wse9{word-spacing:8.129482px;}
.ws102{word-spacing:8.152272px;}
.ws70{word-spacing:8.308808px;}
.ws1e6{word-spacing:8.410788px;}
.ws18a{word-spacing:8.488135px;}
.ws1e5{word-spacing:8.525016px;}
.ws1e7{word-spacing:8.573112px;}
.wsaa{word-spacing:8.723412px;}
.ws14f{word-spacing:8.747460px;}
.ws150{word-spacing:8.765496px;}
.wsa8{word-spacing:8.987940px;}
.ws14e{word-spacing:9.090144px;}
.ws16{word-spacing:9.204155px;}
.wsa9{word-spacing:9.216396px;}
.ws8{word-spacing:9.833058px;}
.ws210{word-spacing:9.873335px;}
.ws59{word-spacing:10.699832px;}
.wsef{word-spacing:11.615688px;}
.ws8f{word-spacing:11.620476px;}
.ws9{word-spacing:11.841512px;}
.ws22c{word-spacing:12.220105px;}
.ws6{word-spacing:15.481836px;}
.ws97{word-spacing:18.060048px;}
.ws96{word-spacing:18.072072px;}
.ws7{word-spacing:22.339429px;}
.wsb{word-spacing:22.720640px;}
.ws24e{word-spacing:33.785395px;}
.ws18c{word-spacing:47.719181px;}
.ws238{word-spacing:89.340450px;}
.ws18d{word-spacing:94.465690px;}
.ws18e{word-spacing:102.701146px;}
.ws21d{word-spacing:107.911690px;}
.ws237{word-spacing:109.461353px;}
.ws236{word-spacing:121.561050px;}
.ws190{word-spacing:126.987955px;}
.ws21e{word-spacing:127.230998px;}
.ws21f{word-spacing:129.600346px;}
.ws18f{word-spacing:133.312579px;}
.ws221{word-spacing:140.433955px;}
.ws220{word-spacing:146.758579px;}
.ws23c{word-spacing:190.278167px;}
.ws23d{word-spacing:201.085623px;}
.ws23a{word-spacing:211.845258px;}
.ws239{word-spacing:211.893079px;}
.ws23b{word-spacing:213.040773px;}
.ws232{word-spacing:238.219315px;}
.ws234{word-spacing:241.285824px;}
.ws23f{word-spacing:253.067674px;}
.ws233{word-spacing:261.567821px;}
.ws23e{word-spacing:273.242074px;}
.ws231{word-spacing:279.321293px;}
.ws1a8{word-spacing:698.464627px;}
.ws19a{word-spacing:711.914227px;}
.ws1ab{word-spacing:799.820813px;}
.ws1a4{word-spacing:813.270413px;}
.ws19c{word-spacing:818.381261px;}
.ws19f{word-spacing:826.720013px;}
.ws19d{word-spacing:840.062016px;}
.ws1a3{word-spacing:853.511616px;}
.ws1a6{word-spacing:901.930176px;}
.ws1a7{word-spacing:911.183501px;}
.ws1a1{word-spacing:915.379776px;}
.ws199{word-spacing:924.633101px;}
.ws197{word-spacing:928.829376px;}
.ws1a9{word-spacing:935.231386px;}
.ws1a5{word-spacing:940.127040px;}
.ws1aa{word-spacing:943.462541px;}
.ws1a2{word-spacing:948.680986px;}
.ws196{word-spacing:953.576640px;}
.ws19e{word-spacing:956.912141px;}
.ws19b{word-spacing:962.130586px;}
.ws198{word-spacing:990.428544px;}
.ws184{word-spacing:1337.351364px;}
.ws185{word-spacing:1338.794244px;}
.ws186{word-spacing:1375.509528px;}
._66{margin-left:-20.912054px;}
._4{margin-left:-11.943245px;}
._16{margin-left:-8.189266px;}
._a{margin-left:-7.155187px;}
._b{margin-left:-6.133018px;}
._9{margin-left:-4.943365px;}
._0{margin-left:-3.849538px;}
._1f{margin-left:-2.468214px;}
._3{margin-left:-1.464498px;}
._1d{width:1.163484px;}
._5{width:2.997187px;}
._31{width:4.106196px;}
._1b{width:10.699870px;}
._29{width:11.948638px;}
._1{width:12.971268px;}
._12{width:14.101174px;}
._7{width:15.332544px;}
._8{width:16.892633px;}
._c{width:18.291334px;}
._d{width:19.767714px;}
._13{width:21.250222px;}
._f{width:23.133157px;}
._1a{width:24.239002px;}
._2{width:25.314894px;}
._19{width:26.420815px;}
._e{width:28.303742px;}
._14{width:29.648698px;}
._1c{width:31.412074px;}
._2f{width:32.846688px;}
._15{width:33.952541px;}
._18{width:35.686033px;}
._17{width:37.120639px;}
._65{width:38.567675px;}
._30{width:40.216501px;}
._6{width:54.405893px;}
._3b{width:72.460422px;}
._3f{width:86.185037px;}
._26{width:102.701146px;}
._27{width:104.853082px;}
._28{width:107.005018px;}
._22{width:118.302682px;}
._23{width:120.454618px;}
._47{width:122.898942px;}
._41{width:128.631974px;}
._25{width:135.571968px;}
._24{width:137.777702px;}
._33{width:145.201882px;}
._34{width:147.353818px;}
._35{width:164.676902px;}
._40{width:184.743706px;}
._62{width:201.762014px;}
._4a{width:202.957529px;}
._52{width:204.480886px;}
._50{width:205.628580px;}
._48{width:213.464255px;}
._51{width:214.864859px;}
._60{width:220.166042px;}
._45{width:221.272819px;}
._4f{width:222.700534px;}
._56{width:223.848229px;}
._49{width:224.995923px;}
._54{width:226.341803px;}
._59{width:228.159014px;}
._5f{width:230.973498px;}
._4e{width:234.607864px;}
._4d{width:235.755558px;}
._3d{width:241.823808px;}
._3a{width:243.760550px;}
._38{width:248.602406px;}
._4b{width:257.370469px;}
._58{width:262.052006px;}
._63{width:263.348044px;}
._39{width:266.571072px;}
._57{width:267.790214px;}
._43{width:275.340211px;}
._53{width:278.261168px;}
._55{width:279.709592px;}
._64{width:284.962955px;}
._4c{width:290.940530px;}
._3e{width:293.147482px;}
._61{width:303.467506px;}
._3c{width:312.461107px;}
._5b{width:313.590874px;}
._37{width:314.720640px;}
._36{width:317.733350px;}
._44{width:319.939085px;}
._42{width:346.730688px;}
._5e{width:386.003520px;}
._5d{width:387.294682px;}
._5c{width:396.332813px;}
._5a{width:405.424742px;}
._2c{width:526.841644px;}
._2d{width:560.519442px;}
._2a{width:566.168274px;}
._2e{width:583.981632px;}
._2b{width:597.431232px;}
._10{width:724.814962px;}
._32{width:1756.363367px;}
._21{width:2065.615020px;}
._1e{width:2090.287584px;}
._20{width:2500.851000px;}
._11{width:2524.761000px;}
._46{width:3978.831000px;}
.fc2{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc1{color:rgb(77,128,114);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs10{font-size:36.000000px;}
.fs13{font-size:40.698000px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.429600px;}
.fs15{font-size:45.900000px;}
.fsd{font-size:47.337600px;}
.fsb{font-size:47.820600px;}
.fse{font-size:47.880000px;}
.fs14{font-size:51.102000px;}
.fsc{font-size:53.798400px;}
.fs11{font-size:54.000000px;}
.fs16{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:60.120000px;}
.fs12{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.fs6{font-size:128.507760px;}
.y14e{bottom:-776.454450px;}
.y14d{bottom:-759.084000px;}
.y14c{bottom:-741.713550px;}
.y1cf{bottom:-738.759000px;}
.y1ce{bottom:-721.388550px;}
.y14b{bottom:-719.300067px;}
.y1cd{bottom:-704.108550px;}
.y1cc{bottom:-681.692052px;}
.y160{bottom:-492.306450px;}
.y15f{bottom:-474.936000px;}
.y15e{bottom:-457.565550px;}
.y14a{bottom:-445.070202px;}
.y15d{bottom:-435.152067px;}
.y149{bottom:-425.900940px;}
.y148{bottom:-406.641498px;}
.y1cb{bottom:-405.212196px;}
.y22c{bottom:-402.504042px;}
.y147{bottom:-387.472236px;}
.y1ca{bottom:-385.952754px;}
.y22b{bottom:-383.334780px;}
.y146{bottom:-368.212794px;}
.y32b{bottom:-367.019748px;}
.y1c9{bottom:-366.693312px;}
.y22a{bottom:-364.075338px;}
.y32a{bottom:-347.760306px;}
.y1c8{bottom:-347.524050px;}
.y229{bottom:-344.815896px;}
.y145{bottom:-344.543550px;}
.y329{bottom:-328.591044px;}
.y228{bottom:-325.646634px;}
.y1c7{bottom:-323.854806px;}
.y328{bottom:-309.331602px;}
.y144{bottom:-307.643550px;}
.y227{bottom:-306.387192px;}
.y327{bottom:-290.162340px;}
.y226{bottom:-287.217930px;}
.y1c6{bottom:-286.595436px;}
.y143{bottom:-285.143550px;}
.y326{bottom:-270.902898px;}
.y225{bottom:-267.958488px;}
.y1c5{bottom:-267.335994px;}
.y1b1{bottom:-267.109341px;}
.y325{bottom:-251.643456px;}
.y224{bottom:-248.699046px;}
.y1c4{bottom:-248.076552px;}
.y1b0{bottom:-247.849899px;}
.y324{bottom:-232.474194px;}
.y223{bottom:-229.529784px;}
.y1c3{bottom:-228.905787px;}
.y1af{bottom:-228.590457px;}
.y323{bottom:-213.214752px;}
.y222{bottom:-210.270342px;}
.y1c2{bottom:-209.646345px;}
.y1ae{bottom:-209.421195px;}
.y221{bottom:-191.010900px;}
.y1c1{bottom:-190.386903px;}
.y1ad{bottom:-190.161753px;}
.y322{bottom:-189.545508px;}
.y220{bottom:-171.841638px;}
.y1c0{bottom:-171.216138px;}
.y1ac{bottom:-170.902311px;}
.y15c{bottom:-160.922202px;}
.y21f{bottom:-152.582196px;}
.y321{bottom:-152.286138px;}
.y1bf{bottom:-151.956696px;}
.y1ab{bottom:-151.731546px;}
.y15b{bottom:-141.752940px;}
.y21e{bottom:-133.412934px;}
.y320{bottom:-133.026696px;}
.y1be{bottom:-132.787434px;}
.y1aa{bottom:-132.472104px;}
.y15a{bottom:-122.493498px;}
.y21d{bottom:-114.153492px;}
.y31f{bottom:-113.857434px;}
.y1bd{bottom:-113.527992px;}
.y1a9{bottom:-113.302842px;}
.y33d{bottom:-109.423642px;}
.y159{bottom:-103.324236px;}
.y21c{bottom:-94.894050px;}
.y31e{bottom:-94.597992px;}
.y1bc{bottom:-94.268550px;}
.y1a8{bottom:-94.043400px;}
.y33c{bottom:-93.053116px;}
.y158{bottom:-84.064794px;}
.y2fd{bottom:-79.282050px;}
.y33b{bottom:-76.682590px;}
.y31d{bottom:-75.338550px;}
.y157{bottom:-60.395550px;}
.y33a{bottom:-60.388718px;}
.y1ff{bottom:-58.323000px;}
.y21b{bottom:-58.173600px;}
.y177{bottom:-58.005450px;}
.y1bb{bottom:-57.548100px;}
.y1a7{bottom:-57.234000px;}
.y1fe{bottom:-40.952550px;}
.y21a{bottom:-40.714050px;}
.y176{bottom:-40.635000px;}
.y1ba{bottom:-40.088550px;}
.y1a6{bottom:-39.863550px;}
.y2fc{bottom:-39.592500px;}
.y31c{bottom:-38.618100px;}
.y339{bottom:-29.100600px;}
.y142{bottom:-24.863550px;}
.y13c{bottom:-23.851050px;}
.y1fd{bottom:-23.672550px;}
.y156{bottom:-23.495550px;}
.y219{bottom:-23.434050px;}
.y175{bottom:-23.264550px;}
.y1b9{bottom:-22.808550px;}
.y1a5{bottom:-22.583550px;}
.y2fb{bottom:-22.222050px;}
.y31b{bottom:-21.158550px;}
.y338{bottom:-14.335717px;}
.y141{bottom:-2.363550px;}
.y13b{bottom:-1.345344px;}
.y1fc{bottom:-1.256052px;}
.y218{bottom:-1.016661px;}
.y155{bottom:-0.995550px;}
.y174{bottom:-0.851067px;}
.y1b8{bottom:-0.398550px;}
.y1a4{bottom:-0.164685px;}
.y0{bottom:0.000000px;}
.y2fa{bottom:0.199020px;}
.y31a{bottom:1.251333px;}
.y251{bottom:7.999938px;}
.y337{bottom:8.537331px;}
.y3e{bottom:16.704213px;}
.y336{bottom:21.924778px;}
.y24f{bottom:23.749875px;}
.y6c{bottom:31.890000px;}
.y253{bottom:55.956000px;}
.y6{bottom:66.525004px;}
.y252{bottom:75.189000px;}
.y5{bottom:97.125005px;}
.y248{bottom:100.607250px;}
.yfc{bottom:103.621500px;}
.y3c{bottom:104.646000px;}
.y6b{bottom:105.741000px;}
.ycb{bottom:105.847500px;}
.y1e0{bottom:107.376000px;}
.y36e{bottom:107.844000px;}
.y2b7{bottom:109.045500px;}
.y387{bottom:109.984500px;}
.y33f{bottom:110.515500px;}
.y3c1{bottom:111.838500px;}
.y488{bottom:111.900000px;}
.y18a{bottom:117.958500px;}
.ya2{bottom:119.148000px;}
.yab{bottom:119.596500px;}
.yfb{bottom:122.449500px;}
.y3b{bottom:122.535000px;}
.y6a{bottom:124.570500px;}
.yca{bottom:124.677000px;}
.y3c0{bottom:126.036000px;}
.y1df{bottom:126.205500px;}
.y36d{bottom:126.673500px;}
.y386{bottom:127.560000px;}
.y487{bottom:129.160500px;}
.y453{bottom:129.235500px;}
.y33e{bottom:129.748500px;}
.y41a{bottom:131.131500px;}
.y284{bottom:133.605000px;}
.y189{bottom:136.788000px;}
.ya1{bottom:137.977500px;}
.yaa{bottom:138.426000px;}
.y22{bottom:139.264499px;}
.y3bf{bottom:140.232000px;}
.y3a{bottom:140.422500px;}
.yf9{bottom:141.279000px;}
.y69{bottom:143.400000px;}
.yc9{bottom:143.506500px;}
.y1de{bottom:145.035000px;}
.y385{bottom:145.134000px;}
.y419{bottom:145.329000px;}
.y36c{bottom:145.503000px;}
.y486{bottom:146.421000px;}
.y452{bottom:146.496000px;}
.yfa{bottom:146.704500px;}
.y283{bottom:150.043500px;}
.y14f{bottom:150.247500px;}
.y32f{bottom:152.178000px;}
.y3be{bottom:154.429500px;}
.y188{bottom:155.617500px;}
.ya0{bottom:156.807000px;}
.ya9{bottom:157.255500px;}
.y39{bottom:158.310000px;}
.y418{bottom:159.525000px;}
.yf8{bottom:160.108500px;}
.y68{bottom:162.229500px;}
.yc8{bottom:162.336000px;}
.y384{bottom:162.708000px;}
.y451{bottom:163.756500px;}
.y1dd{bottom:163.864500px;}
.y36b{bottom:164.332500px;}
.y282{bottom:166.482000px;}
.y13e{bottom:172.677000px;}
.y417{bottom:173.722500px;}
.y187{bottom:174.447000px;}
.y9f{bottom:175.636500px;}
.y3bd{bottom:175.828500px;}
.y250{bottom:175.850469px;}
.ya8{bottom:176.085000px;}
.y38{bottom:176.199000px;}
.y247{bottom:178.774500px;}
.yf6{bottom:178.938000px;}
.y383{bottom:180.282000px;}
.y450{bottom:181.015500px;}
.y67{bottom:181.059000px;}
.yc7{bottom:181.165500px;}
.y1dc{bottom:182.694000px;}
.y281{bottom:182.920500px;}
.y369{bottom:183.162000px;}
.yf7{bottom:184.363500px;}
.y485{bottom:185.499000px;}
.y36a{bottom:188.586000px;}
.y3bc{bottom:190.024500px;}
.y186{bottom:193.276500px;}
.y37{bottom:194.086500px;}
.y9e{bottom:194.466000px;}
.ya7{bottom:194.914500px;}
.y416{bottom:195.121500px;}
.y19{bottom:196.933500px;}
.y246{bottom:197.604000px;}
.y230{bottom:197.767500px;}
.y382{bottom:197.856000px;}
.y44f{bottom:198.276000px;}
.y280{bottom:199.359000px;}
.y66{bottom:199.888500px;}
.yc6{bottom:199.995000px;}
.y1db{bottom:201.523500px;}
.y368{bottom:201.991500px;}
.y484{bottom:202.759500px;}
.yf5{bottom:204.192000px;}
.y3bb{bottom:204.222000px;}
.y415{bottom:209.317500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y36{bottom:211.974000px;}
.y185{bottom:212.106000px;}
.y9d{bottom:213.295500px;}
.ya6{bottom:213.744000px;}
.y381{bottom:215.430000px;}
.y44e{bottom:215.536500px;}
.y27f{bottom:215.797500px;}
.y245{bottom:216.433500px;}
.y2b5{bottom:216.597000px;}
.y3ba{bottom:218.418000px;}
.y65{bottom:218.718000px;}
.yc5{bottom:218.824500px;}
.y483{bottom:220.020000px;}
.y1da{bottom:220.353000px;}
.y366{bottom:220.821000px;}
.y2b6{bottom:222.022500px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y414{bottom:223.515000px;}
.y367{bottom:226.245000px;}
.yf4{bottom:229.446000px;}
.y35{bottom:229.863000px;}
.y22f{bottom:230.920500px;}
.y184{bottom:230.935500px;}
.y2d7{bottom:231.676500px;}
.y9c{bottom:232.125000px;}
.y27e{bottom:232.236000px;}
.ya5{bottom:232.573500px;}
.y44d{bottom:232.797000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y244{bottom:235.263000px;}
.y2b4{bottom:235.426500px;}
.y482{bottom:237.280500px;}
.y64{bottom:237.547500px;}
.yc4{bottom:237.654000px;}
.y413{bottom:237.711000px;}
.y1d9{bottom:239.182500px;}
.y365{bottom:239.650500px;}
.y3b9{bottom:239.817000px;}
.y32e{bottom:240.852000px;}
.yf3{bottom:248.275500px;}
.y27d{bottom:248.674500px;}
.y183{bottom:249.765000px;}
.y380{bottom:249.789000px;}
.y44c{bottom:250.057500px;}
.y22e{bottom:250.153500px;}
.y2d6{bottom:250.506000px;}
.yaf{bottom:250.954500px;}
.ya4{bottom:251.403000px;}
.y3b8{bottom:254.014500px;}
.y243{bottom:254.092500px;}
.y2b2{bottom:254.256000px;}
.y481{bottom:254.541000px;}
.y9b{bottom:255.438000px;}
.y63{bottom:256.377000px;}
.yc3{bottom:256.483500px;}
.y1d8{bottom:258.010500px;}
.y364{bottom:258.480000px;}
.y412{bottom:259.110000px;}
.y154{bottom:259.284450px;}
.y13a{bottom:259.384575px;}
.y2b3{bottom:259.681500px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y319{bottom:264.231243px;}
.y27c{bottom:265.113000px;}
.y335{bottom:266.725076px;}
.y44b{bottom:267.318000px;}
.y3b7{bottom:268.210500px;}
.y182{bottom:268.593000px;}
.y2d5{bottom:269.335500px;}
.y22d{bottom:269.386500px;}
.yae{bottom:269.784000px;}
.ya3{bottom:270.232500px;}
.y480{bottom:271.801500px;}
.y1a3{bottom:271.815189px;}
.y217{bottom:271.953690px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y242{bottom:272.922000px;}
.y2b1{bottom:273.085500px;}
.y411{bottom:273.307500px;}
.y173{bottom:273.378798px;}
.yf2{bottom:273.529500px;}
.y62{bottom:275.206500px;}
.y1fb{bottom:275.223804px;}
.y1d7{bottom:276.840000px;}
.y363{bottom:277.309500px;}
.y140{bottom:278.076585px;}
.y139{bottom:278.553837px;}
.yc2{bottom:279.796500px;}
.y334{bottom:280.112522px;}
.y27b{bottom:281.550000px;}
.y153{bottom:281.784450px;}
.y3b6{bottom:282.408000px;}
.y318{bottom:283.402008px;}
.y44a{bottom:284.578500px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y37f{bottom:286.551000px;}
.y181{bottom:287.422500px;}
.y410{bottom:287.503500px;}
.y13f{bottom:287.706450px;}
.y2d4{bottom:288.165000px;}
.y9a{bottom:289.062000px;}
.y1a2{bottom:291.074631px;}
.y216{bottom:291.122952px;}
.y1b7{bottom:291.381585px;}
.y241{bottom:291.751500px;}
.y203{bottom:291.816000px;}
.y2b0{bottom:291.915000px;}
.yf1{bottom:292.359000px;}
.y172{bottom:292.548060px;}
.yad{bottom:293.095500px;}
.y61{bottom:294.036000px;}
.y1fa{bottom:294.483246px;}
.yc1{bottom:295.488000px;}
.y1d6{bottom:295.669500px;}
.y362{bottom:296.139000px;}
.y138{bottom:297.813279px;}
.y27a{bottom:297.988500px;}
.y34{bottom:299.892000px;}
.y2f9{bottom:300.259443px;}
.y1b6{bottom:301.011450px;}
.y40f{bottom:301.701000px;}
.y449{bottom:301.839000px;}
.y317{bottom:302.661450px;}
.y315{bottom:302.667543px;}
.y3b5{bottom:303.807000px;}
.y180{bottom:306.252000px;}
.y47f{bottom:306.321000px;}
.y316{bottom:306.441450px;}
.y2d3{bottom:306.994500px;}
.y99{bottom:307.891500px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y1a1{bottom:310.334073px;}
.y215{bottom:310.382394px;}
.y240{bottom:310.581000px;}
.y2af{bottom:310.744500px;}
.yf0{bottom:311.188500px;}
.y171{bottom:311.807502px;}
.y60{bottom:312.865500px;}
.y37e{bottom:313.092000px;}
.y1f9{bottom:313.742688px;}
.y1d5{bottom:314.499000px;}
.y361{bottom:314.968500px;}
.y137{bottom:316.982541px;}
.y33{bottom:317.779500px;}
.y3b4{bottom:318.004500px;}
.y448{bottom:319.099500px;}
.y2f8{bottom:319.430208px;}
.y279{bottom:321.630000px;}
.y314{bottom:321.836805px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y40e{bottom:323.100000px;}
.y47e{bottom:323.581500px;}
.y17f{bottom:325.081500px;}
.y2d2{bottom:325.824000px;}
.y98{bottom:326.719500px;}
.yc0{bottom:329.112000px;}
.y23f{bottom:329.410500px;}
.y1a0{bottom:329.503335px;}
.y2ae{bottom:329.574000px;}
.y214{bottom:329.641836px;}
.y37d{bottom:330.666000px;}
.y170{bottom:330.976764px;}
.y5f{bottom:331.695000px;}
.y3b3{bottom:332.200500px;}
.y1f8{bottom:332.911950px;}
.y1d4{bottom:333.328500px;}
.y360{bottom:333.798000px;}
.yef{bottom:334.501500px;}
.y32{bottom:335.667000px;}
.y136{bottom:336.241983px;}
.y447{bottom:336.358500px;}
.y40d{bottom:337.296000px;}
.y2f7{bottom:338.689650px;}
.y47d{bottom:340.842000px;}
.y313{bottom:341.096247px;}
.y24e{bottom:343.699497px;}
.y17e{bottom:343.911000px;}
.y2d1{bottom:344.653500px;}
.y97{bottom:345.549000px;}
.y3b2{bottom:346.398000px;}
.ybf{bottom:347.940000px;}
.y10{bottom:348.133500px;}
.y23e{bottom:348.240000px;}
.y2ad{bottom:348.403500px;}
.y213{bottom:348.812601px;}
.y16f{bottom:350.236206px;}
.y5e{bottom:350.524500px;}
.y40c{bottom:351.493500px;}
.y1d3{bottom:352.158000px;}
.y35f{bottom:352.627500px;}
.y19f{bottom:353.174082px;}
.y278{bottom:353.250000px;}
.y31{bottom:353.556000px;}
.y446{bottom:353.619000px;}
.y135{bottom:355.501425px;}
.y1f7{bottom:356.581194px;}
.y2f6{bottom:357.949092px;}
.y47c{bottom:358.102500px;}
.y24d{bottom:359.449434px;}
.y312{bottom:360.355689px;}
.y17d{bottom:362.740500px;}
.y2d0{bottom:363.483000px;}
.y96{bottom:364.378500px;}
.y40b{bottom:365.689500px;}
.y37c{bottom:365.814000px;}
.y23d{bottom:367.069500px;}
.y2ac{bottom:367.233000px;}
.y3b1{bottom:367.797000px;}
.y212{bottom:368.072043px;}
.yee{bottom:368.125500px;}
.y5d{bottom:369.354000px;}
.y445{bottom:370.879500px;}
.y35e{bottom:371.457000px;}
.y16e{bottom:373.905450px;}
.ybe{bottom:374.242500px;}
.y134{bottom:374.670687px;}
.y47b{bottom:375.363000px;}
.y2f5{bottom:377.119857px;}
.y311{bottom:379.524951px;}
.y32d{bottom:381.121500px;}
.y17c{bottom:381.570000px;}
.y30{bottom:381.904500px;}
.y3b0{bottom:381.993000px;}
.y2cf{bottom:382.312500px;}
.y95{bottom:383.208000px;}
.y37b{bottom:383.388000px;}
.y1d2{bottom:385.723500px;}
.y23c{bottom:385.899000px;}
.y2aa{bottom:386.062500px;}
.yf{bottom:386.785499px;}
.yed{bottom:386.955000px;}
.y40a{bottom:387.088500px;}
.y211{bottom:387.241305px;}
.y444{bottom:388.140000px;}
.y5c{bottom:388.183500px;}
.y35d{bottom:390.285000px;}
.y277{bottom:390.354000px;}
.y19e{bottom:390.433452px;}
.y2ab{bottom:391.486500px;}
.y47a{bottom:392.623500px;}
.ybd{bottom:393.072000px;}
.y1f6{bottom:393.840564px;}
.y133{bottom:393.930129px;}
.y3af{bottom:396.190500px;}
.y2f4{bottom:396.379299px;}
.y310{bottom:398.784393px;}
.y2f{bottom:399.792000px;}
.y32c{bottom:400.354500px;}
.y17b{bottom:400.399500px;}
.y37a{bottom:400.962000px;}
.y2ce{bottom:401.142000px;}
.y409{bottom:401.286000px;}
.y94{bottom:402.037500px;}
.y23b{bottom:404.728500px;}
.y2a9{bottom:404.892000px;}
.y1d1{bottom:404.956500px;}
.y443{bottom:405.400500px;}
.y210{bottom:406.500747px;}
.y5b{bottom:407.013000px;}
.ye{bottom:408.044999px;}
.y35c{bottom:409.114500px;}
.y276{bottom:409.183500px;}
.y19d{bottom:409.692894px;}
.y479{bottom:409.884000px;}
.y3ae{bottom:410.386500px;}
.y16d{bottom:410.805450px;}
.ybc{bottom:411.901500px;}
.yec{bottom:412.209000px;}
.y1f5{bottom:413.100006px;}
.y132{bottom:413.189571px;}
.y408{bottom:415.482000px;}
.y2f3{bottom:415.638741px;}
.y2e{bottom:417.679500px;}
.y30f{bottom:418.043835px;}
.y93{bottom:420.867000px;}
.y442{bottom:422.661000px;}
.y306{bottom:422.784000px;}
.y23a{bottom:423.558000px;}
.y2a7{bottom:423.721500px;}
.y1d0{bottom:424.189500px;}
.y2cd{bottom:424.453500px;}
.y20f{bottom:425.760189px;}
.y5a{bottom:425.842500px;}
.y478{bottom:427.144500px;}
.y379{bottom:427.503000px;}
.y35b{bottom:427.944000px;}
.y275{bottom:428.013000px;}
.y19c{bottom:428.952336px;}
.y2a8{bottom:429.145500px;}
.y407{bottom:429.679500px;}
.ybb{bottom:430.731000px;}
.y3f0{bottom:430.816500px;}
.yeb{bottom:431.038500px;}
.y3ad{bottom:431.785500px;}
.y131{bottom:432.358833px;}
.y1f4{bottom:432.359448px;}
.y16c{bottom:433.305450px;}
.y17a{bottom:433.965000px;}
.y2f2{bottom:434.808003px;}
.y2d{bottom:435.568500px;}
.y13d{bottom:435.931500px;}
.y30e{bottom:437.213097px;}
.y92{bottom:439.696500px;}
.y441{bottom:439.921500px;}
.y238{bottom:442.387500px;}
.y2a6{bottom:442.551000px;}
.y477{bottom:444.403500px;}
.y59{bottom:444.672000px;}
.y20e{bottom:444.929451px;}
.y378{bottom:445.077000px;}
.y3ac{bottom:445.983000px;}
.y1b5{bottom:446.619000px;}
.y35a{bottom:446.773500px;}
.y274{bottom:446.842500px;}
.y3ef{bottom:447.255000px;}
.y239{bottom:447.811500px;}
.y19b{bottom:448.123101px;}
.yba{bottom:449.560500px;}
.y406{bottom:451.078500px;}
.y1f3{bottom:451.530213px;}
.y179{bottom:453.198000px;}
.y2c{bottom:453.456000px;}
.y2f1{bottom:454.067445px;}
.y130{bottom:456.029580px;}
.yea{bottom:456.292500px;}
.y30d{bottom:456.472539px;}
.y440{bottom:457.182000px;}
.y2cc{bottom:458.077500px;}
.y111{bottom:458.361000px;}
.y91{bottom:458.526000px;}
.y3ab{bottom:460.179000px;}
.y236{bottom:461.217000px;}
.y476{bottom:461.664000px;}
.y58{bottom:463.501500px;}
.y3ee{bottom:463.693500px;}
.y20d{bottom:464.188893px;}
.y405{bottom:465.274500px;}
.y359{bottom:465.603000px;}
.y273{bottom:465.672000px;}
.y237{bottom:466.641000px;}
.y19a{bottom:467.382543px;}
.yb9{bottom:468.390000px;}
.y1f2{bottom:470.789655px;}
.y377{bottom:471.618000px;}
.y178{bottom:472.431000px;}
.y2f0{bottom:473.236707px;}
.y3aa{bottom:474.376500px;}
.y43f{bottom:474.441000px;}
.ye9{bottom:475.122000px;}
.y30c{bottom:475.641801px;}
.y2cb{bottom:476.907000px;}
.y90{bottom:477.355500px;}
.y475{bottom:478.924500px;}
.y404{bottom:479.472000px;}
.y235{bottom:480.045000px;}
.y3ed{bottom:480.132000px;}
.y2b{bottom:480.310500px;}
.y57{bottom:482.331000px;}
.y20c{bottom:483.448335px;}
.y358{bottom:484.432500px;}
.y272{bottom:484.500000px;}
.y199{bottom:486.551805px;}
.y2a5{bottom:486.976500px;}
.yb8{bottom:487.219500px;}
.y1f1{bottom:490.049097px;}
.y43e{bottom:491.701500px;}
.y2ef{bottom:492.496149px;}
.y12f{bottom:493.288950px;}
.y12d{bottom:493.293450px;}
.y403{bottom:493.668000px;}
.ye8{bottom:493.951500px;}
.y167{bottom:494.860500px;}
.y30b{bottom:494.901243px;}
.y2ca{bottom:495.736500px;}
.y3a9{bottom:495.775500px;}
.y8f{bottom:496.185000px;}
.y12e{bottom:497.068950px;}
.y376{bottom:498.157500px;}
.y2a{bottom:498.198000px;}
.y234{bottom:498.874500px;}
.y56{bottom:501.160500px;}
.y20b{bottom:502.617597px;}
.yd{bottom:502.864502px;}
.y357{bottom:503.262000px;}
.y271{bottom:503.329500px;}
.y2a4{bottom:503.415000px;}
.y3ec{bottom:503.772000px;}
.y198{bottom:505.811247px;}
.y43d{bottom:508.962000px;}
.y1f0{bottom:509.219862px;}
.y3a8{bottom:509.971500px;}
.yb7{bottom:510.531000px;}
.y12c{bottom:512.552892px;}
.ye7{bottom:512.781000px;}
.y474{bottom:513.445500px;}
.y30a{bottom:514.160685px;}
.y2c9{bottom:514.566000px;}
.y8e{bottom:515.014500px;}
.y402{bottom:515.068500px;}
.y29{bottom:516.087000px;}
.y2ee{bottom:516.166896px;}
.y233{bottom:517.704000px;}
.y2a3{bottom:519.853500px;}
.y3eb{bottom:520.210500px;}
.yc{bottom:520.864502px;}
.y333{bottom:521.087836px;}
.y20a{bottom:521.877039px;}
.y356{bottom:522.091500px;}
.y270{bottom:522.159000px;}
.y3a7{bottom:524.169000px;}
.y55{bottom:524.472000px;}
.y375{bottom:524.698500px;}
.y197{bottom:525.070689px;}
.y43c{bottom:526.222500px;}
.y1ef{bottom:528.479304px;}
.y401{bottom:529.264500px;}
.yb6{bottom:529.360500px;}
.y473{bottom:530.706000px;}
.y12b{bottom:531.812334px;}
.y309{bottom:533.331450px;}
.y2c8{bottom:533.395500px;}
.y8d{bottom:533.844000px;}
.y28{bottom:533.974500px;}
.y332{bottom:534.475283px;}
.ye6{bottom:536.094000px;}
.y3ea{bottom:536.649000px;}
.y3a6{bottom:538.365000px;}
.yb{bottom:538.864499px;}
.y355{bottom:540.921000px;}
.y232{bottom:541.017000px;}
.y209{bottom:541.046301px;}
.y374{bottom:542.272500px;}
.y400{bottom:543.460500px;}
.y43b{bottom:543.483000px;}
.y2a2{bottom:543.495000px;}
.y196{bottom:544.239951px;}
.y26f{bottom:545.472000px;}
.y1ee{bottom:547.648566px;}
.y472{bottom:547.966500px;}
.yb5{bottom:548.190000px;}
.y12a{bottom:550.981596px;}
.y27{bottom:551.862000px;}
.y2c7{bottom:552.225000px;}
.y8c{bottom:552.673500px;}
.y3e9{bottom:553.087500px;}
.y2ed{bottom:553.426266px;}
.y231{bottom:556.708500px;}
.ya{bottom:556.864499px;}
.y3ff{bottom:557.658000px;}
.y3a5{bottom:559.764000px;}
.y373{bottom:559.846500px;}
.y208{bottom:560.305743px;}
.y43a{bottom:560.743500px;}
.y202{bottom:560.896500px;}
.y152{bottom:562.224585px;}
.y195{bottom:563.499393px;}
.y354{bottom:564.234000px;}
.y471{bottom:565.227000px;}
.y1ed{bottom:566.908008px;}
.yb4{bottom:567.019500px;}
.ye5{bottom:569.718000px;}
.y26{bottom:569.751000px;}
.y129{bottom:570.241038px;}
.y2c6{bottom:571.054500px;}
.y8b{bottom:571.503000px;}
.y151{bottom:571.854450px;}
.y2ec{bottom:572.685708px;}
.y3a4{bottom:573.961500px;}
.y2a1{bottom:575.503500px;}
.y3e8{bottom:576.727500px;}
.y372{bottom:577.420500px;}
.y439{bottom:578.004000px;}
.y3fe{bottom:579.057000px;}
.y207{bottom:579.565185px;}
.y201{bottom:580.129500px;}
.y26e{bottom:580.536000px;}
.y470{bottom:582.487500px;}
.y194{bottom:582.758835px;}
.yb3{bottom:585.849000px;}
.y1ec{bottom:586.167450px;}
.y25{bottom:587.638500px;}
.y308{bottom:588.051585px;}
.y3a3{bottom:588.157500px;}
.ye4{bottom:588.547500px;}
.y128{bottom:589.411803px;}
.y2c5{bottom:589.884000px;}
.y8a{bottom:590.332500px;}
.y2eb{bottom:591.854970px;}
.y3e7{bottom:593.166000px;}
.y3fd{bottom:593.254500px;}
.y26d{bottom:594.733500px;}
.y29f{bottom:594.736500px;}
.y371{bottom:594.994500px;}
.y438{bottom:595.264500px;}
.y307{bottom:597.681450px;}
.y353{bottom:597.858000px;}
.y3d0{bottom:598.290000px;}
.y206{bottom:598.735950px;}
.y200{bottom:599.362500px;}
.y2a0{bottom:599.617500px;}
.y54{bottom:599.623500px;}
.y46f{bottom:599.746500px;}
.y193{bottom:601.928097px;}
.y3a2{bottom:602.355000px;}
.yb2{bottom:604.678500px;}
.y24{bottom:605.526000px;}
.ye2{bottom:607.377000px;}
.y3fc{bottom:607.450500px;}
.y127{bottom:608.671245px;}
.y2c4{bottom:608.713500px;}
.y26c{bottom:608.931000px;}
.y89{bottom:609.162000px;}
.y3e6{bottom:609.604500px;}
.y2ea{bottom:611.114412px;}
.y3cf{bottom:612.486000px;}
.y437{bottom:612.525000px;}
.y370{bottom:612.568500px;}
.ye3{bottom:612.801000px;}
.y352{bottom:616.687500px;}
.y46e{bottom:617.007000px;}
.y192{bottom:621.187539px;}
.y3fb{bottom:621.648000px;}
.y1e5{bottom:621.790500px;}
.y1eb{bottom:622.887900px;}
.y23{bottom:623.415000px;}
.yb1{bottom:623.508000px;}
.y3a1{bottom:623.754000px;}
.y3e5{bottom:626.043000px;}
.ye0{bottom:626.206500px;}
.y3ce{bottom:626.683500px;}
.y2c3{bottom:627.543000px;}
.y126{bottom:627.930687px;}
.y88{bottom:627.991500px;}
.y436{bottom:629.784000px;}
.y36f{bottom:630.144000px;}
.y2e9{bottom:630.373854px;}
.y26b{bottom:630.762000px;}
.y39c{bottom:630.852000px;}
.ye1{bottom:631.630500px;}
.y46d{bottom:634.267500px;}
.y351{bottom:635.517000px;}
.y53{bottom:637.012500px;}
.y29e{bottom:637.243500px;}
.y39f{bottom:637.950000px;}
.y1ea{bottom:640.347450px;}
.y191{bottom:640.356801px;}
.y3cd{bottom:640.879500px;}
.yb0{bottom:642.337500px;}
.y3fa{bottom:643.047000px;}
.ydf{bottom:645.036000px;}
.y39a{bottom:645.049500px;}
.y9{bottom:645.510000px;}
.y2c2{bottom:646.372500px;}
.y87{bottom:646.821000px;}
.y435{bottom:647.044500px;}
.y125{bottom:647.101452px;}
.y26a{bottom:647.200500px;}
.y2e8{bottom:649.544619px;}
.y3e4{bottom:649.683000px;}
.y3f5{bottom:650.145000px;}
.y46c{bottom:651.528000px;}
.y39d{bottom:652.147500px;}
.y205{bottom:653.456085px;}
.y29d{bottom:653.682000px;}
.y350{bottom:654.346500px;}
.y52{bottom:656.469000px;}
.y3f8{bottom:657.243000px;}
.y1e9{bottom:657.627450px;}
.y399{bottom:659.245500px;}
.y190{bottom:659.616243px;}
.y3cc{bottom:662.278500px;}
.y204{bottom:663.085950px;}
.yde{bottom:663.865500px;}
.y434{bottom:664.305000px;}
.y3f3{bottom:664.341000px;}
.y2c1{bottom:665.202000px;}
.y86{bottom:665.650500px;}
.y3e3{bottom:666.121500px;}
.y39e{bottom:666.343500px;}
.y124{bottom:666.360894px;}
.y8{bottom:666.771000px;}
.y46b{bottom:668.788500px;}
.y2e7{bottom:668.804061px;}
.y3c6{bottom:669.378000px;}
.y29c{bottom:670.120500px;}
.y269{bottom:670.842000px;}
.y3f6{bottom:671.440500px;}
.y39b{bottom:673.443000px;}
.y51{bottom:675.927000px;}
.y3ca{bottom:676.476000px;}
.y3f2{bottom:678.538500px;}
.y18f{bottom:678.875685px;}
.y1e8{bottom:680.037450px;}
.y3a0{bottom:680.541000px;}
.y433{bottom:681.565500px;}
.y3e2{bottom:682.560000px;}
.ydd{bottom:682.695000px;}
.y3c4{bottom:683.574000px;}
.y2c0{bottom:684.031500px;}
.y85{bottom:684.480000px;}
.y3f7{bottom:685.636500px;}
.y24c{bottom:685.699632px;}
.y46a{bottom:686.049000px;}
.y305{bottom:686.121000px;}
.y29b{bottom:686.559000px;}
.y268{bottom:687.280500px;}
.y2e6{bottom:687.973323px;}
.y123{bottom:690.030138px;}
.y3c9{bottom:690.672000px;}
.y3c7{bottom:690.673500px;}
.y34f{bottom:692.548500px;}
.y3f4{bottom:692.734500px;}
.y16b{bottom:693.585450px;}
.y50{bottom:695.383500px;}
.y3c3{bottom:697.771500px;}
.y18e{bottom:698.046450px;}
.y432{bottom:698.826000px;}
.y3e1{bottom:698.998500px;}
.y3f9{bottom:699.834000px;}
.y2bf{bottom:702.861000px;}
.y29a{bottom:702.996000px;}
.y84{bottom:703.309500px;}
.y24b{bottom:703.519200px;}
.y3c8{bottom:704.869500px;}
.y304{bottom:704.950500px;}
.y34e{bottom:706.746000px;}
.y2e5{bottom:707.232765px;}
.ydc{bottom:707.949000px;}
.y1b4{bottom:709.459500px;}
.y398{bottom:710.590500px;}
.y267{bottom:710.920500px;}
.y3c5{bottom:711.967500px;}
.y4f{bottom:714.841500px;}
.y16a{bottom:716.085450px;}
.y431{bottom:716.086500px;}
.y110{bottom:717.207000px;}
.y3cb{bottom:719.067000px;}
.y299{bottom:719.434500px;}
.y469{bottom:720.570000px;}
.y34d{bottom:720.942000px;}
.y2be{bottom:721.690500px;}
.y83{bottom:722.139000px;}
.y3e0{bottom:722.640000px;}
.y303{bottom:723.780000px;}
.y7{bottom:726.298500px;}
.y2e4{bottom:726.492207px;}
.y122{bottom:727.289508px;}
.y266{bottom:727.359000px;}
.y1b3{bottom:728.692500px;}
.y3f1{bottom:729.883500px;}
.ydb{bottom:733.203000px;}
.y430{bottom:733.347000px;}
.y4e{bottom:734.298000px;}
.y298{bottom:735.873000px;}
.y10f{bottom:736.036500px;}
.y468{bottom:737.829000px;}
.y3df{bottom:739.078500px;}
.y2bd{bottom:740.520000px;}
.y82{bottom:740.968500px;}
.y302{bottom:742.609500px;}
.y34c{bottom:742.774500px;}
.y2e3{bottom:745.661469px;}
.y121{bottom:746.548950px;}
.y11f{bottom:746.550246px;}
.y397{bottom:747.636000px;}
.y1b2{bottom:747.925500px;}
.y3c2{bottom:749.116500px;}
.y120{bottom:750.328950px;}
.y42f{bottom:750.607500px;}
.y263{bottom:751.000500px;}
.y297{bottom:752.311500px;}
.y4{bottom:752.599495px;}
.y18d{bottom:752.766585px;}
.y4d{bottom:753.754500px;}
.y10e{bottom:754.866000px;}
.y467{bottom:755.089500px;}
.y3de{bottom:755.515500px;}
.yda{bottom:758.457000px;}
.y34b{bottom:759.213000px;}
.y265{bottom:759.219000px;}
.y2bc{bottom:759.349500px;}
.y81{bottom:759.798000px;}
.y301{bottom:761.439000px;}
.y18c{bottom:762.396450px;}
.y166{bottom:763.686000px;}
.y2e2{bottom:764.920911px;}
.y11e{bottom:765.719508px;}
.y261{bottom:767.439000px;}
.y42e{bottom:767.866500px;}
.y296{bottom:768.750000px;}
.y18b{bottom:770.355000px;}
.y3dd{bottom:771.954000px;}
.y466{bottom:772.350000px;}
.y4c{bottom:773.212500px;}
.y10d{bottom:773.695500px;}
.y264{bottom:775.657500px;}
.yd9{bottom:777.286500px;}
.y2bb{bottom:778.179000px;}
.y80{bottom:778.627500px;}
.y300{bottom:780.267000px;}
.y165{bottom:782.515500px;}
.y34a{bottom:782.854500px;}
.y262{bottom:783.876000px;}
.y2e1{bottom:784.180353px;}
.y11d{bottom:784.978950px;}
.y11b{bottom:784.981965px;}
.y42d{bottom:785.127000px;}
.y295{bottom:785.188500px;}
.y11c{bottom:788.758950px;}
.y465{bottom:789.610500px;}
.y10c{bottom:792.525000px;}
.y4b{bottom:792.669000px;}
.y3dc{bottom:795.595500px;}
.y7f{bottom:797.457000px;}
.y349{bottom:799.293000px;}
.yd8{bottom:800.598000px;}
.y164{bottom:801.345000px;}
.y2ba{bottom:801.490500px;}
.y331{bottom:801.536897px;}
.y294{bottom:801.627000px;}
.y42c{bottom:802.387500px;}
.y2e0{bottom:803.349615px;}
.y464{bottom:806.871000px;}
.y396{bottom:807.739500px;}
.y11a{bottom:808.651209px;}
.y330{bottom:809.722283px;}
.y10b{bottom:811.354500px;}
.y3db{bottom:812.034000px;}
.y4a{bottom:812.125500px;}
.y2ff{bottom:812.985000px;}
.y7e{bottom:816.286500px;}
.y260{bottom:818.485500px;}
.y42b{bottom:819.648000px;}
.y163{bottom:820.174500px;}
.y2df{bottom:822.609057px;}
.y348{bottom:822.933000px;}
.y463{bottom:824.131500px;}
.y293{bottom:825.267000px;}
.y3da{bottom:828.472500px;}
.y10a{bottom:830.184000px;}
.y2fe{bottom:832.218000px;}
.y119{bottom:832.410633px;}
.yd7{bottom:834.222000px;}
.y7d{bottom:835.114500px;}
.y42a{bottom:836.908500px;}
.y347{bottom:839.371500px;}
.y462{bottom:841.392000px;}
.y2de{bottom:841.778319px;}
.y162{bottom:843.487500px;}
.y3d9{bottom:844.911000px;}
.y109{bottom:849.013500px;}
.y49{bottom:850.711500px;}
.y118{bottom:851.670075px;}
.y7c{bottom:853.944000px;}
.y429{bottom:854.169000px;}
.y2d8{bottom:854.647500px;}
.y25f{bottom:855.589500px;}
.y292{bottom:856.887000px;}
.y461{bottom:858.652500px;}
.yd6{bottom:859.476000px;}
.y2dd{bottom:861.037761px;}
.y344{bottom:863.011500px;}
.y48{bottom:866.851500px;}
.y108{bottom:867.843000px;}
.y3d8{bottom:868.551000px;}
.y346{bottom:871.231500px;}
.y428{bottom:871.429500px;}
.y395{bottom:871.519500px;}
.y7b{bottom:872.773500px;}
.y161{bottom:873.915000px;}
.y25e{bottom:874.419000px;}
.y117{bottom:875.339319px;}
.y460{bottom:875.913000px;}
.yd5{bottom:878.305500px;}
.y3{bottom:879.369000px;}
.y342{bottom:879.450000px;}
.y2dc{bottom:880.297203px;}
.y3d7{bottom:884.989500px;}
.y47{bottom:887.331000px;}
.y345{bottom:887.670000px;}
.y427{bottom:888.690000px;}
.y394{bottom:889.093500px;}
.y107{bottom:891.156000px;}
.y7a{bottom:891.603000px;}
.y45f{bottom:893.172000px;}
.y25d{bottom:893.248500px;}
.y116{bottom:894.598761px;}
.y343{bottom:895.888500px;}
.y150{bottom:896.344500px;}
.yd4{bottom:897.135000px;}
.y46{bottom:899.130000px;}
.y291{bottom:899.394000px;}
.y3d6{bottom:901.428000px;}
.y2db{bottom:903.967950px;}
.y426{bottom:905.950500px;}
.y393{bottom:906.667500px;}
.y1e4{bottom:909.984000px;}
.y79{bottom:910.432500px;}
.y25c{bottom:912.078000px;}
.y115{bottom:913.858203px;}
.y290{bottom:915.832500px;}
.yd3{bottom:915.964500px;}
.y3d5{bottom:917.866500px;}
.y45{bottom:919.609500px;}
.y425{bottom:923.209500px;}
.y392{bottom:924.241500px;}
.y106{bottom:924.778500px;}
.y45e{bottom:927.693000px;}
.y1e3{bottom:928.813500px;}
.y78{bottom:929.262000px;}
.y341{bottom:930.496500px;}
.y25b{bottom:930.907500px;}
.y44{bottom:931.410000px;}
.y28f{bottom:932.271000px;}
.y2b9{bottom:934.687500px;}
.yd2{bottom:934.794000px;}
.y114{bottom:937.528950px;}
.y424{bottom:940.470000px;}
.y3d4{bottom:941.506500px;}
.y391{bottom:941.815500px;}
.y105{bottom:943.608000px;}
.y45d{bottom:944.953500px;}
.y2{bottom:945.126001px;}
.y1e2{bottom:947.643000px;}
.y77{bottom:948.091500px;}
.y28e{bottom:948.709500px;}
.y340{bottom:949.729500px;}
.y25a{bottom:949.737000px;}
.y43{bottom:951.888000px;}
.yd1{bottom:953.623500px;}
.y423{bottom:957.730500px;}
.y3d3{bottom:957.945000px;}
.y2da{bottom:958.688085px;}
.y390{bottom:959.389500px;}
.y45c{bottom:962.214000px;}
.y104{bottom:962.437500px;}
.y28d{bottom:965.148000px;}
.y1{bottom:966.726000px;}
.y76{bottom:966.921000px;}
.y2d9{bottom:968.317950px;}
.y1e1{bottom:970.956000px;}
.y1e7{bottom:971.817585px;}
.yac{bottom:972.346500px;}
.yd0{bottom:972.453000px;}
.y259{bottom:973.048500px;}
.y3d2{bottom:974.383500px;}
.y422{bottom:974.991000px;}
.y38f{bottom:976.963500px;}
.y45b{bottom:979.474500px;}
.y103{bottom:981.267000px;}
.y1e6{bottom:981.447450px;}
.y28c{bottom:981.586500px;}
.y75{bottom:985.750500px;}
.y3d1{bottom:990.822000px;}
.ycf{bottom:991.282500px;}
.y113{bottom:992.249085px;}
.y421{bottom:992.251500px;}
.y38e{bottom:994.537500px;}
.y169{bottom:996.525585px;}
.y42{bottom:996.565500px;}
.y45a{bottom:996.735000px;}
.y28b{bottom:998.023500px;}
.y102{bottom:1000.096500px;}
.y112{bottom:1001.878950px;}
.y74{bottom:1004.580000px;}
.y168{bottom:1006.155450px;}
.y420{bottom:1009.512000px;}
.y38d{bottom:1012.113000px;}
.y459{bottom:1013.995500px;}
.y28a{bottom:1014.462000px;}
.yce{bottom:1014.595500px;}
.y258{bottom:1018.195500px;}
.y101{bottom:1018.926000px;}
.y73{bottom:1023.409500px;}
.y41f{bottom:1026.772500px;}
.y38c{bottom:1029.687000px;}
.y289{bottom:1030.900500px;}
.y458{bottom:1031.254500px;}
.y41{bottom:1036.485000px;}
.y257{bottom:1037.428500px;}
.y100{bottom:1037.755500px;}
.y72{bottom:1042.239000px;}
.y41e{bottom:1044.033000px;}
.y38b{bottom:1047.261000px;}
.y288{bottom:1047.339000px;}
.ycd{bottom:1048.219500px;}
.y457{bottom:1048.515000px;}
.yff{bottom:1056.585000px;}
.y256{bottom:1056.661500px;}
.y71{bottom:1061.068500px;}
.y41d{bottom:1061.292000px;}
.y287{bottom:1063.777500px;}
.y40{bottom:1064.728500px;}
.y38a{bottom:1064.835000px;}
.y456{bottom:1065.775500px;}
.y24a{bottom:1069.639335px;}
.ycc{bottom:1073.473500px;}
.yfe{bottom:1075.414500px;}
.y255{bottom:1075.894500px;}
.y41c{bottom:1078.552500px;}
.y249{bottom:1079.269200px;}
.y70{bottom:1079.898000px;}
.y389{bottom:1082.409000px;}
.y455{bottom:1083.036000px;}
.y286{bottom:1087.419000px;}
.y3f{bottom:1092.972000px;}
.yfd{bottom:1094.244000px;}
.y254{bottom:1095.127500px;}
.y41b{bottom:1095.813000px;}
.y6f{bottom:1098.727500px;}
.y388{bottom:1099.983000px;}
.y454{bottom:1100.296500px;}
.y2b8{bottom:1104.151500px;}
.y6e{bottom:1117.557000px;}
.y285{bottom:1119.037500px;}
.y3d{bottom:1136.460000px;}
.y6d{bottom:1177.662000px;}
.h12{height:26.110157px;}
.h22{height:26.314453px;}
.h38{height:29.748489px;}
.h37{height:29.967082px;}
.h1b{height:30.106714px;}
.hb{height:30.461558px;}
.hc{height:30.670772px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h1a{height:33.072749px;}
.h3a{height:33.797461px;}
.h3e{height:34.574294px;}
.h13{height:34.813397px;}
.h1f{height:34.998223px;}
.h18{height:35.052500px;}
.h1e{height:35.255391px;}
.h3b{height:37.353366px;}
.h39{height:37.627840px;}
.h30{height:38.896243px;}
.h14{height:39.165235px;}
.h15{height:39.434227px;}
.h27{height:39.471680px;}
.h2a{height:39.614278px;}
.h26{height:39.761719px;}
.h24{height:41.897461px;}
.h16{height:43.217759px;}
.h17{height:43.516637px;}
.h20{height:43.622227px;}
.hf{height:43.815515px;}
.h21{height:43.945137px;}
.h23{height:44.268047px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h33{height:49.776344px;}
.hd{height:50.930649px;}
.h11{height:54.541601px;}
.h19{height:54.768749px;}
.h1c{height:54.774749px;}
.h2{height:55.152000px;}
.h3f{height:62.966294px;}
.h40{height:62.972294px;}
.h32{height:72.039235px;}
.h31{height:72.045235px;}
.h10{height:77.792486px;}
.h5{height:78.132000px;}
.he{height:87.128261px;}
.h4{height:119.055004px;}
.h1d{height:235.206000px;}
.h28{height:236.157000px;}
.h25{height:238.057500px;}
.h35{height:240.544500px;}
.h2b{height:243.760500px;}
.h2e{height:244.710000px;}
.h29{height:245.185500px;}
.h2d{height:246.136500px;}
.h2c{height:246.610500px;}
.h34{height:277.854000px;}
.h36{height:767.785875px;}
.h3c{height:892.914000px;}
.h3d{height:893.250000px;}
.h2f{height:1031.895750px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.247128px;}
.we{width:434.454000px;}
.w5{width:439.527000px;}
.w7{width:450.456000px;}
.w6{width:460.435500px;}
.wc{width:576.375000px;}
.w9{width:577.800000px;}
.w8{width:578.751000px;}
.wa{width:581.127000px;}
.wf{width:581.235000px;}
.w10{width:581.680245px;}
.wb{width:582.078000px;}
.w2{width:637.794021px;}
.wd{width:701.020800px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.w11{width:1262.835000px;}
.w12{width:1263.000000px;}
.x26{left:-200.688000px;}
.x2c{left:-199.263000px;}
.x16{left:-196.887000px;}
.x20{left:-194.511000px;}
.x41{left:-44.182200px;}
.x28{left:-5.118000px;}
.x2d{left:-3.693000px;}
.x17{left:-1.317000px;}
.x0{left:0.000000px;}
.x22{left:1.059000px;}
.x2a{left:26.741894px;}
.x2f{left:28.166894px;}
.x18{left:30.542894px;}
.x24{left:32.918894px;}
.x5{left:53.574000px;}
.x6{left:58.056593px;}
.x59{left:66.036000px;}
.x58{left:68.536500px;}
.x8f{left:72.028500px;}
.x5b{left:74.166000px;}
.x5a{left:75.745500px;}
.x93{left:85.848000px;}
.x40{left:95.734200px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x78{left:122.003220px;}
.x45{left:125.515500px;}
.x1b{left:146.463000px;}
.x79{left:149.084220px;}
.x1c{left:150.963000px;}
.x43{left:161.377854px;}
.x46{left:181.138500px;}
.x4{left:203.484001px;}
.x9{left:248.526000px;}
.x7{left:249.591000px;}
.x1d{left:253.653000px;}
.x1e{left:258.063000px;}
.x6d{left:259.773000px;}
.x3f{left:265.797000px;}
.x8{left:269.914500px;}
.x6e{left:271.231500px;}
.x90{left:274.131000px;}
.x33{left:280.212000px;}
.xa{left:281.479500px;}
.xd{left:289.908000px;}
.x34{left:296.242500px;}
.x92{left:299.644500px;}
.x49{left:302.037000px;}
.x91{left:304.177500px;}
.x60{left:305.466000px;}
.x48{left:307.645500px;}
.x47{left:308.755500px;}
.x69{left:309.991500px;}
.x68{left:311.403000px;}
.x70{left:318.459000px;}
.x3c{left:320.196000px;}
.x19{left:322.053000px;}
.x1a{left:326.553000px;}
.x71{left:328.495500px;}
.x64{left:330.790500px;}
.x62{left:332.074500px;}
.x3d{left:336.214500px;}
.x63{left:337.495500px;}
.x42{left:340.207800px;}
.x15{left:355.935000px;}
.x5f{left:358.638000px;}
.x61{left:364.642500px;}
.x5d{left:365.872500px;}
.x4a{left:371.985000px;}
.x5e{left:375.079500px;}
.x66{left:384.994500px;}
.x10{left:389.694000px;}
.xe{left:395.962500px;}
.x73{left:400.393500px;}
.x74{left:404.893500px;}
.xf{left:406.461000px;}
.x7f{left:420.372000px;}
.x80{left:423.027000px;}
.x7e{left:426.343500px;}
.x4b{left:430.210500px;}
.x72{left:434.722282px;}
.x1f{left:439.682126px;}
.x6f{left:441.285000px;}
.x29{left:450.462000px;}
.x2e{left:451.887000px;}
.x27{left:453.882000px;}
.x3{left:454.959000px;}
.x23{left:456.639000px;}
.x13{left:458.431500px;}
.x21{left:460.059000px;}
.x14{left:469.179000px;}
.x4e{left:489.508500px;}
.x81{left:490.932000px;}
.x4c{left:497.652000px;}
.x4d{left:499.152000px;}
.x67{left:506.341500px;}
.x44{left:526.415973px;}
.x4f{left:553.047000px;}
.x50{left:559.530000px;}
.x76{left:569.681093px;}
.x35{left:577.371267px;}
.x77{left:578.633143px;}
.x2b{left:579.879000px;}
.x30{left:581.304000px;}
.x36{left:583.916280px;}
.x25{left:586.056000px;}
.x11{left:589.042500px;}
.x3e{left:593.076000px;}
.x12{left:600.606000px;}
.x39{left:605.532000px;}
.x52{left:615.636000px;}
.x51{left:617.128500px;}
.x75{left:650.706000px;}
.x82{left:657.798000px;}
.x31{left:660.493500px;}
.x5c{left:665.914500px;}
.x65{left:669.727500px;}
.x53{left:672.613500px;}
.x32{left:676.516500px;}
.x3a{left:678.064500px;}
.x7a{left:680.643000px;}
.x3b{left:694.905000px;}
.x54{left:729.754500px;}
.xb{left:731.254500px;}
.x55{left:732.282000px;}
.xc{left:742.719000px;}
.x37{left:763.600500px;}
.x6c{left:769.309500px;}
.x84{left:776.788500px;}
.x83{left:778.450500px;}
.x38{left:779.928000px;}
.x7c{left:786.144000px;}
.x56{left:788.160000px;}
.x57{left:793.531500px;}
.x7d{left:796.315500px;}
.x6a{left:817.923000px;}
.x6b{left:828.079500px;}
.x7b{left:832.488000px;}
.x86{left:878.904000px;}
.x85{left:880.231500px;}
.x87{left:947.479500px;}
.x88{left:954.892500px;}
.x8a{left:1034.265000px;}
.x8c{left:1036.198500px;}
.x8b{left:1044.579000px;}
.x8d{left:1050.306000px;}
.x89{left:1055.290500px;}
.x8e{left:1128.966000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v4{vertical-align:-7.358688pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:17.354667pt;}
.v1{vertical-align:19.285333pt;}
.v7{vertical-align:25.237333pt;}
.v5{vertical-align:29.226667pt;}
.ls7c{letter-spacing:-3.794240pt;}
.ls78{letter-spacing:-0.908480pt;}
.ls67{letter-spacing:-0.374080pt;}
.ls68{letter-spacing:-0.315296pt;}
.ls5b{letter-spacing:-0.261856pt;}
.ls49{letter-spacing:-0.213760pt;}
.ls6f{letter-spacing:-0.197728pt;}
.ls5f{letter-spacing:-0.171008pt;}
.ls46{letter-spacing:-0.154976pt;}
.ls6a{letter-spacing:-0.133600pt;}
.ls5c{letter-spacing:-0.128256pt;}
.ls62{letter-spacing:-0.122912pt;}
.ls3f{letter-spacing:-0.117568pt;}
.ls58{letter-spacing:-0.112224pt;}
.ls41{letter-spacing:-0.106880pt;}
.ls44{letter-spacing:-0.101536pt;}
.ls4a{letter-spacing:-0.096192pt;}
.ls39{letter-spacing:-0.090848pt;}
.ls47{letter-spacing:-0.085504pt;}
.ls3a{letter-spacing:-0.080160pt;}
.ls59{letter-spacing:-0.074816pt;}
.ls3d{letter-spacing:-0.069472pt;}
.ls42{letter-spacing:-0.064128pt;}
.ls45{letter-spacing:-0.058784pt;}
.ls37{letter-spacing:-0.053440pt;}
.ls4c{letter-spacing:-0.048096pt;}
.ls63{letter-spacing:-0.042752pt;}
.ls3c{letter-spacing:-0.037408pt;}
.ls3e{letter-spacing:-0.032064pt;}
.ls5e{letter-spacing:-0.028800pt;}
.ls5a{letter-spacing:-0.026720pt;}
.ls7a{letter-spacing:-0.024000pt;}
.ls8a{letter-spacing:-0.022712pt;}
.ls48{letter-spacing:-0.021376pt;}
.ls79{letter-spacing:-0.019200pt;}
.ls3b{letter-spacing:-0.016032pt;}
.ls61{letter-spacing:-0.014400pt;}
.ls57{letter-spacing:-0.012768pt;}
.ls40{letter-spacing:-0.010688pt;}
.ls8b{letter-spacing:-0.009085pt;}
.ls38{letter-spacing:-0.005344pt;}
.ls5d{letter-spacing:-0.004800pt;}
.ls36{letter-spacing:-0.004256pt;}
.ls89{letter-spacing:-0.003618pt;}
.ls0{letter-spacing:0.000000pt;}
.ls91{letter-spacing:0.000008pt;}
.ls74{letter-spacing:0.000094pt;}
.ls12{letter-spacing:0.000387pt;}
.ls96{letter-spacing:0.000503pt;}
.ls1{letter-spacing:0.000533pt;}
.ls92{letter-spacing:0.000600pt;}
.ls72{letter-spacing:0.000711pt;}
.ls97{letter-spacing:0.000751pt;}
.ls71{letter-spacing:0.000766pt;}
.ls93{letter-spacing:0.000921pt;}
.ls90{letter-spacing:0.001026pt;}
.ls94{letter-spacing:0.001408pt;}
.lse{letter-spacing:0.001512pt;}
.ls15{letter-spacing:0.001576pt;}
.ls2{letter-spacing:0.001628pt;}
.ls1b{letter-spacing:0.001774pt;}
.ls9b{letter-spacing:0.001818pt;}
.ls95{letter-spacing:0.001843pt;}
.ls1a{letter-spacing:0.001874pt;}
.ls70{letter-spacing:0.001921pt;}
.ls99{letter-spacing:0.001974pt;}
.ls98{letter-spacing:0.002111pt;}
.ls5{letter-spacing:0.002422pt;}
.ls9a{letter-spacing:0.003039pt;}
.ls8{letter-spacing:0.003100pt;}
.ls16{letter-spacing:0.003251pt;}
.ls14{letter-spacing:0.003288pt;}
.ls3{letter-spacing:0.003733pt;}
.ls11{letter-spacing:0.003829pt;}
.ls2a{letter-spacing:0.005344pt;}
.ls83{letter-spacing:0.008160pt;}
.ls30{letter-spacing:0.009600pt;}
.ls51{letter-spacing:0.010688pt;}
.ls81{letter-spacing:0.012240pt;}
.ls31{letter-spacing:0.014400pt;}
.ls24{letter-spacing:0.016032pt;}
.ls4d{letter-spacing:0.017024pt;}
.ls88{letter-spacing:0.018170pt;}
.ls33{letter-spacing:0.019200pt;}
.ls84{letter-spacing:0.020400pt;}
.ls28{letter-spacing:0.021376pt;}
.ls7d{letter-spacing:0.021706pt;}
.ls35{letter-spacing:0.024000pt;}
.ls1c{letter-spacing:0.025536pt;}
.ls22{letter-spacing:0.026720pt;}
.ls82{letter-spacing:0.028560pt;}
.ls2d{letter-spacing:0.028800pt;}
.ls32{letter-spacing:0.032064pt;}
.ls86{letter-spacing:0.032640pt;}
.ls2f{letter-spacing:0.033600pt;}
.ls21{letter-spacing:0.037408pt;}
.ls52{letter-spacing:0.038400pt;}
.ls23{letter-spacing:0.042752pt;}
.ls4b{letter-spacing:0.048096pt;}
.ls87{letter-spacing:0.048960pt;}
.ls20{letter-spacing:0.053440pt;}
.ls25{letter-spacing:0.058784pt;}
.ls53{letter-spacing:0.062400pt;}
.ls55{letter-spacing:0.064128pt;}
.ls2b{letter-spacing:0.069472pt;}
.ls56{letter-spacing:0.072000pt;}
.ls2c{letter-spacing:0.074816pt;}
.ls26{letter-spacing:0.080160pt;}
.ls34{letter-spacing:0.081600pt;}
.ls27{letter-spacing:0.085504pt;}
.ls69{letter-spacing:0.096192pt;}
.ls43{letter-spacing:0.101536pt;}
.ls85{letter-spacing:0.106080pt;}
.ls29{letter-spacing:0.106880pt;}
.ls54{letter-spacing:0.110400pt;}
.ls76{letter-spacing:0.112224pt;}
.ls80{letter-spacing:0.113560pt;}
.ls66{letter-spacing:0.117568pt;}
.ls6e{letter-spacing:0.122912pt;}
.ls7f{letter-spacing:0.137469pt;}
.ls7e{letter-spacing:0.144704pt;}
.ls65{letter-spacing:0.149632pt;}
.ls4f{letter-spacing:0.153216pt;}
.ls1e{letter-spacing:0.157472pt;}
.ls50{letter-spacing:0.160320pt;}
.ls4e{letter-spacing:0.161728pt;}
.ls2e{letter-spacing:0.163200pt;}
.ls1d{letter-spacing:0.170240pt;}
.ls1f{letter-spacing:0.171008pt;}
.ls8c{letter-spacing:0.576078pt;}
.ls60{letter-spacing:5.199712pt;}
.lsf{letter-spacing:10.626533pt;}
.ls9{letter-spacing:10.629067pt;}
.lsa{letter-spacing:10.631051pt;}
.lsb{letter-spacing:10.732169pt;}
.lsc{letter-spacing:10.735604pt;}
.ls9c{letter-spacing:11.951565pt;}
.ls8f{letter-spacing:13.062464pt;}
.ls8d{letter-spacing:13.070931pt;}
.ls6c{letter-spacing:13.124065pt;}
.ls64{letter-spacing:13.283467pt;}
.ls6{letter-spacing:13.283733pt;}
.ls10{letter-spacing:13.442868pt;}
.ls6b{letter-spacing:13.602270pt;}
.ls8e{letter-spacing:14.186647pt;}
.ls18{letter-spacing:15.196286pt;}
.ls19{letter-spacing:15.621357pt;}
.ls17{letter-spacing:15.674491pt;}
.ls13{letter-spacing:15.942400pt;}
.ls77{letter-spacing:17.534176pt;}
.ls75{letter-spacing:17.906113pt;}
.ls7{letter-spacing:55.787733pt;}
.lsd{letter-spacing:57.174803pt;}
.ls4{letter-spacing:64.315733pt;}
.ls73{letter-spacing:475.056533pt;}
.ls7b{letter-spacing:754.941536pt;}
.ls6d{letter-spacing:1253.520704pt;}
.wse6{word-spacing:-53.440000pt;}
.ws13e{word-spacing:-13.429472pt;}
.ws180{word-spacing:-13.360000pt;}
.ws3a{word-spacing:-13.283467pt;}
.ws8c{word-spacing:-13.274496pt;}
.ws182{word-spacing:-11.955200pt;}
.ws20c{word-spacing:-11.356000pt;}
.ws89{word-spacing:-10.810240pt;}
.wse5{word-spacing:-10.801728pt;}
.ws8a{word-spacing:-10.640000pt;}
.ws12{word-spacing:-10.626800pt;}
.ws20d{word-spacing:-10.200000pt;}
.wse{word-spacing:-10.095467pt;}
.ws2{word-spacing:-9.298400pt;}
.ws20a{word-spacing:-9.188704pt;}
.ws20b{word-spacing:-9.044000pt;}
.wsc5{word-spacing:-2.880416pt;}
.wsc4{word-spacing:-2.837664pt;}
.ws1e2{word-spacing:-2.810944pt;}
.wsd5{word-spacing:-2.784224pt;}
.ws175{word-spacing:-2.773536pt;}
.ws35{word-spacing:-2.762961pt;}
.ws176{word-spacing:-2.752160pt;}
.wsd4{word-spacing:-2.746816pt;}
.ws1e3{word-spacing:-2.720096pt;}
.wsf4{word-spacing:-2.495648pt;}
.ws1ad{word-spacing:-2.462699pt;}
.wsf5{word-spacing:-2.458240pt;}
.ws39{word-spacing:-2.444158pt;}
.ws77{word-spacing:-2.337890pt;}
.ws22e{word-spacing:-2.295398pt;}
.wsa2{word-spacing:-2.233792pt;}
.wsa1{word-spacing:-2.212416pt;}
.ws9c{word-spacing:-2.196384pt;}
.ws1f9{word-spacing:-2.191040pt;}
.ws114{word-spacing:-2.180352pt;}
.wsa0{word-spacing:-2.169664pt;}
.ws1bd{word-spacing:-2.164320pt;}
.ws1d1{word-spacing:-2.142944pt;}
.wsff{word-spacing:-2.132256pt;}
.wse2{word-spacing:-2.125355pt;}
.ws9b{word-spacing:-2.116224pt;}
.ws1be{word-spacing:-2.110880pt;}
.ws9d{word-spacing:-2.084160pt;}
.ws105{word-spacing:-2.073472pt;}
.ws7f{word-spacing:-2.072221pt;}
.wsfa{word-spacing:-2.057440pt;}
.ws106{word-spacing:-2.046752pt;}
.ws7e{word-spacing:-2.019087pt;}
.wsbe{word-spacing:-1.913152pt;}
.ws60{word-spacing:-1.859685pt;}
.ws168{word-spacing:-1.849024pt;}
.ws6c{word-spacing:-1.806551pt;}
.ws167{word-spacing:-1.806272pt;}
.ws115{word-spacing:-1.800928pt;}
.wsbf{word-spacing:-1.768864pt;}
.ws1fa{word-spacing:-1.758176pt;}
.ws230{word-spacing:-1.721549pt;}
.ws87{word-spacing:-1.700284pt;}
.ws1c8{word-spacing:-1.581824pt;}
.ws15f{word-spacing:-1.560448pt;}
.ws254{word-spacing:-1.530266pt;}
.ws1c7{word-spacing:-1.501664pt;}
.ws116{word-spacing:-1.490976pt;}
.ws17b{word-spacing:-1.487748pt;}
.ws78{word-spacing:-1.434614pt;}
.wsf2{word-spacing:-1.426848pt;}
.wsf3{word-spacing:-1.405472pt;}
.ws139{word-spacing:-1.400128pt;}
.ws13a{word-spacing:-1.389440pt;}
.ws1a0{word-spacing:-1.386803pt;}
.ws71{word-spacing:-1.381481pt;}
.ws76{word-spacing:-1.328347pt;}
.wsc3{word-spacing:-1.277216pt;}
.ws21c{word-spacing:-1.275213pt;}
.ws1bb{word-spacing:-1.266528pt;}
.ws73{word-spacing:-1.222079pt;}
.ws15e{word-spacing:-1.207744pt;}
.ws1cd{word-spacing:-1.197056pt;}
.ws1bc{word-spacing:-1.186368pt;}
.ws166{word-spacing:-1.170336pt;}
.ws206{word-spacing:-1.164992pt;}
.wsaf{word-spacing:-1.159648pt;}
.wsae{word-spacing:-1.138272pt;}
.wsc2{word-spacing:-1.132928pt;}
.ws1ce{word-spacing:-1.127584pt;}
.ws134{word-spacing:-1.122240pt;}
.ws202{word-spacing:-1.116896pt;}
.ws207{word-spacing:-1.111552pt;}
.ws1ed{word-spacing:-1.090176pt;}
.ws36{word-spacing:-1.062677pt;}
.ws2f{word-spacing:-1.009543pt;}
.ws212{word-spacing:-0.975120pt;}
.wsf1{word-spacing:-0.961920pt;}
.ws211{word-spacing:-0.958800pt;}
.ws79{word-spacing:-0.956410pt;}
.ws3b{word-spacing:-0.903276pt;}
.wsf0{word-spacing:-0.881760pt;}
.ws256{word-spacing:-0.860774pt;}
.ws80{word-spacing:-0.850142pt;}
.ws165{word-spacing:-0.828320pt;}
.ws126{word-spacing:-0.801600pt;}
.ws6b{word-spacing:-0.797008pt;}
.ws155{word-spacing:-0.764192pt;}
.ws156{word-spacing:-0.748160pt;}
.ws218{word-spacing:-0.722242pt;}
.ws7d{word-spacing:-0.690740pt;}
.ws6f{word-spacing:-0.637606pt;}
.ws257{word-spacing:-0.621670pt;}
.wsa6{word-spacing:-0.614560pt;}
.ws1fc{word-spacing:-0.598528pt;}
.ws16c{word-spacing:-0.587840pt;}
.ws62{word-spacing:-0.584473pt;}
.ws144{word-spacing:-0.561120pt;}
.ws104{word-spacing:-0.555776pt;}
.ws91{word-spacing:-0.550432pt;}
.ws16d{word-spacing:-0.539744pt;}
.ws1dc{word-spacing:-0.529056pt;}
.ws227{word-spacing:-0.526029pt;}
.wsa7{word-spacing:-0.491648pt;}
.ws1da{word-spacing:-0.486304pt;}
.ws1cf{word-spacing:-0.480960pt;}
.ws13c{word-spacing:-0.478205pt;}
.ws1c6{word-spacing:-0.475616pt;}
.ws92{word-spacing:-0.464928pt;}
.ws145{word-spacing:-0.454240pt;}
.wse8{word-spacing:-0.430387pt;}
.ws67{word-spacing:-0.425071pt;}
.ws265{word-spacing:-0.382566pt;}
.ws22{word-spacing:-0.371937pt;}
.ws223{word-spacing:-0.340058pt;}
.ws181{word-spacing:-0.334746pt;}
.ws5d{word-spacing:-0.318803pt;}
.ws136{word-spacing:-0.309952pt;}
.wsb8{word-spacing:-0.304608pt;}
.ws1fd{word-spacing:-0.299264pt;}
.ws10a{word-spacing:-0.288576pt;}
.ws183{word-spacing:-0.286925pt;}
.ws1fe{word-spacing:-0.267200pt;}
.ws21{word-spacing:-0.265669pt;}
.wsa5{word-spacing:-0.256512pt;}
.ws8d{word-spacing:-0.246848pt;}
.wsed{word-spacing:-0.242592pt;}
.ws25f{word-spacing:-0.240990pt;}
.wsb7{word-spacing:-0.240480pt;}
.ws24f{word-spacing:-0.239104pt;}
.ws12a{word-spacing:-0.224448pt;}
.ws1b7{word-spacing:-0.213760pt;}
.ws28{word-spacing:-0.212535pt;}
.ws20e{word-spacing:-0.209821pt;}
.ws1b{word-spacing:-0.191283pt;}
.ws21a{word-spacing:-0.190781pt;}
.ws1e1{word-spacing:-0.163200pt;}
.ws146{word-spacing:-0.160320pt;}
.ws31{word-spacing:-0.159402pt;}
.ws187{word-spacing:-0.143462pt;}
.ws1e0{word-spacing:-0.134400pt;}
.ws18b{word-spacing:-0.121912pt;}
.ws129{word-spacing:-0.117568pt;}
.ws25{word-spacing:-0.106268pt;}
.wse0{word-spacing:-0.095642pt;}
.ws8e{word-spacing:-0.072352pt;}
.wsee{word-spacing:-0.068096pt;}
.ws20f{word-spacing:-0.061499pt;}
.ws8b{word-spacing:-0.053440pt;}
.wsf{word-spacing:-0.053134pt;}
.ws249{word-spacing:-0.047821pt;}
.ws11{word-spacing:-0.042507pt;}
.ws3{word-spacing:-0.037194pt;}
.ws143{word-spacing:-0.026720pt;}
.ws263{word-spacing:-0.008849pt;}
.ws255{word-spacing:-0.007543pt;}
.ws25c{word-spacing:-0.007501pt;}
.ws250{word-spacing:-0.007287pt;}
.ws261{word-spacing:-0.005743pt;}
.ws26c{word-spacing:-0.005308pt;}
.ws266{word-spacing:-0.004898pt;}
.ws259{word-spacing:-0.004412pt;}
.wsd{word-spacing:-0.002874pt;}
.ws46{word-spacing:-0.001770pt;}
.ws244{word-spacing:-0.000410pt;}
.ws30{word-spacing:-0.000398pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.000561pt;}
.ws10{word-spacing:0.003586pt;}
.wsd8{word-spacing:0.005344pt;}
.ws135{word-spacing:0.010688pt;}
.ws7b{word-spacing:0.015294pt;}
.ws1ef{word-spacing:0.021376pt;}
.wsd1{word-spacing:0.037408pt;}
.ws13b{word-spacing:0.042752pt;}
.ws1c{word-spacing:0.047821pt;}
.ws95{word-spacing:0.048096pt;}
.ws37{word-spacing:0.053134pt;}
.ws12e{word-spacing:0.053440pt;}
.ws1d0{word-spacing:0.058784pt;}
.ws1ec{word-spacing:0.069472pt;}
.ws137{word-spacing:0.080160pt;}
.ws14{word-spacing:0.085014pt;}
.ws98{word-spacing:0.085504pt;}
.ws216{word-spacing:0.089760pt;}
.wsb9{word-spacing:0.090848pt;}
.ws240{word-spacing:0.095642pt;}
.ws10c{word-spacing:0.096000pt;}
.wsa3{word-spacing:0.096192pt;}
.ws99{word-spacing:0.101536pt;}
.ws215{word-spacing:0.106080pt;}
.ws29{word-spacing:0.106268pt;}
.ws11a{word-spacing:0.106880pt;}
.ws1b9{word-spacing:0.112224pt;}
.ws268{word-spacing:0.113029pt;}
.ws9e{word-spacing:0.117568pt;}
.ws214{word-spacing:0.118320pt;}
.ws10b{word-spacing:0.120000pt;}
.ws13{word-spacing:0.127522pt;}
.wsce{word-spacing:0.129600pt;}
.ws213{word-spacing:0.130560pt;}
.wscd{word-spacing:0.134400pt;}
.ws90{word-spacing:0.138944pt;}
.ws18{word-spacing:0.143462pt;}
.wsde{word-spacing:0.144000pt;}
.wsd0{word-spacing:0.148800pt;}
.ws11b{word-spacing:0.149632pt;}
.wscf{word-spacing:0.153600pt;}
.wsb6{word-spacing:0.154976pt;}
.ws3c{word-spacing:0.159402pt;}
.ws1c1{word-spacing:0.160320pt;}
.ws9a{word-spacing:0.165664pt;}
.ws1f8{word-spacing:0.168000pt;}
.ws192{word-spacing:0.170029pt;}
.ws1f4{word-spacing:0.171008pt;}
.ws161{word-spacing:0.176352pt;}
.wscc{word-spacing:0.181696pt;}
.ws12f{word-spacing:0.187040pt;}
.ws10e{word-spacing:0.187200pt;}
.ws245{word-spacing:0.191283pt;}
.wsa4{word-spacing:0.192384pt;}
.ws9f{word-spacing:0.203072pt;}
.ws20{word-spacing:0.212535pt;}
.ws1b5{word-spacing:0.239104pt;}
.ws33{word-spacing:0.265669pt;}
.ws22a{word-spacing:0.286925pt;}
.ws125{word-spacing:0.293920pt;}
.ws23{word-spacing:0.318803pt;}
.ws1a{word-spacing:0.334746pt;}
.ws204{word-spacing:0.336672pt;}
.ws1f2{word-spacing:0.342016pt;}
.wsf8{word-spacing:0.358048pt;}
.ws4f{word-spacing:0.371937pt;}
.ws246{word-spacing:0.382566pt;}
.wscb{word-spacing:0.384768pt;}
.wsb1{word-spacing:0.390112pt;}
.ws1eb{word-spacing:0.395456pt;}
.ws128{word-spacing:0.411488pt;}
.wsb2{word-spacing:0.416832pt;}
.ws51{word-spacing:0.425071pt;}
.wsca{word-spacing:0.427520pt;}
.ws40{word-spacing:0.478205pt;}
.ws267{word-spacing:0.478208pt;}
.ws127{word-spacing:0.491648pt;}
.ws205{word-spacing:0.507680pt;}
.ws26a{word-spacing:0.526029pt;}
.ws4b{word-spacing:0.531339pt;}
.ws188{word-spacing:0.573850pt;}
.ws13d{word-spacing:0.584473pt;}
.ws5e{word-spacing:0.637606pt;}
.ws1d2{word-spacing:0.684032pt;}
.ws45{word-spacing:0.690740pt;}
.ws171{word-spacing:0.700064pt;}
.ws1b3{word-spacing:0.717312pt;}
.ws1fb{word-spacing:0.726784pt;}
.wsf9{word-spacing:0.732128pt;}
.ws124{word-spacing:0.742816pt;}
.ws27{word-spacing:0.743874pt;}
.ws1f1{word-spacing:0.753504pt;}
.ws173{word-spacing:0.758848pt;}
.wse1{word-spacing:0.765133pt;}
.ws1d3{word-spacing:0.796256pt;}
.ws4a{word-spacing:0.797008pt;}
.ws1c2{word-spacing:0.833664pt;}
.ws55{word-spacing:0.850142pt;}
.ws253{word-spacing:0.860774pt;}
.ws49{word-spacing:0.903276pt;}
.ws264{word-spacing:0.908595pt;}
.ws42{word-spacing:0.956410pt;}
.wse7{word-spacing:0.956416pt;}
.ws159{word-spacing:0.993984pt;}
.ws72{word-spacing:1.009543pt;}
.ws109{word-spacing:1.010016pt;}
.ws1ff{word-spacing:1.015360pt;}
.ws15d{word-spacing:1.020704pt;}
.ws1ba{word-spacing:1.026048pt;}
.ws17d{word-spacing:1.062677pt;}
.ws1de{word-spacing:1.063456pt;}
.wsfe{word-spacing:1.068800pt;}
.ws172{word-spacing:1.079488pt;}
.ws1d9{word-spacing:1.095520pt;}
.ws243{word-spacing:1.099878pt;}
.ws17e{word-spacing:1.115811pt;}
.ws1df{word-spacing:1.122240pt;}
.wsdf{word-spacing:1.168945pt;}
.ws3f{word-spacing:1.222079pt;}
.wsc{word-spacing:1.227389pt;}
.ws160{word-spacing:1.293248pt;}
.ws63{word-spacing:1.328347pt;}
.ws147{word-spacing:1.336000pt;}
.ws189{word-spacing:1.338982pt;}
.ws12c{word-spacing:1.341344pt;}
.ws12d{word-spacing:1.373408pt;}
.ws1db{word-spacing:1.378752pt;}
.ws3e{word-spacing:1.381481pt;}
.ws1c5{word-spacing:1.394784pt;}
.ws15c{word-spacing:1.400128pt;}
.ws15b{word-spacing:1.426848pt;}
.ws1ae{word-spacing:1.434614pt;}
.ws242{word-spacing:1.434624pt;}
.ws2b{word-spacing:1.487748pt;}
.ws24b{word-spacing:1.578086pt;}
.ws1b6{word-spacing:1.594016pt;}
.ws226{word-spacing:1.647150pt;}
.ws19{word-spacing:1.673728pt;}
.ws162{word-spacing:1.678016pt;}
.ws203{word-spacing:1.688704pt;}
.ws5b{word-spacing:1.700284pt;}
.ws16b{word-spacing:1.710080pt;}
.ws164{word-spacing:1.720768pt;}
.ws151{word-spacing:1.747488pt;}
.ws84{word-spacing:1.753418pt;}
.ws152{word-spacing:1.763520pt;}
.ws163{word-spacing:1.768864pt;}
.ws16a{word-spacing:1.795584pt;}
.ws47{word-spacing:1.806551pt;}
.ws25a{word-spacing:1.817190pt;}
.ws195{word-spacing:1.859685pt;}
.ws228{word-spacing:1.865011pt;}
.ws1b2{word-spacing:1.912819pt;}
.ws11c{word-spacing:1.961248pt;}
.ws225{word-spacing:1.965953pt;}
.wsad{word-spacing:1.966592pt;}
.ws1cc{word-spacing:1.998656pt;}
.wsd2{word-spacing:2.014688pt;}
.ws61{word-spacing:2.019087pt;}
.wsd3{word-spacing:2.025376pt;}
.wsc6{word-spacing:2.041408pt;}
.ws24a{word-spacing:2.056294pt;}
.wsac{word-spacing:2.062784pt;}
.ws247{word-spacing:2.151936pt;}
.ws66{word-spacing:2.178489pt;}
.wsc7{word-spacing:2.217760pt;}
.ws4{word-spacing:2.231616pt;}
.wseb{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws22f{word-spacing:2.247578pt;}
.ws222{word-spacing:2.252882pt;}
.wsb0{word-spacing:2.265856pt;}
.ws24{word-spacing:2.284756pt;}
.ws11f{word-spacing:2.297920pt;}
.wsdb{word-spacing:2.323200pt;}
.ws122{word-spacing:2.328000pt;}
.ws201{word-spacing:2.335328pt;}
.ws200{word-spacing:2.340672pt;}
.ws241{word-spacing:2.343219pt;}
.ws14d{word-spacing:2.351360pt;}
.ws11e{word-spacing:2.356704pt;}
.wsd9{word-spacing:2.371200pt;}
.ws120{word-spacing:2.376000pt;}
.ws191{word-spacing:2.380403pt;}
.wsda{word-spacing:2.385600pt;}
.ws121{word-spacing:2.390400pt;}
.ws17c{word-spacing:2.391024pt;}
.wsec{word-spacing:2.444158pt;}
.ws252{word-spacing:2.486682pt;}
.ws38{word-spacing:2.497292pt;}
.ws251{word-spacing:2.534502pt;}
.wse4{word-spacing:2.550426pt;}
.ws15{word-spacing:2.550432pt;}
.ws17{word-spacing:2.582323pt;}
.ws94{word-spacing:2.591840pt;}
.ws1d7{word-spacing:2.597184pt;}
.wsea{word-spacing:2.603559pt;}
.ws100{word-spacing:2.618560pt;}
.ws209{word-spacing:2.629248pt;}
.ws260{word-spacing:2.630144pt;}
.ws1ee{word-spacing:2.655968pt;}
.ws43{word-spacing:2.656693pt;}
.ws13f{word-spacing:2.666656pt;}
.ws1d8{word-spacing:2.677344pt;}
.ws208{word-spacing:2.704064pt;}
.ws2a{word-spacing:2.709827pt;}
.ws93{word-spacing:2.725440pt;}
.ws24d{word-spacing:2.725786pt;}
.ws108{word-spacing:2.752160pt;}
.ws140{word-spacing:2.757504pt;}
.ws1af{word-spacing:2.762961pt;}
.ws25d{word-spacing:2.773606pt;}
.ws48{word-spacing:2.816095pt;}
.ws1d{word-spacing:2.861926pt;}
.ws26b{word-spacing:2.863642pt;}
.ws262{word-spacing:2.864649pt;}
.ws269{word-spacing:2.864922pt;}
.ws248{word-spacing:2.865459pt;}
.ws22b{word-spacing:2.866509pt;}
.ws1b4{word-spacing:2.869229pt;}
.ws235{word-spacing:2.869248pt;}
.ws1cb{word-spacing:2.912480pt;}
.ws5f{word-spacing:2.922363pt;}
.ws26{word-spacing:2.975497pt;}
.wsc1{word-spacing:2.981952pt;}
.wsc0{word-spacing:2.987296pt;}
.ws107{word-spacing:3.019360pt;}
.ws86{word-spacing:3.028630pt;}
.ws1e8{word-spacing:3.030048pt;}
.ws217{word-spacing:3.047950pt;}
.ws25e{word-spacing:3.060531pt;}
.ws138{word-spacing:3.067456pt;}
.ws34{word-spacing:3.081764pt;}
.ws1e9{word-spacing:3.094176pt;}
.ws26d{word-spacing:3.108352pt;}
.ws4e{word-spacing:3.134898pt;}
.ws1e{word-spacing:3.188032pt;}
.ws1ca{word-spacing:3.233120pt;}
.ws52{word-spacing:3.241166pt;}
.ws179{word-spacing:3.259840pt;}
.wsf7{word-spacing:3.270528pt;}
.ws16e{word-spacing:3.275872pt;}
.ws4c{word-spacing:3.294300pt;}
.ws1c9{word-spacing:3.297248pt;}
.ws1ac{word-spacing:3.299635pt;}
.ws1f0{word-spacing:3.302592pt;}
.ws17a{word-spacing:3.313280pt;}
.ws178{word-spacing:3.318624pt;}
.ws1f7{word-spacing:3.331200pt;}
.ws1f5{word-spacing:3.336000pt;}
.wsdd{word-spacing:3.340800pt;}
.ws177{word-spacing:3.345344pt;}
.ws1f6{word-spacing:3.345600pt;}
.ws5c{word-spacing:3.347434pt;}
.wsdc{word-spacing:3.350400pt;}
.ws4d{word-spacing:3.400567pt;}
.ws2c{word-spacing:3.453701pt;}
.ws17f{word-spacing:3.506835pt;}
.ws1f3{word-spacing:3.612544pt;}
.ws58{word-spacing:3.613103pt;}
.wsf6{word-spacing:3.633920pt;}
.ws6e{word-spacing:3.666237pt;}
.ws170{word-spacing:3.671328pt;}
.ws10d{word-spacing:3.686400pt;}
.ws174{word-spacing:3.703392pt;}
.ws41{word-spacing:3.719371pt;}
.ws25b{word-spacing:3.777843pt;}
.ws1d4{word-spacing:3.820960pt;}
.ws85{word-spacing:3.825638pt;}
.wsbd{word-spacing:3.853024pt;}
.ws57{word-spacing:3.878772pt;}
.ws1dd{word-spacing:3.890432pt;}
.ws219{word-spacing:3.892837pt;}
.ws22d{word-spacing:3.921306pt;}
.ws88{word-spacing:3.931906pt;}
.ws1d6{word-spacing:3.933184pt;}
.ws1b8{word-spacing:3.970592pt;}
.ws16f{word-spacing:3.975936pt;}
.wsbc{word-spacing:3.981280pt;}
.ws3d{word-spacing:3.985040pt;}
.ws1d5{word-spacing:4.018688pt;}
.ws83{word-spacing:4.144442pt;}
.ws229{word-spacing:4.208230pt;}
.ws14a{word-spacing:4.216416pt;}
.ws132{word-spacing:4.227104pt;}
.ws15a{word-spacing:4.243136pt;}
.wse3{word-spacing:4.250709pt;}
.ws133{word-spacing:4.280544pt;}
.ws68{word-spacing:4.303843pt;}
.wsd6{word-spacing:4.317952pt;}
.ws53{word-spacing:4.410111pt;}
.ws69{word-spacing:4.463245pt;}
.ws14b{word-spacing:4.499648pt;}
.ws75{word-spacing:4.516379pt;}
.ws141{word-spacing:4.569120pt;}
.ws82{word-spacing:4.622646pt;}
.ws123{word-spacing:4.656000pt;}
.ws117{word-spacing:4.665312pt;}
.ws224{word-spacing:4.835182pt;}
.ws119{word-spacing:4.868384pt;}
.wsa{word-spacing:4.872362pt;}
.ws10f{word-spacing:4.879072pt;}
.ws65{word-spacing:4.888316pt;}
.ws110{word-spacing:4.895104pt;}
.ws1bf{word-spacing:4.911136pt;}
.ws1c0{word-spacing:4.927168pt;}
.ws111{word-spacing:4.937856pt;}
.ws1b0{word-spacing:4.941450pt;}
.ws158{word-spacing:4.964576pt;}
.ws142{word-spacing:4.975264pt;}
.ws7c{word-spacing:5.047717pt;}
.ws118{word-spacing:5.050080pt;}
.ws14c{word-spacing:5.194368pt;}
.ws11d{word-spacing:5.210400pt;}
.wsab{word-spacing:5.215744pt;}
.ws148{word-spacing:5.258496pt;}
.ws21b{word-spacing:5.260253pt;}
.ws103{word-spacing:5.290560pt;}
.ws149{word-spacing:5.322624pt;}
.ws1f{word-spacing:5.366521pt;}
.ws5a{word-spacing:5.419654pt;}
.wsb4{word-spacing:5.472256pt;}
.ws12b{word-spacing:5.477600pt;}
.ws1c3{word-spacing:5.515008pt;}
.wsb3{word-spacing:5.525696pt;}
.ws50{word-spacing:5.525922pt;}
.ws1c4{word-spacing:5.531040pt;}
.wsfd{word-spacing:5.541728pt;}
.wsfb{word-spacing:5.547072pt;}
.ws1e4{word-spacing:5.557760pt;}
.ws6d{word-spacing:5.579056pt;}
.wsb5{word-spacing:5.680672pt;}
.ws32{word-spacing:5.685324pt;}
.ws2e{word-spacing:5.738458pt;}
.wsfc{word-spacing:5.782208pt;}
.ws2d{word-spacing:5.791591pt;}
.ws131{word-spacing:5.808928pt;}
.wsc8{word-spacing:5.819616pt;}
.ws169{word-spacing:5.846336pt;}
.ws157{word-spacing:5.867712pt;}
.ws130{word-spacing:5.905120pt;}
.wsc9{word-spacing:5.931840pt;}
.ws64{word-spacing:5.950993pt;}
.ws6a{word-spacing:6.004127pt;}
.wsd7{word-spacing:6.134912pt;}
.ws7a{word-spacing:6.163529pt;}
.ws56{word-spacing:6.216662pt;}
.ws24c{word-spacing:6.216704pt;}
.ws1ea{word-spacing:6.257824pt;}
.ws1b1{word-spacing:6.269796pt;}
.ws258{word-spacing:6.407987pt;}
.ws112{word-spacing:6.418144pt;}
.ws74{word-spacing:6.429198pt;}
.ws153{word-spacing:6.508992pt;}
.ws113{word-spacing:6.589152pt;}
.ws193{word-spacing:6.641733pt;}
.wsbb{word-spacing:6.733440pt;}
.ws54{word-spacing:6.748001pt;}
.ws154{word-spacing:6.797568pt;}
.ws194{word-spacing:6.801135pt;}
.wsba{word-spacing:6.899104pt;}
.ws44{word-spacing:6.960537pt;}
.ws81{word-spacing:7.066804pt;}
.ws101{word-spacing:7.219744pt;}
.wse9{word-spacing:7.226206pt;}
.ws102{word-spacing:7.246464pt;}
.ws70{word-spacing:7.385607pt;}
.ws1e6{word-spacing:7.476256pt;}
.ws18a{word-spacing:7.545009pt;}
.ws1e5{word-spacing:7.577792pt;}
.ws1e7{word-spacing:7.620544pt;}
.wsaa{word-spacing:7.754144pt;}
.ws14f{word-spacing:7.775520pt;}
.ws150{word-spacing:7.791552pt;}
.wsa8{word-spacing:7.989280pt;}
.ws14e{word-spacing:8.080128pt;}
.ws16{word-spacing:8.181471pt;}
.wsa9{word-spacing:8.192352pt;}
.ws8{word-spacing:8.740496pt;}
.ws210{word-spacing:8.776298pt;}
.ws59{word-spacing:9.510962pt;}
.wsef{word-spacing:10.325056pt;}
.ws8f{word-spacing:10.329312pt;}
.ws9{word-spacing:10.525789pt;}
.ws22c{word-spacing:10.862316pt;}
.ws6{word-spacing:13.761632pt;}
.ws97{word-spacing:16.053376pt;}
.ws96{word-spacing:16.064064pt;}
.ws7{word-spacing:19.857270pt;}
.wsb{word-spacing:20.196125pt;}
.ws24e{word-spacing:30.031462pt;}
.ws18c{word-spacing:42.417050pt;}
.ws238{word-spacing:79.413733pt;}
.ws18d{word-spacing:83.969502pt;}
.ws18e{word-spacing:91.289907pt;}
.ws21d{word-spacing:95.921502pt;}
.ws237{word-spacing:97.298981pt;}
.ws236{word-spacing:108.054267pt;}
.ws190{word-spacing:112.878182pt;}
.ws21e{word-spacing:113.094221pt;}
.ws21f{word-spacing:115.200307pt;}
.ws18f{word-spacing:118.500070pt;}
.ws221{word-spacing:124.830182pt;}
.ws220{word-spacing:130.452070pt;}
.ws23c{word-spacing:169.136149pt;}
.ws23d{word-spacing:178.742776pt;}
.ws23a{word-spacing:188.306896pt;}
.ws239{word-spacing:188.349403pt;}
.ws23b{word-spacing:189.369576pt;}
.ws232{word-spacing:211.750502pt;}
.ws234{word-spacing:214.476288pt;}
.ws23f{word-spacing:224.949043pt;}
.ws233{word-spacing:232.504730pt;}
.ws23e{word-spacing:242.881843pt;}
.ws231{word-spacing:248.285594pt;}
.ws1a8{word-spacing:620.857446pt;}
.ws19a{word-spacing:632.812646pt;}
.ws1ab{word-spacing:710.951834pt;}
.ws1a4{word-spacing:722.907034pt;}
.ws19c{word-spacing:727.450010pt;}
.ws19f{word-spacing:734.862234pt;}
.ws19d{word-spacing:746.721792pt;}
.ws1a3{word-spacing:758.676992pt;}
.ws1a6{word-spacing:801.715712pt;}
.ws1a7{word-spacing:809.940890pt;}
.ws1a1{word-spacing:813.670912pt;}
.ws199{word-spacing:821.896090pt;}
.ws197{word-spacing:825.626112pt;}
.ws1a9{word-spacing:831.316787pt;}
.ws1a5{word-spacing:835.668480pt;}
.ws1aa{word-spacing:838.633370pt;}
.ws1a2{word-spacing:843.271987pt;}
.ws196{word-spacing:847.623680pt;}
.ws19e{word-spacing:850.588570pt;}
.ws19b{word-spacing:855.227187pt;}
.ws198{word-spacing:880.380928pt;}
.ws184{word-spacing:1188.756768pt;}
.ws185{word-spacing:1190.039328pt;}
.ws186{word-spacing:1222.675136pt;}
._66{margin-left:-18.588493pt;}
._4{margin-left:-10.616218pt;}
._16{margin-left:-7.279347pt;}
._a{margin-left:-6.360166pt;}
._b{margin-left:-5.451571pt;}
._9{margin-left:-4.394102pt;}
._0{margin-left:-3.421811pt;}
._1f{margin-left:-2.193968pt;}
._3{margin-left:-1.301776pt;}
._1d{width:1.034208pt;}
._5{width:2.664166pt;}
._31{width:3.649952pt;}
._1b{width:9.510995pt;}
._29{width:10.621011pt;}
._1{width:11.530016pt;}
._12{width:12.534377pt;}
._7{width:13.628928pt;}
._8{width:15.015674pt;}
._c{width:16.258963pt;}
._d{width:17.571301pt;}
._13{width:18.889086pt;}
._f{width:20.562806pt;}
._1a{width:21.545779pt;}
._2{width:22.502128pt;}
._19{width:23.485169pt;}
._e{width:25.158882pt;}
._14{width:26.354398pt;}
._1c{width:27.921843pt;}
._2f{width:29.197056pt;}
._15{width:30.180036pt;}
._18{width:31.720918pt;}
._17{width:32.996124pt;}
._65{width:34.282378pt;}
._30{width:35.748001pt;}
._6{width:48.360794pt;}
._3b{width:64.409264pt;}
._3f{width:76.608922pt;}
._26{width:91.289907pt;}
._27{width:93.202739pt;}
._28{width:95.115571pt;}
._22{width:105.157939pt;}
._23{width:107.070771pt;}
._47{width:109.243504pt;}
._41{width:114.339533pt;}
._25{width:120.508416pt;}
._24{width:122.469069pt;}
._33{width:129.068339pt;}
._34{width:130.981171pt;}
._35{width:146.379469pt;}
._40{width:164.216627pt;}
._62{width:179.344013pt;}
._4a{width:180.406693pt;}
._52{width:181.760787pt;}
._50{width:182.780960pt;}
._48{width:189.746005pt;}
._51{width:190.990986pt;}
._60{width:195.703149pt;}
._45{width:196.686950pt;}
._4f{width:197.956030pt;}
._56{width:198.976203pt;}
._49{width:199.996376pt;}
._54{width:201.192714pt;}
._59{width:202.808013pt;}
._5f{width:205.309776pt;}
._4e{width:208.540323pt;}
._4d{width:209.560496pt;}
._3d{width:214.954496pt;}
._3a{width:216.676045pt;}
._38{width:220.979917pt;}
._4b{width:228.773750pt;}
._58{width:232.935117pt;}
._63{width:234.087150pt;}
._39{width:236.952064pt;}
._57{width:238.035746pt;}
._43{width:244.746854pt;}
._53{width:247.343261pt;}
._55{width:248.630749pt;}
._64{width:253.300405pt;}
._4c{width:258.613805pt;}
._3e{width:260.575539pt;}
._61{width:269.748894pt;}
._3c{width:277.743206pt;}
._5b{width:278.747443pt;}
._37{width:279.751680pt;}
._36{width:282.429645pt;}
._44{width:284.390298pt;}
._42{width:308.205056pt;}
._5e{width:343.114240pt;}
._5d{width:344.261939pt;}
._5c{width:352.295834pt;}
._5a{width:360.377549pt;}
._2c{width:468.303683pt;}
._2d{width:498.239504pt;}
._2a{width:503.260688pt;}
._2e{width:519.094784pt;}
._2b{width:531.049984pt;}
._10{width:644.279966pt;}
._32{width:1561.211882pt;}
._21{width:1836.102240pt;}
._1e{width:1858.033408pt;}
._20{width:2222.978667pt;}
._11{width:2244.232000pt;}
._46{width:3536.738667pt;}
.fsa{font-size:31.880533pt;}
.fs10{font-size:32.000000pt;}
.fs13{font-size:36.176000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.381867pt;}
.fs15{font-size:40.800000pt;}
.fsd{font-size:42.077867pt;}
.fsb{font-size:42.507200pt;}
.fse{font-size:42.560000pt;}
.fs14{font-size:45.424000pt;}
.fsc{font-size:47.820800pt;}
.fs11{font-size:48.000000pt;}
.fs16{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsf{font-size:53.440000pt;}
.fs12{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.fs6{font-size:114.229120pt;}
.y14e{bottom:-690.181733pt;}
.y14d{bottom:-674.741333pt;}
.y14c{bottom:-659.300933pt;}
.y1cf{bottom:-656.674667pt;}
.y1ce{bottom:-641.234267pt;}
.y14b{bottom:-639.377837pt;}
.y1cd{bottom:-625.874267pt;}
.y1cc{bottom:-605.948491pt;}
.y160{bottom:-437.605733pt;}
.y15f{bottom:-422.165333pt;}
.y15e{bottom:-406.724933pt;}
.y14a{bottom:-395.617957pt;}
.y15d{bottom:-386.801837pt;}
.y149{bottom:-378.578613pt;}
.y148{bottom:-361.459109pt;}
.y1cb{bottom:-360.188619pt;}
.y22c{bottom:-357.781371pt;}
.y147{bottom:-344.419765pt;}
.y1ca{bottom:-343.069115pt;}
.y22b{bottom:-340.742027pt;}
.y146{bottom:-327.300261pt;}
.y32b{bottom:-326.239776pt;}
.y1c9{bottom:-325.949611pt;}
.y22a{bottom:-323.622523pt;}
.y32a{bottom:-309.120272pt;}
.y1c8{bottom:-308.910267pt;}
.y229{bottom:-306.503019pt;}
.y145{bottom:-306.260933pt;}
.y329{bottom:-292.080928pt;}
.y228{bottom:-289.463675pt;}
.y1c7{bottom:-287.870939pt;}
.y328{bottom:-274.961424pt;}
.y144{bottom:-273.460933pt;}
.y227{bottom:-272.344171pt;}
.y327{bottom:-257.922080pt;}
.y226{bottom:-255.304827pt;}
.y1c6{bottom:-254.751499pt;}
.y143{bottom:-253.460933pt;}
.y326{bottom:-240.802576pt;}
.y225{bottom:-238.185323pt;}
.y1c5{bottom:-237.631995pt;}
.y1b1{bottom:-237.430525pt;}
.y325{bottom:-223.683072pt;}
.y224{bottom:-221.065819pt;}
.y1c4{bottom:-220.512491pt;}
.y1b0{bottom:-220.311021pt;}
.y324{bottom:-206.643728pt;}
.y223{bottom:-204.026475pt;}
.y1c3{bottom:-203.471811pt;}
.y1af{bottom:-203.191517pt;}
.y323{bottom:-189.524224pt;}
.y222{bottom:-186.906971pt;}
.y1c2{bottom:-186.352307pt;}
.y1ae{bottom:-186.152173pt;}
.y221{bottom:-169.787467pt;}
.y1c1{bottom:-169.232803pt;}
.y1ad{bottom:-169.032669pt;}
.y322{bottom:-168.484896pt;}
.y220{bottom:-152.748123pt;}
.y1c0{bottom:-152.192123pt;}
.y1ac{bottom:-151.913165pt;}
.y15c{bottom:-143.041957pt;}
.y21f{bottom:-135.628619pt;}
.y321{bottom:-135.365456pt;}
.y1bf{bottom:-135.072619pt;}
.y1ab{bottom:-134.872485pt;}
.y15b{bottom:-126.002613pt;}
.y21e{bottom:-118.589275pt;}
.y320{bottom:-118.245952pt;}
.y1be{bottom:-118.033275pt;}
.y1aa{bottom:-117.752981pt;}
.y15a{bottom:-108.883109pt;}
.y21d{bottom:-101.469771pt;}
.y31f{bottom:-101.206608pt;}
.y1bd{bottom:-100.913771pt;}
.y1a9{bottom:-100.713637pt;}
.y33d{bottom:-97.265459pt;}
.y159{bottom:-91.843765pt;}
.y21c{bottom:-84.350267pt;}
.y31e{bottom:-84.087104pt;}
.y1bc{bottom:-83.794267pt;}
.y1a8{bottom:-83.594133pt;}
.y33c{bottom:-82.713881pt;}
.y158{bottom:-74.724261pt;}
.y2fd{bottom:-70.472933pt;}
.y33b{bottom:-68.162302pt;}
.y31d{bottom:-66.967600pt;}
.y157{bottom:-53.684933pt;}
.y33a{bottom:-53.678860pt;}
.y1ff{bottom:-51.842667pt;}
.y21b{bottom:-51.709867pt;}
.y177{bottom:-51.560400pt;}
.y1bb{bottom:-51.153867pt;}
.y1a7{bottom:-50.874667pt;}
.y1fe{bottom:-36.402267pt;}
.y21a{bottom:-36.190267pt;}
.y176{bottom:-36.120000pt;}
.y1ba{bottom:-35.634267pt;}
.y1a6{bottom:-35.434267pt;}
.y2fc{bottom:-35.193333pt;}
.y31c{bottom:-34.327200pt;}
.y339{bottom:-25.867200pt;}
.y142{bottom:-22.100933pt;}
.y13c{bottom:-21.200933pt;}
.y1fd{bottom:-21.042267pt;}
.y156{bottom:-20.884933pt;}
.y219{bottom:-20.830267pt;}
.y175{bottom:-20.679600pt;}
.y1b9{bottom:-20.274267pt;}
.y1a5{bottom:-20.074267pt;}
.y2fb{bottom:-19.752933pt;}
.y31b{bottom:-18.807600pt;}
.y338{bottom:-12.742860pt;}
.y141{bottom:-2.100933pt;}
.y13b{bottom:-1.195861pt;}
.y1fc{bottom:-1.116491pt;}
.y218{bottom:-0.903699pt;}
.y155{bottom:-0.884933pt;}
.y174{bottom:-0.756504pt;}
.y1b8{bottom:-0.354267pt;}
.y1a4{bottom:-0.146387pt;}
.y0{bottom:0.000000pt;}
.y2fa{bottom:0.176907pt;}
.y31a{bottom:1.112296pt;}
.y251{bottom:7.111056pt;}
.y337{bottom:7.588739pt;}
.y3e{bottom:14.848190pt;}
.y336{bottom:19.488691pt;}
.y24f{bottom:21.111000pt;}
.y6c{bottom:28.346667pt;}
.y253{bottom:49.738667pt;}
.y6{bottom:59.133337pt;}
.y252{bottom:66.834667pt;}
.y5{bottom:86.333337pt;}
.y248{bottom:89.428667pt;}
.yfc{bottom:92.108000pt;}
.y3c{bottom:93.018667pt;}
.y6b{bottom:93.992000pt;}
.ycb{bottom:94.086667pt;}
.y1e0{bottom:95.445333pt;}
.y36e{bottom:95.861333pt;}
.y2b7{bottom:96.929333pt;}
.y387{bottom:97.764000pt;}
.y33f{bottom:98.236000pt;}
.y3c1{bottom:99.412000pt;}
.y488{bottom:99.466667pt;}
.y18a{bottom:104.852000pt;}
.ya2{bottom:105.909333pt;}
.yab{bottom:106.308000pt;}
.yfb{bottom:108.844000pt;}
.y3b{bottom:108.920000pt;}
.y6a{bottom:110.729333pt;}
.yca{bottom:110.824000pt;}
.y3c0{bottom:112.032000pt;}
.y1df{bottom:112.182667pt;}
.y36d{bottom:112.598667pt;}
.y386{bottom:113.386667pt;}
.y487{bottom:114.809333pt;}
.y453{bottom:114.876000pt;}
.y33e{bottom:115.332000pt;}
.y41a{bottom:116.561333pt;}
.y284{bottom:118.760000pt;}
.y189{bottom:121.589333pt;}
.ya1{bottom:122.646667pt;}
.yaa{bottom:123.045333pt;}
.y22{bottom:123.790666pt;}
.y3bf{bottom:124.650667pt;}
.y3a{bottom:124.820000pt;}
.yf9{bottom:125.581333pt;}
.y69{bottom:127.466667pt;}
.yc9{bottom:127.561333pt;}
.y1de{bottom:128.920000pt;}
.y385{bottom:129.008000pt;}
.y419{bottom:129.181333pt;}
.y36c{bottom:129.336000pt;}
.y486{bottom:130.152000pt;}
.y452{bottom:130.218667pt;}
.yfa{bottom:130.404000pt;}
.y283{bottom:133.372000pt;}
.y14f{bottom:133.553333pt;}
.y32f{bottom:135.269333pt;}
.y3be{bottom:137.270667pt;}
.y188{bottom:138.326667pt;}
.ya0{bottom:139.384000pt;}
.ya9{bottom:139.782667pt;}
.y39{bottom:140.720000pt;}
.y418{bottom:141.800000pt;}
.yf8{bottom:142.318667pt;}
.y68{bottom:144.204000pt;}
.yc8{bottom:144.298667pt;}
.y384{bottom:144.629333pt;}
.y451{bottom:145.561333pt;}
.y1dd{bottom:145.657333pt;}
.y36b{bottom:146.073333pt;}
.y282{bottom:147.984000pt;}
.y13e{bottom:153.490667pt;}
.y417{bottom:154.420000pt;}
.y187{bottom:155.064000pt;}
.y9f{bottom:156.121333pt;}
.y3bd{bottom:156.292000pt;}
.y250{bottom:156.311528pt;}
.ya8{bottom:156.520000pt;}
.y38{bottom:156.621333pt;}
.y247{bottom:158.910667pt;}
.yf6{bottom:159.056000pt;}
.y383{bottom:160.250667pt;}
.y450{bottom:160.902667pt;}
.y67{bottom:160.941333pt;}
.yc7{bottom:161.036000pt;}
.y1dc{bottom:162.394667pt;}
.y281{bottom:162.596000pt;}
.y369{bottom:162.810667pt;}
.yf7{bottom:163.878667pt;}
.y485{bottom:164.888000pt;}
.y36a{bottom:167.632000pt;}
.y3bc{bottom:168.910667pt;}
.y186{bottom:171.801333pt;}
.y37{bottom:172.521333pt;}
.y9e{bottom:172.858667pt;}
.ya7{bottom:173.257333pt;}
.y416{bottom:173.441333pt;}
.y19{bottom:175.052000pt;}
.y246{bottom:175.648000pt;}
.y230{bottom:175.793333pt;}
.y382{bottom:175.872000pt;}
.y44f{bottom:176.245333pt;}
.y280{bottom:177.208000pt;}
.y66{bottom:177.678667pt;}
.yc6{bottom:177.773333pt;}
.y1db{bottom:179.132000pt;}
.y368{bottom:179.548000pt;}
.y484{bottom:180.230667pt;}
.yf5{bottom:181.504000pt;}
.y3bb{bottom:181.530667pt;}
.y415{bottom:186.060000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y36{bottom:188.421333pt;}
.y185{bottom:188.538667pt;}
.y9d{bottom:189.596000pt;}
.ya6{bottom:189.994667pt;}
.y381{bottom:191.493333pt;}
.y44e{bottom:191.588000pt;}
.y27f{bottom:191.820000pt;}
.y245{bottom:192.385333pt;}
.y2b5{bottom:192.530667pt;}
.y3ba{bottom:194.149333pt;}
.y65{bottom:194.416000pt;}
.yc5{bottom:194.510667pt;}
.y483{bottom:195.573333pt;}
.y1da{bottom:195.869333pt;}
.y366{bottom:196.285333pt;}
.y2b6{bottom:197.353333pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y414{bottom:198.680000pt;}
.y367{bottom:201.106667pt;}
.yf4{bottom:203.952000pt;}
.y35{bottom:204.322667pt;}
.y22f{bottom:205.262667pt;}
.y184{bottom:205.276000pt;}
.y2d7{bottom:205.934667pt;}
.y9c{bottom:206.333333pt;}
.y27e{bottom:206.432000pt;}
.ya5{bottom:206.732000pt;}
.y44d{bottom:206.930667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y244{bottom:209.122667pt;}
.y2b4{bottom:209.268000pt;}
.y482{bottom:210.916000pt;}
.y64{bottom:211.153333pt;}
.yc4{bottom:211.248000pt;}
.y413{bottom:211.298667pt;}
.y1d9{bottom:212.606667pt;}
.y365{bottom:213.022667pt;}
.y3b9{bottom:213.170667pt;}
.y32e{bottom:214.090667pt;}
.yf3{bottom:220.689333pt;}
.y27d{bottom:221.044000pt;}
.y183{bottom:222.013333pt;}
.y380{bottom:222.034667pt;}
.y44c{bottom:222.273333pt;}
.y22e{bottom:222.358667pt;}
.y2d6{bottom:222.672000pt;}
.yaf{bottom:223.070667pt;}
.ya4{bottom:223.469333pt;}
.y3b8{bottom:225.790667pt;}
.y243{bottom:225.860000pt;}
.y2b2{bottom:226.005333pt;}
.y481{bottom:226.258667pt;}
.y9b{bottom:227.056000pt;}
.y63{bottom:227.890667pt;}
.yc3{bottom:227.985333pt;}
.y1d8{bottom:229.342667pt;}
.y364{bottom:229.760000pt;}
.y412{bottom:230.320000pt;}
.y154{bottom:230.475067pt;}
.y13a{bottom:230.564067pt;}
.y2b3{bottom:230.828000pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y319{bottom:234.872216pt;}
.y27c{bottom:235.656000pt;}
.y335{bottom:237.088956pt;}
.y44b{bottom:237.616000pt;}
.y3b7{bottom:238.409333pt;}
.y182{bottom:238.749333pt;}
.y2d5{bottom:239.409333pt;}
.y22d{bottom:239.454667pt;}
.yae{bottom:239.808000pt;}
.ya3{bottom:240.206667pt;}
.y480{bottom:241.601333pt;}
.y1a3{bottom:241.613501pt;}
.y217{bottom:241.736613pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y242{bottom:242.597333pt;}
.y2b1{bottom:242.742667pt;}
.y411{bottom:242.940000pt;}
.y173{bottom:243.003376pt;}
.yf2{bottom:243.137333pt;}
.y62{bottom:244.628000pt;}
.y1fb{bottom:244.643381pt;}
.y1d7{bottom:246.080000pt;}
.y363{bottom:246.497333pt;}
.y140{bottom:247.179187pt;}
.y139{bottom:247.603411pt;}
.yc2{bottom:248.708000pt;}
.y334{bottom:248.988909pt;}
.y27b{bottom:250.266667pt;}
.y153{bottom:250.475067pt;}
.y3b6{bottom:251.029333pt;}
.y318{bottom:251.912896pt;}
.y44a{bottom:252.958667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y37f{bottom:254.712000pt;}
.y181{bottom:255.486667pt;}
.y410{bottom:255.558667pt;}
.y13f{bottom:255.739067pt;}
.y2d4{bottom:256.146667pt;}
.y9a{bottom:256.944000pt;}
.y1a2{bottom:258.733005pt;}
.y216{bottom:258.775957pt;}
.y1b7{bottom:259.005853pt;}
.y241{bottom:259.334667pt;}
.y203{bottom:259.392000pt;}
.y2b0{bottom:259.480000pt;}
.yf1{bottom:259.874667pt;}
.y172{bottom:260.042720pt;}
.yad{bottom:260.529333pt;}
.y61{bottom:261.365333pt;}
.y1fa{bottom:261.762885pt;}
.yc1{bottom:262.656000pt;}
.y1d6{bottom:262.817333pt;}
.y362{bottom:263.234667pt;}
.y138{bottom:264.722915pt;}
.y27a{bottom:264.878667pt;}
.y34{bottom:266.570667pt;}
.y2f9{bottom:266.897283pt;}
.y1b6{bottom:267.565733pt;}
.y40f{bottom:268.178667pt;}
.y449{bottom:268.301333pt;}
.y317{bottom:269.032400pt;}
.y315{bottom:269.037816pt;}
.y3b5{bottom:270.050667pt;}
.y180{bottom:272.224000pt;}
.y47f{bottom:272.285333pt;}
.y316{bottom:272.392400pt;}
.y2d3{bottom:272.884000pt;}
.y99{bottom:273.681333pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y1a1{bottom:275.852509pt;}
.y215{bottom:275.895461pt;}
.y240{bottom:276.072000pt;}
.y2af{bottom:276.217333pt;}
.yf0{bottom:276.612000pt;}
.y171{bottom:277.162224pt;}
.y60{bottom:278.102667pt;}
.y37e{bottom:278.304000pt;}
.y1f9{bottom:278.882389pt;}
.y1d5{bottom:279.554667pt;}
.y361{bottom:279.972000pt;}
.y137{bottom:281.762259pt;}
.y33{bottom:282.470667pt;}
.y3b4{bottom:282.670667pt;}
.y448{bottom:283.644000pt;}
.y2f8{bottom:283.937963pt;}
.y279{bottom:285.893333pt;}
.y314{bottom:286.077160pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y40e{bottom:287.200000pt;}
.y47e{bottom:287.628000pt;}
.y17f{bottom:288.961333pt;}
.y2d2{bottom:289.621333pt;}
.y98{bottom:290.417333pt;}
.yc0{bottom:292.544000pt;}
.y23f{bottom:292.809333pt;}
.y1a0{bottom:292.891853pt;}
.y2ae{bottom:292.954667pt;}
.y214{bottom:293.014965pt;}
.y37d{bottom:293.925333pt;}
.y170{bottom:294.201568pt;}
.y5f{bottom:294.840000pt;}
.y3b3{bottom:295.289333pt;}
.y1f8{bottom:295.921733pt;}
.y1d4{bottom:296.292000pt;}
.y360{bottom:296.709333pt;}
.yef{bottom:297.334667pt;}
.y32{bottom:298.370667pt;}
.y136{bottom:298.881763pt;}
.y447{bottom:298.985333pt;}
.y40d{bottom:299.818667pt;}
.y2f7{bottom:301.057467pt;}
.y47d{bottom:302.970667pt;}
.y313{bottom:303.196664pt;}
.y24e{bottom:305.510664pt;}
.y17e{bottom:305.698667pt;}
.y2d1{bottom:306.358667pt;}
.y97{bottom:307.154667pt;}
.y3b2{bottom:307.909333pt;}
.ybf{bottom:309.280000pt;}
.y10{bottom:309.452000pt;}
.y23e{bottom:309.546667pt;}
.y2ad{bottom:309.692000pt;}
.y213{bottom:310.055645pt;}
.y16f{bottom:311.321072pt;}
.y5e{bottom:311.577333pt;}
.y40c{bottom:312.438667pt;}
.y1d3{bottom:313.029333pt;}
.y35f{bottom:313.446667pt;}
.y19f{bottom:313.932517pt;}
.y278{bottom:314.000000pt;}
.y31{bottom:314.272000pt;}
.y446{bottom:314.328000pt;}
.y135{bottom:316.001267pt;}
.y1f7{bottom:316.961061pt;}
.y2f6{bottom:318.176971pt;}
.y47c{bottom:318.313333pt;}
.y24d{bottom:319.510608pt;}
.y312{bottom:320.316168pt;}
.y17d{bottom:322.436000pt;}
.y2d0{bottom:323.096000pt;}
.y96{bottom:323.892000pt;}
.y40b{bottom:325.057333pt;}
.y37c{bottom:325.168000pt;}
.y23d{bottom:326.284000pt;}
.y2ac{bottom:326.429333pt;}
.y3b1{bottom:326.930667pt;}
.y212{bottom:327.175149pt;}
.yee{bottom:327.222667pt;}
.y5d{bottom:328.314667pt;}
.y445{bottom:329.670667pt;}
.y35e{bottom:330.184000pt;}
.y16e{bottom:332.360400pt;}
.ybe{bottom:332.660000pt;}
.y134{bottom:333.040611pt;}
.y47b{bottom:333.656000pt;}
.y2f5{bottom:335.217651pt;}
.y311{bottom:337.355512pt;}
.y32d{bottom:338.774667pt;}
.y17c{bottom:339.173333pt;}
.y30{bottom:339.470667pt;}
.y3b0{bottom:339.549333pt;}
.y2cf{bottom:339.833333pt;}
.y95{bottom:340.629333pt;}
.y37b{bottom:340.789333pt;}
.y1d2{bottom:342.865333pt;}
.y23c{bottom:343.021333pt;}
.y2aa{bottom:343.166667pt;}
.yf{bottom:343.809333pt;}
.yed{bottom:343.960000pt;}
.y40a{bottom:344.078667pt;}
.y211{bottom:344.214493pt;}
.y444{bottom:345.013333pt;}
.y5c{bottom:345.052000pt;}
.y35d{bottom:346.920000pt;}
.y277{bottom:346.981333pt;}
.y19e{bottom:347.051957pt;}
.y2ab{bottom:347.988000pt;}
.y47a{bottom:348.998667pt;}
.ybd{bottom:349.397333pt;}
.y1f6{bottom:350.080501pt;}
.y133{bottom:350.160115pt;}
.y3af{bottom:352.169333pt;}
.y2f4{bottom:352.337155pt;}
.y310{bottom:354.475016pt;}
.y2f{bottom:355.370667pt;}
.y32c{bottom:355.870667pt;}
.y17b{bottom:355.910667pt;}
.y37a{bottom:356.410667pt;}
.y2ce{bottom:356.570667pt;}
.y409{bottom:356.698667pt;}
.y94{bottom:357.366667pt;}
.y23b{bottom:359.758667pt;}
.y2a9{bottom:359.904000pt;}
.y1d1{bottom:359.961333pt;}
.y443{bottom:360.356000pt;}
.y210{bottom:361.333997pt;}
.y5b{bottom:361.789333pt;}
.ye{bottom:362.706666pt;}
.y35c{bottom:363.657333pt;}
.y276{bottom:363.718667pt;}
.y19d{bottom:364.171461pt;}
.y479{bottom:364.341333pt;}
.y3ae{bottom:364.788000pt;}
.y16d{bottom:365.160400pt;}
.ybc{bottom:366.134667pt;}
.yec{bottom:366.408000pt;}
.y1f5{bottom:367.200005pt;}
.y132{bottom:367.279619pt;}
.y408{bottom:369.317333pt;}
.y2f3{bottom:369.456659pt;}
.y2e{bottom:371.270667pt;}
.y30f{bottom:371.594520pt;}
.y93{bottom:374.104000pt;}
.y442{bottom:375.698667pt;}
.y306{bottom:375.808000pt;}
.y23a{bottom:376.496000pt;}
.y2a7{bottom:376.641333pt;}
.y1d0{bottom:377.057333pt;}
.y2cd{bottom:377.292000pt;}
.y20f{bottom:378.453501pt;}
.y5a{bottom:378.526667pt;}
.y478{bottom:379.684000pt;}
.y379{bottom:380.002667pt;}
.y35b{bottom:380.394667pt;}
.y275{bottom:380.456000pt;}
.y19c{bottom:381.290965pt;}
.y2a8{bottom:381.462667pt;}
.y407{bottom:381.937333pt;}
.ybb{bottom:382.872000pt;}
.y3f0{bottom:382.948000pt;}
.yeb{bottom:383.145333pt;}
.y3ad{bottom:383.809333pt;}
.y131{bottom:384.318963pt;}
.y1f4{bottom:384.319509pt;}
.y16c{bottom:385.160400pt;}
.y17a{bottom:385.746667pt;}
.y2f2{bottom:386.496003pt;}
.y2d{bottom:387.172000pt;}
.y13d{bottom:387.494667pt;}
.y30e{bottom:388.633864pt;}
.y92{bottom:390.841333pt;}
.y441{bottom:391.041333pt;}
.y238{bottom:393.233333pt;}
.y2a6{bottom:393.378667pt;}
.y477{bottom:395.025333pt;}
.y59{bottom:395.264000pt;}
.y20e{bottom:395.492845pt;}
.y378{bottom:395.624000pt;}
.y3ac{bottom:396.429333pt;}
.y1b5{bottom:396.994667pt;}
.y35a{bottom:397.132000pt;}
.y274{bottom:397.193333pt;}
.y3ef{bottom:397.560000pt;}
.y239{bottom:398.054667pt;}
.y19b{bottom:398.331645pt;}
.yba{bottom:399.609333pt;}
.y406{bottom:400.958667pt;}
.y1f3{bottom:401.360189pt;}
.y179{bottom:402.842667pt;}
.y2c{bottom:403.072000pt;}
.y2f1{bottom:403.615507pt;}
.y130{bottom:405.359627pt;}
.yea{bottom:405.593333pt;}
.y30d{bottom:405.753368pt;}
.y440{bottom:406.384000pt;}
.y2cc{bottom:407.180000pt;}
.y111{bottom:407.432000pt;}
.y91{bottom:407.578667pt;}
.y3ab{bottom:409.048000pt;}
.y236{bottom:409.970667pt;}
.y476{bottom:410.368000pt;}
.y58{bottom:412.001333pt;}
.y3ee{bottom:412.172000pt;}
.y20d{bottom:412.612349pt;}
.y405{bottom:413.577333pt;}
.y359{bottom:413.869333pt;}
.y273{bottom:413.930667pt;}
.y237{bottom:414.792000pt;}
.y19a{bottom:415.451149pt;}
.yb9{bottom:416.346667pt;}
.y1f2{bottom:418.479693pt;}
.y377{bottom:419.216000pt;}
.y178{bottom:419.938667pt;}
.y2f0{bottom:420.654851pt;}
.y3aa{bottom:421.668000pt;}
.y43f{bottom:421.725333pt;}
.ye9{bottom:422.330667pt;}
.y30c{bottom:422.792712pt;}
.y2cb{bottom:423.917333pt;}
.y90{bottom:424.316000pt;}
.y475{bottom:425.710667pt;}
.y404{bottom:426.197333pt;}
.y235{bottom:426.706667pt;}
.y3ed{bottom:426.784000pt;}
.y2b{bottom:426.942667pt;}
.y57{bottom:428.738667pt;}
.y20c{bottom:429.731853pt;}
.y358{bottom:430.606667pt;}
.y272{bottom:430.666667pt;}
.y199{bottom:432.490493pt;}
.y2a5{bottom:432.868000pt;}
.yb8{bottom:433.084000pt;}
.y1f1{bottom:435.599197pt;}
.y43e{bottom:437.068000pt;}
.y2ef{bottom:437.774355pt;}
.y12f{bottom:438.479067pt;}
.y12d{bottom:438.483067pt;}
.y403{bottom:438.816000pt;}
.ye8{bottom:439.068000pt;}
.y167{bottom:439.876000pt;}
.y30b{bottom:439.912216pt;}
.y2ca{bottom:440.654667pt;}
.y3a9{bottom:440.689333pt;}
.y8f{bottom:441.053333pt;}
.y12e{bottom:441.839067pt;}
.y376{bottom:442.806667pt;}
.y2a{bottom:442.842667pt;}
.y234{bottom:443.444000pt;}
.y56{bottom:445.476000pt;}
.y20b{bottom:446.771197pt;}
.yd{bottom:446.990669pt;}
.y357{bottom:447.344000pt;}
.y271{bottom:447.404000pt;}
.y2a4{bottom:447.480000pt;}
.y3ec{bottom:447.797333pt;}
.y198{bottom:449.609997pt;}
.y43d{bottom:452.410667pt;}
.y1f0{bottom:452.639877pt;}
.y3a8{bottom:453.308000pt;}
.yb7{bottom:453.805333pt;}
.y12c{bottom:455.602571pt;}
.ye7{bottom:455.805333pt;}
.y474{bottom:456.396000pt;}
.y30a{bottom:457.031720pt;}
.y2c9{bottom:457.392000pt;}
.y8e{bottom:457.790667pt;}
.y402{bottom:457.838667pt;}
.y29{bottom:458.744000pt;}
.y2ee{bottom:458.815019pt;}
.y233{bottom:460.181333pt;}
.y2a3{bottom:462.092000pt;}
.y3eb{bottom:462.409333pt;}
.yc{bottom:462.990669pt;}
.y333{bottom:463.189188pt;}
.y20a{bottom:463.890701pt;}
.y356{bottom:464.081333pt;}
.y270{bottom:464.141333pt;}
.y3a7{bottom:465.928000pt;}
.y55{bottom:466.197333pt;}
.y375{bottom:466.398667pt;}
.y197{bottom:466.729501pt;}
.y43c{bottom:467.753333pt;}
.y1ef{bottom:469.759381pt;}
.y401{bottom:470.457333pt;}
.yb6{bottom:470.542667pt;}
.y473{bottom:471.738667pt;}
.y12b{bottom:472.722075pt;}
.y309{bottom:474.072400pt;}
.y2c8{bottom:474.129333pt;}
.y8d{bottom:474.528000pt;}
.y28{bottom:474.644000pt;}
.y332{bottom:475.089140pt;}
.ye6{bottom:476.528000pt;}
.y3ea{bottom:477.021333pt;}
.y3a6{bottom:478.546667pt;}
.yb{bottom:478.990666pt;}
.y355{bottom:480.818667pt;}
.y232{bottom:480.904000pt;}
.y209{bottom:480.930045pt;}
.y374{bottom:482.020000pt;}
.y400{bottom:483.076000pt;}
.y43b{bottom:483.096000pt;}
.y2a2{bottom:483.106667pt;}
.y196{bottom:483.768845pt;}
.y26f{bottom:484.864000pt;}
.y1ee{bottom:486.798725pt;}
.y472{bottom:487.081333pt;}
.yb5{bottom:487.280000pt;}
.y12a{bottom:489.761419pt;}
.y27{bottom:490.544000pt;}
.y2c7{bottom:490.866667pt;}
.y8c{bottom:491.265333pt;}
.y3e9{bottom:491.633333pt;}
.y2ed{bottom:491.934459pt;}
.y231{bottom:494.852000pt;}
.ya{bottom:494.990666pt;}
.y3ff{bottom:495.696000pt;}
.y3a5{bottom:497.568000pt;}
.y373{bottom:497.641333pt;}
.y208{bottom:498.049549pt;}
.y43a{bottom:498.438667pt;}
.y202{bottom:498.574667pt;}
.y152{bottom:499.755187pt;}
.y195{bottom:500.888349pt;}
.y354{bottom:501.541333pt;}
.y471{bottom:502.424000pt;}
.y1ed{bottom:503.918229pt;}
.yb4{bottom:504.017333pt;}
.ye5{bottom:506.416000pt;}
.y26{bottom:506.445333pt;}
.y129{bottom:506.880923pt;}
.y2c6{bottom:507.604000pt;}
.y8b{bottom:508.002667pt;}
.y151{bottom:508.315067pt;}
.y2ec{bottom:509.053963pt;}
.y3a4{bottom:510.188000pt;}
.y2a1{bottom:511.558667pt;}
.y3e8{bottom:512.646667pt;}
.y372{bottom:513.262667pt;}
.y439{bottom:513.781333pt;}
.y3fe{bottom:514.717333pt;}
.y207{bottom:515.169053pt;}
.y201{bottom:515.670667pt;}
.y26e{bottom:516.032000pt;}
.y470{bottom:517.766667pt;}
.y194{bottom:518.007853pt;}
.yb3{bottom:520.754667pt;}
.y1ec{bottom:521.037733pt;}
.y25{bottom:522.345333pt;}
.y308{bottom:522.712520pt;}
.y3a3{bottom:522.806667pt;}
.ye4{bottom:523.153333pt;}
.y128{bottom:523.921603pt;}
.y2c5{bottom:524.341333pt;}
.y8a{bottom:524.740000pt;}
.y2eb{bottom:526.093307pt;}
.y3e7{bottom:527.258667pt;}
.y3fd{bottom:527.337333pt;}
.y26d{bottom:528.652000pt;}
.y29f{bottom:528.654667pt;}
.y371{bottom:528.884000pt;}
.y438{bottom:529.124000pt;}
.y307{bottom:531.272400pt;}
.y353{bottom:531.429333pt;}
.y3d0{bottom:531.813333pt;}
.y206{bottom:532.209733pt;}
.y200{bottom:532.766667pt;}
.y2a0{bottom:532.993333pt;}
.y54{bottom:532.998667pt;}
.y46f{bottom:533.108000pt;}
.y193{bottom:535.047197pt;}
.y3a2{bottom:535.426667pt;}
.yb2{bottom:537.492000pt;}
.y24{bottom:538.245333pt;}
.ye2{bottom:539.890667pt;}
.y3fc{bottom:539.956000pt;}
.y127{bottom:541.041107pt;}
.y2c4{bottom:541.078667pt;}
.y26c{bottom:541.272000pt;}
.y89{bottom:541.477333pt;}
.y3e6{bottom:541.870667pt;}
.y2ea{bottom:543.212811pt;}
.y3cf{bottom:544.432000pt;}
.y437{bottom:544.466667pt;}
.y370{bottom:544.505333pt;}
.ye3{bottom:544.712000pt;}
.y352{bottom:548.166667pt;}
.y46e{bottom:548.450667pt;}
.y192{bottom:552.166701pt;}
.y3fb{bottom:552.576000pt;}
.y1e5{bottom:552.702667pt;}
.y1eb{bottom:553.678133pt;}
.y23{bottom:554.146667pt;}
.yb1{bottom:554.229333pt;}
.y3a1{bottom:554.448000pt;}
.y3e5{bottom:556.482667pt;}
.ye0{bottom:556.628000pt;}
.y3ce{bottom:557.052000pt;}
.y2c3{bottom:557.816000pt;}
.y126{bottom:558.160611pt;}
.y88{bottom:558.214667pt;}
.y436{bottom:559.808000pt;}
.y36f{bottom:560.128000pt;}
.y2e9{bottom:560.332315pt;}
.y26b{bottom:560.677333pt;}
.y39c{bottom:560.757333pt;}
.ye1{bottom:561.449333pt;}
.y46d{bottom:563.793333pt;}
.y351{bottom:564.904000pt;}
.y53{bottom:566.233333pt;}
.y29e{bottom:566.438667pt;}
.y39f{bottom:567.066667pt;}
.y1ea{bottom:569.197733pt;}
.y191{bottom:569.206045pt;}
.y3cd{bottom:569.670667pt;}
.yb0{bottom:570.966667pt;}
.y3fa{bottom:571.597333pt;}
.ydf{bottom:573.365333pt;}
.y39a{bottom:573.377333pt;}
.y9{bottom:573.786667pt;}
.y2c2{bottom:574.553333pt;}
.y87{bottom:574.952000pt;}
.y435{bottom:575.150667pt;}
.y125{bottom:575.201291pt;}
.y26a{bottom:575.289333pt;}
.y2e8{bottom:577.372995pt;}
.y3e4{bottom:577.496000pt;}
.y3f5{bottom:577.906667pt;}
.y46c{bottom:579.136000pt;}
.y39d{bottom:579.686667pt;}
.y205{bottom:580.849853pt;}
.y29d{bottom:581.050667pt;}
.y350{bottom:581.641333pt;}
.y52{bottom:583.528000pt;}
.y3f8{bottom:584.216000pt;}
.y1e9{bottom:584.557733pt;}
.y399{bottom:585.996000pt;}
.y190{bottom:586.325549pt;}
.y3cc{bottom:588.692000pt;}
.y204{bottom:589.409733pt;}
.yde{bottom:590.102667pt;}
.y434{bottom:590.493333pt;}
.y3f3{bottom:590.525333pt;}
.y2c1{bottom:591.290667pt;}
.y86{bottom:591.689333pt;}
.y3e3{bottom:592.108000pt;}
.y39e{bottom:592.305333pt;}
.y124{bottom:592.320795pt;}
.y8{bottom:592.685334pt;}
.y46b{bottom:594.478667pt;}
.y2e7{bottom:594.492499pt;}
.y3c6{bottom:595.002667pt;}
.y29c{bottom:595.662667pt;}
.y269{bottom:596.304000pt;}
.y3f6{bottom:596.836000pt;}
.y39b{bottom:598.616000pt;}
.y51{bottom:600.824000pt;}
.y3ca{bottom:601.312000pt;}
.y3f2{bottom:603.145333pt;}
.y18f{bottom:603.445053pt;}
.y1e8{bottom:604.477733pt;}
.y3a0{bottom:604.925333pt;}
.y433{bottom:605.836000pt;}
.y3e2{bottom:606.720000pt;}
.ydd{bottom:606.840000pt;}
.y3c4{bottom:607.621333pt;}
.y2c0{bottom:608.028000pt;}
.y85{bottom:608.426667pt;}
.y3f7{bottom:609.454667pt;}
.y24c{bottom:609.510784pt;}
.y46a{bottom:609.821333pt;}
.y305{bottom:609.885333pt;}
.y29b{bottom:610.274667pt;}
.y268{bottom:610.916000pt;}
.y2e6{bottom:611.531843pt;}
.y123{bottom:613.360123pt;}
.y3c9{bottom:613.930667pt;}
.y3c7{bottom:613.932000pt;}
.y34f{bottom:615.598667pt;}
.y3f4{bottom:615.764000pt;}
.y16b{bottom:616.520400pt;}
.y50{bottom:618.118667pt;}
.y3c3{bottom:620.241333pt;}
.y18e{bottom:620.485733pt;}
.y432{bottom:621.178667pt;}
.y3e1{bottom:621.332000pt;}
.y3f9{bottom:622.074667pt;}
.y2bf{bottom:624.765333pt;}
.y29a{bottom:624.885333pt;}
.y84{bottom:625.164000pt;}
.y24b{bottom:625.350400pt;}
.y3c8{bottom:626.550667pt;}
.y304{bottom:626.622667pt;}
.y34e{bottom:628.218667pt;}
.y2e5{bottom:628.651347pt;}
.ydc{bottom:629.288000pt;}
.y1b4{bottom:630.630667pt;}
.y398{bottom:631.636000pt;}
.y267{bottom:631.929333pt;}
.y3c5{bottom:632.860000pt;}
.y4f{bottom:635.414667pt;}
.y16a{bottom:636.520400pt;}
.y431{bottom:636.521333pt;}
.y110{bottom:637.517333pt;}
.y3cb{bottom:639.170667pt;}
.y299{bottom:639.497333pt;}
.y469{bottom:640.506667pt;}
.y34d{bottom:640.837333pt;}
.y2be{bottom:641.502667pt;}
.y83{bottom:641.901333pt;}
.y3e0{bottom:642.346667pt;}
.y303{bottom:643.360000pt;}
.y7{bottom:645.598667pt;}
.y2e4{bottom:645.770851pt;}
.y122{bottom:646.479563pt;}
.y266{bottom:646.541333pt;}
.y1b3{bottom:647.726667pt;}
.y3f1{bottom:648.785333pt;}
.ydb{bottom:651.736000pt;}
.y430{bottom:651.864000pt;}
.y4e{bottom:652.709333pt;}
.y298{bottom:654.109333pt;}
.y10f{bottom:654.254667pt;}
.y468{bottom:655.848000pt;}
.y3df{bottom:656.958667pt;}
.y2bd{bottom:658.240000pt;}
.y82{bottom:658.638667pt;}
.y302{bottom:660.097333pt;}
.y34c{bottom:660.244000pt;}
.y2e3{bottom:662.810195pt;}
.y121{bottom:663.599067pt;}
.y11f{bottom:663.600219pt;}
.y397{bottom:664.565333pt;}
.y1b2{bottom:664.822667pt;}
.y3c2{bottom:665.881333pt;}
.y120{bottom:666.959067pt;}
.y42f{bottom:667.206667pt;}
.y263{bottom:667.556000pt;}
.y297{bottom:668.721333pt;}
.y4{bottom:668.977329pt;}
.y18d{bottom:669.125853pt;}
.y4d{bottom:670.004000pt;}
.y10e{bottom:670.992000pt;}
.y467{bottom:671.190667pt;}
.y3de{bottom:671.569333pt;}
.yda{bottom:674.184000pt;}
.y34b{bottom:674.856000pt;}
.y265{bottom:674.861333pt;}
.y2bc{bottom:674.977333pt;}
.y81{bottom:675.376000pt;}
.y301{bottom:676.834667pt;}
.y18c{bottom:677.685733pt;}
.y166{bottom:678.832000pt;}
.y2e2{bottom:679.929699pt;}
.y11e{bottom:680.639563pt;}
.y261{bottom:682.168000pt;}
.y42e{bottom:682.548000pt;}
.y296{bottom:683.333333pt;}
.y18b{bottom:684.760000pt;}
.y3dd{bottom:686.181333pt;}
.y466{bottom:686.533333pt;}
.y4c{bottom:687.300000pt;}
.y10d{bottom:687.729333pt;}
.y264{bottom:689.473333pt;}
.yd9{bottom:690.921333pt;}
.y2bb{bottom:691.714667pt;}
.y80{bottom:692.113333pt;}
.y300{bottom:693.570667pt;}
.y165{bottom:695.569333pt;}
.y34a{bottom:695.870667pt;}
.y262{bottom:696.778667pt;}
.y2e1{bottom:697.049203pt;}
.y11d{bottom:697.759067pt;}
.y11b{bottom:697.761747pt;}
.y42d{bottom:697.890667pt;}
.y295{bottom:697.945333pt;}
.y11c{bottom:701.119067pt;}
.y465{bottom:701.876000pt;}
.y10c{bottom:704.466667pt;}
.y4b{bottom:704.594667pt;}
.y3dc{bottom:707.196000pt;}
.y7f{bottom:708.850667pt;}
.y349{bottom:710.482667pt;}
.yd8{bottom:711.642667pt;}
.y164{bottom:712.306667pt;}
.y2ba{bottom:712.436000pt;}
.y331{bottom:712.477242pt;}
.y294{bottom:712.557333pt;}
.y42c{bottom:713.233333pt;}
.y2e0{bottom:714.088547pt;}
.y464{bottom:717.218667pt;}
.y396{bottom:717.990667pt;}
.y11a{bottom:718.801075pt;}
.y330{bottom:719.753140pt;}
.y10b{bottom:721.204000pt;}
.y3db{bottom:721.808000pt;}
.y4a{bottom:721.889333pt;}
.y2ff{bottom:722.653333pt;}
.y7e{bottom:725.588000pt;}
.y260{bottom:727.542667pt;}
.y42b{bottom:728.576000pt;}
.y163{bottom:729.044000pt;}
.y2df{bottom:731.208051pt;}
.y348{bottom:731.496000pt;}
.y463{bottom:732.561333pt;}
.y293{bottom:733.570667pt;}
.y3da{bottom:736.420000pt;}
.y10a{bottom:737.941333pt;}
.y2fe{bottom:739.749333pt;}
.y119{bottom:739.920563pt;}
.yd7{bottom:741.530667pt;}
.y7d{bottom:742.324000pt;}
.y42a{bottom:743.918667pt;}
.y347{bottom:746.108000pt;}
.y462{bottom:747.904000pt;}
.y2de{bottom:748.247395pt;}
.y162{bottom:749.766667pt;}
.y3d9{bottom:751.032000pt;}
.y109{bottom:754.678667pt;}
.y49{bottom:756.188000pt;}
.y118{bottom:757.040067pt;}
.y7c{bottom:759.061333pt;}
.y429{bottom:759.261333pt;}
.y2d8{bottom:759.686667pt;}
.y25f{bottom:760.524000pt;}
.y292{bottom:761.677333pt;}
.y461{bottom:763.246667pt;}
.yd6{bottom:763.978667pt;}
.y2dd{bottom:765.366899pt;}
.y344{bottom:767.121333pt;}
.y48{bottom:770.534667pt;}
.y108{bottom:771.416000pt;}
.y3d8{bottom:772.045333pt;}
.y346{bottom:774.428000pt;}
.y428{bottom:774.604000pt;}
.y395{bottom:774.684000pt;}
.y7b{bottom:775.798667pt;}
.y161{bottom:776.813333pt;}
.y25e{bottom:777.261333pt;}
.y117{bottom:778.079395pt;}
.y460{bottom:778.589333pt;}
.yd5{bottom:780.716000pt;}
.y3{bottom:781.661334pt;}
.y342{bottom:781.733333pt;}
.y2dc{bottom:782.486403pt;}
.y3d7{bottom:786.657333pt;}
.y47{bottom:788.738667pt;}
.y345{bottom:789.040000pt;}
.y427{bottom:789.946667pt;}
.y394{bottom:790.305333pt;}
.y107{bottom:792.138667pt;}
.y7a{bottom:792.536000pt;}
.y45f{bottom:793.930667pt;}
.y25d{bottom:793.998667pt;}
.y116{bottom:795.198899pt;}
.y343{bottom:796.345333pt;}
.y150{bottom:796.750667pt;}
.yd4{bottom:797.453333pt;}
.y46{bottom:799.226667pt;}
.y291{bottom:799.461333pt;}
.y3d6{bottom:801.269333pt;}
.y2db{bottom:803.527067pt;}
.y426{bottom:805.289333pt;}
.y393{bottom:805.926667pt;}
.y1e4{bottom:808.874667pt;}
.y79{bottom:809.273333pt;}
.y25c{bottom:810.736000pt;}
.y115{bottom:812.318403pt;}
.y290{bottom:814.073333pt;}
.yd3{bottom:814.190667pt;}
.y3d5{bottom:815.881333pt;}
.y45{bottom:817.430667pt;}
.y425{bottom:820.630667pt;}
.y392{bottom:821.548000pt;}
.y106{bottom:822.025333pt;}
.y45e{bottom:824.616000pt;}
.y1e3{bottom:825.612000pt;}
.y78{bottom:826.010667pt;}
.y341{bottom:827.108000pt;}
.y25b{bottom:827.473333pt;}
.y44{bottom:827.920000pt;}
.y28f{bottom:828.685333pt;}
.y2b9{bottom:830.833333pt;}
.yd2{bottom:830.928000pt;}
.y114{bottom:833.359067pt;}
.y424{bottom:835.973333pt;}
.y3d4{bottom:836.894667pt;}
.y391{bottom:837.169333pt;}
.y105{bottom:838.762667pt;}
.y45d{bottom:839.958667pt;}
.y2{bottom:840.112001pt;}
.y1e2{bottom:842.349333pt;}
.y77{bottom:842.748000pt;}
.y28e{bottom:843.297333pt;}
.y340{bottom:844.204000pt;}
.y25a{bottom:844.210667pt;}
.y43{bottom:846.122667pt;}
.yd1{bottom:847.665333pt;}
.y423{bottom:851.316000pt;}
.y3d3{bottom:851.506667pt;}
.y2da{bottom:852.167187pt;}
.y390{bottom:852.790667pt;}
.y45c{bottom:855.301333pt;}
.y104{bottom:855.500000pt;}
.y28d{bottom:857.909333pt;}
.y1{bottom:859.312000pt;}
.y76{bottom:859.485333pt;}
.y2d9{bottom:860.727067pt;}
.y1e1{bottom:863.072000pt;}
.y1e7{bottom:863.837853pt;}
.yac{bottom:864.308000pt;}
.yd0{bottom:864.402667pt;}
.y259{bottom:864.932000pt;}
.y3d2{bottom:866.118667pt;}
.y422{bottom:866.658667pt;}
.y38f{bottom:868.412000pt;}
.y45b{bottom:870.644000pt;}
.y103{bottom:872.237333pt;}
.y1e6{bottom:872.397733pt;}
.y28c{bottom:872.521333pt;}
.y75{bottom:876.222667pt;}
.y3d1{bottom:880.730667pt;}
.ycf{bottom:881.140000pt;}
.y113{bottom:881.999187pt;}
.y421{bottom:882.001333pt;}
.y38e{bottom:884.033333pt;}
.y169{bottom:885.800520pt;}
.y42{bottom:885.836000pt;}
.y45a{bottom:885.986667pt;}
.y28b{bottom:887.132000pt;}
.y102{bottom:888.974667pt;}
.y112{bottom:890.559067pt;}
.y74{bottom:892.960000pt;}
.y168{bottom:894.360400pt;}
.y420{bottom:897.344000pt;}
.y38d{bottom:899.656000pt;}
.y459{bottom:901.329333pt;}
.y28a{bottom:901.744000pt;}
.yce{bottom:901.862667pt;}
.y258{bottom:905.062667pt;}
.y101{bottom:905.712000pt;}
.y73{bottom:909.697333pt;}
.y41f{bottom:912.686667pt;}
.y38c{bottom:915.277333pt;}
.y289{bottom:916.356000pt;}
.y458{bottom:916.670667pt;}
.y41{bottom:921.320000pt;}
.y257{bottom:922.158667pt;}
.y100{bottom:922.449333pt;}
.y72{bottom:926.434667pt;}
.y41e{bottom:928.029333pt;}
.y38b{bottom:930.898667pt;}
.y288{bottom:930.968000pt;}
.ycd{bottom:931.750667pt;}
.y457{bottom:932.013333pt;}
.yff{bottom:939.186667pt;}
.y256{bottom:939.254667pt;}
.y71{bottom:943.172000pt;}
.y41d{bottom:943.370667pt;}
.y287{bottom:945.580000pt;}
.y40{bottom:946.425333pt;}
.y38a{bottom:946.520000pt;}
.y456{bottom:947.356000pt;}
.y24a{bottom:950.790520pt;}
.ycc{bottom:954.198667pt;}
.yfe{bottom:955.924000pt;}
.y255{bottom:956.350667pt;}
.y41c{bottom:958.713333pt;}
.y249{bottom:959.350400pt;}
.y70{bottom:959.909333pt;}
.y389{bottom:962.141333pt;}
.y455{bottom:962.698667pt;}
.y286{bottom:966.594667pt;}
.y3f{bottom:971.530667pt;}
.yfd{bottom:972.661333pt;}
.y254{bottom:973.446667pt;}
.y41b{bottom:974.056000pt;}
.y6f{bottom:976.646667pt;}
.y388{bottom:977.762667pt;}
.y454{bottom:978.041333pt;}
.y2b8{bottom:981.468000pt;}
.y6e{bottom:993.384000pt;}
.y285{bottom:994.700000pt;}
.y3d{bottom:1010.186667pt;}
.y6d{bottom:1046.810667pt;}
.h12{height:23.209028pt;}
.h22{height:23.390625pt;}
.h38{height:26.443102pt;}
.h37{height:26.637406pt;}
.h1b{height:26.761523pt;}
.hb{height:27.076941pt;}
.hc{height:27.262909pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h1a{height:29.397999pt;}
.h3a{height:30.042188pt;}
.h3e{height:30.732706pt;}
.h13{height:30.945242pt;}
.h1f{height:31.109531pt;}
.h18{height:31.157778pt;}
.h1e{height:31.338125pt;}
.h3b{height:33.202992pt;}
.h39{height:33.446969pt;}
.h30{height:34.574438pt;}
.h14{height:34.813542pt;}
.h15{height:35.052646pt;}
.h27{height:35.085938pt;}
.h2a{height:35.212691pt;}
.h26{height:35.343750pt;}
.h24{height:37.242188pt;}
.h16{height:38.415786pt;}
.h17{height:38.681455pt;}
.h20{height:38.775312pt;}
.hf{height:38.947124pt;}
.h21{height:39.062344pt;}
.h23{height:39.349375pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h33{height:44.245639pt;}
.hd{height:45.271688pt;}
.h11{height:48.481423pt;}
.h19{height:48.683332pt;}
.h1c{height:48.688666pt;}
.h2{height:49.024000pt;}
.h3f{height:55.970039pt;}
.h40{height:55.975372pt;}
.h32{height:64.034876pt;}
.h31{height:64.040209pt;}
.h10{height:69.148877pt;}
.h5{height:69.450667pt;}
.he{height:77.447343pt;}
.h4{height:105.826671pt;}
.h1d{height:209.072000pt;}
.h28{height:209.917333pt;}
.h25{height:211.606667pt;}
.h35{height:213.817333pt;}
.h2b{height:216.676000pt;}
.h2e{height:217.520000pt;}
.h29{height:217.942667pt;}
.h2d{height:218.788000pt;}
.h2c{height:219.209333pt;}
.h34{height:246.981333pt;}
.h36{height:682.476333pt;}
.h3c{height:793.701333pt;}
.h3d{height:794.000000pt;}
.h2f{height:917.240667pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.330780pt;}
.we{width:386.181333pt;}
.w5{width:390.690667pt;}
.w7{width:400.405333pt;}
.w6{width:409.276000pt;}
.wc{width:512.333333pt;}
.w9{width:513.600000pt;}
.w8{width:514.445333pt;}
.wa{width:516.557333pt;}
.wf{width:516.653333pt;}
.w10{width:517.049107pt;}
.wb{width:517.402667pt;}
.w2{width:566.928019pt;}
.wd{width:623.129600pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.w11{width:1122.520000pt;}
.w12{width:1122.666667pt;}
.x26{left:-178.389333pt;}
.x2c{left:-177.122667pt;}
.x16{left:-175.010667pt;}
.x20{left:-172.898667pt;}
.x41{left:-39.273067pt;}
.x28{left:-4.549333pt;}
.x2d{left:-3.282667pt;}
.x17{left:-1.170667pt;}
.x0{left:0.000000pt;}
.x22{left:0.941333pt;}
.x2a{left:23.770573pt;}
.x2f{left:25.037239pt;}
.x18{left:27.149239pt;}
.x24{left:29.261239pt;}
.x5{left:47.621333pt;}
.x6{left:51.605861pt;}
.x59{left:58.698667pt;}
.x58{left:60.921333pt;}
.x8f{left:64.025333pt;}
.x5b{left:65.925333pt;}
.x5a{left:67.329333pt;}
.x93{left:76.309333pt;}
.x40{left:85.097067pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x78{left:108.447307pt;}
.x45{left:111.569333pt;}
.x1b{left:130.189333pt;}
.x79{left:132.519307pt;}
.x1c{left:134.189333pt;}
.x43{left:143.446981pt;}
.x46{left:161.012000pt;}
.x4{left:180.874667pt;}
.x9{left:220.912000pt;}
.x7{left:221.858667pt;}
.x1d{left:225.469333pt;}
.x1e{left:229.389333pt;}
.x6d{left:230.909333pt;}
.x3f{left:236.264000pt;}
.x8{left:239.924000pt;}
.x6e{left:241.094667pt;}
.x90{left:243.672000pt;}
.x33{left:249.077333pt;}
.xa{left:250.204000pt;}
.xd{left:257.696000pt;}
.x34{left:263.326667pt;}
.x92{left:266.350667pt;}
.x49{left:268.477333pt;}
.x91{left:270.380000pt;}
.x60{left:271.525333pt;}
.x48{left:273.462667pt;}
.x47{left:274.449333pt;}
.x69{left:275.548000pt;}
.x68{left:276.802667pt;}
.x70{left:283.074667pt;}
.x3c{left:284.618667pt;}
.x19{left:286.269333pt;}
.x1a{left:290.269333pt;}
.x71{left:291.996000pt;}
.x64{left:294.036000pt;}
.x62{left:295.177333pt;}
.x3d{left:298.857333pt;}
.x63{left:299.996000pt;}
.x42{left:302.406933pt;}
.x15{left:316.386667pt;}
.x5f{left:318.789333pt;}
.x61{left:324.126667pt;}
.x5d{left:325.220000pt;}
.x4a{left:330.653333pt;}
.x5e{left:333.404000pt;}
.x66{left:342.217333pt;}
.x10{left:346.394667pt;}
.xe{left:351.966667pt;}
.x73{left:355.905333pt;}
.x74{left:359.905333pt;}
.xf{left:361.298667pt;}
.x7f{left:373.664000pt;}
.x80{left:376.024000pt;}
.x7e{left:378.972000pt;}
.x4b{left:382.409333pt;}
.x72{left:386.419806pt;}
.x1f{left:390.828557pt;}
.x6f{left:392.253333pt;}
.x29{left:400.410667pt;}
.x2e{left:401.677333pt;}
.x27{left:403.450667pt;}
.x3{left:404.408000pt;}
.x23{left:405.901333pt;}
.x13{left:407.494667pt;}
.x21{left:408.941333pt;}
.x14{left:417.048000pt;}
.x4e{left:435.118667pt;}
.x81{left:436.384000pt;}
.x4c{left:442.357333pt;}
.x4d{left:443.690667pt;}
.x67{left:450.081333pt;}
.x44{left:467.925309pt;}
.x4f{left:491.597333pt;}
.x50{left:497.360000pt;}
.x76{left:506.383193pt;}
.x35{left:513.218904pt;}
.x77{left:514.340571pt;}
.x2b{left:515.448000pt;}
.x30{left:516.714667pt;}
.x36{left:519.036693pt;}
.x25{left:520.938667pt;}
.x11{left:523.593333pt;}
.x3e{left:527.178667pt;}
.x12{left:533.872000pt;}
.x39{left:538.250667pt;}
.x52{left:547.232000pt;}
.x51{left:548.558667pt;}
.x75{left:578.405333pt;}
.x82{left:584.709333pt;}
.x31{left:587.105333pt;}
.x5c{left:591.924000pt;}
.x65{left:595.313333pt;}
.x53{left:597.878667pt;}
.x32{left:601.348000pt;}
.x3a{left:602.724000pt;}
.x7a{left:605.016000pt;}
.x3b{left:617.693333pt;}
.x54{left:648.670667pt;}
.xb{left:650.004000pt;}
.x55{left:650.917333pt;}
.xc{left:660.194667pt;}
.x37{left:678.756000pt;}
.x6c{left:683.830667pt;}
.x84{left:690.478667pt;}
.x83{left:691.956000pt;}
.x38{left:693.269333pt;}
.x7c{left:698.794667pt;}
.x56{left:700.586667pt;}
.x57{left:705.361333pt;}
.x7d{left:707.836000pt;}
.x6a{left:727.042667pt;}
.x6b{left:736.070667pt;}
.x7b{left:739.989333pt;}
.x86{left:781.248000pt;}
.x85{left:782.428000pt;}
.x87{left:842.204000pt;}
.x88{left:848.793333pt;}
.x8a{left:919.346667pt;}
.x8c{left:921.065333pt;}
.x8b{left:928.514667pt;}
.x8d{left:933.605333pt;}
.x89{left:938.036000pt;}
.x8e{left:1003.525333pt;}
}




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