
    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_cdeac35dc9995d633610f8f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_98e312eceeff64b8a6c5ab76.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0eb09cf08b2fd6356b2047a0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3638d434700602ea4abd4574.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943000;font-style:normal;font-weight: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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1cedbe820541e56b46574a4d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.191000;font-style:normal;font-weight: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_2d8d7dc8657c7eadf2edb6ab.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933000;font-style:normal;font-weight: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_a24d9b48d278182e0e2fb309.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.894000;font-style:normal;font-weight: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_eca1cac5d01c0e4b3632ad22.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.729000;font-style:normal;font-weight: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_49d7d5225ec1fb1ac8917a04.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.014160;font-style:normal;font-weight: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_51f27c049bc379acf0ba9b72.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.200684;font-style:normal;font-weight: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_1a34c54c06d949782ac9123e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.206055;font-style:normal;font-weight: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_8dc7b320cdf44eeaed88cefb.woff2')format("woff");}.fff{font-family:fff;line-height:0.666000;font-style:normal;font-weight: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_972fd22bdf9a212b50b318dd.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.014160;font-style:normal;font-weight: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_9b74840332b9ac944e0b2f49.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.200684;font-style:normal;font-weight: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_42b40e15c9d242ab9c4de179.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.206055;font-style:normal;font-weight: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_49d7d5225ec1fb1ac8917a04.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.014160;font-style:normal;font-weight: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_bb1f1c2a9f2b1ba0abd3aa3c.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.200684;font-style:normal;font-weight: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_610f25508d4f2e02851e2ee6.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.206055;font-style:normal;font-weight: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_050c437cd42a1d2ee38771c3.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.014160;font-style:normal;font-weight: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_287f03cd115cd13ba3010774.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.200684;font-style:normal;font-weight: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_021b29b1c7be44ae98bd4070.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.206055;font-style:normal;font-weight: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_4b9e54474a7fc24075e687fe.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.014160;font-style:normal;font-weight: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_96b340fe427f195e211e8741.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.200684;font-style:normal;font-weight: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_6617ca500c6f2a4e4159c0e3.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.206055;font-style:normal;font-weight: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_f59a6422386bfaaf4bcafb16.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.014160;font-style:normal;font-weight: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_a201c9affb461189275d7e0f.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.200684;font-style:normal;font-weight: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_7f14001d49a81cc81c85b9a9.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.206055;font-style:normal;font-weight: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_f59a6422386bfaaf4bcafb16.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.014160;font-style:normal;font-weight: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_a201c9affb461189275d7e0f.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.200684;font-style:normal;font-weight: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_7f14001d49a81cc81c85b9a9.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.206055;font-style:normal;font-weight: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_f59a6422386bfaaf4bcafb16.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.014160;font-style:normal;font-weight: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_a201c9affb461189275d7e0f.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.200684;font-style:normal;font-weight: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_7f14001d49a81cc81c85b9a9.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.206055;font-style:normal;font-weight: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_18616cde9b6629651d83d112.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.014160;font-style:normal;font-weight: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_e5251b7fa38b93a09afd5023.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.200684;font-style:normal;font-weight: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_5d71df791a193d3745fdfb6e.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.206055;font-style:normal;font-weight: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_d3f90690ee7f92af0612f752.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.014160;font-style:normal;font-weight: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_8c964fc6edd2fc28a8e73cf8.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.200684;font-style:normal;font-weight: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_8fb82d9ce3b794660a909eae.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.206055;font-style:normal;font-weight: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_d3f90690ee7f92af0612f752.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.014160;font-style:normal;font-weight: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_4cce06f5b5cc15917e43c165.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.200684;font-style:normal;font-weight: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_40be4810d7161be7b0aab353.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.206055;font-style:normal;font-weight: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_d3f90690ee7f92af0612f752.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.014160;font-style:normal;font-weight: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_4cce06f5b5cc15917e43c165.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.200684;font-style:normal;font-weight: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_40be4810d7161be7b0aab353.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.206055;font-style:normal;font-weight: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_3850be56f31f49d9b9e48b48.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.014160;font-style:normal;font-weight: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_b40ace53716bf2c6ee87d8dd.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.200684;font-style:normal;font-weight: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_3960eab47b0fe8dcc77b7acf.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.206055;font-style:normal;font-weight: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_bfff049a2a44035efdb1b660.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m28{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-10.494000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:14.400054px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v9{vertical-align:24.684000px;}
