
    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_3428c8e75fc3686d74ba283b.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_b90bff15890c1484a05967cc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ca0543625040c797be452dc6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_064ab770aa14f2c4ed539415.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_d3c9f2052fb96cdb8f3b7d83.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_04d6a4a58ca7601f7a1165a0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_07a60b277a4b6f829d5a6585.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.706055;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_4c4d5c1ba586304e6b2a79c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.695312;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_165dda6fc7fdbc15d084359a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.926270;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_c1fce8bd60349d5ac7a37f3c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_1bac7c2e70daa944de469388.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2083818918e1bbc897b52c80.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c67bcf0f05081c579e5bcf12.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_d3fa17f05700c1b37b4f3644.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.678223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_60166864510120bd31dc78f3.woff2')format("woff");}.fff{font-family:fff;line-height:0.677734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_364f3022a3af387d548b099c.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_c7edf708e3ecc560129582e7.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_c4b4a3d0994d114eafee491e.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_f1456c6320960575b6eb33ff.woff2')format("woff");}.ff13{font-family:ff13;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;}
.me{transform:matrix(0.000000,-0.243561,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.243561,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.243561,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.244877,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.244877,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.244877,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m12{transform:matrix(0.000000,-0.259141,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.259141,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.259141,0.250000,0.000000,0,0);}
.m14{transform:matrix(0.000000,-0.259176,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.259176,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.259176,0.250000,0.000000,0,0);}
.m18{transform:matrix(0.000000,-0.259287,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.259287,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.259287,0.250000,0.000000,0,0);}
.m16{transform:matrix(0.000000,-0.259322,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.259322,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.259322,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.262054,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.262054,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.262054,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.276206,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.276206,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.276206,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.276210,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.276210,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.276210,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.277131,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.277131,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.277131,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.277133,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.277133,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.277133,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.225525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225525,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.226277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226277,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.226278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226278,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.238501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238501,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.241013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241013,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.241045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241045,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.241149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241149,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.241182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241182,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);}
.m3{transform:matrix(0.255229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255229,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255230,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vd{vertical-align:-42.120000px;}
.vf{vertical-align:-39.759120px;}
.v2{vertical-align:-33.120000px;}
.v3{vertical-align:-27.000000px;}
.v13{vertical-align:-23.760600px;}
.v12{vertical-align:-20.520000px;}
.v6{vertical-align:-14.760000px;}
.va{vertical-align:-12.960000px;}
.v9{vertical-align:-10.440000px;}
.v4{vertical-align:-9.000000px;}
.v11{vertical-align:-2.264760px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.vb{vertical-align:12.960000px;}
.v14{vertical-align:23.760600px;}
.ve{vertical-align:25.200600px;}
.v8{vertical-align:31.680000px;}
.v1{vertical-align:33.120000px;}
.v7{vertical-align:42.120000px;}
.vc{vertical-align:82.800000px;}
.v10{vertical-align:85.347600px;}
.ls4a{letter-spacing:-8.064000px;}
.ls5d{letter-spacing:-7.992000px;}
.ls71{letter-spacing:-7.209000px;}
.ls49{letter-spacing:-6.912000px;}
.ls2b{letter-spacing:-6.552000px;}
.ls6d{letter-spacing:-6.550128px;}
.ls79{letter-spacing:-6.291000px;}
.ls78{letter-spacing:-6.207120px;}
.ls6b{letter-spacing:-6.020165px;}
.ls18{letter-spacing:-5.832000px;}
.ls6f{letter-spacing:-5.548540px;}
.ls73{letter-spacing:-5.157650px;}
.ls6c{letter-spacing:-4.333694px;}
.ls6e{letter-spacing:-4.256414px;}
.ls23{letter-spacing:-4.104000px;}
.ls6a{letter-spacing:-3.983062px;}
.ls72{letter-spacing:-3.914228px;}
.ls25{letter-spacing:-3.888000px;}
.ls1e{letter-spacing:-3.744000px;}
.ls1d{letter-spacing:-2.736000px;}
.ls59{letter-spacing:-2.592000px;}
.ls1a{letter-spacing:-2.520000px;}
.ls2c{letter-spacing:-2.331000px;}
.ls58{letter-spacing:-2.088000px;}
.ls21{letter-spacing:-1.656000px;}
.ls74{letter-spacing:-1.634913px;}
.ls86{letter-spacing:-1.584000px;}
.ls1c{letter-spacing:-0.576000px;}
.ls87{letter-spacing:-0.504000px;}
.ls1f{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.360000px;}
.ls4b{letter-spacing:-0.335160px;}
.ls11{letter-spacing:-0.300600px;}
.ls17{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.ls5e{letter-spacing:-0.192240px;}
.lse{letter-spacing:-0.180360px;}
.ls9{letter-spacing:-0.167760px;}
.lsa{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.120240px;}
.ls5c{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.095760px;}
.lsc{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.060120px;}
.ls8{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.030240px;}
.ls1{letter-spacing:0.058716px;}
.ls70{letter-spacing:0.065880px;}
.ls3{letter-spacing:0.072000px;}
.ls5a{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.120240px;}
.ls41{letter-spacing:0.126360px;}
.ls6{letter-spacing:0.144000px;}
.ls68{letter-spacing:0.147960px;}
.ls4e{letter-spacing:0.151200px;}
.ls0{letter-spacing:0.167760px;}
.ls5{letter-spacing:0.174960px;}
.ls2{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.189000px;}
.ls4{letter-spacing:0.191520px;}
.ls20{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.360000px;}
.ls75{letter-spacing:0.468000px;}
.ls69{letter-spacing:0.504000px;}
.ls4d{letter-spacing:0.540000px;}
.ls44{letter-spacing:0.720000px;}
.ls28{letter-spacing:1.080000px;}
.ls29{letter-spacing:1.440000px;}
.ls77{letter-spacing:2.006423px;}
.ls76{letter-spacing:2.103161px;}
.ls3f{letter-spacing:2.121840px;}
.ls46{letter-spacing:2.160000px;}
.ls33{letter-spacing:3.240000px;}
.ls3b{letter-spacing:3.301560px;}
.ls37{letter-spacing:3.384000px;}
.ls12{letter-spacing:3.420000px;}
.ls14{letter-spacing:3.456000px;}
.ls1b{letter-spacing:3.492720px;}
.ls42{letter-spacing:3.528000px;}
.ls27{letter-spacing:3.600000px;}
.ls39{letter-spacing:3.661560px;}
.ls22{letter-spacing:3.672000px;}
.ls38{letter-spacing:3.744000px;}
.ls13{letter-spacing:3.780000px;}
.ls16{letter-spacing:3.816000px;}
.ls24{letter-spacing:3.888000px;}
.ls43{letter-spacing:3.960000px;}
.ls32{letter-spacing:5.040000px;}
.ls47{letter-spacing:6.120000px;}
.ls30{letter-spacing:6.480000px;}
.ls31{letter-spacing:6.840000px;}
.ls48{letter-spacing:8.280000px;}
.ls36{letter-spacing:9.000000px;}
.ls45{letter-spacing:12.600000px;}
.ls2a{letter-spacing:12.960000px;}
.ls2e{letter-spacing:14.400000px;}
.ls2d{letter-spacing:14.760000px;}
.ls51{letter-spacing:15.120000px;}
.ls4f{letter-spacing:17.640000px;}
.ls3e{letter-spacing:17.856000px;}
.ls3d{letter-spacing:19.001520px;}
.ls34{letter-spacing:19.800000px;}
.ls2f{letter-spacing:21.240000px;}
.ls35{letter-spacing:26.280000px;}
.ls3c{letter-spacing:29.160000px;}
.ls50{letter-spacing:32.400000px;}
.ls4c{letter-spacing:35.640000px;}
.ls56{letter-spacing:49.410000px;}
.ls55{letter-spacing:85.410000px;}
.ls64{letter-spacing:109.360800px;}
.ls65{letter-spacing:112.391280px;}
.ls54{letter-spacing:112.410000px;}
.ls7b{letter-spacing:117.360000px;}
.ls57{letter-spacing:136.170000px;}
.ls66{letter-spacing:147.571200px;}
.ls5f{letter-spacing:152.577720px;}
.ls62{letter-spacing:161.914615px;}
.ls63{letter-spacing:183.322152px;}
.ls3a{letter-spacing:194.400000px;}
.ls5b{letter-spacing:234.244440px;}
.ls7a{letter-spacing:310.320000px;}
.ls7d{letter-spacing:313.200000px;}
.ls7f{letter-spacing:329.040000px;}
.ls7c{letter-spacing:334.440000px;}
.ls84{letter-spacing:342.720000px;}
.ls83{letter-spacing:345.240000px;}
.ls81{letter-spacing:349.560000px;}
.ls80{letter-spacing:352.800000px;}
.ls52{letter-spacing:354.600000px;}
.ls82{letter-spacing:360.360000px;}
.ls7e{letter-spacing:362.880000px;}
.ls53{letter-spacing:391.680000px;}
.ls61{letter-spacing:397.926720px;}
.ls85{letter-spacing:419.400000px;}
.ls60{letter-spacing:648.350940px;}
.ls67{letter-spacing:844.168462px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wscd{word-spacing:-83.880000px;}
.wscc{word-spacing:-77.853000px;}
.wscb{word-spacing:-75.847800px;}
.ws2d{word-spacing:-72.000000px;}
.wsce{word-spacing:-56.160000px;}
.ws6d{word-spacing:-51.120000px;}
.ws6e{word-spacing:-42.246360px;}
.ws6f{word-spacing:-42.120000px;}
.wsdf{word-spacing:-30.024000px;}
.wsdc{word-spacing:-26.721360px;}
.wsde{word-spacing:-26.529120px;}
.wsd9{word-spacing:-24.516000px;}
.wsdb{word-spacing:-24.408000px;}
.wsc2{word-spacing:-23.486400px;}
.wse1{word-spacing:-23.150880px;}
.wsbd{word-spacing:-22.032000px;}
.ws0{word-spacing:-20.802240px;}
.wsc9{word-spacing:-19.512360px;}
.ws1c{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.wsdd{word-spacing:-17.814240px;}
.ws1b{word-spacing:-17.784000px;}
.ws1a{word-spacing:-17.712000px;}
.ws26{word-spacing:-17.640000px;}
.wsf2{word-spacing:-17.496000px;}
.ws25{word-spacing:-17.424000px;}
.wse2{word-spacing:-17.111520px;}
.wse3{word-spacing:-17.027640px;}
.wsf1{word-spacing:-16.416000px;}
.ws2b{word-spacing:-16.344000px;}
.wsda{word-spacing:-16.272000px;}
.ws33{word-spacing:-15.939000px;}
.ws6c{word-spacing:-15.840000px;}
.ws1e{word-spacing:-15.480000px;}
.ws28{word-spacing:-15.264000px;}
.ws9{word-spacing:-15.030000px;}
.wsa{word-spacing:-14.969880px;}
.ws8{word-spacing:-14.849640px;}
.wsb{word-spacing:-14.729400px;}
.ws32{word-spacing:-14.112000px;}
.wsc7{word-spacing:-13.592988px;}
.ws35{word-spacing:-13.419000px;}
.ws70{word-spacing:-12.168000px;}
.ws1d{word-spacing:-12.161520px;}
.ws3{word-spacing:-11.970000px;}
.ws4{word-spacing:-11.874240px;}
.ws84{word-spacing:-11.634840px;}
.ws34{word-spacing:-11.448000px;}
.ws82{word-spacing:-11.088000px;}
.ws83{word-spacing:-9.936000px;}
.ws7{word-spacing:-9.720000px;}
.ws31{word-spacing:-4.104000px;}
.ws11{word-spacing:-3.960000px;}
.ws20{word-spacing:-3.816000px;}
.wse5{word-spacing:-3.474788px;}
.wse6{word-spacing:-3.314960px;}
.wsc5{word-spacing:-2.935800px;}
.wse4{word-spacing:-2.103161px;}
.ws38{word-spacing:-1.584000px;}
.ws21{word-spacing:-1.440000px;}
.ws36{word-spacing:-1.368000px;}
.ws10{word-spacing:-1.296000px;}
.wsc4{word-spacing:-1.174320px;}
.ws2c{word-spacing:-1.080000px;}
.wsd8{word-spacing:-0.934236px;}
.ws16{word-spacing:-0.781560px;}
.ws13{word-spacing:-0.504000px;}
.ws23{word-spacing:-0.432000px;}
.wsc3{word-spacing:-0.419400px;}
.wsd4{word-spacing:-0.395280px;}
.wsc{word-spacing:-0.360000px;}
.wse{word-spacing:-0.251640px;}
.wsbf{word-spacing:-0.216000px;}
.ws2f{word-spacing:-0.191520px;}
.ws12{word-spacing:-0.144000px;}
.wsc0{word-spacing:-0.108000px;}
.wsf{word-spacing:-0.072000px;}
.wsd5{word-spacing:-0.065880px;}
.wsd{word-spacing:0.000000px;}
.ws19{word-spacing:0.063000px;}
.ws24{word-spacing:0.072000px;}
.ws18{word-spacing:0.120240px;}
.ws1f{word-spacing:0.144000px;}
.wsef{word-spacing:0.192240px;}
.ws14{word-spacing:0.216000px;}
.ws27{word-spacing:0.288000px;}
.ws17{word-spacing:0.300600px;}
.ws15{word-spacing:0.360000px;}
.ws2a{word-spacing:0.432000px;}
.wsc1{word-spacing:0.480600px;}
.ws30{word-spacing:0.576000px;}
.wsa6{word-spacing:0.648000px;}
.wsb1{word-spacing:0.720000px;}
.ws40{word-spacing:0.936000px;}
.ws76{word-spacing:1.008000px;}
.ws3f{word-spacing:1.080000px;}
.wsf0{word-spacing:1.296000px;}
.ws41{word-spacing:1.440000px;}
.ws52{word-spacing:1.656000px;}
.ws51{word-spacing:1.728000px;}
.wsd2{word-spacing:1.748170px;}
.ws50{word-spacing:1.800000px;}
.ws74{word-spacing:2.016000px;}
.ws77{word-spacing:2.088000px;}
.ws71{word-spacing:2.160000px;}
.ws8a{word-spacing:2.376000px;}
.wsb9{word-spacing:2.448000px;}
.ws9b{word-spacing:2.520000px;}
.wsbc{word-spacing:2.592000px;}
.wsd7{word-spacing:2.654673px;}
.ws9a{word-spacing:2.736000px;}
.ws63{word-spacing:2.808000px;}
.ws62{word-spacing:2.880000px;}
.ws61{word-spacing:3.096000px;}
.ws60{word-spacing:3.168000px;}
.ws4c{word-spacing:3.240000px;}
.ws3d{word-spacing:3.456000px;}
.wscf{word-spacing:3.473172px;}
.ws3e{word-spacing:3.528000px;}
.ws85{word-spacing:3.600000px;}
.ws29{word-spacing:3.744000px;}
.wsd1{word-spacing:3.778920px;}
.wsd6{word-spacing:3.914228px;}
.ws75{word-spacing:3.960000px;}
.ws37{word-spacing:4.032000px;}
.ws2e{word-spacing:4.104000px;}
.ws8c{word-spacing:4.176000px;}
.ws9e{word-spacing:4.248000px;}
.ws4a{word-spacing:4.320000px;}
.wsd0{word-spacing:4.333694px;}
.ws4f{word-spacing:4.392000px;}
.ws5f{word-spacing:4.680000px;}
.wsb7{word-spacing:4.896000px;}
.wsb6{word-spacing:4.968000px;}
.ws5e{word-spacing:5.040000px;}
.ws96{word-spacing:5.400000px;}
.wsbb{word-spacing:5.472000px;}
.wsd3{word-spacing:5.548540px;}
.ws22{word-spacing:5.832000px;}
.ws7e{word-spacing:5.976000px;}
.ws7f{word-spacing:6.048000px;}
.ws7d{word-spacing:6.120000px;}
.ws5b{word-spacing:6.336000px;}
.ws5d{word-spacing:6.480000px;}
.ws78{word-spacing:6.552000px;}
.ws72{word-spacing:6.768000px;}
.ws5a{word-spacing:6.840000px;}
.ws5c{word-spacing:7.056000px;}
.ws86{word-spacing:7.200000px;}
.ws92{word-spacing:7.488000px;}
.ws8d{word-spacing:7.560000px;}
.ws81{word-spacing:7.776000px;}
.ws4e{word-spacing:7.848000px;}
.ws4d{word-spacing:7.920000px;}
.wsa9{word-spacing:8.208000px;}
.ws80{word-spacing:8.280000px;}
.ws69{word-spacing:8.496000px;}
.ws9f{word-spacing:8.568000px;}
.wsa0{word-spacing:8.640000px;}
.ws7a{word-spacing:8.928000px;}
.ws53{word-spacing:9.000000px;}
.wsb4{word-spacing:9.216000px;}
.ws7c{word-spacing:9.288000px;}
.ws7b{word-spacing:9.360000px;}
.ws99{word-spacing:9.432000px;}
.wsa4{word-spacing:9.648000px;}
.wsb2{word-spacing:9.720000px;}
.wsa3{word-spacing:9.792000px;}
.ws89{word-spacing:10.080000px;}
.ws6b{word-spacing:10.296000px;}
.ws3b{word-spacing:10.368000px;}
.ws6a{word-spacing:10.440000px;}
.ws8b{word-spacing:10.656000px;}
.ws3c{word-spacing:10.728000px;}
.ws39{word-spacing:10.800000px;}
.ws3a{word-spacing:10.944000px;}
.ws88{word-spacing:11.088000px;}
.ws87{word-spacing:11.160000px;}
.wsa2{word-spacing:11.520000px;}
.ws94{word-spacing:11.880000px;}
.ws79{word-spacing:12.600000px;}
.ws43{word-spacing:12.816000px;}
.ws42{word-spacing:12.960000px;}
.ws49{word-spacing:13.176000px;}
.ws47{word-spacing:13.896000px;}
.ws9c{word-spacing:14.040000px;}
.wsb8{word-spacing:14.256000px;}
.ws48{word-spacing:14.328000px;}
.ws46{word-spacing:14.400000px;}
.ws44{word-spacing:14.616000px;}
.ws8e{word-spacing:14.688000px;}
.ws45{word-spacing:14.760000px;}
.wsaf{word-spacing:14.976000px;}
.ws4b{word-spacing:15.048000px;}
.wsb0{word-spacing:15.120000px;}
.wsae{word-spacing:15.336000px;}
.ws95{word-spacing:15.480000px;}
.wsac{word-spacing:15.768000px;}
.wsad{word-spacing:15.840000px;}
.ws9d{word-spacing:16.200000px;}
.ws8f{word-spacing:16.560000px;}
.ws58{word-spacing:16.848000px;}
.ws57{word-spacing:16.920000px;}
.ws91{word-spacing:17.280000px;}
.wsb3{word-spacing:17.424000px;}
.ws90{word-spacing:17.496000px;}
.wsa1{word-spacing:17.640000px;}
.ws65{word-spacing:19.440000px;}
.ws64{word-spacing:19.800000px;}
.wsab{word-spacing:20.088000px;}
.wsaa{word-spacing:20.304000px;}
.ws55{word-spacing:21.096000px;}
.ws54{word-spacing:21.168000px;}
.ws56{word-spacing:21.240000px;}
.ws59{word-spacing:21.960000px;}
.wsb5{word-spacing:24.480000px;}
.ws66{word-spacing:24.840000px;}
.ws67{word-spacing:26.208000px;}
.ws68{word-spacing:26.280000px;}
.ws93{word-spacing:27.360000px;}
.ws73{word-spacing:29.160000px;}
.wsa7{word-spacing:32.328000px;}
.ws98{word-spacing:35.640000px;}
.ws97{word-spacing:35.856000px;}
.wsa8{word-spacing:44.640000px;}
.wsa5{word-spacing:80.640000px;}
.wsc6{word-spacing:89.966614px;}
.wsc8{word-spacing:139.847630px;}
.wsba{word-spacing:159.840000px;}
.wsbe{word-spacing:167.998536px;}
.wsed{word-spacing:242.077824px;}
.wse7{word-spacing:242.083464px;}
.wseb{word-spacing:242.112792px;}
.wse9{word-spacing:242.177088px;}
.wse0{word-spacing:308.756869px;}
.wsee{word-spacing:475.132000px;}
.wsec{word-spacing:475.136593px;}
.wse8{word-spacing:475.412137px;}
.wsea{word-spacing:475.531539px;}
.wsca{word-spacing:772.718272px;}
._4f{margin-left:-1196.380800px;}
._50{margin-left:-622.697760px;}
._54{margin-left:-506.003520px;}
._4a{margin-left:-441.544320px;}
._51{margin-left:-328.675320px;}
._16{margin-left:-194.040000px;}
._17{margin-left:-14.040000px;}
._d{margin-left:-9.576000px;}
._b{margin-left:-8.366400px;}
._c{margin-left:-6.516000px;}
._2{margin-left:-5.148000px;}
._6{margin-left:-3.780000px;}
._4{margin-left:-2.736000px;}
._0{margin-left:-1.656000px;}
._5{width:1.080000px;}
._1{width:2.340000px;}
._3{width:3.816000px;}
._7{width:5.688000px;}
._e{width:6.840000px;}
._12{width:8.352000px;}
._15{width:9.360000px;}
._f{width:10.584000px;}
._10{width:13.032000px;}
._11{width:14.814000px;}
._1a{width:16.488000px;}
._13{width:20.448000px;}
._2a{width:23.688000px;}
._14{width:25.776000px;}
._18{width:28.944000px;}
._1b{width:31.968000px;}
._19{width:33.120000px;}
._33{width:35.208000px;}
._29{width:38.808000px;}
._34{width:41.688000px;}
._28{width:48.168000px;}
._44{width:51.120000px;}
._45{width:53.280000px;}
._38{width:54.288000px;}
._43{width:59.760000px;}
._27{width:63.288000px;}
._1f{width:64.836000px;}
._1e{width:70.848000px;}
._42{width:75.312000px;}
._1d{width:86.256000px;}
._48{width:87.264000px;}
._49{width:89.280000px;}
._46{width:90.360000px;}
._47{width:96.696000px;}
._40{width:107.280000px;}
._3c{width:108.360000px;}
._31{width:110.304000px;}
._4c{width:119.913811px;}
._4e{width:121.534877px;}
._3f{width:123.120000px;}
._20{width:128.160000px;}
._3e{width:131.760000px;}
._a{width:133.990560px;}
._4b{width:135.466718px;}
._4d{width:136.820923px;}
._24{width:141.120000px;}
._25{width:143.280000px;}
._21{width:144.360000px;}
._3d{width:147.240000px;}
._23{width:149.760000px;}
._1c{width:154.800000px;}
._22{width:165.240000px;}
._8{width:169.626240px;}
._35{width:171.468000px;}
._2f{width:188.784000px;}
._2c{width:192.024000px;}
._9{width:194.400000px;}
._2e{width:198.144000px;}
._2d{width:213.264000px;}
._32{width:226.728000px;}
._5d{width:316.152000px;}
._52{width:338.990879px;}
._5a{width:344.376000px;}
._5b{width:352.944000px;}
._26{width:361.080000px;}
._2b{width:367.757280px;}
._57{width:369.432000px;}
._5e{width:384.912000px;}
._58{width:387.072000px;}
._59{width:404.928000px;}
._3a{width:413.784000px;}
._39{width:418.118400px;}
._41{width:435.528000px;}
._5f{width:438.624000px;}
._5c{width:456.228000px;}
._30{width:478.080000px;}
._3b{width:484.956000px;}
._37{width:514.440000px;}
._36{width:530.640000px;}
._53{width:642.909120px;}
._55{width:846.000000px;}
._56{width:848.232000px;}
.fce{color:rgb(255,51,153);}
.fcd{color:rgb(0,102,0);}
.fc0{color:rgb(0,0,0);}
.fc8{color:rgb(0,51,204);}
.fc1{color:rgb(0,0,204);}
.fc3{color:rgb(255,51,204);}
.fc2{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc5{color:rgb(0,128,0);}
.fc6{color:rgb(51,153,51);}
.fc7{color:rgb(0,204,102);}
.fc9{color:rgb(0,102,255);}
.fcc{color:rgb(255,102,153);}
.fca{color:rgb(128,0,128);}
.fcb{color:rgb(255,0,255);}
.fs12{font-size:14.567400px;}
.fs13{font-size:16.148400px;}
.fs10{font-size:22.822200px;}
.fs11{font-size:25.299000px;}
.fs3{font-size:38.880000px;}
.fs1c{font-size:39.960000px;}
.fs7{font-size:42.120000px;}
.fs15{font-size:45.281400px;}
.fs2{font-size:47.880000px;}
.fs16{font-size:48.515400px;}
.fs6{font-size:51.120000px;}
.fs17{font-size:53.601600px;}
.fsa{font-size:56.160000px;}
.fs4{font-size:60.120000px;}
.fs19{font-size:62.130600px;}
.fs5{font-size:63.000000px;}
.fsb{font-size:63.223200px;}
.fs1d{font-size:64.080000px;}
.fs18{font-size:65.880000px;}
.fse{font-size:68.788800px;}
.fs0{font-size:72.000000px;}
.fs1a{font-size:75.847800px;}
.fs14{font-size:76.007400px;}
.fsd{font-size:77.181600px;}
.fs1b{font-size:77.853000px;}
.fsc{font-size:78.796200px;}
.fs1{font-size:83.880000px;}
.fsf{font-size:83.976000px;}
.fs1f{font-size:87.235800px;}
.fs1e{font-size:91.441800px;}
.fs9{font-size:96.120000px;}
.fs8{font-size:108.000000px;}
.fs27{font-size:124.152600px;}
.fs25{font-size:124.153800px;}
.fs21{font-size:124.225800px;}
.fs23{font-size:124.257000px;}
.fs26{font-size:128.764800px;}
.fs20{font-size:128.767800px;}
.fs24{font-size:128.783400px;}
.fs22{font-size:128.817600px;}
.y1f3{bottom:-420.756300px;}
.y1f0{bottom:-341.392050px;}
.y1ed{bottom:-270.807900px;}
.y1a9{bottom:-208.086318px;}
.y1ea{bottom:-191.096400px;}
.y1f4{bottom:-166.615050px;}
.y1aa{bottom:-157.620450px;}
.y1a7{bottom:-156.409350px;}
.y1ab{bottom:-121.690650px;}
.y1a8{bottom:-106.080750px;}
.y1f1{bottom:-87.214500px;}
.y1ee{bottom:-16.562550px;}
.y14d{bottom:-0.090000px;}
.y0{bottom:0.000000px;}
.y1e4{bottom:3.610050px;}
.y16d{bottom:4.140000px;}
.y153{bottom:10.260000px;}
.y15d{bottom:10.350000px;}
.y1e2{bottom:10.830000px;}
.y19f{bottom:12.504300px;}
.y1bb{bottom:16.475250px;}
.y1a6{bottom:17.814000px;}
.y144{bottom:24.840000px;}
.y148{bottom:25.020000px;}
.y198{bottom:39.809550px;}
.y1b7{bottom:43.506300px;}
.y16b{bottom:45.540000px;}
.y1a1{bottom:47.515800px;}
.y1e0{bottom:56.549850px;}
.y1a{bottom:56.704500px;}
.y1b8{bottom:58.029328px;}
.y1eb{bottom:63.050700px;}
.y1a2{bottom:68.066454px;}
.y19{bottom:74.880000px;}
.y199{bottom:78.818264px;}
.y1d8{bottom:83.058000px;}
.y176{bottom:83.070000px;}
.y1da{bottom:90.238950px;}
.y1ac{bottom:97.993050px;}
.y35{bottom:99.360000px;}
.y18{bottom:99.630000px;}
.y147{bottom:106.200000px;}
.y1b{bottom:110.250000px;}
.y20f{bottom:111.870000px;}
.y11f{bottom:118.620000px;}
.yf0{bottom:118.800000px;}
.yc0{bottom:118.890000px;}
.y12d{bottom:121.590000px;}
.y4f{bottom:122.760000px;}
.y81{bottom:124.920000px;}
.y78{bottom:126.360000px;}
.yde{bottom:132.840000px;}
.y1a3{bottom:135.290309px;}
.y20e{bottom:141.390000px;}
.y1a0{bottom:145.875000px;}
.y1be{bottom:147.796800px;}
.y146{bottom:147.960000px;}
.y1db{bottom:147.991650px;}
.y11e{bottom:149.670000px;}
.y34{bottom:149.760000px;}
.y67{bottom:158.760000px;}
.yf9{bottom:160.020000px;}
.yef{bottom:160.200000px;}
.ybf{bottom:160.290000px;}
.y9a{bottom:162.270000px;}
.y4e{bottom:164.160000px;}
.yab{bottom:164.970000px;}
.y175{bottom:167.040000px;}
.y1bc{bottom:167.565600px;}
.y19e{bottom:167.688150px;}
.y77{bottom:167.760000px;}
.y19c{bottom:170.151300px;}
.y12c{bottom:171.990000px;}
.y17{bottom:173.790000px;}
.ydd{bottom:174.240000px;}
.y1b9{bottom:177.040492px;}
.y19a{bottom:179.817326px;}
.y1af{bottom:180.405300px;}
.y11d{bottom:180.720000px;}
.y20d{bottom:182.970000px;}
.y145{bottom:189.360000px;}
.y33{bottom:191.160000px;}
.y174{bottom:196.265250px;}
.y212{bottom:198.720000px;}
.y66{bottom:200.160000px;}
.yf8{bottom:201.510000px;}
.yee{bottom:201.600000px;}
.ybe{bottom:201.690000px;}
.y1a4{bottom:202.514164px;}
.y99{bottom:203.760000px;}
.y4d{bottom:205.560000px;}
.y1dc{bottom:205.744650px;}
.yaa{bottom:206.460000px;}
.y7e{bottom:209.070000px;}
.y76{bottom:209.160000px;}
.y11c{bottom:211.770000px;}
.y16{bottom:215.010000px;}
.ydc{bottom:215.640000px;}
.y12b{bottom:222.390000px;}
.y173{bottom:223.449750px;}
.y20c{bottom:225.630000px;}
.y1ad{bottom:227.306700px;}
.y143{bottom:230.760000px;}
.y32{bottom:232.560000px;}
.y1ae{bottom:233.560200px;}
.y211{bottom:241.380000px;}
.y65{bottom:241.560000px;}
.y11b{bottom:242.820000px;}
.yf7{bottom:242.910000px;}
.yed{bottom:243.000000px;}
.ybd{bottom:243.090000px;}
.y98{bottom:245.160000px;}
.y4c{bottom:246.960000px;}
.ya9{bottom:247.860000px;}
.y75{bottom:250.560000px;}
.y172{bottom:250.634250px;}
.y15{bottom:256.500000px;}
.ydb{bottom:257.040000px;}
.y1dd{bottom:262.301403px;}
.y1a5{bottom:269.738018px;}
.y12a{bottom:272.790000px;}
.y20b{bottom:273.420000px;}
.y11a{bottom:273.870000px;}
.y31{bottom:273.960000px;}
.y171{bottom:277.818750px;}
.y19b{bottom:281.021864px;}
.y1c7{bottom:281.602500px;}
.y64{bottom:282.960000px;}
.yf6{bottom:284.310000px;}
.ybc{bottom:284.400000px;}
.y97{bottom:286.560000px;}
.y4b{bottom:288.360000px;}
.y210{bottom:289.170000px;}
.ya8{bottom:289.260000px;}
.y74{bottom:291.960000px;}
.y202{bottom:292.320000px;}
.y1ba{bottom:296.253581px;}
.y14{bottom:297.900000px;}
.yda{bottom:298.440000px;}
.y141{bottom:300.240000px;}
.y119{bottom:304.920000px;}
.y170{bottom:305.003250px;}
.y201{bottom:313.200000px;}
.y30{bottom:315.360000px;}
.y1bd{bottom:318.454350px;}
.y1de{bottom:320.046900px;}
.y140{bottom:320.940000px;}
.y129{bottom:323.100000px;}
.y19d{bottom:323.692800px;}
.y63{bottom:324.360000px;}
.y1b0{bottom:325.129350px;}
.yf5{bottom:325.710000px;}
.ybb{bottom:325.800000px;}
.y96{bottom:327.960000px;}
.ya7{bottom:330.660000px;}
.y73{bottom:333.360000px;}
.y200{bottom:333.720000px;}
.y118{bottom:335.970000px;}
.y4a{bottom:338.760000px;}
.y13{bottom:339.300000px;}
.yd9{bottom:339.840000px;}
.y142{bottom:341.640000px;}
.y16f{bottom:350.190000px;}
.y2f{bottom:356.760000px;}
.y62{bottom:365.760000px;}
.y117{bottom:367.020000px;}
.yf4{bottom:367.110000px;}
.yba{bottom:367.200000px;}
.y95{bottom:369.360000px;}
.ya6{bottom:371.970000px;}
.y128{bottom:373.500000px;}
.y72{bottom:374.760000px;}
.y1ff{bottom:375.300000px;}
.y1df{bottom:377.792397px;}
.y49{bottom:380.160000px;}
.y12{bottom:380.700000px;}
.yd8{bottom:381.240000px;}
.y13f{bottom:386.280000px;}
.y1c1{bottom:392.229480px;}
.y16e{bottom:397.890000px;}
.y116{bottom:397.980000px;}
.y2e{bottom:398.160000px;}
.y16a{bottom:406.890000px;}
.y61{bottom:407.160000px;}
.yec{bottom:408.510000px;}
.yb9{bottom:408.600000px;}
.y94{bottom:410.760000px;}
.ya5{bottom:413.460000px;}
.y1b5{bottom:415.507500px;}
.y71{bottom:416.160000px;}
.y48{bottom:421.560000px;}
.y11{bottom:422.100000px;}
.yd7{bottom:422.640000px;}
.y1c8{bottom:423.547710px;}
.y127{bottom:423.900000px;}
.y1fe{bottom:425.700000px;}
.y115{bottom:429.030000px;}
.y16c{bottom:431.730000px;}
.y2d{bottom:439.560000px;}
.y60{bottom:448.560000px;}
.y18d{bottom:448.761300px;}
.yeb{bottom:449.910000px;}
.yb8{bottom:450.000000px;}
.y93{bottom:452.160000px;}
.ya4{bottom:454.860000px;}
.y197{bottom:454.875000px;}
.y70{bottom:457.560000px;}
.y114{bottom:460.080000px;}
.y1d9{bottom:460.198500px;}
.y47{bottom:462.960000px;}
.y10{bottom:463.500000px;}
.yd6{bottom:464.040000px;}
.y1e1{bottom:467.416500px;}
.y1fd{bottom:468.360000px;}
.y13e{bottom:469.080000px;}
.y126{bottom:474.300000px;}
.y2c{bottom:480.960000px;}
.y169{bottom:481.860000px;}
.y194{bottom:489.421800px;}
.y5f{bottom:489.960000px;}
.y113{bottom:491.130000px;}
.yea{bottom:491.310000px;}
.yb7{bottom:491.400000px;}
.y92{bottom:493.470000px;}
.ya3{bottom:496.260000px;}
.y6f{bottom:498.960000px;}
.yf{bottom:504.900000px;}
.yd5{bottom:505.440000px;}
.y13d{bottom:510.480000px;}
.y46{bottom:513.360000px;}
.y18c{bottom:515.870400px;}
.y1f6{bottom:515.942250px;}
.y1f5{bottom:516.136950px;}
.y168{bottom:516.420000px;}
.y1fc{bottom:520.200000px;}
.y1c3{bottom:522.045000px;}
.y112{bottom:522.180000px;}
.y2b{bottom:522.360000px;}
.y125{bottom:524.700000px;}
.y1e3{bottom:531.186000px;}
.y5e{bottom:531.360000px;}
.yf3{bottom:532.620000px;}
.ye9{bottom:532.710000px;}
.yb6{bottom:532.800000px;}
.y195{bottom:533.647530px;}
.y91{bottom:534.870000px;}
.y1c4{bottom:535.357500px;}
.ya2{bottom:537.660000px;}
.y193{bottom:539.848200px;}
.y167{bottom:540.270000px;}
.y6e{bottom:540.360000px;}
.ye{bottom:546.300000px;}
.y183{bottom:547.436100px;}
.yd4{bottom:548.100000px;}
.y166{bottom:550.530000px;}
.y13c{bottom:551.880000px;}
.y111{bottom:553.230000px;}
.y45{bottom:554.760000px;}
.y196{bottom:559.320000px;}
.y1fb{bottom:562.860000px;}
.y2a{bottom:563.760000px;}
.y18b{bottom:564.382500px;}
.yf2{bottom:574.020000px;}
.ye8{bottom:574.110000px;}
.yb5{bottom:574.200000px;}
.y165{bottom:574.380000px;}
.y124{bottom:575.100000px;}
.y90{bottom:576.270000px;}
.ya1{bottom:578.970000px;}
.y6d{bottom:581.670000px;}
.y5d{bottom:581.760000px;}
.y110{bottom:584.280000px;}
.y164{bottom:584.640000px;}
.yd{bottom:587.700000px;}
.y1ca{bottom:589.695000px;}
.yd3{bottom:590.940000px;}
.y181{bottom:592.448220px;}
.y13b{bottom:593.280000px;}
.y44{bottom:596.160000px;}
.y222{bottom:601.560000px;}
.y20a{bottom:608.400000px;}
.y163{bottom:608.490000px;}
.y29{bottom:614.160000px;}
.y1fa{bottom:614.700000px;}
.y10f{bottom:615.330000px;}
.yf1{bottom:615.420000px;}
.ye7{bottom:615.510000px;}
.yb4{bottom:615.600000px;}
.y8f{bottom:617.670000px;}
.y162{bottom:618.750000px;}
.ya0{bottom:620.370000px;}
.y17b{bottom:621.067950px;}
.y5c{bottom:623.160000px;}
.yc{bottom:629.100000px;}
.y17a{bottom:631.828350px;}
.yd2{bottom:633.600000px;}
.y13a{bottom:635.940000px;}
.y43{bottom:637.470000px;}
.y221{bottom:640.260000px;}
.y161{bottom:642.600000px;}
.y10e{bottom:646.380000px;}
.y1c5{bottom:652.132500px;}
.y160{bottom:652.860000px;}
.y28{bottom:655.470000px;}
.ye6{bottom:656.910000px;}
.yb3{bottom:657.000000px;}
.y1f9{bottom:657.360000px;}
.y8e{bottom:659.070000px;}
.y179{bottom:659.206350px;}
.y206{bottom:661.590000px;}
.y9f{bottom:661.770000px;}
.y7d{bottom:664.380000px;}
.y5b{bottom:664.470000px;}
.yb{bottom:670.500000px;}
.y209{bottom:670.680000px;}
.ycf{bottom:672.840000px;}
.yd1{bottom:674.467920px;}
.y15f{bottom:676.710000px;}
.y10d{bottom:677.430000px;}
.y220{bottom:678.510000px;}
.y139{bottom:678.780000px;}
.y42{bottom:678.870000px;}
.y17c{bottom:679.196520px;}
.y182{bottom:679.354650px;}
.y205{bottom:682.290000px;}
.y178{bottom:684.694350px;}
.yd0{bottom:686.430000px;}
.y15e{bottom:687.060000px;}
.yfe{bottom:687.870000px;}
.yce{bottom:689.580000px;}
.y27{bottom:696.870000px;}
.y1c0{bottom:698.227500px;}
.ye5{bottom:698.310000px;}
.yb2{bottom:698.400000px;}
.y1c2{bottom:698.419740px;}
.y1c9{bottom:698.426880px;}
.y8d{bottom:700.380000px;}
.y9e{bottom:703.170000px;}
.y7c{bottom:705.780000px;}
.y5a{bottom:705.870000px;}
.y10c{bottom:708.480000px;}
.y1f8{bottom:710.460000px;}
.y15c{bottom:710.820000px;}
.ya{bottom:711.720000px;}
.y208{bottom:713.340000px;}
.y21f{bottom:716.760000px;}
.y138{bottom:720.180000px;}
.y41{bottom:720.270000px;}
.y15b{bottom:721.170000px;}
.y204{bottom:725.130000px;}
.y215{bottom:725.400000px;}
.yfd{bottom:729.270000px;}
.y1bf{bottom:731.257500px;}
.ycd{bottom:733.770000px;}
.y17d{bottom:737.325090px;}
.y26{bottom:738.270000px;}
.y10b{bottom:739.530000px;}
.ye4{bottom:739.710000px;}
.yb1{bottom:739.800000px;}
.y207{bottom:740.430000px;}
.y8c{bottom:741.870000px;}
.y9d{bottom:744.570000px;}
.y1c6{bottom:744.982500px;}
.y159{bottom:745.020000px;}
.y189{bottom:746.459460px;}
.yfa{bottom:747.090000px;}
.y7b{bottom:747.180000px;}
.y59{bottom:747.270000px;}
.y1e9{bottom:752.553000px;}
.y158{bottom:754.470000px;}
.y21e{bottom:755.010000px;}
.y15a{bottom:755.280000px;}
.y1b6{bottom:757.687500px;}
.y137{bottom:761.580000px;}
.y40{bottom:761.670000px;}
.y9{bottom:762.120000px;}
.y1e7{bottom:764.106630px;}
.y214{bottom:764.820000px;}
.y10a{bottom:770.580000px;}
.yfc{bottom:770.670000px;}
.y203{bottom:772.920000px;}
.ycc{bottom:775.170000px;}
.y157{bottom:779.130000px;}
.y25{bottom:779.670000px;}
.y188{bottom:780.409890px;}
.ye3{bottom:781.110000px;}
.yb0{bottom:781.200000px;}
.y8b{bottom:783.270000px;}
.y1d2{bottom:784.037250px;}
.y1ec{bottom:785.451000px;}
.y9c{bottom:785.970000px;}
.y80{bottom:788.580000px;}
.y58{bottom:788.670000px;}
.y156{bottom:789.390000px;}
.y1e6{bottom:792.520980px;}
.y21d{bottom:793.260000px;}
.y17e{bottom:795.453660px;}
.y1cd{bottom:800.892750px;}
.y109{bottom:801.630000px;}
.y136{bottom:802.980000px;}
.y1d6{bottom:804.098850px;}
.y1ef{bottom:809.005500px;}
.y213{bottom:811.170000px;}
.y3f{bottom:812.070000px;}
.y155{bottom:813.240000px;}
.ycb{bottom:816.570000px;}
.y1e5{bottom:818.020500px;}
.yfb{bottom:820.890000px;}
.y8{bottom:820.979850px;}
.y24{bottom:821.070000px;}
.ye2{bottom:822.510000px;}
.yaf{bottom:822.600000px;}
.y154{bottom:823.500000px;}
.y8a{bottom:824.670000px;}
.y9b{bottom:828.630000px;}
.y57{bottom:830.070000px;}
.y21c{bottom:831.510000px;}
.y108{bottom:832.680000px;}
.y1b1{bottom:835.830000px;}
.y1b2{bottom:836.389980px;}
.y1f2{bottom:840.931500px;}
.y1d1{bottom:843.471900px;}
.y135{bottom:844.380000px;}
.y1e8{bottom:845.868660px;}
.y152{bottom:847.350000px;}
.y3e{bottom:853.470000px;}
.y17f{bottom:853.582230px;}
.y184{bottom:853.984050px;}
.y1d3{bottom:857.533800px;}
.y151{bottom:857.610000px;}
.yca{bottom:859.230000px;}
.y23{bottom:862.470000px;}
.y7{bottom:863.100000px;}
.y107{bottom:863.730000px;}
.ye1{bottom:863.910000px;}
.yae{bottom:864.000000px;}
.y1d4{bottom:864.096000px;}
.y89{bottom:866.070000px;}
.y21b{bottom:869.760000px;}
.y56{bottom:871.470000px;}
.y1cf{bottom:877.950750px;}
.y14f{bottom:882.990000px;}
.y134{bottom:885.780000px;}
.y177{bottom:890.556150px;}
.y150{bottom:893.250000px;}
.y106{bottom:894.780000px;}
.y3d{bottom:894.870000px;}
.y1d0{bottom:903.060750px;}
.yc9{bottom:903.330000px;}
.y22{bottom:903.870000px;}
.yc4{bottom:905.400000px;}
.y88{bottom:907.470000px;}
.y21a{bottom:908.010000px;}
.y187{bottom:910.172250px;}
.y180{bottom:911.710800px;}
.y1ce{bottom:911.889750px;}
.ye0{bottom:912.600000px;}
.yad{bottom:912.690000px;}
.y6{bottom:912.774330px;}
.y6c{bottom:912.780000px;}
.y55{bottom:912.870000px;}
.y14c{bottom:918.630000px;}
.y105{bottom:925.830000px;}
.y133{bottom:927.180000px;}
.y14e{bottom:928.890000px;}
.y3c{bottom:936.270000px;}
.y1cc{bottom:937.404750px;}
.y1cb{bottom:942.007350px;}
.y191{bottom:944.672490px;}
.y21{bottom:945.270000px;}
.yc8{bottom:946.170000px;}
.y219{bottom:946.260000px;}
.yc3{bottom:946.800000px;}
.y87{bottom:948.870000px;}
.yac{bottom:954.090000px;}
.y6b{bottom:954.180000px;}
.y54{bottom:954.270000px;}
.y5{bottom:954.900000px;}
.y104{bottom:956.880000px;}
.y18f{bottom:966.613350px;}
.y1d5{bottom:968.039850px;}
.y186{bottom:968.115450px;}
.y132{bottom:968.580000px;}
.y14b{bottom:977.580000px;}
.y3b{bottom:977.670000px;}
.y218{bottom:984.510000px;}
.y20{bottom:986.670000px;}
.y103{bottom:987.930000px;}
.yc2{bottom:988.200000px;}
.yc7{bottom:988.830000px;}
.y86{bottom:991.530000px;}
.y6a{bottom:995.490000px;}
.y7a{bottom:995.580000px;}
.y53{bottom:995.670000px;}
.y4{bottom:996.300000px;}
.y1d7{bottom:999.195000px;}
.y190{bottom:1003.556250px;}
.y18a{bottom:1005.795450px;}
.y131{bottom:1009.980000px;}
.y102{bottom:1018.980000px;}
.y3a{bottom:1019.070000px;}
.y192{bottom:1020.757350px;}
.y18e{bottom:1020.945000px;}
.y1b4{bottom:1021.477500px;}
.y217{bottom:1022.760000px;}
.y185{bottom:1027.125000px;}
.y1f{bottom:1028.070000px;}
.yc1{bottom:1029.600000px;}
.y1b3{bottom:1030.320000px;}
.yc6{bottom:1031.670000px;}
.y85{bottom:1034.370000px;}
.y69{bottom:1036.890000px;}
.y79{bottom:1036.980000px;}
.y52{bottom:1037.070000px;}
.y101{bottom:1050.030000px;}
.y3{bottom:1050.474150px;}
.y130{bottom:1051.380000px;}
.y14a{bottom:1060.380000px;}
.y39{bottom:1060.470000px;}
.y216{bottom:1060.560000px;}
.y1e{bottom:1069.470000px;}
.yc5{bottom:1074.330000px;}
.y84{bottom:1075.770000px;}
.y68{bottom:1078.290000px;}
.ydf{bottom:1078.380000px;}
.y51{bottom:1078.470000px;}
.y100{bottom:1081.080000px;}
.y12f{bottom:1092.780000px;}
.y2{bottom:1098.810000px;}
.yff{bottom:1101.780000px;}
.y38{bottom:1101.870000px;}
.y1d{bottom:1110.870000px;}
.y122{bottom:1112.130000px;}
.y83{bottom:1117.170000px;}
.y50{bottom:1119.870000px;}
.y120{bottom:1121.850000px;}
.y37{bottom:1131.570000px;}
.y12e{bottom:1134.000000px;}
.y149{bottom:1143.000000px;}
.y121{bottom:1143.180000px;}
.y1f7{bottom:1152.180000px;}
.y1{bottom:1152.270000px;}
.y82{bottom:1159.830000px;}
.y1c{bottom:1161.090000px;}
.y7f{bottom:1161.180000px;}
.y36{bottom:1161.270000px;}
.y123{bottom:1163.252250px;}
.h45{height:-381.787500px;}
.h41{height:-302.418000px;}
.h3d{height:-231.823500px;}
.h39{height:-152.127000px;}
.h26{height:15.193343px;}
.h27{height:16.842277px;}
.h24{height:23.802841px;}
.h25{height:26.386066px;}
.h47{height:26.473500px;}
.hc{height:28.813535px;}
.h3f{height:29.004000px;}
.h12{height:32.940000px;}
.h13{height:33.028500px;}
.h14{height:33.030000px;}
.hb{height:34.970273px;}
.h43{height:35.235000px;}
.h3b{height:35.428500px;}
.h7{height:38.158594px;}
.h36{height:38.502000px;}
.h10{height:41.398500px;}
.hf{height:41.400000px;}
.h11{height:41.760000px;}
.h5{height:46.991602px;}
.h29{height:47.227085px;}
.h2a{height:50.600046px;}
.h20{height:54.711033px;}
.h2b{height:55.904794px;}
.h31{height:55.906348px;}
.h8{height:61.831055px;}
.h16{height:62.100000px;}
.h2e{height:64.800274px;}
.h1d{height:65.939822px;}
.h2c{height:68.710781px;}
.h9{height:70.628906px;}
.h2{height:70.664062px;}
.h22{height:71.744569px;}
.h32{height:71.982422px;}
.h6{height:72.562500px;}
.h15{height:73.904062px;}
.h33{height:74.988281px;}
.hd{height:75.093750px;}
.ha{height:78.188555px;}
.h2f{height:79.106885px;}
.h28{height:79.273343px;}
.h4{height:80.111602px;}
.h1f{height:80.497997px;}
.h30{height:81.198246px;}
.h1e{height:82.181974px;}
.h3{height:84.535312px;}
.h1a{height:87.484219px;}
.h23{height:87.584344px;}
.h38{height:90.984213px;}
.h35{height:95.370940px;}
.h19{height:100.250156px;}
.h18{height:112.640625px;}
.h48{height:129.487282px;}
.h44{height:129.488534px;}
.h3c{height:129.563627px;}
.h40{height:129.596168px;}
.h46{height:134.297662px;}
.h3a{height:134.300791px;}
.h42{height:134.317062px;}
.h3e{height:134.352731px;}
.he{height:153.464063px;}
.h1b{height:197.988225px;}
.h37{height:300.796500px;}
.h2d{height:309.562500px;}
.h1c{height:315.189000px;}
.h21{height:326.061000px;}
.h34{height:411.487500px;}
.h17{height:1080.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:-162.034500px;}
.w18{width:-161.746500px;}
.w1a{width:-161.745000px;}
.w16{width:-160.957500px;}
.w19{width:33.940500px;}
.w13{width:33.942000px;}
.w17{width:34.129500px;}
.w15{width:35.067000px;}
.w12{width:36.730500px;}
.w7{width:54.720000px;}
.w9{width:54.721500px;}
.wb{width:54.810000px;}
.w6{width:58.950000px;}
.wa{width:60.568500px;}
.w8{width:62.190000px;}
.w4{width:143.910000px;}
.w3{width:144.000000px;}
.w5{width:144.270000px;}
.w2{width:175.770000px;}
.w11{width:210.054000px;}
.w10{width:469.468500px;}
.wd{width:581.626500px;}
.wf{width:586.875000px;}
.we{width:593.812500px;}
.wc{width:810.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x7b{left:-178.379700px;}
.x7c{left:-177.307350px;}
.x0{left:0.000000px;}
.x16{left:1.170000px;}
.x78{left:3.443550px;}
.x61{left:16.533750px;}
.x7a{left:22.670250px;}
.x4e{left:24.181500px;}
.x79{left:25.252800px;}
.x5e{left:28.731921px;}
.x58{left:32.658000px;}
.x4b{left:36.100650px;}
.x10{left:39.600000px;}
.x21{left:49.050000px;}
.x24{left:53.190000px;}
.x1a{left:55.710000px;}
.x1e{left:57.240000px;}
.x14{left:58.320000px;}
.x5d{left:60.220037px;}
.x12{left:62.910000px;}
.x75{left:65.427150px;}
.x4a{left:78.458700px;}
.x50{left:81.780000px;}
.x3b{left:82.812570px;}
.x15{left:83.880000px;}
.x4{left:85.050000px;}
.x49{left:87.000000px;}
.x81{left:88.740000px;}
.x84{left:99.090000px;}
.x2{left:120.240000px;}
.x85{left:126.450000px;}
.x76{left:135.445500px;}
.x34{left:143.895600px;}
.x5b{left:157.241850px;}
.x63{left:162.675000px;}
.x74{left:164.062500px;}
.x3d{left:170.322750px;}
.x32{left:177.594150px;}
.x7{left:183.780000px;}
.x68{left:186.300000px;}
.x6c{left:188.939850px;}
.x39{left:191.730750px;}
.x69{left:194.730150px;}
.x7f{left:198.000000px;}
.x33{left:204.916260px;}
.x8{left:207.450000px;}
.x9{left:213.125670px;}
.xf{left:214.650000px;}
.x37{left:220.227000px;}
.x19{left:228.150000px;}
.xa{left:231.570000px;}
.x1{left:233.820000px;}
.x64{left:237.095910px;}
.x18{left:246.330000px;}
.x3c{left:247.584000px;}
.x2e{left:254.610000px;}
.x17{left:257.580000px;}
.x54{left:259.456883px;}
.x38{left:260.530800px;}
.x53{left:264.614700px;}
.x67{left:269.175000px;}
.x55{left:272.323350px;}
.x36{left:273.682800px;}
.x3a{left:275.338140px;}
.x73{left:281.200200px;}
.xb{left:283.500000px;}
.x87{left:285.750000px;}
.x1b{left:287.100000px;}
.x88{left:289.170000px;}
.x4f{left:290.536800px;}
.x51{left:293.226600px;}
.x89{left:295.110000px;}
.x5f{left:296.887500px;}
.x65{left:298.987500px;}
.x83{left:301.230000px;}
.x57{left:306.739200px;}
.x86{left:309.150000px;}
.x20{left:311.400000px;}
.x4d{left:313.169700px;}
.x59{left:315.867150px;}
.x60{left:318.007350px;}
.x35{left:321.207750px;}
.x6d{left:323.750850px;}
.x3{left:333.819450px;}
.x56{left:338.605020px;}
.x77{left:339.682500px;}
.x2b{left:341.820000px;}
.x52{left:344.979000px;}
.x22{left:347.040000px;}
.x2d{left:348.930000px;}
.x1c{left:351.180000px;}
.x48{left:364.800000px;}
.x3e{left:368.869950px;}
.x6e{left:376.049850px;}
.x2f{left:383.742750px;}
.x11{left:390.420000px;}
.x7d{left:396.888900px;}
.x6f{left:400.627500px;}
.x2c{left:410.490000px;}
.x82{left:416.340000px;}
.xc{left:424.080000px;}
.x6{left:438.570000px;}
.x5{left:442.530000px;}
.x5a{left:443.737500px;}
.x66{left:446.550000px;}
.x23{left:469.440000px;}
.x45{left:483.276570px;}
.x6b{left:506.500950px;}
.x40{left:509.721900px;}
.x6a{left:514.055250px;}
.x70{left:520.897500px;}
.x26{left:524.160000px;}
.x25{left:528.570000px;}
.x13{left:534.420000px;}
.x41{left:541.617270px;}
.xd{left:543.330000px;}
.x31{left:557.175600px;}
.x71{left:562.335000px;}
.x44{left:568.288950px;}
.x27{left:584.730000px;}
.xe{left:586.260000px;}
.x4c{left:590.631900px;}
.x30{left:592.248600px;}
.x72{left:594.412500px;}
.x5c{left:603.300000px;}
.x43{left:610.230450px;}
.x3f{left:615.133500px;}
.x62{left:616.987500px;}
.x1d{left:639.540000px;}
.x28{left:644.670000px;}
.x46{left:685.007970px;}
.x2a{left:701.730000px;}
.x29{left:702.810000px;}
.x1f{left:707.310000px;}
.x47{left:734.830200px;}
.x42{left:743.586300px;}
.x7e{left:772.830000px;}
.x80{left:783.180000px;}
@media print{
.vd{vertical-align:-37.440000pt;}
.vf{vertical-align:-35.341440pt;}
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-24.000000pt;}
.v13{vertical-align:-21.120533pt;}
.v12{vertical-align:-18.240000pt;}
.v6{vertical-align:-13.120000pt;}
.va{vertical-align:-11.520000pt;}
.v9{vertical-align:-9.280000pt;}
.v4{vertical-align:-8.000000pt;}
.v11{vertical-align:-2.013120pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.vb{vertical-align:11.520000pt;}
.v14{vertical-align:21.120533pt;}
.ve{vertical-align:22.400533pt;}
.v8{vertical-align:28.160000pt;}
.v1{vertical-align:29.440000pt;}
.v7{vertical-align:37.440000pt;}
.vc{vertical-align:73.600000pt;}
.v10{vertical-align:75.864533pt;}
.ls4a{letter-spacing:-7.168000pt;}
.ls5d{letter-spacing:-7.104000pt;}
.ls71{letter-spacing:-6.408000pt;}
.ls49{letter-spacing:-6.144000pt;}
.ls2b{letter-spacing:-5.824000pt;}
.ls6d{letter-spacing:-5.822336pt;}
.ls79{letter-spacing:-5.592000pt;}
.ls78{letter-spacing:-5.517440pt;}
.ls6b{letter-spacing:-5.351258pt;}
.ls18{letter-spacing:-5.184000pt;}
.ls6f{letter-spacing:-4.932036pt;}
.ls73{letter-spacing:-4.584578pt;}
.ls6c{letter-spacing:-3.852173pt;}
.ls6e{letter-spacing:-3.783479pt;}
.ls23{letter-spacing:-3.648000pt;}
.ls6a{letter-spacing:-3.540499pt;}
.ls72{letter-spacing:-3.479314pt;}
.ls25{letter-spacing:-3.456000pt;}
.ls1e{letter-spacing:-3.328000pt;}
.ls1d{letter-spacing:-2.432000pt;}
.ls59{letter-spacing:-2.304000pt;}
.ls1a{letter-spacing:-2.240000pt;}
.ls2c{letter-spacing:-2.072000pt;}
.ls58{letter-spacing:-1.856000pt;}
.ls21{letter-spacing:-1.472000pt;}
.ls74{letter-spacing:-1.453256pt;}
.ls86{letter-spacing:-1.408000pt;}
.ls1c{letter-spacing:-0.512000pt;}
.ls87{letter-spacing:-0.448000pt;}
.ls1f{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls4b{letter-spacing:-0.297920pt;}
.ls11{letter-spacing:-0.267200pt;}
.ls17{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls5e{letter-spacing:-0.170880pt;}
.lse{letter-spacing:-0.160320pt;}
.ls9{letter-spacing:-0.149120pt;}
.lsa{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.106880pt;}
.ls5c{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.085120pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.053440pt;}
.ls8{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.026880pt;}
.ls1{letter-spacing:0.052192pt;}
.ls70{letter-spacing:0.058560pt;}
.ls3{letter-spacing:0.064000pt;}
.ls5a{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.106880pt;}
.ls41{letter-spacing:0.112320pt;}
.ls6{letter-spacing:0.128000pt;}
.ls68{letter-spacing:0.131520pt;}
.ls4e{letter-spacing:0.134400pt;}
.ls0{letter-spacing:0.149120pt;}
.ls5{letter-spacing:0.155520pt;}
.ls2{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.168000pt;}
.ls4{letter-spacing:0.170240pt;}
.ls20{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.320000pt;}
.ls75{letter-spacing:0.416000pt;}
.ls69{letter-spacing:0.448000pt;}
.ls4d{letter-spacing:0.480000pt;}
.ls44{letter-spacing:0.640000pt;}
.ls28{letter-spacing:0.960000pt;}
.ls29{letter-spacing:1.280000pt;}
.ls77{letter-spacing:1.783487pt;}
.ls76{letter-spacing:1.869477pt;}
.ls3f{letter-spacing:1.886080pt;}
.ls46{letter-spacing:1.920000pt;}
.ls33{letter-spacing:2.880000pt;}
.ls3b{letter-spacing:2.934720pt;}
.ls37{letter-spacing:3.008000pt;}
.ls12{letter-spacing:3.040000pt;}
.ls14{letter-spacing:3.072000pt;}
.ls1b{letter-spacing:3.104640pt;}
.ls42{letter-spacing:3.136000pt;}
.ls27{letter-spacing:3.200000pt;}
.ls39{letter-spacing:3.254720pt;}
.ls22{letter-spacing:3.264000pt;}
.ls38{letter-spacing:3.328000pt;}
.ls13{letter-spacing:3.360000pt;}
.ls16{letter-spacing:3.392000pt;}
.ls24{letter-spacing:3.456000pt;}
.ls43{letter-spacing:3.520000pt;}
.ls32{letter-spacing:4.480000pt;}
.ls47{letter-spacing:5.440000pt;}
.ls30{letter-spacing:5.760000pt;}
.ls31{letter-spacing:6.080000pt;}
.ls48{letter-spacing:7.360000pt;}
.ls36{letter-spacing:8.000000pt;}
.ls45{letter-spacing:11.200000pt;}
.ls2a{letter-spacing:11.520000pt;}
.ls2e{letter-spacing:12.800000pt;}
.ls2d{letter-spacing:13.120000pt;}
.ls51{letter-spacing:13.440000pt;}
.ls4f{letter-spacing:15.680000pt;}
.ls3e{letter-spacing:15.872000pt;}
.ls3d{letter-spacing:16.890240pt;}
.ls34{letter-spacing:17.600000pt;}
.ls2f{letter-spacing:18.880000pt;}
.ls35{letter-spacing:23.360000pt;}
.ls3c{letter-spacing:25.920000pt;}
.ls50{letter-spacing:28.800000pt;}
.ls4c{letter-spacing:31.680000pt;}
.ls56{letter-spacing:43.920000pt;}
.ls55{letter-spacing:75.920000pt;}
.ls64{letter-spacing:97.209600pt;}
.ls65{letter-spacing:99.903360pt;}
.ls54{letter-spacing:99.920000pt;}
.ls7b{letter-spacing:104.320000pt;}
.ls57{letter-spacing:121.040000pt;}
.ls66{letter-spacing:131.174400pt;}
.ls5f{letter-spacing:135.624640pt;}
.ls62{letter-spacing:143.924102pt;}
.ls63{letter-spacing:162.953024pt;}
.ls3a{letter-spacing:172.800000pt;}
.ls5b{letter-spacing:208.217280pt;}
.ls7a{letter-spacing:275.840000pt;}
.ls7d{letter-spacing:278.400000pt;}
.ls7f{letter-spacing:292.480000pt;}
.ls7c{letter-spacing:297.280000pt;}
.ls84{letter-spacing:304.640000pt;}
.ls83{letter-spacing:306.880000pt;}
.ls81{letter-spacing:310.720000pt;}
.ls80{letter-spacing:313.600000pt;}
.ls52{letter-spacing:315.200000pt;}
.ls82{letter-spacing:320.320000pt;}
.ls7e{letter-spacing:322.560000pt;}
.ls53{letter-spacing:348.160000pt;}
.ls61{letter-spacing:353.712640pt;}
.ls85{letter-spacing:372.800000pt;}
.ls60{letter-spacing:576.311947pt;}
.ls67{letter-spacing:750.371966pt;}
.wscd{word-spacing:-74.560000pt;}
.wscc{word-spacing:-69.202667pt;}
.wscb{word-spacing:-67.420267pt;}
.ws2d{word-spacing:-64.000000pt;}
.wsce{word-spacing:-49.920000pt;}
.ws6d{word-spacing:-45.440000pt;}
.ws6e{word-spacing:-37.552320pt;}
.ws6f{word-spacing:-37.440000pt;}
.wsdf{word-spacing:-26.688000pt;}
.wsdc{word-spacing:-23.752320pt;}
.wsde{word-spacing:-23.581440pt;}
.wsd9{word-spacing:-21.792000pt;}
.wsdb{word-spacing:-21.696000pt;}
.wsc2{word-spacing:-20.876800pt;}
.wse1{word-spacing:-20.578560pt;}
.wsbd{word-spacing:-19.584000pt;}
.ws0{word-spacing:-18.490880pt;}
.wsc9{word-spacing:-17.344320pt;}
.ws1c{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.wsdd{word-spacing:-15.834880pt;}
.ws1b{word-spacing:-15.808000pt;}
.ws1a{word-spacing:-15.744000pt;}
.ws26{word-spacing:-15.680000pt;}
.wsf2{word-spacing:-15.552000pt;}
.ws25{word-spacing:-15.488000pt;}
.wse2{word-spacing:-15.210240pt;}
.wse3{word-spacing:-15.135680pt;}
.wsf1{word-spacing:-14.592000pt;}
.ws2b{word-spacing:-14.528000pt;}
.wsda{word-spacing:-14.464000pt;}
.ws33{word-spacing:-14.168000pt;}
.ws6c{word-spacing:-14.080000pt;}
.ws1e{word-spacing:-13.760000pt;}
.ws28{word-spacing:-13.568000pt;}
.ws9{word-spacing:-13.360000pt;}
.wsa{word-spacing:-13.306560pt;}
.ws8{word-spacing:-13.199680pt;}
.wsb{word-spacing:-13.092800pt;}
.ws32{word-spacing:-12.544000pt;}
.wsc7{word-spacing:-12.082656pt;}
.ws35{word-spacing:-11.928000pt;}
.ws70{word-spacing:-10.816000pt;}
.ws1d{word-spacing:-10.810240pt;}
.ws3{word-spacing:-10.640000pt;}
.ws4{word-spacing:-10.554880pt;}
.ws84{word-spacing:-10.342080pt;}
.ws34{word-spacing:-10.176000pt;}
.ws82{word-spacing:-9.856000pt;}
.ws83{word-spacing:-8.832000pt;}
.ws7{word-spacing:-8.640000pt;}
.ws31{word-spacing:-3.648000pt;}
.ws11{word-spacing:-3.520000pt;}
.ws20{word-spacing:-3.392000pt;}
.wse5{word-spacing:-3.088701pt;}
.wse6{word-spacing:-2.946631pt;}
.wsc5{word-spacing:-2.609600pt;}
.wse4{word-spacing:-1.869477pt;}
.ws38{word-spacing:-1.408000pt;}
.ws21{word-spacing:-1.280000pt;}
.ws36{word-spacing:-1.216000pt;}
.ws10{word-spacing:-1.152000pt;}
.wsc4{word-spacing:-1.043840pt;}
.ws2c{word-spacing:-0.960000pt;}
.wsd8{word-spacing:-0.830432pt;}
.ws16{word-spacing:-0.694720pt;}
.ws13{word-spacing:-0.448000pt;}
.ws23{word-spacing:-0.384000pt;}
.wsc3{word-spacing:-0.372800pt;}
.wsd4{word-spacing:-0.351360pt;}
.wsc{word-spacing:-0.320000pt;}
.wse{word-spacing:-0.223680pt;}
.wsbf{word-spacing:-0.192000pt;}
.ws2f{word-spacing:-0.170240pt;}
.ws12{word-spacing:-0.128000pt;}
.wsc0{word-spacing:-0.096000pt;}
.wsf{word-spacing:-0.064000pt;}
.wsd5{word-spacing:-0.058560pt;}
.wsd{word-spacing:0.000000pt;}
.ws19{word-spacing:0.056000pt;}
.ws24{word-spacing:0.064000pt;}
.ws18{word-spacing:0.106880pt;}
.ws1f{word-spacing:0.128000pt;}
.wsef{word-spacing:0.170880pt;}
.ws14{word-spacing:0.192000pt;}
.ws27{word-spacing:0.256000pt;}
.ws17{word-spacing:0.267200pt;}
.ws15{word-spacing:0.320000pt;}
.ws2a{word-spacing:0.384000pt;}
.wsc1{word-spacing:0.427200pt;}
.ws30{word-spacing:0.512000pt;}
.wsa6{word-spacing:0.576000pt;}
.wsb1{word-spacing:0.640000pt;}
.ws40{word-spacing:0.832000pt;}
.ws76{word-spacing:0.896000pt;}
.ws3f{word-spacing:0.960000pt;}
.wsf0{word-spacing:1.152000pt;}
.ws41{word-spacing:1.280000pt;}
.ws52{word-spacing:1.472000pt;}
.ws51{word-spacing:1.536000pt;}
.wsd2{word-spacing:1.553929pt;}
.ws50{word-spacing:1.600000pt;}
.ws74{word-spacing:1.792000pt;}
.ws77{word-spacing:1.856000pt;}
.ws71{word-spacing:1.920000pt;}
.ws8a{word-spacing:2.112000pt;}
.wsb9{word-spacing:2.176000pt;}
.ws9b{word-spacing:2.240000pt;}
.wsbc{word-spacing:2.304000pt;}
.wsd7{word-spacing:2.359709pt;}
.ws9a{word-spacing:2.432000pt;}
.ws63{word-spacing:2.496000pt;}
.ws62{word-spacing:2.560000pt;}
.ws61{word-spacing:2.752000pt;}
.ws60{word-spacing:2.816000pt;}
.ws4c{word-spacing:2.880000pt;}
.ws3d{word-spacing:3.072000pt;}
.wscf{word-spacing:3.087264pt;}
.ws3e{word-spacing:3.136000pt;}
.ws85{word-spacing:3.200000pt;}
.ws29{word-spacing:3.328000pt;}
.wsd1{word-spacing:3.359040pt;}
.wsd6{word-spacing:3.479314pt;}
.ws75{word-spacing:3.520000pt;}
.ws37{word-spacing:3.584000pt;}
.ws2e{word-spacing:3.648000pt;}
.ws8c{word-spacing:3.712000pt;}
.ws9e{word-spacing:3.776000pt;}
.ws4a{word-spacing:3.840000pt;}
.wsd0{word-spacing:3.852173pt;}
.ws4f{word-spacing:3.904000pt;}
.ws5f{word-spacing:4.160000pt;}
.wsb7{word-spacing:4.352000pt;}
.wsb6{word-spacing:4.416000pt;}
.ws5e{word-spacing:4.480000pt;}
.ws96{word-spacing:4.800000pt;}
.wsbb{word-spacing:4.864000pt;}
.wsd3{word-spacing:4.932036pt;}
.ws22{word-spacing:5.184000pt;}
.ws7e{word-spacing:5.312000pt;}
.ws7f{word-spacing:5.376000pt;}
.ws7d{word-spacing:5.440000pt;}
.ws5b{word-spacing:5.632000pt;}
.ws5d{word-spacing:5.760000pt;}
.ws78{word-spacing:5.824000pt;}
.ws72{word-spacing:6.016000pt;}
.ws5a{word-spacing:6.080000pt;}
.ws5c{word-spacing:6.272000pt;}
.ws86{word-spacing:6.400000pt;}
.ws92{word-spacing:6.656000pt;}
.ws8d{word-spacing:6.720000pt;}
.ws81{word-spacing:6.912000pt;}
.ws4e{word-spacing:6.976000pt;}
.ws4d{word-spacing:7.040000pt;}
.wsa9{word-spacing:7.296000pt;}
.ws80{word-spacing:7.360000pt;}
.ws69{word-spacing:7.552000pt;}
.ws9f{word-spacing:7.616000pt;}
.wsa0{word-spacing:7.680000pt;}
.ws7a{word-spacing:7.936000pt;}
.ws53{word-spacing:8.000000pt;}
.wsb4{word-spacing:8.192000pt;}
.ws7c{word-spacing:8.256000pt;}
.ws7b{word-spacing:8.320000pt;}
.ws99{word-spacing:8.384000pt;}
.wsa4{word-spacing:8.576000pt;}
.wsb2{word-spacing:8.640000pt;}
.wsa3{word-spacing:8.704000pt;}
.ws89{word-spacing:8.960000pt;}
.ws6b{word-spacing:9.152000pt;}
.ws3b{word-spacing:9.216000pt;}
.ws6a{word-spacing:9.280000pt;}
.ws8b{word-spacing:9.472000pt;}
.ws3c{word-spacing:9.536000pt;}
.ws39{word-spacing:9.600000pt;}
.ws3a{word-spacing:9.728000pt;}
.ws88{word-spacing:9.856000pt;}
.ws87{word-spacing:9.920000pt;}
.wsa2{word-spacing:10.240000pt;}
.ws94{word-spacing:10.560000pt;}
.ws79{word-spacing:11.200000pt;}
.ws43{word-spacing:11.392000pt;}
.ws42{word-spacing:11.520000pt;}
.ws49{word-spacing:11.712000pt;}
.ws47{word-spacing:12.352000pt;}
.ws9c{word-spacing:12.480000pt;}
.wsb8{word-spacing:12.672000pt;}
.ws48{word-spacing:12.736000pt;}
.ws46{word-spacing:12.800000pt;}
.ws44{word-spacing:12.992000pt;}
.ws8e{word-spacing:13.056000pt;}
.ws45{word-spacing:13.120000pt;}
.wsaf{word-spacing:13.312000pt;}
.ws4b{word-spacing:13.376000pt;}
.wsb0{word-spacing:13.440000pt;}
.wsae{word-spacing:13.632000pt;}
.ws95{word-spacing:13.760000pt;}
.wsac{word-spacing:14.016000pt;}
.wsad{word-spacing:14.080000pt;}
.ws9d{word-spacing:14.400000pt;}
.ws8f{word-spacing:14.720000pt;}
.ws58{word-spacing:14.976000pt;}
.ws57{word-spacing:15.040000pt;}
.ws91{word-spacing:15.360000pt;}
.wsb3{word-spacing:15.488000pt;}
.ws90{word-spacing:15.552000pt;}
.wsa1{word-spacing:15.680000pt;}
.ws65{word-spacing:17.280000pt;}
.ws64{word-spacing:17.600000pt;}
.wsab{word-spacing:17.856000pt;}
.wsaa{word-spacing:18.048000pt;}
.ws55{word-spacing:18.752000pt;}
.ws54{word-spacing:18.816000pt;}
.ws56{word-spacing:18.880000pt;}
.ws59{word-spacing:19.520000pt;}
.wsb5{word-spacing:21.760000pt;}
.ws66{word-spacing:22.080000pt;}
.ws67{word-spacing:23.296000pt;}
.ws68{word-spacing:23.360000pt;}
.ws93{word-spacing:24.320000pt;}
.ws73{word-spacing:25.920000pt;}
.wsa7{word-spacing:28.736000pt;}
.ws98{word-spacing:31.680000pt;}
.ws97{word-spacing:31.872000pt;}
.wsa8{word-spacing:39.680000pt;}
.wsa5{word-spacing:71.680000pt;}
.wsc6{word-spacing:79.970323pt;}
.wsc8{word-spacing:124.309005pt;}
.wsba{word-spacing:142.080000pt;}
.wsbe{word-spacing:149.332032pt;}
.wsed{word-spacing:215.180288pt;}
.wse7{word-spacing:215.185301pt;}
.wseb{word-spacing:215.211371pt;}
.wse9{word-spacing:215.268523pt;}
.wse0{word-spacing:274.450550pt;}
.wsee{word-spacing:422.339556pt;}
.wsec{word-spacing:422.343638pt;}
.wse8{word-spacing:422.588566pt;}
.wsea{word-spacing:422.694701pt;}
.wsca{word-spacing:686.860686pt;}
._4f{margin-left:-1063.449600pt;}
._50{margin-left:-553.509120pt;}
._54{margin-left:-449.780907pt;}
._4a{margin-left:-392.483840pt;}
._51{margin-left:-292.155840pt;}
._16{margin-left:-172.480000pt;}
._17{margin-left:-12.480000pt;}
._d{margin-left:-8.512000pt;}
._b{margin-left:-7.436800pt;}
._c{margin-left:-5.792000pt;}
._2{margin-left:-4.576000pt;}
._6{margin-left:-3.360000pt;}
._4{margin-left:-2.432000pt;}
._0{margin-left:-1.472000pt;}
._5{width:0.960000pt;}
._1{width:2.080000pt;}
._3{width:3.392000pt;}
._7{width:5.056000pt;}
._e{width:6.080000pt;}
._12{width:7.424000pt;}
._15{width:8.320000pt;}
._f{width:9.408000pt;}
._10{width:11.584000pt;}
._11{width:13.168000pt;}
._1a{width:14.656000pt;}
._13{width:18.176000pt;}
._2a{width:21.056000pt;}
._14{width:22.912000pt;}
._18{width:25.728000pt;}
._1b{width:28.416000pt;}
._19{width:29.440000pt;}
._33{width:31.296000pt;}
._29{width:34.496000pt;}
._34{width:37.056000pt;}
._28{width:42.816000pt;}
._44{width:45.440000pt;}
._45{width:47.360000pt;}
._38{width:48.256000pt;}
._43{width:53.120000pt;}
._27{width:56.256000pt;}
._1f{width:57.632000pt;}
._1e{width:62.976000pt;}
._42{width:66.944000pt;}
._1d{width:76.672000pt;}
._48{width:77.568000pt;}
._49{width:79.360000pt;}
._46{width:80.320000pt;}
._47{width:85.952000pt;}
._40{width:95.360000pt;}
._3c{width:96.320000pt;}
._31{width:98.048000pt;}
._4c{width:106.590054pt;}
._4e{width:108.031002pt;}
._3f{width:109.440000pt;}
._20{width:113.920000pt;}
._3e{width:117.120000pt;}
._a{width:119.102720pt;}
._4b{width:120.414861pt;}
._4d{width:121.618598pt;}
._24{width:125.440000pt;}
._25{width:127.360000pt;}
._21{width:128.320000pt;}
._3d{width:130.880000pt;}
._23{width:133.120000pt;}
._1c{width:137.600000pt;}
._22{width:146.880000pt;}
._8{width:150.778880pt;}
._35{width:152.416000pt;}
._2f{width:167.808000pt;}
._2c{width:170.688000pt;}
._9{width:172.800000pt;}
._2e{width:176.128000pt;}
._2d{width:189.568000pt;}
._32{width:201.536000pt;}
._5d{width:281.024000pt;}
._52{width:301.325226pt;}
._5a{width:306.112000pt;}
._5b{width:313.728000pt;}
._26{width:320.960000pt;}
._2b{width:326.895360pt;}
._57{width:328.384000pt;}
._5e{width:342.144000pt;}
._58{width:344.064000pt;}
._59{width:359.936000pt;}
._3a{width:367.808000pt;}
._39{width:371.660800pt;}
._41{width:387.136000pt;}
._5f{width:389.888000pt;}
._5c{width:405.536000pt;}
._30{width:424.960000pt;}
._3b{width:431.072000pt;}
._37{width:457.280000pt;}
._36{width:471.680000pt;}
._53{width:571.474773pt;}
._55{width:752.000000pt;}
._56{width:753.984000pt;}
.fs12{font-size:12.948800pt;}
.fs13{font-size:14.354133pt;}
.fs10{font-size:20.286400pt;}
.fs11{font-size:22.488000pt;}
.fs3{font-size:34.560000pt;}
.fs1c{font-size:35.520000pt;}
.fs7{font-size:37.440000pt;}
.fs15{font-size:40.250133pt;}
.fs2{font-size:42.560000pt;}
.fs16{font-size:43.124800pt;}
.fs6{font-size:45.440000pt;}
.fs17{font-size:47.645867pt;}
.fsa{font-size:49.920000pt;}
.fs4{font-size:53.440000pt;}
.fs19{font-size:55.227200pt;}
.fs5{font-size:56.000000pt;}
.fsb{font-size:56.198400pt;}
.fs1d{font-size:56.960000pt;}
.fs18{font-size:58.560000pt;}
.fse{font-size:61.145600pt;}
.fs0{font-size:64.000000pt;}
.fs1a{font-size:67.420267pt;}
.fs14{font-size:67.562133pt;}
.fsd{font-size:68.605867pt;}
.fs1b{font-size:69.202667pt;}
.fsc{font-size:70.041067pt;}
.fs1{font-size:74.560000pt;}
.fsf{font-size:74.645333pt;}
.fs1f{font-size:77.542933pt;}
.fs1e{font-size:81.281600pt;}
.fs9{font-size:85.440000pt;}
.fs8{font-size:96.000000pt;}
.fs27{font-size:110.357867pt;}
.fs25{font-size:110.358933pt;}
.fs21{font-size:110.422933pt;}
.fs23{font-size:110.450667pt;}
.fs26{font-size:114.457600pt;}
.fs20{font-size:114.460267pt;}
.fs24{font-size:114.474133pt;}
.fs22{font-size:114.504533pt;}
.y1f3{bottom:-374.005600pt;}
.y1f0{bottom:-303.459600pt;}
.y1ed{bottom:-240.718133pt;}
.y1a9{bottom:-184.965616pt;}
.y1ea{bottom:-169.863467pt;}
.y1f4{bottom:-148.102267pt;}
.y1aa{bottom:-140.107067pt;}
.y1a7{bottom:-139.030533pt;}
.y1ab{bottom:-108.169467pt;}
.y1a8{bottom:-94.294000pt;}
.y1f1{bottom:-77.524000pt;}
.y1ee{bottom:-14.722267pt;}
.y14d{bottom:-0.080000pt;}
.y0{bottom:0.000000pt;}
.y1e4{bottom:3.208933pt;}
.y16d{bottom:3.680000pt;}
.y153{bottom:9.120000pt;}
.y15d{bottom:9.200000pt;}
.y1e2{bottom:9.626667pt;}
.y19f{bottom:11.114933pt;}
.y1bb{bottom:14.644667pt;}
.y1a6{bottom:15.834667pt;}
.y144{bottom:22.080000pt;}
.y148{bottom:22.240000pt;}
.y198{bottom:35.386267pt;}
.y1b7{bottom:38.672267pt;}
.y16b{bottom:40.480000pt;}
.y1a1{bottom:42.236267pt;}
.y1e0{bottom:50.266533pt;}
.y1a{bottom:50.404000pt;}
.y1b8{bottom:51.581625pt;}
.y1eb{bottom:56.045067pt;}
.y1a2{bottom:60.503515pt;}
.y19{bottom:66.560000pt;}
.y199{bottom:70.060679pt;}
.y1d8{bottom:73.829333pt;}
.y176{bottom:73.840000pt;}
.y1da{bottom:80.212400pt;}
.y1ac{bottom:87.104933pt;}
.y35{bottom:88.320000pt;}
.y18{bottom:88.560000pt;}
.y147{bottom:94.400000pt;}
.y1b{bottom:98.000000pt;}
.y20f{bottom:99.440000pt;}
.y11f{bottom:105.440000pt;}
.yf0{bottom:105.600000pt;}
.yc0{bottom:105.680000pt;}
.y12d{bottom:108.080000pt;}
.y4f{bottom:109.120000pt;}
.y81{bottom:111.040000pt;}
.y78{bottom:112.320000pt;}
.yde{bottom:118.080000pt;}
.y1a3{bottom:120.258052pt;}
.y20e{bottom:125.680000pt;}
.y1a0{bottom:129.666667pt;}
.y1be{bottom:131.374933pt;}
.y146{bottom:131.520000pt;}
.y1db{bottom:131.548133pt;}
.y11e{bottom:133.040000pt;}
.y34{bottom:133.120000pt;}
.y67{bottom:141.120000pt;}
.yf9{bottom:142.240000pt;}
.yef{bottom:142.400000pt;}
.ybf{bottom:142.480000pt;}
.y9a{bottom:144.240000pt;}
.y4e{bottom:145.920000pt;}
.yab{bottom:146.640000pt;}
.y175{bottom:148.480000pt;}
.y1bc{bottom:148.947200pt;}
.y19e{bottom:149.056133pt;}
.y77{bottom:149.120000pt;}
.y19c{bottom:151.245600pt;}
.y12c{bottom:152.880000pt;}
.y17{bottom:154.480000pt;}
.ydd{bottom:154.880000pt;}
.y1b9{bottom:157.369326pt;}
.y19a{bottom:159.837623pt;}
.y1af{bottom:160.360267pt;}
.y11d{bottom:160.640000pt;}
.y20d{bottom:162.640000pt;}
.y145{bottom:168.320000pt;}
.y33{bottom:169.920000pt;}
.y174{bottom:174.458000pt;}
.y212{bottom:176.640000pt;}
.y66{bottom:177.920000pt;}
.yf8{bottom:179.120000pt;}
.yee{bottom:179.200000pt;}
.ybe{bottom:179.280000pt;}
.y1a4{bottom:180.012590pt;}
.y99{bottom:181.120000pt;}
.y4d{bottom:182.720000pt;}
.y1dc{bottom:182.884133pt;}
.yaa{bottom:183.520000pt;}
.y7e{bottom:185.840000pt;}
.y76{bottom:185.920000pt;}
.y11c{bottom:188.240000pt;}
.y16{bottom:191.120000pt;}
.ydc{bottom:191.680000pt;}
.y12b{bottom:197.680000pt;}
.y173{bottom:198.622000pt;}
.y20c{bottom:200.560000pt;}
.y1ad{bottom:202.050400pt;}
.y143{bottom:205.120000pt;}
.y32{bottom:206.720000pt;}
.y1ae{bottom:207.609067pt;}
.y211{bottom:214.560000pt;}
.y65{bottom:214.720000pt;}
.y11b{bottom:215.840000pt;}
.yf7{bottom:215.920000pt;}
.yed{bottom:216.000000pt;}
.ybd{bottom:216.080000pt;}
.y98{bottom:217.920000pt;}
.y4c{bottom:219.520000pt;}
.ya9{bottom:220.320000pt;}
.y75{bottom:222.720000pt;}
.y172{bottom:222.786000pt;}
.y15{bottom:228.000000pt;}
.ydb{bottom:228.480000pt;}
.y1dd{bottom:233.156803pt;}
.y1a5{bottom:239.767127pt;}
.y12a{bottom:242.480000pt;}
.y20b{bottom:243.040000pt;}
.y11a{bottom:243.440000pt;}
.y31{bottom:243.520000pt;}
.y171{bottom:246.950000pt;}
.y19b{bottom:249.797212pt;}
.y1c7{bottom:250.313333pt;}
.y64{bottom:251.520000pt;}
.yf6{bottom:252.720000pt;}
.ybc{bottom:252.800000pt;}
.y97{bottom:254.720000pt;}
.y4b{bottom:256.320000pt;}
.y210{bottom:257.040000pt;}
.ya8{bottom:257.120000pt;}
.y74{bottom:259.520000pt;}
.y202{bottom:259.840000pt;}
.y1ba{bottom:263.336516pt;}
.y14{bottom:264.800000pt;}
.yda{bottom:265.280000pt;}
.y141{bottom:266.880000pt;}
.y119{bottom:271.040000pt;}
.y170{bottom:271.114000pt;}
.y201{bottom:278.400000pt;}
.y30{bottom:280.320000pt;}
.y1bd{bottom:283.070533pt;}
.y1de{bottom:284.486133pt;}
.y140{bottom:285.280000pt;}
.y129{bottom:287.200000pt;}
.y19d{bottom:287.726933pt;}
.y63{bottom:288.320000pt;}
.y1b0{bottom:289.003867pt;}
.yf5{bottom:289.520000pt;}
.ybb{bottom:289.600000pt;}
.y96{bottom:291.520000pt;}
.ya7{bottom:293.920000pt;}
.y73{bottom:296.320000pt;}
.y200{bottom:296.640000pt;}
.y118{bottom:298.640000pt;}
.y4a{bottom:301.120000pt;}
.y13{bottom:301.600000pt;}
.yd9{bottom:302.080000pt;}
.y142{bottom:303.680000pt;}
.y16f{bottom:311.280000pt;}
.y2f{bottom:317.120000pt;}
.y62{bottom:325.120000pt;}
.y117{bottom:326.240000pt;}
.yf4{bottom:326.320000pt;}
.yba{bottom:326.400000pt;}
.y95{bottom:328.320000pt;}
.ya6{bottom:330.640000pt;}
.y128{bottom:332.000000pt;}
.y72{bottom:333.120000pt;}
.y1ff{bottom:333.600000pt;}
.y1df{bottom:335.815464pt;}
.y49{bottom:337.920000pt;}
.y12{bottom:338.400000pt;}
.yd8{bottom:338.880000pt;}
.y13f{bottom:343.360000pt;}
.y1c1{bottom:348.648427pt;}
.y16e{bottom:353.680000pt;}
.y116{bottom:353.760000pt;}
.y2e{bottom:353.920000pt;}
.y16a{bottom:361.680000pt;}
.y61{bottom:361.920000pt;}
.yec{bottom:363.120000pt;}
.yb9{bottom:363.200000pt;}
.y94{bottom:365.120000pt;}
.ya5{bottom:367.520000pt;}
.y1b5{bottom:369.340000pt;}
.y71{bottom:369.920000pt;}
.y48{bottom:374.720000pt;}
.y11{bottom:375.200000pt;}
.yd7{bottom:375.680000pt;}
.y1c8{bottom:376.486853pt;}
.y127{bottom:376.800000pt;}
.y1fe{bottom:378.400000pt;}
.y115{bottom:381.360000pt;}
.y16c{bottom:383.760000pt;}
.y2d{bottom:390.720000pt;}
.y60{bottom:398.720000pt;}
.y18d{bottom:398.898933pt;}
.yeb{bottom:399.920000pt;}
.yb8{bottom:400.000000pt;}
.y93{bottom:401.920000pt;}
.ya4{bottom:404.320000pt;}
.y197{bottom:404.333333pt;}
.y70{bottom:406.720000pt;}
.y114{bottom:408.960000pt;}
.y1d9{bottom:409.065333pt;}
.y47{bottom:411.520000pt;}
.y10{bottom:412.000000pt;}
.yd6{bottom:412.480000pt;}
.y1e1{bottom:415.481333pt;}
.y1fd{bottom:416.320000pt;}
.y13e{bottom:416.960000pt;}
.y126{bottom:421.600000pt;}
.y2c{bottom:427.520000pt;}
.y169{bottom:428.320000pt;}
.y194{bottom:435.041600pt;}
.y5f{bottom:435.520000pt;}
.y113{bottom:436.560000pt;}
.yea{bottom:436.720000pt;}
.yb7{bottom:436.800000pt;}
.y92{bottom:438.640000pt;}
.ya3{bottom:441.120000pt;}
.y6f{bottom:443.520000pt;}
.yf{bottom:448.800000pt;}
.yd5{bottom:449.280000pt;}
.y13d{bottom:453.760000pt;}
.y46{bottom:456.320000pt;}
.y18c{bottom:458.551467pt;}
.y1f6{bottom:458.615333pt;}
.y1f5{bottom:458.788400pt;}
.y168{bottom:459.040000pt;}
.y1fc{bottom:462.400000pt;}
.y1c3{bottom:464.040000pt;}
.y112{bottom:464.160000pt;}
.y2b{bottom:464.320000pt;}
.y125{bottom:466.400000pt;}
.y1e3{bottom:472.165333pt;}
.y5e{bottom:472.320000pt;}
.yf3{bottom:473.440000pt;}
.ye9{bottom:473.520000pt;}
.yb6{bottom:473.600000pt;}
.y195{bottom:474.353360pt;}
.y91{bottom:475.440000pt;}
.y1c4{bottom:475.873333pt;}
.ya2{bottom:477.920000pt;}
.y193{bottom:479.865067pt;}
.y167{bottom:480.240000pt;}
.y6e{bottom:480.320000pt;}
.ye{bottom:485.600000pt;}
.y183{bottom:486.609867pt;}
.yd4{bottom:487.200000pt;}
.y166{bottom:489.360000pt;}
.y13c{bottom:490.560000pt;}
.y111{bottom:491.760000pt;}
.y45{bottom:493.120000pt;}
.y196{bottom:497.173333pt;}
.y1fb{bottom:500.320000pt;}
.y2a{bottom:501.120000pt;}
.y18b{bottom:501.673333pt;}
.yf2{bottom:510.240000pt;}
.ye8{bottom:510.320000pt;}
.yb5{bottom:510.400000pt;}
.y165{bottom:510.560000pt;}
.y124{bottom:511.200000pt;}
.y90{bottom:512.240000pt;}
.ya1{bottom:514.640000pt;}
.y6d{bottom:517.040000pt;}
.y5d{bottom:517.120000pt;}
.y110{bottom:519.360000pt;}
.y164{bottom:519.680000pt;}
.yd{bottom:522.400000pt;}
.y1ca{bottom:524.173333pt;}
.yd3{bottom:525.280000pt;}
.y181{bottom:526.620640pt;}
.y13b{bottom:527.360000pt;}
.y44{bottom:529.920000pt;}
.y222{bottom:534.720000pt;}
.y20a{bottom:540.800000pt;}
.y163{bottom:540.880000pt;}
.y29{bottom:545.920000pt;}
.y1fa{bottom:546.400000pt;}
.y10f{bottom:546.960000pt;}
.yf1{bottom:547.040000pt;}
.ye7{bottom:547.120000pt;}
.yb4{bottom:547.200000pt;}
.y8f{bottom:549.040000pt;}
.y162{bottom:550.000000pt;}
.ya0{bottom:551.440000pt;}
.y17b{bottom:552.060400pt;}
.y5c{bottom:553.920000pt;}
.yc{bottom:559.200000pt;}
.y17a{bottom:561.625200pt;}
.yd2{bottom:563.200000pt;}
.y13a{bottom:565.280000pt;}
.y43{bottom:566.640000pt;}
.y221{bottom:569.120000pt;}
.y161{bottom:571.200000pt;}
.y10e{bottom:574.560000pt;}
.y1c5{bottom:579.673333pt;}
.y160{bottom:580.320000pt;}
.y28{bottom:582.640000pt;}
.ye6{bottom:583.920000pt;}
.yb3{bottom:584.000000pt;}
.y1f9{bottom:584.320000pt;}
.y8e{bottom:585.840000pt;}
.y179{bottom:585.961200pt;}
.y206{bottom:588.080000pt;}
.y9f{bottom:588.240000pt;}
.y7d{bottom:590.560000pt;}
.y5b{bottom:590.640000pt;}
.yb{bottom:596.000000pt;}
.y209{bottom:596.160000pt;}
.ycf{bottom:598.080000pt;}
.yd1{bottom:599.527040pt;}
.y15f{bottom:601.520000pt;}
.y10d{bottom:602.160000pt;}
.y220{bottom:603.120000pt;}
.y139{bottom:603.360000pt;}
.y42{bottom:603.440000pt;}
.y17c{bottom:603.730240pt;}
.y182{bottom:603.870800pt;}
.y205{bottom:606.480000pt;}
.y178{bottom:608.617200pt;}
.yd0{bottom:610.160000pt;}
.y15e{bottom:610.720000pt;}
.yfe{bottom:611.440000pt;}
.yce{bottom:612.960000pt;}
.y27{bottom:619.440000pt;}
.y1c0{bottom:620.646667pt;}
.ye5{bottom:620.720000pt;}
.yb2{bottom:620.800000pt;}
.y1c2{bottom:620.817547pt;}
.y1c9{bottom:620.823893pt;}
.y8d{bottom:622.560000pt;}
.y9e{bottom:625.040000pt;}
.y7c{bottom:627.360000pt;}
.y5a{bottom:627.440000pt;}
.y10c{bottom:629.760000pt;}
.y1f8{bottom:631.520000pt;}
.y15c{bottom:631.840000pt;}
.ya{bottom:632.640000pt;}
.y208{bottom:634.080000pt;}
.y21f{bottom:637.120000pt;}
.y138{bottom:640.160000pt;}
.y41{bottom:640.240000pt;}
.y15b{bottom:641.040000pt;}
.y204{bottom:644.560000pt;}
.y215{bottom:644.800000pt;}
.yfd{bottom:648.240000pt;}
.y1bf{bottom:650.006667pt;}
.ycd{bottom:652.240000pt;}
.y17d{bottom:655.400080pt;}
.y26{bottom:656.240000pt;}
.y10b{bottom:657.360000pt;}
.ye4{bottom:657.520000pt;}
.yb1{bottom:657.600000pt;}
.y207{bottom:658.160000pt;}
.y8c{bottom:659.440000pt;}
.y9d{bottom:661.840000pt;}
.y1c6{bottom:662.206667pt;}
.y159{bottom:662.240000pt;}
.y189{bottom:663.519520pt;}
.yfa{bottom:664.080000pt;}
.y7b{bottom:664.160000pt;}
.y59{bottom:664.240000pt;}
.y1e9{bottom:668.936000pt;}
.y158{bottom:670.640000pt;}
.y21e{bottom:671.120000pt;}
.y15a{bottom:671.360000pt;}
.y1b6{bottom:673.500000pt;}
.y137{bottom:676.960000pt;}
.y40{bottom:677.040000pt;}
.y9{bottom:677.440000pt;}
.y1e7{bottom:679.205893pt;}
.y214{bottom:679.840000pt;}
.y10a{bottom:684.960000pt;}
.yfc{bottom:685.040000pt;}
.y203{bottom:687.040000pt;}
.ycc{bottom:689.040000pt;}
.y157{bottom:692.560000pt;}
.y25{bottom:693.040000pt;}
.y188{bottom:693.697680pt;}
.ye3{bottom:694.320000pt;}
.yb0{bottom:694.400000pt;}
.y8b{bottom:696.240000pt;}
.y1d2{bottom:696.922000pt;}
.y1ec{bottom:698.178667pt;}
.y9c{bottom:698.640000pt;}
.y80{bottom:700.960000pt;}
.y58{bottom:701.040000pt;}
.y156{bottom:701.680000pt;}
.y1e6{bottom:704.463093pt;}
.y21d{bottom:705.120000pt;}
.y17e{bottom:707.069920pt;}
.y1cd{bottom:711.904667pt;}
.y109{bottom:712.560000pt;}
.y136{bottom:713.760000pt;}
.y1d6{bottom:714.754533pt;}
.y1ef{bottom:719.116000pt;}
.y213{bottom:721.040000pt;}
.y3f{bottom:721.840000pt;}
.y155{bottom:722.880000pt;}
.ycb{bottom:725.840000pt;}
.y1e5{bottom:727.129333pt;}
.yfb{bottom:729.680000pt;}
.y8{bottom:729.759867pt;}
.y24{bottom:729.840000pt;}
.ye2{bottom:731.120000pt;}
.yaf{bottom:731.200000pt;}
.y154{bottom:732.000000pt;}
.y8a{bottom:733.040000pt;}
.y9b{bottom:736.560000pt;}
.y57{bottom:737.840000pt;}
.y21c{bottom:739.120000pt;}
.y108{bottom:740.160000pt;}
.y1b1{bottom:742.960000pt;}
.y1b2{bottom:743.457760pt;}
.y1f2{bottom:747.494667pt;}
.y1d1{bottom:749.752800pt;}
.y135{bottom:750.560000pt;}
.y1e8{bottom:751.883253pt;}
.y152{bottom:753.200000pt;}
.y3e{bottom:758.640000pt;}
.y17f{bottom:758.739760pt;}
.y184{bottom:759.096933pt;}
.y1d3{bottom:762.252267pt;}
.y151{bottom:762.320000pt;}
.yca{bottom:763.760000pt;}
.y23{bottom:766.640000pt;}
.y7{bottom:767.200000pt;}
.y107{bottom:767.760000pt;}
.ye1{bottom:767.920000pt;}
.yae{bottom:768.000000pt;}
.y1d4{bottom:768.085333pt;}
.y89{bottom:769.840000pt;}
.y21b{bottom:773.120000pt;}
.y56{bottom:774.640000pt;}
.y1cf{bottom:780.400667pt;}
.y14f{bottom:784.880000pt;}
.y134{bottom:787.360000pt;}
.y177{bottom:791.605467pt;}
.y150{bottom:794.000000pt;}
.y106{bottom:795.360000pt;}
.y3d{bottom:795.440000pt;}
.y1d0{bottom:802.720667pt;}
.yc9{bottom:802.960000pt;}
.y22{bottom:803.440000pt;}
.yc4{bottom:804.800000pt;}
.y88{bottom:806.640000pt;}
.y21a{bottom:807.120000pt;}
.y187{bottom:809.042000pt;}
.y180{bottom:810.409600pt;}
.y1ce{bottom:810.568667pt;}
.ye0{bottom:811.200000pt;}
.yad{bottom:811.280000pt;}
.y6{bottom:811.354960pt;}
.y6c{bottom:811.360000pt;}
.y55{bottom:811.440000pt;}
.y14c{bottom:816.560000pt;}
.y105{bottom:822.960000pt;}
.y133{bottom:824.160000pt;}
.y14e{bottom:825.680000pt;}
.y3c{bottom:832.240000pt;}
.y1cc{bottom:833.248667pt;}
.y1cb{bottom:837.339867pt;}
.y191{bottom:839.708880pt;}
.y21{bottom:840.240000pt;}
.yc8{bottom:841.040000pt;}
.y219{bottom:841.120000pt;}
.yc3{bottom:841.600000pt;}
.y87{bottom:843.440000pt;}
.yac{bottom:848.080000pt;}
.y6b{bottom:848.160000pt;}
.y54{bottom:848.240000pt;}
.y5{bottom:848.800000pt;}
.y104{bottom:850.560000pt;}
.y18f{bottom:859.211867pt;}
.y1d5{bottom:860.479867pt;}
.y186{bottom:860.547067pt;}
.y132{bottom:860.960000pt;}
.y14b{bottom:868.960000pt;}
.y3b{bottom:869.040000pt;}
.y218{bottom:875.120000pt;}
.y20{bottom:877.040000pt;}
.y103{bottom:878.160000pt;}
.yc2{bottom:878.400000pt;}
.yc7{bottom:878.960000pt;}
.y86{bottom:881.360000pt;}
.y6a{bottom:884.880000pt;}
.y7a{bottom:884.960000pt;}
.y53{bottom:885.040000pt;}
.y4{bottom:885.600000pt;}
.y1d7{bottom:888.173333pt;}
.y190{bottom:892.050000pt;}
.y18a{bottom:894.040400pt;}
.y131{bottom:897.760000pt;}
.y102{bottom:905.760000pt;}
.y3a{bottom:905.840000pt;}
.y192{bottom:907.339867pt;}
.y18e{bottom:907.506667pt;}
.y1b4{bottom:907.980000pt;}
.y217{bottom:909.120000pt;}
.y185{bottom:913.000000pt;}
.y1f{bottom:913.840000pt;}
.yc1{bottom:915.200000pt;}
.y1b3{bottom:915.840000pt;}
.yc6{bottom:917.040000pt;}
.y85{bottom:919.440000pt;}
.y69{bottom:921.680000pt;}
.y79{bottom:921.760000pt;}
.y52{bottom:921.840000pt;}
.y101{bottom:933.360000pt;}
.y3{bottom:933.754800pt;}
.y130{bottom:934.560000pt;}
.y14a{bottom:942.560000pt;}
.y39{bottom:942.640000pt;}
.y216{bottom:942.720000pt;}
.y1e{bottom:950.640000pt;}
.yc5{bottom:954.960000pt;}
.y84{bottom:956.240000pt;}
.y68{bottom:958.480000pt;}
.ydf{bottom:958.560000pt;}
.y51{bottom:958.640000pt;}
.y100{bottom:960.960000pt;}
.y12f{bottom:971.360000pt;}
.y2{bottom:976.720000pt;}
.yff{bottom:979.360000pt;}
.y38{bottom:979.440000pt;}
.y1d{bottom:987.440000pt;}
.y122{bottom:988.560000pt;}
.y83{bottom:993.040000pt;}
.y50{bottom:995.440000pt;}
.y120{bottom:997.200000pt;}
.y37{bottom:1005.840000pt;}
.y12e{bottom:1008.000000pt;}
.y149{bottom:1016.000000pt;}
.y121{bottom:1016.160000pt;}
.y1f7{bottom:1024.160000pt;}
.y1{bottom:1024.240000pt;}
.y82{bottom:1030.960000pt;}
.y1c{bottom:1032.080000pt;}
.y7f{bottom:1032.160000pt;}
.y36{bottom:1032.240000pt;}
.y123{bottom:1034.002000pt;}
.h45{height:-339.366667pt;}
.h41{height:-268.816000pt;}
.h3d{height:-206.065333pt;}
.h39{height:-135.224000pt;}
.h26{height:13.505194pt;}
.h27{height:14.970912pt;}
.h24{height:21.158081pt;}
.h25{height:23.454281pt;}
.h47{height:23.532000pt;}
.hc{height:25.612031pt;}
.h3f{height:25.781333pt;}
.h12{height:29.280000pt;}
.h13{height:29.358667pt;}
.h14{height:29.360000pt;}
.hb{height:31.084687pt;}
.h43{height:31.320000pt;}
.h3b{height:31.492000pt;}
.h7{height:33.918750pt;}
.h36{height:34.224000pt;}
.h10{height:36.798667pt;}
.hf{height:36.800000pt;}
.h11{height:37.120000pt;}
.h5{height:41.770312pt;}
.h29{height:41.979631pt;}
.h2a{height:44.977819pt;}
.h20{height:48.632030pt;}
.h2b{height:49.693150pt;}
.h31{height:49.694531pt;}
.h8{height:54.960938pt;}
.h16{height:55.200000pt;}
.h2e{height:57.600244pt;}
.h1d{height:58.613175pt;}
.h2c{height:61.076250pt;}
.h9{height:62.781250pt;}
.h2{height:62.812500pt;}
.h22{height:63.772950pt;}
.h32{height:63.984375pt;}
.h6{height:64.500000pt;}
.h15{height:65.692500pt;}
.h33{height:66.656250pt;}
.hd{height:66.750000pt;}
.ha{height:69.500938pt;}
.h2f{height:70.317231pt;}
.h28{height:70.465194pt;}
.h4{height:71.210312pt;}
.h1f{height:71.553775pt;}
.h30{height:72.176219pt;}
.h1e{height:73.050644pt;}
.h3{height:75.142500pt;}
.h1a{height:77.763750pt;}
.h23{height:77.852750pt;}
.h38{height:80.874856pt;}
.h35{height:84.774169pt;}
.h19{height:89.111250pt;}
.h18{height:100.125000pt;}
.h48{height:115.099806pt;}
.h44{height:115.100919pt;}
.h3c{height:115.167669pt;}
.h40{height:115.196594pt;}
.h46{height:119.375700pt;}
.h3a{height:119.378481pt;}
.h42{height:119.392944pt;}
.h3e{height:119.424650pt;}
.he{height:136.412500pt;}
.h1b{height:175.989533pt;}
.h37{height:267.374667pt;}
.h2d{height:275.166667pt;}
.h1c{height:280.168000pt;}
.h21{height:289.832000pt;}
.h34{height:365.766667pt;}
.h17{height:960.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:-144.030667pt;}
.w18{width:-143.774667pt;}
.w1a{width:-143.773333pt;}
.w16{width:-143.073333pt;}
.w19{width:30.169333pt;}
.w13{width:30.170667pt;}
.w17{width:30.337333pt;}
.w15{width:31.170667pt;}
.w12{width:32.649333pt;}
.w7{width:48.640000pt;}
.w9{width:48.641333pt;}
.wb{width:48.720000pt;}
.w6{width:52.400000pt;}
.wa{width:53.838667pt;}
.w8{width:55.280000pt;}
.w4{width:127.920000pt;}
.w3{width:128.000000pt;}
.w5{width:128.240000pt;}
.w2{width:156.240000pt;}
.w11{width:186.714667pt;}
.w10{width:417.305333pt;}
.wd{width:517.001333pt;}
.wf{width:521.666667pt;}
.we{width:527.833333pt;}
.wc{width:720.000000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x7b{left:-158.559733pt;}
.x7c{left:-157.606533pt;}
.x0{left:0.000000pt;}
.x16{left:1.040000pt;}
.x78{left:3.060933pt;}
.x61{left:14.696667pt;}
.x7a{left:20.151333pt;}
.x4e{left:21.494667pt;}
.x79{left:22.446933pt;}
.x5e{left:25.539485pt;}
.x58{left:29.029333pt;}
.x4b{left:32.089467pt;}
.x10{left:35.200000pt;}
.x21{left:43.600000pt;}
.x24{left:47.280000pt;}
.x1a{left:49.520000pt;}
.x1e{left:50.880000pt;}
.x14{left:51.840000pt;}
.x5d{left:53.528922pt;}
.x12{left:55.920000pt;}
.x75{left:58.157467pt;}
.x4a{left:69.741067pt;}
.x50{left:72.693333pt;}
.x3b{left:73.611173pt;}
.x15{left:74.560000pt;}
.x4{left:75.600000pt;}
.x49{left:77.333333pt;}
.x81{left:78.880000pt;}
.x84{left:88.080000pt;}
.x2{left:106.880000pt;}
.x85{left:112.400000pt;}
.x76{left:120.396000pt;}
.x34{left:127.907200pt;}
.x5b{left:139.770533pt;}
.x63{left:144.600000pt;}
.x74{left:145.833333pt;}
.x3d{left:151.398000pt;}
.x32{left:157.861467pt;}
.x7{left:163.360000pt;}
.x68{left:165.600000pt;}
.x6c{left:167.946533pt;}
.x39{left:170.427333pt;}
.x69{left:173.093467pt;}
.x7f{left:176.000000pt;}
.x33{left:182.147787pt;}
.x8{left:184.400000pt;}
.x9{left:189.445040pt;}
.xf{left:190.800000pt;}
.x37{left:195.757333pt;}
.x19{left:202.800000pt;}
.xa{left:205.840000pt;}
.x1{left:207.840000pt;}
.x64{left:210.751920pt;}
.x18{left:218.960000pt;}
.x3c{left:220.074667pt;}
.x2e{left:226.320000pt;}
.x17{left:228.960000pt;}
.x54{left:230.628340pt;}
.x38{left:231.582933pt;}
.x53{left:235.213067pt;}
.x67{left:239.266667pt;}
.x55{left:242.065200pt;}
.x36{left:243.273600pt;}
.x3a{left:244.745013pt;}
.x73{left:249.955733pt;}
.xb{left:252.000000pt;}
.x87{left:254.000000pt;}
.x1b{left:255.200000pt;}
.x88{left:257.040000pt;}
.x4f{left:258.254933pt;}
.x51{left:260.645867pt;}
.x89{left:262.320000pt;}
.x5f{left:263.900000pt;}
.x65{left:265.766667pt;}
.x83{left:267.760000pt;}
.x57{left:272.657067pt;}
.x86{left:274.800000pt;}
.x20{left:276.800000pt;}
.x4d{left:278.373067pt;}
.x59{left:280.770800pt;}
.x60{left:282.673200pt;}
.x35{left:285.518000pt;}
.x6d{left:287.778533pt;}
.x3{left:296.728400pt;}
.x56{left:300.982240pt;}
.x77{left:301.940000pt;}
.x2b{left:303.840000pt;}
.x52{left:306.648000pt;}
.x22{left:308.480000pt;}
.x2d{left:310.160000pt;}
.x1c{left:312.160000pt;}
.x48{left:324.266667pt;}
.x3e{left:327.884400pt;}
.x6e{left:334.266533pt;}
.x2f{left:341.104667pt;}
.x11{left:347.040000pt;}
.x7d{left:352.790133pt;}
.x6f{left:356.113333pt;}
.x2c{left:364.880000pt;}
.x82{left:370.080000pt;}
.xc{left:376.960000pt;}
.x6{left:389.840000pt;}
.x5{left:393.360000pt;}
.x5a{left:394.433333pt;}
.x66{left:396.933333pt;}
.x23{left:417.280000pt;}
.x45{left:429.579173pt;}
.x6b{left:450.223067pt;}
.x40{left:453.086133pt;}
.x6a{left:456.938000pt;}
.x70{left:463.020000pt;}
.x26{left:465.920000pt;}
.x25{left:469.840000pt;}
.x13{left:475.040000pt;}
.x41{left:481.437573pt;}
.xd{left:482.960000pt;}
.x31{left:495.267200pt;}
.x71{left:499.853333pt;}
.x44{left:505.145733pt;}
.x27{left:519.760000pt;}
.xe{left:521.120000pt;}
.x4c{left:525.006133pt;}
.x30{left:526.443200pt;}
.x72{left:528.366667pt;}
.x5c{left:536.266667pt;}
.x43{left:542.427067pt;}
.x3f{left:546.785333pt;}
.x62{left:548.433333pt;}
.x1d{left:568.480000pt;}
.x28{left:573.040000pt;}
.x46{left:608.895973pt;}
.x2a{left:623.760000pt;}
.x29{left:624.720000pt;}
.x1f{left:628.720000pt;}
.x47{left:653.182400pt;}
.x42{left:660.965600pt;}
.x7e{left:686.960000pt;}
.x80{left:696.160000pt;}
}




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