
    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_23c5560437852c5d6324a2ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_3ec799256572fe85654bc770.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_f5e70ea9c2382e92d1b8b6a5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.925781;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_063a58911524d811844baa8b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.740723;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_10cbec4c3c92ccfffdaa1806.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_49f6c8f2951605702a706c46.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_5401af3dc5ee4e96321a7ad3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_7b942d1c5376fd4bfa5f4f35.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bd30663c0e27e02d044a4e11.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f21a7e0701eaa43ede5ebe82.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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_93be059ca71862d1fa35fbd2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_ad7b4e564682000716afd348.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_e334c742a94a34e31142a4fa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_b97f4b11fd3cb9bd8f6cc260.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.878906;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_0cfd6a88a4c0556df85c14d6.woff2')format("woff");}.fff{font-family:fff;line-height:0.893066;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_7a7e18e7c97c199b6f65eeda.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893555;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_06b523cc5bc3c5099a78df87.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.886230;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_a95b0be41f12e6c7cb77f4f6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;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_04ab339bc247ba717fc013a7.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.810000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_bb7333cdc8e6a8c97848768d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_639ab742d0a14f8e084ef36f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_7ce3fe85dcdd2e3b191a502d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.886230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_432375cde089c868a6a25448.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_f4bcaa78a87b18d31d01367a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_399e7cb688ed7a9e5d9770d9.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.886230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_a95b0be41f12e6c7cb77f4f6.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_432375cde089c868a6a25448.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_adae713a10e2be8696362e7f.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_3c34f8d4161885d3c70acc54.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_6ef8d03003c00f021edd05fb.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_7c276757f366c4b297eb3b97.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_7556afd5f9cd9beaa41b7e0f.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_380a1035fcda83063a86deda.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.938477;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;}
