
    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_6e3b138aaf6faffbc52ce4cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight: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_5550fbdf72b42c2ca93d4dc1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.097168;font-style:normal;font-weight: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_95e7a926b55ce1b6dc4b5ec2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight: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_b8a8c5ae8e4037a3e39f9f41.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight: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_b51cc68685492b07670786b2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight: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_f99f9630125ee57143219f77.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight: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_71e26ae3d623a17d83dc1913.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight: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_01d7215a93dd25201d60c2c1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight: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_11c48baeba7908a067d30fb1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.142090;font-style:normal;font-weight: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_0c48c9bf7220c464a907e354.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f3cdd6e779058118920ccad9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m23{transform:matrix(0.117249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117249,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.147999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147999,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.151617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151617,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.172888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172888,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.186326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186326,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.186461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186461,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.189960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189960,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.190442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190442,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.190617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190617,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.191121,0.000000,-0.063700,0.241748,0,0);-ms-transform:matrix(0.191121,0.000000,-0.063700,0.241748,0,0);-webkit-transform:matrix(0.191121,0.000000,-0.063700,0.241748,0,0);}
.m4c{transform:matrix(0.191877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191877,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.192612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192612,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.194047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194047,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.194522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194522,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.196399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196399,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.196897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196897,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.197544,0.000000,-0.065841,0.241174,0,0);-ms-transform:matrix(0.197544,0.000000,-0.065841,0.241174,0,0);-webkit-transform:matrix(0.197544,0.000000,-0.065841,0.241174,0,0);}
.m37{transform:matrix(0.197633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197633,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.197645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197645,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.201018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201018,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.203292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203292,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.204773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204773,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.213204,0.000000,-0.071061,0.239688,0,0);-ms-transform:matrix(0.213204,0.000000,-0.071061,0.239688,0,0);-webkit-transform:matrix(0.213204,0.000000,-0.071061,0.239688,0,0);}
.mf{transform:matrix(0.217476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217476,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.219283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219283,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.219902,0.000000,-0.073293,0.239015,0,0);-ms-transform:matrix(0.219902,0.000000,-0.073293,0.239015,0,0);-webkit-transform:matrix(0.219902,0.000000,-0.073293,0.239015,0,0);}
.m18{transform:matrix(0.222377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222377,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.223482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223482,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.224321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224321,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.229848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229848,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.230009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230009,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.233597,0.000000,-0.077858,0.237567,0,0);-ms-transform:matrix(0.233597,0.000000,-0.077858,0.237567,0,0);-webkit-transform:matrix(0.233597,0.000000,-0.077858,0.237567,0,0);}
.m17{transform:matrix(0.237932,0.000000,-0.079303,0.237089,0,0);-ms-transform:matrix(0.237932,0.000000,-0.079303,0.237089,0,0);-webkit-transform:matrix(0.237932,0.000000,-0.079303,0.237089,0,0);}
.md{transform:matrix(0.237960,0.000000,-0.079312,0.237086,0,0);-ms-transform:matrix(0.237960,0.000000,-0.079312,0.237086,0,0);-webkit-transform:matrix(0.237960,0.000000,-0.079312,0.237086,0,0);}
.m5{transform:matrix(0.238873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238873,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.241174,0.000000,-0.080383,0.236725,0,0);-ms-transform:matrix(0.241174,0.000000,-0.080383,0.236725,0,0);-webkit-transform:matrix(0.241174,0.000000,-0.080383,0.236725,0,0);}
.m6{transform:matrix(0.243410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243410,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245822,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.247065,0.000001,0.000001,0.250000,0,0);-ms-transform:matrix(0.247065,0.000001,0.000001,0.250000,0,0);-webkit-transform:matrix(0.247065,0.000001,0.000001,0.250000,0,0);}
.m22{transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248157,0.000000,-0.082711,0.235922,0,0);-ms-transform:matrix(0.248157,0.000000,-0.082711,0.235922,0,0);-webkit-transform:matrix(0.248157,0.000000,-0.082711,0.235922,0,0);}
.m50{transform:matrix(0.248387,0.000000,-0.082787,0.235895,0,0);-ms-transform:matrix(0.248387,0.000000,-0.082787,0.235895,0,0);-webkit-transform:matrix(0.248387,0.000000,-0.082787,0.235895,0,0);}
.m4{transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249689,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);}
.m1{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250922,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.252720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252720,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254424,0.000000,-0.084799,0.235179,0,0);-ms-transform:matrix(0.254424,0.000000,-0.084799,0.235179,0,0);-webkit-transform:matrix(0.254424,0.000000,-0.084799,0.235179,0,0);}
.m4d{transform:matrix(0.254699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254699,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.254929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254929,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.259728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259728,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.262124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262124,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.262883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262883,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.262966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262966,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.263239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263239,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.265522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265522,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.266844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266844,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.266872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266872,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.267134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267134,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.270458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270458,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.273913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273913,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.275481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275481,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.278226,0.000000,-0.092733,0.232165,0,0);-ms-transform:matrix(0.278226,0.000000,-0.092733,0.232165,0,0);-webkit-transform:matrix(0.278226,0.000000,-0.092733,0.232165,0,0);}
.m1f{transform:matrix(0.279507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279507,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.283161,0.000000,-0.094377,0.231501,0,0);-ms-transform:matrix(0.283161,0.000000,-0.094377,0.231501,0,0);-webkit-transform:matrix(0.283161,0.000000,-0.094377,0.231501,0,0);}
.m2b{transform:matrix(0.289726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289726,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.292259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292259,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.292851,0.000000,-0.097607,0.230158,0,0);-ms-transform:matrix(0.292851,0.000000,-0.097607,0.230158,0,0);-webkit-transform:matrix(0.292851,0.000000,-0.097607,0.230158,0,0);}
.m2a{transform:matrix(0.297711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297711,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.299239,0.000000,-0.099736,0.229244,0,0);-ms-transform:matrix(0.299239,0.000000,-0.099736,0.229244,0,0);-webkit-transform:matrix(0.299239,0.000000,-0.099736,0.229244,0,0);}
.m1d{transform:matrix(0.299599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299599,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.300860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300860,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.302862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302862,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.305787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305787,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.310161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310161,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.314589,0.000000,-0.104852,0.226949,0,0);-ms-transform:matrix(0.314589,0.000000,-0.104852,0.226949,0,0);-webkit-transform:matrix(0.314589,0.000000,-0.104852,0.226949,0,0);}
.m12{transform:matrix(0.316221,0.000000,-0.105397,0.226697,0,0);-ms-transform:matrix(0.316221,0.000000,-0.105397,0.226697,0,0);-webkit-transform:matrix(0.316221,0.000000,-0.105397,0.226697,0,0);}
.m51{transform:matrix(0.318097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318097,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.321798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321798,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.324382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324382,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.326333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326333,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.346541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346541,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.348588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348588,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.348727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348727,0.000000,0.000000,0.250000,0,0);}
.v9{vertical-align:-129.156361px;}
.va{vertical-align:-73.359216px;}
.vc{vertical-align:-67.345853px;}
.v6{vertical-align:-64.776977px;}
.v4{vertical-align:-63.603592px;}
.v8{vertical-align:-61.041185px;}
.v16{vertical-align:-55.984090px;}
.vf{vertical-align:-51.984832px;}
.v14{vertical-align:-49.716713px;}
.v11{vertical-align:-41.982781px;}
.v12{vertical-align:-40.656380px;}
.v5{vertical-align:-27.019540px;}
.v2{vertical-align:-20.833584px;}
.v13{vertical-align:-15.679119px;}
.vb{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:6.000000px;}
.ve{vertical-align:17.110086px;}
.v3{vertical-align:20.833584px;}
.v15{vertical-align:22.885157px;}
.v1{vertical-align:24.571286px;}
.v7{vertical-align:32.148621px;}
.v10{vertical-align:41.982781px;}
.ls8{letter-spacing:-3.000000px;}
.lsa{letter-spacing:-2.994000px;}
.ls7{letter-spacing:-2.988000px;}
.ls9{letter-spacing:-2.700000px;}
.ls8e{letter-spacing:-2.141549px;}
.ls8a{letter-spacing:-1.793557px;}
.ls25{letter-spacing:-1.752801px;}
.ls5f{letter-spacing:-1.704278px;}
.ls63{letter-spacing:-1.574015px;}
.ls30{letter-spacing:-1.523070px;}
.ls2e{letter-spacing:-1.520507px;}
.ls26{letter-spacing:-1.131563px;}
.ls70{letter-spacing:-1.020342px;}
.ls24{letter-spacing:-0.852342px;}
.ls3b{letter-spacing:-0.495509px;}
.ls3a{letter-spacing:-0.371813px;}
.ls37{letter-spacing:-0.340066px;}
.ls2a{letter-spacing:-0.308239px;}
.ls58{letter-spacing:-0.216000px;}
.ls95{letter-spacing:-0.192000px;}
.ls35{letter-spacing:-0.154715px;}
.ls5b{letter-spacing:-0.101401px;}
.ls76{letter-spacing:-0.078795px;}
.ls96{letter-spacing:-0.024000px;}
.ls6{letter-spacing:-0.012000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls94{letter-spacing:0.030000px;}
.ls0{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.150000px;}
.ls3d{letter-spacing:0.156000px;}
.ls57{letter-spacing:0.168000px;}
.ls43{letter-spacing:0.204000px;}
.ls3c{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.300000px;}
.ls42{letter-spacing:0.372000px;}
.ls5c{letter-spacing:0.384000px;}
.ls23{letter-spacing:0.470850px;}
.ls91{letter-spacing:0.600000px;}
.ls88{letter-spacing:0.660000px;}
.ls78{letter-spacing:4.037084px;}
.ls55{letter-spacing:4.393782px;}
.ls7a{letter-spacing:5.050946px;}
.ls92{letter-spacing:5.520000px;}
.ls41{letter-spacing:5.940000px;}
.ls54{letter-spacing:6.000000px;}
.ls87{letter-spacing:9.540000px;}
.ls85{letter-spacing:9.600000px;}
.ls86{letter-spacing:9.660000px;}
.ls75{letter-spacing:13.415417px;}
.lsb{letter-spacing:17.547839px;}
.ls69{letter-spacing:19.354344px;}
.ls67{letter-spacing:19.517525px;}
.ls53{letter-spacing:19.682685px;}
.ls12{letter-spacing:19.839240px;}
.ls38{letter-spacing:20.756262px;}
.ls36{letter-spacing:21.139219px;}
.ls50{letter-spacing:25.200000px;}
.ls14{letter-spacing:28.123034px;}
.ls80{letter-spacing:30.600000px;}
.ls83{letter-spacing:32.400000px;}
.ls84{letter-spacing:32.460000px;}
.ls7b{letter-spacing:37.695098px;}
.ls82{letter-spacing:38.340000px;}
.ls81{letter-spacing:38.400000px;}
.ls93{letter-spacing:46.800000px;}
.ls6c{letter-spacing:48.070734px;}
.ls4c{letter-spacing:48.600000px;}
.ls5a{letter-spacing:53.091882px;}
.ls28{letter-spacing:54.762935px;}
.ls1d{letter-spacing:55.800000px;}
.ls6a{letter-spacing:60.104334px;}
.ls40{letter-spacing:60.499574px;}
.ls3e{letter-spacing:60.505634px;}
.ls4f{letter-spacing:67.875691px;}
.ls77{letter-spacing:78.212127px;}
.ls79{letter-spacing:84.373113px;}
.ls2c{letter-spacing:87.508133px;}
.ls60{letter-spacing:89.121818px;}
.ls64{letter-spacing:91.238596px;}
.ls4e{letter-spacing:95.804584px;}
.ls5e{letter-spacing:96.991893px;}
.ls13{letter-spacing:97.017430px;}
.ls8b{letter-spacing:100.129053px;}
.ls59{letter-spacing:101.013768px;}
.ls2f{letter-spacing:103.200000px;}
.ls62{letter-spacing:103.287953px;}
.ls8f{letter-spacing:111.988017px;}
.ls6d{letter-spacing:115.180800px;}
.ls15{letter-spacing:117.371506px;}
.ls1e{letter-spacing:118.521316px;}
.ls3f{letter-spacing:119.116221px;}
.ls16{letter-spacing:121.585376px;}
.ls8d{letter-spacing:121.877336px;}
.ls89{letter-spacing:122.798554px;}
.ls7d{letter-spacing:123.376176px;}
.ls4d{letter-spacing:128.450937px;}
.ls68{letter-spacing:130.177848px;}
.ls66{letter-spacing:132.548307px;}
.ls11{letter-spacing:136.360295px;}
.ls27{letter-spacing:138.113155px;}
.ls29{letter-spacing:152.305855px;}
.ls1f{letter-spacing:158.133228px;}
.lsd{letter-spacing:162.624659px;}
.ls2b{letter-spacing:167.334073px;}
.ls1a{letter-spacing:167.699658px;}
.ls48{letter-spacing:167.754280px;}
.ls4a{letter-spacing:168.541287px;}
.ls47{letter-spacing:169.720170px;}
.ls4b{letter-spacing:169.724512px;}
.ls49{letter-spacing:170.115302px;}
.ls5d{letter-spacing:170.556010px;}
.lsc{letter-spacing:172.596411px;}
.ls45{letter-spacing:180.925507px;}
.ls56{letter-spacing:192.373960px;}
.ls17{letter-spacing:192.379167px;}
.ls7c{letter-spacing:196.001081px;}
.ls1b{letter-spacing:209.188438px;}
.ls61{letter-spacing:216.345655px;}
.ls65{letter-spacing:219.656514px;}
.ls2d{letter-spacing:220.115300px;}
.ls7f{letter-spacing:227.345999px;}
.lsf{letter-spacing:237.980890px;}
.ls32{letter-spacing:269.889546px;}
.ls90{letter-spacing:271.853979px;}
.ls22{letter-spacing:272.587840px;}
.ls10{letter-spacing:274.292110px;}
.ls33{letter-spacing:279.834574px;}
.ls34{letter-spacing:285.121916px;}
.ls39{letter-spacing:289.727155px;}
.ls31{letter-spacing:289.935766px;}
.ls1c{letter-spacing:306.377669px;}
.ls44{letter-spacing:320.940854px;}
.ls74{letter-spacing:323.817450px;}
.ls73{letter-spacing:324.588750px;}
.ls46{letter-spacing:327.372605px;}
.ls6f{letter-spacing:327.738225px;}
.ls72{letter-spacing:328.123875px;}
.ls6b{letter-spacing:329.300442px;}
.ls18{letter-spacing:347.165724px;}
.lse{letter-spacing:353.294757px;}
.ls6e{letter-spacing:353.705325px;}
.ls71{letter-spacing:375.444091px;}
.ls7e{letter-spacing:403.285421px;}
.ls8c{letter-spacing:421.216291px;}
.ls21{letter-spacing:486.703044px;}
.ls20{letter-spacing:503.245942px;}
.ls51{letter-spacing:511.576581px;}
.ls19{letter-spacing:608.818153px;}
.ls52{letter-spacing:1107.744473px;}
.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;}
}
.wsc{word-spacing:-178.901471px;}
.ws68{word-spacing:-152.175905px;}
.ws69{word-spacing:-150.135358px;}
.ws3b{word-spacing:-109.090114px;}
.ws78{word-spacing:-97.774943px;}
.ws4d{word-spacing:-49.865585px;}
.ws25{word-spacing:-45.540734px;}
.ws55{word-spacing:-43.411204px;}
.ws5f{word-spacing:-36.463486px;}
.ws3e{word-spacing:-31.674622px;}
.ws7b{word-spacing:-29.349741px;}
.ws3d{word-spacing:-27.514073px;}
.ws10{word-spacing:-24.800209px;}
.ws4c{word-spacing:-23.610599px;}
.ws1d{word-spacing:-22.286152px;}
.ws79{word-spacing:-22.167478px;}
.ws1e{word-spacing:-21.208889px;}
.ws23{word-spacing:-20.738039px;}
.ws1b{word-spacing:-20.243887px;}
.ws21{word-spacing:-19.885697px;}
.ws3a{word-spacing:-19.562816px;}
.ws67{word-spacing:-19.492817px;}
.ws22{word-spacing:-18.985238px;}
.ws4b{word-spacing:-18.216000px;}
.ws7f{word-spacing:-18.168000px;}
.wsa{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.ws80{word-spacing:-17.808000px;}
.ws52{word-spacing:-17.784000px;}
.ws11{word-spacing:-15.575254px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws34{word-spacing:-12.701676px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws31{word-spacing:-9.564139px;}
.ws56{word-spacing:-2.482452px;}
.wsb{word-spacing:0.000000px;}
.ws4e{word-spacing:6.756015px;}
.ws2e{word-spacing:7.716610px;}
.ws75{word-spacing:7.835945px;}
.ws1a{word-spacing:10.445846px;}
.ws12{word-spacing:12.852783px;}
.ws63{word-spacing:13.748528px;}
.ws61{word-spacing:14.811216px;}
.wsf{word-spacing:17.255567px;}
.ws49{word-spacing:18.057861px;}
.ws76{word-spacing:18.679627px;}
.ws71{word-spacing:22.022929px;}
.ws1c{word-spacing:24.292664px;}
.ws6b{word-spacing:27.004972px;}
.ws51{word-spacing:34.473001px;}
.ws50{word-spacing:39.756551px;}
.ws33{word-spacing:39.948821px;}
.ws39{word-spacing:40.744895px;}
.ws5d{word-spacing:42.175435px;}
.ws60{word-spacing:42.706779px;}
.ws13{word-spacing:42.935748px;}
.ws64{word-spacing:43.238123px;}
.ws62{word-spacing:43.636631px;}
.ws30{word-spacing:44.281210px;}
.ws7c{word-spacing:44.343023px;}
.wse{word-spacing:46.716826px;}
.ws54{word-spacing:46.760878px;}
.ws5a{word-spacing:48.675323px;}
.ws58{word-spacing:53.179089px;}
.ws6f{word-spacing:53.654388px;}
.ws47{word-spacing:55.775207px;}
.ws16{word-spacing:61.796846px;}
.ws18{word-spacing:61.914366px;}
.ws53{word-spacing:62.581876px;}
.ws38{word-spacing:63.582798px;}
.ws7a{word-spacing:63.664996px;}
.ws14{word-spacing:64.179893px;}
.ws4f{word-spacing:64.701838px;}
.ws2c{word-spacing:64.819200px;}
.ws5c{word-spacing:68.609802px;}
.ws2d{word-spacing:69.145748px;}
.ws37{word-spacing:70.893614px;}
.ws6c{word-spacing:72.223098px;}
.ws19{word-spacing:75.642808px;}
.ws46{word-spacing:75.775929px;}
.ws5e{word-spacing:78.240413px;}
.ws65{word-spacing:79.236683px;}
.ws28{word-spacing:83.311490px;}
.ws45{word-spacing:84.488724px;}
.ws6a{word-spacing:85.268682px;}
.ws72{word-spacing:91.945728px;}
.ws27{word-spacing:94.110085px;}
.ws7e{word-spacing:96.372130px;}
.ws59{word-spacing:96.744369px;}
.ws17{word-spacing:98.342381px;}
.ws5b{word-spacing:100.001502px;}
.ws44{word-spacing:105.954558px;}
.ws26{word-spacing:106.223552px;}
.ws15{word-spacing:109.304899px;}
.ws7d{word-spacing:109.558224px;}
.ws43{word-spacing:112.125746px;}
.ws57{word-spacing:116.812029px;}
.ws36{word-spacing:119.219647px;}
.ws4a{word-spacing:120.031665px;}
.ws2f{word-spacing:121.246379px;}
.ws42{word-spacing:126.362516px;}
.ws29{word-spacing:133.078103px;}
.ws6e{word-spacing:153.818452px;}
.ws3c{word-spacing:159.914937px;}
.ws77{word-spacing:183.357554px;}
.ws2a{word-spacing:184.673441px;}
.ws74{word-spacing:185.906819px;}
.ws1f{word-spacing:190.521581px;}
.ws2b{word-spacing:219.735684px;}
.ws70{word-spacing:227.508535px;}
.ws35{word-spacing:239.717925px;}
.ws40{word-spacing:256.431222px;}
.ws32{word-spacing:276.899087px;}
.ws3f{word-spacing:311.072817px;}
.ws6d{word-spacing:340.287520px;}
.wsd{word-spacing:385.457073px;}
.ws66{word-spacing:434.016112px;}
.ws24{word-spacing:537.861066px;}
.ws73{word-spacing:597.678243px;}
.ws41{word-spacing:678.539443px;}
.ws20{word-spacing:759.496999px;}
.ws48{word-spacing:1141.711451px;}
._3c{margin-left:-1147.675055px;}
._41{margin-left:-1054.112629px;}
._a9{margin-left:-908.937108px;}
._a6{margin-left:-905.938656px;}
._9b{margin-left:-904.447112px;}
._4b{margin-left:-720.428077px;}
._93{margin-left:-718.036308px;}
._49{margin-left:-625.379231px;}
._88{margin-left:-530.116723px;}
._b3{margin-left:-497.777096px;}
._42{margin-left:-491.982478px;}
._82{margin-left:-486.060559px;}
._45{margin-left:-467.350491px;}
._4d{margin-left:-465.802832px;}
._60{margin-left:-385.797171px;}
._8a{margin-left:-377.127087px;}
._4e{margin-left:-370.724146px;}
._55{margin-left:-366.134994px;}
._44{margin-left:-360.882938px;}
._47{margin-left:-344.701264px;}
._2e{margin-left:-338.393325px;}
._bc{margin-left:-315.396036px;}
._7c{margin-left:-300.043928px;}
._aa{margin-left:-282.283095px;}
._ab{margin-left:-278.811495px;}
._bb{margin-left:-275.180819px;}
._53{margin-left:-271.709169px;}
._ba{margin-left:-267.870578px;}
._83{margin-left:-259.576220px;}
._61{margin-left:-226.237310px;}
._5a{margin-left:-208.701466px;}
._56{margin-left:-203.227627px;}
._62{margin-left:-183.352118px;}
._7f{margin-left:-177.301207px;}
._58{margin-left:-175.930635px;}
._5b{margin-left:-172.122590px;}
._5f{margin-left:-170.820348px;}
._57{margin-left:-163.497476px;}
._7e{margin-left:-154.601696px;}
._52{margin-left:-150.002931px;}
._5d{margin-left:-147.875842px;}
._59{margin-left:-139.001859px;}
._5c{margin-left:-135.876099px;}
._54{margin-left:-128.343813px;}
._50{margin-left:-115.361001px;}
._5e{margin-left:-106.317279px;}
._4f{margin-left:-67.132316px;}
._c8{margin-left:-5.328000px;}
._6{margin-left:-4.248000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._c{width:2.880000px;}
._d{width:4.176000px;}
._e{width:5.328000px;}
._2f{width:6.408000px;}
._b{width:7.560000px;}
._3a{width:9.238345px;}
._10{width:10.800000px;}
._11{width:11.838000px;}
._1d{width:13.104000px;}
._9{width:14.400000px;}
._a{width:15.912000px;}
._2a{width:16.920000px;}
._64{width:17.925753px;}
._29{width:19.440000px;}
._f{width:20.592000px;}
._7{width:21.600000px;}
._8{width:22.662000px;}
._17{width:23.676000px;}
._12{width:25.128000px;}
._c6{width:26.208000px;}
._13{width:27.246000px;}
._b1{width:28.482000px;}
._5{width:29.502000px;}
._4{width:30.606000px;}
._21{width:31.836000px;}
._1e{width:33.624000px;}
._1f{width:34.662000px;}
._2b{width:35.868000px;}
._2c{width:37.584000px;}
._2d{width:38.772000px;}
._34{width:40.188291px;}
._c3{width:41.328000px;}
._97{width:42.749159px;}
._92{width:44.808000px;}
._c4{width:46.368000px;}
._c0{width:47.736000px;}
._6d{width:48.962914px;}
._14{width:50.112000px;}
._20{width:51.480000px;}
._80{width:52.848000px;}
._1c{width:54.648000px;}
._15{width:55.800000px;}
._1b{width:56.880000px;}
._81{width:58.632000px;}
._16{width:60.552000px;}
._26{width:61.992000px;}
._24{width:63.216000px;}
._25{width:64.512000px;}
._a3{width:66.127152px;}
._18{width:67.536000px;}
._7d{width:69.351170px;}
._22{width:70.704000px;}
._23{width:71.784000px;}
._98{width:72.984000px;}
._8c{width:74.178861px;}
._8e{width:76.250342px;}
._48{width:77.461145px;}
._38{width:79.724512px;}
._7a{width:81.164420px;}
._75{width:82.545150px;}
._3b{width:85.592087px;}
._ac{width:87.370685px;}
._7b{width:88.410367px;}
._94{width:91.119590px;}
._8b{width:93.817816px;}
._c7{width:95.328000px;}
._9e{width:97.452945px;}
._70{width:99.708030px;}
._a4{width:101.506783px;}
._c5{width:104.550000px;}
._4a{width:107.009117px;}
._6c{width:108.111812px;}
._77{width:110.081196px;}
._68{width:113.794145px;}
._51{width:115.008000px;}
._89{width:116.134677px;}
._8d{width:117.907210px;}
._76{width:119.798207px;}
._72{width:121.244468px;}
._9c{width:122.655950px;}
._27{width:124.704000px;}
._28{width:125.784000px;}
._9d{width:126.956649px;}
._bf{width:129.195569px;}
._c2{width:131.172000px;}
._19{width:132.480000px;}
._1a{width:133.632000px;}
._b9{width:136.553200px;}
._6e{width:137.797354px;}
._a8{width:138.901276px;}
._6f{width:141.646957px;}
._3e{width:143.522749px;}
._3d{width:145.012926px;}
._bd{width:147.348311px;}
._95{width:150.018185px;}
._6a{width:152.910883px;}
._4c{width:154.987198px;}
._63{width:157.660737px;}
._46{width:163.720322px;}
._86{width:166.147380px;}
._69{width:167.158160px;}
._43{width:170.830380px;}
._39{width:174.071393px;}
._90{width:180.667129px;}
._c1{width:182.181741px;}
._be{width:183.467412px;}
._85{width:184.552894px;}
._99{width:185.776869px;}
._87{width:186.939538px;}
._37{width:194.400000px;}
._3f{width:201.267138px;}
._40{width:205.737671px;}
._ae{width:207.467791px;}
._af{width:209.886299px;}
._b0{width:213.719539px;}
._96{width:217.464608px;}
._a0{width:220.773457px;}
._a5{width:222.765997px;}
._a2{width:225.380523px;}
._a1{width:237.045869px;}
._b8{width:238.086092px;}
._a7{width:239.171245px;}
._6b{width:250.448378px;}
._b7{width:252.681326px;}
._84{width:253.976392px;}
._74{width:258.233276px;}
._91{width:268.056000px;}
._79{width:272.902320px;}
._65{width:282.218989px;}
._67{width:290.431898px;}
._33{width:292.087977px;}
._b4{width:294.399367px;}
._8f{width:307.868827px;}
._66{width:313.229333px;}
._b2{width:339.245898px;}
._b5{width:340.254252px;}
._9f{width:347.418021px;}
._78{width:348.853061px;}
._73{width:368.131963px;}
._32{width:421.603554px;}
._36{width:433.193765px;}
._31{width:447.140586px;}
._35{width:496.153581px;}
._30{width:506.618027px;}
._9a{width:521.412934px;}
._71{width:623.664692px;}
._ad{width:791.780618px;}
._b6{width:1111.248000px;}
.fc2{color:transparent;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs1d{font-size:19.755928px;}
.fs1f{font-size:21.786702px;}
.fs1e{font-size:34.144291px;}
.fs51{font-size:37.245660px;}
.fs20{font-size:37.654090px;}
.fs45{font-size:38.329437px;}
.fs3d{font-size:42.941766px;}
.fs42{font-size:43.008847px;}
.fs7{font-size:43.256321px;}
.fs1a{font-size:44.675625px;}
.fs56{font-size:44.963008px;}
.fs4a{font-size:45.041717px;}
.fs59{font-size:45.390362px;}
.fs61{font-size:45.514318px;}
.fs5f{font-size:45.767311px;}
.fs4c{font-size:46.210915px;}
.fs3f{font-size:46.807686px;}
.fs10{font-size:46.897779px;}
.fs17{font-size:46.939263px;}
.fs40{font-size:47.411596px;}
.fs6d{font-size:47.779426px;}
.fs31{font-size:48.000000px;}
.fs70{font-size:48.163713px;}
.fs15{font-size:48.375239px;}
.fs5b{font-size:49.017353px;}
.fs19{font-size:49.496110px;}
.fs22{font-size:50.101494px;}
.fs21{font-size:51.145279px;}
.fs38{font-size:51.258803px;}
.fs64{font-size:51.271436px;}
.fsd{font-size:53.074608px;}
.fs1c{font-size:53.484943px;}
.fs1b{font-size:53.829346px;}
.fs3{font-size:54.000000px;}
.fs68{font-size:54.132474px;}
.fs2f{font-size:54.273412px;}
.fs33{font-size:54.844842px;}
.fsb{font-size:54.904596px;}
.fs2b{font-size:55.729379px;}
.fs2{font-size:57.000000px;}
.fs35{font-size:59.709345px;}
.fs1{font-size:60.000000px;}
.fs52{font-size:64.451007px;}
.fs4{font-size:66.000000px;}
.fs46{font-size:66.418007px;}
.fs53{font-size:67.413173px;}
.fs5{font-size:72.000000px;}
.fs6c{font-size:74.260766px;}
.fs8{font-size:74.699425px;}
.fs47{font-size:77.446968px;}
.fs55{font-size:77.759983px;}
.fs4b{font-size:77.971268px;}
.fs24{font-size:78.251266px;}
.fs4e{font-size:78.510393px;}
.fs5a{font-size:78.653318px;}
.fs6b{font-size:78.701211px;}
.fs62{font-size:78.743097px;}
.fs5e{font-size:79.150961px;}
.fs4d{font-size:79.789582px;}
.fs4f{font-size:79.830041px;}
.fs11{font-size:80.975547px;}
.fs18{font-size:81.059505px;}
.fs63{font-size:81.430843px;}
.fs6e{font-size:82.510385px;}
.fs14{font-size:82.952156px;}
.fs6{font-size:83.072970px;}
.fs71{font-size:83.459035px;}
.fs0{font-size:84.000000px;}
.fs50{font-size:84.403382px;}
.fs5c{font-size:84.938239px;}
.fs25{font-size:86.327924px;}
.fs23{font-size:86.507208px;}
.fs43{font-size:86.610895px;}
.fs3c{font-size:86.615580px;}
.fs48{font-size:86.865085px;}
.fs39{font-size:88.518927px;}
.fs65{font-size:88.669911px;}
.fs12{font-size:89.144610px;}
.fs6f{font-size:89.623501px;}
.fs16{font-size:90.462885px;}
.fsf{font-size:90.916837px;}
.fs67{font-size:91.640703px;}
.fs44{font-size:91.779353px;}
.fse{font-size:91.822951px;}
.fs13{font-size:92.406905px;}
.fsa{font-size:93.136112px;}
.fs69{font-size:93.515229px;}
.fs30{font-size:93.724862px;}
.fs3a{font-size:94.097464px;}
.fs3b{font-size:94.442396px;}
.fs3e{font-size:94.577786px;}
.fsc{font-size:94.800433px;}
.fs34{font-size:94.941360px;}
.fs41{font-size:95.478917px;}
.fs2c{font-size:96.568970px;}
.fs26{font-size:96.683759px;}
.fs66{font-size:97.675887px;}
.fs6a{font-size:98.759516px;}
.fs2d{font-size:101.622793px;}
.fs54{font-size:101.935423px;}
.fs27{font-size:101.948912px;}
.fs49{font-size:102.041469px;}
.fs28{font-size:102.596449px;}
.fs58{font-size:102.904275px;}
.fs36{font-size:103.096502px;}
.fs2e{font-size:103.987354px;}
.fs29{font-size:107.010352px;}
.fs2a{font-size:110.056290px;}
.fs9{font-size:112.052190px;}
.fs37{font-size:115.985329px;}
.fs72{font-size:116.716014px;}
.fs57{font-size:116.719561px;}
.fs60{font-size:118.651912px;}
.fs5d{font-size:124.134735px;}
.fs32{font-size:148.648407px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y13e{bottom:2.782632px;}
.yde{bottom:2.985000px;}
.y7e{bottom:3.071165px;}
.y7d{bottom:3.122896px;}
.y123{bottom:3.487529px;}
.y12c{bottom:3.487539px;}
.y12a{bottom:3.487540px;}
.y1d8{bottom:3.487549px;}
.y1d6{bottom:3.487550px;}
.y13b{bottom:3.487569px;}
.y139{bottom:3.487572px;}
.y1cb{bottom:3.487574px;}
.y1df{bottom:3.680070px;}
.y21{bottom:3.900000px;}
.y1bf{bottom:4.087254px;}
.y176{bottom:4.130014px;}
.y17b{bottom:4.130015px;}
.y1c5{bottom:4.382333px;}
.yd4{bottom:4.384928px;}
.y154{bottom:4.460638px;}
.y7c{bottom:4.503212px;}
.ybb{bottom:4.642797px;}
.yb3{bottom:4.642803px;}
.ya9{bottom:4.642813px;}
.yc2{bottom:4.642817px;}
.y1a2{bottom:4.709096px;}
.y1a5{bottom:4.709101px;}
.y119{bottom:4.774554px;}
.y1b6{bottom:4.774599px;}
.y15a{bottom:4.811093px;}
.y183{bottom:4.989334px;}
.y18b{bottom:5.013298px;}
.y9f{bottom:5.070719px;}
.y199{bottom:5.129991px;}
.y194{bottom:5.130018px;}
.y147{bottom:5.130046px;}
.y146{bottom:5.130056px;}
.yef{bottom:5.206279px;}
.y8a{bottom:5.258958px;}
.y191{bottom:5.258971px;}
.y16b{bottom:5.259008px;}
.y14b{bottom:5.337987px;}
.y7{bottom:5.400000px;}
.y96{bottom:5.448687px;}
.y99{bottom:5.448699px;}
.ydd{bottom:5.550000px;}
.y87{bottom:5.561967px;}
.y6f{bottom:5.661646px;}
.y8c{bottom:5.801806px;}
.y54{bottom:5.846078px;}
.y1a8{bottom:5.892010px;}
.y1b1{bottom:5.941953px;}
.yb{bottom:6.000000px;}
.y53{bottom:6.095171px;}
.y48{bottom:6.105673px;}
.y164{bottom:6.484058px;}
.y143{bottom:6.501201px;}
.y142{bottom:6.501206px;}
.yce{bottom:6.628523px;}
.yc{bottom:6.750000px;}
.y10c{bottom:6.884280px;}
.y111{bottom:6.884297px;}
.ye4{bottom:7.050000px;}
.y105{bottom:7.071494px;}
.y9b{bottom:7.396425px;}
.yf8{bottom:8.485723px;}
.yfa{bottom:8.485727px;}
.y158{bottom:8.634422px;}
.y14c{bottom:8.678543px;}
.y59{bottom:8.744954px;}
.y40{bottom:9.142818px;}
.y1c1{bottom:9.441630px;}
.y11a{bottom:9.586461px;}
.y11c{bottom:9.586464px;}
.y11b{bottom:9.586467px;}
.y1b7{bottom:9.586496px;}
.y1b9{bottom:9.586501px;}
.y1b8{bottom:9.586507px;}
.y5b{bottom:9.691087px;}
.y5c{bottom:9.691149px;}
.y56{bottom:9.883802px;}
.ycb{bottom:9.907053px;}
.yca{bottom:9.907065px;}
.y18d{bottom:10.105345px;}
.y18f{bottom:10.105350px;}
.y18e{bottom:10.105361px;}
.y141{bottom:10.121702px;}
.y51{bottom:10.125066px;}
.yd8{bottom:10.129220px;}
.y19a{bottom:10.300149px;}
.y195{bottom:10.300185px;}
.y148{bottom:10.300225px;}
.yf0{bottom:10.453250px;}
.y93{bottom:10.510704px;}
.y92{bottom:10.510722px;}
.y94{bottom:10.510734px;}
.y1b0{bottom:10.573720px;}
.y83{bottom:10.662975px;}
.y67{bottom:10.708410px;}
.yae{bottom:10.724752px;}
.yc4{bottom:10.724757px;}
.y88{bottom:11.167403px;}
.y7b{bottom:11.525406px;}
.y144{bottom:11.562183px;}
.y4a{bottom:11.656094px;}
.y1b2{bottom:11.977297px;}
.y10d{bottom:12.170490px;}
.y112{bottom:12.170492px;}
.y122{bottom:12.206215px;}
.y129{bottom:12.206233px;}
.y1d4{bottom:12.206254px;}
.y1ca{bottom:12.206288px;}
.y137{bottom:12.206293px;}
.y76{bottom:12.732952px;}
.y171{bottom:12.974235px;}
.yc9{bottom:13.272741px;}
.ycf{bottom:13.308905px;}
.y79{bottom:13.734140px;}
.y177{bottom:14.454819px;}
.y173{bottom:14.454842px;}
.y1c4{bottom:15.337993px;}
.y9e{bottom:15.929500px;}
.ycc{bottom:16.069340px;}
.y1a1{bottom:16.371779px;}
.y125{bottom:16.483737px;}
.y12e{bottom:16.483753px;}
.y12d{bottom:16.483756px;}
.y1d9{bottom:16.483777px;}
.y1ce{bottom:16.483802px;}
.y1cd{bottom:16.483814px;}
.y13c{bottom:16.483817px;}
.ya1{bottom:17.747320px;}
.y58{bottom:17.855182px;}
.y16f{bottom:18.078991px;}
.yf5{bottom:18.219464px;}
.y104{bottom:18.280596px;}
.y18c{bottom:18.948304px;}
.y185{bottom:19.249858px;}
.y17a{bottom:19.520353px;}
.y175{bottom:19.520356px;}
.y4c{bottom:19.575316px;}
.ya{bottom:19.950000px;}
.y151{bottom:20.073267px;}
.y166{bottom:20.493812px;}
.y6{bottom:20.550000px;}
.y1c7{bottom:20.713009px;}
.y107{bottom:21.052853px;}
.y157{bottom:21.251960px;}
.y181{bottom:21.254076px;}
.y47{bottom:21.461588px;}
.y44{bottom:21.461589px;}
.y163{bottom:22.462778px;}
.yf4{bottom:22.996189px;}
.yf7{bottom:22.996265px;}
.yb2{bottom:23.027266px;}
.yba{bottom:23.027268px;}
.yc1{bottom:23.027269px;}
.ya8{bottom:23.027271px;}
.y102{bottom:23.545025px;}
.y106{bottom:23.545064px;}
.ya2{bottom:23.966655px;}
.y17f{bottom:24.042463px;}
.y1be{bottom:24.359679px;}
.y20{bottom:24.600000px;}
.y95{bottom:25.563028px;}
.y1c0{bottom:25.586850px;}
.yd3{bottom:25.826189px;}
.y161{bottom:26.090377px;}
.y46{bottom:26.309924px;}
.y4b{bottom:26.309996px;}
.y49{bottom:26.310003px;}
.y180{bottom:26.360972px;}
.y184{bottom:26.361004px;}
.y182{bottom:26.361011px;}
.y6e{bottom:26.822767px;}
.y124{bottom:26.979432px;}
.y12b{bottom:26.979446px;}
.y1d7{bottom:26.979466px;}
.y1d5{bottom:26.979467px;}
.y1cc{bottom:26.979488px;}
.y13a{bottom:26.979500px;}
.y138{bottom:26.979502px;}
.y81{bottom:27.002197px;}
.y153{bottom:27.305740px;}
.yd5{bottom:27.450128px;}
.yda{bottom:27.450165px;}
.yd9{bottom:27.450167px;}
.y162{bottom:27.479908px;}
.y165{bottom:27.479968px;}
.yaa{bottom:29.064516px;}
.ybc{bottom:29.064518px;}
.yb4{bottom:29.064519px;}
.yb7{bottom:29.064568px;}
.ybf{bottom:29.064572px;}
.yc5{bottom:29.064575px;}
.yaf{bottom:29.064578px;}
.yad{bottom:29.064591px;}
.y80{bottom:29.538256px;}
.ye3{bottom:30.885000px;}
.y155{bottom:31.416055px;}
.y156{bottom:31.479129px;}
.y174{bottom:31.949518px;}
.y172{bottom:31.949519px;}
.y178{bottom:31.949522px;}
.y179{bottom:31.949523px;}
.y159{bottom:32.147975px;}
.y82{bottom:33.143815px;}
.y1bd{bottom:33.352751px;}
.y9{bottom:33.900000px;}
.y1c6{bottom:33.901610px;}
.y7a{bottom:34.006957px;}
.y121{bottom:34.413939px;}
.y128{bottom:34.413952px;}
.y1d3{bottom:34.413964px;}
.y136{bottom:34.413989px;}
.yf6{bottom:34.713253px;}
.yf9{bottom:34.713257px;}
.y74{bottom:35.145480px;}
.y75{bottom:35.214503px;}
.y6b{bottom:35.937573px;}
.y5{bottom:36.000000px;}
.y1a3{bottom:36.089155px;}
.y1a4{bottom:36.089161px;}
.y78{bottom:36.214979px;}
.y6c{bottom:36.980874px;}
.ybd{bottom:37.885943px;}
.yb5{bottom:37.885946px;}
.yb9{bottom:37.885949px;}
.yb1{bottom:37.885953px;}
.yab{bottom:37.885959px;}
.ya7{bottom:37.885964px;}
.yc0{bottom:37.885968px;}
.y45{bottom:38.112827px;}
.yd6{bottom:38.543056px;}
.y152{bottom:38.648528px;}
.y1c2{bottom:38.706453px;}
.ya0{bottom:39.226952px;}
.y77{bottom:40.045396px;}
.y170{bottom:40.753573px;}
.y103{bottom:41.343429px;}
.y73{bottom:41.719024px;}
.y97{bottom:41.757315px;}
.y98{bottom:41.757327px;}
.y6d{bottom:42.202346px;}
.y7f{bottom:42.340231px;}
.y1c3{bottom:43.243606px;}
.ybe{bottom:43.967311px;}
.yb6{bottom:43.967316px;}
.yac{bottom:43.967324px;}
.yc3{bottom:43.967329px;}
.yd7{bottom:44.286626px;}
.y1f{bottom:45.300000px;}
.y1bc{bottom:47.943948px;}
.y9d{bottom:50.036411px;}
.ye2{bottom:54.585000px;}
.y3{bottom:57.637500px;}
.y1e{bottom:66.000000px;}
.ye1{bottom:78.450000px;}
.y2{bottom:81.637500px;}
.y1d{bottom:86.700000px;}
.ye0{bottom:102.300000px;}
.y1c{bottom:107.400000px;}
.y1f1{bottom:108.787500px;}
.ye7{bottom:113.887500px;}
.y214{bottom:126.637500px;}
.y1b{bottom:128.100000px;}
.y3b{bottom:128.287500px;}
.y1f0{bottom:132.487500px;}
.y134{bottom:136.987500px;}
.y133{bottom:137.025000px;}
.ye6{bottom:137.737500px;}
.y1a{bottom:148.800000px;}
.y213{bottom:150.495000px;}
.y3a{bottom:151.995000px;}
.y19f{bottom:152.130000px;}
.y1ef{bottom:156.345000px;}
.y84{bottom:158.745000px;}
.y72{bottom:158.775000px;}
.ye5{bottom:161.430000px;}
.y19{bottom:169.500000px;}
.y212{bottom:174.345000px;}
.y39{bottom:175.830000px;}
.y19e{bottom:175.995000px;}
.ydf{bottom:178.245000px;}
.y1ee{bottom:180.195000px;}
.y132{bottom:185.880000px;}
.y131{bottom:185.925000px;}
.y18{bottom:190.200000px;}
.y211{bottom:198.195000px;}
.y38{bottom:199.695000px;}
.y19d{bottom:199.830000px;}
.y1ed{bottom:203.895000px;}
.y17{bottom:210.900000px;}
.y71{bottom:217.245000px;}
.y210{bottom:221.895000px;}
.y37{bottom:223.395000px;}
.y19c{bottom:223.545000px;}
.y1ec{bottom:227.745000px;}
.y16{bottom:231.600000px;}
.y130{bottom:234.645000px;}
.y12f{bottom:234.675000px;}
.y70{bottom:240.945000px;}
.y6a{bottom:240.975000px;}
.y20f{bottom:245.745000px;}
.y36{bottom:247.245000px;}
.y19b{bottom:247.395000px;}
.y1eb{bottom:251.595000px;}
.y20e{bottom:269.595000px;}
.y35{bottom:271.095000px;}
.y198{bottom:271.125000px;}
.y1ea{bottom:275.295000px;}
.y126{bottom:283.380000px;}
.y127{bottom:283.424980px;}
.y120{bottom:283.425000px;}
.y20d{bottom:293.295000px;}
.y34{bottom:294.795000px;}
.ydc{bottom:297.345000px;}
.y1e9{bottom:299.145000px;}
.y197{bottom:308.445000px;}
.y69{bottom:310.380000px;}
.y20c{bottom:317.130000px;}
.y33{bottom:318.645000px;}
.y1e8{bottom:322.995000px;}
.y196{bottom:332.295000px;}
.y68{bottom:334.245000px;}
.y66{bottom:334.275000px;}
.y11f{bottom:335.895000px;}
.y20b{bottom:340.995000px;}
.y32{bottom:342.495000px;}
.y1e7{bottom:346.845000px;}
.y192{bottom:355.995000px;}
.y193{bottom:356.024959px;}
.y11e{bottom:359.745000px;}
.y20a{bottom:364.695000px;}
.y31{bottom:366.345000px;}
.y1e6{bottom:370.545000px;}
.y65{bottom:372.645000px;}
.y118{bottom:379.724959px;}
.y11d{bottom:379.725000px;}
.y209{bottom:388.575000px;}
.y30{bottom:390.075000px;}
.y18a{bottom:393.374959px;}
.y190{bottom:393.375000px;}
.y1e5{bottom:394.425000px;}
.y64{bottom:396.525000px;}
.y208{bottom:412.425000px;}
.y2f{bottom:413.925000px;}
.y117{bottom:414.975000px;}
.y1e4{bottom:418.275000px;}
.y63{bottom:420.375000px;}
.y189{bottom:431.775000px;}
.y207{bottom:436.125000px;}
.y2e{bottom:437.775000px;}
.y116{bottom:438.825000px;}
.y1e3{bottom:441.975000px;}
.y62{bottom:444.225000px;}
.y188{bottom:455.625000px;}
.y206{bottom:459.975000px;}
.y2d{bottom:461.475000px;}
.y115{bottom:462.525000px;}
.y1e2{bottom:465.825000px;}
.y61{bottom:467.925000px;}
.y187{bottom:479.475000px;}
.y205{bottom:483.825000px;}
.y2c{bottom:485.325000px;}
.y114{bottom:486.375000px;}
.y1e1{bottom:489.675000px;}
.y60{bottom:491.775000px;}
.yd2{bottom:497.174959px;}
.ydb{bottom:497.175000px;}
.y17e{bottom:499.424959px;}
.y186{bottom:499.425000px;}
.y204{bottom:507.525000px;}
.y2b{bottom:509.175000px;}
.y113{bottom:510.225000px;}
.y5f{bottom:511.575000px;}
.y1de{bottom:513.374959px;}
.y1e0{bottom:513.375000px;}
.y203{bottom:531.375000px;}
.y2a{bottom:532.875000px;}
.y110{bottom:534.074959px;}
.y10f{bottom:534.075000px;}
.y1dc{bottom:539.024959px;}
.y1dd{bottom:539.025000px;}
.y202{bottom:555.225000px;}
.y17d{bottom:555.825000px;}
.y29{bottom:556.725000px;}
.yd1{bottom:570.375000px;}
.y10e{bottom:572.325000px;}
.y10b{bottom:573.824959px;}
.y10a{bottom:573.825000px;}
.y201{bottom:579.075000px;}
.y16e{bottom:579.674959px;}
.y17c{bottom:579.675000px;}
.y28{bottom:580.575000px;}
.y1db{bottom:587.924959px;}
.ycd{bottom:594.224959px;}
.yd0{bottom:594.225000px;}
.y200{bottom:602.775000px;}
.y27{bottom:604.275000px;}
.y109{bottom:613.575000px;}
.y1ff{bottom:626.625000px;}
.y26{bottom:628.125000px;}
.y1d2{bottom:636.674959px;}
.y1da{bottom:636.675000px;}
.y101{bottom:637.274959px;}
.y108{bottom:637.275000px;}
.yc8{bottom:640.274959px;}
.yc7{bottom:640.275000px;}
.y16d{bottom:640.725000px;}
.y1fe{bottom:650.475000px;}
.y25{bottom:651.975000px;}
.y16c{bottom:664.425000px;}
.y1fd{bottom:674.175000px;}
.y24{bottom:684.675000px;}
.y1d0{bottom:685.424919px;}
.y1d1{bottom:685.425000px;}
.y16a{bottom:688.124919px;}
.y169{bottom:688.125000px;}
.yb8{bottom:691.124919px;}
.yc6{bottom:691.125000px;}
.y1fc{bottom:698.025000px;}
.y100{bottom:698.325000px;}
.y23{bottom:701.475000px;}
.y168{bottom:718.425000px;}
.y1fb{bottom:721.875000px;}
.y5e{bottom:722.025000px;}
.yff{bottom:722.175000px;}
.y1c9{bottom:734.174919px;}
.y1cf{bottom:734.175000px;}
.y160{bottom:742.124919px;}
.y167{bottom:742.170000px;}
.y22{bottom:742.920000px;}
.y1fa{bottom:745.620000px;}
.y5a{bottom:745.874919px;}
.y5d{bottom:745.920000px;}
.ya6{bottom:760.424919px;}
.yb0{bottom:760.470000px;}
.y15{bottom:763.620000px;}
.y1f9{bottom:769.470000px;}
.yfe{bottom:769.770000px;}
.y55{bottom:779.174919px;}
.y57{bottom:779.205000px;}
.y1bb{bottom:782.775000px;}
.y1c8{bottom:782.820000px;}
.y1f8{bottom:793.320000px;}
.yfd{bottom:793.620000px;}
.y15f{bottom:799.455000px;}
.y52{bottom:813.074919px;}
.y1f7{bottom:817.020000px;}
.yfc{bottom:817.320000px;}
.y15e{bottom:823.320000px;}
.ya5{bottom:833.820000px;}
.yf3{bottom:837.224919px;}
.yfb{bottom:837.270000px;}
.y1f6{bottom:840.870000px;}
.y15d{bottom:847.170000px;}
.y1b5{bottom:847.724919px;}
.y1ba{bottom:847.770000px;}
.y50{bottom:852.074919px;}
.ya4{bottom:857.520000px;}
.y1f5{bottom:864.720000px;}
.y15c{bottom:870.870000px;}
.y9c{bottom:877.275000px;}
.ya3{bottom:877.320000px;}
.y1b4{bottom:883.020000px;}
.y1f4{bottom:888.420000px;}
.y4f{bottom:890.670000px;}
.y150{bottom:894.525000px;}
.y15b{bottom:894.570000px;}
.yf2{bottom:898.320000px;}
.y1af{bottom:902.775000px;}
.y1b3{bottom:902.820000px;}
.y1f3{bottom:912.270000px;}
.y4e{bottom:914.520000px;}
.yee{bottom:922.124919px;}
.yf1{bottom:922.170000px;}
.y1f2{bottom:936.120000px;}
.y4d{bottom:938.220000px;}
.y91{bottom:946.724919px;}
.y9a{bottom:946.770000px;}
.y1ae{bottom:949.170000px;}
.y14f{bottom:952.470000px;}
.y43{bottom:958.124919px;}
.yed{bottom:959.970000px;}
.y1ad{bottom:973.020000px;}
.y14e{bottom:976.320000px;}
.yec{bottom:983.670000px;}
.y1ac{bottom:996.720000px;}
.y14d{bottom:1000.020000px;}
.yeb{bottom:1007.520000px;}
.y14{bottom:1015.620000px;}
.y90{bottom:1019.970000px;}
.y1ab{bottom:1020.570000px;}
.y42{bottom:1021.170000px;}
.y14a{bottom:1023.824919px;}
.y149{bottom:1023.870000px;}
.yea{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.y8f{bottom:1043.774919px;}
.y8e{bottom:1043.820000px;}
.y1aa{bottom:1044.420000px;}
.y41{bottom:1044.870000px;}
.ye9{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y140{bottom:1057.874919px;}
.y145{bottom:1057.920000px;}
.y1a7{bottom:1068.074919px;}
.y1a9{bottom:1068.120000px;}
.y3f{bottom:1068.674919px;}
.y3e{bottom:1068.720000px;}
.y11{bottom:1076.220000px;}
.y8d{bottom:1077.870000px;}
.ye8{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.y13f{bottom:1097.700000px;}
.y89{bottom:1101.674919px;}
.y8b{bottom:1101.750000px;}
.y3d{bottom:1102.800000px;}
.y1a0{bottom:1109.774919px;}
.y1a6{bottom:1109.850000px;}
.y135{bottom:1121.474919px;}
.y13d{bottom:1121.550000px;}
.y3c{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.y86{bottom:1134.224919px;}
.y85{bottom:1134.300000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h90{height:16.799028px;}
.h8{height:17.887500px;}
.h3b{height:18.299314px;}
.h37{height:19.379716px;}
.h35{height:19.389363px;}
.h39{height:20.180358px;}
.hf{height:20.700000px;}
.h9b{height:21.750293px;}
.he4{height:22.499074px;}
.hc5{height:23.250047px;}
.h41{height:23.250088px;}
.h43{height:25.649823px;}
.h9d{height:27.000054px;}
.h11{height:27.000270px;}
.h82{height:28.200117px;}
.hd5{height:28.200158px;}
.h25{height:30.150411px;}
.hc8{height:30.299611px;}
.hc6{height:30.299652px;}
.h97{height:30.299693px;}
.h20{height:30.749810px;}
.h22{height:30.750056px;}
.hbf{height:31.500210px;}
.h1a{height:31.500410px;}
.h28{height:31.500580px;}
.h3c{height:31.626817px;}
.h4e{height:32.699992px;}
.h92{height:32.700041px;}
.h7e{height:32.700083px;}
.h45{height:32.700288px;}
.h3e{height:32.850670px;}
.h38{height:33.494083px;}
.h36{height:33.510755px;}
.h1e{height:34.800084px;}
.h3a{height:34.877836px;}
.h6b{height:35.590829px;}
.h1c{height:35.999972px;}
.ha3{height:36.536392px;}
.ha1{height:36.554578px;}
.h88{height:37.618247px;}
.h64{height:39.150314px;}
.hd0{height:39.299783px;}
.h32{height:41.381670px;}
.h10{height:41.437500px;}
.h74{height:42.124027px;}
.h83{height:42.210832px;}
.hbc{height:42.392866px;}
.h16{height:42.432592px;}
.h14{height:42.453713px;}
.h5f{height:43.799279px;}
.haa{height:44.106779px;}
.h95{height:44.183989px;}
.hb2{height:44.525995px;}
.hb0{height:44.548158px;}
.hc1{height:44.647590px;}
.hba{height:44.895766px;}
.h6{height:45.300000px;}
.h99{height:45.330922px;}
.hc7{height:45.353486px;}
.hb4{height:45.403281px;}
.h87{height:45.600301px;}
.h8d{height:45.600322px;}
.he3{height:45.600342px;}
.h8f{height:45.600383px;}
.h2f{height:45.846738px;}
.h7b{height:45.916328px;}
.h23{height:46.027605px;}
.h2d{height:46.045400px;}
.h7f{height:46.508739px;}
.hd8{height:46.892894px;}
.hde{height:47.270051px;}
.h3d{height:47.374314px;}
.h3{height:48.600000px;}
.h3f{height:49.171876px;}
.hb7{height:49.499366px;}
.h34{height:49.541473px;}
.h33{height:49.860483px;}
.ha7{height:50.251507px;}
.h69{height:50.307711px;}
.h9f{height:50.850699px;}
.h31{height:51.449834px;}
.h7{height:52.998047px;}
.hd1{height:53.128063px;}
.h5b{height:53.239885px;}
.h59{height:53.266386px;}
.h62{height:53.800433px;}
.h72{height:53.999226px;}
.h79{height:53.999986px;}
.hae{height:54.000682px;}
.h56{height:54.668126px;}
.h51{height:54.695338px;}
.h5{height:55.942383px;}
.h13{height:55.948345px;}
.hdd{height:57.300080px;}
.hca{height:57.301914px;}
.h65{height:58.601457px;}
.h4{height:58.886719px;}
.ha6{height:59.699004px;}
.h75{height:60.140310px;}
.h8c{height:61.520977px;}
.hd7{height:61.798505px;}
.h2b{height:62.399325px;}
.ha5{height:62.442768px;}
.ha4{height:63.223668px;}
.ha2{height:63.255139px;}
.he{height:63.457031px;}
.hc{height:64.775391px;}
.h5d{height:65.076540px;}
.h8b{height:65.153211px;}
.h8a{height:65.185642px;}
.h9{height:65.645508px;}
.h7c{height:65.668756px;}
.h67{height:66.298814px;}
.h58{height:66.299488px;}
.h50{height:66.300907px;}
.h49{height:66.301766px;}
.h18{height:69.191801px;}
.h78{height:70.628906px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.hb6{height:72.854172px;}
.hd6{height:72.898534px;}
.hc4{height:72.937332px;}
.h17{height:73.276926px;}
.h15{height:73.313400px;}
.hbd{height:73.315124px;}
.h30{height:75.082950px;}
.hc3{height:75.426909px;}
.hab{height:76.279202px;}
.ha9{height:76.317170px;}
.hdc{height:76.426856px;}
.h96{height:76.486464px;}
.h81{height:76.664062px;}
.had{height:76.761129px;}
.h42{height:76.799338px;}
.h9c{height:77.015322px;}
.hb3{height:77.155525px;}
.hb1{height:77.193930px;}
.hc2{height:77.243595px;}
.he2{height:77.305561px;}
.hbb{height:77.643692px;}
.hb9{height:77.682340px;}
.ha0{height:78.180281px;}
.h9a{height:78.270152px;}
.hc9{height:78.309111px;}
.h9e{height:78.309840px;}
.hb5{height:78.675703px;}
.h24{height:79.473071px;}
.h2e{height:79.515891px;}
.h86{height:80.225033px;}
.h77{height:80.229373px;}
.h91{height:80.460482px;}
.hda{height:80.939142px;}
.hd9{height:80.979431px;}
.h29{height:81.413005px;}
.h12{height:81.531577px;}
.he1{height:81.869727px;}
.he0{height:81.910479px;}
.h6e{height:81.992385px;}
.hce{height:82.132237px;}
.h89{height:82.295728px;}
.h2{height:82.441406px;}
.hdb{height:83.015519px;}
.h2a{height:83.793014px;}
.h44{height:84.683984px;}
.h40{height:84.902094px;}
.h76{height:84.966162px;}
.h84{height:85.003857px;}
.h73{height:85.008455px;}
.h85{height:85.012418px;}
.h27{height:85.593701px;}
.hd4{height:86.620307px;}
.h5e{height:86.814484px;}
.h6c{height:86.833264px;}
.h6a{height:86.876486px;}
.hcc{height:86.981373px;}
.h6d{height:87.159614px;}
.h26{height:87.490560px;}
.h7d{height:87.604521px;}
.h21{height:89.229903px;}
.h55{height:89.448895px;}
.h48{height:89.555220px;}
.hcd{height:90.474198px;}
.h1b{height:91.408001px;}
.hd3{height:91.477931px;}
.h5c{height:91.940062px;}
.h5a{height:91.985826px;}
.h71{height:92.690046px;}
.h7a{height:92.822925px;}
.h63{height:93.133395px;}
.h80{height:93.660715px;}
.h54{height:94.130097px;}
.ha8{height:94.419677px;}
.h47{height:94.432171px;}
.h93{height:94.517904px;}
.h53{height:94.730010px;}
.h46{height:94.889822px;}
.h4d{height:95.031965px;}
.haf{height:95.317095px;}
.h57{height:96.320318px;}
.h94{height:96.768423px;}
.hc0{height:97.650275px;}
.h98{height:98.989741px;}
.h4c{height:99.120428px;}
.h4b{height:100.642708px;}
.h4a{height:100.692804px;}
.h66{height:101.183578px;}
.hdf{height:103.410541px;}
.h8e{height:103.503757px;}
.h19{height:103.790529px;}
.h2c{height:104.614563px;}
.h68{height:107.433676px;}
.h4f{height:108.014230px;}
.he5{height:108.110488px;}
.hac{height:108.113773px;}
.hbe{height:109.903651px;}
.hcb{height:109.909826px;}
.hcf{height:113.692655px;}
.h1f{height:113.870762px;}
.hb8{height:114.982222px;}
.hd2{height:115.921460px;}
.h1d{height:117.612726px;}
.h61{height:117.828847px;}
.h70{height:119.100000px;}
.h52{height:126.925784px;}
.h60{height:137.688490px;}
.h6f{height:192.780000px;}
.hd{height:248.400000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w31{width:17.999581px;}
.w29{width:21.750317px;}
.w3d{width:25.649606px;}
.w47{width:25.650323px;}
.w38{width:34.799246px;}
.w3c{width:36.000339px;}
.w1a{width:43.799762px;}
.w33{width:43.800065px;}
.w40{width:44.399422px;}
.w34{width:44.999079px;}
.w35{width:46.200552px;}
.w9{width:58.499117px;}
.w17{width:58.499137px;}
.w10{width:58.500941px;}
.w15{width:59.701305px;}
.w16{width:61.648661px;}
.w19{width:75.900727px;}
.w3e{width:79.798356px;}
.w3b{width:80.401537px;}
.w32{width:86.697880px;}
.w1b{width:86.700790px;}
.w2a{width:86.702039px;}
.w22{width:88.650205px;}
.w1e{width:108.000817px;}
.wd{width:116.998614px;}
.w45{width:121.499776px;}
.w2c{width:121.500724px;}
.w2d{width:122.104590px;}
.w41{width:124.799964px;}
.w20{width:129.898844px;}
.w1f{width:129.904015px;}
.w18{width:129.904836px;}
.wc{width:130.498091px;}
.wf{width:133.650456px;}
.w21{width:140.701513px;}
.w14{width:143.405416px;}
.w12{width:145.194781px;}
.w44{width:151.805712px;}
.w1d{width:161.999664px;}
.w6{width:178.350000px;}
.w26{width:187.648449px;}
.w24{width:195.495000px;}
.w25{width:197.850000px;}
.we{width:202.503648px;}
.w3f{width:207.005192px;}
.w27{width:228.150013px;}
.w43{width:228.746170px;}
.w37{width:235.358242px;}
.w1c{width:237.754411px;}
.w28{width:248.706156px;}
.w5{width:262.995000px;}
.wb{width:264.294826px;}
.w39{width:274.513852px;}
.w3{width:282.495000px;}
.w2e{width:283.500052px;}
.w3a{width:284.097021px;}
.w46{width:284.245979px;}
.w2f{width:284.699580px;}
.w30{width:284.699616px;}
.w2b{width:291.755270px;}
.w42{width:293.695268px;}
.w4{width:297.780000px;}
.w23{width:356.712929px;}
.w11{width:359.999549px;}
.w36{width:368.394960px;}
.wa{width:398.095110px;}
.w13{width:398.244081px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x69{left:1.324848px;}
.x1e{left:2.357166px;}
.x23{left:4.121061px;}
.x47{left:5.645466px;}
.x4{left:6.900000px;}
.x65{left:8.992176px;}
.x7c{left:10.812165px;}
.x9{left:12.435000px;}
.x42{left:14.427195px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x41{left:19.035755px;}
.x19{left:20.887500px;}
.x5{left:22.200000px;}
.xa1{left:23.669893px;}
.x30{left:24.922166px;}
.x62{left:27.308649px;}
.x32{left:28.902027px;}
.x40{left:30.775035px;}
.xb{left:32.100000px;}
.x3e{left:33.655506px;}
.x7d{left:36.559369px;}
.x4f{left:38.081359px;}
.x25{left:39.699699px;}
.x3{left:42.599987px;}
.x35{left:44.193761px;}
.x7b{left:46.502509px;}
.x29{left:47.798957px;}
.x61{left:50.538234px;}
.x2d{left:51.976853px;}
.x52{left:53.291429px;}
.x4c{left:55.254529px;}
.x5e{left:56.724055px;}
.x73{left:58.902978px;}
.xa5{left:60.741599px;}
.x2f{left:63.472228px;}
.x60{left:64.696491px;}
.x59{left:66.423800px;}
.x3f{left:67.574048px;}
.x4a{left:68.825395px;}
.x72{left:71.163830px;}
.x56{left:72.277217px;}
.x24{left:74.133999px;}
.x5b{left:75.735752px;}
.x20{left:77.155778px;}
.x10{left:78.899987px;}
.x67{left:84.740123px;}
.x2e{left:86.707320px;}
.x37{left:88.650550px;}
.x54{left:90.966274px;}
.x1a{left:95.699987px;}
.x5a{left:96.741378px;}
.x22{left:98.630121px;}
.x18{left:100.200000px;}
.x6e{left:101.478984px;}
.x17{left:104.700000px;}
.xa4{left:105.765882px;}
.xd{left:106.980000px;}
.x80{left:110.840937px;}
.x84{left:111.922929px;}
.x95{left:115.363822px;}
.x96{left:116.456631px;}
.x5c{left:118.145031px;}
.xa6{left:119.149624px;}
.x5f{left:120.321671px;}
.x6{left:121.687500px;}
.x75{left:124.234017px;}
.xa{left:128.130000px;}
.x81{left:134.580245px;}
.x3d{left:135.795259px;}
.x3a{left:140.529879px;}
.x82{left:144.152522px;}
.x55{left:151.282876px;}
.x78{left:156.825000px;}
.x77{left:161.325000px;}
.xa9{left:164.144987px;}
.x26{left:173.174980px;}
.x97{left:175.874014px;}
.x3c{left:177.563144px;}
.x6f{left:179.044328px;}
.x11{left:181.679987px;}
.x39{left:183.826339px;}
.x6b{left:195.345000px;}
.x6d{left:197.850000px;}
.xa3{left:206.656559px;}
.x51{left:208.418121px;}
.x94{left:213.231222px;}
.x33{left:214.318482px;}
.x71{left:218.209265px;}
.xa2{left:220.529987px;}
.x36{left:225.643852px;}
.x90{left:227.103707px;}
.x3b{left:234.239623px;}
.x38{left:238.537505px;}
.x31{left:240.944987px;}
.x79{left:243.494987px;}
.x27{left:245.129987px;}
.xa7{left:271.424980px;}
.x99{left:276.422416px;}
.x70{left:283.394987px;}
.x28{left:302.324980px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x7e{left:313.874980px;}
.x34{left:319.581890px;}
.x74{left:323.894987px;}
.x83{left:326.129987px;}
.x85{left:327.344987px;}
.x2b{left:339.160892px;}
.x1d{left:340.874980px;}
.x76{left:344.444987px;}
.x68{left:346.911280px;}
.x8d{left:348.314069px;}
.x8e{left:356.728451px;}
.x7a{left:387.524987px;}
.x21{left:389.158511px;}
.x1f{left:399.374987px;}
.x2c{left:402.674987px;}
.xa8{left:423.224987px;}
.x2a{left:430.274987px;}
.x7f{left:435.974987px;}
.x43{left:440.924987px;}
.x1b{left:457.274987px;}
.x1c{left:510.374987px;}
.x45{left:516.974987px;}
.x89{left:531.074959px;}
.x9b{left:537.674987px;}
.x46{left:542.925000px;}
.x50{left:543.974959px;}
.x9e{left:569.624959px;}
.x8a{left:576.074987px;}
.x64{left:577.274959px;}
.x92{left:583.124959px;}
.x13{left:585.824987px;}
.x9f{left:595.274987px;}
.x88{left:597.074987px;}
.x5d{left:599.474959px;}
.x48{left:604.574987px;}
.x12{left:605.624987px;}
.x8b{left:614.774959px;}
.x93{left:617.924987px;}
.xc{left:625.425000px;}
.x4b{left:640.274959px;}
.x15{left:643.604987px;}
.x6c{left:652.770000px;}
.x14{left:656.219987px;}
.x8c{left:661.019987px;}
.x57{left:672.419987px;}
.x49{left:701.819987px;}
.xf{left:713.655000px;}
.x4d{left:716.204987px;}
.x66{left:718.004987px;}
.x63{left:729.404987px;}
.x9a{left:741.404987px;}
.x58{left:742.574919px;}
.x91{left:745.754987px;}
.x44{left:748.769987px;}
.x86{left:758.624919px;}
.xa0{left:770.774919px;}
.x87{left:776.669987px;}
.x53{left:781.754987px;}
.x98{left:784.919987px;}
.x9c{left:791.774919px;}
.x4e{left:806.774919px;}
.x6a{left:814.004987px;}
.x2{left:819.119987px;}
.x8f{left:825.704987px;}
.x9d{left:827.819987px;}
.x16{left:850.619987px;}
@media print{
.v9{vertical-align:-114.805654pt;}
.va{vertical-align:-65.208192pt;}
.vc{vertical-align:-59.862981pt;}
.v6{vertical-align:-57.579535pt;}
.v4{vertical-align:-56.536526pt;}
.v8{vertical-align:-54.258831pt;}
.v16{vertical-align:-49.763635pt;}
.vf{vertical-align:-46.208740pt;}
.v14{vertical-align:-44.192633pt;}
.v11{vertical-align:-37.318027pt;}
.v12{vertical-align:-36.139005pt;}
.v5{vertical-align:-24.017369pt;}
.v2{vertical-align:-18.518741pt;}
.v13{vertical-align:-13.936994pt;}
.vb{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:5.333333pt;}
.ve{vertical-align:15.208966pt;}
.v3{vertical-align:18.518741pt;}
.v15{vertical-align:20.342362pt;}
.v1{vertical-align:21.841143pt;}
.v7{vertical-align:28.576552pt;}
.v10{vertical-align:37.318027pt;}
.ls8{letter-spacing:-2.666667pt;}
.lsa{letter-spacing:-2.661333pt;}
.ls7{letter-spacing:-2.656000pt;}
.ls9{letter-spacing:-2.400000pt;}
.ls8e{letter-spacing:-1.903599pt;}
.ls8a{letter-spacing:-1.594273pt;}
.ls25{letter-spacing:-1.558045pt;}
.ls5f{letter-spacing:-1.514914pt;}
.ls63{letter-spacing:-1.399124pt;}
.ls30{letter-spacing:-1.353840pt;}
.ls2e{letter-spacing:-1.351562pt;}
.ls26{letter-spacing:-1.005834pt;}
.ls70{letter-spacing:-0.906970pt;}
.ls24{letter-spacing:-0.757638pt;}
.ls3b{letter-spacing:-0.440453pt;}
.ls3a{letter-spacing:-0.330500pt;}
.ls37{letter-spacing:-0.302281pt;}
.ls2a{letter-spacing:-0.273990pt;}
.ls58{letter-spacing:-0.192000pt;}
.ls95{letter-spacing:-0.170667pt;}
.ls35{letter-spacing:-0.137524pt;}
.ls5b{letter-spacing:-0.090134pt;}
.ls76{letter-spacing:-0.070040pt;}
.ls96{letter-spacing:-0.021333pt;}
.ls6{letter-spacing:-0.010667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls94{letter-spacing:0.026667pt;}
.ls0{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.133333pt;}
.ls3d{letter-spacing:0.138667pt;}
.ls57{letter-spacing:0.149333pt;}
.ls43{letter-spacing:0.181333pt;}
.ls3c{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls42{letter-spacing:0.330667pt;}
.ls5c{letter-spacing:0.341333pt;}
.ls23{letter-spacing:0.418534pt;}
.ls91{letter-spacing:0.533333pt;}
.ls88{letter-spacing:0.586667pt;}
.ls78{letter-spacing:3.588519pt;}
.ls55{letter-spacing:3.905584pt;}
.ls7a{letter-spacing:4.489730pt;}
.ls92{letter-spacing:4.906667pt;}
.ls41{letter-spacing:5.280000pt;}
.ls54{letter-spacing:5.333333pt;}
.ls87{letter-spacing:8.480000pt;}
.ls85{letter-spacing:8.533333pt;}
.ls86{letter-spacing:8.586667pt;}
.ls75{letter-spacing:11.924815pt;}
.lsb{letter-spacing:15.598079pt;}
.ls69{letter-spacing:17.203861pt;}
.ls67{letter-spacing:17.348911pt;}
.ls53{letter-spacing:17.495720pt;}
.ls12{letter-spacing:17.634880pt;}
.ls38{letter-spacing:18.450010pt;}
.ls36{letter-spacing:18.790417pt;}
.ls50{letter-spacing:22.400000pt;}
.ls14{letter-spacing:24.998252pt;}
.ls80{letter-spacing:27.200000pt;}
.ls83{letter-spacing:28.800000pt;}
.ls84{letter-spacing:28.853333pt;}
.ls7b{letter-spacing:33.506754pt;}
.ls82{letter-spacing:34.080000pt;}
.ls81{letter-spacing:34.133333pt;}
.ls93{letter-spacing:41.600000pt;}
.ls6c{letter-spacing:42.729541pt;}
.ls4c{letter-spacing:43.200000pt;}
.ls5a{letter-spacing:47.192784pt;}
.ls28{letter-spacing:48.678164pt;}
.ls1d{letter-spacing:49.600000pt;}
.ls6a{letter-spacing:53.426075pt;}
.ls40{letter-spacing:53.777399pt;}
.ls3e{letter-spacing:53.782785pt;}
.ls4f{letter-spacing:60.333948pt;}
.ls77{letter-spacing:69.521891pt;}
.ls79{letter-spacing:74.998322pt;}
.ls2c{letter-spacing:77.785007pt;}
.ls60{letter-spacing:79.219393pt;}
.ls64{letter-spacing:81.100975pt;}
.ls4e{letter-spacing:85.159630pt;}
.ls5e{letter-spacing:86.215016pt;}
.ls13{letter-spacing:86.237715pt;}
.ls8b{letter-spacing:89.003602pt;}
.ls59{letter-spacing:89.790016pt;}
.ls2f{letter-spacing:91.733333pt;}
.ls62{letter-spacing:91.811514pt;}
.ls8f{letter-spacing:99.544904pt;}
.ls6d{letter-spacing:102.382933pt;}
.ls15{letter-spacing:104.330228pt;}
.ls1e{letter-spacing:105.352281pt;}
.ls3f{letter-spacing:105.881085pt;}
.ls16{letter-spacing:108.075890pt;}
.ls8d{letter-spacing:108.335410pt;}
.ls89{letter-spacing:109.154271pt;}
.ls7d{letter-spacing:109.667712pt;}
.ls4d{letter-spacing:114.178611pt;}
.ls68{letter-spacing:115.713643pt;}
.ls66{letter-spacing:117.820717pt;}
.ls11{letter-spacing:121.209151pt;}
.ls27{letter-spacing:122.767249pt;}
.ls29{letter-spacing:135.382982pt;}
.ls1f{letter-spacing:140.562869pt;}
.lsd{letter-spacing:144.555252pt;}
.ls2b{letter-spacing:148.741398pt;}
.ls1a{letter-spacing:149.066363pt;}
.ls48{letter-spacing:149.114915pt;}
.ls4a{letter-spacing:149.814477pt;}
.ls47{letter-spacing:150.862373pt;}
.ls4b{letter-spacing:150.866233pt;}
.ls49{letter-spacing:151.213602pt;}
.ls5d{letter-spacing:151.605342pt;}
.lsc{letter-spacing:153.419032pt;}
.ls45{letter-spacing:160.822673pt;}
.ls56{letter-spacing:170.999075pt;}
.ls17{letter-spacing:171.003704pt;}
.ls7c{letter-spacing:174.223183pt;}
.ls1b{letter-spacing:185.945279pt;}
.ls61{letter-spacing:192.307249pt;}
.ls65{letter-spacing:195.250235pt;}
.ls2d{letter-spacing:195.658044pt;}
.ls7f{letter-spacing:202.085333pt;}
.lsf{letter-spacing:211.538569pt;}
.ls32{letter-spacing:239.901819pt;}
.ls90{letter-spacing:241.647981pt;}
.ls22{letter-spacing:242.300302pt;}
.ls10{letter-spacing:243.815209pt;}
.ls33{letter-spacing:248.741844pt;}
.ls34{letter-spacing:253.441704pt;}
.ls39{letter-spacing:257.535249pt;}
.ls31{letter-spacing:257.720681pt;}
.ls1c{letter-spacing:272.335705pt;}
.ls44{letter-spacing:285.280759pt;}
.ls74{letter-spacing:287.837733pt;}
.ls73{letter-spacing:288.523333pt;}
.ls46{letter-spacing:290.997872pt;}
.ls6f{letter-spacing:291.322867pt;}
.ls72{letter-spacing:291.665667pt;}
.ls6b{letter-spacing:292.711504pt;}
.ls18{letter-spacing:308.591755pt;}
.lse{letter-spacing:314.039784pt;}
.ls6e{letter-spacing:314.404733pt;}
.ls71{letter-spacing:333.728081pt;}
.ls7e{letter-spacing:358.475929pt;}
.ls8c{letter-spacing:374.414481pt;}
.ls21{letter-spacing:432.624928pt;}
.ls20{letter-spacing:447.329726pt;}
.ls51{letter-spacing:454.734739pt;}
.ls19{letter-spacing:541.171692pt;}
.ls52{letter-spacing:984.661754pt;}
.wsc{word-spacing:-159.023529pt;}
.ws68{word-spacing:-135.267471pt;}
.ws69{word-spacing:-133.453652pt;}
.ws3b{word-spacing:-96.968990pt;}
.ws78{word-spacing:-86.911061pt;}
.ws4d{word-spacing:-44.324964pt;}
.ws25{word-spacing:-40.480652pt;}
.ws55{word-spacing:-38.587737pt;}
.ws5f{word-spacing:-32.411988pt;}
.ws3e{word-spacing:-28.155220pt;}
.ws7b{word-spacing:-26.088658pt;}
.ws3d{word-spacing:-24.456953pt;}
.ws10{word-spacing:-22.044630pt;}
.ws4c{word-spacing:-20.987199pt;}
.ws1d{word-spacing:-19.809913pt;}
.ws79{word-spacing:-19.704425pt;}
.ws1e{word-spacing:-18.852346pt;}
.ws23{word-spacing:-18.433812pt;}
.ws1b{word-spacing:-17.994566pt;}
.ws21{word-spacing:-17.676175pt;}
.ws3a{word-spacing:-17.389170pt;}
.ws67{word-spacing:-17.326948pt;}
.ws22{word-spacing:-16.875767pt;}
.ws4b{word-spacing:-16.192000pt;}
.ws7f{word-spacing:-16.149333pt;}
.wsa{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.ws80{word-spacing:-15.829333pt;}
.ws52{word-spacing:-15.808000pt;}
.ws11{word-spacing:-13.844671pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws34{word-spacing:-11.290379pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws31{word-spacing:-8.501457pt;}
.ws56{word-spacing:-2.206624pt;}
.wsb{word-spacing:0.000000pt;}
.ws4e{word-spacing:6.005347pt;}
.ws2e{word-spacing:6.859209pt;}
.ws75{word-spacing:6.965285pt;}
.ws1a{word-spacing:9.285196pt;}
.ws12{word-spacing:11.424696pt;}
.ws63{word-spacing:12.220913pt;}
.ws61{word-spacing:13.165525pt;}
.wsf{word-spacing:15.338282pt;}
.ws49{word-spacing:16.051432pt;}
.ws76{word-spacing:16.604113pt;}
.ws71{word-spacing:19.575937pt;}
.ws1c{word-spacing:21.593479pt;}
.ws6b{word-spacing:24.004419pt;}
.ws51{word-spacing:30.642667pt;}
.ws50{word-spacing:35.339157pt;}
.ws33{word-spacing:35.510063pt;}
.ws39{word-spacing:36.217684pt;}
.ws5d{word-spacing:37.489275pt;}
.ws60{word-spacing:37.961581pt;}
.ws13{word-spacing:38.165109pt;}
.ws64{word-spacing:38.433887pt;}
.ws62{word-spacing:38.788116pt;}
.ws30{word-spacing:39.361075pt;}
.ws7c{word-spacing:39.416020pt;}
.wse{word-spacing:41.526068pt;}
.ws54{word-spacing:41.565225pt;}
.ws5a{word-spacing:43.266954pt;}
.ws58{word-spacing:47.270302pt;}
.ws6f{word-spacing:47.692789pt;}
.ws47{word-spacing:49.577962pt;}
.ws16{word-spacing:54.930530pt;}
.ws18{word-spacing:55.034992pt;}
.ws53{word-spacing:55.628334pt;}
.ws38{word-spacing:56.518043pt;}
.ws7a{word-spacing:56.591108pt;}
.ws14{word-spacing:57.048794pt;}
.ws4f{word-spacing:57.512745pt;}
.ws2c{word-spacing:57.617066pt;}
.ws5c{word-spacing:60.986490pt;}
.ws2d{word-spacing:61.462887pt;}
.ws37{word-spacing:63.016546pt;}
.ws6c{word-spacing:64.198309pt;}
.ws19{word-spacing:67.238052pt;}
.ws46{word-spacing:67.356381pt;}
.ws5e{word-spacing:69.547034pt;}
.ws65{word-spacing:70.432607pt;}
.ws28{word-spacing:74.054658pt;}
.ws45{word-spacing:75.101088pt;}
.ws6a{word-spacing:75.794384pt;}
.ws72{word-spacing:81.729536pt;}
.ws27{word-spacing:83.653409pt;}
.ws7e{word-spacing:85.664115pt;}
.ws59{word-spacing:85.994995pt;}
.ws17{word-spacing:87.415450pt;}
.ws5b{word-spacing:88.890224pt;}
.ws44{word-spacing:94.181829pt;}
.ws26{word-spacing:94.420935pt;}
.ws15{word-spacing:97.159910pt;}
.ws7d{word-spacing:97.385088pt;}
.ws43{word-spacing:99.667330pt;}
.ws57{word-spacing:103.832915pt;}
.ws36{word-spacing:105.973019pt;}
.ws4a{word-spacing:106.694813pt;}
.ws2f{word-spacing:107.774559pt;}
.ws42{word-spacing:112.322237pt;}
.ws29{word-spacing:118.291648pt;}
.ws6e{word-spacing:136.727513pt;}
.ws3c{word-spacing:142.146611pt;}
.ws77{word-spacing:162.984492pt;}
.ws2a{word-spacing:164.154170pt;}
.ws74{word-spacing:165.250506pt;}
.ws1f{word-spacing:169.352517pt;}
.ws2b{word-spacing:195.320608pt;}
.ws70{word-spacing:202.229809pt;}
.ws35{word-spacing:213.082600pt;}
.ws40{word-spacing:227.938864pt;}
.ws32{word-spacing:246.132522pt;}
.ws3f{word-spacing:276.509170pt;}
.ws6d{word-spacing:302.477796pt;}
.wsd{word-spacing:342.628509pt;}
.ws66{word-spacing:385.792100pt;}
.ws24{word-spacing:478.098725pt;}
.ws73{word-spacing:531.269549pt;}
.ws41{word-spacing:603.146172pt;}
.ws20{word-spacing:675.108444pt;}
.ws48{word-spacing:1014.854624pt;}
._3c{margin-left:-1020.155605pt;}
._41{margin-left:-936.989003pt;}
._a9{margin-left:-807.944096pt;}
._a6{margin-left:-805.278805pt;}
._9b{margin-left:-803.952989pt;}
._4b{margin-left:-640.380512pt;}
._93{margin-left:-638.254496pt;}
._49{margin-left:-555.892650pt;}
._88{margin-left:-471.214865pt;}
._b3{margin-left:-442.468529pt;}
._42{margin-left:-437.317759pt;}
._82{margin-left:-432.053830pt;}
._45{margin-left:-415.422659pt;}
._4d{margin-left:-414.046962pt;}
._60{margin-left:-342.930819pt;}
._8a{margin-left:-335.224078pt;}
._4e{margin-left:-329.532574pt;}
._55{margin-left:-325.453328pt;}
._44{margin-left:-320.784834pt;}
._47{margin-left:-306.401123pt;}
._2e{margin-left:-300.794066pt;}
._bc{margin-left:-280.352032pt;}
._7c{margin-left:-266.705714pt;}
._aa{margin-left:-250.918306pt;}
._ab{margin-left:-247.832440pt;}
._bb{margin-left:-244.605172pt;}
._53{margin-left:-241.519261pt;}
._ba{margin-left:-238.107180pt;}
._83{margin-left:-230.734417pt;}
._61{margin-left:-201.099831pt;}
._5a{margin-left:-185.512414pt;}
._56{margin-left:-180.646780pt;}
._62{margin-left:-162.979660pt;}
._7f{margin-left:-157.601073pt;}
._58{margin-left:-156.382787pt;}
._5b{margin-left:-152.997858pt;}
._5f{margin-left:-151.840309pt;}
._57{margin-left:-145.331090pt;}
._7e{margin-left:-137.423730pt;}
._52{margin-left:-133.335939pt;}
._5d{margin-left:-131.445193pt;}
._59{margin-left:-123.557208pt;}
._5c{margin-left:-120.778755pt;}
._54{margin-left:-114.083389pt;}
._50{margin-left:-102.543112pt;}
._5e{margin-left:-94.504248pt;}
._4f{margin-left:-59.673170pt;}
._c8{margin-left:-4.736000pt;}
._6{margin-left:-3.776000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._c{width:2.560000pt;}
._d{width:3.712000pt;}
._e{width:4.736000pt;}
._2f{width:5.696000pt;}
._b{width:6.720000pt;}
._3a{width:8.211862pt;}
._10{width:9.600000pt;}
._11{width:10.522667pt;}
._1d{width:11.648000pt;}
._9{width:12.800000pt;}
._a{width:14.144000pt;}
._2a{width:15.040000pt;}
._64{width:15.934003pt;}
._29{width:17.280000pt;}
._f{width:18.304000pt;}
._7{width:19.200000pt;}
._8{width:20.144000pt;}
._17{width:21.045333pt;}
._12{width:22.336000pt;}
._c6{width:23.296000pt;}
._13{width:24.218667pt;}
._b1{width:25.317333pt;}
._5{width:26.224000pt;}
._4{width:27.205333pt;}
._21{width:28.298667pt;}
._1e{width:29.888000pt;}
._1f{width:30.810667pt;}
._2b{width:31.882667pt;}
._2c{width:33.408000pt;}
._2d{width:34.464000pt;}
._34{width:35.722925pt;}
._c3{width:36.736000pt;}
._97{width:37.999253pt;}
._92{width:39.829333pt;}
._c4{width:41.216000pt;}
._c0{width:42.432000pt;}
._6d{width:43.522590pt;}
._14{width:44.544000pt;}
._20{width:45.760000pt;}
._80{width:46.976000pt;}
._1c{width:48.576000pt;}
._15{width:49.600000pt;}
._1b{width:50.560000pt;}
._81{width:52.117333pt;}
._16{width:53.824000pt;}
._26{width:55.104000pt;}
._24{width:56.192000pt;}
._25{width:57.344000pt;}
._a3{width:58.779691pt;}
._18{width:60.032000pt;}
._7d{width:61.645484pt;}
._22{width:62.848000pt;}
._23{width:63.808000pt;}
._98{width:64.874667pt;}
._8c{width:65.936765pt;}
._8e{width:67.778081pt;}
._48{width:68.854351pt;}
._38{width:70.866233pt;}
._7a{width:72.146151pt;}
._75{width:73.373466pt;}
._3b{width:76.081855pt;}
._ac{width:77.662831pt;}
._7b{width:78.586993pt;}
._94{width:80.995191pt;}
._8b{width:83.393615pt;}
._c7{width:84.736000pt;}
._9e{width:86.624840pt;}
._70{width:88.629360pt;}
._a4{width:90.228251pt;}
._c5{width:92.933333pt;}
._4a{width:95.119215pt;}
._6c{width:96.099388pt;}
._77{width:97.849952pt;}
._68{width:101.150351pt;}
._51{width:102.229333pt;}
._89{width:103.230824pt;}
._8d{width:104.806409pt;}
._76{width:106.487295pt;}
._72{width:107.772861pt;}
._9c{width:109.027511pt;}
._27{width:110.848000pt;}
._28{width:111.808000pt;}
._9d{width:112.850354pt;}
._bf{width:114.840505pt;}
._c2{width:116.597333pt;}
._19{width:117.760000pt;}
._1a{width:118.784000pt;}
._b9{width:121.380622pt;}
._6e{width:122.486537pt;}
._a8{width:123.467801pt;}
._6f{width:125.908406pt;}
._3e{width:127.575777pt;}
._3d{width:128.900379pt;}
._bd{width:130.976276pt;}
._95{width:133.349497pt;}
._6a{width:135.920785pt;}
._4c{width:137.766398pt;}
._63{width:140.142878pt;}
._46{width:145.529175pt;}
._86{width:147.686560pt;}
._69{width:148.585031pt;}
._43{width:151.849227pt;}
._39{width:154.730127pt;}
._90{width:160.593004pt;}
._c1{width:161.939325pt;}
._be{width:163.082144pt;}
._85{width:164.047016pt;}
._99{width:165.134994pt;}
._87{width:166.168478pt;}
._37{width:172.800000pt;}
._3f{width:178.904123pt;}
._40{width:182.877930pt;}
._ae{width:184.415814pt;}
._af{width:186.565599pt;}
._b0{width:189.972923pt;}
._96{width:193.301874pt;}
._a0{width:196.243073pt;}
._a5{width:198.014219pt;}
._a2{width:200.338242pt;}
._a1{width:210.707439pt;}
._b8{width:211.632082pt;}
._a7{width:212.596662pt;}
._6b{width:222.620780pt;}
._b7{width:224.605623pt;}
._84{width:225.756792pt;}
._74{width:229.540690pt;}
._91{width:238.272000pt;}
._79{width:242.579840pt;}
._65{width:250.861324pt;}
._67{width:258.161687pt;}
._33{width:259.633757pt;}
._b4{width:261.688327pt;}
._8f{width:273.661180pt;}
._66{width:278.426074pt;}
._b2{width:301.551910pt;}
._b5{width:302.448224pt;}
._9f{width:308.816019pt;}
._78{width:310.091609pt;}
._73{width:327.228411pt;}
._32{width:374.758715pt;}
._36{width:385.061125pt;}
._31{width:397.458299pt;}
._35{width:441.025405pt;}
._30{width:450.327135pt;}
._9a{width:463.478163pt;}
._71{width:554.368615pt;}
._ad{width:703.804994pt;}
._b6{width:987.776000pt;}
.fs1d{font-size:17.560825pt;}
.fs1f{font-size:19.365957pt;}
.fs1e{font-size:30.350481pt;}
.fs51{font-size:33.107253pt;}
.fs20{font-size:33.470302pt;}
.fs45{font-size:34.070611pt;}
.fs3d{font-size:38.170459pt;}
.fs42{font-size:38.230086pt;}
.fs7{font-size:38.450063pt;}
.fs1a{font-size:39.711667pt;}
.fs56{font-size:39.967119pt;}
.fs4a{font-size:40.037082pt;}
.fs59{font-size:40.346989pt;}
.fs61{font-size:40.457171pt;}
.fs5f{font-size:40.682055pt;}
.fs4c{font-size:41.076369pt;}
.fs3f{font-size:41.606832pt;}
.fs10{font-size:41.686914pt;}
.fs17{font-size:41.723789pt;}
.fs40{font-size:42.143641pt;}
.fs6d{font-size:42.470601pt;}
.fs31{font-size:42.666667pt;}
.fs70{font-size:42.812190pt;}
.fs15{font-size:43.000213pt;}
.fs5b{font-size:43.570981pt;}
.fs19{font-size:43.996542pt;}
.fs22{font-size:44.534661pt;}
.fs21{font-size:45.462471pt;}
.fs38{font-size:45.563380pt;}
.fs64{font-size:45.574610pt;}
.fsd{font-size:47.177429pt;}
.fs1c{font-size:47.542172pt;}
.fs1b{font-size:47.848308pt;}
.fs3{font-size:48.000000pt;}
.fs68{font-size:48.117755pt;}
.fs2f{font-size:48.243033pt;}
.fs33{font-size:48.750971pt;}
.fsb{font-size:48.804085pt;}
.fs2b{font-size:49.537226pt;}
.fs2{font-size:50.666667pt;}
.fs35{font-size:53.074974pt;}
.fs1{font-size:53.333333pt;}
.fs52{font-size:57.289784pt;}
.fs4{font-size:58.666667pt;}
.fs46{font-size:59.038229pt;}
.fs53{font-size:59.922821pt;}
.fs5{font-size:64.000000pt;}
.fs6c{font-size:66.009569pt;}
.fs8{font-size:66.399489pt;}
.fs47{font-size:68.841749pt;}
.fs55{font-size:69.119985pt;}
.fs4b{font-size:69.307794pt;}
.fs24{font-size:69.556681pt;}
.fs4e{font-size:69.787016pt;}
.fs5a{font-size:69.914060pt;}
.fs6b{font-size:69.956632pt;}
.fs62{font-size:69.993864pt;}
.fs5e{font-size:70.356410pt;}
.fs4d{font-size:70.924073pt;}
.fs4f{font-size:70.960036pt;}
.fs11{font-size:71.978264pt;}
.fs18{font-size:72.052893pt;}
.fs63{font-size:72.382972pt;}
.fs6e{font-size:73.342564pt;}
.fs14{font-size:73.735250pt;}
.fs6{font-size:73.842640pt;}
.fs71{font-size:74.185809pt;}
.fs0{font-size:74.666667pt;}
.fs50{font-size:75.025228pt;}
.fs5c{font-size:75.500657pt;}
.fs25{font-size:76.735933pt;}
.fs23{font-size:76.895296pt;}
.fs43{font-size:76.987462pt;}
.fs3c{font-size:76.991627pt;}
.fs48{font-size:77.213409pt;}
.fs39{font-size:78.683490pt;}
.fs65{font-size:78.817699pt;}
.fs12{font-size:79.239653pt;}
.fs6f{font-size:79.665334pt;}
.fs16{font-size:80.411453pt;}
.fsf{font-size:80.814966pt;}
.fs67{font-size:81.458402pt;}
.fs44{font-size:81.581647pt;}
.fse{font-size:81.620401pt;}
.fs13{font-size:82.139471pt;}
.fsa{font-size:82.787655pt;}
.fs69{font-size:83.124648pt;}
.fs30{font-size:83.310988pt;}
.fs3a{font-size:83.642190pt;}
.fs3b{font-size:83.948796pt;}
.fs3e{font-size:84.069143pt;}
.fsc{font-size:84.267051pt;}
.fs34{font-size:84.392320pt;}
.fs41{font-size:84.870149pt;}
.fs2c{font-size:85.839085pt;}
.fs26{font-size:85.941119pt;}
.fs66{font-size:86.823010pt;}
.fs6a{font-size:87.786237pt;}
.fs2d{font-size:90.331371pt;}
.fs54{font-size:90.609265pt;}
.fs27{font-size:90.621255pt;}
.fs49{font-size:90.703528pt;}
.fs28{font-size:91.196843pt;}
.fs58{font-size:91.470467pt;}
.fs36{font-size:91.641335pt;}
.fs2e{font-size:92.433204pt;}
.fs29{font-size:95.120313pt;}
.fs2a{font-size:97.827814pt;}
.fs9{font-size:99.601946pt;}
.fs37{font-size:103.098070pt;}
.fs72{font-size:103.747568pt;}
.fs57{font-size:103.750721pt;}
.fs60{font-size:105.468366pt;}
.fs5d{font-size:110.341986pt;}
.fs32{font-size:132.131917pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y13e{bottom:2.473451pt;}
.yde{bottom:2.653333pt;}
.y7e{bottom:2.729924pt;}
.y7d{bottom:2.775908pt;}
.y123{bottom:3.100026pt;}
.y12c{bottom:3.100034pt;}
.y12a{bottom:3.100036pt;}
.y1d8{bottom:3.100043pt;}
.y1d6{bottom:3.100045pt;}
.y13b{bottom:3.100061pt;}
.y139{bottom:3.100064pt;}
.y1cb{bottom:3.100066pt;}
.y1df{bottom:3.271174pt;}
.y21{bottom:3.466667pt;}
.y1bf{bottom:3.633115pt;}
.y176{bottom:3.671123pt;}
.y17b{bottom:3.671125pt;}
.y1c5{bottom:3.895407pt;}
.yd4{bottom:3.897714pt;}
.y154{bottom:3.965012pt;}
.y7c{bottom:4.002856pt;}
.ybb{bottom:4.126930pt;}
.yb3{bottom:4.126936pt;}
.ya9{bottom:4.126945pt;}
.yc2{bottom:4.126948pt;}
.y1a2{bottom:4.185863pt;}
.y1a5{bottom:4.185868pt;}
.y119{bottom:4.244048pt;}
.y1b6{bottom:4.244088pt;}
.y15a{bottom:4.276527pt;}
.y183{bottom:4.434964pt;}
.y18b{bottom:4.456265pt;}
.y9f{bottom:4.507306pt;}
.y199{bottom:4.559992pt;}
.y194{bottom:4.560016pt;}
.y147{bottom:4.560041pt;}
.y146{bottom:4.560050pt;}
.yef{bottom:4.627804pt;}
.y8a{bottom:4.674629pt;}
.y191{bottom:4.674641pt;}
.y16b{bottom:4.674674pt;}
.y14b{bottom:4.744878pt;}
.y7{bottom:4.800000pt;}
.y96{bottom:4.843277pt;}
.y99{bottom:4.843288pt;}
.ydd{bottom:4.933333pt;}
.y87{bottom:4.943971pt;}
.y6f{bottom:5.032574pt;}
.y8c{bottom:5.157161pt;}
.y54{bottom:5.196514pt;}
.y1a8{bottom:5.237342pt;}
.y1b1{bottom:5.281736pt;}
.yb{bottom:5.333333pt;}
.y53{bottom:5.417930pt;}
.y48{bottom:5.427264pt;}
.y164{bottom:5.763607pt;}
.y143{bottom:5.778845pt;}
.y142{bottom:5.778849pt;}
.yce{bottom:5.892021pt;}
.yc{bottom:6.000000pt;}
.y10c{bottom:6.119360pt;}
.y111{bottom:6.119375pt;}
.ye4{bottom:6.266667pt;}
.y105{bottom:6.285772pt;}
.y9b{bottom:6.574600pt;}
.yf8{bottom:7.542864pt;}
.yfa{bottom:7.542868pt;}
.y158{bottom:7.675042pt;}
.y14c{bottom:7.714260pt;}
.y59{bottom:7.773292pt;}
.y40{bottom:8.126950pt;}
.y1c1{bottom:8.392560pt;}
.y11a{bottom:8.521299pt;}
.y11c{bottom:8.521301pt;}
.y11b{bottom:8.521304pt;}
.y1b7{bottom:8.521330pt;}
.y1b9{bottom:8.521334pt;}
.y1b8{bottom:8.521340pt;}
.y5b{bottom:8.614299pt;}
.y5c{bottom:8.614354pt;}
.y56{bottom:8.785602pt;}
.ycb{bottom:8.806270pt;}
.yca{bottom:8.806280pt;}
.y18d{bottom:8.982529pt;}
.y18f{bottom:8.982533pt;}
.y18e{bottom:8.982543pt;}
.y141{bottom:8.997069pt;}
.y51{bottom:9.000059pt;}
.yd8{bottom:9.003751pt;}
.y19a{bottom:9.155688pt;}
.y195{bottom:9.155720pt;}
.y148{bottom:9.155755pt;}
.yf0{bottom:9.291778pt;}
.y93{bottom:9.342848pt;}
.y92{bottom:9.342864pt;}
.y94{bottom:9.342875pt;}
.y1b0{bottom:9.398862pt;}
.y83{bottom:9.478200pt;}
.y67{bottom:9.518587pt;}
.yae{bottom:9.533113pt;}
.yc4{bottom:9.533117pt;}
.y88{bottom:9.926581pt;}
.y7b{bottom:10.244805pt;}
.y144{bottom:10.277496pt;}
.y4a{bottom:10.360973pt;}
.y1b2{bottom:10.646486pt;}
.y10d{bottom:10.818213pt;}
.y112{bottom:10.818215pt;}
.y122{bottom:10.849969pt;}
.y129{bottom:10.849985pt;}
.y1d4{bottom:10.850004pt;}
.y1ca{bottom:10.850034pt;}
.y137{bottom:10.850038pt;}
.y76{bottom:11.318179pt;}
.y171{bottom:11.532654pt;}
.yc9{bottom:11.797992pt;}
.ycf{bottom:11.830138pt;}
.y79{bottom:12.208124pt;}
.y177{bottom:12.848728pt;}
.y173{bottom:12.848749pt;}
.y1c4{bottom:13.633772pt;}
.y9e{bottom:14.159556pt;}
.ycc{bottom:14.283858pt;}
.y1a1{bottom:14.552693pt;}
.y125{bottom:14.652211pt;}
.y12e{bottom:14.652225pt;}
.y12d{bottom:14.652228pt;}
.y1d9{bottom:14.652246pt;}
.y1ce{bottom:14.652269pt;}
.y1cd{bottom:14.652279pt;}
.y13c{bottom:14.652281pt;}
.ya1{bottom:15.775396pt;}
.y58{bottom:15.871273pt;}
.y16f{bottom:16.070214pt;}
.yf5{bottom:16.195079pt;}
.y104{bottom:16.249419pt;}
.y18c{bottom:16.842937pt;}
.y185{bottom:17.110985pt;}
.y17a{bottom:17.351425pt;}
.y175{bottom:17.351428pt;}
.y4c{bottom:17.400280pt;}
.ya{bottom:17.733333pt;}
.y151{bottom:17.842904pt;}
.y166{bottom:18.216722pt;}
.y6{bottom:18.266667pt;}
.y1c7{bottom:18.411563pt;}
.y107{bottom:18.713647pt;}
.y157{bottom:18.890631pt;}
.y181{bottom:18.892512pt;}
.y47{bottom:19.076967pt;}
.y44{bottom:19.076968pt;}
.y163{bottom:19.966914pt;}
.yf4{bottom:20.441056pt;}
.yf7{bottom:20.441124pt;}
.yb2{bottom:20.468681pt;}
.yba{bottom:20.468682pt;}
.yc1{bottom:20.468684pt;}
.ya8{bottom:20.468685pt;}
.y102{bottom:20.928911pt;}
.y106{bottom:20.928946pt;}
.ya2{bottom:21.303694pt;}
.y17f{bottom:21.371078pt;}
.y1be{bottom:21.653048pt;}
.y20{bottom:21.866667pt;}
.y95{bottom:22.722692pt;}
.y1c0{bottom:22.743867pt;}
.yd3{bottom:22.956613pt;}
.y161{bottom:23.191446pt;}
.y46{bottom:23.386599pt;}
.y4b{bottom:23.386663pt;}
.y49{bottom:23.386669pt;}
.y180{bottom:23.431975pt;}
.y184{bottom:23.432003pt;}
.y182{bottom:23.432010pt;}
.y6e{bottom:23.842460pt;}
.y124{bottom:23.981717pt;}
.y12b{bottom:23.981730pt;}
.y1d7{bottom:23.981748pt;}
.y1d5{bottom:23.981748pt;}
.y1cc{bottom:23.981767pt;}
.y13a{bottom:23.981778pt;}
.y138{bottom:23.981780pt;}
.y81{bottom:24.001953pt;}
.y153{bottom:24.271769pt;}
.yd5{bottom:24.400113pt;}
.yda{bottom:24.400146pt;}
.yd9{bottom:24.400148pt;}
.y162{bottom:24.426585pt;}
.y165{bottom:24.426638pt;}
.yaa{bottom:25.835126pt;}
.ybc{bottom:25.835127pt;}
.yb4{bottom:25.835128pt;}
.yb7{bottom:25.835172pt;}
.ybf{bottom:25.835175pt;}
.yc5{bottom:25.835178pt;}
.yaf{bottom:25.835181pt;}
.yad{bottom:25.835192pt;}
.y80{bottom:26.256228pt;}
.ye3{bottom:27.453333pt;}
.y155{bottom:27.925382pt;}
.y156{bottom:27.981448pt;}
.y174{bottom:28.399571pt;}
.y172{bottom:28.399573pt;}
.y178{bottom:28.399575pt;}
.y179{bottom:28.399576pt;}
.y159{bottom:28.575978pt;}
.y82{bottom:29.461169pt;}
.y1bd{bottom:29.646890pt;}
.y9{bottom:30.133333pt;}
.y1c6{bottom:30.134764pt;}
.y7a{bottom:30.228406pt;}
.y121{bottom:30.590168pt;}
.y128{bottom:30.590179pt;}
.y1d3{bottom:30.590190pt;}
.y136{bottom:30.590212pt;}
.yf6{bottom:30.856225pt;}
.yf9{bottom:30.856229pt;}
.y74{bottom:31.240426pt;}
.y75{bottom:31.301780pt;}
.y6b{bottom:31.944509pt;}
.y5{bottom:32.000000pt;}
.y1a3{bottom:32.079249pt;}
.y1a4{bottom:32.079254pt;}
.y78{bottom:32.191093pt;}
.y6c{bottom:32.871888pt;}
.ybd{bottom:33.676394pt;}
.yb5{bottom:33.676397pt;}
.yb9{bottom:33.676399pt;}
.yb1{bottom:33.676403pt;}
.yab{bottom:33.676408pt;}
.ya7{bottom:33.676412pt;}
.yc0{bottom:33.676416pt;}
.y45{bottom:33.878068pt;}
.yd6{bottom:34.260494pt;}
.y152{bottom:34.354247pt;}
.y1c2{bottom:34.405736pt;}
.ya0{bottom:34.868402pt;}
.y77{bottom:35.595908pt;}
.y170{bottom:36.225398pt;}
.y103{bottom:36.749715pt;}
.y73{bottom:37.083577pt;}
.y97{bottom:37.117613pt;}
.y98{bottom:37.117624pt;}
.y6d{bottom:37.513196pt;}
.y7f{bottom:37.635761pt;}
.y1c3{bottom:38.438761pt;}
.ybe{bottom:39.082054pt;}
.yb6{bottom:39.082059pt;}
.yac{bottom:39.082066pt;}
.yc3{bottom:39.082070pt;}
.yd7{bottom:39.365889pt;}
.y1f{bottom:40.266667pt;}
.y1bc{bottom:42.616843pt;}
.y9d{bottom:44.476809pt;}
.ye2{bottom:48.520000pt;}
.y3{bottom:51.233333pt;}
.y1e{bottom:58.666667pt;}
.ye1{bottom:69.733333pt;}
.y2{bottom:72.566667pt;}
.y1d{bottom:77.066667pt;}
.ye0{bottom:90.933333pt;}
.y1c{bottom:95.466667pt;}
.y1f1{bottom:96.700000pt;}
.ye7{bottom:101.233333pt;}
.y214{bottom:112.566667pt;}
.y1b{bottom:113.866667pt;}
.y3b{bottom:114.033333pt;}
.y1f0{bottom:117.766667pt;}
.y134{bottom:121.766667pt;}
.y133{bottom:121.800000pt;}
.ye6{bottom:122.433333pt;}
.y1a{bottom:132.266667pt;}
.y213{bottom:133.773333pt;}
.y3a{bottom:135.106667pt;}
.y19f{bottom:135.226667pt;}
.y1ef{bottom:138.973333pt;}
.y84{bottom:141.106667pt;}
.y72{bottom:141.133333pt;}
.ye5{bottom:143.493333pt;}
.y19{bottom:150.666667pt;}
.y212{bottom:154.973333pt;}
.y39{bottom:156.293333pt;}
.y19e{bottom:156.440000pt;}
.ydf{bottom:158.440000pt;}
.y1ee{bottom:160.173333pt;}
.y132{bottom:165.226667pt;}
.y131{bottom:165.266667pt;}
.y18{bottom:169.066667pt;}
.y211{bottom:176.173333pt;}
.y38{bottom:177.506667pt;}
.y19d{bottom:177.626667pt;}
.y1ed{bottom:181.240000pt;}
.y17{bottom:187.466667pt;}
.y71{bottom:193.106667pt;}
.y210{bottom:197.240000pt;}
.y37{bottom:198.573333pt;}
.y19c{bottom:198.706667pt;}
.y1ec{bottom:202.440000pt;}
.y16{bottom:205.866667pt;}
.y130{bottom:208.573333pt;}
.y12f{bottom:208.600000pt;}
.y70{bottom:214.173333pt;}
.y6a{bottom:214.200000pt;}
.y20f{bottom:218.440000pt;}
.y36{bottom:219.773333pt;}
.y19b{bottom:219.906667pt;}
.y1eb{bottom:223.640000pt;}
.y20e{bottom:239.640000pt;}
.y35{bottom:240.973333pt;}
.y198{bottom:241.000000pt;}
.y1ea{bottom:244.706667pt;}
.y126{bottom:251.893333pt;}
.y127{bottom:251.933315pt;}
.y120{bottom:251.933333pt;}
.y20d{bottom:260.706667pt;}
.y34{bottom:262.040000pt;}
.ydc{bottom:264.306667pt;}
.y1e9{bottom:265.906667pt;}
.y197{bottom:274.173333pt;}
.y69{bottom:275.893333pt;}
.y20c{bottom:281.893333pt;}
.y33{bottom:283.240000pt;}
.y1e8{bottom:287.106667pt;}
.y196{bottom:295.373333pt;}
.y68{bottom:297.106667pt;}
.y66{bottom:297.133333pt;}
.y11f{bottom:298.573333pt;}
.y20b{bottom:303.106667pt;}
.y32{bottom:304.440000pt;}
.y1e7{bottom:308.306667pt;}
.y192{bottom:316.440000pt;}
.y193{bottom:316.466630pt;}
.y11e{bottom:319.773333pt;}
.y20a{bottom:324.173333pt;}
.y31{bottom:325.640000pt;}
.y1e6{bottom:329.373333pt;}
.y65{bottom:331.240000pt;}
.y118{bottom:337.533297pt;}
.y11d{bottom:337.533333pt;}
.y209{bottom:345.400000pt;}
.y30{bottom:346.733333pt;}
.y18a{bottom:349.666630pt;}
.y190{bottom:349.666667pt;}
.y1e5{bottom:350.600000pt;}
.y64{bottom:352.466667pt;}
.y208{bottom:366.600000pt;}
.y2f{bottom:367.933333pt;}
.y117{bottom:368.866667pt;}
.y1e4{bottom:371.800000pt;}
.y63{bottom:373.666667pt;}
.y189{bottom:383.800000pt;}
.y207{bottom:387.666667pt;}
.y2e{bottom:389.133333pt;}
.y116{bottom:390.066667pt;}
.y1e3{bottom:392.866667pt;}
.y62{bottom:394.866667pt;}
.y188{bottom:405.000000pt;}
.y206{bottom:408.866667pt;}
.y2d{bottom:410.200000pt;}
.y115{bottom:411.133333pt;}
.y1e2{bottom:414.066667pt;}
.y61{bottom:415.933333pt;}
.y187{bottom:426.200000pt;}
.y205{bottom:430.066667pt;}
.y2c{bottom:431.400000pt;}
.y114{bottom:432.333333pt;}
.y1e1{bottom:435.266667pt;}
.y60{bottom:437.133333pt;}
.yd2{bottom:441.933297pt;}
.ydb{bottom:441.933333pt;}
.y17e{bottom:443.933297pt;}
.y186{bottom:443.933333pt;}
.y204{bottom:451.133333pt;}
.y2b{bottom:452.600000pt;}
.y113{bottom:453.533333pt;}
.y5f{bottom:454.733333pt;}
.y1de{bottom:456.333297pt;}
.y1e0{bottom:456.333333pt;}
.y203{bottom:472.333333pt;}
.y2a{bottom:473.666667pt;}
.y110{bottom:474.733297pt;}
.y10f{bottom:474.733333pt;}
.y1dc{bottom:479.133297pt;}
.y1dd{bottom:479.133333pt;}
.y202{bottom:493.533333pt;}
.y17d{bottom:494.066667pt;}
.y29{bottom:494.866667pt;}
.yd1{bottom:507.000000pt;}
.y10e{bottom:508.733333pt;}
.y10b{bottom:510.066630pt;}
.y10a{bottom:510.066667pt;}
.y201{bottom:514.733333pt;}
.y16e{bottom:515.266630pt;}
.y17c{bottom:515.266667pt;}
.y28{bottom:516.066667pt;}
.y1db{bottom:522.599964pt;}
.ycd{bottom:528.199964pt;}
.yd0{bottom:528.200000pt;}
.y200{bottom:535.800000pt;}
.y27{bottom:537.133333pt;}
.y109{bottom:545.400000pt;}
.y1ff{bottom:557.000000pt;}
.y26{bottom:558.333333pt;}
.y1d2{bottom:565.933297pt;}
.y1da{bottom:565.933333pt;}
.y101{bottom:566.466630pt;}
.y108{bottom:566.466667pt;}
.yc8{bottom:569.133297pt;}
.yc7{bottom:569.133333pt;}
.y16d{bottom:569.533333pt;}
.y1fe{bottom:578.200000pt;}
.y25{bottom:579.533333pt;}
.y16c{bottom:590.600000pt;}
.y1fd{bottom:599.266667pt;}
.y24{bottom:608.600000pt;}
.y1d0{bottom:609.266594pt;}
.y1d1{bottom:609.266667pt;}
.y16a{bottom:611.666594pt;}
.y169{bottom:611.666667pt;}
.yb8{bottom:614.333261pt;}
.yc6{bottom:614.333333pt;}
.y1fc{bottom:620.466667pt;}
.y100{bottom:620.733333pt;}
.y23{bottom:623.533333pt;}
.y168{bottom:638.600000pt;}
.y1fb{bottom:641.666667pt;}
.y5e{bottom:641.800000pt;}
.yff{bottom:641.933333pt;}
.y1c9{bottom:652.599928pt;}
.y1cf{bottom:652.600000pt;}
.y160{bottom:659.666594pt;}
.y167{bottom:659.706667pt;}
.y22{bottom:660.373333pt;}
.y1fa{bottom:662.773333pt;}
.y5a{bottom:662.999928pt;}
.y5d{bottom:663.040000pt;}
.ya6{bottom:675.933261pt;}
.yb0{bottom:675.973333pt;}
.y15{bottom:678.773333pt;}
.y1f9{bottom:683.973333pt;}
.yfe{bottom:684.240000pt;}
.y55{bottom:692.599928pt;}
.y57{bottom:692.626667pt;}
.y1bb{bottom:695.800000pt;}
.y1c8{bottom:695.840000pt;}
.y1f8{bottom:705.173333pt;}
.yfd{bottom:705.440000pt;}
.y15f{bottom:710.626667pt;}
.y52{bottom:722.733261pt;}
.y1f7{bottom:726.240000pt;}
.yfc{bottom:726.506667pt;}
.y15e{bottom:731.840000pt;}
.ya5{bottom:741.173333pt;}
.yf3{bottom:744.199928pt;}
.yfb{bottom:744.240000pt;}
.y1f6{bottom:747.440000pt;}
.y15d{bottom:753.040000pt;}
.y1b5{bottom:753.533261pt;}
.y1ba{bottom:753.573333pt;}
.y50{bottom:757.399928pt;}
.ya4{bottom:762.240000pt;}
.y1f5{bottom:768.640000pt;}
.y15c{bottom:774.106667pt;}
.y9c{bottom:779.800000pt;}
.ya3{bottom:779.840000pt;}
.y1b4{bottom:784.906667pt;}
.y1f4{bottom:789.706667pt;}
.y4f{bottom:791.706667pt;}
.y150{bottom:795.133333pt;}
.y15b{bottom:795.173333pt;}
.yf2{bottom:798.506667pt;}
.y1af{bottom:802.466667pt;}
.y1b3{bottom:802.506667pt;}
.y1f3{bottom:810.906667pt;}
.y4e{bottom:812.906667pt;}
.yee{bottom:819.666594pt;}
.yf1{bottom:819.706667pt;}
.y1f2{bottom:832.106667pt;}
.y4d{bottom:833.973333pt;}
.y91{bottom:841.533261pt;}
.y9a{bottom:841.573333pt;}
.y1ae{bottom:843.706667pt;}
.y14f{bottom:846.640000pt;}
.y43{bottom:851.666594pt;}
.yed{bottom:853.306667pt;}
.y1ad{bottom:864.906667pt;}
.y14e{bottom:867.840000pt;}
.yec{bottom:874.373333pt;}
.y1ac{bottom:885.973333pt;}
.y14d{bottom:888.906667pt;}
.yeb{bottom:895.573333pt;}
.y14{bottom:902.773333pt;}
.y90{bottom:906.640000pt;}
.y1ab{bottom:907.173333pt;}
.y42{bottom:907.706667pt;}
.y14a{bottom:910.066594pt;}
.y149{bottom:910.106667pt;}
.yea{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.y8f{bottom:927.799928pt;}
.y8e{bottom:927.840000pt;}
.y1aa{bottom:928.373333pt;}
.y41{bottom:928.773333pt;}
.ye9{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y140{bottom:940.333261pt;}
.y145{bottom:940.373333pt;}
.y1a7{bottom:949.399928pt;}
.y1a9{bottom:949.440000pt;}
.y3f{bottom:949.933261pt;}
.y3e{bottom:949.973333pt;}
.y11{bottom:956.640000pt;}
.y8d{bottom:958.106667pt;}
.ye8{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.y13f{bottom:975.733333pt;}
.y89{bottom:979.266594pt;}
.y8b{bottom:979.333333pt;}
.y3d{bottom:980.266667pt;}
.y1a0{bottom:986.466594pt;}
.y1a6{bottom:986.533333pt;}
.y135{bottom:996.866594pt;}
.y13d{bottom:996.933333pt;}
.y3c{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.y86{bottom:1008.199928pt;}
.y85{bottom:1008.266667pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h90{height:14.932469pt;}
.h8{height:15.900000pt;}
.h3b{height:16.266057pt;}
.h37{height:17.226415pt;}
.h35{height:17.234989pt;}
.h39{height:17.938096pt;}
.hf{height:18.400000pt;}
.h9b{height:19.333593pt;}
.he4{height:19.999176pt;}
.hc5{height:20.666708pt;}
.h41{height:20.666744pt;}
.h43{height:22.799843pt;}
.h9d{height:24.000048pt;}
.h11{height:24.000240pt;}
.h82{height:25.066771pt;}
.hd5{height:25.066807pt;}
.h25{height:26.800365pt;}
.hc8{height:26.932988pt;}
.hc6{height:26.933024pt;}
.h97{height:26.933060pt;}
.h20{height:27.333165pt;}
.h22{height:27.333383pt;}
.hbf{height:28.000187pt;}
.h1a{height:28.000364pt;}
.h28{height:28.000515pt;}
.h3c{height:28.112726pt;}
.h4e{height:29.066660pt;}
.h92{height:29.066703pt;}
.h7e{height:29.066740pt;}
.h45{height:29.066923pt;}
.h3e{height:29.200596pt;}
.h38{height:29.772518pt;}
.h36{height:29.787338pt;}
.h1e{height:30.933408pt;}
.h3a{height:31.002521pt;}
.h6b{height:31.636292pt;}
.h1c{height:31.999975pt;}
.ha3{height:32.476793pt;}
.ha1{height:32.492958pt;}
.h88{height:33.438442pt;}
.h64{height:34.800279pt;}
.hd0{height:34.933140pt;}
.h32{height:36.783707pt;}
.h10{height:36.833333pt;}
.h74{height:37.443580pt;}
.h83{height:37.520739pt;}
.hbc{height:37.682548pt;}
.h16{height:37.717859pt;}
.h14{height:37.736634pt;}
.h5f{height:38.932693pt;}
.haa{height:39.206026pt;}
.h95{height:39.274657pt;}
.hb2{height:39.578662pt;}
.hb0{height:39.598363pt;}
.hc1{height:39.686747pt;}
.hba{height:39.907347pt;}
.h6{height:40.266667pt;}
.h99{height:40.294153pt;}
.hc7{height:40.314210pt;}
.hb4{height:40.358472pt;}
.h87{height:40.533601pt;}
.h8d{height:40.533619pt;}
.he3{height:40.533638pt;}
.h8f{height:40.533674pt;}
.h2f{height:40.752656pt;}
.h7b{height:40.814514pt;}
.h23{height:40.913427pt;}
.h2d{height:40.929244pt;}
.h7f{height:41.341101pt;}
.hd8{height:41.682572pt;}
.hde{height:42.017823pt;}
.h3d{height:42.110501pt;}
.h3{height:43.200000pt;}
.h3f{height:43.708335pt;}
.hb7{height:43.999436pt;}
.h34{height:44.036865pt;}
.h33{height:44.320430pt;}
.ha7{height:44.668006pt;}
.h69{height:44.717966pt;}
.h9f{height:45.200621pt;}
.h31{height:45.733186pt;}
.h7{height:47.109375pt;}
.hd1{height:47.224945pt;}
.h5b{height:47.324342pt;}
.h59{height:47.347899pt;}
.h62{height:47.822608pt;}
.h72{height:47.999312pt;}
.h79{height:47.999988pt;}
.hae{height:48.000606pt;}
.h56{height:48.593890pt;}
.h51{height:48.618078pt;}
.h5{height:49.726562pt;}
.h13{height:49.731862pt;}
.hdd{height:50.933405pt;}
.hca{height:50.935034pt;}
.h65{height:52.090184pt;}
.h4{height:52.343750pt;}
.ha6{height:53.065781pt;}
.h75{height:53.458053pt;}
.h8c{height:54.685313pt;}
.hd7{height:54.932004pt;}
.h2b{height:55.466066pt;}
.ha5{height:55.504683pt;}
.ha4{height:56.198816pt;}
.ha2{height:56.226790pt;}
.he{height:56.406250pt;}
.hc{height:57.578125pt;}
.h5d{height:57.845813pt;}
.h8b{height:57.913966pt;}
.h8a{height:57.942793pt;}
.h9{height:58.351562pt;}
.h7c{height:58.372227pt;}
.h67{height:58.932279pt;}
.h58{height:58.932878pt;}
.h50{height:58.934140pt;}
.h49{height:58.934903pt;}
.h18{height:61.503823pt;}
.h78{height:62.781250pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.hb6{height:64.759264pt;}
.hd6{height:64.798696pt;}
.hc4{height:64.833184pt;}
.h17{height:65.135045pt;}
.h15{height:65.167467pt;}
.hbd{height:65.168999pt;}
.h30{height:66.740400pt;}
.hc3{height:67.046141pt;}
.hab{height:67.803735pt;}
.ha9{height:67.837485pt;}
.hdc{height:67.934983pt;}
.h96{height:67.987968pt;}
.h81{height:68.145833pt;}
.had{height:68.232115pt;}
.h42{height:68.266078pt;}
.h9c{height:68.458064pt;}
.hb3{height:68.582689pt;}
.hb1{height:68.616826pt;}
.hc2{height:68.660973pt;}
.he2{height:68.716055pt;}
.hbb{height:69.016615pt;}
.hb9{height:69.050969pt;}
.ha0{height:69.493583pt;}
.h9a{height:69.573468pt;}
.hc9{height:69.608099pt;}
.h9e{height:69.608747pt;}
.hb5{height:69.933958pt;}
.h24{height:70.642730pt;}
.h2e{height:70.680792pt;}
.h86{height:71.311140pt;}
.h77{height:71.314998pt;}
.h91{height:71.520428pt;}
.hda{height:71.945904pt;}
.hd9{height:71.981716pt;}
.h29{height:72.367115pt;}
.h12{height:72.472513pt;}
.he1{height:72.773091pt;}
.he0{height:72.809315pt;}
.h6e{height:72.882120pt;}
.hce{height:73.006433pt;}
.h89{height:73.151759pt;}
.h2{height:73.281250pt;}
.hdb{height:73.791572pt;}
.h2a{height:74.482679pt;}
.h44{height:75.274653pt;}
.h40{height:75.468528pt;}
.h76{height:75.525478pt;}
.h84{height:75.558984pt;}
.h73{height:75.563071pt;}
.h85{height:75.566594pt;}
.h27{height:76.083290pt;}
.hd4{height:76.995828pt;}
.h5e{height:77.168430pt;}
.h6c{height:77.185123pt;}
.h6a{height:77.223543pt;}
.hcc{height:77.316776pt;}
.h6d{height:77.475213pt;}
.h26{height:77.769386pt;}
.h7d{height:77.870686pt;}
.h21{height:79.315470pt;}
.h55{height:79.510129pt;}
.h48{height:79.604640pt;}
.hcd{height:80.421509pt;}
.h1b{height:81.251556pt;}
.hd3{height:81.313716pt;}
.h5c{height:81.724500pt;}
.h5a{height:81.765179pt;}
.h71{height:82.391152pt;}
.h7a{height:82.509266pt;}
.h63{height:82.785240pt;}
.h80{height:83.253969pt;}
.h54{height:83.671197pt;}
.ha8{height:83.928601pt;}
.h47{height:83.939708pt;}
.h93{height:84.015915pt;}
.h53{height:84.204454pt;}
.h46{height:84.346509pt;}
.h4d{height:84.472857pt;}
.haf{height:84.726306pt;}
.h57{height:85.618060pt;}
.h94{height:86.016376pt;}
.hc0{height:86.800245pt;}
.h98{height:87.990881pt;}
.h4c{height:88.107047pt;}
.h4b{height:89.460185pt;}
.h4a{height:89.504715pt;}
.h66{height:89.940958pt;}
.hdf{height:91.920481pt;}
.h8e{height:92.003340pt;}
.h19{height:92.258248pt;}
.h2c{height:92.990723pt;}
.h68{height:95.496601pt;}
.h4f{height:96.012649pt;}
.he5{height:96.098211pt;}
.hac{height:96.101132pt;}
.hbe{height:97.692134pt;}
.hcb{height:97.697623pt;}
.hcf{height:101.060137pt;}
.h1f{height:101.218455pt;}
.hb8{height:102.206420pt;}
.hd2{height:103.041298pt;}
.h1d{height:104.544645pt;}
.h61{height:104.736753pt;}
.h70{height:105.866667pt;}
.h52{height:112.822919pt;}
.h60{height:122.389769pt;}
.h6f{height:171.360000pt;}
.hd{height:220.800000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w31{width:15.999627pt;}
.w29{width:19.333615pt;}
.w3d{width:22.799650pt;}
.w47{width:22.800287pt;}
.w38{width:30.932663pt;}
.w3c{width:32.000302pt;}
.w1a{width:38.933122pt;}
.w33{width:38.933391pt;}
.w40{width:39.466153pt;}
.w34{width:39.999181pt;}
.w35{width:41.067157pt;}
.w9{width:51.999215pt;}
.w17{width:51.999233pt;}
.w10{width:52.000837pt;}
.w15{width:53.067827pt;}
.w16{width:54.798810pt;}
.w19{width:67.467313pt;}
.w3e{width:70.931872pt;}
.w3b{width:71.468032pt;}
.w32{width:77.064782pt;}
.w1b{width:77.067369pt;}
.w2a{width:77.068479pt;}
.w22{width:78.800182pt;}
.w1e{width:96.000726pt;}
.wd{width:103.998768pt;}
.w45{width:107.999801pt;}
.w2c{width:108.000644pt;}
.w2d{width:108.537413pt;}
.w41{width:110.933302pt;}
.w20{width:115.465639pt;}
.w1f{width:115.470236pt;}
.w18{width:115.470965pt;}
.wc{width:115.998303pt;}
.wf{width:118.800405pt;}
.w21{width:125.068012pt;}
.w14{width:127.471481pt;}
.w12{width:129.062028pt;}
.w44{width:134.938411pt;}
.w1d{width:143.999701pt;}
.w6{width:158.533333pt;}
.w26{width:166.798621pt;}
.w24{width:173.773333pt;}
.w25{width:175.866667pt;}
.we{width:180.003242pt;}
.w3f{width:184.004616pt;}
.w27{width:202.800012pt;}
.w43{width:203.329929pt;}
.w37{width:209.207326pt;}
.w1c{width:211.337254pt;}
.w28{width:221.072139pt;}
.w5{width:233.773333pt;}
.wb{width:234.928734pt;}
.w39{width:244.012313pt;}
.w3{width:251.106667pt;}
.w2e{width:252.000046pt;}
.w3a{width:252.530685pt;}
.w46{width:252.663092pt;}
.w2f{width:253.066293pt;}
.w30{width:253.066325pt;}
.w2b{width:259.338018pt;}
.w42{width:261.062460pt;}
.w4{width:264.693333pt;}
.w23{width:317.078159pt;}
.w11{width:319.999599pt;}
.w36{width:327.462187pt;}
.wa{width:353.862320pt;}
.w13{width:353.994739pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x69{left:1.177643pt;}
.x1e{left:2.095259pt;}
.x23{left:3.663166pt;}
.x47{left:5.018192pt;}
.x4{left:6.133333pt;}
.x65{left:7.993045pt;}
.x7c{left:9.610814pt;}
.x9{left:11.053333pt;}
.x42{left:12.824173pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x41{left:16.920671pt;}
.x19{left:18.566667pt;}
.x5{left:19.733333pt;}
.xa1{left:21.039905pt;}
.x30{left:22.153037pt;}
.x62{left:24.274355pt;}
.x32{left:25.690691pt;}
.x40{left:27.355586pt;}
.xb{left:28.533333pt;}
.x3e{left:29.916006pt;}
.x7d{left:32.497217pt;}
.x4f{left:33.850097pt;}
.x25{left:35.288621pt;}
.x3{left:37.866655pt;}
.x35{left:39.283343pt;}
.x7b{left:41.335564pt;}
.x29{left:42.487962pt;}
.x61{left:44.922874pt;}
.x2d{left:46.201647pt;}
.x52{left:47.370159pt;}
.x4c{left:49.115137pt;}
.x5e{left:50.421382pt;}
.x73{left:52.358202pt;}
.xa5{left:53.992533pt;}
.x2f{left:56.419758pt;}
.x60{left:57.507992pt;}
.x59{left:59.043378pt;}
.x3f{left:60.065820pt;}
.x4a{left:61.178129pt;}
.x72{left:63.256738pt;}
.x56{left:64.246415pt;}
.x24{left:65.896888pt;}
.x5b{left:67.320669pt;}
.x20{left:68.582914pt;}
.x10{left:70.133322pt;}
.x67{left:75.324553pt;}
.x2e{left:77.073173pt;}
.x37{left:78.800489pt;}
.x54{left:80.858910pt;}
.x1a{left:85.066655pt;}
.x5a{left:85.992336pt;}
.x22{left:87.671219pt;}
.x18{left:89.066667pt;}
.x6e{left:90.203541pt;}
.x17{left:93.066667pt;}
.xa4{left:94.014117pt;}
.xd{left:95.093333pt;}
.x80{left:98.525277pt;}
.x84{left:99.487048pt;}
.x95{left:102.545619pt;}
.x96{left:103.517005pt;}
.x5c{left:105.017805pt;}
.xa6{left:105.910777pt;}
.x5f{left:106.952597pt;}
.x6{left:108.166667pt;}
.x75{left:110.430238pt;}
.xa{left:113.893333pt;}
.x81{left:119.626884pt;}
.x3d{left:120.706897pt;}
.x3a{left:124.915448pt;}
.x82{left:128.135575pt;}
.x55{left:134.473668pt;}
.x78{left:139.400000pt;}
.x77{left:143.400000pt;}
.xa9{left:145.906655pt;}
.x26{left:153.933315pt;}
.x97{left:156.332457pt;}
.x3c{left:157.833906pt;}
.x6f{left:159.150514pt;}
.x11{left:161.493322pt;}
.x39{left:163.401190pt;}
.x6b{left:173.640000pt;}
.x6d{left:175.866667pt;}
.xa3{left:183.694719pt;}
.x51{left:185.260552pt;}
.x94{left:189.538864pt;}
.x33{left:190.505318pt;}
.x71{left:193.963791pt;}
.xa2{left:196.026655pt;}
.x36{left:200.572313pt;}
.x90{left:201.869961pt;}
.x3b{left:208.212998pt;}
.x38{left:212.033338pt;}
.x31{left:214.173322pt;}
.x79{left:216.439988pt;}
.x27{left:217.893322pt;}
.xa7{left:241.266649pt;}
.x99{left:245.708814pt;}
.x70{left:251.906655pt;}
.x28{left:268.733315pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x7e{left:278.999982pt;}
.x34{left:284.072791pt;}
.x74{left:287.906655pt;}
.x83{left:289.893322pt;}
.x85{left:290.973322pt;}
.x2b{left:301.476348pt;}
.x1d{left:302.999982pt;}
.x76{left:306.173322pt;}
.x68{left:308.365582pt;}
.x8d{left:309.612506pt;}
.x8e{left:317.091956pt;}
.x7a{left:344.466655pt;}
.x21{left:345.918676pt;}
.x1f{left:354.999988pt;}
.x2c{left:357.933322pt;}
.xa8{left:376.199988pt;}
.x2a{left:382.466655pt;}
.x7f{left:387.533322pt;}
.x43{left:391.933322pt;}
.x1b{left:406.466655pt;}
.x1c{left:453.666655pt;}
.x45{left:459.533322pt;}
.x89{left:472.066630pt;}
.x9b{left:477.933322pt;}
.x46{left:482.600000pt;}
.x50{left:483.533297pt;}
.x9e{left:506.333297pt;}
.x8a{left:512.066655pt;}
.x64{left:513.133297pt;}
.x92{left:518.333297pt;}
.x13{left:520.733322pt;}
.x9f{left:529.133322pt;}
.x88{left:530.733322pt;}
.x5d{left:532.866630pt;}
.x48{left:537.399988pt;}
.x12{left:538.333322pt;}
.x8b{left:546.466630pt;}
.x93{left:549.266655pt;}
.xc{left:555.933333pt;}
.x4b{left:569.133297pt;}
.x15{left:572.093322pt;}
.x6c{left:580.240000pt;}
.x14{left:583.306655pt;}
.x8c{left:587.573322pt;}
.x57{left:597.706655pt;}
.x49{left:623.839988pt;}
.xf{left:634.360000pt;}
.x4d{left:636.626655pt;}
.x66{left:638.226655pt;}
.x63{left:648.359988pt;}
.x9a{left:659.026655pt;}
.x58{left:660.066594pt;}
.x91{left:662.893322pt;}
.x44{left:665.573322pt;}
.x86{left:674.333261pt;}
.xa0{left:685.133261pt;}
.x87{left:690.373322pt;}
.x53{left:694.893322pt;}
.x98{left:697.706655pt;}
.x9c{left:703.799928pt;}
.x4e{left:717.133261pt;}
.x6a{left:723.559988pt;}
.x2{left:728.106655pt;}
.x8f{left:733.959988pt;}
.x9d{left:735.839988pt;}
.x16{left:756.106655pt;}
}




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