
    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_9ea8d5f7140c1edd3a2ed593.woff')format("woff");}.ff1{font-family:ff1;line-height:0.956543;font-style:normal;font-weight: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_d2a70b14a058a4662e5dcedf.woff')format("woff");}.ff2{font-family:ff2;line-height:0.717285;font-style:normal;font-weight: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_ce3901ef4521682720222027.woff')format("woff");}.ff3{font-family:ff3;line-height:0.740234;font-style:normal;font-weight: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_7eb89b7b36b3152a7f15e877.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_939e18d857e1ffc28fcfcbb7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.956543;font-style:normal;font-weight: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_d2a70b14a058a4662e5dcedf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.717285;font-style:normal;font-weight: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_f4a2b6f842a114dfa8891d88.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740234;font-style:normal;font-weight: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_6d305083aafc1bdc5e058a21.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9528229773b167b369b6162b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.956543;font-style:normal;font-weight: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_d2a70b14a058a4662e5dcedf.woff')format("woff");}.ffa{font-family:ffa;line-height:0.717285;font-style:normal;font-weight: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_f9a16a6aaa9ad565675cfabb.woff')format("woff");}.ffb{font-family:ffb;line-height:0.715820;font-style:normal;font-weight: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_f102383a7704669f2fd58f81.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_214abd28fccaeb98417d1b8d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.956543;font-style:normal;font-weight: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_d2a70b14a058a4662e5dcedf.woff')format("woff");}.ffe{font-family:ffe;line-height:0.717285;font-style:normal;font-weight: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_ec01f2147c716cd4f3f21a3b.woff')format("woff");}.fff{font-family:fff;line-height:0.715820;font-style:normal;font-weight: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_63fea348af629fe3e40dff35.woff')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d2a70b14a058a4662e5dcedf.woff')format("woff");}.ff11{font-family:ff11;line-height:0.717285;font-style:normal;font-weight: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_33cad16d76460f70c3436673.woff')format("woff");}.ff12{font-family:ff12;line-height:0.958008;font-style:normal;font-weight: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_5353d6bf53e0006b1207c1ea.woff')format("woff");}.ff13{font-family:ff13;line-height:0.740234;font-style:normal;font-weight: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_0019c8c0919d12a45953f3fc.woff')format("woff");}.ff14{font-family:ff14;line-height:0.740234;font-style:normal;font-weight: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_6d77d9db0844a529a1ff144b.woff')format("woff");}.ff15{font-family:ff15;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_d2a70b14a058a4662e5dcedf.woff')format("woff");}.ff16{font-family:ff16;line-height:0.717285;font-style:normal;font-weight: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_fdb83b65be0f3c7205622e30.woff')format("woff");}.ff17{font-family:ff17;line-height:0.958008;font-style:normal;font-weight: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_2cc580e0f208fe07a1035a67.woff')format("woff");}.ff18{font-family:ff18;line-height:0.740234;font-style:normal;font-weight: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_f37dd4ed31b9a0395b7695c1.woff')format("woff");}.ff19{font-family:ff19;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_d2a70b14a058a4662e5dcedf.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.717285;font-style:normal;font-weight: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_f1f328f360e6fd4bc2d4ff25.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.950195;font-style:normal;font-weight: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_f147309a6388e6e7a698cd08.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_67cbf668564563b55585faf9.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.718750;font-style:normal;font-weight: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_6fd9dd8d29c24dd699de18cc.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.718750;font-style:normal;font-weight: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_c5d4554cd5c61277eff96fcf.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.718750;font-style:normal;font-weight: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_c2416bd00e52425b6a945a1e.woff')format("woff");}.ff20{font-family:ff20;line-height:0.718750;font-style:normal;font-weight: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_39fc82d1956fff1a9e25da19.woff')format("woff");}.ff21{font-family:ff21;line-height:0.740234;font-style:normal;font-weight: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_c3ef484afe1808855eeb45c6.woff')format("woff");}.ff22{font-family:ff22;line-height:0.740234;font-style:normal;font-weight: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_c25f8dd73444862946af9cb8.woff')format("woff");}.ff23{font-family:ff23;line-height:0.718750;font-style:normal;font-weight: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_2ac07447031c78d7c07ce448.woff')format("woff");}.ff24{font-family:ff24;line-height:0.718750;font-style:normal;font-weight: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_f1611fa2de3eacfb7efb3308.woff')format("woff");}.ff25{font-family:ff25;line-height:0.718750;font-style:normal;font-weight: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_ce2d4b44beffc79fca507357.woff')format("woff");}.ff26{font-family:ff26;line-height:0.718750;font-style:normal;font-weight: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_1737ebfb4c8ed905355b095f.woff')format("woff");}.ff27{font-family:ff27;line-height:0.715820;font-style:normal;font-weight: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_d2a70b14a058a4662e5dcedf.woff')format("woff");}.ff28{font-family:ff28;line-height:0.717285;font-style:normal;font-weight: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_2eafeedc1516510b26887cbb.woff')format("woff");}.ff29{font-family:ff29;line-height:0.958008;font-style:normal;font-weight: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_c3a4297aa2173a451fa1cd7b.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_064734d9072883ee78d09a37.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.718750;font-style:normal;font-weight: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_5a54685eaef4311c2dba55ea.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.718750;font-style:normal;font-weight: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_90baba3742112a2499847cef.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.718750;font-style:normal;font-weight: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_2060c178cf508b7632d382a7.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.718750;font-style:normal;font-weight: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_5d1a36e0ba2bfcbf124d084a.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.740234;font-style:normal;font-weight: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_e5f9773e8d20ff316a7e1f7b.woff')format("woff");}.ff30{font-family:ff30;line-height:0.740234;font-style:normal;font-weight: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_2108fc71a7f49f12bcf78217.woff')format("woff");}.ff31{font-family:ff31;line-height:0.718750;font-style:normal;font-weight: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_f8f06accf622e6e8c116b963.woff')format("woff");}.ff32{font-family:ff32;line-height:0.718750;font-style:normal;font-weight: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_875e932c92fbfb4fb3a9d301.woff')format("woff");}.ff33{font-family:ff33;line-height:0.718750;font-style:normal;font-weight: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_8674e6ce239a6b5e2be54289.woff')format("woff");}.ff34{font-family:ff34;line-height:0.718750;font-style:normal;font-weight: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_e6e28fd8a6f5276709788a62.woff')format("woff");}.ff35{font-family:ff35;line-height:0.715820;font-style:normal;font-weight: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_d2a70b14a058a4662e5dcedf.woff')format("woff");}.ff36{font-family:ff36;line-height:0.717285;font-style:normal;font-weight: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_7cc39ddc8b234f45f3e39511.woff')format("woff");}.ff37{font-family:ff37;line-height:0.950195;font-style:normal;font-weight: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_60b8fa9fd016daf152a4c260.woff')format("woff");}.ff38{font-family:ff38;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_badc9cb96d66ba41a1b7ec65.woff')format("woff");}.ff39{font-family:ff39;line-height:0.718750;font-style:normal;font-weight: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_247fb2170237685c32ac0c9f.woff')format("woff");}.ff3a{font-family:ff3a;line-height:0.718750;font-style:normal;font-weight: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_250f2ef0ac4521535a129866.woff')format("woff");}.ff3b{font-family:ff3b;line-height:0.718750;font-style:normal;font-weight: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_0bf96e8de1e892d4e73b8e3c.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.718750;font-style:normal;font-weight: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_35a6cd75fd00be2bb39153c9.woff')format("woff");}.ff3d{font-family:ff3d;line-height:0.740234;font-style:normal;font-weight: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_1cbb3298fbae273de311b224.woff')format("woff");}.ff3e{font-family:ff3e;line-height:0.740234;font-style:normal;font-weight: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_d614d99429b76103fed1b501.woff')format("woff");}.ff3f{font-family:ff3f;line-height:0.718750;font-style:normal;font-weight: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_c4557e66fdfea1ad12dd3948.woff')format("woff");}.ff40{font-family:ff40;line-height:0.718750;font-style:normal;font-weight: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_d3a0acb2d5f140d67ac8151c.woff')format("woff");}.ff41{font-family:ff41;line-height:0.718750;font-style:normal;font-weight: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_4d3b4a6616a177edf5151121.woff')format("woff");}.ff42{font-family:ff42;line-height:0.718750;font-style:normal;font-weight: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_96385beb8e80a2da54b3bbd6.woff')format("woff");}.ff43{font-family:ff43;line-height:0.715820;font-style:normal;font-weight: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_d2a70b14a058a4662e5dcedf.woff')format("woff");}.ff44{font-family:ff44;line-height:0.717285;font-style:normal;font-weight: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_bb5cd3a892cd5f074ff033e5.woff')format("woff");}.ff45{font-family:ff45;line-height:0.958008;font-style:normal;font-weight: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_c402b15a18b35aea0c1c5cf4.woff')format("woff");}.ff46{font-family:ff46;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_d4e0ce6155966cc6cec32767.woff')format("woff");}.ff47{font-family:ff47;line-height:0.718750;font-style:normal;font-weight: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_b51648d338c102f4fc14072c.woff')format("woff");}.ff48{font-family:ff48;line-height:0.718750;font-style:normal;font-weight: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_507e485e0dd5b4e2c86da988.woff')format("woff");}.ff49{font-family:ff49;line-height:0.718750;font-style:normal;font-weight: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_e058a13bf302c3154a6bb83b.woff')format("woff");}.ff4a{font-family:ff4a;line-height:0.718750;font-style:normal;font-weight: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_0170362d81a95aaa3dd67016.woff')format("woff");}.ff4b{font-family:ff4b;line-height:0.740234;font-style:normal;font-weight: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_389a5832a3cdc52d0c1e3f94.woff')format("woff");}.ff4c{font-family:ff4c;line-height:0.740234;font-style:normal;font-weight: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_7f29f73acf80d14148a166cf.woff')format("woff");}.ff4d{font-family:ff4d;line-height:0.718750;font-style:normal;font-weight: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_bcea252ae77d260f4f6af4db.woff')format("woff");}.ff4e{font-family:ff4e;line-height:0.718750;font-style:normal;font-weight: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_bc74ee27ccb239a6dccc4711.woff')format("woff");}.ff4f{font-family:ff4f;line-height:0.718750;font-style:normal;font-weight: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_445ec95aad08660981100ffa.woff')format("woff");}.ff50{font-family:ff50;line-height:0.718750;font-style:normal;font-weight: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_b5f1b45e4bca8253dde7d0d8.woff')format("woff");}.ff51{font-family:ff51;line-height:0.715820;font-style:normal;font-weight: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_7c0db6d254bfce56888ea9e6.woff')format("woff");}.ff52{font-family:ff52;line-height:0.844727;font-style:normal;font-weight: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_d2a70b14a058a4662e5dcedf.woff')format("woff");}.ff53{font-family:ff53;line-height:0.717285;font-style:normal;font-weight: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_76c403c472cbee7d15f22e5e.woff')format("woff");}.ff54{font-family:ff54;line-height:0.947754;font-style:normal;font-weight: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_f43860d4c9bc159c585331f5.woff')format("woff");}.ff55{font-family:ff55;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56;src:url('chunks/assets/font_914650220d6aba37bf14c4e9.woff')format("woff");}.ff56{font-family:ff56;line-height:0.860352;font-style:normal;font-weight: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_d2a70b14a058a4662e5dcedf.woff')format("woff");}.ff57{font-family:ff57;line-height:0.717285;font-style:normal;font-weight: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_ae623d4dfe77467d95f20bde.woff')format("woff");}.ff58{font-family:ff58;line-height:0.947754;font-style:normal;font-weight: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_fe466ddf68500221f0de34a8.woff')format("woff");}.ff59{font-family:ff59;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc{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);}
.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);}
.m6{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.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);}
.m9{transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-3.103200px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.464600px;}
.ls2b{letter-spacing:-0.062130px;}
.ls2c{letter-spacing:-0.061919px;}
.ls4{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.000003px;}
.ls1{letter-spacing:0.000013px;}
.lsa{letter-spacing:0.000017px;}
.ls0{letter-spacing:0.000019px;}
.lsc{letter-spacing:0.000026px;}
.ls13{letter-spacing:0.000066px;}
.ls5{letter-spacing:0.000074px;}
.ls6{letter-spacing:0.000134px;}
.ls7{letter-spacing:0.000194px;}
.ls8{letter-spacing:0.000254px;}
.ls9{letter-spacing:0.000554px;}
.lsb{letter-spacing:0.012334px;}
.ls25{letter-spacing:0.017372px;}
.ls3{letter-spacing:0.017620px;}
.lsd{letter-spacing:58.176000px;}
.ls12{letter-spacing:235.342153px;}
.ls11{letter-spacing:235.342213px;}
.ls1d{letter-spacing:251.881335px;}
.ls18{letter-spacing:260.263753px;}
.ls17{letter-spacing:260.264353px;}
.lsf{letter-spacing:273.461233px;}
.ls10{letter-spacing:273.461353px;}
.ls21{letter-spacing:276.803257px;}
.ls19{letter-spacing:286.092553px;}
.ls1a{letter-spacing:286.093753px;}
.ls1b{letter-spacing:290.057189px;}
.ls22{letter-spacing:293.342351px;}
.ls23{letter-spacing:302.574790px;}
.ls1c{letter-spacing:306.596282px;}
.ls16{letter-spacing:311.467153px;}
.ls15{letter-spacing:311.467213px;}
.ls24{letter-spacing:319.170525px;}
.ls1f{letter-spacing:328.006479px;}
.ls20{letter-spacing:344.545573px;}
.ls27{letter-spacing:438.048000px;}
.ls28{letter-spacing:478.278000px;}
.ls26{letter-spacing:499.554000px;}
.ls29{letter-spacing:519.858000px;}
.ls14{letter-spacing:541.427953px;}
.ls1e{letter-spacing:558.024492px;}
.lse{letter-spacing:1755.722291px;}
.ls2{letter-spacing:3182.097865px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2d{word-spacing:-541.422610px;}
.ws61{word-spacing:-504.138000px;}
.ws60{word-spacing:-504.135000px;}
.ws59{word-spacing:-483.786000px;}
.ws5f{word-spacing:-462.618000px;}
.ws5e{word-spacing:-462.615000px;}
.ws5b{word-spacing:-422.328000px;}
.ws5a{word-spacing:-422.327760px;}
.ws2f{word-spacing:-311.416772px;}
.ws32{word-spacing:-285.962106px;}
.ws33{word-spacing:-285.955506px;}
.ws28{word-spacing:-273.473700px;}
.ws30{word-spacing:-260.165307px;}
.ws31{word-spacing:-260.162907px;}
.ws2b{word-spacing:-235.398882px;}
.ws45{word-spacing:-102.000000px;}
.ws43{word-spacing:-96.000000px;}
.ws4b{word-spacing:-90.000000px;}
.ws3e{word-spacing:-84.000000px;}
.ws49{word-spacing:-78.000000px;}
.ws47{word-spacing:-72.000000px;}
.ws2c{word-spacing:-69.227580px;}
.ws4d{word-spacing:-66.000000px;}
.ws6c{word-spacing:-62.129940px;}
.ws71{word-spacing:-61.918740px;}
.ws4c{word-spacing:-60.000000px;}
.ws27{word-spacing:-56.640732px;}
.ws34{word-spacing:-54.000000px;}
.ws8{word-spacing:-52.020840px;}
.ws1a{word-spacing:-51.706464px;}
.ws14{word-spacing:-51.561876px;}
.ws1{word-spacing:-51.527646px;}
.ws4{word-spacing:-51.497988px;}
.wsf{word-spacing:-51.156558px;}
.ws6a{word-spacing:-49.703952px;}
.ws6f{word-spacing:-49.534998px;}
.ws1e{word-spacing:-48.000000px;}
.ws40{word-spacing:-42.000000px;}
.ws4f{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.675479px;}
.ws1c{word-spacing:-17.568710px;}
.ws17{word-spacing:-17.519571px;}
.ws3{word-spacing:-17.507945px;}
.ws7{word-spacing:-17.497870px;}
.ws11{word-spacing:-17.381861px;}
.ws9{word-spacing:-14.461794px;}
.wsc{word-spacing:-14.461750px;}
.ws19{word-spacing:-14.374397px;}
.ws15{word-spacing:-14.334202px;}
.ws0{word-spacing:-14.324686px;}
.ws5{word-spacing:-14.316441px;}
.wse{word-spacing:-14.221523px;}
.ws44{word-spacing:-0.102000px;}
.ws42{word-spacing:-0.096000px;}
.ws4a{word-spacing:-0.090000px;}
.ws3d{word-spacing:-0.084000px;}
.ws48{word-spacing:-0.078000px;}
.ws46{word-spacing:-0.072000px;}
.ws29{word-spacing:-0.069228px;}
.ws37{word-spacing:-0.066000px;}
.ws6b{word-spacing:-0.062130px;}
.ws70{word-spacing:-0.061919px;}
.ws23{word-spacing:-0.060000px;}
.ws2a{word-spacing:-0.056641px;}
.ws38{word-spacing:-0.054000px;}
.ws69{word-spacing:-0.049704px;}
.ws6e{word-spacing:-0.049535px;}
.ws41{word-spacing:-0.048000px;}
.ws3f{word-spacing:-0.042000px;}
.ws68{word-spacing:-0.031065px;}
.ws6d{word-spacing:-0.030959px;}
.ws4e{word-spacing:-0.018000px;}
.wsd{word-spacing:0.000000px;}
.ws20{word-spacing:38.159700px;}
.ws26{word-spacing:38.159940px;}
.ws1f{word-spacing:38.160000px;}
.ws21{word-spacing:38.160600px;}
.ws24{word-spacing:49.440000px;}
.ws22{word-spacing:66.192000px;}
.ws1b{word-spacing:226.060661px;}
.ws1d{word-spacing:226.474312px;}
.ws3a{word-spacing:263.519880px;}
.ws3c{word-spacing:263.520000px;}
.ws13{word-spacing:275.631535px;}
.ws16{word-spacing:285.188736px;}
.ws55{word-spacing:293.652000px;}
.ws3b{word-spacing:294.300000px;}
.ws18{word-spacing:307.772838px;}
.ws35{word-spacing:309.689880px;}
.ws39{word-spacing:309.690000px;}
.ws10{word-spacing:314.561675px;}
.ws12{word-spacing:318.142634px;}
.ws63{word-spacing:320.436000px;}
.ws56{word-spacing:324.540000px;}
.ws57{word-spacing:324.918000px;}
.ws36{word-spacing:340.470000px;}
.wsa{word-spacing:340.579418px;}
.ws66{word-spacing:352.836000px;}
.ws52{word-spacing:355.589880px;}
.ws54{word-spacing:355.590000px;}
.ws58{word-spacing:355.644000px;}
.ws62{word-spacing:370.008000px;}
.ws67{word-spacing:386.370000px;}
.ws53{word-spacing:386.424000px;}
.ws2{word-spacing:388.003174px;}
.ws6{word-spacing:393.341632px;}
.ws65{word-spacing:419.310000px;}
.ws5d{word-spacing:560.760000px;}
.ws2e{word-spacing:574.445112px;}
.ws50{word-spacing:914.077200px;}
.ws5c{word-spacing:931.803000px;}
.ws51{word-spacing:944.916000px;}
.ws64{word-spacing:1018.899000px;}
.ws25{word-spacing:1756.528448px;}
._3{margin-left:-8.034921px;}
._4{margin-left:-5.661447px;}
._7{margin-left:-3.348765px;}
._1{margin-left:-1.574456px;}
._0{width:1.339690px;}
._2{width:2.479654px;}
._5{width:71.808000px;}
._6{width:86.208000px;}
._9{width:310.200000px;}
._11{width:336.282240px;}
._c{width:340.309200px;}
._8{width:356.340000px;}
._14{width:368.685000px;}
._d{width:371.539200px;}
._10{width:385.830240px;}
._b{width:402.246000px;}
._13{width:435.168240px;}
._f{width:576.522000px;}
._e{width:947.562000px;}
._a{width:960.528000px;}
._12{width:1034.622000px;}
.fc1c{color:rgb(153,200,224);}
.fc18{color:rgb(71,150,196);}
.fc10{color:rgb(51,127,184);}
.fc13{color:rgb(50,124,183);}
.fc15{color:rgb(194,221,235);}
.fc14{color:rgb(24,85,149);}
.fc3b{color:rgb(32,147,140);}
.fc16{color:rgb(123,182,214);}
.fc2c{color:rgb(179,221,44);}
.fcf{color:rgb(43,115,179);}
.fc1b{color:rgb(38,109,175);}
.fc27{color:rgb(70,192,111);}
.fcd{color:rgb(146,197,222);}
.fc37{color:rgb(148,215,65);}
.fc1a{color:rgb(111,175,210);}
.fc17{color:rgb(191,219,234);}
.fc33{color:rgb(107,205,90);}
.fc12{color:rgb(83,157,200);}
.fc4{color:rgb(6,50,100);}
.fc3{color:rgb(5,48,97);}
.fc0{color:rgb(77,77,77);}
.fc8{color:rgb(12,61,115);}
.fc36{color:rgb(138,213,71);}
.fc6{color:rgb(9,56,108);}
.fc11{color:rgb(115,177,211);}
.fc9{color:rgb(34,104,173);}
.fc7{color:rgb(13,64,119);}
.fca{color:rgb(19,75,134);}
.fc3a{color:rgb(201,225,31);}
.fc5{color:rgb(7,53,104);}
.fc1d{color:rgb(53,129,185);}
.fc21{color:rgb(253,231,37);}
.fcb{color:rgb(10,58,112);}
.fc29{color:rgb(248,230,33);}
.fcc{color:rgb(17,72,130);}
.fc1f{color:rgb(39,127,142);}
.fc1e{color:rgb(36,134,142);}
.fc38{color:rgb(61,77,138);}
.fc26{color:rgb(60,79,138);}
.fc30{color:rgb(64,189,114);}
.fc20{color:rgb(30,155,138);}
.fc22{color:rgb(31,154,138);}
.fce{color:rgb(58,136,189);}
.fc2b{color:rgb(72,23,105);}
.fc2d{color:rgb(58,83,139);}
.fc23{color:rgb(64,69,136);}
.fc24{color:rgb(41,122,142);}
.fc31{color:rgb(97,202,96);}
.fc25{color:rgb(68,1,84);}
.fc28{color:rgb(85,198,103);}
.fc2a{color:rgb(53,95,141);}
.fc2e{color:rgb(33,142,141);}
.fc1{color:rgb(0,0,0);}
.fc32{color:rgb(229,228,25);}
.fc39{color:rgb(33,166,133);}
.fc2f{color:rgb(50,101,142);}
.fc19{color:rgb(181,215,232);}
.fc34{color:rgb(126,211,79);}
.fc2{color:rgb(255,0,0);}
.fc35{color:rgb(68,191,112);}
.fs26{font-size:18.000000px;}
.fs36{font-size:30.959370px;}
.fs32{font-size:31.064970px;}
.fs20{font-size:42.000000px;}
.fs11{font-size:48.000000px;}
.fs37{font-size:49.534998px;}
.fs33{font-size:49.703952px;}
.fs9{font-size:51.156558px;}
.fs2{font-size:51.497988px;}
.fs0{font-size:51.527646px;}
.fsb{font-size:51.561876px;}
.fsf{font-size:51.706464px;}
.fs5{font-size:52.020684px;}
.fs4{font-size:52.020840px;}
.fs1d{font-size:54.000000px;}
.fs14{font-size:56.640732px;}
.fs12{font-size:60.000000px;}
.fs39{font-size:61.671537px;}
.fse{font-size:61.671540px;}
.fs35{font-size:61.671551px;}
.fs13{font-size:61.671552px;}
.fs38{font-size:61.918740px;}
.fs34{font-size:62.129940px;}
.fsa{font-size:62.524680px;}
.fs3{font-size:62.941980px;}
.fs1{font-size:62.978220px;}
.fsc{font-size:63.020040px;}
.fs10{font-size:63.196800px;}
.fs6{font-size:63.580860px;}
.fs1e{font-size:66.000000px;}
.fs15{font-size:69.227580px;}
.fs23{font-size:72.000000px;}
.fs24{font-size:78.000000px;}
.fs1f{font-size:84.000000px;}
.fs27{font-size:86.857656px;}
.fs2a{font-size:86.858643px;}
.fs2f{font-size:86.859767px;}
.fs31{font-size:86.859876px;}
.fs2d{font-size:86.860260px;}
.fs2b{font-size:86.860640px;}
.fs1c{font-size:86.860875px;}
.fs29{font-size:86.861025px;}
.fs2e{font-size:86.861109px;}
.fs28{font-size:86.861146px;}
.fs1b{font-size:86.861259px;}
.fs2c{font-size:86.861283px;}
.fs30{font-size:86.861320px;}
.fs19{font-size:86.861494px;}
.fs17{font-size:86.861583px;}
.fs1a{font-size:86.861667px;}
.fs16{font-size:86.861878px;}
.fs18{font-size:86.862399px;}
.fs8{font-size:88.102200px;}
.fs25{font-size:90.000000px;}
.fs21{font-size:96.000000px;}
.fs22{font-size:102.000000px;}
.fsd{font-size:120.000060px;}
.fs7{font-size:254.866380px;}
.y0{bottom:0.000000px;}
.y201{bottom:3.995601px;}
.y16f{bottom:3.995605px;}
.y2f5{bottom:4.420816px;}
.y324{bottom:4.420840px;}
.yd5{bottom:4.460619px;}
.y126{bottom:4.486691px;}
.y55{bottom:5.514439px;}
.y13f{bottom:5.666775px;}
.y177{bottom:5.999606px;}
.y20b{bottom:5.999617px;}
.y25b{bottom:5.999640px;}
.y181{bottom:5.999681px;}
.y17b{bottom:5.999684px;}
.y253{bottom:5.999695px;}
.y20d{bottom:5.999697px;}
.y207{bottom:5.999735px;}
.y2c5{bottom:5.999780px;}
.y2c7{bottom:5.999834px;}
.y2c3{bottom:5.999853px;}
.y171{bottom:5.999874px;}
.y251{bottom:5.999961px;}
.y24f{bottom:5.999965px;}
.y257{bottom:5.999978px;}
.y185{bottom:6.000016px;}
.y17f{bottom:6.000038px;}
.y17d{bottom:6.000042px;}
.y211{bottom:6.000089px;}
.y255{bottom:6.000095px;}
.y209{bottom:6.000114px;}
.y179{bottom:6.000122px;}
.y205{bottom:6.000123px;}
.y2c2{bottom:6.000318px;}
.y183{bottom:6.000467px;}
.y259{bottom:6.000586px;}
.y203{bottom:6.000789px;}
.y173{bottom:6.000807px;}
.y20f{bottom:6.000963px;}
.y175{bottom:6.001690px;}
.y296{bottom:12.838350px;}
.y1bb{bottom:15.539850px;}
.y102{bottom:18.104850px;}
.y200{bottom:20.999991px;}
.y16e{bottom:20.999995px;}
.y2f4{bottom:21.425269px;}
.y323{bottom:21.425290px;}
.yd4{bottom:21.464919px;}
.y125{bottom:21.491145px;}
.y44{bottom:21.504000px;}
.y311{bottom:22.207024px;}
.ye7{bottom:23.762400px;}
.y2e{bottom:27.667200px;}
.yb0{bottom:28.705200px;}
.y230{bottom:28.846350px;}
.y54{bottom:30.234889px;}
.y14c{bottom:35.465775px;}
.y322{bottom:38.429589px;}
.y2f3{bottom:38.429722px;}
.yd3{bottom:38.469369px;}
.y124{bottom:38.495598px;}
.y43{bottom:39.740250px;}
.y84{bottom:40.998600px;}
.y9a{bottom:41.000250px;}
.y16d{bottom:41.854085px;}
.y1ff{bottom:41.854089px;}
.ye6{bottom:41.888400px;}
.y2d{bottom:45.720150px;}
.yaf{bottom:46.780500px;}
.y2f6{bottom:51.927900px;}
.y53{bottom:54.955489px;}
.y2f2{bottom:55.434025px;}
.y321{bottom:55.434038px;}
.yd2{bottom:55.473669px;}
.y123{bottom:55.499902px;}
.y2c8{bottom:57.603900px;}
.y83{bottom:58.931850px;}
.y99{bottom:58.933500px;}
.y11b{bottom:69.269850px;}
.y112{bottom:70.859850px;}
.y320{bottom:72.438337px;}
.y2f1{bottom:72.438478px;}
.yd1{bottom:72.478119px;}
.y33{bottom:72.643200px;}
.yd6{bottom:74.592750px;}
.y22c{bottom:75.151350px;}
.y306{bottom:75.503400px;}
.y1d{bottom:78.292650px;}
.y9f{bottom:79.393350px;}
.y52{bottom:79.676089px;}
.y2d8{bottom:80.995800px;}
.y2e2{bottom:86.222326px;}
.y161{bottom:88.123500px;}
.y31f{bottom:89.442786px;}
.y2f0{bottom:89.442931px;}
.yd0{bottom:89.482569px;}
.y73{bottom:91.288350px;}
.y89{bottom:91.290000px;}
.y148{bottom:96.071775px;}
.y153{bottom:96.745500px;}
.y10a{bottom:100.889850px;}
.y51{bottom:104.396689px;}
.y2ef{bottom:106.447234px;}
.y31e{bottom:106.447236px;}
.ycf{bottom:106.486869px;}
.y34{bottom:107.844000px;}
.y160{bottom:107.980500px;}
.y228{bottom:108.945750px;}
.yd7{bottom:109.580850px;}
.y11a{bottom:110.819850px;}
.y111{bottom:112.409850px;}
.y1e{bottom:113.139600px;}
.ya0{bottom:114.283650px;}
.y152{bottom:116.602500px;}
.y305{bottom:122.252100px;}
.y15c{bottom:123.115500px;}
.y31d{bottom:123.451535px;}
.y2ee{bottom:123.451687px;}
.yce{bottom:123.491319px;}
.y74{bottom:125.904300px;}
.y8a{bottom:125.905950px;}
.y2d7{bottom:127.391250px;}
.y50{bottom:129.117139px;}
.y147{bottom:130.684275px;}
.y14e{bottom:131.737500px;}
.y22b{bottom:131.925750px;}
.y231{bottom:133.320750px;}
.y13d{bottom:134.520225px;}
.y14b{bottom:136.631775px;}
.y31c{bottom:140.455984px;}
.y2ed{bottom:140.455990px;}
.ycd{bottom:140.495769px;}
.y109{bottom:142.439850px;}
.y35{bottom:143.044650px;}
.y1e2{bottom:143.172000px;}
.yd8{bottom:144.568800px;}
.y1f{bottom:147.986550px;}
.ya1{bottom:149.173800px;}
.y1ca{bottom:151.392000px;}
.y119{bottom:152.354850px;}
.y4f{bottom:153.837739px;}
.y110{bottom:153.959850px;}
.y29c{bottom:155.193000px;}
.y1ba{bottom:156.330300px;}
.y31b{bottom:157.460433px;}
.y2ec{bottom:157.460444px;}
.ycc{bottom:157.500069px;}
.y246{bottom:159.199500px;}
.y75{bottom:160.520250px;}
.y8b{bottom:160.521900px;}
.y1e1{bottom:162.102000px;}
.y1c0{bottom:165.105300px;}
.y23b{bottom:167.419500px;}
.y14a{bottom:168.209475px;}
.y304{bottom:169.000800px;}
.y1c9{bottom:170.322000px;}
.y2d6{bottom:173.786850px;}
.y29b{bottom:174.123000px;}
.y31a{bottom:174.464733px;}
.y2eb{bottom:174.464897px;}
.y13e{bottom:177.492225px;}
.y245{bottom:178.129500px;}
.y36{bottom:178.245300px;}
.y4e{bottom:178.558339px;}
.yd9{bottom:179.556900px;}
.y234{bottom:179.715750px;}
.y28c{bottom:180.477750px;}
.y20{bottom:182.833500px;}
.y108{bottom:183.989850px;}
.ya2{bottom:184.064100px;}
.y23a{bottom:186.349500px;}
.y1b2{bottom:187.407150px;}
.y286{bottom:191.209650px;}
.y319{bottom:191.469182px;}
.y2ea{bottom:191.469200px;}
.y1bf{bottom:193.455300px;}
.y118{bottom:193.904850px;}
.y76{bottom:195.136200px;}
.y8c{bottom:195.137850px;}
.y10f{bottom:195.509850px;}
.y1b7{bottom:197.205300px;}
.y1db{bottom:197.352000px;}
.y4d{bottom:203.278939px;}
.y226{bottom:203.433150px;}
.y1c3{bottom:205.572000px;}
.y227{bottom:206.130750px;}
.y291{bottom:206.712750px;}
.y318{bottom:208.473556px;}
.y2e9{bottom:208.473653px;}
.y37{bottom:213.445950px;}
.yda{bottom:214.545000px;}
.y303{bottom:215.749350px;}
.y1b6{bottom:216.780300px;}
.y21{bottom:217.680450px;}
.ya3{bottom:218.954250px;}
.y2d5{bottom:220.182450px;}
.y317{bottom:225.477945px;}
.y2e8{bottom:225.478106px;}
.y107{bottom:225.524850px;}
.y4c{bottom:227.999389px;}
.y22d{bottom:228.660750px;}
.y77{bottom:229.752150px;}
.y8d{bottom:229.753800px;}
.y1be{bottom:230.400300px;}
.y1fa{bottom:233.607000px;}
.y117{bottom:235.454850px;}
.y10e{bottom:237.044850px;}
.y1c1{bottom:237.990300px;}
.y297{bottom:238.323000px;}
.y233{bottom:240.630750px;}
.y290{bottom:240.987750px;}
.y316{bottom:242.482334px;}
.y2e7{bottom:242.482409px;}
.y149{bottom:246.074625px;}
.y38{bottom:248.646600px;}
.ydb{bottom:249.532950px;}
.y22{bottom:252.527400px;}
.ya4{bottom:253.844400px;}
.y15d{bottom:256.645500px;}
.y315{bottom:259.486739px;}
.y2e6{bottom:259.486862px;}
.y1f9{bottom:259.527000px;}
.y122{bottom:260.616110px;}
.y302{bottom:262.498050px;}
.y78{bottom:264.368100px;}
.y8e{bottom:264.369750px;}
.y14f{bottom:265.267500px;}
.y2d4{bottom:266.577900px;}
.y16b{bottom:267.030000px;}
.y106{bottom:267.074850px;}
.y2a8{bottom:267.783000px;}
.y22f{bottom:268.110750px;}
.y288{bottom:269.937750px;}
.y2ad{bottom:271.548000px;}
.y1bd{bottom:272.400300px;}
.y1d7{bottom:276.402000px;}
.y314{bottom:276.491128px;}
.y2e5{bottom:276.491240px;}
.y116{bottom:277.004850px;}
.y28e{bottom:278.142750px;}
.y1dc{bottom:278.442000px;}
.y10d{bottom:278.594850px;}
.y1da{bottom:280.707000px;}
.y39{bottom:283.847250px;}
.y2bc{bottom:284.508000px;}
.ydc{bottom:284.521050px;}
.y1f8{bottom:285.447000px;}
.y1c4{bottom:286.662450px;}
.y23{bottom:287.374500px;}
.ya5{bottom:288.734700px;}
.y22e{bottom:290.745750px;}
.y313{bottom:293.495517px;}
.y2e4{bottom:293.495633px;}
.y16a{bottom:294.217800px;}
.y2a7{bottom:295.232400px;}
.y1b8{bottom:297.510300px;}
.y2ac{bottom:297.917400px;}
.y79{bottom:298.984050px;}
.y8f{bottom:298.985700px;}
.y1bc{bottom:299.355300px;}
.y28d{bottom:303.792750px;}
.y156{bottom:304.350150px;}
.y1d6{bottom:304.557450px;}
.y1d9{bottom:307.782450px;}
.y242{bottom:308.073900px;}
.y105{bottom:308.624850px;}
.y301{bottom:309.246750px;}
.y1b4{bottom:310.050300px;}
.y2bb{bottom:310.427400px;}
.y312{bottom:310.499906px;}
.y2e3{bottom:310.500026px;}
.y1f7{bottom:311.367450px;}
.y48{bottom:312.747600px;}
.y2d3{bottom:312.973500px;}
.y1ec{bottom:313.737450px;}
.y45{bottom:314.366100px;}
.ye8{bottom:314.855400px;}
.y32{bottom:315.984450px;}
.y237{bottom:316.293900px;}
.y2f{bottom:317.586600px;}
.y232{bottom:318.030750px;}
.y115{bottom:318.554850px;}
.yb1{bottom:318.984300px;}
.y3a{bottom:319.047900px;}
.ydd{bottom:319.509150px;}
.y10c{bottom:320.144835px;}
.y11f{bottom:320.144850px;}
.y142{bottom:321.359625px;}
.y169{bottom:321.405300px;}
.y24{bottom:322.221450px;}
.y2a6{bottom:322.232400px;}
.ya6{bottom:323.624850px;}
.y2ab{bottom:323.837400px;}
.y88{bottom:327.404250px;}
.y9e{bottom:327.406050px;}
.y292{bottom:328.587750px;}
.y85{bottom:328.995750px;}
.y9b{bottom:328.997550px;}
.y157{bottom:330.798300px;}
.y1d5{bottom:332.082450px;}
.y294{bottom:332.427750px;}
.y7a{bottom:333.600000px;}
.y90{bottom:333.601650px;}
.y1d8{bottom:333.702450px;}
.y2ba{bottom:336.347400px;}
.y1b3{bottom:337.515300px;}
.y47{bottom:337.717500px;}
.y1f6{bottom:339.207450px;}
.y1eb{bottom:339.657450px;}
.y1b9{bottom:340.305300px;}
.y31{bottom:340.703400px;}
.y22a{bottom:341.475750px;}
.y113{bottom:345.068700px;}
.y143{bottom:348.106725px;}
.y168{bottom:348.592950px;}
.y162{bottom:348.907650px;}
.y2a5{bottom:349.217400px;}
.y2aa{bottom:349.757400px;}
.y104{bottom:350.174835px;}
.y11d{bottom:350.174850px;}
.y87{bottom:351.959400px;}
.y9d{bottom:351.961050px;}
.y3b{bottom:354.234150px;}
.yde{bottom:354.482850px;}
.y300{bottom:355.995450px;}
.y25{bottom:357.054150px;}
.y158{bottom:357.262050px;}
.y154{bottom:357.529500px;}
.ya7{bottom:358.500750px;}
.y2d2{bottom:359.368950px;}
.y1dd{bottom:359.532450px;}
.y1d4{bottom:359.622450px;}
.y114{bottom:360.104850px;}
.y10b{bottom:361.694835px;}
.y11e{bottom:361.694850px;}
.y2b9{bottom:362.267400px;}
.y28b{bottom:363.867750px;}
.y46{bottom:364.537050px;}
.y1ea{bottom:365.577450px;}
.y28a{bottom:366.147750px;}
.y23e{bottom:366.873900px;}
.y30{bottom:367.253550px;}
.y1c5{bottom:367.752450px;}
.y7b{bottom:368.201700px;}
.y91{bottom:368.203350px;}
.y145{bottom:371.880075px;}
.y298{bottom:372.107400px;}
.y2a9{bottom:375.677400px;}
.y167{bottom:375.780450px;}
.y2a4{bottom:376.757400px;}
.y2b1{bottom:377.597400px;}
.y86{bottom:378.333450px;}
.y9c{bottom:378.335100px;}
.y24c{bottom:381.603900px;}
.y159{bottom:383.710200px;}
.y1d3{bottom:387.462450px;}
.y2b8{bottom:388.187400px;}
.y3c{bottom:389.434800px;}
.ydf{bottom:389.470800px;}
.y15e{bottom:390.176700px;}
.y1e9{bottom:391.497450px;}
.y103{bottom:391.724835px;}
.y11c{bottom:391.724850px;}
.y26{bottom:391.901100px;}
.y293{bottom:391.917750px;}
.y287{bottom:391.992750px;}
.ya8{bottom:393.390900px;}
.y1f5{bottom:393.852450px;}
.y14d{bottom:395.543325px;}
.y229{bottom:396.960750px;}
.y150{bottom:398.798550px;}
.y2ff{bottom:402.744000px;}
.y7c{bottom:402.817650px;}
.y92{bottom:402.819300px;}
.y166{bottom:402.967950px;}
.y2a3{bottom:403.517400px;}
.y1e3{bottom:405.102450px;}
.y2d1{bottom:405.764550px;}
.y23f{bottom:407.433900px;}
.y24b{bottom:407.523900px;}
.y247{bottom:407.823900px;}
.y15a{bottom:410.173950px;}
.y1cb{bottom:413.322450px;}
.y2b7{bottom:416.027400px;}
.y23c{bottom:416.043900px;}
.y29d{bottom:417.122400px;}
.yb6{bottom:417.316500px;}
.y1e8{bottom:417.417450px;}
.y1f4{bottom:419.772450px;}
.y295{bottom:419.847750px;}
.y236{bottom:423.165750px;}
.ye0{bottom:424.458900px;}
.y3d{bottom:424.635450px;}
.y28f{bottom:425.607750px;}
.y27{bottom:426.748050px;}
.ya9{bottom:428.281200px;}
.y2b0{bottom:429.437400px;}
.y141{bottom:429.732225px;}
.y165{bottom:430.155600px;}
.y1cd{bottom:430.602450px;}
.y24a{bottom:433.443900px;}
.y15b{bottom:436.622100px;}
.y243{bottom:436.923900px;}
.y7d{bottom:437.433600px;}
.y93{bottom:437.435250px;}
.y1de{bottom:440.622450px;}
.yb5{bottom:442.066200px;}
.y1b5{bottom:442.110300px;}
.y1e7{bottom:443.337450px;}
.y238{bottom:445.143900px;}
.y1f3{bottom:445.692450px;}
.y140{bottom:447.904575px;}
.y240{bottom:448.008900px;}
.y29f{bottom:448.187400px;}
.y1c6{bottom:448.842450px;}
.y2fe{bottom:449.492700px;}
.y2d0{bottom:452.160000px;}
.y155{bottom:454.385250px;}
.y2af{bottom:455.357400px;}
.y1ce{bottom:455.817450px;}
.y164{bottom:457.343100px;}
.y249{bottom:459.363900px;}
.ye1{bottom:459.446850px;}
.y146{bottom:459.563025px;}
.y3e{bottom:459.836100px;}
.y28{bottom:461.595000px;}
.y289{bottom:462.357750px;}
.yaa{bottom:463.171350px;}
.y235{bottom:466.665750px;}
.yb4{bottom:466.815900px;}
.y1c2{bottom:468.555300px;}
.y1e6{bottom:469.257450px;}
.y2b6{bottom:470.672400px;}
.y1f2{bottom:471.612450px;}
.y7e{bottom:472.049550px;}
.y94{bottom:472.051200px;}
.y1cf{bottom:481.047450px;}
.y2ae{bottom:483.197400px;}
.y163{bottom:486.544500px;}
.y248{bottom:487.203900px;}
.y241{bottom:488.583900px;}
.y2a0{bottom:488.747400px;}
.y144{bottom:489.456825px;}
.yb3{bottom:491.565600px;}
.ye2{bottom:494.434950px;}
.y3f{bottom:495.036750px;}
.y1e5{bottom:495.177450px;}
.y2fd{bottom:496.241400px;}
.y29{bottom:496.441950px;}
.y2b5{bottom:496.592400px;}
.y1f1{bottom:497.532450px;}
.yab{bottom:498.061650px;}
.y2cf{bottom:498.555600px;}
.yed{bottom:504.427950px;}
.y299{bottom:505.907400px;}
.y1d0{bottom:506.262450px;}
.y7f{bottom:506.665500px;}
.y95{bottom:506.667150px;}
.y23d{bottom:508.383900px;}
.yb2{bottom:518.148750px;}
.y1df{bottom:521.712450px;}
.y2b4{bottom:522.512400px;}
.y1e4{bottom:523.017450px;}
.y1f0{bottom:523.452450px;}
.y15f{bottom:523.707150px;}
.yec{bottom:529.246950px;}
.y2a1{bottom:529.322400px;}
.ye3{bottom:529.423050px;}
.y1c7{bottom:529.932450px;}
.y40{bottom:530.237400px;}
.y2a{bottom:531.289050px;}
.y1d1{bottom:531.492450px;}
.y151{bottom:532.329150px;}
.yac{bottom:532.951800px;}
.y80{bottom:541.281450px;}
.y96{bottom:541.283100px;}
.y2fc{bottom:542.989950px;}
.y2ce{bottom:544.951050px;}
.y2b3{bottom:548.432400px;}
.y1ef{bottom:549.372450px;}
.yeb{bottom:554.066100px;}
.y1d2{bottom:556.722450px;}
.ye4{bottom:564.411000px;}
.y41{bottom:565.438050px;}
.y244{bottom:565.773900px;}
.y2b{bottom:566.136000px;}
.yad{bottom:567.841950px;}
.y2a2{bottom:569.897400px;}
.y1cc{bottom:573.642450px;}
.y239{bottom:573.993900px;}
.y1ee{bottom:575.292450px;}
.y81{bottom:575.897400px;}
.y97{bottom:575.899050px;}
.y2b2{bottom:576.272400px;}
.yea{bottom:578.885250px;}
.y2de{bottom:583.891050px;}
.y30c{bottom:588.732450px;}
.y29e{bottom:589.697400px;}
.y2fb{bottom:589.754100px;}
.y2cd{bottom:591.346650px;}
.ye5{bottom:599.384700px;}
.y42{bottom:600.624300px;}
.y2c{bottom:600.968700px;}
.yae{bottom:602.717850px;}
.y1e0{bottom:602.817450px;}
.y1ed{bottom:603.132450px;}
.ye9{bottom:605.542800px;}
.y82{bottom:610.499100px;}
.y98{bottom:610.500750px;}
.y1c8{bottom:611.037450px;}
.y4a{bottom:621.436800px;}
.y20c{bottom:636.090322px;}
.y2c6{bottom:636.090335px;}
.y180{bottom:636.090338px;}
.y20e{bottom:636.187156px;}
.y182{bottom:636.187202px;}
.y184{bottom:636.284326px;}
.y210{bottom:636.284374px;}
.y2fa{bottom:636.502800px;}
.y2cc{bottom:637.742250px;}
.y29a{bottom:639.692400px;}
.y30d{bottom:640.032150px;}
.y2df{bottom:641.578650px;}
.yff{bottom:644.239950px;}
.y12{bottom:645.303600px;}
.yc8{bottom:647.447700px;}
.y67{bottom:653.929950px;}
.y12c{bottom:654.531600px;}
.yfe{bottom:662.365950px;}
.y11{bottom:663.366900px;}
.yc7{bottom:665.523000px;}
.y66{bottom:671.863200px;}
.y12b{bottom:674.387250px;}
.y18d{bottom:683.172450px;}
.y2f9{bottom:683.251500px;}
.y25a{bottom:683.321929px;}
.y256{bottom:683.423441px;}
.y258{bottom:683.520436px;}
.y2cb{bottom:684.137700px;}
.y127{bottom:689.523000px;}
.y30e{bottom:691.316400px;}
.yee{bottom:695.070300px;}
.y261{bottom:695.192400px;}
.y1{bottom:695.958150px;}
.yb7{bottom:698.135850px;}
.y216{bottom:699.198900px;}
.y2e0{bottom:699.281850px;}
.y18c{bottom:702.102450px;}
.y56{bottom:704.219700px;}
.y2dd{bottom:704.221200px;}
.y30b{bottom:704.536050px;}
.y260{bottom:714.122400px;}
.y215{bottom:718.128900px;}
.y2dc{bottom:726.525900px;}
.y30a{bottom:726.764850px;}
.y2f8{bottom:730.000050px;}
.yef{bottom:730.058400px;}
.y2ca{bottom:730.533300px;}
.y2{bottom:730.825200px;}
.yb8{bottom:733.026150px;}
.y186{bottom:737.352450px;}
.y57{bottom:738.835650px;}
.y30f{bottom:742.600500px;}
.y2db{bottom:748.830510px;}
.y309{bottom:748.993665px;}
.y2e1{bottom:756.969540px;}
.yf0{bottom:765.046500px;}
.y3{bottom:765.692250px;}
.yb9{bottom:767.916300px;}
.y2da{bottom:771.135165px;}
.y308{bottom:771.222495px;}
.y58{bottom:773.451600px;}
.y2f7{bottom:776.748750px;}
.y2c9{bottom:776.928780px;}
.y25c{bottom:778.322400px;}
.y121{bottom:783.337500px;}
.y2d9{bottom:793.439805px;}
.y307{bottom:793.451325px;}
.y310{bottom:793.884765px;}
.yf1{bottom:800.034450px;}
.y4{bottom:800.559300px;}
.yba{bottom:802.806600px;}
.y101{bottom:804.068700px;}
.y59{bottom:808.067550px;}
.y187{bottom:818.442450px;}
.y128{bottom:823.053450px;}
.yf2{bottom:835.022550px;}
.y5{bottom:835.426350px;}
.ybb{bottom:837.696750px;}
.y5a{bottom:842.683500px;}
.y4b{bottom:843.831611px;}
.y212{bottom:848.073900px;}
.y26e{bottom:850.427400px;}
.y199{bottom:851.367450px;}
.y72{bottom:854.392650px;}
.y1c{bottom:859.587150px;}
.yf3{bottom:870.010500px;}
.y6{bottom:870.293400px;}
.ybc{bottom:872.586900px;}
.y26d{bottom:876.347400px;}
.y198{bottom:877.287450px;}
.y5b{bottom:877.299450px;}
.y71{bottom:878.947800px;}
.y1b{bottom:884.320350px;}
.y188{bottom:899.532450px;}
.y26c{bottom:902.267400px;}
.y197{bottom:903.207450px;}
.y70{bottom:903.502950px;}
.yf4{bottom:904.998600px;}
.y7{bottom:905.160450px;}
.ybd{bottom:907.477200px;}
.y1a{bottom:909.053700px;}
.y5c{bottom:911.915400px;}
.y25d{bottom:912.107400px;}
.y130{bottom:915.000300px;}
.y12d{bottom:915.315000px;}
.y6f{bottom:928.058100px;}
.y26b{bottom:928.187400px;}
.y196{bottom:929.127450px;}
.y191{bottom:931.497450px;}
.y19{bottom:933.786900px;}
.y100{bottom:935.333100px;}
.y13{bottom:935.389950px;}
.ycb{bottom:935.969331px;}
.yc9{bottom:937.726800px;}
.yf5{bottom:939.986700px;}
.y8{bottom:940.027500px;}
.y68{bottom:941.927100px;}
.y12f{bottom:942.187800px;}
.ybe{bottom:942.367350px;}
.y265{bottom:943.517400px;}
.y18e{bottom:945.102450px;}
.y5d{bottom:946.531350px;}
.y21a{bottom:947.523900px;}
.y217{bottom:947.823900px;}
.y6e{bottom:952.613250px;}
.y26a{bottom:954.107400px;}
.y129{bottom:956.584050px;}
.y195{bottom:956.967450px;}
.y262{bottom:957.122400px;}
.y190{bottom:957.417450px;}
.y18{bottom:958.520100px;}
.y264{bottom:969.437400px;}
.y12e{bottom:971.389200px;}
.y219{bottom:973.443900px;}
.y9{bottom:974.880300px;}
.yf6{bottom:974.960400px;}
.y213{bottom:976.923900px;}
.y6d{bottom:977.168400px;}
.ybf{bottom:977.243250px;}
.y189{bottom:980.622450px;}
.y5e{bottom:981.133050px;}
.y269{bottom:981.947400px;}
.y17{bottom:983.253450px;}
.y18f{bottom:985.257450px;}
.y263{bottom:997.277400px;}
.y218{bottom:1001.283900px;}
.y6c{bottom:1001.723550px;}
.y16{bottom:1007.986650px;}
.ya{bottom:1009.747350px;}
.yf7{bottom:1009.948350px;}
.y194{bottom:1011.612450px;}
.yc0{bottom:1012.133400px;}
.y5f{bottom:1015.749000px;}
.y6b{bottom:1026.278700px;}
.y15{bottom:1032.720000px;}
.y268{bottom:1036.592400px;}
.y193{bottom:1037.532450px;}
.yb{bottom:1044.614400px;}
.yf8{bottom:1044.936450px;}
.y25e{bottom:1045.907400px;}
.yc1{bottom:1047.023700px;}
.y60{bottom:1050.364950px;}
.y6a{bottom:1050.833700px;}
.y14{bottom:1059.285300px;}
.y18a{bottom:1061.712450px;}
.y267{bottom:1062.512400px;}
.y192{bottom:1065.372450px;}
.y69{bottom:1077.207750px;}
.yc{bottom:1079.481300px;}
.yf9{bottom:1079.924400px;}
.yc2{bottom:1081.913850px;}
.y61{bottom:1084.980900px;}
.y12a{bottom:1090.114500px;}
.y266{bottom:1090.352400px;}
.y214{bottom:1105.773900px;}
.yd{bottom:1114.348410px;}
.yfa{bottom:1114.912515px;}
.yc3{bottom:1116.804090px;}
.y62{bottom:1119.596775px;}
.y18b{bottom:1142.817450px;}
.ye{bottom:1149.215460px;}
.yfb{bottom:1149.900570px;}
.yc4{bottom:1151.694285px;}
.y63{bottom:1154.212725px;}
.y25f{bottom:1179.692400px;}
.yf{bottom:1184.082510px;}
.yfc{bottom:1184.888610px;}
.yc5{bottom:1186.584495px;}
.y64{bottom:1188.828660px;}
.y17c{bottom:1196.569910px;}
.y208{bottom:1196.569972px;}
.y17e{bottom:1196.666917px;}
.y2c4{bottom:1196.667061px;}
.y20a{bottom:1196.667244px;}
.y204{bottom:1196.676196px;}
.y178{bottom:1196.676197px;}
.y17a{bottom:1196.773052px;}
.y206{bottom:1196.773099px;}
.y49{bottom:1209.826155px;}
.y252{bottom:1218.017752px;}
.y254{bottom:1218.114848px;}
.y24e{bottom:1218.124145px;}
.y250{bottom:1218.221002px;}
.y10{bottom:1218.935235px;}
.yfd{bottom:1219.862295px;}
.y136{bottom:1220.938950px;}
.yc6{bottom:1221.460380px;}
.y1a1{bottom:1223.172450px;}
.y65{bottom:1223.430405px;}
.yca{bottom:1230.076140px;}
.y120{bottom:1230.411240px;}
.y274{bottom:1235.192400px;}
.y21f{bottom:1239.198900px;}
.y135{bottom:1240.794600px;}
.y1a0{bottom:1242.102450px;}
.y273{bottom:1254.122400px;}
.y131{bottom:1255.930350px;}
.y21e{bottom:1258.128900px;}
.y19a{bottom:1277.352450px;}
.y26f{bottom:1318.322400px;}
.y19b{bottom:1358.442450px;}
.y285{bottom:1364.507400px;}
.y1b1{bottom:1365.447450px;}
.y21b{bottom:1388.073900px;}
.y132{bottom:1389.460800px;}
.y284{bottom:1390.427400px;}
.y1b0{bottom:1391.367450px;}
.y283{bottom:1416.347400px;}
.y1af{bottom:1417.287450px;}
.y19c{bottom:1439.532450px;}
.y282{bottom:1442.267400px;}
.y1ae{bottom:1443.207450px;}
.y1a7{bottom:1445.577450px;}
.y270{bottom:1452.107400px;}
.y13c{bottom:1454.220000px;}
.y27a{bottom:1457.597400px;}
.y225{bottom:1461.603900px;}
.y281{bottom:1468.187400px;}
.y1fe{bottom:1469.127450px;}
.y1ad{bottom:1471.047450px;}
.y1a6{bottom:1471.497450px;}
.y13b{bottom:1481.407650px;}
.y137{bottom:1481.722200px;}
.y279{bottom:1483.517400px;}
.y1a2{bottom:1485.102450px;}
.y224{bottom:1487.523900px;}
.y220{bottom:1487.823900px;}
.y2c0{bottom:1494.107400px;}
.y280{bottom:1496.027400px;}
.y1fd{bottom:1496.967450px;}
.y275{bottom:1497.122400px;}
.y1a5{bottom:1497.417450px;}
.y13a{bottom:1508.595150px;}
.y278{bottom:1509.437400px;}
.y223{bottom:1513.443900px;}
.y21c{bottom:1516.923900px;}
.y19d{bottom:1520.622450px;}
.y2bf{bottom:1521.947400px;}
.y133{bottom:1522.991400px;}
.y1a4{bottom:1523.337450px;}
.y1fb{bottom:1525.257450px;}
.y1ac{bottom:1525.692450px;}
.y277{bottom:1535.357400px;}
.y139{bottom:1535.782650px;}
.y2bd{bottom:1537.277400px;}
.y16c{bottom:1537.796550px;}
.y222{bottom:1539.363900px;}
.y24d{bottom:1541.283900px;}
.y27f{bottom:1550.672400px;}
.y1a3{bottom:1551.177450px;}
.y1ab{bottom:1551.612450px;}
.y276{bottom:1563.197400px;}
.y138{bottom:1564.984200px;}
.y221{bottom:1567.203900px;}
.y27e{bottom:1576.592400px;}
.y1aa{bottom:1577.532450px;}
.y271{bottom:1585.907400px;}
.y19e{bottom:1601.712450px;}
.y27d{bottom:1602.512400px;}
.y1a9{bottom:1603.452450px;}
.y1fc{bottom:1605.372450px;}
.y27c{bottom:1628.432400px;}
.y2be{bottom:1630.352400px;}
.y1a8{bottom:1631.292450px;}
.y21d{bottom:1645.773960px;}
.y27b{bottom:1656.272340px;}
.y134{bottom:1656.521850px;}
.y19f{bottom:1682.817480px;}
.y272{bottom:1719.692340px;}
.y170{bottom:1748.857692px;}
.y172{bottom:1748.955759px;}
.y174{bottom:1749.050889px;}
.y176{bottom:1749.148848px;}
.y2c1{bottom:1749.149226px;}
.y202{bottom:1749.149733px;}
.h41{height:13.262695px;}
.h60{height:22.358284px;}
.h65{height:22.766021px;}
.h42{height:24.709368px;}
.h48{height:24.709659px;}
.h58{height:24.709968px;}
.h5c{height:24.710004px;}
.h53{height:24.710114px;}
.h4b{height:24.710229px;}
.h31{height:24.710289px;}
.h46{height:24.710339px;}
.h55{height:24.710364px;}
.h44{height:24.710369px;}
.h51{height:24.710394px;}
.h2f{height:24.710399px;}
.h5a{height:24.710414px;}
.h33{height:24.710444px;}
.h2b{height:24.710459px;}
.h35{height:24.710474px;}
.h27{height:24.710478px;}
.h4a{height:24.710489px;}
.h2d{height:24.710504px;}
.h24{height:24.710568px;}
.h26{height:24.710583px;}
.h29{height:24.710718px;}
.h3b{height:30.946289px;}
.h23{height:34.008780px;}
.h16{height:35.367188px;}
.h61{height:35.773255px;}
.h66{height:36.425638px;}
.hc{height:37.618055px;}
.h4{height:37.869126px;}
.h2{height:37.890935px;}
.he{height:37.916106px;}
.h13{height:38.022429px;}
.h7{height:38.253491px;}
.h6{height:38.253606px;}
.h4d{height:39.366211px;}
.h37{height:39.788086px;}
.h20{height:41.291315px;}
.h19{height:43.183594px;}
.h17{height:44.208984px;}
.h63{height:44.716568px;}
.h6a{height:44.898565px;}
.h12{height:44.898567px;}
.h1d{height:44.898576px;}
.h68{height:45.532042px;}
.h67{height:45.713445px;}
.h62{height:45.869370px;}
.hd{height:45.977621px;}
.h5{height:46.284483px;}
.h3{height:46.311132px;}
.hf{height:46.341885px;}
.h14{height:46.471866px;}
.h8{height:46.754285px;}
.h4e{height:48.114258px;}
.h38{height:48.629883px;}
.h21{height:50.467176px;}
.h3e{height:53.050781px;}
.h3f{height:57.471680px;}
.h3a{height:61.892578px;}
.h4c{height:62.176611px;}
.h36{height:62.176779px;}
.h57{height:62.177222px;}
.h43{height:62.428941px;}
.h49{height:62.429649px;}
.h59{height:62.430458px;}
.h5d{height:62.430536px;}
.h54{height:62.430812px;}
.h32{height:62.431254px;}
.h47{height:62.431361px;}
.h56{height:62.431422px;}
.h30{height:62.431530px;}
.h52{height:62.431547px;}
.h34{height:62.431699px;}
.h28{height:62.431762px;}
.h25{height:62.431975px;}
.h2a{height:62.432349px;}
.h50{height:63.237092px;}
.h45{height:63.237290px;}
.h4f{height:63.237372px;}
.h5b{height:63.237416px;}
.h2c{height:63.237543px;}
.h2e{height:63.237669px;}
.hb{height:64.140811px;}
.h40{height:66.313477px;}
.h1c{height:68.017589px;}
.h3c{height:70.734375px;}
.h3d{height:75.155273px;}
.h10{height:85.898480px;}
.h1a{height:87.363325px;}
.h1b{height:88.827925px;}
.h11{height:170.043900px;}
.h9{height:185.549694px;}
.ha{height:247.205400px;}
.h69{height:323.083485px;}
.h64{height:323.083559px;}
.h15{height:458.766000px;}
.h18{height:459.000000px;}
.h39{height:483.913500px;}
.h22{height:507.580425px;}
.h5e{height:892.913400px;}
.h5f{height:893.250000px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.h1f{height:1785.750000px;}
.h1e{height:1785.826500px;}
.w22{width:13.264511px;}
.w18{width:13.264545px;}
.w28{width:13.264571px;}
.w1c{width:26.559044px;}
.w29{width:26.559689px;}
.w1b{width:26.560801px;}
.w11{width:26.560912px;}
.w17{width:26.560956px;}
.w20{width:26.560977px;}
.w27{width:26.560978px;}
.w1a{width:26.560979px;}
.wf{width:26.560981px;}
.w10{width:26.561017px;}
.w21{width:26.561032px;}
.w12{width:26.561613px;}
.w1f{width:27.757976px;}
.w26{width:27.758366px;}
.w1d{width:27.758974px;}
.w25{width:27.759019px;}
.w2a{width:27.759034px;}
.w1e{width:27.759056px;}
.w24{width:27.759081px;}
.w15{width:27.759131px;}
.w13{width:27.759148px;}
.w14{width:27.759251px;}
.w16{width:27.759807px;}
.w5{width:175.564650px;}
.w2d{width:214.765800px;}
.w6{width:444.246000px;}
.wa{width:445.455900px;}
.w9{width:447.457500px;}
.w7{width:448.667400px;}
.w2{width:582.529954px;}
.w23{width:707.086500px;}
.wd{width:741.661500px;}
.w8{width:815.552459px;}
.w3{width:892.913400px;}
.w4{width:893.250000px;}
.w19{width:969.568500px;}
.w2b{width:1262.834700px;}
.w2c{width:1263.000000px;}
.w1{width:1785.750000px;}
.w0{width:1785.826500px;}
.we{width:2469.416053px;}
.wb{width:2525.670000px;}
.wc{width:2526.000000px;}
.x0{left:0.000000px;}
.x19{left:4.071615px;}
.xcf{left:5.398200px;}
.x38{left:6.587298px;}
.x18{left:8.829772px;}
.x142{left:10.019250px;}
.x4a{left:11.420326px;}
.x6b{left:14.634611px;}
.xbb{left:15.767509px;}
.x4c{left:17.030325px;}
.x4b{left:18.920325px;}
.x49{left:20.870325px;}
.x6c{left:22.134615px;}
.x6a{left:24.084615px;}
.x57{left:26.174250px;}
.x33{left:27.325125px;}
.x6d{left:29.634615px;}
.x5a{left:31.184250px;}
.x8{left:32.475720px;}
.x58{left:33.674250px;}
.x30{left:34.715655px;}
.x6e{left:37.134615px;}
.x4{left:39.861345px;}
.x59{left:41.174250px;}
.x6f{left:43.584615px;}
.x60{left:45.362139px;}
.x2f{left:48.708990px;}
.xd8{left:51.058200px;}
.x3{left:53.845380px;}
.x21{left:56.070465px;}
.x101{left:58.706340px;}
.x5{left:61.016295px;}
.x1e{left:63.402900px;}
.x13d{left:66.221340px;}
.x110{left:67.922250px;}
.xbc{left:70.726230px;}
.x41{left:75.935325px;}
.x1d{left:77.286225px;}
.x61{left:79.149615px;}
.x92{left:84.818100px;}
.xc7{left:87.661230px;}
.x5b{left:88.955325px;}
.x4e{left:90.689250px;}
.x71{left:92.169615px;}
.x2e{left:94.770915px;}
.x78{left:98.809995px;}
.x2{left:99.876750px;}
.x3b{left:102.556470px;}
.x42{left:107.285325px;}
.x2d{left:108.764250px;}
.x62{left:110.499600px;}
.x113{left:111.977250px;}
.x1{left:113.860785px;}
.x156{left:114.968640px;}
.x3a{left:116.603400px;}
.x4f{left:122.039250px;}
.x140{left:128.036340px;}
.x1c{left:130.446420px;}
.x72{left:133.719615px;}
.x13e{left:135.626340px;}
.x157{left:138.267375px;}
.x10a{left:141.911340px;}
.x14a{left:143.171340px;}
.x1b{left:144.343950px;}
.x111{left:147.707250px;}
.x43{left:149.075325px;}
.x63{left:152.289600px;}
.x11f{left:161.201400px;}
.x50{left:163.829250px;}
.xce{left:170.953200px;}
.x5c{left:172.055250px;}
.x73{left:175.269600px;}
.x158{left:184.880400px;}
.x170{left:188.529300px;}
.x44{left:192.035250px;}
.x64{left:195.249600px;}
.x91{left:197.754000px;}
.x51{left:206.789250px;}
.x159{left:208.194600px;}
.x5d{left:213.590250px;}
.x74{left:216.804600px;}
.x8b{left:219.324000px;}
.x83{left:222.082200px;}
.x171{left:224.736300px;}
.xd7{left:226.393500px;}
.x15a{left:231.508950px;}
.x36{left:232.713300px;}
.x65{left:236.679600px;}
.x31{left:238.270500px;}
.x6{left:240.117900px;}
.x102{left:241.481400px;}
.x172{left:242.847450px;}
.x79{left:245.415150px;}
.x52{left:248.219250px;}
.x5e{left:255.140250px;}
.x75{left:258.354600px;}
.x112{left:259.398000px;}
.x93{left:260.562000px;}
.x120{left:263.621400px;}
.x9a{left:268.637850px;}
.xbd{left:270.556200px;}
.x45{left:273.620250px;}
.x66{left:276.834600px;}
.x15b{left:278.121900px;}
.x14b{left:280.676400px;}
.x53{left:288.374250px;}
.xe5{left:292.696200px;}
.x40{left:296.269050px;}
.x76{left:299.904600px;}
.x3c{left:301.841850px;}
.x115{left:313.668000px;}
.x173{left:315.261450px;}
.x46{left:316.565250px;}
.x67{left:319.779600px;}
.x1f{left:324.699300px;}
.x54{left:331.319250px;}
.x174{left:333.372600px;}
.x5f{left:338.240250px;}
.x77{left:341.454600px;}
.x145{left:347.505000px;}
.x175{left:351.468450px;}
.x8f{left:354.160500px;}
.x144{left:356.490000px;}
.x47{left:358.115250px;}
.x68{left:361.329600px;}
.x176{left:369.579600px;}
.x15c{left:371.347800px;}
.x55{left:372.869250px;}
.x116{left:375.273000px;}
.x32{left:383.445750px;}
.x177{left:387.690900px;}
.x117{left:392.808000px;}
.x15d{left:394.646550px;}
.x48{left:398.300250px;}
.x90{left:400.008000px;}
.x69{left:401.514600px;}
.x178{left:405.786600px;}
.x37{left:409.155150px;}
.x56{left:413.054250px;}
.x8d{left:415.128000px;}
.x3d{left:417.463200px;}
.x179{left:423.897900px;}
.x114{left:427.128000px;}
.x7{left:440.359950px;}
.xb{left:442.605300px;}
.x4d{left:444.246000px;}
.x70{left:447.457500px;}
.xc8{left:460.216200px;}
.x84{left:462.238950px;}
.x8c{left:465.490500px;}
.x17a{left:478.216050px;}
.x8e{left:482.184000px;}
.x15e{left:487.888050px;}
.x103{left:492.701400px;}
.xc9{left:494.356200px;}
.x20{left:496.102050px;}
.x85{left:498.048450px;}
.x143{left:499.245000px;}
.xbe{left:504.721200px;}
.x7a{left:508.920300px;}
.x15f{left:511.186800px;}
.x17b{left:514.423050px;}
.xd4{left:516.103500px;}
.x104{left:526.841400px;}
.x17c{left:532.518750px;}
.x160{left:534.501000px;}
.x121{left:536.981400px;}
.xbf{left:538.861200px;}
.x7b{left:544.729950px;}
.xd3{left:545.803500px;}
.xe6{left:549.001200px;}
.x17d{left:550.630050px;}
.x9b{left:555.365850px;}
.x161{left:557.799750px;}
.xd5{left:564.268500px;}
.x17e{left:568.741200px;}
.x122{left:571.121400px;}
.x162{left:581.114100px;}
.xe7{left:583.141200px;}
.x17f{left:586.837050px;}
.x9c{left:591.175350px;}
.x163{left:604.412850px;}
.x139{left:605.423549px;}
.xfd{left:620.615233px;}
.x180{left:623.059500px;}
.x164{left:627.727050px;}
.x108{left:637.091400px;}
.xb9{left:640.082240px;}
.x181{left:641.155200px;}
.xb6{left:643.881809px;}
.xc5{left:649.111200px;}
.x165{left:651.025800px;}
.x105{left:652.706250px;}
.xd6{left:654.598500px;}
.xc0{left:656.851200px;}
.x182{left:659.266500px;}
.x80{left:660.371400px;}
.xc2{left:664.726200px;}
.x7c{left:668.489850px;}
.xc1{left:672.241200px;}
.x166{left:674.340000px;}
.x7d{left:676.750050px;}
.x146{left:680.580000px;}
.xc3{left:682.441200px;}
.x34{left:692.766450px;}
.x39{left:694.740355px;}
.x3e{left:696.160950px;}
.x167{left:697.654350px;}
.x183{left:713.584650px;}
.x86{left:717.610050px;}
.x7e{left:721.858050px;}
.x35{left:725.364900px;}
.x3f{left:728.851050px;}
.x184{left:731.680500px;}
.x10b{left:735.911250px;}
.x14c{left:737.171250px;}
.xd1{left:741.448500px;}
.x168{left:744.267300px;}
.x106{left:745.586250px;}
.x185{left:748.150950px;}
.x9{left:751.558350px;}
.xc{left:756.113550px;}
.xd0{left:766.213500px;}
.x169{left:767.566050px;}
.x22{left:774.919500px;}
.xd9{left:776.773500px;}
.xa{left:784.135200px;}
.xd{left:788.671800px;}
.x16a{left:790.880250px;}
.xd2{left:801.103500px;}
.x23{left:807.261900px;}
.x16b{left:809.969700px;}
.x10c{left:813.236250px;}
.x141{left:830.276250px;}
.x107{left:835.481250px;}
.xca{left:842.296200px;}
.x87{left:845.130300px;}
.x13f{left:852.536250px;}
.x123{left:857.621250px;}
.xc4{left:864.556200px;}
.x7f{left:868.463100px;}
.x14d{left:874.676250px;}
.xe8{left:886.696200px;}
.x9d{left:891.685800px;}
.x15{left:907.763550px;}
.x11{left:915.219900px;}
.x2a{left:925.731900px;}
.x10{left:929.337750px;}
.x27{left:933.064350px;}
.x12{left:936.577200px;}
.x26{left:946.947750px;}
.xf{left:975.809550px;}
.xe{left:989.927400px;}
.x16f{left:994.258035px;}
.x25{left:1000.107900px;}
.x24{left:1014.005400px;}
.x186{left:1018.943709px;}
.x16e{left:1024.830600px;}
.x10d{left:1042.196250px;}
.x16c{left:1047.725400px;}
.xcb{left:1054.216200px;}
.x1a{left:1061.383771px;}
.x16d{left:1074.487950px;}
.x10e{left:1076.336250px;}
.x88{left:1085.287050px;}
.x109{left:1086.701250px;}
.xcc{left:1088.356200px;}
.xc6{left:1098.721200px;}
.x89{left:1121.096550px;}
.x13{left:1123.230300px;}
.x81{left:1131.968400px;}
.xe9{left:1143.001200px;}
.x124{left:1165.121250px;}
.x82{left:1167.777900px;}
.xea{left:1177.141200px;}
.x9e{left:1178.413800px;}
.x28{left:1199.874300px;}
.x13a{left:1202.812586px;}
.x13c{left:1209.347164px;}
.x9f{left:1214.223300px;}
.xfe{left:1224.644931px;}
.x129{left:1231.091250px;}
.x100{left:1232.206438px;}
.x125{left:1238.831250px;}
.xee{left:1243.111200px;}
.x126{left:1246.706250px;}
.xeb{left:1250.851200px;}
.x11c{left:1254.326250px;}
.xdf{left:1259.251200px;}
.xba{left:1260.398340px;}
.x118{left:1262.066250px;}
.xb7{left:1264.197680px;}
.xda{left:1266.991200px;}
.x119{left:1269.941250px;}
.xdc{left:1274.866200px;}
.xec{left:1276.171200px;}
.xdb{left:1282.381200px;}
.xa4{left:1283.419500px;}
.x10f{left:1284.849000px;}
.xa0{left:1291.537950px;}
.x14{left:1296.126900px;}
.xcd{left:1297.278000px;}
.xa1{left:1299.798000px;}
.xdd{left:1302.751200px;}
.x14e{left:1320.986250px;}
.x152{left:1326.116250px;}
.x97{left:1331.579850px;}
.x127{left:1336.226250px;}
.x29{left:1340.256300px;}
.xa2{left:1343.427150px;}
.xae{left:1346.290650px;}
.x94{left:1347.958350px;}
.x8a{left:1363.599000px;}
.x128{left:1421.771250px;}
.x95{left:1422.818550px;}
.x11a{left:1430.726250px;}
.x132{left:1436.816250px;}
.x14f{left:1438.826250px;}
.xed{left:1450.846200px;}
.x153{left:1453.871250px;}
.xf8{left:1465.891200px;}
.xa3{left:1483.424250px;}
.xaf{left:1499.204850px;}
.x11b{left:1609.047000px;}
.x16{left:1638.756000px;}
.x2b{left:1644.580500px;}
.x12a{left:1665.282000px;}
.x17{left:1671.643500px;}
.x2c{left:1676.923500px;}
.x133{left:1695.372000px;}
.x12b{left:1699.422000px;}
.x96{left:1703.646000px;}
.xf9{left:1707.391500px;}
.xef{left:1711.441500px;}
.x134{left:1729.512000px;}
.xa5{left:1738.842000px;}
.xfa{left:1741.531500px;}
.xde{left:1766.026500px;}
.xb0{left:1770.403500px;}
.xa6{left:1774.651500px;}
.x13b{left:1792.747346px;}
.xb1{left:1806.213000px;}
.x12f{left:1825.092000px;}
.xff{left:1827.697966px;}
.x12c{left:1832.832000px;}
.xf5{left:1837.111500px;}
.x12d{left:1840.707000px;}
.xf0{left:1844.851500px;}
.x150{left:1848.222000px;}
.xf2{left:1852.726500px;}
.xf1{left:1860.241500px;}
.xf3{left:1870.171500px;}
.xb8{left:1887.414156px;}
.xab{left:1906.467000px;}
.xa7{left:1914.586500px;}
.x154{left:1920.117000px;}
.xa8{left:1922.845500px;}
.x12e{left:1930.227000px;}
.x135{left:1936.767000px;}
.xa9{left:1966.474500px;}
.xb2{left:1969.338000px;}
.x11d{left:2016.597000px;}
.x136{left:2030.817000px;}
.x151{left:2032.827000px;}
.xf4{left:2044.846500px;}
.x155{left:2047.872000px;}
.x11e{left:2050.722000px;}
.xfb{left:2059.891500px;}
.xaa{left:2106.472500px;}
.xb3{left:2122.252500px;}
.x98{left:2131.126500px;}
.x99{left:2166.921000px;}
.x130{left:2259.282000px;}
.x147{left:2263.362000px;}
.x149{left:2269.647000px;}
.xf6{left:2271.301500px;}
.x148{left:2273.397000px;}
.x137{left:2289.372000px;}
.xe0{left:2291.521500px;}
.x131{left:2293.422000px;}
.xe4{left:2298.226500px;}
.xe3{left:2299.471500px;}
.xe2{left:2300.716500px;}
.xf7{left:2305.441500px;}
.x138{left:2323.512000px;}
.xe1{left:2325.646500px;}
.xfc{left:2335.531500px;}
.xac{left:2361.891000px;}
.xb4{left:2393.452500px;}
.xad{left:2397.700500px;}
.xb5{left:2429.262000px;}
@media print{
.v1{vertical-align:-2.758400pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.301867pt;}
.ls2b{letter-spacing:-0.055227pt;}
.ls2c{letter-spacing:-0.055039pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000002pt;}
.ls1{letter-spacing:0.000012pt;}
.lsa{letter-spacing:0.000015pt;}
.ls0{letter-spacing:0.000017pt;}
.lsc{letter-spacing:0.000023pt;}
.ls13{letter-spacing:0.000058pt;}
.ls5{letter-spacing:0.000066pt;}
.ls6{letter-spacing:0.000119pt;}
.ls7{letter-spacing:0.000172pt;}
.ls8{letter-spacing:0.000226pt;}
.ls9{letter-spacing:0.000492pt;}
.lsb{letter-spacing:0.010964pt;}
.ls25{letter-spacing:0.015442pt;}
.ls3{letter-spacing:0.015663pt;}
.lsd{letter-spacing:51.712000pt;}
.ls12{letter-spacing:209.193025pt;}
.ls11{letter-spacing:209.193078pt;}
.ls1d{letter-spacing:223.894520pt;}
.ls18{letter-spacing:231.345558pt;}
.ls17{letter-spacing:231.346092pt;}
.lsf{letter-spacing:243.076652pt;}
.ls10{letter-spacing:243.076758pt;}
.ls21{letter-spacing:246.047340pt;}
.ls19{letter-spacing:254.304492pt;}
.ls1a{letter-spacing:254.305558pt;}
.ls1b{letter-spacing:257.828612pt;}
.ls22{letter-spacing:260.748756pt;}
.ls23{letter-spacing:268.955369pt;}
.ls1c{letter-spacing:272.530029pt;}
.ls16{letter-spacing:276.859692pt;}
.ls15{letter-spacing:276.859745pt;}
.ls24{letter-spacing:283.707133pt;}
.ls1f{letter-spacing:291.561315pt;}
.ls20{letter-spacing:306.262731pt;}
.ls27{letter-spacing:389.376000pt;}
.ls28{letter-spacing:425.136000pt;}
.ls26{letter-spacing:444.048000pt;}
.ls29{letter-spacing:462.096000pt;}
.ls14{letter-spacing:481.269292pt;}
.ls1e{letter-spacing:496.021770pt;}
.lse{letter-spacing:1560.642036pt;}
.ls2{letter-spacing:2828.531435pt;}
.ws2d{word-spacing:-481.264542pt;}
.ws61{word-spacing:-448.122667pt;}
.ws60{word-spacing:-448.120000pt;}
.ws59{word-spacing:-430.032000pt;}
.ws5f{word-spacing:-411.216000pt;}
.ws5e{word-spacing:-411.213333pt;}
.ws5b{word-spacing:-375.402667pt;}
.ws5a{word-spacing:-375.402453pt;}
.ws2f{word-spacing:-276.814908pt;}
.ws32{word-spacing:-254.188538pt;}
.ws33{word-spacing:-254.182672pt;}
.ws28{word-spacing:-243.087734pt;}
.ws30{word-spacing:-231.258050pt;}
.ws31{word-spacing:-231.255917pt;}
.ws2b{word-spacing:-209.243451pt;}
.ws45{word-spacing:-90.666667pt;}
.ws43{word-spacing:-85.333333pt;}
.ws4b{word-spacing:-80.000000pt;}
.ws3e{word-spacing:-74.666667pt;}
.ws49{word-spacing:-69.333333pt;}
.ws47{word-spacing:-64.000000pt;}
.ws2c{word-spacing:-61.535627pt;}
.ws4d{word-spacing:-58.666667pt;}
.ws6c{word-spacing:-55.226613pt;}
.ws71{word-spacing:-55.038880pt;}
.ws4c{word-spacing:-53.333333pt;}
.ws27{word-spacing:-50.347317pt;}
.ws34{word-spacing:-48.000000pt;}
.ws8{word-spacing:-46.240747pt;}
.ws1a{word-spacing:-45.961301pt;}
.ws14{word-spacing:-45.832779pt;}
.ws1{word-spacing:-45.802352pt;}
.ws4{word-spacing:-45.775989pt;}
.wsf{word-spacing:-45.472496pt;}
.ws6a{word-spacing:-44.181291pt;}
.ws6f{word-spacing:-44.031109pt;}
.ws1e{word-spacing:-42.666667pt;}
.ws40{word-spacing:-37.333333pt;}
.ws4f{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.711537pt;}
.ws1c{word-spacing:-15.616631pt;}
.ws17{word-spacing:-15.572952pt;}
.ws3{word-spacing:-15.562618pt;}
.ws7{word-spacing:-15.553663pt;}
.ws11{word-spacing:-15.450543pt;}
.ws9{word-spacing:-12.854928pt;}
.wsc{word-spacing:-12.854889pt;}
.ws19{word-spacing:-12.777242pt;}
.ws15{word-spacing:-12.741512pt;}
.ws0{word-spacing:-12.733054pt;}
.ws5{word-spacing:-12.725725pt;}
.wse{word-spacing:-12.641354pt;}
.ws44{word-spacing:-0.090667pt;}
.ws42{word-spacing:-0.085333pt;}
.ws4a{word-spacing:-0.080000pt;}
.ws3d{word-spacing:-0.074667pt;}
.ws48{word-spacing:-0.069333pt;}
.ws46{word-spacing:-0.064000pt;}
.ws29{word-spacing:-0.061536pt;}
.ws37{word-spacing:-0.058667pt;}
.ws6b{word-spacing:-0.055227pt;}
.ws70{word-spacing:-0.055039pt;}
.ws23{word-spacing:-0.053333pt;}
.ws2a{word-spacing:-0.050347pt;}
.ws38{word-spacing:-0.048000pt;}
.ws69{word-spacing:-0.044181pt;}
.ws6e{word-spacing:-0.044031pt;}
.ws41{word-spacing:-0.042667pt;}
.ws3f{word-spacing:-0.037333pt;}
.ws68{word-spacing:-0.027613pt;}
.ws6d{word-spacing:-0.027519pt;}
.ws4e{word-spacing:-0.016000pt;}
.wsd{word-spacing:0.000000pt;}
.ws20{word-spacing:33.919733pt;}
.ws26{word-spacing:33.919947pt;}
.ws1f{word-spacing:33.920000pt;}
.ws21{word-spacing:33.920533pt;}
.ws24{word-spacing:43.946667pt;}
.ws22{word-spacing:58.837333pt;}
.ws1b{word-spacing:200.942809pt;}
.ws1d{word-spacing:201.310500pt;}
.ws3a{word-spacing:234.239893pt;}
.ws3c{word-spacing:234.240000pt;}
.ws13{word-spacing:245.005808pt;}
.ws16{word-spacing:253.501099pt;}
.ws55{word-spacing:261.024000pt;}
.ws3b{word-spacing:261.600000pt;}
.ws18{word-spacing:273.575856pt;}
.ws35{word-spacing:275.279893pt;}
.ws39{word-spacing:275.280000pt;}
.ws10{word-spacing:279.610378pt;}
.ws12{word-spacing:282.793453pt;}
.ws63{word-spacing:284.832000pt;}
.ws56{word-spacing:288.480000pt;}
.ws57{word-spacing:288.816000pt;}
.ws36{word-spacing:302.640000pt;}
.wsa{word-spacing:302.737261pt;}
.ws66{word-spacing:313.632000pt;}
.ws52{word-spacing:316.079893pt;}
.ws54{word-spacing:316.080000pt;}
.ws58{word-spacing:316.128000pt;}
.ws62{word-spacing:328.896000pt;}
.ws67{word-spacing:343.440000pt;}
.ws53{word-spacing:343.488000pt;}
.ws2{word-spacing:344.891711pt;}
.ws6{word-spacing:349.637007pt;}
.ws65{word-spacing:372.720000pt;}
.ws5d{word-spacing:498.453333pt;}
.ws2e{word-spacing:510.617878pt;}
.ws50{word-spacing:812.513067pt;}
.ws5c{word-spacing:828.269333pt;}
.ws51{word-spacing:839.925333pt;}
.ws64{word-spacing:905.688000pt;}
.ws25{word-spacing:1561.358620pt;}
._3{margin-left:-7.142152pt;}
._4{margin-left:-5.032398pt;}
._7{margin-left:-2.976680pt;}
._1{margin-left:-1.399516pt;}
._0{width:1.190836pt;}
._2{width:2.204136pt;}
._5{width:63.829333pt;}
._6{width:76.629333pt;}
._9{width:275.733333pt;}
._11{width:298.917547pt;}
._c{width:302.497067pt;}
._8{width:316.746667pt;}
._14{width:327.720000pt;}
._d{width:330.257067pt;}
._10{width:342.960213pt;}
._b{width:357.552000pt;}
._13{width:386.816213pt;}
._f{width:512.464000pt;}
._e{width:842.277333pt;}
._a{width:853.802667pt;}
._12{width:919.664000pt;}
.fs26{font-size:16.000000pt;}
.fs36{font-size:27.519440pt;}
.fs32{font-size:27.613307pt;}
.fs20{font-size:37.333333pt;}
.fs11{font-size:42.666667pt;}
.fs37{font-size:44.031109pt;}
.fs33{font-size:44.181291pt;}
.fs9{font-size:45.472496pt;}
.fs2{font-size:45.775989pt;}
.fs0{font-size:45.802352pt;}
.fsb{font-size:45.832779pt;}
.fsf{font-size:45.961301pt;}
.fs5{font-size:46.240608pt;}
.fs4{font-size:46.240747pt;}
.fs1d{font-size:48.000000pt;}
.fs14{font-size:50.347317pt;}
.fs12{font-size:53.333333pt;}
.fs39{font-size:54.819144pt;}
.fse{font-size:54.819147pt;}
.fs35{font-size:54.819157pt;}
.fs13{font-size:54.819158pt;}
.fs38{font-size:55.038880pt;}
.fs34{font-size:55.226613pt;}
.fsa{font-size:55.577493pt;}
.fs3{font-size:55.948427pt;}
.fs1{font-size:55.980640pt;}
.fsc{font-size:56.017813pt;}
.fs10{font-size:56.174933pt;}
.fs6{font-size:56.516320pt;}
.fs1e{font-size:58.666667pt;}
.fs15{font-size:61.535627pt;}
.fs23{font-size:64.000000pt;}
.fs24{font-size:69.333333pt;}
.fs1f{font-size:74.666667pt;}
.fs27{font-size:77.206806pt;}
.fs2a{font-size:77.207682pt;}
.fs2f{font-size:77.208682pt;}
.fs31{font-size:77.208779pt;}
.fs2d{font-size:77.209120pt;}
.fs2b{font-size:77.209458pt;}
.fs1c{font-size:77.209667pt;}
.fs29{font-size:77.209800pt;}
.fs2e{font-size:77.209875pt;}
.fs28{font-size:77.209908pt;}
.fs1b{font-size:77.210008pt;}
.fs2c{font-size:77.210030pt;}
.fs30{font-size:77.210062pt;}
.fs19{font-size:77.210217pt;}
.fs17{font-size:77.210296pt;}
.fs1a{font-size:77.210371pt;}
.fs16{font-size:77.210558pt;}
.fs18{font-size:77.211021pt;}
.fs8{font-size:78.313067pt;}
.fs25{font-size:80.000000pt;}
.fs21{font-size:85.333333pt;}
.fs22{font-size:90.666667pt;}
.fsd{font-size:106.666720pt;}
.fs7{font-size:226.547893pt;}
.y0{bottom:0.000000pt;}
.y201{bottom:3.551645pt;}
.y16f{bottom:3.551649pt;}
.y2f5{bottom:3.929614pt;}
.y324{bottom:3.929636pt;}
.yd5{bottom:3.964995pt;}
.y126{bottom:3.988170pt;}
.y55{bottom:4.901724pt;}
.y13f{bottom:5.037133pt;}
.y177{bottom:5.332983pt;}
.y20b{bottom:5.332993pt;}
.y25b{bottom:5.333013pt;}
.y181{bottom:5.333049pt;}
.y17b{bottom:5.333053pt;}
.y253{bottom:5.333062pt;}
.y20d{bottom:5.333064pt;}
.y207{bottom:5.333098pt;}
.y2c5{bottom:5.333138pt;}
.y2c7{bottom:5.333185pt;}
.y2c3{bottom:5.333202pt;}
.y171{bottom:5.333221pt;}
.y251{bottom:5.333299pt;}
.y24f{bottom:5.333302pt;}
.y257{bottom:5.333313pt;}
.y185{bottom:5.333348pt;}
.y17f{bottom:5.333367pt;}
.y17d{bottom:5.333371pt;}
.y211{bottom:5.333412pt;}
.y255{bottom:5.333418pt;}
.y209{bottom:5.333435pt;}
.y179{bottom:5.333441pt;}
.y205{bottom:5.333443pt;}
.y2c2{bottom:5.333616pt;}
.y183{bottom:5.333748pt;}
.y259{bottom:5.333854pt;}
.y203{bottom:5.334035pt;}
.y173{bottom:5.334050pt;}
.y20f{bottom:5.334189pt;}
.y175{bottom:5.334835pt;}
.y296{bottom:11.411867pt;}
.y1bb{bottom:13.813200pt;}
.y102{bottom:16.093200pt;}
.y200{bottom:18.666659pt;}
.y16e{bottom:18.666663pt;}
.y2f4{bottom:19.044683pt;}
.y323{bottom:19.044702pt;}
.yd4{bottom:19.079928pt;}
.y125{bottom:19.103240pt;}
.y44{bottom:19.114667pt;}
.y311{bottom:19.739577pt;}
.ye7{bottom:21.122133pt;}
.y2e{bottom:24.593067pt;}
.yb0{bottom:25.515733pt;}
.y230{bottom:25.641200pt;}
.y54{bottom:26.875457pt;}
.y14c{bottom:31.525133pt;}
.y322{bottom:34.159634pt;}
.y2f3{bottom:34.159753pt;}
.yd3{bottom:34.194995pt;}
.y124{bottom:34.218309pt;}
.y43{bottom:35.324667pt;}
.y84{bottom:36.443200pt;}
.y9a{bottom:36.444667pt;}
.y16d{bottom:37.203631pt;}
.y1ff{bottom:37.203635pt;}
.ye6{bottom:37.234133pt;}
.y2d{bottom:40.640133pt;}
.yaf{bottom:41.582667pt;}
.y2f6{bottom:46.158133pt;}
.y53{bottom:48.849324pt;}
.y2f2{bottom:49.274689pt;}
.y321{bottom:49.274700pt;}
.yd2{bottom:49.309928pt;}
.y123{bottom:49.333246pt;}
.y2c8{bottom:51.203467pt;}
.y83{bottom:52.383867pt;}
.y99{bottom:52.385333pt;}
.y11b{bottom:61.573200pt;}
.y112{bottom:62.986533pt;}
.y320{bottom:64.389633pt;}
.y2f1{bottom:64.389758pt;}
.yd1{bottom:64.424995pt;}
.y33{bottom:64.571733pt;}
.yd6{bottom:66.304667pt;}
.y22c{bottom:66.801200pt;}
.y306{bottom:67.114133pt;}
.y1d{bottom:69.593467pt;}
.y9f{bottom:70.571867pt;}
.y52{bottom:70.823191pt;}
.y2d8{bottom:71.996267pt;}
.y2e2{bottom:76.642067pt;}
.y161{bottom:78.332000pt;}
.y31f{bottom:79.504699pt;}
.y2f0{bottom:79.504828pt;}
.yd0{bottom:79.540061pt;}
.y73{bottom:81.145200pt;}
.y89{bottom:81.146667pt;}
.y148{bottom:85.397133pt;}
.y153{bottom:85.996000pt;}
.y10a{bottom:89.679867pt;}
.y51{bottom:92.797057pt;}
.y2ef{bottom:94.619764pt;}
.y31e{bottom:94.619765pt;}
.ycf{bottom:94.654995pt;}
.y34{bottom:95.861333pt;}
.y160{bottom:95.982667pt;}
.y228{bottom:96.840667pt;}
.yd7{bottom:97.405200pt;}
.y11a{bottom:98.506533pt;}
.y111{bottom:99.919867pt;}
.y1e{bottom:100.568533pt;}
.ya0{bottom:101.585467pt;}
.y152{bottom:103.646667pt;}
.y305{bottom:108.668533pt;}
.y15c{bottom:109.436000pt;}
.y31d{bottom:109.734698pt;}
.y2ee{bottom:109.734833pt;}
.yce{bottom:109.770061pt;}
.y74{bottom:111.914933pt;}
.y8a{bottom:111.916400pt;}
.y2d7{bottom:113.236667pt;}
.y50{bottom:114.770791pt;}
.y147{bottom:116.163800pt;}
.y14e{bottom:117.100000pt;}
.y22b{bottom:117.267333pt;}
.y231{bottom:118.507333pt;}
.y13d{bottom:119.573533pt;}
.y14b{bottom:121.450467pt;}
.y31c{bottom:124.849764pt;}
.y2ed{bottom:124.849769pt;}
.ycd{bottom:124.885128pt;}
.y109{bottom:126.613200pt;}
.y35{bottom:127.150800pt;}
.y1e2{bottom:127.264000pt;}
.yd8{bottom:128.505600pt;}
.y1f{bottom:131.543600pt;}
.ya1{bottom:132.598933pt;}
.y1ca{bottom:134.570667pt;}
.y119{bottom:135.426533pt;}
.y4f{bottom:136.744657pt;}
.y110{bottom:136.853200pt;}
.y29c{bottom:137.949333pt;}
.y1ba{bottom:138.960267pt;}
.y31b{bottom:139.964830pt;}
.y2ec{bottom:139.964839pt;}
.ycc{bottom:140.000061pt;}
.y246{bottom:141.510667pt;}
.y75{bottom:142.684667pt;}
.y8b{bottom:142.686133pt;}
.y1e1{bottom:144.090667pt;}
.y1c0{bottom:146.760267pt;}
.y23b{bottom:148.817333pt;}
.y14a{bottom:149.519533pt;}
.y304{bottom:150.222933pt;}
.y1c9{bottom:151.397333pt;}
.y2d6{bottom:154.477200pt;}
.y29b{bottom:154.776000pt;}
.y31a{bottom:155.079762pt;}
.y2eb{bottom:155.079908pt;}
.y13e{bottom:157.770867pt;}
.y245{bottom:158.337333pt;}
.y36{bottom:158.440267pt;}
.y4e{bottom:158.718524pt;}
.yd9{bottom:159.606133pt;}
.y234{bottom:159.747333pt;}
.y28c{bottom:160.424667pt;}
.y20{bottom:162.518667pt;}
.y108{bottom:163.546533pt;}
.ya2{bottom:163.612533pt;}
.y23a{bottom:165.644000pt;}
.y1b2{bottom:166.584133pt;}
.y286{bottom:169.964133pt;}
.y319{bottom:170.194828pt;}
.y2ea{bottom:170.194844pt;}
.y1bf{bottom:171.960267pt;}
.y118{bottom:172.359867pt;}
.y76{bottom:173.454400pt;}
.y8c{bottom:173.455867pt;}
.y10f{bottom:173.786533pt;}
.y1b7{bottom:175.293600pt;}
.y1db{bottom:175.424000pt;}
.y4d{bottom:180.692391pt;}
.y226{bottom:180.829467pt;}
.y1c3{bottom:182.730667pt;}
.y227{bottom:183.227333pt;}
.y291{bottom:183.744667pt;}
.y318{bottom:185.309828pt;}
.y2e9{bottom:185.309914pt;}
.y37{bottom:189.729733pt;}
.yda{bottom:190.706667pt;}
.y303{bottom:191.777200pt;}
.y1b6{bottom:192.693600pt;}
.y21{bottom:193.493733pt;}
.ya3{bottom:194.626000pt;}
.y2d5{bottom:195.717733pt;}
.y317{bottom:200.424840pt;}
.y2e8{bottom:200.424983pt;}
.y107{bottom:200.466533pt;}
.y4c{bottom:202.666124pt;}
.y22d{bottom:203.254000pt;}
.y77{bottom:204.224133pt;}
.y8d{bottom:204.225600pt;}
.y1be{bottom:204.800267pt;}
.y1fa{bottom:207.650667pt;}
.y117{bottom:209.293200pt;}
.y10e{bottom:210.706533pt;}
.y1c1{bottom:211.546933pt;}
.y297{bottom:211.842667pt;}
.y233{bottom:213.894000pt;}
.y290{bottom:214.211333pt;}
.y316{bottom:215.539853pt;}
.y2e7{bottom:215.539919pt;}
.y149{bottom:218.733000pt;}
.y38{bottom:221.019200pt;}
.ydb{bottom:221.807067pt;}
.y22{bottom:224.468800pt;}
.ya4{bottom:225.639467pt;}
.y15d{bottom:228.129333pt;}
.y315{bottom:230.654879pt;}
.y2e6{bottom:230.654989pt;}
.y1f9{bottom:230.690667pt;}
.y122{bottom:231.658765pt;}
.y302{bottom:233.331600pt;}
.y78{bottom:234.993867pt;}
.y8e{bottom:234.995333pt;}
.y14f{bottom:235.793333pt;}
.y2d4{bottom:236.958133pt;}
.y16b{bottom:237.360000pt;}
.y106{bottom:237.399867pt;}
.y2a8{bottom:238.029333pt;}
.y22f{bottom:238.320667pt;}
.y288{bottom:239.944667pt;}
.y2ad{bottom:241.376000pt;}
.y1bd{bottom:242.133600pt;}
.y1d7{bottom:245.690667pt;}
.y314{bottom:245.769892pt;}
.y2e5{bottom:245.769991pt;}
.y116{bottom:246.226533pt;}
.y28e{bottom:247.238000pt;}
.y1dc{bottom:247.504000pt;}
.y10d{bottom:247.639867pt;}
.y1da{bottom:249.517333pt;}
.y39{bottom:252.308667pt;}
.y2bc{bottom:252.896000pt;}
.ydc{bottom:252.907600pt;}
.y1f8{bottom:253.730667pt;}
.y1c4{bottom:254.811067pt;}
.y23{bottom:255.444000pt;}
.ya5{bottom:256.653067pt;}
.y22e{bottom:258.440667pt;}
.y313{bottom:260.884904pt;}
.y2e4{bottom:260.885007pt;}
.y16a{bottom:261.526933pt;}
.y2a7{bottom:262.428800pt;}
.y1b8{bottom:264.453600pt;}
.y2ac{bottom:264.815467pt;}
.y79{bottom:265.763600pt;}
.y8f{bottom:265.765067pt;}
.y1bc{bottom:266.093600pt;}
.y28d{bottom:270.038000pt;}
.y156{bottom:270.533467pt;}
.y1d6{bottom:270.717733pt;}
.y1d9{bottom:273.584400pt;}
.y242{bottom:273.843467pt;}
.y105{bottom:274.333200pt;}
.y301{bottom:274.886000pt;}
.y1b4{bottom:275.600267pt;}
.y2bb{bottom:275.935467pt;}
.y312{bottom:275.999917pt;}
.y2e3{bottom:276.000023pt;}
.y1f7{bottom:276.771067pt;}
.y48{bottom:277.997867pt;}
.y2d3{bottom:278.198667pt;}
.y1ec{bottom:278.877733pt;}
.y45{bottom:279.436533pt;}
.ye8{bottom:279.871467pt;}
.y32{bottom:280.875067pt;}
.y237{bottom:281.150133pt;}
.y2f{bottom:282.299200pt;}
.y232{bottom:282.694000pt;}
.y115{bottom:283.159867pt;}
.yb1{bottom:283.541600pt;}
.y3a{bottom:283.598133pt;}
.ydd{bottom:284.008133pt;}
.y10c{bottom:284.573187pt;}
.y11f{bottom:284.573200pt;}
.y142{bottom:285.653000pt;}
.y169{bottom:285.693600pt;}
.y24{bottom:286.419067pt;}
.y2a6{bottom:286.428800pt;}
.ya6{bottom:287.666533pt;}
.y2ab{bottom:287.855467pt;}
.y88{bottom:291.026000pt;}
.y9e{bottom:291.027600pt;}
.y292{bottom:292.078000pt;}
.y85{bottom:292.440667pt;}
.y9b{bottom:292.442267pt;}
.y157{bottom:294.042933pt;}
.y1d5{bottom:295.184400pt;}
.y294{bottom:295.491333pt;}
.y7a{bottom:296.533333pt;}
.y90{bottom:296.534800pt;}
.y1d8{bottom:296.624400pt;}
.y2ba{bottom:298.975467pt;}
.y1b3{bottom:300.013600pt;}
.y47{bottom:300.193333pt;}
.y1f6{bottom:301.517733pt;}
.y1eb{bottom:301.917733pt;}
.y1b9{bottom:302.493600pt;}
.y31{bottom:302.847467pt;}
.y22a{bottom:303.534000pt;}
.y113{bottom:306.727733pt;}
.y143{bottom:309.428200pt;}
.y168{bottom:309.860400pt;}
.y162{bottom:310.140133pt;}
.y2a5{bottom:310.415467pt;}
.y2aa{bottom:310.895467pt;}
.y104{bottom:311.266520pt;}
.y11d{bottom:311.266533pt;}
.y87{bottom:312.852800pt;}
.y9d{bottom:312.854267pt;}
.y3b{bottom:314.874800pt;}
.yde{bottom:315.095867pt;}
.y300{bottom:316.440400pt;}
.y25{bottom:317.381467pt;}
.y158{bottom:317.566267pt;}
.y154{bottom:317.804000pt;}
.ya7{bottom:318.667333pt;}
.y2d2{bottom:319.439067pt;}
.y1dd{bottom:319.584400pt;}
.y1d4{bottom:319.664400pt;}
.y114{bottom:320.093200pt;}
.y10b{bottom:321.506520pt;}
.y11e{bottom:321.506533pt;}
.y2b9{bottom:322.015467pt;}
.y28b{bottom:323.438000pt;}
.y46{bottom:324.032933pt;}
.y1ea{bottom:324.957733pt;}
.y28a{bottom:325.464667pt;}
.y23e{bottom:326.110133pt;}
.y30{bottom:326.447600pt;}
.y1c5{bottom:326.891067pt;}
.y7b{bottom:327.290400pt;}
.y91{bottom:327.291867pt;}
.y145{bottom:330.560067pt;}
.y298{bottom:330.762133pt;}
.y2a9{bottom:333.935467pt;}
.y167{bottom:334.027067pt;}
.y2a4{bottom:334.895467pt;}
.y2b1{bottom:335.642133pt;}
.y86{bottom:336.296400pt;}
.y9c{bottom:336.297867pt;}
.y24c{bottom:339.203467pt;}
.y159{bottom:341.075733pt;}
.y1d3{bottom:344.411067pt;}
.y2b8{bottom:345.055467pt;}
.y3c{bottom:346.164267pt;}
.ydf{bottom:346.196267pt;}
.y15e{bottom:346.823733pt;}
.y1e9{bottom:347.997733pt;}
.y103{bottom:348.199853pt;}
.y11c{bottom:348.199867pt;}
.y26{bottom:348.356533pt;}
.y293{bottom:348.371333pt;}
.y287{bottom:348.438000pt;}
.ya8{bottom:349.680800pt;}
.y1f5{bottom:350.091067pt;}
.y14d{bottom:351.594067pt;}
.y229{bottom:352.854000pt;}
.y150{bottom:354.487600pt;}
.y2ff{bottom:357.994667pt;}
.y7c{bottom:358.060133pt;}
.y92{bottom:358.061600pt;}
.y166{bottom:358.193733pt;}
.y2a3{bottom:358.682133pt;}
.y1e3{bottom:360.091067pt;}
.y2d1{bottom:360.679600pt;}
.y23f{bottom:362.163467pt;}
.y24b{bottom:362.243467pt;}
.y247{bottom:362.510133pt;}
.y15a{bottom:364.599067pt;}
.y1cb{bottom:367.397733pt;}
.y2b7{bottom:369.802133pt;}
.y23c{bottom:369.816800pt;}
.y29d{bottom:370.775467pt;}
.yb6{bottom:370.948000pt;}
.y1e8{bottom:371.037733pt;}
.y1f4{bottom:373.131067pt;}
.y295{bottom:373.198000pt;}
.y236{bottom:376.147333pt;}
.ye0{bottom:377.296800pt;}
.y3d{bottom:377.453733pt;}
.y28f{bottom:378.318000pt;}
.y27{bottom:379.331600pt;}
.ya9{bottom:380.694400pt;}
.y2b0{bottom:381.722133pt;}
.y141{bottom:381.984200pt;}
.y165{bottom:382.360533pt;}
.y1cd{bottom:382.757733pt;}
.y24a{bottom:385.283467pt;}
.y15b{bottom:388.108533pt;}
.y243{bottom:388.376800pt;}
.y7d{bottom:388.829867pt;}
.y93{bottom:388.831333pt;}
.y1de{bottom:391.664400pt;}
.yb5{bottom:392.947733pt;}
.y1b5{bottom:392.986933pt;}
.y1e7{bottom:394.077733pt;}
.y238{bottom:395.683467pt;}
.y1f3{bottom:396.171067pt;}
.y140{bottom:398.137400pt;}
.y240{bottom:398.230133pt;}
.y29f{bottom:398.388800pt;}
.y1c6{bottom:398.971067pt;}
.y2fe{bottom:399.549067pt;}
.y2d0{bottom:401.920000pt;}
.y155{bottom:403.898000pt;}
.y2af{bottom:404.762133pt;}
.y1ce{bottom:405.171067pt;}
.y164{bottom:406.527200pt;}
.y249{bottom:408.323467pt;}
.ye1{bottom:408.397200pt;}
.y146{bottom:408.500467pt;}
.y3e{bottom:408.743200pt;}
.y28{bottom:410.306667pt;}
.y289{bottom:410.984667pt;}
.yaa{bottom:411.707867pt;}
.y235{bottom:414.814000pt;}
.yb4{bottom:414.947467pt;}
.y1c2{bottom:416.493600pt;}
.y1e6{bottom:417.117733pt;}
.y2b6{bottom:418.375467pt;}
.y1f2{bottom:419.211067pt;}
.y7e{bottom:419.599600pt;}
.y94{bottom:419.601067pt;}
.y1cf{bottom:427.597733pt;}
.y2ae{bottom:429.508800pt;}
.y163{bottom:432.484000pt;}
.y248{bottom:433.070133pt;}
.y241{bottom:434.296800pt;}
.y2a0{bottom:434.442133pt;}
.y144{bottom:435.072733pt;}
.yb3{bottom:436.947200pt;}
.ye2{bottom:439.497733pt;}
.y3f{bottom:440.032667pt;}
.y1e5{bottom:440.157733pt;}
.y2fd{bottom:441.103467pt;}
.y29{bottom:441.281733pt;}
.y2b5{bottom:441.415467pt;}
.y1f1{bottom:442.251067pt;}
.yab{bottom:442.721467pt;}
.y2cf{bottom:443.160533pt;}
.yed{bottom:448.380400pt;}
.y299{bottom:449.695467pt;}
.y1d0{bottom:450.011067pt;}
.y7f{bottom:450.369333pt;}
.y95{bottom:450.370800pt;}
.y23d{bottom:451.896800pt;}
.yb2{bottom:460.576667pt;}
.y1df{bottom:463.744400pt;}
.y2b4{bottom:464.455467pt;}
.y1e4{bottom:464.904400pt;}
.y1f0{bottom:465.291067pt;}
.y15f{bottom:465.517467pt;}
.yec{bottom:470.441733pt;}
.y2a1{bottom:470.508800pt;}
.ye3{bottom:470.598267pt;}
.y1c7{bottom:471.051067pt;}
.y40{bottom:471.322133pt;}
.y2a{bottom:472.256933pt;}
.y1d1{bottom:472.437733pt;}
.y151{bottom:473.181467pt;}
.yac{bottom:473.734933pt;}
.y80{bottom:481.139067pt;}
.y96{bottom:481.140533pt;}
.y2fc{bottom:482.657733pt;}
.y2ce{bottom:484.400933pt;}
.y2b3{bottom:487.495467pt;}
.y1ef{bottom:488.331067pt;}
.yeb{bottom:492.503200pt;}
.y1d2{bottom:494.864400pt;}
.ye4{bottom:501.698667pt;}
.y41{bottom:502.611600pt;}
.y244{bottom:502.910133pt;}
.y2b{bottom:503.232000pt;}
.yad{bottom:504.748400pt;}
.y2a2{bottom:506.575467pt;}
.y1cc{bottom:509.904400pt;}
.y239{bottom:510.216800pt;}
.y1ee{bottom:511.371067pt;}
.y81{bottom:511.908800pt;}
.y97{bottom:511.910267pt;}
.y2b2{bottom:512.242133pt;}
.yea{bottom:514.564667pt;}
.y2de{bottom:519.014267pt;}
.y30c{bottom:523.317733pt;}
.y29e{bottom:524.175467pt;}
.y2fb{bottom:524.225867pt;}
.y2cd{bottom:525.641467pt;}
.ye5{bottom:532.786400pt;}
.y42{bottom:533.888267pt;}
.y2c{bottom:534.194400pt;}
.yae{bottom:535.749200pt;}
.y1e0{bottom:535.837733pt;}
.y1ed{bottom:536.117733pt;}
.ye9{bottom:538.260267pt;}
.y82{bottom:542.665867pt;}
.y98{bottom:542.667333pt;}
.y1c8{bottom:543.144400pt;}
.y4a{bottom:552.388267pt;}
.y20c{bottom:565.413619pt;}
.y2c6{bottom:565.413631pt;}
.y180{bottom:565.413634pt;}
.y20e{bottom:565.499694pt;}
.y182{bottom:565.499735pt;}
.y184{bottom:565.586068pt;}
.y210{bottom:565.586110pt;}
.y2fa{bottom:565.780267pt;}
.y2cc{bottom:566.882000pt;}
.y29a{bottom:568.615467pt;}
.y30d{bottom:568.917467pt;}
.y2df{bottom:570.292133pt;}
.yff{bottom:572.657733pt;}
.y12{bottom:573.603200pt;}
.yc8{bottom:575.509067pt;}
.y67{bottom:581.271067pt;}
.y12c{bottom:581.805867pt;}
.yfe{bottom:588.769733pt;}
.y11{bottom:589.659467pt;}
.yc7{bottom:591.576000pt;}
.y66{bottom:597.211733pt;}
.y12b{bottom:599.455333pt;}
.y18d{bottom:607.264400pt;}
.y2f9{bottom:607.334667pt;}
.y25a{bottom:607.397270pt;}
.y256{bottom:607.487503pt;}
.y258{bottom:607.573721pt;}
.y2cb{bottom:608.122400pt;}
.y127{bottom:612.909333pt;}
.y30e{bottom:614.503467pt;}
.yee{bottom:617.840267pt;}
.y261{bottom:617.948800pt;}
.y1{bottom:618.629467pt;}
.yb7{bottom:620.565200pt;}
.y216{bottom:621.510133pt;}
.y2e0{bottom:621.583867pt;}
.y18c{bottom:624.091067pt;}
.y56{bottom:625.973067pt;}
.y2dd{bottom:625.974400pt;}
.y30b{bottom:626.254267pt;}
.y260{bottom:634.775467pt;}
.y215{bottom:638.336800pt;}
.y2dc{bottom:645.800800pt;}
.y30a{bottom:646.013200pt;}
.y2f8{bottom:648.888933pt;}
.yef{bottom:648.940800pt;}
.y2ca{bottom:649.362933pt;}
.y2{bottom:649.622400pt;}
.yb8{bottom:651.578800pt;}
.y186{bottom:655.424400pt;}
.y57{bottom:656.742800pt;}
.y30f{bottom:660.089333pt;}
.y2db{bottom:665.627120pt;}
.y309{bottom:665.772147pt;}
.y2e1{bottom:672.861813pt;}
.yf0{bottom:680.041333pt;}
.y3{bottom:680.615333pt;}
.yb9{bottom:682.592267pt;}
.y2da{bottom:685.453480pt;}
.y308{bottom:685.531107pt;}
.y58{bottom:687.512533pt;}
.y2f7{bottom:690.443333pt;}
.y2c9{bottom:690.603360pt;}
.y25c{bottom:691.842133pt;}
.y121{bottom:696.300000pt;}
.y2d9{bottom:705.279827pt;}
.y307{bottom:705.290067pt;}
.y310{bottom:705.675347pt;}
.yf1{bottom:711.141733pt;}
.y4{bottom:711.608267pt;}
.yba{bottom:713.605867pt;}
.y101{bottom:714.727733pt;}
.y59{bottom:718.282267pt;}
.y187{bottom:727.504400pt;}
.y128{bottom:731.603067pt;}
.yf2{bottom:742.242267pt;}
.y5{bottom:742.601200pt;}
.ybb{bottom:744.619333pt;}
.y5a{bottom:749.052000pt;}
.y4b{bottom:750.072543pt;}
.y212{bottom:753.843467pt;}
.y26e{bottom:755.935467pt;}
.y199{bottom:756.771067pt;}
.y72{bottom:759.460133pt;}
.y1c{bottom:764.077467pt;}
.yf3{bottom:773.342667pt;}
.y6{bottom:773.594133pt;}
.ybc{bottom:775.632800pt;}
.y26d{bottom:778.975467pt;}
.y198{bottom:779.811067pt;}
.y5b{bottom:779.821733pt;}
.y71{bottom:781.286933pt;}
.y1b{bottom:786.062533pt;}
.y188{bottom:799.584400pt;}
.y26c{bottom:802.015467pt;}
.y197{bottom:802.851067pt;}
.y70{bottom:803.113733pt;}
.yf4{bottom:804.443200pt;}
.y7{bottom:804.587067pt;}
.ybd{bottom:806.646400pt;}
.y1a{bottom:808.047733pt;}
.y5c{bottom:810.591467pt;}
.y25d{bottom:810.762133pt;}
.y130{bottom:813.333600pt;}
.y12d{bottom:813.613333pt;}
.y6f{bottom:824.940533pt;}
.y26b{bottom:825.055467pt;}
.y196{bottom:825.891067pt;}
.y191{bottom:827.997733pt;}
.y19{bottom:830.032800pt;}
.y100{bottom:831.407200pt;}
.y13{bottom:831.457733pt;}
.ycb{bottom:831.972739pt;}
.yc9{bottom:833.534933pt;}
.yf5{bottom:835.543733pt;}
.y8{bottom:835.580000pt;}
.y68{bottom:837.268533pt;}
.y12f{bottom:837.500267pt;}
.ybe{bottom:837.659867pt;}
.y265{bottom:838.682133pt;}
.y18e{bottom:840.091067pt;}
.y5d{bottom:841.361200pt;}
.y21a{bottom:842.243467pt;}
.y217{bottom:842.510133pt;}
.y6e{bottom:846.767333pt;}
.y26a{bottom:848.095467pt;}
.y129{bottom:850.296933pt;}
.y195{bottom:850.637733pt;}
.y262{bottom:850.775467pt;}
.y190{bottom:851.037733pt;}
.y18{bottom:852.017867pt;}
.y264{bottom:861.722133pt;}
.y12e{bottom:863.457067pt;}
.y219{bottom:865.283467pt;}
.y9{bottom:866.560267pt;}
.yf6{bottom:866.631467pt;}
.y213{bottom:868.376800pt;}
.y6d{bottom:868.594133pt;}
.ybf{bottom:868.660667pt;}
.y189{bottom:871.664400pt;}
.y5e{bottom:872.118267pt;}
.y269{bottom:872.842133pt;}
.y17{bottom:874.003067pt;}
.y18f{bottom:875.784400pt;}
.y263{bottom:886.468800pt;}
.y218{bottom:890.030133pt;}
.y6c{bottom:890.420933pt;}
.y16{bottom:895.988133pt;}
.ya{bottom:897.553200pt;}
.yf7{bottom:897.731867pt;}
.y194{bottom:899.211067pt;}
.yc0{bottom:899.674133pt;}
.y5f{bottom:902.888000pt;}
.y6b{bottom:912.247733pt;}
.y15{bottom:917.973333pt;}
.y268{bottom:921.415467pt;}
.y193{bottom:922.251067pt;}
.yb{bottom:928.546133pt;}
.yf8{bottom:928.832400pt;}
.y25e{bottom:929.695467pt;}
.yc1{bottom:930.687733pt;}
.y60{bottom:933.657733pt;}
.y6a{bottom:934.074400pt;}
.y14{bottom:941.586933pt;}
.y18a{bottom:943.744400pt;}
.y267{bottom:944.455467pt;}
.y192{bottom:946.997733pt;}
.y69{bottom:957.518000pt;}
.yc{bottom:959.538933pt;}
.yf9{bottom:959.932800pt;}
.yc2{bottom:961.701200pt;}
.y61{bottom:964.427467pt;}
.y12a{bottom:968.990667pt;}
.y266{bottom:969.202133pt;}
.y214{bottom:982.910133pt;}
.yd{bottom:990.531920pt;}
.yfa{bottom:991.033347pt;}
.yc3{bottom:992.714747pt;}
.y62{bottom:995.197133pt;}
.y18b{bottom:1015.837733pt;}
.ye{bottom:1021.524853pt;}
.yfb{bottom:1022.133840pt;}
.yc4{bottom:1023.728253pt;}
.y63{bottom:1025.966867pt;}
.y25f{bottom:1048.615467pt;}
.yf{bottom:1052.517787pt;}
.yfc{bottom:1053.234320pt;}
.yc5{bottom:1054.741773pt;}
.y64{bottom:1056.736587pt;}
.y17c{bottom:1063.617698pt;}
.y208{bottom:1063.617753pt;}
.y17e{bottom:1063.703926pt;}
.y2c4{bottom:1063.704054pt;}
.y20a{bottom:1063.704217pt;}
.y204{bottom:1063.712174pt;}
.y178{bottom:1063.712175pt;}
.y17a{bottom:1063.798269pt;}
.y206{bottom:1063.798310pt;}
.y49{bottom:1075.401027pt;}
.y252{bottom:1082.682446pt;}
.y254{bottom:1082.768754pt;}
.y24e{bottom:1082.777018pt;}
.y250{bottom:1082.863113pt;}
.y10{bottom:1083.497987pt;}
.yfd{bottom:1084.322040pt;}
.y136{bottom:1085.279067pt;}
.yc6{bottom:1085.742560pt;}
.y1a1{bottom:1087.264400pt;}
.y65{bottom:1087.493693pt;}
.yca{bottom:1093.401013pt;}
.y120{bottom:1093.698880pt;}
.y274{bottom:1097.948800pt;}
.y21f{bottom:1101.510133pt;}
.y135{bottom:1102.928533pt;}
.y1a0{bottom:1104.091067pt;}
.y273{bottom:1114.775467pt;}
.y131{bottom:1116.382533pt;}
.y21e{bottom:1118.336800pt;}
.y19a{bottom:1135.424400pt;}
.y26f{bottom:1171.842133pt;}
.y19b{bottom:1207.504400pt;}
.y285{bottom:1212.895467pt;}
.y1b1{bottom:1213.731067pt;}
.y21b{bottom:1233.843467pt;}
.y132{bottom:1235.076267pt;}
.y284{bottom:1235.935467pt;}
.y1b0{bottom:1236.771067pt;}
.y283{bottom:1258.975467pt;}
.y1af{bottom:1259.811067pt;}
.y19c{bottom:1279.584400pt;}
.y282{bottom:1282.015467pt;}
.y1ae{bottom:1282.851067pt;}
.y1a7{bottom:1284.957733pt;}
.y270{bottom:1290.762133pt;}
.y13c{bottom:1292.640000pt;}
.y27a{bottom:1295.642133pt;}
.y225{bottom:1299.203467pt;}
.y281{bottom:1305.055467pt;}
.y1fe{bottom:1305.891067pt;}
.y1ad{bottom:1307.597733pt;}
.y1a6{bottom:1307.997733pt;}
.y13b{bottom:1316.806800pt;}
.y137{bottom:1317.086400pt;}
.y279{bottom:1318.682133pt;}
.y1a2{bottom:1320.091067pt;}
.y224{bottom:1322.243467pt;}
.y220{bottom:1322.510133pt;}
.y2c0{bottom:1328.095467pt;}
.y280{bottom:1329.802133pt;}
.y1fd{bottom:1330.637733pt;}
.y275{bottom:1330.775467pt;}
.y1a5{bottom:1331.037733pt;}
.y13a{bottom:1340.973467pt;}
.y278{bottom:1341.722133pt;}
.y223{bottom:1345.283467pt;}
.y21c{bottom:1348.376800pt;}
.y19d{bottom:1351.664400pt;}
.y2bf{bottom:1352.842133pt;}
.y133{bottom:1353.770133pt;}
.y1a4{bottom:1354.077733pt;}
.y1fb{bottom:1355.784400pt;}
.y1ac{bottom:1356.171067pt;}
.y277{bottom:1364.762133pt;}
.y139{bottom:1365.140133pt;}
.y2bd{bottom:1366.468800pt;}
.y16c{bottom:1366.930267pt;}
.y222{bottom:1368.323467pt;}
.y24d{bottom:1370.030133pt;}
.y27f{bottom:1378.375467pt;}
.y1a3{bottom:1378.824400pt;}
.y1ab{bottom:1379.211067pt;}
.y276{bottom:1389.508800pt;}
.y138{bottom:1391.097067pt;}
.y221{bottom:1393.070133pt;}
.y27e{bottom:1401.415467pt;}
.y1aa{bottom:1402.251067pt;}
.y271{bottom:1409.695467pt;}
.y19e{bottom:1423.744400pt;}
.y27d{bottom:1424.455467pt;}
.y1a9{bottom:1425.291067pt;}
.y1fc{bottom:1426.997733pt;}
.y27c{bottom:1447.495467pt;}
.y2be{bottom:1449.202133pt;}
.y1a8{bottom:1450.037733pt;}
.y21d{bottom:1462.910187pt;}
.y27b{bottom:1472.242080pt;}
.y134{bottom:1472.463867pt;}
.y19f{bottom:1495.837760pt;}
.y272{bottom:1528.615413pt;}
.y170{bottom:1554.540171pt;}
.y172{bottom:1554.627341pt;}
.y174{bottom:1554.711901pt;}
.y176{bottom:1554.798976pt;}
.y2c1{bottom:1554.799312pt;}
.y202{bottom:1554.799763pt;}
.h41{height:11.789062pt;}
.h60{height:19.874030pt;}
.h65{height:20.236463pt;}
.h42{height:21.963883pt;}
.h48{height:21.964142pt;}
.h58{height:21.964416pt;}
.h5c{height:21.964448pt;}
.h53{height:21.964546pt;}
.h4b{height:21.964648pt;}
.h31{height:21.964702pt;}
.h46{height:21.964746pt;}
.h55{height:21.964768pt;}
.h44{height:21.964772pt;}
.h51{height:21.964795pt;}
.h2f{height:21.964799pt;}
.h5a{height:21.964812pt;}
.h33{height:21.964839pt;}
.h2b{height:21.964852pt;}
.h35{height:21.964866pt;}
.h27{height:21.964869pt;}
.h4a{height:21.964879pt;}
.h2d{height:21.964892pt;}
.h24{height:21.964949pt;}
.h26{height:21.964963pt;}
.h29{height:21.965083pt;}
.h3b{height:27.507812pt;}
.h23{height:30.230027pt;}
.h16{height:31.437500pt;}
.h61{height:31.798448pt;}
.h66{height:32.378345pt;}
.hc{height:33.438271pt;}
.h4{height:33.661445pt;}
.h2{height:33.680831pt;}
.he{height:33.703205pt;}
.h13{height:33.797715pt;}
.h7{height:34.003103pt;}
.h6{height:34.003205pt;}
.h4d{height:34.992188pt;}
.h37{height:35.367188pt;}
.h20{height:36.703391pt;}
.h19{height:38.385417pt;}
.h17{height:39.296875pt;}
.h63{height:39.748061pt;}
.h6a{height:39.909836pt;}
.h12{height:39.909838pt;}
.h1d{height:39.909846pt;}
.h68{height:40.472926pt;}
.h67{height:40.634173pt;}
.h62{height:40.772773pt;}
.hd{height:40.868997pt;}
.h5{height:41.141763pt;}
.h3{height:41.165451pt;}
.hf{height:41.192787pt;}
.h14{height:41.308325pt;}
.h8{height:41.559364pt;}
.h4e{height:42.768229pt;}
.h38{height:43.226562pt;}
.h21{height:44.859712pt;}
.h3e{height:47.156250pt;}
.h3f{height:51.085938pt;}
.h3a{height:55.015625pt;}
.h4c{height:55.268098pt;}
.h36{height:55.268248pt;}
.h57{height:55.268641pt;}
.h43{height:55.492392pt;}
.h49{height:55.493022pt;}
.h59{height:55.493740pt;}
.h5d{height:55.493810pt;}
.h54{height:55.494055pt;}
.h32{height:55.494448pt;}
.h47{height:55.494544pt;}
.h56{height:55.494598pt;}
.h30{height:55.494693pt;}
.h52{height:55.494709pt;}
.h34{height:55.494843pt;}
.h28{height:55.494900pt;}
.h25{height:55.495089pt;}
.h2a{height:55.495422pt;}
.h50{height:56.210749pt;}
.h45{height:56.210924pt;}
.h4f{height:56.210997pt;}
.h5b{height:56.211036pt;}
.h2c{height:56.211149pt;}
.h2e{height:56.211261pt;}
.hb{height:57.014054pt;}
.h40{height:58.945312pt;}
.h1c{height:60.460079pt;}
.h3c{height:62.875000pt;}
.h3d{height:66.804688pt;}
.h10{height:76.354205pt;}
.h1a{height:77.656289pt;}
.h1b{height:78.958155pt;}
.h11{height:151.150133pt;}
.h9{height:164.933061pt;}
.ha{height:219.738133pt;}
.h69{height:287.185320pt;}
.h64{height:287.185385pt;}
.h15{height:407.792000pt;}
.h18{height:408.000000pt;}
.h39{height:430.145333pt;}
.h22{height:451.182600pt;}
.h5e{height:793.700800pt;}
.h5f{height:794.000000pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.h1f{height:1587.333333pt;}
.h1e{height:1587.401333pt;}
.w22{width:11.790676pt;}
.w18{width:11.790707pt;}
.w28{width:11.790729pt;}
.w1c{width:23.608039pt;}
.w29{width:23.608612pt;}
.w1b{width:23.609601pt;}
.w11{width:23.609700pt;}
.w17{width:23.609739pt;}
.w20{width:23.609757pt;}
.w27{width:23.609758pt;}
.w1a{width:23.609759pt;}
.wf{width:23.609761pt;}
.w10{width:23.609793pt;}
.w21{width:23.609806pt;}
.w12{width:23.610323pt;}
.w1f{width:24.673756pt;}
.w26{width:24.674103pt;}
.w1d{width:24.674643pt;}
.w25{width:24.674683pt;}
.w2a{width:24.674697pt;}
.w1e{width:24.674717pt;}
.w24{width:24.674738pt;}
.w15{width:24.674783pt;}
.w13{width:24.674798pt;}
.w14{width:24.674890pt;}
.w16{width:24.675384pt;}
.w5{width:156.057467pt;}
.w2d{width:190.902933pt;}
.w6{width:394.885333pt;}
.wa{width:395.960800pt;}
.w9{width:397.740000pt;}
.w7{width:398.815467pt;}
.w2{width:517.804403pt;}
.w23{width:628.521333pt;}
.wd{width:659.254667pt;}
.w8{width:724.935520pt;}
.w3{width:793.700800pt;}
.w4{width:794.000000pt;}
.w19{width:861.838667pt;}
.w2b{width:1122.519733pt;}
.w2c{width:1122.666667pt;}
.w1{width:1587.333333pt;}
.w0{width:1587.401333pt;}
.we{width:2195.036492pt;}
.wb{width:2245.040000pt;}
.wc{width:2245.333333pt;}
.x0{left:0.000000pt;}
.x19{left:3.619213pt;}
.xcf{left:4.798400pt;}
.x38{left:5.855376pt;}
.x18{left:7.848687pt;}
.x142{left:8.906000pt;}
.x4a{left:10.151401pt;}
.x6b{left:13.008543pt;}
.xbb{left:14.015564pt;}
.x4c{left:15.138067pt;}
.x4b{left:16.818067pt;}
.x49{left:18.551400pt;}
.x6c{left:19.675213pt;}
.x6a{left:21.408547pt;}
.x57{left:23.266000pt;}
.x33{left:24.289000pt;}
.x6d{left:26.341880pt;}
.x5a{left:27.719333pt;}
.x8{left:28.867307pt;}
.x58{left:29.932667pt;}
.x30{left:30.858360pt;}
.x6e{left:33.008547pt;}
.x4{left:35.432307pt;}
.x59{left:36.599333pt;}
.x6f{left:38.741880pt;}
.x60{left:40.321902pt;}
.x2f{left:43.296880pt;}
.xd8{left:45.385067pt;}
.x3{left:47.862560pt;}
.x21{left:49.840413pt;}
.x101{left:52.183413pt;}
.x5{left:54.236707pt;}
.x1e{left:56.358133pt;}
.x13d{left:58.863413pt;}
.x110{left:60.375333pt;}
.xbc{left:62.867760pt;}
.x41{left:67.498067pt;}
.x1d{left:68.698867pt;}
.x61{left:70.355213pt;}
.x92{left:75.393867pt;}
.xc7{left:77.921093pt;}
.x5b{left:79.071400pt;}
.x4e{left:80.612667pt;}
.x71{left:81.928547pt;}
.x2e{left:84.240813pt;}
.x78{left:87.831107pt;}
.x2{left:88.779333pt;}
.x3b{left:91.161307pt;}
.x42{left:95.364733pt;}
.x2d{left:96.679333pt;}
.x62{left:98.221867pt;}
.x113{left:99.535333pt;}
.x1{left:101.209587pt;}
.x156{left:102.194347pt;}
.x3a{left:103.647467pt;}
.x4f{left:108.479333pt;}
.x140{left:113.810080pt;}
.x1c{left:115.952373pt;}
.x72{left:118.861880pt;}
.x13e{left:120.556747pt;}
.x157{left:122.904333pt;}
.x10a{left:126.143413pt;}
.x14a{left:127.263413pt;}
.x1b{left:128.305733pt;}
.x111{left:131.295333pt;}
.x43{left:132.511400pt;}
.x63{left:135.368533pt;}
.x11f{left:143.290133pt;}
.x50{left:145.626000pt;}
.xce{left:151.958400pt;}
.x5c{left:152.938000pt;}
.x73{left:155.795200pt;}
.x158{left:164.338133pt;}
.x170{left:167.581600pt;}
.x44{left:170.698000pt;}
.x64{left:173.555200pt;}
.x91{left:175.781333pt;}
.x51{left:183.812667pt;}
.x159{left:185.061867pt;}
.x5d{left:189.858000pt;}
.x74{left:192.715200pt;}
.x8b{left:194.954667pt;}
.x83{left:197.406400pt;}
.x171{left:199.765600pt;}
.xd7{left:201.238667pt;}
.x15a{left:205.785733pt;}
.x36{left:206.856267pt;}
.x65{left:210.381867pt;}
.x31{left:211.796000pt;}
.x6{left:213.438133pt;}
.x102{left:214.650133pt;}
.x172{left:215.864400pt;}
.x79{left:218.146800pt;}
.x52{left:220.639333pt;}
.x5e{left:226.791333pt;}
.x75{left:229.648533pt;}
.x112{left:230.576000pt;}
.x93{left:231.610667pt;}
.x120{left:234.330133pt;}
.x9a{left:238.789200pt;}
.xbd{left:240.494400pt;}
.x45{left:243.218000pt;}
.x66{left:246.075200pt;}
.x15b{left:247.219467pt;}
.x14b{left:249.490133pt;}
.x53{left:256.332667pt;}
.xe5{left:260.174400pt;}
.x40{left:263.350267pt;}
.x76{left:266.581867pt;}
.x3c{left:268.303867pt;}
.x115{left:278.816000pt;}
.x173{left:280.232400pt;}
.x46{left:281.391333pt;}
.x67{left:284.248533pt;}
.x1f{left:288.621600pt;}
.x54{left:294.506000pt;}
.x174{left:296.331200pt;}
.x5f{left:300.658000pt;}
.x77{left:303.515200pt;}
.x145{left:308.893333pt;}
.x175{left:312.416400pt;}
.x8f{left:314.809333pt;}
.x144{left:316.880000pt;}
.x47{left:318.324667pt;}
.x68{left:321.181867pt;}
.x176{left:328.515200pt;}
.x15c{left:330.086933pt;}
.x55{left:331.439333pt;}
.x116{left:333.576000pt;}
.x32{left:340.840667pt;}
.x177{left:344.614133pt;}
.x117{left:349.162667pt;}
.x15d{left:350.796933pt;}
.x48{left:354.044667pt;}
.x90{left:355.562667pt;}
.x69{left:356.901867pt;}
.x178{left:360.699200pt;}
.x37{left:363.693467pt;}
.x56{left:367.159333pt;}
.x8d{left:369.002667pt;}
.x3d{left:371.078400pt;}
.x179{left:376.798133pt;}
.x114{left:379.669333pt;}
.x7{left:391.431067pt;}
.xb{left:393.426933pt;}
.x4d{left:394.885333pt;}
.x70{left:397.740000pt;}
.xc8{left:409.081067pt;}
.x84{left:410.879067pt;}
.x8c{left:413.769333pt;}
.x17a{left:425.080933pt;}
.x8e{left:428.608000pt;}
.x15e{left:433.678267pt;}
.x103{left:437.956800pt;}
.xc9{left:439.427733pt;}
.x20{left:440.979600pt;}
.x85{left:442.709733pt;}
.x143{left:443.773333pt;}
.xbe{left:448.641067pt;}
.x7a{left:452.373600pt;}
.x15f{left:454.388267pt;}
.x17b{left:457.264933pt;}
.xd4{left:458.758667pt;}
.x104{left:468.303467pt;}
.x17c{left:473.350000pt;}
.x160{left:475.112000pt;}
.x121{left:477.316800pt;}
.xbf{left:478.987733pt;}
.x7b{left:484.204400pt;}
.xd3{left:485.158667pt;}
.xe6{left:488.001067pt;}
.x17d{left:489.448933pt;}
.x9b{left:493.658533pt;}
.x161{left:495.822000pt;}
.xd5{left:501.572000pt;}
.x17e{left:505.547733pt;}
.x122{left:507.663467pt;}
.x162{left:516.545867pt;}
.xe7{left:518.347733pt;}
.x17f{left:521.632933pt;}
.x9c{left:525.489200pt;}
.x163{left:537.255867pt;}
.x139{left:538.154266pt;}
.xfd{left:551.657985pt;}
.x180{left:553.830667pt;}
.x164{left:557.979600pt;}
.x108{left:566.303467pt;}
.xb9{left:568.961991pt;}
.x181{left:569.915733pt;}
.xb6{left:572.339386pt;}
.xc5{left:576.987733pt;}
.x165{left:578.689600pt;}
.x105{left:580.183333pt;}
.xd6{left:581.865333pt;}
.xc0{left:583.867733pt;}
.x182{left:586.014667pt;}
.x80{left:586.996800pt;}
.xc2{left:590.867733pt;}
.x7c{left:594.213200pt;}
.xc1{left:597.547733pt;}
.x166{left:599.413333pt;}
.x7d{left:601.555600pt;}
.x146{left:604.960000pt;}
.xc3{left:606.614400pt;}
.x34{left:615.792400pt;}
.x39{left:617.546983pt;}
.x3e{left:618.809733pt;}
.x167{left:620.137200pt;}
.x183{left:634.297467pt;}
.x86{left:637.875600pt;}
.x7e{left:641.651600pt;}
.x35{left:644.768800pt;}
.x3f{left:647.867600pt;}
.x184{left:650.382667pt;}
.x10b{left:654.143333pt;}
.x14c{left:655.263333pt;}
.xd1{left:659.065333pt;}
.x168{left:661.570933pt;}
.x106{left:662.743333pt;}
.x185{left:665.023067pt;}
.x9{left:668.051867pt;}
.xc{left:672.100933pt;}
.xd0{left:681.078667pt;}
.x169{left:682.280933pt;}
.x22{left:688.817333pt;}
.xd9{left:690.465333pt;}
.xa{left:697.009067pt;}
.xd{left:701.041600pt;}
.x16a{left:703.004667pt;}
.xd2{left:712.092000pt;}
.x23{left:717.566133pt;}
.x16b{left:719.973067pt;}
.x10c{left:722.876667pt;}
.x141{left:738.023333pt;}
.x107{left:742.650000pt;}
.xca{left:748.707733pt;}
.x87{left:751.226933pt;}
.x13f{left:757.810000pt;}
.x123{left:762.330000pt;}
.xc4{left:768.494400pt;}
.x7f{left:771.967200pt;}
.x14d{left:777.490000pt;}
.xe8{left:788.174400pt;}
.x9d{left:792.609600pt;}
.x15{left:806.900933pt;}
.x11{left:813.528800pt;}
.x2a{left:822.872800pt;}
.x10{left:826.078000pt;}
.x27{left:829.390533pt;}
.x12{left:832.513067pt;}
.x26{left:841.731333pt;}
.xf{left:867.386267pt;}
.xe{left:879.935467pt;}
.x16f{left:883.784920pt;}
.x25{left:888.984800pt;}
.x24{left:901.338133pt;}
.x186{left:905.727741pt;}
.x16e{left:910.960533pt;}
.x10d{left:926.396667pt;}
.x16c{left:931.311467pt;}
.xcb{left:937.081067pt;}
.x1a{left:943.452241pt;}
.x16d{left:955.100400pt;}
.x10e{left:956.743333pt;}
.x88{left:964.699600pt;}
.x109{left:965.956667pt;}
.xcc{left:967.427733pt;}
.xc6{left:976.641067pt;}
.x89{left:996.530267pt;}
.x13{left:998.426933pt;}
.x81{left:1006.194133pt;}
.xe9{left:1016.001067pt;}
.x124{left:1035.663333pt;}
.x82{left:1038.024800pt;}
.xea{left:1046.347733pt;}
.x9e{left:1047.478933pt;}
.x28{left:1066.554933pt;}
.x13a{left:1069.166743pt;}
.x13c{left:1074.975257pt;}
.x9f{left:1079.309600pt;}
.xfe{left:1088.573272pt;}
.x129{left:1094.303333pt;}
.x100{left:1095.294612pt;}
.x125{left:1101.183333pt;}
.xee{left:1104.987733pt;}
.x126{left:1108.183333pt;}
.xeb{left:1111.867733pt;}
.x11c{left:1114.956667pt;}
.xdf{left:1119.334400pt;}
.xba{left:1120.354080pt;}
.x118{left:1121.836667pt;}
.xb7{left:1123.731271pt;}
.xda{left:1126.214400pt;}
.x119{left:1128.836667pt;}
.xdc{left:1133.214400pt;}
.xec{left:1134.374400pt;}
.xdb{left:1139.894400pt;}
.xa4{left:1140.817333pt;}
.x10f{left:1142.088000pt;}
.xa0{left:1148.033733pt;}
.x14{left:1152.112800pt;}
.xcd{left:1153.136000pt;}
.xa1{left:1155.376000pt;}
.xdd{left:1158.001067pt;}
.x14e{left:1174.210000pt;}
.x152{left:1178.770000pt;}
.x97{left:1183.626533pt;}
.x127{left:1187.756667pt;}
.x29{left:1191.338933pt;}
.xa2{left:1194.157467pt;}
.xae{left:1196.702800pt;}
.x94{left:1198.185200pt;}
.x8a{left:1212.088000pt;}
.x128{left:1263.796667pt;}
.x95{left:1264.727600pt;}
.x11a{left:1271.756667pt;}
.x132{left:1277.170000pt;}
.x14f{left:1278.956667pt;}
.xed{left:1289.641067pt;}
.x153{left:1292.330000pt;}
.xf8{left:1303.014400pt;}
.xa3{left:1318.599333pt;}
.xaf{left:1332.626533pt;}
.x11b{left:1430.264000pt;}
.x16{left:1456.672000pt;}
.x2b{left:1461.849333pt;}
.x12a{left:1480.250667pt;}
.x17{left:1485.905333pt;}
.x2c{left:1490.598667pt;}
.x133{left:1506.997333pt;}
.x12b{left:1510.597333pt;}
.x96{left:1514.352000pt;}
.xf9{left:1517.681333pt;}
.xef{left:1521.281333pt;}
.x134{left:1537.344000pt;}
.xa5{left:1545.637333pt;}
.xfa{left:1548.028000pt;}
.xde{left:1569.801333pt;}
.xb0{left:1573.692000pt;}
.xa6{left:1577.468000pt;}
.x13b{left:1593.553196pt;}
.xb1{left:1605.522667pt;}
.x12f{left:1622.304000pt;}
.xff{left:1624.620414pt;}
.x12c{left:1629.184000pt;}
.xf5{left:1632.988000pt;}
.x12d{left:1636.184000pt;}
.xf0{left:1639.868000pt;}
.x150{left:1642.864000pt;}
.xf2{left:1646.868000pt;}
.xf1{left:1653.548000pt;}
.xf3{left:1662.374667pt;}
.xb8{left:1677.701472pt;}
.xab{left:1694.637333pt;}
.xa7{left:1701.854667pt;}
.x154{left:1706.770667pt;}
.xa8{left:1709.196000pt;}
.x12e{left:1715.757333pt;}
.x135{left:1721.570667pt;}
.xa9{left:1747.977333pt;}
.xb2{left:1750.522667pt;}
.x11d{left:1792.530667pt;}
.x136{left:1805.170667pt;}
.x151{left:1806.957333pt;}
.xf4{left:1817.641333pt;}
.x155{left:1820.330667pt;}
.x11e{left:1822.864000pt;}
.xfb{left:1831.014667pt;}
.xaa{left:1872.420000pt;}
.xb3{left:1886.446667pt;}
.x98{left:1894.334667pt;}
.x99{left:1926.152000pt;}
.x130{left:2008.250667pt;}
.x147{left:2011.877333pt;}
.x149{left:2017.464000pt;}
.xf6{left:2018.934667pt;}
.x148{left:2020.797333pt;}
.x137{left:2034.997333pt;}
.xe0{left:2036.908000pt;}
.x131{left:2038.597333pt;}
.xe4{left:2042.868000pt;}
.xe3{left:2043.974667pt;}
.xe2{left:2045.081333pt;}
.xf7{left:2049.281333pt;}
.x138{left:2065.344000pt;}
.xe1{left:2067.241333pt;}
.xfc{left:2076.028000pt;}
.xac{left:2099.458667pt;}
.xb4{left:2127.513333pt;}
.xad{left:2131.289333pt;}
.xb5{left:2159.344000pt;}
}




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