
    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_28d373a71cf7f9bab007681b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9df9cea99c014ff02c921bea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_10c8559f798e84e89f26c9e2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717000;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_59a817d5a8b4424054bba0e9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_14934fb0a8af71502f522af8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_71c7660fe2a687a7c9de3ca8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_3922f6c9e0b8b46a2d7de0ab.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.899000;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_7532b323926ea5632ab4a0b0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.635000;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_475228ba02c7c20a2a727450.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_8641856a64a8a95bf0f7050a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.431000;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_58b4a50a2864ef6e56a7d441.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.898000;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_4f098df928ea1359519b7f81.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.717000;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_e5bac5705f35cb6681586a2f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_0990cf668052aaff183ac590.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.685000;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_3dd568e4e9aa10e9b3c2fb97.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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_bde5de294c57192e0a427bdc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.919000;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_a3c13d87e18c32c665c59a3e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.999000;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_a164e3dc8a9bc978037a7a98.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;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_43d371b689545266f41e8a89.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;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_d0fd7a6debe0b907f8e141c9.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;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_d5f4d4a595f725d441ce35ad.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;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_2ba603042df62dc487a87992.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.999000;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_42de22d6c152d0652f851f65.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910000;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_763b34faaa420a734741badf.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.999000;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_860798e53ff2ab0f22779303.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000000;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_d8add254a4a9d1dd74dc1ae2.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;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_ae67c630809e5ef638b0244f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.923000;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_3fb6dd7c68806a2b1c00a802.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.685000;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_0d63e02a4b5bdf6b09f26d2c.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000000;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_0ba687ee40a53025938f714f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.872000;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_611fb55843d3ced371ae44aa.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_b24cffcbdb774ccdd2e5ee68.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.717000;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_dae343ea5c79825c11a1d139.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_f9fd4f76f6c4662c856aeee1.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.453000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.ve{vertical-align:-27.030000px;}
