
    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_5e8380bfdf18b965fe2e01f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.710000;font-style:normal;font-weight: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_7124ba8775d06a6a62acb401.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9c7bf2b2195cd6186e6ce44b.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_73a2c9e99ea8260510597e40.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_69306ccccd318ba5f26b7b53.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916000;font-style:normal;font-weight: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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3e716b3fcb842744bccbd6d8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0512a22ae278aef31c0770ed.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.913000;font-style:normal;font-weight: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_e6c044b0eb04f023cb3fe66a.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_97b913181ee0331ffc906dbe.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.200195;font-style:normal;font-weight: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_ea4fd88a878517405d049bca.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.221680;font-style:normal;font-weight: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_665cb1665049d8d9437a38d2.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.221680;font-style:normal;font-weight: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_2c87d70034de48282d0a8740.woff2')format("woff");}.fff{font-family:fff;line-height:1.003906;font-style:normal;font-weight: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_9335f5cf1de20a5c3e24f30f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.057617;font-style:normal;font-weight: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_45727d52143d6026797de19b.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_1efa376ab5a9a620faf40a64.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m4{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);}
.m19{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);}
.mb{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);}
.m29{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m1{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);}
.m1b{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);}
.mc{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);}
.m11{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);}
.m21{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);}
.m1a{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);}
.m5{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);}
.ma{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);}
.m22{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);}
.m3{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);}
.md{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);}
.m23{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);}
.m18{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);}
.m6{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);}
.m28{transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249974,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);}
.m2a{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);}
.m20{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);}
.mf{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);}
.m8{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);}
.m1f{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);}
.m13{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);}
.m24{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);}
.m1e{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);}
.m10{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);}
.m7{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);}
.m17{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);}
.m26{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);}
.m1d{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);}
.m9{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);}
.m14{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);}
.m1c{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);}
.m16{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);}
.m12{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);}
.m25{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);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:31.308000px;}
.v4{vertical-align:32.880000px;}
.ls16{letter-spacing:-0.610063px;}
.ls14{letter-spacing:-0.108000px;}
.ls12{letter-spacing:-0.090000px;}
.lsa{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.000266px;}
.ls10{letter-spacing:0.000435px;}
.ls3{letter-spacing:0.000583px;}
.ls1e{letter-spacing:0.001148px;}
.ls7{letter-spacing:0.001933px;}
.lsc{letter-spacing:0.002220px;}
.ls38{letter-spacing:0.003437px;}
.ls0{letter-spacing:0.004200px;}
.ls1d{letter-spacing:0.004665px;}
.ls37{letter-spacing:0.004800px;}
.ls13{letter-spacing:0.054000px;}
.lsf{letter-spacing:0.132622px;}
.lse{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.191418px;}
.ls15{letter-spacing:0.225016px;}
.ls17{letter-spacing:0.495124px;}
.ls24{letter-spacing:0.497764px;}
.ls23{letter-spacing:0.503764px;}
.ls1b{letter-spacing:0.572693px;}
.ls1a{letter-spacing:0.578693px;}
.ls2a{letter-spacing:0.642088px;}
.ls29{letter-spacing:0.648088px;}
.lsb{letter-spacing:1.275394px;}
.ls4{letter-spacing:1.861130px;}
.ls2{letter-spacing:2.998354px;}
.ls5{letter-spacing:10.461300px;}
.ls2b{letter-spacing:11.951700px;}
.ls9{letter-spacing:11.954850px;}
.ls25{letter-spacing:11.957700px;}
.ls11{letter-spacing:12.373549px;}
.ls3f{letter-spacing:12.534073px;}
.ls3c{letter-spacing:13.091216px;}
.ls33{letter-spacing:13.152441px;}
.ls30{letter-spacing:13.167296px;}
.ls39{letter-spacing:13.189176px;}
.ls35{letter-spacing:13.278746px;}
.ls31{letter-spacing:13.430160px;}
.ls2e{letter-spacing:13.448400px;}
.ls2f{letter-spacing:13.454400px;}
.ls3e{letter-spacing:13.496292px;}
.ls2d{letter-spacing:13.571591px;}
.lsd{letter-spacing:14.047266px;}
.ls27{letter-spacing:14.094088px;}
.ls28{letter-spacing:14.100088px;}
.ls3d{letter-spacing:14.597459px;}
.ls1f{letter-spacing:14.943900px;}
.ls1{letter-spacing:14.944766px;}
.ls21{letter-spacing:14.983148px;}
.ls3a{letter-spacing:15.056282px;}
.ls1c{letter-spacing:15.063451px;}
.ls36{letter-spacing:15.085694px;}
.ls26{letter-spacing:15.123227px;}
.ls3b{letter-spacing:15.150400px;}
.ls34{letter-spacing:15.691576px;}
.ls22{letter-spacing:15.693483px;}
.ls32{letter-spacing:20.168047px;}
.ls19{letter-spacing:22.475626px;}
.ls6{letter-spacing:62.761200px;}
.ls8{letter-spacing:64.321654px;}
.ls20{letter-spacing:951.067148px;}
.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;}
}
.ws78{word-spacing:-60.120000px;}
.wsab{word-spacing:-45.088735px;}
.wsaf{word-spacing:-29.887800px;}
.ws77{word-spacing:-15.030000px;}
.ws1{word-spacing:-14.943900px;}
.ws3{word-spacing:-14.355754px;}
.ws76{word-spacing:-13.554000px;}
.ws23{word-spacing:-13.449600px;}
.ws7b{word-spacing:-12.696391px;}
.ws79{word-spacing:-12.426283px;}
.ws30{word-spacing:-11.955150px;}
.ws7a{word-spacing:-11.591203px;}
.ws7c{word-spacing:-11.199083px;}
.wsb{word-spacing:-10.460700px;}
.wsac{word-spacing:-3.466985px;}
.ws2f{word-spacing:-3.287658px;}
.ws36{word-spacing:-3.227882px;}
.wsbf{word-spacing:-2.689902px;}
.ws54{word-spacing:-2.570351px;}
.wsf1{word-spacing:-2.510575px;}
.ws47{word-spacing:-2.450800px;}
.ws102{word-spacing:-2.420928px;}
.wsa9{word-spacing:-2.331248px;}
.ws1c{word-spacing:-2.313331px;}
.wsfc{word-spacing:-2.259533px;}
.ws103{word-spacing:-2.205734px;}
.ws46{word-spacing:-2.092146px;}
.ws45{word-spacing:-2.032370px;}
.wsa0{word-spacing:-1.912819px;}
.ws8{word-spacing:-1.908367px;}
.ws68{word-spacing:-1.853044px;}
.ws5b{word-spacing:-1.793268px;}
.ws75{word-spacing:-1.673717px;}
.ws3c{word-spacing:-1.613941px;}
.wsc5{word-spacing:-1.494390px;}
.ws66{word-spacing:-1.434614px;}
.ws50{word-spacing:-1.374839px;}
.ws7{word-spacing:-1.322630px;}
.ws63{word-spacing:-1.315063px;}
.ws62{word-spacing:-1.255288px;}
.ws13d{word-spacing:-1.237363px;}
.ws83{word-spacing:-1.195512px;}
.ws13e{word-spacing:-1.183565px;}
.ws71{word-spacing:-1.135736px;}
.ws2c{word-spacing:-1.075961px;}
.ws135{word-spacing:-1.022170px;}
.ws37{word-spacing:-1.016185px;}
.ws67{word-spacing:-0.956410px;}
.ws13f{word-spacing:-0.914573px;}
.ws26{word-spacing:-0.836858px;}
.ws6e{word-spacing:-0.717307px;}
.wse8{word-spacing:-0.657532px;}
.wsfa{word-spacing:-0.645581px;}
.wsc0{word-spacing:-0.597756px;}
.ws130{word-spacing:-0.537984px;}
.wsc1{word-spacing:-0.537980px;}
.ws6d{word-spacing:-0.478205px;}
.ws117{word-spacing:-0.430387px;}
.ws6c{word-spacing:-0.418429px;}
.ws100{word-spacing:-0.376589px;}
.ws3f{word-spacing:-0.358654px;}
.ws101{word-spacing:-0.322790px;}
.ws34{word-spacing:-0.298878px;}
.ws1f{word-spacing:-0.268992px;}
.ws2d{word-spacing:-0.239102px;}
.wsf2{word-spacing:-0.215194px;}
.ws35{word-spacing:-0.179327px;}
.wsf9{word-spacing:-0.161395px;}
.ws2a{word-spacing:-0.119551px;}
.wsff{word-spacing:-0.107597px;}
.ws2{word-spacing:-0.059776px;}
.ws1d{word-spacing:-0.053798px;}
.ws17{word-spacing:-0.047821px;}
.ws114{word-spacing:-0.030144px;}
.ws133{word-spacing:-0.009571px;}
.ws12b{word-spacing:-0.008208px;}
.ws107{word-spacing:-0.007162px;}
.wsbe{word-spacing:-0.005810px;}
.wsbc{word-spacing:-0.003706px;}
.ws132{word-spacing:-0.003696px;}
.wsbd{word-spacing:-0.003596px;}
.ws126{word-spacing:-0.003235px;}
.ws137{word-spacing:-0.002179px;}
.ws5{word-spacing:-0.001483px;}
.ws6{word-spacing:-0.000841px;}
.wsa{word-spacing:-0.000696px;}
.ws0{word-spacing:0.000000px;}
.ws1b{word-spacing:0.053798px;}
.ws29{word-spacing:0.059776px;}
.wsf3{word-spacing:0.107597px;}
.ws25{word-spacing:0.119551px;}
.wsfb{word-spacing:0.161395px;}
.ws28{word-spacing:0.179327px;}
.wsd{word-spacing:0.209214px;}
.ws19{word-spacing:0.215194px;}
.ws32{word-spacing:0.239102px;}
.ws21{word-spacing:0.268992px;}
.wsf{word-spacing:0.292900px;}
.ws27{word-spacing:0.298878px;}
.ws44{word-spacing:0.358654px;}
.ws129{word-spacing:0.376589px;}
.wsec{word-spacing:0.537980px;}
.ws1e{word-spacing:0.591782px;}
.wsee{word-spacing:0.597756px;}
.ws106{word-spacing:0.645581px;}
.wsea{word-spacing:0.657532px;}
.wsd5{word-spacing:0.664157px;}
.wsd1{word-spacing:0.665088px;}
.wsc9{word-spacing:0.665952px;}
.wsc7{word-spacing:0.668045px;}
.wsd8{word-spacing:0.670157px;}
.wscf{word-spacing:0.671088px;}
.wsc6{word-spacing:0.671731px;}
.wscb{word-spacing:0.671952px;}
.ws39{word-spacing:0.717307px;}
.wse4{word-spacing:0.777083px;}
.ws1a{word-spacing:0.806976px;}
.wsa3{word-spacing:0.836858px;}
.wse2{word-spacing:0.896634px;}
.ws3d{word-spacing:0.956410px;}
.ws52{word-spacing:1.016185px;}
.ws5d{word-spacing:1.075961px;}
.ws110{word-spacing:1.075968px;}
.ws139{word-spacing:1.129766px;}
.ws49{word-spacing:1.135736px;}
.ws60{word-spacing:1.195512px;}
.ws11e{word-spacing:1.237363px;}
.ws12e{word-spacing:1.291162px;}
.wse1{word-spacing:1.315063px;}
.ws43{word-spacing:1.374839px;}
.ws136{word-spacing:1.398758px;}
.ws69{word-spacing:1.434614px;}
.ws3b{word-spacing:1.494390px;}
.ws105{word-spacing:1.506355px;}
.ws72{word-spacing:1.554166px;}
.ws3e{word-spacing:1.613941px;}
.ws7f{word-spacing:1.673717px;}
.wsf8{word-spacing:1.721549px;}
.ws85{word-spacing:1.793268px;}
.ws13c{word-spacing:1.829146px;}
.ws41{word-spacing:1.853044px;}
.ws5c{word-spacing:1.912819px;}
.ws121{word-spacing:1.936742px;}
.ws2b{word-spacing:1.972595px;}
.wse{word-spacing:2.008454px;}
.ws5f{word-spacing:2.032370px;}
.ws86{word-spacing:2.092146px;}
.wsdf{word-spacing:2.151922px;}
.wsa2{word-spacing:2.211697px;}
.ws119{word-spacing:2.259533px;}
.ws4a{word-spacing:2.271473px;}
.wsae{word-spacing:2.331248px;}
.ws4c{word-spacing:2.391024px;}
.ws42{word-spacing:2.450800px;}
.ws70{word-spacing:2.510575px;}
.wsa4{word-spacing:2.630126px;}
.ws10a{word-spacing:2.851315px;}
.ws4e{word-spacing:2.869229px;}
.ws18{word-spacing:2.869236px;}
.ws108{word-spacing:2.870553px;}
.ws109{word-spacing:2.905114px;}
.wse3{word-spacing:2.929004px;}
.ws6a{word-spacing:3.048556px;}
.ws104{word-spacing:3.120307px;}
.ws11d{word-spacing:3.218947px;}
.ws10b{word-spacing:3.220406px;}
.ws123{word-spacing:3.222902px;}
.ws12a{word-spacing:3.224986px;}
.ws125{word-spacing:3.225082px;}
.ws12d{word-spacing:3.225446px;}
.ws128{word-spacing:3.225533px;}
.ws122{word-spacing:3.225859px;}
.ws11b{word-spacing:3.226042px;}
.ws120{word-spacing:3.226301px;}
.ws10d{word-spacing:3.226637px;}
.ws11a{word-spacing:3.227021px;}
.wse7{word-spacing:3.227882px;}
.ws9a{word-spacing:3.227904px;}
.ws11c{word-spacing:3.228086px;}
.ws131{word-spacing:3.228490px;}
.ws13b{word-spacing:3.229459px;}
.ws124{word-spacing:3.281702px;}
.ws127{word-spacing:3.335501px;}
.ws84{word-spacing:3.347434px;}
.wsf5{word-spacing:3.443098px;}
.ws4f{word-spacing:3.466985px;}
.ws10c{word-spacing:3.550694px;}
.ws24{word-spacing:3.586536px;}
.wsfd{word-spacing:3.604493px;}
.ws4d{word-spacing:3.646312px;}
.ws61{word-spacing:3.706087px;}
.ws134{word-spacing:3.712090px;}
.ws20{word-spacing:3.819686px;}
.wsde{word-spacing:3.885414px;}
.ws55{word-spacing:4.004965px;}
.ws5e{word-spacing:4.124516px;}
.ws10f{word-spacing:4.142477px;}
.ws112{word-spacing:4.149643px;}
.ws74{word-spacing:4.184292px;}
.wsf7{word-spacing:4.303872px;}
.ws33{word-spacing:4.363619px;}
.ws138{word-spacing:4.411469px;}
.ws2e{word-spacing:4.423394px;}
.ws48{word-spacing:4.602721px;}
.wsf4{word-spacing:4.626662px;}
.ws4b{word-spacing:4.662497px;}
.wsf6{word-spacing:4.680461px;}
.ws73{word-spacing:4.782048px;}
.wsfe{word-spacing:4.949453px;}
.ws40{word-spacing:4.961375px;}
.wsaa{word-spacing:5.021150px;}
.ws7e{word-spacing:5.057050px;}
.ws56{word-spacing:5.140702px;}
.wsed{word-spacing:5.200477px;}
.ws115{word-spacing:5.326042px;}
.ws7d{word-spacing:5.433638px;}
.ws53{word-spacing:5.439580px;}
.ws31{word-spacing:5.618906px;}
.wse6{word-spacing:5.678682px;}
.ws88{word-spacing:5.738458px;}
.ws38{word-spacing:5.798233px;}
.ws87{word-spacing:5.858009px;}
.ws65{word-spacing:5.917784px;}
.ws89{word-spacing:6.037336px;}
.ws15{word-spacing:6.067206px;}
.ws3a{word-spacing:6.097111px;}
.ws16{word-spacing:6.150892px;}
.wsf0{word-spacing:6.156887px;}
.ws13a{word-spacing:6.294413px;}
.ws80{word-spacing:6.336214px;}
.ws113{word-spacing:6.348211px;}
.ws10e{word-spacing:6.402010px;}
.wsa1{word-spacing:6.455765px;}
.ws58{word-spacing:6.515540px;}
.wse0{word-spacing:6.575316px;}
.ws116{word-spacing:6.724800px;}
.wsdd{word-spacing:6.754643px;}
.ws51{word-spacing:6.814418px;}
.ws57{word-spacing:6.933970px;}
.wse9{word-spacing:7.173072px;}
.wsc3{word-spacing:7.292623px;}
.ws12c{word-spacing:7.370381px;}
.ws81{word-spacing:7.412174px;}
.ws5a{word-spacing:7.471950px;}
.ws11f{word-spacing:7.477978px;}
.ws6f{word-spacing:7.531726px;}
.wsef{word-spacing:7.591501px;}
.ws12f{word-spacing:7.639373px;}
.wseb{word-spacing:7.711052px;}
.ws59{word-spacing:7.950155px;}
.wsc2{word-spacing:8.428360px;}
.wsc4{word-spacing:8.488135px;}
.ws82{word-spacing:8.547911px;}
.ws64{word-spacing:8.607686px;}
.ws13{word-spacing:8.661460px;}
.wse5{word-spacing:8.727238px;}
.ws111{word-spacing:8.822938px;}
.ws118{word-spacing:8.930534px;}
.ws22{word-spacing:10.383091px;}
.wsc{word-spacing:10.460700px;}
.ws6b{word-spacing:13.329959px;}
.ws9{word-spacing:15.483541px;}
.ws10{word-spacing:16.142252px;}
.ws11{word-spacing:16.151321px;}
.ws12{word-spacing:17.699504px;}
.ws14{word-spacing:27.448877px;}
.ws4{word-spacing:54.988186px;}
.wsbb{word-spacing:91.443600px;}
.wsb6{word-spacing:96.765600px;}
.wsb9{word-spacing:100.766652px;}
.wsb4{word-spacing:104.805600px;}
.wsb5{word-spacing:104.811600px;}
.wsb2{word-spacing:114.230652px;}
.wsb7{word-spacing:117.703796px;}
.wsb3{word-spacing:121.762548px;}
.wsba{word-spacing:126.411600px;}
.wsb8{word-spacing:139.210996px;}
.wsa8{word-spacing:140.975129px;}
.wsa7{word-spacing:141.022949px;}
.wsb1{word-spacing:143.353433px;}
.wsb0{word-spacing:205.489991px;}
.wsa6{word-spacing:233.572500px;}
.wsa5{word-spacing:252.923153px;}
.ws93{word-spacing:489.565440px;}
.wsad{word-spacing:507.733946px;}
.wsc8{word-spacing:508.079088px;}
.ws91{word-spacing:521.683085px;}
.wsdc{word-spacing:523.223587px;}
.wsdb{word-spacing:534.759101px;}
.ws95{word-spacing:543.202445px;}
.ws9d{word-spacing:549.981043px;}
.ws9e{word-spacing:555.845069px;}
.ws97{word-spacing:585.272794px;}
.ws9f{word-spacing:590.114650px;}
.ws9b{word-spacing:592.320384px;}
.ws8a{word-spacing:595.171699px;}
.ws94{word-spacing:597.969216px;}
.ws9c{word-spacing:600.228749px;}
.ws98{word-spacing:616.906253px;}
.ws8b{word-spacing:624.276634px;}
.ws96{word-spacing:625.998182px;}
.ws90{word-spacing:636.757862px;}
.ws8e{word-spacing:642.783283px;}
.ws99{word-spacing:648.539712px;}
.ws8c{word-spacing:650.422656px;}
.ws92{word-spacing:654.403738px;}
.ws8d{word-spacing:656.232883px;}
.ws8f{word-spacing:680.280768px;}
.wsca{word-spacing:932.822064px;}
.wscc{word-spacing:935.277072px;}
.wsce{word-spacing:963.813821px;}
.wscd{word-spacing:1003.357469px;}
.wsd0{word-spacing:1813.672982px;}
.wsd3{word-spacing:1860.643469px;}
.wsd4{word-spacing:1868.445821px;}
.wsd2{word-spacing:1870.297910px;}
.wsd6{word-spacing:2542.060982px;}
.wsd7{word-spacing:2560.725072px;}
.wsda{word-spacing:2596.821821px;}
.wsd9{word-spacing:2614.579469px;}
._5c{margin-left:-14.948364px;}
._2{margin-left:-7.962163px;}
._b{margin-left:-6.168857px;}
._28{margin-left:-4.949453px;}
._6{margin-left:-3.849538px;}
._4{margin-left:-2.271699px;}
._1{margin-left:-1.063024px;}
._5{width:1.091170px;}
._8{width:2.301354px;}
._1a{width:3.304754px;}
._15{width:4.423394px;}
._1b{width:6.012000px;}
._1c{width:7.875720px;}
._0{width:10.165172px;}
._91{width:11.203786px;}
._7{width:12.216400px;}
._9{width:13.390967px;}
._18{width:14.764573px;}
._c{width:16.287971px;}
._16{width:17.394700px;}
._e{width:18.889090px;}
._12{width:20.455452px;}
._11{width:21.637801px;}
._13{width:23.372260px;}
._8c{width:24.602688px;}
._17{width:25.617858px;}
._8f{width:26.853862px;}
._d{width:28.805040px;}
._8d{width:29.815087px;}
._3a{width:30.819302px;}
._a{width:32.637384px;}
._14{width:34.417809px;}
._21{width:36.044687px;}
._1e{width:37.120648px;}
._39{width:38.434970px;}
._1f{width:41.099739px;}
._20{width:44.639436px;}
._3{width:54.339888px;}
._90{width:61.868160px;}
._7f{width:81.304154px;}
._8e{width:88.767360px;}
._6a{width:90.380448px;}
._6f{width:93.761902px;}
._79{width:97.187821px;}
._76{width:101.913319px;}
._6d{width:103.120458px;}
._69{width:106.657297px;}
._7c{width:110.330499px;}
._7d{width:118.833552px;}
._65{width:120.046993px;}
._77{width:124.189430px;}
._43{width:125.337793px;}
._71{width:128.534301px;}
._67{width:132.712345px;}
._75{width:136.323842px;}
._57{width:140.257820px;}
._78{width:141.637878px;}
._44{width:146.044112px;}
._3c{width:149.343734px;}
._51{width:153.121561px;}
._72{width:154.760317px;}
._74{width:170.728044px;}
._5a{width:181.287895px;}
._41{width:183.057257px;}
._3e{width:185.352646px;}
._3d{width:187.743676px;}
._3f{width:190.612912px;}
._40{width:193.482148px;}
._61{width:195.071134px;}
._60{width:205.531834px;}
._49{width:212.036540px;}
._45{width:217.668110px;}
._7b{width:225.241410px;}
._42{width:231.834269px;}
._4d{width:237.046714px;}
._5f{width:238.120123px;}
._86{width:257.992214px;}
._58{width:264.884303px;}
._46{width:265.930357px;}
._47{width:268.512669px;}
._48{width:276.068324px;}
._50{width:284.867314px;}
._82{width:296.915203px;}
._63{width:309.092764px;}
._62{width:318.842136px;}
._4c{width:324.367130px;}
._59{width:339.813184px;}
._4b{width:341.773828px;}
._85{width:347.274710px;}
._83{width:373.710480px;}
._4e{width:375.391710px;}
._80{width:380.607686px;}
._7e{width:383.656633px;}
._66{width:385.414031px;}
._68{width:386.460101px;}
._3b{width:401.740861px;}
._7a{width:408.804156px;}
._f{width:418.747740px;}
._56{width:432.393865px;}
._4a{width:434.976178px;}
._6b{width:444.454222px;}
._5e{width:453.587954px;}
._52{width:461.277508px;}
._24{width:462.935232px;}
._35{width:468.530266px;}
._27{width:472.834138px;}
._84{width:474.263270px;}
._89{width:478.267776px;}
._6e{width:481.149174px;}
._23{width:487.968077px;}
._64{width:496.590350px;}
._2b{width:502.113411px;}
._32{width:504.336053px;}
._2c{width:510.469206px;}
._81{width:521.586000px;}
._37{width:527.170522px;}
._55{width:531.095584px;}
._33{width:544.039272px;}
._8b{width:545.677171px;}
._34{width:549.658253px;}
._2a{width:551.123754px;}
._36{width:554.081887px;}
._2d{width:566.658547px;}
._29{width:575.511472px;}
._38{width:581.130317px;}
._8a{width:610.921686px;}
._26{width:626.536166px;}
._31{width:632.776781px;}
._22{width:635.209601px;}
._2e{width:636.309517px;}
._4f{width:638.165907px;}
._54{width:641.178605px;}
._30{width:646.226381px;}
._25{width:653.435366px;}
._6c{width:657.435691px;}
._2f{width:659.675981px;}
._73{width:677.016504px;}
._53{width:685.603942px;}
._88{width:689.211302px;}
._70{width:715.888465px;}
._87{width:753.859549px;}
._1d{width:849.090000px;}
._5b{width:2006.204598px;}
._10{width:2030.114598px;}
._19{width:2070.458630px;}
._5d{width:3485.888598px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(12,11,11);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(40,82,46);}
.fc0{color:rgb(14,15,14);}
.fs8{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:41.936104px;}
.fs13{font-size:43.600200px;}
.fse{font-size:44.030659px;}
.fs4{font-size:45.429600px;}
.fs5{font-size:47.236800px;}
.fs9{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fsf{font-size:48.805067px;}
.fs10{font-size:48.911165px;}
.fs11{font-size:49.829400px;}
.fsa{font-size:53.798400px;}
.fsd{font-size:54.000000px;}
.fs14{font-size:56.058000px;}
.fs0{font-size:56.694600px;}
.fs2{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fs1{font-size:60.474240px;}
.fs12{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.yf3{bottom:-688.816500px;}
.y111{bottom:-583.336500px;}
.y110{bottom:-561.106500px;}
.y10f{bottom:-541.846500px;}
.y10e{bottom:-522.676500px;}
.y10d{bottom:-503.386500px;}
.y10c{bottom:-484.216500px;}
.y10b{bottom:-464.956500px;}
.y10a{bottom:-445.696500px;}
.y109{bottom:-426.526500px;}
.y108{bottom:-407.266500px;}
.y107{bottom:-388.006500px;}
.y106{bottom:-368.836500px;}
.y105{bottom:-349.576500px;}
.y104{bottom:-330.406500px;}
.y103{bottom:-311.146500px;}
.y102{bottom:-291.886500px;}
.y101{bottom:-272.716500px;}
.y100{bottom:-253.456500px;}
.yff{bottom:-234.286500px;}
.yfe{bottom:-215.026500px;}
.yfd{bottom:-195.766500px;}
.yfc{bottom:-176.596500px;}
.yfb{bottom:-157.336500px;}
.yfa{bottom:-138.166500px;}
.yf9{bottom:-118.906500px;}
.yf8{bottom:-95.146500px;}
.yf7{bottom:-71.356500px;}
.yf6{bottom:-34.636500px;}
.y13c{bottom:-19.894475px;}
.y13e{bottom:-19.893370px;}
.y125{bottom:-17.804566px;}
.yf5{bottom:-17.266500px;}
.y122{bottom:-12.997002px;}
.y128{bottom:-12.333889px;}
.y0{bottom:0.000000px;}
.y133{bottom:0.928357px;}
.yb{bottom:3.425340px;}
.yf4{bottom:5.143500px;}
.y4{bottom:6.350457px;}
.y13b{bottom:6.365878px;}
.y139{bottom:7.082040px;}
.y124{bottom:8.355215px;}
.y12a{bottom:8.885374px;}
.y121{bottom:13.527491px;}
.y127{bottom:13.925359px;}
.ya{bottom:14.151273px;}
.y3{bottom:20.308195px;}
.y132{bottom:27.214130px;}
.y4d{bottom:31.890000px;}
.y138{bottom:33.341288px;}
.y2{bottom:37.114269px;}
.y120{bottom:40.217763px;}
.y131{bottom:52.147153px;}
.y137{bottom:58.275417px;}
.y11f{bottom:66.742256px;}
.y130{bottom:77.081282px;}
.y136{bottom:83.208440px;}
.y11e{bottom:93.266749px;}
.y15e{bottom:95.413500px;}
.y2e9{bottom:99.073500px;}
.y12f{bottom:102.014306px;}
.y260{bottom:102.399000px;}
.y23{bottom:102.823500px;}
.y31e{bottom:103.557000px;}
.y28f{bottom:106.246500px;}
.yb9{bottom:106.695000px;}
.y83{bottom:107.574000px;}
.y135{bottom:108.163567px;}
.y4c{bottom:108.514500px;}
.ydb{bottom:111.627000px;}
.y2b0{bottom:114.048000px;}
.y15d{bottom:114.243000px;}
.y2e8{bottom:116.334000px;}
.y271{bottom:116.839500px;}
.y11d{bottom:119.658619px;}
.y22{bottom:120.711000px;}
.y31d{bottom:120.817500px;}
.y25f{bottom:124.099500px;}
.y28e{bottom:125.076000px;}
.yb8{bottom:125.524500px;}
.y82{bottom:126.403500px;}
.y1bb{bottom:126.864000px;}
.y12e{bottom:126.969433px;}
.y4b{bottom:127.344000px;}
.y233{bottom:129.490500px;}
.yda{bottom:130.456500px;}
.y15c{bottom:133.072500px;}
.y2e7{bottom:133.594500px;}
.y270{bottom:135.669000px;}
.y232{bottom:137.710500px;}
.y31c{bottom:138.078000px;}
.y21{bottom:138.600000px;}
.y2af{bottom:140.589000px;}
.y1ba{bottom:141.061500px;}
.y28d{bottom:143.905500px;}
.yb7{bottom:144.354000px;}
.y81{bottom:145.233000px;}
.y234{bottom:145.929000px;}
.y4a{bottom:146.173500px;}
.y25e{bottom:147.741000px;}
.yd9{bottom:149.286000px;}
.y2e6{bottom:150.855000px;}
.y12d{bottom:151.902456px;}
.y26f{bottom:154.498500px;}
.y1b9{bottom:155.257500px;}
.y31b{bottom:155.338500px;}
.y15b{bottom:156.384000px;}
.y20{bottom:156.487500px;}
.y2ae{bottom:158.163000px;}
.y28c{bottom:162.735000px;}
.yb6{bottom:163.183500px;}
.y80{bottom:164.062500px;}
.y49{bottom:165.003000px;}
.yd8{bottom:168.115500px;}
.y1b8{bottom:169.455000px;}
.y230{bottom:169.570500px;}
.y25c{bottom:171.381000px;}
.y31a{bottom:172.599000px;}
.y26e{bottom:173.328000px;}
.y1f{bottom:174.375000px;}
.y2ad{bottom:175.737000px;}
.y12c{bottom:176.835480px;}
.y22f{bottom:177.789000px;}
.y25b{bottom:179.601000px;}
.y28b{bottom:181.564500px;}
.yb5{bottom:182.013000px;}
.y7f{bottom:182.892000px;}
.y1b7{bottom:183.651000px;}
.y48{bottom:183.831000px;}
.y181{bottom:183.921000px;}
.y2e5{bottom:185.376000px;}
.y231{bottom:186.009000px;}
.yd7{bottom:186.945000px;}
.y25d{bottom:187.819500px;}
.y319{bottom:189.858000px;}
.y15a{bottom:190.008000px;}
.y26d{bottom:192.157500px;}
.y1e{bottom:192.264000px;}
.y1b6{bottom:197.848500px;}
.y180{bottom:200.359500px;}
.y28a{bottom:200.394000px;}
.yb4{bottom:200.842500px;}
.y7e{bottom:201.721500px;}
.y2ac{bottom:202.278000px;}
.y2e4{bottom:202.636500px;}
.y47{bottom:202.660500px;}
.yd6{bottom:205.774500px;}
.y318{bottom:207.118500px;}
.y159{bottom:208.837500px;}
.y22d{bottom:209.649000px;}
.y1d{bottom:210.151500px;}
.y26c{bottom:210.987000px;}
.y259{bottom:211.461000px;}
.y1b5{bottom:212.044500px;}
.y17f{bottom:216.798000px;}
.y17c{bottom:217.396500px;}
.y22c{bottom:217.869000px;}
.y289{bottom:219.223500px;}
.yb3{bottom:219.672000px;}
.y258{bottom:219.679500px;}
.y2ab{bottom:219.852000px;}
.y2e3{bottom:219.895500px;}
.y7d{bottom:220.551000px;}
.y46{bottom:221.490000px;}
.y317{bottom:224.379000px;}
.yd5{bottom:224.604000px;}
.y22e{bottom:226.087500px;}
.y1b4{bottom:226.242000px;}
.y158{bottom:227.667000px;}
.y25a{bottom:227.899500px;}
.y1c{bottom:228.039000px;}
.y26b{bottom:229.816500px;}
.y17e{bottom:233.235000px;}
.y2e2{bottom:237.156000px;}
.y288{bottom:238.053000px;}
.yb2{bottom:238.501500px;}
.y7c{bottom:239.380500px;}
.y45{bottom:240.319500px;}
.y1b3{bottom:240.438000px;}
.y316{bottom:241.639500px;}
.yd4{bottom:243.433500px;}
.y11b{bottom:243.544295px;}
.y2aa{bottom:246.393000px;}
.y157{bottom:246.496500px;}
.y26a{bottom:248.644500px;}
.y17d{bottom:249.673500px;}
.y22a{bottom:249.727500px;}
.y256{bottom:251.539500px;}
.y2e1{bottom:254.416500px;}
.y1b2{bottom:254.635500px;}
.y287{bottom:256.882500px;}
.yb1{bottom:257.331000px;}
.y229{bottom:257.947500px;}
.y7b{bottom:258.210000px;}
.y315{bottom:258.900000px;}
.y44{bottom:259.149000px;}
.y255{bottom:259.758000px;}
.yd3{bottom:262.263000px;}
.y156{bottom:265.326000px;}
.y22b{bottom:266.166000px;}
.y269{bottom:267.474000px;}
.y257{bottom:267.978000px;}
.y11a{bottom:268.377852px;}
.y1b1{bottom:268.831500px;}
.y2e0{bottom:271.677000px;}
.y2a9{bottom:272.932500px;}
.y17b{bottom:273.315000px;}
.y286{bottom:275.712000px;}
.yb0{bottom:276.160500px;}
.y7a{bottom:277.039500px;}
.y43{bottom:277.978500px;}
.yd2{bottom:281.092500px;}
.y1b0{bottom:283.029000px;}
.y155{bottom:284.155500px;}
.y268{bottom:286.303500px;}
.y2df{bottom:288.937500px;}
.y17a{bottom:289.753500px;}
.y227{bottom:289.807500px;}
.y2a8{bottom:290.506500px;}
.y253{bottom:291.618000px;}
.y119{bottom:293.310875px;}
.y314{bottom:293.421000px;}
.y285{bottom:294.541500px;}
.yaf{bottom:294.990000px;}
.y79{bottom:295.869000px;}
.y42{bottom:296.808000px;}
.y1af{bottom:297.225000px;}
.y226{bottom:298.026000px;}
.y177{bottom:298.570500px;}
.y252{bottom:299.838000px;}
.yd1{bottom:299.922000px;}
.y154{bottom:302.985000px;}
.y267{bottom:305.133000px;}
.y179{bottom:306.192000px;}
.y2de{bottom:306.198000px;}
.y228{bottom:306.246000px;}
.y1b{bottom:307.299000px;}
.y254{bottom:308.056500px;}
.y2a7{bottom:308.080500px;}
.y313{bottom:310.681500px;}
.y1ae{bottom:311.422500px;}
.y284{bottom:313.371000px;}
.yae{bottom:313.819500px;}
.y78{bottom:314.698500px;}
.y41{bottom:315.637500px;}
.y118{bottom:318.111276px;}
.yd0{bottom:318.751500px;}
.y153{bottom:321.814500px;}
.y178{bottom:322.630500px;}
.y2dd{bottom:323.458500px;}
.y266{bottom:323.962500px;}
.y1a{bottom:325.186500px;}
.y1ad{bottom:325.618500px;}
.y2a6{bottom:325.654500px;}
.y312{bottom:327.940500px;}
.y224{bottom:329.886000px;}
.y250{bottom:331.698000px;}
.y283{bottom:332.200500px;}
.yad{bottom:332.649000px;}
.y117{bottom:332.699747px;}
.y77{bottom:333.528000px;}
.y40{bottom:334.467000px;}
.yef{bottom:335.787000px;}
.ycf{bottom:337.581000px;}
.y223{bottom:338.106000px;}
.y24f{bottom:339.916500px;}
.y152{bottom:340.644000px;}
.y2dc{bottom:340.719000px;}
.y265{bottom:342.792000px;}
.y19{bottom:343.074000px;}
.y2a5{bottom:343.230000px;}
.y311{bottom:345.201000px;}
.y176{bottom:346.270500px;}
.y225{bottom:346.324500px;}
.y116{bottom:346.890351px;}
.y1ac{bottom:347.017500px;}
.y1d1{bottom:347.892000px;}
.y251{bottom:348.136500px;}
.y282{bottom:351.030000px;}
.yac{bottom:351.478500px;}
.y76{bottom:352.356000px;}
.y3f{bottom:353.296500px;}
.yee{bottom:354.616500px;}
.yce{bottom:356.410500px;}
.y2db{bottom:357.978000px;}
.y151{bottom:359.473500px;}
.y2a4{bottom:360.804000px;}
.y18{bottom:360.963000px;}
.y115{bottom:361.103059px;}
.y264{bottom:361.621500px;}
.y310{bottom:362.461500px;}
.y175{bottom:362.709000px;}
.y1d0{bottom:366.721500px;}
.y281{bottom:369.859500px;}
.y221{bottom:369.966000px;}
.yab{bottom:370.308000px;}
.y75{bottom:371.185500px;}
.y24d{bottom:371.776500px;}
.y3e{bottom:372.126000px;}
.yed{bottom:373.446000px;}
.y114{bottom:375.161040px;}
.y2da{bottom:375.238500px;}
.ycd{bottom:375.240000px;}
.y1ab{bottom:377.068500px;}
.y220{bottom:378.184500px;}
.y150{bottom:378.303000px;}
.y2a3{bottom:378.378000px;}
.y174{bottom:379.147500px;}
.y171{bottom:379.540500px;}
.y30f{bottom:379.722000px;}
.y24c{bottom:379.996500px;}
.y263{bottom:380.451000px;}
.y1cf{bottom:385.551000px;}
.y222{bottom:386.404500px;}
.y24e{bottom:388.215000px;}
.y280{bottom:388.689000px;}
.yaa{bottom:389.137500px;}
.y113{bottom:389.351644px;}
.y74{bottom:390.015000px;}
.y3d{bottom:390.955500px;}
.yec{bottom:392.275500px;}
.y2d9{bottom:392.499000px;}
.ycc{bottom:394.069500px;}
.y173{bottom:395.586000px;}
.y2a2{bottom:395.952000px;}
.y30e{bottom:396.982500px;}
.y14f{bottom:397.132500px;}
.y17{bottom:399.024000px;}
.y262{bottom:399.280500px;}
.y1ce{bottom:404.380500px;}
.y27f{bottom:407.518500px;}
.ya9{bottom:407.967000px;}
.y73{bottom:408.844500px;}
.y2d8{bottom:409.759500px;}
.y21e{bottom:410.044500px;}
.yeb{bottom:411.105000px;}
.y24a{bottom:411.856500px;}
.y172{bottom:412.024500px;}
.y1aa{bottom:412.678500px;}
.ycb{bottom:412.899000px;}
.y2a1{bottom:413.526000px;}
.y30d{bottom:414.243000px;}
.y3c{bottom:414.268500px;}
.y14e{bottom:415.962000px;}
.y16{bottom:416.913000px;}
.y261{bottom:418.110000px;}
.y21d{bottom:418.263000px;}
.y249{bottom:420.075000px;}
.y1cd{bottom:423.210000px;}
.y27e{bottom:426.348000px;}
.y21f{bottom:426.483000px;}
.ya8{bottom:426.796500px;}
.y2d7{bottom:427.020000px;}
.y72{bottom:427.674000px;}
.y24b{bottom:428.293500px;}
.yea{bottom:429.934500px;}
.y2a0{bottom:431.100000px;}
.y30c{bottom:431.503500px;}
.y1a9{bottom:431.508000px;}
.yca{bottom:431.727000px;}
.y14d{bottom:434.791500px;}
.y15{bottom:434.800500px;}
.y170{bottom:435.664500px;}
.y208{bottom:436.939500px;}
.y2d6{bottom:444.280500px;}
.y27d{bottom:445.177500px;}
.yf2{bottom:445.273500px;}
.ya7{bottom:445.626000px;}
.y71{bottom:446.503500px;}
.y29f{bottom:448.674000px;}
.ye9{bottom:448.764000px;}
.y21b{bottom:450.123000px;}
.y1a8{bottom:450.336000px;}
.yc9{bottom:450.556500px;}
.y247{bottom:451.935000px;}
.y16f{bottom:452.103000px;}
.y16d{bottom:452.496000px;}
.y14c{bottom:453.621000px;}
.yf1{bottom:455.083500px;}
.y207{bottom:455.769000px;}
.y1cc{bottom:457.729500px;}
.y21a{bottom:458.343000px;}
.y246{bottom:460.153500px;}
.y2d5{bottom:461.541000px;}
.y27c{bottom:464.007000px;}
.ya6{bottom:464.454000px;}
.y30b{bottom:466.024500px;}
.y29e{bottom:466.248000px;}
.y21c{bottom:466.561500px;}
.ye8{bottom:467.593500px;}
.y248{bottom:468.373500px;}
.y16e{bottom:468.541500px;}
.y1a7{bottom:469.165500px;}
.yc8{bottom:469.386000px;}
.y70{bottom:469.816500px;}
.y14{bottom:470.622000px;}
.y14b{bottom:472.450500px;}
.y206{bottom:474.598500px;}
.y2d4{bottom:478.801500px;}
.y27b{bottom:482.836500px;}
.ya5{bottom:483.283500px;}
.y29d{bottom:483.822000px;}
.ye7{bottom:486.423000px;}
.y1a6{bottom:487.995000px;}
.yc7{bottom:488.215500px;}
.y3b{bottom:489.418500px;}
.y6f{bottom:489.991500px;}
.y218{bottom:490.203000px;}
.y14a{bottom:491.280000px;}
.y244{bottom:492.013500px;}
.y16c{bottom:492.181500px;}
.y1cb{bottom:492.250500px;}
.y205{bottom:493.428000px;}
.y2d3{bottom:496.062000px;}
.y217{bottom:498.421500px;}
.y243{bottom:500.233500px;}
.y30a{bottom:500.544000px;}
.y29c{bottom:501.396000px;}
.y27a{bottom:501.666000px;}
.ya4{bottom:502.113000px;}
.ye6{bottom:505.252500px;}
.y13{bottom:506.442000px;}
.y219{bottom:506.641500px;}
.y1a5{bottom:506.824500px;}
.y245{bottom:508.452000px;}
.y16b{bottom:508.620000px;}
.y3a{bottom:508.875000px;}
.y169{bottom:509.014500px;}
.y149{bottom:510.109500px;}
.y1ca{bottom:511.080000px;}
.yc6{bottom:511.528500px;}
.y204{bottom:512.257500px;}
.y2d2{bottom:513.321000px;}
.y309{bottom:517.804500px;}
.y29b{bottom:518.970000px;}
.y279{bottom:520.495500px;}
.ya3{bottom:520.942500px;}
.y6e{bottom:523.615500px;}
.ye5{bottom:524.082000px;}
.y12{bottom:524.329500px;}
.y16a{bottom:525.058500px;}
.y1a4{bottom:525.654000px;}
.y148{bottom:528.939000px;}
.y1c9{bottom:529.909500px;}
.y215{bottom:530.281500px;}
.y2d1{bottom:530.581500px;}
.y1e3{bottom:530.635500px;}
.y203{bottom:531.087000px;}
.y241{bottom:532.093500px;}
.y308{bottom:535.065000px;}
.y29a{bottom:536.545500px;}
.y214{bottom:538.501500px;}
.y278{bottom:539.323500px;}
.ya2{bottom:539.772000px;}
.y240{bottom:540.312000px;}
.y11{bottom:542.218500px;}
.y6d{bottom:542.445000px;}
.y1a3{bottom:544.483500px;}
.yc5{bottom:545.152500px;}
.y39{bottom:546.265500px;}
.y216{bottom:546.720000px;}
.ye4{bottom:547.393500px;}
.y147{bottom:547.768500px;}
.y2d0{bottom:547.842000px;}
.y242{bottom:548.532000px;}
.y168{bottom:548.700000px;}
.y1c8{bottom:548.739000px;}
.y202{bottom:549.916500px;}
.y1e2{bottom:552.039000px;}
.y307{bottom:552.325500px;}
.y299{bottom:554.119500px;}
.y277{bottom:558.153000px;}
.ya1{bottom:558.601500px;}
.y10{bottom:560.106000px;}
.y6c{bottom:561.274500px;}
.y1a2{bottom:563.313000px;}
.yc4{bottom:563.982000px;}
.y1e1{bottom:563.994000px;}
.y2cf{bottom:565.102500px;}
.y167{bottom:565.138500px;}
.y38{bottom:565.722000px;}
.y146{bottom:566.598000px;}
.y201{bottom:568.746000px;}
.y306{bottom:569.586000px;}
.y212{bottom:570.361500px;}
.y298{bottom:571.693500px;}
.y23e{bottom:572.172000px;}
.y1e0{bottom:575.949000px;}
.y1c7{bottom:576.982500px;}
.ya0{bottom:577.431000px;}
.yf{bottom:577.993500px;}
.y211{bottom:578.580000px;}
.y6b{bottom:580.104000px;}
.y23d{bottom:580.392000px;}
.ye3{bottom:581.017500px;}
.y166{bottom:581.575500px;}
.y163{bottom:581.970000px;}
.y1a1{bottom:582.142500px;}
.y2ce{bottom:582.363000px;}
.y37{bottom:585.180000px;}
.y145{bottom:585.426000px;}
.y213{bottom:586.798500px;}
.y305{bottom:586.846500px;}
.y200{bottom:587.575500px;}
.y1df{bottom:587.904000px;}
.y23f{bottom:588.610500px;}
.y297{bottom:589.267500px;}
.y1c6{bottom:595.812000px;}
.ye{bottom:595.882500px;}
.y9f{bottom:596.260500px;}
.y165{bottom:598.014000px;}
.y6a{bottom:598.932000px;}
.y2cd{bottom:599.623500px;}
.ye2{bottom:599.847000px;}
.y1de{bottom:599.859000px;}
.yc3{bottom:600.744000px;}
.y1a0{bottom:600.972000px;}
.y304{bottom:604.107000px;}
.y144{bottom:604.255500px;}
.y36{bottom:604.636500px;}
.y1ff{bottom:606.405000px;}
.y296{bottom:606.841500px;}
.y20f{bottom:610.440000px;}
.y1dd{bottom:611.814000px;}
.y23b{bottom:612.250500px;}
.yd{bottom:613.770000px;}
.y164{bottom:614.452500px;}
.y1c5{bottom:614.641500px;}
.y9e{bottom:615.090000px;}
.y2cc{bottom:616.884000px;}
.y69{bottom:617.761500px;}
.y20e{bottom:618.658500px;}
.yc2{bottom:619.573500px;}
.y19f{bottom:619.801500px;}
.y23a{bottom:620.470500px;}
.y303{bottom:621.366000px;}
.y143{bottom:623.085000px;}
.y1dc{bottom:623.769000px;}
.y35{bottom:624.093000px;}
.y1fe{bottom:625.234500px;}
.y210{bottom:626.878500px;}
.y23c{bottom:628.689000px;}
.yc{bottom:631.657500px;}
.y295{bottom:633.382500px;}
.y1c4{bottom:633.471000px;}
.y9d{bottom:633.919500px;}
.y2cb{bottom:634.144500px;}
.y1db{bottom:635.724000px;}
.y68{bottom:636.591000px;}
.ye1{bottom:636.610500px;}
.y162{bottom:638.094000px;}
.y302{bottom:638.626500px;}
.y19e{bottom:638.631000px;}
.y20d{bottom:643.317000px;}
.y34{bottom:643.551000px;}
.y1fd{bottom:644.064000px;}
.y142{bottom:646.398000px;}
.y161{bottom:646.705500px;}
.y1da{bottom:647.679000px;}
.y294{bottom:650.956500px;}
.y2ca{bottom:651.403500px;}
.y1c3{bottom:652.300500px;}
.y239{bottom:652.330500px;}
.y9c{bottom:652.749000px;}
.y9{bottom:654.028555px;}
.y67{bottom:655.420500px;}
.ye0{bottom:655.438500px;}
.y301{bottom:655.887000px;}
.yc1{bottom:656.335500px;}
.y19d{bottom:657.460500px;}
.y1d9{bottom:659.635500px;}
.y1fc{bottom:662.893500px;}
.y33{bottom:663.007500px;}
.y141{bottom:666.573000px;}
.y20c{bottom:666.957000px;}
.y293{bottom:668.530500px;}
.y2c9{bottom:668.664000px;}
.y238{bottom:668.769000px;}
.y1c2{bottom:671.130000px;}
.y9b{bottom:671.578500px;}
.y1d8{bottom:671.590500px;}
.y300{bottom:673.147500px;}
.y66{bottom:674.250000px;}
.yc0{bottom:675.165000px;}
.y19c{bottom:676.290000px;}
.y160{bottom:678.172500px;}
.y1fb{bottom:681.723000px;}
.y32{bottom:682.464000px;}
.y20b{bottom:683.395500px;}
.y1d7{bottom:683.545500px;}
.y2c8{bottom:685.924500px;}
.y1c1{bottom:689.959500px;}
.y9a{bottom:690.408000px;}
.ydf{bottom:692.202000px;}
.y237{bottom:692.409000px;}
.y65{bottom:693.079500px;}
.y292{bottom:695.070000px;}
.y19b{bottom:695.119500px;}
.y1d6{bottom:695.500500px;}
.y140{bottom:697.000500px;}
.y1fa{bottom:700.552500px;}
.y31{bottom:701.922000px;}
.y2c7{bottom:703.185000px;}
.y20a{bottom:707.037000px;}
.y1d5{bottom:707.455500px;}
.y2ff{bottom:707.668500px;}
.y1c0{bottom:708.789000px;}
.y236{bottom:708.847500px;}
.y99{bottom:709.237500px;}
.y15f{bottom:709.792500px;}
.yde{bottom:711.031500px;}
.y64{bottom:711.909000px;}
.ybf{bottom:711.927000px;}
.y291{bottom:712.645500px;}
.y13f{bottom:716.233500px;}
.y1f9{bottom:719.382000px;}
.y2c6{bottom:720.445500px;}
.y30{bottom:721.378500px;}
.y209{bottom:723.474000px;}
.y2fe{bottom:724.929000px;}
.y1d4{bottom:726.613500px;}
.y1bf{bottom:727.618500px;}
.y98{bottom:728.067000px;}
.y290{bottom:730.219500px;}
.y63{bottom:730.738500px;}
.ybe{bottom:730.756500px;}
.y2c5{bottom:737.706000px;}
.y1f8{bottom:738.211500px;}
.yf0{bottom:738.661500px;}
.y235{bottom:740.467500px;}
.y19a{bottom:740.581500px;}
.y2f{bottom:740.836500px;}
.y2fd{bottom:742.189500px;}
.y112{bottom:743.975019px;}
.y1be{bottom:746.448000px;}
.y97{bottom:746.896500px;}
.ydd{bottom:747.793500px;}
.y129{bottom:748.351606px;}
.y62{bottom:749.568000px;}
.y2c4{bottom:754.966500px;}
.y1d3{bottom:755.094000px;}
.y199{bottom:757.020000px;}
.y1f7{bottom:757.039500px;}
.y2fc{bottom:759.450000px;}
.y2e{bottom:760.293000px;}
.y1bd{bottom:765.277500px;}
.y96{bottom:765.726000px;}
.ydc{bottom:766.623000px;}
.ybd{bottom:767.518500px;}
.y61{bottom:768.397500px;}
.y2c3{bottom:772.227000px;}
.y198{bottom:773.458500px;}
.y1f6{bottom:775.869000px;}
.y2fb{bottom:776.709000px;}
.y2d{bottom:779.749500px;}
.y276{bottom:784.107000px;}
.y95{bottom:784.555500px;}
.y12b{bottom:786.148677px;}
.ybc{bottom:786.348000px;}
.y60{bottom:787.227000px;}
.y1bc{bottom:788.590500px;}
.y2c2{bottom:789.487500px;}
.y197{bottom:789.897000px;}
.y2fa{bottom:793.969500px;}
.y1f5{bottom:794.698500px;}
.y191{bottom:798.435000px;}
.y2c{bottom:799.207500px;}
.y275{bottom:802.936500px;}
.y94{bottom:803.385000px;}
.y5f{bottom:806.056500px;}
.y196{bottom:806.335500px;}
.y2c1{bottom:806.746500px;}
.y1d2{bottom:807.729000px;}
.y134{bottom:809.596329px;}
.y2f9{bottom:811.230000px;}
.y1f4{bottom:813.528000px;}
.y190{bottom:814.873500px;}
.y274{bottom:821.766000px;}
.y93{bottom:822.214500px;}
.y195{bottom:822.774000px;}
.ybb{bottom:823.111500px;}
.y2c0{bottom:824.007000px;}
.y5e{bottom:824.886000px;}
.y2f8{bottom:828.490500px;}
.y1f3{bottom:832.357500px;}
.y2b{bottom:837.792000px;}
.y194{bottom:839.211000px;}
.y273{bottom:840.595500px;}
.y92{bottom:841.044000px;}
.y2bf{bottom:841.267500px;}
.yba{bottom:841.941000px;}
.y5d{bottom:843.715500px;}
.y2f7{bottom:845.751000px;}
.y1f2{bottom:851.187000px;}
.y193{bottom:855.649500px;}
.y2a{bottom:858.271500px;}
.y2be{bottom:858.528000px;}
.y91{bottom:859.873500px;}
.y5c{bottom:862.545000px;}
.y2f6{bottom:863.011500px;}
.y272{bottom:863.908500px;}
.y13a{bottom:866.545521px;}
.y1f1{bottom:870.016500px;}
.y29{bottom:870.072000px;}
.y192{bottom:872.088000px;}
.y2bd{bottom:875.788500px;}
.y90{bottom:878.703000px;}
.y2f5{bottom:880.272000px;}
.y5b{bottom:881.374500px;}
.y1f0{bottom:888.846000px;}
.y28{bottom:890.551500px;}
.y13d{bottom:892.141657px;}
.y2bc{bottom:893.049000px;}
.y18f{bottom:895.729500px;}
.y8f{bottom:897.532500px;}
.y5a{bottom:900.204000px;}
.y27{bottom:902.350500px;}
.y1ef{bottom:907.675500px;}
.y2bb{bottom:910.309500px;}
.y18e{bottom:912.168000px;}
.y2f4{bottom:914.793000px;}
.y8e{bottom:916.362000px;}
.y59{bottom:919.033500px;}
.y26{bottom:922.830000px;}
.y1ee{bottom:926.505000px;}
.y2ba{bottom:927.570000px;}
.y18d{bottom:928.606500px;}
.y18a{bottom:928.999500px;}
.y2f3{bottom:932.052000px;}
.y25{bottom:934.629000px;}
.y8d{bottom:935.191500px;}
.y58{bottom:937.863000px;}
.y2b9{bottom:944.829000px;}
.y18c{bottom:945.043500px;}
.y1ed{bottom:945.334500px;}
.y2f2{bottom:949.312500px;}
.y8c{bottom:954.021000px;}
.y24{bottom:955.108500px;}
.y57{bottom:956.692500px;}
.y126{bottom:957.944504px;}
.y11c{bottom:960.331708px;}
.y18b{bottom:961.482000px;}
.y2b8{bottom:962.089500px;}
.y1ec{bottom:964.164000px;}
.y2f1{bottom:966.573000px;}
.y8b{bottom:972.849000px;}
.y56{bottom:975.522000px;}
.y2b7{bottom:979.350000px;}
.y1eb{bottom:982.993500px;}
.y2f0{bottom:983.833500px;}
.y189{bottom:985.123500px;}
.y8a{bottom:991.678500px;}
.y55{bottom:994.351500px;}
.y8{bottom:995.302500px;}
.y2b6{bottom:996.610500px;}
.y123{bottom:999.355869px;}
.y2ef{bottom:1001.094000px;}
.y188{bottom:1001.562000px;}
.y1ea{bottom:1001.823000px;}
.y89{bottom:1010.508000px;}
.y54{bottom:1013.181000px;}
.y2b5{bottom:1013.871000px;}
.y187{bottom:1018.000500px;}
.y2ee{bottom:1018.354500px;}
.y184{bottom:1018.599000px;}
.y1e9{bottom:1020.652500px;}
.y88{bottom:1029.337500px;}
.y2b4{bottom:1031.131500px;}
.y53{bottom:1032.010500px;}
.y186{bottom:1034.439000px;}
.y2ed{bottom:1035.615000px;}
.y1e8{bottom:1039.482000px;}
.y7{bottom:1041.199500px;}
.y87{bottom:1048.167000px;}
.y2b3{bottom:1048.392000px;}
.y52{bottom:1050.840000px;}
.y185{bottom:1050.876000px;}
.y2ec{bottom:1052.875500px;}
.y1e7{bottom:1058.311500px;}
.y2b2{bottom:1065.652500px;}
.y86{bottom:1066.996500px;}
.y6{bottom:1069.443000px;}
.y51{bottom:1069.669500px;}
.y2eb{bottom:1070.134500px;}
.y183{bottom:1074.517500px;}
.y1e6{bottom:1077.141000px;}
.y2b1{bottom:1082.913000px;}
.y85{bottom:1085.826000px;}
.y2ea{bottom:1087.395000px;}
.y50{bottom:1088.499000px;}
.y1e5{bottom:1095.970500px;}
.y5{bottom:1097.688000px;}
.y84{bottom:1104.655500px;}
.y182{bottom:1106.137500px;}
.y4f{bottom:1107.327000px;}
.y1e4{bottom:1119.283500px;}
.y1{bottom:1141.174500px;}
.y4e{bottom:1173.397500px;}
.h23{height:17.771410px;}
.h24{height:17.797935px;}
.h1d{height:19.760747px;}
.h1f{height:20.291237px;}
.h1e{height:25.330891px;}
.h8{height:25.508090px;}
.h2c{height:30.252344px;}
.h29{height:30.582721px;}
.hc{height:32.565965px;}
.ha{height:33.112997px;}
.h9{height:34.199443px;}
.h27{height:34.574294px;}
.h1b{height:37.866822px;}
.hb{height:37.993262px;}
.he{height:38.896243px;}
.h3{height:39.402747px;}
.h26{height:39.434227px;}
.h18{height:40.956252px;}
.h4{height:41.001535px;}
.h28{height:41.723369px;}
.h10{height:43.217759px;}
.hd{height:43.421105px;}
.h5{height:43.815515px;}
.h16{height:44.062559px;}
.h13{height:44.536816px;}
.h1c{height:45.397292px;}
.h22{height:45.495981px;}
.h19{height:48.542931px;}
.hf{height:48.848947px;}
.h15{height:50.229492px;}
.h2{height:50.931027px;}
.h11{height:54.276245px;}
.h7{height:54.541601px;}
.h14{height:55.922168px;}
.h6{height:77.792486px;}
.h25{height:80.156947px;}
.h2f{height:81.722947px;}
.h2e{height:81.728947px;}
.h2d{height:104.650243px;}
.h21{height:119.625464px;}
.h1a{height:132.511947px;}
.h20{height:188.246538px;}
.h17{height:375.624981px;}
.h12{height:380.938500px;}
.h2a{height:892.914000px;}
.h2b{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.wa{width:200.636933px;}
.w2{width:215.864690px;}
.w7{width:286.313583px;}
.w8{width:291.883147px;}
.w9{width:292.280973px;}
.wb{width:301.839457px;}
.w6{width:308.900869px;}
.w5{width:768.964975px;}
.w4{width:778.629300px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.wc{width:1262.835000px;}
.wd{width:1263.000000px;}
.x90{left:-15.923700px;}
.x97{left:-6.641092px;}
.x0{left:0.000000px;}
.xae{left:7.956521px;}
.x92{left:15.936300px;}
.x4{left:29.274117px;}
.x3{left:52.951500px;}
.x1{left:54.000000px;}
.x8f{left:57.143700px;}
.x2{left:59.014071px;}
.xa3{left:61.784986px;}
.xc7{left:62.967000px;}
.xa6{left:66.558899px;}
.xa5{left:68.813246px;}
.xe6{left:73.689000px;}
.xed{left:74.853000px;}
.xe8{left:77.857500px;}
.xa4{left:80.350202px;}
.xe9{left:81.436500px;}
.xee{left:83.097000px;}
.xaf{left:85.890000px;}
.x99{left:92.063576px;}
.xea{left:93.937500px;}
.xa9{left:95.422996px;}
.xa0{left:97.611431px;}
.x9a{left:98.959227px;}
.xa8{left:100.329517px;}
.xdc{left:102.168000px;}
.x9e{left:103.578822px;}
.x96{left:107.557082px;}
.xa1{left:109.280995px;}
.x9b{left:112.220095px;}
.x98{left:114.209226px;}
.xdb{left:115.275000px;}
.xe5{left:118.972500px;}
.x9c{left:120.309225px;}
.xf0{left:132.153000px;}
.xab{left:133.437484px;}
.x9f{left:135.404905px;}
.xc6{left:139.545000px;}
.xa2{left:141.372296px;}
.xe3{left:143.727000px;}
.xef{left:147.513000px;}
.xb0{left:148.566000px;}
.xac{left:150.941830px;}
.x9d{left:154.389656px;}
.x93{left:179.676300px;}
.x94{left:211.536300px;}
.xaa{left:237.900774px;}
.x7{left:249.832500px;}
.x5{left:250.897500px;}
.xc1{left:259.864500px;}
.xc5{left:269.388000px;}
.x6{left:271.221000px;}
.xb4{left:276.709500px;}
.xbe{left:278.485500px;}
.xa{left:282.786000px;}
.xb5{left:288.687000px;}
.x60{left:290.010000px;}
.x8b{left:292.734000px;}
.x61{left:293.821500px;}
.xb1{left:294.858000px;}
.x19{left:296.208000px;}
.xbc{left:297.643500px;}
.x62{left:301.293000px;}
.x63{left:305.103000px;}
.x8c{left:307.678500px;}
.x8{left:309.445500px;}
.x1a{left:311.152500px;}
.x104{left:313.227000px;}
.x64{left:320.047500px;}
.x2f{left:323.035500px;}
.x9{left:326.616000px;}
.x25{left:328.327500px;}
.x30{left:337.978500px;}
.x26{left:343.272000px;}
.x38{left:344.487000px;}
.xb{left:346.132500px;}
.x53{left:348.877500px;}
.x85{left:351.229500px;}
.xc{left:353.604000px;}
.x56{left:354.798000px;}
.x87{left:356.262000px;}
.x36{left:357.423000px;}
.x39{left:359.430000px;}
.x75{left:365.326500px;}
.x31{left:368.034000px;}
.x4b{left:369.873000px;}
.x86{left:371.149500px;}
.x37{left:372.367500px;}
.x54{left:373.789500px;}
.x76{left:376.477500px;}
.x95{left:380.233680px;}
.x55{left:382.182000px;}
.x88{left:383.653500px;}
.x4c{left:384.817500px;}
.x57{left:387.265500px;}
.x4d{left:388.504500px;}
.x58{left:392.341500px;}
.x8a{left:395.385000px;}
.x89{left:396.949500px;}
.xc9{left:398.997000px;}
.x59{left:400.320000px;}
.x4e{left:403.449000px;}
.x5a{left:405.195000px;}
.x8e{left:415.665000px;}
.xad{left:427.696947px;}
.x1d{left:428.886000px;}
.x100{left:430.767000px;}
.x106{left:432.772500px;}
.x105{left:434.737500px;}
.x1e{left:443.829000px;}
.x101{left:445.711500px;}
.xcf{left:447.369000px;}
.x1b{left:450.972000px;}
.x27{left:456.934500px;}
.xce{left:461.143500px;}
.x65{left:463.537500px;}
.x1c{left:465.915000px;}
.x4f{left:470.101500px;}
.x28{left:471.879000px;}
.x66{left:474.670500px;}
.x46{left:477.753000px;}
.xb6{left:479.763000px;}
.x82{left:482.013000px;}
.x50{left:485.044500px;}
.xf{left:490.303500px;}
.xbb{left:491.409000px;}
.x47{left:492.697500px;}
.xc2{left:495.828000px;}
.x10{left:497.775000px;}
.xbf{left:499.816500px;}
.x11{left:501.586500px;}
.xc3{left:502.996500px;}
.x2b{left:504.117000px;}
.xc4{left:505.956000px;}
.xba{left:507.676500px;}
.x12{left:509.058000px;}
.xe7{left:510.661500px;}
.xc0{left:512.115000px;}
.xb9{left:513.715500px;}
.xd6{left:515.362500px;}
.x13{left:516.679500px;}
.x2c{left:519.061500px;}
.xb8{left:520.669500px;}
.x2d{left:522.763500px;}
.xb7{left:524.031000px;}
.xbd{left:525.591000px;}
.x21{left:526.734000px;}
.x80{left:528.222000px;}
.xb2{left:530.002500px;}
.x14{left:531.624000px;}
.xb3{left:534.105000px;}
.x42{left:536.254500px;}
.x2e{left:537.706500px;}
.x22{left:541.677000px;}
.x81{left:543.165000px;}
.x40{left:545.527500px;}
.x71{left:546.741000px;}
.x43{left:551.199000px;}
.xf6{left:558.832500px;}
.x41{left:560.472000px;}
.xfc{left:562.008000px;}
.x3e{left:564.201000px;}
.x48{left:568.939500px;}
.xf7{left:573.777000px;}
.xd{left:575.542500px;}
.xf8{left:577.588500px;}
.x3f{left:579.145500px;}
.xfd{left:580.710000px;}
.xe{left:583.014000px;}
.xfe{left:584.469000px;}
.x32{left:588.648000px;}
.xeb{left:590.443500px;}
.xf9{left:592.531500px;}
.x5b{left:597.538500px;}
.x84{left:598.830000px;}
.xa7{left:600.032977px;}
.x72{left:602.349000px;}
.x33{left:603.591000px;}
.x5c{left:611.935500px;}
.x5d{left:615.633000px;}
.x73{left:617.293500px;}
.xca{left:619.005000px;}
.xc8{left:621.496500px;}
.xf5{left:625.063500px;}
.x107{left:626.823000px;}
.xcb{left:628.906500px;}
.x5e{left:630.577500px;}
.xfa{left:633.852000px;}
.xff{left:636.588000px;}
.xfb{left:637.662000px;}
.x29{left:640.080000px;}
.x79{left:641.703000px;}
.xcc{left:645.039000px;}
.x7a{left:649.174500px;}
.x7b{left:652.884000px;}
.x2a{left:655.024500px;}
.x67{left:658.465500px;}
.x7c{left:660.357000px;}
.xcd{left:661.647000px;}
.x7d{left:664.066500px;}
.x10f{left:671.329500px;}
.x68{left:673.408500px;}
.x49{left:675.228000px;}
.x7e{left:679.011000px;}
.x69{left:681.030000px;}
.x7f{left:682.720500px;}
.x10b{left:684.472500px;}
.x4a{left:690.172500px;}
.x102{left:693.528000px;}
.xd1{left:694.708500px;}
.x6a{left:695.974500px;}
.x77{left:697.140000px;}
.x110{left:698.229000px;}
.x103{left:701.149500px;}
.x6b{left:707.035500px;}
.x78{left:712.083000px;}
.x3c{left:715.302000px;}
.xe0{left:716.901000px;}
.xe4{left:718.581000px;}
.xd7{left:720.673500px;}
.x6c{left:721.980000px;}
.xd0{left:724.876500px;}
.x5f{left:728.956500px;}
.x3d{left:730.245000px;}
.x10a{left:732.058500px;}
.x10c{left:734.341500px;}
.x108{left:742.630500px;}
.x23{left:744.280500px;}
.x112{left:750.588000px;}
.x10e{left:751.885500px;}
.x111{left:755.478000px;}
.x24{left:759.223500px;}
.xf1{left:761.616000px;}
.x44{left:763.617000px;}
.x6e{left:767.134500px;}
.x91{left:769.416300px;}
.x34{left:771.159000px;}
.x51{left:773.433000px;}
.x74{left:774.588000px;}
.xf2{left:776.560500px;}
.x45{left:778.561500px;}
.xf3{left:780.370500px;}
.x6f{left:782.079000px;}
.x109{left:783.501000px;}
.x35{left:786.103500px;}
.x52{left:788.377500px;}
.x10d{left:789.826500px;}
.x3a{left:795.345000px;}
.x70{left:797.769000px;}
.xf4{left:798.943500px;}
.x6d{left:801.987000px;}
.x8d{left:803.932500px;}
.x15{left:805.668000px;}
.x3b{left:810.289500px;}
.x16{left:813.139500px;}
.x17{left:816.951000px;}
.x1f{left:818.046000px;}
.x18{left:831.894000px;}
.x20{left:832.990500px;}
.x83{left:837.742500px;}
.xd3{left:860.592000px;}
.xdd{left:904.141500px;}
.xd9{left:908.445000px;}
.xde{left:911.806500px;}
.xd8{left:913.144500px;}
.xd2{left:915.667500px;}
.xd5{left:1072.579500px;}
.xec{left:1082.982000px;}
.xdf{left:1085.814000px;}
.xe1{left:1088.430000px;}
.xda{left:1090.117500px;}
.xe2{left:1094.986500px;}
.xd4{left:1097.340000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:27.829333pt;}
.v4{vertical-align:29.226667pt;}
.ls16{letter-spacing:-0.542279pt;}
.ls14{letter-spacing:-0.096000pt;}
.ls12{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.000237pt;}
.ls10{letter-spacing:0.000387pt;}
.ls3{letter-spacing:0.000518pt;}
.ls1e{letter-spacing:0.001021pt;}
.ls7{letter-spacing:0.001718pt;}
.lsc{letter-spacing:0.001974pt;}
.ls38{letter-spacing:0.003055pt;}
.ls0{letter-spacing:0.003733pt;}
.ls1d{letter-spacing:0.004147pt;}
.ls37{letter-spacing:0.004267pt;}
.ls13{letter-spacing:0.048000pt;}
.lsf{letter-spacing:0.117887pt;}
.lse{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.170150pt;}
.ls15{letter-spacing:0.200014pt;}
.ls17{letter-spacing:0.440110pt;}
.ls24{letter-spacing:0.442457pt;}
.ls23{letter-spacing:0.447791pt;}
.ls1b{letter-spacing:0.509060pt;}
.ls1a{letter-spacing:0.514393pt;}
.ls2a{letter-spacing:0.570745pt;}
.ls29{letter-spacing:0.576078pt;}
.lsb{letter-spacing:1.133683pt;}
.ls4{letter-spacing:1.654338pt;}
.ls2{letter-spacing:2.665203pt;}
.ls5{letter-spacing:9.298933pt;}
.ls2b{letter-spacing:10.623733pt;}
.ls9{letter-spacing:10.626533pt;}
.ls25{letter-spacing:10.629067pt;}
.ls11{letter-spacing:10.998710pt;}
.ls3f{letter-spacing:11.141399pt;}
.ls3c{letter-spacing:11.636637pt;}
.ls33{letter-spacing:11.691059pt;}
.ls30{letter-spacing:11.704263pt;}
.ls39{letter-spacing:11.723712pt;}
.ls35{letter-spacing:11.803330pt;}
.ls31{letter-spacing:11.937920pt;}
.ls2e{letter-spacing:11.954133pt;}
.ls2f{letter-spacing:11.959467pt;}
.ls3e{letter-spacing:11.996704pt;}
.ls2d{letter-spacing:12.063636pt;}
.lsd{letter-spacing:12.486459pt;}
.ls27{letter-spacing:12.528078pt;}
.ls28{letter-spacing:12.533411pt;}
.ls3d{letter-spacing:12.975519pt;}
.ls1f{letter-spacing:13.283467pt;}
.ls1{letter-spacing:13.284237pt;}
.ls21{letter-spacing:13.318354pt;}
.ls3a{letter-spacing:13.383362pt;}
.ls1c{letter-spacing:13.389734pt;}
.ls36{letter-spacing:13.409506pt;}
.ls26{letter-spacing:13.442868pt;}
.ls3b{letter-spacing:13.467022pt;}
.ls34{letter-spacing:13.948068pt;}
.ls22{letter-spacing:13.949762pt;}
.ls32{letter-spacing:17.927153pt;}
.ls19{letter-spacing:19.978334pt;}
.ls6{letter-spacing:55.787733pt;}
.ls8{letter-spacing:57.174803pt;}
.ls20{letter-spacing:845.393021pt;}
.ws78{word-spacing:-53.440000pt;}
.wsab{word-spacing:-40.078876pt;}
.wsaf{word-spacing:-26.566933pt;}
.ws77{word-spacing:-13.360000pt;}
.ws1{word-spacing:-13.283467pt;}
.ws3{word-spacing:-12.760670pt;}
.ws76{word-spacing:-12.048000pt;}
.ws23{word-spacing:-11.955200pt;}
.ws7b{word-spacing:-11.285681pt;}
.ws79{word-spacing:-11.045585pt;}
.ws30{word-spacing:-10.626800pt;}
.ws7a{word-spacing:-10.303292pt;}
.ws7c{word-spacing:-9.954740pt;}
.wsb{word-spacing:-9.298400pt;}
.wsac{word-spacing:-3.081764pt;}
.ws2f{word-spacing:-2.922363pt;}
.ws36{word-spacing:-2.869229pt;}
.wsbf{word-spacing:-2.391024pt;}
.ws54{word-spacing:-2.284756pt;}
.wsf1{word-spacing:-2.231622pt;}
.ws47{word-spacing:-2.178489pt;}
.ws102{word-spacing:-2.151936pt;}
.wsa9{word-spacing:-2.072221pt;}
.ws1c{word-spacing:-2.056294pt;}
.wsfc{word-spacing:-2.008474pt;}
.ws103{word-spacing:-1.960653pt;}
.ws46{word-spacing:-1.859685pt;}
.ws45{word-spacing:-1.806551pt;}
.wsa0{word-spacing:-1.700284pt;}
.ws8{word-spacing:-1.696326pt;}
.ws68{word-spacing:-1.647150pt;}
.ws5b{word-spacing:-1.594016pt;}
.ws75{word-spacing:-1.487748pt;}
.ws3c{word-spacing:-1.434614pt;}
.wsc5{word-spacing:-1.328347pt;}
.ws66{word-spacing:-1.275213pt;}
.ws50{word-spacing:-1.222079pt;}
.ws7{word-spacing:-1.175671pt;}
.ws63{word-spacing:-1.168945pt;}
.ws62{word-spacing:-1.115811pt;}
.ws13d{word-spacing:-1.099878pt;}
.ws83{word-spacing:-1.062677pt;}
.ws13e{word-spacing:-1.052058pt;}
.ws71{word-spacing:-1.009543pt;}
.ws2c{word-spacing:-0.956410pt;}
.ws135{word-spacing:-0.908595pt;}
.ws37{word-spacing:-0.903276pt;}
.ws67{word-spacing:-0.850142pt;}
.ws13f{word-spacing:-0.812954pt;}
.ws26{word-spacing:-0.743874pt;}
.ws6e{word-spacing:-0.637606pt;}
.wse8{word-spacing:-0.584473pt;}
.wsfa{word-spacing:-0.573850pt;}
.wsc0{word-spacing:-0.531339pt;}
.ws130{word-spacing:-0.478208pt;}
.wsc1{word-spacing:-0.478205pt;}
.ws6d{word-spacing:-0.425071pt;}
.ws117{word-spacing:-0.382566pt;}
.ws6c{word-spacing:-0.371937pt;}
.ws100{word-spacing:-0.334746pt;}
.ws3f{word-spacing:-0.318803pt;}
.ws101{word-spacing:-0.286925pt;}
.ws34{word-spacing:-0.265669pt;}
.ws1f{word-spacing:-0.239104pt;}
.ws2d{word-spacing:-0.212535pt;}
.wsf2{word-spacing:-0.191283pt;}
.ws35{word-spacing:-0.159402pt;}
.wsf9{word-spacing:-0.143462pt;}
.ws2a{word-spacing:-0.106268pt;}
.wsff{word-spacing:-0.095642pt;}
.ws2{word-spacing:-0.053134pt;}
.ws1d{word-spacing:-0.047821pt;}
.ws17{word-spacing:-0.042507pt;}
.ws114{word-spacing:-0.026795pt;}
.ws133{word-spacing:-0.008508pt;}
.ws12b{word-spacing:-0.007296pt;}
.ws107{word-spacing:-0.006366pt;}
.wsbe{word-spacing:-0.005164pt;}
.wsbc{word-spacing:-0.003294pt;}
.ws132{word-spacing:-0.003285pt;}
.wsbd{word-spacing:-0.003197pt;}
.ws126{word-spacing:-0.002876pt;}
.ws137{word-spacing:-0.001937pt;}
.ws5{word-spacing:-0.001318pt;}
.ws6{word-spacing:-0.000748pt;}
.wsa{word-spacing:-0.000619pt;}
.ws0{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.047821pt;}
.ws29{word-spacing:0.053134pt;}
.wsf3{word-spacing:0.095642pt;}
.ws25{word-spacing:0.106268pt;}
.wsfb{word-spacing:0.143462pt;}
.ws28{word-spacing:0.159402pt;}
.wsd{word-spacing:0.185968pt;}
.ws19{word-spacing:0.191283pt;}
.ws32{word-spacing:0.212535pt;}
.ws21{word-spacing:0.239104pt;}
.wsf{word-spacing:0.260355pt;}
.ws27{word-spacing:0.265669pt;}
.ws44{word-spacing:0.318803pt;}
.ws129{word-spacing:0.334746pt;}
.wsec{word-spacing:0.478205pt;}
.ws1e{word-spacing:0.526029pt;}
.wsee{word-spacing:0.531339pt;}
.ws106{word-spacing:0.573850pt;}
.wsea{word-spacing:0.584473pt;}
.wsd5{word-spacing:0.590362pt;}
.wsd1{word-spacing:0.591189pt;}
.wsc9{word-spacing:0.591957pt;}
.wsc7{word-spacing:0.593818pt;}
.wsd8{word-spacing:0.595695pt;}
.wscf{word-spacing:0.596523pt;}
.wsc6{word-spacing:0.597094pt;}
.wscb{word-spacing:0.597291pt;}
.ws39{word-spacing:0.637606pt;}
.wse4{word-spacing:0.690740pt;}
.ws1a{word-spacing:0.717312pt;}
.wsa3{word-spacing:0.743874pt;}
.wse2{word-spacing:0.797008pt;}
.ws3d{word-spacing:0.850142pt;}
.ws52{word-spacing:0.903276pt;}
.ws5d{word-spacing:0.956410pt;}
.ws110{word-spacing:0.956416pt;}
.ws139{word-spacing:1.004237pt;}
.ws49{word-spacing:1.009543pt;}
.ws60{word-spacing:1.062677pt;}
.ws11e{word-spacing:1.099878pt;}
.ws12e{word-spacing:1.147699pt;}
.wse1{word-spacing:1.168945pt;}
.ws43{word-spacing:1.222079pt;}
.ws136{word-spacing:1.243341pt;}
.ws69{word-spacing:1.275213pt;}
.ws3b{word-spacing:1.328347pt;}
.ws105{word-spacing:1.338982pt;}
.ws72{word-spacing:1.381481pt;}
.ws3e{word-spacing:1.434614pt;}
.ws7f{word-spacing:1.487748pt;}
.wsf8{word-spacing:1.530266pt;}
.ws85{word-spacing:1.594016pt;}
.ws13c{word-spacing:1.625907pt;}
.ws41{word-spacing:1.647150pt;}
.ws5c{word-spacing:1.700284pt;}
.ws121{word-spacing:1.721549pt;}
.ws2b{word-spacing:1.753418pt;}
.wse{word-spacing:1.785293pt;}
.ws5f{word-spacing:1.806551pt;}
.ws86{word-spacing:1.859685pt;}
.wsdf{word-spacing:1.912819pt;}
.wsa2{word-spacing:1.965953pt;}
.ws119{word-spacing:2.008474pt;}
.ws4a{word-spacing:2.019087pt;}
.wsae{word-spacing:2.072221pt;}
.ws4c{word-spacing:2.125355pt;}
.ws42{word-spacing:2.178489pt;}
.ws70{word-spacing:2.231622pt;}
.wsa4{word-spacing:2.337890pt;}
.ws10a{word-spacing:2.534502pt;}
.ws4e{word-spacing:2.550426pt;}
.ws18{word-spacing:2.550432pt;}
.ws108{word-spacing:2.551603pt;}
.ws109{word-spacing:2.582323pt;}
.wse3{word-spacing:2.603559pt;}
.ws6a{word-spacing:2.709827pt;}
.ws104{word-spacing:2.773606pt;}
.ws11d{word-spacing:2.861286pt;}
.ws10b{word-spacing:2.862583pt;}
.ws123{word-spacing:2.864802pt;}
.ws12a{word-spacing:2.866654pt;}
.ws125{word-spacing:2.866739pt;}
.ws12d{word-spacing:2.867063pt;}
.ws128{word-spacing:2.867140pt;}
.ws122{word-spacing:2.867430pt;}
.ws11b{word-spacing:2.867593pt;}
.ws120{word-spacing:2.867823pt;}
.ws10d{word-spacing:2.868122pt;}
.ws11a{word-spacing:2.868463pt;}
.wse7{word-spacing:2.869229pt;}
.ws9a{word-spacing:2.869248pt;}
.ws11c{word-spacing:2.869410pt;}
.ws131{word-spacing:2.869769pt;}
.ws13b{word-spacing:2.870630pt;}
.ws124{word-spacing:2.917069pt;}
.ws127{word-spacing:2.964890pt;}
.ws84{word-spacing:2.975497pt;}
.wsf5{word-spacing:3.060531pt;}
.ws4f{word-spacing:3.081764pt;}
.ws10c{word-spacing:3.156173pt;}
.ws24{word-spacing:3.188032pt;}
.wsfd{word-spacing:3.203994pt;}
.ws4d{word-spacing:3.241166pt;}
.ws61{word-spacing:3.294300pt;}
.ws134{word-spacing:3.299635pt;}
.ws20{word-spacing:3.395277pt;}
.wsde{word-spacing:3.453701pt;}
.ws55{word-spacing:3.559969pt;}
.ws5e{word-spacing:3.666237pt;}
.ws10f{word-spacing:3.682202pt;}
.ws112{word-spacing:3.688572pt;}
.ws74{word-spacing:3.719371pt;}
.wsf7{word-spacing:3.825664pt;}
.ws33{word-spacing:3.878772pt;}
.ws138{word-spacing:3.921306pt;}
.ws2e{word-spacing:3.931906pt;}
.ws48{word-spacing:4.091308pt;}
.wsf4{word-spacing:4.112589pt;}
.ws4b{word-spacing:4.144442pt;}
.wsf6{word-spacing:4.160410pt;}
.ws73{word-spacing:4.250709pt;}
.wsfe{word-spacing:4.399514pt;}
.ws40{word-spacing:4.410111pt;}
.wsaa{word-spacing:4.463245pt;}
.ws7e{word-spacing:4.495155pt;}
.ws56{word-spacing:4.569513pt;}
.wsed{word-spacing:4.622646pt;}
.ws115{word-spacing:4.734259pt;}
.ws7d{word-spacing:4.829901pt;}
.ws53{word-spacing:4.835182pt;}
.ws31{word-spacing:4.994583pt;}
.wse6{word-spacing:5.047717pt;}
.ws88{word-spacing:5.100851pt;}
.ws38{word-spacing:5.153985pt;}
.ws87{word-spacing:5.207119pt;}
.ws65{word-spacing:5.260253pt;}
.ws89{word-spacing:5.366521pt;}
.ws15{word-spacing:5.393072pt;}
.ws3a{word-spacing:5.419654pt;}
.ws16{word-spacing:5.467459pt;}
.wsf0{word-spacing:5.472788pt;}
.ws13a{word-spacing:5.595034pt;}
.ws80{word-spacing:5.632190pt;}
.ws113{word-spacing:5.642854pt;}
.ws10e{word-spacing:5.690675pt;}
.wsa1{word-spacing:5.738458pt;}
.ws58{word-spacing:5.791591pt;}
.wse0{word-spacing:5.844725pt;}
.ws116{word-spacing:5.977600pt;}
.wsdd{word-spacing:6.004127pt;}
.ws51{word-spacing:6.057261pt;}
.ws57{word-spacing:6.163529pt;}
.wse9{word-spacing:6.376064pt;}
.wsc3{word-spacing:6.482332pt;}
.ws12c{word-spacing:6.551450pt;}
.ws81{word-spacing:6.588599pt;}
.ws5a{word-spacing:6.641733pt;}
.ws11f{word-spacing:6.647091pt;}
.ws6f{word-spacing:6.694867pt;}
.wsef{word-spacing:6.748001pt;}
.ws12f{word-spacing:6.790554pt;}
.wseb{word-spacing:6.854269pt;}
.ws59{word-spacing:7.066804pt;}
.wsc2{word-spacing:7.491875pt;}
.wsc4{word-spacing:7.545009pt;}
.ws82{word-spacing:7.598143pt;}
.ws64{word-spacing:7.651277pt;}
.ws13{word-spacing:7.699075pt;}
.wse5{word-spacing:7.757545pt;}
.ws111{word-spacing:7.842611pt;}
.ws118{word-spacing:7.938253pt;}
.ws22{word-spacing:9.229414pt;}
.wsc{word-spacing:9.298400pt;}
.ws6b{word-spacing:11.848852pt;}
.ws9{word-spacing:13.763148pt;}
.ws10{word-spacing:14.348669pt;}
.ws11{word-spacing:14.356730pt;}
.ws12{word-spacing:15.732893pt;}
.ws14{word-spacing:24.399002pt;}
.ws4{word-spacing:48.878387pt;}
.wsbb{word-spacing:81.283200pt;}
.wsb6{word-spacing:86.013867pt;}
.wsb9{word-spacing:89.570357pt;}
.wsb4{word-spacing:93.160533pt;}
.wsb5{word-spacing:93.165867pt;}
.wsb2{word-spacing:101.538357pt;}
.wsb7{word-spacing:104.625597pt;}
.wsb3{word-spacing:108.233376pt;}
.wsba{word-spacing:112.365867pt;}
.wsb8{word-spacing:123.743107pt;}
.wsa8{word-spacing:125.311226pt;}
.wsa7{word-spacing:125.353733pt;}
.wsb1{word-spacing:127.425274pt;}
.wsb0{word-spacing:182.657770pt;}
.wsa6{word-spacing:207.620000pt;}
.wsa5{word-spacing:224.820581pt;}
.ws93{word-spacing:435.169280pt;}
.wsad{word-spacing:451.319063pt;}
.wsc8{word-spacing:451.625856pt;}
.ws91{word-spacing:463.718298pt;}
.wsdc{word-spacing:465.087633pt;}
.wsdb{word-spacing:475.341423pt;}
.ws95{word-spacing:482.846618pt;}
.ws9d{word-spacing:488.872038pt;}
.ws9e{word-spacing:494.084506pt;}
.ws97{word-spacing:520.242483pt;}
.ws9f{word-spacing:524.546355pt;}
.ws9b{word-spacing:526.507008pt;}
.ws8a{word-spacing:529.041510pt;}
.ws94{word-spacing:531.528192pt;}
.ws9c{word-spacing:533.536666pt;}
.ws98{word-spacing:548.361114pt;}
.ws8b{word-spacing:554.912563pt;}
.ws96{word-spacing:556.442829pt;}
.ws90{word-spacing:566.006989pt;}
.ws8e{word-spacing:571.362918pt;}
.ws99{word-spacing:576.479744pt;}
.ws8c{word-spacing:578.153472pt;}
.ws92{word-spacing:581.692211pt;}
.ws8d{word-spacing:583.318118pt;}
.ws8f{word-spacing:604.694016pt;}
.wsca{word-spacing:829.175168pt;}
.wscc{word-spacing:831.357397pt;}
.wsce{word-spacing:856.723396pt;}
.wscd{word-spacing:891.873306pt;}
.wsd0{word-spacing:1612.153762pt;}
.wsd3{word-spacing:1653.905306pt;}
.wsd4{word-spacing:1660.840730pt;}
.wsd2{word-spacing:1662.487031pt;}
.wsd6{word-spacing:2259.609762pt;}
.wsd7{word-spacing:2276.200064pt;}
.wsda{word-spacing:2308.286063pt;}
.wsd9{word-spacing:2324.070639pt;}
._5c{margin-left:-13.287435pt;}
._2{margin-left:-7.077478pt;}
._b{margin-left:-5.483429pt;}
._28{margin-left:-4.399514pt;}
._6{margin-left:-3.421811pt;}
._4{margin-left:-2.019288pt;}
._1{margin-left:-0.944910pt;}
._5{width:0.969929pt;}
._8{width:2.045648pt;}
._1a{width:2.937559pt;}
._15{width:3.931906pt;}
._1b{width:5.344000pt;}
._1c{width:7.000640pt;}
._0{width:9.035708pt;}
._91{width:9.958921pt;}
._7{width:10.859022pt;}
._9{width:11.903082pt;}
._18{width:13.124065pt;}
._c{width:14.478196pt;}
._16{width:15.461955pt;}
._e{width:16.790302pt;}
._12{width:18.182624pt;}
._11{width:19.233601pt;}
._13{width:20.775342pt;}
._8c{width:21.869056pt;}
._17{width:22.771430pt;}
._8f{width:23.870100pt;}
._d{width:25.604480pt;}
._8d{width:26.502300pt;}
._3a{width:27.394935pt;}
._a{width:29.011008pt;}
._14{width:30.593608pt;}
._21{width:32.039722pt;}
._1e{width:32.996131pt;}
._39{width:34.164418pt;}
._1f{width:36.533101pt;}
._20{width:39.679499pt;}
._3{width:48.302123pt;}
._90{width:54.993920pt;}
._7f{width:72.270359pt;}
._8e{width:78.904320pt;}
._6a{width:80.338176pt;}
._6f{width:83.343913pt;}
._79{width:86.389174pt;}
._76{width:90.589617pt;}
._6d{width:91.662629pt;}
._69{width:94.806486pt;}
._7c{width:98.071555pt;}
._7d{width:105.629824pt;}
._65{width:106.708438pt;}
._77{width:110.390605pt;}
._43{width:111.411371pt;}
._71{width:114.252712pt;}
._67{width:117.966529pt;}
._75{width:121.176749pt;}
._57{width:124.673618pt;}
._78{width:125.900336pt;}
._44{width:129.816989pt;}
._3c{width:132.749986pt;}
._51{width:136.108054pt;}
._72{width:137.564726pt;}
._74{width:151.758261pt;}
._5a{width:161.144795pt;}
._41{width:162.717562pt;}
._3e{width:164.757907pt;}
._3d{width:166.883267pt;}
._3f{width:169.433699pt;}
._40{width:171.984131pt;}
._61{width:173.396563pt;}
._60{width:182.694963pt;}
._49{width:188.476925pt;}
._45{width:193.482765pt;}
._7b{width:200.214587pt;}
._42{width:206.074906pt;}
._4d{width:210.708190pt;}
._5f{width:211.662331pt;}
._86{width:229.326413pt;}
._58{width:235.452714pt;}
._46{width:236.382539pt;}
._47{width:238.677928pt;}
._48{width:245.394066pt;}
._50{width:253.215390pt;}
._82{width:263.924625pt;}
._63{width:274.749123pt;}
._62{width:283.415232pt;}
._4c{width:288.326338pt;}
._59{width:302.056163pt;}
._4b{width:303.798958pt;}
._85{width:308.688631pt;}
._83{width:332.187093pt;}
._4e{width:333.681520pt;}
._80{width:338.317943pt;}
._7e{width:341.028118pt;}
._66{width:342.590250pt;}
._68{width:343.520090pt;}
._3b{width:357.102987pt;}
._7a{width:363.381472pt;}
._f{width:372.220213pt;}
._56{width:384.350102pt;}
._4a{width:386.645491pt;}
._6b{width:395.070419pt;}
._5e{width:403.189293pt;}
._52{width:410.024451pt;}
._24{width:411.497984pt;}
._35{width:416.471347pt;}
._27{width:420.297011pt;}
._84{width:421.567351pt;}
._89{width:425.126912pt;}
._6e{width:427.688155pt;}
._23{width:433.749402pt;}
._64{width:441.413645pt;}
._2b{width:446.323032pt;}
._32{width:448.298714pt;}
._2c{width:453.750405pt;}
._81{width:463.632000pt;}
._37{width:468.596019pt;}
._55{width:472.084963pt;}
._33{width:483.590464pt;}
._8b{width:485.046374pt;}
._34{width:488.585114pt;}
._2a{width:489.887781pt;}
._36{width:492.517233pt;}
._2d{width:503.696486pt;}
._29{width:511.565753pt;}
._38{width:516.560282pt;}
._8a{width:543.041499pt;}
._26{width:556.921037pt;}
._31{width:562.468250pt;}
._22{width:564.630757pt;}
._2e{width:565.608459pt;}
._4f{width:567.258584pt;}
._54{width:569.936538pt;}
._30{width:574.423450pt;}
._25{width:580.831437pt;}
._6c{width:584.387281pt;}
._2f{width:586.378650pt;}
._73{width:601.792448pt;}
._53{width:609.425726pt;}
._88{width:612.632269pt;}
._70{width:636.345302pt;}
._87{width:670.097377pt;}
._1d{width:754.746667pt;}
._5b{width:1783.292976pt;}
._10{width:1804.546309pt;}
._19{width:1840.407671pt;}
._5d{width:3098.567642pt;}
.fs8{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:37.276537pt;}
.fs13{font-size:38.755733pt;}
.fse{font-size:39.138363pt;}
.fs4{font-size:40.381867pt;}
.fs5{font-size:41.988267pt;}
.fs9{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fsf{font-size:43.382282pt;}
.fs10{font-size:43.476591pt;}
.fs11{font-size:44.292800pt;}
.fsa{font-size:47.820800pt;}
.fsd{font-size:48.000000pt;}
.fs14{font-size:49.829333pt;}
.fs0{font-size:50.395200pt;}
.fs2{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fs1{font-size:53.754880pt;}
.fs12{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.yf3{bottom:-612.281333pt;}
.y111{bottom:-518.521333pt;}
.y110{bottom:-498.761333pt;}
.y10f{bottom:-481.641333pt;}
.y10e{bottom:-464.601333pt;}
.y10d{bottom:-447.454667pt;}
.y10c{bottom:-430.414667pt;}
.y10b{bottom:-413.294667pt;}
.y10a{bottom:-396.174667pt;}
.y109{bottom:-379.134667pt;}
.y108{bottom:-362.014667pt;}
.y107{bottom:-344.894667pt;}
.y106{bottom:-327.854667pt;}
.y105{bottom:-310.734667pt;}
.y104{bottom:-293.694667pt;}
.y103{bottom:-276.574667pt;}
.y102{bottom:-259.454667pt;}
.y101{bottom:-242.414667pt;}
.y100{bottom:-225.294667pt;}
.yff{bottom:-208.254667pt;}
.yfe{bottom:-191.134667pt;}
.yfd{bottom:-174.014667pt;}
.yfc{bottom:-156.974667pt;}
.yfb{bottom:-139.854667pt;}
.yfa{bottom:-122.814667pt;}
.yf9{bottom:-105.694667pt;}
.yf8{bottom:-84.574667pt;}
.yf7{bottom:-63.428000pt;}
.yf6{bottom:-30.788000pt;}
.y13c{bottom:-17.683978pt;}
.y13e{bottom:-17.682995pt;}
.y125{bottom:-15.826281pt;}
.yf5{bottom:-15.348000pt;}
.y122{bottom:-11.552890pt;}
.y128{bottom:-10.963457pt;}
.y0{bottom:0.000000pt;}
.y133{bottom:0.825206pt;}
.yb{bottom:3.044747pt;}
.yf4{bottom:4.572000pt;}
.y4{bottom:5.644850pt;}
.y13b{bottom:5.658559pt;}
.y139{bottom:6.295146pt;}
.y124{bottom:7.426858pt;}
.y12a{bottom:7.898110pt;}
.y121{bottom:12.024437pt;}
.y127{bottom:12.378097pt;}
.ya{bottom:12.578910pt;}
.y3{bottom:18.051729pt;}
.y132{bottom:24.190338pt;}
.y4d{bottom:28.346667pt;}
.y138{bottom:29.636700pt;}
.y2{bottom:32.990462pt;}
.y120{bottom:35.749122pt;}
.y131{bottom:46.353025pt;}
.y137{bottom:51.800370pt;}
.y11f{bottom:59.326450pt;}
.y130{bottom:68.516695pt;}
.y136{bottom:73.963058pt;}
.y11e{bottom:82.903777pt;}
.y15e{bottom:84.812000pt;}
.y2e9{bottom:88.065333pt;}
.y12f{bottom:90.679383pt;}
.y260{bottom:91.021333pt;}
.y23{bottom:91.398667pt;}
.y31e{bottom:92.050667pt;}
.y28f{bottom:94.441333pt;}
.yb9{bottom:94.840000pt;}
.y83{bottom:95.621333pt;}
.y135{bottom:96.145393pt;}
.y4c{bottom:96.457333pt;}
.ydb{bottom:99.224000pt;}
.y2b0{bottom:101.376000pt;}
.y15d{bottom:101.549333pt;}
.y2e8{bottom:103.408000pt;}
.y271{bottom:103.857333pt;}
.y11d{bottom:106.363217pt;}
.y22{bottom:107.298667pt;}
.y31d{bottom:107.393333pt;}
.y25f{bottom:110.310667pt;}
.y28e{bottom:111.178667pt;}
.yb8{bottom:111.577333pt;}
.y82{bottom:112.358667pt;}
.y1bb{bottom:112.768000pt;}
.y12e{bottom:112.861718pt;}
.y4b{bottom:113.194667pt;}
.y233{bottom:115.102667pt;}
.yda{bottom:115.961333pt;}
.y15c{bottom:118.286667pt;}
.y2e7{bottom:118.750667pt;}
.y270{bottom:120.594667pt;}
.y232{bottom:122.409333pt;}
.y31c{bottom:122.736000pt;}
.y21{bottom:123.200000pt;}
.y2af{bottom:124.968000pt;}
.y1ba{bottom:125.388000pt;}
.y28d{bottom:127.916000pt;}
.yb7{bottom:128.314667pt;}
.y81{bottom:129.096000pt;}
.y234{bottom:129.714667pt;}
.y4a{bottom:129.932000pt;}
.y25e{bottom:131.325333pt;}
.yd9{bottom:132.698667pt;}
.y2e6{bottom:134.093333pt;}
.y12d{bottom:135.024406pt;}
.y26f{bottom:137.332000pt;}
.y1b9{bottom:138.006667pt;}
.y31b{bottom:138.078667pt;}
.y15b{bottom:139.008000pt;}
.y20{bottom:139.100000pt;}
.y2ae{bottom:140.589333pt;}
.y28c{bottom:144.653333pt;}
.yb6{bottom:145.052000pt;}
.y80{bottom:145.833333pt;}
.y49{bottom:146.669333pt;}
.yd8{bottom:149.436000pt;}
.y1b8{bottom:150.626667pt;}
.y230{bottom:150.729333pt;}
.y25c{bottom:152.338667pt;}
.y31a{bottom:153.421333pt;}
.y26e{bottom:154.069333pt;}
.y1f{bottom:155.000000pt;}
.y2ad{bottom:156.210667pt;}
.y12c{bottom:157.187093pt;}
.y22f{bottom:158.034667pt;}
.y25b{bottom:159.645333pt;}
.y28b{bottom:161.390667pt;}
.yb5{bottom:161.789333pt;}
.y7f{bottom:162.570667pt;}
.y1b7{bottom:163.245333pt;}
.y48{bottom:163.405333pt;}
.y181{bottom:163.485333pt;}
.y2e5{bottom:164.778667pt;}
.y231{bottom:165.341333pt;}
.yd7{bottom:166.173333pt;}
.y25d{bottom:166.950667pt;}
.y319{bottom:168.762667pt;}
.y15a{bottom:168.896000pt;}
.y26d{bottom:170.806667pt;}
.y1e{bottom:170.901333pt;}
.y1b6{bottom:175.865333pt;}
.y180{bottom:178.097333pt;}
.y28a{bottom:178.128000pt;}
.yb4{bottom:178.526667pt;}
.y7e{bottom:179.308000pt;}
.y2ac{bottom:179.802667pt;}
.y2e4{bottom:180.121333pt;}
.y47{bottom:180.142667pt;}
.yd6{bottom:182.910667pt;}
.y318{bottom:184.105333pt;}
.y159{bottom:185.633333pt;}
.y22d{bottom:186.354667pt;}
.y1d{bottom:186.801333pt;}
.y26c{bottom:187.544000pt;}
.y259{bottom:187.965333pt;}
.y1b5{bottom:188.484000pt;}
.y17f{bottom:192.709333pt;}
.y17c{bottom:193.241333pt;}
.y22c{bottom:193.661333pt;}
.y289{bottom:194.865333pt;}
.yb3{bottom:195.264000pt;}
.y258{bottom:195.270667pt;}
.y2ab{bottom:195.424000pt;}
.y2e3{bottom:195.462667pt;}
.y7d{bottom:196.045333pt;}
.y46{bottom:196.880000pt;}
.y317{bottom:199.448000pt;}
.yd5{bottom:199.648000pt;}
.y22e{bottom:200.966667pt;}
.y1b4{bottom:201.104000pt;}
.y158{bottom:202.370667pt;}
.y25a{bottom:202.577333pt;}
.y1c{bottom:202.701333pt;}
.y26b{bottom:204.281333pt;}
.y17e{bottom:207.320000pt;}
.y2e2{bottom:210.805333pt;}
.y288{bottom:211.602667pt;}
.yb2{bottom:212.001333pt;}
.y7c{bottom:212.782667pt;}
.y45{bottom:213.617333pt;}
.y1b3{bottom:213.722667pt;}
.y316{bottom:214.790667pt;}
.yd4{bottom:216.385333pt;}
.y11b{bottom:216.483818pt;}
.y2aa{bottom:219.016000pt;}
.y157{bottom:219.108000pt;}
.y26a{bottom:221.017333pt;}
.y17d{bottom:221.932000pt;}
.y22a{bottom:221.980000pt;}
.y256{bottom:223.590667pt;}
.y2e1{bottom:226.148000pt;}
.y1b2{bottom:226.342667pt;}
.y287{bottom:228.340000pt;}
.yb1{bottom:228.738667pt;}
.y229{bottom:229.286667pt;}
.y7b{bottom:229.520000pt;}
.y315{bottom:230.133333pt;}
.y44{bottom:230.354667pt;}
.y255{bottom:230.896000pt;}
.yd3{bottom:233.122667pt;}
.y156{bottom:235.845333pt;}
.y22b{bottom:236.592000pt;}
.y269{bottom:237.754667pt;}
.y257{bottom:238.202667pt;}
.y11a{bottom:238.558090pt;}
.y1b1{bottom:238.961333pt;}
.y2e0{bottom:241.490667pt;}
.y2a9{bottom:242.606667pt;}
.y17b{bottom:242.946667pt;}
.y286{bottom:245.077333pt;}
.yb0{bottom:245.476000pt;}
.y7a{bottom:246.257333pt;}
.y43{bottom:247.092000pt;}
.yd2{bottom:249.860000pt;}
.y1b0{bottom:251.581333pt;}
.y155{bottom:252.582667pt;}
.y268{bottom:254.492000pt;}
.y2df{bottom:256.833333pt;}
.y17a{bottom:257.558667pt;}
.y227{bottom:257.606667pt;}
.y2a8{bottom:258.228000pt;}
.y253{bottom:259.216000pt;}
.y119{bottom:260.720778pt;}
.y314{bottom:260.818667pt;}
.y285{bottom:261.814667pt;}
.yaf{bottom:262.213333pt;}
.y79{bottom:262.994667pt;}
.y42{bottom:263.829333pt;}
.y1af{bottom:264.200000pt;}
.y226{bottom:264.912000pt;}
.y177{bottom:265.396000pt;}
.y252{bottom:266.522667pt;}
.yd1{bottom:266.597333pt;}
.y154{bottom:269.320000pt;}
.y267{bottom:271.229333pt;}
.y179{bottom:272.170667pt;}
.y2de{bottom:272.176000pt;}
.y228{bottom:272.218667pt;}
.y1b{bottom:273.154667pt;}
.y254{bottom:273.828000pt;}
.y2a7{bottom:273.849333pt;}
.y313{bottom:276.161333pt;}
.y1ae{bottom:276.820000pt;}
.y284{bottom:278.552000pt;}
.yae{bottom:278.950667pt;}
.y78{bottom:279.732000pt;}
.y41{bottom:280.566667pt;}
.y118{bottom:282.765579pt;}
.yd0{bottom:283.334667pt;}
.y153{bottom:286.057333pt;}
.y178{bottom:286.782667pt;}
.y2dd{bottom:287.518667pt;}
.y266{bottom:287.966667pt;}
.y1a{bottom:289.054667pt;}
.y1ad{bottom:289.438667pt;}
.y2a6{bottom:289.470667pt;}
.y312{bottom:291.502667pt;}
.y224{bottom:293.232000pt;}
.y250{bottom:294.842667pt;}
.y283{bottom:295.289333pt;}
.yad{bottom:295.688000pt;}
.y117{bottom:295.733109pt;}
.y77{bottom:296.469333pt;}
.y40{bottom:297.304000pt;}
.yef{bottom:298.477333pt;}
.ycf{bottom:300.072000pt;}
.y223{bottom:300.538667pt;}
.y24f{bottom:302.148000pt;}
.y152{bottom:302.794667pt;}
.y2dc{bottom:302.861333pt;}
.y265{bottom:304.704000pt;}
.y19{bottom:304.954667pt;}
.y2a5{bottom:305.093333pt;}
.y311{bottom:306.845333pt;}
.y176{bottom:307.796000pt;}
.y225{bottom:307.844000pt;}
.y116{bottom:308.346979pt;}
.y1ac{bottom:308.460000pt;}
.y1d1{bottom:309.237333pt;}
.y251{bottom:309.454667pt;}
.y282{bottom:312.026667pt;}
.yac{bottom:312.425333pt;}
.y76{bottom:313.205333pt;}
.y3f{bottom:314.041333pt;}
.yee{bottom:315.214667pt;}
.yce{bottom:316.809333pt;}
.y2db{bottom:318.202667pt;}
.y151{bottom:319.532000pt;}
.y2a4{bottom:320.714667pt;}
.y18{bottom:320.856000pt;}
.y115{bottom:320.980497pt;}
.y264{bottom:321.441333pt;}
.y310{bottom:322.188000pt;}
.y175{bottom:322.408000pt;}
.y1d0{bottom:325.974667pt;}
.y281{bottom:328.764000pt;}
.y221{bottom:328.858667pt;}
.yab{bottom:329.162667pt;}
.y75{bottom:329.942667pt;}
.y24d{bottom:330.468000pt;}
.y3e{bottom:330.778667pt;}
.yed{bottom:331.952000pt;}
.y114{bottom:333.476480pt;}
.y2da{bottom:333.545333pt;}
.ycd{bottom:333.546667pt;}
.y1ab{bottom:335.172000pt;}
.y220{bottom:336.164000pt;}
.y150{bottom:336.269333pt;}
.y2a3{bottom:336.336000pt;}
.y174{bottom:337.020000pt;}
.y171{bottom:337.369333pt;}
.y30f{bottom:337.530667pt;}
.y24c{bottom:337.774667pt;}
.y263{bottom:338.178667pt;}
.y1cf{bottom:342.712000pt;}
.y222{bottom:343.470667pt;}
.y24e{bottom:345.080000pt;}
.y280{bottom:345.501333pt;}
.yaa{bottom:345.900000pt;}
.y113{bottom:346.090350pt;}
.y74{bottom:346.680000pt;}
.y3d{bottom:347.516000pt;}
.yec{bottom:348.689333pt;}
.y2d9{bottom:348.888000pt;}
.ycc{bottom:350.284000pt;}
.y173{bottom:351.632000pt;}
.y2a2{bottom:351.957333pt;}
.y30e{bottom:352.873333pt;}
.y14f{bottom:353.006667pt;}
.y17{bottom:354.688000pt;}
.y262{bottom:354.916000pt;}
.y1ce{bottom:359.449333pt;}
.y27f{bottom:362.238667pt;}
.ya9{bottom:362.637333pt;}
.y73{bottom:363.417333pt;}
.y2d8{bottom:364.230667pt;}
.y21e{bottom:364.484000pt;}
.yeb{bottom:365.426667pt;}
.y24a{bottom:366.094667pt;}
.y172{bottom:366.244000pt;}
.y1aa{bottom:366.825333pt;}
.ycb{bottom:367.021333pt;}
.y2a1{bottom:367.578667pt;}
.y30d{bottom:368.216000pt;}
.y3c{bottom:368.238667pt;}
.y14e{bottom:369.744000pt;}
.y16{bottom:370.589333pt;}
.y261{bottom:371.653333pt;}
.y21d{bottom:371.789333pt;}
.y249{bottom:373.400000pt;}
.y1cd{bottom:376.186667pt;}
.y27e{bottom:378.976000pt;}
.y21f{bottom:379.096000pt;}
.ya8{bottom:379.374667pt;}
.y2d7{bottom:379.573333pt;}
.y72{bottom:380.154667pt;}
.y24b{bottom:380.705333pt;}
.yea{bottom:382.164000pt;}
.y2a0{bottom:383.200000pt;}
.y30c{bottom:383.558667pt;}
.y1a9{bottom:383.562667pt;}
.yca{bottom:383.757333pt;}
.y14d{bottom:386.481333pt;}
.y15{bottom:386.489333pt;}
.y170{bottom:387.257333pt;}
.y208{bottom:388.390667pt;}
.y2d6{bottom:394.916000pt;}
.y27d{bottom:395.713333pt;}
.yf2{bottom:395.798667pt;}
.ya7{bottom:396.112000pt;}
.y71{bottom:396.892000pt;}
.y29f{bottom:398.821333pt;}
.ye9{bottom:398.901333pt;}
.y21b{bottom:400.109333pt;}
.y1a8{bottom:400.298667pt;}
.yc9{bottom:400.494667pt;}
.y247{bottom:401.720000pt;}
.y16f{bottom:401.869333pt;}
.y16d{bottom:402.218667pt;}
.y14c{bottom:403.218667pt;}
.yf1{bottom:404.518667pt;}
.y207{bottom:405.128000pt;}
.y1cc{bottom:406.870667pt;}
.y21a{bottom:407.416000pt;}
.y246{bottom:409.025333pt;}
.y2d5{bottom:410.258667pt;}
.y27c{bottom:412.450667pt;}
.ya6{bottom:412.848000pt;}
.y30b{bottom:414.244000pt;}
.y29e{bottom:414.442667pt;}
.y21c{bottom:414.721333pt;}
.ye8{bottom:415.638667pt;}
.y248{bottom:416.332000pt;}
.y16e{bottom:416.481333pt;}
.y1a7{bottom:417.036000pt;}
.yc8{bottom:417.232000pt;}
.y70{bottom:417.614667pt;}
.y14{bottom:418.330667pt;}
.y14b{bottom:419.956000pt;}
.y206{bottom:421.865333pt;}
.y2d4{bottom:425.601333pt;}
.y27b{bottom:429.188000pt;}
.ya5{bottom:429.585333pt;}
.y29d{bottom:430.064000pt;}
.ye7{bottom:432.376000pt;}
.y1a6{bottom:433.773333pt;}
.yc7{bottom:433.969333pt;}
.y3b{bottom:435.038667pt;}
.y6f{bottom:435.548000pt;}
.y218{bottom:435.736000pt;}
.y14a{bottom:436.693333pt;}
.y244{bottom:437.345333pt;}
.y16c{bottom:437.494667pt;}
.y1cb{bottom:437.556000pt;}
.y205{bottom:438.602667pt;}
.y2d3{bottom:440.944000pt;}
.y217{bottom:443.041333pt;}
.y243{bottom:444.652000pt;}
.y30a{bottom:444.928000pt;}
.y29c{bottom:445.685333pt;}
.y27a{bottom:445.925333pt;}
.ya4{bottom:446.322667pt;}
.ye6{bottom:449.113333pt;}
.y13{bottom:450.170667pt;}
.y219{bottom:450.348000pt;}
.y1a5{bottom:450.510667pt;}
.y245{bottom:451.957333pt;}
.y16b{bottom:452.106667pt;}
.y3a{bottom:452.333333pt;}
.y169{bottom:452.457333pt;}
.y149{bottom:453.430667pt;}
.y1ca{bottom:454.293333pt;}
.yc6{bottom:454.692000pt;}
.y204{bottom:455.340000pt;}
.y2d2{bottom:456.285333pt;}
.y309{bottom:460.270667pt;}
.y29b{bottom:461.306667pt;}
.y279{bottom:462.662667pt;}
.ya3{bottom:463.060000pt;}
.y6e{bottom:465.436000pt;}
.ye5{bottom:465.850667pt;}
.y12{bottom:466.070667pt;}
.y16a{bottom:466.718667pt;}
.y1a4{bottom:467.248000pt;}
.y148{bottom:470.168000pt;}
.y1c9{bottom:471.030667pt;}
.y215{bottom:471.361333pt;}
.y2d1{bottom:471.628000pt;}
.y1e3{bottom:471.676000pt;}
.y203{bottom:472.077333pt;}
.y241{bottom:472.972000pt;}
.y308{bottom:475.613333pt;}
.y29a{bottom:476.929333pt;}
.y214{bottom:478.668000pt;}
.y278{bottom:479.398667pt;}
.ya2{bottom:479.797333pt;}
.y240{bottom:480.277333pt;}
.y11{bottom:481.972000pt;}
.y6d{bottom:482.173333pt;}
.y1a3{bottom:483.985333pt;}
.yc5{bottom:484.580000pt;}
.y39{bottom:485.569333pt;}
.y216{bottom:485.973333pt;}
.ye4{bottom:486.572000pt;}
.y147{bottom:486.905333pt;}
.y2d0{bottom:486.970667pt;}
.y242{bottom:487.584000pt;}
.y168{bottom:487.733333pt;}
.y1c8{bottom:487.768000pt;}
.y202{bottom:488.814667pt;}
.y1e2{bottom:490.701333pt;}
.y307{bottom:490.956000pt;}
.y299{bottom:492.550667pt;}
.y277{bottom:496.136000pt;}
.ya1{bottom:496.534667pt;}
.y10{bottom:497.872000pt;}
.y6c{bottom:498.910667pt;}
.y1a2{bottom:500.722667pt;}
.yc4{bottom:501.317333pt;}
.y1e1{bottom:501.328000pt;}
.y2cf{bottom:502.313333pt;}
.y167{bottom:502.345333pt;}
.y38{bottom:502.864000pt;}
.y146{bottom:503.642667pt;}
.y201{bottom:505.552000pt;}
.y306{bottom:506.298667pt;}
.y212{bottom:506.988000pt;}
.y298{bottom:508.172000pt;}
.y23e{bottom:508.597333pt;}
.y1e0{bottom:511.954667pt;}
.y1c7{bottom:512.873333pt;}
.ya0{bottom:513.272000pt;}
.yf{bottom:513.772000pt;}
.y211{bottom:514.293333pt;}
.y6b{bottom:515.648000pt;}
.y23d{bottom:515.904000pt;}
.ye3{bottom:516.460000pt;}
.y166{bottom:516.956000pt;}
.y163{bottom:517.306667pt;}
.y1a1{bottom:517.460000pt;}
.y2ce{bottom:517.656000pt;}
.y37{bottom:520.160000pt;}
.y145{bottom:520.378667pt;}
.y213{bottom:521.598667pt;}
.y305{bottom:521.641333pt;}
.y200{bottom:522.289333pt;}
.y1df{bottom:522.581333pt;}
.y23f{bottom:523.209333pt;}
.y297{bottom:523.793333pt;}
.y1c6{bottom:529.610667pt;}
.ye{bottom:529.673333pt;}
.y9f{bottom:530.009333pt;}
.y165{bottom:531.568000pt;}
.y6a{bottom:532.384000pt;}
.y2cd{bottom:532.998667pt;}
.ye2{bottom:533.197333pt;}
.y1de{bottom:533.208000pt;}
.yc3{bottom:533.994667pt;}
.y1a0{bottom:534.197333pt;}
.y304{bottom:536.984000pt;}
.y144{bottom:537.116000pt;}
.y36{bottom:537.454667pt;}
.y1ff{bottom:539.026667pt;}
.y296{bottom:539.414667pt;}
.y20f{bottom:542.613333pt;}
.y1dd{bottom:543.834667pt;}
.y23b{bottom:544.222667pt;}
.yd{bottom:545.573333pt;}
.y164{bottom:546.180000pt;}
.y1c5{bottom:546.348000pt;}
.y9e{bottom:546.746667pt;}
.y2cc{bottom:548.341333pt;}
.y69{bottom:549.121333pt;}
.y20e{bottom:549.918667pt;}
.yc2{bottom:550.732000pt;}
.y19f{bottom:550.934667pt;}
.y23a{bottom:551.529333pt;}
.y303{bottom:552.325333pt;}
.y143{bottom:553.853333pt;}
.y1dc{bottom:554.461333pt;}
.y35{bottom:554.749333pt;}
.y1fe{bottom:555.764000pt;}
.y210{bottom:557.225333pt;}
.y23c{bottom:558.834667pt;}
.yc{bottom:561.473333pt;}
.y295{bottom:563.006667pt;}
.y1c4{bottom:563.085333pt;}
.y9d{bottom:563.484000pt;}
.y2cb{bottom:563.684000pt;}
.y1db{bottom:565.088000pt;}
.y68{bottom:565.858667pt;}
.ye1{bottom:565.876000pt;}
.y162{bottom:567.194667pt;}
.y302{bottom:567.668000pt;}
.y19e{bottom:567.672000pt;}
.y20d{bottom:571.837333pt;}
.y34{bottom:572.045333pt;}
.y1fd{bottom:572.501333pt;}
.y142{bottom:574.576000pt;}
.y161{bottom:574.849333pt;}
.y1da{bottom:575.714667pt;}
.y294{bottom:578.628000pt;}
.y2ca{bottom:579.025333pt;}
.y1c3{bottom:579.822667pt;}
.y239{bottom:579.849333pt;}
.y9c{bottom:580.221333pt;}
.y9{bottom:581.358715pt;}
.y67{bottom:582.596000pt;}
.ye0{bottom:582.612000pt;}
.y301{bottom:583.010667pt;}
.yc1{bottom:583.409333pt;}
.y19d{bottom:584.409333pt;}
.y1d9{bottom:586.342667pt;}
.y1fc{bottom:589.238667pt;}
.y33{bottom:589.340000pt;}
.y141{bottom:592.509333pt;}
.y20c{bottom:592.850667pt;}
.y293{bottom:594.249333pt;}
.y2c9{bottom:594.368000pt;}
.y238{bottom:594.461333pt;}
.y1c2{bottom:596.560000pt;}
.y9b{bottom:596.958667pt;}
.y1d8{bottom:596.969333pt;}
.y300{bottom:598.353333pt;}
.y66{bottom:599.333333pt;}
.yc0{bottom:600.146667pt;}
.y19c{bottom:601.146667pt;}
.y160{bottom:602.820000pt;}
.y1fb{bottom:605.976000pt;}
.y32{bottom:606.634667pt;}
.y20b{bottom:607.462667pt;}
.y1d7{bottom:607.596000pt;}
.y2c8{bottom:609.710667pt;}
.y1c1{bottom:613.297333pt;}
.y9a{bottom:613.696000pt;}
.ydf{bottom:615.290667pt;}
.y237{bottom:615.474667pt;}
.y65{bottom:616.070667pt;}
.y292{bottom:617.840000pt;}
.y19b{bottom:617.884000pt;}
.y1d6{bottom:618.222667pt;}
.y140{bottom:619.556000pt;}
.y1fa{bottom:622.713333pt;}
.y31{bottom:623.930667pt;}
.y2c7{bottom:625.053333pt;}
.y20a{bottom:628.477333pt;}
.y1d5{bottom:628.849333pt;}
.y2ff{bottom:629.038667pt;}
.y1c0{bottom:630.034667pt;}
.y236{bottom:630.086667pt;}
.y99{bottom:630.433333pt;}
.y15f{bottom:630.926667pt;}
.yde{bottom:632.028000pt;}
.y64{bottom:632.808000pt;}
.ybf{bottom:632.824000pt;}
.y291{bottom:633.462667pt;}
.y13f{bottom:636.652000pt;}
.y1f9{bottom:639.450667pt;}
.y2c6{bottom:640.396000pt;}
.y30{bottom:641.225333pt;}
.y209{bottom:643.088000pt;}
.y2fe{bottom:644.381333pt;}
.y1d4{bottom:645.878667pt;}
.y1bf{bottom:646.772000pt;}
.y98{bottom:647.170667pt;}
.y290{bottom:649.084000pt;}
.y63{bottom:649.545333pt;}
.ybe{bottom:649.561333pt;}
.y2c5{bottom:655.738667pt;}
.y1f8{bottom:656.188000pt;}
.yf0{bottom:656.588000pt;}
.y235{bottom:658.193333pt;}
.y19a{bottom:658.294667pt;}
.y2f{bottom:658.521333pt;}
.y2fd{bottom:659.724000pt;}
.y112{bottom:661.311128pt;}
.y1be{bottom:663.509333pt;}
.y97{bottom:663.908000pt;}
.ydd{bottom:664.705333pt;}
.y129{bottom:665.201428pt;}
.y62{bottom:666.282667pt;}
.y2c4{bottom:671.081333pt;}
.y1d3{bottom:671.194667pt;}
.y199{bottom:672.906667pt;}
.y1f7{bottom:672.924000pt;}
.y2fc{bottom:675.066667pt;}
.y2e{bottom:675.816000pt;}
.y1bd{bottom:680.246667pt;}
.y96{bottom:680.645333pt;}
.ydc{bottom:681.442667pt;}
.ybd{bottom:682.238667pt;}
.y61{bottom:683.020000pt;}
.y2c3{bottom:686.424000pt;}
.y198{bottom:687.518667pt;}
.y1f6{bottom:689.661333pt;}
.y2fb{bottom:690.408000pt;}
.y2d{bottom:693.110667pt;}
.y276{bottom:696.984000pt;}
.y95{bottom:697.382667pt;}
.y12b{bottom:698.798824pt;}
.ybc{bottom:698.976000pt;}
.y60{bottom:699.757333pt;}
.y1bc{bottom:700.969333pt;}
.y2c2{bottom:701.766667pt;}
.y197{bottom:702.130667pt;}
.y2fa{bottom:705.750667pt;}
.y1f5{bottom:706.398667pt;}
.y191{bottom:709.720000pt;}
.y2c{bottom:710.406667pt;}
.y275{bottom:713.721333pt;}
.y94{bottom:714.120000pt;}
.y5f{bottom:716.494667pt;}
.y196{bottom:716.742667pt;}
.y2c1{bottom:717.108000pt;}
.y1d2{bottom:717.981333pt;}
.y134{bottom:719.641182pt;}
.y2f9{bottom:721.093333pt;}
.y1f4{bottom:723.136000pt;}
.y190{bottom:724.332000pt;}
.y274{bottom:730.458667pt;}
.y93{bottom:730.857333pt;}
.y195{bottom:731.354667pt;}
.ybb{bottom:731.654667pt;}
.y2c0{bottom:732.450667pt;}
.y5e{bottom:733.232000pt;}
.y2f8{bottom:736.436000pt;}
.y1f3{bottom:739.873333pt;}
.y2b{bottom:744.704000pt;}
.y194{bottom:745.965333pt;}
.y273{bottom:747.196000pt;}
.y92{bottom:747.594667pt;}
.y2bf{bottom:747.793333pt;}
.yba{bottom:748.392000pt;}
.y5d{bottom:749.969333pt;}
.y2f7{bottom:751.778667pt;}
.y1f2{bottom:756.610667pt;}
.y193{bottom:760.577333pt;}
.y2a{bottom:762.908000pt;}
.y2be{bottom:763.136000pt;}
.y91{bottom:764.332000pt;}
.y5c{bottom:766.706667pt;}
.y2f6{bottom:767.121333pt;}
.y272{bottom:767.918667pt;}
.y13a{bottom:770.262686pt;}
.y1f1{bottom:773.348000pt;}
.y29{bottom:773.397333pt;}
.y192{bottom:775.189333pt;}
.y2bd{bottom:778.478667pt;}
.y90{bottom:781.069333pt;}
.y2f5{bottom:782.464000pt;}
.y5b{bottom:783.444000pt;}
.y1f0{bottom:790.085333pt;}
.y28{bottom:791.601333pt;}
.y13d{bottom:793.014806pt;}
.y2bc{bottom:793.821333pt;}
.y18f{bottom:796.204000pt;}
.y8f{bottom:797.806667pt;}
.y5a{bottom:800.181333pt;}
.y27{bottom:802.089333pt;}
.y1ef{bottom:806.822667pt;}
.y2bb{bottom:809.164000pt;}
.y18e{bottom:810.816000pt;}
.y2f4{bottom:813.149333pt;}
.y8e{bottom:814.544000pt;}
.y59{bottom:816.918667pt;}
.y26{bottom:820.293333pt;}
.y1ee{bottom:823.560000pt;}
.y2ba{bottom:824.506667pt;}
.y18d{bottom:825.428000pt;}
.y18a{bottom:825.777333pt;}
.y2f3{bottom:828.490667pt;}
.y25{bottom:830.781333pt;}
.y8d{bottom:831.281333pt;}
.y58{bottom:833.656000pt;}
.y2b9{bottom:839.848000pt;}
.y18c{bottom:840.038667pt;}
.y1ed{bottom:840.297333pt;}
.y2f2{bottom:843.833333pt;}
.y8c{bottom:848.018667pt;}
.y24{bottom:848.985333pt;}
.y57{bottom:850.393333pt;}
.y126{bottom:851.506226pt;}
.y11c{bottom:853.628185pt;}
.y18b{bottom:854.650667pt;}
.y2b8{bottom:855.190667pt;}
.y1ec{bottom:857.034667pt;}
.y2f1{bottom:859.176000pt;}
.y8b{bottom:864.754667pt;}
.y56{bottom:867.130667pt;}
.y2b7{bottom:870.533333pt;}
.y1eb{bottom:873.772000pt;}
.y2f0{bottom:874.518667pt;}
.y189{bottom:875.665333pt;}
.y8a{bottom:881.492000pt;}
.y55{bottom:883.868000pt;}
.y8{bottom:884.713333pt;}
.y2b6{bottom:885.876000pt;}
.y123{bottom:888.316328pt;}
.y2ef{bottom:889.861333pt;}
.y188{bottom:890.277333pt;}
.y1ea{bottom:890.509333pt;}
.y89{bottom:898.229333pt;}
.y54{bottom:900.605333pt;}
.y2b5{bottom:901.218667pt;}
.y187{bottom:904.889333pt;}
.y2ee{bottom:905.204000pt;}
.y184{bottom:905.421333pt;}
.y1e9{bottom:907.246667pt;}
.y88{bottom:914.966667pt;}
.y2b4{bottom:916.561333pt;}
.y53{bottom:917.342667pt;}
.y186{bottom:919.501333pt;}
.y2ed{bottom:920.546667pt;}
.y1e8{bottom:923.984000pt;}
.y7{bottom:925.510667pt;}
.y87{bottom:931.704000pt;}
.y2b3{bottom:931.904000pt;}
.y52{bottom:934.080000pt;}
.y185{bottom:934.112000pt;}
.y2ec{bottom:935.889333pt;}
.y1e7{bottom:940.721333pt;}
.y2b2{bottom:947.246667pt;}
.y86{bottom:948.441333pt;}
.y6{bottom:950.616000pt;}
.y51{bottom:950.817333pt;}
.y2eb{bottom:951.230667pt;}
.y183{bottom:955.126667pt;}
.y1e6{bottom:957.458667pt;}
.y2b1{bottom:962.589333pt;}
.y85{bottom:965.178667pt;}
.y2ea{bottom:966.573333pt;}
.y50{bottom:967.554667pt;}
.y1e5{bottom:974.196000pt;}
.y5{bottom:975.722667pt;}
.y84{bottom:981.916000pt;}
.y182{bottom:983.233333pt;}
.y4f{bottom:984.290667pt;}
.y1e4{bottom:994.918667pt;}
.y1{bottom:1014.377333pt;}
.y4e{bottom:1043.020000pt;}
.h23{height:15.796809pt;}
.h24{height:15.820387pt;}
.h1d{height:17.565109pt;}
.h1f{height:18.036655pt;}
.h1e{height:22.516347pt;}
.h8{height:22.673858pt;}
.h2c{height:26.890973pt;}
.h29{height:27.184641pt;}
.hc{height:28.947524pt;}
.ha{height:29.433775pt;}
.h9{height:30.399505pt;}
.h27{height:30.732706pt;}
.h1b{height:33.659398pt;}
.hb{height:33.771789pt;}
.he{height:34.574438pt;}
.h3{height:35.024664pt;}
.h26{height:35.052646pt;}
.h18{height:36.405558pt;}
.h4{height:36.445809pt;}
.h28{height:37.087439pt;}
.h10{height:38.415786pt;}
.hd{height:38.596538pt;}
.h5{height:38.947124pt;}
.h16{height:39.166719pt;}
.h13{height:39.588281pt;}
.h1c{height:40.353148pt;}
.h22{height:40.440872pt;}
.h19{height:43.149272pt;}
.hf{height:43.421286pt;}
.h15{height:44.648438pt;}
.h2{height:45.272024pt;}
.h11{height:48.245551pt;}
.h7{height:48.481423pt;}
.h14{height:49.708594pt;}
.h6{height:69.148877pt;}
.h25{height:71.250620pt;}
.h2f{height:72.642620pt;}
.h2e{height:72.647953pt;}
.h2d{height:93.022438pt;}
.h21{height:106.333746pt;}
.h1a{height:117.788397pt;}
.h20{height:167.330256pt;}
.h17{height:333.888872pt;}
.h12{height:338.612000pt;}
.h2a{height:793.701333pt;}
.h2b{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.wa{width:178.343940pt;}
.w2{width:191.879724pt;}
.w7{width:254.500962pt;}
.w8{width:259.451687pt;}
.w9{width:259.805310pt;}
.wb{width:268.301739pt;}
.w6{width:274.578550pt;}
.w5{width:683.524422pt;}
.w4{width:692.114933pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.wc{width:1122.520000pt;}
.wd{width:1122.666667pt;}
.x90{left:-14.154400pt;}
.x97{left:-5.903193pt;}
.x0{left:0.000000pt;}
.xae{left:7.072463pt;}
.x92{left:14.165600pt;}
.x4{left:26.021437pt;}
.x3{left:47.068000pt;}
.x1{left:48.000000pt;}
.x8f{left:50.794400pt;}
.x2{left:52.456952pt;}
.xa3{left:54.919988pt;}
.xc7{left:55.970667pt;}
.xa6{left:59.163466pt;}
.xa5{left:61.167330pt;}
.xe6{left:65.501333pt;}
.xed{left:66.536000pt;}
.xe8{left:69.206667pt;}
.xa4{left:71.422401pt;}
.xe9{left:72.388000pt;}
.xee{left:73.864000pt;}
.xaf{left:76.346667pt;}
.x99{left:81.834290pt;}
.xea{left:83.500000pt;}
.xa9{left:84.820441pt;}
.xa0{left:86.765717pt;}
.x9a{left:87.963758pt;}
.xa8{left:89.181793pt;}
.xdc{left:90.816000pt;}
.x9e{left:92.070064pt;}
.x96{left:95.606295pt;}
.xa1{left:97.138662pt;}
.x9b{left:99.751196pt;}
.x98{left:101.519312pt;}
.xdb{left:102.466667pt;}
.xe5{left:105.753333pt;}
.x9c{left:106.941533pt;}
.xf0{left:117.469333pt;}
.xab{left:118.611097pt;}
.x9f{left:120.359916pt;}
.xc6{left:124.040000pt;}
.xa2{left:125.664263pt;}
.xe3{left:127.757333pt;}
.xef{left:131.122667pt;}
.xb0{left:132.058667pt;}
.xac{left:134.170515pt;}
.x9d{left:137.235249pt;}
.x93{left:159.712267pt;}
.x94{left:188.032267pt;}
.xaa{left:211.467354pt;}
.x7{left:222.073333pt;}
.x5{left:223.020000pt;}
.xc1{left:230.990667pt;}
.xc5{left:239.456000pt;}
.x6{left:241.085333pt;}
.xb4{left:245.964000pt;}
.xbe{left:247.542667pt;}
.xa{left:251.365333pt;}
.xb5{left:256.610667pt;}
.x60{left:257.786667pt;}
.x8b{left:260.208000pt;}
.x61{left:261.174667pt;}
.xb1{left:262.096000pt;}
.x19{left:263.296000pt;}
.xbc{left:264.572000pt;}
.x62{left:267.816000pt;}
.x63{left:271.202667pt;}
.x8c{left:273.492000pt;}
.x8{left:275.062667pt;}
.x1a{left:276.580000pt;}
.x104{left:278.424000pt;}
.x64{left:284.486667pt;}
.x2f{left:287.142667pt;}
.x9{left:290.325333pt;}
.x25{left:291.846667pt;}
.x30{left:300.425333pt;}
.x26{left:305.130667pt;}
.x38{left:306.210667pt;}
.xb{left:307.673333pt;}
.x53{left:310.113333pt;}
.x85{left:312.204000pt;}
.xc{left:314.314667pt;}
.x56{left:315.376000pt;}
.x87{left:316.677333pt;}
.x36{left:317.709333pt;}
.x39{left:319.493333pt;}
.x75{left:324.734667pt;}
.x31{left:327.141333pt;}
.x4b{left:328.776000pt;}
.x86{left:329.910667pt;}
.x37{left:330.993333pt;}
.x54{left:332.257333pt;}
.x76{left:334.646667pt;}
.x95{left:337.985494pt;}
.x55{left:339.717333pt;}
.x88{left:341.025333pt;}
.x4c{left:342.060000pt;}
.x57{left:344.236000pt;}
.x4d{left:345.337333pt;}
.x58{left:348.748000pt;}
.x8a{left:351.453333pt;}
.x89{left:352.844000pt;}
.xc9{left:354.664000pt;}
.x59{left:355.840000pt;}
.x4e{left:358.621333pt;}
.x5a{left:360.173333pt;}
.x8e{left:369.480000pt;}
.xad{left:380.175064pt;}
.x1d{left:381.232000pt;}
.x100{left:382.904000pt;}
.x106{left:384.686667pt;}
.x105{left:386.433333pt;}
.x1e{left:394.514667pt;}
.x101{left:396.188000pt;}
.xcf{left:397.661333pt;}
.x1b{left:400.864000pt;}
.x27{left:406.164000pt;}
.xce{left:409.905333pt;}
.x65{left:412.033333pt;}
.x1c{left:414.146667pt;}
.x4f{left:417.868000pt;}
.x28{left:419.448000pt;}
.x66{left:421.929333pt;}
.x46{left:424.669333pt;}
.xb6{left:426.456000pt;}
.x82{left:428.456000pt;}
.x50{left:431.150667pt;}
.xf{left:435.825333pt;}
.xbb{left:436.808000pt;}
.x47{left:437.953333pt;}
.xc2{left:440.736000pt;}
.x10{left:442.466667pt;}
.xbf{left:444.281333pt;}
.x11{left:445.854667pt;}
.xc3{left:447.108000pt;}
.x2b{left:448.104000pt;}
.xc4{left:449.738667pt;}
.xba{left:451.268000pt;}
.x12{left:452.496000pt;}
.xe7{left:453.921333pt;}
.xc0{left:455.213333pt;}
.xb9{left:456.636000pt;}
.xd6{left:458.100000pt;}
.x13{left:459.270667pt;}
.x2c{left:461.388000pt;}
.xb8{left:462.817333pt;}
.x2d{left:464.678667pt;}
.xb7{left:465.805333pt;}
.xbd{left:467.192000pt;}
.x21{left:468.208000pt;}
.x80{left:469.530667pt;}
.xb2{left:471.113333pt;}
.x14{left:472.554667pt;}
.xb3{left:474.760000pt;}
.x42{left:476.670667pt;}
.x2e{left:477.961333pt;}
.x22{left:481.490667pt;}
.x81{left:482.813333pt;}
.x40{left:484.913333pt;}
.x71{left:485.992000pt;}
.x43{left:489.954667pt;}
.xf6{left:496.740000pt;}
.x41{left:498.197333pt;}
.xfc{left:499.562667pt;}
.x3e{left:501.512000pt;}
.x48{left:505.724000pt;}
.xf7{left:510.024000pt;}
.xd{left:511.593333pt;}
.xf8{left:513.412000pt;}
.x3f{left:514.796000pt;}
.xfd{left:516.186667pt;}
.xe{left:518.234667pt;}
.xfe{left:519.528000pt;}
.x32{left:523.242667pt;}
.xeb{left:524.838667pt;}
.xf9{left:526.694667pt;}
.x5b{left:531.145333pt;}
.x84{left:532.293333pt;}
.xa7{left:533.362646pt;}
.x72{left:535.421333pt;}
.x33{left:536.525333pt;}
.x5c{left:543.942667pt;}
.x5d{left:547.229333pt;}
.x73{left:548.705333pt;}
.xca{left:550.226667pt;}
.xc8{left:552.441333pt;}
.xf5{left:555.612000pt;}
.x107{left:557.176000pt;}
.xcb{left:559.028000pt;}
.x5e{left:560.513333pt;}
.xfa{left:563.424000pt;}
.xff{left:565.856000pt;}
.xfb{left:566.810667pt;}
.x29{left:568.960000pt;}
.x79{left:570.402667pt;}
.xcc{left:573.368000pt;}
.x7a{left:577.044000pt;}
.x7b{left:580.341333pt;}
.x2a{left:582.244000pt;}
.x67{left:585.302667pt;}
.x7c{left:586.984000pt;}
.xcd{left:588.130667pt;}
.x7d{left:590.281333pt;}
.x10f{left:596.737333pt;}
.x68{left:598.585333pt;}
.x49{left:600.202667pt;}
.x7e{left:603.565333pt;}
.x69{left:605.360000pt;}
.x7f{left:606.862667pt;}
.x10b{left:608.420000pt;}
.x4a{left:613.486667pt;}
.x102{left:616.469333pt;}
.xd1{left:617.518667pt;}
.x6a{left:618.644000pt;}
.x77{left:619.680000pt;}
.x110{left:620.648000pt;}
.x103{left:623.244000pt;}
.x6b{left:628.476000pt;}
.x78{left:632.962667pt;}
.x3c{left:635.824000pt;}
.xe0{left:637.245333pt;}
.xe4{left:638.738667pt;}
.xd7{left:640.598667pt;}
.x6c{left:641.760000pt;}
.xd0{left:644.334667pt;}
.x5f{left:647.961333pt;}
.x3d{left:649.106667pt;}
.x10a{left:650.718667pt;}
.x10c{left:652.748000pt;}
.x108{left:660.116000pt;}
.x23{left:661.582667pt;}
.x112{left:667.189333pt;}
.x10e{left:668.342667pt;}
.x111{left:671.536000pt;}
.x24{left:674.865333pt;}
.xf1{left:676.992000pt;}
.x44{left:678.770667pt;}
.x6e{left:681.897333pt;}
.x91{left:683.925600pt;}
.x34{left:685.474667pt;}
.x51{left:687.496000pt;}
.x74{left:688.522667pt;}
.xf2{left:690.276000pt;}
.x45{left:692.054667pt;}
.xf3{left:693.662667pt;}
.x6f{left:695.181333pt;}
.x109{left:696.445333pt;}
.x35{left:698.758667pt;}
.x52{left:700.780000pt;}
.x10d{left:702.068000pt;}
.x3a{left:706.973333pt;}
.x70{left:709.128000pt;}
.xf4{left:710.172000pt;}
.x6d{left:712.877333pt;}
.x8d{left:714.606667pt;}
.x15{left:716.149333pt;}
.x3b{left:720.257333pt;}
.x16{left:722.790667pt;}
.x17{left:726.178667pt;}
.x1f{left:727.152000pt;}
.x18{left:739.461333pt;}
.x20{left:740.436000pt;}
.x83{left:744.660000pt;}
.xd3{left:764.970667pt;}
.xdd{left:803.681333pt;}
.xd9{left:807.506667pt;}
.xde{left:810.494667pt;}
.xd8{left:811.684000pt;}
.xd2{left:813.926667pt;}
.xd5{left:953.404000pt;}
.xec{left:962.650667pt;}
.xdf{left:965.168000pt;}
.xe1{left:967.493333pt;}
.xda{left:968.993333pt;}
.xe2{left:973.321333pt;}
.xd4{left:975.413333pt;}
}




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