
    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_80eb4af497a01cd0389802c6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a4d6b3cbc7d3139f3f4dd6e7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.739000;font-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_8ac55c92a802425c8f25f831.woff')format("woff");}.ff3{font-family:ff3;line-height:1.073000;font-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_4deca37d8334edf973847cbe.woff')format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_77347802680cc06a70318bd3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.700000;font-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_8c179fd6b729241bb01b9d11.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064000;font-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_b14972dd99a320246fd9f80a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.095000;font-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_116e85cadccab0479f9d87a1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.964000;font-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_9bea7189ba6e56d5544e45e0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.748000;font-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_91adaa81a258ebd3150592f0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.095000;font-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_1595b62e0d8e6bc9f7163c1b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.081000;font-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_250cde18521cf2edc738ae9f.woff')format("woff");}.ffc{font-family:ffc;line-height:1.080000;font-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_eb0e0249df16b8a047473298.woff')format("woff");}.ffd{font-family:ffd;line-height:0.946000;font-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_b674a38e08eb01cb688d01b4.woff')format("woff");}.ffe{font-family:ffe;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0efe46518ca51b95b5c5070f.woff')format("woff");}.fff{font-family:fff;line-height:0.922000;font-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_b40a4212b529e6eb4285d11b.woff')format("woff");}.ff10{font-family:ff10;line-height:0.944000;font-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_8e5352a72b5062e6a77f8853.woff')format("woff");}.ff11{font-family:ff11;line-height:0.944000;font-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_375d07758478d847b98124ae.woff')format("woff");}.ff12{font-family:ff12;line-height:0.944000;font-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_f6c4b79e3b4224f018fab33d.woff')format("woff");}.ff13{font-family:ff13;line-height:0.973000;font-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_b51c9e63e249ce4306e53431.woff')format("woff");}.ff14{font-family:ff14;line-height:0.751000;font-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_df6f20f7558d75b0c0000656.woff')format("woff");}.ff15{font-family:ff15;line-height:0.746000;font-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_ae8e9e5ea82abe79cd6252f3.woff')format("woff");}.ff16{font-family:ff16;line-height:0.973000;font-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_98e22ef0c4bead62f7e63e38.woff')format("woff");}.ff17{font-family:ff17;line-height:0.944000;font-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_6168a98693fca9be0a6ac652.woff')format("woff");}.ff18{font-family:ff18;line-height:0.946000;font-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_3ed46b46970161f9ed90bca1.woff')format("woff");}.ff19{font-family:ff19;line-height:0.944000;font-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_19224da8ea8b9cea8b803371.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.944000;font-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_6df36728fe3bfb1724a34582.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.042000;font-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_0d286403041a97e6b77f77fe.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.002930;font-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_566d28b7aa318bd6ce0691d1.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_a0374726fd711ed9c4d4de54.woff')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_944e41972e57d2365df583ae.woff')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_e51efa886e667a36b4d2431d.woff')format("woff");}.ff20{font-family:ff20;line-height:1.002930;font-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_c20936fd3e2f1bb878f154a6.woff')format("woff");}.ff21{font-family:ff21;line-height:0.862793;font-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_a760fa466502df5be249b855.woff')format("woff");}.ff22{font-family:ff22;line-height:0.882324;font-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_1530a6d5d02a6295bb579dca.woff')format("woff");}.ff23{font-family:ff23;line-height:0.857910;font-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_8b2bc93a73136de016979339.woff')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_e0532f3914c3c9110e2fc6f6.woff')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_72720d54d1bc2b412691545a.woff')format("woff");}.ff26{font-family:ff26;line-height:0.682617;font-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_e2e06980655e4c2c23674858.woff')format("woff");}.ff27{font-family:ff27;line-height:1.002930;font-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_815817dfd9579ed4360b8ebe.woff')format("woff");}.ff28{font-family:ff28;line-height:1.002930;font-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_a0374726fd711ed9c4d4de54.woff')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_e0532f3914c3c9110e2fc6f6.woff')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_72720d54d1bc2b412691545a.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_bb4cc80f8c453bad4f2a7e31.woff')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_915ed89bbb7ee923a9eddc84.woff')format("woff");}.ff2d{font-family:ff2d;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_a276578ffead8d27857228b2.woff')format("woff");}.ff2e{font-family:ff2e;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_a0374726fd711ed9c4d4de54.woff')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_109851932ffdf4719fb97e73.woff')format("woff");}.ff30{font-family:ff30;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_e0532f3914c3c9110e2fc6f6.woff')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_4394957ffcde38b2b184a74f.woff')format("woff");}.ff32{font-family:ff32;line-height:0.700195;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_4f77eec8bc83e89b039cb445.woff')format("woff");}.ff33{font-family:ff33;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_212072f38523f413c29478c4.woff')format("woff");}.ff34{font-family:ff34;line-height:0.706055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_b5fdb574ed587ddfccce8487.woff')format("woff");}.ff35{font-family:ff35;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_944e41972e57d2365df583ae.woff')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_a00a556fa00b171580cade0a.woff')format("woff");}.ff37{font-family:ff37;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:ff38;src:url('chunks/assets/font_806e8d83dcdf34c77d08a4b5.woff')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_2b7704bc7453e024e2a041c2.woff')format("woff");}.ff39{font-family:ff39;line-height:0.709473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_944e41972e57d2365df583ae.woff')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_944e41972e57d2365df583ae.woff')format("woff");}.ff3b{font-family:ff3b;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:ff3c;src:url('chunks/assets/font_944e41972e57d2365df583ae.woff')format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url('chunks/assets/font_3d02e7f4bced3d17a4ea9c7d.woff')format("woff");}.ff3d{font-family:ff3d;line-height:0.898438;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_e0532f3914c3c9110e2fc6f6.woff')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_1f52897b1077a427264d91fe.woff')format("woff");}.ff3f{font-family:ff3f;line-height:0.700195;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_4a2e3d02ebfa1057e694bff4.woff')format("woff");}.ff40{font-family:ff40;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_962facef20983a839703f9b6.woff')format("woff");}.ff41{font-family:ff41;line-height:0.706055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_2e69c534166833780a732ece.woff')format("woff");}.ff42{font-family:ff42;line-height:0.910645;font-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:ff43;src:url('chunks/assets/font_944e41972e57d2365df583ae.woff')format("woff");}.ff43{font-family:ff43;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:ff44;src:url('chunks/assets/font_a00a556fa00b171580cade0a.woff')format("woff");}.ff44{font-family:ff44;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:ff45;src:url('chunks/assets/font_806e8d83dcdf34c77d08a4b5.woff')format("woff");}.ff45{font-family:ff45;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:ff46;src:url('chunks/assets/font_944e41972e57d2365df583ae.woff')format("woff");}.ff46{font-family:ff46;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:ff47;src:url('chunks/assets/font_944e41972e57d2365df583ae.woff')format("woff");}.ff47{font-family:ff47;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:ff48;src:url('chunks/assets/font_944e41972e57d2365df583ae.woff')format("woff");}.ff48{font-family:ff48;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:ff49;src:url('chunks/assets/font_a692ec4d89ed98786fcc8fef.woff')format("woff");}.ff49{font-family:ff49;line-height:0.898438;font-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:ff4a;src:url('chunks/assets/font_f68ae1653aad63095f354fb1.woff')format("woff");}.ff4a{font-family:ff4a;line-height:1.042000;font-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:ff4b;src:url('chunks/assets/font_e0532f3914c3c9110e2fc6f6.woff')format("woff");}.ff4b{font-family:ff4b;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:ff4c;src:url('chunks/assets/font_ae8d99398e567720e1d5ebd5.woff')format("woff");}.ff4c{font-family:ff4c;line-height:0.700195;font-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:ff4d;src:url('chunks/assets/font_c61f6580761deb5a1a5a9541.woff')format("woff");}.ff4d{font-family:ff4d;line-height:0.908203;font-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:ff4e;src:url('chunks/assets/font_3d116ff3b59e7f7a8b63399d.woff')format("woff");}.ff4e{font-family:ff4e;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:ff4f;src:url('chunks/assets/font_2a57a9efc975942cb1d0e824.woff')format("woff");}.ff4f{font-family:ff4f;line-height:0.910645;font-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:ff50;src:url('chunks/assets/font_a00a556fa00b171580cade0a.woff')format("woff");}.ff50{font-family:ff50;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:ff51;src:url('chunks/assets/font_806e8d83dcdf34c77d08a4b5.woff')format("woff");}.ff51{font-family:ff51;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:ff52;src:url('chunks/assets/font_944e41972e57d2365df583ae.woff')format("woff");}.ff52{font-family:ff52;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:ff53;src:url('chunks/assets/font_944e41972e57d2365df583ae.woff')format("woff");}.ff53{font-family:ff53;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:ff54;src:url('chunks/assets/font_944e41972e57d2365df583ae.woff')format("woff");}.ff54{font-family:ff54;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:ff55;src:url('chunks/assets/font_3d02e7f4bced3d17a4ea9c7d.woff')format("woff");}.ff55{font-family:ff55;line-height:0.898438;font-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:ff56;src:url('chunks/assets/font_e57c64e26aaee2e0407c1a9f.woff')format("woff");}.ff56{font-family:ff56;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:ff57;src:url('chunks/assets/font_e0532f3914c3c9110e2fc6f6.woff')format("woff");}.ff57{font-family:ff57;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:ff58;src:url('chunks/assets/font_50e83ad288d4c12c28ec2522.woff')format("woff");}.ff58{font-family:ff58;line-height:0.700195;font-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:ff59;src:url('chunks/assets/font_b5a4bc825e3d70a09828f850.woff')format("woff");}.ff59{font-family:ff59;line-height:0.908203;font-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:ff5a;src:url('chunks/assets/font_4282f4362352291aedbf75bd.woff')format("woff");}.ff5a{font-family:ff5a;line-height:0.706055;font-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:ff5b;src:url('chunks/assets/font_1f2f8d5a7b351fd8b61bbc73.woff')format("woff");}.ff5b{font-family:ff5b;line-height:0.910645;font-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:ff5c;src:url('chunks/assets/font_944e41972e57d2365df583ae.woff')format("woff");}.ff5c{font-family:ff5c;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:ff5d;src:url('chunks/assets/font_a00a556fa00b171580cade0a.woff')format("woff");}.ff5d{font-family:ff5d;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:ff5e;src:url('chunks/assets/font_806e8d83dcdf34c77d08a4b5.woff')format("woff");}.ff5e{font-family:ff5e;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:ff5f;src:url('chunks/assets/font_944e41972e57d2365df583ae.woff')format("woff");}.ff5f{font-family:ff5f;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:ff60;src:url('chunks/assets/font_944e41972e57d2365df583ae.woff')format("woff");}.ff60{font-family:ff60;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:ff61;src:url('chunks/assets/font_3d02e7f4bced3d17a4ea9c7d.woff')format("woff");}.ff61{font-family:ff61;line-height:0.898438;font-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:ff62;src:url('chunks/assets/font_80eb4af497a01cd0389802c6.woff')format("woff");}.ff62{font-family:ff62;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63;src:url('chunks/assets/font_a4d6b3cbc7d3139f3f4dd6e7.woff')format("woff");}.ff63{font-family:ff63;line-height:0.739000;font-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:ff64;src:url('chunks/assets/font_8ac55c92a802425c8f25f831.woff')format("woff");}.ff64{font-family:ff64;line-height:1.073000;font-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:ff65;src:url('chunks/assets/font_4deca37d8334edf973847cbe.woff')format("woff");}.ff65{font-family:ff65;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66;src:url('chunks/assets/font_77347802680cc06a70318bd3.woff')format("woff");}.ff66{font-family:ff66;line-height:0.700000;font-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:ff67;src:url('chunks/assets/font_8c179fd6b729241bb01b9d11.woff')format("woff");}.ff67{font-family:ff67;line-height:1.064000;font-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:ff68;src:url('chunks/assets/font_b14972dd99a320246fd9f80a.woff')format("woff");}.ff68{font-family:ff68;line-height:1.095000;font-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:ff69;src:url('chunks/assets/font_116e85cadccab0479f9d87a1.woff')format("woff");}.ff69{font-family:ff69;line-height:0.964000;font-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:ff6a;src:url('chunks/assets/font_9bea7189ba6e56d5544e45e0.woff')format("woff");}.ff6a{font-family:ff6a;line-height:0.748000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:8.711400px;}
.v3{vertical-align:17.382600px;}
.v6{vertical-align:19.980600px;}
.v2{vertical-align:21.022200px;}
.v5{vertical-align:38.988000px;}
.v4{vertical-align:48.090000px;}
.lsb3{letter-spacing:-7.788000px;}
.lsb{letter-spacing:-6.270278px;}
.ls9{letter-spacing:-4.752000px;}
.lsce{letter-spacing:-4.503000px;}
.ls13{letter-spacing:-4.224000px;}
.ls62{letter-spacing:-3.960000px;}
.lsa{letter-spacing:-3.816691px;}
.ls5{letter-spacing:-3.610737px;}
.ls70{letter-spacing:-3.600000px;}
.lsef{letter-spacing:-3.564000px;}
.ls4{letter-spacing:-3.477006px;}
.ls7{letter-spacing:-3.348000px;}
.ls19{letter-spacing:-3.276000px;}
.ls22{letter-spacing:-2.964000px;}
.ls12c{letter-spacing:-2.640000px;}
.ls23{letter-spacing:-2.574000px;}
.lsb6{letter-spacing:-2.436000px;}
.ls1d{letter-spacing:-2.418000px;}
.ls1a{letter-spacing:-2.340000px;}
.lsd6{letter-spacing:-2.280000px;}
.ls17{letter-spacing:-2.262000px;}
.lsdb{letter-spacing:-2.223000px;}
.lsc6{letter-spacing:-2.052000px;}
.ls15{letter-spacing:-2.028000px;}
.lse2{letter-spacing:-1.995000px;}
.ls29{letter-spacing:-1.950000px;}
.lsc{letter-spacing:-1.947294px;}
.ls8d{letter-spacing:-1.920000px;}
.lsd5{letter-spacing:-1.881000px;}
.ls99{letter-spacing:-1.800000px;}
.ls21{letter-spacing:-1.794000px;}
.lsa2{letter-spacing:-1.740000px;}
.ls2{letter-spacing:-1.738503px;}
.lscb{letter-spacing:-1.710000px;}
.ls9b{letter-spacing:-1.680000px;}
.lsa3{letter-spacing:-1.620000px;}
.lsdf{letter-spacing:-1.596000px;}
.lsb9{letter-spacing:-1.560000px;}
.lsd1{letter-spacing:-1.539000px;}
.ls71{letter-spacing:-1.512000px;}
.lse1{letter-spacing:-1.482000px;}
.lsa1{letter-spacing:-1.440000px;}
.ls7e{letter-spacing:-1.380000px;}
.ls18{letter-spacing:-1.326000px;}
.lsf{letter-spacing:-1.296000px;}
.lsa4{letter-spacing:-1.260000px;}
.ls14{letter-spacing:-1.254000px;}
.ls1b{letter-spacing:-1.248000px;}
.lsb7{letter-spacing:-1.200000px;}
.ls6{letter-spacing:-1.188000px;}
.ls26{letter-spacing:-1.170000px;}
.ls5c{letter-spacing:-1.152000px;}
.ls9a{letter-spacing:-1.140000px;}
.ls12{letter-spacing:-1.122000px;}
.ls24{letter-spacing:-1.092000px;}
.lsd{letter-spacing:-1.090483px;}
.lse3{letter-spacing:-1.083000px;}
.lsa0{letter-spacing:-1.080000px;}
.ls98{letter-spacing:-1.020000px;}
.ls27{letter-spacing:-1.014000px;}
.lse5{letter-spacing:-0.969000px;}
.ls25{letter-spacing:-0.936000px;}
.lsd4{letter-spacing:-0.912000px;}
.lse{letter-spacing:-0.900000px;}
.ls9d{letter-spacing:-0.864000px;}
.ls87{letter-spacing:-0.840000px;}
.ls72{letter-spacing:-0.792000px;}
.ls93{letter-spacing:-0.780000px;}
.ls89{letter-spacing:-0.756000px;}
.lsc3{letter-spacing:-0.741000px;}
.ls84{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.702000px;}
.lsdd{letter-spacing:-0.684000px;}
.lsbc{letter-spacing:-0.672000px;}
.ls10{letter-spacing:-0.660000px;}
.lsc7{letter-spacing:-0.627000px;}
.ls82{letter-spacing:-0.600000px;}
.ls11{letter-spacing:-0.594000px;}
.lsad{letter-spacing:-0.570000px;}
.ls28{letter-spacing:-0.546000px;}
.ls8{letter-spacing:-0.540000px;}
.ls50{letter-spacing:-0.528000px;}
.lsc1{letter-spacing:-0.513000px;}
.lsae{letter-spacing:-0.504000px;}
.ls8e{letter-spacing:-0.480000px;}
.lsde{letter-spacing:-0.456000px;}
.ls7d{letter-spacing:-0.420000px;}
.lsc5{letter-spacing:-0.399000px;}
.ls64{letter-spacing:-0.396000px;}
.ls1c{letter-spacing:-0.390000px;}
.ls11f{letter-spacing:-0.383040px;}
.ls12b{letter-spacing:-0.362880px;}
.ls83{letter-spacing:-0.360000px;}
.lscd{letter-spacing:-0.342000px;}
.ls63{letter-spacing:-0.330000px;}
.ls120{letter-spacing:-0.328320px;}
.ls107{letter-spacing:-0.302400px;}
.ls86{letter-spacing:-0.300000px;}
.lsac{letter-spacing:-0.285000px;}
.ls77{letter-spacing:-0.264000px;}
.lsa9{letter-spacing:-0.252000px;}
.ls105{letter-spacing:-0.241920px;}
.ls7f{letter-spacing:-0.240000px;}
.ls20{letter-spacing:-0.234000px;}
.lsc8{letter-spacing:-0.228000px;}
.ls57{letter-spacing:-0.216000px;}
.ls108{letter-spacing:-0.198720px;}
.ls11e{letter-spacing:-0.181440px;}
.ls7a{letter-spacing:-0.180000px;}
.lsbe{letter-spacing:-0.171000px;}
.lsb4{letter-spacing:-0.168000px;}
.ls121{letter-spacing:-0.164160px;}
.ls52{letter-spacing:-0.144000px;}
.ls103{letter-spacing:-0.132480px;}
.ls96{letter-spacing:-0.126000px;}
.ls106{letter-spacing:-0.120960px;}
.ls81{letter-spacing:-0.120000px;}
.lsc2{letter-spacing:-0.114000px;}
.lsaa{letter-spacing:-0.084000px;}
.ls104{letter-spacing:-0.066240px;}
.ls88{letter-spacing:-0.060000px;}
.lsc4{letter-spacing:-0.057000px;}
.ls3{letter-spacing:0.000000px;}
.ls129{letter-spacing:0.001200px;}
.lsf0{letter-spacing:0.006048px;}
.lsd7{letter-spacing:0.011400px;}
.lsb5{letter-spacing:0.040560px;}
.lsab{letter-spacing:0.042000px;}
.lsa5{letter-spacing:0.054000px;}
.lsdc{letter-spacing:0.057000px;}
.ls79{letter-spacing:0.060000px;}
.ls8f{letter-spacing:0.066000px;}
.ls100{letter-spacing:0.066240px;}
.ls110{letter-spacing:0.083520px;}
.ls9e{letter-spacing:0.108000px;}
.lsd9{letter-spacing:0.114000px;}
.ls7b{letter-spacing:0.120000px;}
.lsa8{letter-spacing:0.144000px;}
.lsf1{letter-spacing:0.165600px;}
.ls115{letter-spacing:0.167040px;}
.lsc9{letter-spacing:0.171000px;}
.ls7c{letter-spacing:0.180000px;}
.ls111{letter-spacing:0.183744px;}
.ls90{letter-spacing:0.198000px;}
.ls66{letter-spacing:0.216000px;}
.lsd3{letter-spacing:0.228000px;}
.ls80{letter-spacing:0.240000px;}
.ls114{letter-spacing:0.250560px;}
.ls92{letter-spacing:0.264000px;}
.lsb0{letter-spacing:0.270000px;}
.lsbf{letter-spacing:0.285000px;}
.ls5a{letter-spacing:0.288000px;}
.ls78{letter-spacing:0.300000px;}
.ls125{letter-spacing:0.309024px;}
.ls118{letter-spacing:0.331200px;}
.ls113{letter-spacing:0.334080px;}
.lsca{letter-spacing:0.342000px;}
.ls112{letter-spacing:0.359136px;}
.ls75{letter-spacing:0.360000px;}
.ls97{letter-spacing:0.378000px;}
.lsd0{letter-spacing:0.399000px;}
.ls85{letter-spacing:0.420000px;}
.lsd8{letter-spacing:0.456000px;}
.ls91{letter-spacing:0.462000px;}
.ls8b{letter-spacing:0.480000px;}
.lsb8{letter-spacing:0.540000px;}
.lse0{letter-spacing:0.570000px;}
.ls73{letter-spacing:0.576000px;}
.ls11b{letter-spacing:0.596160px;}
.ls8c{letter-spacing:0.600000px;}
.ls55{letter-spacing:0.648000px;}
.lsa7{letter-spacing:0.660000px;}
.lsd2{letter-spacing:0.684000px;}
.ls74{letter-spacing:0.720000px;}
.lsda{letter-spacing:0.741000px;}
.ls5d{letter-spacing:0.792000px;}
.lsba{letter-spacing:0.840000px;}
.ls54{letter-spacing:0.864000px;}
.ls5f{letter-spacing:0.936000px;}
.ls8a{letter-spacing:0.960000px;}
.lse7{letter-spacing:0.969000px;}
.ls58{letter-spacing:1.008000px;}
.ls1f{letter-spacing:1.015320px;}
.lse6{letter-spacing:1.140000px;}
.ls5b{letter-spacing:1.152000px;}
.ls67{letter-spacing:1.224000px;}
.lscf{letter-spacing:1.254000px;}
.ls59{letter-spacing:1.368000px;}
.lsb2{letter-spacing:1.387080px;}
.ls94{letter-spacing:1.440000px;}
.lsbb{letter-spacing:1.452000px;}
.lsc0{letter-spacing:1.482000px;}
.lsa6{letter-spacing:1.500000px;}
.ls95{letter-spacing:1.560000px;}
.lscc{letter-spacing:1.710000px;}
.ls51{letter-spacing:1.728000px;}
.ls1{letter-spacing:1.750554px;}
.ls65{letter-spacing:1.800000px;}
.ls1e{letter-spacing:1.821990px;}
.ls9f{letter-spacing:1.980000px;}
.ls60{letter-spacing:2.016000px;}
.lsbd{letter-spacing:2.280000px;}
.ls61{letter-spacing:2.376000px;}
.ls9c{letter-spacing:2.448000px;}
.lse4{letter-spacing:2.565000px;}
.lsb1{letter-spacing:2.760000px;}
.ls76{letter-spacing:2.772000px;}
.ls5e{letter-spacing:2.880000px;}
.ls0{letter-spacing:3.141360px;}
.ls56{letter-spacing:3.384000px;}
.ls10c{letter-spacing:4.901760px;}
.ls10b{letter-spacing:6.094080px;}
.ls53{letter-spacing:10.794000px;}
.ls109{letter-spacing:14.440320px;}
.ls123{letter-spacing:20.799360px;}
.lsaf{letter-spacing:22.206000px;}
.ls3a{letter-spacing:25.511400px;}
.ls45{letter-spacing:28.226400px;}
.ls3e{letter-spacing:29.773800px;}
.ls2e{letter-spacing:31.717800px;}
.ls4e{letter-spacing:32.178600px;}
.lsfa{letter-spacing:32.815296px;}
.ls3c{letter-spacing:33.244200px;}
.ls34{letter-spacing:33.676200px;}
.ls10a{letter-spacing:36.432000px;}
.ls40{letter-spacing:37.528800px;}
.ls102{letter-spacing:38.220480px;}
.lsf6{letter-spacing:39.479040px;}
.lsff{letter-spacing:41.333760px;}
.ls122{letter-spacing:47.494080px;}
.ls2a{letter-spacing:48.263400px;}
.lsfe{letter-spacing:50.011200px;}
.lsee{letter-spacing:56.194800px;}
.ls6f{letter-spacing:62.162400px;}
.lsea{letter-spacing:62.464200px;}
.lsec{letter-spacing:62.629200px;}
.lsed{letter-spacing:62.755200px;}
.ls38{letter-spacing:63.610800px;}
.lse8{letter-spacing:63.660000px;}
.ls46{letter-spacing:64.299600px;}
.ls3f{letter-spacing:64.644000px;}
.ls4c{letter-spacing:64.875600px;}
.lse9{letter-spacing:65.254200px;}
.ls35{letter-spacing:66.410400px;}
.ls68{letter-spacing:66.703200px;}
.ls39{letter-spacing:66.798000px;}
.ls3d{letter-spacing:67.026000px;}
.ls4d{letter-spacing:67.358400px;}
.ls4a{letter-spacing:67.498800px;}
.lsfb{letter-spacing:67.564800px;}
.ls3b{letter-spacing:67.578600px;}
.ls36{letter-spacing:68.028000px;}
.ls6b{letter-spacing:68.448000px;}
.ls6d{letter-spacing:68.596800px;}
.ls6e{letter-spacing:68.756400px;}
.lsf7{letter-spacing:69.022080px;}
.ls101{letter-spacing:69.485760px;}
.ls4b{letter-spacing:69.581400px;}
.ls69{letter-spacing:69.655800px;}
.ls48{letter-spacing:70.269600px;}
.ls47{letter-spacing:70.283400px;}
.ls49{letter-spacing:70.306800px;}
.ls44{letter-spacing:70.561200px;}
.ls43{letter-spacing:70.665600px;}
.ls6a{letter-spacing:71.271000px;}
.ls33{letter-spacing:72.778800px;}
.lsf2{letter-spacing:73.526400px;}
.lseb{letter-spacing:77.916600px;}
.ls41{letter-spacing:79.366800px;}
.ls4f{letter-spacing:80.425200px;}
.ls2c{letter-spacing:81.510000px;}
.ls2f{letter-spacing:82.420800px;}
.ls32{letter-spacing:83.206800px;}
.ls37{letter-spacing:83.579400px;}
.lsfc{letter-spacing:83.727360px;}
.ls6c{letter-spacing:83.913600px;}
.ls42{letter-spacing:85.357800px;}
.ls31{letter-spacing:88.277400px;}
.ls30{letter-spacing:88.449000px;}
.ls10e{letter-spacing:93.795840px;}
.lsfd{letter-spacing:97.968960px;}
.ls10d{letter-spacing:98.101440px;}
.ls2d{letter-spacing:103.383000px;}
.ls2b{letter-spacing:106.162800px;}
.lsf4{letter-spacing:120.623040px;}
.lsf8{letter-spacing:126.849600px;}
.ls124{letter-spacing:127.800480px;}
.lsf3{letter-spacing:135.030240px;}
.lsf9{letter-spacing:183.239712px;}
.ls117{letter-spacing:209.517120px;}
.ls119{letter-spacing:228.329280px;}
.ls11a{letter-spacing:307.526280px;}
.ls128{letter-spacing:332.944080px;}
.ls116{letter-spacing:332.944680px;}
.ls127{letter-spacing:369.761880px;}
.ls126{letter-spacing:518.920680px;}
.lsf5{letter-spacing:1175.230080px;}
.ls10f{letter-spacing:1319.567040px;}
.ls11c{letter-spacing:1778.100480px;}
.ls12a{letter-spacing:1778.101080px;}
.ls11d{letter-spacing:2044.537680px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(223,56,74),0 0.015em rgb(223,56,74),0.015em 0 rgb(223,56,74),0 -0.015em  rgb(223,56,74);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(223,56,74);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-108.062784px;}
.ws186{word-spacing:-72.000000px;}
.ws5{word-spacing:-70.881408px;}
.ws16d{word-spacing:-66.240000px;}
.ws184{word-spacing:-60.480000px;}
.ws185{word-spacing:-60.238080px;}
.ws8{word-spacing:-60.219058px;}
.ws3b{word-spacing:-37.884000px;}
.ws5e{word-spacing:-36.168000px;}
.ws12a{word-spacing:-36.036000px;}
.ws169{word-spacing:-32.868000px;}
.ws4{word-spacing:-23.004000px;}
.ws3e{word-spacing:-22.248000px;}
.ws3f{word-spacing:-21.744000px;}
.ws41{word-spacing:-21.240000px;}
.ws177{word-spacing:-21.214080px;}
.ws176{word-spacing:-21.130560px;}
.ws40{word-spacing:-20.880000px;}
.ws43{word-spacing:-20.664000px;}
.ws3c{word-spacing:-20.592000px;}
.ws44{word-spacing:-18.864000px;}
.ws3d{word-spacing:-18.720000px;}
.ws179{word-spacing:-18.000000px;}
.ws34{word-spacing:-17.862000px;}
.ws157{word-spacing:-17.499000px;}
.ws33{word-spacing:-17.472000px;}
.ws57{word-spacing:-17.292000px;}
.ws117{word-spacing:-17.100000px;}
.ws126{word-spacing:-17.040000px;}
.ws110{word-spacing:-16.800000px;}
.ws111{word-spacing:-16.740000px;}
.ws131{word-spacing:-16.644000px;}
.wsd4{word-spacing:-16.560000px;}
.ws123{word-spacing:-16.500000px;}
.ws6{word-spacing:-16.368000px;}
.ws12c{word-spacing:-16.302000px;}
.ws133{word-spacing:-16.188000px;}
.ws11c{word-spacing:-16.140000px;}
.wsd3{word-spacing:-15.840000px;}
.ws109{word-spacing:-15.720000px;}
.ws9a{word-spacing:-15.540000px;}
.ws14e{word-spacing:-15.390000px;}
.wsc5{word-spacing:-15.360000px;}
.ws14f{word-spacing:-15.333000px;}
.ws77{word-spacing:-15.300000px;}
.ws138{word-spacing:-15.219000px;}
.ws60{word-spacing:-15.120000px;}
.ws16a{word-spacing:-14.970240px;}
.ws12b{word-spacing:-14.934000px;}
.ws42{word-spacing:-14.904000px;}
.ws125{word-spacing:-14.880000px;}
.ws178{word-spacing:-14.878080px;}
.ws12f{word-spacing:-14.877000px;}
.ws16e{word-spacing:-14.837760px;}
.ws10a{word-spacing:-14.820000px;}
.ws16f{word-spacing:-14.771520px;}
.ws189{word-spacing:-14.757120px;}
.ws150{word-spacing:-14.706000px;}
.wsa5{word-spacing:-14.700000px;}
.ws14d{word-spacing:-14.649000px;}
.wsb5{word-spacing:-14.640000px;}
.wsa7{word-spacing:-14.580000px;}
.ws188{word-spacing:-14.526000px;}
.ws12d{word-spacing:-14.421000px;}
.ws5f{word-spacing:-14.340000px;}
.wsbb{word-spacing:-14.280000px;}
.ws152{word-spacing:-14.250000px;}
.ws12e{word-spacing:-14.193000px;}
.wsc8{word-spacing:-14.040000px;}
.ws135{word-spacing:-14.022000px;}
.wsa6{word-spacing:-13.920000px;}
.ws156{word-spacing:-13.851000px;}
.ws154{word-spacing:-13.452000px;}
.ws16c{word-spacing:-13.426560px;}
.ws134{word-spacing:-13.395000px;}
.ws16b{word-spacing:-13.366080px;}
.ws153{word-spacing:-13.338000px;}
.ws130{word-spacing:-13.224000px;}
.ws136{word-spacing:-13.053000px;}
.ws155{word-spacing:-12.939000px;}
.ws151{word-spacing:-12.711000px;}
.ws137{word-spacing:-12.654000px;}
.ws9b{word-spacing:-11.466000px;}
.ws9c{word-spacing:-11.382000px;}
.ws46{word-spacing:-10.794000px;}
.ws132{word-spacing:-10.431000px;}
.ws99{word-spacing:-7.973341px;}
.ws100{word-spacing:-3.780000px;}
.wsba{word-spacing:-3.180000px;}
.ws31{word-spacing:-3.141360px;}
.wsda{word-spacing:-3.120000px;}
.ws10e{word-spacing:-3.000000px;}
.wsd6{word-spacing:-2.880000px;}
.wsc9{word-spacing:-2.820000px;}
.ws61{word-spacing:-2.772000px;}
.wsdc{word-spacing:-2.700000px;}
.ws129{word-spacing:-2.580000px;}
.ws1c{word-spacing:-2.574000px;}
.wsb8{word-spacing:-2.460000px;}
.wscf{word-spacing:-2.340000px;}
.ws20{word-spacing:-2.244000px;}
.wsb9{word-spacing:-2.220000px;}
.ws90{word-spacing:-2.178000px;}
.wsd9{word-spacing:-2.100000px;}
.wsb2{word-spacing:-2.040000px;}
.ws112{word-spacing:-1.920000px;}
.wsca{word-spacing:-1.860000px;}
.wsb7{word-spacing:-1.800000px;}
.ws92{word-spacing:-1.782000px;}
.ws32{word-spacing:-1.750554px;}
.ws95{word-spacing:-1.740000px;}
.ws4b{word-spacing:-1.728000px;}
.wsbc{word-spacing:-1.680000px;}
.ws7a{word-spacing:-1.620000px;}
.ws68{word-spacing:-1.560000px;}
.wsa1{word-spacing:-1.500000px;}
.ws158{word-spacing:-1.482000px;}
.wsb3{word-spacing:-1.440000px;}
.ws164{word-spacing:-1.425000px;}
.ws4c{word-spacing:-1.368000px;}
.wsad{word-spacing:-1.320000px;}
.ws9e{word-spacing:-1.260000px;}
.ws56{word-spacing:-1.224000px;}
.wsce{word-spacing:-1.200000px;}
.ws146{word-spacing:-1.197000px;}
.ws26{word-spacing:-1.188000px;}
.ws4e{word-spacing:-1.152000px;}
.wsa8{word-spacing:-1.140000px;}
.ws27{word-spacing:-1.122000px;}
.wsbd{word-spacing:-1.080000px;}
.ws8f{word-spacing:-1.020000px;}
.ws4a{word-spacing:-1.008000px;}
.ws141{word-spacing:-0.969000px;}
.ws8b{word-spacing:-0.960000px;}
.ws52{word-spacing:-0.936000px;}
.wsd5{word-spacing:-0.900000px;}
.ws47{word-spacing:-0.864000px;}
.ws1f{word-spacing:-0.858000px;}
.ws78{word-spacing:-0.840000px;}
.ws51{word-spacing:-0.792000px;}
.ws8e{word-spacing:-0.780000px;}
.ws15b{word-spacing:-0.741000px;}
.ws91{word-spacing:-0.726000px;}
.ws5c{word-spacing:-0.720000px;}
.ws149{word-spacing:-0.684000px;}
.wsd0{word-spacing:-0.660000px;}
.ws48{word-spacing:-0.648000px;}
.ws87{word-spacing:-0.600000px;}
.ws5b{word-spacing:-0.576000px;}
.ws15f{word-spacing:-0.570000px;}
.ws10c{word-spacing:-0.540000px;}
.wsed{word-spacing:-0.513000px;}
.ws86{word-spacing:-0.480000px;}
.ws72{word-spacing:-0.420000px;}
.ws17b{word-spacing:-0.417600px;}
.ws147{word-spacing:-0.399000px;}
.ws5d{word-spacing:-0.360000px;}
.ws145{word-spacing:-0.342000px;}
.ws17c{word-spacing:-0.334080px;}
.ws71{word-spacing:-0.300000px;}
.ws4d{word-spacing:-0.288000px;}
.wsef{word-spacing:-0.285000px;}
.wse{word-spacing:-0.272621px;}
.ws17a{word-spacing:-0.250560px;}
.ws6b{word-spacing:-0.240000px;}
.ws14a{word-spacing:-0.228000px;}
.ws55{word-spacing:-0.216000px;}
.ws66{word-spacing:-0.180000px;}
.wsf4{word-spacing:-0.171000px;}
.ws17e{word-spacing:-0.167040px;}
.wscb{word-spacing:-0.144000px;}
.ws1{word-spacing:-0.133731px;}
.ws173{word-spacing:-0.120960px;}
.ws6a{word-spacing:-0.120000px;}
.ws15a{word-spacing:-0.114000px;}
.wsb1{word-spacing:-0.108000px;}
.ws17d{word-spacing:-0.083520px;}
.ws170{word-spacing:-0.066240px;}
.ws174{word-spacing:-0.060480px;}
.ws7b{word-spacing:-0.060000px;}
.ws15e{word-spacing:-0.057000px;}
.wsc4{word-spacing:-0.054000px;}
.wsb{word-spacing:0.000000px;}
.ws143{word-spacing:0.057000px;}
.ws93{word-spacing:0.060000px;}
.ws175{word-spacing:0.066240px;}
.ws187{word-spacing:0.083520px;}
.wsd2{word-spacing:0.084000px;}
.ws13a{word-spacing:0.114000px;}
.ws75{word-spacing:0.120000px;}
.ws183{word-spacing:0.120960px;}
.wsa3{word-spacing:0.126000px;}
.ws171{word-spacing:0.132480px;}
.ws53{word-spacing:0.144000px;}
.ws182{word-spacing:0.164160px;}
.ws113{word-spacing:0.168000px;}
.ws13e{word-spacing:0.171000px;}
.ws64{word-spacing:0.180000px;}
.ws17f{word-spacing:0.181440px;}
.ws49{word-spacing:0.216000px;}
.ws161{word-spacing:0.228000px;}
.ws6d{word-spacing:0.240000px;}
.ws172{word-spacing:0.241920px;}
.wscc{word-spacing:0.252000px;}
.wsdd{word-spacing:0.264000px;}
.wse4{word-spacing:0.285000px;}
.ws73{word-spacing:0.300000px;}
.ws2a{word-spacing:0.312000px;}
.ws181{word-spacing:0.328320px;}
.ws18{word-spacing:0.330000px;}
.ws13f{word-spacing:0.342000px;}
.ws6f{word-spacing:0.360000px;}
.ws180{word-spacing:0.383040px;}
.ws30{word-spacing:0.390000px;}
.ws54{word-spacing:0.396000px;}
.ws13b{word-spacing:0.399000px;}
.ws67{word-spacing:0.420000px;}
.ws142{word-spacing:0.456000px;}
.ws19{word-spacing:0.462000px;}
.ws8a{word-spacing:0.480000px;}
.ws25{word-spacing:0.528000px;}
.ws107{word-spacing:0.540000px;}
.ws39{word-spacing:0.546000px;}
.wsee{word-spacing:0.570000px;}
.wsf{word-spacing:0.576000px;}
.ws4f{word-spacing:0.594000px;}
.wsc0{word-spacing:0.600000px;}
.ws9{word-spacing:0.648000px;}
.ws1b{word-spacing:0.660000px;}
.ws11f{word-spacing:0.672000px;}
.ws37{word-spacing:0.702000px;}
.ws70{word-spacing:0.720000px;}
.ws14c{word-spacing:0.741000px;}
.ws80{word-spacing:0.756000px;}
.ws7f{word-spacing:0.780000px;}
.ws5a{word-spacing:0.792000px;}
.ws74{word-spacing:0.840000px;}
.ws36{word-spacing:0.858000px;}
.wsb0{word-spacing:0.864000px;}
.ws6e{word-spacing:0.900000px;}
.ws165{word-spacing:0.912000px;}
.ws2c{word-spacing:0.936000px;}
.ws85{word-spacing:0.960000px;}
.ws166{word-spacing:0.969000px;}
.ws38{word-spacing:1.014000px;}
.ws97{word-spacing:1.020000px;}
.wsc3{word-spacing:1.080000px;}
.ws11b{word-spacing:1.140000px;}
.ws50{word-spacing:1.152000px;}
.ws2f{word-spacing:1.248000px;}
.wsc6{word-spacing:1.254000px;}
.wsd{word-spacing:1.298196px;}
.ws163{word-spacing:1.311000px;}
.wsa9{word-spacing:1.320000px;}
.wsd1{word-spacing:1.380000px;}
.wsaa{word-spacing:1.440000px;}
.ws11e{word-spacing:1.500000px;}
.ws59{word-spacing:1.512000px;}
.ws35{word-spacing:1.560000px;}
.ws17{word-spacing:1.584000px;}
.ws0{word-spacing:1.604772px;}
.ws82{word-spacing:1.620000px;}
.ws9f{word-spacing:1.680000px;}
.ws139{word-spacing:1.710000px;}
.ws3a{word-spacing:1.716000px;}
.wsc1{word-spacing:1.740000px;}
.ws94{word-spacing:1.800000px;}
.wsd7{word-spacing:1.860000px;}
.ws2b{word-spacing:1.872000px;}
.ws159{word-spacing:1.881000px;}
.ws79{word-spacing:1.920000px;}
.ws2e{word-spacing:1.950000px;}
.wsa2{word-spacing:1.980000px;}
.ws29{word-spacing:2.028000px;}
.ws7e{word-spacing:2.040000px;}
.ws15{word-spacing:2.046000px;}
.ws140{word-spacing:2.052000px;}
.ws6c{word-spacing:2.100000px;}
.wsc7{word-spacing:2.112000px;}
.ws63{word-spacing:2.160000px;}
.ws162{word-spacing:2.166000px;}
.ws148{word-spacing:2.223000px;}
.wsb6{word-spacing:2.340000px;}
.ws16{word-spacing:2.376000px;}
.ws65{word-spacing:2.400000px;}
.ws118{word-spacing:2.436000px;}
.wsc{word-spacing:2.453587px;}
.ws88{word-spacing:2.460000px;}
.ws10d{word-spacing:2.520000px;}
.ws122{word-spacing:2.580000px;}
.ws119{word-spacing:2.640000px;}
.wsdb{word-spacing:2.760000px;}
.wsa{word-spacing:2.808000px;}
.ws114{word-spacing:2.820000px;}
.ws2d{word-spacing:2.886000px;}
.wsbe{word-spacing:2.940000px;}
.ws1a{word-spacing:2.970000px;}
.wsb4{word-spacing:3.000000px;}
.ws8d{word-spacing:3.060000px;}
.wsc2{word-spacing:3.120000px;}
.ws120{word-spacing:3.180000px;}
.ws89{word-spacing:3.240000px;}
.ws10{word-spacing:3.300000px;}
.ws2{word-spacing:3.343275px;}
.wsae{word-spacing:3.360000px;}
.ws116{word-spacing:3.420000px;}
.ws11{word-spacing:3.432000px;}
.ws3{word-spacing:3.477006px;}
.ws7c{word-spacing:3.480000px;}
.wsbf{word-spacing:3.540000px;}
.ws58{word-spacing:3.600000px;}
.ws96{word-spacing:3.660000px;}
.ws69{word-spacing:3.780000px;}
.ws83{word-spacing:3.900000px;}
.ws14b{word-spacing:3.933000px;}
.wsd8{word-spacing:3.960000px;}
.ws81{word-spacing:4.080000px;}
.ws11d{word-spacing:4.140000px;}
.ws13c{word-spacing:4.161000px;}
.wsaf{word-spacing:4.200000px;}
.ws1d{word-spacing:4.224000px;}
.ws121{word-spacing:4.260000px;}
.wsab{word-spacing:4.320000px;}
.wsa0{word-spacing:4.380000px;}
.ws62{word-spacing:4.500000px;}
.ws10b{word-spacing:4.560000px;}
.ws124{word-spacing:4.680000px;}
.ws15d{word-spacing:4.731000px;}
.ws7d{word-spacing:4.800000px;}
.ws8c{word-spacing:4.860000px;}
.ws144{word-spacing:4.902000px;}
.ws127{word-spacing:4.920000px;}
.ws15c{word-spacing:4.959000px;}
.wscd{word-spacing:4.980000px;}
.ws12{word-spacing:5.082000px;}
.ws1e{word-spacing:5.148000px;}
.ws108{word-spacing:5.160000px;}
.ws11a{word-spacing:5.400000px;}
.ws115{word-spacing:5.520000px;}
.wsac{word-spacing:5.580000px;}
.ws13{word-spacing:6.072000px;}
.ws160{word-spacing:7.182000px;}
.ws14{word-spacing:7.392000px;}
.ws10f{word-spacing:7.788000px;}
.ws23{word-spacing:7.920000px;}
.ws128{word-spacing:8.100000px;}
.ws28{word-spacing:8.514000px;}
.ws24{word-spacing:9.108000px;}
.wsa4{word-spacing:9.996000px;}
.ws45{word-spacing:10.794000px;}
.ws84{word-spacing:10.980000px;}
.ws22{word-spacing:11.352000px;}
.ws168{word-spacing:12.597000px;}
.ws21{word-spacing:12.738000px;}
.ws167{word-spacing:12.768000px;}
.ws9d{word-spacing:16.080000px;}
.ws13d{word-spacing:16.131000px;}
.wsfb{word-spacing:34.042200px;}
.ws76{word-spacing:34.042800px;}
.ws98{word-spacing:34.043400px;}
.wsf7{word-spacing:368.163000px;}
.wsf8{word-spacing:372.951000px;}
.ws103{word-spacing:501.372000px;}
.ws105{word-spacing:504.222000px;}
.ws104{word-spacing:506.160000px;}
.ws106{word-spacing:509.010000px;}
.wsfe{word-spacing:515.565000px;}
.wsff{word-spacing:520.353000px;}
.wsfc{word-spacing:521.208000px;}
.wsfd{word-spacing:525.996000px;}
.ws101{word-spacing:527.478000px;}
.wse5{word-spacing:529.701000px;}
.ws102{word-spacing:532.266000px;}
.wse6{word-spacing:534.489000px;}
.wse2{word-spacing:546.744000px;}
.wse3{word-spacing:551.532000px;}
.wseb{word-spacing:555.237000px;}
.wsec{word-spacing:560.025000px;}
.wse9{word-spacing:560.880000px;}
.wsea{word-spacing:565.668000px;}
.wse0{word-spacing:572.223000px;}
.wse1{word-spacing:577.011000px;}
.wsf5{word-spacing:597.759000px;}
.wsf6{word-spacing:602.547000px;}
.wsf9{word-spacing:640.281000px;}
.wsfa{word-spacing:645.069000px;}
.wse7{word-spacing:645.924000px;}
.wse8{word-spacing:650.712000px;}
.wsf0{word-spacing:677.103000px;}
.wsf2{word-spacing:679.953000px;}
.wsf1{word-spacing:681.891000px;}
.wsf3{word-spacing:684.741000px;}
.wsde{word-spacing:699.789000px;}
.wsdf{word-spacing:704.577000px;}
._5b{margin-left:-1319.567040px;}
._4e{margin-left:-41.232000px;}
._19{margin-left:-27.891600px;}
._17{margin-left:-21.854712px;}
._15{margin-left:-20.336418px;}
._18{margin-left:-19.304442px;}
._f{margin-left:-18.185214px;}
._c{margin-left:-16.783994px;}
._14{margin-left:-15.678362px;}
._16{margin-left:-13.820214px;}
._e{margin-left:-12.576000px;}
._10{margin-left:-10.794000px;}
._d{margin-left:-9.482265px;}
._8{margin-left:-7.099692px;}
._a{margin-left:-5.367294px;}
._6{margin-left:-3.834540px;}
._1{margin-left:-2.407158px;}
._5{margin-left:-1.238814px;}
._0{width:1.604772px;}
._3{width:2.647874px;}
._7{width:4.188456px;}
._2{width:5.616702px;}
._4{width:6.740042px;}
._1a{width:7.834231px;}
._1b{width:9.119726px;}
._11{width:10.571964px;}
._12{width:11.682144px;}
._4f{width:13.334214px;}
._65{width:16.977600px;}
._60{width:23.040000px;}
._63{width:27.457920px;}
._1c{width:36.727200px;}
._13{width:72.738154px;}
._66{width:88.361280px;}
._59{width:108.434880px;}
._5a{width:109.825920px;}
._52{width:143.210880px;}
._61{width:200.854080px;}
._57{width:205.542720px;}
._1f{width:221.520000px;}
._46{width:233.062200px;}
._45{width:240.142200px;}
._53{width:277.678080px;}
._54{width:279.797760px;}
._55{width:282.049920px;}
._56{width:284.103360px;}
._58{width:285.428160px;}
._9{width:288.665232px;}
._5e{width:298.800000px;}
._62{width:307.872000px;}
._4d{width:360.214200px;}
._5d{width:370.152000px;}
._b{width:373.733436px;}
._4c{width:378.544200px;}
._49{width:383.073000px;}
._34{width:389.416800px;}
._35{width:390.797400px;}
._48{width:391.863000px;}
._4a{width:393.676800px;}
._3a{width:404.428800px;}
._3b{width:405.448800px;}
._32{width:407.805000px;}
._33{width:408.825000px;}
._39{width:412.617600px;}
._36{width:418.916400px;}
._4b{width:420.658200px;}
._5f{width:423.360000px;}
._31{width:435.836400px;}
._44{width:469.118400px;}
._26{width:472.188000px;}
._43{width:476.258400px;}
._28{width:477.546000px;}
._27{width:489.345000px;}
._22{width:492.822000px;}
._25{width:494.133000px;}
._23{width:495.786000px;}
._24{width:496.926000px;}
._21{width:498.123000px;}
._20{width:509.922000px;}
._47{width:516.618600px;}
._5c{width:519.336000px;}
._38{width:545.875800px;}
._37{width:551.695800px;}
._3d{width:553.123200px;}
._3c{width:555.538200px;}
._2f{width:558.355800px;}
._42{width:570.445800px;}
._3e{width:571.585200px;}
._41{width:572.845800px;}
._40{width:574.165800px;}
._30{width:575.576400px;}
._3f{width:577.286400px;}
._2b{width:581.276400px;}
._2e{width:583.015800px;}
._2c{width:584.396400px;}
._2d{width:585.415800px;}
._2a{width:587.216400px;}
._29{width:599.096400px;}
._1e{width:883.260000px;}
._1d{width:961.200000px;}
._64{width:1025.130240px;}
._50{width:1231.799040px;}
._51{width:2698.551360px;}
.fcd{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fc7{color:rgb(54,54,54);}
.fc1{color:rgb(226,28,28);}
.fce{color:rgb(15,15,15);}
.fc2{color:rgb(20,90,149);}
.fc3{color:rgb(223,56,74);}
.fc8{color:rgb(255,255,255);}
.fc4{color:rgb(229,96,110);}
.fc5{color:rgb(28,69,135);}
.fc6{color:rgb(88,88,90);}
.fca{color:transparent;}
.fc9{color:rgb(74,69,42);}
.fcb{color:rgb(255,0,0);}
.fcc{color:rgb(17,85,204);}
.fs14{font-size:30.432600px;}
.fs1e{font-size:33.120000px;}
.fs16{font-size:34.980000px;}
.fs1c{font-size:41.760000px;}
.fs12{font-size:42.000000px;}
.fsf{font-size:48.000000px;}
.fs10{font-size:54.000000px;}
.fs1b{font-size:54.720000px;}
.fs15{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs18{font-size:60.480000px;}
.fs1a{font-size:63.360000px;}
.fs8{font-size:66.000000px;}
.fs17{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs1d{font-size:77.760000px;}
.fs4{font-size:78.000000px;}
.fs19{font-size:83.520000px;}
.fs13{font-size:84.000000px;}
.fs6{font-size:90.000000px;}
.fsc{font-size:101.532000px;}
.fsd{font-size:102.000000px;}
.fs1{font-size:108.000000px;}
.fs3{font-size:129.819600px;}
.fs11{font-size:132.000000px;}
.fs0{font-size:133.731000px;}
.fse{font-size:150.000000px;}
.fsb{font-size:175.055400px;}
.fsa{font-size:182.199000px;}
.fs2{font-size:272.620800px;}
.fs9{font-size:314.136000px;}
.y66f{bottom:-1.316850px;}
.y0{bottom:0.000000px;}
.y69f{bottom:4.141050px;}
.y633{bottom:4.320150px;}
.y65f{bottom:4.380000px;}
.y69b{bottom:4.619550px;}
.y662{bottom:4.620150px;}
.y632{bottom:4.920150px;}
.y63b{bottom:5.040150px;}
.y62e{bottom:5.160150px;}
.y696{bottom:5.219550px;}
.y665{bottom:5.280150px;}
.y638{bottom:12.360150px;}
.y608{bottom:12.838950px;}
.y639{bottom:13.080150px;}
.y602{bottom:13.980450px;}
.y605{bottom:14.520450px;}
.y66c{bottom:14.880150px;}
.y63e{bottom:14.940150px;}
.y66a{bottom:15.060150px;}
.y63f{bottom:15.300150px;}
.y603{bottom:15.420450px;}
.y6a2{bottom:15.539550px;}
.y609{bottom:15.718950px;}
.y6a4{bottom:15.719550px;}
.y641{bottom:15.840150px;}
.y606{bottom:15.960450px;}
.y698{bottom:16.979550px;}
.y5ff{bottom:17.818950px;}
.y600{bottom:19.258950px;}
.y66e{bottom:21.246000px;}
.y69e{bottom:24.661050px;}
.y6a0{bottom:25.021050px;}
.y69a{bottom:25.139550px;}
.y661{bottom:25.140150px;}
.y65e{bottom:25.260000px;}
.y69c{bottom:25.499550px;}
.y63a{bottom:25.560150px;}
.y668{bottom:25.680150px;}
.y664{bottom:25.800000px;}
.y630{bottom:25.920150px;}
.y62d{bottom:26.040150px;}
.y695{bottom:26.099550px;}
.y63c{bottom:26.280150px;}
.y666{bottom:26.520150px;}
.y5fa{bottom:34.440450px;}
.y5f6{bottom:34.560450px;}
.y5fb{bottom:34.800450px;}
.y5f7{bottom:34.920450px;}
.y5fd{bottom:35.880450px;}
.y55c{bottom:43.210650px;}
.y66d{bottom:44.769150px;}
.y55b{bottom:48.250650px;}
.yad{bottom:52.901550px;}
.y5e{bottom:52.936950px;}
.y635{bottom:54.360150px;}
.y66b{bottom:76.689000px;}
.y6a5{bottom:80.125050px;}
.y60c{bottom:80.243490px;}
.y2{bottom:81.293700px;}
.y5c2{bottom:81.652890px;}
.y58f{bottom:82.305930px;}
.y18e{bottom:96.198000px;}
.y52e{bottom:96.339150px;}
.yff{bottom:96.969750px;}
.y118{bottom:97.782450px;}
.y554{bottom:97.795350px;}
.y2c9{bottom:98.975400px;}
.y5c1{bottom:101.806410px;}
.y58e{bottom:102.459450px;}
.y60b{bottom:103.278450px;}
.y643{bottom:103.449150px;}
.y3e4{bottom:103.996800px;}
.y669{bottom:108.189000px;}
.y5b{bottom:108.626250px;}
.y335{bottom:109.385700px;}
.y2af{bottom:109.672500px;}
.y6a3{bottom:111.565500px;}
.y7e{bottom:111.811500px;}
.y4ee{bottom:112.555950px;}
.y117{bottom:112.786950px;}
.y1{bottom:114.726450px;}
.y318{bottom:118.457400px;}
.y270{bottom:118.475400px;}
.y4a6{bottom:119.200650px;}
.y18d{bottom:120.048000px;}
.y52d{bottom:120.193650px;}
.y12b{bottom:120.355500px;}
.yac{bottom:120.355650px;}
.yfe{bottom:120.819750px;}
.y5c0{bottom:121.959930px;}
.y58d{bottom:122.612970px;}
.y2c8{bottom:122.730150px;}
.y463{bottom:122.859450px;}
.y3e3{bottom:123.490800px;}
.y60a{bottom:126.678450px;}
.y116{bottom:127.791450px;}
.y341{bottom:128.879700px;}
.y484{bottom:129.537600px;}
.y44d{bottom:129.644700px;}
.y334{bottom:133.140450px;}
.y2f0{bottom:133.424550px;}
.y2ae{bottom:133.427250px;}
.y5a{bottom:135.134250px;}
.y4ed{bottom:136.405950px;}
.y40d{bottom:136.719750px;}
.y317{bottom:137.951400px;}
.y642{bottom:138.369150px;}
.y4a5{bottom:138.694650px;}
.y667{bottom:139.689000px;}
.y5bf{bottom:142.113450px;}
.y26f{bottom:142.230150px;}
.y58c{bottom:142.766490px;}
.y115{bottom:142.795950px;}
.y3e2{bottom:142.984800px;}
.y6a1{bottom:143.065500px;}
.y18c{bottom:143.898000px;}
.y52c{bottom:144.048150px;}
.y12a{bottom:144.205500px;}
.yab{bottom:144.205650px;}
.y132{bottom:144.567600px;}
.yfd{bottom:144.669750px;}
.y462{bottom:146.614200px;}
.y360{bottom:147.650850px;}
.y44c{bottom:149.138700px;}
.y640{bottom:151.689000px;}
.y340{bottom:152.634450px;}
.y287{bottom:153.211350px;}
.y483{bottom:153.292350px;}
.y7d{bottom:155.155500px;}
.y40c{bottom:156.213750px;}
.y2ef{bottom:157.179300px;}
.y4a4{bottom:158.188650px;}
.y2c7{bottom:158.212650px;}
.y607{bottom:159.199500px;}
.y4ec{bottom:160.255950px;}
.y59{bottom:161.642250px;}
.y316{bottom:161.706150px;}
.y5be{bottom:162.266970px;}
.y58b{bottom:162.920010px;}
.y3e1{bottom:166.739550px;}
.y35f{bottom:167.144850px;}
.y18b{bottom:167.748000px;}
.y52b{bottom:167.902650px;}
.y129{bottom:168.055500px;}
.yaa{bottom:168.055650px;}
.y131{bottom:168.417600px;}
.yfc{bottom:168.519750px;}
.y333{bottom:168.622950px;}
.y44b{bottom:168.632700px;}
.y2ad{bottom:168.909750px;}
.y254{bottom:172.406550px;}
.y40b{bottom:175.707750px;}
.y69d{bottom:176.064000px;}
.y286{bottom:176.966100px;}
.y2c6{bottom:177.706650px;}
.y26e{bottom:177.712650px;}
.y7c{bottom:179.005500px;}
.y663{bottom:181.689000px;}
.y5bd{bottom:182.420490px;}
.y58a{bottom:183.073530px;}
.y63d{bottom:183.189000px;}
.y4eb{bottom:184.105950px;}
.y4a3{bottom:186.189900px;}
.y33f{bottom:188.116950px;}
.y58{bottom:188.150250px;}
.y2ac{bottom:188.403750px;}
.y604{bottom:189.198000px;}
.y35e{bottom:190.899600px;}
.y18a{bottom:191.598000px;}
.y52a{bottom:191.757150px;}
.y128{bottom:191.905500px;}
.ya9{bottom:191.905650px;}
.y36e{bottom:191.918550px;}
.y130{bottom:192.267600px;}
.yfb{bottom:192.369750px;}
.y2ee{bottom:192.661800px;}
.y482{bottom:193.491600px;}
.y253{bottom:196.161300px;}
.y332{bottom:196.624200px;}
.y44a{bottom:196.633950px;}
.y315{bottom:197.188650px;}
.y26d{bottom:197.206650px;}
.y40a{bottom:199.462500px;}
.y3e0{bottom:202.222050px;}
.y5bc{bottom:202.574010px;}
.y7b{bottom:202.855500px;}
.y589{bottom:203.227050px;}
.y4a2{bottom:205.683900px;}
.y2c5{bottom:205.707900px;}
.y57{bottom:206.150250px;}
.y4ea{bottom:207.955950px;}
.y36d{bottom:211.412550px;}
.y2ed{bottom:212.155800px;}
.y285{bottom:212.448600px;}
.y236{bottom:213.890850px;}
.y461{bottom:214.486950px;}
.y634{bottom:214.689000px;}
.y189{bottom:215.448000px;}
.y529{bottom:215.611650px;}
.y127{bottom:215.755500px;}
.ya8{bottom:215.755650px;}
.y3ae{bottom:215.812050px;}
.y12f{bottom:216.117600px;}
.y331{bottom:216.118200px;}
.y449{bottom:216.127950px;}
.yd2{bottom:216.219750px;}
.y2ab{bottom:216.405000px;}
.y314{bottom:216.682650px;}
.y699{bottom:218.065500px;}
.y601{bottom:220.698000px;}
.y481{bottom:221.492850px;}
.y3df{bottom:221.716050px;}
.y5bb{bottom:222.727530px;}
.y588{bottom:223.380570px;}
.y56{bottom:224.150250px;}
.y4a1{bottom:225.177900px;}
.y660{bottom:225.189000px;}
.y2c4{bottom:225.201900px;}
.y26c{bottom:225.207900px;}
.y35d{bottom:226.382100px;}
.y7a{bottom:226.705500px;}
.y252{bottom:231.643800px;}
.y4e9{bottom:231.805950px;}
.y284{bottom:231.942600px;}
.y409{bottom:234.945000px;}
.y36c{bottom:235.167300px;}
.y330{bottom:235.612200px;}
.y448{bottom:235.621950px;}
.y2aa{bottom:235.899000px;}
.y4c3{bottom:237.565950px;}
.y235{bottom:237.645600px;}
.y188{bottom:239.298000px;}
.y528{bottom:239.466150px;}
.y3ad{bottom:239.566800px;}
.y126{bottom:239.605500px;}
.ya7{bottom:239.605650px;}
.y12e{bottom:239.967600px;}
.yd1{bottom:240.069750px;}
.y2ec{bottom:240.157050px;}
.y480{bottom:240.986850px;}
.y460{bottom:242.488200px;}
.y5ba{bottom:242.533290px;}
.y587{bottom:243.534090px;}
.y313{bottom:244.683900px;}
.y2c3{bottom:244.695900px;}
.y26b{bottom:244.701900px;}
.y35c{bottom:245.876100px;}
.y636{bottom:247.809150px;}
.y3de{bottom:249.717300px;}
.y1f1{bottom:250.400550px;}
.y79{bottom:250.555500px;}
.y5fe{bottom:250.699500px;}
.y251{bottom:251.137800px;}
.y421{bottom:251.900550px;}
.y4a0{bottom:253.179150px;}
.y32f{bottom:255.106200px;}
.y447{bottom:255.115950px;}
.y28{bottom:255.213600px;}
.y2a9{bottom:255.393000px;}
.y4e8{bottom:255.655950px;}
.y637{bottom:256.689000px;}
.y1af{bottom:257.370450px;}
.y2eb{bottom:259.651050px;}
.y283{bottom:259.943850px;}
.y697{bottom:260.065500px;}
.y47f{bottom:260.480850px;}
.y4c2{bottom:261.320700px;}
.y45f{bottom:261.982200px;}
.y5b9{bottom:262.686810px;}
.y502{bottom:262.725750px;}
.y408{bottom:262.946250px;}
.y187{bottom:263.148000px;}
.y527{bottom:263.320650px;}
.y125{bottom:263.455500px;}
.ya6{bottom:263.455650px;}
.y586{bottom:263.687610px;}
.y114{bottom:263.817600px;}
.yd0{bottom:263.919750px;}
.y312{bottom:264.177900px;}
.y2c2{bottom:264.189900px;}
.y26a{bottom:264.195900px;}
.y65d{bottom:267.189000px;}
.y390{bottom:269.191950px;}
.y3dd{bottom:269.211300px;}
.y36b{bottom:270.649800px;}
.y49f{bottom:272.673150px;}
.y234{bottom:273.128100px;}
.y35b{bottom:273.877350px;}
.y1f0{bottom:274.155300px;}
.y78{bottom:274.405500px;}
.y32e{bottom:274.600200px;}
.y446{bottom:274.609950px;}
.y2a8{bottom:274.887000px;}
.y27{bottom:278.016600px;}
.y250{bottom:279.139050px;}
.y2ea{bottom:279.145050px;}
.y282{bottom:279.437850px;}
.y4e7{bottom:279.505950px;}
.y420{bottom:279.901800px;}
.y47e{bottom:279.974850px;}
.y45e{bottom:281.476200px;}
.y407{bottom:282.440250px;}
.y5b8{bottom:282.840330px;}
.y311{bottom:283.671900px;}
.y2c1{bottom:283.683900px;}
.y269{bottom:283.689900px;}
.y585{bottom:283.841130px;}
.y1ce{bottom:284.132700px;}
.y5f9{bottom:285.198000px;}
.y3ac{bottom:286.435050px;}
.y501{bottom:286.575750px;}
.y62f{bottom:286.689000px;}
.y186{bottom:286.998000px;}
.y526{bottom:287.175150px;}
.y124{bottom:287.305500px;}
.ya5{bottom:287.305650px;}
.y113{bottom:287.667600px;}
.ycf{bottom:287.769750px;}
.y3dc{bottom:288.705300px;}
.y36a{bottom:290.143800px;}
.y49e{bottom:292.167150px;}
.y233{bottom:292.622100px;}
.y1ae{bottom:292.852950px;}
.y38f{bottom:292.946700px;}
.y694{bottom:293.065500px;}
.y35a{bottom:293.371350px;}
.y212{bottom:293.945400px;}
.y32d{bottom:294.094200px;}
.y445{bottom:294.103950px;}
.y2a7{bottom:294.381000px;}
.y55{bottom:294.650250px;}
.y4c1{bottom:296.803200px;}
.y77{bottom:298.255500px;}
.y24f{bottom:298.633050px;}
.y2e9{bottom:298.639050px;}
.y5fc{bottom:298.758450px;}
.y281{bottom:298.931850px;}
.y41f{bottom:299.395800px;}
.y47d{bottom:299.468850px;}
.y26{bottom:300.819600px;}
.y406{bottom:301.934250px;}
.y5b7{bottom:302.993850px;}
.y310{bottom:303.165900px;}
.y2c0{bottom:303.177900px;}
.y268{bottom:303.183900px;}
.y4e6{bottom:303.355950px;}
.y1cd{bottom:303.626700px;}
.y584{bottom:303.994650px;}
.y3ab{bottom:305.929050px;}
.y631{bottom:307.689000px;}
.y3db{bottom:308.199300px;}
.y45d{bottom:309.477450px;}
.y1ef{bottom:309.637800px;}
.y500{bottom:310.425750px;}
.y185{bottom:310.848000px;}
.y525{bottom:311.029650px;}
.y123{bottom:311.155500px;}
.ya4{bottom:311.155650px;}
.y112{bottom:311.517600px;}
.yce{bottom:311.619750px;}
.y49d{bottom:311.661150px;}
.y162{bottom:312.509250px;}
.y54{bottom:312.650250px;}
.y359{bottom:312.865350px;}
.y65c{bottom:313.329000px;}
.y32c{bottom:313.588200px;}
.y444{bottom:313.597950px;}
.y14b{bottom:313.775700px;}
.y2a6{bottom:313.875000px;}
.y4c0{bottom:316.297200px;}
.y211{bottom:317.700150px;}
.y24e{bottom:318.127050px;}
.y2e8{bottom:318.133050px;}
.y369{bottom:318.145050px;}
.y280{bottom:318.425850px;}
.y41e{bottom:318.889800px;}
.y47c{bottom:318.962850px;}
.y232{bottom:320.623350px;}
.y405{bottom:321.428250px;}
.y76{bottom:322.105500px;}
.y30f{bottom:322.659900px;}
.y2bf{bottom:322.671900px;}
.y267{bottom:322.677900px;}
.y5b6{bottom:323.147370px;}
.y25{bottom:323.622600px;}
.y583{bottom:324.148170px;}
.y4e5{bottom:327.206100px;}
.y1cc{bottom:327.381450px;}
.y3da{bottom:327.693300px;}
.y1ad{bottom:328.335450px;}
.y38e{bottom:328.429200px;}
.y62c{bottom:328.689000px;}
.y45c{bottom:328.971450px;}
.y1ee{bottom:329.131800px;}
.y53{bottom:330.650250px;}
.y49c{bottom:331.155150px;}
.y65b{bottom:331.329150px;}
.y358{bottom:332.359350px;}
.y32b{bottom:333.082200px;}
.y443{bottom:333.091950px;}
.y3aa{bottom:333.930300px;}
.y184{bottom:334.698000px;}
.y524{bottom:334.884150px;}
.y122{bottom:335.005500px;}
.ya3{bottom:335.005650px;}
.y111{bottom:335.367600px;}
.ycd{bottom:335.469750px;}
.y5f5{bottom:336.198000px;}
.y161{bottom:336.359250px;}
.y14a{bottom:337.618200px;}
.y24d{bottom:337.621050px;}
.y2e7{bottom:337.627050px;}
.y368{bottom:337.639050px;}
.y27f{bottom:337.919850px;}
.y41d{bottom:338.383800px;}
.y693{bottom:340.045050px;}
.y231{bottom:340.117350px;}
.y404{bottom:340.922250px;}
.y2a5{bottom:341.876250px;}
.y30e{bottom:342.153900px;}
.y266{bottom:342.171900px;}
.y5b5{bottom:343.300890px;}
.y4bf{bottom:344.298450px;}
.y582{bottom:344.301690px;}
.y75{bottom:345.961500px;}
.y47b{bottom:346.964100px;}
.y3d9{bottom:347.187300px;}
.y5d8{bottom:347.888010px;}
.y38d{bottom:347.923200px;}
.y45b{bottom:348.465450px;}
.y52{bottom:348.650250px;}
.y5f8{bottom:349.878450px;}
.y49b{bottom:350.649150px;}
.y2be{bottom:350.673150px;}
.y4e4{bottom:351.056100px;}
.y357{bottom:351.853350px;}
.y65a{bottom:352.209150px;}
.y32a{bottom:352.576200px;}
.y210{bottom:353.182650px;}
.y3a9{bottom:353.424300px;}
.y24c{bottom:357.115050px;}
.y2e6{bottom:357.121050px;}
.y1ed{bottom:357.133050px;}
.y41c{bottom:357.877800px;}
.y692{bottom:358.045050px;}
.y183{bottom:358.548000px;}
.y523{bottom:358.738650px;}
.y121{bottom:358.855500px;}
.ya2{bottom:358.855650px;}
.y110{bottom:359.217600px;}
.ycc{bottom:359.319750px;}
.y230{bottom:359.611350px;}
.y160{bottom:360.209250px;}
.y403{bottom:360.416250px;}
.y442{bottom:361.093200px;}
.y2a4{bottom:361.370250px;}
.y149{bottom:361.460700px;}
.y265{bottom:361.665900px;}
.y1cb{bottom:362.863950px;}
.y5b4{bottom:363.454410px;}
.y4be{bottom:363.792450px;}
.y1ac{bottom:363.817950px;}
.y581{bottom:364.455210px;}
.y27e{bottom:365.921100px;}
.y47a{bottom:366.458100px;}
.y51{bottom:366.650250px;}
.yb{bottom:366.805200px;}
.y45a{bottom:367.959450px;}
.y5d7{bottom:368.041530px;}
.y24{bottom:369.228600px;}
.y659{bottom:369.849150px;}
.y49a{bottom:370.143150px;}
.y30d{bottom:370.155150px;}
.y2bd{bottom:370.167150px;}
.y329{bottom:372.070200px;}
.y20f{bottom:372.676650px;}
.y3a8{bottom:372.918300px;}
.y4e3{bottom:374.905950px;}
.y3d8{bottom:375.188550px;}
.y62b{bottom:375.609150px;}
.y38c{bottom:375.924450px;}
.y24b{bottom:376.609050px;}
.y2e5{bottom:376.615050px;}
.y1ec{bottom:376.627050px;}
.y41b{bottom:377.371800px;}
.y691{bottom:378.565050px;}
.y22f{bottom:379.105350px;}
.y356{bottom:379.854600px;}
.y441{bottom:380.587200px;}
.y2a3{bottom:380.864250px;}
.y264{bottom:381.159900px;}
.y1ca{bottom:382.357950px;}
.y182{bottom:382.398000px;}
.y522{bottom:382.593150px;}
.y120{bottom:382.705500px;}
.ya1{bottom:382.705650px;}
.y10f{bottom:383.067600px;}
.ycb{bottom:383.169750px;}
.y4bd{bottom:383.286450px;}
.y5b3{bottom:383.607930px;}
.y15f{bottom:384.059250px;}
.y35{bottom:384.475800px;}
.y580{bottom:384.608730px;}
.y50{bottom:384.650250px;}
.y148{bottom:385.303200px;}
.y27d{bottom:385.415100px;}
.y479{bottom:385.952100px;}
.y402{bottom:388.417500px;}
.y74{bottom:389.305500px;}
.y30c{bottom:389.649150px;}
.y2bc{bottom:389.661150px;}
.y5f4{bottom:390.198450px;}
.y23{bottom:392.031600px;}
.y62a{bottom:393.609150px;}
.y3d7{bottom:394.682550px;}
.y38b{bottom:395.418450px;}
.y459{bottom:395.960700px;}
.y1eb{bottom:396.121050px;}
.y41a{bottom:396.865800px;}
.y499{bottom:398.144400px;}
.y22e{bottom:398.599350px;}
.y4e2{bottom:398.755950px;}
.y1ab{bottom:399.300450px;}
.y355{bottom:399.348600px;}
.y5d6{bottom:399.356490px;}
.y328{bottom:400.071450px;}
.y440{bottom:400.081200px;}
.y2a2{bottom:400.358250px;}
.y20e{bottom:400.677900px;}
.y3a7{bottom:400.919550px;}
.y5f3{bottom:400.998450px;}
.y4bc{bottom:402.780450px;}
.y5b2{bottom:403.761450px;}
.y24a{bottom:404.610300px;}
.y2e4{bottom:404.616300px;}
.y57f{bottom:404.762250px;}
.y27c{bottom:404.909100px;}
.y690{bottom:405.205050px;}
.y478{bottom:405.446100px;}
.y181{bottom:406.248000px;}
.y521{bottom:406.447650px;}
.y11f{bottom:406.555500px;}
.ya0{bottom:406.555650px;}
.y12d{bottom:406.917600px;}
.y509{bottom:407.019600px;}
.yca{bottom:407.019750px;}
.y15e{bottom:407.909250px;}
.y401{bottom:407.911500px;}
.y30b{bottom:409.143150px;}
.y147{bottom:409.145700px;}
.y2bb{bottom:409.155150px;}
.y263{bottom:409.161150px;}
.yef{bottom:409.639800px;}
.y1c9{bottom:410.359200px;}
.y73{bottom:413.155500px;}
.y3d6{bottom:414.176550px;}
.y22{bottom:414.834600px;}
.y38a{bottom:414.912450px;}
.y1ea{bottom:415.615050px;}
.y419{bottom:416.359800px;}
.y22d{bottom:418.093350px;}
.y354{bottom:418.842600px;}
.y5f2{bottom:418.998450px;}
.y4f{bottom:419.150250px;}
.y327{bottom:419.565450px;}
.y43f{bottom:419.575200px;}
.y2a1{bottom:419.852250px;}
.y20d{bottom:420.171900px;}
.y3a6{bottom:420.413550px;}
.y4bb{bottom:422.274450px;}
.y4e1{bottom:422.605950px;}
.y5b1{bottom:423.914970px;}
.y249{bottom:424.104300px;}
.y2e3{bottom:424.110300px;}
.y27b{bottom:424.403100px;}
.y57e{bottom:424.915770px;}
.y477{bottom:424.940100px;}
.y400{bottom:427.405500px;}
.y2ba{bottom:428.649150px;}
.y262{bottom:428.655150px;}
.y1c8{bottom:429.853200px;}
.y180{bottom:430.098000px;}
.y520{bottom:430.302150px;}
.y11e{bottom:430.405500px;}
.y9f{bottom:430.405650px;}
.y10e{bottom:430.767600px;}
.y508{bottom:430.869600px;}
.yc9{bottom:430.869750px;}
.y68f{bottom:431.125050px;}
.y15d{bottom:431.759250px;}
.yee{bottom:433.482300px;}
.y498{bottom:433.637550px;}
.y3d5{bottom:433.670550px;}
.y389{bottom:434.406450px;}
.y5d5{bottom:434.629290px;}
.y1aa{bottom:434.782950px;}
.y1e9{bottom:435.109050px;}
.y418{bottom:435.853800px;}
.y72{bottom:437.005500px;}
.y30a{bottom:437.144400px;}
.y22c{bottom:437.587350px;}
.y21{bottom:437.637600px;}
.y353{bottom:438.336600px;}
.y326{bottom:439.059450px;}
.y43e{bottom:439.069200px;}
.y2a0{bottom:439.346250px;}
.y20c{bottom:439.665900px;}
.y3a5{bottom:439.907550px;}
.y248{bottom:443.598300px;}
.y2e2{bottom:443.604300px;}
.y27a{bottom:443.897100px;}
.y5b0{bottom:444.068490px;}
.y476{bottom:444.434100px;}
.y57d{bottom:445.069290px;}
.y34{bottom:445.073400px;}
.y4e{bottom:445.658250px;}
.y4e0{bottom:446.455950px;}
.y3ff{bottom:446.899500px;}
.y2b9{bottom:448.143150px;}
.y261{bottom:448.149150px;}
.y1c7{bottom:449.347200px;}
.y68e{bottom:449.485050px;}
.y4ba{bottom:450.275700px;}
.y3d4{bottom:453.164550px;}
.y388{bottom:453.900450px;}
.y17f{bottom:453.948000px;}
.y51f{bottom:454.156650px;}
.y140{bottom:454.255500px;}
.y9e{bottom:454.255650px;}
.y1e8{bottom:454.603050px;}
.y10d{bottom:454.617600px;}
.y507{bottom:454.719600px;}
.yc8{bottom:454.719750px;}
.y54c{bottom:455.213100px;}
.y417{bottom:455.347800px;}
.y15c{bottom:455.609250px;}
.y22b{bottom:457.081350px;}
.yed{bottom:457.324800px;}
.y352{bottom:457.830600px;}
.y325{bottom:458.553450px;}
.y20b{bottom:459.159900px;}
.y3a4{bottom:459.401550px;}
.y71{bottom:460.861500px;}
.y2e1{bottom:463.098300px;}
.y367{bottom:463.110300px;}
.y279{bottom:463.391100px;}
.y458{bottom:463.841400px;}
.y5af{bottom:464.222010px;}
.y57c{bottom:465.222810px;}
.y43d{bottom:467.070450px;}
.y29f{bottom:467.347500px;}
.y260{bottom:467.643150px;}
.y1c6{bottom:468.841200px;}
.y497{bottom:469.120050px;}
.y1a9{bottom:470.265450px;}
.y4df{bottom:470.305950px;}
.y247{bottom:471.599550px;}
.y475{bottom:472.435350px;}
.y3d3{bottom:472.658550px;}
.y309{bottom:472.663800px;}
.y3fe{bottom:474.900750px;}
.y68d{bottom:475.405050px;}
.y2b8{bottom:476.144400px;}
.y17e{bottom:477.798000px;}
.y33{bottom:477.833400px;}
.y51e{bottom:478.011150px;}
.y11d{bottom:478.105500px;}
.y9d{bottom:478.105650px;}
.y146{bottom:478.107600px;}
.y4b9{bottom:478.276950px;}
.y10c{bottom:478.467600px;}
.y506{bottom:478.569600px;}
.yc7{bottom:478.569750px;}
.y20a{bottom:478.653900px;}
.y496{bottom:478.867050px;}
.y3a3{bottom:478.895550px;}
.y54b{bottom:479.067600px;}
.y15b{bottom:479.459250px;}
.yec{bottom:481.167300px;}
.y387{bottom:481.901700px;}
.y1e7{bottom:482.604300px;}
.y20{bottom:483.243600px;}
.y416{bottom:483.349050px;}
.y5ae{bottom:484.375530px;}
.y57b{bottom:485.028570px;}
.y22a{bottom:485.082600px;}
.y351{bottom:485.831850px;}
.y324{bottom:486.554700px;}
.y1c5{bottom:488.335200px;}
.y5d4{bottom:490.784250px;}
.y2e0{bottom:491.099550px;}
.y278{bottom:491.392350px;}
.y68c{bottom:493.752090px;}
.y4de{bottom:494.155950px;}
.y25f{bottom:495.644400px;}
.y209{bottom:498.147900px;}
.y457{bottom:499.323900px;}
.y3d2{bottom:500.659800px;}
.y198{bottom:500.952900px;}
.y386{bottom:501.395700px;}
.y17d{bottom:501.648000px;}
.y51d{bottom:501.865650px;}
.y11c{bottom:501.955500px;}
.y9c{bottom:501.955650px;}
.y145{bottom:501.957600px;}
.y1e6{bottom:502.098300px;}
.y10b{bottom:502.317600px;}
.y505{bottom:502.419600px;}
.yc6{bottom:502.419750px;}
.y43c{bottom:502.563600px;}
.y29e{bottom:502.835400px;}
.y415{bottom:502.843050px;}
.y54a{bottom:502.922100px;}
.y15a{bottom:503.309250px;}
.y4d{bottom:503.399100px;}
.y70{bottom:504.211500px;}
.y5ad{bottom:504.529050px;}
.y229{bottom:504.576600px;}
.yeb{bottom:505.009800px;}
.y57a{bottom:505.182090px;}
.y1a8{bottom:505.747950px;}
.y1f{bottom:506.046600px;}
.y3a2{bottom:506.896800px;}
.y246{bottom:507.087300px;}
.y308{bottom:508.146300px;}
.y456{bottom:509.070900px;}
.y3fd{bottom:510.402150px;}
.y32{bottom:510.593400px;}
.y5d3{bottom:510.937770px;}
.y2b7{bottom:511.645800px;}
.y474{bottom:512.635650px;}
.y68b{bottom:513.557850px;}
.y4b8{bottom:513.761850px;}
.y1c4{bottom:516.336450px;}
.y629{bottom:517.809150px;}
.y4dd{bottom:518.005950px;}
.y385{bottom:520.889700px;}
.y350{bottom:521.333250px;}
.y323{bottom:522.042450px;}
.y414{bottom:522.337050px;}
.y4b7{bottom:523.508850px;}
.y228{bottom:524.070600px;}
.y495{bottom:524.110800px;}
.y5ac{bottom:524.682570px;}
.y579{bottom:525.335610px;}
.y17c{bottom:525.498000px;}
.y51c{bottom:525.720150px;}
.y9b{bottom:525.805650px;}
.y144{bottom:525.807600px;}
.y208{bottom:526.149150px;}
.y10a{bottom:526.167600px;}
.y504{bottom:526.269600px;}
.yc5{bottom:526.269750px;}
.y2df{bottom:526.592700px;}
.y549{bottom:526.776600px;}
.y277{bottom:526.893750px;}
.y159{bottom:527.159250px;}
.y307{bottom:527.640300px;}
.y1e{bottom:528.849600px;}
.y1e5{bottom:530.099550px;}
.y4c{bottom:530.406600px;}
.y25e{bottom:531.151800px;}
.y494{bottom:531.582300px;}
.y68a{bottom:533.363610px;}
.y1c3{bottom:535.830450px;}
.y3d1{bottom:536.153550px;}
.y2de{bottom:536.339700px;}
.y304{bottom:537.373050px;}
.y43b{bottom:538.046100px;}
.y29d{bottom:538.317900px;}
.y628{bottom:538.689150px;}
.y1a7{bottom:541.230450px;}
.y4dc{bottom:541.855950px;}
.y245{bottom:542.569800px;}
.y31{bottom:543.353400px;}
.y227{bottom:543.564600px;}
.y5ab{bottom:544.836090px;}
.y578{bottom:545.489130px;}
.y207{bottom:545.643150px;}
.y3fc{bottom:545.884650px;}
.y2b6{bottom:547.128300px;}
.y306{bottom:547.134300px;}
.y6f{bottom:547.561500px;}
.y43a{bottom:547.793100px;}
.y473{bottom:548.118150px;}
.y384{bottom:548.890950px;}
.y17b{bottom:549.348000px;}
.y51b{bottom:549.574650px;}
.y11b{bottom:549.655500px;}
.y9a{bottom:549.655650px;}
.y143{bottom:549.657600px;}
.y12c{bottom:550.017600px;}
.y503{bottom:550.119600px;}
.yc4{bottom:550.119750px;}
.y413{bottom:550.338300px;}
.y548{bottom:550.631100px;}
.y158{bottom:551.009250px;}
.y1d{bottom:551.652600px;}
.y3a1{bottom:551.653350px;}
.y5d2{bottom:551.973450px;}
.y689{bottom:553.169370px;}
.y455{bottom:554.308050px;}
.y34f{bottom:556.815750px;}
.y4b{bottom:557.414100px;}
.y322{bottom:557.524950px;}
.y472{bottom:557.865150px;}
.y627{bottom:559.209150px;}
.y276{bottom:562.376250px;}
.y1c2{bottom:563.831700px;}
.y5aa{bottom:564.989610px;}
.y366{bottom:565.587300px;}
.y1e4{bottom:565.600950px;}
.y577{bottom:565.642650px;}
.y4db{bottom:565.705950px;}
.y305{bottom:566.628300px;}
.y25d{bottom:566.634300px;}
.y4b6{bottom:568.752600px;}
.y688{bottom:569.364900px;}
.y226{bottom:571.565850px;}
.y3d0{bottom:571.636050px;}
.y17a{bottom:573.198000px;}
.y51a{bottom:573.429150px;}
.y14f{bottom:573.505500px;}
.y99{bottom:573.505650px;}
.y142{bottom:573.507600px;}
.y206{bottom:573.644400px;}
.y29c{bottom:573.808050px;}
.y109{bottom:573.867600px;}
.yea{bottom:573.969600px;}
.yc3{bottom:573.969750px;}
.y547{bottom:574.485600px;}
.y157{bottom:574.859250px;}
.y30{bottom:576.113400px;}
.y1a6{bottom:576.712950px;}
.y244{bottom:578.059950px;}
.y4b5{bottom:578.499600px;}
.y626{bottom:579.363390px;}
.y3fb{bottom:581.367150px;}
.y3cf{bottom:581.383050px;}
.y2dd{bottom:581.583450px;}
.y2b5{bottom:582.610800px;}
.y383{bottom:584.378700px;}
.y4a{bottom:584.421600px;}
.y5a9{bottom:585.143130px;}
.y576{bottom:585.796170px;}
.y412{bottom:585.831450px;}
.y3a0{bottom:587.135850px;}
.y3fa{bottom:588.838650px;}
.y4da{bottom:589.555950px;}
.y2b4{bottom:590.082300px;}
.y6e{bottom:590.911500px;}
.y34e{bottom:592.298250px;}
.y321{bottom:593.015100px;}
.y439{bottom:593.036850px;}
.y493{bottom:595.177050px;}
.y428{bottom:595.938300px;}
.y179{bottom:597.048000px;}
.y1c{bottom:597.258600px;}
.y519{bottom:597.283650px;}
.y14e{bottom:597.355500px;}
.y98{bottom:597.355650px;}
.y141{bottom:597.357600px;}
.y108{bottom:597.717600px;}
.ye9{bottom:597.819600px;}
.yc2{bottom:597.819750px;}
.y275{bottom:597.858750px;}
.y546{bottom:598.340100px;}
.y156{bottom:598.709250px;}
.y625{bottom:599.169150px;}
.y1c1{bottom:599.333250px;}
.y34d{bottom:599.769900px;}
.y5f1{bottom:600.438450px;}
.y438{bottom:600.508500px;}
.y365{bottom:601.069800px;}
.y1e3{bottom:601.083450px;}
.y303{bottom:602.110800px;}
.y25c{bottom:602.116800px;}
.y471{bottom:603.102300px;}
.y5a8{bottom:605.296650px;}
.y274{bottom:605.330400px;}
.y575{bottom:605.949690px;}
.y225{bottom:607.067400px;}
.y5d1{bottom:608.128410px;}
.y2f{bottom:608.873400px;}
.y205{bottom:609.145800px;}
.y302{bottom:609.582300px;}
.y687{bottom:610.404900px;}
.y49{bottom:611.429100px;}
.y1a5{bottom:612.195450px;}
.y454{bottom:612.553800px;}
.y4d9{bottom:613.405950px;}
.y427{bottom:615.432300px;}
.y2dc{bottom:617.065950px;}
.y492{bottom:618.931800px;}
.y259{bottom:619.332300px;}
.y5f0{bottom:619.518450px;}
.y624{bottom:619.689150px;}
.y382{bottom:619.861200px;}
.y1b{bottom:620.061600px;}
.y4ff{bottom:620.475750px;}
.y178{bottom:620.898000px;}
.y518{bottom:621.138150px;}
.y14d{bottom:621.205500px;}
.y97{bottom:621.205650px;}
.y411{bottom:621.313950px;}
.y107{bottom:621.567600px;}
.y25b{bottom:621.610800px;}
.ye8{bottom:621.669600px;}
.yc1{bottom:621.669750px;}
.y545{bottom:622.194600px;}
.y39f{bottom:622.618350px;}
.y4b4{bottom:623.743350px;}
.y2db{bottom:624.537450px;}
.y5a7{bottom:625.450170px;}
.y574{bottom:626.103210px;}
.y3ce{bottom:626.620200px;}
.y5d0{bottom:628.281930px;}
.y410{bottom:631.060950px;}
.y4b3{bottom:631.214850px;}
.y686{bottom:631.285050px;}
.y29b{bottom:632.033550px;}
.y243{bottom:634.177050px;}
.y6d{bottom:634.255500px;}
.y1c0{bottom:634.815750px;}
.y453{bottom:636.308550px;}
.y364{bottom:636.559950px;}
.y1e2{bottom:636.565950px;}
.y4d8{bottom:637.255950px;}
.y48{bottom:638.436600px;}
.y39c{bottom:639.834000px;}
.y658{bottom:640.209150px;}
.y5ef{bottom:640.398450px;}
.y25a{bottom:641.104800px;}
.y623{bottom:641.289150px;}
.y2e{bottom:641.633400px;}
.y39e{bottom:642.112350px;}
.y224{bottom:642.549900px;}
.y1a{bottom:642.864600px;}
.y426{bottom:643.433550px;}
.y1e1{bottom:644.037450px;}
.y4fe{bottom:644.325750px;}
.y204{bottom:644.628300px;}
.y177{bottom:644.748000px;}
.y517{bottom:644.992650px;}
.y14c{bottom:645.055500px;}
.y96{bottom:645.055650px;}
.y5a6{bottom:645.255930px;}
.y106{bottom:645.417600px;}
.ye7{bottom:645.519600px;}
.yc0{bottom:645.519750px;}
.y544{bottom:646.049100px;}
.y573{bottom:646.256730px;}
.y1a4{bottom:647.677950px;}
.y320{bottom:649.126200px;}
.y33e{bottom:649.132200px;}
.y685{bottom:650.005050px;}
.y3f9{bottom:652.427400px;}
.y2b3{bottom:653.671050px;}
.y491{bottom:654.414300px;}
.y381{bottom:655.351350px;}
.y29a{bottom:655.788300px;}
.y242{bottom:657.931800px;}
.y6c{bottom:658.105500px;}
.y470{bottom:659.188050px;}
.y657{bottom:661.089000px;}
.y4d7{bottom:661.105950px;}
.y39d{bottom:661.606350px;}
.y425{bottom:662.927550px;}
.y5ee{bottom:663.078450px;}
.y622{bottom:663.249150px;}
.y34c{bottom:663.346500px;}
.y437{bottom:664.095750px;}
.y5a5{bottom:665.409450px;}
.y47{bottom:665.444100px;}
.y19{bottom:665.667600px;}
.y572{bottom:666.410250px;}
.y4fd{bottom:668.175750px;}
.y176{bottom:668.598000px;}
.y31f{bottom:668.620200px;}
.y33d{bottom:668.626200px;}
.y516{bottom:668.847150px;}
.y4c9{bottom:668.905500px;}
.y95{bottom:668.905650px;}
.y105{bottom:669.267600px;}
.y5cf{bottom:669.317610px;}
.ye6{bottom:669.369600px;}
.ybf{bottom:669.369750px;}
.y543{bottom:669.903600px;}
.y684{bottom:670.165050px;}
.y1bf{bottom:670.298250px;}
.y273{bottom:671.027550px;}
.y3f8{bottom:671.921400px;}
.y301{bottom:673.153050px;}
.y490{bottom:673.908300px;}
.y452{bottom:673.914300px;}
.y2d{bottom:674.393400px;}
.y40f{bottom:676.304700px;}
.y2b2{bottom:677.425800px;}
.y1be{bottom:677.769750px;}
.y223{bottom:678.032400px;}
.y203{bottom:680.110800px;}
.y6b{bottom:681.955500px;}
.y424{bottom:682.421550px;}
.y3cd{bottom:682.696650px;}
.y34b{bottom:682.840500px;}
.y46f{bottom:682.942800px;}
.y1a3{bottom:683.160450px;}
.y656{bottom:683.409000px;}
.y436{bottom:683.589750px;}
.y5ed{bottom:683.598450px;}
.y621{bottom:683.769150px;}
.y40e{bottom:683.776350px;}
.y4d6{bottom:684.955950px;}
.y222{bottom:685.503900px;}
.y5a4{bottom:685.562970px;}
.y571{bottom:687.292410px;}
.y202{bottom:687.582300px;}
.y2da{bottom:688.114200px;}
.y18{bottom:688.470600px;}
.y683{bottom:689.964900px;}
.y3f7{bottom:691.415400px;}
.y31e{bottom:692.374950px;}
.y33c{bottom:692.380950px;}
.y175{bottom:692.448000px;}
.y46{bottom:692.451600px;}
.y300{bottom:692.647050px;}
.y258{bottom:692.659050px;}
.y515{bottom:692.701650px;}
.y133{bottom:692.755500px;}
.y94{bottom:692.755650px;}
.y104{bottom:693.117600px;}
.ye5{bottom:693.219600px;}
.ybe{bottom:693.219750px;}
.y48f{bottom:693.402300px;}
.y299{bottom:693.408300px;}
.y241{bottom:693.414300px;}
.y542{bottom:693.758100px;}
.y4b2{bottom:694.758900px;}
.y272{bottom:694.782300px;}
.y3bd{bottom:701.290800px;}
.y423{bottom:701.915550px;}
.y3cc{bottom:702.190650px;}
.y435{bottom:703.083750px;}
.y5ec{bottom:703.398450px;}
.y620{bottom:703.569150px;}
.y5a3{bottom:705.716490px;}
.y6a{bottom:705.805500px;}
.y34a{bottom:706.595250px;}
.y2c{bottom:707.153400px;}
.y570{bottom:707.445930px;}
.y1e0{bottom:707.614200px;}
.y4d5{bottom:708.805950px;}
.y17{bottom:711.273600px;}
.y380{bottom:711.444450px;}
.y2d9{bottom:711.868950px;}
.y363{bottom:712.153050px;}
.y298{bottom:712.902300px;}
.y240{bottom:712.908300px;}
.y39b{bottom:713.129400px;}
.y3f6{bottom:715.170150px;}
.y174{bottom:716.298000px;}
.y2ff{bottom:716.401800px;}
.y257{bottom:716.413800px;}
.y514{bottom:716.556150px;}
.y4c8{bottom:716.605500px;}
.y93{bottom:716.605650px;}
.y103{bottom:716.967600px;}
.ye4{bottom:717.069600px;}
.yfa{bottom:717.069750px;}
.y541{bottom:717.612600px;}
.y682{bottom:717.684900px;}
.y4b1{bottom:718.513650px;}
.y1a2{bottom:718.642950px;}
.y553{bottom:718.909800px;}
.y45{bottom:719.459100px;}
.y48e{bottom:721.403550px;}
.y422{bottom:721.409550px;}
.y655{bottom:723.369150px;}
.y3bc{bottom:725.045550px;}
.y5ce{bottom:725.472570px;}
.y5a2{bottom:725.870010px;}
.y3cb{bottom:725.945400px;}
.y56f{bottom:727.599450px;}
.y31d{bottom:727.857450px;}
.y33b{bottom:727.863450px;}
.y69{bottom:729.661500px;}
.y434{bottom:731.085000px;}
.y5eb{bottom:731.118450px;}
.y61f{bottom:731.289150px;}
.y1df{bottom:731.368950px;}
.y271{bottom:732.402300px;}
.y4d4{bottom:732.655950px;}
.y16{bottom:734.076600px;}
.y37f{bottom:735.199200px;}
.y362{bottom:735.907800px;}
.y39a{bottom:736.884150px;}
.y2b{bottom:739.913400px;}
.y173{bottom:740.148000px;}
.y513{bottom:740.410650px;}
.ybd{bottom:740.455500px;}
.y92{bottom:740.455650px;}
.y102{bottom:740.817600px;}
.y48d{bottom:740.897550px;}
.y297{bottom:740.903550px;}
.y23f{bottom:740.909550px;}
.ye3{bottom:740.919600px;}
.yf9{bottom:740.919750px;}
.y1bd{bottom:741.322500px;}
.y540{bottom:741.467100px;}
.y349{bottom:742.077750px;}
.y681{bottom:745.405050px;}
.y5a1{bottom:746.023530px;}
.y44{bottom:746.466600px;}
.y2d8{bottom:747.351450px;}
.y56e{bottom:747.752970px;}
.y221{bottom:749.062500px;}
.y433{bottom:750.579000px;}
.y3f5{bottom:750.652650px;}
.y654{bottom:751.089150px;}
.y201{bottom:751.141050px;}
.y2fe{bottom:751.884300px;}
.y256{bottom:751.896300px;}
.y46e{bottom:752.383050px;}
.y1a1{bottom:754.129800px;}
.y33a{bottom:755.864700px;}
.y4d3{bottom:756.505950px;}
.y15{bottom:756.879600px;}
.y5ea{bottom:758.838300px;}
.y61e{bottom:759.009150px;}
.y48c{bottom:760.391550px;}
.y296{bottom:760.397550px;}
.y23e{bottom:760.403550px;}
.y1bc{bottom:760.816500px;}
.y348{bottom:761.571750px;}
.y552{bottom:762.259800px;}
.y197{bottom:763.302900px;}
.y5cd{bottom:763.626810px;}
.y3bb{bottom:763.691550px;}
.y172{bottom:763.998000px;}
.y512{bottom:764.265150px;}
.y4c7{bottom:764.305500px;}
.y91{bottom:764.305650px;}
.y101{bottom:764.667600px;}
.ye2{bottom:764.769600px;}
.yf8{bottom:764.769750px;}
.y53f{bottom:765.321600px;}
.y5a0{bottom:766.177050px;}
.y2d7{bottom:766.845450px;}
.y1de{bottom:766.851450px;}
.y56d{bottom:767.906490px;}
.y432{bottom:770.073000px;}
.y200{bottom:770.635050px;}
.y37e{bottom:770.681700px;}
.y3ca{bottom:771.246150px;}
.y2fd{bottom:771.378300px;}
.y255{bottom:771.390300px;}
.y2a{bottom:772.673400px;}
.y220{bottom:772.817250px;}
.y68{bottom:773.005500px;}
.y680{bottom:773.125050px;}
.y43{bottom:773.474100px;}
.y31c{bottom:775.352700px;}
.y339{bottom:775.358700px;}
.y3f4{bottom:778.653900px;}
.y653{bottom:778.809000px;}
.y14{bottom:779.682600px;}
.y48b{bottom:779.885550px;}
.y295{bottom:779.891550px;}
.y23d{bottom:779.897550px;}
.y46d{bottom:780.384300px;}
.y4b0{bottom:782.182650px;}
.y3ba{bottom:783.185550px;}
.y5cc{bottom:783.780330px;}
.y1bb{bottom:784.571250px;}
.y5e9{bottom:786.198300px;}
.y59f{bottom:786.330570px;}
.y1dd{bottom:786.345450px;}
.y61d{bottom:786.369150px;}
.y196{bottom:787.152900px;}
.y171{bottom:787.848000px;}
.y511{bottom:788.119650px;}
.y1a0{bottom:788.155500px;}
.y90{bottom:788.155650px;}
.y56c{bottom:788.424330px;}
.y100{bottom:788.517600px;}
.ye1{bottom:788.619600px;}
.yf7{bottom:788.619750px;}
.y53e{bottom:789.176100px;}
.y155{bottom:789.509250px;}
.y431{bottom:789.567000px;}
.y347{bottom:789.573000px;}
.y37d{bottom:790.175700px;}
.y361{bottom:790.884300px;}
.y1ff{bottom:794.389800px;}
.y2d6{bottom:794.846700px;}
.y338{bottom:794.852700px;}
.y67{bottom:796.855500px;}
.y3f3{bottom:798.147900px;}
.y3c9{bottom:799.247400px;}
.y2fc{bottom:799.379550px;}
.y294{bottom:799.385550px;}
.y23c{bottom:799.391550px;}
.y46c{bottom:799.878300px;}
.y42{bottom:800.481600px;}
.y67f{bottom:800.485050px;}
.y399{bottom:801.123150px;}
.y4af{bottom:801.676650px;}
.y13{bottom:802.485600px;}
.y4d2{bottom:804.205950px;}
.y29{bottom:805.433400px;}
.y551{bottom:805.609800px;}
.y59e{bottom:806.484090px;}
.y652{bottom:806.529000px;}
.y430{bottom:809.061000px;}
.y346{bottom:809.067000px;}
.y56b{bottom:809.306490px;}
.y3b9{bottom:811.186800px;}
.y170{bottom:811.698000px;}
.y510{bottom:811.974150px;}
.y4c6{bottom:812.005500px;}
.y8f{bottom:812.005650px;}
.ybc{bottom:812.367600px;}
.ye0{bottom:812.469600px;}
.yf6{bottom:812.469750px;}
.y53d{bottom:813.030600px;}
.y154{bottom:813.359250px;}
.y5e8{bottom:813.918300px;}
.y61c{bottom:814.089150px;}
.y2d5{bottom:814.340700px;}
.y1dc{bottom:814.346700px;}
.y21f{bottom:816.636000px;}
.y3f2{bottom:817.641900px;}
.y37c{bottom:818.176950px;}
.y3c8{bottom:818.741400px;}
.y2fb{bottom:818.873550px;}
.y293{bottom:818.879550px;}
.y23b{bottom:818.885550px;}
.y46b{bottom:819.372300px;}
.y1ba{bottom:820.053750px;}
.y398{bottom:820.617150px;}
.y66{bottom:820.705500px;}
.y5cb{bottom:824.816010px;}
.y12{bottom:825.288600px;}
.y67e{bottom:826.404900px;}
.y59d{bottom:826.637610px;}
.y4d1{bottom:828.055950px;}
.y42f{bottom:828.555000px;}
.y345{bottom:828.561000px;}
.y56a{bottom:829.112250px;}
.y4ae{bottom:829.677900px;}
.y1fe{bottom:829.872300px;}
.y3b8{bottom:830.680800px;}
.y11a{bottom:832.253700px;}
.y2d4{bottom:833.834700px;}
.y1db{bottom:833.840700px;}
.y651{bottom:833.889000px;}
.y16f{bottom:835.548000px;}
.y50f{bottom:835.828650px;}
.y19f{bottom:835.855500px;}
.y8e{bottom:835.855650px;}
.y21e{bottom:836.130000px;}
.ybb{bottom:836.217600px;}
.ydf{bottom:836.319600px;}
.yf5{bottom:836.319750px;}
.y53c{bottom:836.885100px;}
.y3f1{bottom:837.135900px;}
.y153{bottom:837.209250px;}
.y37b{bottom:837.670950px;}
.y3c7{bottom:838.235400px;}
.y2fa{bottom:838.367550px;}
.y292{bottom:838.373550px;}
.y23a{bottom:838.379550px;}
.y1b9{bottom:839.547750px;}
.y5e7{bottom:839.838450px;}
.y61b{bottom:840.009150px;}
.y67d{bottom:840.805050px;}
.y65{bottom:844.555500px;}
.y59c{bottom:846.791130px;}
.y46a{bottom:847.373550px;}
.y42e{bottom:848.049000px;}
.y344{bottom:848.055000px;}
.y11{bottom:848.091600px;}
.y397{bottom:848.618400px;}
.y550{bottom:848.959800px;}
.y4ad{bottom:849.171900px;}
.y569{bottom:849.265770px;}
.y1fd{bottom:849.366300px;}
.y3b7{bottom:850.174800px;}
.y4d0{bottom:851.905950px;}
.y2d3{bottom:853.328700px;}
.y1da{bottom:853.334700px;}
.y5e6{bottom:854.238300px;}
.y61a{bottom:854.409150px;}
.y3f0{bottom:856.629900px;}
.y9{bottom:856.672800px;}
.y37a{bottom:857.164950px;}
.y3c6{bottom:857.729400px;}
.y2f9{bottom:857.861550px;}
.y291{bottom:857.867550px;}
.y239{bottom:857.873550px;}
.y16e{bottom:859.398000px;}
.y50e{bottom:859.683150px;}
.y19e{bottom:859.705500px;}
.y8d{bottom:859.705650px;}
.y650{bottom:859.809150px;}
.yba{bottom:860.067600px;}
.yde{bottom:860.169600px;}
.yf4{bottom:860.169750px;}
.y53b{bottom:860.739600px;}
.y67c{bottom:860.965050px;}
.y152{bottom:861.059250px;}
.y21d{bottom:864.131250px;}
.y469{bottom:866.867550px;}
.y59b{bottom:866.944650px;}
.y1b8{bottom:867.549000px;}
.y396{bottom:868.112400px;}
.y64{bottom:868.405500px;}
.y4ac{bottom:868.665900px;}
.y568{bottom:869.419290px;}
.y41{bottom:869.481600px;}
.y3b6{bottom:869.668800px;}
.y10{bottom:870.894600px;}
.y2d2{bottom:872.822700px;}
.y1d9{bottom:872.828700px;}
.y64f{bottom:874.209000px;}
.y5e5{bottom:874.398450px;}
.y619{bottom:874.569150px;}
.y4cf{bottom:875.755950px;}
.y42d{bottom:876.050250px;}
.y3ef{bottom:876.123900px;}
.y379{bottom:876.658950px;}
.y2f8{bottom:877.355550px;}
.y451{bottom:877.361550px;}
.y1fc{bottom:877.367550px;}
.y67b{bottom:877.877850px;}
.y5ca{bottom:880.970970px;}
.y16d{bottom:883.248000px;}
.y50d{bottom:883.537650px;}
.y19d{bottom:883.555500px;}
.y8c{bottom:883.555650px;}
.y21c{bottom:883.625250px;}
.y13f{bottom:883.736850px;}
.yb9{bottom:883.917600px;}
.ydd{bottom:884.019600px;}
.yf3{bottom:884.019750px;}
.y53a{bottom:884.594100px;}
.y151{bottom:884.909250px;}
.y3c5{bottom:885.730650px;}
.y290{bottom:885.868800px;}
.y2b1{bottom:885.874800px;}
.y468{bottom:886.361550px;}
.y1b7{bottom:887.043000px;}
.y59a{bottom:887.098170px;}
.y4ab{bottom:888.159900px;}
.y3b5{bottom:889.162800px;}
.y567{bottom:889.937130px;}
.y5e4{bottom:891.306930px;}
.y618{bottom:891.477630px;}
.y63{bottom:892.261500px;}
.y54f{bottom:892.309800px;}
.y2d1{bottom:892.316700px;}
.y1d8{bottom:892.322700px;}
.yf{bottom:893.697600px;}
.y67a{bottom:893.719290px;}
.y64e{bottom:893.996190px;}
.y42c{bottom:895.544250px;}
.y343{bottom:895.550250px;}
.y395{bottom:896.113650px;}
.y378{bottom:896.152950px;}
.y48a{bottom:896.849550px;}
.y450{bottom:896.855550px;}
.y1fb{bottom:896.861550px;}
.y4ce{bottom:899.605950px;}
.y21b{bottom:903.119250px;}
.y3ee{bottom:904.125150px;}
.y3c4{bottom:905.224650px;}
.y2f7{bottom:905.356800px;}
.y28f{bottom:905.362800px;}
.y2b0{bottom:905.368800px;}
.y467{bottom:905.855550px;}
.y1b6{bottom:906.537000px;}
.y5e3{bottom:906.792690px;}
.y617{bottom:906.963390px;}
.y16c{bottom:907.098000px;}
.y599{bottom:907.251690px;}
.y50c{bottom:907.392150px;}
.y19c{bottom:907.405500px;}
.y8b{bottom:907.405650px;}
.y13e{bottom:907.586850px;}
.yb8{bottom:907.767600px;}
.ydc{bottom:907.869600px;}
.yf2{bottom:907.869750px;}
.y539{bottom:908.448600px;}
.y3b4{bottom:908.656800px;}
.y150{bottom:908.759250px;}
.y679{bottom:909.205050px;}
.y64d{bottom:909.837630px;}
.y566{bottom:910.090650px;}
.y40{bottom:911.481600px;}
.y2d0{bottom:911.810700px;}
.y1d7{bottom:911.816700px;}
.y42b{bottom:915.038250px;}
.y342{bottom:915.044250px;}
.y394{bottom:915.607650px;}
.y377{bottom:915.646950px;}
.y8{bottom:916.106850px;}
.y4aa{bottom:916.161150px;}
.y489{bottom:916.343550px;}
.y44f{bottom:916.349550px;}
.y1fa{bottom:916.355550px;}
.ye{bottom:916.500600px;}
.ya{bottom:917.197500px;}
.y5c9{bottom:919.125210px;}
.y5e2{bottom:922.278450px;}
.y616{bottom:922.449150px;}
.y21a{bottom:922.613250px;}
.y4cd{bottom:923.455950px;}
.y3ed{bottom:923.619150px;}
.y3c3{bottom:924.718650px;}
.y2f6{bottom:924.850800px;}
.y28e{bottom:924.856800px;}
.y238{bottom:924.862800px;}
.y678{bottom:925.045050px;}
.y64c{bottom:925.323390px;}
.y466{bottom:925.349550px;}
.y598{bottom:927.405210px;}
.y565{bottom:929.527770px;}
.y16b{bottom:930.948000px;}
.y50b{bottom:931.246650px;}
.y19b{bottom:931.255500px;}
.y8a{bottom:931.255650px;}
.y1d6{bottom:931.310700px;}
.y13d{bottom:931.436850px;}
.yb7{bottom:931.617600px;}
.ydb{bottom:931.719600px;}
.yf1{bottom:931.719750px;}
.y538{bottom:932.303100px;}
.y42a{bottom:934.532250px;}
.y1b5{bottom:934.538250px;}
.y393{bottom:935.101650px;}
.y62{bottom:935.605500px;}
.y54e{bottom:935.659800px;}
.y44e{bottom:935.843550px;}
.y1f9{bottom:935.849550px;}
.y3b3{bottom:936.658050px;}
.y5e1{bottom:938.118450px;}
.y615{bottom:938.289150px;}
.y5c8{bottom:939.278730px;}
.y2cf{bottom:939.811950px;}
.y337{bottom:939.817950px;}
.y64b{bottom:940.809150px;}
.y219{bottom:942.107250px;}
.y3ec{bottom:943.113150px;}
.y376{bottom:943.648200px;}
.y677{bottom:943.764900px;}
.y4a9{bottom:944.162400px;}
.y2f5{bottom:944.344800px;}
.y28d{bottom:944.350800px;}
.y237{bottom:944.356800px;}
.y465{bottom:944.843550px;}
.y4cc{bottom:947.305950px;}
.y597{bottom:948.287370px;}
.y564{bottom:948.969210px;}
.y1d5{bottom:950.804700px;}
.yd{bottom:952.062600px;}
.y3c2{bottom:952.719900px;}
.y3f{bottom:953.481600px;}
.y1b4{bottom:954.032250px;}
.y392{bottom:954.595650px;}
.y16a{bottom:954.797850px;}
.y50a{bottom:955.101150px;}
.y19a{bottom:955.105500px;}
.y89{bottom:955.105650px;}
.y13c{bottom:955.286850px;}
.yb6{bottom:955.467600px;}
.yda{bottom:955.569600px;}
.y192{bottom:955.569750px;}
.y3b2{bottom:956.152050px;}
.y537{bottom:956.157600px;}
.y5e0{bottom:957.198450px;}
.y64a{bottom:957.369000px;}
.y614{bottom:957.369150px;}
.y2ce{bottom:959.305950px;}
.y336{bottom:959.311950px;}
.y61{bottom:959.455500px;}
.y429{bottom:962.533500px;}
.y3eb{bottom:962.607150px;}
.y375{bottom:963.142200px;}
.y28c{bottom:963.844800px;}
.y1f8{bottom:963.850800px;}
.y4f0{bottom:966.361500px;}
.y563{bottom:968.411940px;}
.y596{bottom:968.440890px;}
.y218{bottom:970.108500px;}
.y4cb{bottom:971.155950px;}
.y2f4{bottom:972.346050px;}
.y464{bottom:972.844800px;}
.y3b1{bottom:975.646050px;}
.y5c7{bottom:977.432970px;}
.y4fc{bottom:978.225750px;}
.y86{bottom:978.539700px;}
.y169{bottom:978.647850px;}
.y2cd{bottom:978.799950px;}
.y1d4{bottom:978.805950px;}
.yf0{bottom:978.955500px;}
.y88{bottom:978.955650px;}
.y54d{bottom:979.003800px;}
.y13b{bottom:979.136850px;}
.yb5{bottom:979.317600px;}
.yd9{bottom:979.419600px;}
.y191{bottom:979.419750px;}
.y536{bottom:980.012100px;}
.yc{bottom:980.621100px;}
.y1b3{bottom:982.033500px;}
.y3ea{bottom:982.101150px;}
.y391{bottom:982.596900px;}
.y374{bottom:982.636200px;}
.y60{bottom:983.305500px;}
.y1f7{bottom:983.344800px;}
.y676{bottom:983.725050px;}
.y7{bottom:984.262050px;}
.y562{bottom:987.130500px;}
.y595{bottom:988.594410px;}
.y217{bottom:989.602500px;}
.y28b{bottom:991.846050px;}
.y4ca{bottom:995.005950px;}
.y3b0{bottom:995.140050px;}
.y5df{bottom:997.158450px;}
.y649{bottom:997.329000px;}
.y613{bottom:997.329150px;}
.y5c6{bottom:997.586490px;}
.y3c1{bottom:998.027400px;}
.y1d3{bottom:998.299950px;}
.y3a{bottom:1001.337450px;}
.y4fb{bottom:1002.075750px;}
.y4ef{bottom:1002.364500px;}
.y85{bottom:1002.389700px;}
.y168{bottom:1002.497850px;}
.y13a{bottom:1002.986850px;}
.yb4{bottom:1003.167600px;}
.yd8{bottom:1003.269600px;}
.y4f5{bottom:1003.269750px;}
.y535{bottom:1003.866600px;}
.y37{bottom:1006.658700px;}
.y2cc{bottom:1006.801200px;}
.y4a8{bottom:1007.830950px;}
.y2f3{bottom:1007.845200px;}
.y594{bottom:1009.476570px;}
.y3e9{bottom:1010.102400px;}
.y373{bottom:1010.637450px;}
.y1f6{bottom:1011.346050px;}
.y675{bottom:1013.600580px;}
.y561{bottom:1014.143610px;}
.y1b2{bottom:1017.521400px;}
.y4a7{bottom:1017.577950px;}
.y216{bottom:1017.603750px;}
.y5c5{bottom:1017.740010px;}
.y3af{bottom:1023.141300px;}
.y5de{bottom:1024.878450px;}
.y4fa{bottom:1025.925750px;}
.y84{bottom:1026.239700px;}
.y1d2{bottom:1026.301200px;}
.y167{bottom:1026.347850px;}
.y190{bottom:1026.655500px;}
.y139{bottom:1026.836850px;}
.y648{bottom:1026.855480px;}
.y612{bottom:1026.855630px;}
.yb3{bottom:1027.017600px;}
.yd7{bottom:1027.119600px;}
.y4f4{bottom:1027.119750px;}
.y28a{bottom:1027.339200px;}
.y534{bottom:1027.721100px;}
.y593{bottom:1029.630090px;}
.y560{bottom:1032.136410px;}
.y3c0{bottom:1033.509900px;}
.y39{bottom:1034.334450px;}
.y5c4{bottom:1037.893530px;}
.y199{bottom:1038.367500px;}
.y674{bottom:1040.604900px;}
.y2cb{bottom:1042.281000px;}
.y31b{bottom:1042.295250px;}
.y3bf{bottom:1043.256900px;}
.y2f2{bottom:1043.327700px;}
.y36{bottom:1043.356050px;}
.y3e8{bottom:1045.603800px;}
.y372{bottom:1046.138850px;}
.y1f5{bottom:1046.847450px;}
.y4f9{bottom:1049.775750px;}
.y592{bottom:1049.783610px;}
.y83{bottom:1050.089700px;}
.y166{bottom:1050.197850px;}
.y55f{bottom:1050.492090px;}
.y4c5{bottom:1050.520500px;}
.y138{bottom:1050.686850px;}
.yb2{bottom:1050.867600px;}
.yd6{bottom:1050.969600px;}
.y4f3{bottom:1050.969750px;}
.y533{bottom:1051.575600px;}
.y2ca{bottom:1052.028000px;}
.y1b1{bottom:1053.003900px;}
.y488{bottom:1053.074700px;}
.y5dd{bottom:1054.398450px;}
.y5c3{bottom:1058.047050px;}
.y215{bottom:1061.427750px;}
.y1d1{bottom:1061.789250px;}
.y289{bottom:1062.821700px;}
.y647{bottom:1065.729000px;}
.y611{bottom:1065.729150px;}
.y3e{bottom:1067.009100px;}
.y38{bottom:1067.331450px;}
.y55e{bottom:1068.847770px;}
.y591{bottom:1069.937130px;}
.y288{bottom:1072.568700px;}
.y195{bottom:1073.352900px;}
.y4f8{bottom:1073.625750px;}
.y82{bottom:1073.939700px;}
.y165{bottom:1074.047850px;}
.y87{bottom:1074.370500px;}
.y137{bottom:1074.536850px;}
.yb1{bottom:1074.717600px;}
.yd5{bottom:1074.819600px;}
.y4f2{bottom:1074.819750px;}
.y532{bottom:1075.430100px;}
.y31a{bottom:1077.777750px;}
.y3e7{bottom:1081.086300px;}
.y371{bottom:1081.621350px;}
.y6{bottom:1082.156700px;}
.y2f1{bottom:1082.315700px;}
.y1f4{bottom:1082.329950px;}
.y673{bottom:1084.532970px;}
.y5dc{bottom:1084.994130px;}
.y319{bottom:1087.524750px;}
.y1b0{bottom:1088.494050px;}
.y590{bottom:1090.090650px;}
.y55d{bottom:1091.890650px;}
.y3d{bottom:1094.016600px;}
.y214{bottom:1096.910250px;}
.y194{bottom:1097.202900px;}
.y1d0{bottom:1097.271750px;}
.y4f7{bottom:1097.475750px;}
.y81{bottom:1097.789700px;}
.y164{bottom:1097.897850px;}
.y4c4{bottom:1098.205500px;}
.y487{bottom:1098.318450px;}
.y136{bottom:1098.386850px;}
.yb0{bottom:1098.567600px;}
.yd4{bottom:1098.669600px;}
.y4f1{bottom:1098.669750px;}
.y531{bottom:1099.284600px;}
.y646{bottom:1109.656920px;}
.y610{bottom:1109.657070px;}
.y5d{bottom:1113.213600px;}
.y5db{bottom:1114.518450px;}
.y485{bottom:1115.534250px;}
.y3e6{bottom:1116.568800px;}
.y5{bottom:1116.662700px;}
.y370{bottom:1117.103850px;}
.y1f3{bottom:1117.812450px;}
.y55a{bottom:1118.890650px;}
.y672{bottom:1120.885050px;}
.y3c{bottom:1121.024100px;}
.y80{bottom:1121.639700px;}
.y18f{bottom:1121.747850px;}
.y5f{bottom:1122.055500px;}
.y135{bottom:1122.236850px;}
.yaf{bottom:1122.417600px;}
.y530{bottom:1123.139100px;}
.y3e5{bottom:1124.040600px;}
.y559{bottom:1124.294970px;}
.y36f{bottom:1124.575500px;}
.y1f2{bottom:1125.284250px;}
.y119{bottom:1125.627600px;}
.y213{bottom:1132.400250px;}
.y1cf{bottom:1132.761750px;}
.y486{bottom:1137.306450px;}
.y5da{bottom:1142.598300px;}
.y4f6{bottom:1144.711650px;}
.y558{bottom:1144.812810px;}
.y193{bottom:1144.902900px;}
.y7f{bottom:1145.489700px;}
.y163{bottom:1145.597850px;}
.yd3{bottom:1145.905500px;}
.y3be{bottom:1145.905650px;}
.y645{bottom:1146.009000px;}
.y60f{bottom:1146.009150px;}
.y134{bottom:1146.086850px;}
.yae{bottom:1146.267600px;}
.y52f{bottom:1146.993600px;}
.y5c{bottom:1147.719600px;}
.y3b{bottom:1148.031600px;}
.y671{bottom:1148.964900px;}
.y4{bottom:1151.168700px;}
.y5d9{bottom:1161.318450px;}
.y557{bottom:1165.330650px;}
.y670{bottom:1167.685050px;}
.y644{bottom:1174.089000px;}
.y60e{bottom:1174.089150px;}
.y3{bottom:1185.674700px;}
.y556{bottom:1186.212810px;}
.y60d{bottom:1192.809150px;}
.y555{bottom:1206.730650px;}
.h4c{height:21.000000px;}
.h43{height:22.074609px;}
.h4b{height:22.500000px;}
.h3f{height:27.833203px;}
.h49{height:30.000000px;}
.h48{height:31.500000px;}
.h47{height:31.501500px;}
.h4f{height:33.000000px;}
.h50{height:33.001500px;}
.h53{height:34.498500px;}
.h1e{height:35.808000px;}
.h46{height:35.998500px;}
.h22{height:37.002000px;}
.h3e{height:37.994062px;}
.h23{height:40.284000px;}
.h34{height:40.310156px;}
.h3b{height:41.993438px;}
.h51{height:42.000000px;}
.h54{height:42.001500px;}
.h3d{height:42.229687px;}
.h16{height:42.288000px;}
.h2c{height:42.579000px;}
.h4e{height:43.500000px;}
.h4a{height:43.501500px;}
.h38{height:44.149219px;}
.h39{height:45.410625px;}
.h32{height:45.468000px;}
.h41{height:45.992812px;}
.h18{height:47.220000px;}
.h17{height:47.574000px;}
.h45{height:49.289062px;}
.h35{height:49.878281px;}
.h3c{height:50.027344px;}
.h40{height:50.027944px;}
.h26{height:50.217000px;}
.h28{height:50.958000px;}
.h42{height:51.827344px;}
.h44{height:52.500000px;}
.h1c{height:52.860000px;}
.h2f{height:52.860600px;}
.h24{height:53.640000px;}
.h36{height:54.576154px;}
.h37{height:54.623434px;}
.h33{height:54.628594px;}
.h3a{height:57.175312px;}
.hb{height:57.750000px;}
.hc{height:59.004000px;}
.h27{height:59.306400px;}
.h2a{height:59.307000px;}
.hd{height:59.748000px;}
.h1a{height:63.432000px;}
.ha{height:64.368000px;}
.h1f{height:64.848000px;}
.h21{height:65.376000px;}
.h8{height:67.860000px;}
.he{height:68.250000px;}
.h14{height:68.718000px;}
.h4d{height:72.000000px;}
.h12{height:74.219892px;}
.h1d{height:75.096000px;}
.h25{height:76.272000px;}
.h9{height:80.460000px;}
.h2e{height:89.205000px;}
.h13{height:91.188000px;}
.h4{height:94.500000px;}
.h2{height:96.018858px;}
.h3{height:97.222437px;}
.h2b{height:98.305800px;}
.h2d{height:98.306400px;}
.h29{height:98.307000px;}
.h20{height:101.904000px;}
.h6{height:102.168025px;}
.h1b{height:118.008000px;}
.h19{height:119.856000px;}
.h11{height:127.965497px;}
.h10{height:133.187469px;}
.h15{height:134.100000px;}
.h7{height:190.834560px;}
.h5{height:214.552570px;}
.hf{height:250.655616px;}
.h30{height:892.914000px;}
.h31{height:893.250000px;}
.h52{height:1220.341500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w10{width:55.500000px;}
.w7{width:57.000000px;}
.wb{width:60.000000px;}
.w8{width:61.500000px;}
.w9{width:99.000000px;}
.we{width:99.001500px;}
.w5{width:111.000000px;}
.w6{width:412.500000px;}
.wa{width:418.500000px;}
.wc{width:423.000000px;}
.wf{width:424.500000px;}
.wd{width:727.411500px;}
.w2{width:892.911000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1262.835000px;}
.w4{width:1263.000000px;}
.x2{left:-847.354500px;}
.xa{left:-821.386950px;}
.xb{left:-801.382200px;}
.x7{left:-763.941300px;}
.x8{left:-746.929800px;}
.x6{left:-544.276800px;}
.x5{left:-11.825850px;}
.x0{left:0.000000px;}
.x9e{left:1.319250px;}
.x96{left:8.160000px;}
.xa1{left:9.944250px;}
.xa2{left:11.339250px;}
.xa8{left:17.436600px;}
.x8f{left:19.155000px;}
.x91{left:20.604000px;}
.x8e{left:22.439850px;}
.xaa{left:27.787350px;}
.xab{left:29.769300px;}
.xb0{left:32.781000px;}
.x6e{left:34.327650px;}
.x1{left:61.787400px;}
.x3{left:63.775650px;}
.x7c{left:71.883600px;}
.x4a{left:79.401450px;}
.x2c{left:80.886450px;}
.x2e{left:82.221300px;}
.x26{left:83.856450px;}
.xb2{left:88.083450px;}
.x77{left:89.868810px;}
.x71{left:94.893000px;}
.x82{left:98.942640px;}
.x73{left:100.336200px;}
.x97{left:101.423400px;}
.x1f{left:106.299150px;}
.x22{left:107.424150px;}
.x75{left:109.822350px;}
.x72{left:112.356600px;}
.xb8{left:114.051000px;}
.x2f{left:115.553100px;}
.x61{left:116.681100px;}
.xad{left:118.074150px;}
.x20{left:119.151150px;}
.x8a{left:121.281000px;}
.x28{left:123.307050px;}
.xac{left:124.464180px;}
.x83{left:126.001680px;}
.x25{left:127.554150px;}
.x69{left:128.679150px;}
.x24{left:131.811000px;}
.x23{left:132.936000px;}
.xb9{left:134.055600px;}
.x2d{left:140.314950px;}
.x85{left:141.437070px;}
.x6a{left:147.483450px;}
.x7b{left:149.484720px;}
.x2b{left:153.070800px;}
.x99{left:155.437560px;}
.x6f{left:157.043970px;}
.x78{left:158.840250px;}
.x59{left:161.064750px;}
.x56{left:162.834750px;}
.x8b{left:163.941510px;}
.x7f{left:167.650080px;}
.x14{left:170.873250px;}
.x74{left:185.053560px;}
.x13{left:188.010750px;}
.x63{left:190.622550px;}
.x68{left:191.871300px;}
.x66{left:193.183800px;}
.x5e{left:194.315850px;}
.x3f{left:195.901650px;}
.x62{left:197.491500px;}
.x58{left:198.762300px;}
.x3d{left:200.498550px;}
.x48{left:201.701850px;}
.x43{left:203.276550px;}
.x8d{left:205.639500px;}
.x3a{left:207.506550px;}
.x9b{left:208.748400px;}
.x89{left:210.038310px;}
.x55{left:215.826900px;}
.x51{left:217.611900px;}
.x7e{left:220.758000px;}
.x29{left:223.818450px;}
.x44{left:226.006650px;}
.x5a{left:227.701800px;}
.x65{left:229.019250px;}
.x60{left:231.360600px;}
.x2a{left:232.773450px;}
.x80{left:233.906640px;}
.x41{left:234.913350px;}
.x42{left:236.110350px;}
.x37{left:238.136250px;}
.x39{left:239.441250px;}
.x4b{left:241.285200px;}
.x38{left:242.441100px;}
.x36{left:243.866100px;}
.x34{left:245.351100px;}
.x3c{left:246.739650px;}
.x30{left:248.321100px;}
.x52{left:251.914500px;}
.x54{left:253.111500px;}
.x79{left:255.004170px;}
.x95{left:256.702500px;}
.xd{left:259.059900px;}
.x81{left:260.949120px;}
.x5b{left:262.543950px;}
.x46{left:263.967750px;}
.x47{left:265.164750px;}
.xc{left:270.713400px;}
.x4d{left:271.763550px;}
.x4e{left:272.960550px;}
.x31{left:277.430700px;}
.x32{left:278.627700px;}
.x98{left:295.139400px;}
.x11{left:301.436250px;}
.xa3{left:302.580450px;}
.x88{left:303.643350px;}
.x10{left:321.735750px;}
.x1c{left:332.917350px;}
.xf{left:338.291250px;}
.x19{left:341.984850px;}
.x1d{left:349.940850px;}
.x57{left:357.165300px;}
.x1e{left:360.529350px;}
.x18{left:370.493850px;}
.x17{left:377.045850px;}
.x6d{left:378.192750px;}
.x9{left:381.928200px;}
.x1b{left:385.313850px;}
.x15{left:386.760750px;}
.x1a{left:388.102350px;}
.x87{left:390.150750px;}
.xb6{left:391.161150px;}
.x84{left:395.185950px;}
.x7a{left:403.233600px;}
.xe{left:405.863400px;}
.x6c{left:410.588700px;}
.x12{left:416.876250px;}
.x16{left:418.073850px;}
.x64{left:419.527500px;}
.x67{left:420.944850px;}
.x76{left:423.910110px;}
.x5f{left:426.614100px;}
.x5d{left:429.448800px;}
.x40{left:433.700850px;}
.xae{left:436.936650px;}
.x3e{left:442.204800px;}
.xa6{left:443.364150px;}
.x9a{left:444.523320px;}
.x4c{left:446.456700px;}
.x49{left:449.291250px;}
.xa4{left:451.951650px;}
.x8c{left:453.027270px;}
.x3b{left:454.960650px;}
.xa5{left:459.999750px;}
.x86{left:461.654550px;}
.x53{left:467.716500px;}
.x7d{left:469.702200px;}
.x70{left:477.261450px;}
.x5c{left:488.976450px;}
.x45{left:491.811000px;}
.x6b{left:504.036600px;}
.x4f{left:507.401550px;}
.x50{left:508.818900px;}
.x33{left:518.740200px;}
.x35{left:534.276900px;}
.x4{left:560.014650px;}
.x9f{left:637.044000px;}
.xaf{left:642.519000px;}
.xa7{left:648.984000px;}
.x90{left:650.047500px;}
.x92{left:667.663200px;}
.x27{left:693.861450px;}
.xa0{left:697.042500px;}
.xa9{left:704.484000px;}
.x93{left:705.547500px;}
.x9c{left:719.045160px;}
.x94{left:725.960550px;}
.x9d{left:744.735900px;}
.x21{left:795.680550px;}
.xb5{left:923.610450px;}
.xb1{left:997.223700px;}
.xb3{left:999.211950px;}
.xb7{left:1317.364500px;}
.xb4{left:1495.451100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:7.743467pt;}
.v3{vertical-align:15.451200pt;}
.v6{vertical-align:17.760533pt;}
.v2{vertical-align:18.686400pt;}
.v5{vertical-align:34.656000pt;}
.v4{vertical-align:42.746667pt;}
.lsb3{letter-spacing:-6.922667pt;}
.lsb{letter-spacing:-5.573581pt;}
.ls9{letter-spacing:-4.224000pt;}
.lsce{letter-spacing:-4.002667pt;}
.ls13{letter-spacing:-3.754667pt;}
.ls62{letter-spacing:-3.520000pt;}
.lsa{letter-spacing:-3.392614pt;}
.ls5{letter-spacing:-3.209544pt;}
.ls70{letter-spacing:-3.200000pt;}
.lsef{letter-spacing:-3.168000pt;}
.ls4{letter-spacing:-3.090672pt;}
.ls7{letter-spacing:-2.976000pt;}
.ls19{letter-spacing:-2.912000pt;}
.ls22{letter-spacing:-2.634667pt;}
.ls12c{letter-spacing:-2.346667pt;}
.ls23{letter-spacing:-2.288000pt;}
.lsb6{letter-spacing:-2.165333pt;}
.ls1d{letter-spacing:-2.149333pt;}
.ls1a{letter-spacing:-2.080000pt;}
.lsd6{letter-spacing:-2.026667pt;}
.ls17{letter-spacing:-2.010667pt;}
.lsdb{letter-spacing:-1.976000pt;}
.lsc6{letter-spacing:-1.824000pt;}
.ls15{letter-spacing:-1.802667pt;}
.lse2{letter-spacing:-1.773333pt;}
.ls29{letter-spacing:-1.733333pt;}
.lsc{letter-spacing:-1.730928pt;}
.ls8d{letter-spacing:-1.706667pt;}
.lsd5{letter-spacing:-1.672000pt;}
.ls99{letter-spacing:-1.600000pt;}
.ls21{letter-spacing:-1.594667pt;}
.lsa2{letter-spacing:-1.546667pt;}
.ls2{letter-spacing:-1.545336pt;}
.lscb{letter-spacing:-1.520000pt;}
.ls9b{letter-spacing:-1.493333pt;}
.lsa3{letter-spacing:-1.440000pt;}
.lsdf{letter-spacing:-1.418667pt;}
.lsb9{letter-spacing:-1.386667pt;}
.lsd1{letter-spacing:-1.368000pt;}
.ls71{letter-spacing:-1.344000pt;}
.lse1{letter-spacing:-1.317333pt;}
.lsa1{letter-spacing:-1.280000pt;}
.ls7e{letter-spacing:-1.226667pt;}
.ls18{letter-spacing:-1.178667pt;}
.lsf{letter-spacing:-1.152000pt;}
.lsa4{letter-spacing:-1.120000pt;}
.ls14{letter-spacing:-1.114667pt;}
.ls1b{letter-spacing:-1.109333pt;}
.lsb7{letter-spacing:-1.066667pt;}
.ls6{letter-spacing:-1.056000pt;}
.ls26{letter-spacing:-1.040000pt;}
.ls5c{letter-spacing:-1.024000pt;}
.ls9a{letter-spacing:-1.013333pt;}
.ls12{letter-spacing:-0.997333pt;}
.ls24{letter-spacing:-0.970667pt;}
.lsd{letter-spacing:-0.969318pt;}
.lse3{letter-spacing:-0.962667pt;}
.lsa0{letter-spacing:-0.960000pt;}
.ls98{letter-spacing:-0.906667pt;}
.ls27{letter-spacing:-0.901333pt;}
.lse5{letter-spacing:-0.861333pt;}
.ls25{letter-spacing:-0.832000pt;}
.lsd4{letter-spacing:-0.810667pt;}
.lse{letter-spacing:-0.800000pt;}
.ls9d{letter-spacing:-0.768000pt;}
.ls87{letter-spacing:-0.746667pt;}
.ls72{letter-spacing:-0.704000pt;}
.ls93{letter-spacing:-0.693333pt;}
.ls89{letter-spacing:-0.672000pt;}
.lsc3{letter-spacing:-0.658667pt;}
.ls84{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.624000pt;}
.lsdd{letter-spacing:-0.608000pt;}
.lsbc{letter-spacing:-0.597333pt;}
.ls10{letter-spacing:-0.586667pt;}
.lsc7{letter-spacing:-0.557333pt;}
.ls82{letter-spacing:-0.533333pt;}
.ls11{letter-spacing:-0.528000pt;}
.lsad{letter-spacing:-0.506667pt;}
.ls28{letter-spacing:-0.485333pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls50{letter-spacing:-0.469333pt;}
.lsc1{letter-spacing:-0.456000pt;}
.lsae{letter-spacing:-0.448000pt;}
.ls8e{letter-spacing:-0.426667pt;}
.lsde{letter-spacing:-0.405333pt;}
.ls7d{letter-spacing:-0.373333pt;}
.lsc5{letter-spacing:-0.354667pt;}
.ls64{letter-spacing:-0.352000pt;}
.ls1c{letter-spacing:-0.346667pt;}
.ls11f{letter-spacing:-0.340480pt;}
.ls12b{letter-spacing:-0.322560pt;}
.ls83{letter-spacing:-0.320000pt;}
.lscd{letter-spacing:-0.304000pt;}
.ls63{letter-spacing:-0.293333pt;}
.ls120{letter-spacing:-0.291840pt;}
.ls107{letter-spacing:-0.268800pt;}
.ls86{letter-spacing:-0.266667pt;}
.lsac{letter-spacing:-0.253333pt;}
.ls77{letter-spacing:-0.234667pt;}
.lsa9{letter-spacing:-0.224000pt;}
.ls105{letter-spacing:-0.215040pt;}
.ls7f{letter-spacing:-0.213333pt;}
.ls20{letter-spacing:-0.208000pt;}
.lsc8{letter-spacing:-0.202667pt;}
.ls57{letter-spacing:-0.192000pt;}
.ls108{letter-spacing:-0.176640pt;}
.ls11e{letter-spacing:-0.161280pt;}
.ls7a{letter-spacing:-0.160000pt;}
.lsbe{letter-spacing:-0.152000pt;}
.lsb4{letter-spacing:-0.149333pt;}
.ls121{letter-spacing:-0.145920pt;}
.ls52{letter-spacing:-0.128000pt;}
.ls103{letter-spacing:-0.117760pt;}
.ls96{letter-spacing:-0.112000pt;}
.ls106{letter-spacing:-0.107520pt;}
.ls81{letter-spacing:-0.106667pt;}
.lsc2{letter-spacing:-0.101333pt;}
.lsaa{letter-spacing:-0.074667pt;}
.ls104{letter-spacing:-0.058880pt;}
.ls88{letter-spacing:-0.053333pt;}
.lsc4{letter-spacing:-0.050667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls129{letter-spacing:0.001067pt;}
.lsf0{letter-spacing:0.005376pt;}
.lsd7{letter-spacing:0.010133pt;}
.lsb5{letter-spacing:0.036053pt;}
.lsab{letter-spacing:0.037333pt;}
.lsa5{letter-spacing:0.048000pt;}
.lsdc{letter-spacing:0.050667pt;}
.ls79{letter-spacing:0.053333pt;}
.ls8f{letter-spacing:0.058667pt;}
.ls100{letter-spacing:0.058880pt;}
.ls110{letter-spacing:0.074240pt;}
.ls9e{letter-spacing:0.096000pt;}
.lsd9{letter-spacing:0.101333pt;}
.ls7b{letter-spacing:0.106667pt;}
.lsa8{letter-spacing:0.128000pt;}
.lsf1{letter-spacing:0.147200pt;}
.ls115{letter-spacing:0.148480pt;}
.lsc9{letter-spacing:0.152000pt;}
.ls7c{letter-spacing:0.160000pt;}
.ls111{letter-spacing:0.163328pt;}
.ls90{letter-spacing:0.176000pt;}
.ls66{letter-spacing:0.192000pt;}
.lsd3{letter-spacing:0.202667pt;}
.ls80{letter-spacing:0.213333pt;}
.ls114{letter-spacing:0.222720pt;}
.ls92{letter-spacing:0.234667pt;}
.lsb0{letter-spacing:0.240000pt;}
.lsbf{letter-spacing:0.253333pt;}
.ls5a{letter-spacing:0.256000pt;}
.ls78{letter-spacing:0.266667pt;}
.ls125{letter-spacing:0.274688pt;}
.ls118{letter-spacing:0.294400pt;}
.ls113{letter-spacing:0.296960pt;}
.lsca{letter-spacing:0.304000pt;}
.ls112{letter-spacing:0.319232pt;}
.ls75{letter-spacing:0.320000pt;}
.ls97{letter-spacing:0.336000pt;}
.lsd0{letter-spacing:0.354667pt;}
.ls85{letter-spacing:0.373333pt;}
.lsd8{letter-spacing:0.405333pt;}
.ls91{letter-spacing:0.410667pt;}
.ls8b{letter-spacing:0.426667pt;}
.lsb8{letter-spacing:0.480000pt;}
.lse0{letter-spacing:0.506667pt;}
.ls73{letter-spacing:0.512000pt;}
.ls11b{letter-spacing:0.529920pt;}
.ls8c{letter-spacing:0.533333pt;}
.ls55{letter-spacing:0.576000pt;}
.lsa7{letter-spacing:0.586667pt;}
.lsd2{letter-spacing:0.608000pt;}
.ls74{letter-spacing:0.640000pt;}
.lsda{letter-spacing:0.658667pt;}
.ls5d{letter-spacing:0.704000pt;}
.lsba{letter-spacing:0.746667pt;}
.ls54{letter-spacing:0.768000pt;}
.ls5f{letter-spacing:0.832000pt;}
.ls8a{letter-spacing:0.853333pt;}
.lse7{letter-spacing:0.861333pt;}
.ls58{letter-spacing:0.896000pt;}
.ls1f{letter-spacing:0.902507pt;}
.lse6{letter-spacing:1.013333pt;}
.ls5b{letter-spacing:1.024000pt;}
.ls67{letter-spacing:1.088000pt;}
.lscf{letter-spacing:1.114667pt;}
.ls59{letter-spacing:1.216000pt;}
.lsb2{letter-spacing:1.232960pt;}
.ls94{letter-spacing:1.280000pt;}
.lsbb{letter-spacing:1.290667pt;}
.lsc0{letter-spacing:1.317333pt;}
.lsa6{letter-spacing:1.333333pt;}
.ls95{letter-spacing:1.386667pt;}
.lscc{letter-spacing:1.520000pt;}
.ls51{letter-spacing:1.536000pt;}
.ls1{letter-spacing:1.556048pt;}
.ls65{letter-spacing:1.600000pt;}
.ls1e{letter-spacing:1.619547pt;}
.ls9f{letter-spacing:1.760000pt;}
.ls60{letter-spacing:1.792000pt;}
.lsbd{letter-spacing:2.026667pt;}
.ls61{letter-spacing:2.112000pt;}
.ls9c{letter-spacing:2.176000pt;}
.lse4{letter-spacing:2.280000pt;}
.lsb1{letter-spacing:2.453333pt;}
.ls76{letter-spacing:2.464000pt;}
.ls5e{letter-spacing:2.560000pt;}
.ls0{letter-spacing:2.792320pt;}
.ls56{letter-spacing:3.008000pt;}
.ls10c{letter-spacing:4.357120pt;}
.ls10b{letter-spacing:5.416960pt;}
.ls53{letter-spacing:9.594667pt;}
.ls109{letter-spacing:12.835840pt;}
.ls123{letter-spacing:18.488320pt;}
.lsaf{letter-spacing:19.738667pt;}
.ls3a{letter-spacing:22.676800pt;}
.ls45{letter-spacing:25.090133pt;}
.ls3e{letter-spacing:26.465600pt;}
.ls2e{letter-spacing:28.193600pt;}
.ls4e{letter-spacing:28.603200pt;}
.lsfa{letter-spacing:29.169152pt;}
.ls3c{letter-spacing:29.550400pt;}
.ls34{letter-spacing:29.934400pt;}
.ls10a{letter-spacing:32.384000pt;}
.ls40{letter-spacing:33.358933pt;}
.ls102{letter-spacing:33.973760pt;}
.lsf6{letter-spacing:35.092480pt;}
.lsff{letter-spacing:36.741120pt;}
.ls122{letter-spacing:42.216960pt;}
.ls2a{letter-spacing:42.900800pt;}
.lsfe{letter-spacing:44.454400pt;}
.lsee{letter-spacing:49.950933pt;}
.ls6f{letter-spacing:55.255467pt;}
.lsea{letter-spacing:55.523733pt;}
.lsec{letter-spacing:55.670400pt;}
.lsed{letter-spacing:55.782400pt;}
.ls38{letter-spacing:56.542933pt;}
.lse8{letter-spacing:56.586667pt;}
.ls46{letter-spacing:57.155200pt;}
.ls3f{letter-spacing:57.461333pt;}
.ls4c{letter-spacing:57.667200pt;}
.lse9{letter-spacing:58.003733pt;}
.ls35{letter-spacing:59.031467pt;}
.ls68{letter-spacing:59.291733pt;}
.ls39{letter-spacing:59.376000pt;}
.ls3d{letter-spacing:59.578667pt;}
.ls4d{letter-spacing:59.874133pt;}
.ls4a{letter-spacing:59.998933pt;}
.lsfb{letter-spacing:60.057600pt;}
.ls3b{letter-spacing:60.069867pt;}
.ls36{letter-spacing:60.469333pt;}
.ls6b{letter-spacing:60.842667pt;}
.ls6d{letter-spacing:60.974933pt;}
.ls6e{letter-spacing:61.116800pt;}
.lsf7{letter-spacing:61.352960pt;}
.ls101{letter-spacing:61.765120pt;}
.ls4b{letter-spacing:61.850133pt;}
.ls69{letter-spacing:61.916267pt;}
.ls48{letter-spacing:62.461867pt;}
.ls47{letter-spacing:62.474133pt;}
.ls49{letter-spacing:62.494933pt;}
.ls44{letter-spacing:62.721067pt;}
.ls43{letter-spacing:62.813867pt;}
.ls6a{letter-spacing:63.352000pt;}
.ls33{letter-spacing:64.692267pt;}
.lsf2{letter-spacing:65.356800pt;}
.lseb{letter-spacing:69.259200pt;}
.ls41{letter-spacing:70.548267pt;}
.ls4f{letter-spacing:71.489067pt;}
.ls2c{letter-spacing:72.453333pt;}
.ls2f{letter-spacing:73.262933pt;}
.ls32{letter-spacing:73.961600pt;}
.ls37{letter-spacing:74.292800pt;}
.lsfc{letter-spacing:74.424320pt;}
.ls6c{letter-spacing:74.589867pt;}
.ls42{letter-spacing:75.873600pt;}
.ls31{letter-spacing:78.468800pt;}
.ls30{letter-spacing:78.621333pt;}
.ls10e{letter-spacing:83.374080pt;}
.lsfd{letter-spacing:87.083520pt;}
.ls10d{letter-spacing:87.201280pt;}
.ls2d{letter-spacing:91.896000pt;}
.ls2b{letter-spacing:94.366933pt;}
.lsf4{letter-spacing:107.220480pt;}
.lsf8{letter-spacing:112.755200pt;}
.ls124{letter-spacing:113.600427pt;}
.lsf3{letter-spacing:120.026880pt;}
.lsf9{letter-spacing:162.879744pt;}
.ls117{letter-spacing:186.237440pt;}
.ls119{letter-spacing:202.959360pt;}
.ls11a{letter-spacing:273.356693pt;}
.ls128{letter-spacing:295.950293pt;}
.ls116{letter-spacing:295.950827pt;}
.ls127{letter-spacing:328.677227pt;}
.ls126{letter-spacing:461.262827pt;}
.lsf5{letter-spacing:1044.648960pt;}
.ls10f{letter-spacing:1172.948480pt;}
.ls11c{letter-spacing:1580.533760pt;}
.ls12a{letter-spacing:1580.534293pt;}
.ls11d{letter-spacing:1817.366827pt;}
.ws7{word-spacing:-96.055808pt;}
.ws186{word-spacing:-64.000000pt;}
.ws5{word-spacing:-63.005696pt;}
.ws16d{word-spacing:-58.880000pt;}
.ws184{word-spacing:-53.760000pt;}
.ws185{word-spacing:-53.544960pt;}
.ws8{word-spacing:-53.528051pt;}
.ws3b{word-spacing:-33.674667pt;}
.ws5e{word-spacing:-32.149333pt;}
.ws12a{word-spacing:-32.032000pt;}
.ws169{word-spacing:-29.216000pt;}
.ws4{word-spacing:-20.448000pt;}
.ws3e{word-spacing:-19.776000pt;}
.ws3f{word-spacing:-19.328000pt;}
.ws41{word-spacing:-18.880000pt;}
.ws177{word-spacing:-18.856960pt;}
.ws176{word-spacing:-18.782720pt;}
.ws40{word-spacing:-18.560000pt;}
.ws43{word-spacing:-18.368000pt;}
.ws3c{word-spacing:-18.304000pt;}
.ws44{word-spacing:-16.768000pt;}
.ws3d{word-spacing:-16.640000pt;}
.ws179{word-spacing:-16.000000pt;}
.ws34{word-spacing:-15.877333pt;}
.ws157{word-spacing:-15.554667pt;}
.ws33{word-spacing:-15.530667pt;}
.ws57{word-spacing:-15.370667pt;}
.ws117{word-spacing:-15.200000pt;}
.ws126{word-spacing:-15.146667pt;}
.ws110{word-spacing:-14.933333pt;}
.ws111{word-spacing:-14.880000pt;}
.ws131{word-spacing:-14.794667pt;}
.wsd4{word-spacing:-14.720000pt;}
.ws123{word-spacing:-14.666667pt;}
.ws6{word-spacing:-14.549333pt;}
.ws12c{word-spacing:-14.490667pt;}
.ws133{word-spacing:-14.389333pt;}
.ws11c{word-spacing:-14.346667pt;}
.wsd3{word-spacing:-14.080000pt;}
.ws109{word-spacing:-13.973333pt;}
.ws9a{word-spacing:-13.813333pt;}
.ws14e{word-spacing:-13.680000pt;}
.wsc5{word-spacing:-13.653333pt;}
.ws14f{word-spacing:-13.629333pt;}
.ws77{word-spacing:-13.600000pt;}
.ws138{word-spacing:-13.528000pt;}
.ws60{word-spacing:-13.440000pt;}
.ws16a{word-spacing:-13.306880pt;}
.ws12b{word-spacing:-13.274667pt;}
.ws42{word-spacing:-13.248000pt;}
.ws125{word-spacing:-13.226667pt;}
.ws178{word-spacing:-13.224960pt;}
.ws12f{word-spacing:-13.224000pt;}
.ws16e{word-spacing:-13.189120pt;}
.ws10a{word-spacing:-13.173333pt;}
.ws16f{word-spacing:-13.130240pt;}
.ws189{word-spacing:-13.117440pt;}
.ws150{word-spacing:-13.072000pt;}
.wsa5{word-spacing:-13.066667pt;}
.ws14d{word-spacing:-13.021333pt;}
.wsb5{word-spacing:-13.013333pt;}
.wsa7{word-spacing:-12.960000pt;}
.ws188{word-spacing:-12.912000pt;}
.ws12d{word-spacing:-12.818667pt;}
.ws5f{word-spacing:-12.746667pt;}
.wsbb{word-spacing:-12.693333pt;}
.ws152{word-spacing:-12.666667pt;}
.ws12e{word-spacing:-12.616000pt;}
.wsc8{word-spacing:-12.480000pt;}
.ws135{word-spacing:-12.464000pt;}
.wsa6{word-spacing:-12.373333pt;}
.ws156{word-spacing:-12.312000pt;}
.ws154{word-spacing:-11.957333pt;}
.ws16c{word-spacing:-11.934720pt;}
.ws134{word-spacing:-11.906667pt;}
.ws16b{word-spacing:-11.880960pt;}
.ws153{word-spacing:-11.856000pt;}
.ws130{word-spacing:-11.754667pt;}
.ws136{word-spacing:-11.602667pt;}
.ws155{word-spacing:-11.501333pt;}
.ws151{word-spacing:-11.298667pt;}
.ws137{word-spacing:-11.248000pt;}
.ws9b{word-spacing:-10.192000pt;}
.ws9c{word-spacing:-10.117333pt;}
.ws46{word-spacing:-9.594667pt;}
.ws132{word-spacing:-9.272000pt;}
.ws99{word-spacing:-7.087414pt;}
.ws100{word-spacing:-3.360000pt;}
.wsba{word-spacing:-2.826667pt;}
.ws31{word-spacing:-2.792320pt;}
.wsda{word-spacing:-2.773333pt;}
.ws10e{word-spacing:-2.666667pt;}
.wsd6{word-spacing:-2.560000pt;}
.wsc9{word-spacing:-2.506667pt;}
.ws61{word-spacing:-2.464000pt;}
.wsdc{word-spacing:-2.400000pt;}
.ws129{word-spacing:-2.293333pt;}
.ws1c{word-spacing:-2.288000pt;}
.wsb8{word-spacing:-2.186667pt;}
.wscf{word-spacing:-2.080000pt;}
.ws20{word-spacing:-1.994667pt;}
.wsb9{word-spacing:-1.973333pt;}
.ws90{word-spacing:-1.936000pt;}
.wsd9{word-spacing:-1.866667pt;}
.wsb2{word-spacing:-1.813333pt;}
.ws112{word-spacing:-1.706667pt;}
.wsca{word-spacing:-1.653333pt;}
.wsb7{word-spacing:-1.600000pt;}
.ws92{word-spacing:-1.584000pt;}
.ws32{word-spacing:-1.556048pt;}
.ws95{word-spacing:-1.546667pt;}
.ws4b{word-spacing:-1.536000pt;}
.wsbc{word-spacing:-1.493333pt;}
.ws7a{word-spacing:-1.440000pt;}
.ws68{word-spacing:-1.386667pt;}
.wsa1{word-spacing:-1.333333pt;}
.ws158{word-spacing:-1.317333pt;}
.wsb3{word-spacing:-1.280000pt;}
.ws164{word-spacing:-1.266667pt;}
.ws4c{word-spacing:-1.216000pt;}
.wsad{word-spacing:-1.173333pt;}
.ws9e{word-spacing:-1.120000pt;}
.ws56{word-spacing:-1.088000pt;}
.wsce{word-spacing:-1.066667pt;}
.ws146{word-spacing:-1.064000pt;}
.ws26{word-spacing:-1.056000pt;}
.ws4e{word-spacing:-1.024000pt;}
.wsa8{word-spacing:-1.013333pt;}
.ws27{word-spacing:-0.997333pt;}
.wsbd{word-spacing:-0.960000pt;}
.ws8f{word-spacing:-0.906667pt;}
.ws4a{word-spacing:-0.896000pt;}
.ws141{word-spacing:-0.861333pt;}
.ws8b{word-spacing:-0.853333pt;}
.ws52{word-spacing:-0.832000pt;}
.wsd5{word-spacing:-0.800000pt;}
.ws47{word-spacing:-0.768000pt;}
.ws1f{word-spacing:-0.762667pt;}
.ws78{word-spacing:-0.746667pt;}
.ws51{word-spacing:-0.704000pt;}
.ws8e{word-spacing:-0.693333pt;}
.ws15b{word-spacing:-0.658667pt;}
.ws91{word-spacing:-0.645333pt;}
.ws5c{word-spacing:-0.640000pt;}
.ws149{word-spacing:-0.608000pt;}
.wsd0{word-spacing:-0.586667pt;}
.ws48{word-spacing:-0.576000pt;}
.ws87{word-spacing:-0.533333pt;}
.ws5b{word-spacing:-0.512000pt;}
.ws15f{word-spacing:-0.506667pt;}
.ws10c{word-spacing:-0.480000pt;}
.wsed{word-spacing:-0.456000pt;}
.ws86{word-spacing:-0.426667pt;}
.ws72{word-spacing:-0.373333pt;}
.ws17b{word-spacing:-0.371200pt;}
.ws147{word-spacing:-0.354667pt;}
.ws5d{word-spacing:-0.320000pt;}
.ws145{word-spacing:-0.304000pt;}
.ws17c{word-spacing:-0.296960pt;}
.ws71{word-spacing:-0.266667pt;}
.ws4d{word-spacing:-0.256000pt;}
.wsef{word-spacing:-0.253333pt;}
.wse{word-spacing:-0.242330pt;}
.ws17a{word-spacing:-0.222720pt;}
.ws6b{word-spacing:-0.213333pt;}
.ws14a{word-spacing:-0.202667pt;}
.ws55{word-spacing:-0.192000pt;}
.ws66{word-spacing:-0.160000pt;}
.wsf4{word-spacing:-0.152000pt;}
.ws17e{word-spacing:-0.148480pt;}
.wscb{word-spacing:-0.128000pt;}
.ws1{word-spacing:-0.118872pt;}
.ws173{word-spacing:-0.107520pt;}
.ws6a{word-spacing:-0.106667pt;}
.ws15a{word-spacing:-0.101333pt;}
.wsb1{word-spacing:-0.096000pt;}
.ws17d{word-spacing:-0.074240pt;}
.ws170{word-spacing:-0.058880pt;}
.ws174{word-spacing:-0.053760pt;}
.ws7b{word-spacing:-0.053333pt;}
.ws15e{word-spacing:-0.050667pt;}
.wsc4{word-spacing:-0.048000pt;}
.wsb{word-spacing:0.000000pt;}
.ws143{word-spacing:0.050667pt;}
.ws93{word-spacing:0.053333pt;}
.ws175{word-spacing:0.058880pt;}
.ws187{word-spacing:0.074240pt;}
.wsd2{word-spacing:0.074667pt;}
.ws13a{word-spacing:0.101333pt;}
.ws75{word-spacing:0.106667pt;}
.ws183{word-spacing:0.107520pt;}
.wsa3{word-spacing:0.112000pt;}
.ws171{word-spacing:0.117760pt;}
.ws53{word-spacing:0.128000pt;}
.ws182{word-spacing:0.145920pt;}
.ws113{word-spacing:0.149333pt;}
.ws13e{word-spacing:0.152000pt;}
.ws64{word-spacing:0.160000pt;}
.ws17f{word-spacing:0.161280pt;}
.ws49{word-spacing:0.192000pt;}
.ws161{word-spacing:0.202667pt;}
.ws6d{word-spacing:0.213333pt;}
.ws172{word-spacing:0.215040pt;}
.wscc{word-spacing:0.224000pt;}
.wsdd{word-spacing:0.234667pt;}
.wse4{word-spacing:0.253333pt;}
.ws73{word-spacing:0.266667pt;}
.ws2a{word-spacing:0.277333pt;}
.ws181{word-spacing:0.291840pt;}
.ws18{word-spacing:0.293333pt;}
.ws13f{word-spacing:0.304000pt;}
.ws6f{word-spacing:0.320000pt;}
.ws180{word-spacing:0.340480pt;}
.ws30{word-spacing:0.346667pt;}
.ws54{word-spacing:0.352000pt;}
.ws13b{word-spacing:0.354667pt;}
.ws67{word-spacing:0.373333pt;}
.ws142{word-spacing:0.405333pt;}
.ws19{word-spacing:0.410667pt;}
.ws8a{word-spacing:0.426667pt;}
.ws25{word-spacing:0.469333pt;}
.ws107{word-spacing:0.480000pt;}
.ws39{word-spacing:0.485333pt;}
.wsee{word-spacing:0.506667pt;}
.wsf{word-spacing:0.512000pt;}
.ws4f{word-spacing:0.528000pt;}
.wsc0{word-spacing:0.533333pt;}
.ws9{word-spacing:0.576000pt;}
.ws1b{word-spacing:0.586667pt;}
.ws11f{word-spacing:0.597333pt;}
.ws37{word-spacing:0.624000pt;}
.ws70{word-spacing:0.640000pt;}
.ws14c{word-spacing:0.658667pt;}
.ws80{word-spacing:0.672000pt;}
.ws7f{word-spacing:0.693333pt;}
.ws5a{word-spacing:0.704000pt;}
.ws74{word-spacing:0.746667pt;}
.ws36{word-spacing:0.762667pt;}
.wsb0{word-spacing:0.768000pt;}
.ws6e{word-spacing:0.800000pt;}
.ws165{word-spacing:0.810667pt;}
.ws2c{word-spacing:0.832000pt;}
.ws85{word-spacing:0.853333pt;}
.ws166{word-spacing:0.861333pt;}
.ws38{word-spacing:0.901333pt;}
.ws97{word-spacing:0.906667pt;}
.wsc3{word-spacing:0.960000pt;}
.ws11b{word-spacing:1.013333pt;}
.ws50{word-spacing:1.024000pt;}
.ws2f{word-spacing:1.109333pt;}
.wsc6{word-spacing:1.114667pt;}
.wsd{word-spacing:1.153952pt;}
.ws163{word-spacing:1.165333pt;}
.wsa9{word-spacing:1.173333pt;}
.wsd1{word-spacing:1.226667pt;}
.wsaa{word-spacing:1.280000pt;}
.ws11e{word-spacing:1.333333pt;}
.ws59{word-spacing:1.344000pt;}
.ws35{word-spacing:1.386667pt;}
.ws17{word-spacing:1.408000pt;}
.ws0{word-spacing:1.426464pt;}
.ws82{word-spacing:1.440000pt;}
.ws9f{word-spacing:1.493333pt;}
.ws139{word-spacing:1.520000pt;}
.ws3a{word-spacing:1.525333pt;}
.wsc1{word-spacing:1.546667pt;}
.ws94{word-spacing:1.600000pt;}
.wsd7{word-spacing:1.653333pt;}
.ws2b{word-spacing:1.664000pt;}
.ws159{word-spacing:1.672000pt;}
.ws79{word-spacing:1.706667pt;}
.ws2e{word-spacing:1.733333pt;}
.wsa2{word-spacing:1.760000pt;}
.ws29{word-spacing:1.802667pt;}
.ws7e{word-spacing:1.813333pt;}
.ws15{word-spacing:1.818667pt;}
.ws140{word-spacing:1.824000pt;}
.ws6c{word-spacing:1.866667pt;}
.wsc7{word-spacing:1.877333pt;}
.ws63{word-spacing:1.920000pt;}
.ws162{word-spacing:1.925333pt;}
.ws148{word-spacing:1.976000pt;}
.wsb6{word-spacing:2.080000pt;}
.ws16{word-spacing:2.112000pt;}
.ws65{word-spacing:2.133333pt;}
.ws118{word-spacing:2.165333pt;}
.wsc{word-spacing:2.180966pt;}
.ws88{word-spacing:2.186667pt;}
.ws10d{word-spacing:2.240000pt;}
.ws122{word-spacing:2.293333pt;}
.ws119{word-spacing:2.346667pt;}
.wsdb{word-spacing:2.453333pt;}
.wsa{word-spacing:2.496000pt;}
.ws114{word-spacing:2.506667pt;}
.ws2d{word-spacing:2.565333pt;}
.wsbe{word-spacing:2.613333pt;}
.ws1a{word-spacing:2.640000pt;}
.wsb4{word-spacing:2.666667pt;}
.ws8d{word-spacing:2.720000pt;}
.wsc2{word-spacing:2.773333pt;}
.ws120{word-spacing:2.826667pt;}
.ws89{word-spacing:2.880000pt;}
.ws10{word-spacing:2.933333pt;}
.ws2{word-spacing:2.971800pt;}
.wsae{word-spacing:2.986667pt;}
.ws116{word-spacing:3.040000pt;}
.ws11{word-spacing:3.050667pt;}
.ws3{word-spacing:3.090672pt;}
.ws7c{word-spacing:3.093333pt;}
.wsbf{word-spacing:3.146667pt;}
.ws58{word-spacing:3.200000pt;}
.ws96{word-spacing:3.253333pt;}
.ws69{word-spacing:3.360000pt;}
.ws83{word-spacing:3.466667pt;}
.ws14b{word-spacing:3.496000pt;}
.wsd8{word-spacing:3.520000pt;}
.ws81{word-spacing:3.626667pt;}
.ws11d{word-spacing:3.680000pt;}
.ws13c{word-spacing:3.698667pt;}
.wsaf{word-spacing:3.733333pt;}
.ws1d{word-spacing:3.754667pt;}
.ws121{word-spacing:3.786667pt;}
.wsab{word-spacing:3.840000pt;}
.wsa0{word-spacing:3.893333pt;}
.ws62{word-spacing:4.000000pt;}
.ws10b{word-spacing:4.053333pt;}
.ws124{word-spacing:4.160000pt;}
.ws15d{word-spacing:4.205333pt;}
.ws7d{word-spacing:4.266667pt;}
.ws8c{word-spacing:4.320000pt;}
.ws144{word-spacing:4.357333pt;}
.ws127{word-spacing:4.373333pt;}
.ws15c{word-spacing:4.408000pt;}
.wscd{word-spacing:4.426667pt;}
.ws12{word-spacing:4.517333pt;}
.ws1e{word-spacing:4.576000pt;}
.ws108{word-spacing:4.586667pt;}
.ws11a{word-spacing:4.800000pt;}
.ws115{word-spacing:4.906667pt;}
.wsac{word-spacing:4.960000pt;}
.ws13{word-spacing:5.397333pt;}
.ws160{word-spacing:6.384000pt;}
.ws14{word-spacing:6.570667pt;}
.ws10f{word-spacing:6.922667pt;}
.ws23{word-spacing:7.040000pt;}
.ws128{word-spacing:7.200000pt;}
.ws28{word-spacing:7.568000pt;}
.ws24{word-spacing:8.096000pt;}
.wsa4{word-spacing:8.885333pt;}
.ws45{word-spacing:9.594667pt;}
.ws84{word-spacing:9.760000pt;}
.ws22{word-spacing:10.090667pt;}
.ws168{word-spacing:11.197333pt;}
.ws21{word-spacing:11.322667pt;}
.ws167{word-spacing:11.349333pt;}
.ws9d{word-spacing:14.293333pt;}
.ws13d{word-spacing:14.338667pt;}
.wsfb{word-spacing:30.259733pt;}
.ws76{word-spacing:30.260267pt;}
.ws98{word-spacing:30.260800pt;}
.wsf7{word-spacing:327.256000pt;}
.wsf8{word-spacing:331.512000pt;}
.ws103{word-spacing:445.664000pt;}
.ws105{word-spacing:448.197333pt;}
.ws104{word-spacing:449.920000pt;}
.ws106{word-spacing:452.453333pt;}
.wsfe{word-spacing:458.280000pt;}
.wsff{word-spacing:462.536000pt;}
.wsfc{word-spacing:463.296000pt;}
.wsfd{word-spacing:467.552000pt;}
.ws101{word-spacing:468.869333pt;}
.wse5{word-spacing:470.845333pt;}
.ws102{word-spacing:473.125333pt;}
.wse6{word-spacing:475.101333pt;}
.wse2{word-spacing:485.994667pt;}
.wse3{word-spacing:490.250667pt;}
.wseb{word-spacing:493.544000pt;}
.wsec{word-spacing:497.800000pt;}
.wse9{word-spacing:498.560000pt;}
.wsea{word-spacing:502.816000pt;}
.wse0{word-spacing:508.642667pt;}
.wse1{word-spacing:512.898667pt;}
.wsf5{word-spacing:531.341333pt;}
.wsf6{word-spacing:535.597333pt;}
.wsf9{word-spacing:569.138667pt;}
.wsfa{word-spacing:573.394667pt;}
.wse7{word-spacing:574.154667pt;}
.wse8{word-spacing:578.410667pt;}
.wsf0{word-spacing:601.869333pt;}
.wsf2{word-spacing:604.402667pt;}
.wsf1{word-spacing:606.125333pt;}
.wsf3{word-spacing:608.658667pt;}
.wsde{word-spacing:622.034667pt;}
.wsdf{word-spacing:626.290667pt;}
._5b{margin-left:-1172.948480pt;}
._4e{margin-left:-36.650667pt;}
._19{margin-left:-24.792533pt;}
._17{margin-left:-19.426411pt;}
._15{margin-left:-18.076816pt;}
._18{margin-left:-17.159504pt;}
._f{margin-left:-16.164635pt;}
._c{margin-left:-14.919106pt;}
._14{margin-left:-13.936322pt;}
._16{margin-left:-12.284635pt;}
._e{margin-left:-11.178667pt;}
._10{margin-left:-9.594667pt;}
._d{margin-left:-8.428680pt;}
._8{margin-left:-6.310837pt;}
._a{margin-left:-4.770928pt;}
._6{margin-left:-3.408480pt;}
._1{margin-left:-2.139696pt;}
._5{margin-left:-1.101168pt;}
._0{width:1.426464pt;}
._3{width:2.353666pt;}
._7{width:3.723072pt;}
._2{width:4.992624pt;}
._4{width:5.991149pt;}
._1a{width:6.963761pt;}
._1b{width:8.106423pt;}
._11{width:9.397301pt;}
._12{width:10.384128pt;}
._4f{width:11.852635pt;}
._65{width:15.091200pt;}
._60{width:20.480000pt;}
._63{width:24.407040pt;}
._1c{width:32.646400pt;}
._13{width:64.656137pt;}
._66{width:78.543360pt;}
._59{width:96.386560pt;}
._5a{width:97.623040pt;}
._52{width:127.298560pt;}
._61{width:178.536960pt;}
._57{width:182.704640pt;}
._1f{width:196.906667pt;}
._46{width:207.166400pt;}
._45{width:213.459733pt;}
._53{width:246.824960pt;}
._54{width:248.709120pt;}
._55{width:250.711040pt;}
._56{width:252.536320pt;}
._58{width:253.713920pt;}
._9{width:256.591317pt;}
._5e{width:265.600000pt;}
._62{width:273.664000pt;}
._4d{width:320.190400pt;}
._5d{width:329.024000pt;}
._b{width:332.207498pt;}
._4c{width:336.483733pt;}
._49{width:340.509333pt;}
._34{width:346.148267pt;}
._35{width:347.375467pt;}
._48{width:348.322667pt;}
._4a{width:349.934933pt;}
._3a{width:359.492267pt;}
._3b{width:360.398933pt;}
._32{width:362.493333pt;}
._33{width:363.400000pt;}
._39{width:366.771200pt;}
._36{width:372.370133pt;}
._4b{width:373.918400pt;}
._5f{width:376.320000pt;}
._31{width:387.410133pt;}
._44{width:416.994133pt;}
._26{width:419.722667pt;}
._43{width:423.340800pt;}
._28{width:424.485333pt;}
._27{width:434.973333pt;}
._22{width:438.064000pt;}
._25{width:439.229333pt;}
._23{width:440.698667pt;}
._24{width:441.712000pt;}
._21{width:442.776000pt;}
._20{width:453.264000pt;}
._47{width:459.216533pt;}
._5c{width:461.632000pt;}
._38{width:485.222933pt;}
._37{width:490.396267pt;}
._3d{width:491.665067pt;}
._3c{width:493.811733pt;}
._2f{width:496.316267pt;}
._42{width:507.062933pt;}
._3e{width:508.075733pt;}
._41{width:509.196267pt;}
._40{width:510.369600pt;}
._30{width:511.623467pt;}
._3f{width:513.143467pt;}
._2b{width:516.690133pt;}
._2e{width:518.236267pt;}
._2c{width:519.463467pt;}
._2d{width:520.369600pt;}
._2a{width:521.970133pt;}
._29{width:532.530133pt;}
._1e{width:785.120000pt;}
._1d{width:854.400000pt;}
._64{width:911.226880pt;}
._50{width:1094.932480pt;}
._51{width:2398.712320pt;}
.fs14{font-size:27.051200pt;}
.fs1e{font-size:29.440000pt;}
.fs16{font-size:31.093333pt;}
.fs1c{font-size:37.120000pt;}
.fs12{font-size:37.333333pt;}
.fsf{font-size:42.666667pt;}
.fs10{font-size:48.000000pt;}
.fs1b{font-size:48.640000pt;}
.fs15{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs18{font-size:53.760000pt;}
.fs1a{font-size:56.320000pt;}
.fs8{font-size:58.666667pt;}
.fs17{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs1d{font-size:69.120000pt;}
.fs4{font-size:69.333333pt;}
.fs19{font-size:74.240000pt;}
.fs13{font-size:74.666667pt;}
.fs6{font-size:80.000000pt;}
.fsc{font-size:90.250667pt;}
.fsd{font-size:90.666667pt;}
.fs1{font-size:96.000000pt;}
.fs3{font-size:115.395200pt;}
.fs11{font-size:117.333333pt;}
.fs0{font-size:118.872000pt;}
.fse{font-size:133.333333pt;}
.fsb{font-size:155.604800pt;}
.fsa{font-size:161.954667pt;}
.fs2{font-size:242.329600pt;}
.fs9{font-size:279.232000pt;}
.y66f{bottom:-1.170533pt;}
.y0{bottom:0.000000pt;}
.y69f{bottom:3.680933pt;}
.y633{bottom:3.840133pt;}
.y65f{bottom:3.893333pt;}
.y69b{bottom:4.106267pt;}
.y662{bottom:4.106800pt;}
.y632{bottom:4.373467pt;}
.y63b{bottom:4.480133pt;}
.y62e{bottom:4.586800pt;}
.y696{bottom:4.639600pt;}
.y665{bottom:4.693467pt;}
.y638{bottom:10.986800pt;}
.y608{bottom:11.412400pt;}
.y639{bottom:11.626800pt;}
.y602{bottom:12.427067pt;}
.y605{bottom:12.907067pt;}
.y66c{bottom:13.226800pt;}
.y63e{bottom:13.280133pt;}
.y66a{bottom:13.386800pt;}
.y63f{bottom:13.600133pt;}
.y603{bottom:13.707067pt;}
.y6a2{bottom:13.812933pt;}
.y609{bottom:13.972400pt;}
.y6a4{bottom:13.972933pt;}
.y641{bottom:14.080133pt;}
.y606{bottom:14.187067pt;}
.y698{bottom:15.092933pt;}
.y5ff{bottom:15.839067pt;}
.y600{bottom:17.119067pt;}
.y66e{bottom:18.885333pt;}
.y69e{bottom:21.920933pt;}
.y6a0{bottom:22.240933pt;}
.y69a{bottom:22.346267pt;}
.y661{bottom:22.346800pt;}
.y65e{bottom:22.453333pt;}
.y69c{bottom:22.666267pt;}
.y63a{bottom:22.720133pt;}
.y668{bottom:22.826800pt;}
.y664{bottom:22.933333pt;}
.y630{bottom:23.040133pt;}
.y62d{bottom:23.146800pt;}
.y695{bottom:23.199600pt;}
.y63c{bottom:23.360133pt;}
.y666{bottom:23.573467pt;}
.y5fa{bottom:30.613733pt;}
.y5f6{bottom:30.720400pt;}
.y5fb{bottom:30.933733pt;}
.y5f7{bottom:31.040400pt;}
.y5fd{bottom:31.893733pt;}
.y55c{bottom:38.409467pt;}
.y66d{bottom:39.794800pt;}
.y55b{bottom:42.889467pt;}
.yad{bottom:47.023600pt;}
.y5e{bottom:47.055067pt;}
.y635{bottom:48.320133pt;}
.y66b{bottom:68.168000pt;}
.y6a5{bottom:71.222267pt;}
.y60c{bottom:71.327547pt;}
.y2{bottom:72.261067pt;}
.y5c2{bottom:72.580347pt;}
.y58f{bottom:73.160827pt;}
.y18e{bottom:85.509333pt;}
.y52e{bottom:85.634800pt;}
.yff{bottom:86.195333pt;}
.y118{bottom:86.917733pt;}
.y554{bottom:86.929200pt;}
.y2c9{bottom:87.978133pt;}
.y5c1{bottom:90.494587pt;}
.y58e{bottom:91.075067pt;}
.y60b{bottom:91.803067pt;}
.y643{bottom:91.954800pt;}
.y3e4{bottom:92.441600pt;}
.y669{bottom:96.168000pt;}
.y5b{bottom:96.556667pt;}
.y335{bottom:97.231733pt;}
.y2af{bottom:97.486667pt;}
.y6a3{bottom:99.169333pt;}
.y7e{bottom:99.388000pt;}
.y4ee{bottom:100.049733pt;}
.y117{bottom:100.255067pt;}
.y1{bottom:101.979067pt;}
.y318{bottom:105.295467pt;}
.y270{bottom:105.311467pt;}
.y4a6{bottom:105.956133pt;}
.y18d{bottom:106.709333pt;}
.y52d{bottom:106.838800pt;}
.y12b{bottom:106.982667pt;}
.yac{bottom:106.982800pt;}
.yfe{bottom:107.395333pt;}
.y5c0{bottom:108.408827pt;}
.y58d{bottom:108.989307pt;}
.y2c8{bottom:109.093467pt;}
.y463{bottom:109.208400pt;}
.y3e3{bottom:109.769600pt;}
.y60a{bottom:112.603067pt;}
.y116{bottom:113.592400pt;}
.y341{bottom:114.559733pt;}
.y484{bottom:115.144533pt;}
.y44d{bottom:115.239733pt;}
.y334{bottom:118.347067pt;}
.y2f0{bottom:118.599600pt;}
.y2ae{bottom:118.602000pt;}
.y5a{bottom:120.119333pt;}
.y4ed{bottom:121.249733pt;}
.y40d{bottom:121.528667pt;}
.y317{bottom:122.623467pt;}
.y642{bottom:122.994800pt;}
.y4a5{bottom:123.284133pt;}
.y667{bottom:124.168000pt;}
.y5bf{bottom:126.323067pt;}
.y26f{bottom:126.426800pt;}
.y58c{bottom:126.903547pt;}
.y115{bottom:126.929733pt;}
.y3e2{bottom:127.097600pt;}
.y6a1{bottom:127.169333pt;}
.y18c{bottom:127.909333pt;}
.y52c{bottom:128.042800pt;}
.y12a{bottom:128.182667pt;}
.yab{bottom:128.182800pt;}
.y132{bottom:128.504533pt;}
.yfd{bottom:128.595333pt;}
.y462{bottom:130.323733pt;}
.y360{bottom:131.245200pt;}
.y44c{bottom:132.567733pt;}
.y640{bottom:134.834667pt;}
.y340{bottom:135.675067pt;}
.y287{bottom:136.187867pt;}
.y483{bottom:136.259867pt;}
.y7d{bottom:137.916000pt;}
.y40c{bottom:138.856667pt;}
.y2ef{bottom:139.714933pt;}
.y4a4{bottom:140.612133pt;}
.y2c7{bottom:140.633467pt;}
.y607{bottom:141.510667pt;}
.y4ec{bottom:142.449733pt;}
.y59{bottom:143.682000pt;}
.y316{bottom:143.738800pt;}
.y5be{bottom:144.237307pt;}
.y58b{bottom:144.817787pt;}
.y3e1{bottom:148.212933pt;}
.y35f{bottom:148.573200pt;}
.y18b{bottom:149.109333pt;}
.y52b{bottom:149.246800pt;}
.y129{bottom:149.382667pt;}
.yaa{bottom:149.382800pt;}
.y131{bottom:149.704533pt;}
.yfc{bottom:149.795333pt;}
.y333{bottom:149.887067pt;}
.y44b{bottom:149.895733pt;}
.y2ad{bottom:150.142000pt;}
.y254{bottom:153.250267pt;}
.y40b{bottom:156.184667pt;}
.y69d{bottom:156.501333pt;}
.y286{bottom:157.303200pt;}
.y2c6{bottom:157.961467pt;}
.y26e{bottom:157.966800pt;}
.y7c{bottom:159.116000pt;}
.y663{bottom:161.501333pt;}
.y5bd{bottom:162.151547pt;}
.y58a{bottom:162.732027pt;}
.y63d{bottom:162.834667pt;}
.y4eb{bottom:163.649733pt;}
.y4a3{bottom:165.502133pt;}
.y33f{bottom:167.215067pt;}
.y58{bottom:167.244667pt;}
.y2ac{bottom:167.470000pt;}
.y604{bottom:168.176000pt;}
.y35e{bottom:169.688533pt;}
.y18a{bottom:170.309333pt;}
.y52a{bottom:170.450800pt;}
.y128{bottom:170.582667pt;}
.ya9{bottom:170.582800pt;}
.y36e{bottom:170.594267pt;}
.y130{bottom:170.904533pt;}
.yfb{bottom:170.995333pt;}
.y2ee{bottom:171.254933pt;}
.y482{bottom:171.992533pt;}
.y253{bottom:174.365600pt;}
.y332{bottom:174.777067pt;}
.y44a{bottom:174.785733pt;}
.y315{bottom:175.278800pt;}
.y26d{bottom:175.294800pt;}
.y40a{bottom:177.300000pt;}
.y3e0{bottom:179.752933pt;}
.y5bc{bottom:180.065787pt;}
.y7b{bottom:180.316000pt;}
.y589{bottom:180.646267pt;}
.y4a2{bottom:182.830133pt;}
.y2c5{bottom:182.851467pt;}
.y57{bottom:183.244667pt;}
.y4ea{bottom:184.849733pt;}
.y36d{bottom:187.922267pt;}
.y2ed{bottom:188.582933pt;}
.y285{bottom:188.843200pt;}
.y236{bottom:190.125200pt;}
.y461{bottom:190.655067pt;}
.y634{bottom:190.834667pt;}
.y189{bottom:191.509333pt;}
.y529{bottom:191.654800pt;}
.y127{bottom:191.782667pt;}
.ya8{bottom:191.782800pt;}
.y3ae{bottom:191.832933pt;}
.y12f{bottom:192.104533pt;}
.y331{bottom:192.105067pt;}
.y449{bottom:192.113733pt;}
.yd2{bottom:192.195333pt;}
.y2ab{bottom:192.360000pt;}
.y314{bottom:192.606800pt;}
.y699{bottom:193.836000pt;}
.y601{bottom:196.176000pt;}
.y481{bottom:196.882533pt;}
.y3df{bottom:197.080933pt;}
.y5bb{bottom:197.980027pt;}
.y588{bottom:198.560507pt;}
.y56{bottom:199.244667pt;}
.y4a1{bottom:200.158133pt;}
.y660{bottom:200.168000pt;}
.y2c4{bottom:200.179467pt;}
.y26c{bottom:200.184800pt;}
.y35d{bottom:201.228533pt;}
.y7a{bottom:201.516000pt;}
.y252{bottom:205.905600pt;}
.y4e9{bottom:206.049733pt;}
.y284{bottom:206.171200pt;}
.y409{bottom:208.840000pt;}
.y36c{bottom:209.037600pt;}
.y330{bottom:209.433067pt;}
.y448{bottom:209.441733pt;}
.y2aa{bottom:209.688000pt;}
.y4c3{bottom:211.169733pt;}
.y235{bottom:211.240533pt;}
.y188{bottom:212.709333pt;}
.y528{bottom:212.858800pt;}
.y3ad{bottom:212.948267pt;}
.y126{bottom:212.982667pt;}
.ya7{bottom:212.982800pt;}
.y12e{bottom:213.304533pt;}
.yd1{bottom:213.395333pt;}
.y2ec{bottom:213.472933pt;}
.y480{bottom:214.210533pt;}
.y460{bottom:215.545067pt;}
.y5ba{bottom:215.585147pt;}
.y587{bottom:216.474747pt;}
.y313{bottom:217.496800pt;}
.y2c3{bottom:217.507467pt;}
.y26b{bottom:217.512800pt;}
.y35c{bottom:218.556533pt;}
.y636{bottom:220.274800pt;}
.y3de{bottom:221.970933pt;}
.y1f1{bottom:222.578267pt;}
.y79{bottom:222.716000pt;}
.y5fe{bottom:222.844000pt;}
.y251{bottom:223.233600pt;}
.y421{bottom:223.911600pt;}
.y4a0{bottom:225.048133pt;}
.y32f{bottom:226.761067pt;}
.y447{bottom:226.769733pt;}
.y28{bottom:226.856533pt;}
.y2a9{bottom:227.016000pt;}
.y4e8{bottom:227.249733pt;}
.y637{bottom:228.168000pt;}
.y1af{bottom:228.773733pt;}
.y2eb{bottom:230.800933pt;}
.y283{bottom:231.061200pt;}
.y697{bottom:231.169333pt;}
.y47f{bottom:231.538533pt;}
.y4c2{bottom:232.285067pt;}
.y45f{bottom:232.873067pt;}
.y5b9{bottom:233.499387pt;}
.y502{bottom:233.534000pt;}
.y408{bottom:233.730000pt;}
.y187{bottom:233.909333pt;}
.y527{bottom:234.062800pt;}
.y125{bottom:234.182667pt;}
.ya6{bottom:234.182800pt;}
.y586{bottom:234.388987pt;}
.y114{bottom:234.504533pt;}
.yd0{bottom:234.595333pt;}
.y312{bottom:234.824800pt;}
.y2c2{bottom:234.835467pt;}
.y26a{bottom:234.840800pt;}
.y65d{bottom:237.501333pt;}
.y390{bottom:239.281733pt;}
.y3dd{bottom:239.298933pt;}
.y36b{bottom:240.577600pt;}
.y49f{bottom:242.376133pt;}
.y234{bottom:242.780533pt;}
.y35b{bottom:243.446533pt;}
.y1f0{bottom:243.693600pt;}
.y78{bottom:243.916000pt;}
.y32e{bottom:244.089067pt;}
.y446{bottom:244.097733pt;}
.y2a8{bottom:244.344000pt;}
.y27{bottom:247.125867pt;}
.y250{bottom:248.123600pt;}
.y2ea{bottom:248.128933pt;}
.y282{bottom:248.389200pt;}
.y4e7{bottom:248.449733pt;}
.y420{bottom:248.801600pt;}
.y47e{bottom:248.866533pt;}
.y45e{bottom:250.201067pt;}
.y407{bottom:251.058000pt;}
.y5b8{bottom:251.413627pt;}
.y311{bottom:252.152800pt;}
.y2c1{bottom:252.163467pt;}
.y269{bottom:252.168800pt;}
.y585{bottom:252.303227pt;}
.y1ce{bottom:252.562400pt;}
.y5f9{bottom:253.509333pt;}
.y3ac{bottom:254.608933pt;}
.y501{bottom:254.734000pt;}
.y62f{bottom:254.834667pt;}
.y186{bottom:255.109333pt;}
.y526{bottom:255.266800pt;}
.y124{bottom:255.382667pt;}
.ya5{bottom:255.382800pt;}
.y113{bottom:255.704533pt;}
.ycf{bottom:255.795333pt;}
.y3dc{bottom:256.626933pt;}
.y36a{bottom:257.905600pt;}
.y49e{bottom:259.704133pt;}
.y233{bottom:260.108533pt;}
.y1ae{bottom:260.313733pt;}
.y38f{bottom:260.397067pt;}
.y694{bottom:260.502667pt;}
.y35a{bottom:260.774533pt;}
.y212{bottom:261.284800pt;}
.y32d{bottom:261.417067pt;}
.y445{bottom:261.425733pt;}
.y2a7{bottom:261.672000pt;}
.y55{bottom:261.911333pt;}
.y4c1{bottom:263.825067pt;}
.y77{bottom:265.116000pt;}
.y24f{bottom:265.451600pt;}
.y2e9{bottom:265.456933pt;}
.y5fc{bottom:265.563067pt;}
.y281{bottom:265.717200pt;}
.y41f{bottom:266.129600pt;}
.y47d{bottom:266.194533pt;}
.y26{bottom:267.395200pt;}
.y406{bottom:268.386000pt;}
.y5b7{bottom:269.327867pt;}
.y310{bottom:269.480800pt;}
.y2c0{bottom:269.491467pt;}
.y268{bottom:269.496800pt;}
.y4e6{bottom:269.649733pt;}
.y1cd{bottom:269.890400pt;}
.y584{bottom:270.217467pt;}
.y3ab{bottom:271.936933pt;}
.y631{bottom:273.501333pt;}
.y3db{bottom:273.954933pt;}
.y45d{bottom:275.091067pt;}
.y1ef{bottom:275.233600pt;}
.y500{bottom:275.934000pt;}
.y185{bottom:276.309333pt;}
.y525{bottom:276.470800pt;}
.y123{bottom:276.582667pt;}
.ya4{bottom:276.582800pt;}
.y112{bottom:276.904533pt;}
.yce{bottom:276.995333pt;}
.y49d{bottom:277.032133pt;}
.y162{bottom:277.786000pt;}
.y54{bottom:277.911333pt;}
.y359{bottom:278.102533pt;}
.y65c{bottom:278.514667pt;}
.y32c{bottom:278.745067pt;}
.y444{bottom:278.753733pt;}
.y14b{bottom:278.911733pt;}
.y2a6{bottom:279.000000pt;}
.y4c0{bottom:281.153067pt;}
.y211{bottom:282.400133pt;}
.y24e{bottom:282.779600pt;}
.y2e8{bottom:282.784933pt;}
.y369{bottom:282.795600pt;}
.y280{bottom:283.045200pt;}
.y41e{bottom:283.457600pt;}
.y47c{bottom:283.522533pt;}
.y232{bottom:284.998533pt;}
.y405{bottom:285.714000pt;}
.y76{bottom:286.316000pt;}
.y30f{bottom:286.808800pt;}
.y2bf{bottom:286.819467pt;}
.y267{bottom:286.824800pt;}
.y5b6{bottom:287.242107pt;}
.y25{bottom:287.664533pt;}
.y583{bottom:288.131707pt;}
.y4e5{bottom:290.849867pt;}
.y1cc{bottom:291.005733pt;}
.y3da{bottom:291.282933pt;}
.y1ad{bottom:291.853733pt;}
.y38e{bottom:291.937067pt;}
.y62c{bottom:292.168000pt;}
.y45c{bottom:292.419067pt;}
.y1ee{bottom:292.561600pt;}
.y53{bottom:293.911333pt;}
.y49c{bottom:294.360133pt;}
.y65b{bottom:294.514800pt;}
.y358{bottom:295.430533pt;}
.y32b{bottom:296.073067pt;}
.y443{bottom:296.081733pt;}
.y3aa{bottom:296.826933pt;}
.y184{bottom:297.509333pt;}
.y524{bottom:297.674800pt;}
.y122{bottom:297.782667pt;}
.ya3{bottom:297.782800pt;}
.y111{bottom:298.104533pt;}
.ycd{bottom:298.195333pt;}
.y5f5{bottom:298.842667pt;}
.y161{bottom:298.986000pt;}
.y14a{bottom:300.105067pt;}
.y24d{bottom:300.107600pt;}
.y2e7{bottom:300.112933pt;}
.y368{bottom:300.123600pt;}
.y27f{bottom:300.373200pt;}
.y41d{bottom:300.785600pt;}
.y693{bottom:302.262267pt;}
.y231{bottom:302.326533pt;}
.y404{bottom:303.042000pt;}
.y2a5{bottom:303.890000pt;}
.y30e{bottom:304.136800pt;}
.y266{bottom:304.152800pt;}
.y5b5{bottom:305.156347pt;}
.y4bf{bottom:306.043067pt;}
.y582{bottom:306.045947pt;}
.y75{bottom:307.521333pt;}
.y47b{bottom:308.412533pt;}
.y3d9{bottom:308.610933pt;}
.y5d8{bottom:309.233787pt;}
.y38d{bottom:309.265067pt;}
.y45b{bottom:309.747067pt;}
.y52{bottom:309.911333pt;}
.y5f8{bottom:311.003067pt;}
.y49b{bottom:311.688133pt;}
.y2be{bottom:311.709467pt;}
.y4e4{bottom:312.049867pt;}
.y357{bottom:312.758533pt;}
.y65a{bottom:313.074800pt;}
.y32a{bottom:313.401067pt;}
.y210{bottom:313.940133pt;}
.y3a9{bottom:314.154933pt;}
.y24c{bottom:317.435600pt;}
.y2e6{bottom:317.440933pt;}
.y1ed{bottom:317.451600pt;}
.y41c{bottom:318.113600pt;}
.y692{bottom:318.262267pt;}
.y183{bottom:318.709333pt;}
.y523{bottom:318.878800pt;}
.y121{bottom:318.982667pt;}
.ya2{bottom:318.982800pt;}
.y110{bottom:319.304533pt;}
.ycc{bottom:319.395333pt;}
.y230{bottom:319.654533pt;}
.y160{bottom:320.186000pt;}
.y403{bottom:320.370000pt;}
.y442{bottom:320.971733pt;}
.y2a4{bottom:321.218000pt;}
.y149{bottom:321.298400pt;}
.y265{bottom:321.480800pt;}
.y1cb{bottom:322.545733pt;}
.y5b4{bottom:323.070587pt;}
.y4be{bottom:323.371067pt;}
.y1ac{bottom:323.393733pt;}
.y581{bottom:323.960187pt;}
.y27e{bottom:325.263200pt;}
.y47a{bottom:325.740533pt;}
.y51{bottom:325.911333pt;}
.yb{bottom:326.049067pt;}
.y45a{bottom:327.075067pt;}
.y5d7{bottom:327.148027pt;}
.y24{bottom:328.203200pt;}
.y659{bottom:328.754800pt;}
.y49a{bottom:329.016133pt;}
.y30d{bottom:329.026800pt;}
.y2bd{bottom:329.037467pt;}
.y329{bottom:330.729067pt;}
.y20f{bottom:331.268133pt;}
.y3a8{bottom:331.482933pt;}
.y4e3{bottom:333.249733pt;}
.y3d8{bottom:333.500933pt;}
.y62b{bottom:333.874800pt;}
.y38c{bottom:334.155067pt;}
.y24b{bottom:334.763600pt;}
.y2e5{bottom:334.768933pt;}
.y1ec{bottom:334.779600pt;}
.y41b{bottom:335.441600pt;}
.y691{bottom:336.502267pt;}
.y22f{bottom:336.982533pt;}
.y356{bottom:337.648533pt;}
.y441{bottom:338.299733pt;}
.y2a3{bottom:338.546000pt;}
.y264{bottom:338.808800pt;}
.y1ca{bottom:339.873733pt;}
.y182{bottom:339.909333pt;}
.y522{bottom:340.082800pt;}
.y120{bottom:340.182667pt;}
.ya1{bottom:340.182800pt;}
.y10f{bottom:340.504533pt;}
.ycb{bottom:340.595333pt;}
.y4bd{bottom:340.699067pt;}
.y5b3{bottom:340.984827pt;}
.y15f{bottom:341.386000pt;}
.y35{bottom:341.756267pt;}
.y580{bottom:341.874427pt;}
.y50{bottom:341.911333pt;}
.y148{bottom:342.491733pt;}
.y27d{bottom:342.591200pt;}
.y479{bottom:343.068533pt;}
.y402{bottom:345.260000pt;}
.y74{bottom:346.049333pt;}
.y30c{bottom:346.354800pt;}
.y2bc{bottom:346.365467pt;}
.y5f4{bottom:346.843067pt;}
.y23{bottom:348.472533pt;}
.y62a{bottom:349.874800pt;}
.y3d7{bottom:350.828933pt;}
.y38b{bottom:351.483067pt;}
.y459{bottom:351.965067pt;}
.y1eb{bottom:352.107600pt;}
.y41a{bottom:352.769600pt;}
.y499{bottom:353.906133pt;}
.y22e{bottom:354.310533pt;}
.y4e2{bottom:354.449733pt;}
.y1ab{bottom:354.933733pt;}
.y355{bottom:354.976533pt;}
.y5d6{bottom:354.983547pt;}
.y328{bottom:355.619067pt;}
.y440{bottom:355.627733pt;}
.y2a2{bottom:355.874000pt;}
.y20e{bottom:356.158133pt;}
.y3a7{bottom:356.372933pt;}
.y5f3{bottom:356.443067pt;}
.y4bc{bottom:358.027067pt;}
.y5b2{bottom:358.899067pt;}
.y24a{bottom:359.653600pt;}
.y2e4{bottom:359.658933pt;}
.y57f{bottom:359.788667pt;}
.y27c{bottom:359.919200pt;}
.y690{bottom:360.182267pt;}
.y478{bottom:360.396533pt;}
.y181{bottom:361.109333pt;}
.y521{bottom:361.286800pt;}
.y11f{bottom:361.382667pt;}
.ya0{bottom:361.382800pt;}
.y12d{bottom:361.704533pt;}
.y509{bottom:361.795200pt;}
.yca{bottom:361.795333pt;}
.y15e{bottom:362.586000pt;}
.y401{bottom:362.588000pt;}
.y30b{bottom:363.682800pt;}
.y147{bottom:363.685067pt;}
.y2bb{bottom:363.693467pt;}
.y263{bottom:363.698800pt;}
.yef{bottom:364.124267pt;}
.y1c9{bottom:364.763733pt;}
.y73{bottom:367.249333pt;}
.y3d6{bottom:368.156933pt;}
.y22{bottom:368.741867pt;}
.y38a{bottom:368.811067pt;}
.y1ea{bottom:369.435600pt;}
.y419{bottom:370.097600pt;}
.y22d{bottom:371.638533pt;}
.y354{bottom:372.304533pt;}
.y5f2{bottom:372.443067pt;}
.y4f{bottom:372.578000pt;}
.y327{bottom:372.947067pt;}
.y43f{bottom:372.955733pt;}
.y2a1{bottom:373.202000pt;}
.y20d{bottom:373.486133pt;}
.y3a6{bottom:373.700933pt;}
.y4bb{bottom:375.355067pt;}
.y4e1{bottom:375.649733pt;}
.y5b1{bottom:376.813307pt;}
.y249{bottom:376.981600pt;}
.y2e3{bottom:376.986933pt;}
.y27b{bottom:377.247200pt;}
.y57e{bottom:377.702907pt;}
.y477{bottom:377.724533pt;}
.y400{bottom:379.916000pt;}
.y2ba{bottom:381.021467pt;}
.y262{bottom:381.026800pt;}
.y1c8{bottom:382.091733pt;}
.y180{bottom:382.309333pt;}
.y520{bottom:382.490800pt;}
.y11e{bottom:382.582667pt;}
.y9f{bottom:382.582800pt;}
.y10e{bottom:382.904533pt;}
.y508{bottom:382.995200pt;}
.yc9{bottom:382.995333pt;}
.y68f{bottom:383.222267pt;}
.y15d{bottom:383.786000pt;}
.yee{bottom:385.317600pt;}
.y498{bottom:385.455600pt;}
.y3d5{bottom:385.484933pt;}
.y389{bottom:386.139067pt;}
.y5d5{bottom:386.337147pt;}
.y1aa{bottom:386.473733pt;}
.y1e9{bottom:386.763600pt;}
.y418{bottom:387.425600pt;}
.y72{bottom:388.449333pt;}
.y30a{bottom:388.572800pt;}
.y22c{bottom:388.966533pt;}
.y21{bottom:389.011200pt;}
.y353{bottom:389.632533pt;}
.y326{bottom:390.275067pt;}
.y43e{bottom:390.283733pt;}
.y2a0{bottom:390.530000pt;}
.y20c{bottom:390.814133pt;}
.y3a5{bottom:391.028933pt;}
.y248{bottom:394.309600pt;}
.y2e2{bottom:394.314933pt;}
.y27a{bottom:394.575200pt;}
.y5b0{bottom:394.727547pt;}
.y476{bottom:395.052533pt;}
.y57d{bottom:395.617147pt;}
.y34{bottom:395.620800pt;}
.y4e{bottom:396.140667pt;}
.y4e0{bottom:396.849733pt;}
.y3ff{bottom:397.244000pt;}
.y2b9{bottom:398.349467pt;}
.y261{bottom:398.354800pt;}
.y1c7{bottom:399.419733pt;}
.y68e{bottom:399.542267pt;}
.y4ba{bottom:400.245067pt;}
.y3d4{bottom:402.812933pt;}
.y388{bottom:403.467067pt;}
.y17f{bottom:403.509333pt;}
.y51f{bottom:403.694800pt;}
.y140{bottom:403.782667pt;}
.y9e{bottom:403.782800pt;}
.y1e8{bottom:404.091600pt;}
.y10d{bottom:404.104533pt;}
.y507{bottom:404.195200pt;}
.yc8{bottom:404.195333pt;}
.y54c{bottom:404.633867pt;}
.y417{bottom:404.753600pt;}
.y15c{bottom:404.986000pt;}
.y22b{bottom:406.294533pt;}
.yed{bottom:406.510933pt;}
.y352{bottom:406.960533pt;}
.y325{bottom:407.603067pt;}
.y20b{bottom:408.142133pt;}
.y3a4{bottom:408.356933pt;}
.y71{bottom:409.654667pt;}
.y2e1{bottom:411.642933pt;}
.y367{bottom:411.653600pt;}
.y279{bottom:411.903200pt;}
.y458{bottom:412.303467pt;}
.y5af{bottom:412.641787pt;}
.y57c{bottom:413.531387pt;}
.y43d{bottom:415.173733pt;}
.y29f{bottom:415.420000pt;}
.y260{bottom:415.682800pt;}
.y1c6{bottom:416.747733pt;}
.y497{bottom:416.995600pt;}
.y1a9{bottom:418.013733pt;}
.y4df{bottom:418.049733pt;}
.y247{bottom:419.199600pt;}
.y475{bottom:419.942533pt;}
.y3d3{bottom:420.140933pt;}
.y309{bottom:420.145600pt;}
.y3fe{bottom:422.134000pt;}
.y68d{bottom:422.582267pt;}
.y2b8{bottom:423.239467pt;}
.y17e{bottom:424.709333pt;}
.y33{bottom:424.740800pt;}
.y51e{bottom:424.898800pt;}
.y11d{bottom:424.982667pt;}
.y9d{bottom:424.982800pt;}
.y146{bottom:424.984533pt;}
.y4b9{bottom:425.135067pt;}
.y10c{bottom:425.304533pt;}
.y506{bottom:425.395200pt;}
.yc7{bottom:425.395333pt;}
.y20a{bottom:425.470133pt;}
.y496{bottom:425.659600pt;}
.y3a3{bottom:425.684933pt;}
.y54b{bottom:425.837867pt;}
.y15b{bottom:426.186000pt;}
.yec{bottom:427.704267pt;}
.y387{bottom:428.357067pt;}
.y1e7{bottom:428.981600pt;}
.y20{bottom:429.549867pt;}
.y416{bottom:429.643600pt;}
.y5ae{bottom:430.556027pt;}
.y57b{bottom:431.136507pt;}
.y22a{bottom:431.184533pt;}
.y351{bottom:431.850533pt;}
.y324{bottom:432.493067pt;}
.y1c5{bottom:434.075733pt;}
.y5d4{bottom:436.252667pt;}
.y2e0{bottom:436.532933pt;}
.y278{bottom:436.793200pt;}
.y68c{bottom:438.890747pt;}
.y4de{bottom:439.249733pt;}
.y25f{bottom:440.572800pt;}
.y209{bottom:442.798133pt;}
.y457{bottom:443.843467pt;}
.y3d2{bottom:445.030933pt;}
.y198{bottom:445.291467pt;}
.y386{bottom:445.685067pt;}
.y17d{bottom:445.909333pt;}
.y51d{bottom:446.102800pt;}
.y11c{bottom:446.182667pt;}
.y9c{bottom:446.182800pt;}
.y145{bottom:446.184533pt;}
.y1e6{bottom:446.309600pt;}
.y10b{bottom:446.504533pt;}
.y505{bottom:446.595200pt;}
.yc6{bottom:446.595333pt;}
.y43c{bottom:446.723200pt;}
.y29e{bottom:446.964800pt;}
.y415{bottom:446.971600pt;}
.y54a{bottom:447.041867pt;}
.y15a{bottom:447.386000pt;}
.y4d{bottom:447.465867pt;}
.y70{bottom:448.188000pt;}
.y5ad{bottom:448.470267pt;}
.y229{bottom:448.512533pt;}
.yeb{bottom:448.897600pt;}
.y57a{bottom:449.050747pt;}
.y1a8{bottom:449.553733pt;}
.y1f{bottom:449.819200pt;}
.y3a2{bottom:450.574933pt;}
.y246{bottom:450.744267pt;}
.y308{bottom:451.685600pt;}
.y456{bottom:452.507467pt;}
.y3fd{bottom:453.690800pt;}
.y32{bottom:453.860800pt;}
.y5d3{bottom:454.166907pt;}
.y2b7{bottom:454.796267pt;}
.y474{bottom:455.676133pt;}
.y68b{bottom:456.495867pt;}
.y4b8{bottom:456.677200pt;}
.y1c4{bottom:458.965733pt;}
.y629{bottom:460.274800pt;}
.y4dd{bottom:460.449733pt;}
.y385{bottom:463.013067pt;}
.y350{bottom:463.407333pt;}
.y323{bottom:464.037733pt;}
.y414{bottom:464.299600pt;}
.y4b7{bottom:465.341200pt;}
.y228{bottom:465.840533pt;}
.y495{bottom:465.876267pt;}
.y5ac{bottom:466.384507pt;}
.y579{bottom:466.964987pt;}
.y17c{bottom:467.109333pt;}
.y51c{bottom:467.306800pt;}
.y9b{bottom:467.382800pt;}
.y144{bottom:467.384533pt;}
.y208{bottom:467.688133pt;}
.y10a{bottom:467.704533pt;}
.y504{bottom:467.795200pt;}
.yc5{bottom:467.795333pt;}
.y2df{bottom:468.082400pt;}
.y549{bottom:468.245867pt;}
.y277{bottom:468.350000pt;}
.y159{bottom:468.586000pt;}
.y307{bottom:469.013600pt;}
.y1e{bottom:470.088533pt;}
.y1e5{bottom:471.199600pt;}
.y4c{bottom:471.472533pt;}
.y25e{bottom:472.134933pt;}
.y494{bottom:472.517600pt;}
.y68a{bottom:474.100987pt;}
.y1c3{bottom:476.293733pt;}
.y3d1{bottom:476.580933pt;}
.y2de{bottom:476.746400pt;}
.y304{bottom:477.664933pt;}
.y43b{bottom:478.263200pt;}
.y29d{bottom:478.504800pt;}
.y628{bottom:478.834800pt;}
.y1a7{bottom:481.093733pt;}
.y4dc{bottom:481.649733pt;}
.y245{bottom:482.284267pt;}
.y31{bottom:482.980800pt;}
.y227{bottom:483.168533pt;}
.y5ab{bottom:484.298747pt;}
.y578{bottom:484.879227pt;}
.y207{bottom:485.016133pt;}
.y3fc{bottom:485.230800pt;}
.y2b6{bottom:486.336267pt;}
.y306{bottom:486.341600pt;}
.y6f{bottom:486.721333pt;}
.y43a{bottom:486.927200pt;}
.y473{bottom:487.216133pt;}
.y384{bottom:487.903067pt;}
.y17b{bottom:488.309333pt;}
.y51b{bottom:488.510800pt;}
.y11b{bottom:488.582667pt;}
.y9a{bottom:488.582800pt;}
.y143{bottom:488.584533pt;}
.y12c{bottom:488.904533pt;}
.y503{bottom:488.995200pt;}
.yc4{bottom:488.995333pt;}
.y413{bottom:489.189600pt;}
.y548{bottom:489.449867pt;}
.y158{bottom:489.786000pt;}
.y1d{bottom:490.357867pt;}
.y3a1{bottom:490.358533pt;}
.y5d2{bottom:490.643067pt;}
.y689{bottom:491.706107pt;}
.y455{bottom:492.718267pt;}
.y34f{bottom:494.947333pt;}
.y4b{bottom:495.479200pt;}
.y322{bottom:495.577733pt;}
.y472{bottom:495.880133pt;}
.y627{bottom:497.074800pt;}
.y276{bottom:499.890000pt;}
.y1c2{bottom:501.183733pt;}
.y5aa{bottom:502.212987pt;}
.y366{bottom:502.744267pt;}
.y1e4{bottom:502.756400pt;}
.y577{bottom:502.793467pt;}
.y4db{bottom:502.849733pt;}
.y305{bottom:503.669600pt;}
.y25d{bottom:503.674933pt;}
.y4b6{bottom:505.557867pt;}
.y688{bottom:506.102133pt;}
.y226{bottom:508.058533pt;}
.y3d0{bottom:508.120933pt;}
.y17a{bottom:509.509333pt;}
.y51a{bottom:509.714800pt;}
.y14f{bottom:509.782667pt;}
.y99{bottom:509.782800pt;}
.y142{bottom:509.784533pt;}
.y206{bottom:509.906133pt;}
.y29c{bottom:510.051600pt;}
.y109{bottom:510.104533pt;}
.yea{bottom:510.195200pt;}
.yc3{bottom:510.195333pt;}
.y547{bottom:510.653867pt;}
.y157{bottom:510.986000pt;}
.y30{bottom:512.100800pt;}
.y1a6{bottom:512.633733pt;}
.y244{bottom:513.831067pt;}
.y4b5{bottom:514.221867pt;}
.y626{bottom:514.989680pt;}
.y3fb{bottom:516.770800pt;}
.y3cf{bottom:516.784933pt;}
.y2dd{bottom:516.963067pt;}
.y2b5{bottom:517.876267pt;}
.y383{bottom:519.447733pt;}
.y4a{bottom:519.485867pt;}
.y5a9{bottom:520.127227pt;}
.y576{bottom:520.707707pt;}
.y412{bottom:520.739067pt;}
.y3a0{bottom:521.898533pt;}
.y3fa{bottom:523.412133pt;}
.y4da{bottom:524.049733pt;}
.y2b4{bottom:524.517600pt;}
.y6e{bottom:525.254667pt;}
.y34e{bottom:526.487333pt;}
.y321{bottom:527.124533pt;}
.y439{bottom:527.143867pt;}
.y493{bottom:529.046267pt;}
.y428{bottom:529.722933pt;}
.y179{bottom:530.709333pt;}
.y1c{bottom:530.896533pt;}
.y519{bottom:530.918800pt;}
.y14e{bottom:530.982667pt;}
.y98{bottom:530.982800pt;}
.y141{bottom:530.984533pt;}
.y108{bottom:531.304533pt;}
.ye9{bottom:531.395200pt;}
.yc2{bottom:531.395333pt;}
.y275{bottom:531.430000pt;}
.y546{bottom:531.857867pt;}
.y156{bottom:532.186000pt;}
.y625{bottom:532.594800pt;}
.y1c1{bottom:532.740667pt;}
.y34d{bottom:533.128800pt;}
.y5f1{bottom:533.723067pt;}
.y438{bottom:533.785333pt;}
.y365{bottom:534.284267pt;}
.y1e3{bottom:534.296400pt;}
.y303{bottom:535.209600pt;}
.y25c{bottom:535.214933pt;}
.y471{bottom:536.090933pt;}
.y5a8{bottom:538.041467pt;}
.y274{bottom:538.071467pt;}
.y575{bottom:538.621947pt;}
.y225{bottom:539.615467pt;}
.y5d1{bottom:540.558587pt;}
.y2f{bottom:541.220800pt;}
.y205{bottom:541.462933pt;}
.y302{bottom:541.850933pt;}
.y687{bottom:542.582133pt;}
.y49{bottom:543.492533pt;}
.y1a5{bottom:544.173733pt;}
.y454{bottom:544.492267pt;}
.y4d9{bottom:545.249733pt;}
.y427{bottom:547.050933pt;}
.y2dc{bottom:548.503067pt;}
.y492{bottom:550.161600pt;}
.y259{bottom:550.517600pt;}
.y5f0{bottom:550.683067pt;}
.y624{bottom:550.834800pt;}
.y382{bottom:550.987733pt;}
.y1b{bottom:551.165867pt;}
.y4ff{bottom:551.534000pt;}
.y178{bottom:551.909333pt;}
.y518{bottom:552.122800pt;}
.y14d{bottom:552.182667pt;}
.y97{bottom:552.182800pt;}
.y411{bottom:552.279067pt;}
.y107{bottom:552.504533pt;}
.y25b{bottom:552.542933pt;}
.ye8{bottom:552.595200pt;}
.yc1{bottom:552.595333pt;}
.y545{bottom:553.061867pt;}
.y39f{bottom:553.438533pt;}
.y4b4{bottom:554.438533pt;}
.y2db{bottom:555.144400pt;}
.y5a7{bottom:555.955707pt;}
.y574{bottom:556.536187pt;}
.y3ce{bottom:556.995733pt;}
.y5d0{bottom:558.472827pt;}
.y410{bottom:560.943067pt;}
.y4b3{bottom:561.079867pt;}
.y686{bottom:561.142267pt;}
.y29b{bottom:561.807600pt;}
.y243{bottom:563.712933pt;}
.y6d{bottom:563.782667pt;}
.y1c0{bottom:564.280667pt;}
.y453{bottom:565.607600pt;}
.y364{bottom:565.831067pt;}
.y1e2{bottom:565.836400pt;}
.y4d8{bottom:566.449733pt;}
.y48{bottom:567.499200pt;}
.y39c{bottom:568.741333pt;}
.y658{bottom:569.074800pt;}
.y5ef{bottom:569.243067pt;}
.y25a{bottom:569.870933pt;}
.y623{bottom:570.034800pt;}
.y2e{bottom:570.340800pt;}
.y39e{bottom:570.766533pt;}
.y224{bottom:571.155467pt;}
.y1a{bottom:571.435200pt;}
.y426{bottom:571.940933pt;}
.y1e1{bottom:572.477733pt;}
.y4fe{bottom:572.734000pt;}
.y204{bottom:573.002933pt;}
.y177{bottom:573.109333pt;}
.y517{bottom:573.326800pt;}
.y14c{bottom:573.382667pt;}
.y96{bottom:573.382800pt;}
.y5a6{bottom:573.560827pt;}
.y106{bottom:573.704533pt;}
.ye7{bottom:573.795200pt;}
.yc0{bottom:573.795333pt;}
.y544{bottom:574.265867pt;}
.y573{bottom:574.450427pt;}
.y1a4{bottom:575.713733pt;}
.y320{bottom:577.001067pt;}
.y33e{bottom:577.006400pt;}
.y685{bottom:577.782267pt;}
.y3f9{bottom:579.935467pt;}
.y2b3{bottom:581.040933pt;}
.y491{bottom:581.701600pt;}
.y381{bottom:582.534533pt;}
.y29a{bottom:582.922933pt;}
.y242{bottom:584.828267pt;}
.y6c{bottom:584.982667pt;}
.y470{bottom:585.944933pt;}
.y657{bottom:587.634667pt;}
.y4d7{bottom:587.649733pt;}
.y39d{bottom:588.094533pt;}
.y425{bottom:589.268933pt;}
.y5ee{bottom:589.403067pt;}
.y622{bottom:589.554800pt;}
.y34c{bottom:589.641333pt;}
.y437{bottom:590.307333pt;}
.y5a5{bottom:591.475067pt;}
.y47{bottom:591.505867pt;}
.y19{bottom:591.704533pt;}
.y572{bottom:592.364667pt;}
.y4fd{bottom:593.934000pt;}
.y176{bottom:594.309333pt;}
.y31f{bottom:594.329067pt;}
.y33d{bottom:594.334400pt;}
.y516{bottom:594.530800pt;}
.y4c9{bottom:594.582667pt;}
.y95{bottom:594.582800pt;}
.y105{bottom:594.904533pt;}
.y5cf{bottom:594.948987pt;}
.ye6{bottom:594.995200pt;}
.ybf{bottom:594.995333pt;}
.y543{bottom:595.469867pt;}
.y684{bottom:595.702267pt;}
.y1bf{bottom:595.820667pt;}
.y273{bottom:596.468933pt;}
.y3f8{bottom:597.263467pt;}
.y301{bottom:598.358267pt;}
.y490{bottom:599.029600pt;}
.y452{bottom:599.034933pt;}
.y2d{bottom:599.460800pt;}
.y40f{bottom:601.159733pt;}
.y2b2{bottom:602.156267pt;}
.y1be{bottom:602.462000pt;}
.y223{bottom:602.695467pt;}
.y203{bottom:604.542933pt;}
.y6b{bottom:606.182667pt;}
.y424{bottom:606.596933pt;}
.y3cd{bottom:606.841467pt;}
.y34b{bottom:606.969333pt;}
.y46f{bottom:607.060267pt;}
.y1a3{bottom:607.253733pt;}
.y656{bottom:607.474667pt;}
.y436{bottom:607.635333pt;}
.y5ed{bottom:607.643067pt;}
.y621{bottom:607.794800pt;}
.y40e{bottom:607.801200pt;}
.y4d6{bottom:608.849733pt;}
.y222{bottom:609.336800pt;}
.y5a4{bottom:609.389307pt;}
.y571{bottom:610.926587pt;}
.y202{bottom:611.184267pt;}
.y2da{bottom:611.657067pt;}
.y18{bottom:611.973867pt;}
.y683{bottom:613.302133pt;}
.y3f7{bottom:614.591467pt;}
.y31e{bottom:615.444400pt;}
.y33c{bottom:615.449733pt;}
.y175{bottom:615.509333pt;}
.y46{bottom:615.512533pt;}
.y300{bottom:615.686267pt;}
.y258{bottom:615.696933pt;}
.y515{bottom:615.734800pt;}
.y133{bottom:615.782667pt;}
.y94{bottom:615.782800pt;}
.y104{bottom:616.104533pt;}
.ye5{bottom:616.195200pt;}
.ybe{bottom:616.195333pt;}
.y48f{bottom:616.357600pt;}
.y299{bottom:616.362933pt;}
.y241{bottom:616.368267pt;}
.y542{bottom:616.673867pt;}
.y4b2{bottom:617.563467pt;}
.y272{bottom:617.584267pt;}
.y3bd{bottom:623.369600pt;}
.y423{bottom:623.924933pt;}
.y3cc{bottom:624.169467pt;}
.y435{bottom:624.963333pt;}
.y5ec{bottom:625.243067pt;}
.y620{bottom:625.394800pt;}
.y5a3{bottom:627.303547pt;}
.y6a{bottom:627.382667pt;}
.y34a{bottom:628.084667pt;}
.y2c{bottom:628.580800pt;}
.y570{bottom:628.840827pt;}
.y1e0{bottom:628.990400pt;}
.y4d5{bottom:630.049733pt;}
.y17{bottom:632.243200pt;}
.y380{bottom:632.395067pt;}
.y2d9{bottom:632.772400pt;}
.y363{bottom:633.024933pt;}
.y298{bottom:633.690933pt;}
.y240{bottom:633.696267pt;}
.y39b{bottom:633.892800pt;}
.y3f6{bottom:635.706800pt;}
.y174{bottom:636.709333pt;}
.y2ff{bottom:636.801600pt;}
.y257{bottom:636.812267pt;}
.y514{bottom:636.938800pt;}
.y4c8{bottom:636.982667pt;}
.y93{bottom:636.982800pt;}
.y103{bottom:637.304533pt;}
.ye4{bottom:637.395200pt;}
.yfa{bottom:637.395333pt;}
.y541{bottom:637.877867pt;}
.y682{bottom:637.942133pt;}
.y4b1{bottom:638.678800pt;}
.y1a2{bottom:638.793733pt;}
.y553{bottom:639.030933pt;}
.y45{bottom:639.519200pt;}
.y48e{bottom:641.247600pt;}
.y422{bottom:641.252933pt;}
.y655{bottom:642.994800pt;}
.y3bc{bottom:644.484933pt;}
.y5ce{bottom:644.864507pt;}
.y5a2{bottom:645.217787pt;}
.y3cb{bottom:645.284800pt;}
.y56f{bottom:646.755067pt;}
.y31d{bottom:646.984400pt;}
.y33b{bottom:646.989733pt;}
.y69{bottom:648.588000pt;}
.y434{bottom:649.853333pt;}
.y5eb{bottom:649.883067pt;}
.y61f{bottom:650.034800pt;}
.y1df{bottom:650.105733pt;}
.y271{bottom:651.024267pt;}
.y4d4{bottom:651.249733pt;}
.y16{bottom:652.512533pt;}
.y37f{bottom:653.510400pt;}
.y362{bottom:654.140267pt;}
.y39a{bottom:655.008133pt;}
.y2b{bottom:657.700800pt;}
.y173{bottom:657.909333pt;}
.y513{bottom:658.142800pt;}
.ybd{bottom:658.182667pt;}
.y92{bottom:658.182800pt;}
.y102{bottom:658.504533pt;}
.y48d{bottom:658.575600pt;}
.y297{bottom:658.580933pt;}
.y23f{bottom:658.586267pt;}
.ye3{bottom:658.595200pt;}
.yf9{bottom:658.595333pt;}
.y1bd{bottom:658.953333pt;}
.y540{bottom:659.081867pt;}
.y349{bottom:659.624667pt;}
.y681{bottom:662.582267pt;}
.y5a1{bottom:663.132027pt;}
.y44{bottom:663.525867pt;}
.y2d8{bottom:664.312400pt;}
.y56e{bottom:664.669307pt;}
.y221{bottom:665.833333pt;}
.y433{bottom:667.181333pt;}
.y3f5{bottom:667.246800pt;}
.y654{bottom:667.634800pt;}
.y201{bottom:667.680933pt;}
.y2fe{bottom:668.341600pt;}
.y256{bottom:668.352267pt;}
.y46e{bottom:668.784933pt;}
.y1a1{bottom:670.337600pt;}
.y33a{bottom:671.879733pt;}
.y4d3{bottom:672.449733pt;}
.y15{bottom:672.781867pt;}
.y5ea{bottom:674.522933pt;}
.y61e{bottom:674.674800pt;}
.y48c{bottom:675.903600pt;}
.y296{bottom:675.908933pt;}
.y23e{bottom:675.914267pt;}
.y1bc{bottom:676.281333pt;}
.y348{bottom:676.952667pt;}
.y552{bottom:677.564267pt;}
.y197{bottom:678.491467pt;}
.y5cd{bottom:678.779387pt;}
.y3bb{bottom:678.836933pt;}
.y172{bottom:679.109333pt;}
.y512{bottom:679.346800pt;}
.y4c7{bottom:679.382667pt;}
.y91{bottom:679.382800pt;}
.y101{bottom:679.704533pt;}
.ye2{bottom:679.795200pt;}
.yf8{bottom:679.795333pt;}
.y53f{bottom:680.285867pt;}
.y5a0{bottom:681.046267pt;}
.y2d7{bottom:681.640400pt;}
.y1de{bottom:681.645733pt;}
.y56d{bottom:682.583547pt;}
.y432{bottom:684.509333pt;}
.y200{bottom:685.008933pt;}
.y37e{bottom:685.050400pt;}
.y3ca{bottom:685.552133pt;}
.y2fd{bottom:685.669600pt;}
.y255{bottom:685.680267pt;}
.y2a{bottom:686.820800pt;}
.y220{bottom:686.948667pt;}
.y68{bottom:687.116000pt;}
.y680{bottom:687.222267pt;}
.y43{bottom:687.532533pt;}
.y31c{bottom:689.202400pt;}
.y339{bottom:689.207733pt;}
.y3f4{bottom:692.136800pt;}
.y653{bottom:692.274667pt;}
.y14{bottom:693.051200pt;}
.y48b{bottom:693.231600pt;}
.y295{bottom:693.236933pt;}
.y23d{bottom:693.242267pt;}
.y46d{bottom:693.674933pt;}
.y4b0{bottom:695.273467pt;}
.y3ba{bottom:696.164933pt;}
.y5cc{bottom:696.693627pt;}
.y1bb{bottom:697.396667pt;}
.y5e9{bottom:698.842933pt;}
.y59f{bottom:698.960507pt;}
.y1dd{bottom:698.973733pt;}
.y61d{bottom:698.994800pt;}
.y196{bottom:699.691467pt;}
.y171{bottom:700.309333pt;}
.y511{bottom:700.550800pt;}
.y1a0{bottom:700.582667pt;}
.y90{bottom:700.582800pt;}
.y56c{bottom:700.821627pt;}
.y100{bottom:700.904533pt;}
.ye1{bottom:700.995200pt;}
.yf7{bottom:700.995333pt;}
.y53e{bottom:701.489867pt;}
.y155{bottom:701.786000pt;}
.y431{bottom:701.837333pt;}
.y347{bottom:701.842667pt;}
.y37d{bottom:702.378400pt;}
.y361{bottom:703.008267pt;}
.y1ff{bottom:706.124267pt;}
.y2d6{bottom:706.530400pt;}
.y338{bottom:706.535733pt;}
.y67{bottom:708.316000pt;}
.y3f3{bottom:709.464800pt;}
.y3c9{bottom:710.442133pt;}
.y2fc{bottom:710.559600pt;}
.y294{bottom:710.564933pt;}
.y23c{bottom:710.570267pt;}
.y46c{bottom:711.002933pt;}
.y42{bottom:711.539200pt;}
.y67f{bottom:711.542267pt;}
.y399{bottom:712.109467pt;}
.y4af{bottom:712.601467pt;}
.y13{bottom:713.320533pt;}
.y4d2{bottom:714.849733pt;}
.y29{bottom:715.940800pt;}
.y551{bottom:716.097600pt;}
.y59e{bottom:716.874747pt;}
.y652{bottom:716.914667pt;}
.y430{bottom:719.165333pt;}
.y346{bottom:719.170667pt;}
.y56b{bottom:719.383547pt;}
.y3b9{bottom:721.054933pt;}
.y170{bottom:721.509333pt;}
.y510{bottom:721.754800pt;}
.y4c6{bottom:721.782667pt;}
.y8f{bottom:721.782800pt;}
.ybc{bottom:722.104533pt;}
.ye0{bottom:722.195200pt;}
.yf6{bottom:722.195333pt;}
.y53d{bottom:722.693867pt;}
.y154{bottom:722.986000pt;}
.y5e8{bottom:723.482933pt;}
.y61c{bottom:723.634800pt;}
.y2d5{bottom:723.858400pt;}
.y1dc{bottom:723.863733pt;}
.y21f{bottom:725.898667pt;}
.y3f2{bottom:726.792800pt;}
.y37c{bottom:727.268400pt;}
.y3c8{bottom:727.770133pt;}
.y2fb{bottom:727.887600pt;}
.y293{bottom:727.892933pt;}
.y23b{bottom:727.898267pt;}
.y46b{bottom:728.330933pt;}
.y1ba{bottom:728.936667pt;}
.y398{bottom:729.437467pt;}
.y66{bottom:729.516000pt;}
.y5cb{bottom:733.169787pt;}
.y12{bottom:733.589867pt;}
.y67e{bottom:734.582133pt;}
.y59d{bottom:734.788987pt;}
.y4d1{bottom:736.049733pt;}
.y42f{bottom:736.493333pt;}
.y345{bottom:736.498667pt;}
.y56a{bottom:736.988667pt;}
.y4ae{bottom:737.491467pt;}
.y1fe{bottom:737.664267pt;}
.y3b8{bottom:738.382933pt;}
.y11a{bottom:739.781067pt;}
.y2d4{bottom:741.186400pt;}
.y1db{bottom:741.191733pt;}
.y651{bottom:741.234667pt;}
.y16f{bottom:742.709333pt;}
.y50f{bottom:742.958800pt;}
.y19f{bottom:742.982667pt;}
.y8e{bottom:742.982800pt;}
.y21e{bottom:743.226667pt;}
.ybb{bottom:743.304533pt;}
.ydf{bottom:743.395200pt;}
.yf5{bottom:743.395333pt;}
.y53c{bottom:743.897867pt;}
.y3f1{bottom:744.120800pt;}
.y153{bottom:744.186000pt;}
.y37b{bottom:744.596400pt;}
.y3c7{bottom:745.098133pt;}
.y2fa{bottom:745.215600pt;}
.y292{bottom:745.220933pt;}
.y23a{bottom:745.226267pt;}
.y1b9{bottom:746.264667pt;}
.y5e7{bottom:746.523067pt;}
.y61b{bottom:746.674800pt;}
.y67d{bottom:747.382267pt;}
.y65{bottom:750.716000pt;}
.y59c{bottom:752.703227pt;}
.y46a{bottom:753.220933pt;}
.y42e{bottom:753.821333pt;}
.y344{bottom:753.826667pt;}
.y11{bottom:753.859200pt;}
.y397{bottom:754.327467pt;}
.y550{bottom:754.630933pt;}
.y4ad{bottom:754.819467pt;}
.y569{bottom:754.902907pt;}
.y1fd{bottom:754.992267pt;}
.y3b7{bottom:755.710933pt;}
.y4d0{bottom:757.249733pt;}
.y2d3{bottom:758.514400pt;}
.y1da{bottom:758.519733pt;}
.y5e6{bottom:759.322933pt;}
.y61a{bottom:759.474800pt;}
.y3f0{bottom:761.448800pt;}
.y9{bottom:761.486933pt;}
.y37a{bottom:761.924400pt;}
.y3c6{bottom:762.426133pt;}
.y2f9{bottom:762.543600pt;}
.y291{bottom:762.548933pt;}
.y239{bottom:762.554267pt;}
.y16e{bottom:763.909333pt;}
.y50e{bottom:764.162800pt;}
.y19e{bottom:764.182667pt;}
.y8d{bottom:764.182800pt;}
.y650{bottom:764.274800pt;}
.yba{bottom:764.504533pt;}
.yde{bottom:764.595200pt;}
.yf4{bottom:764.595333pt;}
.y53b{bottom:765.101867pt;}
.y67c{bottom:765.302267pt;}
.y152{bottom:765.386000pt;}
.y21d{bottom:768.116667pt;}
.y469{bottom:770.548933pt;}
.y59b{bottom:770.617467pt;}
.y1b8{bottom:771.154667pt;}
.y396{bottom:771.655467pt;}
.y64{bottom:771.916000pt;}
.y4ac{bottom:772.147467pt;}
.y568{bottom:772.817147pt;}
.y41{bottom:772.872533pt;}
.y3b6{bottom:773.038933pt;}
.y10{bottom:774.128533pt;}
.y2d2{bottom:775.842400pt;}
.y1d9{bottom:775.847733pt;}
.y64f{bottom:777.074667pt;}
.y5e5{bottom:777.243067pt;}
.y619{bottom:777.394800pt;}
.y4cf{bottom:778.449733pt;}
.y42d{bottom:778.711333pt;}
.y3ef{bottom:778.776800pt;}
.y379{bottom:779.252400pt;}
.y2f8{bottom:779.871600pt;}
.y451{bottom:779.876933pt;}
.y1fc{bottom:779.882267pt;}
.y67b{bottom:780.335867pt;}
.y5ca{bottom:783.085307pt;}
.y16d{bottom:785.109333pt;}
.y50d{bottom:785.366800pt;}
.y19d{bottom:785.382667pt;}
.y8c{bottom:785.382800pt;}
.y21c{bottom:785.444667pt;}
.y13f{bottom:785.543867pt;}
.yb9{bottom:785.704533pt;}
.ydd{bottom:785.795200pt;}
.yf3{bottom:785.795333pt;}
.y53a{bottom:786.305867pt;}
.y151{bottom:786.586000pt;}
.y3c5{bottom:787.316133pt;}
.y290{bottom:787.438933pt;}
.y2b1{bottom:787.444267pt;}
.y468{bottom:787.876933pt;}
.y1b7{bottom:788.482667pt;}
.y59a{bottom:788.531707pt;}
.y4ab{bottom:789.475467pt;}
.y3b5{bottom:790.366933pt;}
.y567{bottom:791.055227pt;}
.y5e4{bottom:792.272827pt;}
.y618{bottom:792.424560pt;}
.y63{bottom:793.121333pt;}
.y54f{bottom:793.164267pt;}
.y2d1{bottom:793.170400pt;}
.y1d8{bottom:793.175733pt;}
.yf{bottom:794.397867pt;}
.y67a{bottom:794.417147pt;}
.y64e{bottom:794.663280pt;}
.y42c{bottom:796.039333pt;}
.y343{bottom:796.044667pt;}
.y395{bottom:796.545467pt;}
.y378{bottom:796.580400pt;}
.y48a{bottom:797.199600pt;}
.y450{bottom:797.204933pt;}
.y1fb{bottom:797.210267pt;}
.y4ce{bottom:799.649733pt;}
.y21b{bottom:802.772667pt;}
.y3ee{bottom:803.666800pt;}
.y3c4{bottom:804.644133pt;}
.y2f7{bottom:804.761600pt;}
.y28f{bottom:804.766933pt;}
.y2b0{bottom:804.772267pt;}
.y467{bottom:805.204933pt;}
.y1b6{bottom:805.810667pt;}
.y5e3{bottom:806.037947pt;}
.y617{bottom:806.189680pt;}
.y16c{bottom:806.309333pt;}
.y599{bottom:806.445947pt;}
.y50c{bottom:806.570800pt;}
.y19c{bottom:806.582667pt;}
.y8b{bottom:806.582800pt;}
.y13e{bottom:806.743867pt;}
.yb8{bottom:806.904533pt;}
.ydc{bottom:806.995200pt;}
.yf2{bottom:806.995333pt;}
.y539{bottom:807.509867pt;}
.y3b4{bottom:807.694933pt;}
.y150{bottom:807.786000pt;}
.y679{bottom:808.182267pt;}
.y64d{bottom:808.744560pt;}
.y566{bottom:808.969467pt;}
.y40{bottom:810.205867pt;}
.y2d0{bottom:810.498400pt;}
.y1d7{bottom:810.503733pt;}
.y42b{bottom:813.367333pt;}
.y342{bottom:813.372667pt;}
.y394{bottom:813.873467pt;}
.y377{bottom:813.908400pt;}
.y8{bottom:814.317200pt;}
.y4aa{bottom:814.365467pt;}
.y489{bottom:814.527600pt;}
.y44f{bottom:814.532933pt;}
.y1fa{bottom:814.538267pt;}
.ye{bottom:814.667200pt;}
.ya{bottom:815.286667pt;}
.y5c9{bottom:817.000187pt;}
.y5e2{bottom:819.803067pt;}
.y616{bottom:819.954800pt;}
.y21a{bottom:820.100667pt;}
.y4cd{bottom:820.849733pt;}
.y3ed{bottom:820.994800pt;}
.y3c3{bottom:821.972133pt;}
.y2f6{bottom:822.089600pt;}
.y28e{bottom:822.094933pt;}
.y238{bottom:822.100267pt;}
.y678{bottom:822.262267pt;}
.y64c{bottom:822.509680pt;}
.y466{bottom:822.532933pt;}
.y598{bottom:824.360187pt;}
.y565{bottom:826.246907pt;}
.y16b{bottom:827.509333pt;}
.y50b{bottom:827.774800pt;}
.y19b{bottom:827.782667pt;}
.y8a{bottom:827.782800pt;}
.y1d6{bottom:827.831733pt;}
.y13d{bottom:827.943867pt;}
.yb7{bottom:828.104533pt;}
.ydb{bottom:828.195200pt;}
.yf1{bottom:828.195333pt;}
.y538{bottom:828.713867pt;}
.y42a{bottom:830.695333pt;}
.y1b5{bottom:830.700667pt;}
.y393{bottom:831.201467pt;}
.y62{bottom:831.649333pt;}
.y54e{bottom:831.697600pt;}
.y44e{bottom:831.860933pt;}
.y1f9{bottom:831.866267pt;}
.y3b3{bottom:832.584933pt;}
.y5e1{bottom:833.883067pt;}
.y615{bottom:834.034800pt;}
.y5c8{bottom:834.914427pt;}
.y2cf{bottom:835.388400pt;}
.y337{bottom:835.393733pt;}
.y64b{bottom:836.274800pt;}
.y219{bottom:837.428667pt;}
.y3ec{bottom:838.322800pt;}
.y376{bottom:838.798400pt;}
.y677{bottom:838.902133pt;}
.y4a9{bottom:839.255467pt;}
.y2f5{bottom:839.417600pt;}
.y28d{bottom:839.422933pt;}
.y237{bottom:839.428267pt;}
.y465{bottom:839.860933pt;}
.y4cc{bottom:842.049733pt;}
.y597{bottom:842.922107pt;}
.y564{bottom:843.528187pt;}
.y1d5{bottom:845.159733pt;}
.yd{bottom:846.277867pt;}
.y3c2{bottom:846.862133pt;}
.y3f{bottom:847.539200pt;}
.y1b4{bottom:848.028667pt;}
.y392{bottom:848.529467pt;}
.y16a{bottom:848.709200pt;}
.y50a{bottom:848.978800pt;}
.y19a{bottom:848.982667pt;}
.y89{bottom:848.982800pt;}
.y13c{bottom:849.143867pt;}
.yb6{bottom:849.304533pt;}
.yda{bottom:849.395200pt;}
.y192{bottom:849.395333pt;}
.y3b2{bottom:849.912933pt;}
.y537{bottom:849.917867pt;}
.y5e0{bottom:850.843067pt;}
.y64a{bottom:850.994667pt;}
.y614{bottom:850.994800pt;}
.y2ce{bottom:852.716400pt;}
.y336{bottom:852.721733pt;}
.y61{bottom:852.849333pt;}
.y429{bottom:855.585333pt;}
.y3eb{bottom:855.650800pt;}
.y375{bottom:856.126400pt;}
.y28c{bottom:856.750933pt;}
.y1f8{bottom:856.756267pt;}
.y4f0{bottom:858.988000pt;}
.y563{bottom:860.810613pt;}
.y596{bottom:860.836347pt;}
.y218{bottom:862.318667pt;}
.y4cb{bottom:863.249733pt;}
.y2f4{bottom:864.307600pt;}
.y464{bottom:864.750933pt;}
.y3b1{bottom:867.240933pt;}
.y5c7{bottom:868.829307pt;}
.y4fc{bottom:869.534000pt;}
.y86{bottom:869.813067pt;}
.y169{bottom:869.909200pt;}
.y2cd{bottom:870.044400pt;}
.y1d4{bottom:870.049733pt;}
.yf0{bottom:870.182667pt;}
.y88{bottom:870.182800pt;}
.y54d{bottom:870.225600pt;}
.y13b{bottom:870.343867pt;}
.yb5{bottom:870.504533pt;}
.yd9{bottom:870.595200pt;}
.y191{bottom:870.595333pt;}
.y536{bottom:871.121867pt;}
.yc{bottom:871.663200pt;}
.y1b3{bottom:872.918667pt;}
.y3ea{bottom:872.978800pt;}
.y391{bottom:873.419467pt;}
.y374{bottom:873.454400pt;}
.y60{bottom:874.049333pt;}
.y1f7{bottom:874.084267pt;}
.y676{bottom:874.422267pt;}
.y7{bottom:874.899600pt;}
.y562{bottom:877.449333pt;}
.y595{bottom:878.750587pt;}
.y217{bottom:879.646667pt;}
.y28b{bottom:881.640933pt;}
.y4ca{bottom:884.449733pt;}
.y3b0{bottom:884.568933pt;}
.y5df{bottom:886.363067pt;}
.y649{bottom:886.514667pt;}
.y613{bottom:886.514800pt;}
.y5c6{bottom:886.743547pt;}
.y3c1{bottom:887.135467pt;}
.y1d3{bottom:887.377733pt;}
.y3a{bottom:890.077733pt;}
.y4fb{bottom:890.734000pt;}
.y4ef{bottom:890.990667pt;}
.y85{bottom:891.013067pt;}
.y168{bottom:891.109200pt;}
.y13a{bottom:891.543867pt;}
.yb4{bottom:891.704533pt;}
.yd8{bottom:891.795200pt;}
.y4f5{bottom:891.795333pt;}
.y535{bottom:892.325867pt;}
.y37{bottom:894.807733pt;}
.y2cc{bottom:894.934400pt;}
.y4a8{bottom:895.849733pt;}
.y2f3{bottom:895.862400pt;}
.y594{bottom:897.312507pt;}
.y3e9{bottom:897.868800pt;}
.y373{bottom:898.344400pt;}
.y1f6{bottom:898.974267pt;}
.y675{bottom:900.978293pt;}
.y561{bottom:901.460987pt;}
.y1b2{bottom:904.463467pt;}
.y4a7{bottom:904.513733pt;}
.y216{bottom:904.536667pt;}
.y5c5{bottom:904.657787pt;}
.y3af{bottom:909.458933pt;}
.y5de{bottom:911.003067pt;}
.y4fa{bottom:911.934000pt;}
.y84{bottom:912.213067pt;}
.y1d2{bottom:912.267733pt;}
.y167{bottom:912.309200pt;}
.y190{bottom:912.582667pt;}
.y139{bottom:912.743867pt;}
.y648{bottom:912.760427pt;}
.y612{bottom:912.760560pt;}
.yb3{bottom:912.904533pt;}
.yd7{bottom:912.995200pt;}
.y4f4{bottom:912.995333pt;}
.y28a{bottom:913.190400pt;}
.y534{bottom:913.529867pt;}
.y593{bottom:915.226747pt;}
.y560{bottom:917.454587pt;}
.y3c0{bottom:918.675467pt;}
.y39{bottom:919.408400pt;}
.y5c4{bottom:922.572027pt;}
.y199{bottom:922.993333pt;}
.y674{bottom:924.982133pt;}
.y2cb{bottom:926.472000pt;}
.y31b{bottom:926.484667pt;}
.y3bf{bottom:927.339467pt;}
.y2f2{bottom:927.402400pt;}
.y36{bottom:927.427600pt;}
.y3e8{bottom:929.425600pt;}
.y372{bottom:929.901200pt;}
.y1f5{bottom:930.531067pt;}
.y4f9{bottom:933.134000pt;}
.y592{bottom:933.140987pt;}
.y83{bottom:933.413067pt;}
.y166{bottom:933.509200pt;}
.y55f{bottom:933.770747pt;}
.y4c5{bottom:933.796000pt;}
.y138{bottom:933.943867pt;}
.yb2{bottom:934.104533pt;}
.yd6{bottom:934.195200pt;}
.y4f3{bottom:934.195333pt;}
.y533{bottom:934.733867pt;}
.y2ca{bottom:935.136000pt;}
.y1b1{bottom:936.003467pt;}
.y488{bottom:936.066400pt;}
.y5dd{bottom:937.243067pt;}
.y5c3{bottom:940.486267pt;}
.y215{bottom:943.491333pt;}
.y1d1{bottom:943.812667pt;}
.y289{bottom:944.730400pt;}
.y647{bottom:947.314667pt;}
.y611{bottom:947.314800pt;}
.y3e{bottom:948.452533pt;}
.y38{bottom:948.739067pt;}
.y55e{bottom:950.086907pt;}
.y591{bottom:951.055227pt;}
.y288{bottom:953.394400pt;}
.y195{bottom:954.091467pt;}
.y4f8{bottom:954.334000pt;}
.y82{bottom:954.613067pt;}
.y165{bottom:954.709200pt;}
.y87{bottom:954.996000pt;}
.y137{bottom:955.143867pt;}
.yb1{bottom:955.304533pt;}
.yd5{bottom:955.395200pt;}
.y4f2{bottom:955.395333pt;}
.y532{bottom:955.937867pt;}
.y31a{bottom:958.024667pt;}
.y3e7{bottom:960.965600pt;}
.y371{bottom:961.441200pt;}
.y6{bottom:961.917067pt;}
.y2f1{bottom:962.058400pt;}
.y1f4{bottom:962.071067pt;}
.y673{bottom:964.029307pt;}
.y5dc{bottom:964.439227pt;}
.y319{bottom:966.688667pt;}
.y1b0{bottom:967.550267pt;}
.y590{bottom:968.969467pt;}
.y55d{bottom:970.569467pt;}
.y3d{bottom:972.459200pt;}
.y214{bottom:975.031333pt;}
.y194{bottom:975.291467pt;}
.y1d0{bottom:975.352667pt;}
.y4f7{bottom:975.534000pt;}
.y81{bottom:975.813067pt;}
.y164{bottom:975.909200pt;}
.y4c4{bottom:976.182667pt;}
.y487{bottom:976.283067pt;}
.y136{bottom:976.343867pt;}
.yb0{bottom:976.504533pt;}
.yd4{bottom:976.595200pt;}
.y4f1{bottom:976.595333pt;}
.y531{bottom:977.141867pt;}
.y646{bottom:986.361707pt;}
.y610{bottom:986.361840pt;}
.y5d{bottom:989.523200pt;}
.y5db{bottom:990.683067pt;}
.y485{bottom:991.586000pt;}
.y3e6{bottom:992.505600pt;}
.y5{bottom:992.589067pt;}
.y370{bottom:992.981200pt;}
.y1f3{bottom:993.611067pt;}
.y55a{bottom:994.569467pt;}
.y672{bottom:996.342267pt;}
.y3c{bottom:996.465867pt;}
.y80{bottom:997.013067pt;}
.y18f{bottom:997.109200pt;}
.y5f{bottom:997.382667pt;}
.y135{bottom:997.543867pt;}
.yaf{bottom:997.704533pt;}
.y530{bottom:998.345867pt;}
.y3e5{bottom:999.147200pt;}
.y559{bottom:999.373307pt;}
.y36f{bottom:999.622667pt;}
.y1f2{bottom:1000.252667pt;}
.y119{bottom:1000.557867pt;}
.y213{bottom:1006.578000pt;}
.y1cf{bottom:1006.899333pt;}
.y486{bottom:1010.939067pt;}
.y5da{bottom:1015.642933pt;}
.y4f6{bottom:1017.521467pt;}
.y558{bottom:1017.611387pt;}
.y193{bottom:1017.691467pt;}
.y7f{bottom:1018.213067pt;}
.y163{bottom:1018.309200pt;}
.yd3{bottom:1018.582667pt;}
.y3be{bottom:1018.582800pt;}
.y645{bottom:1018.674667pt;}
.y60f{bottom:1018.674800pt;}
.y134{bottom:1018.743867pt;}
.yae{bottom:1018.904533pt;}
.y52f{bottom:1019.549867pt;}
.y5c{bottom:1020.195200pt;}
.y3b{bottom:1020.472533pt;}
.y671{bottom:1021.302133pt;}
.y4{bottom:1023.261067pt;}
.y5d9{bottom:1032.283067pt;}
.y557{bottom:1035.849467pt;}
.y670{bottom:1037.942267pt;}
.y644{bottom:1043.634667pt;}
.y60e{bottom:1043.634800pt;}
.y3{bottom:1053.933067pt;}
.y556{bottom:1054.411387pt;}
.y60d{bottom:1060.274800pt;}
.y555{bottom:1072.649467pt;}
.h4c{height:18.666667pt;}
.h43{height:19.621875pt;}
.h4b{height:20.000000pt;}
.h3f{height:24.740625pt;}
.h49{height:26.666667pt;}
.h48{height:28.000000pt;}
.h47{height:28.001333pt;}
.h4f{height:29.333333pt;}
.h50{height:29.334667pt;}
.h53{height:30.665333pt;}
.h1e{height:31.829333pt;}
.h46{height:31.998667pt;}
.h22{height:32.890667pt;}
.h3e{height:33.772500pt;}
.h23{height:35.808000pt;}
.h34{height:35.831250pt;}
.h3b{height:37.327500pt;}
.h51{height:37.333333pt;}
.h54{height:37.334667pt;}
.h3d{height:37.537500pt;}
.h16{height:37.589333pt;}
.h2c{height:37.848000pt;}
.h4e{height:38.666667pt;}
.h4a{height:38.668000pt;}
.h38{height:39.243750pt;}
.h39{height:40.365000pt;}
.h32{height:40.416000pt;}
.h41{height:40.882500pt;}
.h18{height:41.973333pt;}
.h17{height:42.288000pt;}
.h45{height:43.812500pt;}
.h35{height:44.336250pt;}
.h3c{height:44.468750pt;}
.h40{height:44.469283pt;}
.h26{height:44.637333pt;}
.h28{height:45.296000pt;}
.h42{height:46.068750pt;}
.h44{height:46.666667pt;}
.h1c{height:46.986667pt;}
.h2f{height:46.987200pt;}
.h24{height:47.680000pt;}
.h36{height:48.512137pt;}
.h37{height:48.554163pt;}
.h33{height:48.558750pt;}
.h3a{height:50.822500pt;}
.hb{height:51.333333pt;}
.hc{height:52.448000pt;}
.h27{height:52.716800pt;}
.h2a{height:52.717333pt;}
.hd{height:53.109333pt;}
.h1a{height:56.384000pt;}
.ha{height:57.216000pt;}
.h1f{height:57.642667pt;}
.h21{height:58.112000pt;}
.h8{height:60.320000pt;}
.he{height:60.666667pt;}
.h14{height:61.082667pt;}
.h4d{height:64.000000pt;}
.h12{height:65.973237pt;}
.h1d{height:66.752000pt;}
.h25{height:67.797333pt;}
.h9{height:71.520000pt;}
.h2e{height:79.293333pt;}
.h13{height:81.056000pt;}
.h4{height:84.000000pt;}
.h2{height:85.350096pt;}
.h3{height:86.419944pt;}
.h2b{height:87.382933pt;}
.h2d{height:87.383467pt;}
.h29{height:87.384000pt;}
.h20{height:90.581333pt;}
.h6{height:90.816022pt;}
.h1b{height:104.896000pt;}
.h19{height:106.538667pt;}
.h11{height:113.747109pt;}
.h10{height:118.388861pt;}
.h15{height:119.200000pt;}
.h7{height:169.630720pt;}
.h5{height:190.713395pt;}
.hf{height:222.804992pt;}
.h30{height:793.701333pt;}
.h31{height:794.000000pt;}
.h52{height:1084.748000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w10{width:49.333333pt;}
.w7{width:50.666667pt;}
.wb{width:53.333333pt;}
.w8{width:54.666667pt;}
.w9{width:88.000000pt;}
.we{width:88.001333pt;}
.w5{width:98.666667pt;}
.w6{width:366.666667pt;}
.wa{width:372.000000pt;}
.wc{width:376.000000pt;}
.wf{width:377.333333pt;}
.wd{width:646.588000pt;}
.w2{width:793.698667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1122.520000pt;}
.w4{width:1122.666667pt;}
.x2{left:-753.204000pt;}
.xa{left:-730.121733pt;}
.xb{left:-712.339733pt;}
.x7{left:-679.058933pt;}
.x8{left:-663.937600pt;}
.x6{left:-483.801600pt;}
.x5{left:-10.511867pt;}
.x0{left:0.000000pt;}
.x9e{left:1.172667pt;}
.x96{left:7.253333pt;}
.xa1{left:8.839333pt;}
.xa2{left:10.079333pt;}
.xa8{left:15.499200pt;}
.x8f{left:17.026667pt;}
.x91{left:18.314667pt;}
.x8e{left:19.946533pt;}
.xaa{left:24.699867pt;}
.xab{left:26.461600pt;}
.xb0{left:29.138667pt;}
.x6e{left:30.513467pt;}
.x1{left:54.922133pt;}
.x3{left:56.689467pt;}
.x7c{left:63.896533pt;}
.x4a{left:70.579067pt;}
.x2c{left:71.899067pt;}
.x2e{left:73.085600pt;}
.x26{left:74.539067pt;}
.xb2{left:78.296400pt;}
.x77{left:79.883387pt;}
.x71{left:84.349333pt;}
.x82{left:87.949013pt;}
.x73{left:89.187733pt;}
.x97{left:90.154133pt;}
.x1f{left:94.488133pt;}
.x22{left:95.488133pt;}
.x75{left:97.619867pt;}
.x72{left:99.872533pt;}
.xb8{left:101.378667pt;}
.x2f{left:102.713867pt;}
.x61{left:103.716533pt;}
.xad{left:104.954800pt;}
.x20{left:105.912133pt;}
.x8a{left:107.805333pt;}
.x28{left:109.606267pt;}
.xac{left:110.634827pt;}
.x83{left:112.001493pt;}
.x25{left:113.381467pt;}
.x69{left:114.381467pt;}
.x24{left:117.165333pt;}
.x23{left:118.165333pt;}
.xb9{left:119.160533pt;}
.x2d{left:124.724400pt;}
.x85{left:125.721840pt;}
.x6a{left:131.096400pt;}
.x7b{left:132.875307pt;}
.x2b{left:136.062933pt;}
.x99{left:138.166720pt;}
.x6f{left:139.594640pt;}
.x78{left:141.191333pt;}
.x59{left:143.168667pt;}
.x56{left:144.742000pt;}
.x8b{left:145.725787pt;}
.x7f{left:149.022293pt;}
.x14{left:151.887333pt;}
.x74{left:164.492053pt;}
.x13{left:167.120667pt;}
.x63{left:169.442267pt;}
.x68{left:170.552267pt;}
.x66{left:171.718933pt;}
.x5e{left:172.725200pt;}
.x3f{left:174.134800pt;}
.x62{left:175.548000pt;}
.x58{left:176.677600pt;}
.x3d{left:178.220933pt;}
.x48{left:179.290533pt;}
.x43{left:180.690267pt;}
.x8d{left:182.790667pt;}
.x3a{left:184.450267pt;}
.x9b{left:185.554133pt;}
.x89{left:186.700720pt;}
.x55{left:191.846133pt;}
.x51{left:193.432800pt;}
.x7e{left:196.229333pt;}
.x29{left:198.949733pt;}
.x44{left:200.894800pt;}
.x5a{left:202.401600pt;}
.x65{left:203.572667pt;}
.x60{left:205.653867pt;}
.x2a{left:206.909733pt;}
.x80{left:207.917013pt;}
.x41{left:208.811867pt;}
.x42{left:209.875867pt;}
.x37{left:211.676667pt;}
.x39{left:212.836667pt;}
.x4b{left:214.475733pt;}
.x38{left:215.503200pt;}
.x36{left:216.769867pt;}
.x34{left:218.089867pt;}
.x3c{left:219.324133pt;}
.x30{left:220.729867pt;}
.x52{left:223.924000pt;}
.x54{left:224.988000pt;}
.x79{left:226.670373pt;}
.x95{left:228.180000pt;}
.xd{left:230.275467pt;}
.x81{left:231.954773pt;}
.x5b{left:233.372400pt;}
.x46{left:234.638000pt;}
.x47{left:235.702000pt;}
.xc{left:240.634133pt;}
.x4d{left:241.567600pt;}
.x4e{left:242.631600pt;}
.x31{left:246.605067pt;}
.x32{left:247.669067pt;}
.x98{left:262.346133pt;}
.x11{left:267.943333pt;}
.xa3{left:268.960400pt;}
.x88{left:269.905200pt;}
.x10{left:285.987333pt;}
.x1c{left:295.926533pt;}
.xf{left:300.703333pt;}
.x19{left:303.986533pt;}
.x1d{left:311.058533pt;}
.x57{left:317.480267pt;}
.x1e{left:320.470533pt;}
.x18{left:329.327867pt;}
.x17{left:335.151867pt;}
.x6d{left:336.171333pt;}
.x9{left:339.491733pt;}
.x1b{left:342.501200pt;}
.x15{left:343.787333pt;}
.x1a{left:344.979867pt;}
.x87{left:346.800667pt;}
.xb6{left:347.698800pt;}
.x84{left:351.276400pt;}
.x7a{left:358.429867pt;}
.xe{left:360.767467pt;}
.x6c{left:364.967733pt;}
.x12{left:370.556667pt;}
.x16{left:371.621200pt;}
.x64{left:372.913333pt;}
.x67{left:374.173200pt;}
.x76{left:376.808987pt;}
.x5f{left:379.212533pt;}
.x5d{left:381.732267pt;}
.x40{left:385.511867pt;}
.xae{left:388.388133pt;}
.x3e{left:393.070933pt;}
.xa6{left:394.101467pt;}
.x9a{left:395.131840pt;}
.x4c{left:396.850400pt;}
.x49{left:399.370000pt;}
.xa4{left:401.734800pt;}
.x8c{left:402.690907pt;}
.x3b{left:404.409467pt;}
.xa5{left:408.888667pt;}
.x86{left:410.359600pt;}
.x53{left:415.748000pt;}
.x7d{left:417.513067pt;}
.x70{left:424.232400pt;}
.x5c{left:434.645733pt;}
.x45{left:437.165333pt;}
.x6b{left:448.032533pt;}
.x4f{left:451.023600pt;}
.x50{left:452.283467pt;}
.x33{left:461.102400pt;}
.x35{left:474.912800pt;}
.x4{left:497.790800pt;}
.x9f{left:566.261333pt;}
.xaf{left:571.128000pt;}
.xa7{left:576.874667pt;}
.x90{left:577.820000pt;}
.x92{left:593.478400pt;}
.x27{left:616.765733pt;}
.xa0{left:619.593333pt;}
.xa9{left:626.208000pt;}
.x93{left:627.153333pt;}
.x9c{left:639.151253pt;}
.x94{left:645.298267pt;}
.x9d{left:661.987467pt;}
.x21{left:707.271600pt;}
.xb5{left:820.987067pt;}
.xb1{left:886.421067pt;}
.xb3{left:888.188400pt;}
.xb7{left:1170.990667pt;}
.xb4{left:1329.289867pt;}
}




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