
    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_fe82de0ba05bfdd4204bfc5f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_525c290761cc636ae057a906.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0ac967dba8ce9ab93fe2ae3e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9d49eb6e10ad24d542f26893.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7caf3c1be753cd27d3f26ba3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8237d9c6b0fab5de4a27332c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.482000;font-style:normal;font-weight: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_cae3c951f0bfaaf03af6548e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900000;font-style:normal;font-weight: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_6b87523b5ef7e7be49675838.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3e0f98c9c406fc4a3c9d2f52.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0865e6b4973acc8df0e0d5de.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.022461;font-style:normal;font-weight: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_0d1055e9f45dea5143185c48.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.022461;font-style:normal;font-weight: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_26a894c78022e4adf887792a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_19473295b4c20d8179656048.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.941406;font-style:normal;font-weight: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_8021e79a146e1f589958a4cf.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.019531;font-style:normal;font-weight: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_6b87523b5ef7e7be49675838.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_b82a33122ad658130589e0c4.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a561af5d1f59b00d830192e2.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.022461;font-style:normal;font-weight: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_07ab4f7711596553c7585ecc.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5e217ca0a3206be4c8b3b2e0.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.022461;font-style:normal;font-weight: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_8021e79a146e1f589958a4cf.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.019531;font-style:normal;font-weight: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_6b87523b5ef7e7be49675838.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_fe661a13e54fbdc5625eb19f.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_b027a8b33033cba7c36dd31d.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.022461;font-style:normal;font-weight: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_979f83c518ff11fab1e486a6.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.022461;font-style:normal;font-weight: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_663277b61fb49b2fd7d5b9e1.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_4d59bbf816a629e239635339.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.019531;font-style:normal;font-weight: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_19473295b4c20d8179656048.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.941406;font-style:normal;font-weight: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_535c187782bea9e6dd95513b.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.505000;font-style:normal;font-weight: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_0e3cfc85c7e484c3cb40e4e9.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.234000;font-style:normal;font-weight: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_c9d91b852199a1c86992a1cf.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:2.399000;font-style:normal;font-weight: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_6b87523b5ef7e7be49675838.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_fe661a13e54fbdc5625eb19f.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_451c816c1db7a521b7da73fe.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.022461;font-style:normal;font-weight: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_ff83a85df293cdf72f6f9ca3.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_8b636363e09443f65780cbd2.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.022461;font-style:normal;font-weight: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_4d59bbf816a629e239635339.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.019531;font-style:normal;font-weight: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_6b87523b5ef7e7be49675838.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_fe661a13e54fbdc5625eb19f.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_e1c5047ace053ed83af94dfa.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.022461;font-style:normal;font-weight: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_55d621094a747a4acb975ebb.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.022461;font-style:normal;font-weight: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_144cbf62e509f548e285d21a.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_6b87523b5ef7e7be49675838.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_fe661a13e54fbdc5625eb19f.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_b1c48c80e8d0c538a9b55d1a.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.022461;font-style:normal;font-weight: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_73d8dbf9d5e088e1c7734d1f.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.022461;font-style:normal;font-weight: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_d30451d8ce9f7b87d6f4789a.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_a6efe7acdd1fb97543baf658.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_3bde690e4c3b0614bbfc6a8c.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.019531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{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);}