.v1{vertical-align:-25.104000px;}
.va{vertical-align:-22.854000px;}
.v24{vertical-align:-18.492000px;}
.vb{vertical-align:-9.822000px;}
.v2{vertical-align:-5.976000px;}
.v21{vertical-align:-1.182000px;}
.v0{vertical-align:0.000000px;}
.v1b{vertical-align:2.736000px;}
.v5{vertical-align:6.474000px;}
.v13{vertical-align:8.358000px;}
.v10{vertical-align:10.398000px;}
.v26{vertical-align:11.952000px;}
.v8{vertical-align:14.778000px;}
.vc{vertical-align:16.182000px;}
.v12{vertical-align:18.756000px;}
.v11{vertical-align:19.962000px;}
.v1d{vertical-align:21.690000px;}
.v3{vertical-align:22.854000px;}
.v7{vertical-align:24.684000px;}
.v22{vertical-align:26.400000px;}
.v4{vertical-align:27.498000px;}
.v6{vertical-align:29.328000px;}
.v1c{vertical-align:31.050000px;}
.vf{vertical-align:34.500000px;}
.v23{vertical-align:36.474000px;}
.v1e{vertical-align:38.040000px;}
.v9{vertical-align:39.462000px;}
.v16{vertical-align:42.108000px;}
.vd{vertical-align:43.212000px;}
.v17{vertical-align:44.898000px;}
.v15{vertical-align:46.986000px;}
.v14{vertical-align:48.024000px;}
.v1f{vertical-align:50.682000px;}
.v20{vertical-align:54.198000px;}
.v29{vertical-align:56.790000px;}
.v28{vertical-align:58.206000px;}
.v19{vertical-align:68.028000px;}
.v18{vertical-align:71.928000px;}
.v25{vertical-align:85.704000px;}
.v1a{vertical-align:89.184000px;}
.v27{vertical-align:103.104000px;}
.ls9{letter-spacing:0.000000px;}
.lsd6{letter-spacing:0.000468px;}
.lsfd{letter-spacing:0.000476px;}
.lsd{letter-spacing:0.000611px;}
.ls36{letter-spacing:0.001038px;}
.ls8c{letter-spacing:0.001044px;}
.lsde{letter-spacing:0.001050px;}
.ls82{letter-spacing:0.001209px;}
.lsea{letter-spacing:0.001590px;}
.ls2f{letter-spacing:0.001593px;}
.ls41{letter-spacing:0.001597px;}
.lsa8{letter-spacing:0.002012px;}
.ls2a{letter-spacing:0.002147px;}
.ls71{letter-spacing:0.002250px;}
.ls48{letter-spacing:0.002481px;}
.ls9b{letter-spacing:0.002640px;}
.ls79{letter-spacing:0.002661px;}
.ls4d{letter-spacing:0.002682px;}
.ls9e{letter-spacing:0.002698px;}
.ls22{letter-spacing:0.002700px;}
.ls34{letter-spacing:0.002706px;}
.ls8a{letter-spacing:0.003181px;}
.ls13{letter-spacing:0.003269px;}
.ls19{letter-spacing:0.004338px;}
.ls88{letter-spacing:0.004528px;}
.lsd4{letter-spacing:0.004893px;}
.ls1{letter-spacing:0.005017px;}
.lsd8{letter-spacing:0.005253px;}
.ls49{letter-spacing:0.005357px;}
.lsd9{letter-spacing:0.006355px;}
.lsfa{letter-spacing:0.007044px;}
.ls23{letter-spacing:0.008084px;}
.ls103{letter-spacing:0.009020px;}
.ls26{letter-spacing:0.009063px;}
.ls107{letter-spacing:0.009901px;}
.lsdc{letter-spacing:0.010215px;}
.ls85{letter-spacing:0.010829px;}
.lsf6{letter-spacing:0.011192px;}
.ls5e{letter-spacing:0.011905px;}
.lsce{letter-spacing:0.012791px;}
.lsee{letter-spacing:0.014563px;}
.ls51{letter-spacing:0.014968px;}
.ls30{letter-spacing:0.015551px;}
.ls31{letter-spacing:0.016063px;}
.ls62{letter-spacing:0.016270px;}
.lse2{letter-spacing:0.016326px;}
.ls106{letter-spacing:0.016428px;}
.lse9{letter-spacing:0.017051px;}
.lse4{letter-spacing:0.018383px;}
.lse1{letter-spacing:0.024834px;}
.ls77{letter-spacing:0.026454px;}
.lsb5{letter-spacing:0.261818px;}
.ls2d{letter-spacing:0.327273px;}
.lsfc{letter-spacing:0.458182px;}
.lsd3{letter-spacing:0.478205px;}
.ls92{letter-spacing:1.283226px;}
.lsac{letter-spacing:1.291156px;}
.ls8e{letter-spacing:1.407603px;}
.ls86{letter-spacing:1.413603px;}
.ls6{letter-spacing:1.535856px;}
.ls74{letter-spacing:1.631085px;}
.lsf{letter-spacing:1.646702px;}
.ls47{letter-spacing:1.661781px;}
.ls68{letter-spacing:1.665050px;}
.ls10{letter-spacing:1.670136px;}
.ls76{letter-spacing:1.676136px;}
.lsdb{letter-spacing:1.712830px;}
.lsc6{letter-spacing:1.783110px;}
.ls39{letter-spacing:1.783121px;}
.lsf2{letter-spacing:1.793370px;}
.ls52{letter-spacing:1.793542px;}
.ls54{letter-spacing:1.795581px;}
.lsb8{letter-spacing:1.797174px;}
.ls3b{letter-spacing:1.801581px;}
.ls81{letter-spacing:1.802588px;}
.ls3c{letter-spacing:1.802609px;}
.ls1d{letter-spacing:1.803170px;}
.lsb1{letter-spacing:1.805876px;}
.lsc4{letter-spacing:1.808887px;}
.lsbd{letter-spacing:1.812139px;}
.ls4b{letter-spacing:1.814137px;}
.lsbc{letter-spacing:1.816282px;}
.lsca{letter-spacing:1.816843px;}
.lsf3{letter-spacing:1.819576px;}
.ls1a{letter-spacing:1.820137px;}
.ls7e{letter-spacing:1.820418px;}
.ls3d{letter-spacing:1.822837px;}
.ls59{letter-spacing:1.822843px;}
.lsf1{letter-spacing:1.828211px;}
.lsf0{letter-spacing:1.830950px;}
.ls1f{letter-spacing:1.832628px;}
.ls3a{letter-spacing:1.833839px;}
.ls58{letter-spacing:1.844534px;}
.ls57{letter-spacing:1.852118px;}
.ls56{letter-spacing:2.290911px;}
.ls5b{letter-spacing:2.330601px;}
.lse5{letter-spacing:2.356366px;}
.lsba{letter-spacing:2.487275px;}
.ls9c{letter-spacing:2.979890px;}
.ls61{letter-spacing:2.984915px;}
.ls2b{letter-spacing:2.985072px;}
.ls97{letter-spacing:2.986031px;}
.lscf{letter-spacing:2.986059px;}
.ls67{letter-spacing:2.987320px;}
.ls2{letter-spacing:2.988125px;}
.ls8{letter-spacing:2.988532px;}
.lsd5{letter-spacing:2.988615px;}
.ls14{letter-spacing:2.988710px;}
.lsf8{letter-spacing:2.989115px;}
.ls18{letter-spacing:2.989223px;}
.lsd7{letter-spacing:2.989409px;}
.ls63{letter-spacing:2.989739px;}
.ls21{letter-spacing:2.990915px;}
.lsc9{letter-spacing:2.991017px;}
.ls29{letter-spacing:2.991072px;}
.lscd{letter-spacing:2.992059px;}
.lsc2{letter-spacing:2.994710px;}
.ls2e{letter-spacing:2.995223px;}
.lsc1{letter-spacing:3.157578px;}
.lsec{letter-spacing:3.338185px;}
.lsb4{letter-spacing:3.454878px;}
.ls28{letter-spacing:3.606914px;}
.ls33{letter-spacing:3.612914px;}
.ls37{letter-spacing:3.620593px;}
.lsa7{letter-spacing:3.771239px;}
.lsae{letter-spacing:4.256531px;}
.lsad{letter-spacing:4.262531px;}
.ls3{letter-spacing:4.275980px;}
.ls64{letter-spacing:4.276379px;}
.lsf7{letter-spacing:4.655259px;}
.lscb{letter-spacing:4.681597px;}
.lsc7{letter-spacing:4.687597px;}
.ls43{letter-spacing:5.220499px;}
.lsb2{letter-spacing:5.300063px;}
.ls7c{letter-spacing:5.300624px;}
.lscc{letter-spacing:5.311591px;}
.lsc3{letter-spacing:5.317030px;}
.lsb0{letter-spacing:5.317591px;}
.ls7f{letter-spacing:5.325615px;}
.lsb6{letter-spacing:5.337895px;}
.ls27{letter-spacing:5.443358px;}
.ls35{letter-spacing:5.449358px;}
.ls89{letter-spacing:5.976532px;}
.lsf9{letter-spacing:5.982532px;}
.ls4f{letter-spacing:6.545460px;}
.lsa9{letter-spacing:7.069097px;}
.ls5{letter-spacing:7.155187px;}
.ls4c{letter-spacing:8.083860px;}
.lsa5{letter-spacing:9.982525px;}
.ls100{letter-spacing:10.633578px;}
.lsaa{letter-spacing:10.910012px;}
.lsa0{letter-spacing:10.930918px;}
.lsc{letter-spacing:13.270183px;}
.lsa4{letter-spacing:13.629954px;}
.ls1e{letter-spacing:14.530921px;}
.ls60{letter-spacing:14.596376px;}
.ls9f{letter-spacing:14.782200px;}
.ls96{letter-spacing:14.788200px;}
.lsc5{letter-spacing:16.272710px;}
.lsb{letter-spacing:16.617617px;}
.ls5c{letter-spacing:17.203860px;}
.lsf5{letter-spacing:17.209860px;}
.lsaf{letter-spacing:17.528915px;}
.ls5f{letter-spacing:17.534915px;}
.ls3e{letter-spacing:17.539223px;}
.lse0{letter-spacing:18.130924px;}
.ls8b{letter-spacing:18.183181px;}
.ls17{letter-spacing:18.196379px;}
.ls108{letter-spacing:19.591409px;}
.ls104{letter-spacing:19.965050px;}
.ls40{letter-spacing:20.342700px;}
.ls42{letter-spacing:20.348700px;}
.lse8{letter-spacing:20.552744px;}
.lsdd{letter-spacing:21.076381px;}
.ls7b{letter-spacing:21.164915px;}
.lsc8{letter-spacing:21.169115px;}
.ls25{letter-spacing:21.169223px;}
.lsdf{letter-spacing:21.169739px;}
.ls5a{letter-spacing:21.170915px;}
.lsa{letter-spacing:21.280114px;}
.lsab{letter-spacing:21.317329px;}
.ls15{letter-spacing:21.419468px;}
.ls78{letter-spacing:21.469109px;}
.ls3f{letter-spacing:21.719412px;}
.ls32{letter-spacing:21.796382px;}
.ls101{letter-spacing:21.861836px;}
.lseb{letter-spacing:21.927291px;}
.ls4e{letter-spacing:22.627860px;}
.lsed{letter-spacing:22.630888px;}
.lsff{letter-spacing:22.698445px;}
.ls6c{letter-spacing:23.301838px;}
.ls45{letter-spacing:23.367292px;}
.ls55{letter-spacing:23.432747px;}
.lsd0{letter-spacing:23.907269px;}
.ls83{letter-spacing:24.162532px;}
.lsda{letter-spacing:24.800915px;}
.ls16{letter-spacing:24.806915px;}
.ls99{letter-spacing:25.772915px;}
.lsfe{letter-spacing:25.903409px;}
.lse3{letter-spacing:26.407739px;}
.lse6{letter-spacing:26.509113px;}
.lsbe{letter-spacing:26.836386px;}
.ls50{letter-spacing:28.341842px;}
.ls102{letter-spacing:28.603660px;}
.ls75{letter-spacing:29.887800px;}
.ls24{letter-spacing:30.436389px;}
.ls73{letter-spacing:33.235234px;}
.lsf4{letter-spacing:35.389860px;}
.ls44{letter-spacing:35.869121px;}
.lsfb{letter-spacing:39.992761px;}
.ls5d{letter-spacing:40.222888px;}
.ls69{letter-spacing:54.345269px;}
.ls95{letter-spacing:56.991739px;}
.ls93{letter-spacing:57.306185px;}
.lsa1{letter-spacing:61.726868px;}
.lsa3{letter-spacing:61.732868px;}
.ls87{letter-spacing:61.806557px;}
.ls8f{letter-spacing:61.812557px;}
.ls9d{letter-spacing:66.461644px;}
.ls11{letter-spacing:67.102362px;}
.lse7{letter-spacing:67.810966px;}
.lsd1{letter-spacing:69.903269px;}
.ls20{letter-spacing:71.641739px;}
.lsb9{letter-spacing:71.647739px;}
.ls105{letter-spacing:74.958602px;}
.lsd2{letter-spacing:84.045269px;}
.ls1b{letter-spacing:89.821739px;}
.lsef{letter-spacing:89.827739px;}
.lsbf{letter-spacing:90.782113px;}
.lsbb{letter-spacing:90.788113px;}
.ls90{letter-spacing:91.926185px;}
.ls53{letter-spacing:95.059739px;}
.ls98{letter-spacing:96.639739px;}
.lsa6{letter-spacing:98.382615px;}
.ls7{letter-spacing:98.886557px;}
.ls9a{letter-spacing:104.872059px;}
.ls94{letter-spacing:105.552557px;}
.ls8d{letter-spacing:105.558557px;}
.ls12{letter-spacing:107.176362px;}
.ls4{letter-spacing:110.166557px;}
.ls6e{letter-spacing:112.472915px;}
.ls7a{letter-spacing:114.379739px;}
.lsc0{letter-spacing:114.385739px;}
.ls66{letter-spacing:117.779363px;}
.lsb3{letter-spacing:119.695739px;}
.lsb7{letter-spacing:119.701739px;}
.ls84{letter-spacing:120.102557px;}
.lse{letter-spacing:123.778362px;}
.ls6b{letter-spacing:130.652915px;}
.ls6d{letter-spacing:132.559739px;}
.ls1c{letter-spacing:132.565739px;}
.ls7d{letter-spacing:134.245739px;}
.ls80{letter-spacing:137.881739px;}
.ls6f{letter-spacing:140.326362px;}
.ls72{letter-spacing:140.386362px;}
.ls2c{letter-spacing:141.840118px;}
.ls38{letter-spacing:144.720121px;}
.lsa2{letter-spacing:168.873737px;}
.ls4a{letter-spacing:218.109352px;}
.ls65{letter-spacing:258.628362px;}
.ls6a{letter-spacing:265.376802px;}
.ls0{letter-spacing:349.381819px;}
.ls70{letter-spacing:426.502362px;}
.ls91{letter-spacing:630.948185px;}
.ls46{letter-spacing:821.715352px;}
.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;}
}
.wse8{word-spacing:-104.846402px;}
.ws93{word-spacing:-65.454600px;}
.ws84{word-spacing:-54.589136px;}
.ws98{word-spacing:-50.923679px;}
.ws66{word-spacing:-47.258221px;}
.wsa1{word-spacing:-46.493462px;}
.ws31{word-spacing:-42.637126px;}
.ws87{word-spacing:-38.937826px;}
.ws72{word-spacing:-36.379667px;}
.ws80{word-spacing:-33.453846px;}
.ws28{word-spacing:-33.223278px;}
.ws42{word-spacing:-33.211407px;}
.ws9a{word-spacing:-32.727300px;}
.ws9c{word-spacing:-32.714209px;}
.ws6d{word-spacing:-31.771663px;}
.ws5a{word-spacing:-31.706208px;}
.ws89{word-spacing:-31.633157px;}
.ws2b{word-spacing:-29.887800px;}
.ws1d{word-spacing:-29.875845px;}
.ws7{word-spacing:-29.388273px;}
.ws27{word-spacing:-28.955301px;}
.ws2c{word-spacing:-27.646998px;}
.wsd7{word-spacing:-25.151463px;}
.ws92{word-spacing:-25.103643px;}
.wsde{word-spacing:-24.506202px;}
.wsad{word-spacing:-24.440748px;}
.wsbe{word-spacing:-22.379985px;}
.wse7{word-spacing:-22.320209px;}
.ws59{word-spacing:-18.183288px;}
.wsb3{word-spacing:-17.149105px;}
.ws25{word-spacing:-16.605662px;}
.wsd4{word-spacing:-16.128013px;}
.wsa3{word-spacing:-16.019861px;}
.ws82{word-spacing:-15.681128px;}
.ws63{word-spacing:-15.676009px;}
.ws83{word-spacing:-15.675128px;}
.ws77{word-spacing:-15.670009px;}
.ws40{word-spacing:-15.381831px;}
.ws18{word-spacing:-15.123227px;}
.wsb4{word-spacing:-14.923649px;}
.wsc9{word-spacing:-14.269103px;}
.ws58{word-spacing:-14.007284px;}
.ws34{word-spacing:-13.876375px;}
.ws3f{word-spacing:-13.810921px;}
.wsb5{word-spacing:-13.686557px;}
.wsa4{word-spacing:-13.221829px;}
.ws24{word-spacing:-13.150632px;}
.ws35{word-spacing:-12.960011px;}
.wsaa{word-spacing:-12.797570px;}
.wsd9{word-spacing:-12.763647px;}
.wsdf{word-spacing:-12.567283px;}
.ws56{word-spacing:-12.305465px;}
.ws6f{word-spacing:-12.041168px;}
.ws41{word-spacing:-12.040304px;}
.ws70{word-spacing:-12.040009px;}
.ws86{word-spacing:-12.037984px;}
.ws81{word-spacing:-12.034304px;}
.ws71{word-spacing:-12.034009px;}
.wsc1{word-spacing:-11.912737px;}
.wsd2{word-spacing:-11.716373px;}
.ws19{word-spacing:-11.716018px;}
.wsd1{word-spacing:-11.650919px;}
.wsc{word-spacing:-11.561276px;}
.wscc{word-spacing:-11.520010px;}
.ws5d{word-spacing:-11.476915px;}
.wscd{word-spacing:-11.454555px;}
.ws4b{word-spacing:-11.323646px;}
.wsa7{word-spacing:-11.258191px;}
.ws3a{word-spacing:-11.192737px;}
.ws55{word-spacing:-11.127282px;}
.wsec{word-spacing:-11.118262px;}
.ws53{word-spacing:-11.061827px;}
.wsa6{word-spacing:-10.996373px;}
.ws2e{word-spacing:-10.930918px;}
.ws2f{word-spacing:-10.865464px;}
.wsa5{word-spacing:-10.800009px;}
.wsf4{word-spacing:-10.759608px;}
.ws49{word-spacing:-10.734554px;}
.ws37{word-spacing:-10.669100px;}
.ws10{word-spacing:-10.646703px;}
.wsce{word-spacing:-10.610191px;}
.ws36{word-spacing:-10.603645px;}
.ws61{word-spacing:-10.538191px;}
.ws3c{word-spacing:-10.472736px;}
.ws52{word-spacing:-10.407281px;}
.wsef{word-spacing:-10.400954px;}
.ws3d{word-spacing:-10.341827px;}
.ws1c{word-spacing:-10.221628px;}
.wsed{word-spacing:-10.167830px;}
.ws1b{word-spacing:-10.102076px;}
.wsd3{word-spacing:-10.086554px;}
.ws2a{word-spacing:-10.042301px;}
.ws6c{word-spacing:-10.021099px;}
.ws4{word-spacing:-9.982525px;}
.wse{word-spacing:-9.947324px;}
.ws1a{word-spacing:-9.922750px;}
.wsf5{word-spacing:-9.868952px;}
.wsf7{word-spacing:-9.803198px;}
.ws23{word-spacing:-9.743423px;}
.wscf{word-spacing:-9.687281px;}
.wsf9{word-spacing:-9.683647px;}
.ws22{word-spacing:-9.623872px;}
.wsf0{word-spacing:-9.510298px;}
.ws7d{word-spacing:-9.425462px;}
.ws54{word-spacing:-9.301099px;}
.wsb{word-spacing:-9.247945px;}
.wsf6{word-spacing:-9.211420px;}
.ws8{word-spacing:-9.194147px;}
.wscb{word-spacing:-9.163644px;}
.wsee{word-spacing:-9.151644px;}
.wsc6{word-spacing:-9.085891px;}
.wsf8{word-spacing:-8.972318px;}
.ws48{word-spacing:-8.901826px;}
.wsfa{word-spacing:-8.852766px;}
.ws4e{word-spacing:-8.705462px;}
.wsdd{word-spacing:-8.574553px;}
.wsea{word-spacing:-8.368584px;}
.ws51{word-spacing:-8.050916px;}
.ws7f{word-spacing:-7.795643px;}
.ws9{word-spacing:-7.795388px;}
.wseb{word-spacing:-7.776806px;}
.ws29{word-spacing:-7.711052px;}
.ws4d{word-spacing:-7.527279px;}
.ws38{word-spacing:-7.330915px;}
.ws39{word-spacing:-7.265461px;}
.wsa9{word-spacing:-7.252370px;}
.wsd{word-spacing:-7.208986px;}
.wsf1{word-spacing:-7.113296px;}
.ws4c{word-spacing:-7.075642px;}
.wsf3{word-spacing:-7.053521px;}
.ws3b{word-spacing:-6.741824px;}
.wsf2{word-spacing:-6.581294px;}
.wse0{word-spacing:-6.283642px;}
.wsd5{word-spacing:-6.043096px;}
.wsc8{word-spacing:-5.956369px;}
.ws5c{word-spacing:-5.890914px;}
.ws2d{word-spacing:-5.825459px;}
.ws5f{word-spacing:-5.563641px;}
.ws5{word-spacing:-5.482057px;}
.wse1{word-spacing:-5.432732px;}
.ws8f{word-spacing:-5.236368px;}
.ws17{word-spacing:-5.027128px;}
.ws57{word-spacing:-4.974550px;}
.ws21{word-spacing:-4.901599px;}
.wse2{word-spacing:-4.778186px;}
.ws60{word-spacing:-4.712731px;}
.ws99{word-spacing:-4.647277px;}
.ws69{word-spacing:-4.581822px;}
.ws6a{word-spacing:-4.516367px;}
.wsba{word-spacing:-4.320004px;}
.wse5{word-spacing:-4.244068px;}
.wse3{word-spacing:-4.189094px;}
.wse4{word-spacing:-4.123640px;}
.ws4a{word-spacing:-3.992731px;}
.ws46{word-spacing:-3.652367px;}
.wsd0{word-spacing:-3.586912px;}
.wsc2{word-spacing:-3.534548px;}
.ws1f{word-spacing:-3.335478px;}
.ws4f{word-spacing:-3.272730px;}
.wsca{word-spacing:-3.207275px;}
.ws50{word-spacing:-2.814548px;}
.ws64{word-spacing:-2.290911px;}
.ws3e{word-spacing:-1.832729px;}
.ws5e{word-spacing:-1.178183px;}
.wsbd{word-spacing:-0.981819px;}
.wse6{word-spacing:-0.717307px;}
.wsdb{word-spacing:-0.654546px;}
.ws2{word-spacing:-0.167372px;}
.ws44{word-spacing:-0.065455px;}
.ws26{word-spacing:-0.059776px;}
.ws6{word-spacing:-0.053798px;}
.ws68{word-spacing:-0.052364px;}
.ws43{word-spacing:-0.047821px;}
.ws95{word-spacing:-0.041843px;}
.ws14{word-spacing:0.000000px;}
.wsab{word-spacing:0.011955px;}
.ws65{word-spacing:0.013091px;}
.wsa8{word-spacing:0.209455px;}
.ws6e{word-spacing:2.415275px;}
.ws15{word-spacing:2.683639px;}
.wsdc{word-spacing:3.141821px;}
.wsc7{word-spacing:3.299613px;}
.wsc3{word-spacing:3.613094px;}
.wsd6{word-spacing:5.136452px;}
.ws5b{word-spacing:8.653098px;}
.wsb2{word-spacing:8.883668px;}
.ws12{word-spacing:9.145728px;}
.ws16{word-spacing:11.429123px;}
.ws7e{word-spacing:12.135332px;}
.ws7c{word-spacing:12.141332px;}
.ws13{word-spacing:15.278746px;}
.wsa2{word-spacing:16.227303px;}
.ws20{word-spacing:16.233303px;}
.wsd8{word-spacing:17.481066px;}
.ws47{word-spacing:17.487038px;}
.ws74{word-spacing:17.491697px;}
.wsb1{word-spacing:18.196379px;}
.wse9{word-spacing:19.561890px;}
.wsb9{word-spacing:19.636380px;}
.wsf{word-spacing:20.281997px;}
.wsc0{word-spacing:21.120151px;}
.ws67{word-spacing:21.123037px;}
.ws90{word-spacing:21.123066px;}
.ws97{word-spacing:21.126151px;}
.ws6b{word-spacing:21.127697px;}
.ws11{word-spacing:21.142771px;}
.wsa{word-spacing:21.196570px;}
.ws1e{word-spacing:23.231089px;}
.ws1{word-spacing:23.384371px;}
.wsbc{word-spacing:24.803741px;}
.ws45{word-spacing:26.685332px;}
.wsb8{word-spacing:26.791788px;}
.ws3{word-spacing:26.827469px;}
.wsb0{word-spacing:29.009479px;}
.ws76{word-spacing:30.315332px;}
.ws62{word-spacing:30.321332px;}
.wsb7{word-spacing:30.514935px;}
.wsda{word-spacing:31.542572px;}
.ws0{word-spacing:32.192873px;}
.ws33{word-spacing:34.370970px;}
.ws79{word-spacing:35.553332px;}
.ws91{word-spacing:42.006452px;}
.wsac{word-spacing:55.509971px;}
.ws8c{word-spacing:59.456255px;}
.ws7b{word-spacing:64.284452px;}
.wsae{word-spacing:66.144452px;}
.ws7a{word-spacing:82.905037px;}
.wsaf{word-spacing:84.543038px;}
.wsb6{word-spacing:84.549037px;}
.ws9e{word-spacing:92.021089px;}
.wsbb{word-spacing:96.393303px;}
.ws9b{word-spacing:97.455037px;}
.ws85{word-spacing:99.137537px;}
.ws75{word-spacing:99.202992px;}
.ws73{word-spacing:101.085038px;}
.ws78{word-spacing:106.329037px;}
.wsc4{word-spacing:108.755615px;}
.ws8b{word-spacing:120.498469px;}
.ws96{word-spacing:178.620325px;}
.wsc5{word-spacing:186.996794px;}
.ws8e{word-spacing:187.703089px;}
.ws8d{word-spacing:212.229303px;}
.ws8a{word-spacing:252.491296px;}
.ws9d{word-spacing:325.340908px;}
.ws9f{word-spacing:485.081089px;}
.wsa0{word-spacing:498.951303px;}
.ws88{word-spacing:724.098469px;}
.wsbf{word-spacing:856.638559px;}
.ws94{word-spacing:884.274325px;}
.ws30{word-spacing:2202.931881px;}
.ws32{word-spacing:2229.132812px;}
._60{margin-left:-75.640084px;}
._53{margin-left:-29.876057px;}
._49{margin-left:-17.591921px;}
._b{margin-left:-16.199973px;}
._58{margin-left:-10.865464px;}
._1{margin-left:-8.091257px;}
._2{margin-left:-5.881958px;}
._5{margin-left:-4.680461px;}
._6{margin-left:-2.705480px;}
._4{margin-left:-1.673717px;}
._3{width:1.205092px;}
._0{width:2.668393px;}
._7{width:4.244853px;}
._48{width:5.420967px;}
._4e{width:6.711745px;}
._59{width:8.132643px;}
._3c{width:18.981834px;}
._9{width:20.706307px;}
._3a{width:22.554928px;}
._67{width:23.910240px;}
._3e{width:24.954077px;}
._a{width:26.485368px;}
._8{width:27.561475px;}
._33{width:29.927542px;}
._47{width:31.440050px;}
._40{width:32.831300px;}
._3d{width:35.869121px;}
._41{width:38.805622px;}
._42{width:41.178134px;}
._5c{width:42.498083px;}
._43{width:44.901856px;}
._45{width:46.003214px;}
._3b{width:47.707993px;}
._4d{width:49.073290px;}
._63{width:52.542752px;}
._46{width:56.460411px;}
._56{width:59.304659px;}
._51{width:60.956932px;}
._3f{width:63.916945px;}
._54{width:66.257329px;}
._61{width:67.402978px;}
._44{width:69.449668px;}
._5a{width:85.090980px;}
._50{width:109.741901px;}
._65{width:115.665786px;}
._57{width:141.285454px;}
._55{width:178.676540px;}
._62{width:185.738368px;}
._5b{width:203.035122px;}
._64{width:251.356398px;}
._4b{width:263.073442px;}
._5d{width:267.593855px;}
._5e{width:271.172400px;}
._52{width:290.618134px;}
._66{width:364.033404px;}
._4c{width:376.922400px;}
._5f{width:397.447964px;}
._1a{width:403.240814px;}
._4a{width:421.023442px;}
._20{width:566.674396px;}
._4f{width:585.755458px;}
._35{width:899.837116px;}
._2c{width:916.760254px;}
._11{width:1009.182149px;}
._36{width:1072.819895px;}
._16{width:1113.924740px;}
._d{width:1122.062486px;}
._e{width:1125.674633px;}
._1d{width:1131.770866px;}
._1f{width:1175.221322px;}
._2a{width:1198.835187px;}
._2d{width:1201.807553px;}
._19{width:1207.818907px;}
._25{width:1223.009045px;}
._31{width:1227.269421px;}
._1e{width:1324.451813px;}
._37{width:1409.036107px;}
._12{width:1411.523827px;}
._29{width:1423.611086px;}
._21{width:1474.547651px;}
._28{width:1478.652408px;}
._2e{width:1480.925114px;}
._1b{width:1503.441497px;}
._14{width:1513.259687px;}
._39{width:1548.546769px;}
._13{width:1552.687557px;}
._f{width:1558.709380px;}
._34{width:1591.763509px;}
._38{width:1604.929132px;}
._27{width:1618.087145px;}
._26{width:1646.933225px;}
._30{width:1714.259100px;}
._1c{width:1726.118046px;}
._17{width:1735.225191px;}
._22{width:1736.833453px;}
._23{width:1764.221579px;}
._10{width:1812.345955px;}
._2b{width:1843.448527px;}
._2f{width:1919.461036px;}
._32{width:2008.629055px;}
._18{width:2013.071012px;}
._15{width:2045.798312px;}
._24{width:2067.405383px;}
._c{width:2237.718731px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fs9{font-size:41.842800px;}
.fs8{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs7{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs3{font-size:117.160200px;}
.fs2{font-size:167.372400px;}
.y0{bottom:0.000000px;}
.y205{bottom:154.336500px;}
.y17a{bottom:156.268500px;}
.yb9{bottom:156.661500px;}
.y138{bottom:158.412000px;}
.y55{bottom:160.314000px;}
.yb8{bottom:160.707000px;}
.y38{bottom:173.425500px;}
.y204{bottom:176.631000px;}
.y18{bottom:184.255500px;}
.y17{bottom:185.874000px;}
.y11c{bottom:188.499000px;}
.y197{bottom:190.800000px;}
.y1a9{bottom:193.525500px;}
.yf9{bottom:195.724500px;}
.yb7{bottom:199.639500px;}
.y179{bottom:204.174000px;}
.y84{bottom:204.994500px;}
.y1ee{bottom:205.834500px;}
.y54{bottom:207.547500px;}
.y1d1{bottom:208.005000px;}
.ye3{bottom:208.375500px;}
.y21b{bottom:208.431000px;}
.y83{bottom:209.040000px;}
.y21a{bottom:209.310000px;}
.y16{bottom:210.532500px;}
.y137{bottom:211.258500px;}
.y159{bottom:212.059500px;}
.y219{bottom:213.355500px;}
.yd2{bottom:214.486500px;}
.y9f{bottom:214.671000px;}
.y136{bottom:215.304000px;}
.y203{bottom:216.597000px;}
.y1bf{bottom:219.384000px;}
.y1be{bottom:221.286000px;}
.y11b{bottom:222.153000px;}
.y11a{bottom:223.900500px;}
.y177{bottom:236.809500px;}
.y15{bottom:238.177500px;}
.y53{bottom:238.225500px;}
.yb6{bottom:238.573500px;}
.ye2{bottom:238.861500px;}
.y196{bottom:243.138000px;}
.y178{bottom:243.988500px;}
.y244{bottom:245.557500px;}
.y1a8{bottom:248.625000px;}
.y119{bottom:249.051000px;}
.y118{bottom:250.798500px;}
.y1ed{bottom:251.355000px;}
.y231{bottom:251.770500px;}
.yf7{bottom:254.244000px;}
.y1d0{bottom:255.696000px;}
.y176{bottom:257.202000px;}
.y82{bottom:257.766000px;}
.y175{bottom:259.104000px;}
.y14{bottom:262.836000px;}
.y158{bottom:265.656000px;}
.y218{bottom:266.395500px;}
.y52{bottom:268.903500px;}
.y9e{bottom:269.028000px;}
.y202{bottom:269.712000px;}
.y135{bottom:270.295500px;}
.y1bd{bottom:273.031500px;}
.y117{bottom:275.950500px;}
.yb5{bottom:277.506000px;}
.y116{bottom:277.698000px;}
.y157{bottom:280.267500px;}
.y230{bottom:282.256500px;}
.y156{bottom:284.313000px;}
.y37{bottom:286.413000px;}
.yd1{bottom:289.269000px;}
.y13{bottom:290.482500px;}
.ye1{bottom:290.985000px;}
.y174{bottom:291.892500px;}
.y243{bottom:294.447000px;}
.y1ec{bottom:294.973500px;}
.y195{bottom:296.214000px;}
.y1eb{bottom:296.875500px;}
.y133{bottom:298.326000px;}
.y134{bottom:298.878000px;}
.y51{bottom:299.581500px;}
.y132{bottom:300.780000px;}
.y9d{bottom:301.990500px;}
.y1cf{bottom:303.387000px;}
.y193{bottom:303.393000px;}
.y1a7{bottom:303.724500px;}
.y115{bottom:305.194500px;}
.y81{bottom:306.199500px;}
.y192{bottom:307.438500px;}
.y11{bottom:313.521000px;}
.y10{bottom:315.139500px;}
.y194{bottom:315.946500px;}
.y217{bottom:316.551000px;}
.y36{bottom:316.897500px;}
.y12{bottom:320.853000px;}
.y216{bottom:321.475500px;}
.y242{bottom:324.933000px;}
.yb4{bottom:329.251500px;}
.y155{bottom:330.091500px;}
.y50{bottom:330.259500px;}
.y173{bottom:331.707000px;}
.y9c{bottom:332.476500px;}
.y22f{bottom:335.083500px;}
.y172{bottom:335.752500px;}
.y201{bottom:338.458500px;}
.ye0{bottom:339.523500px;}
.y1ea{bottom:342.396000px;}
.yf{bottom:342.786000px;}
.y1bc{bottom:342.877500px;}
.yd0{bottom:346.833000px;}
.y35{bottom:347.383500px;}
.y114{bottom:350.551500px;}
.y80{bottom:350.880000px;}
.y1ce{bottom:351.079500px;}
.y131{bottom:351.726000px;}
.y7f{bottom:354.925500px;}
.y130{bottom:355.771500px;}
.y1a6{bottom:357.504000px;}
.y4f{bottom:360.937500px;}
.y191{bottom:361.422000px;}
.y1a5{bottom:361.549500px;}
.y153{bottom:361.663500px;}
.y9b{bottom:362.962500px;}
.ye{bottom:365.824500px;}
.yd{bottom:367.443000px;}
.y152{bottom:368.787000px;}
.y1e9{bottom:372.880500px;}
.y241{bottom:373.822500px;}
.y215{bottom:374.515500px;}
.y154{bottom:375.966000px;}
.y171{bottom:379.612500px;}
.y150{bottom:380.011500px;}
.y1bb{bottom:383.316000px;}
.y151{bottom:384.634500px;}
.y34{bottom:387.760500px;}
.y9a{bottom:389.290500px;}
.y200{bottom:389.494500px;}
.ydf{bottom:391.008000px;}
.yc{bottom:392.101500px;}
.y99{bottom:393.448500px;}
.y113{bottom:395.256000px;}
.y1cd{bottom:398.770500px;}
.y69{bottom:399.267000px;}
.y112{bottom:399.301500px;}
.y22e{bottom:402.175500px;}
.y7e{bottom:403.651500px;}
.y240{bottom:404.308500px;}
.ycf{bottom:404.397000px;}
.y4e{bottom:408.171000px;}
.y190{bottom:409.813500px;}
.y12f{bottom:410.761500px;}
.yf8{bottom:410.926500px;}
.y1e8{bottom:412.387500px;}
.y33{bottom:414.660000px;}
.y1a4{bottom:416.649000px;}
.y1ba{bottom:419.707500px;}
.yb{bottom:419.748000px;}
.y1b9{bottom:423.753000px;}
.yde{bottom:424.660500px;}
.y214{bottom:425.550000px;}
.y14f{bottom:425.791500px;}
.ydd{bottom:426.408000px;}
.yb3{bottom:427.843500px;}
.y213{bottom:429.595500px;}
.y170{bottom:431.358000px;}
.y4d{bottom:438.849000px;}
.y1ff{bottom:442.611000px;}
.y1e7{bottom:442.873500px;}
.ya{bottom:444.405000px;}
.y22d{bottom:445.851000px;}
.y68{bottom:446.116500px;}
.y1cc{bottom:446.461500px;}
.y111{bottom:447.595500px;}
.y98{bottom:447.670500px;}
.y7d{bottom:452.085000px;}
.y32{bottom:452.809500px;}
.y23f{bottom:453.198000px;}
.ydc{bottom:453.307500px;}
.y31{bottom:456.504000px;}
.y14d{bottom:457.362000px;}
.yce{bottom:461.961000px;}
.y18f{bottom:462.151500px;}
.y1b8{bottom:462.288000px;}
.y1b7{bottom:464.190000px;}
.y14c{bottom:464.485500px;}
.y12e{bottom:465.195000px;}
.yb2{bottom:466.777500px;}
.y4c{bottom:469.527000px;}
.y1a3{bottom:471.120000px;}
.y14e{bottom:471.664500px;}
.y1e6{bottom:473.359500px;}
.y14a{bottom:475.710000px;}
.y67{bottom:476.602500px;}
.ydb{bottom:480.207000px;}
.y14b{bottom:480.333000px;}
.y22c{bottom:480.819000px;}
.y212{bottom:482.635500px;}
.y9{bottom:491.260500px;}
.y16f{bottom:491.791500px;}
.y110{bottom:491.886000px;}
.y10f{bottom:492.300000px;}
.y1cb{bottom:494.152500px;}
.y10e{bottom:496.345500px;}
.y30{bottom:498.346500px;}
.y4b{bottom:500.205000px;}
.y7c{bottom:500.811000px;}
.y23e{bottom:502.089000px;}
.y1e5{bottom:503.863500px;}
.yb1{bottom:505.710000px;}
.y66{bottom:507.088500px;}
.ycc{bottom:507.367500px;}
.yda{bottom:507.703500px;}
.y1fe{bottom:511.357500px;}
.ycd{bottom:514.548000px;}
.y262{bottom:515.233500px;}
.y22b{bottom:515.788500px;}
.y1b6{bottom:515.935500px;}
.ycb{bottom:518.593500px;}
.y149{bottom:521.490000px;}
.y16e{bottom:522.277500px;}
.y97{bottom:522.744000px;}
.y2f{bottom:525.246000px;}
.y18e{bottom:526.452000px;}
.y4a{bottom:530.883000px;}
.y211{bottom:533.670000px;}
.y1e4{bottom:534.348000px;}
.y65{bottom:537.574500px;}
.y210{bottom:537.715500px;}
.y12d{bottom:541.476000px;}
.y1ca{bottom:541.843500px;}
.y261{bottom:542.133000px;}
.y8{bottom:543.672000px;}
.y10d{bottom:544.638000px;}
.yb0{bottom:544.644000px;}
.y1a2{bottom:547.609500px;}
.y7b{bottom:549.538500px;}
.y2e{bottom:552.144000px;}
.y16d{bottom:552.763500px;}
.y96{bottom:553.230000px;}
.yd9{bottom:554.704500px;}
.y23d{bottom:556.846500px;}
.yf5{bottom:561.141000px;}
.y22a{bottom:561.486000px;}
.y49{bottom:561.561000px;}
.yf4{bottom:563.184000px;}
.y1fd{bottom:563.638500px;}
.y18c{bottom:564.520500px;}
.y260{bottom:569.031000px;}
.y7{bottom:570.570000px;}
.y18d{bottom:571.701000px;}
.y12c{bottom:571.962000px;}
.yca{bottom:572.797500px;}
.y148{bottom:573.235500px;}
.y1e3{bottom:577.281000px;}
.y1a1{bottom:578.094000px;}
.y2d{bottom:579.043500px;}
.yf6{bottom:579.133500px;}
.y1e2{bottom:581.326500px;}
.y94{bottom:581.814000px;}
.yaf{bottom:583.576500px;}
.y93{bottom:583.716000px;}
.y64{bottom:584.424000px;}
.y18b{bottom:586.815000px;}
.y1c9{bottom:589.534500px;}
.y95{bottom:589.653000px;}
.y20f{bottom:590.757000px;}
.y48{bottom:592.239000px;}
.y10c{bottom:593.388000px;}
.y1b5{bottom:595.140000px;}
.y25f{bottom:595.930500px;}
.y6{bottom:597.469500px;}
.y7a{bottom:597.970500px;}
.y12b{bottom:602.446500px;}
.y16c{bottom:604.509000px;}
.y2c{bottom:605.943000px;}
.y1a0{bottom:608.580000px;}
.y229{bottom:608.688000px;}
.y23c{bottom:609.283500px;}
.yd6{bottom:610.744500px;}
.yd5{bottom:612.492000px;}
.y228{bottom:612.733500px;}
.y92{bottom:614.200500px;}
.y1fc{bottom:615.921000px;}
.yae{bottom:622.510500px;}
.y25e{bottom:622.830000px;}
.y18a{bottom:624.447000px;}
.yc9{bottom:626.970000px;}
.y1e1{bottom:628.305000px;}
.y79{bottom:629.058000px;}
.y63{bottom:631.273500px;}
.y16b{bottom:631.407000px;}
.yf3{bottom:631.573500px;}
.y2b{bottom:632.842500px;}
.y12a{bottom:635.622000px;}
.y47{bottom:639.472500px;}
.y10b{bottom:641.682000px;}
.y1c8{bottom:641.733000px;}
.y20e{bottom:644.541000px;}
.y91{bottom:644.686500px;}
.y25d{bottom:649.729500px;}
.y147{bottom:656.841000px;}
.y1e0{bottom:658.791000px;}
.y78{bottom:659.544000px;}
.y1b3{bottom:660.349500px;}
.y227{bottom:662.901000px;}
.y19f{bottom:663.051000px;}
.y129{bottom:666.108000px;}
.y1fb{bottom:668.202000px;}
.y189{bottom:669.103500px;}
.y2a{bottom:670.990500px;}
.y188{bottom:673.149000px;}
.y1b4{bottom:673.399500px;}
.y23b{bottom:674.154000px;}
.yad{bottom:674.256000px;}
.y29{bottom:674.685000px;}
.y90{bottom:675.172500px;}
.y25c{bottom:676.627500px;}
.y62{bottom:678.121500px;}
.y109{bottom:685.974000px;}
.yf2{bottom:686.184000px;}
.y10a{bottom:686.386500px;}
.y46{bottom:686.706000px;}
.y1df{bottom:689.277000px;}
.y77{bottom:690.028500px;}
.y108{bottom:690.432000px;}
.y16a{bottom:691.840500px;}
.y1c7{bottom:694.194000px;}
.y128{bottom:694.690500px;}
.y127{bottom:696.592500px;}
.yc8{bottom:701.752500px;}
.y25b{bottom:703.527000px;}
.y8f{bottom:703.756500px;}
.y23a{bottom:704.640000px;}
.y8e{bottom:705.658500px;}
.y61{bottom:708.607500px;}
.y1b2{bottom:710.965500px;}
.y143{bottom:712.774500px;}
.y144{bottom:715.207500px;}
.y145{bottom:715.209000px;}
.y226{bottom:715.728000px;}
.y28{bottom:716.529000px;}
.y146{bottom:716.806500px;}
.y20d{bottom:717.106500px;}
.y45{bottom:717.384000px;}
.y19e{bottom:719.227500px;}
.y1de{bottom:719.781000px;}
.y1fa{bottom:720.484500px;}
.y76{bottom:720.514500px;}
.y1c6{bottom:721.092000px;}
.y187{bottom:721.849500px;}
.yac{bottom:729.226500px;}
.yc7{bottom:730.336500px;}
.y25a{bottom:730.426500px;}
.yc6{bottom:732.238500px;}
.yab{bottom:733.915500px;}
.y169{bottom:735.700500px;}
.y8d{bottom:736.144500px;}
.y107{bottom:738.726000px;}
.y5{bottom:741.493500px;}
.y239{bottom:742.414500px;}
.y27{bottom:743.427000px;}
.y19d{bottom:746.127000px;}
.y44{bottom:748.062000px;}
.y238{bottom:749.593500px;}
.y1dd{bottom:750.267000px;}
.y75{bottom:751.000500px;}
.y126{bottom:751.027500px;}
.y1b1{bottom:751.402500px;}
.y237{bottom:753.639000px;}
.y60{bottom:755.457000px;}
.y259{bottom:757.326000px;}
.yf1{bottom:758.545500px;}
.yf0{bottom:759.424500px;}
.yef{bottom:763.468500px;}
.yaa{bottom:764.401500px;}
.y8c{bottom:766.629000px;}
.y106{bottom:766.756500px;}
.y1c2{bottom:767.916000px;}
.y105{bottom:769.212000px;}
.y20c{bottom:770.148000px;}
.y1f9{bottom:772.890000px;}
.y186{bottom:774.187500px;}
.yc4{bottom:777.645000px;}
.y125{bottom:777.927000px;}
.y168{bottom:779.560500px;}
.y1dc{bottom:780.751500px;}
.y74{bottom:782.086500px;}
.y225{bottom:782.820000px;}
.y258{bottom:784.224000px;}
.yc5{bottom:784.824000px;}
.y26{bottom:785.271000px;}
.y141{bottom:785.359500px;}
.y5f{bottom:785.943000px;}
.y142{bottom:787.794000px;}
.y1b0{bottom:791.839500px;}
.y24e{bottom:794.364000px;}
.y43{bottom:795.295500px;}
.yc3{bottom:798.039000px;}
.y8b{bottom:799.593000px;}
.yc2{bottom:799.941000px;}
.y236{bottom:802.639500px;}
.ya9{bottom:803.334000px;}
.y19c{bottom:806.395500px;}
.y19b{bottom:808.143000px;}
.y166{bottom:809.211000px;}
.y257{bottom:811.123500px;}
.y1db{bottom:811.237500px;}
.y73{bottom:812.572500px;}
.y5e{bottom:816.429000px;}
.y104{bottom:817.962000px;}
.yee{bottom:818.986500px;}
.y24d{bottom:821.860500px;}
.y165{bottom:822.879000px;}
.y20b{bottom:823.188000px;}
.y167{bottom:823.824000px;}
.y1f8{bottom:823.926000px;}
.y42{bottom:825.973500px;}
.y25{bottom:827.113500px;}
.y164{bottom:827.868000px;}
.y8a{bottom:830.079000px;}
.y124{bottom:834.030000px;}
.y223{bottom:834.067500px;}
.y185{bottom:834.442500px;}
.y256{bottom:838.023000px;}
.y140{bottom:838.326000px;}
.y184{bottom:838.488000px;}
.y224{bottom:838.690500px;}
.ya8{bottom:842.268000px;}
.y72{bottom:843.058500px;}
.y1af{bottom:843.585000px;}
.yc1{bottom:845.926500px;}
.y5d{bottom:846.913500px;}
.y24c{bottom:848.760000px;}
.y235{bottom:851.640000px;}
.y24{bottom:854.013000px;}
.y1da{bottom:854.170500px;}
.y1f7{bottom:854.412000px;}
.y41{bottom:856.651500px;}
.y1d9{bottom:858.216000px;}
.y123{bottom:859.182000px;}
.y89{bottom:860.565000px;}
.y122{bottom:860.929500px;}
.y255{bottom:864.922500px;}
.yec{bottom:866.145000px;}
.y103{bottom:866.254500px;}
.y163{bottom:871.728000px;}
.yed{bottom:873.324000px;}
.y71{bottom:873.544500px;}
.y24b{bottom:875.659500px;}
.y20a{bottom:876.229500px;}
.y5c{bottom:877.399500px;}
.y1c5{bottom:877.948500px;}
.y23{bottom:880.912500px;}
.ya7{bottom:881.200500px;}
.y222{bottom:884.235000px;}
.yeb{bottom:886.537500px;}
.y183{bottom:887.190000px;}
.y40{bottom:887.329500px;}
.yea{bottom:888.439500px;}
.y1ae{bottom:889.987500px;}
.y13f{bottom:890.071500px;}
.y88{bottom:891.049500px;}
.y254{bottom:891.820500px;}
.yd4{bottom:895.381500px;}
.yc0{bottom:900.099000px;}
.y234{bottom:900.640500px;}
.y4{bottom:902.547000px;}
.y24a{bottom:902.557500px;}
.y70{bottom:904.029000px;}
.y1d8{bottom:905.194500px;}
.y1f6{bottom:907.527000px;}
.y22{bottom:907.810500px;}
.yd8{bottom:908.349000px;}
.y161{bottom:910.597500px;}
.y162{bottom:911.542500px;}
.y1c4{bottom:911.964000px;}
.y160{bottom:915.588000px;}
.y121{bottom:916.969500px;}
.y3f{bottom:918.007500px;}
.y102{bottom:918.457500px;}
.y120{bottom:918.717000px;}
.y253{bottom:918.720000px;}
.ya6{bottom:920.134500px;}
.y87{bottom:921.535500px;}
.y5b{bottom:924.249000px;}
.y182{bottom:925.258500px;}
.y209{bottom:929.269500px;}
.y249{bottom:929.457000px;}
.y233{bottom:931.126500px;}
.ye9{bottom:932.887500px;}
.y3{bottom:933.928500px;}
.y6f{bottom:934.515000px;}
.y21{bottom:934.710000px;}
.y220{bottom:935.482500px;}
.y1d7{bottom:935.680500px;}
.y221{bottom:940.105500px;}
.y181{bottom:944.991000px;}
.y252{bottom:945.619500px;}
.y3e{bottom:948.685500px;}
.y1c3{bottom:948.733500px;}
.y180{bottom:949.074000px;}
.y1aa{bottom:950.172000px;}
.y13d{bottom:950.806500px;}
.y86{bottom:954.499500px;}
.y13e{bottom:955.429500px;}
.y248{bottom:956.953500px;}
.y15f{bottom:959.448000px;}
.y20{bottom:961.609500px;}
.y1ad{bottom:962.409000px;}
.y6e{bottom:965.601000px;}
.y1d6{bottom:966.184500px;}
.y101{bottom:967.072500px;}
.y5a{bottom:971.098500px;}
.ya5{bottom:971.880000px;}
.y251{bottom:972.519000px;}
.ybf{bottom:972.981000px;}
.ybe{bottom:974.883000px;}
.y1f5{bottom:976.273500px;}
.y3d{bottom:979.363500px;}
.y208{bottom:983.055000px;}
.y232{bottom:983.563500px;}
.y247{bottom:984.600000px;}
.y85{bottom:984.984000px;}
.y21f{bottom:985.650000px;}
.y1f{bottom:988.509000px;}
.y17f{bottom:989.557500px;}
.ye8{bottom:990.738000px;}
.y1c1{bottom:991.813500px;}
.ye7{bottom:992.640000px;}
.y1ac{bottom:995.947500px;}
.y6d{bottom:996.087000px;}
.y13c{bottom:996.586500px;}
.y1d5{bottom:996.670500px;}
.y250{bottom:999.417000px;}
.y2{bottom:999.790500px;}
.y1f4{bottom:1006.759500px;}
.y3c{bottom:1010.041500px;}
.y15e{bottom:1011.193500px;}
.y246{bottom:1011.499500px;}
.y59{bottom:1017.948000px;}
.y100{bottom:1018.711500px;}
.y24f{bottom:1026.316500px;}
.ybd{bottom:1026.523500px;}
.y6c{bottom:1026.573000px;}
.y1d4{bottom:1027.155000px;}
.y1e{bottom:1027.213500px;}
.ybc{bottom:1027.468500px;}
.ybb{bottom:1031.514000px;}
.ya4{bottom:1031.538000px;}
.y1d{bottom:1032.636000px;}
.y21e{bottom:1032.852000px;}
.y1f1{bottom:1033.489500px;}
.y17d{bottom:1034.769000px;}
.y17e{bottom:1034.806500px;}
.y21d{bottom:1036.897500px;}
.y1f3{bottom:1037.245500px;}
.y17c{bottom:1038.852000px;}
.y1{bottom:1040.139000px;}
.y3b{bottom:1040.719500px;}
.y13a{bottom:1042.365000px;}
.ye6{bottom:1046.977500px;}
.y13b{bottom:1046.988000px;}
.y58{bottom:1048.434000px;}
.y1c0{bottom:1050.418500px;}
.ye5{bottom:1051.023000px;}
.yff{bottom:1054.113000px;}
.y207{bottom:1055.620500px;}
.y6b{bottom:1057.059000px;}
.y1d3{bottom:1057.641000px;}
.y245{bottom:1057.659000px;}
.y1b{bottom:1059.342000px;}
.y15d{bottom:1059.877500px;}
.ya3{bottom:1062.024000px;}
.y1f0{bottom:1063.975500px;}
.y1c{bottom:1065.280500px;}
.yfe{bottom:1077.316500px;}
.y57{bottom:1078.920000px;}
.yfd{bottom:1081.011000px;}
.yba{bottom:1085.718000px;}
.y206{bottom:1086.106500px;}
.y21c{bottom:1087.063500px;}
.y6a{bottom:1087.545000px;}
.y17b{bottom:1087.552500px;}
.y3a{bottom:1087.953000px;}
.y1d2{bottom:1088.127000px;}
.y139{bottom:1088.145000px;}
.y15c{bottom:1089.936000px;}
.y1f2{bottom:1090.362000px;}
.y1ef{bottom:1094.461500px;}
.ya2{bottom:1095.967500px;}
.ya1{bottom:1096.912500px;}
.y1ab{bottom:1098.468000px;}
.ya0{bottom:1100.958000px;}
.y15a{bottom:1103.679000px;}
.y15b{bottom:1104.216000px;}
.yfc{bottom:1106.163000px;}
.ye4{bottom:1106.541000px;}
.yfb{bottom:1107.910500px;}
.y1a{bottom:1108.509000px;}
.y56{bottom:1109.404500px;}
.y19a{bottom:1120.084500px;}
.y199{bottom:1120.626000px;}
.y198{bottom:1122.373500px;}
.y11f{bottom:1124.299500px;}
.yd3{bottom:1124.988000px;}
.y11e{bottom:1125.316500px;}
.y11d{bottom:1127.064000px;}
.yfa{bottom:1135.407000px;}
.yd7{bottom:1137.955500px;}
.y19{bottom:1139.890500px;}
.y39{bottom:1192.194000px;}
.hb{height:15.816730px;}
.h18{height:17.494800px;}
.hc{height:26.899200px;}
.h36{height:29.038903px;}
.h12{height:31.382100px;}
.he{height:31.902451px;}
.h11{height:35.865450px;}
.h8{height:37.927872px;}
.hd{height:38.376451px;}
.h9{height:39.531504px;}
.h7{height:40.348800px;}
.h6{height:44.831700px;}
.h2a{height:47.567700px;}
.h2b{height:47.573700px;}
.h10{height:49.090950px;}
.h5{height:50.211840px;}
.h2d{height:50.728903px;}
.h2f{height:51.821700px;}
.h41{height:52.309200px;}
.h45{height:52.409850px;}
.h46{height:52.415850px;}
.h37{height:53.072100px;}
.h4a{height:53.078100px;}
.h3{height:53.798400px;}
.ha{height:54.397200px;}
.h38{height:55.438903px;}
.h16{height:56.060100px;}
.h13{height:56.066100px;}
.hf{height:56.227200px;}
.h26{height:56.698950px;}
.h58{height:57.782100px;}
.h15{height:59.609700px;}
.h1f{height:59.613450px;}
.h22{height:59.619450px;}
.h56{height:59.663700px;}
.h57{height:60.068100px;}
.h2{height:60.254040px;}
.h40{height:60.871200px;}
.h35{height:61.250100px;}
.h44{height:62.147850px;}
.h2c{height:62.432100px;}
.h3c{height:62.438100px;}
.h1b{height:62.889450px;}
.h19{height:62.895450px;}
.h51{height:65.266950px;}
.h1d{height:65.272950px;}
.h3d{height:65.354100px;}
.h30{height:67.227450px;}
.h23{height:67.846950px;}
.h59{height:67.850100px;}
.h39{height:67.856100px;}
.h5a{height:68.788950px;}
.h21{height:69.052950px;}
.h2e{height:69.422100px;}
.h43{height:69.603024px;}
.h1e{height:70.365450px;}
.h4f{height:70.371450px;}
.h17{height:70.838100px;}
.h14{height:70.844100px;}
.h4b{height:72.992100px;}
.h4c{height:73.959024px;}
.h47{height:74.878950px;}
.h55{height:75.098100px;}
.h49{height:76.779024px;}
.h25{height:77.973450px;}
.h1c{height:79.071450px;}
.h1a{height:79.077450px;}
.h3f{height:79.363200px;}
.h3e{height:80.181450px;}
.h50{height:80.559024px;}
.h3a{height:80.721450px;}
.h3b{height:80.727450px;}
.h20{height:81.689702px;}
.h34{height:82.587450px;}
.h24{height:82.851450px;}
.h4e{height:86.343024px;}
.h52{height:86.493024px;}
.h32{height:86.547450px;}
.h42{height:88.095024px;}
.h33{height:90.063450px;}
.h4d{height:90.123024px;}
.h53{height:93.988950px;}
.h28{height:103.893450px;}
.h48{height:105.495024px;}
.h31{height:107.787450px;}
.h27{height:107.793450px;}
.h5b{height:109.552950px;}
.h4{height:118.812914px;}
.h54{height:136.911450px;}
.h29{height:148.797450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:106.215000px;}
.x2c{left:108.000000px;}
.x2d{left:110.739000px;}
.x34{left:114.363000px;}
.xf5{left:115.471500px;}
.xbe{left:116.604000px;}
.x47{left:119.209500px;}
.x33{left:120.273000px;}
.xad{left:122.020500px;}
.x40{left:123.865500px;}
.xb{left:125.932500px;}
.x36{left:127.318500px;}
.x3e{left:128.410500px;}
.x38{left:130.416000px;}
.x30{left:132.999000px;}
.xf6{left:140.212500px;}
.xd8{left:146.698500px;}
.x31{left:150.747000px;}
.x32{left:151.882500px;}
.x35{left:154.837500px;}
.x51{left:157.297500px;}
.x25{left:158.809500px;}
.x1{left:160.812000px;}
.xd9{left:164.421000px;}
.x48{left:167.286000px;}
.x9c{left:168.331500px;}
.x4a{left:169.332000px;}
.x81{left:172.353000px;}
.x24{left:173.754000px;}
.xcf{left:176.388000px;}
.xa9{left:179.607000px;}
.x52{left:183.378000px;}
.xe9{left:186.184500px;}
.xba{left:187.444500px;}
.x80{left:189.528000px;}
.x82{left:194.449500px;}
.xda{left:196.050000px;}
.x2{left:200.094000px;}
.x49{left:202.989000px;}
.x97{left:208.825500px;}
.xc5{left:212.629500px;}
.x22{left:214.422000px;}
.x8d{left:215.659500px;}
.x98{left:217.008000px;}
.x58{left:219.499500px;}
.x23{left:221.125500px;}
.xf0{left:222.139500px;}
.x99{left:227.122500px;}
.x89{left:229.689000px;}
.x5d{left:234.676500px;}
.x8a{left:236.800500px;}
.x83{left:238.936500px;}
.x5c{left:242.986500px;}
.x74{left:245.460000px;}
.x12{left:247.008000px;}
.x5e{left:248.224500px;}
.x8c{left:249.408000px;}
.xb9{left:250.813500px;}
.x7f{left:253.041000px;}
.x8b{left:254.389500px;}
.x7c{left:255.831000px;}
.x68{left:257.092500px;}
.x13{left:258.192000px;}
.xf4{left:261.211500px;}
.x61{left:262.641000px;}
.x3b{left:264.652500px;}
.xe7{left:269.164500px;}
.x71{left:271.117500px;}
.x3c{left:272.833500px;}
.x3{left:274.819500px;}
.x76{left:276.283500px;}
.xe5{left:277.525500px;}
.x84{left:280.026000px;}
.x6e{left:282.814500px;}
.x6f{left:284.707500px;}
.xa7{left:286.693500px;}
.x14{left:288.154500px;}
.x7d{left:289.444500px;}
.x7e{left:292.225500px;}
.x15{left:293.422500px;}
.xea{left:294.495000px;}
.x8e{left:296.505000px;}
.x64{left:298.128000px;}
.x79{left:302.326500px;}
.x16{left:303.489000px;}
.x69{left:306.735000px;}
.xbf{left:308.277000px;}
.x50{left:310.353000px;}
.x6b{left:312.021000px;}
.x96{left:313.911000px;}
.x55{left:316.047000px;}
.x17{left:317.865000px;}
.x9a{left:319.093500px;}
.x5a{left:323.554500px;}
.x1f{left:326.082000px;}
.x9e{left:327.982500px;}
.x7{left:329.793000px;}
.x85{left:330.895500px;}
.xbb{left:331.968000px;}
.x5b{left:336.490500px;}
.x9b{left:339.066000px;}
.x27{left:340.405500px;}
.x9d{left:342.760500px;}
.x78{left:344.022000px;}
.xe3{left:346.194000px;}
.x90{left:348.732000px;}
.x59{left:350.154000px;}
.x28{left:352.833000px;}
.x4{left:356.257500px;}
.xaa{left:357.835500px;}
.xed{left:359.224500px;}
.xe4{left:361.098000px;}
.x70{left:363.339000px;}
.x57{left:364.542000px;}
.x87{left:365.869500px;}
.x41{left:366.919500px;}
.xd7{left:370.590000px;}
.x37{left:373.006500px;}
.xdb{left:374.485500px;}
.x5{left:375.504000px;}
.x65{left:378.337500px;}
.x72{left:380.178000px;}
.x6{left:381.384000px;}
.x20{left:382.602000px;}
.xbd{left:384.607500px;}
.x86{left:386.604000px;}
.xb6{left:387.883500px;}
.x56{left:389.361000px;}
.x4e{left:391.633500px;}
.x8{left:392.640000px;}
.x26{left:394.846500px;}
.x2b{left:396.034500px;}
.xd6{left:397.300500px;}
.x66{left:398.739000px;}
.xaf{left:400.608000px;}
.x3f{left:402.133500px;}
.x18{left:403.920000px;}
.x9{left:405.966000px;}
.xb7{left:407.707500px;}
.x2f{left:409.203000px;}
.x75{left:411.946500px;}
.xb5{left:413.005500px;}
.x3d{left:414.049500px;}
.xcd{left:415.420500px;}
.x19{left:416.421000px;}
.x29{left:417.564000px;}
.xac{left:418.959000px;}
.x1a{left:421.689000px;}
.xb4{left:422.800500px;}
.xe6{left:424.452000px;}
.x77{left:425.815500px;}
.xdc{left:427.032000px;}
.xb3{left:430.105500px;}
.xb2{left:431.673000px;}
.x1b{left:433.087500px;}
.x42{left:436.755000px;}
.x10{left:444.411000px;}
.x6a{left:447.781500px;}
.xa4{left:451.479000px;}
.x1c{left:453.813000px;}
.x11{left:455.595000px;}
.x1d{left:459.081000px;}
.x62{left:460.821000px;}
.x94{left:467.928000px;}
.x1e{left:469.254000px;}
.x53{left:470.742000px;}
.xa0{left:473.374500px;}
.xae{left:476.788500px;}
.x67{left:478.192500px;}
.x5f{left:479.562000px;}
.xa8{left:481.705500px;}
.xa2{left:483.438000px;}
.xc{left:485.679000px;}
.xab{left:490.999500px;}
.xb1{left:496.311000px;}
.xa5{left:499.831500px;}
.xb0{left:504.448500px;}
.xc8{left:505.885500px;}
.x95{left:507.178500px;}
.xc7{left:509.086500px;}
.x21{left:511.759500px;}
.x4f{left:513.496500px;}
.xa6{left:517.161000px;}
.xd{left:518.763000px;}
.xa3{left:522.282000px;}
.x92{left:524.295000px;}
.x54{left:526.179000px;}
.xf3{left:530.214000px;}
.xe{left:535.305000px;}
.x93{left:536.721000px;}
.x6c{left:541.377000px;}
.x2a{left:548.404500px;}
.x9f{left:550.243500px;}
.x6d{left:553.749000px;}
.xa1{left:554.932500px;}
.x88{left:556.152000px;}
.x91{left:560.908500px;}
.xdd{left:563.250000px;}
.x7a{left:569.817000px;}
.xd0{left:571.885500px;}
.x43{left:578.568000px;}
.x7b{left:580.417500px;}
.xbc{left:582.043500px;}
.xd1{left:585.862500px;}
.xce{left:591.106500px;}
.xc0{left:593.133000px;}
.xde{left:598.287000px;}
.xe8{left:602.697000px;}
.xf{left:605.796000px;}
.x8f{left:607.864500px;}
.xc6{left:608.875500px;}
.xee{left:624.667500px;}
.x60{left:631.438500px;}
.xc1{left:635.565000px;}
.x39{left:638.422500px;}
.xef{left:644.902500px;}
.x3a{left:646.603500px;}
.xd2{left:649.500000px;}
.x44{left:658.282500px;}
.x45{left:671.890500px;}
.x63{left:681.822000px;}
.xc2{left:684.519000px;}
.x4b{left:686.611500px;}
.xc9{left:689.785500px;}
.xd3{left:693.978000px;}
.xc3{left:698.121000px;}
.xd4{left:700.215000px;}
.xca{left:701.485500px;}
.xf1{left:702.963000px;}
.xf2{left:709.455000px;}
.x46{left:711.819000px;}
.xd5{left:714.192000px;}
.xeb{left:716.014500px;}
.xcb{left:718.036500px;}
.x4c{left:724.818000px;}
.xb8{left:728.779500px;}
.xcc{left:731.911500px;}
.xc4{left:733.920000px;}
.xec{left:735.672000px;}
.x4d{left:757.996500px;}
.xdf{left:766.111500px;}
.xe0{left:772.431000px;}
.xe1{left:784.704000px;}
.x73{left:791.013000px;}
.xe2{left:794.650500px;}
.x2e{left:799.195500px;}
@media print{
.ve{vertical-align:-24.026667pt;}
.v1{vertical-align:-22.314667pt;}
.va{vertical-align:-20.314667pt;}
.v24{vertical-align:-16.437333pt;}
.vb{vertical-align:-8.730667pt;}
.v2{vertical-align:-5.312000pt;}
.v21{vertical-align:-1.050667pt;}
.v0{vertical-align:0.000000pt;}
.v1b{vertical-align:2.432000pt;}
.v5{vertical-align:5.754667pt;}
.v13{vertical-align:7.429333pt;}
.v10{vertical-align:9.242667pt;}
.v26{vertical-align:10.624000pt;}
.v8{vertical-align:13.136000pt;}
.vc{vertical-align:14.384000pt;}
.v12{vertical-align:16.672000pt;}
.v11{vertical-align:17.744000pt;}
.v1d{vertical-align:19.280000pt;}
.v3{vertical-align:20.314667pt;}
.v7{vertical-align:21.941333pt;}
.v22{vertical-align:23.466667pt;}
.v4{vertical-align:24.442667pt;}
.v6{vertical-align:26.069333pt;}
.v1c{vertical-align:27.600000pt;}
.vf{vertical-align:30.666667pt;}
.v23{vertical-align:32.421333pt;}
.v1e{vertical-align:33.813333pt;}
.v9{vertical-align:35.077333pt;}
.v16{vertical-align:37.429333pt;}
.vd{vertical-align:38.410667pt;}
.v17{vertical-align:39.909333pt;}
.v15{vertical-align:41.765333pt;}
.v14{vertical-align:42.688000pt;}
.v1f{vertical-align:45.050667pt;}
.v20{vertical-align:48.176000pt;}
.v29{vertical-align:50.480000pt;}
.v28{vertical-align:51.738667pt;}
.v19{vertical-align:60.469333pt;}
.v18{vertical-align:63.936000pt;}
.v25{vertical-align:76.181333pt;}
.v1a{vertical-align:79.274667pt;}
.v27{vertical-align:91.648000pt;}
.ls9{letter-spacing:0.000000pt;}
.lsd6{letter-spacing:0.000416pt;}
.lsfd{letter-spacing:0.000423pt;}
.lsd{letter-spacing:0.000543pt;}
.ls36{letter-spacing:0.000923pt;}
.ls8c{letter-spacing:0.000928pt;}
.lsde{letter-spacing:0.000933pt;}
.ls82{letter-spacing:0.001075pt;}
.lsea{letter-spacing:0.001414pt;}
.ls2f{letter-spacing:0.001416pt;}
.ls41{letter-spacing:0.001420pt;}
.lsa8{letter-spacing:0.001788pt;}
.ls2a{letter-spacing:0.001908pt;}
.ls71{letter-spacing:0.002000pt;}
.ls48{letter-spacing:0.002205pt;}
.ls9b{letter-spacing:0.002346pt;}
.ls79{letter-spacing:0.002365pt;}
.ls4d{letter-spacing:0.002384pt;}
.ls9e{letter-spacing:0.002399pt;}
.ls22{letter-spacing:0.002400pt;}
.ls34{letter-spacing:0.002405pt;}
.ls8a{letter-spacing:0.002827pt;}
.ls13{letter-spacing:0.002906pt;}
.ls19{letter-spacing:0.003856pt;}
.ls88{letter-spacing:0.004025pt;}
.lsd4{letter-spacing:0.004349pt;}
.ls1{letter-spacing:0.004460pt;}
.lsd8{letter-spacing:0.004670pt;}
.ls49{letter-spacing:0.004762pt;}
.lsd9{letter-spacing:0.005649pt;}
.lsfa{letter-spacing:0.006262pt;}
.ls23{letter-spacing:0.007186pt;}
.ls103{letter-spacing:0.008018pt;}
.ls26{letter-spacing:0.008056pt;}
.ls107{letter-spacing:0.008801pt;}
.lsdc{letter-spacing:0.009080pt;}
.ls85{letter-spacing:0.009626pt;}
.lsf6{letter-spacing:0.009948pt;}
.ls5e{letter-spacing:0.010582pt;}
.lsce{letter-spacing:0.011370pt;}
.lsee{letter-spacing:0.012945pt;}
.ls51{letter-spacing:0.013305pt;}
.ls30{letter-spacing:0.013823pt;}
.ls31{letter-spacing:0.014279pt;}
.ls62{letter-spacing:0.014462pt;}
.lse2{letter-spacing:0.014512pt;}
.ls106{letter-spacing:0.014603pt;}
.lse9{letter-spacing:0.015156pt;}
.lse4{letter-spacing:0.016341pt;}
.lse1{letter-spacing:0.022075pt;}
.ls77{letter-spacing:0.023514pt;}
.lsb5{letter-spacing:0.232727pt;}
.ls2d{letter-spacing:0.290909pt;}
.lsfc{letter-spacing:0.407273pt;}
.lsd3{letter-spacing:0.425071pt;}
.ls92{letter-spacing:1.140645pt;}
.lsac{letter-spacing:1.147694pt;}
.ls8e{letter-spacing:1.251203pt;}
.ls86{letter-spacing:1.256536pt;}
.ls6{letter-spacing:1.365205pt;}
.ls74{letter-spacing:1.449854pt;}
.lsf{letter-spacing:1.463735pt;}
.ls47{letter-spacing:1.477138pt;}
.ls68{letter-spacing:1.480044pt;}
.ls10{letter-spacing:1.484565pt;}
.ls76{letter-spacing:1.489899pt;}
.lsdb{letter-spacing:1.522516pt;}
.lsc6{letter-spacing:1.584987pt;}
.ls39{letter-spacing:1.584996pt;}
.lsf2{letter-spacing:1.594106pt;}
.ls52{letter-spacing:1.594259pt;}
.ls54{letter-spacing:1.596072pt;}
.lsb8{letter-spacing:1.597488pt;}
.ls3b{letter-spacing:1.601405pt;}
.ls81{letter-spacing:1.602301pt;}
.ls3c{letter-spacing:1.602319pt;}
.ls1d{letter-spacing:1.602818pt;}
.lsb1{letter-spacing:1.605223pt;}
.lsc4{letter-spacing:1.607900pt;}
.lsbd{letter-spacing:1.610790pt;}
.ls4b{letter-spacing:1.612566pt;}
.lsbc{letter-spacing:1.614473pt;}
.lsca{letter-spacing:1.614971pt;}
.lsf3{letter-spacing:1.617401pt;}
.ls1a{letter-spacing:1.617899pt;}
.ls7e{letter-spacing:1.618150pt;}
.ls3d{letter-spacing:1.620299pt;}
.ls59{letter-spacing:1.620305pt;}
.lsf1{letter-spacing:1.625077pt;}
.lsf0{letter-spacing:1.627511pt;}
.ls1f{letter-spacing:1.629002pt;}
.ls3a{letter-spacing:1.630079pt;}
.ls58{letter-spacing:1.639586pt;}
.ls57{letter-spacing:1.646327pt;}
.ls56{letter-spacing:2.036365pt;}
.ls5b{letter-spacing:2.071646pt;}
.lse5{letter-spacing:2.094547pt;}
.lsba{letter-spacing:2.210911pt;}
.ls9c{letter-spacing:2.648791pt;}
.ls61{letter-spacing:2.653258pt;}
.ls2b{letter-spacing:2.653398pt;}
.ls97{letter-spacing:2.654249pt;}
.lscf{letter-spacing:2.654275pt;}
.ls67{letter-spacing:2.655396pt;}
.ls2{letter-spacing:2.656111pt;}
.ls8{letter-spacing:2.656473pt;}
.lsd5{letter-spacing:2.656546pt;}
.ls14{letter-spacing:2.656631pt;}
.lsf8{letter-spacing:2.656991pt;}
.ls18{letter-spacing:2.657087pt;}
.lsd7{letter-spacing:2.657253pt;}
.ls63{letter-spacing:2.657546pt;}
.ls21{letter-spacing:2.658591pt;}
.lsc9{letter-spacing:2.658681pt;}
.ls29{letter-spacing:2.658731pt;}
.lscd{letter-spacing:2.659608pt;}
.lsc2{letter-spacing:2.661964pt;}
.ls2e{letter-spacing:2.662420pt;}
.lsc1{letter-spacing:2.806736pt;}
.lsec{letter-spacing:2.967275pt;}
.lsb4{letter-spacing:3.071003pt;}
.ls28{letter-spacing:3.206146pt;}
.ls33{letter-spacing:3.211479pt;}
.ls37{letter-spacing:3.218305pt;}
.lsa7{letter-spacing:3.352213pt;}
.lsae{letter-spacing:3.783583pt;}
.lsad{letter-spacing:3.788916pt;}
.ls3{letter-spacing:3.800871pt;}
.ls64{letter-spacing:3.801225pt;}
.lsf7{letter-spacing:4.138008pt;}
.lscb{letter-spacing:4.161420pt;}
.lsc7{letter-spacing:4.166753pt;}
.ls43{letter-spacing:4.640444pt;}
.lsb2{letter-spacing:4.711168pt;}
.ls7c{letter-spacing:4.711666pt;}
.lscc{letter-spacing:4.721414pt;}
.lsc3{letter-spacing:4.726249pt;}
.lsb0{letter-spacing:4.726748pt;}
.ls7f{letter-spacing:4.733880pt;}
.lsb6{letter-spacing:4.744796pt;}
.ls27{letter-spacing:4.838541pt;}
.ls35{letter-spacing:4.843874pt;}
.ls89{letter-spacing:5.312473pt;}
.lsf9{letter-spacing:5.317806pt;}
.ls4f{letter-spacing:5.818187pt;}
.lsa9{letter-spacing:6.283642pt;}
.ls5{letter-spacing:6.360166pt;}
.ls4c{letter-spacing:7.185653pt;}
.lsa5{letter-spacing:8.873356pt;}
.ls100{letter-spacing:9.452070pt;}
.lsaa{letter-spacing:9.697788pt;}
.lsa0{letter-spacing:9.716372pt;}
.lsc{letter-spacing:11.795718pt;}
.lsa4{letter-spacing:12.115514pt;}
.ls1e{letter-spacing:12.916374pt;}
.ls60{letter-spacing:12.974556pt;}
.ls9f{letter-spacing:13.139733pt;}
.ls96{letter-spacing:13.145067pt;}
.lsc5{letter-spacing:14.464631pt;}
.lsb{letter-spacing:14.771215pt;}
.ls5c{letter-spacing:15.292320pt;}
.lsf5{letter-spacing:15.297653pt;}
.lsaf{letter-spacing:15.581258pt;}
.ls5f{letter-spacing:15.586591pt;}
.ls3e{letter-spacing:15.590420pt;}
.lse0{letter-spacing:16.116377pt;}
.ls8b{letter-spacing:16.162827pt;}
.ls17{letter-spacing:16.174559pt;}
.ls108{letter-spacing:17.414586pt;}
.ls104{letter-spacing:17.746711pt;}
.ls40{letter-spacing:18.082400pt;}
.ls42{letter-spacing:18.087733pt;}
.lse8{letter-spacing:18.269106pt;}
.lsdd{letter-spacing:18.734561pt;}
.ls7b{letter-spacing:18.813258pt;}
.lsc8{letter-spacing:18.816991pt;}
.ls25{letter-spacing:18.817087pt;}
.lsdf{letter-spacing:18.817546pt;}
.ls5a{letter-spacing:18.818591pt;}
.lsa{letter-spacing:18.915657pt;}
.lsab{letter-spacing:18.948737pt;}
.ls15{letter-spacing:19.039527pt;}
.ls78{letter-spacing:19.083652pt;}
.ls3f{letter-spacing:19.306144pt;}
.ls32{letter-spacing:19.374562pt;}
.ls101{letter-spacing:19.432743pt;}
.lseb{letter-spacing:19.490925pt;}
.ls4e{letter-spacing:20.113653pt;}
.lsed{letter-spacing:20.116345pt;}
.lsff{letter-spacing:20.176396pt;}
.ls6c{letter-spacing:20.712745pt;}
.ls45{letter-spacing:20.770926pt;}
.ls55{letter-spacing:20.829108pt;}
.lsd0{letter-spacing:21.250906pt;}
.ls83{letter-spacing:21.477806pt;}
.lsda{letter-spacing:22.045258pt;}
.ls16{letter-spacing:22.050591pt;}
.ls99{letter-spacing:22.909258pt;}
.lsfe{letter-spacing:23.025253pt;}
.lse3{letter-spacing:23.473546pt;}
.lse6{letter-spacing:23.563656pt;}
.lsbe{letter-spacing:23.854565pt;}
.ls50{letter-spacing:25.192748pt;}
.ls102{letter-spacing:25.425476pt;}
.ls75{letter-spacing:26.566933pt;}
.ls24{letter-spacing:27.054568pt;}
.ls73{letter-spacing:29.542430pt;}
.lsf4{letter-spacing:31.457653pt;}
.ls44{letter-spacing:31.883663pt;}
.lsfb{letter-spacing:35.549121pt;}
.ls5d{letter-spacing:35.753678pt;}
.ls69{letter-spacing:48.306906pt;}
.ls95{letter-spacing:50.659324pt;}
.ls93{letter-spacing:50.938831pt;}
.lsa1{letter-spacing:54.868327pt;}
.lsa3{letter-spacing:54.873660pt;}
.ls87{letter-spacing:54.939162pt;}
.ls8f{letter-spacing:54.944495pt;}
.ls9d{letter-spacing:59.077017pt;}
.ls11{letter-spacing:59.646544pt;}
.lse7{letter-spacing:60.276414pt;}
.lsd1{letter-spacing:62.136239pt;}
.ls20{letter-spacing:63.681546pt;}
.lsb9{letter-spacing:63.686879pt;}
.ls105{letter-spacing:66.629869pt;}
.lsd2{letter-spacing:74.706906pt;}
.ls1b{letter-spacing:79.841546pt;}
.lsef{letter-spacing:79.846879pt;}
.lsbf{letter-spacing:80.695212pt;}
.lsbb{letter-spacing:80.700545pt;}
.ls90{letter-spacing:81.712165pt;}
.ls53{letter-spacing:84.497546pt;}
.ls98{letter-spacing:85.901991pt;}
.lsa6{letter-spacing:87.451213pt;}
.ls7{letter-spacing:87.899162pt;}
.ls9a{letter-spacing:93.219608pt;}
.ls94{letter-spacing:93.824495pt;}
.ls8d{letter-spacing:93.829828pt;}
.ls12{letter-spacing:95.267878pt;}
.ls4{letter-spacing:97.925828pt;}
.ls6e{letter-spacing:99.975925pt;}
.ls7a{letter-spacing:101.670879pt;}
.lsc0{letter-spacing:101.676213pt;}
.ls66{letter-spacing:104.692767pt;}
.lsb3{letter-spacing:106.396213pt;}
.lsb7{letter-spacing:106.401546pt;}
.ls84{letter-spacing:106.757828pt;}
.lse{letter-spacing:110.025211pt;}
.ls6b{letter-spacing:116.135925pt;}
.ls6d{letter-spacing:117.830879pt;}
.ls1c{letter-spacing:117.836213pt;}
.ls7d{letter-spacing:119.329546pt;}
.ls80{letter-spacing:122.561546pt;}
.ls6f{letter-spacing:124.734544pt;}
.ls72{letter-spacing:124.787878pt;}
.ls2c{letter-spacing:126.080105pt;}
.ls38{letter-spacing:128.640107pt;}
.lsa2{letter-spacing:150.109988pt;}
.ls4a{letter-spacing:193.874980pt;}
.ls65{letter-spacing:229.891878pt;}
.ls6a{letter-spacing:235.890491pt;}
.ls0{letter-spacing:310.561617pt;}
.ls70{letter-spacing:379.113211pt;}
.ls91{letter-spacing:560.842831pt;}
.ls46{letter-spacing:730.413647pt;}
.wse8{word-spacing:-93.196802pt;}
.ws93{word-spacing:-58.181867pt;}
.ws84{word-spacing:-48.523677pt;}
.ws98{word-spacing:-45.265492pt;}
.ws66{word-spacing:-42.007308pt;}
.wsa1{word-spacing:-41.327521pt;}
.ws31{word-spacing:-37.899668pt;}
.ws87{word-spacing:-34.611401pt;}
.ws72{word-spacing:-32.337481pt;}
.ws80{word-spacing:-29.736752pt;}
.ws28{word-spacing:-29.531803pt;}
.ws42{word-spacing:-29.521250pt;}
.ws9a{word-spacing:-29.090933pt;}
.ws9c{word-spacing:-29.079297pt;}
.ws6d{word-spacing:-28.241478pt;}
.ws5a{word-spacing:-28.183296pt;}
.ws89{word-spacing:-28.118362pt;}
.ws2b{word-spacing:-26.566933pt;}
.ws1d{word-spacing:-26.556307pt;}
.ws7{word-spacing:-26.122909pt;}
.ws27{word-spacing:-25.738045pt;}
.ws2c{word-spacing:-24.575109pt;}
.wsd7{word-spacing:-22.356856pt;}
.ws92{word-spacing:-22.314349pt;}
.wsde{word-spacing:-21.783291pt;}
.wsad{word-spacing:-21.725109pt;}
.wsbe{word-spacing:-19.893320pt;}
.wse7{word-spacing:-19.840186pt;}
.ws59{word-spacing:-16.162923pt;}
.wsb3{word-spacing:-15.243649pt;}
.ws25{word-spacing:-14.760588pt;}
.wsd4{word-spacing:-14.336012pt;}
.wsa3{word-spacing:-14.239876pt;}
.ws82{word-spacing:-13.938780pt;}
.ws63{word-spacing:-13.934231pt;}
.ws83{word-spacing:-13.933447pt;}
.ws77{word-spacing:-13.928897pt;}
.ws40{word-spacing:-13.672739pt;}
.ws18{word-spacing:-13.442868pt;}
.wsb4{word-spacing:-13.265466pt;}
.wsc9{word-spacing:-12.683647pt;}
.ws58{word-spacing:-12.450919pt;}
.ws34{word-spacing:-12.334556pt;}
.ws3f{word-spacing:-12.276374pt;}
.wsb5{word-spacing:-12.165828pt;}
.wsa4{word-spacing:-11.752737pt;}
.ws24{word-spacing:-11.689451pt;}
.ws35{word-spacing:-11.520010pt;}
.wsaa{word-spacing:-11.375618pt;}
.wsd9{word-spacing:-11.345464pt;}
.wsdf{word-spacing:-11.170918pt;}
.ws56{word-spacing:-10.938191pt;}
.ws6f{word-spacing:-10.703261pt;}
.ws41{word-spacing:-10.702492pt;}
.ws70{word-spacing:-10.702231pt;}
.ws86{word-spacing:-10.700430pt;}
.ws81{word-spacing:-10.697159pt;}
.ws71{word-spacing:-10.696897pt;}
.wsc1{word-spacing:-10.589100pt;}
.wsd2{word-spacing:-10.414554pt;}
.ws19{word-spacing:-10.414238pt;}
.wsd1{word-spacing:-10.356372pt;}
.wsc{word-spacing:-10.276690pt;}
.wscc{word-spacing:-10.240009pt;}
.ws5d{word-spacing:-10.201702pt;}
.wscd{word-spacing:-10.181827pt;}
.ws4b{word-spacing:-10.065463pt;}
.wsa7{word-spacing:-10.007281pt;}
.ws3a{word-spacing:-9.949099pt;}
.ws55{word-spacing:-9.890917pt;}
.wsec{word-spacing:-9.882899pt;}
.ws53{word-spacing:-9.832735pt;}
.wsa6{word-spacing:-9.774554pt;}
.ws2e{word-spacing:-9.716372pt;}
.ws2f{word-spacing:-9.658190pt;}
.wsa5{word-spacing:-9.600008pt;}
.wsf4{word-spacing:-9.564096pt;}
.ws49{word-spacing:-9.541826pt;}
.ws37{word-spacing:-9.483644pt;}
.ws10{word-spacing:-9.463736pt;}
.wsce{word-spacing:-9.431281pt;}
.ws36{word-spacing:-9.425462pt;}
.ws61{word-spacing:-9.367281pt;}
.ws3c{word-spacing:-9.309099pt;}
.ws52{word-spacing:-9.250917pt;}
.wsef{word-spacing:-9.245293pt;}
.ws3d{word-spacing:-9.192735pt;}
.ws1c{word-spacing:-9.085891pt;}
.wsed{word-spacing:-9.038071pt;}
.ws1b{word-spacing:-8.979623pt;}
.wsd3{word-spacing:-8.965826pt;}
.ws2a{word-spacing:-8.926490pt;}
.ws6c{word-spacing:-8.907644pt;}
.ws4{word-spacing:-8.873356pt;}
.wse{word-spacing:-8.842066pt;}
.ws1a{word-spacing:-8.820222pt;}
.wsf5{word-spacing:-8.772401pt;}
.wsf7{word-spacing:-8.713954pt;}
.ws23{word-spacing:-8.660820pt;}
.wscf{word-spacing:-8.610916pt;}
.wsf9{word-spacing:-8.607686pt;}
.ws22{word-spacing:-8.554553pt;}
.wsf0{word-spacing:-8.453598pt;}
.ws7d{word-spacing:-8.378189pt;}
.ws54{word-spacing:-8.267643pt;}
.wsb{word-spacing:-8.220396pt;}
.wsf6{word-spacing:-8.187929pt;}
.ws8{word-spacing:-8.172575pt;}
.wscb{word-spacing:-8.145461pt;}
.wsee{word-spacing:-8.134795pt;}
.wsc6{word-spacing:-8.076348pt;}
.wsf8{word-spacing:-7.975393pt;}
.ws48{word-spacing:-7.912734pt;}
.wsfa{word-spacing:-7.869126pt;}
.ws4e{word-spacing:-7.738188pt;}
.wsdd{word-spacing:-7.621825pt;}
.wsea{word-spacing:-7.438741pt;}
.ws51{word-spacing:-7.156370pt;}
.ws7f{word-spacing:-6.929460pt;}
.ws9{word-spacing:-6.929234pt;}
.wseb{word-spacing:-6.912716pt;}
.ws29{word-spacing:-6.854269pt;}
.ws4d{word-spacing:-6.690915pt;}
.ws38{word-spacing:-6.516369pt;}
.ws39{word-spacing:-6.458187pt;}
.wsa9{word-spacing:-6.446551pt;}
.wsd{word-spacing:-6.407987pt;}
.wsf1{word-spacing:-6.322930pt;}
.ws4c{word-spacing:-6.289460pt;}
.wsf3{word-spacing:-6.269796pt;}
.ws3b{word-spacing:-5.992732pt;}
.wsf2{word-spacing:-5.850039pt;}
.wse0{word-spacing:-5.585459pt;}
.wsd5{word-spacing:-5.371641pt;}
.wsc8{word-spacing:-5.294550pt;}
.ws5c{word-spacing:-5.236368pt;}
.ws2d{word-spacing:-5.178186pt;}
.ws5f{word-spacing:-4.945459pt;}
.ws5{word-spacing:-4.872940pt;}
.wse1{word-spacing:-4.829095pt;}
.ws8f{word-spacing:-4.654549pt;}
.ws17{word-spacing:-4.468558pt;}
.ws57{word-spacing:-4.421822pt;}
.ws21{word-spacing:-4.356977pt;}
.wse2{word-spacing:-4.247276pt;}
.ws60{word-spacing:-4.189094pt;}
.ws99{word-spacing:-4.130913pt;}
.ws69{word-spacing:-4.072731pt;}
.ws6a{word-spacing:-4.014549pt;}
.wsba{word-spacing:-3.840003pt;}
.wse5{word-spacing:-3.772505pt;}
.wse3{word-spacing:-3.723639pt;}
.wse4{word-spacing:-3.665458pt;}
.ws4a{word-spacing:-3.549094pt;}
.ws46{word-spacing:-3.246548pt;}
.wsd0{word-spacing:-3.188366pt;}
.wsc2{word-spacing:-3.141821pt;}
.ws1f{word-spacing:-2.964870pt;}
.ws4f{word-spacing:-2.909093pt;}
.wsca{word-spacing:-2.850911pt;}
.ws50{word-spacing:-2.501820pt;}
.ws64{word-spacing:-2.036365pt;}
.ws3e{word-spacing:-1.629092pt;}
.ws5e{word-spacing:-1.047274pt;}
.wsbd{word-spacing:-0.872728pt;}
.wse6{word-spacing:-0.637606pt;}
.wsdb{word-spacing:-0.581819pt;}
.ws2{word-spacing:-0.148775pt;}
.ws44{word-spacing:-0.058182pt;}
.ws26{word-spacing:-0.053134pt;}
.ws6{word-spacing:-0.047821pt;}
.ws68{word-spacing:-0.046545pt;}
.ws43{word-spacing:-0.042507pt;}
.ws95{word-spacing:-0.037194pt;}
.ws14{word-spacing:0.000000pt;}
.wsab{word-spacing:0.010627pt;}
.ws65{word-spacing:0.011636pt;}
.wsa8{word-spacing:0.186182pt;}
.ws6e{word-spacing:2.146911pt;}
.ws15{word-spacing:2.385457pt;}
.wsdc{word-spacing:2.792730pt;}
.wsc7{word-spacing:2.932989pt;}
.wsc3{word-spacing:3.211639pt;}
.wsd6{word-spacing:4.565735pt;}
.ws5b{word-spacing:7.691643pt;}
.wsb2{word-spacing:7.896594pt;}
.ws12{word-spacing:8.129536pt;}
.ws16{word-spacing:10.159221pt;}
.ws7e{word-spacing:10.786961pt;}
.ws7c{word-spacing:10.792295pt;}
.ws13{word-spacing:13.581107pt;}
.wsa2{word-spacing:14.424269pt;}
.ws20{word-spacing:14.429602pt;}
.wsd8{word-spacing:15.538725pt;}
.ws47{word-spacing:15.544033pt;}
.ws74{word-spacing:15.548175pt;}
.wsb1{word-spacing:16.174559pt;}
.wse9{word-spacing:17.388346pt;}
.wsb9{word-spacing:17.454560pt;}
.wsf{word-spacing:18.028442pt;}
.wsc0{word-spacing:18.773467pt;}
.ws67{word-spacing:18.776033pt;}
.ws90{word-spacing:18.776059pt;}
.ws97{word-spacing:18.778801pt;}
.ws6b{word-spacing:18.780175pt;}
.ws11{word-spacing:18.793574pt;}
.wsa{word-spacing:18.841395pt;}
.ws1e{word-spacing:20.649857pt;}
.ws1{word-spacing:20.786108pt;}
.wsbc{word-spacing:22.047769pt;}
.ws45{word-spacing:23.720295pt;}
.wsb8{word-spacing:23.814923pt;}
.ws3{word-spacing:23.846639pt;}
.wsb0{word-spacing:25.786203pt;}
.ws76{word-spacing:26.946961pt;}
.ws62{word-spacing:26.952295pt;}
.wsb7{word-spacing:27.124386pt;}
.wsda{word-spacing:28.037842pt;}
.ws0{word-spacing:28.615887pt;}
.ws33{word-spacing:30.551973pt;}
.ws79{word-spacing:31.602961pt;}
.ws91{word-spacing:37.339069pt;}
.wsac{word-spacing:49.342197pt;}
.ws8c{word-spacing:52.850004pt;}
.ws7b{word-spacing:57.141735pt;}
.wsae{word-spacing:58.795069pt;}
.ws7a{word-spacing:73.693367pt;}
.wsaf{word-spacing:75.149367pt;}
.wsb6{word-spacing:75.154700pt;}
.ws9e{word-spacing:81.796523pt;}
.wsbb{word-spacing:85.682936pt;}
.ws9b{word-spacing:86.626700pt;}
.ws85{word-spacing:88.122255pt;}
.ws75{word-spacing:88.180437pt;}
.ws73{word-spacing:89.853367pt;}
.ws78{word-spacing:94.514700pt;}
.wsc4{word-spacing:96.671658pt;}
.ws8b{word-spacing:107.109750pt;}
.ws96{word-spacing:158.773622pt;}
.wsc5{word-spacing:166.219372pt;}
.ws8e{word-spacing:166.847190pt;}
.ws8d{word-spacing:188.648269pt;}
.ws8a{word-spacing:224.436707pt;}
.ws9d{word-spacing:289.191918pt;}
.ws9f{word-spacing:431.183190pt;}
.wsa0{word-spacing:443.512269pt;}
.ws88{word-spacing:643.643083pt;}
.wsbf{word-spacing:761.456497pt;}
.ws94{word-spacing:786.021622pt;}
.ws30{word-spacing:1958.161672pt;}
.ws32{word-spacing:1981.451389pt;}
._60{margin-left:-67.235630pt;}
._53{margin-left:-26.556495pt;}
._49{margin-left:-15.637263pt;}
._b{margin-left:-14.399976pt;}
._58{margin-left:-9.658190pt;}
._1{margin-left:-7.192228pt;}
._2{margin-left:-5.228407pt;}
._5{margin-left:-4.160410pt;}
._6{margin-left:-2.404871pt;}
._4{margin-left:-1.487748pt;}
._3{width:1.071193pt;}
._0{width:2.371905pt;}
._7{width:3.773203pt;}
._48{width:4.818638pt;}
._4e{width:5.965995pt;}
._59{width:7.229016pt;}
._3c{width:16.872741pt;}
._9{width:18.405606pt;}
._3a{width:20.048825pt;}
._67{width:21.253547pt;}
._3e{width:22.181402pt;}
._a{width:23.542549pt;}
._8{width:24.499089pt;}
._33{width:26.602259pt;}
._47{width:27.946711pt;}
._40{width:29.183378pt;}
._3d{width:31.883663pt;}
._41{width:34.493886pt;}
._42{width:36.602786pt;}
._5c{width:37.776074pt;}
._43{width:39.912761pt;}
._45{width:40.891746pt;}
._3b{width:42.407105pt;}
._4d{width:43.620702pt;}
._63{width:46.704669pt;}
._46{width:50.187032pt;}
._56{width:52.715252pt;}
._51{width:54.183940pt;}
._3f{width:56.815062pt;}
._54{width:58.895404pt;}
._61{width:59.913758pt;}
._44{width:61.733038pt;}
._5a{width:75.636427pt;}
._50{width:97.548357pt;}
._65{width:102.814032pt;}
._57{width:125.587071pt;}
._55{width:158.823591pt;}
._62{width:165.100771pt;}
._5b{width:180.475664pt;}
._64{width:223.427909pt;}
._4b{width:233.843059pt;}
._5d{width:237.861204pt;}
._5e{width:241.042133pt;}
._52{width:258.327230pt;}
._66{width:323.585248pt;}
._4c{width:335.042133pt;}
._5f{width:353.287079pt;}
._1a{width:358.436279pt;}
._4a{width:374.243059pt;}
._20{width:503.710574pt;}
._4f{width:520.671519pt;}
._35{width:799.855214pt;}
._2c{width:814.898003pt;}
._11{width:897.050799pt;}
._36{width:953.617684pt;}
._16{width:990.155324pt;}
._d{width:997.388876pt;}
._e{width:1000.599674pt;}
._1d{width:1006.018548pt;}
._1f{width:1044.641175pt;}
._2a{width:1065.631277pt;}
._2d{width:1068.273380pt;}
._19{width:1073.616806pt;}
._25{width:1087.119151pt;}
._31{width:1090.906152pt;}
._1e{width:1177.290501pt;}
._37{width:1252.476540pt;}
._12{width:1254.687846pt;}
._29{width:1265.432076pt;}
._21{width:1310.709023pt;}
._28{width:1314.357696pt;}
._2e{width:1316.377879pt;}
._1b{width:1336.392442pt;}
._14{width:1345.119722pt;}
._39{width:1376.486017pt;}
._13{width:1380.166717pt;}
._f{width:1385.519449pt;}
._34{width:1414.900897pt;}
._38{width:1426.603673pt;}
._27{width:1438.299685pt;}
._26{width:1463.940645pt;}
._30{width:1523.785867pt;}
._1c{width:1534.327152pt;}
._17{width:1542.422392pt;}
._22{width:1543.851958pt;}
._23{width:1568.196959pt;}
._10{width:1610.974182pt;}
._2b{width:1638.620913pt;}
._2f{width:1706.187588pt;}
._32{width:1785.448049pt;}
._18{width:1789.396455pt;}
._15{width:1818.487389pt;}
._24{width:1837.693674pt;}
._c{width:1989.083317pt;}
.fsa{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fs9{font-size:37.193600pt;}
.fs8{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs7{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs3{font-size:104.142400pt;}
.fs2{font-size:148.775467pt;}
.y0{bottom:0.000000pt;}
.y205{bottom:137.188000pt;}
.y17a{bottom:138.905333pt;}
.yb9{bottom:139.254667pt;}
.y138{bottom:140.810667pt;}
.y55{bottom:142.501333pt;}
.yb8{bottom:142.850667pt;}
.y38{bottom:154.156000pt;}
.y204{bottom:157.005333pt;}
.y18{bottom:163.782667pt;}
.y17{bottom:165.221333pt;}
.y11c{bottom:167.554667pt;}
.y197{bottom:169.600000pt;}
.y1a9{bottom:172.022667pt;}
.yf9{bottom:173.977333pt;}
.yb7{bottom:177.457333pt;}
.y179{bottom:181.488000pt;}
.y84{bottom:182.217333pt;}
.y1ee{bottom:182.964000pt;}
.y54{bottom:184.486667pt;}
.y1d1{bottom:184.893333pt;}
.ye3{bottom:185.222667pt;}
.y21b{bottom:185.272000pt;}
.y83{bottom:185.813333pt;}
.y21a{bottom:186.053333pt;}
.y16{bottom:187.140000pt;}
.y137{bottom:187.785333pt;}
.y159{bottom:188.497333pt;}
.y219{bottom:189.649333pt;}
.yd2{bottom:190.654667pt;}
.y9f{bottom:190.818667pt;}
.y136{bottom:191.381333pt;}
.y203{bottom:192.530667pt;}
.y1bf{bottom:195.008000pt;}
.y1be{bottom:196.698667pt;}
.y11b{bottom:197.469333pt;}
.y11a{bottom:199.022667pt;}
.y177{bottom:210.497333pt;}
.y15{bottom:211.713333pt;}
.y53{bottom:211.756000pt;}
.yb6{bottom:212.065333pt;}
.ye2{bottom:212.321333pt;}
.y196{bottom:216.122667pt;}
.y178{bottom:216.878667pt;}
.y244{bottom:218.273333pt;}
.y1a8{bottom:221.000000pt;}
.y119{bottom:221.378667pt;}
.y118{bottom:222.932000pt;}
.y1ed{bottom:223.426667pt;}
.y231{bottom:223.796000pt;}
.yf7{bottom:225.994667pt;}
.y1d0{bottom:227.285333pt;}
.y176{bottom:228.624000pt;}
.y82{bottom:229.125333pt;}
.y175{bottom:230.314667pt;}
.y14{bottom:233.632000pt;}
.y158{bottom:236.138667pt;}
.y218{bottom:236.796000pt;}
.y52{bottom:239.025333pt;}
.y9e{bottom:239.136000pt;}
.y202{bottom:239.744000pt;}
.y135{bottom:240.262667pt;}
.y1bd{bottom:242.694667pt;}
.y117{bottom:245.289333pt;}
.yb5{bottom:246.672000pt;}
.y116{bottom:246.842667pt;}
.y157{bottom:249.126667pt;}
.y230{bottom:250.894667pt;}
.y156{bottom:252.722667pt;}
.y37{bottom:254.589333pt;}
.yd1{bottom:257.128000pt;}
.y13{bottom:258.206667pt;}
.ye1{bottom:258.653333pt;}
.y174{bottom:259.460000pt;}
.y243{bottom:261.730667pt;}
.y1ec{bottom:262.198667pt;}
.y195{bottom:263.301333pt;}
.y1eb{bottom:263.889333pt;}
.y133{bottom:265.178667pt;}
.y134{bottom:265.669333pt;}
.y51{bottom:266.294667pt;}
.y132{bottom:267.360000pt;}
.y9d{bottom:268.436000pt;}
.y1cf{bottom:269.677333pt;}
.y193{bottom:269.682667pt;}
.y1a7{bottom:269.977333pt;}
.y115{bottom:271.284000pt;}
.y81{bottom:272.177333pt;}
.y192{bottom:273.278667pt;}
.y11{bottom:278.685333pt;}
.y10{bottom:280.124000pt;}
.y194{bottom:280.841333pt;}
.y217{bottom:281.378667pt;}
.y36{bottom:281.686667pt;}
.y12{bottom:285.202667pt;}
.y216{bottom:285.756000pt;}
.y242{bottom:288.829333pt;}
.yb4{bottom:292.668000pt;}
.y155{bottom:293.414667pt;}
.y50{bottom:293.564000pt;}
.y173{bottom:294.850667pt;}
.y9c{bottom:295.534667pt;}
.y22f{bottom:297.852000pt;}
.y172{bottom:298.446667pt;}
.y201{bottom:300.852000pt;}
.ye0{bottom:301.798667pt;}
.y1ea{bottom:304.352000pt;}
.yf{bottom:304.698667pt;}
.y1bc{bottom:304.780000pt;}
.yd0{bottom:308.296000pt;}
.y35{bottom:308.785333pt;}
.y114{bottom:311.601333pt;}
.y80{bottom:311.893333pt;}
.y1ce{bottom:312.070667pt;}
.y131{bottom:312.645333pt;}
.y7f{bottom:315.489333pt;}
.y130{bottom:316.241333pt;}
.y1a6{bottom:317.781333pt;}
.y4f{bottom:320.833333pt;}
.y191{bottom:321.264000pt;}
.y1a5{bottom:321.377333pt;}
.y153{bottom:321.478667pt;}
.y9b{bottom:322.633333pt;}
.ye{bottom:325.177333pt;}
.yd{bottom:326.616000pt;}
.y152{bottom:327.810667pt;}
.y1e9{bottom:331.449333pt;}
.y241{bottom:332.286667pt;}
.y215{bottom:332.902667pt;}
.y154{bottom:334.192000pt;}
.y171{bottom:337.433333pt;}
.y150{bottom:337.788000pt;}
.y1bb{bottom:340.725333pt;}
.y151{bottom:341.897333pt;}
.y34{bottom:344.676000pt;}
.y9a{bottom:346.036000pt;}
.y200{bottom:346.217333pt;}
.ydf{bottom:347.562667pt;}
.yc{bottom:348.534667pt;}
.y99{bottom:349.732000pt;}
.y113{bottom:351.338667pt;}
.y1cd{bottom:354.462667pt;}
.y69{bottom:354.904000pt;}
.y112{bottom:354.934667pt;}
.y22e{bottom:357.489333pt;}
.y7e{bottom:358.801333pt;}
.y240{bottom:359.385333pt;}
.ycf{bottom:359.464000pt;}
.y4e{bottom:362.818667pt;}
.y190{bottom:364.278667pt;}
.y12f{bottom:365.121333pt;}
.yf8{bottom:365.268000pt;}
.y1e8{bottom:366.566667pt;}
.y33{bottom:368.586667pt;}
.y1a4{bottom:370.354667pt;}
.y1ba{bottom:373.073333pt;}
.yb{bottom:373.109333pt;}
.y1b9{bottom:376.669333pt;}
.yde{bottom:377.476000pt;}
.y214{bottom:378.266667pt;}
.y14f{bottom:378.481333pt;}
.ydd{bottom:379.029333pt;}
.yb3{bottom:380.305333pt;}
.y213{bottom:381.862667pt;}
.y170{bottom:383.429333pt;}
.y4d{bottom:390.088000pt;}
.y1ff{bottom:393.432000pt;}
.y1e7{bottom:393.665333pt;}
.ya{bottom:395.026667pt;}
.y22d{bottom:396.312000pt;}
.y68{bottom:396.548000pt;}
.y1cc{bottom:396.854667pt;}
.y111{bottom:397.862667pt;}
.y98{bottom:397.929333pt;}
.y7d{bottom:401.853333pt;}
.y32{bottom:402.497333pt;}
.y23f{bottom:402.842667pt;}
.ydc{bottom:402.940000pt;}
.y31{bottom:405.781333pt;}
.y14d{bottom:406.544000pt;}
.yce{bottom:410.632000pt;}
.y18f{bottom:410.801333pt;}
.y1b8{bottom:410.922667pt;}
.y1b7{bottom:412.613333pt;}
.y14c{bottom:412.876000pt;}
.y12e{bottom:413.506667pt;}
.yb2{bottom:414.913333pt;}
.y4c{bottom:417.357333pt;}
.y1a3{bottom:418.773333pt;}
.y14e{bottom:419.257333pt;}
.y1e6{bottom:420.764000pt;}
.y14a{bottom:422.853333pt;}
.y67{bottom:423.646667pt;}
.ydb{bottom:426.850667pt;}
.y14b{bottom:426.962667pt;}
.y22c{bottom:427.394667pt;}
.y212{bottom:429.009333pt;}
.y9{bottom:436.676000pt;}
.y16f{bottom:437.148000pt;}
.y110{bottom:437.232000pt;}
.y10f{bottom:437.600000pt;}
.y1cb{bottom:439.246667pt;}
.y10e{bottom:441.196000pt;}
.y30{bottom:442.974667pt;}
.y4b{bottom:444.626667pt;}
.y7c{bottom:445.165333pt;}
.y23e{bottom:446.301333pt;}
.y1e5{bottom:447.878667pt;}
.yb1{bottom:449.520000pt;}
.y66{bottom:450.745333pt;}
.ycc{bottom:450.993333pt;}
.yda{bottom:451.292000pt;}
.y1fe{bottom:454.540000pt;}
.ycd{bottom:457.376000pt;}
.y262{bottom:457.985333pt;}
.y22b{bottom:458.478667pt;}
.y1b6{bottom:458.609333pt;}
.ycb{bottom:460.972000pt;}
.y149{bottom:463.546667pt;}
.y16e{bottom:464.246667pt;}
.y97{bottom:464.661333pt;}
.y2f{bottom:466.885333pt;}
.y18e{bottom:467.957333pt;}
.y4a{bottom:471.896000pt;}
.y211{bottom:474.373333pt;}
.y1e4{bottom:474.976000pt;}
.y65{bottom:477.844000pt;}
.y210{bottom:477.969333pt;}
.y12d{bottom:481.312000pt;}
.y1ca{bottom:481.638667pt;}
.y261{bottom:481.896000pt;}
.y8{bottom:483.264000pt;}
.y10d{bottom:484.122667pt;}
.yb0{bottom:484.128000pt;}
.y1a2{bottom:486.764000pt;}
.y7b{bottom:488.478667pt;}
.y2e{bottom:490.794667pt;}
.y16d{bottom:491.345333pt;}
.y96{bottom:491.760000pt;}
.yd9{bottom:493.070667pt;}
.y23d{bottom:494.974667pt;}
.yf5{bottom:498.792000pt;}
.y22a{bottom:499.098667pt;}
.y49{bottom:499.165333pt;}
.yf4{bottom:500.608000pt;}
.y1fd{bottom:501.012000pt;}
.y18c{bottom:501.796000pt;}
.y260{bottom:505.805333pt;}
.y7{bottom:507.173333pt;}
.y18d{bottom:508.178667pt;}
.y12c{bottom:508.410667pt;}
.yca{bottom:509.153333pt;}
.y148{bottom:509.542667pt;}
.y1e3{bottom:513.138667pt;}
.y1a1{bottom:513.861333pt;}
.y2d{bottom:514.705333pt;}
.yf6{bottom:514.785333pt;}
.y1e2{bottom:516.734667pt;}
.y94{bottom:517.168000pt;}
.yaf{bottom:518.734667pt;}
.y93{bottom:518.858667pt;}
.y64{bottom:519.488000pt;}
.y18b{bottom:521.613333pt;}
.y1c9{bottom:524.030667pt;}
.y95{bottom:524.136000pt;}
.y20f{bottom:525.117333pt;}
.y48{bottom:526.434667pt;}
.y10c{bottom:527.456000pt;}
.y1b5{bottom:529.013333pt;}
.y25f{bottom:529.716000pt;}
.y6{bottom:531.084000pt;}
.y7a{bottom:531.529333pt;}
.y12b{bottom:535.508000pt;}
.y16c{bottom:537.341333pt;}
.y2c{bottom:538.616000pt;}
.y1a0{bottom:540.960000pt;}
.y229{bottom:541.056000pt;}
.y23c{bottom:541.585333pt;}
.yd6{bottom:542.884000pt;}
.yd5{bottom:544.437333pt;}
.y228{bottom:544.652000pt;}
.y92{bottom:545.956000pt;}
.y1fc{bottom:547.485333pt;}
.yae{bottom:553.342667pt;}
.y25e{bottom:553.626667pt;}
.y18a{bottom:555.064000pt;}
.yc9{bottom:557.306667pt;}
.y1e1{bottom:558.493333pt;}
.y79{bottom:559.162667pt;}
.y63{bottom:561.132000pt;}
.y16b{bottom:561.250667pt;}
.yf3{bottom:561.398667pt;}
.y2b{bottom:562.526667pt;}
.y12a{bottom:564.997333pt;}
.y47{bottom:568.420000pt;}
.y10b{bottom:570.384000pt;}
.y1c8{bottom:570.429333pt;}
.y20e{bottom:572.925333pt;}
.y91{bottom:573.054667pt;}
.y25d{bottom:577.537333pt;}
.y147{bottom:583.858667pt;}
.y1e0{bottom:585.592000pt;}
.y78{bottom:586.261333pt;}
.y1b3{bottom:586.977333pt;}
.y227{bottom:589.245333pt;}
.y19f{bottom:589.378667pt;}
.y129{bottom:592.096000pt;}
.y1fb{bottom:593.957333pt;}
.y189{bottom:594.758667pt;}
.y2a{bottom:596.436000pt;}
.y188{bottom:598.354667pt;}
.y1b4{bottom:598.577333pt;}
.y23b{bottom:599.248000pt;}
.yad{bottom:599.338667pt;}
.y29{bottom:599.720000pt;}
.y90{bottom:600.153333pt;}
.y25c{bottom:601.446667pt;}
.y62{bottom:602.774667pt;}
.y109{bottom:609.754667pt;}
.yf2{bottom:609.941333pt;}
.y10a{bottom:610.121333pt;}
.y46{bottom:610.405333pt;}
.y1df{bottom:612.690667pt;}
.y77{bottom:613.358667pt;}
.y108{bottom:613.717333pt;}
.y16a{bottom:614.969333pt;}
.y1c7{bottom:617.061333pt;}
.y128{bottom:617.502667pt;}
.y127{bottom:619.193333pt;}
.yc8{bottom:623.780000pt;}
.y25b{bottom:625.357333pt;}
.y8f{bottom:625.561333pt;}
.y23a{bottom:626.346667pt;}
.y8e{bottom:627.252000pt;}
.y61{bottom:629.873333pt;}
.y1b2{bottom:631.969333pt;}
.y143{bottom:633.577333pt;}
.y144{bottom:635.740000pt;}
.y145{bottom:635.741333pt;}
.y226{bottom:636.202667pt;}
.y28{bottom:636.914667pt;}
.y146{bottom:637.161333pt;}
.y20d{bottom:637.428000pt;}
.y45{bottom:637.674667pt;}
.y19e{bottom:639.313333pt;}
.y1de{bottom:639.805333pt;}
.y1fa{bottom:640.430667pt;}
.y76{bottom:640.457333pt;}
.y1c6{bottom:640.970667pt;}
.y187{bottom:641.644000pt;}
.yac{bottom:648.201333pt;}
.yc7{bottom:649.188000pt;}
.y25a{bottom:649.268000pt;}
.yc6{bottom:650.878667pt;}
.yab{bottom:652.369333pt;}
.y169{bottom:653.956000pt;}
.y8d{bottom:654.350667pt;}
.y107{bottom:656.645333pt;}
.y5{bottom:659.105333pt;}
.y239{bottom:659.924000pt;}
.y27{bottom:660.824000pt;}
.y19d{bottom:663.224000pt;}
.y44{bottom:664.944000pt;}
.y238{bottom:666.305333pt;}
.y1dd{bottom:666.904000pt;}
.y75{bottom:667.556000pt;}
.y126{bottom:667.580000pt;}
.y1b1{bottom:667.913333pt;}
.y237{bottom:669.901333pt;}
.y60{bottom:671.517333pt;}
.y259{bottom:673.178667pt;}
.yf1{bottom:674.262667pt;}
.yf0{bottom:675.044000pt;}
.yef{bottom:678.638667pt;}
.yaa{bottom:679.468000pt;}
.y8c{bottom:681.448000pt;}
.y106{bottom:681.561333pt;}
.y1c2{bottom:682.592000pt;}
.y105{bottom:683.744000pt;}
.y20c{bottom:684.576000pt;}
.y1f9{bottom:687.013333pt;}
.y186{bottom:688.166667pt;}
.yc4{bottom:691.240000pt;}
.y125{bottom:691.490667pt;}
.y168{bottom:692.942667pt;}
.y1dc{bottom:694.001333pt;}
.y74{bottom:695.188000pt;}
.y225{bottom:695.840000pt;}
.y258{bottom:697.088000pt;}
.yc5{bottom:697.621333pt;}
.y26{bottom:698.018667pt;}
.y141{bottom:698.097333pt;}
.y5f{bottom:698.616000pt;}
.y142{bottom:700.261333pt;}
.y1b0{bottom:703.857333pt;}
.y24e{bottom:706.101333pt;}
.y43{bottom:706.929333pt;}
.yc3{bottom:709.368000pt;}
.y8b{bottom:710.749333pt;}
.yc2{bottom:711.058667pt;}
.y236{bottom:713.457333pt;}
.ya9{bottom:714.074667pt;}
.y19c{bottom:716.796000pt;}
.y19b{bottom:718.349333pt;}
.y166{bottom:719.298667pt;}
.y257{bottom:720.998667pt;}
.y1db{bottom:721.100000pt;}
.y73{bottom:722.286667pt;}
.y5e{bottom:725.714667pt;}
.y104{bottom:727.077333pt;}
.yee{bottom:727.988000pt;}
.y24d{bottom:730.542667pt;}
.y165{bottom:731.448000pt;}
.y20b{bottom:731.722667pt;}
.y167{bottom:732.288000pt;}
.y1f8{bottom:732.378667pt;}
.y42{bottom:734.198667pt;}
.y25{bottom:735.212000pt;}
.y164{bottom:735.882667pt;}
.y8a{bottom:737.848000pt;}
.y124{bottom:741.360000pt;}
.y223{bottom:741.393333pt;}
.y185{bottom:741.726667pt;}
.y256{bottom:744.909333pt;}
.y140{bottom:745.178667pt;}
.y184{bottom:745.322667pt;}
.y224{bottom:745.502667pt;}
.ya8{bottom:748.682667pt;}
.y72{bottom:749.385333pt;}
.y1af{bottom:749.853333pt;}
.yc1{bottom:751.934667pt;}
.y5d{bottom:752.812000pt;}
.y24c{bottom:754.453333pt;}
.y235{bottom:757.013333pt;}
.y24{bottom:759.122667pt;}
.y1da{bottom:759.262667pt;}
.y1f7{bottom:759.477333pt;}
.y41{bottom:761.468000pt;}
.y1d9{bottom:762.858667pt;}
.y123{bottom:763.717333pt;}
.y89{bottom:764.946667pt;}
.y122{bottom:765.270667pt;}
.y255{bottom:768.820000pt;}
.yec{bottom:769.906667pt;}
.y103{bottom:770.004000pt;}
.y163{bottom:774.869333pt;}
.yed{bottom:776.288000pt;}
.y71{bottom:776.484000pt;}
.y24b{bottom:778.364000pt;}
.y20a{bottom:778.870667pt;}
.y5c{bottom:779.910667pt;}
.y1c5{bottom:780.398667pt;}
.y23{bottom:783.033333pt;}
.ya7{bottom:783.289333pt;}
.y222{bottom:785.986667pt;}
.yeb{bottom:788.033333pt;}
.y183{bottom:788.613333pt;}
.y40{bottom:788.737333pt;}
.yea{bottom:789.724000pt;}
.y1ae{bottom:791.100000pt;}
.y13f{bottom:791.174667pt;}
.y88{bottom:792.044000pt;}
.y254{bottom:792.729333pt;}
.yd4{bottom:795.894667pt;}
.yc0{bottom:800.088000pt;}
.y234{bottom:800.569333pt;}
.y4{bottom:802.264000pt;}
.y24a{bottom:802.273333pt;}
.y70{bottom:803.581333pt;}
.y1d8{bottom:804.617333pt;}
.y1f6{bottom:806.690667pt;}
.y22{bottom:806.942667pt;}
.yd8{bottom:807.421333pt;}
.y161{bottom:809.420000pt;}
.y162{bottom:810.260000pt;}
.y1c4{bottom:810.634667pt;}
.y160{bottom:813.856000pt;}
.y121{bottom:815.084000pt;}
.y3f{bottom:816.006667pt;}
.y102{bottom:816.406667pt;}
.y120{bottom:816.637333pt;}
.y253{bottom:816.640000pt;}
.ya6{bottom:817.897333pt;}
.y87{bottom:819.142667pt;}
.y5b{bottom:821.554667pt;}
.y182{bottom:822.452000pt;}
.y209{bottom:826.017333pt;}
.y249{bottom:826.184000pt;}
.y233{bottom:827.668000pt;}
.ye9{bottom:829.233333pt;}
.y3{bottom:830.158667pt;}
.y6f{bottom:830.680000pt;}
.y21{bottom:830.853333pt;}
.y220{bottom:831.540000pt;}
.y1d7{bottom:831.716000pt;}
.y221{bottom:835.649333pt;}
.y181{bottom:839.992000pt;}
.y252{bottom:840.550667pt;}
.y3e{bottom:843.276000pt;}
.y1c3{bottom:843.318667pt;}
.y180{bottom:843.621333pt;}
.y1aa{bottom:844.597333pt;}
.y13d{bottom:845.161333pt;}
.y86{bottom:848.444000pt;}
.y13e{bottom:849.270667pt;}
.y248{bottom:850.625333pt;}
.y15f{bottom:852.842667pt;}
.y20{bottom:854.764000pt;}
.y1ad{bottom:855.474667pt;}
.y6e{bottom:858.312000pt;}
.y1d6{bottom:858.830667pt;}
.y101{bottom:859.620000pt;}
.y5a{bottom:863.198667pt;}
.ya5{bottom:863.893333pt;}
.y251{bottom:864.461333pt;}
.ybf{bottom:864.872000pt;}
.ybe{bottom:866.562667pt;}
.y1f5{bottom:867.798667pt;}
.y3d{bottom:870.545333pt;}
.y208{bottom:873.826667pt;}
.y232{bottom:874.278667pt;}
.y247{bottom:875.200000pt;}
.y85{bottom:875.541333pt;}
.y21f{bottom:876.133333pt;}
.y1f{bottom:878.674667pt;}
.y17f{bottom:879.606667pt;}
.ye8{bottom:880.656000pt;}
.y1c1{bottom:881.612000pt;}
.ye7{bottom:882.346667pt;}
.y1ac{bottom:885.286667pt;}
.y6d{bottom:885.410667pt;}
.y13c{bottom:885.854667pt;}
.y1d5{bottom:885.929333pt;}
.y250{bottom:888.370667pt;}
.y2{bottom:888.702667pt;}
.y1f4{bottom:894.897333pt;}
.y3c{bottom:897.814667pt;}
.y15e{bottom:898.838667pt;}
.y246{bottom:899.110667pt;}
.y59{bottom:904.842667pt;}
.y100{bottom:905.521333pt;}
.y24f{bottom:912.281333pt;}
.ybd{bottom:912.465333pt;}
.y6c{bottom:912.509333pt;}
.y1d4{bottom:913.026667pt;}
.y1e{bottom:913.078667pt;}
.ybc{bottom:913.305333pt;}
.ybb{bottom:916.901333pt;}
.ya4{bottom:916.922667pt;}
.y1d{bottom:917.898667pt;}
.y21e{bottom:918.090667pt;}
.y1f1{bottom:918.657333pt;}
.y17d{bottom:919.794667pt;}
.y17e{bottom:919.828000pt;}
.y21d{bottom:921.686667pt;}
.y1f3{bottom:921.996000pt;}
.y17c{bottom:923.424000pt;}
.y1{bottom:924.568000pt;}
.y3b{bottom:925.084000pt;}
.y13a{bottom:926.546667pt;}
.ye6{bottom:930.646667pt;}
.y13b{bottom:930.656000pt;}
.y58{bottom:931.941333pt;}
.y1c0{bottom:933.705333pt;}
.ye5{bottom:934.242667pt;}
.yff{bottom:936.989333pt;}
.y207{bottom:938.329333pt;}
.y6b{bottom:939.608000pt;}
.y1d3{bottom:940.125333pt;}
.y245{bottom:940.141333pt;}
.y1b{bottom:941.637333pt;}
.y15d{bottom:942.113333pt;}
.ya3{bottom:944.021333pt;}
.y1f0{bottom:945.756000pt;}
.y1c{bottom:946.916000pt;}
.yfe{bottom:957.614667pt;}
.y57{bottom:959.040000pt;}
.yfd{bottom:960.898667pt;}
.yba{bottom:965.082667pt;}
.y206{bottom:965.428000pt;}
.y21c{bottom:966.278667pt;}
.y6a{bottom:966.706667pt;}
.y17b{bottom:966.713333pt;}
.y3a{bottom:967.069333pt;}
.y1d2{bottom:967.224000pt;}
.y139{bottom:967.240000pt;}
.y15c{bottom:968.832000pt;}
.y1f2{bottom:969.210667pt;}
.y1ef{bottom:972.854667pt;}
.ya2{bottom:974.193333pt;}
.ya1{bottom:975.033333pt;}
.y1ab{bottom:976.416000pt;}
.ya0{bottom:978.629333pt;}
.y15a{bottom:981.048000pt;}
.y15b{bottom:981.525333pt;}
.yfc{bottom:983.256000pt;}
.ye4{bottom:983.592000pt;}
.yfb{bottom:984.809333pt;}
.y1a{bottom:985.341333pt;}
.y56{bottom:986.137333pt;}
.y19a{bottom:995.630667pt;}
.y199{bottom:996.112000pt;}
.y198{bottom:997.665333pt;}
.y11f{bottom:999.377333pt;}
.yd3{bottom:999.989333pt;}
.y11e{bottom:1000.281333pt;}
.y11d{bottom:1001.834667pt;}
.yfa{bottom:1009.250667pt;}
.yd7{bottom:1011.516000pt;}
.y19{bottom:1013.236000pt;}
.y39{bottom:1059.728000pt;}
.hb{height:14.059315pt;}
.h18{height:15.550933pt;}
.hc{height:23.910400pt;}
.h36{height:25.812358pt;}
.h12{height:27.895200pt;}
.he{height:28.357734pt;}
.h11{height:31.880400pt;}
.h8{height:33.713664pt;}
.hd{height:34.112401pt;}
.h9{height:35.139115pt;}
.h7{height:35.865600pt;}
.h6{height:39.850400pt;}
.h2a{height:42.282400pt;}
.h2b{height:42.287733pt;}
.h10{height:43.636400pt;}
.h5{height:44.632747pt;}
.h2d{height:45.092358pt;}
.h2f{height:46.063733pt;}
.h41{height:46.497067pt;}
.h45{height:46.586533pt;}
.h46{height:46.591867pt;}
.h37{height:47.175200pt;}
.h4a{height:47.180533pt;}
.h3{height:47.820800pt;}
.ha{height:48.353067pt;}
.h38{height:49.279025pt;}
.h16{height:49.831200pt;}
.h13{height:49.836533pt;}
.hf{height:49.979733pt;}
.h26{height:50.399067pt;}
.h58{height:51.361867pt;}
.h15{height:52.986400pt;}
.h1f{height:52.989733pt;}
.h22{height:52.995067pt;}
.h56{height:53.034400pt;}
.h57{height:53.393867pt;}
.h2{height:53.559147pt;}
.h40{height:54.107733pt;}
.h35{height:54.444533pt;}
.h44{height:55.242533pt;}
.h2c{height:55.495200pt;}
.h3c{height:55.500533pt;}
.h1b{height:55.901733pt;}
.h19{height:55.907067pt;}
.h51{height:58.015067pt;}
.h1d{height:58.020400pt;}
.h3d{height:58.092533pt;}
.h30{height:59.757733pt;}
.h23{height:60.308400pt;}
.h59{height:60.311200pt;}
.h39{height:60.316533pt;}
.h5a{height:61.145733pt;}
.h21{height:61.380400pt;}
.h2e{height:61.708533pt;}
.h43{height:61.869355pt;}
.h1e{height:62.547067pt;}
.h4f{height:62.552400pt;}
.h17{height:62.967200pt;}
.h14{height:62.972533pt;}
.h4b{height:64.881867pt;}
.h4c{height:65.741355pt;}
.h47{height:66.559067pt;}
.h55{height:66.753867pt;}
.h49{height:68.248021pt;}
.h25{height:69.309733pt;}
.h1c{height:70.285733pt;}
.h1a{height:70.291067pt;}
.h3f{height:70.545067pt;}
.h3e{height:71.272400pt;}
.h50{height:71.608021pt;}
.h3a{height:71.752400pt;}
.h3b{height:71.757733pt;}
.h20{height:72.613069pt;}
.h34{height:73.411067pt;}
.h24{height:73.645733pt;}
.h4e{height:76.749355pt;}
.h52{height:76.882688pt;}
.h32{height:76.931067pt;}
.h42{height:78.306688pt;}
.h33{height:80.056400pt;}
.h4d{height:80.109355pt;}
.h53{height:83.545733pt;}
.h28{height:92.349733pt;}
.h48{height:93.773355pt;}
.h31{height:95.811067pt;}
.h27{height:95.816400pt;}
.h5b{height:97.380400pt;}
.h4{height:105.611479pt;}
.h54{height:121.699067pt;}
.h29{height:132.264400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.413333pt;}
.x2c{left:96.000000pt;}
.x2d{left:98.434667pt;}
.x34{left:101.656000pt;}
.xf5{left:102.641333pt;}
.xbe{left:103.648000pt;}
.x47{left:105.964000pt;}
.x33{left:106.909333pt;}
.xad{left:108.462667pt;}
.x40{left:110.102667pt;}
.xb{left:111.940000pt;}
.x36{left:113.172000pt;}
.x3e{left:114.142667pt;}
.x38{left:115.925333pt;}
.x30{left:118.221333pt;}
.xf6{left:124.633333pt;}
.xd8{left:130.398667pt;}
.x31{left:133.997333pt;}
.x32{left:135.006667pt;}
.x35{left:137.633333pt;}
.x51{left:139.820000pt;}
.x25{left:141.164000pt;}
.x1{left:142.944000pt;}
.xd9{left:146.152000pt;}
.x48{left:148.698667pt;}
.x9c{left:149.628000pt;}
.x4a{left:150.517333pt;}
.x81{left:153.202667pt;}
.x24{left:154.448000pt;}
.xcf{left:156.789333pt;}
.xa9{left:159.650667pt;}
.x52{left:163.002667pt;}
.xe9{left:165.497333pt;}
.xba{left:166.617333pt;}
.x80{left:168.469333pt;}
.x82{left:172.844000pt;}
.xda{left:174.266667pt;}
.x2{left:177.861333pt;}
.x49{left:180.434667pt;}
.x97{left:185.622667pt;}
.xc5{left:189.004000pt;}
.x22{left:190.597333pt;}
.x8d{left:191.697333pt;}
.x98{left:192.896000pt;}
.x58{left:195.110667pt;}
.x23{left:196.556000pt;}
.xf0{left:197.457333pt;}
.x99{left:201.886667pt;}
.x89{left:204.168000pt;}
.x5d{left:208.601333pt;}
.x8a{left:210.489333pt;}
.x83{left:212.388000pt;}
.x5c{left:215.988000pt;}
.x74{left:218.186667pt;}
.x12{left:219.562667pt;}
.x5e{left:220.644000pt;}
.x8c{left:221.696000pt;}
.xb9{left:222.945333pt;}
.x7f{left:224.925333pt;}
.x8b{left:226.124000pt;}
.x7c{left:227.405333pt;}
.x68{left:228.526667pt;}
.x13{left:229.504000pt;}
.xf4{left:232.188000pt;}
.x61{left:233.458667pt;}
.x3b{left:235.246667pt;}
.xe7{left:239.257333pt;}
.x71{left:240.993333pt;}
.x3c{left:242.518667pt;}
.x3{left:244.284000pt;}
.x76{left:245.585333pt;}
.xe5{left:246.689333pt;}
.x84{left:248.912000pt;}
.x6e{left:251.390667pt;}
.x6f{left:253.073333pt;}
.xa7{left:254.838667pt;}
.x14{left:256.137333pt;}
.x7d{left:257.284000pt;}
.x7e{left:259.756000pt;}
.x15{left:260.820000pt;}
.xea{left:261.773333pt;}
.x8e{left:263.560000pt;}
.x64{left:265.002667pt;}
.x79{left:268.734667pt;}
.x16{left:269.768000pt;}
.x69{left:272.653333pt;}
.xbf{left:274.024000pt;}
.x50{left:275.869333pt;}
.x6b{left:277.352000pt;}
.x96{left:279.032000pt;}
.x55{left:280.930667pt;}
.x17{left:282.546667pt;}
.x9a{left:283.638667pt;}
.x5a{left:287.604000pt;}
.x1f{left:289.850667pt;}
.x9e{left:291.540000pt;}
.x7{left:293.149333pt;}
.x85{left:294.129333pt;}
.xbb{left:295.082667pt;}
.x5b{left:299.102667pt;}
.x9b{left:301.392000pt;}
.x27{left:302.582667pt;}
.x9d{left:304.676000pt;}
.x78{left:305.797333pt;}
.xe3{left:307.728000pt;}
.x90{left:309.984000pt;}
.x59{left:311.248000pt;}
.x28{left:313.629333pt;}
.x4{left:316.673333pt;}
.xaa{left:318.076000pt;}
.xed{left:319.310667pt;}
.xe4{left:320.976000pt;}
.x70{left:322.968000pt;}
.x57{left:324.037333pt;}
.x87{left:325.217333pt;}
.x41{left:326.150667pt;}
.xd7{left:329.413333pt;}
.x37{left:331.561333pt;}
.xdb{left:332.876000pt;}
.x5{left:333.781333pt;}
.x65{left:336.300000pt;}
.x72{left:337.936000pt;}
.x6{left:339.008000pt;}
.x20{left:340.090667pt;}
.xbd{left:341.873333pt;}
.x86{left:343.648000pt;}
.xb6{left:344.785333pt;}
.x56{left:346.098667pt;}
.x4e{left:348.118667pt;}
.x8{left:349.013333pt;}
.x26{left:350.974667pt;}
.x2b{left:352.030667pt;}
.xd6{left:353.156000pt;}
.x66{left:354.434667pt;}
.xaf{left:356.096000pt;}
.x3f{left:357.452000pt;}
.x18{left:359.040000pt;}
.x9{left:360.858667pt;}
.xb7{left:362.406667pt;}
.x2f{left:363.736000pt;}
.x75{left:366.174667pt;}
.xb5{left:367.116000pt;}
.x3d{left:368.044000pt;}
.xcd{left:369.262667pt;}
.x19{left:370.152000pt;}
.x29{left:371.168000pt;}
.xac{left:372.408000pt;}
.x1a{left:374.834667pt;}
.xb4{left:375.822667pt;}
.xe6{left:377.290667pt;}
.x77{left:378.502667pt;}
.xdc{left:379.584000pt;}
.xb3{left:382.316000pt;}
.xb2{left:383.709333pt;}
.x1b{left:384.966667pt;}
.x42{left:388.226667pt;}
.x10{left:395.032000pt;}
.x6a{left:398.028000pt;}
.xa4{left:401.314667pt;}
.x1c{left:403.389333pt;}
.x11{left:404.973333pt;}
.x1d{left:408.072000pt;}
.x62{left:409.618667pt;}
.x94{left:415.936000pt;}
.x1e{left:417.114667pt;}
.x53{left:418.437333pt;}
.xa0{left:420.777333pt;}
.xae{left:423.812000pt;}
.x67{left:425.060000pt;}
.x5f{left:426.277333pt;}
.xa8{left:428.182667pt;}
.xa2{left:429.722667pt;}
.xc{left:431.714667pt;}
.xab{left:436.444000pt;}
.xb1{left:441.165333pt;}
.xa5{left:444.294667pt;}
.xb0{left:448.398667pt;}
.xc8{left:449.676000pt;}
.x95{left:450.825333pt;}
.xc7{left:452.521333pt;}
.x21{left:454.897333pt;}
.x4f{left:456.441333pt;}
.xa6{left:459.698667pt;}
.xd{left:461.122667pt;}
.xa3{left:464.250667pt;}
.x92{left:466.040000pt;}
.x54{left:467.714667pt;}
.xf3{left:471.301333pt;}
.xe{left:475.826667pt;}
.x93{left:477.085333pt;}
.x6c{left:481.224000pt;}
.x2a{left:487.470667pt;}
.x9f{left:489.105333pt;}
.x6d{left:492.221333pt;}
.xa1{left:493.273333pt;}
.x88{left:494.357333pt;}
.x91{left:498.585333pt;}
.xdd{left:500.666667pt;}
.x7a{left:506.504000pt;}
.xd0{left:508.342667pt;}
.x43{left:514.282667pt;}
.x7b{left:515.926667pt;}
.xbc{left:517.372000pt;}
.xd1{left:520.766667pt;}
.xce{left:525.428000pt;}
.xc0{left:527.229333pt;}
.xde{left:531.810667pt;}
.xe8{left:535.730667pt;}
.xf{left:538.485333pt;}
.x8f{left:540.324000pt;}
.xc6{left:541.222667pt;}
.xee{left:555.260000pt;}
.x60{left:561.278667pt;}
.xc1{left:564.946667pt;}
.x39{left:567.486667pt;}
.xef{left:573.246667pt;}
.x3a{left:574.758667pt;}
.xd2{left:577.333333pt;}
.x44{left:585.140000pt;}
.x45{left:597.236000pt;}
.x63{left:606.064000pt;}
.xc2{left:608.461333pt;}
.x4b{left:610.321333pt;}
.xc9{left:613.142667pt;}
.xd3{left:616.869333pt;}
.xc3{left:620.552000pt;}
.xd4{left:622.413333pt;}
.xca{left:623.542667pt;}
.xf1{left:624.856000pt;}
.xf2{left:630.626667pt;}
.x46{left:632.728000pt;}
.xd5{left:634.837333pt;}
.xeb{left:636.457333pt;}
.xcb{left:638.254667pt;}
.x4c{left:644.282667pt;}
.xb8{left:647.804000pt;}
.xcc{left:650.588000pt;}
.xc4{left:652.373333pt;}
.xec{left:653.930667pt;}
.x4d{left:673.774667pt;}
.xdf{left:680.988000pt;}
.xe0{left:686.605333pt;}
.xe1{left:697.514667pt;}
.x73{left:703.122667pt;}
.xe2{left:706.356000pt;}
.x2e{left:710.396000pt;}
}




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