
    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_94f132d6258f277f5d589d49.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cd12523ce31d36ea146f1aec.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_5a934e62cee2f9294794e5c8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ee5aba0a909ef79fdfb1374b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4e4ac6420f6fd9edda2dd2f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-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_46956c4a693339881041bc86.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b668c71a61884b8a1ab9bf1d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971191;font-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_8b70dfa20bc9a5138b2e392a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e1069f11b4a4e3e9e6135094.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.156000;font-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_0661127466f85f80331b1c63.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5d3695a45a7e5b809ad52e86.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ff500bb5c956f07200a0132c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a0912590d3a4e9ecee79ad1f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.704000;font-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_bc4172f9281336e6a5220528.woff2')format("woff");}.fff{font-family:fff;line-height:0.694000;font-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_3570a96779b82aa503b5a550.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.923000;font-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_2ccf3f3b1fce5a79904cc276.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.901000;font-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_4ca8189781222853897b1e73.woff2')format("woff");}.ff12{font-family:ff12;line-height:3.681000;font-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_56b1c110bfa9c5b9f8924a54.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_ecf6e5847d072039d0736857.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_c6521cca2bfde6a69aa06d9b.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_6370cc7baf052dc21819fcdc.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.156000;font-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_152048bc10dc9cf988721964.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_63747b8429e6e3bc5881d9a5.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_0629f5b14783c8c6e0a0cc86.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.897450;font-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_bc4172f9281336e6a5220528.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.694000;font-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_b588b578fd2b2a0c113f2764.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_7567e9eeca81b768b5181938.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.156000;font-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_89df54748c8047561cf66755.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.520000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff1e{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_207275c99904ccb9f56dc191.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-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_187035766111eb589ed1d8b2.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.432129;font-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_ee0c735b787d1ab0eb64a9f2.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.432129;font-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_5198b94ee2411c1384ffd09b.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_62a00ea0492d0f52909da94b.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.910000;font-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_0869b65d32dfc357a41826a3.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_38af6deac69358d08afb1b10.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.432129;font-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_c2cca8867cd3c8df7050d7f1.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.432129;font-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_a7c9a5b7baa6354d2edc0447.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_947db1cf02d802831f24869d.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.731445;font-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_e55ddfd43bc550c538d6b896.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_511786a9a7d926c5fce65341.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.859375;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vf{vertical-align:-62.766000px;}
.v1b{vertical-align:-58.584000px;}
.v11{vertical-align:-49.134000px;}
.v1a{vertical-align:-47.826000px;}
.v1c{vertical-align:-44.970000px;}
.v10{vertical-align:-41.844000px;}
.v2{vertical-align:-23.754000px;}
.v3{vertical-align:-21.696000px;}
.v17{vertical-align:-18.930000px;}
.v15{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.790000px;}
.v8{vertical-align:6.972000px;}
.vc{vertical-align:8.532000px;}
.v14{vertical-align:10.878000px;}
.v26{vertical-align:14.268000px;}
.va{vertical-align:16.470000px;}
.v5{vertical-align:17.736000px;}
.v12{vertical-align:21.324000px;}
.v28{vertical-align:23.754000px;}
.v4{vertical-align:26.028000px;}
.v18{vertical-align:28.890000px;}
.v1{vertical-align:31.236000px;}
.v24{vertical-align:33.582000px;}
.v1f{vertical-align:34.962000px;}
.vd{vertical-align:36.660000px;}
.v19{vertical-align:37.770000px;}
.v21{vertical-align:39.150000px;}
.vb{vertical-align:42.498000px;}
.ve{vertical-align:44.712000px;}
.v16{vertical-align:47.820000px;}
.v20{vertical-align:49.908000px;}
.v25{vertical-align:51.384000px;}
.v22{vertical-align:52.764000px;}
.v9{vertical-align:54.396000px;}
.v13{vertical-align:61.782000px;}
.v27{vertical-align:64.140000px;}
.v6{vertical-align:65.556000px;}
.v23{vertical-align:96.348000px;}
.v1e{vertical-align:97.728000px;}
.v1d{vertical-align:106.584000px;}
.lsd2{letter-spacing:-0.936000px;}
.lscf{letter-spacing:-0.648000px;}
.lsd0{letter-spacing:-0.576000px;}
.lsd1{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.239040px;}
.ls11{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.132480px;}
.lsd{letter-spacing:-0.119520px;}
.lsa{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.000340px;}
.lsb8{letter-spacing:0.000860px;}
.ls6f{letter-spacing:0.000932px;}
.ls75{letter-spacing:0.001163px;}
.ls4d{letter-spacing:0.001267px;}
.lsc0{letter-spacing:0.001301px;}
.ls81{letter-spacing:0.001373px;}
.ls7d{letter-spacing:0.001608px;}
.ls3a{letter-spacing:0.001799px;}
.ls3e{letter-spacing:0.002274px;}
.ls67{letter-spacing:0.002623px;}
.lsa0{letter-spacing:0.002730px;}
.ls99{letter-spacing:0.002732px;}
.ls6b{letter-spacing:0.002794px;}
.ls21{letter-spacing:0.002828px;}
.ls5d{letter-spacing:0.003007px;}
.ls52{letter-spacing:0.003488px;}
.ls89{letter-spacing:0.003511px;}
.ls8d{letter-spacing:0.003970px;}
.ls2d{letter-spacing:0.004020px;}
.ls30{letter-spacing:0.004503px;}
.ls61{letter-spacing:0.004594px;}
.ls3c{letter-spacing:0.004771px;}
.lsa2{letter-spacing:0.004913px;}
.ls64{letter-spacing:0.005136px;}
.ls83{letter-spacing:0.005687px;}
.lsb2{letter-spacing:0.007267px;}
.lsb7{letter-spacing:0.007377px;}
.lsc9{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.143424px;}
.lsce{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.168480px;}
.ls2{letter-spacing:0.179280px;}
.ls8{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.288000px;}
.lsc8{letter-spacing:0.295200px;}
.lsc{letter-spacing:0.298800px;}
.lsc1{letter-spacing:0.331200px;}
.ls9{letter-spacing:0.358560px;}
.ls7{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.383040px;}
.ls74{letter-spacing:0.409163px;}
.ls69{letter-spacing:0.415163px;}
.ls1{letter-spacing:0.418320px;}
.lsc3{letter-spacing:1.008000px;}
.lsc6{letter-spacing:1.728000px;}
.ls57{letter-spacing:2.401392px;}
.ls14{letter-spacing:2.984883px;}
.ls12{letter-spacing:2.986080px;}
.ls8e{letter-spacing:2.987213px;}
.ls71{letter-spacing:2.987994px;}
.ls15{letter-spacing:2.988539px;}
.ls8c{letter-spacing:2.988932px;}
.lsb9{letter-spacing:2.989267px;}
.ls80{letter-spacing:2.990883px;}
.ls13{letter-spacing:2.992080px;}
.ls70{letter-spacing:2.993994px;}
.lsbb{letter-spacing:2.995267px;}
.lscd{letter-spacing:3.888000px;}
.lsb1{letter-spacing:4.173580px;}
.ls79{letter-spacing:4.205357px;}
.ls73{letter-spacing:4.211357px;}
.ls60{letter-spacing:4.259611px;}
.ls63{letter-spacing:4.265611px;}
.lsca{letter-spacing:5.328000px;}
.lsb5{letter-spacing:5.536623px;}
.lsb6{letter-spacing:5.641373px;}
.ls3b{letter-spacing:5.810253px;}
.ls77{letter-spacing:5.975994px;}
.lscc{letter-spacing:6.048000px;}
.lsd5{letter-spacing:6.768000px;}
.ls33{letter-spacing:7.061388px;}
.ls35{letter-spacing:7.234503px;}
.lsc7{letter-spacing:7.488000px;}
.ls3f{letter-spacing:7.612503px;}
.lsd4{letter-spacing:8.928000px;}
.lscb{letter-spacing:9.648000px;}
.ls2f{letter-spacing:9.747706px;}
.ls29{letter-spacing:9.753706px;}
.ls39{letter-spacing:11.459610px;}
.lsba{letter-spacing:11.954828px;}
.ls2c{letter-spacing:14.947267px;}
.ls55{letter-spacing:15.243911px;}
.ls56{letter-spacing:15.247613px;}
.ls82{letter-spacing:15.935655px;}
.ls5c{letter-spacing:15.937613px;}
.ls7f{letter-spacing:15.941655px;}
.ls7e{letter-spacing:16.393921px;}
.ls98{letter-spacing:16.426493px;}
.ls95{letter-spacing:16.708493px;}
.ls17{letter-spacing:17.179163px;}
.lsc4{letter-spacing:17.568000px;}
.ls6c{letter-spacing:17.933994px;}
.ls84{letter-spacing:18.924932px;}
.ls5b{letter-spacing:18.929213px;}
.ls48{letter-spacing:18.994594px;}
.ls49{letter-spacing:18.995839px;}
.ls85{letter-spacing:19.387163px;}
.ls16{letter-spacing:19.627163px;}
.ls1c{letter-spacing:19.921163px;}
.ls2b{letter-spacing:19.925655px;}
.ls59{letter-spacing:19.927613px;}
.ls1e{letter-spacing:20.323163px;}
.ls18{letter-spacing:20.395163px;}
.ls1b{letter-spacing:20.863163px;}
.lsc5{letter-spacing:21.168000px;}
.ls4f{letter-spacing:21.639911px;}
.ls4e{letter-spacing:21.641839px;}
.ls9d{letter-spacing:21.812732px;}
.ls9c{letter-spacing:21.818732px;}
.ls7a{letter-spacing:21.856493px;}
.lsd6{letter-spacing:21.888000px;}
.ls20{letter-spacing:22.063163px;}
.ls51{letter-spacing:22.279163px;}
.ls50{letter-spacing:22.285163px;}
.ls58{letter-spacing:22.327392px;}
.ls68{letter-spacing:22.508883px;}
.ls24{letter-spacing:22.828493px;}
.ls4c{letter-spacing:22.913213px;}
.ls54{letter-spacing:23.067911px;}
.ls26{letter-spacing:23.179163px;}
.ls45{letter-spacing:23.356594px;}
.ls47{letter-spacing:23.358548px;}
.ls46{letter-spacing:23.363839px;}
.ls87{letter-spacing:23.385911px;}
.ls1a{letter-spacing:23.407163px;}
.ls25{letter-spacing:23.410493px;}
.ls27{letter-spacing:23.455163px;}
.ls28{letter-spacing:23.461163px;}
.ls23{letter-spacing:23.662493px;}
.lsb4{letter-spacing:24.099580px;}
.ls5e{letter-spacing:24.185611px;}
.ls8a{letter-spacing:24.283377px;}
.ls90{letter-spacing:24.454493px;}
.lsd3{letter-spacing:24.775200px;}
.ls6d{letter-spacing:25.103994px;}
.ls1f{letter-spacing:25.447163px;}
.ls53{letter-spacing:26.063213px;}
.ls91{letter-spacing:26.332493px;}
.ls97{letter-spacing:26.848493px;}
.ls8b{letter-spacing:26.851564px;}
.ls78{letter-spacing:27.013163px;}
.ls76{letter-spacing:27.095655px;}
.ls19{letter-spacing:27.229163px;}
.ls1d{letter-spacing:27.355163px;}
.lsb0{letter-spacing:27.413707px;}
.ls4b{letter-spacing:27.571267px;}
.lsbf{letter-spacing:28.090493px;}
.ls96{letter-spacing:28.582493px;}
.ls92{letter-spacing:29.170493px;}
.ls86{letter-spacing:29.389163px;}
.ls4a{letter-spacing:32.731219px;}
.ls5a{letter-spacing:33.167568px;}
.ls8f{letter-spacing:33.406493px;}
.ls44{letter-spacing:33.498548px;}
.ls22{letter-spacing:34.090493px;}
.ls7b{letter-spacing:34.186493px;}
.ls7c{letter-spacing:35.203267px;}
.ls66{letter-spacing:35.861655px;}
.ls6e{letter-spacing:38.986432px;}
.lsc2{letter-spacing:42.076800px;}
.ls43{letter-spacing:43.251706px;}
.ls40{letter-spacing:49.148342px;}
.ls36{letter-spacing:52.133610px;}
.ls88{letter-spacing:59.561655px;}
.ls32{letter-spacing:67.127655px;}
.ls3d{letter-spacing:68.063655px;}
.ls42{letter-spacing:70.543267px;}
.ls72{letter-spacing:74.915655px;}
.ls41{letter-spacing:75.582932px;}
.ls37{letter-spacing:75.967267px;}
.ls2a{letter-spacing:81.006932px;}
.ls31{letter-spacing:81.012932px;}
.ls6a{letter-spacing:90.869655px;}
.ls94{letter-spacing:92.232724px;}
.ls93{letter-spacing:126.492529px;}
.lsb3{letter-spacing:152.425163px;}
.lsab{letter-spacing:159.050883px;}
.ls38{letter-spacing:162.149655px;}
.lsaa{letter-spacing:176.858883px;}
.lsad{letter-spacing:191.780883px;}
.lsac{letter-spacing:209.588883px;}
.ls9b{letter-spacing:218.330883px;}
.ls2e{letter-spacing:261.439267px;}
.ls65{letter-spacing:371.693655px;}
.lsa8{letter-spacing:417.416883px;}
.lsbc{letter-spacing:418.070828px;}
.ls9f{letter-spacing:455.222883px;}
.lsaf{letter-spacing:460.676883px;}
.lsa4{letter-spacing:467.930883px;}
.lsbe{letter-spacing:564.686883px;}
.lsa7{letter-spacing:641.054883px;}
.ls9e{letter-spacing:678.860883px;}
.lsae{letter-spacing:684.314883px;}
.lsa3{letter-spacing:691.562883px;}
.lsbd{letter-spacing:788.324883px;}
.lsa6{letter-spacing:1211.329640px;}
.ls62{letter-spacing:1244.759655px;}
.ls5f{letter-spacing:1315.967655px;}
.lsa1{letter-spacing:1330.525640px;}
.lsa5{letter-spacing:1345.075640px;}
.ls9a{letter-spacing:1381.483640px;}
.lsa9{letter-spacing:1434.217640px;}
.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;}
}
.ws1{word-spacing:-23.940000px;}
.ws1fd{word-spacing:-18.282240px;}
.wsf{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.ws11{word-spacing:-17.712000px;}
.ws2{word-spacing:-16.632000px;}
.ws1fe{word-spacing:-16.416000px;}
.ws1ff{word-spacing:-16.344000px;}
.ws203{word-spacing:-16.272000px;}
.ws200{word-spacing:-16.056000px;}
.ws201{word-spacing:-15.984000px;}
.ws202{word-spacing:-15.696000px;}
.ws5{word-spacing:-13.864320px;}
.ws13e{word-spacing:-13.696415px;}
.ws3{word-spacing:-13.446000px;}
.ws4{word-spacing:-13.266720px;}
.ws130{word-spacing:-11.983996px;}
.ws13c{word-spacing:-11.206158px;}
.ws1ac{word-spacing:-10.894542px;}
.ws142{word-spacing:-9.986816px;}
.ws140{word-spacing:-8.171032px;}
.ws21e{word-spacing:-4.104000px;}
.ws229{word-spacing:-3.384000px;}
.ws21d{word-spacing:-3.024000px;}
.ws20a{word-spacing:-1.512000px;}
.ws22f{word-spacing:-1.224000px;}
.ws209{word-spacing:-0.864000px;}
.ws22d{word-spacing:-0.792000px;}
.ws8{word-spacing:-0.505440px;}
.ws21a{word-spacing:-0.504000px;}
.ws7{word-spacing:-0.383040px;}
.ws220{word-spacing:-0.360000px;}
.ws6{word-spacing:-0.336960px;}
.wsb{word-spacing:-0.298800px;}
.ws9{word-spacing:-0.216000px;}
.wsa{word-spacing:-0.179280px;}
.ws22e{word-spacing:-0.144000px;}
.wsd{word-spacing:-0.119520px;}
.ws1b{word-spacing:-0.086077px;}
.ws217{word-spacing:-0.072000px;}
.ws3b{word-spacing:-0.071731px;}
.ws163{word-spacing:-0.065455px;}
.ws19{word-spacing:-0.059776px;}
.wsae{word-spacing:-0.047821px;}
.wsaf{word-spacing:-0.035865px;}
.ws0{word-spacing:0.000000px;}
.ws22c{word-spacing:0.072000px;}
.ws15{word-spacing:0.132480px;}
.ws13{word-spacing:0.144000px;}
.ws206{word-spacing:0.216000px;}
.wsc{word-spacing:0.239040px;}
.ws14{word-spacing:0.288000px;}
.wse{word-spacing:0.298800px;}
.ws222{word-spacing:0.360000px;}
.ws204{word-spacing:0.504000px;}
.ws20e{word-spacing:0.576000px;}
.ws213{word-spacing:0.648000px;}
.ws21b{word-spacing:0.936000px;}
.ws205{word-spacing:1.296000px;}
.ws225{word-spacing:1.368000px;}
.ws212{word-spacing:1.656000px;}
.ws211{word-spacing:2.016000px;}
.ws21c{word-spacing:4.176000px;}
.ws219{word-spacing:5.256000px;}
.ws230{word-spacing:5.328000px;}
.ws20b{word-spacing:5.616000px;}
.ws221{word-spacing:6.336000px;}
.ws22a{word-spacing:6.696000px;}
.ws228{word-spacing:7.056000px;}
.ws215{word-spacing:7.128000px;}
.ws214{word-spacing:7.776000px;}
.ws226{word-spacing:8.784000px;}
.ws227{word-spacing:8.856000px;}
.ws22b{word-spacing:9.576000px;}
.ws21f{word-spacing:9.936000px;}
.ws20f{word-spacing:10.584000px;}
.ws210{word-spacing:10.656000px;}
.ws1af{word-spacing:14.417935px;}
.wsd1{word-spacing:14.892069px;}
.ws38{word-spacing:15.493900px;}
.wsee{word-spacing:15.565631px;}
.ws46{word-spacing:15.709093px;}
.ws129{word-spacing:15.780824px;}
.wsfc{word-spacing:15.852555px;}
.wsf8{word-spacing:16.067748px;}
.ws2b{word-spacing:16.101817px;}
.ws1f5{word-spacing:16.139480px;}
.ws1a8{word-spacing:16.282942px;}
.ws15b{word-spacing:16.300619px;}
.ws12a{word-spacing:16.354673px;}
.ws1a9{word-spacing:16.373417px;}
.ws1cd{word-spacing:16.498135px;}
.ws7d{word-spacing:16.569866px;}
.ws146{word-spacing:16.641597px;}
.ws131{word-spacing:16.713328px;}
.wsde{word-spacing:16.797011px;}
.ws1c1{word-spacing:16.856790px;}
.wscf{word-spacing:16.880693px;}
.ws48{word-spacing:16.928521px;}
.ws3a{word-spacing:17.071983px;}
.ws115{word-spacing:17.143714px;}
.wsa5{word-spacing:17.215445px;}
.ws1fa{word-spacing:17.430638px;}
.wsfa{word-spacing:17.574100px;}
.ws1f6{word-spacing:17.645831px;}
.ws208{word-spacing:17.712000px;}
.ws96{word-spacing:17.717562px;}
.ws9a{word-spacing:17.789293px;}
.ws207{word-spacing:17.856000px;}
.ws114{word-spacing:17.861024px;}
.ws62{word-spacing:17.932755px;}
.ws13b{word-spacing:18.004486px;}
.wsf2{word-spacing:18.076217px;}
.ws159{word-spacing:18.147948px;}
.ws111{word-spacing:18.219679px;}
.ws34{word-spacing:18.291410px;}
.ws10e{word-spacing:18.307336px;}
.ws110{word-spacing:18.315412px;}
.ws1f4{word-spacing:18.434872px;}
.ws76{word-spacing:18.506603px;}
.ws8e{word-spacing:18.578334px;}
.ws148{word-spacing:18.650065px;}
.ws75{word-spacing:18.721796px;}
.ws1c5{word-spacing:18.793527px;}
.wsba{word-spacing:18.865258px;}
.ws10c{word-spacing:18.882448px;}
.wscc{word-spacing:18.882783px;}
.wsb8{word-spacing:18.912476px;}
.wsb9{word-spacing:18.936989px;}
.ws135{word-spacing:19.008720px;}
.wsf7{word-spacing:19.076502px;}
.wsa4{word-spacing:19.080451px;}
.ws149{word-spacing:19.152182px;}
.wse7{word-spacing:19.223913px;}
.ws218{word-spacing:19.296000px;}
.wsfe{word-spacing:19.349873px;}
.ws55{word-spacing:19.367375px;}
.ws90{word-spacing:19.439106px;}
.ws35{word-spacing:19.510837px;}
.ws36{word-spacing:19.550356px;}
.ws37{word-spacing:19.554052px;}
.ws133{word-spacing:19.582568px;}
.wsc0{word-spacing:19.606476px;}
.ws8a{word-spacing:19.726030px;}
.wseb{word-spacing:19.785803px;}
.ws65{word-spacing:19.796498px;}
.ws64{word-spacing:19.797762px;}
.wsc2{word-spacing:19.845579px;}
.ws12f{word-spacing:19.869493px;}
.ws2f{word-spacing:19.905355px;}
.ws94{word-spacing:19.941224px;}
.wsdb{word-spacing:20.012955px;}
.ws85{word-spacing:20.084686px;}
.wsfd{word-spacing:20.156417px;}
.ws68{word-spacing:20.228148px;}
.ws4c{word-spacing:20.299879px;}
.ws4d{word-spacing:20.302911px;}
.ws138{word-spacing:20.371610px;}
.ws20d{word-spacing:20.376000px;}
.ws12e{word-spacing:20.443341px;}
.wsc1{word-spacing:20.503113px;}
.wsf3{word-spacing:20.515072px;}
.ws2a{word-spacing:20.552726px;}
.ws15c{word-spacing:20.586803px;}
.ws4b{word-spacing:20.730265px;}
.ws216{word-spacing:20.736000px;}
.ws5c{word-spacing:20.801996px;}
.ws113{word-spacing:20.868448px;}
.wsc5{word-spacing:20.873727px;}
.wsb7{word-spacing:20.945458px;}
.ws42{word-spacing:21.017189px;}
.wsd3{word-spacing:21.088920px;}
.ws24{word-spacing:21.141816px;}
.ws84{word-spacing:21.160651px;}
.ws83{word-spacing:21.225580px;}
.ws12b{word-spacing:21.232382px;}
.ws1e0{word-spacing:21.296671px;}
.ws49{word-spacing:21.304113px;}
.ws10f{word-spacing:21.324448px;}
.ws4a{word-spacing:21.375844px;}
.wsbb{word-spacing:21.447575px;}
.ws20c{word-spacing:21.456000px;}
.wsc9{word-spacing:21.519306px;}
.ws27{word-spacing:21.534544px;}
.wsc7{word-spacing:21.565336px;}
.wsc4{word-spacing:21.591037px;}
.ws71{word-spacing:21.662768px;}
.ws161{word-spacing:21.665453px;}
.ws1c{word-spacing:21.730907px;}
.ws100{word-spacing:21.734499px;}
.ws2c{word-spacing:21.796362px;}
.ws67{word-spacing:21.806230px;}
.ws1b0{word-spacing:21.808385px;}
.ws231{word-spacing:21.816000px;}
.wse3{word-spacing:21.877961px;}
.wsf1{word-spacing:21.891580px;}
.ws6b{word-spacing:21.949692px;}
.wsc3{word-spacing:22.021423px;}
.ws1ce{word-spacing:22.093154px;}
.ws61{word-spacing:22.164885px;}
.ws88{word-spacing:22.236616px;}
.ws5d{word-spacing:22.308347px;}
.wse1{word-spacing:22.356164px;}
.ws5e{word-spacing:22.380078px;}
.wsff{word-spacing:22.388502px;}
.ws9b{word-spacing:22.451809px;}
.ws57{word-spacing:22.523540px;}
.wsd9{word-spacing:22.595271px;}
.ws74{word-spacing:22.667002px;}
.wse0{word-spacing:22.714819px;}
.ws97{word-spacing:22.738733px;}
.ws98{word-spacing:22.784912px;}
.ws1bf{word-spacing:22.810464px;}
.ws10b{word-spacing:22.866448px;}
.wscd{word-spacing:22.866783px;}
.wsf6{word-spacing:22.868502px;}
.wsf4{word-spacing:22.874502px;}
.wsda{word-spacing:22.882195px;}
.wsca{word-spacing:22.934211px;}
.wsa7{word-spacing:22.953926px;}
.wscb{word-spacing:22.995412px;}
.ws79{word-spacing:23.025657px;}
.ws9f{word-spacing:23.091199px;}
.ws9e{word-spacing:23.097388px;}
.ws1f2{word-spacing:23.169119px;}
.ws26{word-spacing:23.236362px;}
.ws51{word-spacing:23.240850px;}
.ws1f3{word-spacing:23.272301px;}
.ws1de{word-spacing:23.274531px;}
.wsad{word-spacing:23.290888px;}
.ws172{word-spacing:23.301816px;}
.ws31{word-spacing:23.312582px;}
.ws1ca{word-spacing:23.318780px;}
.ws1e8{word-spacing:23.320287px;}
.ws1cc{word-spacing:23.336017px;}
.ws1f1{word-spacing:23.336337px;}
.wsb1{word-spacing:23.336407px;}
.wsb2{word-spacing:23.337412px;}
.ws1e6{word-spacing:23.337519px;}
.ws1d5{word-spacing:23.339643px;}
.ws1e7{word-spacing:23.339882px;}
.ws1d2{word-spacing:23.340705px;}
.ws1e4{word-spacing:23.340902px;}
.ws1eb{word-spacing:23.341303px;}
.ws1cb{word-spacing:23.341795px;}
.ws1dd{word-spacing:23.342055px;}
.ws1ed{word-spacing:23.342337px;}
.ws1d3{word-spacing:23.342681px;}
.ws1d8{word-spacing:23.343540px;}
.ws1d6{word-spacing:23.344497px;}
.ws1dc{word-spacing:23.344792px;}
.ws1ef{word-spacing:23.347191px;}
.wsa2{word-spacing:23.384313px;}
.ws120{word-spacing:23.391237px;}
.ws86{word-spacing:23.456044px;}
.ws52{word-spacing:23.527775px;}
.ws53{word-spacing:23.569161px;}
.ws7a{word-spacing:23.599506px;}
.ws1f8{word-spacing:23.671233px;}
.ws1aa{word-spacing:23.671237px;}
.ws5b{word-spacing:23.742968px;}
.ws3f{word-spacing:23.814699px;}
.ws28{word-spacing:23.825453px;}
.wsdc{word-spacing:23.850560px;}
.ws1a7{word-spacing:23.886430px;}
.ws29{word-spacing:23.890907px;}
.ws1f9{word-spacing:23.910336px;}
.ws40{word-spacing:23.958161px;}
.ws2e{word-spacing:24.021816px;}
.ws12c{word-spacing:24.029892px;}
.ws158{word-spacing:24.101623px;}
.ws4e{word-spacing:24.173354px;}
.ws11c{word-spacing:24.207412px;}
.wsdd{word-spacing:24.209215px;}
.ws1e{word-spacing:24.218180px;}
.ws1f7{word-spacing:24.245085px;}
.wsa9{word-spacing:24.316816px;}
.wsaa{word-spacing:24.326498px;}
.ws132{word-spacing:24.381615px;}
.ws59{word-spacing:24.388547px;}
.ws41{word-spacing:24.460278px;}
.ws1d4{word-spacing:24.532009px;}
.ws25{word-spacing:24.545453px;}
.wsc8{word-spacing:24.588783px;}
.wse8{word-spacing:24.603740px;}
.ws3d{word-spacing:24.654895px;}
.ws3c{word-spacing:24.675471px;}
.ws224{word-spacing:24.696000px;}
.ws72{word-spacing:24.747202px;}
.ws18b{word-spacing:24.754802px;}
.ws175{word-spacing:24.757102px;}
.wsea{word-spacing:24.806974px;}
.ws1c4{word-spacing:24.818933px;}
.ws14b{word-spacing:24.890664px;}
.ws1c3{word-spacing:24.962395px;}
.ws80{word-spacing:25.034126px;}
.ws223{word-spacing:25.056000px;}
.ws87{word-spacing:25.105857px;}
.ws1ee{word-spacing:25.144120px;}
.ws60{word-spacing:25.177588px;}
.ws1c2{word-spacing:25.249319px;}
.ws69{word-spacing:25.321050px;}
.ws82{word-spacing:25.392781px;}
.ws7e{word-spacing:25.464512px;}
.ws5a{word-spacing:25.536243px;}
.wsa3{word-spacing:25.607974px;}
.ws1c0{word-spacing:25.679705px;}
.ws39{word-spacing:25.751436px;}
.wse2{word-spacing:25.823167px;}
.ws6a{word-spacing:25.894898px;}
.ws155{word-spacing:25.932072px;}
.wsed{word-spacing:25.966629px;}
.wsbc{word-spacing:26.038360px;}
.ws91{word-spacing:26.110091px;}
.ws6c{word-spacing:26.181822px;}
.wsdf{word-spacing:26.241594px;}
.ws47{word-spacing:26.253553px;}
.ws8d{word-spacing:26.325284px;}
.ws119{word-spacing:26.350802px;}
.ws11a{word-spacing:26.353102px;}
.ws15f{word-spacing:26.397015px;}
.ws121{word-spacing:26.436448px;}
.ws20{word-spacing:26.509089px;}
.wsb3{word-spacing:26.540477px;}
.ws78{word-spacing:26.612208px;}
.wsa1{word-spacing:26.683939px;}
.ws152{word-spacing:26.755670px;}
.ws151{word-spacing:26.775412px;}
.ws32{word-spacing:26.827401px;}
.wsf9{word-spacing:26.883204px;}
.ws8f{word-spacing:26.899132px;}
.ws63{word-spacing:26.970864px;}
.ws15a{word-spacing:26.995102px;}
.ws50{word-spacing:27.042595px;}
.ws2d{word-spacing:27.098180px;}
.ws58{word-spacing:27.114326px;}
.wsfb{word-spacing:27.186057px;}
.ws11d{word-spacing:27.220802px;}
.ws11e{word-spacing:27.223102px;}
.ws66{word-spacing:27.257788px;}
.wse9{word-spacing:27.329519px;}
.ws43{word-spacing:27.401250px;}
.wsa8{word-spacing:27.472981px;}
.ws112{word-spacing:27.544712px;}
.ws14a{word-spacing:27.616443px;}
.ws1f{word-spacing:27.687270px;}
.ws134{word-spacing:27.688174px;}
.ws22{word-spacing:27.752725px;}
.ws11f{word-spacing:27.759905px;}
.ws21{word-spacing:27.883634px;}
.ws1a{word-spacing:27.889013px;}
.ws4f{word-spacing:27.903367px;}
.ws18{word-spacing:27.975090px;}
.ws1be{word-spacing:27.975098px;}
.ws102{word-spacing:28.046829px;}
.wsef{word-spacing:28.118560px;}
.wsbf{word-spacing:28.154421px;}
.ws101{word-spacing:28.172502px;}
.ws45{word-spacing:28.190291px;}
.ws56{word-spacing:28.262022px;}
.ws174{word-spacing:28.276361px;}
.ws54{word-spacing:28.333753px;}
.wsbd{word-spacing:28.405484px;}
.ws147{word-spacing:28.458945px;}
.ws105{word-spacing:28.477215px;}
.ws104{word-spacing:28.548946px;}
.ws6e{word-spacing:28.620677px;}
.ws7b{word-spacing:28.692408px;}
.ws1fb{word-spacing:28.764139px;}
.ws103{word-spacing:28.835870px;}
.ws9c{word-spacing:28.907601px;}
.wsd2{word-spacing:28.914659px;}
.ws89{word-spacing:28.979332px;}
.ws156{word-spacing:28.984802px;}
.ws136{word-spacing:29.122794px;}
.wsac{word-spacing:29.266256px;}
.wsd4{word-spacing:29.316783px;}
.ws127{word-spacing:29.337987px;}
.wse5{word-spacing:29.409718px;}
.wsa6{word-spacing:29.481449px;}
.ws92{word-spacing:29.553180px;}
.ws116{word-spacing:29.656802px;}
.ws117{word-spacing:29.659102px;}
.ws118{word-spacing:29.662802px;}
.ws77{word-spacing:29.696642px;}
.ws5f{word-spacing:29.768373px;}
.ws157{word-spacing:29.785102px;}
.ws154{word-spacing:29.788802px;}
.ws153{word-spacing:29.791102px;}
.ws81{word-spacing:29.840104px;}
.ws1d9{word-spacing:29.911835px;}
.ws1da{word-spacing:29.922902px;}
.wsd8{word-spacing:29.983566px;}
.wse6{word-spacing:30.127028px;}
.wsd5{word-spacing:30.198759px;}
.ws14f{word-spacing:30.210945px;}
.ws150{word-spacing:30.270490px;}
.ws8c{word-spacing:30.342221px;}
.wsa0{word-spacing:30.413952px;}
.ws137{word-spacing:30.629146px;}
.ws1c9{word-spacing:30.700877px;}
.ws13a{word-spacing:30.772608px;}
.ws6d{word-spacing:30.844339px;}
.ws93{word-spacing:30.916070px;}
.wsab{word-spacing:31.059532px;}
.ws10a{word-spacing:31.131263px;}
.ws30{word-spacing:31.133568px;}
.ws1c6{word-spacing:31.202994px;}
.ws1d{word-spacing:31.221816px;}
.ws1e1{word-spacing:31.274725px;}
.ws12d{word-spacing:31.346456px;}
.ws15e{word-spacing:31.418187px;}
.ws14d{word-spacing:31.489918px;}
.ws106{word-spacing:31.586502px;}
.ws1c7{word-spacing:31.633380px;}
.ws7f{word-spacing:31.776842px;}
.ws6f{word-spacing:31.920304px;}
.ws1c8{word-spacing:31.992035px;}
.ws1ea{word-spacing:32.063766px;}
.wsec{word-spacing:32.106796px;}
.ws107{word-spacing:32.135497px;}
.ws9d{word-spacing:32.192873px;}
.ws1db{word-spacing:32.207228px;}
.ws1e5{word-spacing:32.350690px;}
.ws160{word-spacing:32.494152px;}
.ws139{word-spacing:32.565883px;}
.wsbe{word-spacing:32.637614px;}
.ws14c{word-spacing:32.866802px;}
.ws73{word-spacing:32.924538px;}
.wsd7{word-spacing:32.996269px;}
.ws124{word-spacing:33.211462px;}
.ws125{word-spacing:33.283193px;}
.ws126{word-spacing:33.354218px;}
.wsb5{word-spacing:33.354924px;}
.wsb6{word-spacing:33.426655px;}
.wsb4{word-spacing:33.498386px;}
.ws123{word-spacing:33.570117px;}
.ws122{word-spacing:33.641848px;}
.ws23{word-spacing:33.643634px;}
.ws15d{word-spacing:33.713579px;}
.ws1df{word-spacing:33.928772px;}
.ws95{word-spacing:34.000503px;}
.ws1f0{word-spacing:34.026902px;}
.ws8b{word-spacing:34.072235px;}
.ws44{word-spacing:34.143966px;}
.ws109{word-spacing:34.215697px;}
.ws108{word-spacing:34.287428px;}
.ws70{word-spacing:34.430890px;}
.ws14e{word-spacing:34.531102px;}
.ws7c{word-spacing:34.574352px;}
.wsf0{word-spacing:34.933007px;}
.ws3e{word-spacing:35.076469px;}
.ws1e9{word-spacing:35.148200px;}
.wsd6{word-spacing:35.435124px;}
.ws1ae{word-spacing:36.994416px;}
.ws16{word-spacing:37.192536px;}
.ws17{word-spacing:37.316511px;}
.ws1d7{word-spacing:37.515323px;}
.ws1ec{word-spacing:37.802248px;}
.ws99{word-spacing:38.528155px;}
.ws145{word-spacing:40.370207px;}
.ws1cf{word-spacing:42.106109px;}
.ws1e2{word-spacing:45.620929px;}
.ws1e3{word-spacing:46.768625px;}
.ws1d1{word-spacing:47.342473px;}
.ws1d0{word-spacing:47.629397px;}
.wsb0{word-spacing:48.536087px;}
.ws128{word-spacing:58.653751px;}
.ws1ad{word-spacing:60.468627px;}
.ws1fc{word-spacing:71.672721px;}
.ws1ab{word-spacing:79.632048px;}
.wsf5{word-spacing:82.060287px;}
.ws144{word-spacing:82.262236px;}
.ws193{word-spacing:82.691946px;}
.wse4{word-spacing:96.750773px;}
.ws194{word-spacing:99.047946px;}
.ws192{word-spacing:99.053946px;}
.ws191{word-spacing:104.399991px;}
.ws13f{word-spacing:112.773720px;}
.wsd0{word-spacing:114.425096px;}
.ws33{word-spacing:116.100927px;}
.ws169{word-spacing:129.861807px;}
.ws187{word-spacing:137.127261px;}
.ws11b{word-spacing:138.594448px;}
.ws143{word-spacing:140.710259px;}
.wsce{word-spacing:148.053968px;}
.ws17b{word-spacing:148.058169px;}
.ws196{word-spacing:149.890897px;}
.ws16e{word-spacing:149.984829px;}
.ws19f{word-spacing:155.323623px;}
.ws16b{word-spacing:162.589077px;}
.ws199{word-spacing:171.621804px;}
.ws195{word-spacing:171.687258px;}
.ws16f{word-spacing:175.043946px;}
.ws17c{word-spacing:177.119985px;}
.ws10d{word-spacing:179.586448px;}
.ws16d{word-spacing:187.793946px;}
.ws1a1{word-spacing:188.050893px;}
.ws16a{word-spacing:191.650893px;}
.ws180{word-spacing:198.916347px;}
.ws170{word-spacing:213.447255px;}
.ws186{word-spacing:216.719982px;}
.ws18c{word-spacing:220.778163px;}
.ws197{word-spacing:222.152709px;}
.ws198{word-spacing:222.610891px;}
.ws1a0{word-spacing:234.916344px;}
.ws141{word-spacing:235.059221px;}
.ws1a3{word-spacing:235.898162px;}
.ws189{word-spacing:238.516344px;}
.ws1a6{word-spacing:238.909071px;}
.ws17d{word-spacing:249.381797px;}
.ws17e{word-spacing:249.447252px;}
.ws17f{word-spacing:249.839979px;}
.ws171{word-spacing:263.978160px;}
.ws173{word-spacing:264.370887px;}
.ws176{word-spacing:264.436342px;}
.ws1b3{word-spacing:265.221796px;}
.ws162{word-spacing:278.967249px;}
.ws16c{word-spacing:281.389067px;}
.ws1b2{word-spacing:281.585431px;}
.ws1a2{word-spacing:288.589067px;}
.ws188{word-spacing:289.047249px;}
.ws18a{word-spacing:289.439976px;}
.ws1b4{word-spacing:297.949066px;}
.ws181{word-spacing:303.970884px;}
.ws1a4{word-spacing:307.243611px;}
.ws1a5{word-spacing:307.636338px;}
.ws1b6{word-spacing:314.312701px;}
.ws1b5{word-spacing:319.614519px;}
.ws19a{word-spacing:322.232700px;}
.ws1b9{word-spacing:329.170882px;}
.ws1ba{word-spacing:339.905426px;}
.ws1bd{word-spacing:365.170879px;}
.ws1b7{word-spacing:390.829058px;}
.ws190{word-spacing:392.465422px;}
.ws13d{word-spacing:393.720425px;}
.ws1b8{word-spacing:395.579946px;}
.ws1bb{word-spacing:415.701784px;}
.ws1bc{word-spacing:416.159965px;}
.ws164{word-spacing:417.207238px;}
.ws168{word-spacing:421.199965px;}
.ws18f{word-spacing:421.592692px;}
.ws1b1{word-spacing:430.625419px;}
.ws18d{word-spacing:448.167235px;}
.ws185{word-spacing:459.359962px;}
.ws167{word-spacing:472.123597px;}
.ws19e{word-spacing:477.556324px;}
.ws17a{word-spacing:481.156324px;}
.ws184{word-spacing:504.785412px;}
.ws19d{word-spacing:506.683594px;}
.ws179{word-spacing:510.218139px;}
.ws18e{word-spacing:680.530852px;}
.ws182{word-spacing:749.036829px;}
.ws177{word-spacing:770.852829px;}
.ws183{word-spacing:796.123570px;}
.ws165{word-spacing:799.949946px;}
.ws178{word-spacing:817.919932px;}
.ws166{word-spacing:821.650841px;}
.ws19b{word-spacing:850.859946px;}
.ws19c{word-spacing:883.439926px;}
.wsc6{word-spacing:1035.354783px;}
._20{margin-left:-9.502923px;}
._94{margin-left:-8.480766px;}
._1e{margin-left:-7.157502px;}
._5{margin-left:-5.432727px;}
._1a{margin-left:-4.167533px;}
._2{margin-left:-2.975403px;}
._1{margin-left:-1.642680px;}
._0{width:1.474200px;}
._3{width:3.223353px;}
._28{width:4.262501px;}
._27{width:5.738482px;}
._96{width:7.779600px;}
._26{width:9.755419px;}
._13{width:16.587111px;}
._f{width:18.511507px;}
._15{width:19.903924px;}
._12{width:21.372913px;}
._14{width:23.411610px;}
._1b{width:24.512593px;}
._7{width:25.700761px;}
._d{width:27.588728px;}
._9{width:29.485797px;}
._11{width:30.948221px;}
._e{width:31.989193px;}
._10{width:33.637722px;}
._18{width:34.788599px;}
._c{width:36.037568px;}
._6{width:37.286215px;}
._16{width:38.810099px;}
._19{width:40.272943px;}
._23{width:41.747454px;}
._29{width:42.795471px;}
._1d{width:45.326871px;}
._8{width:46.544494px;}
._b{width:47.596778px;}
._2a{width:49.220510px;}
._4{width:50.333899px;}
._35{width:51.554265px;}
._22{width:52.578838px;}
._17{width:53.727179px;}
._a{width:56.007519px;}
._81{width:58.822689px;}
._25{width:59.964248px;}
._24{width:61.366100px;}
._1c{width:63.378758px;}
._2b{width:64.690024px;}
._2e{width:72.286224px;}
._93{width:79.470837px;}
._7e{width:82.257711px;}
._2d{width:85.916018px;}
._34{width:92.931605px;}
._21{width:96.836850px;}
._2c{width:99.548491px;}
._80{width:102.361668px;}
._1f{width:116.204220px;}
._6c{width:120.763626px;}
._30{width:126.021598px;}
._32{width:131.716246px;}
._70{width:133.527262px;}
._7f{width:137.279067px;}
._33{width:140.305300px;}
._40{width:142.232715px;}
._95{width:146.225442px;}
._6b{width:155.716351px;}
._3d{width:159.054532px;}
._65{width:166.254532px;}
._3f{width:167.694531px;}
._3e{width:171.359986px;}
._78{width:173.127258px;}
._44{width:174.959985px;}
._54{width:177.185440px;}
._6f{width:182.072898px;}
._56{width:187.658166px;}
._7d{width:191.869344px;}
._3c{width:196.756347px;}
._57{width:198.589074px;}
._43{width:200.421801px;}
._42{width:204.121694px;}
._72{width:205.919983px;}
._53{width:216.785436px;}
._47{width:225.949072px;}
._55{width:227.716345px;}
._45{width:230.842531px;}
._5a{width:232.609803px;}
._31{width:234.621604px;}
._67{width:237.207253px;}
._60{width:238.581798px;}
._6a{width:246.377205px;}
._77{width:248.144478px;}
._61{width:249.512706px;}
._46{width:251.345434px;}
._63{width:253.570888px;}
._3b{width:256.915386px;}
._6e{width:270.541630px;}
._4a{width:276.479977px;}
._58{width:285.977202px;}
._5c{width:289.112703px;}
._39{width:291.338158px;}
._36{width:293.993910px;}
._5d{width:300.109066px;}
._49{width:301.876338px;}
._4f{width:304.036338px;}
._6d{width:307.536683px;}
._59{width:310.142714px;}
._50{width:314.967246px;}
._38{width:316.799974px;}
._89{width:326.180350px;}
._86{width:327.743515px;}
._75{width:331.826634px;}
._84{width:333.096839px;}
._8a{width:343.533300px;}
._85{width:346.778153px;}
._8d{width:354.370880px;}
._41{width:358.067588px;}
._64{width:363.661946px;}
._88{width:366.355377px;}
._74{width:370.582048px;}
._79{width:378.192854px;}
._8b{width:379.505423px;}
._52{width:384.969404px;}
._87{width:386.836331px;}
._2f{width:393.165044px;}
._4c{width:408.414772px;}
._7c{width:413.847498px;}
._8c{width:419.875242px;}
._5f{width:421.112952px;}
._92{width:430.427968px;}
._8f{width:480.959960px;}
._83{width:495.949050px;}
._71{width:503.155365px;}
._91{width:517.854763px;}
._48{width:540.988090px;}
._7a{width:546.420816px;}
._66{width:551.289390px;}
._5b{width:553.686270px;}
._62{width:557.841161px;}
._4d{width:568.706614px;}
._37{width:589.122114px;}
._76{width:594.554841px;}
._4e{width:601.820295px;}
._73{width:608.792677px;}
._4b{width:646.559946px;}
._8e{width:650.428080px;}
._7b{width:651.992673px;}
._5e{width:659.258127px;}
._82{width:698.562105px;}
._68{width:742.136208px;}
._90{width:756.065392px;}
._69{width:806.334478px;}
._3a{width:892.865380px;}
._51{width:907.396288px;}
.fc24{color:rgb(77,77,77);}
.fc22{color:rgb(121,92,119);}
.fc20{color:rgb(147,76,143);}
.fc1f{color:rgb(131,70,129);}
.fc1e{color:rgb(115,65,115);}
.fc1d{color:rgb(121,60,111);}
.fcc{color:rgb(44,156,142);}
.fca{color:rgb(42,136,157);}
.fc25{color:rgb(247,142,7);}
.fc23{color:rgb(102,102,102);}
.fc9{color:rgb(32,113,152);}
.fc6{color:rgb(95,70,144);}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc7{color:rgb(69,83,146);}
.fcb{color:rgb(53,159,163);}
.fc19{color:rgb(192,74,71);}
.fc1b{color:rgb(149,52,108);}
.fc11{color:rgb(136,174,60);}
.fc12{color:rgb(182,173,36);}
.fc1{color:rgb(74,68,70);}
.fc8{color:rgb(44,96,148);}
.fcd{color:rgb(29,144,111);}
.fce{color:rgb(18,134,83);}
.fcf{color:rgb(56,150,79);}
.fc21{color:rgb(140,83,137);}
.fc13{color:rgb(228,173,12);}
.fc10{color:rgb(94,166,74);}
.fc5{color:rgb(59,125,37);}
.fc0{color:rgb(0,0,0);}
.fc14{color:rgb(233,157,7);}
.fc2{color:rgb(60,161,213);}
.fc15{color:rgb(228,139,5);}
.fc16{color:rgb(223,120,8);}
.fc17{color:rgb(215,104,30);}
.fc18{color:rgb(207,87,52);}
.fc1a{color:rgb(171,63,90);}
.fc1c{color:rgb(135,56,110);}
.fs6{font-size:2.880000px;}
.fs18{font-size:29.392200px;}
.fs12{font-size:35.865480px;}
.fs19{font-size:35.923800px;}
.fs1b{font-size:39.189000px;}
.fs16{font-size:40.309920px;}
.fsf{font-size:41.843100px;}
.fs4{font-size:42.000000px;}
.fs13{font-size:42.865200px;}
.fs14{font-size:43.107900px;}
.fs1a{font-size:47.026800px;}
.fsd{font-size:47.820660px;}
.fs1c{font-size:48.240000px;}
.fs17{font-size:49.267680px;}
.fs15{font-size:50.945700px;}
.fs8{font-size:59.760000px;}
.fsc{font-size:59.775840px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fse{font-size:65.454540px;}
.fs9{font-size:66.240000px;}
.fs10{font-size:71.731020px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fsb{font-size:86.077200px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs11{font-size:103.292640px;}
.fsa{font-size:123.975120px;}
.y0{bottom:0.000000px;}
.y221{bottom:8.303296px;}
.y1fd{bottom:17.523618px;}
.y1cd{bottom:20.995507px;}
.y19e{bottom:25.099986px;}
.y21f{bottom:29.506503px;}
.y1a5{bottom:36.670241px;}
.y1bf{bottom:38.140694px;}
.y2c3{bottom:38.640354px;}
.y21e{bottom:39.810102px;}
.y1fb{bottom:52.738812px;}
.y200{bottom:54.751137px;}
.y1cc{bottom:55.285882px;}
.y6e{bottom:61.467000px;}
.y5{bottom:66.525004px;}
.y1fa{bottom:66.858481px;}
.y201{bottom:68.549142px;}
.y1c2{bottom:72.440867px;}
.y1a4{bottom:79.446281px;}
.y2c2{bottom:80.631368px;}
.y202{bottom:82.347147px;}
.y2bd{bottom:86.088436px;}
.y1dc{bottom:87.114216px;}
.y1ce{bottom:89.586054px;}
.y1a6{bottom:93.704961px;}
.y203{bottom:96.145152px;}
.y4{bottom:97.125005px;}
.y11c{bottom:101.866500px;}
.y1dd{bottom:105.634385px;}
.y11b{bottom:106.299000px;}
.y1cf{bottom:106.731242px;}
.y358{bottom:107.602500px;}
.y204{bottom:109.943157px;}
.y178{bottom:112.783500px;}
.y13f{bottom:113.695500px;}
.yf8{bottom:115.455000px;}
.y2e5{bottom:117.174000px;}
.y2fe{bottom:117.679500px;}
.y2ba{bottom:120.978000px;}
.y49{bottom:121.674240px;}
.y19c{bottom:121.978500px;}
.yb4{bottom:122.587500px;}
.y205{bottom:123.741162px;}
.y1d5{bottom:123.876429px;}
.y1de{bottom:124.143356px;}
.y36f{bottom:124.231500px;}
.y1a3{bottom:126.975215px;}
.y3b1{bottom:127.080000px;}
.yc3{bottom:128.295000px;}
.y244{bottom:131.406000px;}
.y13e{bottom:131.628000px;}
.y318{bottom:131.679000px;}
.y92{bottom:131.721000px;}
.y1b9{bottom:133.189500px;}
.y181{bottom:133.204500px;}
.yf7{bottom:133.389000px;}
.y34c{bottom:134.493000px;}
.y158{bottom:134.980500px;}
.y6d{bottom:135.219000px;}
.y206{bottom:137.539167px;}
.y22{bottom:139.264499px;}
.y177{bottom:139.674000px;}
.y48{bottom:140.035500px;}
.y1c3{bottom:141.031414px;}
.y11a{bottom:141.456000px;}
.y1df{bottom:142.663525px;}
.y2e4{bottom:144.064500px;}
.y2fd{bottom:144.570000px;}
.y26{bottom:146.880000px;}
.y157{bottom:147.489000px;}
.y36e{bottom:147.588000px;}
.y2b9{bottom:147.870000px;}
.y1da{bottom:148.368000px;}
.y19b{bottom:148.869000px;}
.y3b0{bottom:149.040000px;}
.yb3{bottom:149.479500px;}
.y13d{bottom:149.560500px;}
.y1a7{bottom:150.739682px;}
.yf6{bottom:151.321500px;}
.y207{bottom:151.337172px;}
.yc2{bottom:155.185500px;}
.y1c6{bottom:158.176601px;}
.y243{bottom:158.298000px;}
.y47{bottom:158.396760px;}
.y6c{bottom:158.488500px;}
.y317{bottom:158.569500px;}
.y91{bottom:158.611500px;}
.y1b8{bottom:160.081500px;}
.y1e0{bottom:161.183694px;}
.y34b{bottom:161.385000px;}
.y208{bottom:165.135177px;}
.y176{bottom:166.566000px;}
.y13c{bottom:167.493000px;}
.y156{bottom:170.845500px;}
.y2e3{bottom:170.956500px;}
.y3af{bottom:171.000000px;}
.y2fc{bottom:171.460500px;}
.y36d{bottom:172.759500px;}
.y1a2{bottom:174.504149px;}
.yf5{bottom:174.676500px;}
.y2b8{bottom:174.760500px;}
.y1bd{bottom:175.321789px;}
.yb2{bottom:176.370000px;}
.y46{bottom:176.578740px;}
.y6b{bottom:178.812000px;}
.y209{bottom:178.933182px;}
.y119{bottom:179.053500px;}
.y1e1{bottom:179.692666px;}
.yc1{bottom:182.076000px;}
.y1ba{bottom:184.981500px;}
.y242{bottom:185.188500px;}
.y13b{bottom:185.427000px;}
.y316{bottom:185.461500px;}
.y90{bottom:185.502000px;}
.y1b7{bottom:186.972000px;}
.y180{bottom:186.985500px;}
.y19a{bottom:187.341000px;}
.y34a{bottom:188.275500px;}
.y1d6{bottom:192.466976px;}
.y20a{bottom:192.731187px;}
.y3ae{bottom:192.960000px;}
.y175{bottom:193.456500px;}
.y118{bottom:194.263500px;}
.y45{bottom:194.940000px;}
.y19{bottom:196.933500px;}
.y155{bottom:197.601000px;}
.y2e2{bottom:197.847000px;}
.y1e2{bottom:198.212834px;}
.y2fb{bottom:198.351000px;}
.y6a{bottom:199.135500px;}
.y36c{bottom:199.650000px;}
.y332{bottom:200.676000px;}
.yf4{bottom:201.433500px;}
.y2b7{bottom:201.651000px;}
.y117{bottom:202.033500px;}
.y357{bottom:203.220000px;}
.yb1{bottom:203.260500px;}
.y13a{bottom:203.359500px;}
.y20b{bottom:206.529192px;}
.y1a8{bottom:207.774402px;}
.yc0{bottom:208.966500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y1d1{bottom:209.621961px;}
.y241{bottom:212.079000px;}
.y8f{bottom:212.392500px;}
.y1b6{bottom:213.862500px;}
.y17f{bottom:213.876000px;}
.y44{bottom:214.200000px;}
.y3ad{bottom:214.920000px;}
.y1e3{bottom:216.733003px;}
.y69{bottom:219.459000px;}
.y114{bottom:219.900000px;}
.y20c{bottom:220.319033px;}
.y174{bottom:220.347000px;}
.y1a1{bottom:222.033083px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y154{bottom:224.493000px;}
.y2e1{bottom:224.737500px;}
.y2fa{bottom:225.241500px;}
.y36b{bottom:226.540500px;}
.y139{bottom:226.714500px;}
.y1c8{bottom:226.767149px;}
.y315{bottom:227.296500px;}
.y331{bottom:227.566500px;}
.yf3{bottom:228.324000px;}
.y2b6{bottom:228.541500px;}
.y349{bottom:230.110500px;}
.yb0{bottom:230.151000px;}
.y20d{bottom:234.117038px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y116{bottom:234.844500px;}
.y1e4{bottom:235.241975px;}
.ybf{bottom:235.858500px;}
.y43{bottom:236.160000px;}
.y3ac{bottom:236.880000px;}
.y199{bottom:238.482000px;}
.y240{bottom:238.969500px;}
.y8e{bottom:239.284500px;}
.y115{bottom:239.326500px;}
.y68{bottom:239.782500px;}
.y1b5{bottom:240.753000px;}
.y17e{bottom:240.768000px;}
.y220{bottom:241.595719px;}
.y1bc{bottom:243.912336px;}
.y173{bottom:247.237500px;}
.y20e{bottom:247.915043px;}
.y153{bottom:251.383500px;}
.y2f9{bottom:252.133500px;}
.y36a{bottom:253.432500px;}
.y113{bottom:253.440000px;}
.y138{bottom:253.471500px;}
.y1e5{bottom:253.762144px;}
.y2bc{bottom:253.934923px;}
.y314{bottom:254.187000px;}
.y330{bottom:254.457000px;}
.y1fe{bottom:254.961000px;}
.yf2{bottom:255.214500px;}
.y2b5{bottom:255.433500px;}
.y348{bottom:257.001000px;}
.yaf{bottom:257.043000px;}
.y42{bottom:258.120000px;}
.y3ab{bottom:258.840000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y67{bottom:260.107500px;}
.y1d7{bottom:261.057524px;}
.y20f{bottom:261.713048px;}
.ybe{bottom:262.749000px;}
.y2e0{bottom:263.598000px;}
.y1a9{bottom:264.809123px;}
.y23f{bottom:265.861500px;}
.y8d{bottom:266.175000px;}
.y382{bottom:267.285000px;}
.y1b4{bottom:267.645000px;}
.y17d{bottom:267.658500px;}
.y1a0{bottom:269.562016px;}
.y110{bottom:271.306500px;}
.y356{bottom:271.945500px;}
.y1e6{bottom:272.282312px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y172{bottom:274.129500px;}
.y210{bottom:275.511053px;}
.y1ca{bottom:278.212508px;}
.y152{bottom:278.274000px;}
.y2f8{bottom:279.024000px;}
.y41{bottom:280.080000px;}
.y369{bottom:280.323000px;}
.y137{bottom:280.362000px;}
.y66{bottom:280.431000px;}
.y295{bottom:280.750500px;}
.y3aa{bottom:280.800000px;}
.yf1{bottom:282.106500px;}
.y2b4{bottom:282.324000px;}
.y25f{bottom:282.484500px;}
.yae{bottom:283.933500px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y112{bottom:286.251000px;}
.y381{bottom:287.608500px;}
.y211{bottom:289.309057px;}
.ybd{bottom:289.639500px;}
.y111{bottom:290.734500px;}
.y1e7{bottom:290.791284px;}
.y1db{bottom:291.573000px;}
.y23e{bottom:292.752000px;}
.y8c{bottom:293.065500px;}
.y1b3{bottom:294.535500px;}
.y17c{bottom:294.549000px;}
.y32f{bottom:295.051500px;}
.y2c4{bottom:295.276500px;}
.y1bb{bottom:295.357696px;}
.y313{bottom:296.022000px;}
.y2df{bottom:296.314500px;}
.y347{bottom:298.836000px;}
.y65{bottom:300.754500px;}
.y171{bottom:301.020000px;}
.y40{bottom:302.040000px;}
.y3a9{bottom:302.760000px;}
.y212{bottom:303.107062px;}
.y10f{bottom:304.848000px;}
.y151{bottom:305.164500px;}
.y2f7{bottom:305.914500px;}
.y198{bottom:306.304500px;}
.y136{bottom:307.252500px;}
.y380{bottom:307.932000px;}
.yf0{bottom:308.997000px;}
.y2b3{bottom:309.214500px;}
.y1e8{bottom:309.311453px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yad{bottom:310.824000px;}
.y1c9{bottom:312.502883px;}
.y294{bottom:313.467000px;}
.y25e{bottom:315.201000px;}
.ybc{bottom:316.530000px;}
.y2de{bottom:316.638000px;}
.y213{bottom:316.905068px;}
.y19f{bottom:317.090950px;}
.y23d{bottom:319.642500px;}
.y8b{bottom:319.956000px;}
.y368{bottom:320.572500px;}
.y2c0{bottom:320.801154px;}
.y64{bottom:321.078000px;}
.y1b2{bottom:321.426000px;}
.y17b{bottom:321.439500px;}
.y1aa{bottom:321.843843px;}
.y32e{bottom:321.943500px;}
.y10c{bottom:322.714500px;}
.y312{bottom:322.912500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y3f{bottom:324.000000px;}
.y3a8{bottom:324.720000px;}
.y346{bottom:325.726500px;}
.y1e9{bottom:327.831622px;}
.y170{bottom:327.910500px;}
.y37f{bottom:328.255500px;}
.y2c1{bottom:328.550779px;}
.y1d3{bottom:329.648071px;}
.y214{bottom:330.703072px;}
.y2be{bottom:331.888500px;}
.y150{bottom:332.056500px;}
.y2f6{bottom:332.805000px;}
.y197{bottom:333.196500px;}
.y293{bottom:333.790500px;}
.y135{bottom:334.143000px;}
.y25d{bottom:335.524500px;}
.yef{bottom:335.887500px;}
.y2b2{bottom:336.105000px;}
.y2dd{bottom:336.961500px;}
.y1fc{bottom:337.472411px;}
.y10e{bottom:337.657500px;}
.yac{bottom:337.714500px;}
.y63{bottom:341.401500px;}
.y10d{bottom:342.141000px;}
.y222{bottom:342.301500px;}
.y215{bottom:344.501078px;}
.y3e{bottom:345.960000px;}
.y2bf{bottom:346.254410px;}
.y1ea{bottom:346.351790px;}
.y23c{bottom:346.533000px;}
.y3a7{bottom:346.680000px;}
.y1be{bottom:346.803056px;}
.y8a{bottom:346.848000px;}
.y367{bottom:347.463000px;}
.y10{bottom:348.133500px;}
.y1b1{bottom:348.316500px;}
.y17a{bottom:348.331500px;}
.y37e{bottom:348.579000px;}
.y311{bottom:349.803000px;}
.y345{bottom:352.617000px;}
.y292{bottom:354.114000px;}
.y16f{bottom:354.801000px;}
.ybb{bottom:355.003500px;}
.y25c{bottom:355.848000px;}
.y2dc{bottom:357.285000px;}
.y216{bottom:358.299082px;}
.y14f{bottom:358.947000px;}
.y2f5{bottom:359.697000px;}
.y196{bottom:360.087000px;}
.y134{bottom:361.035000px;}
.y62{bottom:361.726500px;}
.y32d{bottom:362.538000px;}
.yee{bottom:362.778000px;}
.y10b{bottom:362.827500px;}
.y1c4{bottom:363.948243px;}
.yab{bottom:364.606500px;}
.y1eb{bottom:364.860762px;}
.y3d{bottom:367.920000px;}
.y3a6{bottom:368.820000px;}
.y217{bottom:372.097088px;}
.y23b{bottom:373.425000px;}
.y89{bottom:373.738500px;}
.y366{bottom:374.355000px;}
.y291{bottom:374.439000px;}
.y2b1{bottom:374.578500px;}
.y1b0{bottom:375.207000px;}
.y25b{bottom:376.171500px;}
.y37d{bottom:377.887500px;}
.y1ff{bottom:378.915000px;}
.y355{bottom:379.509000px;}
.y1d4{bottom:381.093430px;}
.y16e{bottom:381.691500px;}
.y61{bottom:382.050000px;}
.y1ec{bottom:383.380931px;}
.y14e{bottom:385.837500px;}
.y218{bottom:385.895093px;}
.y2f4{bottom:386.587500px;}
.y2db{bottom:386.593500px;}
.yf{bottom:386.785499px;}
.y179{bottom:386.803500px;}
.y195{bottom:386.977500px;}
.y133{bottom:387.925500px;}
.y32c{bottom:389.428500px;}
.yed{bottom:389.668500px;}
.y3c{bottom:390.060000px;}
.y3a5{bottom:390.780000px;}
.yaa{bottom:391.497000px;}
.y310{bottom:391.638000px;}
.y344{bottom:394.452000px;}
.y1d0{bottom:398.238618px;}
.y219{bottom:399.693098px;}
.y23a{bottom:400.315500px;}
.y88{bottom:400.629000px;}
.y1ed{bottom:401.901100px;}
.y1af{bottom:402.099000px;}
.y60{bottom:402.373500px;}
.y290{bottom:403.747500px;}
.y25a{bottom:405.480000px;}
.y37c{bottom:406.845000px;}
.y2da{bottom:406.917000px;}
.ye{bottom:408.044999px;}
.y16d{bottom:408.583500px;}
.y3b{bottom:412.020000px;}
.y3a4{bottom:412.740000px;}
.yba{bottom:413.478000px;}
.y21a{bottom:413.491103px;}
.y194{bottom:413.868000px;}
.y365{bottom:414.604500px;}
.y132{bottom:414.816000px;}
.y1c0{bottom:415.383805px;}
.yec{bottom:416.560500px;}
.ya9{bottom:418.387500px;}
.y30f{bottom:418.528500px;}
.y1ee{bottom:420.410071px;}
.y343{bottom:421.344000px;}
.y5f{bottom:422.697000px;}
.y28f{bottom:424.071000px;}
.y14d{bottom:424.309500px;}
.y259{bottom:425.803500px;}
.y239{bottom:427.206000px;}
.y2d9{bottom:427.242000px;}
.y21b{bottom:427.289108px;}
.y87{bottom:427.519500px;}
.y1ae{bottom:428.989500px;}
.y32b{bottom:430.023000px;}
.y1d2{bottom:432.538790px;}
.y3a{bottom:433.980000px;}
.y3a3{bottom:434.700000px;}
.y16c{bottom:435.474000px;}
.y10a{bottom:438.864000px;}
.y1ef{bottom:438.930240px;}
.yb9{bottom:440.368500px;}
.y193{bottom:440.758500px;}
.y21c{bottom:441.087112px;}
.y364{bottom:441.495000px;}
.y131{bottom:441.706500px;}
.y5e{bottom:443.020500px;}
.yeb{bottom:443.451000px;}
.y28e{bottom:444.394500px;}
.ya8{bottom:445.278000px;}
.y30e{bottom:445.419000px;}
.y258{bottom:446.128500px;}
.y354{bottom:448.234500px;}
.y37b{bottom:449.314500px;}
.y1c5{bottom:449.683978px;}
.y27a{bottom:451.111500px;}
.y238{bottom:454.096500px;}
.y86{bottom:454.411500px;}
.y2b0{bottom:454.578000px;}
.y21d{bottom:454.885117px;}
.y1ad{bottom:455.880000px;}
.y39{bottom:455.940000px;}
.y2d8{bottom:456.550500px;}
.y3a2{bottom:456.660000px;}
.y32a{bottom:456.915000px;}
.y1f0{bottom:457.450409px;}
.y342{bottom:463.177500px;}
.y5d{bottom:463.345500px;}
.y109{bottom:465.754500px;}
.y1d8{bottom:466.829165px;}
.yb8{bottom:467.260500px;}
.y192{bottom:467.650500px;}
.y363{bottom:468.385500px;}
.y130{bottom:468.598500px;}
.yea{bottom:470.341500px;}
.ya7{bottom:472.170000px;}
.y28d{bottom:473.703000px;}
.y353{bottom:475.125000px;}
.y257{bottom:475.437000px;}
.y1f1{bottom:475.959380px;}
.y2d7{bottom:476.874000px;}
.y38{bottom:477.900000px;}
.y3a1{bottom:478.620000px;}
.y16b{bottom:478.732500px;}
.y237{bottom:480.987000px;}
.y85{bottom:481.302000px;}
.y1ac{bottom:482.770500px;}
.y14c{bottom:482.785500px;}
.y5c{bottom:483.669000px;}
.y279{bottom:483.828000px;}
.y1cb{bottom:483.974353px;}
.y30d{bottom:487.254000px;}
.y2af{bottom:487.294500px;}
.y341{bottom:490.069500px;}
.y16a{bottom:490.689000px;}
.y169{bottom:491.034000px;}
.y108{bottom:492.645000px;}
.y28c{bottom:494.026500px;}
.yb7{bottom:494.151000px;}
.y1f2{bottom:494.479549px;}
.y362{bottom:495.277500px;}
.y12f{bottom:495.489000px;}
.y256{bottom:495.760500px;}
.y2d6{bottom:497.197500px;}
.ye9{bottom:497.232000px;}
.y329{bottom:497.509500px;}
.y37a{bottom:497.532000px;}
.y191{bottom:498.567000px;}
.ya6{bottom:499.060500px;}
.y37{bottom:499.860000px;}
.y3a0{bottom:500.580000px;}
.y1c7{bottom:501.129338px;}
.y352{bottom:502.015500px;}
.yd{bottom:502.864502px;}
.y5b{bottom:503.992500px;}
.y278{bottom:504.151500px;}
.y2ae{bottom:507.618000px;}
.y236{bottom:507.879000px;}
.y84{bottom:508.192500px;}
.y14b{bottom:509.676000px;}
.y190{bottom:510.868500px;}
.y1f3{bottom:512.999718px;}
.y30c{bottom:514.146000px;}
.y28b{bottom:514.351500px;}
.y255{bottom:516.084000px;}
.y340{bottom:516.960000px;}
.y2d5{bottom:517.521000px;}
.y1c1{bottom:518.274525px;}
.y107{bottom:519.537000px;}
.yc{bottom:520.864502px;}
.yb6{bottom:521.041500px;}
.y36{bottom:521.820000px;}
.y12e{bottom:522.379500px;}
.y39f{bottom:522.540000px;}
.ye8{bottom:524.124000px;}
.y5a{bottom:524.316000px;}
.y328{bottom:524.400000px;}
.y379{bottom:524.424000px;}
.y277{bottom:524.475000px;}
.ya5{bottom:525.951000px;}
.y1ab{bottom:526.711500px;}
.y2ad{bottom:527.941500px;}
.y1f4{bottom:531.508690px;}
.y28a{bottom:534.675000px;}
.y235{bottom:534.769500px;}
.y83{bottom:535.083000px;}
.y361{bottom:535.527000px;}
.y254{bottom:536.407500px;}
.y14a{bottom:536.566500px;}
.y2d4{bottom:537.844500px;}
.yb{bottom:538.864499px;}
.y35{bottom:543.780000px;}
.y351{bottom:543.850500px;}
.y39e{bottom:544.500000px;}
.y59{bottom:544.639500px;}
.y276{bottom:544.798500px;}
.y168{bottom:545.169000px;}
.y106{bottom:546.427500px;}
.y2f3{bottom:547.932000px;}
.y2ac{bottom:548.266500px;}
.y12d{bottom:549.270000px;}
.y1d9{bottom:549.811873px;}
.y1f5{bottom:550.028858px;}
.ye7{bottom:551.014500px;}
.y378{bottom:551.314500px;}
.ya4{bottom:552.841500px;}
.y289{bottom:554.998500px;}
.y30b{bottom:555.979500px;}
.y253{bottom:556.732500px;}
.ya{bottom:556.864499px;}
.y2d3{bottom:558.169500px;}
.y33f{bottom:558.795000px;}
.y234{bottom:561.660000px;}
.y82{bottom:561.975000px;}
.y360{bottom:562.417500px;}
.y19d{bottom:563.323500px;}
.y149{bottom:563.457000px;}
.y18f{bottom:564.649500px;}
.y327{bottom:564.994500px;}
.yb5{bottom:565.690500px;}
.y34{bottom:565.740000px;}
.y39d{bottom:566.460000px;}
.y1f6{bottom:568.549027px;}
.y350{bottom:570.741000px;}
.y167{bottom:572.059500px;}
.y105{bottom:573.318000px;}
.ye5{bottom:573.472500px;}
.ye6{bottom:573.787500px;}
.y275{bottom:574.108500px;}
.y2f2{bottom:574.822500px;}
.y288{bottom:575.322000px;}
.y12c{bottom:576.162000px;}
.y252{bottom:577.056000px;}
.y2ab{bottom:577.575000px;}
.ye4{bottom:577.905000px;}
.y377{bottom:578.205000px;}
.y2d2{bottom:578.493000px;}
.ya3{bottom:579.732000px;}
.y30a{bottom:582.871500px;}
.y33e{bottom:585.685500px;}
.y1f7{bottom:587.057999px;}
.y33{bottom:587.700000px;}
.y39c{bottom:588.420000px;}
.y233{bottom:588.550500px;}
.y81{bottom:588.865500px;}
.y35f{bottom:589.308000px;}
.y148{bottom:590.349000px;}
.y18e{bottom:591.540000px;}
.y326{bottom:591.885000px;}
.y274{bottom:594.432000px;}
.y58{bottom:595.306500px;}
.y287{bottom:595.645500px;}
.y251{bottom:597.379500px;}
.y2aa{bottom:597.898500px;}
.y2d1{bottom:598.816500px;}
.y166{bottom:598.951500px;}
.y104{bottom:600.208500px;}
.y2f1{bottom:601.714500px;}
.y12b{bottom:603.052500px;}
.y376{bottom:605.095500px;}
.y1f8{bottom:605.578168px;}
.ya2{bottom:606.624000px;}
.yde{bottom:609.586500px;}
.y32{bottom:609.660000px;}
.y309{bottom:609.762000px;}
.y39b{bottom:610.380000px;}
.y33d{bottom:612.576000px;}
.ydd{bottom:612.748500px;}
.y2bb{bottom:614.049300px;}
.y273{bottom:614.755500px;}
.y232{bottom:615.442500px;}
.y80{bottom:615.756000px;}
.y286{bottom:615.970500px;}
.ye2{bottom:616.080000px;}
.y147{bottom:617.239500px;}
.y250{bottom:617.703000px;}
.y2a9{bottom:618.222000px;}
.y18d{bottom:618.432000px;}
.y325{bottom:618.777000px;}
.y2d0{bottom:619.140000px;}
.ye1{bottom:620.293500px;}
.y1f9{bottom:624.098336px;}
.yd0{bottom:625.273500px;}
.ydb{bottom:625.674000px;}
.y165{bottom:625.842000px;}
.y9{bottom:626.610001px;}
.y103{bottom:627.100500px;}
.y2f0{bottom:628.605000px;}
.y35e{bottom:629.559000px;}
.ycf{bottom:629.757000px;}
.yda{bottom:629.791500px;}
.y12a{bottom:629.943000px;}
.y31{bottom:631.620000px;}
.y375{bottom:631.987500px;}
.y39a{bottom:632.340000px;}
.ydc{bottom:633.172500px;}
.ya1{bottom:633.514500px;}
.yce{bottom:634.240500px;}
.ye0{bottom:635.170500px;}
.yd9{bottom:635.611500px;}
.y285{bottom:636.294000px;}
.y24f{bottom:638.026500px;}
.ycd{bottom:638.722500px;}
.ydf{bottom:639.384000px;}
.y2cf{bottom:639.463500px;}
.y34f{bottom:639.466500px;}
.y231{bottom:642.333000px;}
.y7f{bottom:642.646500px;}
.ycc{bottom:643.206000px;}
.y272{bottom:644.064000px;}
.y146{bottom:644.130000px;}
.y18c{bottom:645.322500px;}
.y8{bottom:645.510000px;}
.y2a8{bottom:647.530500px;}
.ycb{bottom:647.689500px;}
.y308{bottom:651.597000px;}
.y164{bottom:652.732500px;}
.y102{bottom:653.991000px;}
.y399{bottom:654.300000px;}
.y33c{bottom:654.411000px;}
.y30{bottom:654.469020px;}
.y2ef{bottom:655.495500px;}
.y35d{bottom:656.449500px;}
.y284{bottom:656.617500px;}
.ye3{bottom:656.656500px;}
.y129{bottom:656.833500px;}
.y24e{bottom:658.350000px;}
.y324{bottom:659.371500px;}
.y2ce{bottom:659.788500px;}
.ya0{bottom:660.405000px;}
.y271{bottom:664.387500px;}
.y7{bottom:666.771000px;}
.y2a7{bottom:667.854000px;}
.y230{bottom:669.223500px;}
.y7e{bottom:669.537000px;}
.y145{bottom:671.020500px;}
.y374{bottom:673.821000px;}
.yca{bottom:674.589000px;}
.y18b{bottom:676.005000px;}
.y398{bottom:676.440000px;}
.y283{bottom:676.941000px;}
.y307{bottom:678.487500px;}
.y24d{bottom:678.675000px;}
.yc9{bottom:679.072500px;}
.y18a{bottom:679.573500px;}
.y163{bottom:679.623000px;}
.y2f{bottom:680.035860px;}
.y2cd{bottom:680.112000px;}
.yd8{bottom:680.464500px;}
.y33b{bottom:681.301500px;}
.y101{bottom:681.487500px;}
.y2ee{bottom:682.386000px;}
.yd7{bottom:682.597500px;}
.y35c{bottom:683.340000px;}
.yc8{bottom:683.556000px;}
.y128{bottom:683.725500px;}
.y270{bottom:684.712500px;}
.y57{bottom:685.720500px;}
.y323{bottom:686.262000px;}
.y9f{bottom:687.295500px;}
.yd3{bottom:687.661500px;}
.yd4{bottom:687.978000px;}
.yc7{bottom:688.038000px;}
.y2a6{bottom:688.179000px;}
.y188{bottom:690.418500px;}
.yd2{bottom:692.095500px;}
.yc6{bottom:692.521500px;}
.y187{bottom:693.985500px;}
.y22f{bottom:696.114000px;}
.y7d{bottom:696.429000px;}
.yc5{bottom:697.005000px;}
.y282{bottom:697.264500px;}
.yd6{bottom:697.474500px;}
.y144{bottom:697.912500px;}
.yd1{bottom:697.915500px;}
.y397{bottom:698.400000px;}
.y24c{bottom:698.998500px;}
.yfe{bottom:699.354000px;}
.yd5{bottom:699.609000px;}
.y2cc{bottom:700.435500px;}
.y189{bottom:702.885000px;}
.y26f{bottom:705.036000px;}
.y306{bottom:705.378000px;}
.y2e{bottom:705.771180px;}
.y162{bottom:706.515000px;}
.y34e{bottom:708.193500px;}
.y2a5{bottom:708.502500px;}
.y2ed{bottom:709.278000px;}
.y35b{bottom:710.232000px;}
.yc4{bottom:710.455500px;}
.y127{bottom:710.616000px;}
.y322{bottom:713.152500px;}
.y9e{bottom:714.187500px;}
.y100{bottom:714.297000px;}
.y373{bottom:715.656000px;}
.y281{bottom:717.588000px;}
.yff{bottom:718.780500px;}
.y24b{bottom:719.322000px;}
.y396{bottom:720.360000px;}
.y22e{bottom:723.006000px;}
.y33a{bottom:723.136500px;}
.y7c{bottom:723.319500px;}
.y143{bottom:724.803000px;}
.y26e{bottom:725.359500px;}
.y6{bottom:726.298500px;}
.y2a4{bottom:728.826000px;}
.y2cb{bottom:729.744000px;}
.y2d{bottom:730.980000px;}
.y305{bottom:732.268500px;}
.y161{bottom:733.405500px;}
.y34d{bottom:735.084000px;}
.y2ec{bottom:736.168500px;}
.y280{bottom:737.913000px;}
.y24a{bottom:739.645500px;}
.y9d{bottom:741.078000px;}
.y395{bottom:742.320000px;}
.y26d{bottom:745.683000px;}
.y126{bottom:749.088000px;}
.y2a3{bottom:749.149500px;}
.y22d{bottom:749.896500px;}
.y339{bottom:750.027000px;}
.y2ca{bottom:750.067500px;}
.y7b{bottom:750.210000px;}
.y186{bottom:751.641000px;}
.y142{bottom:751.693500px;}
.y3{bottom:752.599495px;}
.yfd{bottom:753.135000px;}
.y321{bottom:753.747000px;}
.y56{bottom:755.535000px;}
.y372{bottom:757.491000px;}
.y27f{bottom:758.236500px;}
.y2c{bottom:758.878920px;}
.y249{bottom:759.969000px;}
.y35a{bottom:761.974500px;}
.y2eb{bottom:763.059000px;}
.y394{bottom:764.280000px;}
.y26c{bottom:766.006500px;}
.y9c{bottom:767.968500px;}
.y2a2{bottom:769.473000px;}
.y2c9{bottom:770.391000px;}
.y160{bottom:771.877500px;}
.y304{bottom:774.103500px;}
.y22c{bottom:776.787000px;}
.y338{bottom:776.919000px;}
.y7a{bottom:777.100500px;}
.y185{bottom:778.533000px;}
.y141{bottom:778.584000px;}
.yfc{bottom:780.025500px;}
.y320{bottom:780.639000px;}
.y55{bottom:780.757500px;}
.y2b{bottom:784.614240px;}
.y393{bottom:786.240000px;}
.y26b{bottom:786.330000px;}
.y27e{bottom:787.545000px;}
.y248{bottom:789.279000px;}
.y2a1{bottom:789.798000px;}
.y2ea{bottom:789.949500px;}
.y9b{bottom:794.859000px;}
.y371{bottom:799.326000px;}
.y125{bottom:800.227500px;}
.y303{bottom:800.995500px;}
.y22b{bottom:803.677500px;}
.y337{bottom:803.809500px;}
.y79{bottom:803.992500px;}
.y184{bottom:805.423500px;}
.y54{bottom:805.978500px;}
.y26a{bottom:806.655000px;}
.yfb{bottom:806.917500px;}
.y31f{bottom:807.529500px;}
.y27d{bottom:807.868500px;}
.y392{bottom:808.200000px;}
.y247{bottom:809.602500px;}
.y2a0{bottom:810.121500px;}
.y2a{bottom:810.181080px;}
.y2e9{bottom:816.841500px;}
.y140{bottom:817.057500px;}
.y9a{bottom:821.751000px;}
.y2c8{bottom:822.789000px;}
.y15f{bottom:823.018500px;}
.y269{bottom:826.978500px;}
.y302{bottom:827.886000px;}
.y27c{bottom:828.192000px;}
.y246{bottom:829.926000px;}
.y391{bottom:830.160000px;}
.y29f{bottom:830.445000px;}
.y22a{bottom:830.569500px;}
.y359{bottom:830.700000px;}
.y78{bottom:830.883000px;}
.y183{bottom:832.314000px;}
.yfa{bottom:833.808000px;}
.y29{bottom:835.916400px;}
.y370{bottom:841.161000px;}
.y53{bottom:842.821500px;}
.y2e8{bottom:843.732000px;}
.y336{bottom:845.644500px;}
.y268{bottom:847.302000px;}
.y31e{bottom:848.124000px;}
.y99{bottom:848.641500px;}
.y29e{bottom:850.768500px;}
.y390{bottom:852.120000px;}
.y28{bottom:855.902340px;}
.y229{bottom:857.460000px;}
.y77{bottom:857.773500px;}
.y182{bottom:863.230500px;}
.y267{bottom:867.625500px;}
.y124{bottom:868.051500px;}
.y301{bottom:869.721000px;}
.y2e7{bottom:870.622500px;}
.y29d{bottom:871.092000px;}
.yf9{bottom:872.280000px;}
.y335{bottom:872.535000px;}
.y38f{bottom:874.080000px;}
.y31d{bottom:875.014500px;}
.y98{bottom:875.532000px;}
.y52{bottom:876.202500px;}
.y2{bottom:879.369000px;}
.y27b{bottom:881.586000px;}
.y245{bottom:882.309000px;}
.y228{bottom:884.350500px;}
.y2c7{bottom:884.557500px;}
.y76{bottom:884.664000px;}
.y266{bottom:887.949000px;}
.y15e{bottom:890.841000px;}
.y29c{bottom:891.415500px;}
.y123{bottom:894.942000px;}
.y38e{bottom:896.040000px;}
.y300{bottom:896.611500px;}
.y334{bottom:899.425500px;}
.y31c{bottom:901.906500px;}
.y97{bottom:902.422500px;}
.y265{bottom:908.274000px;}
.y227{bottom:911.241000px;}
.y75{bottom:911.556000px;}
.y29b{bottom:911.740500px;}
.y2e6{bottom:915.271500px;}
.y2c6{bottom:917.367000px;}
.y122{bottom:917.400000px;}
.y15d{bottom:917.731500px;}
.y38d{bottom:918.000000px;}
.y121{bottom:921.834000px;}
.y2c5{bottom:921.850500px;}
.y2ff{bottom:923.502000px;}
.y264{bottom:928.597500px;}
.y31b{bottom:928.797000px;}
.y96{bottom:929.314500px;}
.y29a{bottom:932.064000px;}
.y51{bottom:935.923500px;}
.y226{bottom:938.131500px;}
.y74{bottom:938.446500px;}
.y38c{bottom:939.960000px;}
.y333{bottom:941.260500px;}
.y27{bottom:942.480000px;}
.y15c{bottom:944.623500px;}
.y95{bottom:956.205000px;}
.y263{bottom:957.906000px;}
.y299{bottom:961.372500px;}
.y38b{bottom:961.920000px;}
.y25{bottom:962.460000px;}
.y225{bottom:965.023500px;}
.y73{bottom:965.337000px;}
.y1{bottom:966.726000px;}
.y120{bottom:968.151000px;}
.y31a{bottom:969.391500px;}
.y15b{bottom:971.514000px;}
.y262{bottom:978.229500px;}
.y298{bottom:981.696000px;}
.y50{bottom:982.287000px;}
.y94{bottom:983.095500px;}
.y38a{bottom:984.060000px;}
.y224{bottom:991.914000px;}
.y72{bottom:992.227500px;}
.y4f{bottom:994.680000px;}
.y11f{bottom:995.043000px;}
.y319{bottom:996.282000px;}
.y15a{bottom:998.404500px;}
.y261{bottom:998.553000px;}
.y297{bottom:1002.019500px;}
.y389{bottom:1006.020000px;}
.y93{bottom:1009.986000px;}
.y4e{bottom:1015.380000px;}
.y11e{bottom:1017.499500px;}
.y71{bottom:1019.118000px;}
.y11d{bottom:1021.933500px;}
.y159{bottom:1025.295000px;}
.y388{bottom:1027.980000px;}
.y223{bottom:1030.386000px;}
.y70{bottom:1036.876500px;}
.y387{bottom:1049.940000px;}
.y260{bottom:1051.947000px;}
.y296{bottom:1054.404000px;}
.y4d{bottom:1056.780000px;}
.y6f{bottom:1063.768500px;}
.y386{bottom:1071.900000px;}
.y4c{bottom:1077.480000px;}
.y385{bottom:1093.860000px;}
.y4b{bottom:1115.640000px;}
.y384{bottom:1115.820000px;}
.y24{bottom:1134.900000px;}
.y383{bottom:1137.780000px;}
.y4a{bottom:1138.140000px;}
.y23{bottom:1193.220000px;}
.hd{height:1.919531px;}
.h24{height:24.870917px;}
.h1a{height:28.202249px;}
.h45{height:30.655146px;}
.h7{height:32.130000px;}
.h17{height:35.865495px;}
.h46{height:37.467401px;}
.h3c{height:39.821771px;}
.h4c{height:40.872902px;}
.h33{height:41.484433px;}
.h42{height:42.041987px;}
.h1e{height:43.158156px;}
.h27{height:44.397495px;}
.h2e{height:44.831880px;}
.h13{height:44.893125px;}
.h3e{height:44.960193px;}
.h18{height:45.687269px;}
.h6{height:45.900000px;}
.h47{height:46.145451px;}
.h11{height:47.387813px;}
.h3{height:48.195000px;}
.h2a{height:48.223110px;}
.h12{height:48.796875px;}
.h4b{height:49.047483px;}
.h19{height:49.090905px;}
.h4d{height:49.218750px;}
.h9{height:49.992188px;}
.h25{height:50.100156px;}
.h43{height:51.384651px;}
.hf{height:52.277344px;}
.h23{height:52.333110px;}
.h26{height:52.339110px;}
.h2c{height:52.719495px;}
.h40{height:53.134773px;}
.h2f{height:53.798265px;}
.h2{height:55.080000px;}
.hc{height:56.146289px;}
.h10{height:57.093750px;}
.h49{height:59.613495px;}
.h48{height:59.619495px;}
.h1d{height:60.254040px;}
.ha{height:61.164492px;}
.h1f{height:61.893495px;}
.he{height:64.899844px;}
.h1b{height:64.916573px;}
.h39{height:69.867495px;}
.h1c{height:72.304848px;}
.h28{height:72.525495px;}
.h16{height:77.899866px;}
.h5{height:78.030000px;}
.h21{height:78.363495px;}
.h37{height:78.408917px;}
.h29{height:81.386573px;}
.h31{height:82.646573px;}
.h32{height:82.652573px;}
.h15{height:87.650410px;}
.h2d{height:90.261495px;}
.h30{height:90.978156px;}
.h22{height:97.884156px;}
.h3a{height:102.320265px;}
.h34{height:102.326265px;}
.h2b{height:104.940156px;}
.h20{height:108.714156px;}
.h4{height:119.055004px;}
.h38{height:134.007495px;}
.h36{height:139.506156px;}
.h35{height:149.742156px;}
.hb{height:166.860000px;}
.h4a{height:282.160800px;}
.h3b{height:370.355328px;}
.h44{height:470.275200px;}
.h3d{height:547.009859px;}
.h3f{height:564.321600px;}
.h41{height:644.958720px;}
.h14{height:1188.000000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:16.560000px;}
.w8{width:16.740000px;}
.w4{width:95.040000px;}
.w6{width:131.400000px;}
.w7{width:259.200000px;}
.wf{width:282.160800px;}
.w9{width:401.040000px;}
.wb{width:493.807104px;}
.wc{width:564.321600px;}
.wd{width:564.338880px;}
.w2{width:637.794021px;}
.we{width:705.412800px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.wa{width:918.000000px;}
.x0{left:0.000000px;}
.x62{left:10.081370px;}
.x61{left:11.276635px;}
.x60{left:13.167504px;}
.x64{left:14.254999px;}
.x63{left:16.067490px;}
.x70{left:17.651649px;}
.x6f{left:19.627458px;}
.x9{left:20.880000px;}
.x67{left:22.427992px;}
.x6a{left:23.547712px;}
.x69{left:24.656234px;}
.x68{left:26.918069px;}
.x89{left:33.957269px;}
.x5c{left:40.594684px;}
.x7{left:42.480000px;}
.x5b{left:47.409581px;}
.x5a{left:59.020642px;}
.x71{left:72.435444px;}
.x6d{left:84.516466px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:108.000000px;}
.x1f{left:113.901000px;}
.x6{left:116.100000px;}
.xf{left:117.540000px;}
.x8b{left:122.975082px;}
.x1d{left:126.495000px;}
.x14{left:129.376500px;}
.x1e{left:133.198500px;}
.x8a{left:134.320298px;}
.x6b{left:140.760001px;}
.xc{left:142.200000px;}
.x17{left:145.450500px;}
.xb{left:148.320000px;}
.x1b{left:151.131000px;}
.x1c{left:158.121000px;}
.x79{left:161.442000px;}
.x78{left:165.840000px;}
.x4c{left:166.905000px;}
.x4e{left:170.884500px;}
.x52{left:172.896000px;}
.x1a{left:175.677000px;}
.x5f{left:176.838000px;}
.x94{left:181.579500px;}
.x13{left:183.046500px;}
.x36{left:184.561500px;}
.x6c{left:189.467821px;}
.x7a{left:192.048000px;}
.x77{left:195.727558px;}
.x82{left:197.515500px;}
.x4{left:203.484001px;}
.x8{left:211.140000px;}
.x81{left:213.000000px;}
.x3b{left:221.659500px;}
.x6e{left:223.882500px;}
.x83{left:225.498000px;}
.xa{left:227.700000px;}
.x12{left:236.343240px;}
.x8e{left:242.034000px;}
.x7e{left:244.021500px;}
.x3d{left:257.815500px;}
.x47{left:261.585000px;}
.x3c{left:264.754500px;}
.x93{left:279.972000px;}
.x3e{left:282.390000px;}
.x37{left:290.280000px;}
.x8d{left:295.119000px;}
.x20{left:297.417000px;}
.x16{left:300.315000px;}
.x5e{left:303.372000px;}
.x66{left:313.506000px;}
.x8c{left:316.118069px;}
.x22{left:318.172500px;}
.x8f{left:319.689000px;}
.x21{left:322.387500px;}
.x86{left:325.528500px;}
.x23{left:329.539500px;}
.x90{left:337.324500px;}
.x96{left:339.045000px;}
.x2c{left:340.474500px;}
.x2b{left:344.739000px;}
.x87{left:351.523500px;}
.x40{left:352.773000px;}
.x2d{left:354.381000px;}
.x3f{left:359.712000px;}
.x48{left:361.759500px;}
.x76{left:363.630501px;}
.x88{left:366.069000px;}
.xd{left:367.200000px;}
.x73{left:368.659833px;}
.x72{left:369.876343px;}
.x18{left:371.208000px;}
.x74{left:372.333858px;}
.x7d{left:373.797000px;}
.x41{left:377.347500px;}
.x4b{left:378.406500px;}
.xe{left:383.940000px;}
.x38{left:386.839500px;}
.x84{left:389.611500px;}
.x49{left:391.165500px;}
.x2e{left:398.128500px;}
.x54{left:402.558000px;}
.x5d{left:408.781408px;}
.x55{left:410.701500px;}
.x15{left:412.162500px;}
.x4a{left:415.740000px;}
.x97{left:417.988500px;}
.x19{left:423.000000px;}
.x4f{left:427.980000px;}
.x4d{left:433.627500px;}
.x24{left:439.234500px;}
.x2f{left:445.528500px;}
.x50{left:448.411500px;}
.x53{left:450.220500px;}
.x30{left:452.478000px;}
.x3{left:454.959000px;}
.x10{left:459.000000px;}
.x75{left:461.465705px;}
.x7f{left:463.000500px;}
.x39{left:465.061500px;}
.x85{left:473.908500px;}
.x42{left:476.082000px;}
.x57{left:479.557500px;}
.x3a{left:482.697000px;}
.x59{left:490.380000px;}
.x43{left:500.656500px;}
.x31{left:508.918500px;}
.x7b{left:511.398000px;}
.x95{left:514.626000px;}
.x56{left:518.851500px;}
.x25{left:520.284000px;}
.x32{left:522.825000px;}
.x65{left:538.672399px;}
.x92{left:547.257000px;}
.x80{left:550.023000px;}
.x91{left:554.197500px;}
.x7c{left:556.387500px;}
.x28{left:566.470500px;}
.x29{left:571.410000px;}
.x26{left:574.669500px;}
.x2a{left:579.450000px;}
.x34{left:581.503500px;}
.x27{left:582.708000px;}
.x33{left:584.902500px;}
.x45{left:587.850000px;}
.x44{left:594.790500px;}
.x46{left:612.424500px;}
.x51{left:635.629500px;}
.x58{left:780.484500px;}
.x35{left:789.264000px;}
.x11{left:803.162520px;}
@media print{
.vf{vertical-align:-55.792000pt;}
.v1b{vertical-align:-52.074667pt;}
.v11{vertical-align:-43.674667pt;}
.v1a{vertical-align:-42.512000pt;}
.v1c{vertical-align:-39.973333pt;}
.v10{vertical-align:-37.194667pt;}
.v2{vertical-align:-21.114667pt;}
.v3{vertical-align:-19.285333pt;}
.v17{vertical-align:-16.826667pt;}
.v15{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.480000pt;}
.v8{vertical-align:6.197333pt;}
.vc{vertical-align:7.584000pt;}
.v14{vertical-align:9.669333pt;}
.v26{vertical-align:12.682667pt;}
.va{vertical-align:14.640000pt;}
.v5{vertical-align:15.765333pt;}
.v12{vertical-align:18.954667pt;}
.v28{vertical-align:21.114667pt;}
.v4{vertical-align:23.136000pt;}
.v18{vertical-align:25.680000pt;}
.v1{vertical-align:27.765333pt;}
.v24{vertical-align:29.850667pt;}
.v1f{vertical-align:31.077333pt;}
.vd{vertical-align:32.586667pt;}
.v19{vertical-align:33.573333pt;}
.v21{vertical-align:34.800000pt;}
.vb{vertical-align:37.776000pt;}
.ve{vertical-align:39.744000pt;}
.v16{vertical-align:42.506667pt;}
.v20{vertical-align:44.362667pt;}
.v25{vertical-align:45.674667pt;}
.v22{vertical-align:46.901333pt;}
.v9{vertical-align:48.352000pt;}
.v13{vertical-align:54.917333pt;}
.v27{vertical-align:57.013333pt;}
.v6{vertical-align:58.272000pt;}
.v23{vertical-align:85.642667pt;}
.v1e{vertical-align:86.869333pt;}
.v1d{vertical-align:94.741333pt;}
.lsd2{letter-spacing:-0.832000pt;}
.lscf{letter-spacing:-0.576000pt;}
.lsd0{letter-spacing:-0.512000pt;}
.lsd1{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.212480pt;}
.ls11{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.117760pt;}
.lsd{letter-spacing:-0.106240pt;}
.lsa{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.000302pt;}
.lsb8{letter-spacing:0.000765pt;}
.ls6f{letter-spacing:0.000829pt;}
.ls75{letter-spacing:0.001033pt;}
.ls4d{letter-spacing:0.001126pt;}
.lsc0{letter-spacing:0.001157pt;}
.ls81{letter-spacing:0.001221pt;}
.ls7d{letter-spacing:0.001429pt;}
.ls3a{letter-spacing:0.001599pt;}
.ls3e{letter-spacing:0.002022pt;}
.ls67{letter-spacing:0.002332pt;}
.lsa0{letter-spacing:0.002427pt;}
.ls99{letter-spacing:0.002428pt;}
.ls6b{letter-spacing:0.002484pt;}
.ls21{letter-spacing:0.002513pt;}
.ls5d{letter-spacing:0.002673pt;}
.ls52{letter-spacing:0.003100pt;}
.ls89{letter-spacing:0.003121pt;}
.ls8d{letter-spacing:0.003529pt;}
.ls2d{letter-spacing:0.003574pt;}
.ls30{letter-spacing:0.004003pt;}
.ls61{letter-spacing:0.004084pt;}
.ls3c{letter-spacing:0.004241pt;}
.lsa2{letter-spacing:0.004367pt;}
.ls64{letter-spacing:0.004565pt;}
.ls83{letter-spacing:0.005055pt;}
.lsb2{letter-spacing:0.006460pt;}
.lsb7{letter-spacing:0.006557pt;}
.lsc9{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.127488pt;}
.lsce{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.149760pt;}
.ls2{letter-spacing:0.159360pt;}
.ls8{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.256000pt;}
.lsc8{letter-spacing:0.262400pt;}
.lsc{letter-spacing:0.265600pt;}
.lsc1{letter-spacing:0.294400pt;}
.ls9{letter-spacing:0.318720pt;}
.ls7{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.340480pt;}
.ls74{letter-spacing:0.363700pt;}
.ls69{letter-spacing:0.369033pt;}
.ls1{letter-spacing:0.371840pt;}
.lsc3{letter-spacing:0.896000pt;}
.lsc6{letter-spacing:1.536000pt;}
.ls57{letter-spacing:2.134570pt;}
.ls14{letter-spacing:2.653230pt;}
.ls12{letter-spacing:2.654293pt;}
.ls8e{letter-spacing:2.655300pt;}
.ls71{letter-spacing:2.655995pt;}
.ls15{letter-spacing:2.656479pt;}
.ls8c{letter-spacing:2.656829pt;}
.lsb9{letter-spacing:2.657126pt;}
.ls80{letter-spacing:2.658563pt;}
.ls13{letter-spacing:2.659627pt;}
.ls70{letter-spacing:2.661328pt;}
.lsbb{letter-spacing:2.662460pt;}
.lscd{letter-spacing:3.456000pt;}
.lsb1{letter-spacing:3.709849pt;}
.ls79{letter-spacing:3.738095pt;}
.ls73{letter-spacing:3.743428pt;}
.ls60{letter-spacing:3.786321pt;}
.ls63{letter-spacing:3.791654pt;}
.lsca{letter-spacing:4.736000pt;}
.lsb5{letter-spacing:4.921443pt;}
.lsb6{letter-spacing:5.014554pt;}
.ls3b{letter-spacing:5.164669pt;}
.ls77{letter-spacing:5.311995pt;}
.lscc{letter-spacing:5.376000pt;}
.lsd5{letter-spacing:6.016000pt;}
.ls33{letter-spacing:6.276790pt;}
.ls35{letter-spacing:6.430670pt;}
.lsc7{letter-spacing:6.656000pt;}
.ls3f{letter-spacing:6.766670pt;}
.lsd4{letter-spacing:7.936000pt;}
.lscb{letter-spacing:8.576000pt;}
.ls2f{letter-spacing:8.664628pt;}
.ls29{letter-spacing:8.669961pt;}
.ls39{letter-spacing:10.186320pt;}
.lsba{letter-spacing:10.626513pt;}
.ls2c{letter-spacing:13.286460pt;}
.ls55{letter-spacing:13.550143pt;}
.ls56{letter-spacing:13.553433pt;}
.ls82{letter-spacing:14.165027pt;}
.ls5c{letter-spacing:14.166767pt;}
.ls7f{letter-spacing:14.170360pt;}
.ls7e{letter-spacing:14.572374pt;}
.ls98{letter-spacing:14.601327pt;}
.ls95{letter-spacing:14.851993pt;}
.ls17{letter-spacing:15.270367pt;}
.lsc4{letter-spacing:15.616000pt;}
.ls6c{letter-spacing:15.941328pt;}
.ls84{letter-spacing:16.822162pt;}
.ls5b{letter-spacing:16.825967pt;}
.ls48{letter-spacing:16.884084pt;}
.ls49{letter-spacing:16.885191pt;}
.ls85{letter-spacing:17.233033pt;}
.ls16{letter-spacing:17.446367pt;}
.ls1c{letter-spacing:17.707700pt;}
.ls2b{letter-spacing:17.711693pt;}
.ls59{letter-spacing:17.713433pt;}
.ls1e{letter-spacing:18.065033pt;}
.ls18{letter-spacing:18.129033pt;}
.ls1b{letter-spacing:18.545033pt;}
.lsc5{letter-spacing:18.816000pt;}
.ls4f{letter-spacing:19.235477pt;}
.ls4e{letter-spacing:19.237191pt;}
.ls9d{letter-spacing:19.389095pt;}
.ls9c{letter-spacing:19.394428pt;}
.ls7a{letter-spacing:19.427993pt;}
.lsd6{letter-spacing:19.456000pt;}
.ls20{letter-spacing:19.611700pt;}
.ls51{letter-spacing:19.803700pt;}
.ls50{letter-spacing:19.809033pt;}
.ls58{letter-spacing:19.846570pt;}
.ls68{letter-spacing:20.007896pt;}
.ls24{letter-spacing:20.291993pt;}
.ls4c{letter-spacing:20.367300pt;}
.ls54{letter-spacing:20.504810pt;}
.ls26{letter-spacing:20.603700pt;}
.ls45{letter-spacing:20.761417pt;}
.ls47{letter-spacing:20.763154pt;}
.ls46{letter-spacing:20.767857pt;}
.ls87{letter-spacing:20.787477pt;}
.ls1a{letter-spacing:20.806367pt;}
.ls25{letter-spacing:20.809327pt;}
.ls27{letter-spacing:20.849033pt;}
.ls28{letter-spacing:20.854367pt;}
.ls23{letter-spacing:21.033327pt;}
.lsb4{letter-spacing:21.421849pt;}
.ls5e{letter-spacing:21.498321pt;}
.ls8a{letter-spacing:21.585224pt;}
.ls90{letter-spacing:21.737327pt;}
.lsd3{letter-spacing:22.022400pt;}
.ls6d{letter-spacing:22.314661pt;}
.ls1f{letter-spacing:22.619700pt;}
.ls53{letter-spacing:23.167300pt;}
.ls91{letter-spacing:23.406660pt;}
.ls97{letter-spacing:23.865327pt;}
.ls8b{letter-spacing:23.868057pt;}
.ls78{letter-spacing:24.011700pt;}
.ls76{letter-spacing:24.085027pt;}
.ls19{letter-spacing:24.203700pt;}
.ls1d{letter-spacing:24.315700pt;}
.lsb0{letter-spacing:24.367740pt;}
.ls4b{letter-spacing:24.507793pt;}
.lsbf{letter-spacing:24.969327pt;}
.ls96{letter-spacing:25.406660pt;}
.ls92{letter-spacing:25.929327pt;}
.ls86{letter-spacing:26.123700pt;}
.ls4a{letter-spacing:29.094417pt;}
.ls5a{letter-spacing:29.482282pt;}
.ls8f{letter-spacing:29.694660pt;}
.ls44{letter-spacing:29.776487pt;}
.ls22{letter-spacing:30.302660pt;}
.ls7b{letter-spacing:30.387993pt;}
.ls7c{letter-spacing:31.291793pt;}
.ls66{letter-spacing:31.877027pt;}
.ls6e{letter-spacing:34.654606pt;}
.lsc2{letter-spacing:37.401600pt;}
.ls43{letter-spacing:38.445961pt;}
.ls40{letter-spacing:43.687415pt;}
.ls36{letter-spacing:46.340987pt;}
.ls88{letter-spacing:52.943693pt;}
.ls32{letter-spacing:59.669027pt;}
.ls3d{letter-spacing:60.501027pt;}
.ls42{letter-spacing:62.705126pt;}
.ls72{letter-spacing:66.591693pt;}
.ls41{letter-spacing:67.184829pt;}
.ls37{letter-spacing:67.526460pt;}
.ls2a{letter-spacing:72.006162pt;}
.ls31{letter-spacing:72.011495pt;}
.ls6a{letter-spacing:80.773027pt;}
.ls94{letter-spacing:81.984643pt;}
.ls93{letter-spacing:112.437804pt;}
.lsb3{letter-spacing:135.489033pt;}
.lsab{letter-spacing:141.378563pt;}
.ls38{letter-spacing:144.133027pt;}
.lsaa{letter-spacing:157.207896pt;}
.lsad{letter-spacing:170.471896pt;}
.lsac{letter-spacing:186.301230pt;}
.ls9b{letter-spacing:194.071896pt;}
.ls2e{letter-spacing:232.390460pt;}
.ls65{letter-spacing:330.394360pt;}
.lsa8{letter-spacing:371.037230pt;}
.lsbc{letter-spacing:371.618513pt;}
.ls9f{letter-spacing:404.642563pt;}
.lsaf{letter-spacing:409.490563pt;}
.lsa4{letter-spacing:415.938563pt;}
.lsbe{letter-spacing:501.943896pt;}
.lsa7{letter-spacing:569.826563pt;}
.ls9e{letter-spacing:603.431896pt;}
.lsae{letter-spacing:608.279896pt;}
.lsa3{letter-spacing:614.722563pt;}
.lsbd{letter-spacing:700.733230pt;}
.lsa6{letter-spacing:1076.737458pt;}
.ls62{letter-spacing:1106.453027pt;}
.ls5f{letter-spacing:1169.749027pt;}
.lsa1{letter-spacing:1182.689458pt;}
.lsa5{letter-spacing:1195.622791pt;}
.ls9a{letter-spacing:1227.985458pt;}
.lsa9{letter-spacing:1274.860125pt;}
.ws1{word-spacing:-21.280000pt;}
.ws1fd{word-spacing:-16.250880pt;}
.wsf{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws11{word-spacing:-15.744000pt;}
.ws2{word-spacing:-14.784000pt;}
.ws1fe{word-spacing:-14.592000pt;}
.ws1ff{word-spacing:-14.528000pt;}
.ws203{word-spacing:-14.464000pt;}
.ws200{word-spacing:-14.272000pt;}
.ws201{word-spacing:-14.208000pt;}
.ws202{word-spacing:-13.952000pt;}
.ws5{word-spacing:-12.323840pt;}
.ws13e{word-spacing:-12.174591pt;}
.ws3{word-spacing:-11.952000pt;}
.ws4{word-spacing:-11.792640pt;}
.ws130{word-spacing:-10.652441pt;}
.ws13c{word-spacing:-9.961029pt;}
.ws1ac{word-spacing:-9.684037pt;}
.ws142{word-spacing:-8.877170pt;}
.ws140{word-spacing:-7.263139pt;}
.ws21e{word-spacing:-3.648000pt;}
.ws229{word-spacing:-3.008000pt;}
.ws21d{word-spacing:-2.688000pt;}
.ws20a{word-spacing:-1.344000pt;}
.ws22f{word-spacing:-1.088000pt;}
.ws209{word-spacing:-0.768000pt;}
.ws22d{word-spacing:-0.704000pt;}
.ws8{word-spacing:-0.449280pt;}
.ws21a{word-spacing:-0.448000pt;}
.ws7{word-spacing:-0.340480pt;}
.ws220{word-spacing:-0.320000pt;}
.ws6{word-spacing:-0.299520pt;}
.wsb{word-spacing:-0.265600pt;}
.ws9{word-spacing:-0.192000pt;}
.wsa{word-spacing:-0.159360pt;}
.ws22e{word-spacing:-0.128000pt;}
.wsd{word-spacing:-0.106240pt;}
.ws1b{word-spacing:-0.076513pt;}
.ws217{word-spacing:-0.064000pt;}
.ws3b{word-spacing:-0.063761pt;}
.ws163{word-spacing:-0.058182pt;}
.ws19{word-spacing:-0.053134pt;}
.wsae{word-spacing:-0.042507pt;}
.wsaf{word-spacing:-0.031880pt;}
.ws0{word-spacing:0.000000pt;}
.ws22c{word-spacing:0.064000pt;}
.ws15{word-spacing:0.117760pt;}
.ws13{word-spacing:0.128000pt;}
.ws206{word-spacing:0.192000pt;}
.wsc{word-spacing:0.212480pt;}
.ws14{word-spacing:0.256000pt;}
.wse{word-spacing:0.265600pt;}
.ws222{word-spacing:0.320000pt;}
.ws204{word-spacing:0.448000pt;}
.ws20e{word-spacing:0.512000pt;}
.ws213{word-spacing:0.576000pt;}
.ws21b{word-spacing:0.832000pt;}
.ws205{word-spacing:1.152000pt;}
.ws225{word-spacing:1.216000pt;}
.ws212{word-spacing:1.472000pt;}
.ws211{word-spacing:1.792000pt;}
.ws21c{word-spacing:3.712000pt;}
.ws219{word-spacing:4.672000pt;}
.ws230{word-spacing:4.736000pt;}
.ws20b{word-spacing:4.992000pt;}
.ws221{word-spacing:5.632000pt;}
.ws22a{word-spacing:5.952000pt;}
.ws228{word-spacing:6.272000pt;}
.ws215{word-spacing:6.336000pt;}
.ws214{word-spacing:6.912000pt;}
.ws226{word-spacing:7.808000pt;}
.ws227{word-spacing:7.872000pt;}
.ws22b{word-spacing:8.512000pt;}
.ws21f{word-spacing:8.832000pt;}
.ws20f{word-spacing:9.408000pt;}
.ws210{word-spacing:9.472000pt;}
.ws1af{word-spacing:12.815942pt;}
.wsd1{word-spacing:13.237395pt;}
.ws38{word-spacing:13.772356pt;}
.wsee{word-spacing:13.836117pt;}
.ws46{word-spacing:13.963639pt;}
.ws129{word-spacing:14.027399pt;}
.wsfc{word-spacing:14.091160pt;}
.wsf8{word-spacing:14.282443pt;}
.ws2b{word-spacing:14.312726pt;}
.ws1f5{word-spacing:14.346204pt;}
.ws1a8{word-spacing:14.473726pt;}
.ws15b{word-spacing:14.489439pt;}
.ws12a{word-spacing:14.537487pt;}
.ws1a9{word-spacing:14.554148pt;}
.ws1cd{word-spacing:14.665009pt;}
.ws7d{word-spacing:14.728769pt;}
.ws146{word-spacing:14.792530pt;}
.ws131{word-spacing:14.856291pt;}
.wsde{word-spacing:14.930676pt;}
.ws1c1{word-spacing:14.983813pt;}
.wscf{word-spacing:15.005060pt;}
.ws48{word-spacing:15.047574pt;}
.ws3a{word-spacing:15.175096pt;}
.ws115{word-spacing:15.238857pt;}
.wsa5{word-spacing:15.302618pt;}
.ws1fa{word-spacing:15.493900pt;}
.wsfa{word-spacing:15.621422pt;}
.ws1f6{word-spacing:15.685183pt;}
.ws208{word-spacing:15.744000pt;}
.ws96{word-spacing:15.748944pt;}
.ws9a{word-spacing:15.812705pt;}
.ws207{word-spacing:15.872000pt;}
.ws114{word-spacing:15.876466pt;}
.ws62{word-spacing:15.940227pt;}
.ws13b{word-spacing:16.003988pt;}
.wsf2{word-spacing:16.067748pt;}
.ws159{word-spacing:16.131509pt;}
.ws111{word-spacing:16.195270pt;}
.ws34{word-spacing:16.259031pt;}
.ws10e{word-spacing:16.273187pt;}
.ws110{word-spacing:16.280366pt;}
.ws1f4{word-spacing:16.386553pt;}
.ws76{word-spacing:16.450314pt;}
.ws8e{word-spacing:16.514075pt;}
.ws148{word-spacing:16.577836pt;}
.ws75{word-spacing:16.641597pt;}
.ws1c5{word-spacing:16.705358pt;}
.wsba{word-spacing:16.769118pt;}
.ws10c{word-spacing:16.784398pt;}
.wscc{word-spacing:16.784696pt;}
.wsb8{word-spacing:16.811090pt;}
.wsb9{word-spacing:16.832879pt;}
.ws135{word-spacing:16.896640pt;}
.wsf7{word-spacing:16.956891pt;}
.wsa4{word-spacing:16.960401pt;}
.ws149{word-spacing:17.024162pt;}
.wse7{word-spacing:17.087923pt;}
.ws218{word-spacing:17.152000pt;}
.wsfe{word-spacing:17.199888pt;}
.ws55{word-spacing:17.215445pt;}
.ws90{word-spacing:17.279206pt;}
.ws35{word-spacing:17.342967pt;}
.ws36{word-spacing:17.378095pt;}
.ws37{word-spacing:17.381380pt;}
.ws133{word-spacing:17.406728pt;}
.wsc0{word-spacing:17.427978pt;}
.ws8a{word-spacing:17.534249pt;}
.wseb{word-spacing:17.587380pt;}
.ws65{word-spacing:17.596887pt;}
.ws64{word-spacing:17.598010pt;}
.wsc2{word-spacing:17.640515pt;}
.ws12f{word-spacing:17.661771pt;}
.ws2f{word-spacing:17.693649pt;}
.ws94{word-spacing:17.725532pt;}
.wsdb{word-spacing:17.789293pt;}
.ws85{word-spacing:17.853054pt;}
.wsfd{word-spacing:17.916815pt;}
.ws68{word-spacing:17.980576pt;}
.ws4c{word-spacing:18.044337pt;}
.ws4d{word-spacing:18.047032pt;}
.ws138{word-spacing:18.108097pt;}
.ws20d{word-spacing:18.112000pt;}
.ws12e{word-spacing:18.171858pt;}
.wsc1{word-spacing:18.224989pt;}
.wsf3{word-spacing:18.235619pt;}
.ws2a{word-spacing:18.269089pt;}
.ws15c{word-spacing:18.299380pt;}
.ws4b{word-spacing:18.426902pt;}
.ws216{word-spacing:18.432000pt;}
.ws5c{word-spacing:18.490663pt;}
.ws113{word-spacing:18.549731pt;}
.wsc5{word-spacing:18.554424pt;}
.wsb7{word-spacing:18.618185pt;}
.ws42{word-spacing:18.681946pt;}
.wsd3{word-spacing:18.745707pt;}
.ws24{word-spacing:18.792726pt;}
.ws84{word-spacing:18.809467pt;}
.ws83{word-spacing:18.867182pt;}
.ws12b{word-spacing:18.873228pt;}
.ws1e0{word-spacing:18.930374pt;}
.ws49{word-spacing:18.936989pt;}
.ws10f{word-spacing:18.955065pt;}
.ws4a{word-spacing:19.000750pt;}
.wsbb{word-spacing:19.064511pt;}
.ws20c{word-spacing:19.072000pt;}
.wsc9{word-spacing:19.128272pt;}
.ws27{word-spacing:19.141817pt;}
.wsc7{word-spacing:19.169187pt;}
.wsc4{word-spacing:19.192033pt;}
.ws71{word-spacing:19.255794pt;}
.ws161{word-spacing:19.258180pt;}
.ws1c{word-spacing:19.316362pt;}
.ws100{word-spacing:19.319555pt;}
.ws2c{word-spacing:19.374544pt;}
.ws67{word-spacing:19.383316pt;}
.ws1b0{word-spacing:19.385231pt;}
.ws231{word-spacing:19.392000pt;}
.wse3{word-spacing:19.447077pt;}
.wsf1{word-spacing:19.459182pt;}
.ws6b{word-spacing:19.510837pt;}
.wsc3{word-spacing:19.574598pt;}
.ws1ce{word-spacing:19.638359pt;}
.ws61{word-spacing:19.702120pt;}
.ws88{word-spacing:19.765881pt;}
.ws5d{word-spacing:19.829642pt;}
.wse1{word-spacing:19.872146pt;}
.ws5e{word-spacing:19.893403pt;}
.wsff{word-spacing:19.900891pt;}
.ws9b{word-spacing:19.957164pt;}
.ws57{word-spacing:20.020925pt;}
.wsd9{word-spacing:20.084686pt;}
.ws74{word-spacing:20.148447pt;}
.wse0{word-spacing:20.190950pt;}
.ws97{word-spacing:20.212207pt;}
.ws98{word-spacing:20.253255pt;}
.ws1bf{word-spacing:20.275968pt;}
.ws10b{word-spacing:20.325731pt;}
.wscd{word-spacing:20.326029pt;}
.wsf6{word-spacing:20.327557pt;}
.wsf4{word-spacing:20.332891pt;}
.wsda{word-spacing:20.339729pt;}
.wsca{word-spacing:20.385965pt;}
.wsa7{word-spacing:20.403490pt;}
.wscb{word-spacing:20.440366pt;}
.ws79{word-spacing:20.467251pt;}
.ws9f{word-spacing:20.525510pt;}
.ws9e{word-spacing:20.531012pt;}
.ws1f2{word-spacing:20.594773pt;}
.ws26{word-spacing:20.654544pt;}
.ws51{word-spacing:20.658534pt;}
.ws1f3{word-spacing:20.686490pt;}
.ws1de{word-spacing:20.688472pt;}
.wsad{word-spacing:20.703011pt;}
.ws172{word-spacing:20.712726pt;}
.ws31{word-spacing:20.722295pt;}
.ws1ca{word-spacing:20.727804pt;}
.ws1e8{word-spacing:20.729144pt;}
.ws1cc{word-spacing:20.743126pt;}
.ws1f1{word-spacing:20.743410pt;}
.wsb1{word-spacing:20.743473pt;}
.wsb2{word-spacing:20.744366pt;}
.ws1e6{word-spacing:20.744461pt;}
.ws1d5{word-spacing:20.746349pt;}
.ws1e7{word-spacing:20.746562pt;}
.ws1d2{word-spacing:20.747293pt;}
.ws1e4{word-spacing:20.747468pt;}
.ws1eb{word-spacing:20.747825pt;}
.ws1cb{word-spacing:20.748262pt;}
.ws1dd{word-spacing:20.748494pt;}
.ws1ed{word-spacing:20.748744pt;}
.ws1d3{word-spacing:20.749050pt;}
.ws1d8{word-spacing:20.749813pt;}
.ws1d6{word-spacing:20.750664pt;}
.ws1dc{word-spacing:20.750926pt;}
.ws1ef{word-spacing:20.753058pt;}
.wsa2{word-spacing:20.786056pt;}
.ws120{word-spacing:20.792210pt;}
.ws86{word-spacing:20.849816pt;}
.ws52{word-spacing:20.913577pt;}
.ws53{word-spacing:20.950365pt;}
.ws7a{word-spacing:20.977338pt;}
.ws1f8{word-spacing:21.041096pt;}
.ws1aa{word-spacing:21.041099pt;}
.ws5b{word-spacing:21.104860pt;}
.ws3f{word-spacing:21.168621pt;}
.ws28{word-spacing:21.178180pt;}
.wsdc{word-spacing:21.200498pt;}
.ws1a7{word-spacing:21.232382pt;}
.ws29{word-spacing:21.236362pt;}
.ws1f9{word-spacing:21.253632pt;}
.ws40{word-spacing:21.296143pt;}
.ws2e{word-spacing:21.352725pt;}
.ws12c{word-spacing:21.359904pt;}
.ws158{word-spacing:21.423665pt;}
.ws4e{word-spacing:21.487426pt;}
.ws11c{word-spacing:21.517699pt;}
.wsdd{word-spacing:21.519302pt;}
.ws1e{word-spacing:21.527271pt;}
.ws1f7{word-spacing:21.551186pt;}
.wsa9{word-spacing:21.614947pt;}
.wsaa{word-spacing:21.623554pt;}
.ws132{word-spacing:21.672547pt;}
.ws59{word-spacing:21.678708pt;}
.ws41{word-spacing:21.742469pt;}
.ws1d4{word-spacing:21.806230pt;}
.ws25{word-spacing:21.818180pt;}
.wsc8{word-spacing:21.856696pt;}
.wse8{word-spacing:21.869991pt;}
.ws3d{word-spacing:21.915462pt;}
.ws3c{word-spacing:21.933752pt;}
.ws224{word-spacing:21.952000pt;}
.ws72{word-spacing:21.997513pt;}
.ws18b{word-spacing:22.004268pt;}
.ws175{word-spacing:22.006313pt;}
.wsea{word-spacing:22.050643pt;}
.ws1c4{word-spacing:22.061274pt;}
.ws14b{word-spacing:22.125035pt;}
.ws1c3{word-spacing:22.188796pt;}
.ws80{word-spacing:22.252556pt;}
.ws223{word-spacing:22.272000pt;}
.ws87{word-spacing:22.316317pt;}
.ws1ee{word-spacing:22.350329pt;}
.ws60{word-spacing:22.380078pt;}
.ws1c2{word-spacing:22.443839pt;}
.ws69{word-spacing:22.507600pt;}
.ws82{word-spacing:22.571361pt;}
.ws7e{word-spacing:22.635122pt;}
.ws5a{word-spacing:22.698883pt;}
.wsa3{word-spacing:22.762644pt;}
.ws1c0{word-spacing:22.826405pt;}
.ws39{word-spacing:22.890165pt;}
.wse2{word-spacing:22.953926pt;}
.ws6a{word-spacing:23.017687pt;}
.ws155{word-spacing:23.050731pt;}
.wsed{word-spacing:23.081448pt;}
.wsbc{word-spacing:23.145209pt;}
.ws91{word-spacing:23.208970pt;}
.ws6c{word-spacing:23.272731pt;}
.wsdf{word-spacing:23.325861pt;}
.ws47{word-spacing:23.336492pt;}
.ws8d{word-spacing:23.400253pt;}
.ws119{word-spacing:23.422935pt;}
.ws11a{word-spacing:23.424979pt;}
.ws15f{word-spacing:23.464014pt;}
.ws121{word-spacing:23.499065pt;}
.ws20{word-spacing:23.563634pt;}
.wsb3{word-spacing:23.591535pt;}
.ws78{word-spacing:23.655296pt;}
.wsa1{word-spacing:23.719057pt;}
.ws152{word-spacing:23.782818pt;}
.ws151{word-spacing:23.800366pt;}
.ws32{word-spacing:23.846579pt;}
.wsf9{word-spacing:23.896181pt;}
.ws8f{word-spacing:23.910340pt;}
.ws63{word-spacing:23.974101pt;}
.ws15a{word-spacing:23.995646pt;}
.ws50{word-spacing:24.037862pt;}
.ws2d{word-spacing:24.087271pt;}
.ws58{word-spacing:24.101623pt;}
.wsfb{word-spacing:24.165384pt;}
.ws11d{word-spacing:24.196268pt;}
.ws11e{word-spacing:24.198313pt;}
.ws66{word-spacing:24.229145pt;}
.wse9{word-spacing:24.292905pt;}
.ws43{word-spacing:24.356666pt;}
.wsa8{word-spacing:24.420427pt;}
.ws112{word-spacing:24.484188pt;}
.ws14a{word-spacing:24.547949pt;}
.ws1f{word-spacing:24.610907pt;}
.ws134{word-spacing:24.611710pt;}
.ws22{word-spacing:24.669089pt;}
.ws11f{word-spacing:24.675471pt;}
.ws21{word-spacing:24.785452pt;}
.ws1a{word-spacing:24.790234pt;}
.ws4f{word-spacing:24.802993pt;}
.ws18{word-spacing:24.866747pt;}
.ws1be{word-spacing:24.866754pt;}
.ws102{word-spacing:24.930515pt;}
.wsef{word-spacing:24.994275pt;}
.wsbf{word-spacing:25.026152pt;}
.ws101{word-spacing:25.042224pt;}
.ws45{word-spacing:25.058036pt;}
.ws56{word-spacing:25.121797pt;}
.ws174{word-spacing:25.134543pt;}
.ws54{word-spacing:25.185558pt;}
.wsbd{word-spacing:25.249319pt;}
.ws147{word-spacing:25.296840pt;}
.ws105{word-spacing:25.313080pt;}
.ws104{word-spacing:25.376841pt;}
.ws6e{word-spacing:25.440602pt;}
.ws7b{word-spacing:25.504363pt;}
.ws1fb{word-spacing:25.568124pt;}
.ws103{word-spacing:25.631884pt;}
.ws9c{word-spacing:25.695645pt;}
.wsd2{word-spacing:25.701919pt;}
.ws89{word-spacing:25.759406pt;}
.ws156{word-spacing:25.764268pt;}
.ws136{word-spacing:25.886928pt;}
.wsac{word-spacing:26.014450pt;}
.wsd4{word-spacing:26.059362pt;}
.ws127{word-spacing:26.078211pt;}
.wse5{word-spacing:26.141972pt;}
.wsa6{word-spacing:26.205733pt;}
.ws92{word-spacing:26.269494pt;}
.ws116{word-spacing:26.361602pt;}
.ws117{word-spacing:26.363646pt;}
.ws118{word-spacing:26.366935pt;}
.ws77{word-spacing:26.397015pt;}
.ws5f{word-spacing:26.460776pt;}
.ws157{word-spacing:26.475646pt;}
.ws154{word-spacing:26.478935pt;}
.ws153{word-spacing:26.480979pt;}
.ws81{word-spacing:26.524537pt;}
.ws1d9{word-spacing:26.588298pt;}
.ws1da{word-spacing:26.598135pt;}
.wsd8{word-spacing:26.652059pt;}
.wse6{word-spacing:26.779581pt;}
.wsd5{word-spacing:26.843342pt;}
.ws14f{word-spacing:26.854173pt;}
.ws150{word-spacing:26.907103pt;}
.ws8c{word-spacing:26.970864pt;}
.wsa0{word-spacing:27.034624pt;}
.ws137{word-spacing:27.225907pt;}
.ws1c9{word-spacing:27.289668pt;}
.ws13a{word-spacing:27.353429pt;}
.ws6d{word-spacing:27.417190pt;}
.ws93{word-spacing:27.480951pt;}
.wsab{word-spacing:27.608473pt;}
.ws10a{word-spacing:27.672233pt;}
.ws30{word-spacing:27.674283pt;}
.ws1c6{word-spacing:27.735994pt;}
.ws1d{word-spacing:27.752725pt;}
.ws1e1{word-spacing:27.799755pt;}
.ws12d{word-spacing:27.863516pt;}
.ws15e{word-spacing:27.927277pt;}
.ws14d{word-spacing:27.991038pt;}
.ws106{word-spacing:28.076891pt;}
.ws1c7{word-spacing:28.118560pt;}
.ws7f{word-spacing:28.246082pt;}
.ws6f{word-spacing:28.373603pt;}
.ws1c8{word-spacing:28.437364pt;}
.ws1ea{word-spacing:28.501125pt;}
.wsec{word-spacing:28.539374pt;}
.ws107{word-spacing:28.564886pt;}
.ws9d{word-spacing:28.615887pt;}
.ws1db{word-spacing:28.628647pt;}
.ws1e5{word-spacing:28.756169pt;}
.ws160{word-spacing:28.883691pt;}
.ws139{word-spacing:28.947452pt;}
.wsbe{word-spacing:29.011213pt;}
.ws14c{word-spacing:29.214935pt;}
.ws73{word-spacing:29.266256pt;}
.wsd7{word-spacing:29.330017pt;}
.ws124{word-spacing:29.521300pt;}
.ws125{word-spacing:29.585061pt;}
.ws126{word-spacing:29.648193pt;}
.wsb5{word-spacing:29.648822pt;}
.wsb6{word-spacing:29.712583pt;}
.wsb4{word-spacing:29.776343pt;}
.ws123{word-spacing:29.840104pt;}
.ws122{word-spacing:29.903865pt;}
.ws23{word-spacing:29.905452pt;}
.ws15d{word-spacing:29.967626pt;}
.ws1df{word-spacing:30.158909pt;}
.ws95{word-spacing:30.222670pt;}
.ws1f0{word-spacing:30.246135pt;}
.ws8b{word-spacing:30.286431pt;}
.ws44{word-spacing:30.350192pt;}
.ws109{word-spacing:30.413952pt;}
.ws108{word-spacing:30.477713pt;}
.ws70{word-spacing:30.605235pt;}
.ws14e{word-spacing:30.694313pt;}
.ws7c{word-spacing:30.732757pt;}
.wsf0{word-spacing:31.051562pt;}
.ws3e{word-spacing:31.179083pt;}
.ws1e9{word-spacing:31.242844pt;}
.wsd6{word-spacing:31.497888pt;}
.ws1ae{word-spacing:32.883925pt;}
.ws16{word-spacing:33.060032pt;}
.ws17{word-spacing:33.170232pt;}
.ws1d7{word-spacing:33.346954pt;}
.ws1ec{word-spacing:33.601998pt;}
.ws99{word-spacing:34.247249pt;}
.ws145{word-spacing:35.884628pt;}
.ws1cf{word-spacing:37.427652pt;}
.ws1e2{word-spacing:40.551937pt;}
.ws1e3{word-spacing:41.572111pt;}
.ws1d1{word-spacing:42.082198pt;}
.ws1d0{word-spacing:42.337242pt;}
.wsb0{word-spacing:43.143188pt;}
.ws128{word-spacing:52.136667pt;}
.ws1ad{word-spacing:53.749891pt;}
.ws1fc{word-spacing:63.709086pt;}
.ws1ab{word-spacing:70.784043pt;}
.wsf5{word-spacing:72.942477pt;}
.ws144{word-spacing:73.121988pt;}
.ws193{word-spacing:73.503952pt;}
.wse4{word-spacing:86.000687pt;}
.ws194{word-spacing:88.042619pt;}
.ws192{word-spacing:88.047952pt;}
.ws191{word-spacing:92.799992pt;}
.ws13f{word-spacing:100.243306pt;}
.wsd0{word-spacing:101.711197pt;}
.ws33{word-spacing:103.200824pt;}
.ws169{word-spacing:115.432718pt;}
.ws187{word-spacing:121.890899pt;}
.ws11b{word-spacing:123.195065pt;}
.ws143{word-spacing:125.075786pt;}
.wsce{word-spacing:131.603527pt;}
.ws17b{word-spacing:131.607262pt;}
.ws196{word-spacing:133.236353pt;}
.ws16e{word-spacing:133.319848pt;}
.ws19f{word-spacing:138.065443pt;}
.ws16b{word-spacing:144.523624pt;}
.ws199{word-spacing:152.552715pt;}
.ws195{word-spacing:152.610896pt;}
.ws16f{word-spacing:155.594619pt;}
.ws17c{word-spacing:157.439987pt;}
.ws10d{word-spacing:159.632398pt;}
.ws16d{word-spacing:166.927952pt;}
.ws1a1{word-spacing:167.156350pt;}
.ws16a{word-spacing:170.356349pt;}
.ws180{word-spacing:176.814531pt;}
.ws170{word-spacing:189.730893pt;}
.ws186{word-spacing:192.639984pt;}
.ws18c{word-spacing:196.247256pt;}
.ws197{word-spacing:197.469074pt;}
.ws198{word-spacing:197.876347pt;}
.ws1a0{word-spacing:208.814528pt;}
.ws141{word-spacing:208.941530pt;}
.ws1a3{word-spacing:209.687255pt;}
.ws189{word-spacing:212.014528pt;}
.ws1a6{word-spacing:212.363619pt;}
.ws17d{word-spacing:221.672709pt;}
.ws17e{word-spacing:221.730891pt;}
.ws17f{word-spacing:222.079981pt;}
.ws171{word-spacing:234.647253pt;}
.ws173{word-spacing:234.996344pt;}
.ws176{word-spacing:235.054526pt;}
.ws1b3{word-spacing:235.752708pt;}
.ws162{word-spacing:247.970888pt;}
.ws16c{word-spacing:250.123616pt;}
.ws1b2{word-spacing:250.298161pt;}
.ws1a2{word-spacing:256.523615pt;}
.ws188{word-spacing:256.930888pt;}
.ws18a{word-spacing:257.279979pt;}
.ws1b4{word-spacing:264.843614pt;}
.ws181{word-spacing:270.196341pt;}
.ws1a4{word-spacing:273.105432pt;}
.ws1a5{word-spacing:273.454523pt;}
.ws1b6{word-spacing:279.389068pt;}
.ws1b5{word-spacing:284.101795pt;}
.ws19a{word-spacing:286.429067pt;}
.ws1b9{word-spacing:292.596339pt;}
.ws1ba{word-spacing:302.138157pt;}
.ws1bd{word-spacing:324.596337pt;}
.ws1b7{word-spacing:347.403607pt;}
.ws190{word-spacing:348.858153pt;}
.ws13d{word-spacing:349.973711pt;}
.ws1b8{word-spacing:351.626619pt;}
.ws1bb{word-spacing:369.512696pt;}
.ws1bc{word-spacing:369.919969pt;}
.ws164{word-spacing:370.850878pt;}
.ws168{word-spacing:374.399969pt;}
.ws18f{word-spacing:374.749060pt;}
.ws1b1{word-spacing:382.778150pt;}
.ws18d{word-spacing:398.370876pt;}
.ws185{word-spacing:408.319966pt;}
.ws167{word-spacing:419.665420pt;}
.ws19e{word-spacing:424.494510pt;}
.ws17a{word-spacing:427.694510pt;}
.ws184{word-spacing:448.698144pt;}
.ws19d{word-spacing:450.385417pt;}
.ws179{word-spacing:453.527235pt;}
.ws18e{word-spacing:604.916313pt;}
.ws182{word-spacing:665.810515pt;}
.ws177{word-spacing:685.202515pt;}
.ws183{word-spacing:707.665396pt;}
.ws165{word-spacing:711.066619pt;}
.ws178{word-spacing:727.039939pt;}
.ws166{word-spacing:730.356303pt;}
.ws19b{word-spacing:756.319952pt;}
.ws19c{word-spacing:785.279935pt;}
.wsc6{word-spacing:920.315362pt;}
._20{margin-left:-8.447043pt;}
._94{margin-left:-7.538458pt;}
._1e{margin-left:-6.362224pt;}
._5{margin-left:-4.829091pt;}
._1a{margin-left:-3.704473pt;}
._2{margin-left:-2.644803pt;}
._1{margin-left:-1.460160pt;}
._0{width:1.310400pt;}
._3{width:2.865203pt;}
._28{width:3.788890pt;}
._27{width:5.100873pt;}
._96{width:6.915200pt;}
._26{width:8.671483pt;}
._13{width:14.744099pt;}
._f{width:16.454673pt;}
._15{width:17.692377pt;}
._12{width:18.998145pt;}
._14{width:20.810320pt;}
._1b{width:21.788972pt;}
._7{width:22.845121pt;}
._d{width:24.523313pt;}
._9{width:26.209598pt;}
._11{width:27.509530pt;}
._e{width:28.434839pt;}
._10{width:29.900198pt;}
._18{width:30.923199pt;}
._c{width:32.033394pt;}
._6{width:33.143302pt;}
._16{width:34.497866pt;}
._19{width:35.798171pt;}
._23{width:37.108848pt;}
._29{width:38.040419pt;}
._1d{width:40.290552pt;}
._8{width:41.372884pt;}
._b{width:42.308247pt;}
._2a{width:43.751565pt;}
._4{width:44.741243pt;}
._35{width:45.826014pt;}
._22{width:46.736745pt;}
._17{width:47.757492pt;}
._a{width:49.784461pt;}
._81{width:52.286835pt;}
._25{width:53.301553pt;}
._24{width:54.547644pt;}
._1c{width:56.336673pt;}
._2b{width:57.502244pt;}
._2e{width:64.254421pt;}
._93{width:70.640744pt;}
._7e{width:73.117965pt;}
._2d{width:76.369794pt;}
._34{width:82.605871pt;}
._21{width:86.077200pt;}
._2c{width:88.487548pt;}
._80{width:90.988149pt;}
._1f{width:103.292640pt;}
._6c{width:107.345446pt;}
._30{width:112.019198pt;}
._32{width:117.081107pt;}
._70{width:118.690899pt;}
._7f{width:122.025837pt;}
._33{width:124.715822pt;}
._40{width:126.429080pt;}
._95{width:129.978171pt;}
._6b{width:138.414534pt;}
._3d{width:141.381806pt;}
._65{width:147.781806pt;}
._3f{width:149.061806pt;}
._3e{width:152.319987pt;}
._78{width:153.890896pt;}
._44{width:155.519987pt;}
._54{width:157.498169pt;}
._6f{width:161.842576pt;}
._56{width:166.807259pt;}
._7d{width:170.550528pt;}
._3c{width:174.894531pt;}
._57{width:176.523622pt;}
._43{width:178.152712pt;}
._42{width:181.441506pt;}
._72{width:183.039985pt;}
._53{width:192.698166pt;}
._47{width:200.843620pt;}
._55{width:202.414529pt;}
._45{width:205.193361pt;}
._5a{width:206.764270pt;}
._31{width:208.552537pt;}
._67{width:210.850892pt;}
._60{width:212.072710pt;}
._6a{width:219.001960pt;}
._77{width:220.572869pt;}
._61{width:221.789072pt;}
._46{width:223.418163pt;}
._63{width:225.396345pt;}
._3b{width:228.369232pt;}
._6e{width:240.481449pt;}
._4a{width:245.759980pt;}
._58{width:254.201957pt;}
._5c{width:256.989069pt;}
._39{width:258.967251pt;}
._36{width:261.327920pt;}
._5d{width:266.763614pt;}
._49{width:268.334523pt;}
._4f{width:270.254523pt;}
._6d{width:273.365941pt;}
._59{width:275.682412pt;}
._50{width:279.970886pt;}
._38{width:281.599977pt;}
._89{width:289.938089pt;}
._86{width:291.327569pt;}
._75{width:294.957008pt;}
._84{width:296.086079pt;}
._8a{width:305.362934pt;}
._85{width:308.247247pt;}
._8d{width:314.996337pt;}
._41{width:318.282301pt;}
._64{width:323.255063pt;}
._88{width:325.649224pt;}
._74{width:329.406264pt;}
._79{width:336.171426pt;}
._8b{width:337.338154pt;}
._52{width:342.195026pt;}
._87{width:343.854517pt;}
._2f{width:349.480039pt;}
._4c{width:363.035353pt;}
._7c{width:367.864443pt;}
._8c{width:373.222438pt;}
._5f{width:374.322624pt;}
._92{width:382.602638pt;}
._8f{width:427.519964pt;}
._83{width:440.843600pt;}
._71{width:447.249214pt;}
._91{width:460.315344pt;}
._48{width:480.878302pt;}
._7a{width:485.707392pt;}
._66{width:490.035014pt;}
._5b{width:492.165574pt;}
._62{width:495.858810pt;}
._4d{width:505.516991pt;}
._37{width:523.664102pt;}
._76{width:528.493192pt;}
._4e{width:534.951373pt;}
._73{width:541.149046pt;}
._4b{width:574.719952pt;}
._8e{width:578.158294pt;}
._7b{width:579.549043pt;}
._5e{width:586.007224pt;}
._82{width:620.944094pt;}
._68{width:659.676629pt;}
._90{width:672.058126pt;}
._69{width:716.741758pt;}
._3a{width:793.658116pt;}
._51{width:806.574478pt;}
.fs6{font-size:2.560000pt;}
.fs18{font-size:26.126400pt;}
.fs12{font-size:31.880427pt;}
.fs19{font-size:31.932267pt;}
.fs1b{font-size:34.834667pt;}
.fs16{font-size:35.831040pt;}
.fsf{font-size:37.193867pt;}
.fs4{font-size:37.333333pt;}
.fs13{font-size:38.102400pt;}
.fs14{font-size:38.318133pt;}
.fs1a{font-size:41.801600pt;}
.fsd{font-size:42.507253pt;}
.fs1c{font-size:42.880000pt;}
.fs17{font-size:43.793493pt;}
.fs15{font-size:45.285067pt;}
.fs8{font-size:53.120000pt;}
.fsc{font-size:53.134080pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fse{font-size:58.181813pt;}
.fs9{font-size:58.880000pt;}
.fs10{font-size:63.760907pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fsb{font-size:76.513067pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs11{font-size:91.815680pt;}
.fsa{font-size:110.200107pt;}
.y0{bottom:0.000000pt;}
.y221{bottom:7.380708pt;}
.y1fd{bottom:15.576549pt;}
.y1cd{bottom:18.662673pt;}
.y19e{bottom:22.311098pt;}
.y21f{bottom:26.228003pt;}
.y1a5{bottom:32.595770pt;}
.y1bf{bottom:33.902839pt;}
.y2c3{bottom:34.346981pt;}
.y21e{bottom:35.386757pt;}
.y1fb{bottom:46.878944pt;}
.y200{bottom:48.667677pt;}
.y1cc{bottom:49.143006pt;}
.y6e{bottom:54.637333pt;}
.y5{bottom:59.133337pt;}
.y1fa{bottom:59.429761pt;}
.y201{bottom:60.932571pt;}
.y1c2{bottom:64.391881pt;}
.y1a4{bottom:70.618917pt;}
.y2c2{bottom:71.672327pt;}
.y202{bottom:73.197464pt;}
.y2bd{bottom:76.523054pt;}
.y1dc{bottom:77.434859pt;}
.y1ce{bottom:79.632048pt;}
.y1a6{bottom:83.293299pt;}
.y203{bottom:85.462357pt;}
.y4{bottom:86.333337pt;}
.y11c{bottom:90.548000pt;}
.y1dd{bottom:93.897231pt;}
.y11b{bottom:94.488000pt;}
.y1cf{bottom:94.872215pt;}
.y358{bottom:95.646667pt;}
.y204{bottom:97.727251pt;}
.y178{bottom:100.252000pt;}
.y13f{bottom:101.062667pt;}
.yf8{bottom:102.626667pt;}
.y2e5{bottom:104.154667pt;}
.y2fe{bottom:104.604000pt;}
.y2ba{bottom:107.536000pt;}
.y49{bottom:108.154880pt;}
.y19c{bottom:108.425333pt;}
.yb4{bottom:108.966667pt;}
.y205{bottom:109.992144pt;}
.y1d5{bottom:110.112381pt;}
.y1de{bottom:110.349650pt;}
.y36f{bottom:110.428000pt;}
.y1a3{bottom:112.866858pt;}
.y3b1{bottom:112.960000pt;}
.yc3{bottom:114.040000pt;}
.y244{bottom:116.805333pt;}
.y13e{bottom:117.002667pt;}
.y318{bottom:117.048000pt;}
.y92{bottom:117.085333pt;}
.y1b9{bottom:118.390667pt;}
.y181{bottom:118.404000pt;}
.yf7{bottom:118.568000pt;}
.y34c{bottom:119.549333pt;}
.y158{bottom:119.982667pt;}
.y6d{bottom:120.194667pt;}
.y206{bottom:122.257037pt;}
.y22{bottom:123.790666pt;}
.y177{bottom:124.154667pt;}
.y48{bottom:124.476000pt;}
.y1c3{bottom:125.361257pt;}
.y11a{bottom:125.738667pt;}
.y1df{bottom:126.812022pt;}
.y2e4{bottom:128.057333pt;}
.y2fd{bottom:128.506667pt;}
.y26{bottom:130.560000pt;}
.y157{bottom:131.101333pt;}
.y36e{bottom:131.189333pt;}
.y2b9{bottom:131.440000pt;}
.y1da{bottom:131.882667pt;}
.y19b{bottom:132.328000pt;}
.y3b0{bottom:132.480000pt;}
.yb3{bottom:132.870667pt;}
.y13d{bottom:132.942667pt;}
.y1a7{bottom:133.990828pt;}
.yf6{bottom:134.508000pt;}
.y207{bottom:134.521931pt;}
.yc2{bottom:137.942667pt;}
.y1c6{bottom:140.601423pt;}
.y243{bottom:140.709333pt;}
.y47{bottom:140.797120pt;}
.y6c{bottom:140.878667pt;}
.y317{bottom:140.950667pt;}
.y91{bottom:140.988000pt;}
.y1b8{bottom:142.294667pt;}
.y1e0{bottom:143.274395pt;}
.y34b{bottom:143.453333pt;}
.y208{bottom:146.786824pt;}
.y176{bottom:148.058667pt;}
.y13c{bottom:148.882667pt;}
.y156{bottom:151.862667pt;}
.y2e3{bottom:151.961333pt;}
.y3af{bottom:152.000000pt;}
.y2fc{bottom:152.409333pt;}
.y36d{bottom:153.564000pt;}
.y1a2{bottom:155.114799pt;}
.yf5{bottom:155.268000pt;}
.y2b8{bottom:155.342667pt;}
.y1bd{bottom:155.841590pt;}
.yb2{bottom:156.773333pt;}
.y46{bottom:156.958880pt;}
.y6b{bottom:158.944000pt;}
.y209{bottom:159.051717pt;}
.y119{bottom:159.158667pt;}
.y1e1{bottom:159.726814pt;}
.yc1{bottom:161.845333pt;}
.y1ba{bottom:164.428000pt;}
.y242{bottom:164.612000pt;}
.y13b{bottom:164.824000pt;}
.y316{bottom:164.854667pt;}
.y90{bottom:164.890667pt;}
.y1b7{bottom:166.197333pt;}
.y180{bottom:166.209333pt;}
.y19a{bottom:166.525333pt;}
.y34a{bottom:167.356000pt;}
.y1d6{bottom:171.081757pt;}
.y20a{bottom:171.316611pt;}
.y3ae{bottom:171.520000pt;}
.y175{bottom:171.961333pt;}
.y118{bottom:172.678667pt;}
.y45{bottom:173.280000pt;}
.y19{bottom:175.052000pt;}
.y155{bottom:175.645333pt;}
.y2e2{bottom:175.864000pt;}
.y1e2{bottom:176.189186pt;}
.y2fb{bottom:176.312000pt;}
.y6a{bottom:177.009333pt;}
.y36c{bottom:177.466667pt;}
.y332{bottom:178.378667pt;}
.yf4{bottom:179.052000pt;}
.y2b7{bottom:179.245333pt;}
.y117{bottom:179.585333pt;}
.y357{bottom:180.640000pt;}
.yb1{bottom:180.676000pt;}
.y13a{bottom:180.764000pt;}
.y20b{bottom:183.581504pt;}
.y1a8{bottom:184.688358pt;}
.yc0{bottom:185.748000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y1d1{bottom:186.330632pt;}
.y241{bottom:188.514667pt;}
.y8f{bottom:188.793333pt;}
.y1b6{bottom:190.100000pt;}
.y17f{bottom:190.112000pt;}
.y44{bottom:190.400000pt;}
.y3ad{bottom:191.040000pt;}
.y1e3{bottom:192.651558pt;}
.y69{bottom:195.074667pt;}
.y114{bottom:195.466667pt;}
.y20c{bottom:195.839140pt;}
.y174{bottom:195.864000pt;}
.y1a1{bottom:197.362740pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y154{bottom:199.549333pt;}
.y2e1{bottom:199.766667pt;}
.y2fa{bottom:200.214667pt;}
.y36b{bottom:201.369333pt;}
.y139{bottom:201.524000pt;}
.y1c8{bottom:201.570799pt;}
.y315{bottom:202.041333pt;}
.y331{bottom:202.281333pt;}
.yf3{bottom:202.954667pt;}
.y2b6{bottom:203.148000pt;}
.y349{bottom:204.542667pt;}
.yb0{bottom:204.578667pt;}
.y20d{bottom:208.104033pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y116{bottom:208.750667pt;}
.y1e4{bottom:209.103978pt;}
.ybf{bottom:209.652000pt;}
.y43{bottom:209.920000pt;}
.y3ac{bottom:210.560000pt;}
.y199{bottom:211.984000pt;}
.y240{bottom:212.417333pt;}
.y8e{bottom:212.697333pt;}
.y115{bottom:212.734667pt;}
.y68{bottom:213.140000pt;}
.y1b5{bottom:214.002667pt;}
.y17e{bottom:214.016000pt;}
.y220{bottom:214.751751pt;}
.y1bc{bottom:216.810965pt;}
.y173{bottom:219.766667pt;}
.y20e{bottom:220.368927pt;}
.y153{bottom:223.452000pt;}
.y2f9{bottom:224.118667pt;}
.y36a{bottom:225.273333pt;}
.y113{bottom:225.280000pt;}
.y138{bottom:225.308000pt;}
.y1e5{bottom:225.566350pt;}
.y2bc{bottom:225.719931pt;}
.y314{bottom:225.944000pt;}
.y330{bottom:226.184000pt;}
.y1fe{bottom:226.632000pt;}
.yf2{bottom:226.857333pt;}
.y2b5{bottom:227.052000pt;}
.y348{bottom:228.445333pt;}
.yaf{bottom:228.482667pt;}
.y42{bottom:229.440000pt;}
.y3ab{bottom:230.080000pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y67{bottom:231.206667pt;}
.y1d7{bottom:232.051132pt;}
.y20f{bottom:232.633820pt;}
.ybe{bottom:233.554667pt;}
.y2e0{bottom:234.309333pt;}
.y1a9{bottom:235.385887pt;}
.y23f{bottom:236.321333pt;}
.y8d{bottom:236.600000pt;}
.y382{bottom:237.586667pt;}
.y1b4{bottom:237.906667pt;}
.y17d{bottom:237.918667pt;}
.y1a0{bottom:239.610681pt;}
.y110{bottom:241.161333pt;}
.y356{bottom:241.729333pt;}
.y1e6{bottom:242.028722pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y172{bottom:243.670667pt;}
.y210{bottom:244.898713pt;}
.y1ca{bottom:247.300007pt;}
.y152{bottom:247.354667pt;}
.y2f8{bottom:248.021333pt;}
.y41{bottom:248.960000pt;}
.y369{bottom:249.176000pt;}
.y137{bottom:249.210667pt;}
.y66{bottom:249.272000pt;}
.y295{bottom:249.556000pt;}
.y3aa{bottom:249.600000pt;}
.yf1{bottom:250.761333pt;}
.y2b4{bottom:250.954667pt;}
.y25f{bottom:251.097333pt;}
.yae{bottom:252.385333pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y112{bottom:254.445333pt;}
.y381{bottom:255.652000pt;}
.y211{bottom:257.163607pt;}
.ybd{bottom:257.457333pt;}
.y111{bottom:258.430667pt;}
.y1e7{bottom:258.481141pt;}
.y1db{bottom:259.176000pt;}
.y23e{bottom:260.224000pt;}
.y8c{bottom:260.502667pt;}
.y1b3{bottom:261.809333pt;}
.y17c{bottom:261.821333pt;}
.y32f{bottom:262.268000pt;}
.y2c4{bottom:262.468000pt;}
.y1bb{bottom:262.540174pt;}
.y313{bottom:263.130667pt;}
.y2df{bottom:263.390667pt;}
.y347{bottom:265.632000pt;}
.y65{bottom:267.337333pt;}
.y171{bottom:267.573333pt;}
.y40{bottom:268.480000pt;}
.y3a9{bottom:269.120000pt;}
.y212{bottom:269.428500pt;}
.y10f{bottom:270.976000pt;}
.y151{bottom:271.257333pt;}
.y2f7{bottom:271.924000pt;}
.y198{bottom:272.270667pt;}
.y136{bottom:273.113333pt;}
.y380{bottom:273.717333pt;}
.yf0{bottom:274.664000pt;}
.y2b3{bottom:274.857333pt;}
.y1e8{bottom:274.943514pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yad{bottom:276.288000pt;}
.y1c9{bottom:277.780341pt;}
.y294{bottom:278.637333pt;}
.y25e{bottom:280.178667pt;}
.ybc{bottom:281.360000pt;}
.y2de{bottom:281.456000pt;}
.y213{bottom:281.693393pt;}
.y19f{bottom:281.858622pt;}
.y23d{bottom:284.126667pt;}
.y8b{bottom:284.405333pt;}
.y368{bottom:284.953333pt;}
.y2c0{bottom:285.156581pt;}
.y64{bottom:285.402667pt;}
.y1b2{bottom:285.712000pt;}
.y17b{bottom:285.724000pt;}
.y1aa{bottom:286.083416pt;}
.y32e{bottom:286.172000pt;}
.y10c{bottom:286.857333pt;}
.y312{bottom:287.033333pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y3f{bottom:288.000000pt;}
.y3a8{bottom:288.640000pt;}
.y346{bottom:289.534667pt;}
.y1e9{bottom:291.405886pt;}
.y170{bottom:291.476000pt;}
.y37f{bottom:291.782667pt;}
.y2c1{bottom:292.045137pt;}
.y1d3{bottom:293.020507pt;}
.y214{bottom:293.958287pt;}
.y2be{bottom:295.012000pt;}
.y150{bottom:295.161333pt;}
.y2f6{bottom:295.826667pt;}
.y197{bottom:296.174667pt;}
.y293{bottom:296.702667pt;}
.y135{bottom:297.016000pt;}
.y25d{bottom:298.244000pt;}
.yef{bottom:298.566667pt;}
.y2b2{bottom:298.760000pt;}
.y2dd{bottom:299.521333pt;}
.y1fc{bottom:299.975476pt;}
.y10e{bottom:300.140000pt;}
.yac{bottom:300.190667pt;}
.y63{bottom:303.468000pt;}
.y10d{bottom:304.125333pt;}
.y222{bottom:304.268000pt;}
.y215{bottom:306.223180pt;}
.y3e{bottom:307.520000pt;}
.y2bf{bottom:307.781697pt;}
.y1ea{bottom:307.868258pt;}
.y23c{bottom:308.029333pt;}
.y3a7{bottom:308.160000pt;}
.y1be{bottom:308.269383pt;}
.y8a{bottom:308.309333pt;}
.y367{bottom:308.856000pt;}
.y10{bottom:309.452000pt;}
.y1b1{bottom:309.614667pt;}
.y17a{bottom:309.628000pt;}
.y37e{bottom:309.848000pt;}
.y311{bottom:310.936000pt;}
.y345{bottom:313.437333pt;}
.y292{bottom:314.768000pt;}
.y16f{bottom:315.378667pt;}
.ybb{bottom:315.558667pt;}
.y25c{bottom:316.309333pt;}
.y2dc{bottom:317.586667pt;}
.y216{bottom:318.488073pt;}
.y14f{bottom:319.064000pt;}
.y2f5{bottom:319.730667pt;}
.y196{bottom:320.077333pt;}
.y134{bottom:320.920000pt;}
.y62{bottom:321.534667pt;}
.y32d{bottom:322.256000pt;}
.yee{bottom:322.469333pt;}
.y10b{bottom:322.513333pt;}
.y1c4{bottom:323.509549pt;}
.yab{bottom:324.094667pt;}
.y1eb{bottom:324.320677pt;}
.y3d{bottom:327.040000pt;}
.y3a6{bottom:327.840000pt;}
.y217{bottom:330.752967pt;}
.y23b{bottom:331.933333pt;}
.y89{bottom:332.212000pt;}
.y366{bottom:332.760000pt;}
.y291{bottom:332.834667pt;}
.y2b1{bottom:332.958667pt;}
.y1b0{bottom:333.517333pt;}
.y25b{bottom:334.374667pt;}
.y37d{bottom:335.900000pt;}
.y1ff{bottom:336.813333pt;}
.y355{bottom:337.341333pt;}
.y1d4{bottom:338.749716pt;}
.y16e{bottom:339.281333pt;}
.y61{bottom:339.600000pt;}
.y1ec{bottom:340.783050pt;}
.y14e{bottom:342.966667pt;}
.y218{bottom:343.017860pt;}
.y2f4{bottom:343.633333pt;}
.y2db{bottom:343.638667pt;}
.yf{bottom:343.809333pt;}
.y179{bottom:343.825333pt;}
.y195{bottom:343.980000pt;}
.y133{bottom:344.822667pt;}
.y32c{bottom:346.158667pt;}
.yed{bottom:346.372000pt;}
.y3c{bottom:346.720000pt;}
.y3a5{bottom:347.360000pt;}
.yaa{bottom:347.997333pt;}
.y310{bottom:348.122667pt;}
.y344{bottom:350.624000pt;}
.y1d0{bottom:353.989883pt;}
.y219{bottom:355.282753pt;}
.y23a{bottom:355.836000pt;}
.y88{bottom:356.114667pt;}
.y1ed{bottom:357.245422pt;}
.y1af{bottom:357.421333pt;}
.y60{bottom:357.665333pt;}
.y290{bottom:358.886667pt;}
.y25a{bottom:360.426667pt;}
.y37c{bottom:361.640000pt;}
.y2da{bottom:361.704000pt;}
.ye{bottom:362.706666pt;}
.y16d{bottom:363.185333pt;}
.y3b{bottom:366.240000pt;}
.y3a4{bottom:366.880000pt;}
.yba{bottom:367.536000pt;}
.y21a{bottom:367.547647pt;}
.y194{bottom:367.882667pt;}
.y365{bottom:368.537333pt;}
.y132{bottom:368.725333pt;}
.y1c0{bottom:369.230049pt;}
.yec{bottom:370.276000pt;}
.ya9{bottom:371.900000pt;}
.y30f{bottom:372.025333pt;}
.y1ee{bottom:373.697841pt;}
.y343{bottom:374.528000pt;}
.y5f{bottom:375.730667pt;}
.y28f{bottom:376.952000pt;}
.y14d{bottom:377.164000pt;}
.y259{bottom:378.492000pt;}
.y239{bottom:379.738667pt;}
.y2d9{bottom:379.770667pt;}
.y21b{bottom:379.812540pt;}
.y87{bottom:380.017333pt;}
.y1ae{bottom:381.324000pt;}
.y32b{bottom:382.242667pt;}
.y1d2{bottom:384.478925pt;}
.y3a{bottom:385.760000pt;}
.y3a3{bottom:386.400000pt;}
.y16c{bottom:387.088000pt;}
.y10a{bottom:390.101333pt;}
.y1ef{bottom:390.160213pt;}
.yb9{bottom:391.438667pt;}
.y193{bottom:391.785333pt;}
.y21c{bottom:392.077433pt;}
.y364{bottom:392.440000pt;}
.y131{bottom:392.628000pt;}
.y5e{bottom:393.796000pt;}
.yeb{bottom:394.178667pt;}
.y28e{bottom:395.017333pt;}
.ya8{bottom:395.802667pt;}
.y30e{bottom:395.928000pt;}
.y258{bottom:396.558667pt;}
.y354{bottom:398.430667pt;}
.y37b{bottom:399.390667pt;}
.y1c5{bottom:399.719091pt;}
.y27a{bottom:400.988000pt;}
.y238{bottom:403.641333pt;}
.y86{bottom:403.921333pt;}
.y2b0{bottom:404.069333pt;}
.y21d{bottom:404.342327pt;}
.y1ad{bottom:405.226667pt;}
.y39{bottom:405.280000pt;}
.y2d8{bottom:405.822667pt;}
.y3a2{bottom:405.920000pt;}
.y32a{bottom:406.146667pt;}
.y1f0{bottom:406.622586pt;}
.y342{bottom:411.713333pt;}
.y5d{bottom:411.862667pt;}
.y109{bottom:414.004000pt;}
.y1d8{bottom:414.959258pt;}
.yb8{bottom:415.342667pt;}
.y192{bottom:415.689333pt;}
.y363{bottom:416.342667pt;}
.y130{bottom:416.532000pt;}
.yea{bottom:418.081333pt;}
.ya7{bottom:419.706667pt;}
.y28d{bottom:421.069333pt;}
.y353{bottom:422.333333pt;}
.y257{bottom:422.610667pt;}
.y1f1{bottom:423.075005pt;}
.y2d7{bottom:423.888000pt;}
.y38{bottom:424.800000pt;}
.y3a1{bottom:425.440000pt;}
.y16b{bottom:425.540000pt;}
.y237{bottom:427.544000pt;}
.y85{bottom:427.824000pt;}
.y1ac{bottom:429.129333pt;}
.y14c{bottom:429.142667pt;}
.y5c{bottom:429.928000pt;}
.y279{bottom:430.069333pt;}
.y1cb{bottom:430.199425pt;}
.y30d{bottom:433.114667pt;}
.y2af{bottom:433.150667pt;}
.y341{bottom:435.617333pt;}
.y16a{bottom:436.168000pt;}
.y169{bottom:436.474667pt;}
.y108{bottom:437.906667pt;}
.y28c{bottom:439.134667pt;}
.yb7{bottom:439.245333pt;}
.y1f2{bottom:439.537377pt;}
.y362{bottom:440.246667pt;}
.y12f{bottom:440.434667pt;}
.y256{bottom:440.676000pt;}
.y2d6{bottom:441.953333pt;}
.ye9{bottom:441.984000pt;}
.y329{bottom:442.230667pt;}
.y37a{bottom:442.250667pt;}
.y191{bottom:443.170667pt;}
.ya6{bottom:443.609333pt;}
.y37{bottom:444.320000pt;}
.y3a0{bottom:444.960000pt;}
.y1c7{bottom:445.448300pt;}
.y352{bottom:446.236000pt;}
.yd{bottom:446.990669pt;}
.y5b{bottom:447.993333pt;}
.y278{bottom:448.134667pt;}
.y2ae{bottom:451.216000pt;}
.y236{bottom:451.448000pt;}
.y84{bottom:451.726667pt;}
.y14b{bottom:453.045333pt;}
.y190{bottom:454.105333pt;}
.y1f3{bottom:455.999749pt;}
.y30c{bottom:457.018667pt;}
.y28b{bottom:457.201333pt;}
.y255{bottom:458.741333pt;}
.y340{bottom:459.520000pt;}
.y2d5{bottom:460.018667pt;}
.y1c1{bottom:460.688467pt;}
.y107{bottom:461.810667pt;}
.yc{bottom:462.990669pt;}
.yb6{bottom:463.148000pt;}
.y36{bottom:463.840000pt;}
.y12e{bottom:464.337333pt;}
.y39f{bottom:464.480000pt;}
.ye8{bottom:465.888000pt;}
.y5a{bottom:466.058667pt;}
.y328{bottom:466.133333pt;}
.y379{bottom:466.154667pt;}
.y277{bottom:466.200000pt;}
.ya5{bottom:467.512000pt;}
.y1ab{bottom:468.188000pt;}
.y2ad{bottom:469.281333pt;}
.y1f4{bottom:472.452169pt;}
.y28a{bottom:475.266667pt;}
.y235{bottom:475.350667pt;}
.y83{bottom:475.629333pt;}
.y361{bottom:476.024000pt;}
.y254{bottom:476.806667pt;}
.y14a{bottom:476.948000pt;}
.y2d4{bottom:478.084000pt;}
.yb{bottom:478.990666pt;}
.y35{bottom:483.360000pt;}
.y351{bottom:483.422667pt;}
.y39e{bottom:484.000000pt;}
.y59{bottom:484.124000pt;}
.y276{bottom:484.265333pt;}
.y168{bottom:484.594667pt;}
.y106{bottom:485.713333pt;}
.y2f3{bottom:487.050667pt;}
.y2ac{bottom:487.348000pt;}
.y12d{bottom:488.240000pt;}
.y1d9{bottom:488.721665pt;}
.y1f5{bottom:488.914541pt;}
.ye7{bottom:489.790667pt;}
.y378{bottom:490.057333pt;}
.ya4{bottom:491.414667pt;}
.y289{bottom:493.332000pt;}
.y30b{bottom:494.204000pt;}
.y253{bottom:494.873333pt;}
.ya{bottom:494.990666pt;}
.y2d3{bottom:496.150667pt;}
.y33f{bottom:496.706667pt;}
.y234{bottom:499.253333pt;}
.y82{bottom:499.533333pt;}
.y360{bottom:499.926667pt;}
.y19d{bottom:500.732000pt;}
.y149{bottom:500.850667pt;}
.y18f{bottom:501.910667pt;}
.y327{bottom:502.217333pt;}
.yb5{bottom:502.836000pt;}
.y34{bottom:502.880000pt;}
.y39d{bottom:503.520000pt;}
.y1f6{bottom:505.376913pt;}
.y350{bottom:507.325333pt;}
.y167{bottom:508.497333pt;}
.y105{bottom:509.616000pt;}
.ye5{bottom:509.753333pt;}
.ye6{bottom:510.033333pt;}
.y275{bottom:510.318667pt;}
.y2f2{bottom:510.953333pt;}
.y288{bottom:511.397333pt;}
.y12c{bottom:512.144000pt;}
.y252{bottom:512.938667pt;}
.y2ab{bottom:513.400000pt;}
.ye4{bottom:513.693333pt;}
.y377{bottom:513.960000pt;}
.y2d2{bottom:514.216000pt;}
.ya3{bottom:515.317333pt;}
.y30a{bottom:518.108000pt;}
.y33e{bottom:520.609333pt;}
.y1f7{bottom:521.829332pt;}
.y33{bottom:522.400000pt;}
.y39c{bottom:523.040000pt;}
.y233{bottom:523.156000pt;}
.y81{bottom:523.436000pt;}
.y35f{bottom:523.829333pt;}
.y148{bottom:524.754667pt;}
.y18e{bottom:525.813333pt;}
.y326{bottom:526.120000pt;}
.y274{bottom:528.384000pt;}
.y58{bottom:529.161333pt;}
.y287{bottom:529.462667pt;}
.y251{bottom:531.004000pt;}
.y2aa{bottom:531.465333pt;}
.y2d1{bottom:532.281333pt;}
.y166{bottom:532.401333pt;}
.y104{bottom:533.518667pt;}
.y2f1{bottom:534.857333pt;}
.y12b{bottom:536.046667pt;}
.y376{bottom:537.862667pt;}
.y1f8{bottom:538.291705pt;}
.ya2{bottom:539.221333pt;}
.yde{bottom:541.854667pt;}
.y32{bottom:541.920000pt;}
.y309{bottom:542.010667pt;}
.y39b{bottom:542.560000pt;}
.y33d{bottom:544.512000pt;}
.ydd{bottom:544.665333pt;}
.y2bb{bottom:545.821600pt;}
.y273{bottom:546.449333pt;}
.y232{bottom:547.060000pt;}
.y80{bottom:547.338667pt;}
.y286{bottom:547.529333pt;}
.ye2{bottom:547.626667pt;}
.y147{bottom:548.657333pt;}
.y250{bottom:549.069333pt;}
.y2a9{bottom:549.530667pt;}
.y18d{bottom:549.717333pt;}
.y325{bottom:550.024000pt;}
.y2d0{bottom:550.346667pt;}
.ye1{bottom:551.372000pt;}
.y1f9{bottom:554.754077pt;}
.yd0{bottom:555.798667pt;}
.ydb{bottom:556.154667pt;}
.y165{bottom:556.304000pt;}
.y9{bottom:556.986668pt;}
.y103{bottom:557.422667pt;}
.y2f0{bottom:558.760000pt;}
.y35e{bottom:559.608000pt;}
.ycf{bottom:559.784000pt;}
.yda{bottom:559.814667pt;}
.y12a{bottom:559.949333pt;}
.y31{bottom:561.440000pt;}
.y375{bottom:561.766667pt;}
.y39a{bottom:562.080000pt;}
.ydc{bottom:562.820000pt;}
.ya1{bottom:563.124000pt;}
.yce{bottom:563.769333pt;}
.ye0{bottom:564.596000pt;}
.yd9{bottom:564.988000pt;}
.y285{bottom:565.594667pt;}
.y24f{bottom:567.134667pt;}
.ycd{bottom:567.753333pt;}
.ydf{bottom:568.341333pt;}
.y2cf{bottom:568.412000pt;}
.y34f{bottom:568.414667pt;}
.y231{bottom:570.962667pt;}
.y7f{bottom:571.241333pt;}
.ycc{bottom:571.738667pt;}
.y272{bottom:572.501333pt;}
.y146{bottom:572.560000pt;}
.y18c{bottom:573.620000pt;}
.y8{bottom:573.786667pt;}
.y2a8{bottom:575.582667pt;}
.ycb{bottom:575.724000pt;}
.y308{bottom:579.197333pt;}
.y164{bottom:580.206667pt;}
.y102{bottom:581.325333pt;}
.y399{bottom:581.600000pt;}
.y33c{bottom:581.698667pt;}
.y30{bottom:581.750240pt;}
.y2ef{bottom:582.662667pt;}
.y35d{bottom:583.510667pt;}
.y284{bottom:583.660000pt;}
.ye3{bottom:583.694667pt;}
.y129{bottom:583.852000pt;}
.y24e{bottom:585.200000pt;}
.y324{bottom:586.108000pt;}
.y2ce{bottom:586.478667pt;}
.ya0{bottom:587.026667pt;}
.y271{bottom:590.566667pt;}
.y7{bottom:592.685334pt;}
.y2a7{bottom:593.648000pt;}
.y230{bottom:594.865333pt;}
.y7e{bottom:595.144000pt;}
.y145{bottom:596.462667pt;}
.y374{bottom:598.952000pt;}
.yca{bottom:599.634667pt;}
.y18b{bottom:600.893333pt;}
.y398{bottom:601.280000pt;}
.y283{bottom:601.725333pt;}
.y307{bottom:603.100000pt;}
.y24d{bottom:603.266667pt;}
.yc9{bottom:603.620000pt;}
.y18a{bottom:604.065333pt;}
.y163{bottom:604.109333pt;}
.y2f{bottom:604.476320pt;}
.y2cd{bottom:604.544000pt;}
.yd8{bottom:604.857333pt;}
.y33b{bottom:605.601333pt;}
.y101{bottom:605.766667pt;}
.y2ee{bottom:606.565333pt;}
.yd7{bottom:606.753333pt;}
.y35c{bottom:607.413333pt;}
.yc8{bottom:607.605333pt;}
.y128{bottom:607.756000pt;}
.y270{bottom:608.633333pt;}
.y57{bottom:609.529333pt;}
.y323{bottom:610.010667pt;}
.y9f{bottom:610.929333pt;}
.yd3{bottom:611.254667pt;}
.yd4{bottom:611.536000pt;}
.yc7{bottom:611.589333pt;}
.y2a6{bottom:611.714667pt;}
.y188{bottom:613.705333pt;}
.yd2{bottom:615.196000pt;}
.yc6{bottom:615.574667pt;}
.y187{bottom:616.876000pt;}
.y22f{bottom:618.768000pt;}
.y7d{bottom:619.048000pt;}
.yc5{bottom:619.560000pt;}
.y282{bottom:619.790667pt;}
.yd6{bottom:619.977333pt;}
.y144{bottom:620.366667pt;}
.yd1{bottom:620.369333pt;}
.y397{bottom:620.800000pt;}
.y24c{bottom:621.332000pt;}
.yfe{bottom:621.648000pt;}
.yd5{bottom:621.874667pt;}
.y2cc{bottom:622.609333pt;}
.y189{bottom:624.786667pt;}
.y26f{bottom:626.698667pt;}
.y306{bottom:627.002667pt;}
.y2e{bottom:627.352160pt;}
.y162{bottom:628.013333pt;}
.y34e{bottom:629.505333pt;}
.y2a5{bottom:629.780000pt;}
.y2ed{bottom:630.469333pt;}
.y35b{bottom:631.317333pt;}
.yc4{bottom:631.516000pt;}
.y127{bottom:631.658667pt;}
.y322{bottom:633.913333pt;}
.y9e{bottom:634.833333pt;}
.y100{bottom:634.930667pt;}
.y373{bottom:636.138667pt;}
.y281{bottom:637.856000pt;}
.yff{bottom:638.916000pt;}
.y24b{bottom:639.397333pt;}
.y396{bottom:640.320000pt;}
.y22e{bottom:642.672000pt;}
.y33a{bottom:642.788000pt;}
.y7c{bottom:642.950667pt;}
.y143{bottom:644.269333pt;}
.y26e{bottom:644.764000pt;}
.y6{bottom:645.598667pt;}
.y2a4{bottom:647.845333pt;}
.y2cb{bottom:648.661333pt;}
.y2d{bottom:649.760000pt;}
.y305{bottom:650.905333pt;}
.y161{bottom:651.916000pt;}
.y34d{bottom:653.408000pt;}
.y2ec{bottom:654.372000pt;}
.y280{bottom:655.922667pt;}
.y24a{bottom:657.462667pt;}
.y9d{bottom:658.736000pt;}
.y395{bottom:659.840000pt;}
.y26d{bottom:662.829333pt;}
.y126{bottom:665.856000pt;}
.y2a3{bottom:665.910667pt;}
.y22d{bottom:666.574667pt;}
.y339{bottom:666.690667pt;}
.y2ca{bottom:666.726667pt;}
.y7b{bottom:666.853333pt;}
.y186{bottom:668.125333pt;}
.y142{bottom:668.172000pt;}
.y3{bottom:668.977329pt;}
.yfd{bottom:669.453333pt;}
.y321{bottom:669.997333pt;}
.y56{bottom:671.586667pt;}
.y372{bottom:673.325333pt;}
.y27f{bottom:673.988000pt;}
.y2c{bottom:674.559040pt;}
.y249{bottom:675.528000pt;}
.y35a{bottom:677.310667pt;}
.y2eb{bottom:678.274667pt;}
.y394{bottom:679.360000pt;}
.y26c{bottom:680.894667pt;}
.y9c{bottom:682.638667pt;}
.y2a2{bottom:683.976000pt;}
.y2c9{bottom:684.792000pt;}
.y160{bottom:686.113333pt;}
.y304{bottom:688.092000pt;}
.y22c{bottom:690.477333pt;}
.y338{bottom:690.594667pt;}
.y7a{bottom:690.756000pt;}
.y185{bottom:692.029333pt;}
.y141{bottom:692.074667pt;}
.yfc{bottom:693.356000pt;}
.y320{bottom:693.901333pt;}
.y55{bottom:694.006667pt;}
.y2b{bottom:697.434880pt;}
.y393{bottom:698.880000pt;}
.y26b{bottom:698.960000pt;}
.y27e{bottom:700.040000pt;}
.y248{bottom:701.581333pt;}
.y2a1{bottom:702.042667pt;}
.y2ea{bottom:702.177333pt;}
.y9b{bottom:706.541333pt;}
.y371{bottom:710.512000pt;}
.y125{bottom:711.313333pt;}
.y303{bottom:711.996000pt;}
.y22b{bottom:714.380000pt;}
.y337{bottom:714.497333pt;}
.y79{bottom:714.660000pt;}
.y184{bottom:715.932000pt;}
.y54{bottom:716.425333pt;}
.y26a{bottom:717.026667pt;}
.yfb{bottom:717.260000pt;}
.y31f{bottom:717.804000pt;}
.y27d{bottom:718.105333pt;}
.y392{bottom:718.400000pt;}
.y247{bottom:719.646667pt;}
.y2a0{bottom:720.108000pt;}
.y2a{bottom:720.160960pt;}
.y2e9{bottom:726.081333pt;}
.y140{bottom:726.273333pt;}
.y9a{bottom:730.445333pt;}
.y2c8{bottom:731.368000pt;}
.y15f{bottom:731.572000pt;}
.y269{bottom:735.092000pt;}
.y302{bottom:735.898667pt;}
.y27c{bottom:736.170667pt;}
.y246{bottom:737.712000pt;}
.y391{bottom:737.920000pt;}
.y29f{bottom:738.173333pt;}
.y22a{bottom:738.284000pt;}
.y359{bottom:738.400000pt;}
.y78{bottom:738.562667pt;}
.y183{bottom:739.834667pt;}
.yfa{bottom:741.162667pt;}
.y29{bottom:743.036800pt;}
.y370{bottom:747.698667pt;}
.y53{bottom:749.174667pt;}
.y2e8{bottom:749.984000pt;}
.y336{bottom:751.684000pt;}
.y268{bottom:753.157333pt;}
.y31e{bottom:753.888000pt;}
.y99{bottom:754.348000pt;}
.y29e{bottom:756.238667pt;}
.y390{bottom:757.440000pt;}
.y28{bottom:760.802080pt;}
.y229{bottom:762.186667pt;}
.y77{bottom:762.465333pt;}
.y182{bottom:767.316000pt;}
.y267{bottom:771.222667pt;}
.y124{bottom:771.601333pt;}
.y301{bottom:773.085333pt;}
.y2e7{bottom:773.886667pt;}
.y29d{bottom:774.304000pt;}
.yf9{bottom:775.360000pt;}
.y335{bottom:775.586667pt;}
.y38f{bottom:776.960000pt;}
.y31d{bottom:777.790667pt;}
.y98{bottom:778.250667pt;}
.y52{bottom:778.846667pt;}
.y2{bottom:781.661334pt;}
.y27b{bottom:783.632000pt;}
.y245{bottom:784.274667pt;}
.y228{bottom:786.089333pt;}
.y2c7{bottom:786.273333pt;}
.y76{bottom:786.368000pt;}
.y266{bottom:789.288000pt;}
.y15e{bottom:791.858667pt;}
.y29c{bottom:792.369333pt;}
.y123{bottom:795.504000pt;}
.y38e{bottom:796.480000pt;}
.y300{bottom:796.988000pt;}
.y334{bottom:799.489333pt;}
.y31c{bottom:801.694667pt;}
.y97{bottom:802.153333pt;}
.y265{bottom:807.354667pt;}
.y227{bottom:809.992000pt;}
.y75{bottom:810.272000pt;}
.y29b{bottom:810.436000pt;}
.y2e6{bottom:813.574667pt;}
.y2c6{bottom:815.437333pt;}
.y122{bottom:815.466667pt;}
.y15d{bottom:815.761333pt;}
.y38d{bottom:816.000000pt;}
.y121{bottom:819.408000pt;}
.y2c5{bottom:819.422667pt;}
.y2ff{bottom:820.890667pt;}
.y264{bottom:825.420000pt;}
.y31b{bottom:825.597333pt;}
.y96{bottom:826.057333pt;}
.y29a{bottom:828.501333pt;}
.y51{bottom:831.932000pt;}
.y226{bottom:833.894667pt;}
.y74{bottom:834.174667pt;}
.y38c{bottom:835.520000pt;}
.y333{bottom:836.676000pt;}
.y27{bottom:837.760000pt;}
.y15c{bottom:839.665333pt;}
.y95{bottom:849.960000pt;}
.y263{bottom:851.472000pt;}
.y299{bottom:854.553333pt;}
.y38b{bottom:855.040000pt;}
.y25{bottom:855.520000pt;}
.y225{bottom:857.798667pt;}
.y73{bottom:858.077333pt;}
.y1{bottom:859.312000pt;}
.y120{bottom:860.578667pt;}
.y31a{bottom:861.681333pt;}
.y15b{bottom:863.568000pt;}
.y262{bottom:869.537333pt;}
.y298{bottom:872.618667pt;}
.y50{bottom:873.144000pt;}
.y94{bottom:873.862667pt;}
.y38a{bottom:874.720000pt;}
.y224{bottom:881.701333pt;}
.y72{bottom:881.980000pt;}
.y4f{bottom:884.160000pt;}
.y11f{bottom:884.482667pt;}
.y319{bottom:885.584000pt;}
.y15a{bottom:887.470667pt;}
.y261{bottom:887.602667pt;}
.y297{bottom:890.684000pt;}
.y389{bottom:894.240000pt;}
.y93{bottom:897.765333pt;}
.y4e{bottom:902.560000pt;}
.y11e{bottom:904.444000pt;}
.y71{bottom:905.882667pt;}
.y11d{bottom:908.385333pt;}
.y159{bottom:911.373333pt;}
.y388{bottom:913.760000pt;}
.y223{bottom:915.898667pt;}
.y70{bottom:921.668000pt;}
.y387{bottom:933.280000pt;}
.y260{bottom:935.064000pt;}
.y296{bottom:937.248000pt;}
.y4d{bottom:939.360000pt;}
.y6f{bottom:945.572000pt;}
.y386{bottom:952.800000pt;}
.y4c{bottom:957.760000pt;}
.y385{bottom:972.320000pt;}
.y4b{bottom:991.680000pt;}
.y384{bottom:991.840000pt;}
.y24{bottom:1008.800000pt;}
.y383{bottom:1011.360000pt;}
.y4a{bottom:1011.680000pt;}
.y23{bottom:1060.640000pt;}
.hd{height:1.706250pt;}
.h24{height:22.107482pt;}
.h1a{height:25.068666pt;}
.h45{height:27.249019pt;}
.h7{height:28.560000pt;}
.h17{height:31.880440pt;}
.h46{height:33.304356pt;}
.h3c{height:35.397130pt;}
.h4c{height:36.331469pt;}
.h33{height:36.875052pt;}
.h42{height:37.370655pt;}
.h1e{height:38.362806pt;}
.h27{height:39.464440pt;}
.h2e{height:39.850560pt;}
.h13{height:39.905000pt;}
.h3e{height:39.964616pt;}
.h18{height:40.610906pt;}
.h6{height:40.800000pt;}
.h47{height:41.018178pt;}
.h11{height:42.122500pt;}
.h3{height:42.840000pt;}
.h2a{height:42.864987pt;}
.h12{height:43.375000pt;}
.h4b{height:43.597763pt;}
.h19{height:43.636360pt;}
.h4d{height:43.750000pt;}
.h9{height:44.437500pt;}
.h25{height:44.533472pt;}
.h43{height:45.675245pt;}
.hf{height:46.468750pt;}
.h23{height:46.518320pt;}
.h26{height:46.523653pt;}
.h2c{height:46.861773pt;}
.h40{height:47.230909pt;}
.h2f{height:47.820680pt;}
.h2{height:48.960000pt;}
.hc{height:49.907812pt;}
.h10{height:50.750000pt;}
.h49{height:52.989773pt;}
.h48{height:52.995107pt;}
.h1d{height:53.559147pt;}
.ha{height:54.368437pt;}
.h1f{height:55.016440pt;}
.he{height:57.688750pt;}
.h1b{height:57.703621pt;}
.h39{height:62.104440pt;}
.h1c{height:64.270976pt;}
.h28{height:64.467107pt;}
.h16{height:69.244325pt;}
.h5{height:69.360000pt;}
.h21{height:69.656440pt;}
.h37{height:69.696815pt;}
.h29{height:72.343621pt;}
.h31{height:73.463621pt;}
.h32{height:73.468954pt;}
.h15{height:77.911475pt;}
.h2d{height:80.232440pt;}
.h30{height:80.869472pt;}
.h22{height:87.008139pt;}
.h3a{height:90.951347pt;}
.h34{height:90.956680pt;}
.h2b{height:93.280139pt;}
.h20{height:96.634806pt;}
.h4{height:105.826671pt;}
.h38{height:119.117773pt;}
.h36{height:124.005472pt;}
.h35{height:133.104139pt;}
.hb{height:148.320000pt;}
.h4a{height:250.809600pt;}
.h3b{height:329.204736pt;}
.h44{height:418.022400pt;}
.h3d{height:486.230986pt;}
.h3f{height:501.619200pt;}
.h41{height:573.296640pt;}
.h14{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:14.720000pt;}
.w8{width:14.880000pt;}
.w4{width:84.480000pt;}
.w6{width:116.800000pt;}
.w7{width:230.400000pt;}
.wf{width:250.809600pt;}
.w9{width:356.480000pt;}
.wb{width:438.939648pt;}
.wc{width:501.619200pt;}
.wd{width:501.634560pt;}
.w2{width:566.928019pt;}
.we{width:627.033600pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.wa{width:816.000000pt;}
.x0{left:0.000000pt;}
.x62{left:8.961218pt;}
.x61{left:10.023675pt;}
.x60{left:11.704448pt;}
.x64{left:12.671110pt;}
.x63{left:14.282213pt;}
.x70{left:15.690355pt;}
.x6f{left:17.446629pt;}
.x9{left:18.560000pt;}
.x67{left:19.935993pt;}
.x6a{left:20.931299pt;}
.x69{left:21.916653pt;}
.x68{left:23.927172pt;}
.x89{left:30.184239pt;}
.x5c{left:36.084164pt;}
.x7{left:37.760000pt;}
.x5b{left:42.141850pt;}
.x5a{left:52.462793pt;}
.x71{left:64.387061pt;}
.x6d{left:75.125747pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:96.000000pt;}
.x1f{left:101.245333pt;}
.x6{left:103.200000pt;}
.xf{left:104.480000pt;}
.x8b{left:109.311184pt;}
.x1d{left:112.440000pt;}
.x14{left:115.001333pt;}
.x1e{left:118.398667pt;}
.x8a{left:119.395820pt;}
.x6b{left:125.120001pt;}
.xc{left:126.400000pt;}
.x17{left:129.289333pt;}
.xb{left:131.840000pt;}
.x1b{left:134.338667pt;}
.x1c{left:140.552000pt;}
.x79{left:143.504000pt;}
.x78{left:147.413333pt;}
.x4c{left:148.360000pt;}
.x4e{left:151.897333pt;}
.x52{left:153.685333pt;}
.x1a{left:156.157333pt;}
.x5f{left:157.189333pt;}
.x94{left:161.404000pt;}
.x13{left:162.708000pt;}
.x36{left:164.054667pt;}
.x6c{left:168.415841pt;}
.x7a{left:170.709333pt;}
.x77{left:173.980052pt;}
.x82{left:175.569333pt;}
.x4{left:180.874667pt;}
.x8{left:187.680000pt;}
.x81{left:189.333333pt;}
.x3b{left:197.030667pt;}
.x6e{left:199.006667pt;}
.x83{left:200.442667pt;}
.xa{left:202.400000pt;}
.x12{left:210.082880pt;}
.x8e{left:215.141333pt;}
.x7e{left:216.908000pt;}
.x3d{left:229.169333pt;}
.x47{left:232.520000pt;}
.x3c{left:235.337333pt;}
.x93{left:248.864000pt;}
.x3e{left:251.013333pt;}
.x37{left:258.026667pt;}
.x8d{left:262.328000pt;}
.x20{left:264.370667pt;}
.x16{left:266.946667pt;}
.x5e{left:269.664000pt;}
.x66{left:278.672000pt;}
.x8c{left:280.993839pt;}
.x22{left:282.820000pt;}
.x8f{left:284.168000pt;}
.x21{left:286.566667pt;}
.x86{left:289.358667pt;}
.x23{left:292.924000pt;}
.x90{left:299.844000pt;}
.x96{left:301.373333pt;}
.x2c{left:302.644000pt;}
.x2b{left:306.434667pt;}
.x87{left:312.465333pt;}
.x40{left:313.576000pt;}
.x2d{left:315.005333pt;}
.x3f{left:319.744000pt;}
.x48{left:321.564000pt;}
.x76{left:323.227112pt;}
.x88{left:325.394667pt;}
.xd{left:326.400000pt;}
.x73{left:327.697629pt;}
.x72{left:328.778972pt;}
.x18{left:329.962667pt;}
.x74{left:330.963429pt;}
.x7d{left:332.264000pt;}
.x41{left:335.420000pt;}
.x4b{left:336.361333pt;}
.xe{left:341.280000pt;}
.x38{left:343.857333pt;}
.x84{left:346.321333pt;}
.x49{left:347.702667pt;}
.x2e{left:353.892000pt;}
.x54{left:357.829333pt;}
.x5d{left:363.361251pt;}
.x55{left:365.068000pt;}
.x15{left:366.366667pt;}
.x4a{left:369.546667pt;}
.x97{left:371.545333pt;}
.x19{left:376.000000pt;}
.x4f{left:380.426667pt;}
.x4d{left:385.446667pt;}
.x24{left:390.430667pt;}
.x2f{left:396.025333pt;}
.x50{left:398.588000pt;}
.x53{left:400.196000pt;}
.x30{left:402.202667pt;}
.x3{left:404.408000pt;}
.x10{left:408.000000pt;}
.x75{left:410.191737pt;}
.x7f{left:411.556000pt;}
.x39{left:413.388000pt;}
.x85{left:421.252000pt;}
.x42{left:423.184000pt;}
.x57{left:426.273333pt;}
.x3a{left:429.064000pt;}
.x59{left:435.893333pt;}
.x43{left:445.028000pt;}
.x31{left:452.372000pt;}
.x7b{left:454.576000pt;}
.x95{left:457.445333pt;}
.x56{left:461.201333pt;}
.x25{left:462.474667pt;}
.x32{left:464.733333pt;}
.x65{left:478.819911pt;}
.x92{left:486.450667pt;}
.x80{left:488.909333pt;}
.x91{left:492.620000pt;}
.x7c{left:494.566667pt;}
.x28{left:503.529333pt;}
.x29{left:507.920000pt;}
.x26{left:510.817333pt;}
.x2a{left:515.066667pt;}
.x34{left:516.892000pt;}
.x27{left:517.962667pt;}
.x33{left:519.913333pt;}
.x45{left:522.533333pt;}
.x44{left:528.702667pt;}
.x46{left:544.377333pt;}
.x51{left:565.004000pt;}
.x58{left:693.764000pt;}
.x35{left:701.568000pt;}
.x11{left:713.922240pt;}
}




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