.m21{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);}
.m24{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);}
.m19{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);}
.m9{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);}
.m15{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);}
.m1f{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);}
.m2a{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);}
.ma{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);}
.m1d{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);}
.m17{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);}
.md{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);}
.m12{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m1{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);}
.m16{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);}
.m2e{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);}
.m27{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);}
.me{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);}
.m22{transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m28{transform:matrix(0.250279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250279,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);}
.m2d{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);}
.mb{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);}
.m23{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);}
.m18{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);}
.m5{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);}
.m11{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);}
.m1a{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);}
.m1b{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);}
.mf{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);}
.m7{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);}
.m4{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);}
.m26{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);}
.m10{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);}
.m2b{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);}
.m1e{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);}
.m1c{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);}
.m13{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);}
.m14{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);}
.m8{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);}
.v10{vertical-align:-43.848000px;}
.v2{vertical-align:-17.364000px;}
.ve{vertical-align:-15.120000px;}
.v4{vertical-align:-11.958000px;}
.v8{vertical-align:-10.754153px;}
.v5{vertical-align:-8.964000px;}
.vb{vertical-align:-7.176000px;}
.v9{vertical-align:-1.792359px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:10.754153px;}
.v6{vertical-align:12.852000px;}
.vd{vertical-align:15.120000px;}
.va{vertical-align:17.358000px;}
.v3{vertical-align:19.524000px;}
.v1{vertical-align:21.696000px;}
.vc{vertical-align:23.910000px;}
.v12{vertical-align:41.010000px;}
.vf{vertical-align:94.782000px;}
.v11{vertical-align:125.322000px;}
.ls5b{letter-spacing:-2.149689px;}
.ls5a{letter-spacing:-1.147354px;}
.ls7c{letter-spacing:-0.846001px;}
.ls33{letter-spacing:-0.672135px;}
.ls67{letter-spacing:-0.510480px;}
.ls44{letter-spacing:-0.505200px;}
.ls32{letter-spacing:-0.504848px;}
.ls58{letter-spacing:-0.499800px;}
.ls76{letter-spacing:-0.396000px;}
.ls7a{letter-spacing:-0.382140px;}
.ls75{letter-spacing:-0.376200px;}
.ls62{letter-spacing:-0.342000px;}
.ls2d{letter-spacing:-0.308040px;}
.ls6a{letter-spacing:-0.264240px;}
.ls42{letter-spacing:-0.220200px;}
.ls66{letter-spacing:-0.216000px;}
.ls77{letter-spacing:-0.198000px;}
.ls40{letter-spacing:-0.180000px;}
.ls43{letter-spacing:-0.145200px;}
.ls57{letter-spacing:-0.139800px;}
.ls30{letter-spacing:-0.132090px;}
.ls2b{letter-spacing:-0.123420px;}
.ls28{letter-spacing:-0.118830px;}
.ls72{letter-spacing:-0.103620px;}
.ls45{letter-spacing:-0.100200px;}
.ls2f{letter-spacing:-0.091800px;}
.ls69{letter-spacing:-0.078480px;}
.ls79{letter-spacing:-0.058608px;}
.ls59{letter-spacing:-0.053280px;}
.ls2e{letter-spacing:-0.030600px;}
.lsb{letter-spacing:0.000000px;}
.ls5f{letter-spacing:0.000199px;}
.ls4b{letter-spacing:0.000292px;}
.ls94{letter-spacing:0.000335px;}
.ls89{letter-spacing:0.000406px;}
.ls61{letter-spacing:0.000606px;}
.ls60{letter-spacing:0.000699px;}
.ls1c{letter-spacing:0.000800px;}
.ls8b{letter-spacing:0.001036px;}
.ls8e{letter-spacing:0.001155px;}
.ls11{letter-spacing:0.002483px;}
.ls93{letter-spacing:0.002544px;}
.ls3e{letter-spacing:0.003437px;}
.ls5{letter-spacing:0.003488px;}
.ls83{letter-spacing:0.004800px;}
.ls63{letter-spacing:0.006480px;}
.ls14{letter-spacing:0.015300px;}
.ls3a{letter-spacing:0.018000px;}
.ls6c{letter-spacing:0.019800px;}
.ls41{letter-spacing:0.026640px;}
.ls7b{letter-spacing:0.029304px;}
.ls39{letter-spacing:0.044640px;}
.ls29{letter-spacing:0.045288px;}
.ls36{letter-spacing:0.046800px;}
.ls3f{letter-spacing:0.059776px;}
.ls31{letter-spacing:0.074084px;}
.ls16{letter-spacing:0.076500px;}
.ls78{letter-spacing:0.088440px;}
.ls37{letter-spacing:0.090000px;}
.ls6e{letter-spacing:0.099000px;}
.ls2c{letter-spacing:0.099450px;}
.ls15{letter-spacing:0.107100px;}
.ls48{letter-spacing:0.117000px;}
.ls2a{letter-spacing:0.118830px;}
.ls38{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.122400px;}
.ls46{letter-spacing:0.126000px;}
.ls74{letter-spacing:0.138600px;}
.ls3c{letter-spacing:0.140040px;}
.ls68{letter-spacing:0.140400px;}
.ls3b{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.153000px;}
.ls6d{letter-spacing:0.158400px;}
.ls73{letter-spacing:0.159720px;}
.ls17{letter-spacing:0.178500px;}
.ls35{letter-spacing:0.180000px;}
.ls6b{letter-spacing:0.198000px;}
.ls65{letter-spacing:0.216000px;}
.ls3d{letter-spacing:0.260040px;}
.ls4a{letter-spacing:0.266152px;}
.ls49{letter-spacing:0.270417px;}
.ls70{letter-spacing:0.373650px;}
.ls1f{letter-spacing:0.428370px;}
.ls1e{letter-spacing:0.434370px;}
.ls19{letter-spacing:0.449285px;}
.ls52{letter-spacing:0.503108px;}
.ls7{letter-spacing:0.503764px;}
.lsd{letter-spacing:0.542815px;}
.lsc{letter-spacing:0.548815px;}
.ls1b{letter-spacing:0.585504px;}
.ls18{letter-spacing:0.781468px;}
.ls54{letter-spacing:1.044337px;}
.ls6f{letter-spacing:1.287000px;}
.ls51{letter-spacing:2.361483px;}
.ls71{letter-spacing:2.988600px;}
.ls2{letter-spacing:2.989200px;}
.ls21{letter-spacing:2.991955px;}
.ls20{letter-spacing:2.992118px;}
.ls1{letter-spacing:2.998354px;}
.ls4c{letter-spacing:3.507900px;}
.ls9{letter-spacing:3.513900px;}
.ls34{letter-spacing:3.553200px;}
.ls7d{letter-spacing:3.559200px;}
.ls4f{letter-spacing:3.733200px;}
.ls47{letter-spacing:5.490000px;}
.ls50{letter-spacing:8.661181px;}
.ls1a{letter-spacing:9.566417px;}
.ls0{letter-spacing:10.461300px;}
.lsa{letter-spacing:11.954850px;}
.ls80{letter-spacing:12.521829px;}
.ls88{letter-spacing:13.148825px;}
.ls8d{letter-spacing:13.383402px;}
.ls7f{letter-spacing:13.448400px;}
.ls81{letter-spacing:13.454400px;}
.ls8a{letter-spacing:13.538303px;}
.ls86{letter-spacing:13.574545px;}
.ls92{letter-spacing:13.577756px;}
.ls95{letter-spacing:13.580581px;}
.ls84{letter-spacing:13.727951px;}
.ls82{letter-spacing:13.734073px;}
.ls8f{letter-spacing:13.973929px;}
.ls1d{letter-spacing:14.941200px;}
.ls27{letter-spacing:14.945674px;}
.ls26{letter-spacing:14.948323px;}
.ls10{letter-spacing:15.003676px;}
.ls87{letter-spacing:15.226871px;}
.lse{letter-spacing:15.663483px;}
.ls55{letter-spacing:15.853751px;}
.ls8c{letter-spacing:16.103341px;}
.ls8{letter-spacing:16.434600px;}
.ls85{letter-spacing:17.062165px;}
.ls90{letter-spacing:17.826871px;}
.lsf{letter-spacing:17.929200px;}
.ls5e{letter-spacing:17.931662px;}
.ls5c{letter-spacing:17.935142px;}
.ls7e{letter-spacing:17.935200px;}
.ls5d{letter-spacing:17.937662px;}
.ls91{letter-spacing:17.973929px;}
.ls4e{letter-spacing:18.069483px;}
.ls64{letter-spacing:18.171782px;}
.ls4d{letter-spacing:18.396337px;}
.ls56{letter-spacing:21.618285px;}
.ls3{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.ls25{letter-spacing:330.091200px;}
.ls23{letter-spacing:331.097674px;}
.ls24{letter-spacing:343.049674px;}
.ls22{letter-spacing:363.026323px;}
.ls53{letter-spacing:919.383181px;}
.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;}
}
.wsde{word-spacing:-18.252000px;}
.wse4{word-spacing:-18.176400px;}
.wse0{word-spacing:-18.036000px;}
.wse5{word-spacing:-17.957520px;}
.wsdf{word-spacing:-17.820000px;}
.wse6{word-spacing:-17.771760px;}
.wse1{word-spacing:-17.525520px;}
.wsf1{word-spacing:-16.731000px;}
.wse9{word-spacing:-16.692720px;}
.wsf0{word-spacing:-16.621440px;}
.wsf3{word-spacing:-16.562304px;}
.wsef{word-spacing:-16.533000px;}
.wsf2{word-spacing:-16.474392px;}
.wsee{word-spacing:-16.335000px;}
.wse2{word-spacing:-16.200000px;}
.wsa6{word-spacing:-15.210000px;}
.wsa3{word-spacing:-15.076800px;}
.wsa8{word-spacing:-15.056640px;}
.wsd1{word-spacing:-15.036480px;}
.wsa5{word-spacing:-15.030000px;}
.wseb{word-spacing:-14.988600px;}
.wsba{word-spacing:-14.976720px;}
.ws53{word-spacing:-14.943900px;}
.wsad{word-spacing:-14.929800px;}
.wsb8{word-spacing:-14.890200px;}
.wsab{word-spacing:-14.884800px;}
.wsa7{word-spacing:-14.850000px;}
.wsdc{word-spacing:-14.580000px;}
.wsb9{word-spacing:-14.530200px;}
.wsac{word-spacing:-14.524800px;}
.wsec{word-spacing:-14.454000px;}
.wsdd{word-spacing:-14.364000px;}
.wsaa{word-spacing:-13.518000px;}
.wsae{word-spacing:-13.500000px;}
.ws16{word-spacing:-13.449600px;}
.wse7{word-spacing:-13.365000px;}
.wse8{word-spacing:-13.167000px;}
.ws7e{word-spacing:-12.928500px;}
.ws74{word-spacing:-12.894330px;}
.ws76{word-spacing:-12.874950px;}
.ws73{word-spacing:-12.775500px;}
.ws71{word-spacing:-12.656670px;}
.ws75{word-spacing:-12.652080px;}
.ws7d{word-spacing:-12.643410px;}
.ws77{word-spacing:-12.467460px;}
.wsa1{word-spacing:-12.150000px;}
.wsa2{word-spacing:-11.970000px;}
.ws2b{word-spacing:-11.955150px;}
.ws79{word-spacing:-11.475000px;}
.wse{word-spacing:-11.357400px;}
.wse3{word-spacing:-10.800000px;}
.ws3{word-spacing:-10.460700px;}
.ws6f{word-spacing:-10.327500px;}
.ws70{word-spacing:-10.174500px;}
.wsea{word-spacing:-9.900000px;}
.wsed{word-spacing:-9.108000px;}
.wsa4{word-spacing:-9.000000px;}
.ws90{word-spacing:-8.966400px;}
.wsa9{word-spacing:-8.280000px;}
.ws78{word-spacing:-7.772400px;}
.ws72{word-spacing:-7.650000px;}
.ws7b{word-spacing:-7.619400px;}
.ws7c{word-spacing:-7.558200px;}
.ws7a{word-spacing:-7.038000px;}
.ws4f{word-spacing:-4.303843px;}
.ws5b{word-spacing:-3.945190px;}
.wsfd{word-spacing:-3.108331px;}
.ws29{word-spacing:-3.048556px;}
.ws27{word-spacing:-2.809453px;}
.ws147{word-spacing:-2.797517px;}
.wsff{word-spacing:-2.630126px;}
.ws106{word-spacing:-2.570351px;}
.ws66{word-spacing:-2.391024px;}
.wscc{word-spacing:-2.151922px;}
.wsf8{word-spacing:-1.912819px;}
.ws10e{word-spacing:-1.560154px;}
.ws28{word-spacing:-1.494390px;}
.wsbd{word-spacing:-1.237363px;}
.ws6d{word-spacing:-1.195512px;}
.ws155{word-spacing:-1.129766px;}
.wsf4{word-spacing:-1.022170px;}
.ws20{word-spacing:-0.968371px;}
.ws33{word-spacing:-0.956410px;}
.ws11b{word-spacing:-0.914573px;}
.ws98{word-spacing:-0.896634px;}
.wsca{word-spacing:-0.836858px;}
.ws102{word-spacing:-0.777083px;}
.ws10b{word-spacing:-0.753178px;}
.ws11d{word-spacing:-0.699379px;}
.ws6a{word-spacing:-0.657532px;}
.ws15{word-spacing:-0.537984px;}
.ws54{word-spacing:-0.537980px;}
.ws10c{word-spacing:-0.430387px;}
.ws4d{word-spacing:-0.418429px;}
.wsf5{word-spacing:-0.376589px;}
.ws60{word-spacing:-0.358654px;}
.ws110{word-spacing:-0.322790px;}
.ws36{word-spacing:-0.298878px;}
.wsf9{word-spacing:-0.284206px;}
.wsbc{word-spacing:-0.268992px;}
.wsfc{word-spacing:-0.256902px;}
.ws3d{word-spacing:-0.239102px;}
.ws17{word-spacing:-0.215194px;}
.wsa0{word-spacing:-0.214588px;}
.ws9f{word-spacing:-0.208694px;}
.ws41{word-spacing:-0.179327px;}
.ws21{word-spacing:-0.161395px;}
.ws10d{word-spacing:-0.156549px;}
.ws38{word-spacing:-0.119551px;}
.ws111{word-spacing:-0.107597px;}
.ws55{word-spacing:-0.059776px;}
.ws1a{word-spacing:-0.053798px;}
.wsf{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.wsf7{word-spacing:-0.008131px;}
.ws97{word-spacing:-0.003556px;}
.ws96{word-spacing:-0.002705px;}
.ws94{word-spacing:-0.001200px;}
.ws89{word-spacing:-0.000900px;}
.ws1{word-spacing:0.000000px;}
.wsb7{word-spacing:0.001450px;}
.ws8d{word-spacing:0.005100px;}
.ws8b{word-spacing:0.013572px;}
.ws92{word-spacing:0.015805px;}
.ws84{word-spacing:0.024307px;}
.wsdb{word-spacing:0.040019px;}
.ws5{word-spacing:0.041843px;}
.ws10f{word-spacing:0.053798px;}
.ws2d{word-spacing:0.059776px;}
.ws68{word-spacing:0.072877px;}
.ws69{word-spacing:0.074486px;}
.wsaf{word-spacing:0.107597px;}
.ws35{word-spacing:0.119551px;}
.ws1f{word-spacing:0.161395px;}
.ws31{word-spacing:0.179327px;}
.wsd2{word-spacing:0.215194px;}
.ws32{word-spacing:0.239102px;}
.ws112{word-spacing:0.268992px;}
.ws9a{word-spacing:0.280500px;}
.ws2c{word-spacing:0.298878px;}
.ws99{word-spacing:0.301907px;}
.ws81{word-spacing:0.322790px;}
.ws58{word-spacing:0.358654px;}
.ws82{word-spacing:0.376589px;}
.ws5e{word-spacing:0.418429px;}
.ws6c{word-spacing:0.478205px;}
.ws1d{word-spacing:0.484186px;}
.wsbf{word-spacing:0.526800px;}
.wsc1{word-spacing:0.537980px;}
.ws14b{word-spacing:0.537984px;}
.ws59{word-spacing:0.597756px;}
.ws12{word-spacing:0.645581px;}
.wsb1{word-spacing:0.657532px;}
.ws9d{word-spacing:0.717307px;}
.ws52{word-spacing:0.744600px;}
.ws115{word-spacing:0.860774px;}
.wsd3{word-spacing:0.896634px;}
.ws5d{word-spacing:0.956410px;}
.ws5c{word-spacing:1.016185px;}
.ws48{word-spacing:1.075961px;}
.ws49{word-spacing:1.135736px;}
.wscb{word-spacing:1.195512px;}
.ws9b{word-spacing:1.255288px;}
.ws18{word-spacing:1.291162px;}
.ws19{word-spacing:1.344960px;}
.ws26{word-spacing:1.374839px;}
.wsb{word-spacing:1.380812px;}
.ws13f{word-spacing:1.398758px;}
.ws6b{word-spacing:1.434614px;}
.ws105{word-spacing:1.494390px;}
.ws149{word-spacing:1.506355px;}
.ws39{word-spacing:1.554166px;}
.wsd6{word-spacing:1.613941px;}
.ws14d{word-spacing:1.667750px;}
.wsb4{word-spacing:1.673717px;}
.wsb5{word-spacing:1.733492px;}
.ws13a{word-spacing:1.775347px;}
.ws56{word-spacing:1.793268px;}
.ws30{word-spacing:1.853044px;}
.wsbe{word-spacing:1.936742px;}
.wsd5{word-spacing:2.032370px;}
.wsda{word-spacing:2.062853px;}
.ws25{word-spacing:2.092146px;}
.ws145{word-spacing:2.098138px;}
.wsd4{word-spacing:2.151922px;}
.wsc2{word-spacing:2.211697px;}
.ws40{word-spacing:2.271473px;}
.wsc7{word-spacing:2.331248px;}
.ws12c{word-spacing:2.367130px;}
.ws4e{word-spacing:2.391024px;}
.ws1b{word-spacing:2.420928px;}
.wsb6{word-spacing:2.450800px;}
.ws1e{word-spacing:2.474726px;}
.ws47{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws127{word-spacing:2.528525px;}
.wsd0{word-spacing:2.630126px;}
.ws13c{word-spacing:2.636122px;}
.ws61{word-spacing:2.689902px;}
.wsce{word-spacing:2.749678px;}
.ws131{word-spacing:2.851315px;}
.wsc9{word-spacing:2.869229px;}
.ws10{word-spacing:2.869236px;}
.wsbb{word-spacing:2.905114px;}
.ws46{word-spacing:2.929004px;}
.ws100{word-spacing:2.988780px;}
.ws123{word-spacing:3.012710px;}
.wsfa{word-spacing:3.048556px;}
.wsfb{word-spacing:3.062853px;}
.wsf6{word-spacing:3.120307px;}
.ws3b{word-spacing:3.168107px;}
.ws125{word-spacing:3.219130px;}
.ws23{word-spacing:3.219667px;}
.ws137{word-spacing:3.221040px;}
.ws140{word-spacing:3.224688px;}
.wsd7{word-spacing:3.227882px;}
.ws12f{word-spacing:3.227904px;}
.ws154{word-spacing:3.389299px;}
.ws3f{word-spacing:3.407209px;}
.ws13d{word-spacing:3.443098px;}
.ws3e{word-spacing:3.466985px;}
.ws157{word-spacing:3.496896px;}
.ws4c{word-spacing:3.526760px;}
.ws152{word-spacing:3.550694px;}
.ws24{word-spacing:3.586536px;}
.ws133{word-spacing:3.604493px;}
.ws57{word-spacing:3.646312px;}
.wscd{word-spacing:3.765863px;}
.ws6e{word-spacing:3.885414px;}
.ws62{word-spacing:4.004965px;}
.ws109{word-spacing:4.088678px;}
.ws3c{word-spacing:4.124516px;}
.ws10a{word-spacing:4.142477px;}
.ws4b{word-spacing:4.184292px;}
.ws44{word-spacing:4.244068px;}
.ws2e{word-spacing:4.303843px;}
.ws14f{word-spacing:4.357670px;}
.ws63{word-spacing:4.363619px;}
.ws9e{word-spacing:4.602721px;}
.ws14{word-spacing:4.626662px;}
.ws1c{word-spacing:4.680461px;}
.ws11{word-spacing:4.704155px;}
.wsb0{word-spacing:4.722272px;}
.ws104{word-spacing:4.782048px;}
.ws22{word-spacing:4.788058px;}
.wsd8{word-spacing:4.841824px;}
.ws80{word-spacing:4.895654px;}
.ws101{word-spacing:4.901599px;}
.ws114{word-spacing:4.949453px;}
.ws103{word-spacing:4.961375px;}
.ws64{word-spacing:5.140702px;}
.wsc6{word-spacing:5.260253px;}
.ws2f{word-spacing:5.379804px;}
.ws9{word-spacing:5.481407px;}
.ws136{word-spacing:5.487437px;}
.ws37{word-spacing:5.499355px;}
.ws45{word-spacing:5.618906px;}
.ws65{word-spacing:5.798233px;}
.wsb3{word-spacing:5.917784px;}
.wsb2{word-spacing:5.977560px;}
.ws9c{word-spacing:6.037336px;}
.ws42{word-spacing:6.097111px;}
.ws151{word-spacing:6.186816px;}
.ws107{word-spacing:6.276438px;}
.ws7f{word-spacing:6.348211px;}
.wsc3{word-spacing:6.395989px;}
.wsc4{word-spacing:6.455765px;}
.ws4a{word-spacing:6.515540px;}
.ws67{word-spacing:6.694867px;}
.wsc8{word-spacing:6.933970px;}
.ws34{word-spacing:6.993745px;}
.ws43{word-spacing:7.173072px;}
.wsd9{word-spacing:7.232848px;}
.wscf{word-spacing:7.591501px;}
.wsfe{word-spacing:7.830604px;}
.ws50{word-spacing:7.890379px;}
.ws5a{word-spacing:8.069706px;}
.wsc0{word-spacing:8.129482px;}
.ws51{word-spacing:8.428360px;}
.ws3a{word-spacing:8.787013px;}
.ws13{word-spacing:9.629914px;}
.ws7{word-spacing:9.833058px;}
.ws2{word-spacing:10.417003px;}
.ws83{word-spacing:10.813478px;}
.ws8{word-spacing:11.841512px;}
.ws2a{word-spacing:11.905946px;}
.ws11a{word-spacing:12.158438px;}
.ws13b{word-spacing:13.069874px;}
.ws120{word-spacing:13.126810px;}
.ws11f{word-spacing:13.234406px;}
.ws156{word-spacing:13.342003px;}
.ws113{word-spacing:13.361175px;}
.ws141{word-spacing:13.386221px;}
.ws150{word-spacing:13.386230px;}
.ws138{word-spacing:13.387632px;}
.ws11e{word-spacing:13.388736px;}
.ws135{word-spacing:13.391318px;}
.ws128{word-spacing:13.391846px;}
.ws143{word-spacing:13.392230px;}
.ws14a{word-spacing:13.392403px;}
.ws122{word-spacing:13.394736px;}
.ws126{word-spacing:13.395398px;}
.ws118{word-spacing:13.395802px;}
.ws134{word-spacing:13.495474px;}
.ws142{word-spacing:13.503398px;}
.ws129{word-spacing:13.556477px;}
.ws144{word-spacing:13.664794px;}
.ws124{word-spacing:13.675438px;}
.ws12d{word-spacing:13.718592px;}
.ws139{word-spacing:14.776466px;}
.ws5f{word-spacing:14.884124px;}
.ws146{word-spacing:15.440141px;}
.ws132{word-spacing:16.208951px;}
.ws148{word-spacing:16.569907px;}
.ws130{word-spacing:16.618061px;}
.ws12b{word-spacing:16.618387px;}
.ws117{word-spacing:16.619203px;}
.ws121{word-spacing:16.619866px;}
.ws12a{word-spacing:16.620634px;}
.ws119{word-spacing:16.623706px;}
.ws13e{word-spacing:16.731302px;}
.ws116{word-spacing:16.785101px;}
.ws14e{word-spacing:16.838899px;}
.ws12e{word-spacing:16.953698px;}
.ws11c{word-spacing:17.430682px;}
.ws14c{word-spacing:18.167868px;}
.ws6{word-spacing:22.339429px;}
.wsa{word-spacing:22.720640px;}
.ws108{word-spacing:22.953830px;}
.ws153{word-spacing:27.759974px;}
.wsc5{word-spacing:31.914616px;}
.wsc{word-spacing:40.042186px;}
.wsd{word-spacing:55.014708px;}
.ws86{word-spacing:84.164256px;}
.ws85{word-spacing:96.358509px;}
.ws87{word-spacing:165.459276px;}
.ws93{word-spacing:228.439006px;}
.ws95{word-spacing:228.449100px;}
.ws8c{word-spacing:322.263023px;}
.ws8e{word-spacing:322.271100px;}
.ws8f{word-spacing:344.164858px;}
.ws8a{word-spacing:344.192590px;}
.ws88{word-spacing:663.164113px;}
.ws91{word-spacing:937.585363px;}
._5{margin-left:-11.943245px;}
._e{margin-left:-7.352399px;}
._0{margin-left:-5.397721px;}
._2{margin-left:-3.765852px;}
._1{margin-left:-2.301354px;}
._8{margin-left:-1.022170px;}
._17{width:1.134089px;}
._6{width:2.943500px;}
._1f{width:4.421320px;}
._1b{width:5.876730px;}
._1c{width:6.899848px;}
._1d{width:8.154887px;}
._20{width:9.868500px;}
._36{width:11.008080px;}
._3e{width:12.037058px;}
._4{width:13.054954px;}
._7{width:14.280377px;}
._a{width:16.247081px;}
._37{width:17.545283px;}
._d{width:18.572286px;}
._19{width:19.845499px;}
._b{width:21.088973px;}
._14{width:22.595177px;}
._c{width:24.316877px;}
._3{width:25.946136px;}
._24{width:27.006797px;}
._1e{width:28.929568px;}
._9{width:30.019507px;}
._18{width:31.023536px;}
._13{width:32.338600px;}
._41{width:33.354785px;}
._39{width:34.356447px;}
._12{width:35.638226px;}
._15{width:38.615038px;}
._11{width:40.109428px;}
._16{width:42.620003px;}
._23{width:49.053515px;}
._43{width:61.868160px;}
._26{width:87.702186px;}
._42{width:88.767360px;}
._30{width:365.492846px;}
._2b{width:380.938900px;}
._2d{width:392.905672px;}
._2f{width:396.384953px;}
._33{width:397.867392px;}
._28{width:402.908250px;}
._2a{width:414.317678px;}
._27{width:426.729655px;}
._32{width:432.247250px;}
._2e{width:597.643885px;}
._31{width:616.246098px;}
._29{width:648.100624px;}
._2c{width:666.702838px;}
._22{width:677.220113px;}
._21{width:759.149187px;}
._40{width:773.746597px;}
._25{width:808.933270px;}
._3f{width:818.979435px;}
._f{width:846.010417px;}
._35{width:943.947493px;}
._38{width:979.908658px;}
._3a{width:1102.280271px;}
._1a{width:1806.947748px;}
._34{width:2125.820880px;}
._3d{width:2311.132879px;}
._3c{width:2536.287000px;}
._3b{width:2549.850967px;}
._10{width:2560.197000px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(61,153,62);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:21.508307px;}
.fs21{font-size:28.150690px;}
.fs10{font-size:28.152000px;}
.fse{font-size:30.600000px;}
.fs1a{font-size:33.120000px;}
.fs2d{font-size:33.840028px;}
.fs13{font-size:34.054819px;}
.fs12{font-size:34.652272px;}
.fs5{font-size:35.865600px;}
.fs19{font-size:36.000000px;}
.fs2b{font-size:36.432000px;}
.fs16{font-size:37.371600px;}
.fs11{font-size:37.639537px;}
.fs29{font-size:39.600000px;}
.fsc{font-size:40.698000px;}
.fs20{font-size:40.946458px;}
.fs1f{font-size:41.799509px;}
.fs0{font-size:41.842800px;}
.fs15{font-size:43.016614px;}
.fs26{font-size:43.200000px;}
.fs9{font-size:43.600200px;}
.fs4{font-size:45.429600px;}
.fsf{font-size:45.900000px;}
.fsa{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fs17{font-size:47.880000px;}
.fs1e{font-size:48.623918px;}
.fs2c{font-size:50.760042px;}
.fsd{font-size:51.102000px;}
.fs27{font-size:52.668000px;}
.fs7{font-size:53.798400px;}
.fs1b{font-size:54.000000px;}
.fs8{font-size:56.058000px;}
.fs23{font-size:57.456000px;}
.fs2a{font-size:59.400000px;}
.fs2{font-size:59.775600px;}
.fs18{font-size:60.120000px;}
.fs1c{font-size:61.097033px;}
.fs1d{font-size:61.419686px;}
.fsb{font-size:62.286600px;}
.fs22{font-size:63.367001px;}
.fs25{font-size:64.800000px;}
.fs28{font-size:66.132000px;}
.fs24{font-size:72.144000px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:128.507760px;}
.y1b9{bottom:-750.720000px;}
.y25c{bottom:-737.810700px;}
.y1b8{bottom:-731.550000px;}
.y25b{bottom:-716.624700px;}
.y1b7{bottom:-712.290000px;}
.y25a{bottom:-695.537700px;}
.y1b6{bottom:-693.120000px;}
.y259{bottom:-674.351700px;}
.y1b5{bottom:-673.860000px;}
.y1b4{bottom:-654.600000px;}
.y258{bottom:-653.165700px;}
.y1b3{bottom:-635.430000px;}
.y257{bottom:-627.128700px;}
.y1b2{bottom:-616.170000px;}
.y256{bottom:-605.942700px;}
.y1b1{bottom:-596.880000px;}
.y1b0{bottom:-577.710000px;}
.y255{bottom:-565.022700px;}
.y1af{bottom:-558.450000px;}
.y254{bottom:-543.836700px;}
.y1ae{bottom:-539.280000px;}
.y253{bottom:-522.650700px;}
.y1ad{bottom:-520.020000px;}
.y252{bottom:-501.563700px;}
.y1ac{bottom:-500.760000px;}
.y1ab{bottom:-481.590000px;}
.y251{bottom:-480.377700px;}
.y1aa{bottom:-462.330000px;}
.y250{bottom:-459.290700px;}
.y1a9{bottom:-443.160000px;}
.y24f{bottom:-438.104700px;}
.y1a8{bottom:-423.900000px;}
.y24e{bottom:-416.918700px;}
.y1a7{bottom:-404.640000px;}
.y24d{bottom:-395.831700px;}
.y1a6{bottom:-385.470000px;}
.y24c{bottom:-374.645700px;}
.y20d{bottom:-370.742400px;}
.y1a5{bottom:-366.210000px;}
.y24b{bottom:-353.459700px;}
.y20c{bottom:-347.630400px;}
.y1a4{bottom:-347.040000px;}
.y14e{bottom:-338.154000px;}
.y24a{bottom:-332.372700px;}
.y1a3{bottom:-327.780000px;}
.y20b{bottom:-324.518400px;}
.y14d{bottom:-318.894000px;}
.y249{bottom:-311.186700px;}
.y1a2{bottom:-308.520000px;}
.y20a{bottom:-301.514400px;}
.y14c{bottom:-299.634000px;}
.y248{bottom:-290.099700px;}
.y1a1{bottom:-289.350000px;}
.y14b{bottom:-280.464000px;}
.y209{bottom:-278.402400px;}
.y1a0{bottom:-270.090000px;}
.y247{bottom:-268.913700px;}
.y14a{bottom:-261.204000px;}
.y208{bottom:-255.398400px;}
.y19f{bottom:-250.830000px;}
.y246{bottom:-247.727700px;}
.y149{bottom:-241.944000px;}
.y207{bottom:-232.286400px;}
.y19e{bottom:-231.660000px;}
.y245{bottom:-226.640700px;}
.yc8{bottom:-224.076150px;}
.y148{bottom:-222.774000px;}
.y19d{bottom:-212.400000px;}
.y206{bottom:-209.138400px;}
.yc7{bottom:-206.251650px;}
.y244{bottom:-205.454700px;}
.y147{bottom:-203.514000px;}
.y19c{bottom:-193.200000px;}
.yc6{bottom:-188.427150px;}
.y205{bottom:-186.134400px;}
.y243{bottom:-184.367700px;}
.y146{bottom:-184.314000px;}
.y118{bottom:-174.117000px;}
.y19b{bottom:-173.940000px;}
.yc5{bottom:-170.526150px;}
.y145{bottom:-165.054000px;}
.y242{bottom:-163.181700px;}
.y204{bottom:-163.022400px;}
.y117{bottom:-154.857000px;}
.y19a{bottom:-154.680000px;}
.yc4{bottom:-152.701650px;}
.y144{bottom:-145.794000px;}
.y241{bottom:-141.995700px;}
.y203{bottom:-139.910400px;}
.y116{bottom:-135.687000px;}
.y199{bottom:-135.510000px;}
.yc3{bottom:-134.851650px;}
.y143{bottom:-126.624000px;}
.y202{bottom:-116.906400px;}
.y115{bottom:-116.427000px;}
.y198{bottom:-116.250000px;}
.yc2{bottom:-109.300650px;}
.y240{bottom:-101.471700px;}
.y114{bottom:-97.257000px;}
.y197{bottom:-97.080000px;}
.yc1{bottom:-94.536150px;}
.y201{bottom:-93.794400px;}
.y142{bottom:-89.814000px;}
.y23f{bottom:-82.364700px;}
.y113{bottom:-77.997000px;}
.y141{bottom:-72.444000px;}
.yc0{bottom:-64.624650px;}
.y23e{bottom:-63.356700px;}
.y196{bottom:-56.490000px;}
.y140{bottom:-55.074000px;}
.ybf{bottom:-49.783650px;}
.y200{bottom:-49.622400px;}
.y23d{bottom:-44.348700px;}
.y195{bottom:-42.810000px;}
.y112{bottom:-41.187000px;}
.y13f{bottom:-37.794000px;}
.ybe{bottom:-35.095650px;}
.y1ff{bottom:-28.778400px;}
.y194{bottom:-25.530000px;}
.y23c{bottom:-25.241700px;}
.y111{bottom:-23.787000px;}
.y13e{bottom:-20.514000px;}
.ybd{bottom:-20.407650px;}
.y193{bottom:-3.120000px;}
.y1fe{bottom:-1.994400px;}
.y110{bottom:-1.377000px;}
.ybc{bottom:-1.359150px;}
.y23b{bottom:-0.590700px;}
.y0{bottom:0.000000px;}
.y13d{bottom:1.896000px;}
.yf4{bottom:4.500000px;}
.yf5{bottom:14.580000px;}
.y1b{bottom:15.759681px;}
.yfa{bottom:24.660000px;}
.yf3{bottom:24.750000px;}
.yf7{bottom:24.780000px;}
.y4e{bottom:31.890000px;}
.y17d{bottom:103.621500px;}
.y12e{bottom:103.777500px;}
.y19{bottom:104.646000px;}
.y4d{bottom:107.913000px;}
.y260{bottom:111.892204px;}
.y317{bottom:116.458500px;}
.ye7{bottom:117.789000px;}
.y2b0{bottom:119.148000px;}
.y89{bottom:119.596500px;}
.ya3{bottom:120.942000px;}
.y17c{bottom:122.449500px;}
.y18{bottom:122.535000px;}
.y12d{bottom:122.607000px;}
.y2b1{bottom:124.572000px;}
.y25f{bottom:125.110960px;}
.y4c{bottom:126.742500px;}
.y290{bottom:127.875000px;}
.y1e4{bottom:130.507500px;}
.y316{bottom:133.719000px;}
.y2e1{bottom:133.764000px;}
.ye6{bottom:134.916000px;}
.y2af{bottom:135.247500px;}
.y2ae{bottom:137.977500px;}
.y88{bottom:138.426000px;}
.ya2{bottom:139.771500px;}
.y17{bottom:140.422500px;}
.y17b{bottom:141.279000px;}
.y12b{bottom:141.436500px;}
.y230{bottom:144.063000px;}
.y4b{bottom:145.572000px;}
.y12c{bottom:146.862000px;}
.ye5{bottom:146.872500px;}
.y1e3{bottom:149.337000px;}
.y315{bottom:150.978000px;}
.y2e0{bottom:151.024500px;}
.y2ad{bottom:156.807000px;}
.y87{bottom:157.255500px;}
.y17a{bottom:157.867500px;}
.y16{bottom:158.310000px;}
.ya0{bottom:158.599500px;}
.yd1{bottom:159.066953px;}
.y179{bottom:160.108500px;}
.y12a{bottom:160.266000px;}
.y22e{bottom:162.892500px;}
.ye4{bottom:163.011000px;}
.ya1{bottom:164.025000px;}
.y4a{bottom:164.401500px;}
.y1e2{bottom:168.166500px;}
.y314{bottom:168.238500px;}
.y2df{bottom:168.285000px;}
.y22f{bottom:168.318000px;}
.y2ac{bottom:172.906500px;}
.ye3{bottom:174.966000px;}
.y2aa{bottom:175.636500px;}
.y86{bottom:176.085000px;}
.y15{bottom:176.199000px;}
.y9f{bottom:177.429000px;}
.y28e{bottom:178.938000px;}
.y129{bottom:179.095500px;}
.y2ab{bottom:181.060500px;}
.y22d{bottom:181.722000px;}
.y49{bottom:183.229500px;}
.y28f{bottom:184.363500px;}
.y313{bottom:185.499000px;}
.y2de{bottom:185.545500px;}
.y178{bottom:185.767500px;}
.y1e1{bottom:186.996000px;}
.ye2{bottom:191.106000px;}
.y14{bottom:194.086500px;}
.y2a9{bottom:194.466000px;}
.y85{bottom:194.914500px;}
.y25e{bottom:195.082281px;}
.y177{bottom:196.020000px;}
.y9d{bottom:196.258500px;}
.y28d{bottom:197.767500px;}
.y128{bottom:197.925000px;}
.y22c{bottom:200.551500px;}
.y9e{bottom:201.684000px;}
.y48{bottom:202.059000px;}
.y312{bottom:202.759500px;}
.y2dd{bottom:202.804500px;}
.ye1{bottom:203.061000px;}
.y1e0{bottom:205.825500px;}
.y13{bottom:211.974000px;}
.y2a8{bottom:213.295500px;}
.y84{bottom:213.744000px;}
.ycf{bottom:214.181989px;}
.y9c{bottom:215.088000px;}
.y28c{bottom:216.597000px;}
.y127{bottom:216.754500px;}
.ye0{bottom:219.201000px;}
.y22b{bottom:219.381000px;}
.y311{bottom:220.020000px;}
.y2dc{bottom:220.065000px;}
.y47{bottom:220.888500px;}
.y176{bottom:223.389000px;}
.y1df{bottom:224.655000px;}
.y12{bottom:229.863000px;}
.y2a7{bottom:229.882500px;}
.ydf{bottom:231.156000px;}
.y2a6{bottom:232.125000px;}
.y83{bottom:232.573500px;}
.y28b{bottom:232.696500px;}
.y119{bottom:233.884270px;}
.y9b{bottom:233.917500px;}
.y289{bottom:235.426500px;}
.y126{bottom:235.584000px;}
.yce{bottom:237.034566px;}
.y310{bottom:237.280500px;}
.y2db{bottom:237.325500px;}
.ycb{bottom:237.930745px;}
.y18f{bottom:237.997500px;}
.y22a{bottom:238.210500px;}
.y28a{bottom:240.852000px;}
.y175{bottom:242.218500px;}
.y1de{bottom:243.484500px;}
.y46{bottom:244.201500px;}
.y23a{bottom:246.612300px;}
.yde{bottom:247.294500px;}
.ycd{bottom:247.489993px;}
.yca{bottom:248.386172px;}
.y1ba{bottom:248.429110px;}
.y2a5{bottom:250.954500px;}
.y82{bottom:251.403000px;}
.y9a{bottom:252.747000px;}
.y288{bottom:254.256000px;}
.y125{bottom:254.413500px;}
.y30f{bottom:254.541000px;}
.y2da{bottom:254.586000px;}
.y150{bottom:254.987662px;}
.y229{bottom:257.040000px;}
.y174{bottom:261.048000px;}
.ycc{bottom:262.276954px;}
.y1dd{bottom:262.314000px;}
.yc9{bottom:262.725043px;}
.ydd{bottom:263.434500px;}
.y239{bottom:267.699300px;}
.y2a4{bottom:269.784000px;}
.y81{bottom:270.232500px;}
.y99{bottom:271.576500px;}
.y30e{bottom:271.801500px;}
.y2d9{bottom:271.846500px;}
.y286{bottom:273.085500px;}
.y227{bottom:275.869500px;}
.y124{bottom:277.726500px;}
.y287{bottom:278.511000px;}
.ydc{bottom:279.574500px;}
.y10f{bottom:279.873000px;}
.y173{bottom:279.877500px;}
.y1dc{bottom:281.143500px;}
.y228{bottom:281.295000px;}
.y238{bottom:288.885300px;}
.y80{bottom:289.062000px;}
.y98{bottom:290.406000px;}
.y285{bottom:291.915000px;}
.y225{bottom:291.969000px;}
.y2a3{bottom:293.095500px;}
.y123{bottom:293.416500px;}
.y2d8{bottom:293.590500px;}
.y224{bottom:294.699000px;}
.ydb{bottom:295.713000px;}
.y172{bottom:298.707000px;}
.y10e{bottom:299.133000px;}
.yd0{bottom:299.468401px;}
.y11{bottom:299.892000px;}
.y1db{bottom:299.973000px;}
.y226{bottom:300.124500px;}
.y152{bottom:302.545266px;}
.y30d{bottom:306.321000px;}
.y7f{bottom:307.891500px;}
.y97{bottom:309.235500px;}
.y237{bottom:309.972300px;}
.y284{bottom:310.744500px;}
.yda{bottom:311.853000px;}
.y158{bottom:313.421641px;}
.y222{bottom:313.528500px;}
.y171{bottom:317.536500px;}
.y10{bottom:317.779500px;}
.y10d{bottom:318.393000px;}
.y1da{bottom:318.802500px;}
.y223{bottom:318.952500px;}
.y45{bottom:319.351500px;}
.y30c{bottom:323.581500px;}
.y7e{bottom:323.991000px;}
.y192{bottom:324.600000px;}
.y157{bottom:325.577620px;}
.y7c{bottom:326.719500px;}
.y122{bottom:327.040500px;}
.y2d7{bottom:327.214500px;}
.yd9{bottom:327.993000px;}
.y96{bottom:328.065000px;}
.y283{bottom:329.574000px;}
.y236{bottom:331.191300px;}
.y7d{bottom:332.145000px;}
.y221{bottom:332.358000px;}
.y191{bottom:334.230000px;}
.yf{bottom:335.667000px;}
.y170{bottom:336.366000px;}
.y10c{bottom:337.563000px;}
.y1d9{bottom:337.632000px;}
.y30b{bottom:340.842000px;}
.y2a2{bottom:342.820500px;}
.y7a{bottom:345.549000px;}
.y121{bottom:345.870000px;}
.y153{bottom:346.050862px;}
.y95{bottom:346.894500px;}
.y7b{bottom:350.974500px;}
.y220{bottom:351.187500px;}
.y235{bottom:352.377300px;}
.y282{bottom:352.887000px;}
.ye{bottom:353.556000px;}
.y2d6{bottom:353.754000px;}
.y16e{bottom:355.195500px;}
.y1fd{bottom:355.521600px;}
.y1d8{bottom:356.461500px;}
.y44{bottom:356.742000px;}
.y10b{bottom:356.823000px;}
.yd8{bottom:358.092000px;}
.y30a{bottom:358.102500px;}
.y16f{bottom:360.619500px;}
.y2a1{bottom:361.648500px;}
.y79{bottom:364.378500px;}
.y120{bottom:364.699500px;}
.y156{bottom:365.244509px;}
.y94{bottom:365.724000px;}
.y21f{bottom:367.287000px;}
.ybb{bottom:367.549350px;}
.y281{bottom:368.578500px;}
.y18e{bottom:369.804000px;}
.y21d{bottom:370.017000px;}
.y2d5{bottom:371.328000px;}
.y16d{bottom:371.782500px;}
.y234{bottom:373.464300px;}
.y16c{bottom:374.025000px;}
.y1d7{bottom:375.291000px;}
.y309{bottom:375.363000px;}
.y21e{bottom:375.441000px;}
.y10a{bottom:376.083000px;}
.y43{bottom:376.198500px;}
.yd7{bottom:377.323500px;}
.y155{bottom:377.400488px;}
.y1fc{bottom:378.633600px;}
.y2a0{bottom:380.478000px;}
.y151{bottom:381.879015px;}
.yd{bottom:381.904500px;}
.y77{bottom:383.208000px;}
.y11f{bottom:383.529000px;}
.yba{bottom:383.920350px;}
.y93{bottom:384.553500px;}
.y21c{bottom:386.116500px;}
.y78{bottom:388.633500px;}
.y21b{bottom:388.846500px;}
.y308{bottom:392.623500px;}
.y16b{bottom:392.854500px;}
.y1d6{bottom:394.120500px;}
.y109{bottom:395.283000px;}
.y41{bottom:395.656500px;}
.y2d4{bottom:397.869000px;}
.y154{bottom:399.153295px;}
.yc{bottom:399.792000px;}
.yb9{bottom:400.214850px;}
.y42{bottom:400.537500px;}
.y1fb{bottom:401.745600px;}
.y76{bottom:402.037500px;}
.y280{bottom:402.202500px;}
.y11e{bottom:402.358500px;}
.y92{bottom:403.383000px;}
.y18d{bottom:407.463000px;}
.y219{bottom:407.676000px;}
.y307{bottom:409.884000px;}
.y16a{bottom:411.684000px;}
.y1d5{bottom:412.950000px;}
.y21a{bottom:413.100000px;}
.y108{bottom:414.543000px;}
.y3f{bottom:415.113000px;}
.y2d3{bottom:415.443000px;}
.yd6{bottom:415.984500px;}
.yb8{bottom:416.585850px;}
.y29f{bottom:418.137000px;}
.y40{bottom:419.995500px;}
.y75{bottom:420.867000px;}
.y27f{bottom:421.032000px;}
.y11d{bottom:421.188000px;}
.y91{bottom:422.212500px;}
.y1fa{bottom:424.749600px;}
.y217{bottom:426.505500px;}
.yb{bottom:426.646500px;}
.y306{bottom:427.144500px;}
.y169{bottom:430.513500px;}
.y1d4{bottom:431.779500px;}
.y218{bottom:431.929500px;}
.y3e{bottom:431.947500px;}
.yb7{bottom:432.880350px;}
.y2d2{bottom:433.017000px;}
.y233{bottom:433.656300px;}
.y107{bottom:433.713000px;}
.y3d{bottom:434.569500px;}
.yd4{bottom:435.217500px;}
.y29e{bottom:436.966500px;}
.y74{bottom:439.696500px;}
.y27e{bottom:439.861500px;}
.yd5{bottom:440.098500px;}
.y159{bottom:440.739565px;}
.y232{bottom:444.249300px;}
.y305{bottom:444.403500px;}
.ya{bottom:444.534000px;}
.y216{bottom:445.335000px;}
.y90{bottom:445.525500px;}
.y1f9{bottom:447.861600px;}
.yb6{bottom:449.251350px;}
.y167{bottom:449.343000px;}
.y2d1{bottom:450.591000px;}
.y1d3{bottom:450.609000px;}
.y106{bottom:452.973000px;}
.y3c{bottom:454.027500px;}
.yd3{bottom:454.450500px;}
.y11c{bottom:454.753500px;}
.y168{bottom:454.767000px;}
.y73{bottom:458.526000px;}
.y27c{bottom:458.689500px;}
.y8f{bottom:461.217000px;}
.y304{bottom:461.664000px;}
.y9{bottom:462.423000px;}
.y27d{bottom:464.115000px;}
.y214{bottom:464.164500px;}
.yb5{bottom:465.622350px;}
.y2d0{bottom:468.165000px;}
.y165{bottom:468.172500px;}
.y1d2{bottom:469.438500px;}
.y215{bottom:469.588500px;}
.y1f8{bottom:470.865600px;}
.y105{bottom:472.233000px;}
.y3b{bottom:473.484000px;}
.y166{bottom:473.596500px;}
.yd2{bottom:473.682000px;}
.y11a{bottom:473.986500px;}
.y29d{bottom:474.625500px;}
.y72{bottom:477.355500px;}
.y27b{bottom:477.519000px;}
.y11b{bottom:478.869000px;}
.y303{bottom:478.924500px;}
.y213{bottom:480.264000px;}
.y8{bottom:480.310500px;}
.y8e{bottom:481.390500px;}
.yb4{bottom:481.916850px;}
.y212{bottom:482.994000px;}
.y164{bottom:487.002000px;}
.y1d1{bottom:488.268000px;}
.y13c{bottom:488.556000px;}
.y104{bottom:491.403000px;}
.y3a{bottom:492.940500px;}
.y1f7{bottom:493.977600px;}
.y2cf{bottom:494.706000px;}
.ya9{bottom:496.111500px;}
.y71{bottom:496.185000px;}
.y27a{bottom:496.348500px;}
.yef{bottom:496.416000px;}
.y7{bottom:498.198000px;}
.yb3{bottom:498.287850px;}
.y29c{bottom:501.610500px;}
.y210{bottom:501.823500px;}
.y162{bottom:505.831500px;}
.y1d0{bottom:507.097500px;}
.y211{bottom:507.247500px;}
.y13b{bottom:507.816000px;}
.y103{bottom:510.663000px;}
.y163{bottom:511.255500px;}
.y2ce{bottom:512.280000px;}
.y29b{bottom:512.284500px;}
.y39{bottom:512.398500px;}
.y302{bottom:513.445500px;}
.yb2{bottom:514.658850px;}
.y70{bottom:515.014500px;}
.y279{bottom:515.178000px;}
.y6{bottom:516.087000px;}
.y1f6{bottom:517.089600px;}
.y161{bottom:524.659500px;}
.y1cf{bottom:525.927000px;}
.y13a{bottom:526.986000px;}
.y102{bottom:529.833000px;}
.y2cd{bottom:529.854000px;}
.y301{bottom:530.706000px;}
.yb1{bottom:530.953350px;}
.y38{bottom:531.855000px;}
.y6f{bottom:533.844000px;}
.y5{bottom:533.974500px;}
.y278{bottom:534.007500px;}
.y20f{bottom:535.389000px;}
.y1f5{bottom:540.093600px;}
.y1ce{bottom:544.756500px;}
.y139{bottom:546.246000px;}
.yb0{bottom:547.324350px;}
.y2cc{bottom:547.428000px;}
.y300{bottom:547.966500px;}
.y101{bottom:549.093000px;}
.y37{bottom:551.313000px;}
.y4{bottom:551.862000px;}
.y6e{bottom:552.673500px;}
.y277{bottom:552.837000px;}
.y20e{bottom:554.622000px;}
.y160{bottom:556.369500px;}
.y29a{bottom:558.097500px;}
.y1f4{bottom:563.205600px;}
.y1cd{bottom:563.586000px;}
.yaf{bottom:563.618850px;}
.y2cb{bottom:565.002000px;}
.y2ff{bottom:565.227000px;}
.y138{bottom:565.506000px;}
.y100{bottom:568.353000px;}
.y3{bottom:569.751000px;}
.y36{bottom:570.769500px;}
.y6d{bottom:571.503000px;}
.y276{bottom:571.666500px;}
.y15e{bottom:575.602500px;}
.y299{bottom:576.927000px;}
.y1e5{bottom:577.051500px;}
.yae{bottom:580.015350px;}
.y15f{bottom:580.485000px;}
.y1cc{bottom:582.415500px;}
.y2fe{bottom:582.487500px;}
.y2ca{bottom:582.577500px;}
.y137{bottom:584.676000px;}
.y1f3{bottom:586.209600px;}
.yff{bottom:587.523000px;}
.y2{bottom:587.638500px;}
.y18b{bottom:588.091500px;}
.y35{bottom:590.226000px;}
.y6c{bottom:590.332500px;}
.y275{bottom:590.496000px;}
.y15c{bottom:594.835500px;}
.y18c{bottom:595.756500px;}
.yad{bottom:596.386350px;}
.y15d{bottom:599.718000px;}
.y2fd{bottom:599.746500px;}
.y2c9{bottom:600.151500px;}
.y1cb{bottom:601.245000px;}
.y136{bottom:603.936000px;}
.y1{bottom:605.526000px;}
.yfe{bottom:606.783000px;}
.y34{bottom:607.666500px;}
.y6b{bottom:609.162000px;}
.y1f2{bottom:609.321600px;}
.y274{bottom:609.325500px;}
.y33{bottom:609.684000px;}
.yac{bottom:612.680850px;}
.y15b{bottom:614.068500px;}
.y2fc{bottom:617.007000px;}
.y2c8{bottom:617.725500px;}
.y1ca{bottom:620.073000px;}
.y135{bottom:623.106000px;}
.y18a{bottom:625.749000px;}
.yfd{bottom:625.953000px;}
.y32{bottom:627.123000px;}
.y6a{bottom:627.991500px;}
.y273{bottom:628.155000px;}
.y31{bottom:629.140500px;}
.y1f1{bottom:632.433600px;}
.y15a{bottom:633.301500px;}
.y2fb{bottom:634.267500px;}
.y2c7{bottom:635.299500px;}
.y1c9{bottom:638.902500px;}
.y134{bottom:642.396000px;}
.y298{bottom:644.091000px;}
.yfc{bottom:645.213000px;}
.y69{bottom:646.821000px;}
.y272{bottom:646.984500px;}
.y30{bottom:648.597000px;}
.y2fa{bottom:651.528000px;}
.y1f0{bottom:655.437600px;}
.y1c8{bottom:657.732000px;}
.y12f{bottom:658.719000px;}
.yab{bottom:659.192850px;}
.y14f{bottom:660.675000px;}
.y2c6{bottom:661.839000px;}
.y297{bottom:662.920500px;}
.y189{bottom:663.408000px;}
.y31a{bottom:664.230000px;}
.y68{bottom:665.650500px;}
.y271{bottom:665.814000px;}
.y133{bottom:666.066000px;}
.yaa{bottom:667.378350px;}
.y2f{bottom:668.055000px;}
.y2f9{bottom:668.788500px;}
.y1c6{bottom:676.561500px;}
.y1ef{bottom:678.549600px;}
.y2c5{bottom:679.884000px;}
.y319{bottom:681.490500px;}
.y1c7{bottom:681.987000px;}
.y188{bottom:682.237500px;}
.y67{bottom:684.480000px;}
.y270{bottom:684.643500px;}
.y132{bottom:685.326000px;}
.yfb{bottom:685.803000px;}
.y2f8{bottom:686.049000px;}
.y2e{bottom:687.511500px;}
.y1c5{bottom:695.391000px;}
.y2c4{bottom:697.929000px;}
.y318{bottom:698.751000px;}
.y187{bottom:701.067000px;}
.y1ee{bottom:701.661600px;}
.y66{bottom:703.309500px;}
.y26f{bottom:703.473000px;}
.y1c3{bottom:714.220500px;}
.y2c3{bottom:715.974000px;}
.y1c4{bottom:719.646000px;}
.y2f7{bottom:720.570000px;}
.y65{bottom:722.139000px;}
.y26e{bottom:722.302500px;}
.y1ed{bottom:724.665600px;}
.y2d{bottom:726.097500px;}
.y1c2{bottom:733.050000px;}
.y2c2{bottom:734.019000px;}
.y2f6{bottom:737.829000px;}
.y186{bottom:738.726000px;}
.y131{bottom:740.046000px;}
.y64{bottom:740.968500px;}
.y26c{bottom:741.132000px;}
.y26d{bottom:746.556000px;}
.y2c{bottom:746.577000px;}
.y1ec{bottom:747.777600px;}
.y130{bottom:749.676000px;}
.y1c0{bottom:751.879500px;}
.y2c0{bottom:752.064000px;}
.y2f5{bottom:755.089500px;}
.y2c1{bottom:756.946500px;}
.y1c1{bottom:757.305000px;}
.y63{bottom:759.798000px;}
.y26b{bottom:759.961500px;}
.y2b{bottom:762.715500px;}
.y2bf{bottom:770.109000px;}
.y1eb{bottom:770.781600px;}
.y2f4{bottom:772.350000px;}
.y296{bottom:775.897500px;}
.y185{bottom:776.385000px;}
.y62{bottom:778.627500px;}
.y26a{bottom:778.791000px;}
.y2a{bottom:778.855500px;}
.y184{bottom:784.051500px;}
.y1bf{bottom:785.445000px;}
.y2be{bottom:788.154000px;}
.y2f3{bottom:789.610500px;}
.y29{bottom:790.656000px;}
.y1ea{bottom:793.929600px;}
.y61{bottom:797.457000px;}
.y1bd{bottom:804.678000px;}
.y2bd{bottom:806.199000px;}
.y2f2{bottom:806.871000px;}
.y1be{bottom:809.560500px;}
.y269{bottom:811.050000px;}
.y28{bottom:811.134000px;}
.y182{bottom:814.044000px;}
.y60{bottom:816.286500px;}
.y1e9{bottom:817.041600px;}
.y183{bottom:821.710500px;}
.y27{bottom:822.934500px;}
.y1bb{bottom:823.911000px;}
.y2f1{bottom:824.131500px;}
.y2bc{bottom:824.244000px;}
.y268{bottom:827.661000px;}
.y1bc{bottom:828.793500px;}
.y266{bottom:830.283000px;}
.y5f{bottom:835.114500px;}
.y267{bottom:835.165500px;}
.y26{bottom:839.074500px;}
.y1e8{bottom:840.045600px;}
.y2f0{bottom:841.392000px;}
.y2bb{bottom:842.289000px;}
.y190{bottom:846.340500px;}
.y264{bottom:849.516000px;}
.y181{bottom:851.703000px;}
.y5e{bottom:853.944000px;}
.y265{bottom:854.398500px;}
.y2ef{bottom:858.652500px;}
.yee{bottom:859.369500px;}
.y25{bottom:859.552500px;}
.y2ba{bottom:860.334000px;}
.y263{bottom:868.749000px;}
.y24{bottom:871.353000px;}
.y5d{bottom:872.773500px;}
.y2b9{bottom:875.755500px;}
.y2ee{bottom:875.913000px;}
.y180{bottom:878.199000px;}
.y2b8{bottom:878.377500px;}
.y23{bottom:887.493000px;}
.y261{bottom:887.982000px;}
.y17f{bottom:889.362000px;}
.y5c{bottom:891.603000px;}
.y262{bottom:892.864500px;}
.y2ed{bottom:893.172000px;}
.y2b7{bottom:893.800500px;}
.y2b6{bottom:896.422500px;}
.y8d{bottom:897.028500px;}
.yf1{bottom:901.653000px;}
.y1e7{bottom:905.709600px;}
.y22{bottom:907.972500px;}
.y5b{bottom:910.432500px;}
.yf0{bottom:911.283000px;}
.y231{bottom:913.399500px;}
.y25d{bottom:914.026799px;}
.y2b5{bottom:914.467500px;}
.ya8{bottom:915.858000px;}
.y1e6{bottom:917.265600px;}
.ya7{bottom:926.532000px;}
.y2ec{bottom:927.693000px;}
.y5a{bottom:929.262000px;}
.y2b4{bottom:932.512500px;}
.y295{bottom:934.687500px;}
.y2eb{bottom:944.953500px;}
.yed{bottom:945.850500px;}
.y59{bottom:948.091500px;}
.y2b3{bottom:950.557500px;}
.y21{bottom:952.648500px;}
.ya6{bottom:953.517000px;}
.y2ea{bottom:962.214000px;}
.ya5{bottom:964.191000px;}
.y58{bottom:966.921000px;}
.y2b2{bottom:968.602500px;}
.y20{bottom:971.478000px;}
.ya4{bottom:972.346500px;}
.y2e9{bottom:979.474500px;}
.y57{bottom:985.750500px;}
.y2e8{bottom:996.735000px;}
.y17e{bottom:1002.339000px;}
.y56{bottom:1004.580000px;}
.y1f{bottom:1008.240000px;}
.yec{bottom:1010.005500px;}
.y2e7{bottom:1013.995500px;}
.y294{bottom:1020.679500px;}
.yeb{bottom:1021.168500px;}
.y55{bottom:1023.409500px;}
.y2e6{bottom:1031.254500px;}
.y1e{bottom:1036.485000px;}
.y293{bottom:1039.509000px;}
.yea{bottom:1039.998000px;}
.y54{bottom:1042.239000px;}
.y2e5{bottom:1048.515000px;}
.ye9{bottom:1058.827500px;}
.y53{bottom:1061.068500px;}
.y1d{bottom:1064.728500px;}
.y2e4{bottom:1065.775500px;}
.y8c{bottom:1066.492500px;}
.y52{bottom:1079.898000px;}
.y2e3{bottom:1083.036000px;}
.y8b{bottom:1085.322000px;}
.y1c{bottom:1092.972000px;}
.y292{bottom:1095.997500px;}
.ye8{bottom:1096.486500px;}
.y51{bottom:1098.727500px;}
.y2e2{bottom:1100.296500px;}
.y291{bottom:1104.151500px;}
.y50{bottom:1117.557000px;}
.y8a{bottom:1122.981000px;}
.y1a{bottom:1136.460000px;}
.y4f{bottom:1177.662000px;}
.yf9{bottom:1193.469000px;}
.yf8{bottom:1234.689000px;}
.yf6{bottom:1275.909000px;}
.yf2{bottom:1317.159000px;}
.h36{height:-562.173000px;}
.h39{height:-520.923000px;}
.h3a{height:-479.703000px;}
.h3b{height:-438.483000px;}
.h25{height:-210.688650px;}
.h24{height:-192.864150px;}
.h23{height:-175.039650px;}
.h22{height:-157.215150px;}
.h21{height:-139.288650px;}
.h20{height:-121.464150px;}
.hd{height:21.407698px;}
.h14{height:23.242762px;}
.h3c{height:24.351680px;}
.h29{height:24.892610px;}
.h28{height:25.329322px;}
.h9{height:26.110157px;}
.h2a{height:26.475802px;}
.h27{height:27.512884px;}
.hc{height:27.524478px;}
.h4b{height:29.529146px;}
.h1b{height:29.748489px;}
.h47{height:29.930101px;}
.h1a{height:29.967082px;}
.h2{height:30.461558px;}
.h46{height:30.553645px;}
.h17{height:30.582721px;}
.h3{height:30.670772px;}
.h13{height:33.072749px;}
.h4c{height:33.299897px;}
.h48{height:33.372712px;}
.h1f{height:33.550928px;}
.h1e{height:33.797461px;}
.h2f{height:34.574294px;}
.ha{height:34.813397px;}
.h35{height:34.998223px;}
.h12{height:35.052500px;}
.h34{height:35.255391px;}
.h45{height:35.541995px;}
.h2b{height:36.358281px;}
.h1c{height:37.353366px;}
.h1d{height:37.627840px;}
.h58{height:38.498045px;}
.h57{height:38.780930px;}
.hb{height:39.165235px;}
.h60{height:39.434227px;}
.h42{height:39.471680px;}
.h3d{height:39.761719px;}
.h40{height:40.937698px;}
.h16{height:41.723369px;}
.h52{height:41.997867px;}
.h51{height:42.306469px;}
.h5f{height:42.903141px;}
.h10{height:43.217759px;}
.h2c{height:43.288829px;}
.h5b{height:43.418848px;}
.h2d{height:43.468157px;}
.h2e{height:43.474157px;}
.h11{height:43.516637px;}
.h5a{height:43.737891px;}
.h6{height:43.815515px;}
.h38{height:43.945137px;}
.h37{height:44.268047px;}
.h32{height:44.938762px;}
.h55{height:47.714062px;}
.h59{height:48.339650px;}
.h5d{height:48.468814px;}
.h5c{height:48.694852px;}
.he{height:49.985558px;}
.hf{height:49.991558px;}
.h4{height:50.931027px;}
.h3f{height:51.640120px;}
.h44{height:51.912831px;}
.h53{height:52.734164px;}
.h54{height:53.121656px;}
.h4f{height:53.558730px;}
.h8{height:54.541601px;}
.h15{height:54.768749px;}
.h18{height:54.774749px;}
.h30{height:67.378157px;}
.h31{height:67.384157px;}
.h7{height:77.792486px;}
.h49{height:86.703024px;}
.h5{height:87.128261px;}
.h4a{height:127.713024px;}
.h5e{height:218.472901px;}
.h56{height:219.100200px;}
.h3e{height:257.737221px;}
.h33{height:258.570000px;}
.h4e{height:284.886840px;}
.h4d{height:286.161000px;}
.h50{height:328.572000px;}
.h26{height:346.097365px;}
.h19{height:351.789075px;}
.h43{height:463.809589px;}
.h41{height:473.782500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w11{width:-45.079500px;}
.w9{width:-0.122400px;}
.w10{width:50.680500px;}
.wc{width:71.568000px;}
.w8{width:81.273600px;}
.w7{width:99.246000px;}
.w6{width:99.450000px;}
.wf{width:116.760000px;}
.we{width:117.000000px;}
.w5{width:117.529500px;}
.wd{width:138.270000px;}
.w2{width:172.375207px;}
.w4{width:176.755800px;}
.w17{width:395.420400px;}
.w12{width:491.550000px;}
.wb{width:494.278500px;}
.w16{width:571.368817px;}
.wa{width:571.790180px;}
.w15{width:573.900000px;}
.w3{width:574.254900px;}
.w14{width:647.160000px;}
.w19{width:649.291207px;}
.w13{width:651.944100px;}
.w18{width:652.097490px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x108{left:-234.131400px;}
.xfc{left:-199.840500px;}
.xb8{left:-194.322000px;}
.x116{left:-103.046460px;}
.xcb{left:-67.401900px;}
.x91{left:-49.250700px;}
.xfd{left:-4.240500px;}
.x0{left:0.000000px;}
.x98{left:2.142000px;}
.x97{left:4.819500px;}
.xc1{left:6.281205px;}
.x9a{left:8.338500px;}
.x95{left:10.098000px;}
.x9e{left:19.660500px;}
.xfe{left:27.619500px;}
.xa6{left:29.553707px;}
.xa0{left:32.742000px;}
.x9f{left:35.215500px;}
.x9d{left:37.969500px;}
.x9c{left:41.692500px;}
.x11a{left:45.755781px;}
.xbb{left:50.940000px;}
.x9b{left:52.428000px;}
.x1{left:53.574000px;}
.x2{left:59.946413px;}
.xb9{left:61.680000px;}
.xa9{left:62.754000px;}
.xa1{left:75.290195px;}
.xd0{left:79.191483px;}
.xd1{left:80.685661px;}
.x137{left:85.404000px;}
.x11c{left:104.193751px;}
.xa7{left:107.574774px;}
.x117{left:112.113540px;}
.x92{left:117.009300px;}
.xca{left:120.272400px;}
.xcf{left:121.345500px;}
.x119{left:123.000443px;}
.xcc{left:128.198100px;}
.x11b{left:140.916097px;}
.xa5{left:145.539048px;}
.x118{left:147.159540px;}
.xcd{left:160.058100px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.xc0{left:250.869000px;}
.x79{left:254.098500px;}
.x48{left:264.198000px;}
.xa2{left:268.250342px;}
.x4{left:269.556000px;}
.x7a{left:274.296000px;}
.xa4{left:275.723624px;}
.x1e{left:281.479500px;}
.x49{left:283.695000px;}
.xa3{left:287.083013px;}
.x75{left:290.529000px;}
.x7b{left:293.985000px;}
.x53{left:295.809000px;}
.x7c{left:300.411000px;}
.x133{left:302.758500px;}
.xf4{left:306.003000px;}
.x76{left:310.548000px;}
.xe6{left:314.124000px;}
.x4a{left:315.741000px;}
.xf5{left:316.785000px;}
.x5f{left:320.160000px;}
.xaf{left:321.811500px;}
.xd2{left:323.809936px;}
.xff{left:325.221000px;}
.x131{left:326.590500px;}
.xb0{left:328.617000px;}
.x106{left:329.784000px;}
.xd9{left:331.300500px;}
.x69{left:332.535000px;}
.x23{left:335.926500px;}
.x8d{left:336.939000px;}
.x132{left:338.050500px;}
.x39{left:339.363000px;}
.xdd{left:341.784000px;}
.x24{left:343.398000px;}
.x8e{left:344.427000px;}
.x6a{left:345.699000px;}
.xda{left:347.970000px;}
.x8{left:351.642000px;}
.x11e{left:353.104500px;}
.x3a{left:354.307500px;}
.x14{left:356.589000px;}
.x9{left:358.206000px;}
.xde{left:359.526000px;}
.x15{left:362.917500px;}
.x11f{left:364.470000px;}
.x11d{left:366.576000px;}
.x4f{left:368.433000px;}
.xc6{left:370.086000px;}
.x7d{left:371.896500px;}
.x3b{left:373.012500px;}
.xdf{left:374.910000px;}
.x122{left:377.466000px;}
.x3c{left:380.538000px;}
.x54{left:383.091000px;}
.xc7{left:385.029000px;}
.x107{left:386.751000px;}
.x50{left:389.674500px;}
.x7e{left:390.895500px;}
.x109{left:393.312600px;}
.x3d{left:395.481000px;}
.x67{left:397.648500px;}
.x45{left:398.730000px;}
.xa{left:401.161500px;}
.xd3{left:403.428332px;}
.x57{left:407.623500px;}
.x12f{left:409.212000px;}
.xb{left:410.650500px;}
.x68{left:412.593000px;}
.x58{left:414.429000px;}
.xdb{left:416.251500px;}
.x16{left:423.804000px;}
.x94{left:426.346800px;}
.x8f{left:428.341500px;}
.xe0{left:429.948000px;}
.xdc{left:432.018000px;}
.x61{left:433.159500px;}
.x17{left:437.116500px;}
.xf2{left:438.151500px;}
.x115{left:439.596000px;}
.xfa{left:441.343500px;}
.x123{left:443.670000px;}
.xe1{left:445.714500px;}
.x7f{left:448.609500px;}
.x113{left:452.712000px;}
.x18{left:454.759500px;}
.xec{left:457.551000px;}
.xba{left:459.429000px;}
.x80{left:463.128000px;}
.xed{left:464.356500px;}
.x62{left:465.492000px;}
.xe4{left:469.753500px;}
.x114{left:472.212000px;}
.xee{left:474.094500px;}
.xb6{left:475.764000px;}
.x12d{left:480.180000px;}
.x63{left:481.258500px;}
.x19{left:482.364000px;}
.x100{left:484.957500px;}
.x37{left:486.645000px;}
.x81{left:489.244500px;}
.x101{left:491.284500px;}
.xbf{left:492.828000px;}
.x29{left:493.996500px;}
.xe5{left:495.367500px;}
.x1a{left:496.945500px;}
.x38{left:501.588000px;}
.xc8{left:503.053500px;}
.x129{left:504.207000px;}
.x130{left:505.903500px;}
.xf6{left:506.904000px;}
.x2a{left:508.939500px;}
.xe{left:512.203500px;}
.xc9{left:513.979500px;}
.x25{left:516.634500px;}
.xf7{left:517.686000px;}
.xe7{left:519.334500px;}
.x10f{left:521.230500px;}
.x26{left:524.107500px;}
.x60{left:528.090000px;}
.xd4{left:529.152827px;}
.x27{left:531.489000px;}
.x124{left:534.933000px;}
.xb1{left:536.125500px;}
.xab{left:537.733500px;}
.xf{left:538.852500px;}
.x82{left:540.532500px;}
.x96{left:543.876300px;}
.x28{left:546.433500px;}
.x83{left:548.019000px;}
.xc{left:551.853000px;}
.x103{left:554.331000px;}
.x12a{left:556.246500px;}
.xac{left:557.802000px;}
.xd{left:562.915500px;}
.x46{left:564.426000px;}
.x84{left:567.018000px;}
.x2f{left:570.025500px;}
.x93{left:572.235300px;}
.x85{left:573.444000px;}
.xbc{left:576.429000px;}
.x47{left:579.370500px;}
.x12c{left:582.859500px;}
.x30{left:584.970000px;}
.x105{left:586.293000px;}
.x31{left:588.744000px;}
.xfb{left:590.209500px;}
.x35{left:591.469500px;}
.x12b{left:592.665000px;}
.x42{left:596.937000px;}
.x6e{left:601.846500px;}
.x32{left:603.687000px;}
.x36{left:606.414000px;}
.x33{left:607.461000px;}
.xef{left:610.498500px;}
.x43{left:611.881500px;}
.x6f{left:613.225500px;}
.x44{left:615.691500px;}
.x77{left:618.210000px;}
.x125{left:619.756500px;}
.xb2{left:620.938500px;}
.x34{left:622.404000px;}
.x86{left:625.294500px;}
.xb3{left:627.745500px;}
.xf9{left:629.257500px;}
.xf0{left:630.343500px;}
.x1f{left:631.546500px;}
.x78{left:633.099000px;}
.x121{left:635.281500px;}
.x87{left:637.585500px;}
.x20{left:639.018000px;}
.x10{left:643.524000px;}
.x4b{left:645.156000px;}
.x10b{left:647.542500px;}
.xce{left:649.178100px;}
.x4c{left:651.963000px;}
.xc2{left:654.148500px;}
.x59{left:655.807500px;}
.xe2{left:658.471500px;}
.x90{left:659.932500px;}
.x11{left:662.326500px;}
.xf1{left:664.041000px;}
.x10c{left:667.083000px;}
.x134{left:668.994000px;}
.xc3{left:670.893000px;}
.x51{left:673.641000px;}
.x5a{left:675.312000px;}
.xc4{left:677.221500px;}
.x120{left:678.694500px;}
.xea{left:679.899000px;}
.x4d{left:682.711500px;}
.x52{left:685.540500px;}
.x56{left:689.259000px;}
.xeb{left:690.709500px;}
.xb4{left:692.148000px;}
.xbd{left:693.189000px;}
.xa8{left:694.332000px;}
.x135{left:695.641500px;}
.x70{left:696.864000px;}
.xb5{left:698.955000px;}
.x4e{left:702.567000px;}
.x12{left:704.517000px;}
.x88{left:707.338500px;}
.x71{left:709.156500px;}
.x110{left:711.603000px;}
.x5b{left:713.754000px;}
.x89{left:714.826500px;}
.x6b{left:717.055500px;}
.x10a{left:719.206500px;}
.x126{left:721.047000px;}
.xb7{left:722.332500px;}
.x1b{left:725.521500px;}
.xf8{left:726.868500px;}
.xc5{left:728.266500px;}
.x13{left:731.166000px;}
.x5c{left:733.260000px;}
.xaa{left:735.001500px;}
.x6c{left:736.563000px;}
.xad{left:738.732000px;}
.x8a{left:740.250000px;}
.x99{left:742.572300px;}
.x12e{left:744.427500px;}
.xe8{left:747.297000px;}
.xae{left:749.544000px;}
.x10d{left:751.290000px;}
.xd7{left:753.861000px;}
.x2b{left:757.354500px;}
.x1c{left:759.432000px;}
.xd8{left:760.668000px;}
.xe3{left:762.360000px;}
.x5d{left:764.982000px;}
.x104{left:767.158500px;}
.x10e{left:770.830500px;}
.x2c{left:772.299000px;}
.x64{left:776.596500px;}
.xd5{left:778.129500px;}
.x2d{left:779.920500px;}
.xf3{left:783.145500px;}
.x5e{left:784.488000px;}
.x6d{left:786.045000px;}
.x3e{left:787.660500px;}
.xbe{left:788.949000px;}
.x65{left:791.541000px;}
.x2e{left:794.863500px;}
.x111{left:797.376000px;}
.x3f{left:798.943500px;}
.x72{left:805.837500px;}
.xd6{left:806.968500px;}
.x66{left:810.255000px;}
.x8b{left:811.621500px;}
.x112{left:812.758500px;}
.x40{left:813.886500px;}
.x41{left:817.698000px;}
.x55{left:819.022500px;}
.x127{left:820.104000px;}
.x102{left:821.370000px;}
.x8c{left:823.912500px;}
.x21{left:825.519000px;}
.x128{left:826.911000px;}
.x73{left:828.981000px;}
.x6{left:830.611500px;}
.xe9{left:831.852000px;}
.x22{left:832.990500px;}
.x136{left:834.085500px;}
.x74{left:835.407000px;}
.x7{left:836.757000px;}
.x1d{left:837.867000px;}
@media print{
.v10{vertical-align:-38.976000pt;}
.v2{vertical-align:-15.434667pt;}
.ve{vertical-align:-13.440000pt;}
.v4{vertical-align:-10.629333pt;}
.v8{vertical-align:-9.559248pt;}
.v5{vertical-align:-7.968000pt;}
.vb{vertical-align:-6.378667pt;}
.v9{vertical-align:-1.593208pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:9.559248pt;}
.v6{vertical-align:11.424000pt;}
.vd{vertical-align:13.440000pt;}
.va{vertical-align:15.429333pt;}
.v3{vertical-align:17.354667pt;}
.v1{vertical-align:19.285333pt;}
.vc{vertical-align:21.253333pt;}
.v12{vertical-align:36.453333pt;}
.vf{vertical-align:84.250667pt;}
.v11{vertical-align:111.397333pt;}
.ls5b{letter-spacing:-1.910835pt;}
.ls5a{letter-spacing:-1.019870pt;}
.ls7c{letter-spacing:-0.752001pt;}
.ls33{letter-spacing:-0.597453pt;}
.ls67{letter-spacing:-0.453760pt;}
.ls44{letter-spacing:-0.449067pt;}
.ls32{letter-spacing:-0.448754pt;}
.ls58{letter-spacing:-0.444267pt;}
.ls76{letter-spacing:-0.352000pt;}
.ls7a{letter-spacing:-0.339680pt;}
.ls75{letter-spacing:-0.334400pt;}
.ls62{letter-spacing:-0.304000pt;}
.ls2d{letter-spacing:-0.273813pt;}
.ls6a{letter-spacing:-0.234880pt;}
.ls42{letter-spacing:-0.195733pt;}
.ls66{letter-spacing:-0.192000pt;}
.ls77{letter-spacing:-0.176000pt;}
.ls40{letter-spacing:-0.160000pt;}
.ls43{letter-spacing:-0.129067pt;}
.ls57{letter-spacing:-0.124267pt;}
.ls30{letter-spacing:-0.117413pt;}
.ls2b{letter-spacing:-0.109707pt;}
.ls28{letter-spacing:-0.105627pt;}
.ls72{letter-spacing:-0.092107pt;}
.ls45{letter-spacing:-0.089067pt;}
.ls2f{letter-spacing:-0.081600pt;}
.ls69{letter-spacing:-0.069760pt;}
.ls79{letter-spacing:-0.052096pt;}
.ls59{letter-spacing:-0.047360pt;}
.ls2e{letter-spacing:-0.027200pt;}
.lsb{letter-spacing:0.000000pt;}
.ls5f{letter-spacing:0.000176pt;}
.ls4b{letter-spacing:0.000260pt;}
.ls94{letter-spacing:0.000298pt;}
.ls89{letter-spacing:0.000361pt;}
.ls61{letter-spacing:0.000539pt;}
.ls60{letter-spacing:0.000621pt;}
.ls1c{letter-spacing:0.000711pt;}
.ls8b{letter-spacing:0.000921pt;}
.ls8e{letter-spacing:0.001026pt;}
.ls11{letter-spacing:0.002207pt;}
.ls93{letter-spacing:0.002262pt;}
.ls3e{letter-spacing:0.003055pt;}
.ls5{letter-spacing:0.003100pt;}
.ls83{letter-spacing:0.004267pt;}
.ls63{letter-spacing:0.005760pt;}
.ls14{letter-spacing:0.013600pt;}
.ls3a{letter-spacing:0.016000pt;}
.ls6c{letter-spacing:0.017600pt;}
.ls41{letter-spacing:0.023680pt;}
.ls7b{letter-spacing:0.026048pt;}
.ls39{letter-spacing:0.039680pt;}
.ls29{letter-spacing:0.040256pt;}
.ls36{letter-spacing:0.041600pt;}
.ls3f{letter-spacing:0.053134pt;}
.ls31{letter-spacing:0.065853pt;}
.ls16{letter-spacing:0.068000pt;}
.ls78{letter-spacing:0.078613pt;}
.ls37{letter-spacing:0.080000pt;}
.ls6e{letter-spacing:0.088000pt;}
.ls2c{letter-spacing:0.088400pt;}
.ls15{letter-spacing:0.095200pt;}
.ls48{letter-spacing:0.104000pt;}
.ls2a{letter-spacing:0.105627pt;}
.ls38{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.108800pt;}
.ls46{letter-spacing:0.112000pt;}
.ls74{letter-spacing:0.123200pt;}
.ls3c{letter-spacing:0.124480pt;}
.ls68{letter-spacing:0.124800pt;}
.ls3b{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.136000pt;}
.ls6d{letter-spacing:0.140800pt;}
.ls73{letter-spacing:0.141973pt;}
.ls17{letter-spacing:0.158667pt;}
.ls35{letter-spacing:0.160000pt;}
.ls6b{letter-spacing:0.176000pt;}
.ls65{letter-spacing:0.192000pt;}
.ls3d{letter-spacing:0.231147pt;}
.ls4a{letter-spacing:0.236580pt;}
.ls49{letter-spacing:0.240371pt;}
.ls70{letter-spacing:0.332134pt;}
.ls1f{letter-spacing:0.380773pt;}
.ls1e{letter-spacing:0.386106pt;}
.ls19{letter-spacing:0.399364pt;}
.ls52{letter-spacing:0.447207pt;}
.ls7{letter-spacing:0.447791pt;}
.lsd{letter-spacing:0.482502pt;}
.lsc{letter-spacing:0.487835pt;}
.ls1b{letter-spacing:0.520448pt;}
.ls18{letter-spacing:0.694639pt;}
.ls54{letter-spacing:0.928300pt;}
.ls6f{letter-spacing:1.144000pt;}
.ls51{letter-spacing:2.099096pt;}
.ls71{letter-spacing:2.656533pt;}
.ls2{letter-spacing:2.657067pt;}
.ls21{letter-spacing:2.659516pt;}
.ls20{letter-spacing:2.659661pt;}
.ls1{letter-spacing:2.665203pt;}
.ls4c{letter-spacing:3.118133pt;}
.ls9{letter-spacing:3.123467pt;}
.ls34{letter-spacing:3.158400pt;}
.ls7d{letter-spacing:3.163733pt;}
.ls4f{letter-spacing:3.318400pt;}
.ls47{letter-spacing:4.880000pt;}
.ls50{letter-spacing:7.698827pt;}
.ls1a{letter-spacing:8.503482pt;}
.ls0{letter-spacing:9.298933pt;}
.lsa{letter-spacing:10.626533pt;}
.ls80{letter-spacing:11.130514pt;}
.ls88{letter-spacing:11.687845pt;}
.ls8d{letter-spacing:11.896357pt;}
.ls7f{letter-spacing:11.954133pt;}
.ls81{letter-spacing:11.959467pt;}
.ls8a{letter-spacing:12.034047pt;}
.ls86{letter-spacing:12.066262pt;}
.ls92{letter-spacing:12.069116pt;}
.ls95{letter-spacing:12.071628pt;}
.ls84{letter-spacing:12.202623pt;}
.ls82{letter-spacing:12.208065pt;}
.ls8f{letter-spacing:12.421271pt;}
.ls1d{letter-spacing:13.281067pt;}
.ls27{letter-spacing:13.285043pt;}
.ls26{letter-spacing:13.287398pt;}
.ls10{letter-spacing:13.336601pt;}
.ls87{letter-spacing:13.534996pt;}
.lse{letter-spacing:13.923096pt;}
.ls55{letter-spacing:14.092223pt;}
.ls8c{letter-spacing:14.314081pt;}
.ls8{letter-spacing:14.608533pt;}
.ls85{letter-spacing:15.166369pt;}
.ls90{letter-spacing:15.846107pt;}
.lsf{letter-spacing:15.937067pt;}
.ls5e{letter-spacing:15.939255pt;}
.ls5c{letter-spacing:15.942349pt;}
.ls7e{letter-spacing:15.942400pt;}
.ls5d{letter-spacing:15.944589pt;}
.ls91{letter-spacing:15.976826pt;}
.ls4e{letter-spacing:16.061762pt;}
.ls64{letter-spacing:16.152695pt;}
.ls4d{letter-spacing:16.352300pt;}
.ls56{letter-spacing:19.216253pt;}
.ls3{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ls25{letter-spacing:293.414400pt;}
.ls23{letter-spacing:294.309043pt;}
.ls24{letter-spacing:304.933043pt;}
.ls22{letter-spacing:322.690065pt;}
.ls53{letter-spacing:817.229494pt;}
.wsde{word-spacing:-16.224000pt;}
.wse4{word-spacing:-16.156800pt;}
.wse0{word-spacing:-16.032000pt;}
.wse5{word-spacing:-15.962240pt;}
.wsdf{word-spacing:-15.840000pt;}
.wse6{word-spacing:-15.797120pt;}
.wse1{word-spacing:-15.578240pt;}
.wsf1{word-spacing:-14.872000pt;}
.wse9{word-spacing:-14.837973pt;}
.wsf0{word-spacing:-14.774613pt;}
.wsf3{word-spacing:-14.722048pt;}
.wsef{word-spacing:-14.696000pt;}
.wsf2{word-spacing:-14.643904pt;}
.wsee{word-spacing:-14.520000pt;}
.wse2{word-spacing:-14.400000pt;}
.wsa6{word-spacing:-13.520000pt;}
.wsa3{word-spacing:-13.401600pt;}
.wsa8{word-spacing:-13.383680pt;}
.wsd1{word-spacing:-13.365760pt;}
.wsa5{word-spacing:-13.360000pt;}
.wseb{word-spacing:-13.323200pt;}
.wsba{word-spacing:-13.312640pt;}
.ws53{word-spacing:-13.283467pt;}
.wsad{word-spacing:-13.270933pt;}
.wsb8{word-spacing:-13.235733pt;}
.wsab{word-spacing:-13.230933pt;}
.wsa7{word-spacing:-13.200000pt;}
.wsdc{word-spacing:-12.960000pt;}
.wsb9{word-spacing:-12.915733pt;}
.wsac{word-spacing:-12.910933pt;}
.wsec{word-spacing:-12.848000pt;}
.wsdd{word-spacing:-12.768000pt;}
.wsaa{word-spacing:-12.016000pt;}
.wsae{word-spacing:-12.000000pt;}
.ws16{word-spacing:-11.955200pt;}
.wse7{word-spacing:-11.880000pt;}
.wse8{word-spacing:-11.704000pt;}
.ws7e{word-spacing:-11.492000pt;}
.ws74{word-spacing:-11.461627pt;}
.ws76{word-spacing:-11.444400pt;}
.ws73{word-spacing:-11.356000pt;}
.ws71{word-spacing:-11.250373pt;}
.ws75{word-spacing:-11.246293pt;}
.ws7d{word-spacing:-11.238587pt;}
.ws77{word-spacing:-11.082187pt;}
.wsa1{word-spacing:-10.800000pt;}
.wsa2{word-spacing:-10.640000pt;}
.ws2b{word-spacing:-10.626800pt;}
.ws79{word-spacing:-10.200000pt;}
.wse{word-spacing:-10.095467pt;}
.wse3{word-spacing:-9.600000pt;}
.ws3{word-spacing:-9.298400pt;}
.ws6f{word-spacing:-9.180000pt;}
.ws70{word-spacing:-9.044000pt;}
.wsea{word-spacing:-8.800000pt;}
.wsed{word-spacing:-8.096000pt;}
.wsa4{word-spacing:-8.000000pt;}
.ws90{word-spacing:-7.970133pt;}
.wsa9{word-spacing:-7.360000pt;}
.ws78{word-spacing:-6.908800pt;}
.ws72{word-spacing:-6.800000pt;}
.ws7b{word-spacing:-6.772800pt;}
.ws7c{word-spacing:-6.718400pt;}
.ws7a{word-spacing:-6.256000pt;}
.ws4f{word-spacing:-3.825638pt;}
.ws5b{word-spacing:-3.506835pt;}
.wsfd{word-spacing:-2.762961pt;}
.ws29{word-spacing:-2.709827pt;}
.ws27{word-spacing:-2.497292pt;}
.ws147{word-spacing:-2.486682pt;}
.wsff{word-spacing:-2.337890pt;}
.ws106{word-spacing:-2.284756pt;}
.ws66{word-spacing:-2.125355pt;}
.wscc{word-spacing:-1.912819pt;}
.wsf8{word-spacing:-1.700284pt;}
.ws10e{word-spacing:-1.386803pt;}
.ws28{word-spacing:-1.328347pt;}
.wsbd{word-spacing:-1.099878pt;}
.ws6d{word-spacing:-1.062677pt;}
.ws155{word-spacing:-1.004237pt;}
.wsf4{word-spacing:-0.908595pt;}
.ws20{word-spacing:-0.860774pt;}
.ws33{word-spacing:-0.850142pt;}
.ws11b{word-spacing:-0.812954pt;}
.ws98{word-spacing:-0.797008pt;}
.wsca{word-spacing:-0.743874pt;}
.ws102{word-spacing:-0.690740pt;}
.ws10b{word-spacing:-0.669491pt;}
.ws11d{word-spacing:-0.621670pt;}
.ws6a{word-spacing:-0.584473pt;}
.ws15{word-spacing:-0.478208pt;}
.ws54{word-spacing:-0.478205pt;}
.ws10c{word-spacing:-0.382566pt;}
.ws4d{word-spacing:-0.371937pt;}
.wsf5{word-spacing:-0.334746pt;}
.ws60{word-spacing:-0.318803pt;}
.ws110{word-spacing:-0.286925pt;}
.ws36{word-spacing:-0.265669pt;}
.wsf9{word-spacing:-0.252627pt;}
.wsbc{word-spacing:-0.239104pt;}
.wsfc{word-spacing:-0.228357pt;}
.ws3d{word-spacing:-0.212535pt;}
.ws17{word-spacing:-0.191283pt;}
.wsa0{word-spacing:-0.190745pt;}
.ws9f{word-spacing:-0.185506pt;}
.ws41{word-spacing:-0.159402pt;}
.ws21{word-spacing:-0.143462pt;}
.ws10d{word-spacing:-0.139154pt;}
.ws38{word-spacing:-0.106268pt;}
.ws111{word-spacing:-0.095642pt;}
.ws55{word-spacing:-0.053134pt;}
.ws1a{word-spacing:-0.047821pt;}
.wsf{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.wsf7{word-spacing:-0.007228pt;}
.ws97{word-spacing:-0.003161pt;}
.ws96{word-spacing:-0.002404pt;}
.ws94{word-spacing:-0.001067pt;}
.ws89{word-spacing:-0.000800pt;}
.ws1{word-spacing:0.000000pt;}
.wsb7{word-spacing:0.001289pt;}
.ws8d{word-spacing:0.004533pt;}
.ws8b{word-spacing:0.012064pt;}
.ws92{word-spacing:0.014049pt;}
.ws84{word-spacing:0.021606pt;}
.wsdb{word-spacing:0.035572pt;}
.ws5{word-spacing:0.037194pt;}
.ws10f{word-spacing:0.047821pt;}
.ws2d{word-spacing:0.053134pt;}
.ws68{word-spacing:0.064779pt;}
.ws69{word-spacing:0.066210pt;}
.wsaf{word-spacing:0.095642pt;}
.ws35{word-spacing:0.106268pt;}
.ws1f{word-spacing:0.143462pt;}
.ws31{word-spacing:0.159402pt;}
.wsd2{word-spacing:0.191283pt;}
.ws32{word-spacing:0.212535pt;}
.ws112{word-spacing:0.239104pt;}
.ws9a{word-spacing:0.249333pt;}
.ws2c{word-spacing:0.265669pt;}
.ws99{word-spacing:0.268362pt;}
.ws81{word-spacing:0.286925pt;}
.ws58{word-spacing:0.318803pt;}
.ws82{word-spacing:0.334746pt;}
.ws5e{word-spacing:0.371937pt;}
.ws6c{word-spacing:0.425071pt;}
.ws1d{word-spacing:0.430387pt;}
.wsbf{word-spacing:0.468267pt;}
.wsc1{word-spacing:0.478205pt;}
.ws14b{word-spacing:0.478208pt;}
.ws59{word-spacing:0.531339pt;}
.ws12{word-spacing:0.573850pt;}
.wsb1{word-spacing:0.584473pt;}
.ws9d{word-spacing:0.637606pt;}
.ws52{word-spacing:0.661867pt;}
.ws115{word-spacing:0.765133pt;}
.wsd3{word-spacing:0.797008pt;}
.ws5d{word-spacing:0.850142pt;}
.ws5c{word-spacing:0.903276pt;}
.ws48{word-spacing:0.956410pt;}
.ws49{word-spacing:1.009543pt;}
.wscb{word-spacing:1.062677pt;}
.ws9b{word-spacing:1.115811pt;}
.ws18{word-spacing:1.147699pt;}
.ws19{word-spacing:1.195520pt;}
.ws26{word-spacing:1.222079pt;}
.wsb{word-spacing:1.227389pt;}
.ws13f{word-spacing:1.243341pt;}
.ws6b{word-spacing:1.275213pt;}
.ws105{word-spacing:1.328347pt;}
.ws149{word-spacing:1.338982pt;}
.ws39{word-spacing:1.381481pt;}
.wsd6{word-spacing:1.434614pt;}
.ws14d{word-spacing:1.482445pt;}
.wsb4{word-spacing:1.487748pt;}
.wsb5{word-spacing:1.540882pt;}
.ws13a{word-spacing:1.578086pt;}
.ws56{word-spacing:1.594016pt;}
.ws30{word-spacing:1.647150pt;}
.wsbe{word-spacing:1.721549pt;}
.wsd5{word-spacing:1.806551pt;}
.wsda{word-spacing:1.833647pt;}
.ws25{word-spacing:1.859685pt;}
.ws145{word-spacing:1.865011pt;}
.wsd4{word-spacing:1.912819pt;}
.wsc2{word-spacing:1.965953pt;}
.ws40{word-spacing:2.019087pt;}
.wsc7{word-spacing:2.072221pt;}
.ws12c{word-spacing:2.104115pt;}
.ws4e{word-spacing:2.125355pt;}
.ws1b{word-spacing:2.151936pt;}
.wsb6{word-spacing:2.178489pt;}
.ws1e{word-spacing:2.199757pt;}
.ws47{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws127{word-spacing:2.247578pt;}
.wsd0{word-spacing:2.337890pt;}
.ws13c{word-spacing:2.343219pt;}
.ws61{word-spacing:2.391024pt;}
.wsce{word-spacing:2.444158pt;}
.ws131{word-spacing:2.534502pt;}
.wsc9{word-spacing:2.550426pt;}
.ws10{word-spacing:2.550432pt;}
.wsbb{word-spacing:2.582323pt;}
.ws46{word-spacing:2.603559pt;}
.ws100{word-spacing:2.656693pt;}
.ws123{word-spacing:2.677965pt;}
.wsfa{word-spacing:2.709827pt;}
.wsfb{word-spacing:2.722536pt;}
.wsf6{word-spacing:2.773606pt;}
.ws3b{word-spacing:2.816095pt;}
.ws125{word-spacing:2.861449pt;}
.ws23{word-spacing:2.861926pt;}
.ws137{word-spacing:2.863147pt;}
.ws140{word-spacing:2.866389pt;}
.wsd7{word-spacing:2.869229pt;}
.ws12f{word-spacing:2.869248pt;}
.ws154{word-spacing:3.012710pt;}
.ws3f{word-spacing:3.028630pt;}
.ws13d{word-spacing:3.060531pt;}
.ws3e{word-spacing:3.081764pt;}
.ws157{word-spacing:3.108352pt;}
.ws4c{word-spacing:3.134898pt;}
.ws152{word-spacing:3.156173pt;}
.ws24{word-spacing:3.188032pt;}
.ws133{word-spacing:3.203994pt;}
.ws57{word-spacing:3.241166pt;}
.wscd{word-spacing:3.347434pt;}
.ws6e{word-spacing:3.453701pt;}
.ws62{word-spacing:3.559969pt;}
.ws109{word-spacing:3.634381pt;}
.ws3c{word-spacing:3.666237pt;}
.ws10a{word-spacing:3.682202pt;}
.ws4b{word-spacing:3.719371pt;}
.ws44{word-spacing:3.772505pt;}
.ws2e{word-spacing:3.825638pt;}
.ws14f{word-spacing:3.873485pt;}
.ws63{word-spacing:3.878772pt;}
.ws9e{word-spacing:4.091308pt;}
.ws14{word-spacing:4.112589pt;}
.ws1c{word-spacing:4.160410pt;}
.ws11{word-spacing:4.181471pt;}
.wsb0{word-spacing:4.197575pt;}
.ws104{word-spacing:4.250709pt;}
.ws22{word-spacing:4.256051pt;}
.wsd8{word-spacing:4.303843pt;}
.ws80{word-spacing:4.351693pt;}
.ws101{word-spacing:4.356977pt;}
.ws114{word-spacing:4.399514pt;}
.ws103{word-spacing:4.410111pt;}
.ws64{word-spacing:4.569513pt;}
.wsc6{word-spacing:4.675780pt;}
.ws2f{word-spacing:4.782048pt;}
.ws9{word-spacing:4.872362pt;}
.ws136{word-spacing:4.877722pt;}
.ws37{word-spacing:4.888316pt;}
.ws45{word-spacing:4.994583pt;}
.ws65{word-spacing:5.153985pt;}
.wsb3{word-spacing:5.260253pt;}
.wsb2{word-spacing:5.313387pt;}
.ws9c{word-spacing:5.366521pt;}
.ws42{word-spacing:5.419654pt;}
.ws151{word-spacing:5.499392pt;}
.ws107{word-spacing:5.579056pt;}
.ws7f{word-spacing:5.642854pt;}
.wsc3{word-spacing:5.685324pt;}
.wsc4{word-spacing:5.738458pt;}
.ws4a{word-spacing:5.791591pt;}
.ws67{word-spacing:5.950993pt;}
.wsc8{word-spacing:6.163529pt;}
.ws34{word-spacing:6.216662pt;}
.ws43{word-spacing:6.376064pt;}
.wsd9{word-spacing:6.429198pt;}
.wscf{word-spacing:6.748001pt;}
.wsfe{word-spacing:6.960537pt;}
.ws50{word-spacing:7.013670pt;}
.ws5a{word-spacing:7.173072pt;}
.wsc0{word-spacing:7.226206pt;}
.ws51{word-spacing:7.491875pt;}
.ws3a{word-spacing:7.810678pt;}
.ws13{word-spacing:8.559923pt;}
.ws7{word-spacing:8.740496pt;}
.ws2{word-spacing:9.259558pt;}
.ws83{word-spacing:9.611981pt;}
.ws8{word-spacing:10.525789pt;}
.ws2a{word-spacing:10.583063pt;}
.ws11a{word-spacing:10.807501pt;}
.ws13b{word-spacing:11.617666pt;}
.ws120{word-spacing:11.668275pt;}
.ws11f{word-spacing:11.763917pt;}
.ws156{word-spacing:11.859558pt;}
.ws113{word-spacing:11.876600pt;}
.ws141{word-spacing:11.898863pt;}
.ws150{word-spacing:11.898871pt;}
.ws138{word-spacing:11.900117pt;}
.ws11e{word-spacing:11.901099pt;}
.ws135{word-spacing:11.903394pt;}
.ws128{word-spacing:11.903863pt;}
.ws143{word-spacing:11.904205pt;}
.ws14a{word-spacing:11.904358pt;}
.ws122{word-spacing:11.906432pt;}
.ws126{word-spacing:11.907021pt;}
.ws118{word-spacing:11.907379pt;}
.ws134{word-spacing:11.995977pt;}
.ws142{word-spacing:12.003021pt;}
.ws129{word-spacing:12.050202pt;}
.ws144{word-spacing:12.146483pt;}
.ws124{word-spacing:12.155945pt;}
.ws12d{word-spacing:12.194304pt;}
.ws139{word-spacing:13.134636pt;}
.ws5f{word-spacing:13.230333pt;}
.ws146{word-spacing:13.724570pt;}
.ws132{word-spacing:14.407956pt;}
.ws148{word-spacing:14.728806pt;}
.ws130{word-spacing:14.771610pt;}
.ws12b{word-spacing:14.771900pt;}
.ws117{word-spacing:14.772625pt;}
.ws121{word-spacing:14.773214pt;}
.ws12a{word-spacing:14.773897pt;}
.ws119{word-spacing:14.776627pt;}
.ws13e{word-spacing:14.872269pt;}
.ws116{word-spacing:14.920090pt;}
.ws14e{word-spacing:14.967910pt;}
.ws12e{word-spacing:15.069954pt;}
.ws11c{word-spacing:15.493939pt;}
.ws14c{word-spacing:16.149216pt;}
.ws6{word-spacing:19.857270pt;}
.wsa{word-spacing:20.196125pt;}
.ws108{word-spacing:20.403405pt;}
.ws153{word-spacing:24.675533pt;}
.wsc5{word-spacing:28.368547pt;}
.wsc{word-spacing:35.593054pt;}
.wsd{word-spacing:48.901963pt;}
.ws86{word-spacing:74.812672pt;}
.ws85{word-spacing:85.652008pt;}
.ws87{word-spacing:147.074912pt;}
.ws93{word-spacing:203.056894pt;}
.ws95{word-spacing:203.065867pt;}
.ws8c{word-spacing:286.456021pt;}
.ws8e{word-spacing:286.463200pt;}
.ws8f{word-spacing:305.924318pt;}
.ws8a{word-spacing:305.948969pt;}
.ws88{word-spacing:589.479212pt;}
.ws91{word-spacing:833.409212pt;}
._5{margin-left:-10.616218pt;}
._e{margin-left:-6.535466pt;}
._0{margin-left:-4.797974pt;}
._2{margin-left:-3.347424pt;}
._1{margin-left:-2.045648pt;}
._8{margin-left:-0.908595pt;}
._17{width:1.008079pt;}
._6{width:2.616445pt;}
._1f{width:3.930062pt;}
._1b{width:5.223760pt;}
._1c{width:6.133198pt;}
._1d{width:7.248788pt;}
._20{width:8.772000pt;}
._36{width:9.784960pt;}
._3e{width:10.699607pt;}
._4{width:11.604403pt;}
._7{width:12.693669pt;}
._a{width:14.441850pt;}
._37{width:15.595807pt;}
._d{width:16.508699pt;}
._19{width:17.640444pt;}
._b{width:18.745754pt;}
._14{width:20.084602pt;}
._c{width:21.615002pt;}
._3{width:23.063232pt;}
._24{width:24.006042pt;}
._1e{width:25.715171pt;}
._9{width:26.684006pt;}
._18{width:27.576477pt;}
._13{width:28.745422pt;}
._41{width:29.648698pt;}
._39{width:30.539064pt;}
._12{width:31.678423pt;}
._15{width:34.324478pt;}
._11{width:35.652825pt;}
._16{width:37.884447pt;}
._23{width:43.603124pt;}
._43{width:54.993920pt;}
._26{width:77.957499pt;}
._42{width:78.904320pt;}
._30{width:324.882530pt;}
._2b{width:338.612355pt;}
._2d{width:349.249486pt;}
._2f{width:352.342181pt;}
._33{width:353.659904pt;}
._28{width:358.140667pt;}
._2a{width:368.282381pt;}
._27{width:379.315249pt;}
._32{width:384.219778pt;}
._2e{width:531.239009pt;}
._31{width:547.774309pt;}
._29{width:576.089444pt;}
._2c{width:592.624745pt;}
._22{width:601.973434pt;}
._21{width:674.799278pt;}
._40{width:687.774753pt;}
._25{width:719.051795pt;}
._3f{width:727.981720pt;}
._f{width:752.009259pt;}
._35{width:839.064438pt;}
._38{width:871.029918pt;}
._3a{width:979.804685pt;}
._1a{width:1606.175776pt;}
._34{width:1889.618560pt;}
._3d{width:2054.340337pt;}
._3c{width:2254.477333pt;}
._3b{width:2266.534193pt;}
._10{width:2275.730667pt;}
.fs14{font-size:19.118495pt;}
.fs21{font-size:25.022835pt;}
.fs10{font-size:25.024000pt;}
.fse{font-size:27.200000pt;}
.fs1a{font-size:29.440000pt;}
.fs2d{font-size:30.080025pt;}
.fs13{font-size:30.270951pt;}
.fs12{font-size:30.802020pt;}
.fs5{font-size:31.880533pt;}
.fs19{font-size:32.000000pt;}
.fs2b{font-size:32.384000pt;}
.fs16{font-size:33.219200pt;}
.fs11{font-size:33.457366pt;}
.fs29{font-size:35.200000pt;}
.fsc{font-size:36.176000pt;}
.fs20{font-size:36.396851pt;}
.fs1f{font-size:37.155119pt;}
.fs0{font-size:37.193600pt;}
.fs15{font-size:38.236990pt;}
.fs26{font-size:38.400000pt;}
.fs9{font-size:38.755733pt;}
.fs4{font-size:40.381867pt;}
.fsf{font-size:40.800000pt;}
.fsa{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fs17{font-size:42.560000pt;}
.fs1e{font-size:43.221261pt;}
.fs2c{font-size:45.120037pt;}
.fsd{font-size:45.424000pt;}
.fs27{font-size:46.816000pt;}
.fs7{font-size:47.820800pt;}
.fs1b{font-size:48.000000pt;}
.fs8{font-size:49.829333pt;}
.fs23{font-size:51.072000pt;}
.fs2a{font-size:52.800000pt;}
.fs2{font-size:53.133867pt;}
.fs18{font-size:53.440000pt;}
.fs1c{font-size:54.308474pt;}
.fs1d{font-size:54.595277pt;}
.fsb{font-size:55.365867pt;}
.fs22{font-size:56.326223pt;}
.fs25{font-size:57.600000pt;}
.fs28{font-size:58.784000pt;}
.fs24{font-size:64.128000pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:114.229120pt;}
.y1b9{bottom:-667.306667pt;}
.y25c{bottom:-655.831733pt;}
.y1b8{bottom:-650.266667pt;}
.y25b{bottom:-636.999733pt;}
.y1b7{bottom:-633.146667pt;}
.y25a{bottom:-618.255733pt;}
.y1b6{bottom:-616.106667pt;}
.y259{bottom:-599.423733pt;}
.y1b5{bottom:-598.986667pt;}
.y1b4{bottom:-581.866667pt;}
.y258{bottom:-580.591733pt;}
.y1b3{bottom:-564.826667pt;}
.y257{bottom:-557.447733pt;}
.y1b2{bottom:-547.706667pt;}
.y256{bottom:-538.615733pt;}
.y1b1{bottom:-530.560000pt;}
.y1b0{bottom:-513.520000pt;}
.y255{bottom:-502.242400pt;}
.y1af{bottom:-496.400000pt;}
.y254{bottom:-483.410400pt;}
.y1ae{bottom:-479.360000pt;}
.y253{bottom:-464.578400pt;}
.y1ad{bottom:-462.240000pt;}
.y252{bottom:-445.834400pt;}
.y1ac{bottom:-445.120000pt;}
.y1ab{bottom:-428.080000pt;}
.y251{bottom:-427.002400pt;}
.y1aa{bottom:-410.960000pt;}
.y250{bottom:-408.258400pt;}
.y1a9{bottom:-393.920000pt;}
.y24f{bottom:-389.426400pt;}
.y1a8{bottom:-376.800000pt;}
.y24e{bottom:-370.594400pt;}
.y1a7{bottom:-359.680000pt;}
.y24d{bottom:-351.850400pt;}
.y1a6{bottom:-342.640000pt;}
.y24c{bottom:-333.018400pt;}
.y20d{bottom:-329.548800pt;}
.y1a5{bottom:-325.520000pt;}
.y24b{bottom:-314.186400pt;}
.y20c{bottom:-309.004800pt;}
.y1a4{bottom:-308.480000pt;}
.y14e{bottom:-300.581333pt;}
.y24a{bottom:-295.442400pt;}
.y1a3{bottom:-291.360000pt;}
.y20b{bottom:-288.460800pt;}
.y14d{bottom:-283.461333pt;}
.y249{bottom:-276.610400pt;}
.y1a2{bottom:-274.240000pt;}
.y20a{bottom:-268.012800pt;}
.y14c{bottom:-266.341333pt;}
.y248{bottom:-257.866400pt;}
.y1a1{bottom:-257.200000pt;}
.y14b{bottom:-249.301333pt;}
.y209{bottom:-247.468800pt;}
.y1a0{bottom:-240.080000pt;}
.y247{bottom:-239.034400pt;}
.y14a{bottom:-232.181333pt;}
.y208{bottom:-227.020800pt;}
.y19f{bottom:-222.960000pt;}
.y246{bottom:-220.202400pt;}
.y149{bottom:-215.061333pt;}
.y207{bottom:-206.476800pt;}
.y19e{bottom:-205.920000pt;}
.y245{bottom:-201.458400pt;}
.yc8{bottom:-199.178800pt;}
.y148{bottom:-198.021333pt;}
.y19d{bottom:-188.800000pt;}
.y206{bottom:-185.900800pt;}
.yc7{bottom:-183.334800pt;}
.y244{bottom:-182.626400pt;}
.y147{bottom:-180.901333pt;}
.y19c{bottom:-171.733333pt;}
.yc6{bottom:-167.490800pt;}
.y205{bottom:-165.452800pt;}
.y243{bottom:-163.882400pt;}
.y146{bottom:-163.834667pt;}
.y118{bottom:-154.770667pt;}
.y19b{bottom:-154.613333pt;}
.yc5{bottom:-151.578800pt;}
.y145{bottom:-146.714667pt;}
.y242{bottom:-145.050400pt;}
.y204{bottom:-144.908800pt;}
.y117{bottom:-137.650667pt;}
.y19a{bottom:-137.493333pt;}
.yc4{bottom:-135.734800pt;}
.y144{bottom:-129.594667pt;}
.y241{bottom:-126.218400pt;}
.y203{bottom:-124.364800pt;}
.y116{bottom:-120.610667pt;}
.y199{bottom:-120.453333pt;}
.yc3{bottom:-119.868133pt;}
.y143{bottom:-112.554667pt;}
.y202{bottom:-103.916800pt;}
.y115{bottom:-103.490667pt;}
.y198{bottom:-103.333333pt;}
.yc2{bottom:-97.156133pt;}
.y240{bottom:-90.197067pt;}
.y114{bottom:-86.450667pt;}
.y197{bottom:-86.293333pt;}
.yc1{bottom:-84.032133pt;}
.y201{bottom:-83.372800pt;}
.y142{bottom:-79.834667pt;}
.y23f{bottom:-73.213067pt;}
.y113{bottom:-69.330667pt;}
.y141{bottom:-64.394667pt;}
.yc0{bottom:-57.444133pt;}
.y23e{bottom:-56.317067pt;}
.y196{bottom:-50.213333pt;}
.y140{bottom:-48.954667pt;}
.ybf{bottom:-44.252133pt;}
.y200{bottom:-44.108800pt;}
.y23d{bottom:-39.421067pt;}
.y195{bottom:-38.053333pt;}
.y112{bottom:-36.610667pt;}
.y13f{bottom:-33.594667pt;}
.ybe{bottom:-31.196133pt;}
.y1ff{bottom:-25.580800pt;}
.y194{bottom:-22.693333pt;}
.y23c{bottom:-22.437067pt;}
.y111{bottom:-21.144000pt;}
.y13e{bottom:-18.234667pt;}
.ybd{bottom:-18.140133pt;}
.y193{bottom:-2.773333pt;}
.y1fe{bottom:-1.772800pt;}
.y110{bottom:-1.224000pt;}
.ybc{bottom:-1.208133pt;}
.y23b{bottom:-0.525067pt;}
.y0{bottom:0.000000pt;}
.y13d{bottom:1.685333pt;}
.yf4{bottom:4.000000pt;}
.yf5{bottom:12.960000pt;}
.y1b{bottom:14.008606pt;}
.yfa{bottom:21.920000pt;}
.yf3{bottom:22.000000pt;}
.yf7{bottom:22.026667pt;}
.y4e{bottom:28.346667pt;}
.y17d{bottom:92.108000pt;}
.y12e{bottom:92.246667pt;}
.y19{bottom:93.018667pt;}
.y4d{bottom:95.922667pt;}
.y260{bottom:99.459737pt;}
.y317{bottom:103.518667pt;}
.ye7{bottom:104.701333pt;}
.y2b0{bottom:105.909333pt;}
.y89{bottom:106.308000pt;}
.ya3{bottom:107.504000pt;}
.y17c{bottom:108.844000pt;}
.y18{bottom:108.920000pt;}
.y12d{bottom:108.984000pt;}
.y2b1{bottom:110.730667pt;}
.y25f{bottom:111.209742pt;}
.y4c{bottom:112.660000pt;}
.y290{bottom:113.666667pt;}
.y1e4{bottom:116.006667pt;}
.y316{bottom:118.861333pt;}
.y2e1{bottom:118.901333pt;}
.ye6{bottom:119.925333pt;}
.y2af{bottom:120.220000pt;}
.y2ae{bottom:122.646667pt;}
.y88{bottom:123.045333pt;}
.ya2{bottom:124.241333pt;}
.y17{bottom:124.820000pt;}
.y17b{bottom:125.581333pt;}
.y12b{bottom:125.721333pt;}
.y230{bottom:128.056000pt;}
.y4b{bottom:129.397333pt;}
.y12c{bottom:130.544000pt;}
.ye5{bottom:130.553333pt;}
.y1e3{bottom:132.744000pt;}
.y315{bottom:134.202667pt;}
.y2e0{bottom:134.244000pt;}
.y2ad{bottom:139.384000pt;}
.y87{bottom:139.782667pt;}
.y17a{bottom:140.326667pt;}
.y16{bottom:140.720000pt;}
.ya0{bottom:140.977333pt;}
.yd1{bottom:141.392847pt;}
.y179{bottom:142.318667pt;}
.y12a{bottom:142.458667pt;}
.y22e{bottom:144.793333pt;}
.ye4{bottom:144.898667pt;}
.ya1{bottom:145.800000pt;}
.y4a{bottom:146.134667pt;}
.y1e2{bottom:149.481333pt;}
.y314{bottom:149.545333pt;}
.y2df{bottom:149.586667pt;}
.y22f{bottom:149.616000pt;}
.y2ac{bottom:153.694667pt;}
.ye3{bottom:155.525333pt;}
.y2aa{bottom:156.121333pt;}
.y86{bottom:156.520000pt;}
.y15{bottom:156.621333pt;}
.y9f{bottom:157.714667pt;}
.y28e{bottom:159.056000pt;}
.y129{bottom:159.196000pt;}
.y2ab{bottom:160.942667pt;}
.y22d{bottom:161.530667pt;}
.y49{bottom:162.870667pt;}
.y28f{bottom:163.878667pt;}
.y313{bottom:164.888000pt;}
.y2de{bottom:164.929333pt;}
.y178{bottom:165.126667pt;}
.y1e1{bottom:166.218667pt;}
.ye2{bottom:169.872000pt;}
.y14{bottom:172.521333pt;}
.y2a9{bottom:172.858667pt;}
.y85{bottom:173.257333pt;}
.y25e{bottom:173.406472pt;}
.y177{bottom:174.240000pt;}
.y9d{bottom:174.452000pt;}
.y28d{bottom:175.793333pt;}
.y128{bottom:175.933333pt;}
.y22c{bottom:178.268000pt;}
.y9e{bottom:179.274667pt;}
.y48{bottom:179.608000pt;}
.y312{bottom:180.230667pt;}
.y2dd{bottom:180.270667pt;}
.ye1{bottom:180.498667pt;}
.y1e0{bottom:182.956000pt;}
.y13{bottom:188.421333pt;}
.y2a8{bottom:189.596000pt;}
.y84{bottom:189.994667pt;}
.ycf{bottom:190.383991pt;}
.y9c{bottom:191.189333pt;}
.y28c{bottom:192.530667pt;}
.y127{bottom:192.670667pt;}
.ye0{bottom:194.845333pt;}
.y22b{bottom:195.005333pt;}
.y311{bottom:195.573333pt;}
.y2dc{bottom:195.613333pt;}
.y47{bottom:196.345333pt;}
.y176{bottom:198.568000pt;}
.y1df{bottom:199.693333pt;}
.y12{bottom:204.322667pt;}
.y2a7{bottom:204.340000pt;}
.ydf{bottom:205.472000pt;}
.y2a6{bottom:206.333333pt;}
.y83{bottom:206.732000pt;}
.y28b{bottom:206.841333pt;}
.y119{bottom:207.897129pt;}
.y9b{bottom:207.926667pt;}
.y289{bottom:209.268000pt;}
.y126{bottom:209.408000pt;}
.yce{bottom:210.697392pt;}
.y310{bottom:210.916000pt;}
.y2db{bottom:210.956000pt;}
.ycb{bottom:211.493996pt;}
.y18f{bottom:211.553333pt;}
.y22a{bottom:211.742667pt;}
.y28a{bottom:214.090667pt;}
.y175{bottom:215.305333pt;}
.y1de{bottom:216.430667pt;}
.y46{bottom:217.068000pt;}
.y23a{bottom:219.210933pt;}
.yde{bottom:219.817333pt;}
.ycd{bottom:219.991105pt;}
.yca{bottom:220.787709pt;}
.y1ba{bottom:220.825876pt;}
.y2a5{bottom:223.070667pt;}
.y82{bottom:223.469333pt;}
.y9a{bottom:224.664000pt;}
.y288{bottom:226.005333pt;}
.y125{bottom:226.145333pt;}
.y30f{bottom:226.258667pt;}
.y2da{bottom:226.298667pt;}
.y150{bottom:226.655699pt;}
.y229{bottom:228.480000pt;}
.y174{bottom:232.042667pt;}
.ycc{bottom:233.135070pt;}
.y1dd{bottom:233.168000pt;}
.yc9{bottom:233.533372pt;}
.ydd{bottom:234.164000pt;}
.y239{bottom:237.954933pt;}
.y2a4{bottom:239.808000pt;}
.y81{bottom:240.206667pt;}
.y99{bottom:241.401333pt;}
.y30e{bottom:241.601333pt;}
.y2d9{bottom:241.641333pt;}
.y286{bottom:242.742667pt;}
.y227{bottom:245.217333pt;}
.y124{bottom:246.868000pt;}
.y287{bottom:247.565333pt;}
.ydc{bottom:248.510667pt;}
.y10f{bottom:248.776000pt;}
.y173{bottom:248.780000pt;}
.y1dc{bottom:249.905333pt;}
.y228{bottom:250.040000pt;}
.y238{bottom:256.786933pt;}
.y80{bottom:256.944000pt;}
.y98{bottom:258.138667pt;}
.y285{bottom:259.480000pt;}
.y225{bottom:259.528000pt;}
.y2a3{bottom:260.529333pt;}
.y123{bottom:260.814667pt;}
.y2d8{bottom:260.969333pt;}
.y224{bottom:261.954667pt;}
.ydb{bottom:262.856000pt;}
.y172{bottom:265.517333pt;}
.y10e{bottom:265.896000pt;}
.yd0{bottom:266.194134pt;}
.y11{bottom:266.570667pt;}
.y1db{bottom:266.642667pt;}
.y226{bottom:266.777333pt;}
.y152{bottom:268.929125pt;}
.y30d{bottom:272.285333pt;}
.y7f{bottom:273.681333pt;}
.y97{bottom:274.876000pt;}
.y237{bottom:275.530933pt;}
.y284{bottom:276.217333pt;}
.yda{bottom:277.202667pt;}
.y158{bottom:278.597014pt;}
.y222{bottom:278.692000pt;}
.y171{bottom:282.254667pt;}
.y10{bottom:282.470667pt;}
.y10d{bottom:283.016000pt;}
.y1da{bottom:283.380000pt;}
.y223{bottom:283.513333pt;}
.y45{bottom:283.868000pt;}
.y30c{bottom:287.628000pt;}
.y7e{bottom:287.992000pt;}
.y192{bottom:288.533333pt;}
.y157{bottom:289.402329pt;}
.y7c{bottom:290.417333pt;}
.y122{bottom:290.702667pt;}
.y2d7{bottom:290.857333pt;}
.yd9{bottom:291.549333pt;}
.y96{bottom:291.613333pt;}
.y283{bottom:292.954667pt;}
.y236{bottom:294.392267pt;}
.y7d{bottom:295.240000pt;}
.y221{bottom:295.429333pt;}
.y191{bottom:297.093333pt;}
.yf{bottom:298.370667pt;}
.y170{bottom:298.992000pt;}
.y10c{bottom:300.056000pt;}
.y1d9{bottom:300.117333pt;}
.y30b{bottom:302.970667pt;}
.y2a2{bottom:304.729333pt;}
.y7a{bottom:307.154667pt;}
.y121{bottom:307.440000pt;}
.y153{bottom:307.600766pt;}
.y95{bottom:308.350667pt;}
.y7b{bottom:311.977333pt;}
.y220{bottom:312.166667pt;}
.y235{bottom:313.224267pt;}
.y282{bottom:313.677333pt;}
.ye{bottom:314.272000pt;}
.y2d6{bottom:314.448000pt;}
.y16e{bottom:315.729333pt;}
.y1fd{bottom:316.019200pt;}
.y1d8{bottom:316.854667pt;}
.y44{bottom:317.104000pt;}
.y10b{bottom:317.176000pt;}
.yd8{bottom:318.304000pt;}
.y30a{bottom:318.313333pt;}
.y16f{bottom:320.550667pt;}
.y2a1{bottom:321.465333pt;}
.y79{bottom:323.892000pt;}
.y120{bottom:324.177333pt;}
.y156{bottom:324.661786pt;}
.y94{bottom:325.088000pt;}
.y21f{bottom:326.477333pt;}
.ybb{bottom:326.710533pt;}
.y281{bottom:327.625333pt;}
.y18e{bottom:328.714667pt;}
.y21d{bottom:328.904000pt;}
.y2d5{bottom:330.069333pt;}
.y16d{bottom:330.473333pt;}
.y234{bottom:331.968267pt;}
.y16c{bottom:332.466667pt;}
.y1d7{bottom:333.592000pt;}
.y309{bottom:333.656000pt;}
.y21e{bottom:333.725333pt;}
.y10a{bottom:334.296000pt;}
.y43{bottom:334.398667pt;}
.yd7{bottom:335.398667pt;}
.y155{bottom:335.467101pt;}
.y1fc{bottom:336.563200pt;}
.y2a0{bottom:338.202667pt;}
.y151{bottom:339.448013pt;}
.yd{bottom:339.470667pt;}
.y77{bottom:340.629333pt;}
.y11f{bottom:340.914667pt;}
.yba{bottom:341.262533pt;}
.y93{bottom:341.825333pt;}
.y21c{bottom:343.214667pt;}
.y78{bottom:345.452000pt;}
.y21b{bottom:345.641333pt;}
.y308{bottom:348.998667pt;}
.y16b{bottom:349.204000pt;}
.y1d6{bottom:350.329333pt;}
.y109{bottom:351.362667pt;}
.y41{bottom:351.694667pt;}
.y2d4{bottom:353.661333pt;}
.y154{bottom:354.802929pt;}
.yc{bottom:355.370667pt;}
.yb9{bottom:355.746533pt;}
.y42{bottom:356.033333pt;}
.y1fb{bottom:357.107200pt;}
.y76{bottom:357.366667pt;}
.y280{bottom:357.513333pt;}
.y11e{bottom:357.652000pt;}
.y92{bottom:358.562667pt;}
.y18d{bottom:362.189333pt;}
.y219{bottom:362.378667pt;}
.y307{bottom:364.341333pt;}
.y16a{bottom:365.941333pt;}
.y1d5{bottom:367.066667pt;}
.y21a{bottom:367.200000pt;}
.y108{bottom:368.482667pt;}
.y3f{bottom:368.989333pt;}
.y2d3{bottom:369.282667pt;}
.yd6{bottom:369.764000pt;}
.yb8{bottom:370.298533pt;}
.y29f{bottom:371.677333pt;}
.y40{bottom:373.329333pt;}
.y75{bottom:374.104000pt;}
.y27f{bottom:374.250667pt;}
.y11d{bottom:374.389333pt;}
.y91{bottom:375.300000pt;}
.y1fa{bottom:377.555200pt;}
.y217{bottom:379.116000pt;}
.yb{bottom:379.241333pt;}
.y306{bottom:379.684000pt;}
.y169{bottom:382.678667pt;}
.y1d4{bottom:383.804000pt;}
.y218{bottom:383.937333pt;}
.y3e{bottom:383.953333pt;}
.yb7{bottom:384.782533pt;}
.y2d2{bottom:384.904000pt;}
.y233{bottom:385.472267pt;}
.y107{bottom:385.522667pt;}
.y3d{bottom:386.284000pt;}
.yd4{bottom:386.860000pt;}
.y29e{bottom:388.414667pt;}
.y74{bottom:390.841333pt;}
.y27e{bottom:390.988000pt;}
.yd5{bottom:391.198667pt;}
.y159{bottom:391.768503pt;}
.y232{bottom:394.888267pt;}
.y305{bottom:395.025333pt;}
.ya{bottom:395.141333pt;}
.y216{bottom:395.853333pt;}
.y90{bottom:396.022667pt;}
.y1f9{bottom:398.099200pt;}
.yb6{bottom:399.334533pt;}
.y167{bottom:399.416000pt;}
.y2d1{bottom:400.525333pt;}
.y1d3{bottom:400.541333pt;}
.y106{bottom:402.642667pt;}
.y3c{bottom:403.580000pt;}
.yd3{bottom:403.956000pt;}
.y11c{bottom:404.225333pt;}
.y168{bottom:404.237333pt;}
.y73{bottom:407.578667pt;}
.y27c{bottom:407.724000pt;}
.y8f{bottom:409.970667pt;}
.y304{bottom:410.368000pt;}
.y9{bottom:411.042667pt;}
.y27d{bottom:412.546667pt;}
.y214{bottom:412.590667pt;}
.yb5{bottom:413.886533pt;}
.y2d0{bottom:416.146667pt;}
.y165{bottom:416.153333pt;}
.y1d2{bottom:417.278667pt;}
.y215{bottom:417.412000pt;}
.y1f8{bottom:418.547200pt;}
.y105{bottom:419.762667pt;}
.y3b{bottom:420.874667pt;}
.y166{bottom:420.974667pt;}
.yd2{bottom:421.050667pt;}
.y11a{bottom:421.321333pt;}
.y29d{bottom:421.889333pt;}
.y72{bottom:424.316000pt;}
.y27b{bottom:424.461333pt;}
.y11b{bottom:425.661333pt;}
.y303{bottom:425.710667pt;}
.y213{bottom:426.901333pt;}
.y8{bottom:426.942667pt;}
.y8e{bottom:427.902667pt;}
.yb4{bottom:428.370533pt;}
.y212{bottom:429.328000pt;}
.y164{bottom:432.890667pt;}
.y1d1{bottom:434.016000pt;}
.y13c{bottom:434.272000pt;}
.y104{bottom:436.802667pt;}
.y3a{bottom:438.169333pt;}
.y1f7{bottom:439.091200pt;}
.y2cf{bottom:439.738667pt;}
.ya9{bottom:440.988000pt;}
.y71{bottom:441.053333pt;}
.y27a{bottom:441.198667pt;}
.yef{bottom:441.258667pt;}
.y7{bottom:442.842667pt;}
.yb3{bottom:442.922533pt;}
.y29c{bottom:445.876000pt;}
.y210{bottom:446.065333pt;}
.y162{bottom:449.628000pt;}
.y1d0{bottom:450.753333pt;}
.y211{bottom:450.886667pt;}
.y13b{bottom:451.392000pt;}
.y103{bottom:453.922667pt;}
.y163{bottom:454.449333pt;}
.y2ce{bottom:455.360000pt;}
.y29b{bottom:455.364000pt;}
.y39{bottom:455.465333pt;}
.y302{bottom:456.396000pt;}
.yb2{bottom:457.474533pt;}
.y70{bottom:457.790667pt;}
.y279{bottom:457.936000pt;}
.y6{bottom:458.744000pt;}
.y1f6{bottom:459.635200pt;}
.y161{bottom:466.364000pt;}
.y1cf{bottom:467.490667pt;}
.y13a{bottom:468.432000pt;}
.y102{bottom:470.962667pt;}
.y2cd{bottom:470.981333pt;}
.y301{bottom:471.738667pt;}
.yb1{bottom:471.958533pt;}
.y38{bottom:472.760000pt;}
.y6f{bottom:474.528000pt;}
.y5{bottom:474.644000pt;}
.y278{bottom:474.673333pt;}
.y20f{bottom:475.901333pt;}
.y1f5{bottom:480.083200pt;}
.y1ce{bottom:484.228000pt;}
.y139{bottom:485.552000pt;}
.yb0{bottom:486.510533pt;}
.y2cc{bottom:486.602667pt;}
.y300{bottom:487.081333pt;}
.y101{bottom:488.082667pt;}
.y37{bottom:490.056000pt;}
.y4{bottom:490.544000pt;}
.y6e{bottom:491.265333pt;}
.y277{bottom:491.410667pt;}
.y20e{bottom:492.997333pt;}
.y160{bottom:494.550667pt;}
.y29a{bottom:496.086667pt;}
.y1f4{bottom:500.627200pt;}
.y1cd{bottom:500.965333pt;}
.yaf{bottom:500.994533pt;}
.y2cb{bottom:502.224000pt;}
.y2ff{bottom:502.424000pt;}
.y138{bottom:502.672000pt;}
.y100{bottom:505.202667pt;}
.y3{bottom:506.445333pt;}
.y36{bottom:507.350667pt;}
.y6d{bottom:508.002667pt;}
.y276{bottom:508.148000pt;}
.y15e{bottom:511.646667pt;}
.y299{bottom:512.824000pt;}
.y1e5{bottom:512.934667pt;}
.yae{bottom:515.569200pt;}
.y15f{bottom:515.986667pt;}
.y1cc{bottom:517.702667pt;}
.y2fe{bottom:517.766667pt;}
.y2ca{bottom:517.846667pt;}
.y137{bottom:519.712000pt;}
.y1f3{bottom:521.075200pt;}
.yff{bottom:522.242667pt;}
.y2{bottom:522.345333pt;}
.y18b{bottom:522.748000pt;}
.y35{bottom:524.645333pt;}
.y6c{bottom:524.740000pt;}
.y275{bottom:524.885333pt;}
.y15c{bottom:528.742667pt;}
.y18c{bottom:529.561333pt;}
.yad{bottom:530.121200pt;}
.y15d{bottom:533.082667pt;}
.y2fd{bottom:533.108000pt;}
.y2c9{bottom:533.468000pt;}
.y1cb{bottom:534.440000pt;}
.y136{bottom:536.832000pt;}
.y1{bottom:538.245333pt;}
.yfe{bottom:539.362667pt;}
.y34{bottom:540.148000pt;}
.y6b{bottom:541.477333pt;}
.y1f2{bottom:541.619200pt;}
.y274{bottom:541.622667pt;}
.y33{bottom:541.941333pt;}
.yac{bottom:544.605200pt;}
.y15b{bottom:545.838667pt;}
.y2fc{bottom:548.450667pt;}
.y2c8{bottom:549.089333pt;}
.y1ca{bottom:551.176000pt;}
.y135{bottom:553.872000pt;}
.y18a{bottom:556.221333pt;}
.yfd{bottom:556.402667pt;}
.y32{bottom:557.442667pt;}
.y6a{bottom:558.214667pt;}
.y273{bottom:558.360000pt;}
.y31{bottom:559.236000pt;}
.y1f1{bottom:562.163200pt;}
.y15a{bottom:562.934667pt;}
.y2fb{bottom:563.793333pt;}
.y2c7{bottom:564.710667pt;}
.y1c9{bottom:567.913333pt;}
.y134{bottom:571.018667pt;}
.y298{bottom:572.525333pt;}
.yfc{bottom:573.522667pt;}
.y69{bottom:574.952000pt;}
.y272{bottom:575.097333pt;}
.y30{bottom:576.530667pt;}
.y2fa{bottom:579.136000pt;}
.y1f0{bottom:582.611200pt;}
.y1c8{bottom:584.650667pt;}
.y12f{bottom:585.528000pt;}
.yab{bottom:585.949200pt;}
.y14f{bottom:587.266667pt;}
.y2c6{bottom:588.301333pt;}
.y297{bottom:589.262667pt;}
.y189{bottom:589.696000pt;}
.y31a{bottom:590.426667pt;}
.y68{bottom:591.689333pt;}
.y271{bottom:591.834667pt;}
.y133{bottom:592.058667pt;}
.yaa{bottom:593.225200pt;}
.y2f{bottom:593.826667pt;}
.y2f9{bottom:594.478667pt;}
.y1c6{bottom:601.388000pt;}
.y1ef{bottom:603.155200pt;}
.y2c5{bottom:604.341333pt;}
.y319{bottom:605.769333pt;}
.y1c7{bottom:606.210667pt;}
.y188{bottom:606.433333pt;}
.y67{bottom:608.426667pt;}
.y270{bottom:608.572000pt;}
.y132{bottom:609.178667pt;}
.yfb{bottom:609.602667pt;}
.y2f8{bottom:609.821333pt;}
.y2e{bottom:611.121333pt;}
.y1c5{bottom:618.125333pt;}
.y2c4{bottom:620.381333pt;}
.y318{bottom:621.112000pt;}
.y187{bottom:623.170667pt;}
.y1ee{bottom:623.699200pt;}
.y66{bottom:625.164000pt;}
.y26f{bottom:625.309333pt;}
.y1c3{bottom:634.862667pt;}
.y2c3{bottom:636.421333pt;}
.y1c4{bottom:639.685333pt;}
.y2f7{bottom:640.506667pt;}
.y65{bottom:641.901333pt;}
.y26e{bottom:642.046667pt;}
.y1ed{bottom:644.147200pt;}
.y2d{bottom:645.420000pt;}
.y1c2{bottom:651.600000pt;}
.y2c2{bottom:652.461333pt;}
.y2f6{bottom:655.848000pt;}
.y186{bottom:656.645333pt;}
.y131{bottom:657.818667pt;}
.y64{bottom:658.638667pt;}
.y26c{bottom:658.784000pt;}
.y26d{bottom:663.605333pt;}
.y2c{bottom:663.624000pt;}
.y1ec{bottom:664.691200pt;}
.y130{bottom:666.378667pt;}
.y1c0{bottom:668.337333pt;}
.y2c0{bottom:668.501333pt;}
.y2f5{bottom:671.190667pt;}
.y2c1{bottom:672.841333pt;}
.y1c1{bottom:673.160000pt;}
.y63{bottom:675.376000pt;}
.y26b{bottom:675.521333pt;}
.y2b{bottom:677.969333pt;}
.y2bf{bottom:684.541333pt;}
.y1eb{bottom:685.139200pt;}
.y2f4{bottom:686.533333pt;}
.y296{bottom:689.686667pt;}
.y185{bottom:690.120000pt;}
.y62{bottom:692.113333pt;}
.y26a{bottom:692.258667pt;}
.y2a{bottom:692.316000pt;}
.y184{bottom:696.934667pt;}
.y1bf{bottom:698.173333pt;}
.y2be{bottom:700.581333pt;}
.y2f3{bottom:701.876000pt;}
.y29{bottom:702.805333pt;}
.y1ea{bottom:705.715200pt;}
.y61{bottom:708.850667pt;}
.y1bd{bottom:715.269333pt;}
.y2bd{bottom:716.621333pt;}
.y2f2{bottom:717.218667pt;}
.y1be{bottom:719.609333pt;}
.y269{bottom:720.933333pt;}
.y28{bottom:721.008000pt;}
.y182{bottom:723.594667pt;}
.y60{bottom:725.588000pt;}
.y1e9{bottom:726.259200pt;}
.y183{bottom:730.409333pt;}
.y27{bottom:731.497333pt;}
.y1bb{bottom:732.365333pt;}
.y2f1{bottom:732.561333pt;}
.y2bc{bottom:732.661333pt;}
.y268{bottom:735.698667pt;}
.y1bc{bottom:736.705333pt;}
.y266{bottom:738.029333pt;}
.y5f{bottom:742.324000pt;}
.y267{bottom:742.369333pt;}
.y26{bottom:745.844000pt;}
.y1e8{bottom:746.707200pt;}
.y2f0{bottom:747.904000pt;}
.y2bb{bottom:748.701333pt;}
.y190{bottom:752.302667pt;}
.y264{bottom:755.125333pt;}
.y181{bottom:757.069333pt;}
.y5e{bottom:759.061333pt;}
.y265{bottom:759.465333pt;}
.y2ef{bottom:763.246667pt;}
.yee{bottom:763.884000pt;}
.y25{bottom:764.046667pt;}
.y2ba{bottom:764.741333pt;}
.y263{bottom:772.221333pt;}
.y24{bottom:774.536000pt;}
.y5d{bottom:775.798667pt;}
.y2b9{bottom:778.449333pt;}
.y2ee{bottom:778.589333pt;}
.y180{bottom:780.621333pt;}
.y2b8{bottom:780.780000pt;}
.y23{bottom:788.882667pt;}
.y261{bottom:789.317333pt;}
.y17f{bottom:790.544000pt;}
.y5c{bottom:792.536000pt;}
.y262{bottom:793.657333pt;}
.y2ed{bottom:793.930667pt;}
.y2b7{bottom:794.489333pt;}
.y2b6{bottom:796.820000pt;}
.y8d{bottom:797.358667pt;}
.yf1{bottom:801.469333pt;}
.y1e7{bottom:805.075200pt;}
.y22{bottom:807.086667pt;}
.y5b{bottom:809.273333pt;}
.yf0{bottom:810.029333pt;}
.y231{bottom:811.910667pt;}
.y25d{bottom:812.468266pt;}
.y2b5{bottom:812.860000pt;}
.ya8{bottom:814.096000pt;}
.y1e6{bottom:815.347200pt;}
.ya7{bottom:823.584000pt;}
.y2ec{bottom:824.616000pt;}
.y5a{bottom:826.010667pt;}
.y2b4{bottom:828.900000pt;}
.y295{bottom:830.833333pt;}
.y2eb{bottom:839.958667pt;}
.yed{bottom:840.756000pt;}
.y59{bottom:842.748000pt;}
.y2b3{bottom:844.940000pt;}
.y21{bottom:846.798667pt;}
.ya6{bottom:847.570667pt;}
.y2ea{bottom:855.301333pt;}
.ya5{bottom:857.058667pt;}
.y58{bottom:859.485333pt;}
.y2b2{bottom:860.980000pt;}
.y20{bottom:863.536000pt;}
.ya4{bottom:864.308000pt;}
.y2e9{bottom:870.644000pt;}
.y57{bottom:876.222667pt;}
.y2e8{bottom:885.986667pt;}
.y17e{bottom:890.968000pt;}
.y56{bottom:892.960000pt;}
.y1f{bottom:896.213333pt;}
.yec{bottom:897.782667pt;}
.y2e7{bottom:901.329333pt;}
.y294{bottom:907.270667pt;}
.yeb{bottom:907.705333pt;}
.y55{bottom:909.697333pt;}
.y2e6{bottom:916.670667pt;}
.y1e{bottom:921.320000pt;}
.y293{bottom:924.008000pt;}
.yea{bottom:924.442667pt;}
.y54{bottom:926.434667pt;}
.y2e5{bottom:932.013333pt;}
.ye9{bottom:941.180000pt;}
.y53{bottom:943.172000pt;}
.y1d{bottom:946.425333pt;}
.y2e4{bottom:947.356000pt;}
.y8c{bottom:947.993333pt;}
.y52{bottom:959.909333pt;}
.y2e3{bottom:962.698667pt;}
.y8b{bottom:964.730667pt;}
.y1c{bottom:971.530667pt;}
.y292{bottom:974.220000pt;}
.ye8{bottom:974.654667pt;}
.y51{bottom:976.646667pt;}
.y2e2{bottom:978.041333pt;}
.y291{bottom:981.468000pt;}
.y50{bottom:993.384000pt;}
.y8a{bottom:998.205333pt;}
.y1a{bottom:1010.186667pt;}
.y4f{bottom:1046.810667pt;}
.yf9{bottom:1060.861333pt;}
.yf8{bottom:1097.501333pt;}
.yf6{bottom:1134.141333pt;}
.yf2{bottom:1170.808000pt;}
.h36{height:-499.709333pt;}
.h39{height:-463.042667pt;}
.h3a{height:-426.402667pt;}
.h3b{height:-389.762667pt;}
.h25{height:-187.278800pt;}
.h24{height:-171.434800pt;}
.h23{height:-155.590800pt;}
.h22{height:-139.746800pt;}
.h21{height:-123.812133pt;}
.h20{height:-107.968133pt;}
.hd{height:19.029065pt;}
.h14{height:20.660233pt;}
.h3c{height:21.645938pt;}
.h29{height:22.126764pt;}
.h28{height:22.514953pt;}
.h9{height:23.209028pt;}
.h2a{height:23.534046pt;}
.h27{height:24.455897pt;}
.hc{height:24.466203pt;}
.h4b{height:26.248130pt;}
.h1b{height:26.443102pt;}
.h47{height:26.604534pt;}
.h1a{height:26.637406pt;}
.h2{height:27.076941pt;}
.h46{height:27.158795pt;}
.h17{height:27.184641pt;}
.h3{height:27.262909pt;}
.h13{height:29.397999pt;}
.h4c{height:29.599908pt;}
.h48{height:29.664633pt;}
.h1f{height:29.823047pt;}
.h1e{height:30.042188pt;}
.h2f{height:30.732706pt;}
.ha{height:30.945242pt;}
.h35{height:31.109531pt;}
.h12{height:31.157778pt;}
.h34{height:31.338125pt;}
.h45{height:31.592884pt;}
.h2b{height:32.318472pt;}
.h1c{height:33.202992pt;}
.h1d{height:33.446969pt;}
.h58{height:34.220484pt;}
.h57{height:34.471938pt;}
.hb{height:34.813542pt;}
.h60{height:35.052646pt;}
.h42{height:35.085938pt;}
.h3d{height:35.343750pt;}
.h40{height:36.389065pt;}
.h16{height:37.087439pt;}
.h52{height:37.331437pt;}
.h51{height:37.605750pt;}
.h5f{height:38.136125pt;}
.h10{height:38.415786pt;}
.h2c{height:38.478959pt;}
.h5b{height:38.594531pt;}
.h2d{height:38.638362pt;}
.h2e{height:38.643695pt;}
.h11{height:38.681455pt;}
.h5a{height:38.878125pt;}
.h6{height:38.947124pt;}
.h38{height:39.062344pt;}
.h37{height:39.349375pt;}
.h32{height:39.945566pt;}
.h55{height:42.412500pt;}
.h59{height:42.968578pt;}
.h5d{height:43.083391pt;}
.h5c{height:43.284313pt;}
.he{height:44.431607pt;}
.hf{height:44.436941pt;}
.h4{height:45.272024pt;}
.h3f{height:45.902329pt;}
.h44{height:46.144738pt;}
.h53{height:46.874812pt;}
.h54{height:47.219250pt;}
.h4f{height:47.607760pt;}
.h8{height:48.481423pt;}
.h15{height:48.683332pt;}
.h18{height:48.688666pt;}
.h30{height:59.891695pt;}
.h31{height:59.897028pt;}
.h7{height:69.148877pt;}
.h49{height:77.069355pt;}
.h5{height:77.447343pt;}
.h4a{height:113.522688pt;}
.h5e{height:194.198134pt;}
.h56{height:194.755733pt;}
.h3e{height:229.099752pt;}
.h33{height:229.840000pt;}
.h4e{height:253.232747pt;}
.h4d{height:254.365333pt;}
.h50{height:292.064000pt;}
.h26{height:307.642102pt;}
.h19{height:312.701400pt;}
.h43{height:412.275191pt;}
.h41{height:421.140000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w11{width:-40.070667pt;}
.w9{width:-0.108800pt;}
.w10{width:45.049333pt;}
.wc{width:63.616000pt;}
.w8{width:72.243200pt;}
.w7{width:88.218667pt;}
.w6{width:88.400000pt;}
.wf{width:103.786667pt;}
.we{width:104.000000pt;}
.w5{width:104.470667pt;}
.wd{width:122.906667pt;}
.w2{width:153.222406pt;}
.w4{width:157.116267pt;}
.w17{width:351.484800pt;}
.w12{width:436.933333pt;}
.wb{width:439.358667pt;}
.w16{width:507.883393pt;}
.wa{width:508.257938pt;}
.w15{width:510.133333pt;}
.w3{width:510.448800pt;}
.w14{width:575.253333pt;}
.w19{width:577.147740pt;}
.w13{width:579.505867pt;}
.w18{width:579.642213pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x108{left:-208.116800pt;}
.xfc{left:-177.636000pt;}
.xb8{left:-172.730667pt;}
.x116{left:-91.596853pt;}
.xcb{left:-59.912800pt;}
.x91{left:-43.778400pt;}
.xfd{left:-3.769333pt;}
.x0{left:0.000000pt;}
.x98{left:1.904000pt;}
.x97{left:4.284000pt;}
.xc1{left:5.583293pt;}
.x9a{left:7.412000pt;}
.x95{left:8.976000pt;}
.x9e{left:17.476000pt;}
.xfe{left:24.550667pt;}
.xa6{left:26.269962pt;}
.xa0{left:29.104000pt;}
.x9f{left:31.302667pt;}
.x9d{left:33.750667pt;}
.x9c{left:37.060000pt;}
.x11a{left:40.671805pt;}
.xbb{left:45.280000pt;}
.x9b{left:46.602667pt;}
.x1{left:47.621333pt;}
.x2{left:53.285701pt;}
.xb9{left:54.826667pt;}
.xa9{left:55.781333pt;}
.xa1{left:66.924618pt;}
.xd0{left:70.392430pt;}
.xd1{left:71.720588pt;}
.x137{left:75.914667pt;}
.x11c{left:92.616667pt;}
.xa7{left:95.622021pt;}
.x117{left:99.656480pt;}
.x92{left:104.008267pt;}
.xca{left:106.908800pt;}
.xcf{left:107.862667pt;}
.x119{left:109.333727pt;}
.xcc{left:113.953867pt;}
.x11b{left:125.258753pt;}
.xa5{left:129.368042pt;}
.x118{left:130.808480pt;}
.xcd{left:142.273867pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.xc0{left:222.994667pt;}
.x79{left:225.865333pt;}
.x48{left:234.842667pt;}
.xa2{left:238.444748pt;}
.x4{left:239.605333pt;}
.x7a{left:243.818667pt;}
.xa4{left:245.087666pt;}
.x1e{left:250.204000pt;}
.x49{left:252.173333pt;}
.xa3{left:255.184901pt;}
.x75{left:258.248000pt;}
.x7b{left:261.320000pt;}
.x53{left:262.941333pt;}
.x7c{left:267.032000pt;}
.x133{left:269.118667pt;}
.xf4{left:272.002667pt;}
.x76{left:276.042667pt;}
.xe6{left:279.221333pt;}
.x4a{left:280.658667pt;}
.xf5{left:281.586667pt;}
.x5f{left:284.586667pt;}
.xaf{left:286.054667pt;}
.xd2{left:287.831054pt;}
.xff{left:289.085333pt;}
.x131{left:290.302667pt;}
.xb0{left:292.104000pt;}
.x106{left:293.141333pt;}
.xd9{left:294.489333pt;}
.x69{left:295.586667pt;}
.x23{left:298.601333pt;}
.x8d{left:299.501333pt;}
.x132{left:300.489333pt;}
.x39{left:301.656000pt;}
.xdd{left:303.808000pt;}
.x24{left:305.242667pt;}
.x8e{left:306.157333pt;}
.x6a{left:307.288000pt;}
.xda{left:309.306667pt;}
.x8{left:312.570667pt;}
.x11e{left:313.870667pt;}
.x3a{left:314.940000pt;}
.x14{left:316.968000pt;}
.x9{left:318.405333pt;}
.xde{left:319.578667pt;}
.x15{left:322.593333pt;}
.x11f{left:323.973333pt;}
.x11d{left:325.845333pt;}
.x4f{left:327.496000pt;}
.xc6{left:328.965333pt;}
.x7d{left:330.574667pt;}
.x3b{left:331.566667pt;}
.xdf{left:333.253333pt;}
.x122{left:335.525333pt;}
.x3c{left:338.256000pt;}
.x54{left:340.525333pt;}
.xc7{left:342.248000pt;}
.x107{left:343.778667pt;}
.x50{left:346.377333pt;}
.x7e{left:347.462667pt;}
.x109{left:349.611200pt;}
.x3d{left:351.538667pt;}
.x67{left:353.465333pt;}
.x45{left:354.426667pt;}
.xa{left:356.588000pt;}
.xd3{left:358.602962pt;}
.x57{left:362.332000pt;}
.x12f{left:363.744000pt;}
.xb{left:365.022667pt;}
.x68{left:366.749333pt;}
.x58{left:368.381333pt;}
.xdb{left:370.001333pt;}
.x16{left:376.714667pt;}
.x94{left:378.974933pt;}
.x8f{left:380.748000pt;}
.xe0{left:382.176000pt;}
.xdc{left:384.016000pt;}
.x61{left:385.030667pt;}
.x17{left:388.548000pt;}
.xf2{left:389.468000pt;}
.x115{left:390.752000pt;}
.xfa{left:392.305333pt;}
.x123{left:394.373333pt;}
.xe1{left:396.190667pt;}
.x7f{left:398.764000pt;}
.x113{left:402.410667pt;}
.x18{left:404.230667pt;}
.xec{left:406.712000pt;}
.xba{left:408.381333pt;}
.x80{left:411.669333pt;}
.xed{left:412.761333pt;}
.x62{left:413.770667pt;}
.xe4{left:417.558667pt;}
.x114{left:419.744000pt;}
.xee{left:421.417333pt;}
.xb6{left:422.901333pt;}
.x12d{left:426.826667pt;}
.x63{left:427.785333pt;}
.x19{left:428.768000pt;}
.x100{left:431.073333pt;}
.x37{left:432.573333pt;}
.x81{left:434.884000pt;}
.x101{left:436.697333pt;}
.xbf{left:438.069333pt;}
.x29{left:439.108000pt;}
.xe5{left:440.326667pt;}
.x1a{left:441.729333pt;}
.x38{left:445.856000pt;}
.xc8{left:447.158667pt;}
.x129{left:448.184000pt;}
.x130{left:449.692000pt;}
.xf6{left:450.581333pt;}
.x2a{left:452.390667pt;}
.xe{left:455.292000pt;}
.xc9{left:456.870667pt;}
.x25{left:459.230667pt;}
.xf7{left:460.165333pt;}
.xe7{left:461.630667pt;}
.x10f{left:463.316000pt;}
.x26{left:465.873333pt;}
.x60{left:469.413333pt;}
.xd4{left:470.358068pt;}
.x27{left:472.434667pt;}
.x124{left:475.496000pt;}
.xb1{left:476.556000pt;}
.xab{left:477.985333pt;}
.xf{left:478.980000pt;}
.x82{left:480.473333pt;}
.x96{left:483.445600pt;}
.x28{left:485.718667pt;}
.x83{left:487.128000pt;}
.xc{left:490.536000pt;}
.x103{left:492.738667pt;}
.x12a{left:494.441333pt;}
.xac{left:495.824000pt;}
.xd{left:500.369333pt;}
.x46{left:501.712000pt;}
.x84{left:504.016000pt;}
.x2f{left:506.689333pt;}
.x93{left:508.653600pt;}
.x85{left:509.728000pt;}
.xbc{left:512.381333pt;}
.x47{left:514.996000pt;}
.x12c{left:518.097333pt;}
.x30{left:519.973333pt;}
.x105{left:521.149333pt;}
.x31{left:523.328000pt;}
.xfb{left:524.630667pt;}
.x35{left:525.750667pt;}
.x12b{left:526.813333pt;}
.x42{left:530.610667pt;}
.x6e{left:534.974667pt;}
.x32{left:536.610667pt;}
.x36{left:539.034667pt;}
.x33{left:539.965333pt;}
.xef{left:542.665333pt;}
.x43{left:543.894667pt;}
.x6f{left:545.089333pt;}
.x44{left:547.281333pt;}
.x77{left:549.520000pt;}
.x125{left:550.894667pt;}
.xb2{left:551.945333pt;}
.x34{left:553.248000pt;}
.x86{left:555.817333pt;}
.xb3{left:557.996000pt;}
.xf9{left:559.340000pt;}
.xf0{left:560.305333pt;}
.x1f{left:561.374667pt;}
.x78{left:562.754667pt;}
.x121{left:564.694667pt;}
.x87{left:566.742667pt;}
.x20{left:568.016000pt;}
.x10{left:572.021333pt;}
.x4b{left:573.472000pt;}
.x10b{left:575.593333pt;}
.xce{left:577.047200pt;}
.x4c{left:579.522667pt;}
.xc2{left:581.465333pt;}
.x59{left:582.940000pt;}
.xe2{left:585.308000pt;}
.x90{left:586.606667pt;}
.x11{left:588.734667pt;}
.xf1{left:590.258667pt;}
.x10c{left:592.962667pt;}
.x134{left:594.661333pt;}
.xc3{left:596.349333pt;}
.x51{left:598.792000pt;}
.x5a{left:600.277333pt;}
.xc4{left:601.974667pt;}
.x120{left:603.284000pt;}
.xea{left:604.354667pt;}
.x4d{left:606.854667pt;}
.x52{left:609.369333pt;}
.x56{left:612.674667pt;}
.xeb{left:613.964000pt;}
.xb4{left:615.242667pt;}
.xbd{left:616.168000pt;}
.xa8{left:617.184000pt;}
.x135{left:618.348000pt;}
.x70{left:619.434667pt;}
.xb5{left:621.293333pt;}
.x4e{left:624.504000pt;}
.x12{left:626.237333pt;}
.x88{left:628.745333pt;}
.x71{left:630.361333pt;}
.x110{left:632.536000pt;}
.x5b{left:634.448000pt;}
.x89{left:635.401333pt;}
.x6b{left:637.382667pt;}
.x10a{left:639.294667pt;}
.x126{left:640.930667pt;}
.xb7{left:642.073333pt;}
.x1b{left:644.908000pt;}
.xf8{left:646.105333pt;}
.xc5{left:647.348000pt;}
.x13{left:649.925333pt;}
.x5c{left:651.786667pt;}
.xaa{left:653.334667pt;}
.x6c{left:654.722667pt;}
.xad{left:656.650667pt;}
.x8a{left:658.000000pt;}
.x99{left:660.064267pt;}
.x12e{left:661.713333pt;}
.xe8{left:664.264000pt;}
.xae{left:666.261333pt;}
.x10d{left:667.813333pt;}
.xd7{left:670.098667pt;}
.x2b{left:673.204000pt;}
.x1c{left:675.050667pt;}
.xd8{left:676.149333pt;}
.xe3{left:677.653333pt;}
.x5d{left:679.984000pt;}
.x104{left:681.918667pt;}
.x10e{left:685.182667pt;}
.x2c{left:686.488000pt;}
.x64{left:690.308000pt;}
.xd5{left:691.670667pt;}
.x2d{left:693.262667pt;}
.xf3{left:696.129333pt;}
.x5e{left:697.322667pt;}
.x6d{left:698.706667pt;}
.x3e{left:700.142667pt;}
.xbe{left:701.288000pt;}
.x65{left:703.592000pt;}
.x2e{left:706.545333pt;}
.x111{left:708.778667pt;}
.x3f{left:710.172000pt;}
.x72{left:716.300000pt;}
.xd6{left:717.305333pt;}
.x66{left:720.226667pt;}
.x8b{left:721.441333pt;}
.x112{left:722.452000pt;}
.x40{left:723.454667pt;}
.x41{left:726.842667pt;}
.x55{left:728.020000pt;}
.x127{left:728.981333pt;}
.x102{left:730.106667pt;}
.x8c{left:732.366667pt;}
.x21{left:733.794667pt;}
.x128{left:735.032000pt;}
.x73{left:736.872000pt;}
.x6{left:738.321333pt;}
.xe9{left:739.424000pt;}
.x22{left:740.436000pt;}
.x136{left:741.409333pt;}
.x74{left:742.584000pt;}
.x7{left:743.784000pt;}
.x1d{left:744.770667pt;}
}




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