.v5{vertical-align:32.874000px;}
.va{vertical-align:39.156000px;}
.v6{vertical-align:52.410000px;}
.v7{vertical-align:65.754000px;}
.lse{letter-spacing:0.000000px;}
.ls6e{letter-spacing:0.000088px;}
.ls71{letter-spacing:0.000292px;}
.ls5e{letter-spacing:0.000566px;}
.ls5c{letter-spacing:0.000800px;}
.ls58{letter-spacing:0.001036px;}
.ls25{letter-spacing:0.001133px;}
.lsa{letter-spacing:0.001932px;}
.ls19{letter-spacing:0.001996px;}
.ls5f{letter-spacing:0.002045px;}
.ls68{letter-spacing:0.002053px;}
.ls18{letter-spacing:0.002074px;}
.ls6c{letter-spacing:0.002382px;}
.ls4d{letter-spacing:0.002400px;}
.ls6f{letter-spacing:0.002458px;}
.ls5a{letter-spacing:0.002461px;}
.ls5{letter-spacing:0.002725px;}
.ls73{letter-spacing:0.002841px;}
.ls72{letter-spacing:0.003040px;}
.ls26{letter-spacing:0.003178px;}
.lsb{letter-spacing:0.003488px;}
.ls6d{letter-spacing:0.003490px;}
.ls1f{letter-spacing:0.003579px;}
.ls0{letter-spacing:0.004200px;}
.ls6b{letter-spacing:0.004376px;}
.ls4{letter-spacing:0.004766px;}
.ls61{letter-spacing:0.004800px;}
.ls39{letter-spacing:0.055989px;}
.ls3d{letter-spacing:0.303408px;}
.ls3c{letter-spacing:0.303543px;}
.ls37{letter-spacing:0.303682px;}
.ls4b{letter-spacing:0.309157px;}
.ls51{letter-spacing:0.318030px;}
.ls50{letter-spacing:0.318323px;}
.ls48{letter-spacing:0.318574px;}
.ls41{letter-spacing:0.318720px;}
.ls40{letter-spacing:0.318862px;}
.ls42{letter-spacing:0.318867px;}
.ls2f{letter-spacing:0.383499px;}
.ls1b{letter-spacing:0.391887px;}
.ls1e{letter-spacing:0.392027px;}
.ls1d{letter-spacing:0.392161px;}
.ls32{letter-spacing:0.392585px;}
.ls33{letter-spacing:0.392589px;}
.ls34{letter-spacing:0.392724px;}
.ls55{letter-spacing:0.411481px;}
.ls53{letter-spacing:0.411623px;}
.ls57{letter-spacing:0.411770px;}
.ls49{letter-spacing:0.429890px;}
.ls2a{letter-spacing:0.431224px;}
.ls28{letter-spacing:0.431229px;}
.ls2b{letter-spacing:0.431378px;}
.ls24{letter-spacing:0.470832px;}
.ls38{letter-spacing:0.499217px;}
.ls3b{letter-spacing:0.499352px;}
.ls3e{letter-spacing:0.499492px;}
.ls52{letter-spacing:0.523352px;}
.ls47{letter-spacing:0.524178px;}
.ls4c{letter-spacing:0.524320px;}
.ls3f{letter-spacing:0.524325px;}
.ls46{letter-spacing:0.524466px;}
.ls56{letter-spacing:0.598834px;}
.ls15{letter-spacing:0.648088px;}
.ls1c{letter-spacing:1.112040px;}
.ls31{letter-spacing:1.112603px;}
.ls54{letter-spacing:1.167642px;}
.ls44{letter-spacing:1.185909px;}
.ls36{letter-spacing:1.219370px;}
.ls29{letter-spacing:1.223244px;}
.lsf{letter-spacing:1.275394px;}
.ls4f{letter-spacing:1.279225px;}
.ls43{letter-spacing:1.280339px;}
.ls4a{letter-spacing:1.280344px;}
.ls35{letter-spacing:1.734327px;}
.ls45{letter-spacing:1.821048px;}
.ls7{letter-spacing:1.861130px;}
.ls10{letter-spacing:2.988600px;}
.ls3{letter-spacing:2.989200px;}
.ls4e{letter-spacing:2.994600px;}
.ls14{letter-spacing:3.507900px;}
.ls13{letter-spacing:3.513900px;}
.ls3a{letter-spacing:5.334413px;}
.ls8{letter-spacing:10.461300px;}
.lsd{letter-spacing:11.954850px;}
.ls66{letter-spacing:13.354482px;}
.ls59{letter-spacing:13.448400px;}
.ls62{letter-spacing:13.454400px;}
.ls27{letter-spacing:13.509286px;}
.ls60{letter-spacing:13.511046px;}
.ls65{letter-spacing:13.638546px;}
.ls5d{letter-spacing:13.638905px;}
.ls69{letter-spacing:14.191576px;}
.ls2e{letter-spacing:14.226593px;}
.ls1a{letter-spacing:14.585246px;}
.ls5b{letter-spacing:14.920988px;}
.ls2{letter-spacing:14.948100px;}
.ls21{letter-spacing:15.657483px;}
.ls22{letter-spacing:15.663483px;}
.ls20{letter-spacing:15.692725px;}
.ls12{letter-spacing:16.434600px;}
.ls11{letter-spacing:16.440600px;}
.ls70{letter-spacing:16.832753px;}
.ls64{letter-spacing:16.933379px;}
.ls6a{letter-spacing:17.703341px;}
.ls6{letter-spacing:17.935200px;}
.ls63{letter-spacing:18.032753px;}
.ls2c{letter-spacing:18.351109px;}
.ls67{letter-spacing:19.879812px;}
.ls1{letter-spacing:57.415200px;}
.ls9{letter-spacing:62.761200px;}
.lsc{letter-spacing:64.321654px;}
.ls23{letter-spacing:91.237133px;}
.ls30{letter-spacing:114.863513px;}
.ls17{letter-spacing:246.712934px;}
.ls16{letter-spacing:250.264934px;}
.ls2d{letter-spacing:798.142968px;}
.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;}
}
.ws82{word-spacing:-15.418755px;}
.ws1{word-spacing:-14.943900px;}
.wsa7{word-spacing:-14.717903px;}
.ws7b{word-spacing:-14.565426px;}
.ws56{word-spacing:-14.017050px;}
.ws95{word-spacing:-14.016488px;}
.ws45{word-spacing:-13.449600px;}
.wsa6{word-spacing:-13.299221px;}
.ws9e{word-spacing:-13.298867px;}
.ws7a{word-spacing:-13.011761px;}
.ws97{word-spacing:-12.665588px;}
.ws81{word-spacing:-12.446404px;}
.ws2f{word-spacing:-11.955150px;}
.wsa4{word-spacing:-11.880658px;}
.ws9d{word-spacing:-11.880304px;}
.ws4{word-spacing:-11.357400px;}
.ws30{word-spacing:-11.314913px;}
.ws86{word-spacing:-11.314575px;}
.wsc{word-spacing:-10.460700px;}
.ws57{word-spacing:-8.443980px;}
.ws96{word-spacing:-8.443699px;}
.wsa5{word-spacing:-8.156886px;}
.ws9f{word-spacing:-8.156614px;}
.ws98{word-spacing:-7.768204px;}
.ws75{word-spacing:-3.168107px;}
.wsbc{word-spacing:-3.108331px;}
.ws77{word-spacing:-3.048556px;}
.wsc9{word-spacing:-2.367130px;}
.wsb1{word-spacing:-2.151922px;}
.ws37{word-spacing:-1.972595px;}
.ws68{word-spacing:-1.912819px;}
.ws9{word-spacing:-1.908367px;}
.wsa9{word-spacing:-1.853044px;}
.wsc8{word-spacing:-1.829146px;}
.ws66{word-spacing:-1.793268px;}
.wsfe{word-spacing:-1.775347px;}
.ws5e{word-spacing:-1.554166px;}
.ws4f{word-spacing:-1.494390px;}
.ws7f{word-spacing:-1.374839px;}
.wsff{word-spacing:-1.344960px;}
.ws8{word-spacing:-1.322630px;}
.ws63{word-spacing:-1.075961px;}
.ws38{word-spacing:-1.016185px;}
.ws87{word-spacing:-0.956410px;}
.wsd2{word-spacing:-0.860774px;}
.wsb2{word-spacing:-0.836858px;}
.ws88{word-spacing:-0.777083px;}
.wsaa{word-spacing:-0.717307px;}
.wsfc{word-spacing:-0.699379px;}
.ws93{word-spacing:-0.657532px;}
.wsbb{word-spacing:-0.537980px;}
.wsae{word-spacing:-0.478205px;}
.wsa0{word-spacing:-0.430387px;}
.ws92{word-spacing:-0.418429px;}
.ws7c{word-spacing:-0.376589px;}
.ws25{word-spacing:-0.358654px;}
.ws5b{word-spacing:-0.298878px;}
.ws23{word-spacing:-0.239102px;}
.ws43{word-spacing:-0.215194px;}
.ws35{word-spacing:-0.179327px;}
.ws46{word-spacing:-0.161395px;}
.ws2d{word-spacing:-0.119551px;}
.ws1d{word-spacing:-0.107597px;}
.ws2{word-spacing:-0.059776px;}
.ws1e{word-spacing:-0.053798px;}
.ws18{word-spacing:-0.047821px;}
.wse4{word-spacing:-0.008976px;}
.wsfb{word-spacing:-0.007757px;}
.wsfd{word-spacing:-0.007066px;}
.wsf5{word-spacing:-0.007046px;}
.ws7{word-spacing:-0.003625px;}
.ws6{word-spacing:-0.003457px;}
.wscd{word-spacing:-0.003312px;}
.wsee{word-spacing:-0.003043px;}
.wsf1{word-spacing:-0.002976px;}
.ws2e{word-spacing:-0.002956px;}
.wsd9{word-spacing:-0.002851px;}
.ws5{word-spacing:-0.002282px;}
.wsdc{word-spacing:-0.001757px;}
.wse9{word-spacing:-0.001517px;}
.wsf0{word-spacing:-0.001421px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:0.001225px;}
.wsb{word-spacing:0.001844px;}
.ws4e{word-spacing:0.053798px;}
.ws55{word-spacing:0.059776px;}
.ws1c{word-spacing:0.107597px;}
.ws3f{word-spacing:0.119551px;}
.ws17{word-spacing:0.143462px;}
.ws49{word-spacing:0.161395px;}
.ws33{word-spacing:0.179327px;}
.wsd{word-spacing:0.209214px;}
.wsd6{word-spacing:0.215194px;}
.ws2c{word-spacing:0.239102px;}
.wsde{word-spacing:0.268627px;}
.ws9c{word-spacing:0.268992px;}
.wsf{word-spacing:0.292900px;}
.ws2b{word-spacing:0.298878px;}
.wsec{word-spacing:0.322790px;}
.ws40{word-spacing:0.358654px;}
.ws27{word-spacing:0.418429px;}
.wsdb{word-spacing:0.430387px;}
.ws7e{word-spacing:0.478205px;}
.wsf2{word-spacing:0.484186px;}
.ws4d{word-spacing:0.519600px;}
.ws47{word-spacing:0.521770px;}
.ws4a{word-spacing:0.525600px;}
.wse8{word-spacing:0.537984px;}
.wsf7{word-spacing:0.591782px;}
.ws59{word-spacing:0.597756px;}
.wsf3{word-spacing:0.645581px;}
.ws3c{word-spacing:0.657532px;}
.ws28{word-spacing:0.717307px;}
.ws64{word-spacing:0.750600px;}
.ws1f{word-spacing:0.753178px;}
.ws7d{word-spacing:0.777083px;}
.wsf6{word-spacing:0.806976px;}
.wsbe{word-spacing:0.836858px;}
.wsb4{word-spacing:0.896634px;}
.wsad{word-spacing:0.956410px;}
.ws58{word-spacing:1.075961px;}
.wscc{word-spacing:1.075968px;}
.wscf{word-spacing:1.129766px;}
.ws26{word-spacing:1.135736px;}
.wsba{word-spacing:1.195512px;}
.ws20{word-spacing:1.237363px;}
.ws36{word-spacing:1.255288px;}
.wsc1{word-spacing:1.315063px;}
.ws53{word-spacing:1.374839px;}
.ws83{word-spacing:1.434614px;}
.wsd1{word-spacing:1.452557px;}
.ws32{word-spacing:1.494390px;}
.ws2a{word-spacing:1.613941px;}
.wsd3{word-spacing:1.613952px;}
.ws29{word-spacing:1.673717px;}
.ws1b{word-spacing:1.721549px;}
.wsb0{word-spacing:1.733492px;}
.wsb8{word-spacing:1.793268px;}
.ws85{word-spacing:1.853044px;}
.wsfa{word-spacing:1.882944px;}
.wsb6{word-spacing:1.912819px;}
.ws67{word-spacing:1.972595px;}
.wse{word-spacing:2.008454px;}
.ws60{word-spacing:2.092146px;}
.ws5f{word-spacing:2.151922px;}
.ws50{word-spacing:2.271473px;}
.ws3b{word-spacing:2.331248px;}
.wsef{word-spacing:2.420928px;}
.ws3d{word-spacing:2.450800px;}
.ws34{word-spacing:2.510575px;}
.ws3e{word-spacing:2.570351px;}
.ws21{word-spacing:2.582323px;}
.wsf4{word-spacing:2.636122px;}
.ws51{word-spacing:2.689902px;}
.ws9b{word-spacing:2.689920px;}
.ws9a{word-spacing:2.743718px;}
.ws52{word-spacing:2.749678px;}
.wsb9{word-spacing:2.869229px;}
.ws19{word-spacing:2.869236px;}
.wsc0{word-spacing:2.988780px;}
.wsb5{word-spacing:3.048556px;}
.ws99{word-spacing:3.066509px;}
.ws80{word-spacing:3.168107px;}
.wscb{word-spacing:3.219821px;}
.wsd5{word-spacing:3.224266px;}
.wsda{word-spacing:3.226378px;}
.wse3{word-spacing:3.227069px;}
.ws71{word-spacing:3.227882px;}
.wsce{word-spacing:3.227904px;}
.wsdf{word-spacing:3.229680px;}
.wse7{word-spacing:3.230083px;}
.wsd7{word-spacing:3.230131px;}
.wsed{word-spacing:3.231168px;}
.wsea{word-spacing:3.335501px;}
.ws84{word-spacing:3.347434px;}
.ws5a{word-spacing:3.407209px;}
.ws69{word-spacing:3.466985px;}
.wsc7{word-spacing:3.496896px;}
.wsbf{word-spacing:3.526760px;}
.wsc6{word-spacing:3.550694px;}
.ws22{word-spacing:3.586536px;}
.wse0{word-spacing:3.604493px;}
.ws74{word-spacing:3.706087px;}
.wsa3{word-spacing:3.712090px;}
.wsa2{word-spacing:3.765888px;}
.wsf8{word-spacing:3.819686px;}
.wsc5{word-spacing:3.873485px;}
.wsac{word-spacing:3.945190px;}
.wsa1{word-spacing:4.088678px;}
.ws1a{word-spacing:4.196275px;}
.ws54{word-spacing:4.244068px;}
.wseb{word-spacing:4.250074px;}
.wse2{word-spacing:4.572864px;}
.wsb3{word-spacing:4.662497px;}
.ws73{word-spacing:4.722272px;}
.ws94{word-spacing:4.782048px;}
.ws61{word-spacing:4.841824px;}
.wsf9{word-spacing:4.841856px;}
.ws62{word-spacing:4.901599px;}
.ws31{word-spacing:5.021150px;}
.wsdd{word-spacing:5.110848px;}
.ws79{word-spacing:5.140702px;}
.wsca{word-spacing:5.326042px;}
.ws72{word-spacing:5.499355px;}
.ws39{word-spacing:5.559131px;}
.ws41{word-spacing:5.618906px;}
.ws42{word-spacing:5.678682px;}
.ws76{word-spacing:5.858009px;}
.wsc2{word-spacing:5.917784px;}
.wsab{word-spacing:5.977560px;}
.ws15{word-spacing:6.067206px;}
.ws24{word-spacing:6.097111px;}
.ws16{word-spacing:6.150892px;}
.wsc4{word-spacing:6.276438px;}
.ws3a{word-spacing:6.455765px;}
.wse6{word-spacing:6.455808px;}
.wsaf{word-spacing:6.575316px;}
.wsa8{word-spacing:6.635092px;}
.wsd0{word-spacing:7.047590px;}
.ws6a{word-spacing:7.232848px;}
.wsd4{word-spacing:7.477978px;}
.wsb7{word-spacing:7.591501px;}
.ws78{word-spacing:7.651277px;}
.wsbd{word-spacing:7.890379px;}
.wsc3{word-spacing:8.069706px;}
.ws13{word-spacing:8.661460px;}
.wse1{word-spacing:14.525568px;}
.wsa{word-spacing:15.483541px;}
.ws10{word-spacing:16.142252px;}
.ws11{word-spacing:16.151321px;}
.ws12{word-spacing:17.699504px;}
.wse5{word-spacing:18.937037px;}
.ws14{word-spacing:27.448877px;}
.wsd8{word-spacing:48.418560px;}
.ws6c{word-spacing:134.427888px;}
.ws91{word-spacing:142.189171px;}
.ws8b{word-spacing:142.242970px;}
.ws5d{word-spacing:153.755827px;}
.ws6b{word-spacing:162.055008px;}
.ws5c{word-spacing:179.148672px;}
.ws8f{word-spacing:221.413843px;}
.ws89{word-spacing:228.889843px;}
.ws70{word-spacing:235.314202px;}
.ws4c{word-spacing:248.119910px;}
.ws6f{word-spacing:248.763802px;}
.ws6e{word-spacing:251.453722px;}
.ws6d{word-spacing:251.507520px;}
.ws65{word-spacing:301.508126px;}
.ws8d{word-spacing:314.021261px;}
.ws44{word-spacing:317.141568px;}
.ws8c{word-spacing:327.470861px;}
.ws8e{word-spacing:340.920461px;}
.ws4b{word-spacing:415.269850px;}
.ws90{word-spacing:447.172301px;}
.ws48{word-spacing:455.457254px;}
.ws8a{word-spacing:477.084211px;}
._54{margin-left:-8.368584px;}
._2{margin-left:-6.641840px;}
._5{margin-left:-4.644551px;}
._8{margin-left:-2.994246px;}
._3{margin-left:-1.322630px;}
._4{width:1.091170px;}
._0{width:2.994246px;}
._15{width:4.100714px;}
._14{width:5.101768px;}
._16{width:6.171980px;}
._13{width:7.338552px;}
._28{width:8.438234px;}
._17{width:9.690162px;}
._18{width:10.869973px;}
._52{width:11.952233px;}
._7{width:12.971268px;}
._1c{width:14.281213px;}
._a{width:15.314497px;}
._d{width:16.828016px;}
._b{width:18.721843px;}
._53{width:19.912024px;}
._e{width:20.927578px;}
._c{width:22.465402px;}
._1a{width:24.131396px;}
._6{width:25.940136px;}
._27{width:27.538606px;}
._19{width:28.756819px;}
._4d{width:30.074694px;}
._1b{width:31.621292px;}
._9{width:32.637384px;}
._3d{width:33.713438px;}
._4e{width:35.626258px;}
._f{width:36.650010px;}
._80{width:38.305781px;}
._3e{width:40.766959px;}
._4f{width:42.388468px;}
._1{width:54.408834px;}
._82{width:61.868160px;}
._81{width:88.767360px;}
._34{width:108.772308px;}
._33{width:109.893672px;}
._32{width:113.287958px;}
._30{width:118.334096px;}
._31{width:119.455460px;}
._40{width:133.810067px;}
._2d{width:135.619996px;}
._2c{width:138.366900px;}
._3c{width:140.306227px;}
._2e{width:153.141090px;}
._2f{width:155.356003px;}
._3b{width:161.233805px;}
._35{width:162.298752px;}
._2b{width:168.674360px;}
._29{width:193.042813px;}
._39{width:195.610982px;}
._2a{width:196.631177px;}
._38{width:206.047872px;}
._3a{width:209.060582px;}
._36{width:210.513139px;}
._22{width:212.180890px;}
._37{width:213.579648px;}
._66{width:218.421504px;}
._7e{width:220.564542px;}
._25{width:237.084413px;}
._75{width:260.426338px;}
._5e{width:266.354144px;}
._7a{width:270.293069px;}
._76{width:274.753304px;}
._7c{width:283.697868px;}
._79{width:289.284094px;}
._5b{width:295.150192px;}
._5f{width:296.630972px;}
._77{width:301.664960px;}
._78{width:302.756130px;}
._7b{width:303.877449px;}
._26{width:306.366365px;}
._24{width:307.995840px;}
._5c{width:311.178510px;}
._59{width:312.917281px;}
._62{width:315.719158px;}
._5d{width:318.513724px;}
._60{width:320.140004px;}
._44{width:322.575206px;}
._20{width:324.708874px;}
._4b{width:326.143789px;}
._63{width:329.905289px;}
._7d{width:331.112262px;}
._64{width:334.777747px;}
._45{width:336.024806px;}
._42{width:339.844493px;}
._71{width:340.920461px;}
._49{width:342.749606px;}
._5a{width:345.970988px;}
._61{width:347.062158px;}
._1f{width:352.188964px;}
._68{width:354.370061px;}
._6a{width:355.392230px;}
._47{width:357.508256px;}
._69{width:360.180288px;}
._67{width:366.151910px;}
._6c{width:368.949427px;}
._21{width:370.455782px;}
._6b{width:372.715315px;}
._6d{width:381.914842px;}
._6e{width:387.348480px;}
._43{width:392.674522px;}
._72{width:399.880214px;}
._4c{width:412.597818px;}
._57{width:419.494169px;}
._48{width:430.763789px;}
._1d{width:432.216346px;}
._74{width:442.481895px;}
._23{width:454.542682px;}
._1e{width:467.777088px;}
._70{width:472.511347px;}
._46{width:559.234368px;}
._3f{width:583.874035px;}
._4a{width:601.358515px;}
._41{width:615.884083px;}
._73{width:662.851227px;}
._58{width:671.541066px;}
._6f{width:696.796877px;}
._65{width:714.765542px;}
._10{width:985.749797px;}
._56{width:2032.987088px;}
._12{width:2055.164317px;}
._7f{width:2134.421064px;}
._51{width:2260.416222px;}
._50{width:2362.950383px;}
._55{width:2546.396700px;}
._11{width:2570.306700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(12,11,11);}
.fc0{color:rgb(125,70,38);}
.fs1d{font-size:31.072815px;}
.fs21{font-size:32.626456px;}
.fs25{font-size:32.627543px;}
.fs1c{font-size:33.774795px;}
.fsf{font-size:33.775920px;}
.fs26{font-size:35.464716px;}
.fs7{font-size:35.865600px;}
.fs17{font-size:37.153512px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fsd{font-size:43.600200px;}
.fs19{font-size:45.258300px;}
.fsa{font-size:45.259650px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fs10{font-size:47.337600px;}
.fs1e{font-size:47.521215px;}
.fs22{font-size:47.522633px;}
.fs8{font-size:47.820600px;}
.fs15{font-size:49.785615px;}
.fs1b{font-size:50.662350px;}
.fsc{font-size:50.663700px;}
.fs12{font-size:52.047045px;}
.fs20{font-size:53.195468px;}
.fs24{font-size:53.196885px;}
.fs9{font-size:53.798400px;}
.fs18{font-size:55.730070px;}
.fse{font-size:56.058000px;}
.fs1a{font-size:56.065950px;}
.fsb{font-size:56.068200px;}
.fs14{font-size:58.261702px;}
.fs1f{font-size:58.869248px;}
.fs23{font-size:58.871610px;}
.fs1{font-size:59.775600px;}
.fs16{font-size:61.675020px;}
.fs11{font-size:62.286600px;}
.fs13{font-size:64.475843px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y2a1{bottom:-757.448948px;}
.y2c3{bottom:-742.160423px;}
.y1ed{bottom:-737.762951px;}
.yc9{bottom:-728.054951px;}
.y20e{bottom:-726.233951px;}
.yea{bottom:-668.835002px;}
.y2e6{bottom:-665.993447px;}
.ye9{bottom:-650.835002px;}
.y2e5{bottom:-646.904477px;}
.y230{bottom:-635.153994px;}
.y1b3{bottom:-632.670996px;}
.ye8{bottom:-632.655033px;}
.y2e4{bottom:-628.193447px;}
.y22f{bottom:-613.014002px;}
.ye7{bottom:-610.335002px;}
.y2e3{bottom:-609.104477px;}
.y22e{bottom:-593.933978px;}
.y2e2{bottom:-590.015509px;}
.y1f3{bottom:-578.822987px;}
.y56{bottom:-577.582451px;}
.ye6{bottom:-575.234989px;}
.y22d{bottom:-575.033992px;}
.y2e1{bottom:-571.115509px;}
.y1f2{bottom:-557.582981px;}
.ye5{bottom:-557.415027px;}
.y22c{bottom:-555.953967px;}
.y2e0{bottom:-552.026469px;}
.ye4{bottom:-539.234989px;}
.y22b{bottom:-536.874011px;}
.y2df{bottom:-533.126469px;}
.ye3{bottom:-521.055019px;}
.y22a{bottom:-517.974025px;}
.y2de{bottom:-514.226469px;}
.y75{bottom:-510.802467px;}
.ye2{bottom:-503.055019px;}
.y229{bottom:-498.894000px;}
.y2dd{bottom:-495.137501px;}
.y74{bottom:-492.622498px;}
.ye1{bottom:-484.874981px;}
.y113{bottom:-480.092951px;}
.y228{bottom:-479.813975px;}
.y2dc{bottom:-476.237501px;}
.y73{bottom:-474.622498px;}
.y2a9{bottom:-474.137988px;}
.ye0{bottom:-467.055019px;}
.y227{bottom:-460.734019px;}
.y2db{bottom:-457.148461px;}
.y2a8{bottom:-457.128032px;}
.y72{bottom:-456.442527px;}
.y1f8{bottom:-455.627951px;}
.ydf{bottom:-448.874981px;}
.y226{bottom:-441.834033px;}
.y2a7{bottom:-440.118002px;}
.y71{bottom:-438.262489px;}
.y2da{bottom:-438.248461px;}
.y1d4{bottom:-435.067080px;}
.yde{bottom:-430.874981px;}
.y225{bottom:-422.033992px;}
.y70{bottom:-420.442527px;}
.y2d9{bottom:-419.348461px;}
.y2a6{bottom:-417.815998px;}
.y1d3{bottom:-415.069038px;}
.ydd{bottom:-412.695011px;}
.y223{bottom:-412.494014px;}
.y12e{bottom:-410.432970px;}
.y224{bottom:-403.134006px;}
.y6f{bottom:-402.262489px;}
.y2d8{bottom:-400.448461px;}
.y1d2{bottom:-395.467080px;}
.ydc{bottom:-394.514973px;}
.y12d{bottom:-392.253000px;}
.y6e{bottom:-384.262489px;}
.y2d7{bottom:-381.359493px;}
.ydb{bottom:-376.695011px;}
.y1d1{bottom:-375.469038px;}
.y222{bottom:-375.053981px;}
.y12c{bottom:-374.253000px;}
.y6d{bottom:-366.082519px;}
.y2d6{bottom:-362.270451px;}
.y12b{bottom:-356.253000px;}
.y1d0{bottom:-355.471071px;}
.y6c{bottom:-348.082519px;}
.y2d5{bottom:-343.370451px;}
.y221{bottom:-341.394000px;}
.yda{bottom:-339.974994px;}
.y12a{bottom:-338.073030px;}
.y2b2{bottom:-337.615373px;}
.y1cf{bottom:-335.671071px;}
.y6b{bottom:-330.082519px;}
.y2d4{bottom:-324.470451px;}
.y220{bottom:-323.214030px;}
.yd9{bottom:-320.175023px;}
.y129{bottom:-320.073030px;}
.y1ce{bottom:-315.673029px;}
.y6a{bottom:-311.902481px;}
.y2d3{bottom:-305.570451px;}
.y21f{bottom:-305.033992px;}
.y128{bottom:-301.892992px;}
.y1f1{bottom:-296.942989px;}
.y1fe{bottom:-296.687987px;}
.y1cd{bottom:-296.071071px;}
.y69{bottom:-293.902481px;}
.yd8{bottom:-292.094998px;}
.y21e{bottom:-287.033992px;}
.y2d2{bottom:-286.481483px;}
.y127{bottom:-283.892992px;}
.y1cc{bottom:-276.073029px;}
.y68{bottom:-275.722511px;}
.y1f0{bottom:-275.702983px;}
.y1fd{bottom:-275.447981px;}
.y21d{bottom:-268.854023px;}
.y2d1{bottom:-267.392443px;}
.y126{bottom:-265.892992px;}
.yd7{bottom:-258.435017px;}
.y67{bottom:-257.722511px;}
.y1cb{bottom:-256.075062px;}
.y21c{bottom:-251.033992px;}
.y2d0{bottom:-248.492443px;}
.y125{bottom:-247.713023px;}
.yd6{bottom:-240.254978px;}
.y66{bottom:-239.722511px;}
.y1ca{bottom:-236.275062px;}
.y21b{bottom:-232.854023px;}
.y124{bottom:-229.713023px;}
.y2cf{bottom:-229.592443px;}
.yd5{bottom:-222.075008px;}
.y65{bottom:-221.542473px;}
.y1c9{bottom:-216.277020px;}
.y21a{bottom:-214.673983px;}
.y123{bottom:-211.532983px;}
.y2ce{bottom:-210.692443px;}
.yd4{bottom:-204.075008px;}
.y64{bottom:-203.542473px;}
.y1c8{bottom:-196.675062px;}
.y219{bottom:-196.673983px;}
.y122{bottom:-193.532983px;}
.y2cd{bottom:-191.603475px;}
.yd3{bottom:-186.075008px;}
.y63{bottom:-185.362502px;}
.y218{bottom:-178.494014px;}
.y1c7{bottom:-176.677020px;}
.y121{bottom:-175.532983px;}
.y203{bottom:-173.494451px;}
.y2cc{bottom:-172.514507px;}
.yd2{bottom:-168.075008px;}
.y62{bottom:-167.362502px;}
.y217{bottom:-160.673983px;}
.y120{bottom:-157.532983px;}
.y1c6{bottom:-156.877020px;}
.y2cb{bottom:-153.614507px;}
.yd1{bottom:-149.894970px;}
.y61{bottom:-149.182533px;}
.y216{bottom:-142.494014px;}
.y11f{bottom:-139.353014px;}
.y1c5{bottom:-136.879052px;}
.y2ca{bottom:-134.714507px;}
.yd0{bottom:-131.895005px;}
.y60{bottom:-131.182533px;}
.y215{bottom:-124.494014px;}
.y1c4{bottom:-116.881086px;}
.y2c9{bottom:-115.814470px;}
.ycf{bottom:-113.715000px;}
.y5f{bottom:-113.182533px;}
.y11e{bottom:-112.532983px;}
.y274{bottom:-109.786601px;}
.y214{bottom:-106.314010px;}
.y17f{bottom:-103.353491px;}
.y1c3{bottom:-97.279052px;}
.y2c8{bottom:-96.725467px;}
.yce{bottom:-95.715000px;}
.y5e{bottom:-95.002494px;}
.y213{bottom:-88.134006px;}
.y11d{bottom:-85.353014px;}
.y1c2{bottom:-77.281086px;}
.y5d{bottom:-77.002494px;}
.ycd{bottom:-73.395005px;}
.y2c7{bottom:-73.289470px;}
.y212{bottom:-70.314010px;}
.y11c{bottom:-67.172975px;}
.y5c{bottom:-58.822525px;}
.y2ba{bottom:-54.304413px;}
.y298{bottom:-53.446650px;}
.y1c1{bottom:-52.729052px;}
.y2a5{bottom:-52.100989px;}
.ycc{bottom:-51.075008px;}
.y11b{bottom:-49.172975px;}
.y211{bottom:-47.994014px;}
.y19d{bottom:-37.734528px;}
.y2b9{bottom:-37.294457px;}
.y297{bottom:-37.066652px;}
.y2c6{bottom:-37.001469px;}
.y2a4{bottom:-35.090998px;}
.y5b{bottom:-24.442527px;}
.y296{bottom:-20.866625px;}
.y2b8{bottom:-20.284427px;}
.y2c5{bottom:-19.991476px;}
.y19c{bottom:-19.104576px;}
.y2a3{bottom:-17.892000px;}
.ycb{bottom:-16.515007px;}
.y1ef{bottom:-15.963012px;}
.y1fc{bottom:-14.807989px;}
.y1c0{bottom:-14.713014px;}
.y11a{bottom:-14.613008px;}
.y209{bottom:-14.554487px;}
.y210{bottom:-13.434012px;}
.y5a{bottom:-3.382492px;}
.y0{bottom:0.000000px;}
.y295{bottom:0.193342px;}
.y2b7{bottom:2.017577px;}
.y2c4{bottom:2.310530px;}
.ya{bottom:3.425340px;}
.y278{bottom:4.139991px;}
.y27a{bottom:4.140008px;}
.y27f{bottom:4.140009px;}
.y2a2{bottom:4.221001px;}
.yca{bottom:4.544994px;}
.y19b{bottom:5.114465px;}
.y1ee{bottom:5.276993px;}
.y1fb{bottom:6.432017px;}
.y119{bottom:6.447027px;}
.y208{bottom:6.685519px;}
.y20f{bottom:7.805993px;}
.y1bf{bottom:8.452950px;}
.y9{bottom:14.151273px;}
.y2{bottom:16.184891px;}
.y4f{bottom:31.890000px;}
.y310{bottom:93.561000px;}
.y38c{bottom:96.564000px;}
.y147{bottom:97.068000px;}
.y10f{bottom:101.302500px;}
.y23{bottom:102.823500px;}
.y1ad{bottom:105.171000px;}
.y4e{bottom:105.663000px;}
.y33b{bottom:106.695000px;}
.y30f{bottom:112.390500px;}
.y38b{bottom:113.824500px;}
.y92{bottom:115.186500px;}
.y146{bottom:115.897500px;}
.y10e{bottom:120.132000px;}
.y22{bottom:120.711000px;}
.y3c4{bottom:120.817500px;}
.y1ac{bottom:124.000500px;}
.y4d{bottom:124.492500px;}
.y35a{bottom:125.076000px;}
.y33a{bottom:125.524500px;}
.y174{bottom:126.079500px;}
.y29d{bottom:130.639500px;}
.y38a{bottom:131.083500px;}
.y30e{bottom:131.220000px;}
.y91{bottom:134.016000px;}
.y145{bottom:134.727000px;}
.y3c3{bottom:135.454500px;}
.y3c2{bottom:138.078000px;}
.y21{bottom:138.600000px;}
.y10d{bottom:138.961500px;}
.y4c{bottom:140.592000px;}
.y1ab{bottom:142.830000px;}
.y4b{bottom:143.322000px;}
.y359{bottom:143.905500px;}
.y339{bottom:144.354000px;}
.y173{bottom:144.909000px;}
.y29c{bottom:147.250500px;}
.y389{bottom:148.344000px;}
.y29b{bottom:149.872500px;}
.y30d{bottom:150.049500px;}
.y90{bottom:152.845500px;}
.y144{bottom:153.556500px;}
.y3c1{bottom:155.338500px;}
.y20{bottom:156.487500px;}
.y10c{bottom:157.791000px;}
.y1aa{bottom:161.659500px;}
.y4a{bottom:162.151500px;}
.y358{bottom:162.735000px;}
.y338{bottom:163.183500px;}
.y172{bottom:163.738500px;}
.y388{bottom:165.604500px;}
.y30c{bottom:166.149000px;}
.y29a{bottom:166.483500px;}
.y30b{bottom:168.879000px;}
.y299{bottom:169.105500px;}
.y8f{bottom:171.675000px;}
.y143{bottom:172.384500px;}
.y3c0{bottom:172.599000px;}
.y1f{bottom:174.375000px;}
.y1a9{bottom:180.489000px;}
.y49{bottom:180.981000px;}
.y10b{bottom:181.104000px;}
.y357{bottom:181.564500px;}
.y337{bottom:182.013000px;}
.y171{bottom:182.568000px;}
.y387{bottom:182.865000px;}
.y30a{bottom:184.978500px;}
.y309{bottom:187.708500px;}
.y3bf{bottom:189.858000px;}
.y8e{bottom:190.504500px;}
.y142{bottom:191.214000px;}
.y271{bottom:191.535150px;}
.y20a{bottom:191.923500px;}
.y1e{bottom:192.264000px;}
.yc5{bottom:194.775000px;}
.y1a8{bottom:199.318500px;}
.y48{bottom:199.810500px;}
.y386{bottom:200.125500px;}
.y356{bottom:200.394000px;}
.y336{bottom:200.842500px;}
.y170{bottom:201.397500px;}
.y308{bottom:206.538000px;}
.y1e9{bottom:207.066000px;}
.y3be{bottom:207.118500px;}
.y8d{bottom:209.334000px;}
.y141{bottom:210.043500px;}
.y1d{bottom:210.151500px;}
.y250{bottom:212.700000px;}
.yc4{bottom:213.603000px;}
.y200{bottom:214.351500px;}
.y10a{bottom:214.728000px;}
.y385{bottom:217.386000px;}
.y1a7{bottom:218.148000px;}
.y47{bottom:218.640000px;}
.y355{bottom:219.223500px;}
.y335{bottom:219.672000px;}
.y16f{bottom:220.227000px;}
.y3bd{bottom:224.379000px;}
.y307{bottom:225.366000px;}
.y1e8{bottom:225.895500px;}
.y1c{bottom:228.039000px;}
.y8c{bottom:228.163500px;}
.y140{bottom:228.873000px;}
.y24f{bottom:229.138500px;}
.y108{bottom:230.827500px;}
.yc3{bottom:232.432500px;}
.y107{bottom:233.557500px;}
.y384{bottom:234.646500px;}
.y1a6{bottom:236.977500px;}
.y46{bottom:237.469500px;}
.y354{bottom:238.053000px;}
.y334{bottom:238.501500px;}
.y109{bottom:238.981500px;}
.y16e{bottom:239.056500px;}
.y3bc{bottom:241.639500px;}
.y306{bottom:244.195500px;}
.y1e7{bottom:244.725000px;}
.y24e{bottom:245.577000px;}
.y8b{bottom:246.993000px;}
.y13f{bottom:247.702500px;}
.y106{bottom:249.657000px;}
.yc2{bottom:251.262000px;}
.y383{bottom:251.907000px;}
.y105{bottom:252.387000px;}
.y1a5{bottom:255.807000px;}
.y45{bottom:256.299000px;}
.y353{bottom:256.882500px;}
.y333{bottom:257.331000px;}
.y16d{bottom:257.886000px;}
.y3bb{bottom:258.900000px;}
.y24d{bottom:262.015500px;}
.y305{bottom:263.025000px;}
.y1e6{bottom:263.554500px;}
.y8a{bottom:265.822500px;}
.y1fa{bottom:266.171988px;}
.y13e{bottom:266.532000px;}
.y207{bottom:267.325511px;}
.y104{bottom:268.486500px;}
.y382{bottom:269.167500px;}
.yc1{bottom:270.091500px;}
.y103{bottom:271.216500px;}
.y1a4{bottom:274.636500px;}
.y44{bottom:275.128500px;}
.y352{bottom:275.712000px;}
.y332{bottom:276.160500px;}
.y16c{bottom:276.715500px;}
.y24c{bottom:278.454000px;}
.y304{bottom:281.854500px;}
.y1e5{bottom:282.382500px;}
.y89{bottom:284.652000px;}
.y1be{bottom:284.662965px;}
.y13d{bottom:285.361500px;}
.y381{bottom:286.426500px;}
.y1f9{bottom:287.411993px;}
.y206{bottom:288.565517px;}
.yc0{bottom:288.921000px;}
.y102{bottom:290.046000px;}
.y2bf{bottom:290.302500px;}
.y3ba{bottom:293.421000px;}
.y1a3{bottom:293.464500px;}
.y351{bottom:294.541500px;}
.y24b{bottom:294.892500px;}
.y331{bottom:294.990000px;}
.y16b{bottom:295.545000px;}
.y43{bottom:298.441500px;}
.y303{bottom:300.684000px;}
.y1e4{bottom:301.212000px;}
.y88{bottom:303.481500px;}
.y380{bottom:303.687000px;}
.y13b{bottom:304.191000px;}
.y1bd{bottom:304.660931px;}
.y2be{bottom:306.912000px;}
.y1b{bottom:307.299000px;}
.ybf{bottom:307.750500px;}
.y101{bottom:308.875500px;}
.y2bd{bottom:309.535500px;}
.y13c{bottom:309.616500px;}
.y3b9{bottom:310.681500px;}
.y24a{bottom:311.331000px;}
.y1a2{bottom:312.294000px;}
.y350{bottom:313.371000px;}
.y330{bottom:313.819500px;}
.y16a{bottom:314.374500px;}
.y302{bottom:319.513500px;}
.y1e3{bottom:320.041500px;}
.y37f{bottom:320.947500px;}
.y87{bottom:322.311000px;}
.y139{bottom:323.020500px;}
.y1bc{bottom:324.460931px;}
.y1a{bottom:325.186500px;}
.y2bc{bottom:326.145000px;}
.ybe{bottom:326.580000px;}
.y100{bottom:327.705000px;}
.y249{bottom:327.769500px;}
.y3b8{bottom:327.940500px;}
.y1ec{bottom:328.197002px;}
.y13a{bottom:328.446000px;}
.y2bb{bottom:328.767000px;}
.y1a1{bottom:331.123500px;}
.y34f{bottom:332.200500px;}
.y32f{bottom:332.649000px;}
.y169{bottom:333.204000px;}
.y1eb{bottom:337.197002px;}
.yc8{bottom:338.084998px;}
.y37e{bottom:338.208000px;}
.y301{bottom:338.343000px;}
.y1e2{bottom:338.871000px;}
.y20d{bottom:339.905998px;}
.y86{bottom:341.140500px;}
.y138{bottom:341.850000px;}
.y19{bottom:343.074000px;}
.y248{bottom:344.206500px;}
.y1bb{bottom:344.260951px;}
.y3b7{bottom:345.201000px;}
.ybd{bottom:345.409500px;}
.yfe{bottom:346.534500px;}
.yc7{bottom:347.084998px;}
.y20c{bottom:348.905998px;}
.y1a0{bottom:349.953000px;}
.y34e{bottom:351.030000px;}
.y2af{bottom:351.196500px;}
.y32e{bottom:351.478500px;}
.yff{bottom:351.958500px;}
.y168{bottom:352.033500px;}
.y2ff{bottom:354.442500px;}
.y37d{bottom:355.468500px;}
.y2fe{bottom:357.172500px;}
.y1e1{bottom:357.700500px;}
.y85{bottom:359.970000px;}
.y294{bottom:360.373380px;}
.y247{bottom:360.645000px;}
.y137{bottom:360.679500px;}
.y18{bottom:360.963000px;}
.y2a0{bottom:361.809002px;}
.y3b6{bottom:362.461500px;}
.y300{bottom:362.598000px;}
.ybc{bottom:364.239000px;}
.y1ba{bottom:364.258955px;}
.yfd{bottom:365.364000px;}
.y2b6{bottom:367.732586px;}
.y34d{bottom:369.859500px;}
.y32d{bottom:370.308000px;}
.y167{bottom:370.863000px;}
.y29f{bottom:371.259002px;}
.y37c{bottom:372.729000px;}
.y42{bottom:373.591500px;}
.y2fd{bottom:376.002000px;}
.y1e0{bottom:376.530000px;}
.y2c2{bottom:377.286523px;}
.y293{bottom:378.373380px;}
.y84{bottom:378.799500px;}
.y136{bottom:379.509000px;}
.y3b5{bottom:379.722000px;}
.ybb{bottom:383.068500px;}
.y19f{bottom:383.520000px;}
.y1b9{bottom:384.058955px;}
.yfc{bottom:384.193500px;}
.y246{bottom:384.286500px;}
.y244{bottom:384.436500px;}
.y2b5{bottom:384.742577px;}
.y2c1{bottom:386.736523px;}
.y34c{bottom:388.689000px;}
.y32c{bottom:389.137500px;}
.y166{bottom:389.692500px;}
.y37b{bottom:389.989500px;}
.y243{bottom:391.086000px;}
.y41{bottom:393.048000px;}
.y2fc{bottom:394.831500px;}
.y1df{bottom:395.359500px;}
.y292{bottom:396.553350px;}
.y3b4{bottom:396.982500px;}
.y83{bottom:397.629000px;}
.y135{bottom:398.338500px;}
.y17{bottom:399.024000px;}
.y245{bottom:400.725000px;}
.y59{bottom:400.897492px;}
.yba{bottom:401.898000px;}
.y2b4{bottom:401.941575px;}
.y19e{bottom:402.751500px;}
.yfb{bottom:403.023000px;}
.y1b8{bottom:404.056941px;}
.y37a{bottom:407.250000px;}
.y34b{bottom:407.518500px;}
.y32b{bottom:407.967000px;}
.y165{bottom:408.522000px;}
.y2fb{bottom:413.661000px;}
.y1de{bottom:414.189000px;}
.y3b3{bottom:414.243000px;}
.y291{bottom:414.373380px;}
.y82{bottom:416.458500px;}
.y16{bottom:416.913000px;}
.y134{bottom:417.168000px;}
.y58{bottom:419.077496px;}
.yb9{bottom:420.727500px;}
.y1b7{bottom:423.856941px;}
.y2b3{bottom:424.054576px;}
.y379{bottom:424.509000px;}
.y17c{bottom:425.181173px;}
.y34a{bottom:426.348000px;}
.y32a{bottom:426.796500px;}
.y164{bottom:427.351500px;}
.y40{bottom:430.438500px;}
.y3b2{bottom:431.503500px;}
.y242{bottom:432.343500px;}
.y2fa{bottom:432.490500px;}
.y290{bottom:432.553350px;}
.y1dd{bottom:433.018500px;}
.y15{bottom:434.800500px;}
.y81{bottom:435.288000px;}
.y57{bottom:437.077496px;}
.yb8{bottom:439.557000px;}
.y378{bottom:441.769500px;}
.y1b6{bottom:443.656941px;}
.y349{bottom:445.177500px;}
.y329{bottom:445.626000px;}
.y163{bottom:446.181000px;}
.yfa{bottom:448.485000px;}
.y3b1{bottom:448.764000px;}
.y3f{bottom:449.895000px;}
.y28f{bottom:450.733320px;}
.y2f9{bottom:451.320000px;}
.y133{bottom:451.689000px;}
.y1dc{bottom:451.848000px;}
.y80{bottom:454.117500px;}
.yb7{bottom:458.386500px;}
.y377{bottom:459.030000px;}
.y118{bottom:462.386992px;}
.y1b5{bottom:463.654945px;}
.y348{bottom:464.007000px;}
.y328{bottom:464.454000px;}
.y162{bottom:465.010500px;}
.y3b0{bottom:466.024500px;}
.y241{bottom:467.953500px;}
.y28e{bottom:468.733320px;}
.y3e{bottom:469.351500px;}
.y2f8{bottom:470.149500px;}
.y14{bottom:470.622000px;}
.y1db{bottom:470.677500px;}
.yf9{bottom:472.125000px;}
.y7f{bottom:472.947000px;}
.y376{bottom:476.290500px;}
.yb6{bottom:477.216000px;}
.y117{bottom:480.386992px;}
.y347{bottom:482.836500px;}
.y327{bottom:483.283500px;}
.y1b4{bottom:483.454945px;}
.y161{bottom:483.840000px;}
.y132{bottom:486.210000px;}
.y240{bottom:486.783000px;}
.y28d{bottom:486.913358px;}
.y55{bottom:488.557498px;}
.y3d{bottom:488.809500px;}
.y2f7{bottom:488.979000px;}
.y1da{bottom:489.507000px;}
.y7e{bottom:491.776500px;}
.y375{bottom:493.551000px;}
.y1ff{bottom:494.986500px;}
.y54{bottom:497.557498px;}
.y116{bottom:498.386992px;}
.y19a{bottom:498.809433px;}
.y3af{bottom:500.544000px;}
.y346{bottom:501.666000px;}
.y326{bottom:502.113000px;}
.y160{bottom:502.669500px;}
.yf8{bottom:503.745000px;}
.y28c{bottom:504.733354px;}
.y131{bottom:505.038000px;}
.y23f{bottom:505.612500px;}
.y13{bottom:506.442000px;}
.y2f6{bottom:507.808500px;}
.y3c{bottom:508.266000px;}
.y1d9{bottom:508.336500px;}
.y7d{bottom:510.606000px;}
.y374{bottom:510.811500px;}
.y115{bottom:516.566995px;}
.y1f5{bottom:517.416000px;}
.y3ae{bottom:517.804500px;}
.y199{bottom:519.509433px;}
.y345{bottom:520.495500px;}
.y325{bottom:520.942500px;}
.y15f{bottom:521.499000px;}
.yb5{bottom:522.678000px;}
.y28b{bottom:522.913358px;}
.y130{bottom:523.867500px;}
.y12{bottom:524.329500px;}
.y23e{bottom:524.442000px;}
.y2f5{bottom:526.638000px;}
.y1d8{bottom:527.166000px;}
.y3b{bottom:527.722500px;}
.y373{bottom:528.072000px;}
.y7c{bottom:529.434000px;}
.y114{bottom:534.566995px;}
.y3ad{bottom:535.065000px;}
.y344{bottom:536.595000px;}
.yb4{bottom:539.116500px;}
.y343{bottom:539.323500px;}
.y324{bottom:539.772000px;}
.y1b2{bottom:540.082948px;}
.y15e{bottom:540.328500px;}
.y198{bottom:540.416478px;}
.yf7{bottom:540.849000px;}
.y28a{bottom:540.913358px;}
.y11{bottom:542.218500px;}
.y23d{bottom:543.271500px;}
.y372{bottom:545.332500px;}
.y2f4{bottom:545.467500px;}
.y1d7{bottom:545.995500px;}
.y3a{bottom:547.180500px;}
.yb1{bottom:547.335000px;}
.y7b{bottom:548.263500px;}
.y205{bottom:548.305488px;}
.y1b1{bottom:549.982948px;}
.y3ac{bottom:552.325500px;}
.yb0{bottom:555.555000px;}
.y12f{bottom:557.434500px;}
.y342{bottom:558.153000px;}
.y270{bottom:558.589500px;}
.y323{bottom:558.601500px;}
.y289{bottom:559.093362px;}
.y15d{bottom:559.158000px;}
.yf6{bottom:559.678500px;}
.y10{bottom:560.106000px;}
.y197{bottom:561.116478px;}
.y23c{bottom:562.101000px;}
.y371{bottom:562.593000px;}
.y2f3{bottom:564.297000px;}
.y39{bottom:566.637000px;}
.y7a{bottom:567.093000px;}
.y1d6{bottom:569.308500px;}
.y204{bottom:569.545493px;}
.y3ab{bottom:569.586000px;}
.yb3{bottom:571.993500px;}
.y341{bottom:576.982500px;}
.y288{bottom:577.273367px;}
.y26f{bottom:577.419000px;}
.y322{bottom:577.431000px;}
.yf{bottom:577.993500px;}
.yf5{bottom:578.508000px;}
.y370{bottom:579.852000px;}
.y110{bottom:579.862500px;}
.y23b{bottom:580.930500px;}
.y196{bottom:581.816438px;}
.y15c{bottom:582.469500px;}
.y2f2{bottom:583.126500px;}
.y79{bottom:585.922500px;}
.y112{bottom:586.046998px;}
.y38{bottom:586.095000px;}
.y3aa{bottom:586.846500px;}
.yb2{bottom:588.432000px;}
.y111{bottom:595.046998px;}
.y287{bottom:595.093362px;}
.y340{bottom:595.812000px;}
.ye{bottom:595.882500px;}
.y26e{bottom:596.248500px;}
.y321{bottom:596.260500px;}
.y36f{bottom:597.112500px;}
.yf4{bottom:597.337500px;}
.y1d5{bottom:599.736000px;}
.y23a{bottom:599.760000px;}
.y2f1{bottom:601.956000px;}
.y15b{bottom:602.644500px;}
.y195{bottom:602.723443px;}
.y3a9{bottom:604.107000px;}
.y78{bottom:604.752000px;}
.y37{bottom:605.551500px;}
.y1f7{bottom:610.332002px;}
.yaf{bottom:612.072000px;}
.y286{bottom:613.273367px;}
.yd{bottom:613.770000px;}
.y36e{bottom:614.373000px;}
.y33f{bottom:614.641500px;}
.y26d{bottom:615.078000px;}
.y320{bottom:615.090000px;}
.yf3{bottom:616.167000px;}
.y239{bottom:618.589500px;}
.y1f6{bottom:619.332002px;}
.y2f0{bottom:620.785500px;}
.y3a8{bottom:621.366000px;}
.y1b0{bottom:622.165500px;}
.y194{bottom:623.423443px;}
.y77{bottom:623.581500px;}
.y36{bottom:625.008000px;}
.yad{bottom:628.510500px;}
.y26c{bottom:631.177500px;}
.y285{bottom:631.273367px;}
.y36d{bottom:631.633500px;}
.yc{bottom:631.657500px;}
.y26b{bottom:633.907500px;}
.y31f{bottom:633.919500px;}
.yf2{bottom:634.996500px;}
.y238{bottom:637.419000px;}
.y33e{bottom:637.954500px;}
.y3a7{bottom:638.626500px;}
.y2ef{bottom:639.615000px;}
.y193{bottom:644.330447px;}
.y35{bottom:644.466000px;}
.yac{bottom:644.949000px;}
.y36c{bottom:648.894000px;}
.yb{bottom:649.546500px;}
.y26a{bottom:652.737000px;}
.y31e{bottom:652.749000px;}
.ya9{bottom:653.167500px;}
.yf1{bottom:653.826000px;}
.y15a{bottom:653.934000px;}
.y2ee{bottom:655.714500px;}
.y3a6{bottom:655.887000px;}
.y237{bottom:656.248500px;}
.y76{bottom:657.147000px;}
.y2ed{bottom:658.444500px;}
.yab{bottom:661.387500px;}
.y34{bottom:663.922500px;}
.y192{bottom:665.030447px;}
.y36b{bottom:666.154500px;}
.y284{bottom:667.993349px;}
.y159{bottom:670.372500px;}
.y269{bottom:671.566500px;}
.y31d{bottom:671.578500px;}
.y8{bottom:671.917464px;}
.yf0{bottom:672.655500px;}
.y3a5{bottom:673.147500px;}
.y236{bottom:675.078000px;}
.y2ec{bottom:677.274000px;}
.yaa{bottom:677.826000px;}
.y53{bottom:679.576500px;}
.y33{bottom:683.379000px;}
.y36a{bottom:683.415000px;}
.y191{bottom:685.730447px;}
.y158{bottom:686.811000px;}
.y268{bottom:690.396000px;}
.y31c{bottom:690.408000px;}
.yef{bottom:691.485000px;}
.y235{bottom:693.907500px;}
.yae{bottom:694.264500px;}
.y2eb{bottom:696.103500px;}
.y369{bottom:700.675500px;}
.y32{bottom:702.837000px;}
.y157{bottom:703.249500px;}
.y282{bottom:705.973360px;}
.y267{bottom:706.495500px;}
.y190{bottom:706.637452px;}
.y3a4{bottom:707.668500px;}
.y266{bottom:709.225500px;}
.y31b{bottom:709.237500px;}
.yee{bottom:710.314500px;}
.y234{bottom:712.737000px;}
.ya8{bottom:717.904500px;}
.y2ea{bottom:719.415000px;}
.y156{bottom:719.688000px;}
.y368{bottom:722.418000px;}
.y3a3{bottom:724.929000px;}
.y281{bottom:725.053350px;}
.y265{bottom:725.325000px;}
.y18f{bottom:727.337452px;}
.y2ae{bottom:727.423500px;}
.y264{bottom:728.055000px;}
.y31a{bottom:728.067000px;}
.y233{bottom:731.566500px;}
.yed{bottom:733.626000px;}
.ya6{bottom:734.343000px;}
.y155{bottom:736.126500px;}
.y31{bottom:741.421500px;}
.y3a2{bottom:742.189500px;}
.y280{bottom:743.953337px;}
.y2ad{bottom:744.034500px;}
.y2ac{bottom:746.656500px;}
.y263{bottom:746.884500px;}
.y319{bottom:746.896500px;}
.y18e{bottom:748.244458px;}
.y2e9{bottom:749.842500px;}
.ya7{bottom:750.781500px;}
.y154{bottom:752.565000px;}
.yec{bottom:753.801000px;}
.y232{bottom:754.879500px;}
.y367{bottom:756.042000px;}
.y30{bottom:757.561500px;}
.y3a1{bottom:759.450000px;}
.y2ab{bottom:763.267500px;}
.y262{bottom:765.714000px;}
.y318{bottom:765.726000px;}
.y2aa{bottom:765.889500px;}
.y2e8{bottom:766.453500px;}
.y18d{bottom:768.944458px;}
.y2e7{bottom:769.075500px;}
.y3a0{bottom:774.087000px;}
.ya5{bottom:774.421500px;}
.y153{bottom:776.205000px;}
.y39f{bottom:776.709000px;}
.y2f{bottom:778.041000px;}
.y2b1{bottom:781.642577px;}
.y27d{bottom:782.113351px;}
.y366{bottom:782.583000px;}
.ya4{bottom:782.641500px;}
.y152{bottom:784.425000px;}
.y261{bottom:784.542000px;}
.y317{bottom:784.555500px;}
.y231{bottom:785.305500px;}
.y29e{bottom:788.319000px;}
.y18c{bottom:789.644458px;}
.y2e{bottom:789.841500px;}
.y2b0{bottom:791.092577px;}
.y2c0{bottom:791.505000px;}
.yeb{bottom:793.194000px;}
.y39e{bottom:793.969500px;}
.y1f4{bottom:797.442000px;}
.y365{bottom:800.157000px;}
.y316{bottom:800.655000px;}
.y27c{bottom:801.193342px;}
.y260{bottom:803.371500px;}
.y315{bottom:803.385000px;}
.y20b{bottom:807.735000px;}
.y39d{bottom:808.608000px;}
.y2d{bottom:810.319500px;}
.y18b{bottom:810.344458px;}
.y39c{bottom:811.230000px;}
.ya3{bottom:814.501500px;}
.yc6{bottom:815.623500px;}
.y364{bottom:817.731000px;}
.y1ea{bottom:819.871500px;}
.y27b{bottom:820.093345px;}
.y2c{bottom:822.120000px;}
.y25f{bottom:822.201000px;}
.y314{bottom:822.214500px;}
.y151{bottom:824.263500px;}
.ya2{bottom:828.316500px;}
.y39b{bottom:828.490500px;}
.ya0{bottom:830.940000px;}
.y18a{bottom:831.251462px;}
.y25e{bottom:841.030500px;}
.y313{bottom:841.044000px;}
.y2b{bottom:842.599500px;}
.y363{bottom:844.272000px;}
.y39a{bottom:845.751000px;}
.ya1{bottom:847.378500px;}
.y189{bottom:852.158467px;}
.y2a{bottom:854.398500px;}
.y150{bottom:859.873500px;}
.y362{bottom:861.846000px;}
.y399{bottom:863.011500px;}
.y276{bottom:868.333351px;}
.y29{bottom:870.538500px;}
.y9f{bottom:871.018500px;}
.y188{bottom:872.858467px;}
.y283{bottom:874.468498px;}
.y28{bottom:874.878000px;}
.y14f{bottom:878.703000px;}
.y361{bottom:879.420000px;}
.y398{bottom:880.272000px;}
.y9e{bottom:884.835000px;}
.y25d{bottom:886.492500px;}
.y27{bottom:886.678500px;}
.y9c{bottom:887.457000px;}
.y202{bottom:892.465502px;}
.y187{bottom:893.558467px;}
.y312{bottom:894.802500px;}
.y360{bottom:896.994000px;}
.y14e{bottom:897.532500px;}
.y201{bottom:901.465502px;}
.y25c{bottom:902.931000px;}
.y9d{bottom:903.895500px;}
.y275{bottom:906.133349px;}
.y26{bottom:907.158000px;}
.y35f{bottom:914.568000px;}
.y3c6{bottom:914.791500px;}
.y397{bottom:914.793000px;}
.y14d{bottom:916.362000px;}
.y25{bottom:918.957000px;}
.y186{bottom:919.226462px;}
.y25b{bottom:919.369500px;}
.y9b{bottom:927.535500px;}
.y396{bottom:932.052000px;}
.y17b{bottom:934.743000px;}
.y14c{bottom:935.191500px;}
.y25a{bottom:935.808000px;}
.y24{bottom:939.436500px;}
.y35e{bottom:941.109000px;}
.y395{bottom:949.312500px;}
.y27e{bottom:950.608489px;}
.y1af{bottom:951.291000px;}
.y259{bottom:952.246500px;}
.y17a{bottom:953.572500px;}
.y14b{bottom:954.021000px;}
.y273{bottom:956.173352px;}
.y35d{bottom:958.683000px;}
.y9a{bottom:959.155500px;}
.y185{bottom:959.384454px;}
.y272{bottom:965.173352px;}
.y394{bottom:966.573000px;}
.y258{bottom:968.685000px;}
.y1ae{bottom:970.120500px;}
.y179{bottom:972.402000px;}
.y14a{bottom:972.849000px;}
.y35c{bottom:976.257000px;}
.y33d{bottom:978.274500px;}
.y99{bottom:978.388500px;}
.y7{bottom:979.630500px;}
.y184{bottom:980.291458px;}
.y393{bottom:983.833500px;}
.y257{bottom:985.123500px;}
.y178{bottom:991.231500px;}
.y149{bottom:991.678500px;}
.y35b{bottom:993.831000px;}
.y33c{bottom:997.104000px;}
.y98{bottom:997.621500px;}
.y6{bottom:998.460000px;}
.y392{bottom:1001.094000px;}
.y183{bottom:1001.198443px;}
.y256{bottom:1001.562000px;}
.y177{bottom:1010.061000px;}
.y148{bottom:1010.508000px;}
.y255{bottom:1018.000500px;}
.y391{bottom:1018.354500px;}
.y182{bottom:1021.691458px;}
.y279{bottom:1026.568494px;}
.y176{bottom:1028.890500px;}
.y97{bottom:1029.337500px;}
.y254{bottom:1034.439000px;}
.y390{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y181{bottom:1042.598443px;}
.y277{bottom:1046.368501px;}
.y96{bottom:1048.167000px;}
.y175{bottom:1052.202000px;}
.y38f{bottom:1052.875500px;}
.y253{bottom:1058.079000px;}
.y180{bottom:1063.298443px;}
.y252{bottom:1064.878500px;}
.y95{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y38e{bottom:1070.134500px;}
.y311{bottom:1083.096000px;}
.y94{bottom:1085.826000px;}
.y38d{bottom:1087.395000px;}
.y52{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y3c5{bottom:1102.033500px;}
.y93{bottom:1104.655500px;}
.y251{bottom:1106.137500px;}
.y51{bottom:1107.327000px;}
.y17e{bottom:1122.500455px;}
.y17d{bottom:1132.850455px;}
.y1{bottom:1141.174500px;}
.y50{bottom:1173.397500px;}
.h41{height:-541.374011px;}
.h46{height:-511.419001px;}
.h48{height:-491.618994px;}
.h40{height:-465.234019px;}
.h49{height:-415.658989px;}
.h3f{height:-397.734019px;}
.h4a{height:-339.518998px;}
.h26{height:-97.772989px;}
.h7{height:25.508090px;}
.h23{height:31.526842px;}
.hb{height:32.565965px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.h10{height:37.389888px;}
.ha{height:37.993262px;}
.h11{height:38.143066px;}
.he{height:38.896243px;}
.h21{height:41.092953px;}
.h14{height:41.250077px;}
.h24{height:41.482876px;}
.h22{height:41.544042px;}
.h39{height:41.855088px;}
.h17{height:41.856336px;}
.h38{height:42.098175px;}
.h16{height:42.099430px;}
.h5a{height:42.380900px;}
.h12{height:43.217759px;}
.hc{height:43.421105px;}
.hd{height:43.660208px;}
.h4{height:43.815515px;}
.h4e{height:43.947842px;}
.h55{height:43.949153px;}
.h4d{height:44.203083px;}
.h54{height:44.204402px;}
.h36{height:45.202249px;}
.h33{height:46.041970px;}
.h32{height:46.309373px;}
.h4b{height:46.852779px;}
.h3b{height:47.124891px;}
.h19{height:47.126147px;}
.h2f{height:47.255000px;}
.h2d{height:48.133351px;}
.h2c{height:48.412901px;}
.hf{height:48.848947px;}
.h1a{height:49.117939px;}
.h51{height:49.195418px;}
.h58{height:49.196729px;}
.h50{height:49.481136px;}
.h57{height:49.482454px;}
.h2{height:50.930649px;}
.h35{height:51.838761px;}
.h3a{height:51.850053px;}
.h18{height:51.852134px;}
.h47{height:52.151189px;}
.h20{height:52.153282px;}
.h30{height:54.193625px;}
.h13{height:54.276245px;}
.h4f{height:54.442556px;}
.h56{height:54.444741px;}
.h1e{height:54.575123px;}
.h59{height:54.760946px;}
.h6{height:55.352206px;}
.h34{height:57.037348px;}
.h2e{height:59.627561px;}
.h27{height:65.934077px;}
.h28{height:71.770243px;}
.h2a{height:71.776243px;}
.h43{height:77.452243px;}
.h5{height:77.792486px;}
.h42{height:78.052243px;}
.h1b{height:81.722947px;}
.h1c{height:81.728947px;}
.h45{height:90.311166px;}
.h3{height:102.503837px;}
.h29{height:104.650243px;}
.h1d{height:114.602947px;}
.h3c{height:254.830500px;}
.h3d{height:255.438000px;}
.h31{height:271.637850px;}
.h37{height:299.728500px;}
.h1f{height:303.976500px;}
.h3e{height:311.865000px;}
.h53{height:328.094550px;}
.h4c{height:331.280775px;}
.h44{height:343.414350px;}
.h52{height:351.029700px;}
.h15{height:385.281000px;}
.h25{height:448.557000px;}
.h2b{height:485.923703px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w1b{width:-190.695033px;}
.w26{width:-187.095019px;}
.w1a{width:-172.695033px;}
.w25{width:-162.434970px;}
.w19{width:-158.835025px;}
.w3b{width:-136.658998px;}
.wf{width:-135.859500px;}
.w38{width:-133.059001px;}
.w1c{width:-132.259503px;}
.w32{width:-131.259002px;}
.w3c{width:-129.639000px;}
.w10{width:-128.839502px;}
.w39{width:-125.858999px;}
.w1d{width:-125.239498px;}
.w33{width:-124.058992px;}
.we{width:-106.699502px;}
.w18{width:-81.255000px;}
.w24{width:-77.654987px;}
.w23{width:-52.995006px;}
.w17{width:-49.394992px;}
.w34{width:-36.219008px;}
.w7{width:-33.184494px;}
.w35{width:-29.199001px;}
.w1e{width:-26.059493px;}
.w11{width:-22.459497px;}
.w1f{width:-18.859500px;}
.w28{width:-18.578999px;}
.w12{width:-15.439508px;}
.w29{width:-11.379006px;}
.w31{width:-4.036487px;}
.w2e{width:4.860008px;}
.w2c{width:4.860009px;}
.w2f{width:7.199958px;}
.w14{width:7.199993px;}
.w16{width:7.200027px;}
.w22{width:7.200028px;}
.w37{width:24.839951px;}
.w21{width:24.839984px;}
.w20{width:24.839985px;}
.w36{width:24.840019px;}
.w2b{width:28.259994px;}
.w3a{width:31.859973px;}
.w13{width:31.860008px;}
.w15{width:31.860009px;}
.w30{width:56.263486px;}
.w2a{width:60.300007px;}
.w2d{width:60.480011px;}
.w3{width:75.364879px;}
.w2{width:157.115855px;}
.wd{width:331.885500px;}
.wa{width:336.739500px;}
.w9{width:357.733200px;}
.w3f{width:366.319800px;}
.w4{width:402.268500px;}
.wc{width:405.909000px;}
.w8{width:498.614700px;}
.w6{width:512.410500px;}
.w27{width:524.224500px;}
.wb{width:529.077000px;}
.w3e{width:571.457250px;}
.w3d{width:574.643475px;}
.w5{width:638.896500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xb5{left:-203.067150px;}
.xa3{left:-200.615775px;}
.x12d{left:-190.014300px;}
.x11b{left:-188.740125px;}
.x10d{left:-187.465950px;}
.x19{left:-185.820000px;}
.xe6{left:-183.999000px;}
.x90{left:-176.025000px;}
.xbf{left:-168.259503px;}
.xe8{left:-167.078999px;}
.xda{left:-162.859500px;}
.xfe{left:-161.679003px;}
.xc4{left:-150.979502px;}
.xc5{left:-148.999500px;}
.xc6{left:-147.199502px;}
.xd9{left:-145.399503px;}
.xfd{left:-144.218999px;}
.xc7{left:-136.039504px;}
.xce{left:-132.439499px;}
.xf2{left:-131.259002px;}
.xc0{left:-111.559493px;}
.xc1{left:-91.399495px;}
.xe9{left:-78.879006px;}
.xf3{left:-61.058992px;}
.xc8{left:-54.319504px;}
.xc2{left:-52.519498px;}
.xcf{left:-50.899495px;}
.x73{left:-49.303500px;}
.xf4{left:-36.398994px;}
.xd0{left:-26.059493px;}
.xc9{left:-22.639501px;}
.xea{left:-18.578999px;}
.x1a{left:-1.860003px;}
.x0{left:0.000000px;}
.x12e{left:3.143696px;}
.x11d{left:4.417871px;}
.x10e{left:5.692046px;}
.x91{left:7.934997px;}
.xa4{left:10.938221px;}
.x1c{left:28.020011px;}
.x3{left:29.274117px;}
.xb6{left:32.156862px;}
.x12f{left:34.517712px;}
.x92{left:37.815011px;}
.xa5{left:45.300238px;}
.xc3{left:52.420483px;}
.x1{left:54.000000px;}
.x2{left:56.331755px;}
.xa0{left:62.967000px;}
.x60{left:78.055500px;}
.x44{left:85.446000px;}
.xe7{left:86.541005px;}
.xde{left:89.944500px;}
.xbe{left:93.820505px;}
.xdc{left:101.242500px;}
.x59{left:102.492000px;}
.x56{left:103.702500px;}
.x46{left:105.405000px;}
.xdd{left:106.534500px;}
.x93{left:118.815011px;}
.x74{left:122.956503px;}
.x72{left:127.009500px;}
.x75{left:134.656497px;}
.x45{left:136.668000px;}
.x78{left:151.216515px;}
.x77{left:159.676502px;}
.x76{left:164.536511px;}
.x48{left:176.749500px;}
.x5b{left:179.169000px;}
.x57{left:181.812000px;}
.x5a{left:183.687000px;}
.x4e{left:188.919000px;}
.x4a{left:194.074500px;}
.x47{left:196.095000px;}
.x4f{left:198.055500px;}
.x51{left:203.754000px;}
.x50{left:207.396000px;}
.x79{left:238.656000px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x7b{left:268.434000px;}
.x5{left:271.221000px;}
.x115{left:274.362000px;}
.x7a{left:276.463500px;}
.x116{left:277.693500px;}
.xd{left:282.786000px;}
.x10{left:288.042000px;}
.x66{left:292.911000px;}
.xa9{left:294.150000px;}
.x11{left:295.513500px;}
.x7d{left:298.650000px;}
.xaa{left:300.576000px;}
.x99{left:302.500500px;}
.xdb{left:305.565000px;}
.x67{left:307.855500px;}
.x14c{left:310.477500px;}
.x7{left:311.712000px;}
.x9d{left:313.086000px;}
.xd1{left:314.838007px;}
.x9a{left:317.445000px;}
.xa7{left:319.113000px;}
.xc{left:321.387000px;}
.xff{left:322.470000px;}
.x11e{left:323.514000px;}
.x10f{left:325.821000px;}
.x6e{left:326.826000px;}
.xbd{left:328.133983px;}
.x100{left:329.194500px;}
.x11f{left:330.238500px;}
.x13c{left:332.032500px;}
.x37{left:333.318000px;}
.x2d{left:336.625500px;}
.xd2{left:339.497988px;}
.x6f{left:341.769000px;}
.xca{left:343.098001px;}
.x38{left:348.261000px;}
.x5c{left:350.113500px;}
.x2e{left:351.570000px;}
.x49{left:353.022000px;}
.xb7{left:356.678850px;}
.x94{left:360.186000px;}
.xaf{left:362.514000px;}
.x109{left:365.887500px;}
.x95{left:366.993000px;}
.x133{left:368.163000px;}
.x31{left:369.562500px;}
.xb0{left:371.607000px;}
.x14d{left:373.380000px;}
.xa1{left:375.289500px;}
.x32{left:377.034000px;}
.x134{left:378.318000px;}
.x25{left:380.833500px;}
.x125{left:383.179500px;}
.xa{left:385.425000px;}
.xe1{left:387.372000px;}
.x126{left:389.157000px;}
.xb{left:392.149500px;}
.x3c{left:394.365000px;}
.x26{left:395.778000px;}
.x9b{left:397.186500px;}
.xb1{left:398.374500px;}
.x2f{left:400.171500px;}
.x1b{left:403.319983px;}
.xf5{left:404.398492px;}
.x52{left:406.516500px;}
.x3d{left:409.309500px;}
.x9c{left:412.131000px;}
.xb8{left:414.937500px;}
.xb2{left:416.487000px;}
.x58{left:417.882000px;}
.x30{left:418.926000px;}
.x138{left:420.661500px;}
.xb9{left:424.167000px;}
.xf6{left:429.238511px;}
.x127{left:430.284000px;}
.x143{left:431.313000px;}
.xfc{left:432.658487px;}
.x128{left:433.699500px;}
.x135{left:437.026500px;}
.x139{left:438.693000px;}
.x9e{left:440.178000px;}
.xab{left:441.370500px;}
.xcb{left:444.977999px;}
.xac{left:447.796500px;}
.x129{left:455.647500px;}
.xad{left:459.777000px;}
.x12a{left:461.626500px;}
.xeb{left:463.438505px;}
.xae{left:466.203000px;}
.x148{left:476.857500px;}
.x130{left:478.843500px;}
.x131{left:484.822500px;}
.x117{left:485.916000px;}
.x110{left:489.972000px;}
.x118{left:491.893500px;}
.xa6{left:494.904263px;}
.x111{left:495.949500px;}
.xec{left:497.458493px;}
.x132{left:501.255000px;}
.x88{left:503.214000px;}
.x3a{left:505.774500px;}
.xa2{left:508.510500px;}
.x89{left:509.640000px;}
.x120{left:511.102500px;}
.x112{left:512.286000px;}
.x101{left:514.104000px;}
.xf7{left:515.278489px;}
.x121{left:517.081500px;}
.x3b{left:520.719000px;}
.x68{left:523.036500px;}
.xd3{left:526.158002px;}
.x8a{left:527.941500px;}
.x144{left:529.408500px;}
.x102{left:530.865000px;}
.x122{left:533.841000px;}
.x103{left:536.842500px;}
.x69{left:537.981000px;}
.xf8{left:539.938505px;}
.x6a{left:541.653000px;}
.xe2{left:543.519000px;}
.x12{left:545.421000px;}
.x10a{left:547.680000px;}
.x147{left:549.613500px;}
.xd4{left:550.817983px;}
.x13{left:551.847000px;}
.xcc{left:554.417998px;}
.x6b{left:556.597500px;}
.xed{left:557.758500px;}
.x6c{left:560.269500px;}
.xe3{left:561.456000px;}
.x61{left:562.552500px;}
.x13e{left:565.281000px;}
.xe4{left:567.880500px;}
.x35{left:569.116500px;}
.x11c{left:570.850841px;}
.x104{left:572.923500px;}
.x6d{left:575.214000px;}
.x36{left:576.589500px;}
.x5d{left:577.851000px;}
.x105{left:578.901000px;}
.x7e{left:580.110000px;}
.x13f{left:583.570500px;}
.x70{left:585.172500px;}
.x21{left:587.334000px;}
.x8b{left:589.752000px;}
.xa8{left:590.964000px;}
.x10b{left:592.858500px;}
.x22{left:594.807000px;}
.x123{left:598.528500px;}
.x71{left:600.117000px;}
.x23{left:602.128500px;}
.xe5{left:604.539000px;}
.x8c{left:606.807000px;}
.x149{left:609.214500px;}
.x96{left:610.891500px;}
.x10c{left:614.082000px;}
.x14a{left:615.640500px;}
.x24{left:617.073000px;}
.xee{left:619.678475px;}
.x119{left:620.752500px;}
.xef{left:624.358514px;}
.x97{left:626.935500px;}
.x14b{left:628.132500px;}
.x9f{left:631.789500px;}
.x113{left:633.813000px;}
.xd5{left:635.778006px;}
.x11a{left:640.560000px;}
.x14{left:642.741000px;}
.x98{left:645.892500px;}
.x124{left:647.827500px;}
.x15{left:649.167000px;}
.xf9{left:650.638498px;}
.x8d{left:651.769500px;}
.xba{left:654.499500px;}
.x106{left:655.501500px;}
.x81{left:656.551500px;}
.xd6{left:660.437987px;}
.xbb{left:663.730500px;}
.x8e{left:665.077500px;}
.x107{left:666.283500px;}
.x2b{left:667.740000px;}
.x8{left:671.428500px;}
.x16{left:672.946500px;}
.x2c{left:675.211500px;}
.x108{left:676.387500px;}
.x9{left:679.737000px;}
.x82{left:680.970000px;}
.xf0{left:684.838525px;}
.x13d{left:686.305500px;}
.x83{left:687.396000px;}
.x63{left:690.897000px;}
.x5e{left:691.971000px;}
.x150{left:693.256500px;}
.x153{left:694.299000px;}
.x53{left:695.427000px;}
.x4b{left:696.927000px;}
.x151{left:699.234000px;}
.x64{left:702.649500px;}
.x4c{left:704.223000px;}
.x5f{left:705.877500px;}
.x54{left:707.296500px;}
.x7f{left:709.879500px;}
.x154{left:711.912000px;}
.x152{left:716.242500px;}
.xbc{left:717.994500px;}
.x62{left:719.071500px;}
.x55{left:721.197000px;}
.x155{left:722.302500px;}
.x8f{left:724.047000px;}
.x14f{left:726.292500px;}
.x80{left:727.786500px;}
.xe{left:730.399500px;}
.x156{left:731.667000px;}
.x4d{left:732.850500px;}
.xfa{left:736.678475px;}
.xf{left:737.872500px;}
.x65{left:739.131000px;}
.xcd{left:741.618025px;}
.xd7{left:745.217970px;}
.x14e{left:747.915000px;}
.x42{left:749.481000px;}
.xb3{left:750.994500px;}
.xdf{left:752.836500px;}
.x84{left:756.276000px;}
.xb4{left:757.420500px;}
.xe0{left:759.262500px;}
.xfb{left:761.338525px;}
.x43{left:764.425500px;}
.x33{left:765.777000px;}
.x13a{left:768.019500px;}
.xd8{left:769.878019px;}
.x40{left:773.158500px;}
.x13b{left:774.826500px;}
.x145{left:776.047500px;}
.x85{left:778.144500px;}
.xf1{left:779.158487px;}
.x34{left:780.721500px;}
.x27{left:782.683500px;}
.x86{left:784.570500px;}
.x142{left:786.463500px;}
.x41{left:788.103000px;}
.x28{left:790.156500px;}
.x29{left:793.818000px;}
.x3e{left:795.885000px;}
.x140{left:797.517000px;}
.x136{left:799.230000px;}
.x12b{left:801.328500px;}
.x87{left:802.977000px;}
.x12c{left:807.306000px;}
.x1d{left:808.812000px;}
.x3f{left:810.829500px;}
.x2a{left:812.422500px;}
.x137{left:814.173000px;}
.x1e{left:816.283500px;}
.x17{left:818.214000px;}
.x1f{left:820.093500px;}
.x7c{left:822.274500px;}
.x18{left:824.640000px;}
.x141{left:825.856500px;}
.x20{left:827.566500px;}
.x114{left:830.379000px;}
.x39{left:832.869000px;}
.x146{left:837.120000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-9.328000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:12.800048pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v9{vertical-align:21.941333pt;}
.v5{vertical-align:29.221333pt;}
.va{vertical-align:34.805333pt;}
.v6{vertical-align:46.586667pt;}
.v7{vertical-align:58.448000pt;}
.lse{letter-spacing:0.000000pt;}
.ls6e{letter-spacing:0.000078pt;}
.ls71{letter-spacing:0.000260pt;}
.ls5e{letter-spacing:0.000503pt;}
.ls5c{letter-spacing:0.000711pt;}
.ls58{letter-spacing:0.000921pt;}
.ls25{letter-spacing:0.001007pt;}
.lsa{letter-spacing:0.001717pt;}
.ls19{letter-spacing:0.001774pt;}
.ls5f{letter-spacing:0.001818pt;}
.ls68{letter-spacing:0.001825pt;}
.ls18{letter-spacing:0.001843pt;}
.ls6c{letter-spacing:0.002117pt;}
.ls4d{letter-spacing:0.002133pt;}
.ls6f{letter-spacing:0.002185pt;}
.ls5a{letter-spacing:0.002188pt;}
.ls5{letter-spacing:0.002422pt;}
.ls73{letter-spacing:0.002525pt;}
.ls72{letter-spacing:0.002703pt;}
.ls26{letter-spacing:0.002825pt;}
.lsb{letter-spacing:0.003100pt;}
.ls6d{letter-spacing:0.003102pt;}
.ls1f{letter-spacing:0.003182pt;}
.ls0{letter-spacing:0.003733pt;}
.ls6b{letter-spacing:0.003890pt;}
.ls4{letter-spacing:0.004237pt;}
.ls61{letter-spacing:0.004267pt;}
.ls39{letter-spacing:0.049768pt;}
.ls3d{letter-spacing:0.269696pt;}
.ls3c{letter-spacing:0.269816pt;}
.ls37{letter-spacing:0.269940pt;}
.ls4b{letter-spacing:0.274806pt;}
.ls51{letter-spacing:0.282694pt;}
.ls50{letter-spacing:0.282954pt;}
.ls48{letter-spacing:0.283177pt;}
.ls41{letter-spacing:0.283307pt;}
.ls40{letter-spacing:0.283433pt;}
.ls42{letter-spacing:0.283437pt;}
.ls2f{letter-spacing:0.340888pt;}
.ls1b{letter-spacing:0.348344pt;}
.ls1e{letter-spacing:0.348468pt;}
.ls1d{letter-spacing:0.348588pt;}
.ls32{letter-spacing:0.348964pt;}
.ls33{letter-spacing:0.348968pt;}
.ls34{letter-spacing:0.349088pt;}
.ls55{letter-spacing:0.365761pt;}
.ls53{letter-spacing:0.365887pt;}
.ls57{letter-spacing:0.366017pt;}
.ls49{letter-spacing:0.382125pt;}
.ls2a{letter-spacing:0.383310pt;}
.ls28{letter-spacing:0.383315pt;}
.ls2b{letter-spacing:0.383447pt;}
.ls24{letter-spacing:0.418518pt;}
.ls38{letter-spacing:0.443749pt;}
.ls3b{letter-spacing:0.443869pt;}
.ls3e{letter-spacing:0.443993pt;}
.ls52{letter-spacing:0.465202pt;}
.ls47{letter-spacing:0.465936pt;}
.ls4c{letter-spacing:0.466062pt;}
.ls3f{letter-spacing:0.466066pt;}
.ls46{letter-spacing:0.466192pt;}
.ls56{letter-spacing:0.532297pt;}
.ls15{letter-spacing:0.576078pt;}
.ls1c{letter-spacing:0.988480pt;}
.ls31{letter-spacing:0.988980pt;}
.ls54{letter-spacing:1.037904pt;}
.ls44{letter-spacing:1.054142pt;}
.ls36{letter-spacing:1.083885pt;}
.ls29{letter-spacing:1.087328pt;}
.lsf{letter-spacing:1.133683pt;}
.ls4f{letter-spacing:1.137089pt;}
.ls43{letter-spacing:1.138079pt;}
.ls4a{letter-spacing:1.138083pt;}
.ls35{letter-spacing:1.541624pt;}
.ls45{letter-spacing:1.618709pt;}
.ls7{letter-spacing:1.654338pt;}
.ls10{letter-spacing:2.656533pt;}
.ls3{letter-spacing:2.657067pt;}
.ls4e{letter-spacing:2.661867pt;}
.ls14{letter-spacing:3.118133pt;}
.ls13{letter-spacing:3.123467pt;}
.ls3a{letter-spacing:4.741700pt;}
.ls8{letter-spacing:9.298933pt;}
.lsd{letter-spacing:10.626533pt;}
.ls66{letter-spacing:11.870650pt;}
.ls59{letter-spacing:11.954133pt;}
.ls62{letter-spacing:11.959467pt;}
.ls27{letter-spacing:12.008254pt;}
.ls60{letter-spacing:12.009818pt;}
.ls65{letter-spacing:12.123152pt;}
.ls5d{letter-spacing:12.123471pt;}
.ls69{letter-spacing:12.614735pt;}
.ls2e{letter-spacing:12.645860pt;}
.ls1a{letter-spacing:12.964663pt;}
.ls5b{letter-spacing:13.263101pt;}
.ls2{letter-spacing:13.287200pt;}
.ls21{letter-spacing:13.917762pt;}
.ls22{letter-spacing:13.923096pt;}
.ls20{letter-spacing:13.949089pt;}
.ls12{letter-spacing:14.608533pt;}
.ls11{letter-spacing:14.613867pt;}
.ls70{letter-spacing:14.962447pt;}
.ls64{letter-spacing:15.051892pt;}
.ls6a{letter-spacing:15.736303pt;}
.ls6{letter-spacing:15.942400pt;}
.ls63{letter-spacing:16.029114pt;}
.ls2c{letter-spacing:16.312097pt;}
.ls67{letter-spacing:17.670944pt;}
.ls1{letter-spacing:51.035733pt;}
.ls9{letter-spacing:55.787733pt;}
.lsc{letter-spacing:57.174803pt;}
.ls23{letter-spacing:81.099674pt;}
.ls30{letter-spacing:102.100900pt;}
.ls17{letter-spacing:219.300386pt;}
.ls16{letter-spacing:222.457719pt;}
.ls2d{letter-spacing:709.460416pt;}
.ws82{word-spacing:-13.705560pt;}
.ws1{word-spacing:-13.283467pt;}
.wsa7{word-spacing:-13.082580pt;}
.ws7b{word-spacing:-12.947045pt;}
.ws56{word-spacing:-12.459600pt;}
.ws95{word-spacing:-12.459100pt;}
.ws45{word-spacing:-11.955200pt;}
.wsa6{word-spacing:-11.821530pt;}
.ws9e{word-spacing:-11.821215pt;}
.ws7a{word-spacing:-11.566010pt;}
.ws97{word-spacing:-11.258300pt;}
.ws81{word-spacing:-11.063470pt;}
.ws2f{word-spacing:-10.626800pt;}
.wsa4{word-spacing:-10.560585pt;}
.ws9d{word-spacing:-10.560270pt;}
.ws4{word-spacing:-10.095467pt;}
.ws30{word-spacing:-10.057700pt;}
.ws86{word-spacing:-10.057400pt;}
.wsc{word-spacing:-9.298400pt;}
.ws57{word-spacing:-7.505760pt;}
.ws96{word-spacing:-7.505510pt;}
.wsa5{word-spacing:-7.250565pt;}
.ws9f{word-spacing:-7.250324pt;}
.ws98{word-spacing:-6.905070pt;}
.ws75{word-spacing:-2.816095pt;}
.wsbc{word-spacing:-2.762961pt;}
.ws77{word-spacing:-2.709827pt;}
.wsc9{word-spacing:-2.104115pt;}
.wsb1{word-spacing:-1.912819pt;}
.ws37{word-spacing:-1.753418pt;}
.ws68{word-spacing:-1.700284pt;}
.ws9{word-spacing:-1.696326pt;}
.wsa9{word-spacing:-1.647150pt;}
.wsc8{word-spacing:-1.625907pt;}
.ws66{word-spacing:-1.594016pt;}
.wsfe{word-spacing:-1.578086pt;}
.ws5e{word-spacing:-1.381481pt;}
.ws4f{word-spacing:-1.328347pt;}
.ws7f{word-spacing:-1.222079pt;}
.wsff{word-spacing:-1.195520pt;}
.ws8{word-spacing:-1.175671pt;}
.ws63{word-spacing:-0.956410pt;}
.ws38{word-spacing:-0.903276pt;}
.ws87{word-spacing:-0.850142pt;}
.wsd2{word-spacing:-0.765133pt;}
.wsb2{word-spacing:-0.743874pt;}
.ws88{word-spacing:-0.690740pt;}
.wsaa{word-spacing:-0.637606pt;}
.wsfc{word-spacing:-0.621670pt;}
.ws93{word-spacing:-0.584473pt;}
.wsbb{word-spacing:-0.478205pt;}
.wsae{word-spacing:-0.425071pt;}
.wsa0{word-spacing:-0.382566pt;}
.ws92{word-spacing:-0.371937pt;}
.ws7c{word-spacing:-0.334746pt;}
.ws25{word-spacing:-0.318803pt;}
.ws5b{word-spacing:-0.265669pt;}
.ws23{word-spacing:-0.212535pt;}
.ws43{word-spacing:-0.191283pt;}
.ws35{word-spacing:-0.159402pt;}
.ws46{word-spacing:-0.143462pt;}
.ws2d{word-spacing:-0.106268pt;}
.ws1d{word-spacing:-0.095642pt;}
.ws2{word-spacing:-0.053134pt;}
.ws1e{word-spacing:-0.047821pt;}
.ws18{word-spacing:-0.042507pt;}
.wse4{word-spacing:-0.007979pt;}
.wsfb{word-spacing:-0.006895pt;}
.wsfd{word-spacing:-0.006281pt;}
.wsf5{word-spacing:-0.006263pt;}
.ws7{word-spacing:-0.003222pt;}
.ws6{word-spacing:-0.003073pt;}
.wscd{word-spacing:-0.002944pt;}
.wsee{word-spacing:-0.002705pt;}
.wsf1{word-spacing:-0.002645pt;}
.ws2e{word-spacing:-0.002628pt;}
.wsd9{word-spacing:-0.002534pt;}
.ws5{word-spacing:-0.002029pt;}
.wsdc{word-spacing:-0.001562pt;}
.wse9{word-spacing:-0.001348pt;}
.wsf0{word-spacing:-0.001263pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:0.001089pt;}
.wsb{word-spacing:0.001639pt;}
.ws4e{word-spacing:0.047821pt;}
.ws55{word-spacing:0.053134pt;}
.ws1c{word-spacing:0.095642pt;}
.ws3f{word-spacing:0.106268pt;}
.ws17{word-spacing:0.127522pt;}
.ws49{word-spacing:0.143462pt;}
.ws33{word-spacing:0.159402pt;}
.wsd{word-spacing:0.185968pt;}
.wsd6{word-spacing:0.191283pt;}
.ws2c{word-spacing:0.212535pt;}
.wsde{word-spacing:0.238780pt;}
.ws9c{word-spacing:0.239104pt;}
.wsf{word-spacing:0.260355pt;}
.ws2b{word-spacing:0.265669pt;}
.wsec{word-spacing:0.286925pt;}
.ws40{word-spacing:0.318803pt;}
.ws27{word-spacing:0.371937pt;}
.wsdb{word-spacing:0.382566pt;}
.ws7e{word-spacing:0.425071pt;}
.wsf2{word-spacing:0.430387pt;}
.ws4d{word-spacing:0.461867pt;}
.ws47{word-spacing:0.463795pt;}
.ws4a{word-spacing:0.467200pt;}
.wse8{word-spacing:0.478208pt;}
.wsf7{word-spacing:0.526029pt;}
.ws59{word-spacing:0.531339pt;}
.wsf3{word-spacing:0.573850pt;}
.ws3c{word-spacing:0.584473pt;}
.ws28{word-spacing:0.637606pt;}
.ws64{word-spacing:0.667200pt;}
.ws1f{word-spacing:0.669491pt;}
.ws7d{word-spacing:0.690740pt;}
.wsf6{word-spacing:0.717312pt;}
.wsbe{word-spacing:0.743874pt;}
.wsb4{word-spacing:0.797008pt;}
.wsad{word-spacing:0.850142pt;}
.ws58{word-spacing:0.956410pt;}
.wscc{word-spacing:0.956416pt;}
.wscf{word-spacing:1.004237pt;}
.ws26{word-spacing:1.009543pt;}
.wsba{word-spacing:1.062677pt;}
.ws20{word-spacing:1.099878pt;}
.ws36{word-spacing:1.115811pt;}
.wsc1{word-spacing:1.168945pt;}
.ws53{word-spacing:1.222079pt;}
.ws83{word-spacing:1.275213pt;}
.wsd1{word-spacing:1.291162pt;}
.ws32{word-spacing:1.328347pt;}
.ws2a{word-spacing:1.434614pt;}
.wsd3{word-spacing:1.434624pt;}
.ws29{word-spacing:1.487748pt;}
.ws1b{word-spacing:1.530266pt;}
.wsb0{word-spacing:1.540882pt;}
.wsb8{word-spacing:1.594016pt;}
.ws85{word-spacing:1.647150pt;}
.wsfa{word-spacing:1.673728pt;}
.wsb6{word-spacing:1.700284pt;}
.ws67{word-spacing:1.753418pt;}
.wse{word-spacing:1.785293pt;}
.ws60{word-spacing:1.859685pt;}
.ws5f{word-spacing:1.912819pt;}
.ws50{word-spacing:2.019087pt;}
.ws3b{word-spacing:2.072221pt;}
.wsef{word-spacing:2.151936pt;}
.ws3d{word-spacing:2.178489pt;}
.ws34{word-spacing:2.231622pt;}
.ws3e{word-spacing:2.284756pt;}
.ws21{word-spacing:2.295398pt;}
.wsf4{word-spacing:2.343219pt;}
.ws51{word-spacing:2.391024pt;}
.ws9b{word-spacing:2.391040pt;}
.ws9a{word-spacing:2.438861pt;}
.ws52{word-spacing:2.444158pt;}
.wsb9{word-spacing:2.550426pt;}
.ws19{word-spacing:2.550432pt;}
.wsc0{word-spacing:2.656693pt;}
.wsb5{word-spacing:2.709827pt;}
.ws99{word-spacing:2.725786pt;}
.ws80{word-spacing:2.816095pt;}
.wscb{word-spacing:2.862063pt;}
.wsd5{word-spacing:2.866014pt;}
.wsda{word-spacing:2.867891pt;}
.wse3{word-spacing:2.868506pt;}
.ws71{word-spacing:2.869229pt;}
.wsce{word-spacing:2.869248pt;}
.wsdf{word-spacing:2.870827pt;}
.wse7{word-spacing:2.871185pt;}
.wsd7{word-spacing:2.871228pt;}
.wsed{word-spacing:2.872149pt;}
.wsea{word-spacing:2.964890pt;}
.ws84{word-spacing:2.975497pt;}
.ws5a{word-spacing:3.028630pt;}
.ws69{word-spacing:3.081764pt;}
.wsc7{word-spacing:3.108352pt;}
.wsbf{word-spacing:3.134898pt;}
.wsc6{word-spacing:3.156173pt;}
.ws22{word-spacing:3.188032pt;}
.wse0{word-spacing:3.203994pt;}
.ws74{word-spacing:3.294300pt;}
.wsa3{word-spacing:3.299635pt;}
.wsa2{word-spacing:3.347456pt;}
.wsf8{word-spacing:3.395277pt;}
.wsc5{word-spacing:3.443098pt;}
.wsac{word-spacing:3.506835pt;}
.wsa1{word-spacing:3.634381pt;}
.ws1a{word-spacing:3.730022pt;}
.ws54{word-spacing:3.772505pt;}
.wseb{word-spacing:3.777843pt;}
.wse2{word-spacing:4.064768pt;}
.wsb3{word-spacing:4.144442pt;}
.ws73{word-spacing:4.197575pt;}
.ws94{word-spacing:4.250709pt;}
.ws61{word-spacing:4.303843pt;}
.wsf9{word-spacing:4.303872pt;}
.ws62{word-spacing:4.356977pt;}
.ws31{word-spacing:4.463245pt;}
.wsdd{word-spacing:4.542976pt;}
.ws79{word-spacing:4.569513pt;}
.wsca{word-spacing:4.734259pt;}
.ws72{word-spacing:4.888316pt;}
.ws39{word-spacing:4.941450pt;}
.ws41{word-spacing:4.994583pt;}
.ws42{word-spacing:5.047717pt;}
.ws76{word-spacing:5.207119pt;}
.wsc2{word-spacing:5.260253pt;}
.wsab{word-spacing:5.313387pt;}
.ws15{word-spacing:5.393072pt;}
.ws24{word-spacing:5.419654pt;}
.ws16{word-spacing:5.467459pt;}
.wsc4{word-spacing:5.579056pt;}
.ws3a{word-spacing:5.738458pt;}
.wse6{word-spacing:5.738496pt;}
.wsaf{word-spacing:5.844725pt;}
.wsa8{word-spacing:5.897859pt;}
.wsd0{word-spacing:6.264525pt;}
.ws6a{word-spacing:6.429198pt;}
.wsd4{word-spacing:6.647091pt;}
.wsb7{word-spacing:6.748001pt;}
.ws78{word-spacing:6.801135pt;}
.wsbd{word-spacing:7.013670pt;}
.wsc3{word-spacing:7.173072pt;}
.ws13{word-spacing:7.699075pt;}
.wse1{word-spacing:12.911616pt;}
.wsa{word-spacing:13.763148pt;}
.ws10{word-spacing:14.348669pt;}
.ws11{word-spacing:14.356730pt;}
.ws12{word-spacing:15.732893pt;}
.wse5{word-spacing:16.832922pt;}
.ws14{word-spacing:24.399002pt;}
.wsd8{word-spacing:43.038720pt;}
.ws6c{word-spacing:119.491456pt;}
.ws91{word-spacing:126.390374pt;}
.ws8b{word-spacing:126.438195pt;}
.ws5d{word-spacing:136.671846pt;}
.ws6b{word-spacing:144.048896pt;}
.ws5c{word-spacing:159.243264pt;}
.ws8f{word-spacing:196.812305pt;}
.ws89{word-spacing:203.457638pt;}
.ws70{word-spacing:209.168179pt;}
.ws4c{word-spacing:220.551031pt;}
.ws6f{word-spacing:221.123379pt;}
.ws6e{word-spacing:223.514419pt;}
.ws6d{word-spacing:223.562240pt;}
.ws65{word-spacing:268.007223pt;}
.ws8d{word-spacing:279.130010pt;}
.ws44{word-spacing:281.903616pt;}
.ws8c{word-spacing:291.085210pt;}
.ws8e{word-spacing:303.040410pt;}
.ws4b{word-spacing:369.128755pt;}
.ws90{word-spacing:397.486490pt;}
.ws48{word-spacing:404.850893pt;}
.ws8a{word-spacing:424.074854pt;}
._54{margin-left:-7.438741pt;}
._2{margin-left:-5.903858pt;}
._5{margin-left:-4.128490pt;}
._8{margin-left:-2.661552pt;}
._3{margin-left:-1.175671pt;}
._4{width:0.969929pt;}
._0{width:2.661552pt;}
._15{width:3.645079pt;}
._14{width:4.534905pt;}
._16{width:5.486204pt;}
._13{width:6.523158pt;}
._28{width:7.500652pt;}
._17{width:8.613477pt;}
._18{width:9.662198pt;}
._52{width:10.624207pt;}
._7{width:11.530016pt;}
._1c{width:12.694412pt;}
._a{width:13.612886pt;}
._d{width:14.958237pt;}
._b{width:16.641638pt;}
._53{width:17.699577pt;}
._e{width:18.602291pt;}
._c{width:19.969246pt;}
._1a{width:21.450130pt;}
._6{width:23.057899pt;}
._27{width:24.478761pt;}
._19{width:25.561617pt;}
._4d{width:26.733061pt;}
._1b{width:28.107815pt;}
._9{width:29.011008pt;}
._3d{width:29.967501pt;}
._4e{width:31.667785pt;}
._f{width:32.577787pt;}
._80{width:34.049583pt;}
._3e{width:36.237297pt;}
._4f{width:37.678638pt;}
._1{width:48.363408pt;}
._82{width:54.993920pt;}
._81{width:78.904320pt;}
._34{width:96.686496pt;}
._33{width:97.683264pt;}
._32{width:100.700407pt;}
._30{width:105.185863pt;}
._31{width:106.182631pt;}
._40{width:118.942282pt;}
._2d{width:120.551108pt;}
._2c{width:122.992800pt;}
._3c{width:124.716646pt;}
._2e{width:136.125413pt;}
._2f{width:138.094224pt;}
._3b{width:143.318938pt;}
._35{width:144.265558pt;}
._2b{width:149.932764pt;}
._29{width:171.593611pt;}
._39{width:173.876429pt;}
._2a{width:174.783269pt;}
._38{width:183.153664pt;}
._3a{width:185.831629pt;}
._36{width:187.122790pt;}
._22{width:188.605235pt;}
._37{width:189.848576pt;}
._66{width:194.152448pt;}
._7e{width:196.057371pt;}
._25{width:210.741700pt;}
._75{width:231.490078pt;}
._5e{width:236.759239pt;}
._7a{width:240.260506pt;}
._76{width:244.225159pt;}
._7c{width:252.175883pt;}
._79{width:257.141417pt;}
._5b{width:262.355727pt;}
._5f{width:263.671975pt;}
._77{width:268.146631pt;}
._78{width:269.116560pt;}
._7b{width:270.113288pt;}
._26{width:272.325658pt;}
._24{width:273.774080pt;}
._5c{width:276.603120pt;}
._59{width:278.148694pt;}
._62{width:280.639252pt;}
._5d{width:283.123310pt;}
._60{width:284.568893pt;}
._44{width:286.733517pt;}
._20{width:288.630110pt;}
._4b{width:289.905590pt;}
._63{width:293.249146pt;}
._7d{width:294.322010pt;}
._64{width:297.580219pt;}
._45{width:298.688717pt;}
._42{width:302.083994pt;}
._71{width:303.040410pt;}
._49{width:304.666317pt;}
._5a{width:307.529767pt;}
._61{width:308.499696pt;}
._1f{width:313.056857pt;}
._68{width:314.995610pt;}
._6a{width:315.904205pt;}
._47{width:317.785117pt;}
._69{width:320.160256pt;}
._67{width:325.468365pt;}
._6c{width:327.955046pt;}
._21{width:329.294029pt;}
._6b{width:331.302502pt;}
._6d{width:339.479859pt;}
._6e{width:344.309760pt;}
._43{width:349.044019pt;}
._72{width:355.449079pt;}
._4c{width:366.753616pt;}
._57{width:372.883706pt;}
._48{width:382.901146pt;}
._1d{width:384.192307pt;}
._74{width:393.317240pt;}
._23{width:404.037939pt;}
._1e{width:415.801856pt;}
._70{width:420.010086pt;}
._46{width:497.097216pt;}
._3f{width:518.999142pt;}
._4a{width:534.540902pt;}
._41{width:547.452518pt;}
._73{width:589.201091pt;}
._58{width:596.925392pt;}
._6f{width:619.375002pt;}
._65{width:635.347149pt;}
._10{width:876.222042pt;}
._56{width:1807.099634pt;}
._12{width:1826.812726pt;}
._7f{width:1897.263168pt;}
._51{width:2009.258864pt;}
._50{width:2100.400340pt;}
._55{width:2263.463733pt;}
._11{width:2284.717067pt;}
.fs1d{font-size:27.620280pt;}
.fs21{font-size:29.001294pt;}
.fs25{font-size:29.002260pt;}
.fs1c{font-size:30.022040pt;}
.fsf{font-size:30.023040pt;}
.fs26{font-size:31.524192pt;}
.fs7{font-size:31.880533pt;}
.fs17{font-size:33.025344pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fsd{font-size:38.755733pt;}
.fs19{font-size:40.229600pt;}
.fsa{font-size:40.230800pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fs10{font-size:42.077867pt;}
.fs1e{font-size:42.241080pt;}
.fs22{font-size:42.242340pt;}
.fs8{font-size:42.507200pt;}
.fs15{font-size:44.253880pt;}
.fs1b{font-size:45.033200pt;}
.fsc{font-size:45.034400pt;}
.fs12{font-size:46.264040pt;}
.fs20{font-size:47.284860pt;}
.fs24{font-size:47.286120pt;}
.fs9{font-size:47.820800pt;}
.fs18{font-size:49.537840pt;}
.fse{font-size:49.829333pt;}
.fs1a{font-size:49.836400pt;}
.fsb{font-size:49.838400pt;}
.fs14{font-size:51.788180pt;}
.fs1f{font-size:52.328220pt;}
.fs23{font-size:52.330320pt;}
.fs1{font-size:53.133867pt;}
.fs16{font-size:54.822240pt;}
.fs11{font-size:55.365867pt;}
.fs13{font-size:57.311860pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y2a1{bottom:-673.287954pt;}
.y2c3{bottom:-659.698154pt;}
.y1ed{bottom:-655.789289pt;}
.yc9{bottom:-647.159956pt;}
.y20e{bottom:-645.541289pt;}
.yea{bottom:-594.520002pt;}
.y2e6{bottom:-591.994175pt;}
.ye9{bottom:-578.520002pt;}
.y2e5{bottom:-575.026202pt;}
.y230{bottom:-564.581328pt;}
.y1b3{bottom:-562.374218pt;}
.ye8{bottom:-562.360029pt;}
.y2e4{bottom:-558.394175pt;}
.y22f{bottom:-544.901335pt;}
.ye7{bottom:-542.520002pt;}
.y2e3{bottom:-541.426202pt;}
.y22e{bottom:-527.941313pt;}
.y2e2{bottom:-524.458230pt;}
.y1f3{bottom:-514.509321pt;}
.y56{bottom:-513.406623pt;}
.ye6{bottom:-511.319990pt;}
.y22d{bottom:-511.141326pt;}
.y2e1{bottom:-507.658230pt;}
.y1f2{bottom:-495.629316pt;}
.ye5{bottom:-495.480024pt;}
.y22c{bottom:-494.181304pt;}
.y2e0{bottom:-490.690195pt;}
.ye4{bottom:-479.319990pt;}
.y22b{bottom:-477.221343pt;}
.y2df{bottom:-473.890195pt;}
.ye3{bottom:-463.160017pt;}
.y22a{bottom:-460.421355pt;}
.y2de{bottom:-457.090195pt;}
.y75{bottom:-454.046638pt;}
.ye2{bottom:-447.160017pt;}
.y229{bottom:-443.461333pt;}
.y2dd{bottom:-440.122223pt;}
.y74{bottom:-437.886665pt;}
.ye1{bottom:-430.999983pt;}
.y113{bottom:-426.749289pt;}
.y228{bottom:-426.501311pt;}
.y2dc{bottom:-423.322223pt;}
.y73{bottom:-421.886665pt;}
.y2a9{bottom:-421.455990pt;}
.ye0{bottom:-415.160017pt;}
.y227{bottom:-409.541350pt;}
.y2db{bottom:-406.354187pt;}
.y2a8{bottom:-406.336028pt;}
.y72{bottom:-405.726691pt;}
.y1f8{bottom:-405.002623pt;}
.ydf{bottom:-398.999983pt;}
.y226{bottom:-392.741362pt;}
.y2a7{bottom:-391.216002pt;}
.y71{bottom:-389.566657pt;}
.y2da{bottom:-389.554187pt;}
.y1d4{bottom:-386.726293pt;}
.yde{bottom:-382.999983pt;}
.y225{bottom:-375.141326pt;}
.y70{bottom:-373.726691pt;}
.y2d9{bottom:-372.754187pt;}
.y2a6{bottom:-371.391998pt;}
.y1d3{bottom:-368.950256pt;}
.ydd{bottom:-366.840010pt;}
.y223{bottom:-366.661345pt;}
.y12e{bottom:-364.829306pt;}
.y224{bottom:-358.341338pt;}
.y6f{bottom:-357.566657pt;}
.y2d8{bottom:-355.954187pt;}
.y1d2{bottom:-351.526293pt;}
.ydc{bottom:-350.679976pt;}
.y12d{bottom:-348.669333pt;}
.y6e{bottom:-341.566657pt;}
.y2d7{bottom:-338.986216pt;}
.ydb{bottom:-334.840010pt;}
.y1d1{bottom:-333.750256pt;}
.y222{bottom:-333.381316pt;}
.y12c{bottom:-332.669333pt;}
.y6d{bottom:-325.406684pt;}
.y2d6{bottom:-322.018179pt;}
.y12b{bottom:-316.669333pt;}
.y1d0{bottom:-315.974285pt;}
.y6c{bottom:-309.406684pt;}
.y2d5{bottom:-305.218179pt;}
.y221{bottom:-303.461333pt;}
.yda{bottom:-302.199995pt;}
.y12a{bottom:-300.509360pt;}
.y2b2{bottom:-300.102554pt;}
.y1cf{bottom:-298.374285pt;}
.y6b{bottom:-293.406684pt;}
.y2d4{bottom:-288.418179pt;}
.y220{bottom:-287.301360pt;}
.yd9{bottom:-284.600020pt;}
.y129{bottom:-284.509360pt;}
.y1ce{bottom:-280.598248pt;}
.y6a{bottom:-277.246650pt;}
.y2d3{bottom:-271.618179pt;}
.y21f{bottom:-271.141326pt;}
.y128{bottom:-268.349326pt;}
.y1f1{bottom:-263.949323pt;}
.y1fe{bottom:-263.722655pt;}
.y1cd{bottom:-263.174285pt;}
.y69{bottom:-261.246650pt;}
.yd8{bottom:-259.639998pt;}
.y21e{bottom:-255.141326pt;}
.y2d2{bottom:-254.650207pt;}
.y127{bottom:-252.349326pt;}
.y1cc{bottom:-245.398248pt;}
.y68{bottom:-245.086677pt;}
.y1f0{bottom:-245.069318pt;}
.y1fd{bottom:-244.842650pt;}
.y21d{bottom:-238.981353pt;}
.y2d1{bottom:-237.682172pt;}
.y126{bottom:-236.349326pt;}
.yd7{bottom:-229.720015pt;}
.y67{bottom:-229.086677pt;}
.y1cb{bottom:-227.622278pt;}
.y21c{bottom:-223.141326pt;}
.y2d0{bottom:-220.882172pt;}
.y125{bottom:-220.189353pt;}
.yd6{bottom:-213.559980pt;}
.y66{bottom:-213.086677pt;}
.y1ca{bottom:-210.022278pt;}
.y21b{bottom:-206.981353pt;}
.y124{bottom:-204.189353pt;}
.y2cf{bottom:-204.082172pt;}
.yd5{bottom:-197.400007pt;}
.y65{bottom:-196.926643pt;}
.y1c9{bottom:-192.246240pt;}
.y21a{bottom:-190.821318pt;}
.y123{bottom:-188.029318pt;}
.y2ce{bottom:-187.282172pt;}
.yd4{bottom:-181.400007pt;}
.y64{bottom:-180.926643pt;}
.y1c8{bottom:-174.822278pt;}
.y219{bottom:-174.821318pt;}
.y122{bottom:-172.029318pt;}
.y2cd{bottom:-170.314200pt;}
.yd3{bottom:-165.400007pt;}
.y63{bottom:-164.766669pt;}
.y218{bottom:-158.661345pt;}
.y1c7{bottom:-157.046240pt;}
.y121{bottom:-156.029318pt;}
.y203{bottom:-154.217289pt;}
.y2cc{bottom:-153.346228pt;}
.yd2{bottom:-149.400007pt;}
.y62{bottom:-148.766669pt;}
.y217{bottom:-142.821318pt;}
.y120{bottom:-140.029318pt;}
.y1c6{bottom:-139.446240pt;}
.y2cb{bottom:-136.546228pt;}
.yd1{bottom:-133.239973pt;}
.y61{bottom:-132.606696pt;}
.y216{bottom:-126.661345pt;}
.y11f{bottom:-123.869345pt;}
.y1c5{bottom:-121.670269pt;}
.y2ca{bottom:-119.746228pt;}
.yd0{bottom:-117.240004pt;}
.y60{bottom:-116.606696pt;}
.y215{bottom:-110.661345pt;}
.y1c4{bottom:-103.894299pt;}
.y2c9{bottom:-102.946196pt;}
.ycf{bottom:-101.080000pt;}
.y5f{bottom:-100.606696pt;}
.y11e{bottom:-100.029318pt;}
.y274{bottom:-97.588089pt;}
.y214{bottom:-94.501342pt;}
.y17f{bottom:-91.869769pt;}
.y1c3{bottom:-86.470269pt;}
.y2c8{bottom:-85.978193pt;}
.yce{bottom:-85.080000pt;}
.y5e{bottom:-84.446662pt;}
.y213{bottom:-78.341338pt;}
.y11d{bottom:-75.869345pt;}
.y1c2{bottom:-68.694299pt;}
.y5d{bottom:-68.446662pt;}
.ycd{bottom:-65.240004pt;}
.y2c7{bottom:-65.146196pt;}
.y212{bottom:-62.501342pt;}
.y11c{bottom:-59.709311pt;}
.y5c{bottom:-52.286689pt;}
.y2ba{bottom:-48.270590pt;}
.y298{bottom:-47.508133pt;}
.y1c1{bottom:-46.870269pt;}
.y2a5{bottom:-46.311991pt;}
.ycc{bottom:-45.400007pt;}
.y11b{bottom:-43.709311pt;}
.y211{bottom:-42.661345pt;}
.y19d{bottom:-33.541803pt;}
.y2b9{bottom:-33.150628pt;}
.y297{bottom:-32.948135pt;}
.y2c6{bottom:-32.890195pt;}
.y2a4{bottom:-31.191998pt;}
.y5b{bottom:-21.726691pt;}
.y296{bottom:-18.548111pt;}
.y2b8{bottom:-18.030602pt;}
.y2c5{bottom:-17.770201pt;}
.y19c{bottom:-16.981845pt;}
.y2a3{bottom:-15.904000pt;}
.ycb{bottom:-14.680006pt;}
.y1ef{bottom:-14.189344pt;}
.y1fc{bottom:-13.162657pt;}
.y1c0{bottom:-13.078235pt;}
.y11a{bottom:-12.989340pt;}
.y209{bottom:-12.937321pt;}
.y210{bottom:-11.941344pt;}
.y5a{bottom:-3.006660pt;}
.y0{bottom:0.000000pt;}
.y295{bottom:0.171860pt;}
.y2b7{bottom:1.793402pt;}
.y2c4{bottom:2.053804pt;}
.ya{bottom:3.044747pt;}
.y278{bottom:3.679992pt;}
.y27a{bottom:3.680007pt;}
.y27f{bottom:3.680008pt;}
.y2a2{bottom:3.752001pt;}
.yca{bottom:4.039995pt;}
.y19b{bottom:4.546191pt;}
.y1ee{bottom:4.690661pt;}
.y1fb{bottom:5.717348pt;}
.y119{bottom:5.730691pt;}
.y208{bottom:5.942684pt;}
.y20f{bottom:6.938661pt;}
.y1bf{bottom:7.513733pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:14.386570pt;}
.y4f{bottom:28.346667pt;}
.y310{bottom:83.165333pt;}
.y38c{bottom:85.834667pt;}
.y147{bottom:86.282667pt;}
.y10f{bottom:90.046667pt;}
.y23{bottom:91.398667pt;}
.y1ad{bottom:93.485333pt;}
.y4e{bottom:93.922667pt;}
.y33b{bottom:94.840000pt;}
.y30f{bottom:99.902667pt;}
.y38b{bottom:101.177333pt;}
.y92{bottom:102.388000pt;}
.y146{bottom:103.020000pt;}
.y10e{bottom:106.784000pt;}
.y22{bottom:107.298667pt;}
.y3c4{bottom:107.393333pt;}
.y1ac{bottom:110.222667pt;}
.y4d{bottom:110.660000pt;}
.y35a{bottom:111.178667pt;}
.y33a{bottom:111.577333pt;}
.y174{bottom:112.070667pt;}
.y29d{bottom:116.124000pt;}
.y38a{bottom:116.518667pt;}
.y30e{bottom:116.640000pt;}
.y91{bottom:119.125333pt;}
.y145{bottom:119.757333pt;}
.y3c3{bottom:120.404000pt;}
.y3c2{bottom:122.736000pt;}
.y21{bottom:123.200000pt;}
.y10d{bottom:123.521333pt;}
.y4c{bottom:124.970667pt;}
.y1ab{bottom:126.960000pt;}
.y4b{bottom:127.397333pt;}
.y359{bottom:127.916000pt;}
.y339{bottom:128.314667pt;}
.y173{bottom:128.808000pt;}
.y29c{bottom:130.889333pt;}
.y389{bottom:131.861333pt;}
.y29b{bottom:133.220000pt;}
.y30d{bottom:133.377333pt;}
.y90{bottom:135.862667pt;}
.y144{bottom:136.494667pt;}
.y3c1{bottom:138.078667pt;}
.y20{bottom:139.100000pt;}
.y10c{bottom:140.258667pt;}
.y1aa{bottom:143.697333pt;}
.y4a{bottom:144.134667pt;}
.y358{bottom:144.653333pt;}
.y338{bottom:145.052000pt;}
.y172{bottom:145.545333pt;}
.y388{bottom:147.204000pt;}
.y30c{bottom:147.688000pt;}
.y29a{bottom:147.985333pt;}
.y30b{bottom:150.114667pt;}
.y299{bottom:150.316000pt;}
.y8f{bottom:152.600000pt;}
.y143{bottom:153.230667pt;}
.y3c0{bottom:153.421333pt;}
.y1f{bottom:155.000000pt;}
.y1a9{bottom:160.434667pt;}
.y49{bottom:160.872000pt;}
.y10b{bottom:160.981333pt;}
.y357{bottom:161.390667pt;}
.y337{bottom:161.789333pt;}
.y171{bottom:162.282667pt;}
.y387{bottom:162.546667pt;}
.y30a{bottom:164.425333pt;}
.y309{bottom:166.852000pt;}
.y3bf{bottom:168.762667pt;}
.y8e{bottom:169.337333pt;}
.y142{bottom:169.968000pt;}
.y271{bottom:170.253467pt;}
.y20a{bottom:170.598667pt;}
.y1e{bottom:170.901333pt;}
.yc5{bottom:173.133333pt;}
.y1a8{bottom:177.172000pt;}
.y48{bottom:177.609333pt;}
.y386{bottom:177.889333pt;}
.y356{bottom:178.128000pt;}
.y336{bottom:178.526667pt;}
.y170{bottom:179.020000pt;}
.y308{bottom:183.589333pt;}
.y1e9{bottom:184.058667pt;}
.y3be{bottom:184.105333pt;}
.y8d{bottom:186.074667pt;}
.y141{bottom:186.705333pt;}
.y1d{bottom:186.801333pt;}
.y250{bottom:189.066667pt;}
.yc4{bottom:189.869333pt;}
.y200{bottom:190.534667pt;}
.y10a{bottom:190.869333pt;}
.y385{bottom:193.232000pt;}
.y1a7{bottom:193.909333pt;}
.y47{bottom:194.346667pt;}
.y355{bottom:194.865333pt;}
.y335{bottom:195.264000pt;}
.y16f{bottom:195.757333pt;}
.y3bd{bottom:199.448000pt;}
.y307{bottom:200.325333pt;}
.y1e8{bottom:200.796000pt;}
.y1c{bottom:202.701333pt;}
.y8c{bottom:202.812000pt;}
.y140{bottom:203.442667pt;}
.y24f{bottom:203.678667pt;}
.y108{bottom:205.180000pt;}
.yc3{bottom:206.606667pt;}
.y107{bottom:207.606667pt;}
.y384{bottom:208.574667pt;}
.y1a6{bottom:210.646667pt;}
.y46{bottom:211.084000pt;}
.y354{bottom:211.602667pt;}
.y334{bottom:212.001333pt;}
.y109{bottom:212.428000pt;}
.y16e{bottom:212.494667pt;}
.y3bc{bottom:214.790667pt;}
.y306{bottom:217.062667pt;}
.y1e7{bottom:217.533333pt;}
.y24e{bottom:218.290667pt;}
.y8b{bottom:219.549333pt;}
.y13f{bottom:220.180000pt;}
.y106{bottom:221.917333pt;}
.yc2{bottom:223.344000pt;}
.y383{bottom:223.917333pt;}
.y105{bottom:224.344000pt;}
.y1a5{bottom:227.384000pt;}
.y45{bottom:227.821333pt;}
.y353{bottom:228.340000pt;}
.y333{bottom:228.738667pt;}
.y16d{bottom:229.232000pt;}
.y3bb{bottom:230.133333pt;}
.y24d{bottom:232.902667pt;}
.y305{bottom:233.800000pt;}
.y1e6{bottom:234.270667pt;}
.y8a{bottom:236.286667pt;}
.y1fa{bottom:236.597322pt;}
.y13e{bottom:236.917333pt;}
.y207{bottom:237.622677pt;}
.y104{bottom:238.654667pt;}
.y382{bottom:239.260000pt;}
.yc1{bottom:240.081333pt;}
.y103{bottom:241.081333pt;}
.y1a4{bottom:244.121333pt;}
.y44{bottom:244.558667pt;}
.y352{bottom:245.077333pt;}
.y332{bottom:245.476000pt;}
.y16c{bottom:245.969333pt;}
.y24c{bottom:247.514667pt;}
.y304{bottom:250.537333pt;}
.y1e5{bottom:251.006667pt;}
.y89{bottom:253.024000pt;}
.y1be{bottom:253.033747pt;}
.y13d{bottom:253.654667pt;}
.y381{bottom:254.601333pt;}
.y1f9{bottom:255.477327pt;}
.y206{bottom:256.502682pt;}
.yc0{bottom:256.818667pt;}
.y102{bottom:257.818667pt;}
.y2bf{bottom:258.046667pt;}
.y3ba{bottom:260.818667pt;}
.y1a3{bottom:260.857333pt;}
.y351{bottom:261.814667pt;}
.y24b{bottom:262.126667pt;}
.y331{bottom:262.213333pt;}
.y16b{bottom:262.706667pt;}
.y43{bottom:265.281333pt;}
.y303{bottom:267.274667pt;}
.y1e4{bottom:267.744000pt;}
.y88{bottom:269.761333pt;}
.y380{bottom:269.944000pt;}
.y13b{bottom:270.392000pt;}
.y1bd{bottom:270.809717pt;}
.y2be{bottom:272.810667pt;}
.y1b{bottom:273.154667pt;}
.ybf{bottom:273.556000pt;}
.y101{bottom:274.556000pt;}
.y2bd{bottom:275.142667pt;}
.y13c{bottom:275.214667pt;}
.y3b9{bottom:276.161333pt;}
.y24a{bottom:276.738667pt;}
.y1a2{bottom:277.594667pt;}
.y350{bottom:278.552000pt;}
.y330{bottom:278.950667pt;}
.y16a{bottom:279.444000pt;}
.y302{bottom:284.012000pt;}
.y1e3{bottom:284.481333pt;}
.y37f{bottom:285.286667pt;}
.y87{bottom:286.498667pt;}
.y139{bottom:287.129333pt;}
.y1bc{bottom:288.409717pt;}
.y1a{bottom:289.054667pt;}
.y2bc{bottom:289.906667pt;}
.ybe{bottom:290.293333pt;}
.y100{bottom:291.293333pt;}
.y249{bottom:291.350667pt;}
.y3b8{bottom:291.502667pt;}
.y1ec{bottom:291.730669pt;}
.y13a{bottom:291.952000pt;}
.y2bb{bottom:292.237333pt;}
.y1a1{bottom:294.332000pt;}
.y34f{bottom:295.289333pt;}
.y32f{bottom:295.688000pt;}
.y169{bottom:296.181333pt;}
.y1eb{bottom:299.730669pt;}
.yc8{bottom:300.519998pt;}
.y37e{bottom:300.629333pt;}
.y301{bottom:300.749333pt;}
.y1e2{bottom:301.218667pt;}
.y20d{bottom:302.138665pt;}
.y86{bottom:303.236000pt;}
.y138{bottom:303.866667pt;}
.y19{bottom:304.954667pt;}
.y248{bottom:305.961333pt;}
.y1bb{bottom:306.009734pt;}
.y3b7{bottom:306.845333pt;}
.ybd{bottom:307.030667pt;}
.yfe{bottom:308.030667pt;}
.yc7{bottom:308.519998pt;}
.y20c{bottom:310.138665pt;}
.y1a0{bottom:311.069333pt;}
.y34e{bottom:312.026667pt;}
.y2af{bottom:312.174667pt;}
.y32e{bottom:312.425333pt;}
.yff{bottom:312.852000pt;}
.y168{bottom:312.918667pt;}
.y2ff{bottom:315.060000pt;}
.y37d{bottom:315.972000pt;}
.y2fe{bottom:317.486667pt;}
.y1e1{bottom:317.956000pt;}
.y85{bottom:319.973333pt;}
.y294{bottom:320.331894pt;}
.y247{bottom:320.573333pt;}
.y137{bottom:320.604000pt;}
.y18{bottom:320.856000pt;}
.y2a0{bottom:321.608002pt;}
.y3b6{bottom:322.188000pt;}
.y300{bottom:322.309333pt;}
.ybc{bottom:323.768000pt;}
.y1ba{bottom:323.785738pt;}
.yfd{bottom:324.768000pt;}
.y2b6{bottom:326.873409pt;}
.y34d{bottom:328.764000pt;}
.y32d{bottom:329.162667pt;}
.y167{bottom:329.656000pt;}
.y29f{bottom:330.008002pt;}
.y37c{bottom:331.314667pt;}
.y42{bottom:332.081333pt;}
.y2fd{bottom:334.224000pt;}
.y1e0{bottom:334.693333pt;}
.y2c2{bottom:335.365798pt;}
.y293{bottom:336.331894pt;}
.y84{bottom:336.710667pt;}
.y136{bottom:337.341333pt;}
.y3b5{bottom:337.530667pt;}
.ybb{bottom:340.505333pt;}
.y19f{bottom:340.906667pt;}
.y1b9{bottom:341.385738pt;}
.yfc{bottom:341.505333pt;}
.y246{bottom:341.588000pt;}
.y244{bottom:341.721333pt;}
.y2b5{bottom:341.993402pt;}
.y2c1{bottom:343.765798pt;}
.y34c{bottom:345.501333pt;}
.y32c{bottom:345.900000pt;}
.y166{bottom:346.393333pt;}
.y37b{bottom:346.657333pt;}
.y243{bottom:347.632000pt;}
.y41{bottom:349.376000pt;}
.y2fc{bottom:350.961333pt;}
.y1df{bottom:351.430667pt;}
.y292{bottom:352.491867pt;}
.y3b4{bottom:352.873333pt;}
.y83{bottom:353.448000pt;}
.y135{bottom:354.078667pt;}
.y17{bottom:354.688000pt;}
.y245{bottom:356.200000pt;}
.y59{bottom:356.353326pt;}
.yba{bottom:357.242667pt;}
.y2b4{bottom:357.281400pt;}
.y19e{bottom:358.001333pt;}
.yfb{bottom:358.242667pt;}
.y1b8{bottom:359.161726pt;}
.y37a{bottom:362.000000pt;}
.y34b{bottom:362.238667pt;}
.y32b{bottom:362.637333pt;}
.y165{bottom:363.130667pt;}
.y2fb{bottom:367.698667pt;}
.y1de{bottom:368.168000pt;}
.y3b3{bottom:368.216000pt;}
.y291{bottom:368.331894pt;}
.y82{bottom:370.185333pt;}
.y16{bottom:370.589333pt;}
.y134{bottom:370.816000pt;}
.y58{bottom:372.513329pt;}
.yb9{bottom:373.980000pt;}
.y1b7{bottom:376.761726pt;}
.y2b3{bottom:376.937401pt;}
.y379{bottom:377.341333pt;}
.y17c{bottom:377.938820pt;}
.y34a{bottom:378.976000pt;}
.y32a{bottom:379.374667pt;}
.y164{bottom:379.868000pt;}
.y40{bottom:382.612000pt;}
.y3b2{bottom:383.558667pt;}
.y242{bottom:384.305333pt;}
.y2fa{bottom:384.436000pt;}
.y290{bottom:384.491867pt;}
.y1dd{bottom:384.905333pt;}
.y15{bottom:386.489333pt;}
.y81{bottom:386.922667pt;}
.y57{bottom:388.513329pt;}
.yb8{bottom:390.717333pt;}
.y378{bottom:392.684000pt;}
.y1b6{bottom:394.361726pt;}
.y349{bottom:395.713333pt;}
.y329{bottom:396.112000pt;}
.y163{bottom:396.605333pt;}
.yfa{bottom:398.653333pt;}
.y3b1{bottom:398.901333pt;}
.y3f{bottom:399.906667pt;}
.y28f{bottom:400.651840pt;}
.y2f9{bottom:401.173333pt;}
.y133{bottom:401.501333pt;}
.y1dc{bottom:401.642667pt;}
.y80{bottom:403.660000pt;}
.yb7{bottom:407.454667pt;}
.y377{bottom:408.026667pt;}
.y118{bottom:411.010660pt;}
.y1b5{bottom:412.137729pt;}
.y348{bottom:412.450667pt;}
.y328{bottom:412.848000pt;}
.y162{bottom:413.342667pt;}
.y3b0{bottom:414.244000pt;}
.y241{bottom:415.958667pt;}
.y28e{bottom:416.651840pt;}
.y3e{bottom:417.201333pt;}
.y2f8{bottom:417.910667pt;}
.y14{bottom:418.330667pt;}
.y1db{bottom:418.380000pt;}
.yf9{bottom:419.666667pt;}
.y7f{bottom:420.397333pt;}
.y376{bottom:423.369333pt;}
.yb6{bottom:424.192000pt;}
.y117{bottom:427.010660pt;}
.y347{bottom:429.188000pt;}
.y327{bottom:429.585333pt;}
.y1b4{bottom:429.737729pt;}
.y161{bottom:430.080000pt;}
.y132{bottom:432.186667pt;}
.y240{bottom:432.696000pt;}
.y28d{bottom:432.811874pt;}
.y55{bottom:434.273331pt;}
.y3d{bottom:434.497333pt;}
.y2f7{bottom:434.648000pt;}
.y1da{bottom:435.117333pt;}
.y7e{bottom:437.134667pt;}
.y375{bottom:438.712000pt;}
.y1ff{bottom:439.988000pt;}
.y54{bottom:442.273331pt;}
.y116{bottom:443.010660pt;}
.y19a{bottom:443.386163pt;}
.y3af{bottom:444.928000pt;}
.y346{bottom:445.925333pt;}
.y326{bottom:446.322667pt;}
.y160{bottom:446.817333pt;}
.yf8{bottom:447.773333pt;}
.y28c{bottom:448.651871pt;}
.y131{bottom:448.922667pt;}
.y23f{bottom:449.433333pt;}
.y13{bottom:450.170667pt;}
.y2f6{bottom:451.385333pt;}
.y3c{bottom:451.792000pt;}
.y1d9{bottom:451.854667pt;}
.y7d{bottom:453.872000pt;}
.y374{bottom:454.054667pt;}
.y115{bottom:459.170663pt;}
.y1f5{bottom:459.925333pt;}
.y3ae{bottom:460.270667pt;}
.y199{bottom:461.786163pt;}
.y345{bottom:462.662667pt;}
.y325{bottom:463.060000pt;}
.y15f{bottom:463.554667pt;}
.yb5{bottom:464.602667pt;}
.y28b{bottom:464.811874pt;}
.y130{bottom:465.660000pt;}
.y12{bottom:466.070667pt;}
.y23e{bottom:466.170667pt;}
.y2f5{bottom:468.122667pt;}
.y1d8{bottom:468.592000pt;}
.y3b{bottom:469.086667pt;}
.y373{bottom:469.397333pt;}
.y7c{bottom:470.608000pt;}
.y114{bottom:475.170663pt;}
.y3ad{bottom:475.613333pt;}
.y344{bottom:476.973333pt;}
.yb4{bottom:479.214667pt;}
.y343{bottom:479.398667pt;}
.y324{bottom:479.797333pt;}
.y1b2{bottom:480.073731pt;}
.y15e{bottom:480.292000pt;}
.y198{bottom:480.370203pt;}
.yf7{bottom:480.754667pt;}
.y28a{bottom:480.811874pt;}
.y11{bottom:481.972000pt;}
.y23d{bottom:482.908000pt;}
.y372{bottom:484.740000pt;}
.y2f4{bottom:484.860000pt;}
.y1d7{bottom:485.329333pt;}
.y3a{bottom:486.382667pt;}
.yb1{bottom:486.520000pt;}
.y7b{bottom:487.345333pt;}
.y205{bottom:487.382656pt;}
.y1b1{bottom:488.873731pt;}
.y3ac{bottom:490.956000pt;}
.yb0{bottom:493.826667pt;}
.y12f{bottom:495.497333pt;}
.y342{bottom:496.136000pt;}
.y270{bottom:496.524000pt;}
.y323{bottom:496.534667pt;}
.y289{bottom:496.971878pt;}
.y15d{bottom:497.029333pt;}
.yf6{bottom:497.492000pt;}
.y10{bottom:497.872000pt;}
.y197{bottom:498.770203pt;}
.y23c{bottom:499.645333pt;}
.y371{bottom:500.082667pt;}
.y2f3{bottom:501.597333pt;}
.y39{bottom:503.677333pt;}
.y7a{bottom:504.082667pt;}
.y1d6{bottom:506.052000pt;}
.y204{bottom:506.262661pt;}
.y3ab{bottom:506.298667pt;}
.yb3{bottom:508.438667pt;}
.y341{bottom:512.873333pt;}
.y288{bottom:513.131882pt;}
.y26f{bottom:513.261333pt;}
.y322{bottom:513.272000pt;}
.yf{bottom:513.772000pt;}
.yf5{bottom:514.229333pt;}
.y370{bottom:515.424000pt;}
.y110{bottom:515.433333pt;}
.y23b{bottom:516.382667pt;}
.y196{bottom:517.170167pt;}
.y15c{bottom:517.750667pt;}
.y2f2{bottom:518.334667pt;}
.y79{bottom:520.820000pt;}
.y112{bottom:520.930665pt;}
.y38{bottom:520.973333pt;}
.y3aa{bottom:521.641333pt;}
.yb2{bottom:523.050667pt;}
.y111{bottom:528.930665pt;}
.y287{bottom:528.971878pt;}
.y340{bottom:529.610667pt;}
.ye{bottom:529.673333pt;}
.y26e{bottom:529.998667pt;}
.y321{bottom:530.009333pt;}
.y36f{bottom:530.766667pt;}
.yf4{bottom:530.966667pt;}
.y1d5{bottom:533.098667pt;}
.y23a{bottom:533.120000pt;}
.y2f1{bottom:535.072000pt;}
.y15b{bottom:535.684000pt;}
.y195{bottom:535.754172pt;}
.y3a9{bottom:536.984000pt;}
.y78{bottom:537.557333pt;}
.y37{bottom:538.268000pt;}
.y1f7{bottom:542.517335pt;}
.yaf{bottom:544.064000pt;}
.y286{bottom:545.131882pt;}
.yd{bottom:545.573333pt;}
.y36e{bottom:546.109333pt;}
.y33f{bottom:546.348000pt;}
.y26d{bottom:546.736000pt;}
.y320{bottom:546.746667pt;}
.yf3{bottom:547.704000pt;}
.y239{bottom:549.857333pt;}
.y1f6{bottom:550.517335pt;}
.y2f0{bottom:551.809333pt;}
.y3a8{bottom:552.325333pt;}
.y1b0{bottom:553.036000pt;}
.y194{bottom:554.154172pt;}
.y77{bottom:554.294667pt;}
.y36{bottom:555.562667pt;}
.yad{bottom:558.676000pt;}
.y26c{bottom:561.046667pt;}
.y285{bottom:561.131882pt;}
.y36d{bottom:561.452000pt;}
.yc{bottom:561.473333pt;}
.y26b{bottom:563.473333pt;}
.y31f{bottom:563.484000pt;}
.yf2{bottom:564.441333pt;}
.y238{bottom:566.594667pt;}
.y33e{bottom:567.070667pt;}
.y3a7{bottom:567.668000pt;}
.y2ef{bottom:568.546667pt;}
.y193{bottom:572.738175pt;}
.y35{bottom:572.858667pt;}
.yac{bottom:573.288000pt;}
.y36c{bottom:576.794667pt;}
.yb{bottom:577.374667pt;}
.y26a{bottom:580.210667pt;}
.y31e{bottom:580.221333pt;}
.ya9{bottom:580.593333pt;}
.yf1{bottom:581.178667pt;}
.y15a{bottom:581.274667pt;}
.y2ee{bottom:582.857333pt;}
.y3a6{bottom:583.010667pt;}
.y237{bottom:583.332000pt;}
.y76{bottom:584.130667pt;}
.y2ed{bottom:585.284000pt;}
.yab{bottom:587.900000pt;}
.y34{bottom:590.153333pt;}
.y192{bottom:591.138175pt;}
.y36b{bottom:592.137333pt;}
.y284{bottom:593.771866pt;}
.y159{bottom:595.886667pt;}
.y269{bottom:596.948000pt;}
.y31d{bottom:596.958667pt;}
.y8{bottom:597.259968pt;}
.yf0{bottom:597.916000pt;}
.y3a5{bottom:598.353333pt;}
.y236{bottom:600.069333pt;}
.y2ec{bottom:602.021333pt;}
.yaa{bottom:602.512000pt;}
.y53{bottom:604.068000pt;}
.y33{bottom:607.448000pt;}
.y36a{bottom:607.480000pt;}
.y191{bottom:609.538175pt;}
.y158{bottom:610.498667pt;}
.y268{bottom:613.685333pt;}
.y31c{bottom:613.696000pt;}
.yef{bottom:614.653333pt;}
.y235{bottom:616.806667pt;}
.yae{bottom:617.124000pt;}
.y2eb{bottom:618.758667pt;}
.y369{bottom:622.822667pt;}
.y32{bottom:624.744000pt;}
.y157{bottom:625.110667pt;}
.y282{bottom:627.531876pt;}
.y267{bottom:627.996000pt;}
.y190{bottom:628.122180pt;}
.y3a4{bottom:629.038667pt;}
.y266{bottom:630.422667pt;}
.y31b{bottom:630.433333pt;}
.yee{bottom:631.390667pt;}
.y234{bottom:633.544000pt;}
.ya8{bottom:638.137333pt;}
.y2ea{bottom:639.480000pt;}
.y156{bottom:639.722667pt;}
.y368{bottom:642.149333pt;}
.y3a3{bottom:644.381333pt;}
.y281{bottom:644.491867pt;}
.y265{bottom:644.733333pt;}
.y18f{bottom:646.522180pt;}
.y2ae{bottom:646.598667pt;}
.y264{bottom:647.160000pt;}
.y31a{bottom:647.170667pt;}
.y233{bottom:650.281333pt;}
.yed{bottom:652.112000pt;}
.ya6{bottom:652.749333pt;}
.y155{bottom:654.334667pt;}
.y31{bottom:659.041333pt;}
.y3a2{bottom:659.724000pt;}
.y280{bottom:661.291855pt;}
.y2ad{bottom:661.364000pt;}
.y2ac{bottom:663.694667pt;}
.y263{bottom:663.897333pt;}
.y319{bottom:663.908000pt;}
.y18e{bottom:665.106185pt;}
.y2e9{bottom:666.526667pt;}
.ya7{bottom:667.361333pt;}
.y154{bottom:668.946667pt;}
.yec{bottom:670.045333pt;}
.y232{bottom:671.004000pt;}
.y367{bottom:672.037333pt;}
.y30{bottom:673.388000pt;}
.y3a1{bottom:675.066667pt;}
.y2ab{bottom:678.460000pt;}
.y262{bottom:680.634667pt;}
.y318{bottom:680.645333pt;}
.y2aa{bottom:680.790667pt;}
.y2e8{bottom:681.292000pt;}
.y18d{bottom:683.506185pt;}
.y2e7{bottom:683.622667pt;}
.y3a0{bottom:688.077333pt;}
.ya5{bottom:688.374667pt;}
.y153{bottom:689.960000pt;}
.y39f{bottom:690.408000pt;}
.y2f{bottom:691.592000pt;}
.y2b1{bottom:694.793402pt;}
.y27d{bottom:695.211868pt;}
.y366{bottom:695.629333pt;}
.ya4{bottom:695.681333pt;}
.y152{bottom:697.266667pt;}
.y261{bottom:697.370667pt;}
.y317{bottom:697.382667pt;}
.y231{bottom:698.049333pt;}
.y29e{bottom:700.728000pt;}
.y18c{bottom:701.906185pt;}
.y2e{bottom:702.081333pt;}
.y2b0{bottom:703.193402pt;}
.y2c0{bottom:703.560000pt;}
.yeb{bottom:705.061333pt;}
.y39e{bottom:705.750667pt;}
.y1f4{bottom:708.837333pt;}
.y365{bottom:711.250667pt;}
.y316{bottom:711.693333pt;}
.y27c{bottom:712.171860pt;}
.y260{bottom:714.108000pt;}
.y315{bottom:714.120000pt;}
.y20b{bottom:717.986667pt;}
.y39d{bottom:718.762667pt;}
.y2d{bottom:720.284000pt;}
.y18b{bottom:720.306185pt;}
.y39c{bottom:721.093333pt;}
.ya3{bottom:724.001333pt;}
.yc6{bottom:724.998667pt;}
.y364{bottom:726.872000pt;}
.y1ea{bottom:728.774667pt;}
.y27b{bottom:728.971863pt;}
.y2c{bottom:730.773333pt;}
.y25f{bottom:730.845333pt;}
.y314{bottom:730.857333pt;}
.y151{bottom:732.678667pt;}
.ya2{bottom:736.281333pt;}
.y39b{bottom:736.436000pt;}
.ya0{bottom:738.613333pt;}
.y18a{bottom:738.890188pt;}
.y25e{bottom:747.582667pt;}
.y313{bottom:747.594667pt;}
.y2b{bottom:748.977333pt;}
.y363{bottom:750.464000pt;}
.y39a{bottom:751.778667pt;}
.ya1{bottom:753.225333pt;}
.y189{bottom:757.474193pt;}
.y2a{bottom:759.465333pt;}
.y150{bottom:764.332000pt;}
.y362{bottom:766.085333pt;}
.y399{bottom:767.121333pt;}
.y276{bottom:771.851868pt;}
.y29{bottom:773.812000pt;}
.y9f{bottom:774.238667pt;}
.y188{bottom:775.874193pt;}
.y283{bottom:777.305331pt;}
.y28{bottom:777.669333pt;}
.y14f{bottom:781.069333pt;}
.y361{bottom:781.706667pt;}
.y398{bottom:782.464000pt;}
.y9e{bottom:786.520000pt;}
.y25d{bottom:787.993333pt;}
.y27{bottom:788.158667pt;}
.y9c{bottom:788.850667pt;}
.y202{bottom:793.302669pt;}
.y187{bottom:794.274193pt;}
.y312{bottom:795.380000pt;}
.y360{bottom:797.328000pt;}
.y14e{bottom:797.806667pt;}
.y201{bottom:801.302669pt;}
.y25c{bottom:802.605333pt;}
.y9d{bottom:803.462667pt;}
.y275{bottom:805.451866pt;}
.y26{bottom:806.362667pt;}
.y35f{bottom:812.949333pt;}
.y3c6{bottom:813.148000pt;}
.y397{bottom:813.149333pt;}
.y14d{bottom:814.544000pt;}
.y25{bottom:816.850667pt;}
.y186{bottom:817.090188pt;}
.y25b{bottom:817.217333pt;}
.y9b{bottom:824.476000pt;}
.y396{bottom:828.490667pt;}
.y17b{bottom:830.882667pt;}
.y14c{bottom:831.281333pt;}
.y25a{bottom:831.829333pt;}
.y24{bottom:835.054667pt;}
.y35e{bottom:836.541333pt;}
.y395{bottom:843.833333pt;}
.y27e{bottom:844.985323pt;}
.y1af{bottom:845.592000pt;}
.y259{bottom:846.441333pt;}
.y17a{bottom:847.620000pt;}
.y14b{bottom:848.018667pt;}
.y273{bottom:849.931869pt;}
.y35d{bottom:852.162667pt;}
.y9a{bottom:852.582667pt;}
.y185{bottom:852.786181pt;}
.y272{bottom:857.931869pt;}
.y394{bottom:859.176000pt;}
.y258{bottom:861.053333pt;}
.y1ae{bottom:862.329333pt;}
.y179{bottom:864.357333pt;}
.y14a{bottom:864.754667pt;}
.y35c{bottom:867.784000pt;}
.y33d{bottom:869.577333pt;}
.y99{bottom:869.678667pt;}
.y7{bottom:870.782667pt;}
.y184{bottom:871.370185pt;}
.y393{bottom:874.518667pt;}
.y257{bottom:875.665333pt;}
.y178{bottom:881.094667pt;}
.y149{bottom:881.492000pt;}
.y35b{bottom:883.405333pt;}
.y33c{bottom:886.314667pt;}
.y98{bottom:886.774667pt;}
.y6{bottom:887.520000pt;}
.y392{bottom:889.861333pt;}
.y183{bottom:889.954172pt;}
.y256{bottom:890.277333pt;}
.y177{bottom:897.832000pt;}
.y148{bottom:898.229333pt;}
.y255{bottom:904.889333pt;}
.y391{bottom:905.204000pt;}
.y182{bottom:908.170185pt;}
.y279{bottom:912.505328pt;}
.y176{bottom:914.569333pt;}
.y97{bottom:914.966667pt;}
.y254{bottom:919.501333pt;}
.y390{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y181{bottom:926.754172pt;}
.y277{bottom:930.105334pt;}
.y96{bottom:931.704000pt;}
.y175{bottom:935.290667pt;}
.y38f{bottom:935.889333pt;}
.y253{bottom:940.514667pt;}
.y180{bottom:945.154172pt;}
.y252{bottom:946.558667pt;}
.y95{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y38e{bottom:951.230667pt;}
.y311{bottom:962.752000pt;}
.y94{bottom:965.178667pt;}
.y38d{bottom:966.573333pt;}
.y52{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y3c5{bottom:979.585333pt;}
.y93{bottom:981.916000pt;}
.y251{bottom:983.233333pt;}
.y51{bottom:984.290667pt;}
.y17e{bottom:997.778182pt;}
.y17d{bottom:1006.978182pt;}
.y1{bottom:1014.377333pt;}
.y50{bottom:1043.020000pt;}
.h41{height:-481.221343pt;}
.h46{height:-454.594668pt;}
.h48{height:-436.994662pt;}
.h40{height:-413.541350pt;}
.h49{height:-369.474657pt;}
.h3f{height:-353.541350pt;}
.h4a{height:-301.794665pt;}
.h26{height:-86.909323pt;}
.h7{height:22.673858pt;}
.h23{height:28.023859pt;}
.hb{height:28.947524pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.h10{height:33.235456pt;}
.ha{height:33.771789pt;}
.h11{height:33.904947pt;}
.he{height:34.574438pt;}
.h21{height:36.527070pt;}
.h14{height:36.666735pt;}
.h24{height:36.873667pt;}
.h22{height:36.928037pt;}
.h39{height:37.204523pt;}
.h17{height:37.205632pt;}
.h38{height:37.420600pt;}
.h16{height:37.421716pt;}
.h5a{height:37.671911pt;}
.h12{height:38.415786pt;}
.hc{height:38.596538pt;}
.hd{height:38.809074pt;}
.h4{height:38.947124pt;}
.h4e{height:39.064749pt;}
.h55{height:39.065914pt;}
.h4d{height:39.291630pt;}
.h54{height:39.292802pt;}
.h36{height:40.179776pt;}
.h33{height:40.926196pt;}
.h32{height:41.163887pt;}
.h4b{height:41.646914pt;}
.h3b{height:41.888792pt;}
.h19{height:41.889908pt;}
.h2f{height:42.004444pt;}
.h2d{height:42.785201pt;}
.h2c{height:43.033690pt;}
.hf{height:43.421286pt;}
.h1a{height:43.660390pt;}
.h51{height:43.729260pt;}
.h58{height:43.730425pt;}
.h50{height:43.983232pt;}
.h57{height:43.984404pt;}
.h2{height:45.271688pt;}
.h35{height:46.078899pt;}
.h3a{height:46.088936pt;}
.h18{height:46.090786pt;}
.h47{height:46.356612pt;}
.h20{height:46.358473pt;}
.h30{height:48.172111pt;}
.h13{height:48.245551pt;}
.h4f{height:48.393383pt;}
.h56{height:48.395325pt;}
.h1e{height:48.511220pt;}
.h59{height:48.676396pt;}
.h6{height:49.201961pt;}
.h34{height:50.699865pt;}
.h2e{height:53.002277pt;}
.h27{height:58.608068pt;}
.h28{height:63.795772pt;}
.h2a{height:63.801105pt;}
.h43{height:68.846438pt;}
.h5{height:69.148877pt;}
.h42{height:69.379772pt;}
.h1b{height:72.642620pt;}
.h1c{height:72.647953pt;}
.h45{height:80.276592pt;}
.h3{height:91.114522pt;}
.h29{height:93.022438pt;}
.h1d{height:101.869286pt;}
.h3c{height:226.516000pt;}
.h3d{height:227.056000pt;}
.h31{height:241.455867pt;}
.h37{height:266.425333pt;}
.h1f{height:270.201333pt;}
.h3e{height:277.213333pt;}
.h53{height:291.639600pt;}
.h4c{height:294.471800pt;}
.h44{height:305.257200pt;}
.h52{height:312.026400pt;}
.h15{height:342.472000pt;}
.h25{height:398.717333pt;}
.h2b{height:431.932180pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w1b{width:-169.506696pt;}
.w26{width:-166.306684pt;}
.w1a{width:-153.506696pt;}
.w25{width:-144.386640pt;}
.w19{width:-141.186689pt;}
.w3b{width:-121.474665pt;}
.wf{width:-120.764000pt;}
.w38{width:-118.274668pt;}
.w1c{width:-117.564003pt;}
.w32{width:-116.674669pt;}
.w3c{width:-115.234667pt;}
.w10{width:-114.524002pt;}
.w39{width:-111.874666pt;}
.w1d{width:-111.323998pt;}
.w33{width:-110.274660pt;}
.we{width:-94.844002pt;}
.w18{width:-72.226667pt;}
.w24{width:-69.026655pt;}
.w23{width:-47.106672pt;}
.w17{width:-43.906660pt;}
.w34{width:-32.194674pt;}
.w7{width:-29.497328pt;}
.w35{width:-25.954668pt;}
.w1e{width:-23.163994pt;}
.w11{width:-19.963997pt;}
.w1f{width:-16.764000pt;}
.w28{width:-16.514666pt;}
.w12{width:-13.724007pt;}
.w29{width:-10.114672pt;}
.w31{width:-3.587988pt;}
.w2e{width:4.320007pt;}
.w2c{width:4.320008pt;}
.w2f{width:6.399963pt;}
.w14{width:6.399994pt;}
.w16{width:6.400024pt;}
.w22{width:6.400025pt;}
.w37{width:22.079956pt;}
.w21{width:22.079986pt;}
.w20{width:22.079987pt;}
.w36{width:22.080017pt;}
.w2b{width:25.119995pt;}
.w3a{width:28.319976pt;}
.w13{width:28.320007pt;}
.w15{width:28.320008pt;}
.w30{width:50.011988pt;}
.w2a{width:53.600006pt;}
.w2d{width:53.760010pt;}
.w3{width:66.991004pt;}
.w2{width:139.658538pt;}
.wd{width:295.009333pt;}
.wa{width:299.324000pt;}
.w9{width:317.985067pt;}
.w3f{width:325.617600pt;}
.w4{width:357.572000pt;}
.wc{width:360.808000pt;}
.w8{width:443.213067pt;}
.w6{width:455.476000pt;}
.w27{width:465.977333pt;}
.wb{width:470.290667pt;}
.w3e{width:507.962000pt;}
.w3d{width:510.794200pt;}
.w5{width:567.908000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xb5{left:-180.504133pt;}
.xa3{left:-178.325133pt;}
.x12d{left:-168.901600pt;}
.x11b{left:-167.769000pt;}
.x10d{left:-166.636400pt;}
.x19{left:-165.173333pt;}
.xe6{left:-163.554667pt;}
.x90{left:-156.466667pt;}
.xbf{left:-149.564003pt;}
.xe8{left:-148.514666pt;}
.xda{left:-144.764000pt;}
.xfe{left:-143.714670pt;}
.xc4{left:-134.204002pt;}
.xc5{left:-132.444000pt;}
.xc6{left:-130.844002pt;}
.xd9{left:-129.244003pt;}
.xfd{left:-128.194666pt;}
.xc7{left:-120.924004pt;}
.xce{left:-117.723999pt;}
.xf2{left:-116.674669pt;}
.xc0{left:-99.163994pt;}
.xc1{left:-81.243996pt;}
.xe9{left:-70.114672pt;}
.xf3{left:-54.274660pt;}
.xc8{left:-48.284004pt;}
.xc2{left:-46.683998pt;}
.xcf{left:-45.243996pt;}
.x73{left:-43.825333pt;}
.xf4{left:-32.354662pt;}
.xd0{left:-23.163994pt;}
.xc9{left:-20.124001pt;}
.xea{left:-16.514666pt;}
.x1a{left:-1.653336pt;}
.x0{left:0.000000pt;}
.x12e{left:2.794397pt;}
.x11d{left:3.926997pt;}
.x10e{left:5.059597pt;}
.x91{left:7.053330pt;}
.xa4{left:9.722863pt;}
.x1c{left:24.906677pt;}
.x3{left:26.021437pt;}
.xb6{left:28.583878pt;}
.x12f{left:30.682411pt;}
.x92{left:33.613343pt;}
.xa5{left:40.266878pt;}
.xc3{left:46.595985pt;}
.x1{left:48.000000pt;}
.x2{left:50.072671pt;}
.xa0{left:55.970667pt;}
.x60{left:69.382667pt;}
.x44{left:75.952000pt;}
.xe7{left:76.925337pt;}
.xde{left:79.950667pt;}
.xbe{left:83.396004pt;}
.xdc{left:89.993333pt;}
.x59{left:91.104000pt;}
.x56{left:92.180000pt;}
.x46{left:93.693333pt;}
.xdd{left:94.697333pt;}
.x93{left:105.613343pt;}
.x74{left:109.294670pt;}
.x72{left:112.897333pt;}
.x75{left:119.694664pt;}
.x45{left:121.482667pt;}
.x78{left:134.414680pt;}
.x77{left:141.934669pt;}
.x76{left:146.254677pt;}
.x48{left:157.110667pt;}
.x5b{left:159.261333pt;}
.x57{left:161.610667pt;}
.x5a{left:163.277333pt;}
.x4e{left:167.928000pt;}
.x4a{left:172.510667pt;}
.x47{left:174.306667pt;}
.x4f{left:176.049333pt;}
.x51{left:181.114667pt;}
.x50{left:184.352000pt;}
.x79{left:212.138667pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x7b{left:238.608000pt;}
.x5{left:241.085333pt;}
.x115{left:243.877333pt;}
.x7a{left:245.745333pt;}
.x116{left:246.838667pt;}
.xd{left:251.365333pt;}
.x10{left:256.037333pt;}
.x66{left:260.365333pt;}
.xa9{left:261.466667pt;}
.x11{left:262.678667pt;}
.x7d{left:265.466667pt;}
.xaa{left:267.178667pt;}
.x99{left:268.889333pt;}
.xdb{left:271.613333pt;}
.x67{left:273.649333pt;}
.x14c{left:275.980000pt;}
.x7{left:277.077333pt;}
.x9d{left:278.298667pt;}
.xd1{left:279.856006pt;}
.x9a{left:282.173333pt;}
.xa7{left:283.656000pt;}
.xc{left:285.677333pt;}
.xff{left:286.640000pt;}
.x11e{left:287.568000pt;}
.x10f{left:289.618667pt;}
.x6e{left:290.512000pt;}
.xbd{left:291.674652pt;}
.x100{left:292.617333pt;}
.x11f{left:293.545333pt;}
.x13c{left:295.140000pt;}
.x37{left:296.282667pt;}
.x2d{left:299.222667pt;}
.xd2{left:301.775989pt;}
.x6f{left:303.794667pt;}
.xca{left:304.976001pt;}
.x38{left:309.565333pt;}
.x5c{left:311.212000pt;}
.x2e{left:312.506667pt;}
.x49{left:313.797333pt;}
.xb7{left:317.047867pt;}
.x94{left:320.165333pt;}
.xaf{left:322.234667pt;}
.x109{left:325.233333pt;}
.x95{left:326.216000pt;}
.x133{left:327.256000pt;}
.x31{left:328.500000pt;}
.xb0{left:330.317333pt;}
.x14d{left:331.893333pt;}
.xa1{left:333.590667pt;}
.x32{left:335.141333pt;}
.x134{left:336.282667pt;}
.x25{left:338.518667pt;}
.x125{left:340.604000pt;}
.xa{left:342.600000pt;}
.xe1{left:344.330667pt;}
.x126{left:345.917333pt;}
.xb{left:348.577333pt;}
.x3c{left:350.546667pt;}
.x26{left:351.802667pt;}
.x9b{left:353.054667pt;}
.xb1{left:354.110667pt;}
.x2f{left:355.708000pt;}
.x1b{left:358.506652pt;}
.xf5{left:359.465326pt;}
.x52{left:361.348000pt;}
.x3d{left:363.830667pt;}
.x9c{left:366.338667pt;}
.xb8{left:368.833333pt;}
.xb2{left:370.210667pt;}
.x58{left:371.450667pt;}
.x30{left:372.378667pt;}
.x138{left:373.921333pt;}
.xb9{left:377.037333pt;}
.xf6{left:381.545343pt;}
.x127{left:382.474667pt;}
.x143{left:383.389333pt;}
.xfc{left:384.585321pt;}
.x128{left:385.510667pt;}
.x135{left:388.468000pt;}
.x139{left:389.949333pt;}
.x9e{left:391.269333pt;}
.xab{left:392.329333pt;}
.xcb{left:395.535999pt;}
.xac{left:398.041333pt;}
.x129{left:405.020000pt;}
.xad{left:408.690667pt;}
.x12a{left:410.334667pt;}
.xeb{left:411.945337pt;}
.xae{left:414.402667pt;}
.x148{left:423.873333pt;}
.x130{left:425.638667pt;}
.x131{left:430.953333pt;}
.x117{left:431.925333pt;}
.x110{left:435.530667pt;}
.x118{left:437.238667pt;}
.xa6{left:439.914900pt;}
.x111{left:440.844000pt;}
.xec{left:442.185327pt;}
.x132{left:445.560000pt;}
.x88{left:447.301333pt;}
.x3a{left:449.577333pt;}
.xa2{left:452.009333pt;}
.x89{left:453.013333pt;}
.x120{left:454.313333pt;}
.x112{left:455.365333pt;}
.x101{left:456.981333pt;}
.xf7{left:458.025323pt;}
.x121{left:459.628000pt;}
.x3b{left:462.861333pt;}
.x68{left:464.921333pt;}
.xd3{left:467.696002pt;}
.x8a{left:469.281333pt;}
.x144{left:470.585333pt;}
.x102{left:471.880000pt;}
.x122{left:474.525333pt;}
.x103{left:477.193333pt;}
.x69{left:478.205333pt;}
.xf8{left:479.945337pt;}
.x6a{left:481.469333pt;}
.xe2{left:483.128000pt;}
.x12{left:484.818667pt;}
.x10a{left:486.826667pt;}
.x147{left:488.545333pt;}
.xd4{left:489.615985pt;}
.x13{left:490.530667pt;}
.xcc{left:492.815998pt;}
.x6b{left:494.753333pt;}
.xed{left:495.785333pt;}
.x6c{left:498.017333pt;}
.xe3{left:499.072000pt;}
.x61{left:500.046667pt;}
.x13e{left:502.472000pt;}
.xe4{left:504.782667pt;}
.x35{left:505.881333pt;}
.x11c{left:507.422970pt;}
.x104{left:509.265333pt;}
.x6d{left:511.301333pt;}
.x36{left:512.524000pt;}
.x5d{left:513.645333pt;}
.x105{left:514.578667pt;}
.x7e{left:515.653333pt;}
.x13f{left:518.729333pt;}
.x70{left:520.153333pt;}
.x21{left:522.074667pt;}
.x8b{left:524.224000pt;}
.xa8{left:525.301333pt;}
.x10b{left:526.985333pt;}
.x22{left:528.717333pt;}
.x123{left:532.025333pt;}
.x71{left:533.437333pt;}
.x23{left:535.225333pt;}
.xe5{left:537.368000pt;}
.x8c{left:539.384000pt;}
.x149{left:541.524000pt;}
.x96{left:543.014667pt;}
.x10c{left:545.850667pt;}
.x14a{left:547.236000pt;}
.x24{left:548.509333pt;}
.xee{left:550.825311pt;}
.x119{left:551.780000pt;}
.xef{left:554.985345pt;}
.x97{left:557.276000pt;}
.x14b{left:558.340000pt;}
.x9f{left:561.590667pt;}
.x113{left:563.389333pt;}
.xd5{left:565.136005pt;}
.x11a{left:569.386667pt;}
.x14{left:571.325333pt;}
.x98{left:574.126667pt;}
.x124{left:575.846667pt;}
.x15{left:577.037333pt;}
.xf9{left:578.345331pt;}
.x8d{left:579.350667pt;}
.xba{left:581.777333pt;}
.x106{left:582.668000pt;}
.x81{left:583.601333pt;}
.xd6{left:587.055988pt;}
.xbb{left:589.982667pt;}
.x8e{left:591.180000pt;}
.x107{left:592.252000pt;}
.x2b{left:593.546667pt;}
.x8{left:596.825333pt;}
.x16{left:598.174667pt;}
.x2c{left:600.188000pt;}
.x108{left:601.233333pt;}
.x9{left:604.210667pt;}
.x82{left:605.306667pt;}
.xf0{left:608.745355pt;}
.x13d{left:610.049333pt;}
.x83{left:611.018667pt;}
.x63{left:614.130667pt;}
.x5e{left:615.085333pt;}
.x150{left:616.228000pt;}
.x153{left:617.154667pt;}
.x53{left:618.157333pt;}
.x4b{left:619.490667pt;}
.x151{left:621.541333pt;}
.x64{left:624.577333pt;}
.x4c{left:625.976000pt;}
.x5f{left:627.446667pt;}
.x54{left:628.708000pt;}
.x7f{left:631.004000pt;}
.x154{left:632.810667pt;}
.x152{left:636.660000pt;}
.xbc{left:638.217333pt;}
.x62{left:639.174667pt;}
.x55{left:641.064000pt;}
.x155{left:642.046667pt;}
.x8f{left:643.597333pt;}
.x14f{left:645.593333pt;}
.x80{left:646.921333pt;}
.xe{left:649.244000pt;}
.x156{left:650.370667pt;}
.x4d{left:651.422667pt;}
.xfa{left:654.825311pt;}
.xf{left:655.886667pt;}
.x65{left:657.005333pt;}
.xcd{left:659.216022pt;}
.xd7{left:662.415973pt;}
.x14e{left:664.813333pt;}
.x42{left:666.205333pt;}
.xb3{left:667.550667pt;}
.xdf{left:669.188000pt;}
.x84{left:672.245333pt;}
.xb4{left:673.262667pt;}
.xe0{left:674.900000pt;}
.xfb{left:676.745355pt;}
.x43{left:679.489333pt;}
.x33{left:680.690667pt;}
.x13a{left:682.684000pt;}
.xd8{left:684.336017pt;}
.x40{left:687.252000pt;}
.x13b{left:688.734667pt;}
.x145{left:689.820000pt;}
.x85{left:691.684000pt;}
.xf1{left:692.585321pt;}
.x34{left:693.974667pt;}
.x27{left:695.718667pt;}
.x86{left:697.396000pt;}
.x142{left:699.078667pt;}
.x41{left:700.536000pt;}
.x28{left:702.361333pt;}
.x29{left:705.616000pt;}
.x3e{left:707.453333pt;}
.x140{left:708.904000pt;}
.x136{left:710.426667pt;}
.x12b{left:712.292000pt;}
.x87{left:713.757333pt;}
.x12c{left:717.605333pt;}
.x1d{left:718.944000pt;}
.x3f{left:720.737333pt;}
.x2a{left:722.153333pt;}
.x137{left:723.709333pt;}
.x1e{left:725.585333pt;}
.x17{left:727.301333pt;}
.x1f{left:728.972000pt;}
.x7c{left:730.910667pt;}
.x18{left:733.013333pt;}
.x141{left:734.094667pt;}
.x20{left:735.614667pt;}
.x114{left:738.114667pt;}
.x39{left:740.328000pt;}
.x146{left:744.106667pt;}
}




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