
    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_3ca0b12bcb1374a5f1f541e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976000;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_cdfdb56bc9658f3fafadeefb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_02f8451fc8d5092943db2793.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.157000;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_a773393155fc91bbec951e89.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_e80d3b56fa186ecf54a59764.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.108000;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_748cdabb1cbe3ec7056d4c93.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.892000;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_d6a0affe2de2a30aa91c8759.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3dc7ef863756253151966e2f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9acd1f9aa67ebce912222dd0.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_122d173777e2e657f8b6eb61.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cb5248fca6b4ec21778c44c6.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_300c799a4db6215985b80ca8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.040000;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_135ff20c6555866a1fa783cf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.907000;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_dfe05e8fbfc484be20259f6d.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_7580b67b726a7e1a80c6e698.woff2')format("woff");}.fff{font-family:fff;line-height:0.907000;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_f09a43ace59b2f02fdcd2807.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.727000;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_8fe7bd870154478ebf091b75.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.727000;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_ba887d3e6ed6abfbc00cfa59.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.782000;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_b099a8280a83f0706435605f.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_fe99ab860b595ce87bdbcfcb.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.854000;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_668c7ee0d758c06c2964c35d.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;}
.m8{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);}
.m10{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m20{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);}
.m16{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m1a{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);}
.m25{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);}
.m17{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);}
.m1{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);}
.m1e{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m1f{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);}
.m12{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);}
.m24{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m21{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);}
.m15{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);}
.m19{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);}
.m22{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);}
.mc{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);}
.m14{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);}
.m18{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);}
.m1d{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.ma{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);}
.m13{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);}
.m5{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);}
.m7{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m9{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.me{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);}
.mf{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.v18{vertical-align:-66.354000px;}
.v13{vertical-align:-65.046787px;}
.v12{vertical-align:-56.572042px;}
.v14{vertical-align:-39.055300px;}
.v3{vertical-align:-16.872000px;}
.va{vertical-align:-8.970000px;}
.ve{vertical-align:-5.995854px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:2.512926px;}
.v10{vertical-align:11.010361px;}
.v1{vertical-align:14.286000px;}
.vd{vertical-align:17.516742px;}
.vf{vertical-align:19.490779px;}
.v9{vertical-align:20.616000px;}
.v8{vertical-align:23.538000px;}
.v16{vertical-align:24.540000px;}
.v2{vertical-align:26.028000px;}
.v7{vertical-align:32.040000px;}
.v4{vertical-align:41.004000px;}
.v1a{vertical-align:59.532000px;}
.v15{vertical-align:66.354000px;}
.vc{vertical-align:72.474000px;}
.vb{vertical-align:81.438000px;}
.v5{vertical-align:84.282000px;}
.v17{vertical-align:86.964000px;}
.v19{vertical-align:107.352000px;}
.v6{vertical-align:125.286000px;}
.ls3{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.000284px;}
.ls25{letter-spacing:0.000300px;}
.ls1b{letter-spacing:0.000305px;}
.ls60{letter-spacing:0.000308px;}
.ls5e{letter-spacing:0.000444px;}
.ls42{letter-spacing:0.000544px;}
.ls70{letter-spacing:0.000921px;}
.ls35{letter-spacing:0.000936px;}
.ls9d{letter-spacing:0.000990px;}
.ls71{letter-spacing:0.001689px;}
.ls43{letter-spacing:0.001690px;}
.ls4b{letter-spacing:0.002012px;}
.ls80{letter-spacing:0.002023px;}
.ls98{letter-spacing:0.002099px;}
.ls45{letter-spacing:0.002172px;}
.ls6a{letter-spacing:0.002245px;}
.ls2a{letter-spacing:0.002257px;}
.ls7a{letter-spacing:0.002272px;}
.ls6b{letter-spacing:0.002368px;}
.ls1f{letter-spacing:0.002387px;}
.ls4d{letter-spacing:0.002450px;}
.ls73{letter-spacing:0.002469px;}
.ls28{letter-spacing:0.002502px;}
.ls72{letter-spacing:0.002638px;}
.ls1e{letter-spacing:0.002646px;}
.ls44{letter-spacing:0.003652px;}
.ls15{letter-spacing:0.004896px;}
.ls5a{letter-spacing:0.004960px;}
.ls93{letter-spacing:0.005514px;}
.ls23{letter-spacing:0.005579px;}
.lsa1{letter-spacing:0.005907px;}
.ls91{letter-spacing:0.006921px;}
.ls9b{letter-spacing:0.007206px;}
.ls51{letter-spacing:0.007904px;}
.ls97{letter-spacing:0.008099px;}
.ls4f{letter-spacing:0.008848px;}
.ls8a{letter-spacing:0.010378px;}
.ls52{letter-spacing:0.010527px;}
.ls78{letter-spacing:0.010600px;}
.ls8e{letter-spacing:0.010824px;}
.ls40{letter-spacing:0.011001px;}
.ls1c{letter-spacing:0.011579px;}
.ls63{letter-spacing:0.013251px;}
.ls4a{letter-spacing:0.013604px;}
.ls9c{letter-spacing:0.014478px;}
.ls6f{letter-spacing:0.016154px;}
.ls77{letter-spacing:0.016600px;}
.ls3c{letter-spacing:0.018751px;}
.ls3a{letter-spacing:0.019010px;}
.ls57{letter-spacing:0.019251px;}
.ls7c{letter-spacing:0.020110px;}
.ls8b{letter-spacing:0.021130px;}
.ls8c{letter-spacing:0.021611px;}
.lsa0{letter-spacing:0.025012px;}
.ls8d{letter-spacing:0.025348px;}
.ls85{letter-spacing:0.026362px;}
.ls84{letter-spacing:0.027611px;}
.ls94{letter-spacing:0.027691px;}
.ls88{letter-spacing:0.030516px;}
.ls5c{letter-spacing:0.032073px;}
.lsa9{letter-spacing:0.179327px;}
.lsa8{letter-spacing:0.358654px;}
.lsa4{letter-spacing:0.717307px;}
.lsa5{letter-spacing:0.836858px;}
.lsa7{letter-spacing:0.896634px;}
.lsaa{letter-spacing:1.255288px;}
.lsa6{letter-spacing:2.032370px;}
.ls5b{letter-spacing:2.092146px;}
.ls17{letter-spacing:2.271473px;}
.ls2f{letter-spacing:2.824476px;}
.ls92{letter-spacing:2.984234px;}
.ls7f{letter-spacing:2.984525px;}
.ls1{letter-spacing:2.984726px;}
.ls1a{letter-spacing:2.987535px;}
.ls79{letter-spacing:2.990525px;}
.ls2{letter-spacing:2.990726px;}
.ls0{letter-spacing:2.991746px;}
.ls10{letter-spacing:2.991954px;}
.ls19{letter-spacing:2.993535px;}
.ls16{letter-spacing:3.347434px;}
.ls37{letter-spacing:4.244013px;}
.ls33{letter-spacing:4.249686px;}
.ls90{letter-spacing:4.484282px;}
.ls22{letter-spacing:4.489024px;}
.ls7b{letter-spacing:4.490282px;}
.ls21{letter-spacing:4.495024px;}
.ls5f{letter-spacing:4.497077px;}
.ls66{letter-spacing:4.503077px;}
.lsb{letter-spacing:4.662497px;}
.ls55{letter-spacing:5.273276px;}
.ls64{letter-spacing:5.286444px;}
.ls68{letter-spacing:5.292444px;}
.ls48{letter-spacing:6.187876px;}
.ls53{letter-spacing:6.193876px;}
.ls58{letter-spacing:6.240990px;}
.ls65{letter-spacing:6.246990px;}
.ls95{letter-spacing:6.754643px;}
.ls83{letter-spacing:6.814418px;}
.ls13{letter-spacing:7.167269px;}
.ls7d{letter-spacing:7.173269px;}
.ls39{letter-spacing:7.412174px;}
.ls59{letter-spacing:7.474454px;}
.ls56{letter-spacing:7.480454px;}
.ls2c{letter-spacing:9.606277px;}
.lsc{letter-spacing:9.982267px;}
.ls3b{letter-spacing:10.415535px;}
.ls38{letter-spacing:10.421535px;}
.ls9f{letter-spacing:12.373549px;}
.lsa3{letter-spacing:13.031081px;}
.ls6e{letter-spacing:13.210408px;}
.ls5{letter-spacing:13.270183px;}
.ls62{letter-spacing:13.287962px;}
.ls9{letter-spacing:13.329959px;}
.ls2b{letter-spacing:13.630626px;}
.lse{letter-spacing:13.686305px;}
.ls96{letter-spacing:13.867939px;}
.ls14{letter-spacing:14.233876px;}
.lsd{letter-spacing:14.397181px;}
.ls26{letter-spacing:14.943900px;}
.ls9e{letter-spacing:15.392525px;}
.ls87{letter-spacing:15.541656px;}
.lsa2{letter-spacing:16.016525px;}
.ls6d{letter-spacing:16.220525px;}
.ls76{letter-spacing:16.268525px;}
.ls18{letter-spacing:16.271535px;}
.ls82{letter-spacing:16.274525px;}
.ls75{letter-spacing:16.557841px;}
.lsf{letter-spacing:16.605181px;}
.ls4{letter-spacing:16.617617px;}
.ls8{letter-spacing:16.677392px;}
.ls86{letter-spacing:16.902305px;}
.ls89{letter-spacing:16.908305px;}
.ls11{letter-spacing:17.010544px;}
.ls20{letter-spacing:17.773024px;}
.lsa{letter-spacing:17.932680px;}
.ls3f{letter-spacing:17.933535px;}
.ls9a{letter-spacing:18.470660px;}
.ls49{letter-spacing:18.557276px;}
.ls67{letter-spacing:18.563276px;}
.ls4e{letter-spacing:18.610587px;}
.ls74{letter-spacing:18.769538px;}
.ls34{letter-spacing:18.913150px;}
.ls50{letter-spacing:19.477876px;}
.ls54{letter-spacing:19.524990px;}
.ls3e{letter-spacing:19.589535px;}
.ls3d{letter-spacing:19.595535px;}
.ls47{letter-spacing:20.232444px;}
.ls46{letter-spacing:20.268444px;}
.ls4c{letter-spacing:20.466555px;}
.ls5d{letter-spacing:20.472555px;}
.ls99{letter-spacing:20.742133px;}
.ls41{letter-spacing:21.097024px;}
.ls7{letter-spacing:23.133157px;}
.ls1d{letter-spacing:23.778538px;}
.ls7e{letter-spacing:24.520287px;}
.ls81{letter-spacing:24.526287px;}
.ls6c{letter-spacing:29.887800px;}
.ls8f{letter-spacing:33.414560px;}
.ls61{letter-spacing:62.176985px;}
.ls32{letter-spacing:111.284466px;}
.ls24{letter-spacing:229.060099px;}
.ls12{letter-spacing:257.333958px;}
.ls2e{letter-spacing:259.364193px;}
.ls31{letter-spacing:358.718380px;}
.ls30{letter-spacing:362.847975px;}
.ls36{letter-spacing:369.134535px;}
.ls6{letter-spacing:414.185132px;}
.ls29{letter-spacing:422.052066px;}
.ls27{letter-spacing:426.181661px;}
.ls69{letter-spacing:615.090924px;}
.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;}
}
.ws79{word-spacing:-47.324343px;}
.ws47{word-spacing:-38.937826px;}
.ws68{word-spacing:-36.812599px;}
.ws87{word-spacing:-25.667643px;}
.ws49{word-spacing:-20.945370px;}
.ws1a{word-spacing:-19.941274px;}
.ws84{word-spacing:-19.152102px;}
.ws66{word-spacing:-14.943900px;}
.ws86{word-spacing:-14.205995px;}
.ws78{word-spacing:-13.329959px;}
.ws55{word-spacing:-11.632298px;}
.ws48{word-spacing:-10.467995px;}
.ws58{word-spacing:-8.733995px;}
.ws46{word-spacing:-5.901995px;}
.ws4b{word-spacing:-3.168107px;}
.ws4a{word-spacing:-3.027995px;}
.ws77{word-spacing:-2.133995px;}
.ws54{word-spacing:-2.092146px;}
.ws2f{word-spacing:-1.972595px;}
.ws6e{word-spacing:-1.912819px;}
.ws5d{word-spacing:-1.853044px;}
.ws2e{word-spacing:-1.554166px;}
.ws41{word-spacing:-1.434614px;}
.ws35{word-spacing:-1.374839px;}
.ws6a{word-spacing:-1.315063px;}
.ws80{word-spacing:-1.255288px;}
.ws7f{word-spacing:-1.195512px;}
.ws36{word-spacing:-1.075961px;}
.ws88{word-spacing:-0.956410px;}
.ws9f{word-spacing:-0.896634px;}
.ws89{word-spacing:-0.836858px;}
.ws32{word-spacing:-0.777083px;}
.ws30{word-spacing:-0.537980px;}
.ws8d{word-spacing:-0.418429px;}
.ws8b{word-spacing:-0.358654px;}
.ws50{word-spacing:-0.298878px;}
.ws1b{word-spacing:-0.239102px;}
.ws23{word-spacing:-0.179327px;}
.ws1d{word-spacing:-0.119551px;}
.ws19{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.053798px;}
.ws14{word-spacing:-0.047821px;}
.ws72{word-spacing:-0.041843px;}
.ws69{word-spacing:-0.039559px;}
.ws44{word-spacing:-0.012055px;}
.ws0{word-spacing:0.000000px;}
.ws3a{word-spacing:0.059776px;}
.ws33{word-spacing:0.119551px;}
.ws3e{word-spacing:0.179327px;}
.ws28{word-spacing:0.239102px;}
.ws56{word-spacing:0.290005px;}
.ws40{word-spacing:0.298878px;}
.ws27{word-spacing:0.358654px;}
.ws8a{word-spacing:0.478205px;}
.ws5e{word-spacing:0.597756px;}
.ws5c{word-spacing:0.657532px;}
.ws70{word-spacing:0.777083px;}
.ws7c{word-spacing:0.836858px;}
.ws29{word-spacing:0.896634px;}
.ws81{word-spacing:0.956410px;}
.ws59{word-spacing:1.016185px;}
.ws3b{word-spacing:1.075961px;}
.ws38{word-spacing:1.135736px;}
.ws90{word-spacing:1.195512px;}
.ws67{word-spacing:1.255288px;}
.ws6d{word-spacing:1.315063px;}
.ws82{word-spacing:1.374839px;}
.ws64{word-spacing:1.382005px;}
.ws4e{word-spacing:1.434614px;}
.ws7d{word-spacing:1.494390px;}
.ws4d{word-spacing:1.554166px;}
.ws5a{word-spacing:1.733492px;}
.ws2b{word-spacing:1.793268px;}
.ws7b{word-spacing:1.853044px;}
.ws8f{word-spacing:1.972595px;}
.ws2a{word-spacing:2.032370px;}
.ws85{word-spacing:2.108005px;}
.ws91{word-spacing:2.151922px;}
.ws26{word-spacing:2.331248px;}
.ws4f{word-spacing:2.391024px;}
.ws37{word-spacing:2.450800px;}
.ws92{word-spacing:2.510575px;}
.ws7e{word-spacing:2.570351px;}
.ws61{word-spacing:2.672005px;}
.ws4c{word-spacing:2.749678px;}
.ws53{word-spacing:2.809453px;}
.wsb5{word-spacing:2.988780px;}
.wsc{word-spacing:3.048556px;}
.wsb7{word-spacing:3.068640px;}
.ws6f{word-spacing:3.108331px;}
.ws3c{word-spacing:3.168107px;}
.ws24{word-spacing:3.227882px;}
.ws5b{word-spacing:3.407209px;}
.ws1e{word-spacing:3.466985px;}
.wsaf{word-spacing:3.526760px;}
.ws2c{word-spacing:4.064741px;}
.ws34{word-spacing:4.124516px;}
.ws1f{word-spacing:4.184292px;}
.ws8e{word-spacing:4.244068px;}
.ws22{word-spacing:4.303843px;}
.ws83{word-spacing:4.538005px;}
.ws65{word-spacing:4.542946px;}
.ws51{word-spacing:4.662497px;}
.ws3f{word-spacing:4.961375px;}
.ws25{word-spacing:5.080926px;}
.ws52{word-spacing:5.260253px;}
.wsac{word-spacing:5.320028px;}
.ws31{word-spacing:5.379804px;}
.ws39{word-spacing:5.439580px;}
.wsb3{word-spacing:5.499355px;}
.ws5f{word-spacing:5.618906px;}
.wsa8{word-spacing:5.798233px;}
.ws21{word-spacing:6.395989px;}
.ws6b{word-spacing:6.455765px;}
.ws8c{word-spacing:6.575316px;}
.ws63{word-spacing:6.578005px;}
.ws20{word-spacing:6.874194px;}
.wsa0{word-spacing:7.053521px;}
.ws3d{word-spacing:7.591501px;}
.ws6c{word-spacing:7.830604px;}
.ws60{word-spacing:7.862005px;}
.wsa5{word-spacing:9.205442px;}
.wsa9{word-spacing:9.504320px;}
.ws7a{word-spacing:9.824005px;}
.wsa1{word-spacing:10.281403px;}
.ws96{word-spacing:11.835569px;}
.ws62{word-spacing:12.224005px;}
.ws73{word-spacing:12.602005px;}
.ws9d{word-spacing:12.672427px;}
.ws9e{word-spacing:12.851754px;}
.ws57{word-spacing:13.210408px;}
.ws13{word-spacing:13.246306px;}
.wsb2{word-spacing:13.569061px;}
.wsb0{word-spacing:13.688612px;}
.ws99{word-spacing:14.107042px;}
.wsb4{word-spacing:14.585246px;}
.ws1c{word-spacing:14.645022px;}
.ws9c{word-spacing:14.764573px;}
.wsae{word-spacing:14.824349px;}
.ws45{word-spacing:14.884124px;}
.ws95{word-spacing:15.063451px;}
.wsa3{word-spacing:16.139412px;}
.wsa{word-spacing:16.199188px;}
.ws71{word-spacing:16.202005px;}
.ws7{word-spacing:16.318739px;}
.wsf{word-spacing:16.378514px;}
.ws11{word-spacing:16.438290px;}
.wsb{word-spacing:16.557841px;}
.wsad{word-spacing:16.677392px;}
.ws9{word-spacing:16.737168px;}
.ws76{word-spacing:16.754005px;}
.wsa6{word-spacing:17.334924px;}
.ws8{word-spacing:17.394700px;}
.wsa7{word-spacing:17.813129px;}
.ws74{word-spacing:18.500005px;}
.ws15{word-spacing:18.649987px;}
.ws9a{word-spacing:18.948865px;}
.wsd{word-spacing:19.606397px;}
.ws4{word-spacing:19.869542px;}
.wsab{word-spacing:20.204153px;}
.ws75{word-spacing:20.354005px;}
.ws10{word-spacing:20.383480px;}
.wsb1{word-spacing:21.459440px;}
.ws12{word-spacing:21.578992px;}
.wsa4{word-spacing:24.089567px;}
.wsaa{word-spacing:24.388445px;}
.wsa2{word-spacing:25.105752px;}
.ws6{word-spacing:25.285079px;}
.wsb6{word-spacing:27.473224px;}
.ws93{word-spacing:27.676103px;}
.ws98{word-spacing:28.991166px;}
.ws94{word-spacing:29.828024px;}
.ws97{word-spacing:29.947576px;}
.ws3{word-spacing:33.115849px;}
.ws2{word-spacing:33.354952px;}
.ws9b{word-spacing:33.832990px;}
.ws16{word-spacing:35.207828px;}
.ws5{word-spacing:41.962471px;}
.ws17{word-spacing:50.749484px;}
.ws18{word-spacing:50.809260px;}
.wse{word-spacing:59.237620px;}
.ws42{word-spacing:446.827232px;}
.ws43{word-spacing:447.261289px;}
.ws2d{word-spacing:793.323262px;}
._1b{margin-left:-27.851245px;}
._11{margin-left:-13.289674px;}
._12{margin-left:-6.874194px;}
._14{margin-left:-5.857985px;}
._3{margin-left:-4.841856px;}
._5{margin-left:-2.988804px;}
._1{margin-left:-1.793268px;}
._0{width:1.195512px;}
._7{width:2.391024px;}
._b{width:3.634366px;}
._4{width:4.949453px;}
._f{width:6.336238px;}
._d{width:13.867939px;}
._a{width:15.481880px;}
._9{width:19.606397px;}
._1a{width:21.459440px;}
._13{width:27.855430px;}
._15{width:30.605107px;}
._8{width:32.517950px;}
._19{width:38.256384px;}
._18{width:40.647408px;}
._6{width:51.073786px;}
._c{width:58.580088px;}
._17{width:62.345951px;}
._16{width:67.127999px;}
._e{width:453.911480px;}
._2{width:532.767170px;}
._10{width:803.270486px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:28.256524px;}
.fsb{font-size:29.887800px;}
.fs5{font-size:35.865600px;}
.fs9{font-size:39.559020px;}
.fs7{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs1{font-size:53.798400px;}
.fsc{font-size:55.591308px;}
.fs8{font-size:56.513048px;}
.fs0{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs6{font-size:77.708280px;}
.fs2{font-size:119.551800px;}
.y249{bottom:-919.455660px;}
.y0{bottom:0.000000px;}
.y104{bottom:8.165593px;}
.y248{bottom:11.646855px;}
.y247{bottom:28.324080px;}
.y6f{bottom:32.444100px;}
.y127{bottom:38.881500px;}
.ya6{bottom:38.883000px;}
.y103{bottom:40.792509px;}
.y70{bottom:50.111100px;}
.ya5{bottom:50.838000px;}
.y102{bottom:59.806796px;}
.y18d{bottom:94.174500px;}
.y2d{bottom:95.670000px;}
.y18c{bottom:112.107000px;}
.y2c{bottom:113.602500px;}
.y3b{bottom:114.310500px;}
.y206{bottom:124.945500px;}
.y100{bottom:129.044157px;}
.y18b{bottom:130.041000px;}
.y2b{bottom:131.535000px;}
.y3a{bottom:132.243000px;}
.y6d{bottom:132.813000px;}
.yfd{bottom:140.204841px;}
.y18a{bottom:147.973500px;}
.y2a{bottom:149.467500px;}
.y126{bottom:150.060000px;}
.y39{bottom:150.175500px;}
.y6c{bottom:150.745500px;}
.yff{bottom:150.745801px;}
.yfe{bottom:155.618496px;}
.y189{bottom:165.906000px;}
.y29{bottom:167.400000px;}
.y125{bottom:167.992500px;}
.y38{bottom:168.109500px;}
.y6b{bottom:168.678000px;}
.y1d8{bottom:170.610000px;}
.y205{bottom:176.155500px;}
.y231{bottom:178.585500px;}
.y188{bottom:183.838500px;}
.y28{bottom:185.332500px;}
.y124{bottom:185.925000px;}
.y37{bottom:186.042000px;}
.y6a{bottom:186.610500px;}
.y1c8{bottom:187.521000px;}
.y1d7{bottom:190.971000px;}
.y101{bottom:191.847463px;}
.y1c7{bottom:192.004500px;}
.y204{bottom:194.088000px;}
.y1c6{bottom:196.488000px;}
.y230{bottom:196.518000px;}
.y1c5{bottom:200.971500px;}
.y187{bottom:201.771000px;}
.ya4{bottom:203.266500px;}
.y1d6{bottom:203.382000px;}
.y123{bottom:203.857500px;}
.y36{bottom:203.974500px;}
.y69{bottom:204.543000px;}
.y1c4{bottom:205.455000px;}
.y27{bottom:208.401000px;}
.y1c3{bottom:209.937000px;}
.y203{bottom:212.022000px;}
.y1c2{bottom:214.420500px;}
.y22f{bottom:214.450500px;}
.y1c1{bottom:218.904000px;}
.y186{bottom:219.703500px;}
.yfb{bottom:221.199000px;}
.ya3{bottom:221.551500px;}
.y122{bottom:221.791500px;}
.y35{bottom:221.907000px;}
.y68{bottom:222.475500px;}
.y1c0{bottom:223.387500px;}
.y1d5{bottom:223.743000px;}
.y26{bottom:226.333500px;}
.y1bf{bottom:227.871000px;}
.y202{bottom:231.937500px;}
.y1be{bottom:232.354500px;}
.y22e{bottom:232.383000px;}
.y1d4{bottom:236.154000px;}
.y1bd{bottom:236.836500px;}
.y185{bottom:237.637500px;}
.yfa{bottom:239.131500px;}
.ya2{bottom:239.484000px;}
.y121{bottom:239.724000px;}
.y34{bottom:239.839500px;}
.y67{bottom:240.409500px;}
.y1bc{bottom:241.320000px;}
.y25{bottom:244.266000px;}
.y1bb{bottom:245.803500px;}
.y201{bottom:249.870000px;}
.y1ba{bottom:250.287000px;}
.y1b9{bottom:254.770500px;}
.y184{bottom:255.570000px;}
.y1d3{bottom:256.515000px;}
.yf9{bottom:257.064000px;}
.ya1{bottom:257.416500px;}
.y120{bottom:257.656500px;}
.y33{bottom:257.772000px;}
.y66{bottom:258.342000px;}
.y1b8{bottom:259.254000px;}
.y22d{bottom:261.501000px;}
.y24{bottom:262.198500px;}
.y1b7{bottom:263.736000px;}
.y200{bottom:267.802500px;}
.y1b6{bottom:268.219500px;}
.y1d2{bottom:268.926000px;}
.y1b5{bottom:272.703000px;}
.y183{bottom:273.502500px;}
.ya0{bottom:275.349000px;}
.y11f{bottom:275.589000px;}
.y32{bottom:275.706000px;}
.y1b4{bottom:277.186500px;}
.y65{bottom:277.552500px;}
.y22c{bottom:279.433500px;}
.y23{bottom:280.131000px;}
.y1b3{bottom:281.670000px;}
.yf6{bottom:284.704500px;}
.y1b2{bottom:286.152000px;}
.y1ff{bottom:287.718000px;}
.y1d1{bottom:289.287000px;}
.y1b1{bottom:290.635500px;}
.y182{bottom:291.435000px;}
.y9f{bottom:293.283000px;}
.y11e{bottom:293.521500px;}
.y31{bottom:293.638500px;}
.yf7{bottom:294.955500px;}
.y1b0{bottom:295.119000px;}
.y64{bottom:295.485000px;}
.y22b{bottom:297.367500px;}
.y22{bottom:298.065000px;}
.ye9{bottom:299.532000px;}
.ye8{bottom:304.015500px;}
.y1d9{bottom:304.833000px;}
.yf5{bottom:305.065500px;}
.y1d0{bottom:305.643000px;}
.y1fe{bottom:305.650500px;}
.ye7{bottom:308.499000px;}
.y181{bottom:309.367500px;}
.y9e{bottom:311.215500px;}
.y11d{bottom:311.454000px;}
.y30{bottom:311.571000px;}
.ye6{bottom:312.982500px;}
.y63{bottom:313.417500px;}
.y22a{bottom:315.300000px;}
.y21{bottom:315.997500px;}
.ye5{bottom:317.464500px;}
.ye4{bottom:321.948000px;}
.y1af{bottom:322.018500px;}
.y1fd{bottom:323.583000px;}
.yf3{bottom:323.662500px;}
.y1cf{bottom:326.002500px;}
.ye3{bottom:326.431500px;}
.y1ae{bottom:326.502000px;}
.y180{bottom:327.300000px;}
.y2f{bottom:329.503500px;}
.y11c{bottom:329.979000px;}
.ye2{bottom:330.915000px;}
.y1ad{bottom:330.985500px;}
.y62{bottom:331.350000px;}
.y229{bottom:333.232500px;}
.yf4{bottom:333.913500px;}
.y9d{bottom:335.220000px;}
.ye1{bottom:335.398500px;}
.y1ac{bottom:335.469000px;}
.ye0{bottom:339.882000px;}
.y1ab{bottom:339.951000px;}
.y1fc{bottom:341.515500px;}
.y1ce{bottom:342.358500px;}
.yf2{bottom:344.023500px;}
.ydf{bottom:344.364000px;}
.y20{bottom:344.367000px;}
.y1aa{bottom:344.434500px;}
.y17f{bottom:345.234000px;}
.y2e{bottom:347.436000px;}
.y11b{bottom:347.913000px;}
.yde{bottom:348.847500px;}
.y1a9{bottom:348.918000px;}
.y61{bottom:350.560500px;}
.y228{bottom:351.165000px;}
.ydd{bottom:353.331000px;}
.y1a8{bottom:353.401500px;}
.ydc{bottom:357.814500px;}
.y1a7{bottom:357.885000px;}
.y1fb{bottom:359.448000px;}
.yf1{bottom:360.378000px;}
.ydb{bottom:362.298000px;}
.y1a6{bottom:362.368500px;}
.y1cd{bottom:362.719500px;}
.y17e{bottom:363.166500px;}
.y11a{bottom:365.845500px;}
.y1a5{bottom:366.850500px;}
.y60{bottom:368.493000px;}
.y227{bottom:369.097500px;}
.y1a4{bottom:371.334000px;}
.yf8{bottom:372.010500px;}
.y1a3{bottom:375.817500px;}
.y1fa{bottom:377.382000px;}
.y1cc{bottom:379.074000px;}
.y9c{bottom:379.833000px;}
.y1a2{bottom:380.301000px;}
.yf0{bottom:380.739000px;}
.y17d{bottom:382.600500px;}
.y119{bottom:383.778000px;}
.y1a1{bottom:384.784500px;}
.y5f{bottom:386.425500px;}
.y226{bottom:387.030000px;}
.y1f{bottom:387.747000px;}
.yda{bottom:389.197500px;}
.y1a0{bottom:389.266500px;}
.yd9{bottom:393.679500px;}
.y19f{bottom:393.750000px;}
.y1f9{bottom:395.314500px;}
.y9b{bottom:397.765500px;}
.yd8{bottom:398.163000px;}
.y19e{bottom:398.233500px;}
.yee{bottom:399.336000px;}
.y1cb{bottom:399.435000px;}
.y17c{bottom:400.533000px;}
.y118{bottom:401.710500px;}
.yd7{bottom:402.646500px;}
.y19d{bottom:402.717000px;}
.y5e{bottom:404.359500px;}
.y225{bottom:404.964000px;}
.y1e{bottom:405.681000px;}
.yd6{bottom:407.130000px;}
.y19c{bottom:407.200500px;}
.yef{bottom:409.587000px;}
.yd5{bottom:411.613500px;}
.y19b{bottom:411.684000px;}
.y1f8{bottom:415.230000px;}
.y9a{bottom:415.698000px;}
.y1ca{bottom:415.789500px;}
.yd4{bottom:416.097000px;}
.y19a{bottom:416.166000px;}
.y17b{bottom:418.465500px;}
.y117{bottom:419.643000px;}
.yed{bottom:419.695500px;}
.yd3{bottom:420.579000px;}
.y199{bottom:420.649500px;}
.y5d{bottom:422.292000px;}
.y224{bottom:422.896500px;}
.y1d{bottom:423.613500px;}
.yd2{bottom:425.062500px;}
.y198{bottom:425.133000px;}
.yd1{bottom:429.546000px;}
.y197{bottom:429.616500px;}
.y1f7{bottom:433.162500px;}
.y99{bottom:433.630500px;}
.yd0{bottom:434.029500px;}
.y1c9{bottom:436.150500px;}
.y246{bottom:436.348500px;}
.y17a{bottom:436.398000px;}
.y116{bottom:437.575500px;}
.yeb{bottom:438.292500px;}
.ycf{bottom:438.513000px;}
.y5c{bottom:440.224500px;}
.y223{bottom:440.829000px;}
.yce{bottom:442.995000px;}
.y196{bottom:443.065500px;}
.ycd{bottom:447.478500px;}
.yec{bottom:448.543500px;}
.y1f6{bottom:451.095000px;}
.y98{bottom:451.915500px;}
.ycc{bottom:451.962000px;}
.y179{bottom:454.330500px;}
.y115{bottom:456.102000px;}
.y195{bottom:458.106000px;}
.y5b{bottom:458.157000px;}
.yea{bottom:458.653500px;}
.y1c{bottom:463.416000px;}
.ycb{bottom:465.412500px;}
.y1f5{bottom:469.027500px;}
.y97{bottom:469.849500px;}
.y222{bottom:469.947000px;}
.y178{bottom:472.263000px;}
.y114{bottom:474.034500px;}
.y194{bottom:476.038500px;}
.y5a{bottom:476.089500px;}
.y1f4{bottom:486.960000px;}
.yca{bottom:487.534500px;}
.y96{bottom:487.782000px;}
.y221{bottom:487.879500px;}
.y1b{bottom:488.074500px;}
.y177{bottom:490.197000px;}
.y113{bottom:491.967000px;}
.y193{bottom:493.972500px;}
.y59{bottom:494.022000px;}
.y1a{bottom:503.764500px;}
.y1f3{bottom:504.892500px;}
.yc9{bottom:505.467000px;}
.y95{bottom:505.714500px;}
.y220{bottom:505.812000px;}
.y176{bottom:508.129500px;}
.y112{bottom:509.899500px;}
.y192{bottom:511.905000px;}
.y58{bottom:511.956000px;}
.y19{bottom:522.181500px;}
.y1f2{bottom:522.826500px;}
.yc8{bottom:523.399500px;}
.y21f{bottom:523.744500px;}
.y175{bottom:526.062000px;}
.y191{bottom:529.837500px;}
.y111{bottom:533.950500px;}
.y94{bottom:537.289500px;}
.y18{bottom:537.871500px;}
.y57{bottom:540.526500px;}
.y1f1{bottom:540.759000px;}
.yc7{bottom:546.858000px;}
.y93{bottom:547.540500px;}
.y190{bottom:547.770000px;}
.y174{bottom:551.022000px;}
.y21e{bottom:552.862500px;}
.y17{bottom:559.309500px;}
.y18f{bottom:565.702500px;}
.y1f0{bottom:566.200500px;}
.y21d{bottom:570.795000px;}
.y110{bottom:579.954000px;}
.y16{bottom:581.725500px;}
.y18e{bottom:583.635000px;}
.y56{bottom:588.211500px;}
.y21c{bottom:588.727500px;}
.yc6{bottom:589.197000px;}
.y92{bottom:589.588500px;}
.y10f{bottom:597.886500px;}
.y173{bottom:601.569000px;}
.y15{bottom:604.141500px;}
.y55{bottom:606.145500px;}
.y21b{bottom:606.661500px;}
.yc5{bottom:607.129500px;}
.y91{bottom:607.521000px;}
.y10e{bottom:615.819000px;}
.y245{bottom:617.113500px;}
.y1ef{bottom:619.155000px;}
.y172{bottom:619.501500px;}
.y14{bottom:622.074000px;}
.y54{bottom:624.078000px;}
.y21a{bottom:624.594000px;}
.yc4{bottom:625.062000px;}
.y90{bottom:625.453500px;}
.y10d{bottom:633.753000px;}
.y244{bottom:635.046000px;}
.y1ee{bottom:637.087500px;}
.y171{bottom:637.434000px;}
.y13{bottom:640.006500px;}
.y53{bottom:642.010500px;}
.y219{bottom:642.526500px;}
.yc3{bottom:642.996000px;}
.y8f{bottom:643.386000px;}
.y10c{bottom:651.685500px;}
.y243{bottom:652.978500px;}
.y1ed{bottom:655.020000px;}
.y170{bottom:655.366500px;}
.y12{bottom:657.939000px;}
.y52{bottom:659.943000px;}
.y218{bottom:660.459000px;}
.yc2{bottom:660.928500px;}
.y8e{bottom:661.318500px;}
.y10b{bottom:670.210500px;}
.y242{bottom:670.911000px;}
.y1ec{bottom:672.952500px;}
.y16f{bottom:673.299000px;}
.y11{bottom:675.871500px;}
.y51{bottom:677.875500px;}
.y217{bottom:678.391500px;}
.yc1{bottom:678.861000px;}
.y8d{bottom:679.252500px;}
.y10a{bottom:688.143000px;}
.y241{bottom:688.843500px;}
.y1eb{bottom:690.886500px;}
.y16e{bottom:691.231500px;}
.y50{bottom:695.808000px;}
.yc0{bottom:696.793500px;}
.y10{bottom:698.287500px;}
.y109{bottom:706.075500px;}
.y240{bottom:706.776000px;}
.y216{bottom:707.509500px;}
.y1ea{bottom:710.802000px;}
.y8c{bottom:713.187000px;}
.y4f{bottom:713.742000px;}
.ybf{bottom:714.726000px;}
.yf{bottom:716.221500px;}
.y108{bottom:724.008000px;}
.y215{bottom:725.442000px;}
.y1e9{bottom:728.734500px;}
.y4e{bottom:731.674500px;}
.ybe{bottom:732.658500px;}
.y23f{bottom:736.665000px;}
.ye{bottom:738.636000px;}
.y107{bottom:741.940500px;}
.y214{bottom:743.374500px;}
.y1e8{bottom:746.667000px;}
.y8b{bottom:746.769000px;}
.y16b{bottom:750.208500px;}
.ybd{bottom:750.592500px;}
.y23e{bottom:754.597500px;}
.y16c{bottom:755.305500px;}
.y4d{bottom:756.411000px;}
.yd{bottom:756.570000px;}
.y158{bottom:763.561500px;}
.y1e7{bottom:764.599500px;}
.y213{bottom:766.834500px;}
.y157{bottom:768.043500px;}
.ybc{bottom:768.525000px;}
.y89{bottom:768.772500px;}
.y16a{bottom:770.569500px;}
.y156{bottom:772.527000px;}
.y23d{bottom:772.530000px;}
.yc{bottom:774.502500px;}
.y155{bottom:777.010500px;}
.y106{bottom:781.135500px;}
.y154{bottom:781.494000px;}
.y1e6{bottom:782.532000px;}
.y83{bottom:784.992000px;}
.y153{bottom:785.977500px;}
.ybb{bottom:786.457500px;}
.y168{bottom:786.924000px;}
.y88{bottom:789.133500px;}
.y82{bottom:789.475500px;}
.y152{bottom:790.461000px;}
.y23c{bottom:790.462500px;}
.y169{bottom:792.021000px;}
.yb{bottom:792.435000px;}
.y81{bottom:793.959000px;}
.y151{bottom:794.943000px;}
.y80{bottom:798.441000px;}
.y105{bottom:799.069500px;}
.y150{bottom:799.426500px;}
.y1e5{bottom:800.464500px;}
.y7f{bottom:802.924500px;}
.y14f{bottom:803.910000px;}
.yba{bottom:804.390000px;}
.y87{bottom:805.489500px;}
.y4c{bottom:805.840500px;}
.y167{bottom:807.285000px;}
.y7e{bottom:807.408000px;}
.y14e{bottom:808.393500px;}
.y212{bottom:808.720500px;}
.ya{bottom:810.367500px;}
.yfc{bottom:811.621500px;}
.y14d{bottom:812.877000px;}
.y8a{bottom:817.122000px;}
.y14c{bottom:817.359000px;}
.y23b{bottom:820.350000px;}
.y1e4{bottom:820.380000px;}
.y14b{bottom:821.842500px;}
.yb9{bottom:822.322500px;}
.y4b{bottom:823.773000px;}
.y165{bottom:825.715500px;}
.y86{bottom:825.849000px;}
.y14a{bottom:826.326000px;}
.y9{bottom:828.300000px;}
.y149{bottom:830.809500px;}
.y211{bottom:832.245000px;}
.y7d{bottom:834.307500px;}
.y148{bottom:835.293000px;}
.y166{bottom:835.966500px;}
.y23a{bottom:838.284000px;}
.y1e3{bottom:838.312500px;}
.y7c{bottom:838.791000px;}
.y147{bottom:839.776500px;}
.yb8{bottom:840.255000px;}
.y4a{bottom:841.705500px;}
.y85{bottom:842.205000px;}
.y7b{bottom:843.274500px;}
.y146{bottom:844.258500px;}
.y164{bottom:846.076500px;}
.y7a{bottom:847.758000px;}
.y145{bottom:848.742000px;}
.y79{bottom:852.240000px;}
.y144{bottom:853.225500px;}
.y210{bottom:855.771000px;}
.y239{bottom:856.216500px;}
.y1e2{bottom:856.246500px;}
.y78{bottom:856.723500px;}
.y143{bottom:857.709000px;}
.yb7{bottom:858.189000px;}
.y49{bottom:859.638000px;}
.y142{bottom:862.192500px;}
.y84{bottom:862.564500px;}
.y163{bottom:864.673500px;}
.y141{bottom:866.676000px;}
.y77{bottom:870.174000px;}
.y238{bottom:874.149000px;}
.y1e1{bottom:874.179000px;}
.y76{bottom:875.644500px;}
.yb6{bottom:876.121500px;}
.y16d{bottom:876.388500px;}
.y48{bottom:877.570500px;}
.y20f{bottom:879.295500px;}
.y8{bottom:881.763000px;}
.y162{bottom:885.033000px;}
.yb5{bottom:888.900000px;}
.y237{bottom:892.081500px;}
.y140{bottom:893.574000px;}
.y75{bottom:893.578500px;}
.yb4{bottom:894.054000px;}
.y1e0{bottom:894.094500px;}
.y47{bottom:895.504500px;}
.y13f{bottom:898.057500px;}
.y161{bottom:901.389000px;}
.y13e{bottom:902.541000px;}
.y20e{bottom:902.821500px;}
.y13d{bottom:907.024500px;}
.y13c{bottom:911.508000px;}
.y74{bottom:911.863500px;}
.yb3{bottom:911.986500px;}
.y1df{bottom:912.027000px;}
.y46{bottom:913.437000px;}
.y13b{bottom:915.991500px;}
.y13a{bottom:920.473500px;}
.y7{bottom:920.616000px;}
.y160{bottom:921.750000px;}
.y236{bottom:921.969000px;}
.y139{bottom:924.957000px;}
.y20d{bottom:926.346000px;}
.y138{bottom:929.440500px;}
.y73{bottom:929.796000px;}
.yb2{bottom:929.919000px;}
.y1de{bottom:929.959500px;}
.y45{bottom:932.647500px;}
.y137{bottom:933.924000px;}
.y136{bottom:938.407500px;}
.y235{bottom:939.903000px;}
.y15e{bottom:940.347000px;}
.y135{bottom:942.891000px;}
.y134{bottom:947.373000px;}
.yb1{bottom:947.853000px;}
.y1dd{bottom:947.892000px;}
.y20c{bottom:949.872000px;}
.y44{bottom:950.580000px;}
.y15f{bottom:950.596500px;}
.y133{bottom:951.856500px;}
.y132{bottom:956.340000px;}
.y234{bottom:957.835500px;}
.y6{bottom:957.976500px;}
.y15d{bottom:960.706500px;}
.y131{bottom:960.823500px;}
.y130{bottom:965.307000px;}
.y1dc{bottom:965.824500px;}
.y43{bottom:968.512500px;}
.y12f{bottom:969.790500px;}
.y20b{bottom:973.107000px;}
.yaf{bottom:973.497000px;}
.y12e{bottom:974.272500px;}
.y233{bottom:975.768000px;}
.y12d{bottom:978.756000px;}
.y15a{bottom:979.303500px;}
.y72{bottom:980.713500px;}
.y12c{bottom:983.239500px;}
.y15c{bottom:984.402000px;}
.y1db{bottom:985.740000px;}
.y42{bottom:986.445000px;}
.y12b{bottom:987.723000px;}
.yab{bottom:989.292000px;}
.y15b{bottom:989.554500px;}
.y12a{bottom:992.206500px;}
.y232{bottom:993.700500px;}
.yaa{bottom:993.774000px;}
.yae{bottom:993.858000px;}
.y5{bottom:995.337000px;}
.y129{bottom:996.688500px;}
.y71{bottom:998.646000px;}
.y159{bottom:999.664500px;}
.yb0{bottom:1003.488000px;}
.y1da{bottom:1003.672500px;}
.y41{bottom:1004.377500px;}
.y128{bottom:1010.139000px;}
.yad{bottom:1010.212500px;}
.y6e{bottom:1011.199500px;}
.y20a{bottom:1015.216500px;}
.ya9{bottom:1020.673500px;}
.y40{bottom:1023.588000px;}
.ya8{bottom:1025.157000px;}
.yac{bottom:1030.573500px;}
.y4{bottom:1032.696000px;}
.y209{bottom:1033.150500px;}
.ya7{bottom:1038.607500px;}
.y3f{bottom:1041.520500px;}
.y208{bottom:1051.083000px;}
.y3e{bottom:1059.454500px;}
.y207{bottom:1074.318000px;}
.y3d{bottom:1077.387000px;}
.y3{bottom:1099.944000px;}
.y2{bottom:1116.382500px;}
.y1{bottom:1129.249500px;}
.y3c{bottom:1133.575500px;}
.hf{height:2.391024px;}
.h1e{height:27.809991px;}
.h14{height:31.675000px;}
.h8{height:33.677798px;}
.h24{height:39.930101px;}
.h2{height:40.725389px;}
.h25{height:40.826735px;}
.h27{height:41.693481px;}
.h1a{height:42.384786px;}
.h7{height:44.293720px;}
.hc{height:44.831700px;}
.h1d{height:44.897712px;}
.h9{height:44.903543px;}
.h26{height:50.220000px;}
.h1b{height:51.322586px;}
.h15{height:52.953488px;}
.hb{height:53.200284px;}
.ha{height:54.300518px;}
.h1{height:55.011389px;}
.h6{height:56.129288px;}
.he{height:58.281210px;}
.h1c{height:61.875565px;}
.h16{height:65.447700px;}
.h1f{height:68.745024px;}
.h5{height:70.931543px;}
.hd{height:81.131700px;}
.h11{height:85.829700px;}
.h10{height:85.835700px;}
.h12{height:86.673024px;}
.h4{height:88.587884px;}
.h20{height:89.355024px;}
.h22{height:89.361024px;}
.h3{height:90.500713px;}
.h23{height:109.743024px;}
.h21{height:109.749024px;}
.h17{height:126.269700px;}
.h18{height:126.275700px;}
.h13{height:127.677024px;}
.h19{height:207.547580px;}
.h0{height:1188.000000px;}
.w3{width:145.638000px;}
.w1{width:333.984300px;}
.w2{width:373.976480px;}
.w0{width:918.000000px;}
.xdd{left:-553.685265px;}
.xde{left:-209.376945px;}
.x0{left:0.000000px;}
.x56{left:5.418675px;}
.x13{left:39.212550px;}
.x53{left:50.885341px;}
.xa{left:83.919000px;}
.x4{left:85.039500px;}
.x1{left:90.643500px;}
.x54{left:93.022237px;}
.x5{left:95.127000px;}
.x14{left:99.793200px;}
.x95{left:103.531500px;}
.x7{left:107.455500px;}
.xc8{left:109.099500px;}
.x4a{left:112.743000px;}
.xc{left:115.261500px;}
.xd8{left:117.406500px;}
.x8d{left:121.861500px;}
.x96{left:134.106000px;}
.x47{left:141.616500px;}
.x9c{left:144.211500px;}
.x58{left:149.602788px;}
.x90{left:153.420000px;}
.xda{left:155.697000px;}
.x35{left:158.728500px;}
.x2d{left:162.115500px;}
.x23{left:165.802500px;}
.x91{left:168.664500px;}
.xb{left:169.812000px;}
.x4b{left:172.621500px;}
.x36{left:173.805000px;}
.x92{left:176.190000px;}
.x3a{left:178.263000px;}
.x37{left:179.560500px;}
.x24{left:180.879000px;}
.x26{left:182.485500px;}
.x25{left:184.741500px;}
.xa5{left:186.874500px;}
.xc9{left:188.827500px;}
.x2e{left:189.841500px;}
.x4c{left:191.625000px;}
.x32{left:193.672500px;}
.x48{left:194.730000px;}
.x4d{left:202.905000px;}
.x93{left:206.487000px;}
.xcb{left:207.561000px;}
.xd0{left:209.874000px;}
.x6{left:212.052000px;}
.x42{left:217.414500px;}
.x41{left:218.928000px;}
.x4e{left:221.263500px;}
.x94{left:225.480000px;}
.x55{left:228.957088px;}
.x57{left:232.085483px;}
.x3b{left:235.657500px;}
.x43{left:240.061500px;}
.x27{left:245.656500px;}
.x28{left:246.901500px;}
.xa3{left:247.978500px;}
.x44{left:251.080500px;}
.xc2{left:253.638000px;}
.x7d{left:255.241500px;}
.x3d{left:257.931000px;}
.x38{left:259.218000px;}
.xca{left:264.892500px;}
.xa4{left:267.714000px;}
.x7e{left:270.318000px;}
.xc6{left:272.214000px;}
.x3e{left:273.861000px;}
.x39{left:275.469000px;}
.x3c{left:276.774000px;}
.x7f{left:278.160000px;}
.x85{left:279.198000px;}
.x33{left:291.090000px;}
.xbe{left:293.757000px;}
.x9e{left:296.331000px;}
.x34{left:298.561500px;}
.xdc{left:301.671000px;}
.xa2{left:303.409500px;}
.x8e{left:304.512000px;}
.x59{left:309.648685px;}
.x8f{left:311.985000px;}
.x3f{left:314.653500px;}
.xf{left:316.591500px;}
.xbf{left:318.006000px;}
.xdb{left:320.533500px;}
.xd{left:321.964500px;}
.xc3{left:323.527500px;}
.xc0{left:325.092000px;}
.xe{left:329.437500px;}
.x2a{left:333.480000px;}
.x10{left:339.793500px;}
.xd9{left:342.297000px;}
.x2b{left:345.181500px;}
.x97{left:347.118000px;}
.x11{left:348.361500px;}
.x83{left:351.856500px;}
.x82{left:352.987500px;}
.x4f{left:354.277500px;}
.x88{left:355.732500px;}
.x2c{left:357.873000px;}
.x98{left:360.771000px;}
.x29{left:362.392500px;}
.xc1{left:363.513000px;}
.x2f{left:365.215500px;}
.x80{left:366.411000px;}
.xc7{left:368.380500px;}
.x40{left:369.468000px;}
.x30{left:374.830500px;}
.x84{left:380.311500px;}
.x99{left:383.094000px;}
.x89{left:384.187500px;}
.x9a{left:391.762500px;}
.x45{left:393.642000px;}
.x9f{left:400.914000px;}
.x2{left:406.521000px;}
.x9b{left:410.272500px;}
.x8b{left:413.935500px;}
.x46{left:417.115500px;}
.xcc{left:418.737000px;}
.xa0{left:420.612000px;}
.xa1{left:422.221500px;}
.xcd{left:426.208500px;}
.x3{left:429.102000px;}
.x49{left:431.043000px;}
.x31{left:432.045000px;}
.xce{left:433.644000px;}
.x9d{left:435.310500px;}
.xc4{left:437.950500px;}
.xcf{left:441.115500px;}
.xc5{left:446.175000px;}
.x8{left:470.692500px;}
.x87{left:475.351500px;}
.x86{left:477.382500px;}
.xb5{left:479.538000px;}
.x12{left:484.834500px;}
.xad{left:486.130500px;}
.x5f{left:490.972500px;}
.x9{left:493.108500px;}
.x5a{left:495.181500px;}
.xb6{left:499.539000px;}
.xd7{left:501.939000px;}
.xd2{left:503.059500px;}
.x8a{left:506.662500px;}
.xae{left:509.188500px;}
.xaf{left:516.810000px;}
.x5b{left:518.272500px;}
.x74{left:525.189000px;}
.xa6{left:526.888500px;}
.x5c{left:528.936000px;}
.xb0{left:536.059500px;}
.x70{left:538.143000px;}
.x20{left:540.726000px;}
.x81{left:547.792500px;}
.x75{left:549.832500px;}
.x5d{left:551.385000px;}
.x7b{left:554.322000px;}
.xba{left:555.912000px;}
.x1b{left:557.821500px;}
.x71{left:561.670500px;}
.xd1{left:563.142000px;}
.xb4{left:566.229000px;}
.x72{left:572.181000px;}
.xa7{left:574.705500px;}
.x1d{left:578.046000px;}
.xa8{left:582.615000px;}
.x76{left:583.771500px;}
.x1c{left:584.907000px;}
.x15{left:590.661000px;}
.x73{left:593.446500px;}
.xa9{left:596.287500px;}
.x1a{left:600.091500px;}
.xaa{left:604.197000px;}
.x16{left:605.737500px;}
.x18{left:606.910500px;}
.x17{left:608.052000px;}
.xb8{left:610.420500px;}
.xb1{left:617.298000px;}
.x7c{left:620.694000px;}
.xab{left:621.967500px;}
.x1e{left:626.883000px;}
.xd4{left:630.486000px;}
.x22{left:633.027000px;}
.x21{left:634.585500px;}
.xb2{left:636.810000px;}
.x52{left:638.686500px;}
.x1f{left:641.833500px;}
.xd5{left:644.040000px;}
.xb7{left:650.278500px;}
.x67{left:651.457500px;}
.xb9{left:654.556500px;}
.x8c{left:658.606500px;}
.x6e{left:660.511500px;}
.xd3{left:668.584500px;}
.x6f{left:671.925000px;}
.x68{left:678.394500px;}
.x77{left:681.576000px;}
.x69{left:689.797500px;}
.x5e{left:696.523500px;}
.x78{left:701.505000px;}
.x60{left:703.525500px;}
.x19{left:708.841500px;}
.x61{left:713.761500px;}
.x6a{left:714.933000px;}
.x79{left:717.988500px;}
.xbc{left:719.128500px;}
.x6d{left:722.356500px;}
.x62{left:734.841000px;}
.x7a{left:736.264500px;}
.x63{left:744.447000px;}
.x50{left:755.349000px;}
.xac{left:757.641000px;}
.xb3{left:764.683500px;}
.x64{left:769.518000px;}
.x51{left:775.590000px;}
.xd6{left:780.762000px;}
.x65{left:782.932500px;}
.xbd{left:800.020500px;}
.x6b{left:802.692000px;}
.xbb{left:804.034500px;}
.x66{left:810.949500px;}
.x6c{left:826.101000px;}
@media print{
.v18{vertical-align:-58.981333pt;}
.v13{vertical-align:-57.819366pt;}
.v12{vertical-align:-50.286260pt;}
.v14{vertical-align:-34.715822pt;}
.v3{vertical-align:-14.997333pt;}
.va{vertical-align:-7.973333pt;}
.ve{vertical-align:-5.329648pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:2.233712pt;}
.v10{vertical-align:9.786988pt;}
.v1{vertical-align:12.698667pt;}
.vd{vertical-align:15.570437pt;}
.vf{vertical-align:17.325137pt;}
.v9{vertical-align:18.325333pt;}
.v8{vertical-align:20.922667pt;}
.v16{vertical-align:21.813333pt;}
.v2{vertical-align:23.136000pt;}
.v7{vertical-align:28.480000pt;}
.v4{vertical-align:36.448000pt;}
.v1a{vertical-align:52.917333pt;}
.v15{vertical-align:58.981333pt;}
.vc{vertical-align:64.421333pt;}
.vb{vertical-align:72.389333pt;}
.v5{vertical-align:74.917333pt;}
.v17{vertical-align:77.301333pt;}
.v19{vertical-align:95.424000pt;}
.v6{vertical-align:111.365333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.000252pt;}
.ls25{letter-spacing:0.000267pt;}
.ls1b{letter-spacing:0.000271pt;}
.ls60{letter-spacing:0.000274pt;}
.ls5e{letter-spacing:0.000394pt;}
.ls42{letter-spacing:0.000483pt;}
.ls70{letter-spacing:0.000818pt;}
.ls35{letter-spacing:0.000832pt;}
.ls9d{letter-spacing:0.000880pt;}
.ls71{letter-spacing:0.001501pt;}
.ls43{letter-spacing:0.001503pt;}
.ls4b{letter-spacing:0.001788pt;}
.ls80{letter-spacing:0.001799pt;}
.ls98{letter-spacing:0.001866pt;}
.ls45{letter-spacing:0.001931pt;}
.ls6a{letter-spacing:0.001995pt;}
.ls2a{letter-spacing:0.002006pt;}
.ls7a{letter-spacing:0.002020pt;}
.ls6b{letter-spacing:0.002105pt;}
.ls1f{letter-spacing:0.002122pt;}
.ls4d{letter-spacing:0.002178pt;}
.ls73{letter-spacing:0.002195pt;}
.ls28{letter-spacing:0.002224pt;}
.ls72{letter-spacing:0.002345pt;}
.ls1e{letter-spacing:0.002352pt;}
.ls44{letter-spacing:0.003246pt;}
.ls15{letter-spacing:0.004352pt;}
.ls5a{letter-spacing:0.004409pt;}
.ls93{letter-spacing:0.004901pt;}
.ls23{letter-spacing:0.004959pt;}
.lsa1{letter-spacing:0.005251pt;}
.ls91{letter-spacing:0.006152pt;}
.ls9b{letter-spacing:0.006406pt;}
.ls51{letter-spacing:0.007026pt;}
.ls97{letter-spacing:0.007199pt;}
.ls4f{letter-spacing:0.007865pt;}
.ls8a{letter-spacing:0.009225pt;}
.ls52{letter-spacing:0.009357pt;}
.ls78{letter-spacing:0.009422pt;}
.ls8e{letter-spacing:0.009621pt;}
.ls40{letter-spacing:0.009779pt;}
.ls1c{letter-spacing:0.010292pt;}
.ls63{letter-spacing:0.011778pt;}
.ls4a{letter-spacing:0.012093pt;}
.ls9c{letter-spacing:0.012870pt;}
.ls6f{letter-spacing:0.014359pt;}
.ls77{letter-spacing:0.014755pt;}
.ls3c{letter-spacing:0.016667pt;}
.ls3a{letter-spacing:0.016898pt;}
.ls57{letter-spacing:0.017112pt;}
.ls7c{letter-spacing:0.017876pt;}
.ls8b{letter-spacing:0.018782pt;}
.ls8c{letter-spacing:0.019210pt;}
.lsa0{letter-spacing:0.022233pt;}
.ls8d{letter-spacing:0.022532pt;}
.ls85{letter-spacing:0.023433pt;}
.ls84{letter-spacing:0.024543pt;}
.ls94{letter-spacing:0.024614pt;}
.ls88{letter-spacing:0.027125pt;}
.ls5c{letter-spacing:0.028509pt;}
.lsa9{letter-spacing:0.159402pt;}
.lsa8{letter-spacing:0.318803pt;}
.lsa4{letter-spacing:0.637606pt;}
.lsa5{letter-spacing:0.743874pt;}
.lsa7{letter-spacing:0.797008pt;}
.lsaa{letter-spacing:1.115811pt;}
.lsa6{letter-spacing:1.806551pt;}
.ls5b{letter-spacing:1.859685pt;}
.ls17{letter-spacing:2.019087pt;}
.ls2f{letter-spacing:2.510645pt;}
.ls92{letter-spacing:2.652653pt;}
.ls7f{letter-spacing:2.652911pt;}
.ls1{letter-spacing:2.653090pt;}
.ls1a{letter-spacing:2.655587pt;}
.ls79{letter-spacing:2.658245pt;}
.ls2{letter-spacing:2.658423pt;}
.ls0{letter-spacing:2.659330pt;}
.ls10{letter-spacing:2.659514pt;}
.ls19{letter-spacing:2.660920pt;}
.ls16{letter-spacing:2.975497pt;}
.ls37{letter-spacing:3.772456pt;}
.ls33{letter-spacing:3.777498pt;}
.ls90{letter-spacing:3.986028pt;}
.ls22{letter-spacing:3.990244pt;}
.ls7b{letter-spacing:3.991361pt;}
.ls21{letter-spacing:3.995577pt;}
.ls5f{letter-spacing:3.997402pt;}
.ls66{letter-spacing:4.002735pt;}
.lsb{letter-spacing:4.144442pt;}
.ls55{letter-spacing:4.687356pt;}
.ls64{letter-spacing:4.699061pt;}
.ls68{letter-spacing:4.704394pt;}
.ls48{letter-spacing:5.500335pt;}
.ls53{letter-spacing:5.505668pt;}
.ls58{letter-spacing:5.547547pt;}
.ls65{letter-spacing:5.552880pt;}
.ls95{letter-spacing:6.004127pt;}
.ls83{letter-spacing:6.057261pt;}
.ls13{letter-spacing:6.370906pt;}
.ls7d{letter-spacing:6.376239pt;}
.ls39{letter-spacing:6.588599pt;}
.ls59{letter-spacing:6.643959pt;}
.ls56{letter-spacing:6.649292pt;}
.ls2c{letter-spacing:8.538913pt;}
.lsc{letter-spacing:8.873126pt;}
.ls3b{letter-spacing:9.258254pt;}
.ls38{letter-spacing:9.263587pt;}
.ls9f{letter-spacing:10.998710pt;}
.lsa3{letter-spacing:11.583183pt;}
.ls6e{letter-spacing:11.742585pt;}
.ls5{letter-spacing:11.795718pt;}
.ls62{letter-spacing:11.811521pt;}
.ls9{letter-spacing:11.848852pt;}
.ls2b{letter-spacing:12.116112pt;}
.lse{letter-spacing:12.165605pt;}
.ls96{letter-spacing:12.327057pt;}
.ls14{letter-spacing:12.652335pt;}
.lsd{letter-spacing:12.797494pt;}
.ls26{letter-spacing:13.283467pt;}
.ls9e{letter-spacing:13.682245pt;}
.ls87{letter-spacing:13.814805pt;}
.lsa2{letter-spacing:14.236911pt;}
.ls6d{letter-spacing:14.418245pt;}
.ls76{letter-spacing:14.460911pt;}
.ls18{letter-spacing:14.463587pt;}
.ls82{letter-spacing:14.466245pt;}
.ls75{letter-spacing:14.718081pt;}
.lsf{letter-spacing:14.760161pt;}
.ls4{letter-spacing:14.771215pt;}
.ls8{letter-spacing:14.824349pt;}
.ls86{letter-spacing:15.024271pt;}
.ls89{letter-spacing:15.029605pt;}
.ls11{letter-spacing:15.120483pt;}
.ls20{letter-spacing:15.798244pt;}
.lsa{letter-spacing:15.940160pt;}
.ls3f{letter-spacing:15.940920pt;}
.ls9a{letter-spacing:16.418365pt;}
.ls49{letter-spacing:16.495356pt;}
.ls67{letter-spacing:16.500690pt;}
.ls4e{letter-spacing:16.542744pt;}
.ls74{letter-spacing:16.684034pt;}
.ls34{letter-spacing:16.811689pt;}
.ls50{letter-spacing:17.313668pt;}
.ls54{letter-spacing:17.355547pt;}
.ls3e{letter-spacing:17.412920pt;}
.ls3d{letter-spacing:17.418254pt;}
.ls47{letter-spacing:17.984394pt;}
.ls46{letter-spacing:18.016394pt;}
.ls4c{letter-spacing:18.192493pt;}
.ls5d{letter-spacing:18.197827pt;}
.ls99{letter-spacing:18.437452pt;}
.ls41{letter-spacing:18.752910pt;}
.ls7{letter-spacing:20.562806pt;}
.ls1d{letter-spacing:21.136479pt;}
.ls7e{letter-spacing:21.795810pt;}
.ls81{letter-spacing:21.801144pt;}
.ls6c{letter-spacing:26.566933pt;}
.ls8f{letter-spacing:29.701831pt;}
.ls61{letter-spacing:55.268431pt;}
.ls32{letter-spacing:98.919525pt;}
.ls24{letter-spacing:203.608977pt;}
.ls12{letter-spacing:228.741296pt;}
.ls2e{letter-spacing:230.545949pt;}
.ls31{letter-spacing:318.860783pt;}
.ls30{letter-spacing:322.531533pt;}
.ls36{letter-spacing:328.119586pt;}
.ls6{letter-spacing:368.164562pt;}
.ls29{letter-spacing:375.157392pt;}
.ls27{letter-spacing:378.828143pt;}
.ls69{letter-spacing:546.747488pt;}
.ws79{word-spacing:-42.066082pt;}
.ws47{word-spacing:-34.611401pt;}
.ws68{word-spacing:-32.722310pt;}
.ws87{word-spacing:-22.815682pt;}
.ws49{word-spacing:-18.618107pt;}
.ws1a{word-spacing:-17.725577pt;}
.ws84{word-spacing:-17.024091pt;}
.ws66{word-spacing:-13.283467pt;}
.ws86{word-spacing:-12.627551pt;}
.ws78{word-spacing:-11.848852pt;}
.ws55{word-spacing:-10.339821pt;}
.ws48{word-spacing:-9.304884pt;}
.ws58{word-spacing:-7.763551pt;}
.ws46{word-spacing:-5.246218pt;}
.ws4b{word-spacing:-2.816095pt;}
.ws4a{word-spacing:-2.691551pt;}
.ws77{word-spacing:-1.896884pt;}
.ws54{word-spacing:-1.859685pt;}
.ws2f{word-spacing:-1.753418pt;}
.ws6e{word-spacing:-1.700284pt;}
.ws5d{word-spacing:-1.647150pt;}
.ws2e{word-spacing:-1.381481pt;}
.ws41{word-spacing:-1.275213pt;}
.ws35{word-spacing:-1.222079pt;}
.ws6a{word-spacing:-1.168945pt;}
.ws80{word-spacing:-1.115811pt;}
.ws7f{word-spacing:-1.062677pt;}
.ws36{word-spacing:-0.956410pt;}
.ws88{word-spacing:-0.850142pt;}
.ws9f{word-spacing:-0.797008pt;}
.ws89{word-spacing:-0.743874pt;}
.ws32{word-spacing:-0.690740pt;}
.ws30{word-spacing:-0.478205pt;}
.ws8d{word-spacing:-0.371937pt;}
.ws8b{word-spacing:-0.318803pt;}
.ws50{word-spacing:-0.265669pt;}
.ws1b{word-spacing:-0.212535pt;}
.ws23{word-spacing:-0.159402pt;}
.ws1d{word-spacing:-0.106268pt;}
.ws19{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.047821pt;}
.ws14{word-spacing:-0.042507pt;}
.ws72{word-spacing:-0.037194pt;}
.ws69{word-spacing:-0.035164pt;}
.ws44{word-spacing:-0.010716pt;}
.ws0{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.053134pt;}
.ws33{word-spacing:0.106268pt;}
.ws3e{word-spacing:0.159402pt;}
.ws28{word-spacing:0.212535pt;}
.ws56{word-spacing:0.257782pt;}
.ws40{word-spacing:0.265669pt;}
.ws27{word-spacing:0.318803pt;}
.ws8a{word-spacing:0.425071pt;}
.ws5e{word-spacing:0.531339pt;}
.ws5c{word-spacing:0.584473pt;}
.ws70{word-spacing:0.690740pt;}
.ws7c{word-spacing:0.743874pt;}
.ws29{word-spacing:0.797008pt;}
.ws81{word-spacing:0.850142pt;}
.ws59{word-spacing:0.903276pt;}
.ws3b{word-spacing:0.956410pt;}
.ws38{word-spacing:1.009543pt;}
.ws90{word-spacing:1.062677pt;}
.ws67{word-spacing:1.115811pt;}
.ws6d{word-spacing:1.168945pt;}
.ws82{word-spacing:1.222079pt;}
.ws64{word-spacing:1.228449pt;}
.ws4e{word-spacing:1.275213pt;}
.ws7d{word-spacing:1.328347pt;}
.ws4d{word-spacing:1.381481pt;}
.ws5a{word-spacing:1.540882pt;}
.ws2b{word-spacing:1.594016pt;}
.ws7b{word-spacing:1.647150pt;}
.ws8f{word-spacing:1.753418pt;}
.ws2a{word-spacing:1.806551pt;}
.ws85{word-spacing:1.873782pt;}
.ws91{word-spacing:1.912819pt;}
.ws26{word-spacing:2.072221pt;}
.ws4f{word-spacing:2.125355pt;}
.ws37{word-spacing:2.178489pt;}
.ws92{word-spacing:2.231622pt;}
.ws7e{word-spacing:2.284756pt;}
.ws61{word-spacing:2.375116pt;}
.ws4c{word-spacing:2.444158pt;}
.ws53{word-spacing:2.497292pt;}
.wsb5{word-spacing:2.656693pt;}
.wsc{word-spacing:2.709827pt;}
.wsb7{word-spacing:2.727680pt;}
.ws6f{word-spacing:2.762961pt;}
.ws3c{word-spacing:2.816095pt;}
.ws24{word-spacing:2.869229pt;}
.ws5b{word-spacing:3.028630pt;}
.ws1e{word-spacing:3.081764pt;}
.wsaf{word-spacing:3.134898pt;}
.ws2c{word-spacing:3.613103pt;}
.ws34{word-spacing:3.666237pt;}
.ws1f{word-spacing:3.719371pt;}
.ws8e{word-spacing:3.772505pt;}
.ws22{word-spacing:3.825638pt;}
.ws83{word-spacing:4.033782pt;}
.ws65{word-spacing:4.038174pt;}
.ws51{word-spacing:4.144442pt;}
.ws3f{word-spacing:4.410111pt;}
.ws25{word-spacing:4.516379pt;}
.ws52{word-spacing:4.675780pt;}
.wsac{word-spacing:4.728914pt;}
.ws31{word-spacing:4.782048pt;}
.ws39{word-spacing:4.835182pt;}
.wsb3{word-spacing:4.888316pt;}
.ws5f{word-spacing:4.994583pt;}
.wsa8{word-spacing:5.153985pt;}
.ws21{word-spacing:5.685324pt;}
.ws6b{word-spacing:5.738458pt;}
.ws8c{word-spacing:5.844725pt;}
.ws63{word-spacing:5.847116pt;}
.ws20{word-spacing:6.110395pt;}
.wsa0{word-spacing:6.269796pt;}
.ws3d{word-spacing:6.748001pt;}
.ws6c{word-spacing:6.960537pt;}
.ws60{word-spacing:6.988449pt;}
.wsa5{word-spacing:8.182615pt;}
.wsa9{word-spacing:8.448285pt;}
.ws7a{word-spacing:8.732449pt;}
.wsa1{word-spacing:9.139025pt;}
.ws96{word-spacing:10.520506pt;}
.ws62{word-spacing:10.865782pt;}
.ws73{word-spacing:11.201782pt;}
.ws9d{word-spacing:11.264380pt;}
.ws9e{word-spacing:11.423781pt;}
.ws57{word-spacing:11.742585pt;}
.ws13{word-spacing:11.774494pt;}
.wsb2{word-spacing:12.061388pt;}
.wsb0{word-spacing:12.167655pt;}
.ws99{word-spacing:12.539593pt;}
.wsb4{word-spacing:12.964663pt;}
.ws1c{word-spacing:13.017797pt;}
.ws9c{word-spacing:13.124065pt;}
.wsae{word-spacing:13.177199pt;}
.ws45{word-spacing:13.230333pt;}
.ws95{word-spacing:13.389734pt;}
.wsa3{word-spacing:14.346144pt;}
.wsa{word-spacing:14.399278pt;}
.ws71{word-spacing:14.401782pt;}
.ws7{word-spacing:14.505546pt;}
.wsf{word-spacing:14.558679pt;}
.ws11{word-spacing:14.611813pt;}
.wsb{word-spacing:14.718081pt;}
.wsad{word-spacing:14.824349pt;}
.ws9{word-spacing:14.877483pt;}
.ws76{word-spacing:14.892449pt;}
.wsa6{word-spacing:15.408821pt;}
.ws8{word-spacing:15.461955pt;}
.wsa7{word-spacing:15.833892pt;}
.ws74{word-spacing:16.444449pt;}
.ws15{word-spacing:16.577766pt;}
.ws9a{word-spacing:16.843436pt;}
.wsd{word-spacing:17.427908pt;}
.ws4{word-spacing:17.661815pt;}
.wsab{word-spacing:17.959247pt;}
.ws75{word-spacing:18.092449pt;}
.ws10{word-spacing:18.118649pt;}
.wsb1{word-spacing:19.075058pt;}
.ws12{word-spacing:19.181326pt;}
.wsa4{word-spacing:21.412948pt;}
.wsaa{word-spacing:21.678618pt;}
.wsa2{word-spacing:22.316224pt;}
.ws6{word-spacing:22.475626pt;}
.wsb6{word-spacing:24.420644pt;}
.ws93{word-spacing:24.600980pt;}
.ws98{word-spacing:25.769925pt;}
.ws94{word-spacing:26.513799pt;}
.ws97{word-spacing:26.620067pt;}
.ws3{word-spacing:29.436310pt;}
.ws2{word-spacing:29.648846pt;}
.ws9b{word-spacing:30.073769pt;}
.ws16{word-spacing:31.295847pt;}
.ws5{word-spacing:37.299974pt;}
.ws17{word-spacing:45.110653pt;}
.ws18{word-spacing:45.163787pt;}
.wse{word-spacing:52.655662pt;}
.ws42{word-spacing:397.179762pt;}
.ws43{word-spacing:397.565590pt;}
.ws2d{word-spacing:705.176233pt;}
._1b{margin-left:-24.756662pt;}
._11{margin-left:-11.813044pt;}
._12{margin-left:-6.110395pt;}
._14{margin-left:-5.207098pt;}
._3{margin-left:-4.303872pt;}
._5{margin-left:-2.656715pt;}
._1{margin-left:-1.594016pt;}
._0{width:1.062677pt;}
._7{width:2.125355pt;}
._b{width:3.230547pt;}
._4{width:4.399514pt;}
._f{width:5.632211pt;}
._d{width:12.327057pt;}
._a{width:13.761671pt;}
._9{width:17.427908pt;}
._1a{width:19.075058pt;}
._13{width:24.760382pt;}
._15{width:27.204540pt;}
._8{width:28.904845pt;}
._19{width:34.005675pt;}
._18{width:36.131029pt;}
._6{width:45.398921pt;}
._c{width:52.071189pt;}
._17{width:55.418623pt;}
._16{width:59.669332pt;}
._e{width:403.476871pt;}
._2{width:473.570818pt;}
._10{width:714.018210pt;}
.fsa{font-size:25.116910pt;}
.fsb{font-size:26.566933pt;}
.fs5{font-size:31.880533pt;}
.fs9{font-size:35.163573pt;}
.fs7{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs1{font-size:47.820800pt;}
.fsc{font-size:49.414496pt;}
.fs8{font-size:50.233820pt;}
.fs0{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs6{font-size:69.074027pt;}
.fs2{font-size:106.268267pt;}
.y249{bottom:-817.293920pt;}
.y0{bottom:0.000000pt;}
.y104{bottom:7.258304pt;}
.y248{bottom:10.352760pt;}
.y247{bottom:25.176960pt;}
.y6f{bottom:28.839200pt;}
.y127{bottom:34.561333pt;}
.ya6{bottom:34.562667pt;}
.y103{bottom:36.260008pt;}
.y70{bottom:44.543200pt;}
.ya5{bottom:45.189333pt;}
.y102{bottom:53.161597pt;}
.y18d{bottom:83.710667pt;}
.y2d{bottom:85.040000pt;}
.y18c{bottom:99.650667pt;}
.y2c{bottom:100.980000pt;}
.y3b{bottom:101.609333pt;}
.y206{bottom:111.062667pt;}
.y100{bottom:114.705918pt;}
.y18b{bottom:115.592000pt;}
.y2b{bottom:116.920000pt;}
.y3a{bottom:117.549333pt;}
.y6d{bottom:118.056000pt;}
.yfd{bottom:124.626525pt;}
.y18a{bottom:131.532000pt;}
.y2a{bottom:132.860000pt;}
.y126{bottom:133.386667pt;}
.y39{bottom:133.489333pt;}
.y6c{bottom:133.996000pt;}
.yff{bottom:133.996267pt;}
.yfe{bottom:138.327552pt;}
.y189{bottom:147.472000pt;}
.y29{bottom:148.800000pt;}
.y125{bottom:149.326667pt;}
.y38{bottom:149.430667pt;}
.y6b{bottom:149.936000pt;}
.y1d8{bottom:151.653333pt;}
.y205{bottom:156.582667pt;}
.y231{bottom:158.742667pt;}
.y188{bottom:163.412000pt;}
.y28{bottom:164.740000pt;}
.y124{bottom:165.266667pt;}
.y37{bottom:165.370667pt;}
.y6a{bottom:165.876000pt;}
.y1c8{bottom:166.685333pt;}
.y1d7{bottom:169.752000pt;}
.y101{bottom:170.531078pt;}
.y1c7{bottom:170.670667pt;}
.y204{bottom:172.522667pt;}
.y1c6{bottom:174.656000pt;}
.y230{bottom:174.682667pt;}
.y1c5{bottom:178.641333pt;}
.y187{bottom:179.352000pt;}
.ya4{bottom:180.681333pt;}
.y1d6{bottom:180.784000pt;}
.y123{bottom:181.206667pt;}
.y36{bottom:181.310667pt;}
.y69{bottom:181.816000pt;}
.y1c4{bottom:182.626667pt;}
.y27{bottom:185.245333pt;}
.y1c3{bottom:186.610667pt;}
.y203{bottom:188.464000pt;}
.y1c2{bottom:190.596000pt;}
.y22f{bottom:190.622667pt;}
.y1c1{bottom:194.581333pt;}
.y186{bottom:195.292000pt;}
.yfb{bottom:196.621333pt;}
.ya3{bottom:196.934667pt;}
.y122{bottom:197.148000pt;}
.y35{bottom:197.250667pt;}
.y68{bottom:197.756000pt;}
.y1c0{bottom:198.566667pt;}
.y1d5{bottom:198.882667pt;}
.y26{bottom:201.185333pt;}
.y1bf{bottom:202.552000pt;}
.y202{bottom:206.166667pt;}
.y1be{bottom:206.537333pt;}
.y22e{bottom:206.562667pt;}
.y1d4{bottom:209.914667pt;}
.y1bd{bottom:210.521333pt;}
.y185{bottom:211.233333pt;}
.yfa{bottom:212.561333pt;}
.ya2{bottom:212.874667pt;}
.y121{bottom:213.088000pt;}
.y34{bottom:213.190667pt;}
.y67{bottom:213.697333pt;}
.y1bc{bottom:214.506667pt;}
.y25{bottom:217.125333pt;}
.y1bb{bottom:218.492000pt;}
.y201{bottom:222.106667pt;}
.y1ba{bottom:222.477333pt;}
.y1b9{bottom:226.462667pt;}
.y184{bottom:227.173333pt;}
.y1d3{bottom:228.013333pt;}
.yf9{bottom:228.501333pt;}
.ya1{bottom:228.814667pt;}
.y120{bottom:229.028000pt;}
.y33{bottom:229.130667pt;}
.y66{bottom:229.637333pt;}
.y1b8{bottom:230.448000pt;}
.y22d{bottom:232.445333pt;}
.y24{bottom:233.065333pt;}
.y1b7{bottom:234.432000pt;}
.y200{bottom:238.046667pt;}
.y1b6{bottom:238.417333pt;}
.y1d2{bottom:239.045333pt;}
.y1b5{bottom:242.402667pt;}
.y183{bottom:243.113333pt;}
.ya0{bottom:244.754667pt;}
.y11f{bottom:244.968000pt;}
.y32{bottom:245.072000pt;}
.y1b4{bottom:246.388000pt;}
.y65{bottom:246.713333pt;}
.y22c{bottom:248.385333pt;}
.y23{bottom:249.005333pt;}
.y1b3{bottom:250.373333pt;}
.yf6{bottom:253.070667pt;}
.y1b2{bottom:254.357333pt;}
.y1ff{bottom:255.749333pt;}
.y1d1{bottom:257.144000pt;}
.y1b1{bottom:258.342667pt;}
.y182{bottom:259.053333pt;}
.y9f{bottom:260.696000pt;}
.y11e{bottom:260.908000pt;}
.y31{bottom:261.012000pt;}
.yf7{bottom:262.182667pt;}
.y1b0{bottom:262.328000pt;}
.y64{bottom:262.653333pt;}
.y22b{bottom:264.326667pt;}
.y22{bottom:264.946667pt;}
.ye9{bottom:266.250667pt;}
.ye8{bottom:270.236000pt;}
.y1d9{bottom:270.962667pt;}
.yf5{bottom:271.169333pt;}
.y1d0{bottom:271.682667pt;}
.y1fe{bottom:271.689333pt;}
.ye7{bottom:274.221333pt;}
.y181{bottom:274.993333pt;}
.y9e{bottom:276.636000pt;}
.y11d{bottom:276.848000pt;}
.y30{bottom:276.952000pt;}
.ye6{bottom:278.206667pt;}
.y63{bottom:278.593333pt;}
.y22a{bottom:280.266667pt;}
.y21{bottom:280.886667pt;}
.ye5{bottom:282.190667pt;}
.ye4{bottom:286.176000pt;}
.y1af{bottom:286.238667pt;}
.y1fd{bottom:287.629333pt;}
.yf3{bottom:287.700000pt;}
.y1cf{bottom:289.780000pt;}
.ye3{bottom:290.161333pt;}
.y1ae{bottom:290.224000pt;}
.y180{bottom:290.933333pt;}
.y2f{bottom:292.892000pt;}
.y11c{bottom:293.314667pt;}
.ye2{bottom:294.146667pt;}
.y1ad{bottom:294.209333pt;}
.y62{bottom:294.533333pt;}
.y229{bottom:296.206667pt;}
.yf4{bottom:296.812000pt;}
.y9d{bottom:297.973333pt;}
.ye1{bottom:298.132000pt;}
.y1ac{bottom:298.194667pt;}
.ye0{bottom:302.117333pt;}
.y1ab{bottom:302.178667pt;}
.y1fc{bottom:303.569333pt;}
.y1ce{bottom:304.318667pt;}
.yf2{bottom:305.798667pt;}
.ydf{bottom:306.101333pt;}
.y20{bottom:306.104000pt;}
.y1aa{bottom:306.164000pt;}
.y17f{bottom:306.874667pt;}
.y2e{bottom:308.832000pt;}
.y11b{bottom:309.256000pt;}
.yde{bottom:310.086667pt;}
.y1a9{bottom:310.149333pt;}
.y61{bottom:311.609333pt;}
.y228{bottom:312.146667pt;}
.ydd{bottom:314.072000pt;}
.y1a8{bottom:314.134667pt;}
.ydc{bottom:318.057333pt;}
.y1a7{bottom:318.120000pt;}
.y1fb{bottom:319.509333pt;}
.yf1{bottom:320.336000pt;}
.ydb{bottom:322.042667pt;}
.y1a6{bottom:322.105333pt;}
.y1cd{bottom:322.417333pt;}
.y17e{bottom:322.814667pt;}
.y11a{bottom:325.196000pt;}
.y1a5{bottom:326.089333pt;}
.y60{bottom:327.549333pt;}
.y227{bottom:328.086667pt;}
.y1a4{bottom:330.074667pt;}
.yf8{bottom:330.676000pt;}
.y1a3{bottom:334.060000pt;}
.y1fa{bottom:335.450667pt;}
.y1cc{bottom:336.954667pt;}
.y9c{bottom:337.629333pt;}
.y1a2{bottom:338.045333pt;}
.yf0{bottom:338.434667pt;}
.y17d{bottom:340.089333pt;}
.y119{bottom:341.136000pt;}
.y1a1{bottom:342.030667pt;}
.y5f{bottom:343.489333pt;}
.y226{bottom:344.026667pt;}
.y1f{bottom:344.664000pt;}
.yda{bottom:345.953333pt;}
.y1a0{bottom:346.014667pt;}
.yd9{bottom:349.937333pt;}
.y19f{bottom:350.000000pt;}
.y1f9{bottom:351.390667pt;}
.y9b{bottom:353.569333pt;}
.yd8{bottom:353.922667pt;}
.y19e{bottom:353.985333pt;}
.yee{bottom:354.965333pt;}
.y1cb{bottom:355.053333pt;}
.y17c{bottom:356.029333pt;}
.y118{bottom:357.076000pt;}
.yd7{bottom:357.908000pt;}
.y19d{bottom:357.970667pt;}
.y5e{bottom:359.430667pt;}
.y225{bottom:359.968000pt;}
.y1e{bottom:360.605333pt;}
.yd6{bottom:361.893333pt;}
.y19c{bottom:361.956000pt;}
.yef{bottom:364.077333pt;}
.yd5{bottom:365.878667pt;}
.y19b{bottom:365.941333pt;}
.y1f8{bottom:369.093333pt;}
.y9a{bottom:369.509333pt;}
.y1ca{bottom:369.590667pt;}
.yd4{bottom:369.864000pt;}
.y19a{bottom:369.925333pt;}
.y17b{bottom:371.969333pt;}
.y117{bottom:373.016000pt;}
.yed{bottom:373.062667pt;}
.yd3{bottom:373.848000pt;}
.y199{bottom:373.910667pt;}
.y5d{bottom:375.370667pt;}
.y224{bottom:375.908000pt;}
.y1d{bottom:376.545333pt;}
.yd2{bottom:377.833333pt;}
.y198{bottom:377.896000pt;}
.yd1{bottom:381.818667pt;}
.y197{bottom:381.881333pt;}
.y1f7{bottom:385.033333pt;}
.y99{bottom:385.449333pt;}
.yd0{bottom:385.804000pt;}
.y1c9{bottom:387.689333pt;}
.y246{bottom:387.865333pt;}
.y17a{bottom:387.909333pt;}
.y116{bottom:388.956000pt;}
.yeb{bottom:389.593333pt;}
.ycf{bottom:389.789333pt;}
.y5c{bottom:391.310667pt;}
.y223{bottom:391.848000pt;}
.yce{bottom:393.773333pt;}
.y196{bottom:393.836000pt;}
.ycd{bottom:397.758667pt;}
.yec{bottom:398.705333pt;}
.y1f6{bottom:400.973333pt;}
.y98{bottom:401.702667pt;}
.ycc{bottom:401.744000pt;}
.y179{bottom:403.849333pt;}
.y115{bottom:405.424000pt;}
.y195{bottom:407.205333pt;}
.y5b{bottom:407.250667pt;}
.yea{bottom:407.692000pt;}
.y1c{bottom:411.925333pt;}
.ycb{bottom:413.700000pt;}
.y1f5{bottom:416.913333pt;}
.y97{bottom:417.644000pt;}
.y222{bottom:417.730667pt;}
.y178{bottom:419.789333pt;}
.y114{bottom:421.364000pt;}
.y194{bottom:423.145333pt;}
.y5a{bottom:423.190667pt;}
.y1f4{bottom:432.853333pt;}
.yca{bottom:433.364000pt;}
.y96{bottom:433.584000pt;}
.y221{bottom:433.670667pt;}
.y1b{bottom:433.844000pt;}
.y177{bottom:435.730667pt;}
.y113{bottom:437.304000pt;}
.y193{bottom:439.086667pt;}
.y59{bottom:439.130667pt;}
.y1a{bottom:447.790667pt;}
.y1f3{bottom:448.793333pt;}
.yc9{bottom:449.304000pt;}
.y95{bottom:449.524000pt;}
.y220{bottom:449.610667pt;}
.y176{bottom:451.670667pt;}
.y112{bottom:453.244000pt;}
.y192{bottom:455.026667pt;}
.y58{bottom:455.072000pt;}
.y19{bottom:464.161333pt;}
.y1f2{bottom:464.734667pt;}
.yc8{bottom:465.244000pt;}
.y21f{bottom:465.550667pt;}
.y175{bottom:467.610667pt;}
.y191{bottom:470.966667pt;}
.y111{bottom:474.622667pt;}
.y94{bottom:477.590667pt;}
.y18{bottom:478.108000pt;}
.y57{bottom:480.468000pt;}
.y1f1{bottom:480.674667pt;}
.yc7{bottom:486.096000pt;}
.y93{bottom:486.702667pt;}
.y190{bottom:486.906667pt;}
.y174{bottom:489.797333pt;}
.y21e{bottom:491.433333pt;}
.y17{bottom:497.164000pt;}
.y18f{bottom:502.846667pt;}
.y1f0{bottom:503.289333pt;}
.y21d{bottom:507.373333pt;}
.y110{bottom:515.514667pt;}
.y16{bottom:517.089333pt;}
.y18e{bottom:518.786667pt;}
.y56{bottom:522.854667pt;}
.y21c{bottom:523.313333pt;}
.yc6{bottom:523.730667pt;}
.y92{bottom:524.078667pt;}
.y10f{bottom:531.454667pt;}
.y173{bottom:534.728000pt;}
.y15{bottom:537.014667pt;}
.y55{bottom:538.796000pt;}
.y21b{bottom:539.254667pt;}
.yc5{bottom:539.670667pt;}
.y91{bottom:540.018667pt;}
.y10e{bottom:547.394667pt;}
.y245{bottom:548.545333pt;}
.y1ef{bottom:550.360000pt;}
.y172{bottom:550.668000pt;}
.y14{bottom:552.954667pt;}
.y54{bottom:554.736000pt;}
.y21a{bottom:555.194667pt;}
.yc4{bottom:555.610667pt;}
.y90{bottom:555.958667pt;}
.y10d{bottom:563.336000pt;}
.y244{bottom:564.485333pt;}
.y1ee{bottom:566.300000pt;}
.y171{bottom:566.608000pt;}
.y13{bottom:568.894667pt;}
.y53{bottom:570.676000pt;}
.y219{bottom:571.134667pt;}
.yc3{bottom:571.552000pt;}
.y8f{bottom:571.898667pt;}
.y10c{bottom:579.276000pt;}
.y243{bottom:580.425333pt;}
.y1ed{bottom:582.240000pt;}
.y170{bottom:582.548000pt;}
.y12{bottom:584.834667pt;}
.y52{bottom:586.616000pt;}
.y218{bottom:587.074667pt;}
.yc2{bottom:587.492000pt;}
.y8e{bottom:587.838667pt;}
.y10b{bottom:595.742667pt;}
.y242{bottom:596.365333pt;}
.y1ec{bottom:598.180000pt;}
.y16f{bottom:598.488000pt;}
.y11{bottom:600.774667pt;}
.y51{bottom:602.556000pt;}
.y217{bottom:603.014667pt;}
.yc1{bottom:603.432000pt;}
.y8d{bottom:603.780000pt;}
.y10a{bottom:611.682667pt;}
.y241{bottom:612.305333pt;}
.y1eb{bottom:614.121333pt;}
.y16e{bottom:614.428000pt;}
.y50{bottom:618.496000pt;}
.yc0{bottom:619.372000pt;}
.y10{bottom:620.700000pt;}
.y109{bottom:627.622667pt;}
.y240{bottom:628.245333pt;}
.y216{bottom:628.897333pt;}
.y1ea{bottom:631.824000pt;}
.y8c{bottom:633.944000pt;}
.y4f{bottom:634.437333pt;}
.ybf{bottom:635.312000pt;}
.yf{bottom:636.641333pt;}
.y108{bottom:643.562667pt;}
.y215{bottom:644.837333pt;}
.y1e9{bottom:647.764000pt;}
.y4e{bottom:650.377333pt;}
.ybe{bottom:651.252000pt;}
.y23f{bottom:654.813333pt;}
.ye{bottom:656.565333pt;}
.y107{bottom:659.502667pt;}
.y214{bottom:660.777333pt;}
.y1e8{bottom:663.704000pt;}
.y8b{bottom:663.794667pt;}
.y16b{bottom:666.852000pt;}
.ybd{bottom:667.193333pt;}
.y23e{bottom:670.753333pt;}
.y16c{bottom:671.382667pt;}
.y4d{bottom:672.365333pt;}
.yd{bottom:672.506667pt;}
.y158{bottom:678.721333pt;}
.y1e7{bottom:679.644000pt;}
.y213{bottom:681.630667pt;}
.y157{bottom:682.705333pt;}
.ybc{bottom:683.133333pt;}
.y89{bottom:683.353333pt;}
.y16a{bottom:684.950667pt;}
.y156{bottom:686.690667pt;}
.y23d{bottom:686.693333pt;}
.yc{bottom:688.446667pt;}
.y155{bottom:690.676000pt;}
.y106{bottom:694.342667pt;}
.y154{bottom:694.661333pt;}
.y1e6{bottom:695.584000pt;}
.y83{bottom:697.770667pt;}
.y153{bottom:698.646667pt;}
.ybb{bottom:699.073333pt;}
.y168{bottom:699.488000pt;}
.y88{bottom:701.452000pt;}
.y82{bottom:701.756000pt;}
.y152{bottom:702.632000pt;}
.y23c{bottom:702.633333pt;}
.y169{bottom:704.018667pt;}
.yb{bottom:704.386667pt;}
.y81{bottom:705.741333pt;}
.y151{bottom:706.616000pt;}
.y80{bottom:709.725333pt;}
.y105{bottom:710.284000pt;}
.y150{bottom:710.601333pt;}
.y1e5{bottom:711.524000pt;}
.y7f{bottom:713.710667pt;}
.y14f{bottom:714.586667pt;}
.yba{bottom:715.013333pt;}
.y87{bottom:715.990667pt;}
.y4c{bottom:716.302667pt;}
.y167{bottom:717.586667pt;}
.y7e{bottom:717.696000pt;}
.y14e{bottom:718.572000pt;}
.y212{bottom:718.862667pt;}
.ya{bottom:720.326667pt;}
.yfc{bottom:721.441333pt;}
.y14d{bottom:722.557333pt;}
.y8a{bottom:726.330667pt;}
.y14c{bottom:726.541333pt;}
.y23b{bottom:729.200000pt;}
.y1e4{bottom:729.226667pt;}
.y14b{bottom:730.526667pt;}
.yb9{bottom:730.953333pt;}
.y4b{bottom:732.242667pt;}
.y165{bottom:733.969333pt;}
.y86{bottom:734.088000pt;}
.y14a{bottom:734.512000pt;}
.y9{bottom:736.266667pt;}
.y149{bottom:738.497333pt;}
.y211{bottom:739.773333pt;}
.y7d{bottom:741.606667pt;}
.y148{bottom:742.482667pt;}
.y166{bottom:743.081333pt;}
.y23a{bottom:745.141333pt;}
.y1e3{bottom:745.166667pt;}
.y7c{bottom:745.592000pt;}
.y147{bottom:746.468000pt;}
.yb8{bottom:746.893333pt;}
.y4a{bottom:748.182667pt;}
.y85{bottom:748.626667pt;}
.y7b{bottom:749.577333pt;}
.y146{bottom:750.452000pt;}
.y164{bottom:752.068000pt;}
.y7a{bottom:753.562667pt;}
.y145{bottom:754.437333pt;}
.y79{bottom:757.546667pt;}
.y144{bottom:758.422667pt;}
.y210{bottom:760.685333pt;}
.y239{bottom:761.081333pt;}
.y1e2{bottom:761.108000pt;}
.y78{bottom:761.532000pt;}
.y143{bottom:762.408000pt;}
.yb7{bottom:762.834667pt;}
.y49{bottom:764.122667pt;}
.y142{bottom:766.393333pt;}
.y84{bottom:766.724000pt;}
.y163{bottom:768.598667pt;}
.y141{bottom:770.378667pt;}
.y77{bottom:773.488000pt;}
.y238{bottom:777.021333pt;}
.y1e1{bottom:777.048000pt;}
.y76{bottom:778.350667pt;}
.yb6{bottom:778.774667pt;}
.y16d{bottom:779.012000pt;}
.y48{bottom:780.062667pt;}
.y20f{bottom:781.596000pt;}
.y8{bottom:783.789333pt;}
.y162{bottom:786.696000pt;}
.yb5{bottom:790.133333pt;}
.y237{bottom:792.961333pt;}
.y140{bottom:794.288000pt;}
.y75{bottom:794.292000pt;}
.yb4{bottom:794.714667pt;}
.y1e0{bottom:794.750667pt;}
.y47{bottom:796.004000pt;}
.y13f{bottom:798.273333pt;}
.y161{bottom:801.234667pt;}
.y13e{bottom:802.258667pt;}
.y20e{bottom:802.508000pt;}
.y13d{bottom:806.244000pt;}
.y13c{bottom:810.229333pt;}
.y74{bottom:810.545333pt;}
.yb3{bottom:810.654667pt;}
.y1df{bottom:810.690667pt;}
.y46{bottom:811.944000pt;}
.y13b{bottom:814.214667pt;}
.y13a{bottom:818.198667pt;}
.y7{bottom:818.325333pt;}
.y160{bottom:819.333333pt;}
.y236{bottom:819.528000pt;}
.y139{bottom:822.184000pt;}
.y20d{bottom:823.418667pt;}
.y138{bottom:826.169333pt;}
.y73{bottom:826.485333pt;}
.yb2{bottom:826.594667pt;}
.y1de{bottom:826.630667pt;}
.y45{bottom:829.020000pt;}
.y137{bottom:830.154667pt;}
.y136{bottom:834.140000pt;}
.y235{bottom:835.469333pt;}
.y15e{bottom:835.864000pt;}
.y135{bottom:838.125333pt;}
.y134{bottom:842.109333pt;}
.yb1{bottom:842.536000pt;}
.y1dd{bottom:842.570667pt;}
.y20c{bottom:844.330667pt;}
.y44{bottom:844.960000pt;}
.y15f{bottom:844.974667pt;}
.y133{bottom:846.094667pt;}
.y132{bottom:850.080000pt;}
.y234{bottom:851.409333pt;}
.y6{bottom:851.534667pt;}
.y15d{bottom:853.961333pt;}
.y131{bottom:854.065333pt;}
.y130{bottom:858.050667pt;}
.y1dc{bottom:858.510667pt;}
.y43{bottom:860.900000pt;}
.y12f{bottom:862.036000pt;}
.y20b{bottom:864.984000pt;}
.yaf{bottom:865.330667pt;}
.y12e{bottom:866.020000pt;}
.y233{bottom:867.349333pt;}
.y12d{bottom:870.005333pt;}
.y15a{bottom:870.492000pt;}
.y72{bottom:871.745333pt;}
.y12c{bottom:873.990667pt;}
.y15c{bottom:875.024000pt;}
.y1db{bottom:876.213333pt;}
.y42{bottom:876.840000pt;}
.y12b{bottom:877.976000pt;}
.yab{bottom:879.370667pt;}
.y15b{bottom:879.604000pt;}
.y12a{bottom:881.961333pt;}
.y232{bottom:883.289333pt;}
.yaa{bottom:883.354667pt;}
.yae{bottom:883.429333pt;}
.y5{bottom:884.744000pt;}
.y129{bottom:885.945333pt;}
.y71{bottom:887.685333pt;}
.y159{bottom:888.590667pt;}
.yb0{bottom:891.989333pt;}
.y1da{bottom:892.153333pt;}
.y41{bottom:892.780000pt;}
.y128{bottom:897.901333pt;}
.yad{bottom:897.966667pt;}
.y6e{bottom:898.844000pt;}
.y20a{bottom:902.414667pt;}
.ya9{bottom:907.265333pt;}
.y40{bottom:909.856000pt;}
.ya8{bottom:911.250667pt;}
.yac{bottom:916.065333pt;}
.y4{bottom:917.952000pt;}
.y209{bottom:918.356000pt;}
.ya7{bottom:923.206667pt;}
.y3f{bottom:925.796000pt;}
.y208{bottom:934.296000pt;}
.y3e{bottom:941.737333pt;}
.y207{bottom:954.949333pt;}
.y3d{bottom:957.677333pt;}
.y3{bottom:977.728000pt;}
.y2{bottom:992.340000pt;}
.y1{bottom:1003.777333pt;}
.y3c{bottom:1007.622667pt;}
.hf{height:2.125355pt;}
.h1e{height:24.719992pt;}
.h14{height:28.155555pt;}
.h8{height:29.935821pt;}
.h24{height:35.493423pt;}
.h2{height:36.200346pt;}
.h25{height:36.290431pt;}
.h27{height:37.060872pt;}
.h1a{height:37.675365pt;}
.h7{height:39.372195pt;}
.hc{height:39.850400pt;}
.h1d{height:39.909077pt;}
.h9{height:39.914261pt;}
.h26{height:44.640000pt;}
.h1b{height:45.620077pt;}
.h15{height:47.069767pt;}
.hb{height:47.289141pt;}
.ha{height:48.267127pt;}
.h1{height:48.899012pt;}
.h6{height:49.892701pt;}
.he{height:51.805520pt;}
.h1c{height:55.000502pt;}
.h16{height:58.175733pt;}
.h1f{height:61.106688pt;}
.h5{height:63.050261pt;}
.hd{height:72.117067pt;}
.h11{height:76.293067pt;}
.h10{height:76.298400pt;}
.h12{height:77.042688pt;}
.h4{height:78.744786pt;}
.h20{height:79.426688pt;}
.h22{height:79.432021pt;}
.h3{height:80.445078pt;}
.h23{height:97.549355pt;}
.h21{height:97.554688pt;}
.h17{height:112.239733pt;}
.h18{height:112.245067pt;}
.h13{height:113.490688pt;}
.h19{height:184.486738pt;}
.h0{height:1056.000000pt;}
.w3{width:129.456000pt;}
.w1{width:296.874933pt;}
.w2{width:332.423538pt;}
.w0{width:816.000000pt;}
.xdd{left:-492.164680pt;}
.xde{left:-186.112840pt;}
.x0{left:0.000000pt;}
.x56{left:4.816600pt;}
.x13{left:34.855600pt;}
.x53{left:45.231414pt;}
.xa{left:74.594667pt;}
.x4{left:75.590667pt;}
.x1{left:80.572000pt;}
.x54{left:82.686433pt;}
.x5{left:84.557333pt;}
.x14{left:88.705067pt;}
.x95{left:92.028000pt;}
.x7{left:95.516000pt;}
.xc8{left:96.977333pt;}
.x4a{left:100.216000pt;}
.xc{left:102.454667pt;}
.xd8{left:104.361333pt;}
.x8d{left:108.321333pt;}
.x96{left:119.205333pt;}
.x47{left:125.881333pt;}
.x9c{left:128.188000pt;}
.x58{left:132.980256pt;}
.x90{left:136.373333pt;}
.xda{left:138.397333pt;}
.x35{left:141.092000pt;}
.x2d{left:144.102667pt;}
.x23{left:147.380000pt;}
.x91{left:149.924000pt;}
.xb{left:150.944000pt;}
.x4b{left:153.441333pt;}
.x36{left:154.493333pt;}
.x92{left:156.613333pt;}
.x3a{left:158.456000pt;}
.x37{left:159.609333pt;}
.x24{left:160.781333pt;}
.x26{left:162.209333pt;}
.x25{left:164.214667pt;}
.xa5{left:166.110667pt;}
.xc9{left:167.846667pt;}
.x2e{left:168.748000pt;}
.x4c{left:170.333333pt;}
.x32{left:172.153333pt;}
.x48{left:173.093333pt;}
.x4d{left:180.360000pt;}
.x93{left:183.544000pt;}
.xcb{left:184.498667pt;}
.xd0{left:186.554667pt;}
.x6{left:188.490667pt;}
.x42{left:193.257333pt;}
.x41{left:194.602667pt;}
.x4e{left:196.678667pt;}
.x94{left:200.426667pt;}
.x55{left:203.517412pt;}
.x57{left:206.298207pt;}
.x3b{left:209.473333pt;}
.x43{left:213.388000pt;}
.x27{left:218.361333pt;}
.x28{left:219.468000pt;}
.xa3{left:220.425333pt;}
.x44{left:223.182667pt;}
.xc2{left:225.456000pt;}
.x7d{left:226.881333pt;}
.x3d{left:229.272000pt;}
.x38{left:230.416000pt;}
.xca{left:235.460000pt;}
.xa4{left:237.968000pt;}
.x7e{left:240.282667pt;}
.xc6{left:241.968000pt;}
.x3e{left:243.432000pt;}
.x39{left:244.861333pt;}
.x3c{left:246.021333pt;}
.x7f{left:247.253333pt;}
.x85{left:248.176000pt;}
.x33{left:258.746667pt;}
.xbe{left:261.117333pt;}
.x9e{left:263.405333pt;}
.x34{left:265.388000pt;}
.xdc{left:268.152000pt;}
.xa2{left:269.697333pt;}
.x8e{left:270.677333pt;}
.x59{left:275.243276pt;}
.x8f{left:277.320000pt;}
.x3f{left:279.692000pt;}
.xf{left:281.414667pt;}
.xbf{left:282.672000pt;}
.xdb{left:284.918667pt;}
.xd{left:286.190667pt;}
.xc3{left:287.580000pt;}
.xc0{left:288.970667pt;}
.xe{left:292.833333pt;}
.x2a{left:296.426667pt;}
.x10{left:302.038667pt;}
.xd9{left:304.264000pt;}
.x2b{left:306.828000pt;}
.x97{left:308.549333pt;}
.x11{left:309.654667pt;}
.x83{left:312.761333pt;}
.x82{left:313.766667pt;}
.x4f{left:314.913333pt;}
.x88{left:316.206667pt;}
.x2c{left:318.109333pt;}
.x98{left:320.685333pt;}
.x29{left:322.126667pt;}
.xc1{left:323.122667pt;}
.x2f{left:324.636000pt;}
.x80{left:325.698667pt;}
.xc7{left:327.449333pt;}
.x40{left:328.416000pt;}
.x30{left:333.182667pt;}
.x84{left:338.054667pt;}
.x99{left:340.528000pt;}
.x89{left:341.500000pt;}
.x9a{left:348.233333pt;}
.x45{left:349.904000pt;}
.x9f{left:356.368000pt;}
.x2{left:361.352000pt;}
.x9b{left:364.686667pt;}
.x8b{left:367.942667pt;}
.x46{left:370.769333pt;}
.xcc{left:372.210667pt;}
.xa0{left:373.877333pt;}
.xa1{left:375.308000pt;}
.xcd{left:378.852000pt;}
.x3{left:381.424000pt;}
.x49{left:383.149333pt;}
.x31{left:384.040000pt;}
.xce{left:385.461333pt;}
.x9d{left:386.942667pt;}
.xc4{left:389.289333pt;}
.xcf{left:392.102667pt;}
.xc5{left:396.600000pt;}
.x8{left:418.393333pt;}
.x87{left:422.534667pt;}
.x86{left:424.340000pt;}
.xb5{left:426.256000pt;}
.x12{left:430.964000pt;}
.xad{left:432.116000pt;}
.x5f{left:436.420000pt;}
.x9{left:438.318667pt;}
.x5a{left:440.161333pt;}
.xb6{left:444.034667pt;}
.xd7{left:446.168000pt;}
.xd2{left:447.164000pt;}
.x8a{left:450.366667pt;}
.xae{left:452.612000pt;}
.xaf{left:459.386667pt;}
.x5b{left:460.686667pt;}
.x74{left:466.834667pt;}
.xa6{left:468.345333pt;}
.x5c{left:470.165333pt;}
.xb0{left:476.497333pt;}
.x70{left:478.349333pt;}
.x20{left:480.645333pt;}
.x81{left:486.926667pt;}
.x75{left:488.740000pt;}
.x5d{left:490.120000pt;}
.x7b{left:492.730667pt;}
.xba{left:494.144000pt;}
.x1b{left:495.841333pt;}
.x71{left:499.262667pt;}
.xd1{left:500.570667pt;}
.xb4{left:503.314667pt;}
.x72{left:508.605333pt;}
.xa7{left:510.849333pt;}
.x1d{left:513.818667pt;}
.xa8{left:517.880000pt;}
.x76{left:518.908000pt;}
.x1c{left:519.917333pt;}
.x15{left:525.032000pt;}
.x73{left:527.508000pt;}
.xa9{left:530.033333pt;}
.x1a{left:533.414667pt;}
.xaa{left:537.064000pt;}
.x16{left:538.433333pt;}
.x18{left:539.476000pt;}
.x17{left:540.490667pt;}
.xb8{left:542.596000pt;}
.xb1{left:548.709333pt;}
.x7c{left:551.728000pt;}
.xab{left:552.860000pt;}
.x1e{left:557.229333pt;}
.xd4{left:560.432000pt;}
.x22{left:562.690667pt;}
.x21{left:564.076000pt;}
.xb2{left:566.053333pt;}
.x52{left:567.721333pt;}
.x1f{left:570.518667pt;}
.xd5{left:572.480000pt;}
.xb7{left:578.025333pt;}
.x67{left:579.073333pt;}
.xb9{left:581.828000pt;}
.x8c{left:585.428000pt;}
.x6e{left:587.121333pt;}
.xd3{left:594.297333pt;}
.x6f{left:597.266667pt;}
.x68{left:603.017333pt;}
.x77{left:605.845333pt;}
.x69{left:613.153333pt;}
.x5e{left:619.132000pt;}
.x78{left:623.560000pt;}
.x60{left:625.356000pt;}
.x19{left:630.081333pt;}
.x61{left:634.454667pt;}
.x6a{left:635.496000pt;}
.x79{left:638.212000pt;}
.xbc{left:639.225333pt;}
.x6d{left:642.094667pt;}
.x62{left:653.192000pt;}
.x7a{left:654.457333pt;}
.x63{left:661.730667pt;}
.x50{left:671.421333pt;}
.xac{left:673.458667pt;}
.xb3{left:679.718667pt;}
.x64{left:684.016000pt;}
.x51{left:689.413333pt;}
.xd6{left:694.010667pt;}
.x65{left:695.940000pt;}
.xbd{left:711.129333pt;}
.x6b{left:713.504000pt;}
.xbb{left:714.697333pt;}
.x66{left:720.844000pt;}
.x6c{left:734.312000pt;}
}




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