.m6{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);}
.m5{transform:matrix(0.085035,-0.235094,0.235094,0.085035,0,0);-ms-transform:matrix(0.085035,-0.235094,0.235094,0.085035,0,0);-webkit-transform:matrix(0.085035,-0.235094,0.235094,0.085035,0,0);}
.m4{transform:matrix(0.179285,-0.174232,0.174232,0.179285,0,0);-ms-transform:matrix(0.179285,-0.174232,0.174232,0.179285,0,0);-webkit-transform:matrix(0.179285,-0.174232,0.174232,0.179285,0,0);}
.m3{transform:matrix(0.224108,0.110795,-0.110795,0.224108,0,0);-ms-transform:matrix(0.224108,0.110795,-0.110795,0.224108,0,0);-webkit-transform:matrix(0.224108,0.110795,-0.110795,0.224108,0,0);}
.m2{transform:matrix(0.247122,-0.037824,0.037824,0.247122,0,0);-ms-transform:matrix(0.247122,-0.037824,0.037824,0.247122,0,0);-webkit-transform:matrix(0.247122,-0.037824,0.037824,0.247122,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.v4{vertical-align:-73.809494px;}
.vd{vertical-align:-40.230514px;}
.v2{vertical-align:-21.701400px;}
.v3{vertical-align:-18.811800px;}
.vb{vertical-align:-2.940000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:1.620000px;}
.vc{vertical-align:2.940000px;}
.v1{vertical-align:30.381600px;}
.v7{vertical-align:41.923903px;}
.v5{vertical-align:66.867454px;}
.va{vertical-align:69.804000px;}
.v8{vertical-align:94.036017px;}
.v9{vertical-align:140.761261px;}
.v6{vertical-align:157.624507px;}
.ls12{letter-spacing:-0.780000px;}
.ls78{letter-spacing:-0.720000px;}
.ls31{letter-spacing:-0.591690px;}
.ls75{letter-spacing:-0.540000px;}
.ls5e{letter-spacing:-0.512404px;}
.ls90{letter-spacing:-0.432000px;}
.ls30{letter-spacing:-0.420000px;}
.ls62{letter-spacing:-0.401701px;}
.ls5f{letter-spacing:-0.360000px;}
.ls6f{letter-spacing:-0.300000px;}
.ls40{letter-spacing:-0.240000px;}
.ls14{letter-spacing:-0.225000px;}
.ls91{letter-spacing:-0.192000px;}
.ls5b{letter-spacing:-0.180000px;}
.ls6e{letter-spacing:-0.145397px;}
.ls13{letter-spacing:-0.120000px;}
.ls9b{letter-spacing:-0.096000px;}
.ls5d{letter-spacing:-0.070633px;}
.ls3e{letter-spacing:-0.060000px;}
.ls6a{letter-spacing:-0.048445px;}
.ls8f{letter-spacing:-0.048000px;}
.ls11{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.003828px;}
.ls0{letter-spacing:0.004140px;}
.ls8e{letter-spacing:0.048000px;}
.lsd{letter-spacing:0.060000px;}
.ls74{letter-spacing:0.070466px;}
.ls61{letter-spacing:0.096000px;}
.ls4b{letter-spacing:0.120000px;}
.ls71{letter-spacing:0.140933px;}
.ls4d{letter-spacing:0.144000px;}
.ls6d{letter-spacing:0.145397px;}
.ls72{letter-spacing:0.176166px;}
.ls3c{letter-spacing:0.180000px;}
.ls7d{letter-spacing:0.192000px;}
.ls32{letter-spacing:0.196454px;}
.ls73{letter-spacing:0.211399px;}
.ls1c{letter-spacing:0.234423px;}
.ls15{letter-spacing:0.240000px;}
.ls68{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.300000px;}
.ls98{letter-spacing:0.336000px;}
.ls76{letter-spacing:0.360000px;}
.ls88{letter-spacing:0.384000px;}
.ls2e{letter-spacing:0.413629px;}
.ls3b{letter-spacing:0.420000px;}
.ls77{letter-spacing:0.432000px;}
.ls33{letter-spacing:0.480000px;}
.ls65{letter-spacing:0.508889px;}
.ls7b{letter-spacing:0.528000px;}
.ls22{letter-spacing:0.528204px;}
.ls69{letter-spacing:0.532897px;}
.ls3d{letter-spacing:0.540000px;}
.ls6b{letter-spacing:0.581342px;}
.ls58{letter-spacing:0.600000px;}
.ls8c{letter-spacing:0.624000px;}
.ls6c{letter-spacing:0.629788px;}
.ls2d{letter-spacing:0.649988px;}
.ls10{letter-spacing:0.660000px;}
.ls7c{letter-spacing:0.672000px;}
.lsb{letter-spacing:0.720000px;}
.ls93{letter-spacing:0.768000px;}
.ls3{letter-spacing:0.780000px;}
.ls86{letter-spacing:0.816000px;}
.lsa{letter-spacing:0.840000px;}
.ls81{letter-spacing:0.864000px;}
.ls21{letter-spacing:0.880340px;}
.ls16{letter-spacing:0.900000px;}
.ls1e{letter-spacing:0.937693px;}
.ls25{letter-spacing:0.939029px;}
.ls38{letter-spacing:0.960000px;}
.ls2c{letter-spacing:0.960770px;}
.ls20{letter-spacing:0.961854px;}
.ls1f{letter-spacing:0.976951px;}
.ls1d{letter-spacing:0.996299px;}
.ls94{letter-spacing:1.008000px;}
.ls44{letter-spacing:1.020000px;}
.ls9a{letter-spacing:1.056000px;}
.lse{letter-spacing:1.080000px;}
.ls99{letter-spacing:1.104000px;}
.ls8{letter-spacing:1.140000px;}
.ls80{letter-spacing:1.152000px;}
.ls49{letter-spacing:1.200000px;}
.ls85{letter-spacing:1.248000px;}
.lsc{letter-spacing:1.260000px;}
.ls23{letter-spacing:1.291165px;}
.ls1b{letter-spacing:1.296000px;}
.ls3f{letter-spacing:1.320000px;}
.ls82{letter-spacing:1.344000px;}
.ls9{letter-spacing:1.380000px;}
.ls83{letter-spacing:1.392000px;}
.ls35{letter-spacing:1.440000px;}
.ls18{letter-spacing:1.500000px;}
.ls8d{letter-spacing:1.536000px;}
.ls55{letter-spacing:1.560000px;}
.ls89{letter-spacing:1.584000px;}
.ls4{letter-spacing:1.620000px;}
.ls5{letter-spacing:1.680000px;}
.ls87{letter-spacing:1.728000px;}
.ls1a{letter-spacing:1.740000px;}
.ls8a{letter-spacing:1.776000px;}
.ls52{letter-spacing:1.800000px;}
.ls95{letter-spacing:1.824000px;}
.ls36{letter-spacing:1.860000px;}
.ls39{letter-spacing:1.920000px;}
.ls97{letter-spacing:1.968000px;}
.ls7{letter-spacing:1.980000px;}
.ls54{letter-spacing:2.040000px;}
.ls8b{letter-spacing:2.064000px;}
.ls66{letter-spacing:2.100000px;}
.ls50{letter-spacing:2.160000px;}
.ls7e{letter-spacing:2.208000px;}
.ls5a{letter-spacing:2.220000px;}
.ls45{letter-spacing:2.280000px;}
.ls96{letter-spacing:2.304000px;}
.ls34{letter-spacing:2.340000px;}
.ls7a{letter-spacing:2.400000px;}
.ls84{letter-spacing:2.448000px;}
.ls2{letter-spacing:2.460000px;}
.ls3a{letter-spacing:2.520000px;}
.ls46{letter-spacing:2.640000px;}
.ls17{letter-spacing:2.700000px;}
.ls60{letter-spacing:2.760000px;}
.ls19{letter-spacing:2.820000px;}
.lsf{letter-spacing:2.940000px;}
.ls7f{letter-spacing:2.976000px;}
.ls63{letter-spacing:3.000000px;}
.ls70{letter-spacing:3.120000px;}
.ls37{letter-spacing:3.240000px;}
.ls92{letter-spacing:3.312000px;}
.ls51{letter-spacing:3.360000px;}
.ls56{letter-spacing:3.420000px;}
.ls4c{letter-spacing:3.480000px;}
.ls4f{letter-spacing:3.540000px;}
.ls57{letter-spacing:3.600000px;}
.ls47{letter-spacing:3.660000px;}
.ls5c{letter-spacing:3.780000px;}
.ls4a{letter-spacing:3.840000px;}
.ls59{letter-spacing:4.020000px;}
.ls53{letter-spacing:4.320000px;}
.ls48{letter-spacing:4.800000px;}
.ls79{letter-spacing:4.920000px;}
.ls42{letter-spacing:5.940000px;}
.ls67{letter-spacing:6.120000px;}
.ls43{letter-spacing:6.300000px;}
.ls64{letter-spacing:10.125047px;}
.ls41{letter-spacing:10.320000px;}
.ls4e{letter-spacing:10.500000px;}
.ls24{letter-spacing:13.322478px;}
.ls27{letter-spacing:18.268516px;}
.ls28{letter-spacing:25.060657px;}
.ls2a{letter-spacing:44.734444px;}
.ls29{letter-spacing:50.706844px;}
.ls2f{letter-spacing:85.930685px;}
.ls26{letter-spacing:162.682150px;}
.ls2b{letter-spacing:193.576010px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4c{word-spacing:-60.000000px;}
.ws3c{word-spacing:-19.800000px;}
.ws4a{word-spacing:-19.320000px;}
.wsdf{word-spacing:-18.480000px;}
.ws4b{word-spacing:-17.040000px;}
.ws4{word-spacing:-16.980000px;}
.ws2{word-spacing:-16.680000px;}
.wsab{word-spacing:-16.620000px;}
.wsd2{word-spacing:-16.500000px;}
.ws28{word-spacing:-16.260000px;}
.wsa8{word-spacing:-16.200000px;}
.wsa9{word-spacing:-16.140000px;}
.ws5{word-spacing:-16.080000px;}
.ws27{word-spacing:-15.960000px;}
.wsaa{word-spacing:-15.900000px;}
.ws8a{word-spacing:-15.780000px;}
.wsd3{word-spacing:-15.720000px;}
.ws8c{word-spacing:-15.600000px;}
.ws3e{word-spacing:-15.180000px;}
.ws8b{word-spacing:-15.120000px;}
.ws89{word-spacing:-15.060000px;}
.ws6{word-spacing:-15.000000px;}
.ws3d{word-spacing:-14.880000px;}
.wse1{word-spacing:-13.776000px;}
.wsf9{word-spacing:-13.392000px;}
.ws7{word-spacing:-13.344000px;}
.wsfb{word-spacing:-13.248000px;}
.wsfe{word-spacing:-13.104000px;}
.wsfa{word-spacing:-12.960000px;}
.wsac{word-spacing:-12.288000px;}
.ws3{word-spacing:-12.285000px;}
.wsfc{word-spacing:-12.240000px;}
.wsfd{word-spacing:-12.096000px;}
.wsd5{word-spacing:-12.000000px;}
.wse0{word-spacing:-11.952000px;}
.ws42{word-spacing:-10.500000px;}
.ws0{word-spacing:-10.210662px;}
.wsd9{word-spacing:-3.420000px;}
.wsff{word-spacing:-3.312000px;}
.wse7{word-spacing:-2.976000px;}
.ws9{word-spacing:-2.886000px;}
.ws94{word-spacing:-2.760000px;}
.ws4e{word-spacing:-2.700000px;}
.wsd1{word-spacing:-2.640000px;}
.ws102{word-spacing:-2.304000px;}
.wsf1{word-spacing:-2.208000px;}
.ws4f{word-spacing:-2.160000px;}
.ws51{word-spacing:-2.040000px;}
.ws52{word-spacing:-1.980000px;}
.wsc9{word-spacing:-1.800000px;}
.ws23{word-spacing:-1.740000px;}
.wsd{word-spacing:-1.680000px;}
.wsb7{word-spacing:-1.620000px;}
.wsda{word-spacing:-1.500000px;}
.ws62{word-spacing:-1.440000px;}
.wsea{word-spacing:-1.392000px;}
.ws4d{word-spacing:-1.380000px;}
.ws50{word-spacing:-1.260000px;}
.wsec{word-spacing:-1.248000px;}
.ws2f{word-spacing:-1.140000px;}
.ws12{word-spacing:-1.080000px;}
.ws86{word-spacing:-0.960000px;}
.ws85{word-spacing:-0.900000px;}
.wsd6{word-spacing:-0.840000px;}
.wsed{word-spacing:-0.816000px;}
.ws73{word-spacing:-0.780000px;}
.ws54{word-spacing:-0.660000px;}
.wsb0{word-spacing:-0.629788px;}
.ws101{word-spacing:-0.624000px;}
.ws77{word-spacing:-0.600000px;}
.wsaf{word-spacing:-0.581342px;}
.ws84{word-spacing:-0.540000px;}
.wsad{word-spacing:-0.532897px;}
.ws95{word-spacing:-0.420000px;}
.ws105{word-spacing:-0.384000px;}
.wsdb{word-spacing:-0.360000px;}
.ws21{word-spacing:-0.300000px;}
.wscc{word-spacing:-0.288000px;}
.wsf5{word-spacing:-0.240000px;}
.wsc7{word-spacing:-0.211399px;}
.ws26{word-spacing:-0.196454px;}
.wse9{word-spacing:-0.192000px;}
.ws57{word-spacing:-0.180000px;}
.wsc6{word-spacing:-0.176166px;}
.wsb1{word-spacing:-0.145397px;}
.ws106{word-spacing:-0.144000px;}
.wsc5{word-spacing:-0.140933px;}
.ws93{word-spacing:-0.120000px;}
.ws19{word-spacing:-0.118338px;}
.ws20{word-spacing:-0.098227px;}
.ws87{word-spacing:-0.096000px;}
.ws16{word-spacing:-0.084044px;}
.ws15{word-spacing:-0.079280px;}
.wsc8{word-spacing:-0.070466px;}
.ws3f{word-spacing:-0.069500px;}
.ws82{word-spacing:-0.067649px;}
.ws33{word-spacing:-0.060000px;}
.ws1a{word-spacing:-0.059114px;}
.ws1f{word-spacing:-0.059090px;}
.ws17{word-spacing:-0.058689px;}
.ws13{word-spacing:-0.049640px;}
.wsa0{word-spacing:-0.048445px;}
.ws40{word-spacing:-0.047696px;}
.ws6d{word-spacing:-0.046582px;}
.ws65{word-spacing:-0.046252px;}
.ws81{word-spacing:-0.044633px;}
.ws79{word-spacing:-0.044252px;}
.ws9c{word-spacing:-0.040706px;}
.wsbe{word-spacing:-0.035233px;}
.ws8{word-spacing:0.000000px;}
.wsae{word-spacing:0.048445px;}
.ws99{word-spacing:0.060000px;}
.ws71{word-spacing:0.070633px;}
.ws2e{word-spacing:0.120000px;}
.wsb2{word-spacing:0.145397px;}
.ws5c{word-spacing:0.180000px;}
.wsf8{word-spacing:0.192000px;}
.wsa{word-spacing:0.225000px;}
.ws32{word-spacing:0.240000px;}
.wsb5{word-spacing:0.300000px;}
.ws83{word-spacing:0.401701px;}
.wsdd{word-spacing:0.420000px;}
.ws72{word-spacing:0.512404px;}
.wsca{word-spacing:0.540000px;}
.ws107{word-spacing:0.576000px;}
.ws25{word-spacing:0.591690px;}
.ws5a{word-spacing:0.600000px;}
.wsf7{word-spacing:0.624000px;}
.ws103{word-spacing:0.672000px;}
.wscb{word-spacing:0.720000px;}
.ws47{word-spacing:0.780000px;}
.ws2c{word-spacing:0.840000px;}
.ws44{word-spacing:0.900000px;}
.wse8{word-spacing:0.912000px;}
.ws56{word-spacing:0.960000px;}
.ws9a{word-spacing:1.020000px;}
.ws88{word-spacing:1.056000px;}
.wsc{word-spacing:1.080000px;}
.wse5{word-spacing:1.140000px;}
.ws45{word-spacing:1.200000px;}
.wsd0{word-spacing:1.260000px;}
.ws24{word-spacing:1.296000px;}
.wsde{word-spacing:1.320000px;}
.wsb3{word-spacing:1.380000px;}
.ws78{word-spacing:1.488000px;}
.ws46{word-spacing:1.560000px;}
.ws75{word-spacing:1.680000px;}
.ws31{word-spacing:1.740000px;}
.wsee{word-spacing:1.776000px;}
.ws8f{word-spacing:1.860000px;}
.wsf6{word-spacing:1.872000px;}
.ws96{word-spacing:1.920000px;}
.wsf3{word-spacing:2.016000px;}
.wsd8{word-spacing:2.160000px;}
.wsf0{word-spacing:2.256000px;}
.wsd7{word-spacing:2.280000px;}
.ws8d{word-spacing:2.400000px;}
.ws5f{word-spacing:2.520000px;}
.ws92{word-spacing:2.580000px;}
.wse2{word-spacing:2.640000px;}
.wsb9{word-spacing:2.688000px;}
.ws60{word-spacing:2.760000px;}
.ws2d{word-spacing:2.820000px;}
.wsef{word-spacing:2.832000px;}
.ws61{word-spacing:2.880000px;}
.ws43{word-spacing:2.940000px;}
.ws11{word-spacing:3.060000px;}
.wsf2{word-spacing:3.168000px;}
.ws8e{word-spacing:3.180000px;}
.wsdc{word-spacing:3.240000px;}
.wse6{word-spacing:3.264000px;}
.wsf4{word-spacing:3.312000px;}
.wsf{word-spacing:3.360000px;}
.ws100{word-spacing:3.408000px;}
.ws90{word-spacing:3.420000px;}
.ws10{word-spacing:3.540000px;}
.ws104{word-spacing:3.552000px;}
.wseb{word-spacing:3.600000px;}
.wsb4{word-spacing:3.660000px;}
.ws30{word-spacing:3.780000px;}
.ws49{word-spacing:3.792000px;}
.ws5b{word-spacing:3.840000px;}
.ws91{word-spacing:3.900000px;}
.ws48{word-spacing:3.936000px;}
.ws97{word-spacing:3.960000px;}
.ws9b{word-spacing:3.984000px;}
.ws74{word-spacing:4.080000px;}
.ws76{word-spacing:4.140000px;}
.ws58{word-spacing:4.200000px;}
.ws98{word-spacing:4.260000px;}
.wsb6{word-spacing:4.320000px;}
.ws55{word-spacing:4.380000px;}
.ws59{word-spacing:4.440000px;}
.ws5e{word-spacing:4.500000px;}
.ws64{word-spacing:4.560000px;}
.ws5d{word-spacing:4.680000px;}
.ws22{word-spacing:4.740000px;}
.ws53{word-spacing:4.800000px;}
.ws63{word-spacing:4.860000px;}
.wse{word-spacing:4.920000px;}
.wsb{word-spacing:4.980000px;}
.wse3{word-spacing:5.460000px;}
.wse4{word-spacing:5.520000px;}
.wsb8{word-spacing:6.960000px;}
.wsba{word-spacing:8.174102px;}
.wsbf{word-spacing:8.209336px;}
.wsbc{word-spacing:8.279802px;}
.wsc0{word-spacing:8.949233px;}
.wsbd{word-spacing:9.019699px;}
.wsbb{word-spacing:9.054932px;}
.wsc1{word-spacing:9.090166px;}
.ws9d{word-spacing:10.076602px;}
.ws9e{word-spacing:10.657944px;}
.ws9f{word-spacing:10.803280px;}
.wsa5{word-spacing:11.854951px;}
.wsa6{word-spacing:12.079689px;}
.ws7f{word-spacing:12.631252px;}
.ws1c{word-spacing:13.064150px;}
.wsa4{word-spacing:13.371935px;}
.wsa7{word-spacing:13.428119px;}
.ws7e{word-spacing:13.523920px;}
.ws1b{word-spacing:13.537060px;}
.ws14{word-spacing:13.537948px;}
.ws6c{word-spacing:13.881496px;}
.ws6e{word-spacing:14.021242px;}
.ws7d{word-spacing:14.544621px;}
.ws6a{word-spacing:14.691581px;}
.ws70{word-spacing:14.762213px;}
.ws6b{word-spacing:14.832846px;}
.ws6f{word-spacing:15.468539px;}
.ws80{word-spacing:15.532423px;}
.wsc2{word-spacing:17.324280px;}
.wsc3{word-spacing:18.126330px;}
.wsa1{word-spacing:19.846663px;}
.wsa2{word-spacing:20.282854px;}
.ws1d{word-spacing:22.263198px;}
.ws1e{word-spacing:22.884084px;}
.wsc4{word-spacing:24.178700px;}
.ws18{word-spacing:29.347824px;}
.ws1{word-spacing:49.321428px;}
.ws35{word-spacing:91.395000px;}
.ws2b{word-spacing:102.645000px;}
.ws34{word-spacing:103.500000px;}
.ws37{word-spacing:112.635000px;}
.ws2a{word-spacing:113.895000px;}
.ws29{word-spacing:123.390000px;}
.ws36{word-spacing:123.885000px;}
.ws3a{word-spacing:130.140000px;}
.ws38{word-spacing:136.395000px;}
.ws3b{word-spacing:138.915000px;}
.ws67{word-spacing:139.217316px;}
.ws66{word-spacing:139.263568px;}
.ws7a{word-spacing:170.634941px;}
.ws7b{word-spacing:178.934411px;}
.wsce{word-spacing:183.120000px;}
.wscd{word-spacing:276.672000px;}
.wscf{word-spacing:298.656000px;}
.ws39{word-spacing:867.645000px;}
.wsd4{word-spacing:1009.296000px;}
.ws7c{word-spacing:1392.408000px;}
.ws68{word-spacing:1402.560000px;}
.ws69{word-spacing:1419.120000px;}
.ws41{word-spacing:1445.040000px;}
.wsa3{word-spacing:2033.494222px;}
._a{margin-left:-2898.096000px;}
._28{margin-left:-2874.288000px;}
._4c{margin-left:-1787.640473px;}
._46{margin-left:-11.196000px;}
._2{margin-left:-9.368400px;}
._6{margin-left:-7.485000px;}
._4a{margin-left:-6.480000px;}
._1{margin-left:-5.376000px;}
._5{margin-left:-3.699000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.197000px;}
._9{width:1.680000px;}
._4b{width:3.037663px;}
._48{width:4.260000px;}
._8{width:5.280000px;}
._7{width:6.840000px;}
._49{width:7.980000px;}
._47{width:10.028400px;}
._50{width:11.190841px;}
._4f{width:14.826256px;}
._4d{width:16.881191px;}
._3f{width:27.135000px;}
._43{width:47.115000px;}
._3{width:60.204042px;}
._51{width:74.268000px;}
._27{width:100.665000px;}
._30{width:102.645000px;}
._2f{width:103.905000px;}
._2e{width:107.640000px;}
._23{width:113.895000px;}
._22{width:115.155000px;}
._29{width:116.610000px;}
._3c{width:118.035000px;}
._20{width:119.745000px;}
._3d{width:123.885000px;}
._18{width:125.145000px;}
._11{width:126.405000px;}
._c{width:129.600000px;}
._37{width:130.845000px;}
._36{width:131.961000px;}
._33{width:135.135000px;}
._26{width:136.395000px;}
._2b{width:137.655000px;}
._42{width:139.545000px;}
._1b{width:141.390000px;}
._5f{width:145.683000px;}
._16{width:147.645000px;}
._10{width:148.905000px;}
._60{width:151.440000px;}
._40{width:155.451000px;}
._1d{width:158.400000px;}
._13{width:159.975000px;}
._45{width:172.665000px;}
._4e{width:180.370046px;}
._55{width:191.616000px;}
._1a{width:202.635000px;}
._3a{width:207.237000px;}
._34{width:210.534000px;}
._56{width:212.112000px;}
._25{width:222.660000px;}
._2c{width:230.715000px;}
._f{width:233.910000px;}
._e{width:238.635000px;}
._35{width:241.764000px;}
._57{width:254.640000px;}
._44{width:257.040000px;}
._24{width:260.640000px;}
._32{width:264.264000px;}
._5d{width:268.368000px;}
._52{width:273.696000px;}
._5a{width:276.672000px;}
._3b{width:279.414000px;}
._41{width:286.965000px;}
._58{width:288.672000px;}
._54{width:291.744000px;}
._2a{width:295.650000px;}
._1f{width:308.160000px;}
._5c{width:310.656000px;}
._3e{width:313.209000px;}
._64{width:317.712000px;}
._39{width:323.517000px;}
._1e{width:330.495000px;}
._38{width:331.929000px;}
._62{width:336.384000px;}
._21{width:338.220000px;}
._61{width:340.416000px;}
._63{width:341.712000px;}
._59{width:343.680000px;}
._2d{width:345.435000px;}
._5b{width:366.471000px;}
._14{width:404.055000px;}
._d{width:460.593000px;}
._17{width:472.815000px;}
._15{width:474.030000px;}
._12{width:489.429000px;}
._31{width:491.199000px;}
._1c{width:541.944000px;}
._19{width:559.035000px;}
._b{width:639.450000px;}
._5e{width:692.352000px;}
._65{width:770.736000px;}
._66{width:793.107000px;}
._53{width:1288.608000px;}
.fc6{color:rgb(153,0,0);}
.fc7{color:rgb(51,153,51);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,102,0);}
.fc2{color:rgb(255,0,0);}
.fc8{color:rgb(128,128,128);}
.fc5{color:rgb(95,95,95);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:22.737000px;}
.fs5{font-size:26.235000px;}
.fs23{font-size:35.233200px;}
.fs4{font-size:36.729000px;}
.fs8{font-size:39.000000px;}
.fs1f{font-size:40.706400px;}
.fs0{font-size:42.000000px;}
.fs1c{font-size:44.251800px;}
.fs1e{font-size:44.633400px;}
.fs6{font-size:45.000000px;}
.fs19{font-size:46.251600px;}
.fs1b{font-size:46.582200px;}
.fs17{font-size:47.696400px;}
.fsa{font-size:48.000000px;}
.fs20{font-size:48.445200px;}
.fsb{font-size:49.639800px;}
.fs22{font-size:56.184600px;}
.fsc{font-size:58.605837px;}
.fsf{font-size:58.689330px;}
.fs14{font-size:59.089837px;}
.fs12{font-size:59.113800px;}
.fs9{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1d{font-size:67.649400px;}
.fs16{font-size:69.499800px;}
.fs1a{font-size:70.632600px;}
.fs18{font-size:72.000000px;}
.fs21{font-size:72.698400px;}
.fs1{font-size:78.000000px;}
.fsd{font-size:79.279800px;}
.fs24{font-size:80.205000px;}
.fse{font-size:84.044400px;}
.fs13{font-size:88.698000px;}
.fs15{font-size:98.227200px;}
.fs25{font-size:106.985400px;}
.fs11{font-size:117.105874px;}
.fs10{font-size:118.338000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y189{bottom:2.462400px;}
.y1{bottom:46.264950px;}
.y2d{bottom:47.777250px;}
.y282{bottom:80.121900px;}
.y2c3{bottom:80.263500px;}
.y122{bottom:83.770350px;}
.y1a1{bottom:84.008400px;}
.y19b{bottom:84.019200px;}
.y207{bottom:84.020100px;}
.y107{bottom:84.405300px;}
.y37{bottom:84.484500px;}
.y1d{bottom:88.029450px;}
.yb3{bottom:89.601600px;}
.yb6{bottom:89.612850px;}
.y17f{bottom:89.961150px;}
.y241{bottom:90.075900px;}
.yfd{bottom:91.776600px;}
.y281{bottom:95.121900px;}
.y2c2{bottom:95.263500px;}
.y259{bottom:96.855450px;}
.y1a0{bottom:99.752400px;}
.y19a{bottom:99.763200px;}
.y206{bottom:99.764100px;}
.y106{bottom:100.149300px;}
.y36{bottom:100.228500px;}
.y121{bottom:101.770350px;}
.y14b{bottom:101.771100px;}
.y1c{bottom:103.023000px;}
.yb2{bottom:104.597850px;}
.yb5{bottom:104.609100px;}
.y17e{bottom:105.705150px;}
.y240{bottom:106.575900px;}
.y280{bottom:110.121900px;}
.y2c1{bottom:110.263500px;}
.y19f{bottom:115.496400px;}
.y199{bottom:115.507200px;}
.y105{bottom:115.893300px;}
.y35{bottom:115.972500px;}
.yfc{bottom:117.174450px;}
.yb1{bottom:119.594100px;}
.yb4{bottom:119.605350px;}
.y120{bottom:119.770350px;}
.y14a{bottom:119.771100px;}
.y17d{bottom:121.449150px;}
.y258{bottom:122.367450px;}
.y27f{bottom:125.121900px;}
.y2c0{bottom:125.263500px;}
.y23f{bottom:132.087900px;}
.yfb{bottom:132.676950px;}
.yb0{bottom:135.096600px;}
.y11f{bottom:137.770350px;}
.y149{bottom:137.771100px;}
.y257{bottom:138.867450px;}
.y54{bottom:139.932000px;}
.y27e{bottom:140.121900px;}
.y2bf{bottom:140.263500px;}
.y1f1{bottom:144.326100px;}
.yfa{bottom:148.179450px;}
.y23e{bottom:148.403400px;}
.y1da{bottom:149.414466px;}
.y1c2{bottom:150.488390px;}
.yaf{bottom:150.599100px;}
.y159{bottom:151.698266px;}
.y43{bottom:153.893400px;}
.y256{bottom:155.115450px;}
.y27d{bottom:155.121900px;}
.y2be{bottom:155.263500px;}
.y11e{bottom:155.770350px;}
.y148{bottom:155.771100px;}
.y3c{bottom:156.878075px;}
.y1ea{bottom:157.310550px;}
.yf9{bottom:163.681950px;}
.y1bf{bottom:164.561721px;}
.y23d{bottom:164.651400px;}
.yae{bottom:166.101600px;}
.y27c{bottom:170.121900px;}
.y2bd{bottom:170.263500px;}
.y1d9{bottom:170.806753px;}
.y255{bottom:171.615450px;}
.y11d{bottom:173.770350px;}
.y147{bottom:173.771100px;}
.y3b{bottom:174.661534px;}
.y1ed{bottom:174.941640px;}
.y28{bottom:176.252850px;}
.y1c9{bottom:178.283824px;}
.yf8{bottom:179.184450px;}
.y155{bottom:179.859144px;}
.y23c{bottom:180.899400px;}
.yad{bottom:181.604100px;}
.y1cb{bottom:182.133623px;}
.y27b{bottom:185.121900px;}
.y2bc{bottom:185.263500px;}
.y1ec{bottom:185.511600px;}
.y254{bottom:187.863450px;}
.y3a{bottom:191.104717px;}
.y11c{bottom:191.770350px;}
.y146{bottom:191.771100px;}
.y1bd{bottom:192.371770px;}
.y3f{bottom:193.772857px;}
.y151{bottom:194.116200px;}
.yf7{bottom:194.180700px;}
.y27{bottom:194.252850px;}
.y66{bottom:196.769850px;}
.ya9{bottom:197.095350px;}
.yac{bottom:197.106600px;}
.y23b{bottom:197.147400px;}
.y1ef{bottom:198.072750px;}
.y27a{bottom:200.121900px;}
.y2bb{bottom:200.263500px;}
.y1e1{bottom:200.580000px;}
.y253{bottom:204.363450px;}
.y1c5{bottom:206.430485px;}
.y39{bottom:208.391778px;}
.yf6{bottom:209.683200px;}
.y11b{bottom:209.770350px;}
.y145{bottom:209.771100px;}
.y3e{bottom:211.059917px;}
.ya8{bottom:212.091600px;}
.yab{bottom:212.102850px;}
.y26{bottom:212.252850px;}
.y23a{bottom:213.395400px;}
.y279{bottom:215.121900px;}
.y2ba{bottom:215.263500px;}
.y1a4{bottom:220.324650px;}
.y252{bottom:220.611450px;}
.y44{bottom:220.687687px;}
.y1eb{bottom:223.635750px;}
.y3d{bottom:225.182440px;}
.yf5{bottom:225.185700px;}
.y38{bottom:225.194850px;}
.ya7{bottom:227.087850px;}
.yaa{bottom:227.099100px;}
.y11a{bottom:227.770350px;}
.y144{bottom:227.771100px;}
.y239{bottom:229.643400px;}
.y278{bottom:230.121900px;}
.y25{bottom:230.252850px;}
.y2b9{bottom:230.263500px;}
.y1e0{bottom:230.744100px;}
.y63{bottom:232.661100px;}
.y1ad{bottom:234.228422px;}
.y251{bottom:237.111450px;}
.yf4{bottom:240.688200px;}
.y1d4{bottom:241.910971px;}
.y1e9{bottom:242.300700px;}
.ya6{bottom:242.590350px;}
.y277{bottom:245.121900px;}
.y2b8{bottom:245.263500px;}
.y119{bottom:245.770350px;}
.y143{bottom:245.771100px;}
.y238{bottom:245.891400px;}
.y24{bottom:248.252850px;}
.y1ae{bottom:248.289642px;}
.y1d1{bottom:252.525165px;}
.y250{bottom:253.359450px;}
.yf0{bottom:256.179450px;}
.yf3{bottom:256.190700px;}
.ya5{bottom:258.092850px;}
.y165{bottom:259.347608px;}
.y276{bottom:260.121900px;}
.y2b7{bottom:260.263500px;}
.y237{bottom:262.139400px;}
.y1ac{bottom:262.205525px;}
.y118{bottom:263.770350px;}
.y142{bottom:263.771100px;}
.y164{bottom:264.291890px;}
.y1ee{bottom:264.431550px;}
.y23{bottom:266.252850px;}
.y152{bottom:266.650272px;}
.y1df{bottom:267.687450px;}
.y24f{bottom:269.859450px;}
.yef{bottom:271.175700px;}
.yf2{bottom:271.186950px;}
.y1ca{bottom:272.623950px;}
.ya4{bottom:273.089100px;}
.y275{bottom:275.121900px;}
.y2b6{bottom:275.263500px;}
.y1aa{bottom:276.266745px;}
.y236{bottom:278.387400px;}
.y1ce{bottom:279.391389px;}
.y117{bottom:281.770350px;}
.y141{bottom:281.771100px;}
.y22{bottom:284.252850px;}
.y24e{bottom:286.107450px;}
.yee{bottom:286.169400px;}
.yf1{bottom:286.183200px;}
.ya3{bottom:288.591600px;}
.y1a9{bottom:289.976736px;}
.y274{bottom:290.121900px;}
.y2b5{bottom:290.263500px;}
.y235{bottom:294.635400px;}
.y1e8{bottom:296.063400px;}
.y116{bottom:299.770350px;}
.y140{bottom:299.771100px;}
.yed{bottom:301.671900px;}
.y21{bottom:302.252850px;}
.y24d{bottom:302.607450px;}
.y41{bottom:302.979150px;}
.ya2{bottom:303.587850px;}
.y1b1{bottom:304.074290px;}
.y273{bottom:305.121900px;}
.y2b4{bottom:305.263500px;}
.y45{bottom:307.484550px;}
.y234{bottom:310.883400px;}
.y102{bottom:313.119900px;}
.y1f0{bottom:315.151800px;}
.y1d8{bottom:315.580421px;}
.yec{bottom:317.174400px;}
.y62{bottom:317.273250px;}
.y115{bottom:317.770350px;}
.y13f{bottom:317.771100px;}
.y1b8{bottom:318.135509px;}
.ya1{bottom:319.090350px;}
.y272{bottom:320.121900px;}
.y204{bottom:320.225764px;}
.y20{bottom:320.252850px;}
.y2b3{bottom:320.263500px;}
.y1cc{bottom:325.644036px;}
.y1de{bottom:325.990350px;}
.y24c{bottom:331.611450px;}
.y1ab{bottom:332.039281px;}
.yeb{bottom:332.676900px;}
.ya0{bottom:334.592850px;}
.y271{bottom:335.121900px;}
.y2b2{bottom:335.263500px;}
.y114{bottom:335.770350px;}
.y13e{bottom:335.771100px;}
.y1f{bottom:338.252850px;}
.y153{bottom:339.415601px;}
.y233{bottom:339.887400px;}
.y1d0{bottom:339.911629px;}
.y1c3{bottom:345.746769px;}
.y24b{bottom:348.111450px;}
.yea{bottom:348.179400px;}
.y5d{bottom:348.339450px;}
.y1e7{bottom:349.843650px;}
.y9f{bottom:350.095350px;}
.y270{bottom:350.121900px;}
.y2b1{bottom:350.263500px;}
.y50{bottom:351.014692px;}
.y113{bottom:353.770350px;}
.y13d{bottom:353.771100px;}
.y232{bottom:356.135400px;}
.y2a{bottom:356.252850px;}
.y1c1{bottom:359.807988px;}
.y1f5{bottom:362.422350px;}
.ye9{bottom:363.681900px;}
.y26f{bottom:365.121900px;}
.y2b0{bottom:365.263500px;}
.y9e{bottom:365.597850px;}
.y15e{bottom:366.175388px;}
.y112{bottom:371.770350px;}
.y13c{bottom:371.771100px;}
.y202{bottom:372.142950px;}
.y231{bottom:372.383400px;}
.y1e{bottom:373.847850px;}
.y1c8{bottom:373.905541px;}
.y29{bottom:374.252850px;}
.y24a{bottom:377.115450px;}
.ye8{bottom:379.184400px;}
.y26e{bottom:380.121900px;}
.y2af{bottom:380.263500px;}
.y9d{bottom:381.100350px;}
.y15f{bottom:382.211310px;}
.y1f3{bottom:387.781650px;}
.y1b0{bottom:387.799706px;}
.y230{bottom:388.631400px;}
.y111{bottom:389.770350px;}
.y13b{bottom:389.771100px;}
.ye7{bottom:394.686900px;}
.y26d{bottom:395.121900px;}
.y2ae{bottom:395.263500px;}
.y15d{bottom:396.500400px;}
.y9c{bottom:396.602850px;}
.yff{bottom:397.414500px;}
.y65{bottom:399.876750px;}
.y5e{bottom:401.040000px;}
.y1a6{bottom:401.509698px;}
.y1fa{bottom:401.763600px;}
.y22f{bottom:404.879400px;}
.y13a{bottom:407.036100px;}
.y110{bottom:407.770350px;}
.y249{bottom:409.510350px;}
.y26c{bottom:410.121900px;}
.ye6{bottom:410.189400px;}
.y2ad{bottom:410.263500px;}
.y154{bottom:412.169368px;}
.y1f2{bottom:412.938900px;}
.y1be{bottom:415.568413px;}
.y1dd{bottom:416.847300px;}
.y5c{bottom:420.491975px;}
.y22e{bottom:421.127400px;}
.y99{bottom:425.234100px;}
.y2ac{bottom:425.263500px;}
.ye5{bottom:425.691900px;}
.y10f{bottom:425.770350px;}
.y139{bottom:425.771100px;}
.y4a{bottom:427.955738px;}
.y248{bottom:429.010350px;}
.y1ba{bottom:429.656359px;}
.y96{bottom:432.726600px;}
.y9b{bottom:432.737850px;}
.y1f7{bottom:433.430550px;}
.y22d{bottom:437.438550px;}
.y103{bottom:437.518950px;}
.y5b{bottom:438.270450px;}
.y95{bottom:440.219100px;}
.y98{bottom:440.230350px;}
.y2ab{bottom:440.265900px;}
.y157{bottom:441.161400px;}
.ye4{bottom:441.194400px;}
.y26b{bottom:443.232600px;}
.y1af{bottom:443.535909px;}
.y10e{bottom:443.770350px;}
.y138{bottom:443.771100px;}
.y1cf{bottom:446.653987px;}
.y100{bottom:447.658650px;}
.y9a{bottom:447.734100px;}
.y247{bottom:448.510350px;}
.y1b{bottom:450.364200px;}
.y1fe{bottom:452.905175px;}
.y22c{bottom:453.686550px;}
.y1dc{bottom:454.339950px;}
.y49{bottom:454.891050px;}
.y97{bottom:455.226600px;}
.y2ec{bottom:455.263500px;}
.y2aa{bottom:455.265900px;}
.y4d{bottom:456.060427px;}
.ye3{bottom:456.696900px;}
.y1b4{bottom:457.451793px;}
.y10d{bottom:461.770350px;}
.y137{bottom:461.771100px;}
.y1fd{bottom:463.862700px;}
.y1d3{bottom:465.124516px;}
.y198{bottom:465.835200px;}
.y1e6{bottom:466.703100px;}
.y101{bottom:466.719150px;}
.y246{bottom:468.010350px;}
.y22b{bottom:469.934550px;}
.y2eb{bottom:470.263500px;}
.y2a9{bottom:470.265900px;}
.y1bc{bottom:471.343454px;}
.ye2{bottom:472.199400px;}
.y1fc{bottom:475.001316px;}
.y1a{bottom:477.709200px;}
.y68{bottom:479.157150px;}
.y10c{bottom:479.770350px;}
.y136{bottom:479.771100px;}
.y197{bottom:481.579200px;}
.y1d2{bottom:482.322970px;}
.y2ea{bottom:485.263500px;}
.y2a8{bottom:485.265900px;}
.y1b5{bottom:485.404673px;}
.y1fb{bottom:485.756250px;}
.y22a{bottom:486.182550px;}
.y94{bottom:486.985350px;}
.ye1{bottom:487.701900px;}
.y1d7{bottom:489.977419px;}
.y158{bottom:491.176200px;}
.y19{bottom:495.709200px;}
.y200{bottom:497.317140px;}
.y196{bottom:497.323200px;}
.y10b{bottom:497.770350px;}
.y135{bottom:497.771100px;}
.y26a{bottom:497.772600px;}
.y1b6{bottom:499.308446px;}
.y1db{bottom:500.210100px;}
.y2e9{bottom:500.263500px;}
.y2a7{bottom:500.265900px;}
.y229{bottom:502.430550px;}
.ye0{bottom:503.204400px;}
.y1f6{bottom:504.827100px;}
.y93{bottom:506.485350px;}
.y1ff{bottom:507.887100px;}
.y48{bottom:510.409841px;}
.y1c0{bottom:513.197603px;}
.y18{bottom:513.709200px;}
.y2e8{bottom:515.263500px;}
.y2a6{bottom:515.265900px;}
.y150{bottom:515.356644px;}
.y269{bottom:515.367600px;}
.y245{bottom:515.635350px;}
.y10a{bottom:515.770350px;}
.y134{bottom:515.771100px;}
.ydf{bottom:518.706900px;}
.y4b{bottom:525.033853px;}
.y18c{bottom:525.898800px;}
.y1a5{bottom:527.285549px;}
.y14c{bottom:529.613700px;}
.y1f4{bottom:529.984350px;}
.y2e7{bottom:530.263500px;}
.y2a5{bottom:530.265900px;}
.y18d{bottom:530.482047px;}
.y228{bottom:531.434550px;}
.y17{bottom:531.709200px;}
.y244{bottom:533.635350px;}
.y109{bottom:533.770350px;}
.y133{bottom:533.771100px;}
.yde{bottom:534.209400px;}
.y40{bottom:534.989100px;}
.y1a7{bottom:541.177210px;}
.y47{bottom:542.479439px;}
.yfe{bottom:545.190600px;}
.y2e6{bottom:545.263500px;}
.y2a4{bottom:545.265900px;}
.y6a{bottom:545.639250px;}
.y227{bottom:547.682550px;}
.y18a{bottom:548.406150px;}
.y16{bottom:549.709200px;}
.ydd{bottom:549.711900px;}
.y185{bottom:549.949999px;}
.y268{bottom:551.367600px;}
.y7e{bottom:551.635350px;}
.y92{bottom:551.770350px;}
.y132{bottom:551.771100px;}
.y1c7{bottom:555.235925px;}
.y201{bottom:556.374900px;}
.y2e5{bottom:560.263500px;}
.y2a3{bottom:560.265900px;}
.y4f{bottom:560.749403px;}
.y1e5{bottom:561.649800px;}
.y186{bottom:562.521450px;}
.y181{bottom:563.491050px;}
.y226{bottom:563.930550px;}
.ydc{bottom:564.708150px;}
.y15{bottom:567.709200px;}
.y1b3{bottom:568.948420px;}
.y7d{bottom:569.635350px;}
.y91{bottom:569.770350px;}
.y131{bottom:569.771100px;}
.y1f9{bottom:571.168350px;}
.y69{bottom:572.875318px;}
.y46{bottom:574.046100px;}
.y1cd{bottom:574.075195px;}
.y2e4{bottom:575.263500px;}
.y2a2{bottom:575.265900px;}
.y104{bottom:577.426050px;}
.y225{bottom:580.178550px;}
.ydb{bottom:580.210650px;}
.y1b9{bottom:583.045974px;}
.y1a3{bottom:585.415650px;}
.y14{bottom:585.709200px;}
.y7c{bottom:587.635350px;}
.y90{bottom:587.770350px;}
.y130{bottom:587.771100px;}
.y267{bottom:587.772600px;}
.y2e3{bottom:590.263500px;}
.y2a1{bottom:590.265900px;}
.y203{bottom:595.108350px;}
.yda{bottom:595.206900px;}
.y224{bottom:596.426550px;}
.y1c6{bottom:597.116800px;}
.y163{bottom:599.602500px;}
.y14d{bottom:602.182460px;}
.y1e4{bottom:602.614200px;}
.y13{bottom:603.709200px;}
.y2e2{bottom:605.263500px;}
.y2a0{bottom:605.265900px;}
.y7b{bottom:605.635350px;}
.y8f{bottom:605.770350px;}
.y12f{bottom:605.771100px;}
.y266{bottom:605.772600px;}
.yd9{bottom:610.758000px;}
.y1b7{bottom:611.010965px;}
.y4c{bottom:611.627215px;}
.y1d6{bottom:611.744078px;}
.y223{bottom:612.674550px;}
.y67{bottom:616.941150px;}
.y2e1{bottom:620.263500px;}
.y29f{bottom:620.265900px;}
.y12{bottom:621.709200px;}
.y265{bottom:623.367600px;}
.y7a{bottom:623.635350px;}
.y8e{bottom:623.770350px;}
.y12e{bottom:623.771100px;}
.y1a8{bottom:625.072185px;}
.yd8{bottom:626.260500px;}
.y222{bottom:628.922550px;}
.y182{bottom:633.110194px;}
.y1d5{bottom:633.480900px;}
.y2e0{bottom:635.263500px;}
.y29e{bottom:635.265900px;}
.y195{bottom:638.442653px;}
.y1c4{bottom:638.779672px;}
.y11{bottom:639.709200px;}
.y194{bottom:640.150800px;}
.yd7{bottom:641.256750px;}
.y79{bottom:641.635350px;}
.y8d{bottom:641.770350px;}
.y12d{bottom:641.771100px;}
.y221{bottom:645.170550px;}
.y2df{bottom:650.263500px;}
.y29d{bottom:650.265900px;}
.y1b2{bottom:652.879729px;}
.y205{bottom:654.753900px;}
.yd6{bottom:656.759250px;}
.y10{bottom:657.709200px;}
.y4e{bottom:658.659956px;}
.y78{bottom:659.635350px;}
.y8c{bottom:659.770350px;}
.y12c{bottom:659.771100px;}
.y264{bottom:659.772600px;}
.y220{bottom:661.418550px;}
.y60{bottom:664.627950px;}
.y2de{bottom:665.263500px;}
.y29c{bottom:665.265900px;}
.y1bb{bottom:666.759279px;}
.y187{bottom:668.593015px;}
.yd5{bottom:671.755500px;}
.y1f8{bottom:672.203100px;}
.y14e{bottom:674.913101px;}
.yf{bottom:675.709200px;}
.y5f{bottom:676.761300px;}
.y263{bottom:677.367600px;}
.y77{bottom:677.635350px;}
.y21f{bottom:677.666550px;}
.y8b{bottom:677.770350px;}
.y12b{bottom:677.771100px;}
.y2dd{bottom:680.263500px;}
.y29b{bottom:680.265900px;}
.y52{bottom:686.479050px;}
.yd4{bottom:687.258000px;}
.y64{bottom:693.063150px;}
.y21e{bottom:693.914550px;}
.y2dc{bottom:695.263500px;}
.y29a{bottom:695.265900px;}
.y1e3{bottom:695.551200px;}
.y76{bottom:695.635350px;}
.y8a{bottom:695.770350px;}
.y12a{bottom:695.771100px;}
.y15b{bottom:698.303888px;}
.y183{bottom:702.729339px;}
.yd3{bottom:702.760500px;}
.y161{bottom:705.450733px;}
.y2db{bottom:710.263500px;}
.y299{bottom:710.265900px;}
.y75{bottom:713.635350px;}
.y89{bottom:713.770350px;}
.y129{bottom:713.771100px;}
.y262{bottom:713.772600px;}
.y15c{bottom:714.363101px;}
.yd2{bottom:718.263000px;}
.y58{bottom:719.234400px;}
.ye{bottom:720.867300px;}
.y162{bottom:721.486656px;}
.y21d{bottom:722.918550px;}
.y55{bottom:725.218200px;}
.y2da{bottom:725.263500px;}
.y298{bottom:725.265900px;}
.y15a{bottom:728.628900px;}
.y74{bottom:731.635350px;}
.y88{bottom:731.770350px;}
.y128{bottom:731.771100px;}
.y261{bottom:731.772600px;}
.yd{bottom:733.318050px;}
.yd1{bottom:733.765500px;}
.y56{bottom:734.346600px;}
.y160{bottom:735.764100px;}
.y21c{bottom:739.418550px;}
.y2d9{bottom:740.263500px;}
.y297{bottom:740.265900px;}
.y51{bottom:745.411877px;}
.y14f{bottom:747.655305px;}
.yd0{bottom:749.268000px;}
.y73{bottom:749.635350px;}
.yc{bottom:749.721000px;}
.y87{bottom:749.770350px;}
.y127{bottom:749.771100px;}
.y260{bottom:749.772600px;}
.y2d8{bottom:755.263500px;}
.y296{bottom:755.265900px;}
.ycf{bottom:764.770500px;}
.y72{bottom:767.635350px;}
.y86{bottom:767.770350px;}
.y126{bottom:767.771100px;}
.y25f{bottom:767.772600px;}
.y2d7{bottom:770.263500px;}
.y295{bottom:770.265900px;}
.y42{bottom:771.502948px;}
.y21b{bottom:771.820350px;}
.y188{bottom:772.161000px;}
.y184{bottom:772.337420px;}
.y156{bottom:776.501400px;}
.y59{bottom:780.219600px;}
.yce{bottom:780.273000px;}
.yb{bottom:782.158950px;}
.y2d6{bottom:785.263500px;}
.y294{bottom:785.265900px;}
.y19e{bottom:785.365350px;}
.y71{bottom:785.635350px;}
.y85{bottom:785.770350px;}
.y125{bottom:785.771100px;}
.y25e{bottom:785.772600px;}
.ya{bottom:790.233600px;}
.yca{bottom:795.764250px;}
.ycd{bottom:795.775500px;}
.y18b{bottom:796.943250px;}
.y2d5{bottom:800.263500px;}
.y293{bottom:800.265900px;}
.y243{bottom:803.230350px;}
.y70{bottom:803.635350px;}
.y9{bottom:803.733600px;}
.y84{bottom:803.770350px;}
.y124{bottom:803.771100px;}
.y25d{bottom:803.772600px;}
.y53{bottom:808.292301px;}
.yc9{bottom:810.760500px;}
.y57{bottom:810.771572px;}
.ycc{bottom:810.771750px;}
.y2d4{bottom:815.263500px;}
.y292{bottom:815.265900px;}
.y6b{bottom:816.503700px;}
.y61{bottom:816.706200px;}
.y19d{bottom:821.230350px;}
.y6f{bottom:821.635350px;}
.y83{bottom:821.770350px;}
.y123{bottom:821.771100px;}
.y25c{bottom:821.772600px;}
.y21a{bottom:821.785350px;}
.y170{bottom:821.907600px;}
.y20d{bottom:821.920350px;}
.y8{bottom:822.658950px;}
.yc8{bottom:825.756750px;}
.ycb{bottom:825.768000px;}
.y18f{bottom:829.170577px;}
.y2d3{bottom:830.263500px;}
.y291{bottom:830.265900px;}
.y25b{bottom:839.367600px;}
.y82{bottom:839.770350px;}
.y17c{bottom:839.772600px;}
.y219{bottom:839.785350px;}
.y16f{bottom:839.907600px;}
.y20c{bottom:839.920350px;}
.y193{bottom:841.187400px;}
.yc6{bottom:841.259250px;}
.y2d2{bottom:845.263500px;}
.y290{bottom:845.265900px;}
.y7{bottom:851.380950px;}
.y192{bottom:853.219650px;}
.yc5{bottom:856.255500px;}
.y5a{bottom:856.941450px;}
.y6e{bottom:857.230350px;}
.y81{bottom:857.770350px;}
.y17b{bottom:857.772600px;}
.y218{bottom:857.785350px;}
.y16e{bottom:857.907600px;}
.y20b{bottom:857.920350px;}
.y2d1{bottom:860.263500px;}
.y28f{bottom:860.265900px;}
.y190{bottom:865.223206px;}
.yc4{bottom:871.251750px;}
.y2d0{bottom:875.263500px;}
.y28e{bottom:875.265900px;}
.y80{bottom:875.770350px;}
.y17a{bottom:875.772600px;}
.y217{bottom:875.785350px;}
.y16d{bottom:875.907600px;}
.y191{bottom:877.253250px;}
.yc3{bottom:886.248000px;}
.yc7{bottom:886.259250px;}
.y18e{bottom:889.269450px;}
.y2cf{bottom:890.263500px;}
.y28d{bottom:890.265900px;}
.y20a{bottom:893.515350px;}
.y7f{bottom:893.770350px;}
.y179{bottom:893.772600px;}
.y216{bottom:893.785350px;}
.y16c{bottom:893.907600px;}
.y6{bottom:897.543600px;}
.yc2{bottom:901.750500px;}
.y2ce{bottom:905.263500px;}
.y28c{bottom:905.265900px;}
.y209{bottom:911.515350px;}
.y6d{bottom:911.770350px;}
.y178{bottom:911.772600px;}
.y215{bottom:911.785350px;}
.y16b{bottom:911.907600px;}
.yc1{bottom:917.253000px;}
.y2cd{bottom:920.263500px;}
.y28b{bottom:920.265900px;}
.y34{bottom:929.770350px;}
.y177{bottom:929.772600px;}
.y214{bottom:929.785350px;}
.y16a{bottom:929.907600px;}
.yc0{bottom:932.755500px;}
.y5{bottom:934.004400px;}
.y2cc{bottom:935.263500px;}
.y28a{bottom:935.265900px;}
.y33{bottom:947.770350px;}
.y176{bottom:947.772600px;}
.y213{bottom:947.785350px;}
.y169{bottom:947.907600px;}
.ybf{bottom:948.258000px;}
.y2cb{bottom:950.263500px;}
.y289{bottom:950.265900px;}
.y2ca{bottom:965.263500px;}
.y288{bottom:965.265900px;}
.y32{bottom:965.770350px;}
.y175{bottom:965.772600px;}
.y212{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.ybc{bottom:976.135500px;}
.y2c9{bottom:980.263500px;}
.y287{bottom:980.265900px;}
.y168{bottom:983.502600px;}
.yb9{bottom:983.628000px;}
.ybe{bottom:983.639250px;}
.y31{bottom:983.770350px;}
.y174{bottom:983.772600px;}
.y211{bottom:983.785350px;}
.yb8{bottom:991.120500px;}
.ybb{bottom:991.131750px;}
.y2c8{bottom:995.263500px;}
.y286{bottom:995.265900px;}
.ybd{bottom:998.635500px;}
.y167{bottom:1001.502600px;}
.y30{bottom:1001.770350px;}
.y173{bottom:1001.772600px;}
.y210{bottom:1001.785350px;}
.yba{bottom:1006.128000px;}
.y3{bottom:1006.926000px;}
.y2c7{bottom:1010.263500px;}
.y285{bottom:1010.265900px;}
.y2f{bottom:1019.770350px;}
.y172{bottom:1019.772600px;}
.y20f{bottom:1019.785350px;}
.y2c6{bottom:1025.263500px;}
.y284{bottom:1025.265900px;}
.y1e2{bottom:1037.365350px;}
.y166{bottom:1037.367600px;}
.y2e{bottom:1037.770350px;}
.y171{bottom:1037.772600px;}
.y20e{bottom:1037.785350px;}
.y2c5{bottom:1040.263500px;}
.y283{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y6c{bottom:1132.415700px;}
.yb7{bottom:1132.418700px;}
.y242{bottom:1132.419900px;}
.y2c4{bottom:1132.423500px;}
.y208{bottom:1132.424100px;}
.y180{bottom:1132.425150px;}
.y108{bottom:1132.425300px;}
.y1a2{bottom:1132.436400px;}
.y25a{bottom:1132.443450px;}
.y19c{bottom:1132.447200px;}
.y2c{bottom:1136.092500px;}
.y2b{bottom:1150.492500px;}
.h33{height:12.192000px;}
.h8{height:16.564260px;}
.h6{height:19.125417px;}
.h3b{height:25.650733px;}
.h9{height:28.412109px;}
.h37{height:29.635372px;}
.h2{height:30.597656px;}
.h27{height:31.245117px;}
.h26{height:31.267090px;}
.h28{height:31.277290px;}
.h34{height:31.762767px;}
.h32{height:32.238128px;}
.h36{height:32.537923px;}
.he{height:32.783203px;}
.h7{height:32.805176px;}
.hd{height:32.815976px;}
.h13{height:33.351562px;}
.h2f{height:33.695013px;}
.h31{height:33.958606px;}
.h2a{height:34.235209px;}
.h12{height:34.968750px;}
.h11{height:34.992188px;}
.h38{height:35.269430px;}
.h14{height:36.163370px;}
.h3a{height:40.903925px;}
.h10{height:41.689453px;}
.h18{height:42.727437px;}
.h22{height:43.019017px;}
.h20{height:43.036463px;}
.h15{height:43.194104px;}
.hf{height:43.681641px;}
.hb{height:43.710938px;}
.hc{height:43.717434px;}
.ha{height:43.740234px;}
.h2c{height:44.100000px;}
.h2d{height:44.103000px;}
.h2e{height:47.040000px;}
.h35{height:48.556942px;}
.h29{height:49.885110px;}
.h30{height:50.698204px;}
.h2b{height:52.417969px;}
.h39{height:52.926423px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h16{height:57.717862px;}
.h3c{height:58.391433px;}
.h21{height:60.070374px;}
.h25{height:61.282090px;}
.h17{height:62.376703px;}
.h23{height:71.512088px;}
.h3d{height:77.888297px;}
.h19{height:80.143948px;}
.h1a{height:80.201730px;}
.h1e{height:85.256279px;}
.h4{height:92.168262px;}
.h1c{height:127.180182px;}
.h24{height:127.521862px;}
.h1f{height:226.017540px;}
.h1b{height:242.880786px;}
.h1d{height:753.741000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w3{width:15.436500px;}
.w2{width:628.408500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x4c{left:78.661350px;}
.x71{left:89.849250px;}
.x6f{left:92.519700px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x3b{left:99.921300px;}
.x6b{left:102.630000px;}
.x4{left:106.299150px;}
.x66{left:108.713550px;}
.x64{left:110.555400px;}
.x7e{left:111.621269px;}
.x22{left:119.719500px;}
.x90{left:120.922500px;}
.x5f{left:122.445750px;}
.x6c{left:123.992556px;}
.x3{left:125.427900px;}
.x2c{left:127.198950px;}
.x28{left:130.190850px;}
.x6{left:131.816400px;}
.x65{left:142.227687px;}
.x35{left:145.108500px;}
.x56{left:146.678850px;}
.x83{left:150.011400px;}
.x29{left:151.471818px;}
.x8f{left:152.554350px;}
.x23{left:160.231050px;}
.x38{left:165.985350px;}
.x32{left:168.338550px;}
.x73{left:170.683950px;}
.x63{left:177.035250px;}
.x2a{left:181.063500px;}
.x9f{left:185.077350px;}
.xb3{left:194.285400px;}
.x1a{left:205.491744px;}
.xa1{left:207.635700px;}
.xa0{left:208.859700px;}
.x5{left:212.876400px;}
.x20{left:217.304250px;}
.x1b{left:220.594546px;}
.x18{left:222.933300px;}
.x6a{left:232.365300px;}
.x27{left:236.252100px;}
.x1c{left:240.374856px;}
.x19{left:242.218111px;}
.x21{left:243.889874px;}
.x97{left:255.157350px;}
.x26{left:257.807700px;}
.x34{left:262.502827px;}
.x33{left:266.991750px;}
.xa2{left:278.939700px;}
.xae{left:294.371700px;}
.x15{left:297.213000px;}
.xad{left:299.867700px;}
.x98{left:302.329350px;}
.x24{left:309.880800px;}
.x7d{left:311.416289px;}
.x99{left:318.937350px;}
.x25{left:329.627244px;}
.x11{left:330.679350px;}
.x8e{left:332.526450px;}
.x82{left:337.591950px;}
.x1d{left:345.063832px;}
.x14{left:350.094450px;}
.x4d{left:359.045100px;}
.x86{left:364.378050px;}
.x9a{left:366.109350px;}
.xaa{left:367.415700px;}
.x2e{left:370.191000px;}
.x3c{left:380.305050px;}
.x78{left:383.079906px;}
.xa9{left:384.911700px;}
.x2b{left:386.493000px;}
.x2f{left:390.800250px;}
.x70{left:400.008000px;}
.x50{left:404.495100px;}
.x4e{left:406.992600px;}
.x4f{left:413.596350px;}
.x8d{left:415.098300px;}
.x87{left:418.142250px;}
.x5b{left:420.896700px;}
.x3f{left:425.755050px;}
.x3d{left:428.252550px;}
.x3e{left:434.856300px;}
.x48{left:442.202550px;}
.xaf{left:443.951700px;}
.x9b{left:450.745350px;}
.x81{left:453.310950px;}
.x9{left:455.041500px;}
.xb{left:457.085400px;}
.xa6{left:461.447700px;}
.x72{left:463.341587px;}
.x76{left:465.357717px;}
.x85{left:471.701250px;}
.x84{left:474.931350px;}
.x6d{left:476.099250px;}
.x39{left:478.345350px;}
.x7{left:480.476400px;}
.x17{left:482.886733px;}
.x93{left:484.887900px;}
.x16{left:487.531500px;}
.x79{left:488.580718px;}
.xc{left:491.105400px;}
.x6e{left:497.843400px;}
.x51{left:499.838850px;}
.x75{left:501.026700px;}
.x7c{left:502.105420px;}
.xb5{left:503.851050px;}
.x3a{left:512.380350px;}
.x5c{left:514.057950px;}
.x5e{left:516.870750px;}
.x40{left:521.098800px;}
.x2d{left:526.603650px;}
.x9c{left:528.409350px;}
.xa7{left:532.487700px;}
.x7b{left:536.838155px;}
.x49{left:538.176300px;}
.x41{left:541.866300px;}
.x7a{left:544.317956px;}
.x77{left:547.818707px;}
.x69{left:549.969900px;}
.x52{left:571.906350px;}
.x57{left:577.216350px;}
.x58{left:578.780100px;}
.x89{left:580.023600px;}
.x92{left:583.066050px;}
.x9d{left:588.181350px;}
.xf{left:592.229072px;}
.x53{left:595.013850px;}
.x8a{left:597.895641px;}
.xe{left:599.066954px;}
.x46{left:600.073800px;}
.x30{left:603.377550px;}
.xac{left:609.251700px;}
.x8b{left:610.877550px;}
.xd{left:612.531750px;}
.xab{left:614.519700px;}
.x13{left:615.525173px;}
.x74{left:617.842200px;}
.x31{left:619.332600px;}
.x1e{left:625.793604px;}
.x68{left:634.801464px;}
.x60{left:638.830200px;}
.x67{left:643.312692px;}
.x12{left:648.584850px;}
.x94{left:652.063050px;}
.x62{left:654.208200px;}
.x10{left:655.681146px;}
.x59{left:657.271350px;}
.x95{left:658.339091px;}
.x5d{left:661.309500px;}
.x37{left:663.492300px;}
.x8c{left:664.640250px;}
.x54{left:668.487600px;}
.x42{left:669.913800px;}
.xb2{left:673.571700px;}
.xa3{left:677.891700px;}
.x1f{left:681.983162px;}
.xa8{left:685.787700px;}
.x61{left:687.498150px;}
.x43{left:689.747550px;}
.xb1{left:691.067700px;}
.x2{left:693.365400px;}
.x9e{left:698.557350px;}
.x80{left:701.723682px;}
.x91{left:708.852150px;}
.x55{left:720.721350px;}
.xb4{left:721.734450px;}
.x5a{left:726.053850px;}
.x36{left:728.392500px;}
.x88{left:730.983000px;}
.x44{left:741.981300px;}
.x96{left:743.863350px;}
.x4a{left:747.336300px;}
.x4b{left:748.900050px;}
.x7f{left:752.388145px;}
.xa5{left:754.427700px;}
.xa4{left:759.851700px;}
.x45{left:764.155050px;}
.x47{left:768.272550px;}
.xb0{left:772.103700px;}
@media print{
.v4{vertical-align:-65.608439pt;}
.vd{vertical-align:-35.760457pt;}
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-16.721600pt;}
.vb{vertical-align:-2.613333pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:1.440000pt;}
.vc{vertical-align:2.613333pt;}
.v1{vertical-align:27.005867pt;}
.v7{vertical-align:37.265692pt;}
.v5{vertical-align:59.437737pt;}
.va{vertical-align:62.048000pt;}
.v8{vertical-align:83.587571pt;}
.v9{vertical-align:125.121121pt;}
.v6{vertical-align:140.110673pt;}
.ls12{letter-spacing:-0.693333pt;}
.ls78{letter-spacing:-0.640000pt;}
.ls31{letter-spacing:-0.525947pt;}
.ls75{letter-spacing:-0.480000pt;}
.ls5e{letter-spacing:-0.455470pt;}
.ls90{letter-spacing:-0.384000pt;}
.ls30{letter-spacing:-0.373333pt;}
.ls62{letter-spacing:-0.357067pt;}
.ls5f{letter-spacing:-0.320000pt;}
.ls6f{letter-spacing:-0.266667pt;}
.ls40{letter-spacing:-0.213333pt;}
.ls14{letter-spacing:-0.200000pt;}
.ls91{letter-spacing:-0.170667pt;}
.ls5b{letter-spacing:-0.160000pt;}
.ls6e{letter-spacing:-0.129242pt;}
.ls13{letter-spacing:-0.106667pt;}
.ls9b{letter-spacing:-0.085333pt;}
.ls5d{letter-spacing:-0.062785pt;}
.ls3e{letter-spacing:-0.053333pt;}
.ls6a{letter-spacing:-0.043062pt;}
.ls8f{letter-spacing:-0.042667pt;}
.ls11{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003403pt;}
.ls0{letter-spacing:0.003680pt;}
.ls8e{letter-spacing:0.042667pt;}
.lsd{letter-spacing:0.053333pt;}
.ls74{letter-spacing:0.062637pt;}
.ls61{letter-spacing:0.085333pt;}
.ls4b{letter-spacing:0.106667pt;}
.ls71{letter-spacing:0.125274pt;}
.ls4d{letter-spacing:0.128000pt;}
.ls6d{letter-spacing:0.129242pt;}
.ls72{letter-spacing:0.156592pt;}
.ls3c{letter-spacing:0.160000pt;}
.ls7d{letter-spacing:0.170667pt;}
.ls32{letter-spacing:0.174626pt;}
.ls73{letter-spacing:0.187910pt;}
.ls1c{letter-spacing:0.208376pt;}
.ls15{letter-spacing:0.213333pt;}
.ls68{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.266667pt;}
.ls98{letter-spacing:0.298667pt;}
.ls76{letter-spacing:0.320000pt;}
.ls88{letter-spacing:0.341333pt;}
.ls2e{letter-spacing:0.367670pt;}
.ls3b{letter-spacing:0.373333pt;}
.ls77{letter-spacing:0.384000pt;}
.ls33{letter-spacing:0.426667pt;}
.ls65{letter-spacing:0.452346pt;}
.ls7b{letter-spacing:0.469333pt;}
.ls22{letter-spacing:0.469515pt;}
.ls69{letter-spacing:0.473686pt;}
.ls3d{letter-spacing:0.480000pt;}
.ls6b{letter-spacing:0.516749pt;}
.ls58{letter-spacing:0.533333pt;}
.ls8c{letter-spacing:0.554667pt;}
.ls6c{letter-spacing:0.559811pt;}
.ls2d{letter-spacing:0.577767pt;}
.ls10{letter-spacing:0.586667pt;}
.ls7c{letter-spacing:0.597333pt;}
.lsb{letter-spacing:0.640000pt;}
.ls93{letter-spacing:0.682667pt;}
.ls3{letter-spacing:0.693333pt;}
.ls86{letter-spacing:0.725333pt;}
.lsa{letter-spacing:0.746667pt;}
.ls81{letter-spacing:0.768000pt;}
.ls21{letter-spacing:0.782524pt;}
.ls16{letter-spacing:0.800000pt;}
.ls1e{letter-spacing:0.833505pt;}
.ls25{letter-spacing:0.834693pt;}
.ls38{letter-spacing:0.853333pt;}
.ls2c{letter-spacing:0.854018pt;}
.ls20{letter-spacing:0.854981pt;}
.ls1f{letter-spacing:0.868401pt;}
.ls1d{letter-spacing:0.885599pt;}
.ls94{letter-spacing:0.896000pt;}
.ls44{letter-spacing:0.906667pt;}
.ls9a{letter-spacing:0.938667pt;}
.lse{letter-spacing:0.960000pt;}
.ls99{letter-spacing:0.981333pt;}
.ls8{letter-spacing:1.013333pt;}
.ls80{letter-spacing:1.024000pt;}
.ls49{letter-spacing:1.066667pt;}
.ls85{letter-spacing:1.109333pt;}
.lsc{letter-spacing:1.120000pt;}
.ls23{letter-spacing:1.147702pt;}
.ls1b{letter-spacing:1.152000pt;}
.ls3f{letter-spacing:1.173333pt;}
.ls82{letter-spacing:1.194667pt;}
.ls9{letter-spacing:1.226667pt;}
.ls83{letter-spacing:1.237333pt;}
.ls35{letter-spacing:1.280000pt;}
.ls18{letter-spacing:1.333333pt;}
.ls8d{letter-spacing:1.365333pt;}
.ls55{letter-spacing:1.386667pt;}
.ls89{letter-spacing:1.408000pt;}
.ls4{letter-spacing:1.440000pt;}
.ls5{letter-spacing:1.493333pt;}
.ls87{letter-spacing:1.536000pt;}
.ls1a{letter-spacing:1.546667pt;}
.ls8a{letter-spacing:1.578667pt;}
.ls52{letter-spacing:1.600000pt;}
.ls95{letter-spacing:1.621333pt;}
.ls36{letter-spacing:1.653333pt;}
.ls39{letter-spacing:1.706667pt;}
.ls97{letter-spacing:1.749333pt;}
.ls7{letter-spacing:1.760000pt;}
.ls54{letter-spacing:1.813333pt;}
.ls8b{letter-spacing:1.834667pt;}
.ls66{letter-spacing:1.866667pt;}
.ls50{letter-spacing:1.920000pt;}
.ls7e{letter-spacing:1.962667pt;}
.ls5a{letter-spacing:1.973333pt;}
.ls45{letter-spacing:2.026667pt;}
.ls96{letter-spacing:2.048000pt;}
.ls34{letter-spacing:2.080000pt;}
.ls7a{letter-spacing:2.133333pt;}
.ls84{letter-spacing:2.176000pt;}
.ls2{letter-spacing:2.186667pt;}
.ls3a{letter-spacing:2.240000pt;}
.ls46{letter-spacing:2.346667pt;}
.ls17{letter-spacing:2.400000pt;}
.ls60{letter-spacing:2.453333pt;}
.ls19{letter-spacing:2.506667pt;}
.lsf{letter-spacing:2.613333pt;}
.ls7f{letter-spacing:2.645333pt;}
.ls63{letter-spacing:2.666667pt;}
.ls70{letter-spacing:2.773333pt;}
.ls37{letter-spacing:2.880000pt;}
.ls92{letter-spacing:2.944000pt;}
.ls51{letter-spacing:2.986667pt;}
.ls56{letter-spacing:3.040000pt;}
.ls4c{letter-spacing:3.093333pt;}
.ls4f{letter-spacing:3.146667pt;}
.ls57{letter-spacing:3.200000pt;}
.ls47{letter-spacing:3.253333pt;}
.ls5c{letter-spacing:3.360000pt;}
.ls4a{letter-spacing:3.413333pt;}
.ls59{letter-spacing:3.573333pt;}
.ls53{letter-spacing:3.840000pt;}
.ls48{letter-spacing:4.266667pt;}
.ls79{letter-spacing:4.373333pt;}
.ls42{letter-spacing:5.280000pt;}
.ls67{letter-spacing:5.440000pt;}
.ls43{letter-spacing:5.600000pt;}
.ls64{letter-spacing:9.000042pt;}
.ls41{letter-spacing:9.173333pt;}
.ls4e{letter-spacing:9.333333pt;}
.ls24{letter-spacing:11.842203pt;}
.ls27{letter-spacing:16.238681pt;}
.ls28{letter-spacing:22.276140pt;}
.ls2a{letter-spacing:39.763950pt;}
.ls29{letter-spacing:45.072750pt;}
.ls2f{letter-spacing:76.382831pt;}
.ls26{letter-spacing:144.606355pt;}
.ls2b{letter-spacing:172.067565pt;}
.ws4c{word-spacing:-53.333333pt;}
.ws3c{word-spacing:-17.600000pt;}
.ws4a{word-spacing:-17.173333pt;}
.wsdf{word-spacing:-16.426667pt;}
.ws4b{word-spacing:-15.146667pt;}
.ws4{word-spacing:-15.093333pt;}
.ws2{word-spacing:-14.826667pt;}
.wsab{word-spacing:-14.773333pt;}
.wsd2{word-spacing:-14.666667pt;}
.ws28{word-spacing:-14.453333pt;}
.wsa8{word-spacing:-14.400000pt;}
.wsa9{word-spacing:-14.346667pt;}
.ws5{word-spacing:-14.293333pt;}
.ws27{word-spacing:-14.186667pt;}
.wsaa{word-spacing:-14.133333pt;}
.ws8a{word-spacing:-14.026667pt;}
.wsd3{word-spacing:-13.973333pt;}
.ws8c{word-spacing:-13.866667pt;}
.ws3e{word-spacing:-13.493333pt;}
.ws8b{word-spacing:-13.440000pt;}
.ws89{word-spacing:-13.386667pt;}
.ws6{word-spacing:-13.333333pt;}
.ws3d{word-spacing:-13.226667pt;}
.wse1{word-spacing:-12.245333pt;}
.wsf9{word-spacing:-11.904000pt;}
.ws7{word-spacing:-11.861333pt;}
.wsfb{word-spacing:-11.776000pt;}
.wsfe{word-spacing:-11.648000pt;}
.wsfa{word-spacing:-11.520000pt;}
.wsac{word-spacing:-10.922667pt;}
.ws3{word-spacing:-10.920000pt;}
.wsfc{word-spacing:-10.880000pt;}
.wsfd{word-spacing:-10.752000pt;}
.wsd5{word-spacing:-10.666667pt;}
.wse0{word-spacing:-10.624000pt;}
.ws42{word-spacing:-9.333333pt;}
.ws0{word-spacing:-9.076144pt;}
.wsd9{word-spacing:-3.040000pt;}
.wsff{word-spacing:-2.944000pt;}
.wse7{word-spacing:-2.645333pt;}
.ws9{word-spacing:-2.565333pt;}
.ws94{word-spacing:-2.453333pt;}
.ws4e{word-spacing:-2.400000pt;}
.wsd1{word-spacing:-2.346667pt;}
.ws102{word-spacing:-2.048000pt;}
.wsf1{word-spacing:-1.962667pt;}
.ws4f{word-spacing:-1.920000pt;}
.ws51{word-spacing:-1.813333pt;}
.ws52{word-spacing:-1.760000pt;}
.wsc9{word-spacing:-1.600000pt;}
.ws23{word-spacing:-1.546667pt;}
.wsd{word-spacing:-1.493333pt;}
.wsb7{word-spacing:-1.440000pt;}
.wsda{word-spacing:-1.333333pt;}
.ws62{word-spacing:-1.280000pt;}
.wsea{word-spacing:-1.237333pt;}
.ws4d{word-spacing:-1.226667pt;}
.ws50{word-spacing:-1.120000pt;}
.wsec{word-spacing:-1.109333pt;}
.ws2f{word-spacing:-1.013333pt;}
.ws12{word-spacing:-0.960000pt;}
.ws86{word-spacing:-0.853333pt;}
.ws85{word-spacing:-0.800000pt;}
.wsd6{word-spacing:-0.746667pt;}
.wsed{word-spacing:-0.725333pt;}
.ws73{word-spacing:-0.693333pt;}
.ws54{word-spacing:-0.586667pt;}
.wsb0{word-spacing:-0.559811pt;}
.ws101{word-spacing:-0.554667pt;}
.ws77{word-spacing:-0.533333pt;}
.wsaf{word-spacing:-0.516749pt;}
.ws84{word-spacing:-0.480000pt;}
.wsad{word-spacing:-0.473686pt;}
.ws95{word-spacing:-0.373333pt;}
.ws105{word-spacing:-0.341333pt;}
.wsdb{word-spacing:-0.320000pt;}
.ws21{word-spacing:-0.266667pt;}
.wscc{word-spacing:-0.256000pt;}
.wsf5{word-spacing:-0.213333pt;}
.wsc7{word-spacing:-0.187910pt;}
.ws26{word-spacing:-0.174626pt;}
.wse9{word-spacing:-0.170667pt;}
.ws57{word-spacing:-0.160000pt;}
.wsc6{word-spacing:-0.156592pt;}
.wsb1{word-spacing:-0.129242pt;}
.ws106{word-spacing:-0.128000pt;}
.wsc5{word-spacing:-0.125274pt;}
.ws93{word-spacing:-0.106667pt;}
.ws19{word-spacing:-0.105189pt;}
.ws20{word-spacing:-0.087313pt;}
.ws87{word-spacing:-0.085333pt;}
.ws16{word-spacing:-0.074706pt;}
.ws15{word-spacing:-0.070471pt;}
.wsc8{word-spacing:-0.062637pt;}
.ws3f{word-spacing:-0.061778pt;}
.ws82{word-spacing:-0.060133pt;}
.ws33{word-spacing:-0.053333pt;}
.ws1a{word-spacing:-0.052546pt;}
.ws1f{word-spacing:-0.052524pt;}
.ws17{word-spacing:-0.052168pt;}
.ws13{word-spacing:-0.044124pt;}
.wsa0{word-spacing:-0.043062pt;}
.ws40{word-spacing:-0.042397pt;}
.ws6d{word-spacing:-0.041406pt;}
.ws65{word-spacing:-0.041113pt;}
.ws81{word-spacing:-0.039674pt;}
.ws79{word-spacing:-0.039335pt;}
.ws9c{word-spacing:-0.036183pt;}
.wsbe{word-spacing:-0.031318pt;}
.ws8{word-spacing:0.000000pt;}
.wsae{word-spacing:0.043062pt;}
.ws99{word-spacing:0.053333pt;}
.ws71{word-spacing:0.062785pt;}
.ws2e{word-spacing:0.106667pt;}
.wsb2{word-spacing:0.129242pt;}
.ws5c{word-spacing:0.160000pt;}
.wsf8{word-spacing:0.170667pt;}
.wsa{word-spacing:0.200000pt;}
.ws32{word-spacing:0.213333pt;}
.wsb5{word-spacing:0.266667pt;}
.ws83{word-spacing:0.357067pt;}
.wsdd{word-spacing:0.373333pt;}
.ws72{word-spacing:0.455470pt;}
.wsca{word-spacing:0.480000pt;}
.ws107{word-spacing:0.512000pt;}
.ws25{word-spacing:0.525947pt;}
.ws5a{word-spacing:0.533333pt;}
.wsf7{word-spacing:0.554667pt;}
.ws103{word-spacing:0.597333pt;}
.wscb{word-spacing:0.640000pt;}
.ws47{word-spacing:0.693333pt;}
.ws2c{word-spacing:0.746667pt;}
.ws44{word-spacing:0.800000pt;}
.wse8{word-spacing:0.810667pt;}
.ws56{word-spacing:0.853333pt;}
.ws9a{word-spacing:0.906667pt;}
.ws88{word-spacing:0.938667pt;}
.wsc{word-spacing:0.960000pt;}
.wse5{word-spacing:1.013333pt;}
.ws45{word-spacing:1.066667pt;}
.wsd0{word-spacing:1.120000pt;}
.ws24{word-spacing:1.152000pt;}
.wsde{word-spacing:1.173333pt;}
.wsb3{word-spacing:1.226667pt;}
.ws78{word-spacing:1.322667pt;}
.ws46{word-spacing:1.386667pt;}
.ws75{word-spacing:1.493333pt;}
.ws31{word-spacing:1.546667pt;}
.wsee{word-spacing:1.578667pt;}
.ws8f{word-spacing:1.653333pt;}
.wsf6{word-spacing:1.664000pt;}
.ws96{word-spacing:1.706667pt;}
.wsf3{word-spacing:1.792000pt;}
.wsd8{word-spacing:1.920000pt;}
.wsf0{word-spacing:2.005333pt;}
.wsd7{word-spacing:2.026667pt;}
.ws8d{word-spacing:2.133333pt;}
.ws5f{word-spacing:2.240000pt;}
.ws92{word-spacing:2.293333pt;}
.wse2{word-spacing:2.346667pt;}
.wsb9{word-spacing:2.389333pt;}
.ws60{word-spacing:2.453333pt;}
.ws2d{word-spacing:2.506667pt;}
.wsef{word-spacing:2.517333pt;}
.ws61{word-spacing:2.560000pt;}
.ws43{word-spacing:2.613333pt;}
.ws11{word-spacing:2.720000pt;}
.wsf2{word-spacing:2.816000pt;}
.ws8e{word-spacing:2.826667pt;}
.wsdc{word-spacing:2.880000pt;}
.wse6{word-spacing:2.901333pt;}
.wsf4{word-spacing:2.944000pt;}
.wsf{word-spacing:2.986667pt;}
.ws100{word-spacing:3.029333pt;}
.ws90{word-spacing:3.040000pt;}
.ws10{word-spacing:3.146667pt;}
.ws104{word-spacing:3.157333pt;}
.wseb{word-spacing:3.200000pt;}
.wsb4{word-spacing:3.253333pt;}
.ws30{word-spacing:3.360000pt;}
.ws49{word-spacing:3.370667pt;}
.ws5b{word-spacing:3.413333pt;}
.ws91{word-spacing:3.466667pt;}
.ws48{word-spacing:3.498667pt;}
.ws97{word-spacing:3.520000pt;}
.ws9b{word-spacing:3.541333pt;}
.ws74{word-spacing:3.626667pt;}
.ws76{word-spacing:3.680000pt;}
.ws58{word-spacing:3.733333pt;}
.ws98{word-spacing:3.786667pt;}
.wsb6{word-spacing:3.840000pt;}
.ws55{word-spacing:3.893333pt;}
.ws59{word-spacing:3.946667pt;}
.ws5e{word-spacing:4.000000pt;}
.ws64{word-spacing:4.053333pt;}
.ws5d{word-spacing:4.160000pt;}
.ws22{word-spacing:4.213333pt;}
.ws53{word-spacing:4.266667pt;}
.ws63{word-spacing:4.320000pt;}
.wse{word-spacing:4.373333pt;}
.wsb{word-spacing:4.426667pt;}
.wse3{word-spacing:4.853333pt;}
.wse4{word-spacing:4.906667pt;}
.wsb8{word-spacing:6.186667pt;}
.wsba{word-spacing:7.265869pt;}
.wsbf{word-spacing:7.297187pt;}
.wsbc{word-spacing:7.359824pt;}
.wsc0{word-spacing:7.954874pt;}
.wsbd{word-spacing:8.017510pt;}
.wsbb{word-spacing:8.048829pt;}
.wsc1{word-spacing:8.080147pt;}
.ws9d{word-spacing:8.956979pt;}
.ws9e{word-spacing:9.473728pt;}
.ws9f{word-spacing:9.602915pt;}
.wsa5{word-spacing:10.537734pt;}
.wsa6{word-spacing:10.737501pt;}
.ws7f{word-spacing:11.227780pt;}
.ws1c{word-spacing:11.612578pt;}
.wsa4{word-spacing:11.886164pt;}
.wsa7{word-spacing:11.936106pt;}
.ws7e{word-spacing:12.021262pt;}
.ws1b{word-spacing:12.032942pt;}
.ws14{word-spacing:12.033732pt;}
.ws6c{word-spacing:12.339107pt;}
.ws6e{word-spacing:12.463326pt;}
.ws7d{word-spacing:12.928552pt;}
.ws6a{word-spacing:13.059183pt;}
.ws70{word-spacing:13.121967pt;}
.ws6b{word-spacing:13.184752pt;}
.ws6f{word-spacing:13.749813pt;}
.ws80{word-spacing:13.806598pt;}
.wsc2{word-spacing:15.399360pt;}
.wsc3{word-spacing:16.112293pt;}
.wsa1{word-spacing:17.641478pt;}
.wsa2{word-spacing:18.029203pt;}
.ws1d{word-spacing:19.789509pt;}
.ws1e{word-spacing:20.341408pt;}
.wsc4{word-spacing:21.492178pt;}
.ws18{word-spacing:26.086955pt;}
.ws1{word-spacing:43.841269pt;}
.ws35{word-spacing:81.240000pt;}
.ws2b{word-spacing:91.240000pt;}
.ws34{word-spacing:92.000000pt;}
.ws37{word-spacing:100.120000pt;}
.ws2a{word-spacing:101.240000pt;}
.ws29{word-spacing:109.680000pt;}
.ws36{word-spacing:110.120000pt;}
.ws3a{word-spacing:115.680000pt;}
.ws38{word-spacing:121.240000pt;}
.ws3b{word-spacing:123.480000pt;}
.ws67{word-spacing:123.748725pt;}
.ws66{word-spacing:123.789838pt;}
.ws7a{word-spacing:151.675503pt;}
.ws7b{word-spacing:159.052810pt;}
.wsce{word-spacing:162.773333pt;}
.wscd{word-spacing:245.930667pt;}
.wscf{word-spacing:265.472000pt;}
.ws39{word-spacing:771.240000pt;}
.wsd4{word-spacing:897.152000pt;}
.ws7c{word-spacing:1237.696000pt;}
.ws68{word-spacing:1246.720000pt;}
.ws69{word-spacing:1261.440000pt;}
.ws41{word-spacing:1284.480000pt;}
.wsa3{word-spacing:1807.550419pt;}
._a{margin-left:-2576.085333pt;}
._28{margin-left:-2554.922667pt;}
._4c{margin-left:-1589.013754pt;}
._46{margin-left:-9.952000pt;}
._2{margin-left:-8.327467pt;}
._6{margin-left:-6.653333pt;}
._4a{margin-left:-5.760000pt;}
._1{margin-left:-4.778667pt;}
._5{margin-left:-3.288000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-1.064000pt;}
._9{width:1.493333pt;}
._4b{width:2.700145pt;}
._48{width:3.786667pt;}
._8{width:4.693333pt;}
._7{width:6.080000pt;}
._49{width:7.093333pt;}
._47{width:8.914133pt;}
._50{width:9.947414pt;}
._4f{width:13.178894pt;}
._4d{width:15.005503pt;}
._3f{width:24.120000pt;}
._43{width:41.880000pt;}
._3{width:53.514704pt;}
._51{width:66.016000pt;}
._27{width:89.480000pt;}
._30{width:91.240000pt;}
._2f{width:92.360000pt;}
._2e{width:95.680000pt;}
._23{width:101.240000pt;}
._22{width:102.360000pt;}
._29{width:103.653333pt;}
._3c{width:104.920000pt;}
._20{width:106.440000pt;}
._3d{width:110.120000pt;}
._18{width:111.240000pt;}
._11{width:112.360000pt;}
._c{width:115.200000pt;}
._37{width:116.306667pt;}
._36{width:117.298667pt;}
._33{width:120.120000pt;}
._26{width:121.240000pt;}
._2b{width:122.360000pt;}
._42{width:124.040000pt;}
._1b{width:125.680000pt;}
._5f{width:129.496000pt;}
._16{width:131.240000pt;}
._10{width:132.360000pt;}
._60{width:134.613333pt;}
._40{width:138.178667pt;}
._1d{width:140.800000pt;}
._13{width:142.200000pt;}
._45{width:153.480000pt;}
._4e{width:160.328930pt;}
._55{width:170.325333pt;}
._1a{width:180.120000pt;}
._3a{width:184.210667pt;}
._34{width:187.141333pt;}
._56{width:188.544000pt;}
._25{width:197.920000pt;}
._2c{width:205.080000pt;}
._f{width:207.920000pt;}
._e{width:212.120000pt;}
._35{width:214.901333pt;}
._57{width:226.346667pt;}
._44{width:228.480000pt;}
._24{width:231.680000pt;}
._32{width:234.901333pt;}
._5d{width:238.549333pt;}
._52{width:243.285333pt;}
._5a{width:245.930667pt;}
._3b{width:248.368000pt;}
._41{width:255.080000pt;}
._58{width:256.597333pt;}
._54{width:259.328000pt;}
._2a{width:262.800000pt;}
._1f{width:273.920000pt;}
._5c{width:276.138667pt;}
._3e{width:278.408000pt;}
._64{width:282.410667pt;}
._39{width:287.570667pt;}
._1e{width:293.773333pt;}
._38{width:295.048000pt;}
._62{width:299.008000pt;}
._21{width:300.640000pt;}
._61{width:302.592000pt;}
._63{width:303.744000pt;}
._59{width:305.493333pt;}
._2d{width:307.053333pt;}
._5b{width:325.752000pt;}
._14{width:359.160000pt;}
._d{width:409.416000pt;}
._17{width:420.280000pt;}
._15{width:421.360000pt;}
._12{width:435.048000pt;}
._31{width:436.621333pt;}
._1c{width:481.728000pt;}
._19{width:496.920000pt;}
._b{width:568.400000pt;}
._5e{width:615.424000pt;}
._65{width:685.098667pt;}
._66{width:704.984000pt;}
._53{width:1145.429333pt;}
.fs7{font-size:20.210667pt;}
.fs5{font-size:23.320000pt;}
.fs23{font-size:31.318400pt;}
.fs4{font-size:32.648000pt;}
.fs8{font-size:34.666667pt;}
.fs1f{font-size:36.183467pt;}
.fs0{font-size:37.333333pt;}
.fs1c{font-size:39.334933pt;}
.fs1e{font-size:39.674133pt;}
.fs6{font-size:40.000000pt;}
.fs19{font-size:41.112533pt;}
.fs1b{font-size:41.406400pt;}
.fs17{font-size:42.396800pt;}
.fsa{font-size:42.666667pt;}
.fs20{font-size:43.062400pt;}
.fsb{font-size:44.124267pt;}
.fs22{font-size:49.941867pt;}
.fsc{font-size:52.094077pt;}
.fsf{font-size:52.168293pt;}
.fs14{font-size:52.524299pt;}
.fs12{font-size:52.545600pt;}
.fs9{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1d{font-size:60.132800pt;}
.fs16{font-size:61.777600pt;}
.fs1a{font-size:62.784533pt;}
.fs18{font-size:64.000000pt;}
.fs21{font-size:64.620800pt;}
.fs1{font-size:69.333333pt;}
.fsd{font-size:70.470933pt;}
.fs24{font-size:71.293333pt;}
.fse{font-size:74.706133pt;}
.fs13{font-size:78.842667pt;}
.fs15{font-size:87.313067pt;}
.fs25{font-size:95.098133pt;}
.fs11{font-size:104.094111pt;}
.fs10{font-size:105.189333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y189{bottom:2.188800pt;}
.y1{bottom:41.124400pt;}
.y2d{bottom:42.468667pt;}
.y282{bottom:71.219467pt;}
.y2c3{bottom:71.345333pt;}
.y122{bottom:74.462533pt;}
.y1a1{bottom:74.674133pt;}
.y19b{bottom:74.683733pt;}
.y207{bottom:74.684533pt;}
.y107{bottom:75.026933pt;}
.y37{bottom:75.097333pt;}
.y1d{bottom:78.248400pt;}
.yb3{bottom:79.645867pt;}
.yb6{bottom:79.655867pt;}
.y17f{bottom:79.965467pt;}
.y241{bottom:80.067467pt;}
.yfd{bottom:81.579200pt;}
.y281{bottom:84.552800pt;}
.y2c2{bottom:84.678667pt;}
.y259{bottom:86.093733pt;}
.y1a0{bottom:88.668800pt;}
.y19a{bottom:88.678400pt;}
.y206{bottom:88.679200pt;}
.y106{bottom:89.021600pt;}
.y36{bottom:89.092000pt;}
.y121{bottom:90.462533pt;}
.y14b{bottom:90.463200pt;}
.y1c{bottom:91.576000pt;}
.yb2{bottom:92.975867pt;}
.yb5{bottom:92.985867pt;}
.y17e{bottom:93.960133pt;}
.y240{bottom:94.734133pt;}
.y280{bottom:97.886133pt;}
.y2c1{bottom:98.012000pt;}
.y19f{bottom:102.663467pt;}
.y199{bottom:102.673067pt;}
.y105{bottom:103.016267pt;}
.y35{bottom:103.086667pt;}
.yfc{bottom:104.155067pt;}
.yb1{bottom:106.305867pt;}
.yb4{bottom:106.315867pt;}
.y120{bottom:106.462533pt;}
.y14a{bottom:106.463200pt;}
.y17d{bottom:107.954800pt;}
.y258{bottom:108.771067pt;}
.y27f{bottom:111.219467pt;}
.y2c0{bottom:111.345333pt;}
.y23f{bottom:117.411467pt;}
.yfb{bottom:117.935067pt;}
.yb0{bottom:120.085867pt;}
.y11f{bottom:122.462533pt;}
.y149{bottom:122.463200pt;}
.y257{bottom:123.437733pt;}
.y54{bottom:124.384000pt;}
.y27e{bottom:124.552800pt;}
.y2bf{bottom:124.678667pt;}
.y1f1{bottom:128.289867pt;}
.yfa{bottom:131.715067pt;}
.y23e{bottom:131.914133pt;}
.y1da{bottom:132.812859pt;}
.y1c2{bottom:133.767458pt;}
.yaf{bottom:133.865867pt;}
.y159{bottom:134.842903pt;}
.y43{bottom:136.794133pt;}
.y256{bottom:137.880400pt;}
.y27d{bottom:137.886133pt;}
.y2be{bottom:138.012000pt;}
.y11e{bottom:138.462533pt;}
.y148{bottom:138.463200pt;}
.y3c{bottom:139.447178pt;}
.y1ea{bottom:139.831600pt;}
.yf9{bottom:145.495067pt;}
.y1bf{bottom:146.277085pt;}
.y23d{bottom:146.356800pt;}
.yae{bottom:147.645867pt;}
.y27c{bottom:151.219467pt;}
.y2bd{bottom:151.345333pt;}
.y1d9{bottom:151.828225pt;}
.y255{bottom:152.547067pt;}
.y11d{bottom:154.462533pt;}
.y147{bottom:154.463200pt;}
.y3b{bottom:155.254697pt;}
.y1ed{bottom:155.503680pt;}
.y28{bottom:156.669200pt;}
.y1c9{bottom:158.474510pt;}
.yf8{bottom:159.275067pt;}
.y155{bottom:159.874795pt;}
.y23c{bottom:160.799467pt;}
.yad{bottom:161.425867pt;}
.y1cb{bottom:161.896554pt;}
.y27b{bottom:164.552800pt;}
.y2bc{bottom:164.678667pt;}
.y1ec{bottom:164.899200pt;}
.y254{bottom:166.989733pt;}
.y3a{bottom:169.870860pt;}
.y11c{bottom:170.462533pt;}
.y146{bottom:170.463200pt;}
.y1bd{bottom:170.997129pt;}
.y3f{bottom:172.242539pt;}
.y151{bottom:172.547733pt;}
.yf7{bottom:172.605067pt;}
.y27{bottom:172.669200pt;}
.y66{bottom:174.906533pt;}
.ya9{bottom:175.195867pt;}
.yac{bottom:175.205867pt;}
.y23b{bottom:175.242133pt;}
.y1ef{bottom:176.064667pt;}
.y27a{bottom:177.886133pt;}
.y2bb{bottom:178.012000pt;}
.y1e1{bottom:178.293333pt;}
.y253{bottom:181.656400pt;}
.y1c5{bottom:183.493765pt;}
.y39{bottom:185.237136pt;}
.yf6{bottom:186.385067pt;}
.y11b{bottom:186.462533pt;}
.y145{bottom:186.463200pt;}
.y3e{bottom:187.608815pt;}
.ya8{bottom:188.525867pt;}
.yab{bottom:188.535867pt;}
.y26{bottom:188.669200pt;}
.y23a{bottom:189.684800pt;}
.y279{bottom:191.219467pt;}
.y2ba{bottom:191.345333pt;}
.y1a4{bottom:195.844133pt;}
.y252{bottom:196.099067pt;}
.y44{bottom:196.166833pt;}
.y1eb{bottom:198.787333pt;}
.y3d{bottom:200.162169pt;}
.yf5{bottom:200.165067pt;}
.y38{bottom:200.173200pt;}
.ya7{bottom:201.855867pt;}
.yaa{bottom:201.865867pt;}
.y11a{bottom:202.462533pt;}
.y144{bottom:202.463200pt;}
.y239{bottom:204.127467pt;}
.y278{bottom:204.552800pt;}
.y25{bottom:204.669200pt;}
.y2b9{bottom:204.678667pt;}
.y1e0{bottom:205.105867pt;}
.y63{bottom:206.809867pt;}
.y1ad{bottom:208.203042pt;}
.y251{bottom:210.765733pt;}
.yf4{bottom:213.945067pt;}
.y1d4{bottom:215.031974pt;}
.y1e9{bottom:215.378400pt;}
.ya6{bottom:215.635867pt;}
.y277{bottom:217.886133pt;}
.y2b8{bottom:218.012000pt;}
.y119{bottom:218.462533pt;}
.y143{bottom:218.463200pt;}
.y238{bottom:218.570133pt;}
.y24{bottom:220.669200pt;}
.y1ae{bottom:220.701904pt;}
.y1d1{bottom:224.466813pt;}
.y250{bottom:225.208400pt;}
.yf0{bottom:227.715067pt;}
.yf3{bottom:227.725067pt;}
.ya5{bottom:229.415867pt;}
.y165{bottom:230.531207pt;}
.y276{bottom:231.219467pt;}
.y2b7{bottom:231.345333pt;}
.y237{bottom:233.012800pt;}
.y1ac{bottom:233.071578pt;}
.y118{bottom:234.462533pt;}
.y142{bottom:234.463200pt;}
.y164{bottom:234.926124pt;}
.y1ee{bottom:235.050267pt;}
.y23{bottom:236.669200pt;}
.y152{bottom:237.022464pt;}
.y1df{bottom:237.944400pt;}
.y24f{bottom:239.875067pt;}
.yef{bottom:241.045067pt;}
.yf2{bottom:241.055067pt;}
.y1ca{bottom:242.332400pt;}
.ya4{bottom:242.745867pt;}
.y275{bottom:244.552800pt;}
.y2b6{bottom:244.678667pt;}
.y1aa{bottom:245.570440pt;}
.y236{bottom:247.455467pt;}
.y1ce{bottom:248.347901pt;}
.y117{bottom:250.462533pt;}
.y141{bottom:250.463200pt;}
.y22{bottom:252.669200pt;}
.y24e{bottom:254.317733pt;}
.yee{bottom:254.372800pt;}
.yf1{bottom:254.385067pt;}
.ya3{bottom:256.525867pt;}
.y1a9{bottom:257.757099pt;}
.y274{bottom:257.886133pt;}
.y2b5{bottom:258.012000pt;}
.y235{bottom:261.898133pt;}
.y1e8{bottom:263.167467pt;}
.y116{bottom:266.462533pt;}
.y140{bottom:266.463200pt;}
.yed{bottom:268.152800pt;}
.y21{bottom:268.669200pt;}
.y24d{bottom:268.984400pt;}
.y41{bottom:269.314800pt;}
.ya2{bottom:269.855867pt;}
.y1b1{bottom:270.288257pt;}
.y273{bottom:271.219467pt;}
.y2b4{bottom:271.345333pt;}
.y45{bottom:273.319600pt;}
.y234{bottom:276.340800pt;}
.y102{bottom:278.328800pt;}
.y1f0{bottom:280.134933pt;}
.y1d8{bottom:280.515929pt;}
.yec{bottom:281.932800pt;}
.y62{bottom:282.020667pt;}
.y115{bottom:282.462533pt;}
.y13f{bottom:282.463200pt;}
.y1b8{bottom:282.787119pt;}
.ya1{bottom:283.635867pt;}
.y272{bottom:284.552800pt;}
.y204{bottom:284.645123pt;}
.y20{bottom:284.669200pt;}
.y2b3{bottom:284.678667pt;}
.y1cc{bottom:289.461365pt;}
.y1de{bottom:289.769200pt;}
.y24c{bottom:294.765733pt;}
.y1ab{bottom:295.146028pt;}
.yeb{bottom:295.712800pt;}
.ya0{bottom:297.415867pt;}
.y271{bottom:297.886133pt;}
.y2b2{bottom:298.012000pt;}
.y114{bottom:298.462533pt;}
.y13e{bottom:298.463200pt;}
.y1f{bottom:300.669200pt;}
.y153{bottom:301.702757pt;}
.y233{bottom:302.122133pt;}
.y1d0{bottom:302.143670pt;}
.y1c3{bottom:307.330461pt;}
.y24b{bottom:309.432400pt;}
.yea{bottom:309.492800pt;}
.y5d{bottom:309.635067pt;}
.y1e7{bottom:310.972133pt;}
.y9f{bottom:311.195867pt;}
.y270{bottom:311.219467pt;}
.y2b1{bottom:311.345333pt;}
.y50{bottom:312.013060pt;}
.y113{bottom:314.462533pt;}
.y13d{bottom:314.463200pt;}
.y232{bottom:316.564800pt;}
.y2a{bottom:316.669200pt;}
.y1c1{bottom:319.829323pt;}
.y1f5{bottom:322.153200pt;}
.ye9{bottom:323.272800pt;}
.y26f{bottom:324.552800pt;}
.y2b0{bottom:324.678667pt;}
.y9e{bottom:324.975867pt;}
.y15e{bottom:325.489234pt;}
.y112{bottom:330.462533pt;}
.y13c{bottom:330.463200pt;}
.y202{bottom:330.793733pt;}
.y231{bottom:331.007467pt;}
.y1e{bottom:332.309200pt;}
.y1c8{bottom:332.360481pt;}
.y29{bottom:332.669200pt;}
.y24a{bottom:335.213733pt;}
.ye8{bottom:337.052800pt;}
.y26e{bottom:337.886133pt;}
.y2af{bottom:338.012000pt;}
.y9d{bottom:338.755867pt;}
.y15f{bottom:339.743387pt;}
.y1f3{bottom:344.694800pt;}
.y1b0{bottom:344.710850pt;}
.y230{bottom:345.450133pt;}
.y111{bottom:346.462533pt;}
.y13b{bottom:346.463200pt;}
.ye7{bottom:350.832800pt;}
.y26d{bottom:351.219467pt;}
.y2ae{bottom:351.345333pt;}
.y15d{bottom:352.444800pt;}
.y9c{bottom:352.535867pt;}
.yff{bottom:353.257333pt;}
.y65{bottom:355.446000pt;}
.y5e{bottom:356.480000pt;}
.y1a6{bottom:356.897509pt;}
.y1fa{bottom:357.123200pt;}
.y22f{bottom:359.892800pt;}
.y13a{bottom:361.809867pt;}
.y110{bottom:362.462533pt;}
.y249{bottom:364.009200pt;}
.y26c{bottom:364.552800pt;}
.ye6{bottom:364.612800pt;}
.y2ad{bottom:364.678667pt;}
.y154{bottom:366.372772pt;}
.y1f2{bottom:367.056800pt;}
.y1be{bottom:369.394145pt;}
.y1dd{bottom:370.530933pt;}
.y5c{bottom:373.770644pt;}
.y22e{bottom:374.335467pt;}
.y99{bottom:377.985867pt;}
.y2ac{bottom:378.012000pt;}
.ye5{bottom:378.392800pt;}
.y10f{bottom:378.462533pt;}
.y139{bottom:378.463200pt;}
.y4a{bottom:380.405100pt;}
.y248{bottom:381.342533pt;}
.y1ba{bottom:381.916764pt;}
.y96{bottom:384.645867pt;}
.y9b{bottom:384.655867pt;}
.y1f7{bottom:385.271600pt;}
.y22d{bottom:388.834267pt;}
.y103{bottom:388.905733pt;}
.y5b{bottom:389.573733pt;}
.y95{bottom:391.305867pt;}
.y98{bottom:391.315867pt;}
.y2ab{bottom:391.347467pt;}
.y157{bottom:392.143467pt;}
.ye4{bottom:392.172800pt;}
.y26b{bottom:393.984533pt;}
.y1af{bottom:394.254141pt;}
.y10e{bottom:394.462533pt;}
.y138{bottom:394.463200pt;}
.y1cf{bottom:397.025766pt;}
.y100{bottom:397.918800pt;}
.y9a{bottom:397.985867pt;}
.y247{bottom:398.675867pt;}
.y1b{bottom:400.323733pt;}
.y1fe{bottom:402.582378pt;}
.y22c{bottom:403.276933pt;}
.y1dc{bottom:403.857733pt;}
.y49{bottom:404.347600pt;}
.y97{bottom:404.645867pt;}
.y2ec{bottom:404.678667pt;}
.y2aa{bottom:404.680800pt;}
.y4d{bottom:405.387046pt;}
.ye3{bottom:405.952800pt;}
.y1b4{bottom:406.623816pt;}
.y10d{bottom:410.462533pt;}
.y137{bottom:410.463200pt;}
.y1fd{bottom:412.322400pt;}
.y1d3{bottom:413.444014pt;}
.y198{bottom:414.075733pt;}
.y1e6{bottom:414.847200pt;}
.y101{bottom:414.861467pt;}
.y246{bottom:416.009200pt;}
.y22b{bottom:417.719600pt;}
.y2eb{bottom:418.012000pt;}
.y2a9{bottom:418.014133pt;}
.y1bc{bottom:418.971959pt;}
.ye2{bottom:419.732800pt;}
.y1fc{bottom:422.223392pt;}
.y1a{bottom:424.630400pt;}
.y68{bottom:425.917467pt;}
.y10c{bottom:426.462533pt;}
.y136{bottom:426.463200pt;}
.y197{bottom:428.070400pt;}
.y1d2{bottom:428.731529pt;}
.y2ea{bottom:431.345333pt;}
.y2a8{bottom:431.347467pt;}
.y1b5{bottom:431.470821pt;}
.y1fb{bottom:431.783333pt;}
.y22a{bottom:432.162267pt;}
.y94{bottom:432.875867pt;}
.ye1{bottom:433.512800pt;}
.y1d7{bottom:435.535484pt;}
.y158{bottom:436.601067pt;}
.y19{bottom:440.630400pt;}
.y200{bottom:442.059680pt;}
.y196{bottom:442.065067pt;}
.y10b{bottom:442.462533pt;}
.y135{bottom:442.463200pt;}
.y26a{bottom:442.464533pt;}
.y1b6{bottom:443.829729pt;}
.y1db{bottom:444.631200pt;}
.y2e9{bottom:444.678667pt;}
.y2a7{bottom:444.680800pt;}
.y229{bottom:446.604933pt;}
.ye0{bottom:447.292800pt;}
.y1f6{bottom:448.735200pt;}
.y93{bottom:450.209200pt;}
.y1ff{bottom:451.455200pt;}
.y48{bottom:453.697636pt;}
.y1c0{bottom:456.175647pt;}
.y18{bottom:456.630400pt;}
.y2e8{bottom:458.012000pt;}
.y2a6{bottom:458.014133pt;}
.y150{bottom:458.094795pt;}
.y269{bottom:458.104533pt;}
.y245{bottom:458.342533pt;}
.y10a{bottom:458.462533pt;}
.y134{bottom:458.463200pt;}
.ydf{bottom:461.072800pt;}
.y4b{bottom:466.696758pt;}
.y18c{bottom:467.465600pt;}
.y1a5{bottom:468.698265pt;}
.y14c{bottom:470.767733pt;}
.y1f4{bottom:471.097200pt;}
.y2e7{bottom:471.345333pt;}
.y2a5{bottom:471.347467pt;}
.y18d{bottom:471.539597pt;}
.y228{bottom:472.386267pt;}
.y17{bottom:472.630400pt;}
.y244{bottom:474.342533pt;}
.y109{bottom:474.462533pt;}
.y133{bottom:474.463200pt;}
.yde{bottom:474.852800pt;}
.y40{bottom:475.545867pt;}
.y1a7{bottom:481.046409pt;}
.y47{bottom:482.203945pt;}
.yfe{bottom:484.613867pt;}
.y2e6{bottom:484.678667pt;}
.y2a4{bottom:484.680800pt;}
.y6a{bottom:485.012667pt;}
.y227{bottom:486.828933pt;}
.y18a{bottom:487.472133pt;}
.y16{bottom:488.630400pt;}
.ydd{bottom:488.632800pt;}
.y185{bottom:488.844444pt;}
.y268{bottom:490.104533pt;}
.y7e{bottom:490.342533pt;}
.y92{bottom:490.462533pt;}
.y132{bottom:490.463200pt;}
.y1c7{bottom:493.543045pt;}
.y201{bottom:494.555467pt;}
.y2e5{bottom:498.012000pt;}
.y2a3{bottom:498.014133pt;}
.y4f{bottom:498.443914pt;}
.y1e5{bottom:499.244267pt;}
.y186{bottom:500.019067pt;}
.y181{bottom:500.880933pt;}
.y226{bottom:501.271600pt;}
.ydc{bottom:501.962800pt;}
.y15{bottom:504.630400pt;}
.y1b3{bottom:505.731929pt;}
.y7d{bottom:506.342533pt;}
.y91{bottom:506.462533pt;}
.y131{bottom:506.463200pt;}
.y1f9{bottom:507.705200pt;}
.y69{bottom:509.222505pt;}
.y46{bottom:510.263200pt;}
.y1cd{bottom:510.289062pt;}
.y2e4{bottom:511.345333pt;}
.y2a2{bottom:511.347467pt;}
.y104{bottom:513.267600pt;}
.y225{bottom:515.714267pt;}
.ydb{bottom:515.742800pt;}
.y1b9{bottom:518.263088pt;}
.y1a3{bottom:520.369467pt;}
.y14{bottom:520.630400pt;}
.y7c{bottom:522.342533pt;}
.y90{bottom:522.462533pt;}
.y130{bottom:522.463200pt;}
.y267{bottom:522.464533pt;}
.y2e3{bottom:524.678667pt;}
.y2a1{bottom:524.680800pt;}
.y203{bottom:528.985200pt;}
.yda{bottom:529.072800pt;}
.y224{bottom:530.156933pt;}
.y1c6{bottom:530.770489pt;}
.y163{bottom:532.980000pt;}
.y14d{bottom:535.273298pt;}
.y1e4{bottom:535.657067pt;}
.y13{bottom:536.630400pt;}
.y2e2{bottom:538.012000pt;}
.y2a0{bottom:538.014133pt;}
.y7b{bottom:538.342533pt;}
.y8f{bottom:538.462533pt;}
.y12f{bottom:538.463200pt;}
.y266{bottom:538.464533pt;}
.yd9{bottom:542.896000pt;}
.y1b7{bottom:543.120858pt;}
.y4c{bottom:543.668635pt;}
.y1d6{bottom:543.772514pt;}
.y223{bottom:544.599600pt;}
.y67{bottom:548.392133pt;}
.y2e1{bottom:551.345333pt;}
.y29f{bottom:551.347467pt;}
.y12{bottom:552.630400pt;}
.y265{bottom:554.104533pt;}
.y7a{bottom:554.342533pt;}
.y8e{bottom:554.462533pt;}
.y12e{bottom:554.463200pt;}
.y1a8{bottom:555.619720pt;}
.yd8{bottom:556.676000pt;}
.y222{bottom:559.042267pt;}
.y182{bottom:562.764617pt;}
.y1d5{bottom:563.094133pt;}
.y2e0{bottom:564.678667pt;}
.y29e{bottom:564.680800pt;}
.y195{bottom:567.504580pt;}
.y1c4{bottom:567.804153pt;}
.y11{bottom:568.630400pt;}
.y194{bottom:569.022933pt;}
.yd7{bottom:570.006000pt;}
.y79{bottom:570.342533pt;}
.y8d{bottom:570.462533pt;}
.y12d{bottom:570.463200pt;}
.y221{bottom:573.484933pt;}
.y2df{bottom:578.012000pt;}
.y29d{bottom:578.014133pt;}
.y1b2{bottom:580.337537pt;}
.y205{bottom:582.003467pt;}
.yd6{bottom:583.786000pt;}
.y10{bottom:584.630400pt;}
.y4e{bottom:585.475516pt;}
.y78{bottom:586.342533pt;}
.y8c{bottom:586.462533pt;}
.y12c{bottom:586.463200pt;}
.y264{bottom:586.464533pt;}
.y220{bottom:587.927600pt;}
.y60{bottom:590.780400pt;}
.y2de{bottom:591.345333pt;}
.y29c{bottom:591.347467pt;}
.y1bb{bottom:592.674915pt;}
.y187{bottom:594.304902pt;}
.yd5{bottom:597.116000pt;}
.y1f8{bottom:597.513867pt;}
.y14e{bottom:599.922757pt;}
.yf{bottom:600.630400pt;}
.y5f{bottom:601.565600pt;}
.y263{bottom:602.104533pt;}
.y77{bottom:602.342533pt;}
.y21f{bottom:602.370267pt;}
.y8b{bottom:602.462533pt;}
.y12b{bottom:602.463200pt;}
.y2dd{bottom:604.678667pt;}
.y29b{bottom:604.680800pt;}
.y52{bottom:610.203600pt;}
.yd4{bottom:610.896000pt;}
.y64{bottom:616.056133pt;}
.y21e{bottom:616.812933pt;}
.y2dc{bottom:618.012000pt;}
.y29a{bottom:618.014133pt;}
.y1e3{bottom:618.267733pt;}
.y76{bottom:618.342533pt;}
.y8a{bottom:618.462533pt;}
.y12a{bottom:618.463200pt;}
.y15b{bottom:620.714567pt;}
.y183{bottom:624.648301pt;}
.yd3{bottom:624.676000pt;}
.y161{bottom:627.067319pt;}
.y2db{bottom:631.345333pt;}
.y299{bottom:631.347467pt;}
.y75{bottom:634.342533pt;}
.y89{bottom:634.462533pt;}
.y129{bottom:634.463200pt;}
.y262{bottom:634.464533pt;}
.y15c{bottom:634.989423pt;}
.yd2{bottom:638.456000pt;}
.y58{bottom:639.319467pt;}
.ye{bottom:640.770933pt;}
.y162{bottom:641.321472pt;}
.y21d{bottom:642.594267pt;}
.y55{bottom:644.638400pt;}
.y2da{bottom:644.678667pt;}
.y298{bottom:644.680800pt;}
.y15a{bottom:647.670133pt;}
.y74{bottom:650.342533pt;}
.y88{bottom:650.462533pt;}
.y128{bottom:650.463200pt;}
.y261{bottom:650.464533pt;}
.yd{bottom:651.838267pt;}
.yd1{bottom:652.236000pt;}
.y56{bottom:652.752533pt;}
.y160{bottom:654.012533pt;}
.y21c{bottom:657.260933pt;}
.y2d9{bottom:658.012000pt;}
.y297{bottom:658.014133pt;}
.y51{bottom:662.588335pt;}
.y14f{bottom:664.582494pt;}
.yd0{bottom:666.016000pt;}
.y73{bottom:666.342533pt;}
.yc{bottom:666.418667pt;}
.y87{bottom:666.462533pt;}
.y127{bottom:666.463200pt;}
.y260{bottom:666.464533pt;}
.y2d8{bottom:671.345333pt;}
.y296{bottom:671.347467pt;}
.ycf{bottom:679.796000pt;}
.y72{bottom:682.342533pt;}
.y86{bottom:682.462533pt;}
.y126{bottom:682.463200pt;}
.y25f{bottom:682.464533pt;}
.y2d7{bottom:684.678667pt;}
.y295{bottom:684.680800pt;}
.y42{bottom:685.780398pt;}
.y21b{bottom:686.062533pt;}
.y188{bottom:686.365333pt;}
.y184{bottom:686.522151pt;}
.y156{bottom:690.223467pt;}
.y59{bottom:693.528533pt;}
.yce{bottom:693.576000pt;}
.yb{bottom:695.252400pt;}
.y2d6{bottom:698.012000pt;}
.y294{bottom:698.014133pt;}
.y19e{bottom:698.102533pt;}
.y71{bottom:698.342533pt;}
.y85{bottom:698.462533pt;}
.y125{bottom:698.463200pt;}
.y25e{bottom:698.464533pt;}
.ya{bottom:702.429867pt;}
.yca{bottom:707.346000pt;}
.ycd{bottom:707.356000pt;}
.y18b{bottom:708.394000pt;}
.y2d5{bottom:711.345333pt;}
.y293{bottom:711.347467pt;}
.y243{bottom:713.982533pt;}
.y70{bottom:714.342533pt;}
.y9{bottom:714.429867pt;}
.y84{bottom:714.462533pt;}
.y124{bottom:714.463200pt;}
.y25d{bottom:714.464533pt;}
.y53{bottom:718.482046pt;}
.yc9{bottom:720.676000pt;}
.y57{bottom:720.685841pt;}
.ycc{bottom:720.686000pt;}
.y2d4{bottom:724.678667pt;}
.y292{bottom:724.680800pt;}
.y6b{bottom:725.781067pt;}
.y61{bottom:725.961067pt;}
.y19d{bottom:729.982533pt;}
.y6f{bottom:730.342533pt;}
.y83{bottom:730.462533pt;}
.y123{bottom:730.463200pt;}
.y25c{bottom:730.464533pt;}
.y21a{bottom:730.475867pt;}
.y170{bottom:730.584533pt;}
.y20d{bottom:730.595867pt;}
.y8{bottom:731.252400pt;}
.yc8{bottom:734.006000pt;}
.ycb{bottom:734.016000pt;}
.y18f{bottom:737.040513pt;}
.y2d3{bottom:738.012000pt;}
.y291{bottom:738.014133pt;}
.y25b{bottom:746.104533pt;}
.y82{bottom:746.462533pt;}
.y17c{bottom:746.464533pt;}
.y219{bottom:746.475867pt;}
.y16f{bottom:746.584533pt;}
.y20c{bottom:746.595867pt;}
.y193{bottom:747.722133pt;}
.yc6{bottom:747.786000pt;}
.y2d2{bottom:751.345333pt;}
.y290{bottom:751.347467pt;}
.y7{bottom:756.783067pt;}
.y192{bottom:758.417467pt;}
.yc5{bottom:761.116000pt;}
.y5a{bottom:761.725733pt;}
.y6e{bottom:761.982533pt;}
.y81{bottom:762.462533pt;}
.y17b{bottom:762.464533pt;}
.y218{bottom:762.475867pt;}
.y16e{bottom:762.584533pt;}
.y20b{bottom:762.595867pt;}
.y2d1{bottom:764.678667pt;}
.y28f{bottom:764.680800pt;}
.y190{bottom:769.087294pt;}
.yc4{bottom:774.446000pt;}
.y2d0{bottom:778.012000pt;}
.y28e{bottom:778.014133pt;}
.y80{bottom:778.462533pt;}
.y17a{bottom:778.464533pt;}
.y217{bottom:778.475867pt;}
.y16d{bottom:778.584533pt;}
.y191{bottom:779.780667pt;}
.yc3{bottom:787.776000pt;}
.yc7{bottom:787.786000pt;}
.y18e{bottom:790.461733pt;}
.y2cf{bottom:791.345333pt;}
.y28d{bottom:791.347467pt;}
.y20a{bottom:794.235867pt;}
.y7f{bottom:794.462533pt;}
.y179{bottom:794.464533pt;}
.y216{bottom:794.475867pt;}
.y16c{bottom:794.584533pt;}
.y6{bottom:797.816533pt;}
.yc2{bottom:801.556000pt;}
.y2ce{bottom:804.678667pt;}
.y28c{bottom:804.680800pt;}
.y209{bottom:810.235867pt;}
.y6d{bottom:810.462533pt;}
.y178{bottom:810.464533pt;}
.y215{bottom:810.475867pt;}
.y16b{bottom:810.584533pt;}
.yc1{bottom:815.336000pt;}
.y2cd{bottom:818.012000pt;}
.y28b{bottom:818.014133pt;}
.y34{bottom:826.462533pt;}
.y177{bottom:826.464533pt;}
.y214{bottom:826.475867pt;}
.y16a{bottom:826.584533pt;}
.yc0{bottom:829.116000pt;}
.y5{bottom:830.226133pt;}
.y2cc{bottom:831.345333pt;}
.y28a{bottom:831.347467pt;}
.y33{bottom:842.462533pt;}
.y176{bottom:842.464533pt;}
.y213{bottom:842.475867pt;}
.y169{bottom:842.584533pt;}
.ybf{bottom:842.896000pt;}
.y2cb{bottom:844.678667pt;}
.y289{bottom:844.680800pt;}
.y2ca{bottom:858.012000pt;}
.y288{bottom:858.014133pt;}
.y32{bottom:858.462533pt;}
.y175{bottom:858.464533pt;}
.y212{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.ybc{bottom:867.676000pt;}
.y2c9{bottom:871.345333pt;}
.y287{bottom:871.347467pt;}
.y168{bottom:874.224533pt;}
.yb9{bottom:874.336000pt;}
.ybe{bottom:874.346000pt;}
.y31{bottom:874.462533pt;}
.y174{bottom:874.464533pt;}
.y211{bottom:874.475867pt;}
.yb8{bottom:880.996000pt;}
.ybb{bottom:881.006000pt;}
.y2c8{bottom:884.678667pt;}
.y286{bottom:884.680800pt;}
.ybd{bottom:887.676000pt;}
.y167{bottom:890.224533pt;}
.y30{bottom:890.462533pt;}
.y173{bottom:890.464533pt;}
.y210{bottom:890.475867pt;}
.yba{bottom:894.336000pt;}
.y3{bottom:895.045333pt;}
.y2c7{bottom:898.012000pt;}
.y285{bottom:898.014133pt;}
.y2f{bottom:906.462533pt;}
.y172{bottom:906.464533pt;}
.y20f{bottom:906.475867pt;}
.y2c6{bottom:911.345333pt;}
.y284{bottom:911.347467pt;}
.y1e2{bottom:922.102533pt;}
.y166{bottom:922.104533pt;}
.y2e{bottom:922.462533pt;}
.y171{bottom:922.464533pt;}
.y20e{bottom:922.475867pt;}
.y2c5{bottom:924.678667pt;}
.y283{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y6c{bottom:1006.591733pt;}
.yb7{bottom:1006.594400pt;}
.y242{bottom:1006.595467pt;}
.y2c4{bottom:1006.598667pt;}
.y208{bottom:1006.599200pt;}
.y180{bottom:1006.600133pt;}
.y108{bottom:1006.600267pt;}
.y1a2{bottom:1006.610133pt;}
.y25a{bottom:1006.616400pt;}
.y19c{bottom:1006.619733pt;}
.y2c{bottom:1009.860000pt;}
.y2b{bottom:1022.660000pt;}
.h33{height:10.837333pt;}
.h8{height:14.723786pt;}
.h6{height:17.000371pt;}
.h3b{height:22.800652pt;}
.h9{height:25.255208pt;}
.h37{height:26.342553pt;}
.h2{height:27.197917pt;}
.h27{height:27.773438pt;}
.h26{height:27.792969pt;}
.h28{height:27.802035pt;}
.h34{height:28.233570pt;}
.h32{height:28.656114pt;}
.h36{height:28.922598pt;}
.he{height:29.140625pt;}
.h7{height:29.160156pt;}
.hd{height:29.169756pt;}
.h13{height:29.645833pt;}
.h2f{height:29.951123pt;}
.h31{height:30.185427pt;}
.h2a{height:30.431297pt;}
.h12{height:31.083333pt;}
.h11{height:31.104167pt;}
.h38{height:31.350605pt;}
.h14{height:32.145218pt;}
.h3a{height:36.359045pt;}
.h10{height:37.057292pt;}
.h18{height:37.979944pt;}
.h22{height:38.239126pt;}
.h20{height:38.254634pt;}
.h15{height:38.394759pt;}
.hf{height:38.828125pt;}
.hb{height:38.854167pt;}
.hc{height:38.859942pt;}
.ha{height:38.880208pt;}
.h2c{height:39.200000pt;}
.h2d{height:39.202667pt;}
.h2e{height:41.813333pt;}
.h35{height:43.161727pt;}
.h29{height:44.342320pt;}
.h30{height:45.065070pt;}
.h2b{height:46.593750pt;}
.h39{height:47.045709pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h16{height:51.304766pt;}
.h3c{height:51.903496pt;}
.h21{height:53.395888pt;}
.h25{height:54.472969pt;}
.h17{height:55.445958pt;}
.h23{height:63.566300pt;}
.h3d{height:69.234041pt;}
.h19{height:71.239065pt;}
.h1a{height:71.290427pt;}
.h1e{height:75.783359pt;}
.h4{height:81.927344pt;}
.h1c{height:113.049050pt;}
.h24{height:113.352766pt;}
.h1f{height:200.904480pt;}
.h1b{height:215.894032pt;}
.h1d{height:669.992000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w3{width:13.721333pt;}
.w2{width:558.585333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x4c{left:69.921200pt;}
.x71{left:79.866000pt;}
.x6f{left:82.239733pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x3b{left:88.818933pt;}
.x6b{left:91.226667pt;}
.x4{left:94.488133pt;}
.x66{left:96.634267pt;}
.x64{left:98.271467pt;}
.x7e{left:99.218906pt;}
.x22{left:106.417333pt;}
.x90{left:107.486667pt;}
.x5f{left:108.840667pt;}
.x6c{left:110.215606pt;}
.x3{left:111.491467pt;}
.x2c{left:113.065733pt;}
.x28{left:115.725200pt;}
.x6{left:117.170133pt;}
.x65{left:126.424611pt;}
.x35{left:128.985333pt;}
.x56{left:130.381200pt;}
.x83{left:133.343467pt;}
.x29{left:134.641616pt;}
.x8f{left:135.603867pt;}
.x23{left:142.427600pt;}
.x38{left:147.542533pt;}
.x32{left:149.634267pt;}
.x73{left:151.719067pt;}
.x63{left:157.364667pt;}
.x2a{left:160.945333pt;}
.x9f{left:164.513200pt;}
.xb3{left:172.698133pt;}
.x1a{left:182.659328pt;}
.xa1{left:184.565067pt;}
.xa0{left:185.653067pt;}
.x5{left:189.223467pt;}
.x20{left:193.159333pt;}
.x1b{left:196.084041pt;}
.x18{left:198.162933pt;}
.x6a{left:206.546933pt;}
.x27{left:210.001867pt;}
.x1c{left:213.666539pt;}
.x19{left:215.304988pt;}
.x21{left:216.790999pt;}
.x97{left:226.806533pt;}
.x26{left:229.162400pt;}
.x34{left:233.335846pt;}
.x33{left:237.326000pt;}
.xa2{left:247.946400pt;}
.xae{left:261.663733pt;}
.x15{left:264.189333pt;}
.xad{left:266.549067pt;}
.x98{left:268.737200pt;}
.x24{left:275.449600pt;}
.x7d{left:276.814479pt;}
.x99{left:283.499867pt;}
.x25{left:293.001995pt;}
.x11{left:293.937200pt;}
.x8e{left:295.579067pt;}
.x82{left:300.081733pt;}
.x1d{left:306.723406pt;}
.x14{left:311.195067pt;}
.x4d{left:319.151200pt;}
.x86{left:323.891600pt;}
.x9a{left:325.430533pt;}
.xaa{left:326.591733pt;}
.x2e{left:329.058667pt;}
.x3c{left:338.048933pt;}
.x78{left:340.515472pt;}
.xa9{left:342.143733pt;}
.x2b{left:343.549333pt;}
.x2f{left:347.378000pt;}
.x70{left:355.562667pt;}
.x50{left:359.551200pt;}
.x4e{left:361.771200pt;}
.x4f{left:367.641200pt;}
.x8d{left:368.976267pt;}
.x87{left:371.682000pt;}
.x5b{left:374.130400pt;}
.x3f{left:378.448933pt;}
.x3d{left:380.668933pt;}
.x3e{left:386.538933pt;}
.x48{left:393.068933pt;}
.xaf{left:394.623733pt;}
.x9b{left:400.662533pt;}
.x81{left:402.943067pt;}
.x9{left:404.481333pt;}
.xb{left:406.298133pt;}
.xa6{left:410.175733pt;}
.x72{left:411.859189pt;}
.x76{left:413.651304pt;}
.x85{left:419.290000pt;}
.x84{left:422.161200pt;}
.x6d{left:423.199333pt;}
.x39{left:425.195867pt;}
.x7{left:427.090133pt;}
.x17{left:429.232652pt;}
.x93{left:431.011467pt;}
.x16{left:433.361333pt;}
.x79{left:434.293972pt;}
.xc{left:436.538133pt;}
.x6e{left:442.527467pt;}
.x51{left:444.301200pt;}
.x75{left:445.357067pt;}
.x7c{left:446.315929pt;}
.xb5{left:447.867600pt;}
.x3a{left:455.449200pt;}
.x5c{left:456.940400pt;}
.x5e{left:459.440667pt;}
.x40{left:463.198933pt;}
.x2d{left:468.092133pt;}
.x9c{left:469.697200pt;}
.xa7{left:473.322400pt;}
.x7b{left:477.189471pt;}
.x49{left:478.378933pt;}
.x41{left:481.658933pt;}
.x7a{left:483.838183pt;}
.x77{left:486.949962pt;}
.x69{left:488.862133pt;}
.x52{left:508.361200pt;}
.x57{left:513.081200pt;}
.x58{left:514.471200pt;}
.x89{left:515.576533pt;}
.x92{left:518.280933pt;}
.x9d{left:522.827867pt;}
.xf{left:526.425842pt;}
.x53{left:528.901200pt;}
.x8a{left:531.462792pt;}
.xe{left:532.503959pt;}
.x46{left:533.398933pt;}
.x30{left:536.335600pt;}
.xac{left:541.557067pt;}
.x8b{left:543.002267pt;}
.xd{left:544.472667pt;}
.xab{left:546.239733pt;}
.x13{left:547.133487pt;}
.x74{left:549.193067pt;}
.x31{left:550.517867pt;}
.x1e{left:556.260981pt;}
.x68{left:564.267968pt;}
.x60{left:567.849067pt;}
.x67{left:571.833504pt;}
.x12{left:576.519867pt;}
.x94{left:579.611600pt;}
.x62{left:581.518400pt;}
.x10{left:582.827685pt;}
.x59{left:584.241200pt;}
.x95{left:585.190303pt;}
.x5d{left:587.830667pt;}
.x37{left:589.770933pt;}
.x8c{left:590.791333pt;}
.x54{left:594.211200pt;}
.x42{left:595.478933pt;}
.xb2{left:598.730400pt;}
.xa3{left:602.570400pt;}
.x1f{left:606.207255pt;}
.xa8{left:609.589067pt;}
.x61{left:611.109467pt;}
.x43{left:613.108933pt;}
.xb1{left:614.282400pt;}
.x2{left:616.324800pt;}
.x9e{left:620.939867pt;}
.x80{left:623.754384pt;}
.x91{left:630.090800pt;}
.x55{left:640.641200pt;}
.xb4{left:641.541733pt;}
.x5a{left:645.381200pt;}
.x36{left:647.460000pt;}
.x88{left:649.762667pt;}
.x44{left:659.538933pt;}
.x96{left:661.211867pt;}
.x4a{left:664.298933pt;}
.x4b{left:665.688933pt;}
.x7f{left:668.789463pt;}
.xa5{left:670.602400pt;}
.xa4{left:675.423733pt;}
.x45{left:679.248933pt;}
.x47{left:682.908933pt;}
.xb0{left:686.314400pt;}
}




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