
    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_4b82030989b656f5d10d7baa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;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_d0c6562702f94ed1f3977945.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;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_ae3d30b173e585783f2d5020.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;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_fd95a307a9ccdbdbc21a8a7e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;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_76add9365ed55aa2f839f238.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_4c5ea90e2e64596a87ec6241.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010000;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_1d9892c9b461453fdb1c0111.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;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_998811d8f83ca6ab69e72c76.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.761000;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_80a8a86410d6d12142e7cf38.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.388000;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_e2b2b613e0056f8356a7b988.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000488;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_89e2a4ea5352378e276cda51.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003906;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_205d0e46edba1975be6bf5e9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.011230;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_9633b450642ffe2203c42092.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000488;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_f6013569b863135860bee544.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.003906;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_487f322b7758d24b34598b2e.woff2')format("woff");}.fff{font-family:fff;line-height:1.011230;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_ae24c428166c2908f65a72f0.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000488;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_f75867e8b6e45f3253c9f25c.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.003906;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_ea1f725b3ed7aa4dba8c6a50.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.011230;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_ae24c428166c2908f65a72f0.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000488;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_f75867e8b6e45f3253c9f25c.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.003906;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_ea1f725b3ed7aa4dba8c6a50.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_bf7c4e70e8013d5099b5c603.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_c1daa31b115fe825d0ec0973.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_7b9659372edadd0281d6ebb0.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_210955d83d27cabcf0fb9bd1.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_1f0943350e05f2d6ab72695a.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.726000;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;}
.m2{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);}
.m21{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);}
.m12{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m10{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);}
.m16{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m1e{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);}
.m3{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);}
.m13{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);}
.m2b{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);}
.m15{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);}
.m11{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);}
.m8{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);}
.m1c{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);}
.m1{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m1a{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);}
.m26{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m19{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);}
.m24{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);}
.mb{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);}
.ma{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);}
.me{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);}
.m2a{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);}
.m23{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);}
.md{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);}
.m6{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);}
.m1f{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);}
.m22{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m17{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);}
.m1d{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);}
.m25{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m5{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);}
.mf{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);}
.v7{vertical-align:-19.278680px;}
.v2{vertical-align:-17.358000px;}
.v6{vertical-align:-13.988722px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.v5{vertical-align:26.988000px;}
.v3{vertical-align:32.880000px;}
.v4{vertical-align:39.264000px;}
.ls41{letter-spacing:-0.321943px;}
.ls19{letter-spacing:-0.276552px;}
.ls3f{letter-spacing:-0.265129px;}
.ls3c{letter-spacing:-0.220941px;}
.ls53{letter-spacing:-0.168336px;}
.ls55{letter-spacing:-0.156312px;}
.ls1d{letter-spacing:-0.114228px;}
.ls46{letter-spacing:-0.107314px;}
.ls1c{letter-spacing:-0.102204px;}
.ls1e{letter-spacing:-0.084168px;}
.ls48{letter-spacing:-0.082064px;}
.ls44{letter-spacing:-0.075751px;}
.ls54{letter-spacing:-0.072144px;}
.ls47{letter-spacing:-0.063126px;}
.ls24{letter-spacing:-0.060120px;}
.ls25{letter-spacing:-0.042084px;}
.ls17{letter-spacing:-0.038304px;}
.ls43{letter-spacing:-0.037876px;}
.ls27{letter-spacing:-0.036072px;}
.ls56{letter-spacing:-0.030060px;}
.ls45{letter-spacing:-0.025250px;}
.ls1b{letter-spacing:-0.024048px;}
.ls40{letter-spacing:-0.018938px;}
.ls1f{letter-spacing:-0.018036px;}
.ls18{letter-spacing:-0.014364px;}
.ls3e{letter-spacing:-0.012625px;}
.ls1a{letter-spacing:-0.012024px;}
.ls3d{letter-spacing:-0.011340px;}
.ls26{letter-spacing:-0.006012px;}
.ls3b{letter-spacing:-0.005027px;}
.ls52{letter-spacing:-0.004788px;}
.ls6{letter-spacing:0.000000px;}
.ls58{letter-spacing:0.000243px;}
.ls5b{letter-spacing:0.002074px;}
.ls5a{letter-spacing:0.002422px;}
.ls21{letter-spacing:0.006012px;}
.ls33{letter-spacing:0.006313px;}
.ls2d{letter-spacing:0.011340px;}
.lsc{letter-spacing:0.012024px;}
.ls3a{letter-spacing:0.012625px;}
.ls2c{letter-spacing:0.017010px;}
.lsf{letter-spacing:0.018036px;}
.ls4f{letter-spacing:0.021600px;}
.ls22{letter-spacing:0.024048px;}
.ls30{letter-spacing:0.025250px;}
.ls4e{letter-spacing:0.027000px;}
.lse{letter-spacing:0.030060px;}
.ls34{letter-spacing:0.031563px;}
.ls4d{letter-spacing:0.032400px;}
.lsd{letter-spacing:0.036072px;}
.ls32{letter-spacing:0.037876px;}
.ls2f{letter-spacing:0.039690px;}
.lsb{letter-spacing:0.042084px;}
.ls37{letter-spacing:0.044188px;}
.ls14{letter-spacing:0.048096px;}
.ls38{letter-spacing:0.050501px;}
.ls13{letter-spacing:0.054108px;}
.ls36{letter-spacing:0.056813px;}
.ls11{letter-spacing:0.060120px;}
.ls16{letter-spacing:0.066132px;}
.ls35{letter-spacing:0.069439px;}
.ls12{letter-spacing:0.070200px;}
.lsa{letter-spacing:0.072144px;}
.ls15{letter-spacing:0.078156px;}
.ls31{letter-spacing:0.082064px;}
.ls20{letter-spacing:0.084168px;}
.ls4c{letter-spacing:0.090180px;}
.ls4a{letter-spacing:0.096192px;}
.ls51{letter-spacing:0.114228px;}
.ls10{letter-spacing:0.132264px;}
.ls23{letter-spacing:0.138276px;}
.ls42{letter-spacing:0.138877px;}
.ls2e{letter-spacing:0.147420px;}
.ls50{letter-spacing:0.150300px;}
.ls2b{letter-spacing:0.157815px;}
.ls9{letter-spacing:0.167580px;}
.ls8{letter-spacing:0.181944px;}
.ls29{letter-spacing:0.186014px;}
.ls49{letter-spacing:0.191520px;}
.ls28{letter-spacing:0.201096px;}
.ls5{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls4b{letter-spacing:7.298568px;}
.ls1{letter-spacing:10.461300px;}
.ls4{letter-spacing:11.954850px;}
.ls59{letter-spacing:13.439732px;}
.ls57{letter-spacing:13.448400px;}
.ls5c{letter-spacing:13.454400px;}
.ls5d{letter-spacing:21.415106px;}
.ls7{letter-spacing:22.057196px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.ls39{letter-spacing:1137.574708px;}
.ls2a{letter-spacing:1160.640949px;}
.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;}
}
.ws10{word-spacing:-31.347956px;}
.wsc2{word-spacing:-15.781500px;}
.wsc3{word-spacing:-15.459557px;}
.ws11{word-spacing:-14.943900px;}
.ws63{word-spacing:-13.449600px;}
.wsc0{word-spacing:-12.769596px;}
.wsc1{word-spacing:-12.568500px;}
.wsf1{word-spacing:-12.161520px;}
.ws6d{word-spacing:-12.151944px;}
.ws6e{word-spacing:-11.970000px;}
.ws33{word-spacing:-11.955150px;}
.ws14{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws104{word-spacing:-3.589164px;}
.wsbf{word-spacing:-3.347434px;}
.ws31{word-spacing:-3.048556px;}
.wsdc{word-spacing:-2.979547px;}
.ws8a{word-spacing:-2.849688px;}
.ws125{word-spacing:-2.843676px;}
.wsfb{word-spacing:-2.795580px;}
.ws89{word-spacing:-2.705400px;}
.ws88{word-spacing:-2.675340px;}
.ws6f{word-spacing:-2.570351px;}
.ws142{word-spacing:-2.528525px;}
.wsdb{word-spacing:-2.518727px;}
.wsa3{word-spacing:-2.510575px;}
.wsda{word-spacing:-2.468227px;}
.wsfc{word-spacing:-2.464920px;}
.ws12b{word-spacing:-2.450800px;}
.ws111{word-spacing:-2.434860px;}
.ws112{word-spacing:-2.416824px;}
.ws5b{word-spacing:-2.391024px;}
.ws28{word-spacing:-2.331248px;}
.ws17{word-spacing:-2.259533px;}
.ws138{word-spacing:-2.151936px;}
.ws9a{word-spacing:-2.146284px;}
.ws139{word-spacing:-1.936742px;}
.ws1{word-spacing:-1.908367px;}
.ws72{word-spacing:-1.853044px;}
.wse2{word-spacing:-1.843279px;}
.ws29{word-spacing:-1.793268px;}
.ws90{word-spacing:-1.767528px;}
.ws95{word-spacing:-1.761516px;}
.ws96{word-spacing:-1.689372px;}
.ws4e{word-spacing:-1.673717px;}
.wsaa{word-spacing:-1.494390px;}
.ws39{word-spacing:-1.434614px;}
.ws115{word-spacing:-1.430856px;}
.ws92{word-spacing:-1.406808px;}
.wsba{word-spacing:-1.394784px;}
.ws13b{word-spacing:-1.344960px;}
.wsad{word-spacing:-1.340676px;}
.ws0{word-spacing:-1.322630px;}
.wsee{word-spacing:-1.315063px;}
.ws141{word-spacing:-1.291162px;}
.ws74{word-spacing:-1.255288px;}
.ws6{word-spacing:-1.171598px;}
.ws12e{word-spacing:-1.075961px;}
.ws108{word-spacing:-1.070136px;}
.ws8{word-spacing:-1.046070px;}
.wsbb{word-spacing:-0.997992px;}
.wsfe{word-spacing:-0.991980px;}
.ws93{word-spacing:-0.967932px;}
.wsae{word-spacing:-0.931860px;}
.ws148{word-spacing:-0.914573px;}
.ws50{word-spacing:-0.836858px;}
.ws71{word-spacing:-0.717307px;}
.ws11c{word-spacing:-0.697392px;}
.wsb4{word-spacing:-0.685368px;}
.wsa7{word-spacing:-0.657532px;}
.wsc4{word-spacing:-0.597756px;}
.ws151{word-spacing:-0.591782px;}
.wsb3{word-spacing:-0.589176px;}
.ws54{word-spacing:-0.537984px;}
.ws137{word-spacing:-0.537980px;}
.wsa4{word-spacing:-0.478205px;}
.ws101{word-spacing:-0.456912px;}
.wsa2{word-spacing:-0.418429px;}
.ws86{word-spacing:-0.402804px;}
.ws116{word-spacing:-0.378756px;}
.ws4c{word-spacing:-0.358654px;}
.wsdf{word-spacing:-0.328255px;}
.ws99{word-spacing:-0.318636px;}
.ws7e{word-spacing:-0.312624px;}
.ws37{word-spacing:-0.298878px;}
.wsc7{word-spacing:-0.291589px;}
.wsf9{word-spacing:-0.277704px;}
.ws77{word-spacing:-0.272916px;}
.ws150{word-spacing:-0.268992px;}
.wsb8{word-spacing:-0.264528px;}
.ws128{word-spacing:-0.240480px;}
.ws2c{word-spacing:-0.239102px;}
.wsb9{word-spacing:-0.234468px;}
.ws1d{word-spacing:-0.215194px;}
.ws110{word-spacing:-0.192384px;}
.ws2a{word-spacing:-0.179327px;}
.ws2f{word-spacing:-0.119551px;}
.ws13f{word-spacing:-0.107597px;}
.ws146{word-spacing:-0.103699px;}
.wsc6{word-spacing:-0.085466px;}
.wsf8{word-spacing:-0.081396px;}
.ws78{word-spacing:-0.076608px;}
.ws12{word-spacing:-0.059776px;}
.ws1e{word-spacing:-0.053798px;}
.ws76{word-spacing:-0.052668px;}
.wsd5{word-spacing:-0.037876px;}
.ws155{word-spacing:-0.028954px;}
.ws152{word-spacing:-0.027754px;}
.ws14d{word-spacing:-0.026352px;}
.ws14c{word-spacing:-0.026314px;}
.ws149{word-spacing:-0.026259px;}
.ws14b{word-spacing:-0.024566px;}
.ws13{word-spacing:-0.002408px;}
.ws32{word-spacing:-0.001125px;}
.ws3{word-spacing:0.000000px;}
.wsb0{word-spacing:0.006012px;}
.ws8b{word-spacing:0.018036px;}
.ws97{word-spacing:0.030060px;}
.wsd9{word-spacing:0.031563px;}
.ws15{word-spacing:0.047821px;}
.ws1f{word-spacing:0.053798px;}
.ws9b{word-spacing:0.054108px;}
.ws2b{word-spacing:0.059776px;}
.ws98{word-spacing:0.060120px;}
.wsd6{word-spacing:0.069439px;}
.wsaf{word-spacing:0.072144px;}
.ws123{word-spacing:0.078156px;}
.ws127{word-spacing:0.090180px;}
.wsd4{word-spacing:0.094689px;}
.ws11b{word-spacing:0.096192px;}
.ws7d{word-spacing:0.102204px;}
.ws65{word-spacing:0.107597px;}
.ws8d{word-spacing:0.108000px;}
.wsa1{word-spacing:0.114228px;}
.ws23{word-spacing:0.119551px;}
.ws126{word-spacing:0.126252px;}
.ws105{word-spacing:0.151200px;}
.wscd{word-spacing:0.153090px;}
.ws106{word-spacing:0.156600px;}
.ws18{word-spacing:0.161395px;}
.ws107{word-spacing:0.162000px;}
.ws8c{word-spacing:0.178200px;}
.ws35{word-spacing:0.179327px;}
.ws19{word-spacing:0.215194px;}
.ws38{word-spacing:0.239102px;}
.ws134{word-spacing:0.268992px;}
.ws2e{word-spacing:0.298878px;}
.ws6b{word-spacing:0.358654px;}
.wsf4{word-spacing:0.418429px;}
.wsb2{word-spacing:0.426852px;}
.wsb1{word-spacing:0.444888px;}
.ws48{word-spacing:0.537980px;}
.wscc{word-spacing:0.572670px;}
.ws20{word-spacing:0.591782px;}
.ws3f{word-spacing:0.597756px;}
.ws30{word-spacing:0.777083px;}
.wsbc{word-spacing:0.781560px;}
.wse1{word-spacing:0.808013px;}
.wsbd{word-spacing:0.835668px;}
.ws52{word-spacing:0.836858px;}
.wsd1{word-spacing:0.877451px;}
.wsca{word-spacing:0.935550px;}
.wscb{word-spacing:0.963900px;}
.ws7{word-spacing:1.004227px;}
.ws43{word-spacing:1.016185px;}
.ws4d{word-spacing:1.075961px;}
.ws143{word-spacing:1.075968px;}
.wsb5{word-spacing:1.100196px;}
.wsa0{word-spacing:1.106208px;}
.wsd0{word-spacing:1.123643px;}
.wsf3{word-spacing:1.135736px;}
.ws9f{word-spacing:1.154304px;}
.wsd2{word-spacing:1.155206px;}
.wsd3{word-spacing:1.199394px;}
.ws3a{word-spacing:1.255288px;}
.ws4b{word-spacing:1.315063px;}
.ws5a{word-spacing:1.374839px;}
.ws11a{word-spacing:1.460916px;}
.ws10a{word-spacing:1.472940px;}
.ws9c{word-spacing:1.484964px;}
.ws102{word-spacing:1.490976px;}
.ws1a{word-spacing:1.506355px;}
.ws103{word-spacing:1.509012px;}
.ws109{word-spacing:1.515024px;}
.ws10b{word-spacing:1.539072px;}
.wseb{word-spacing:1.565525px;}
.ws12f{word-spacing:1.613941px;}
.ws73{word-spacing:1.673717px;}
.ws36{word-spacing:1.733492px;}
.ws44{word-spacing:1.793268px;}
.ws121{word-spacing:1.803600px;}
.ws91{word-spacing:1.833660px;}
.wsab{word-spacing:1.845684px;}
.ws83{word-spacing:1.851696px;}
.ws3e{word-spacing:1.853044px;}
.wsac{word-spacing:1.875744px;}
.ws122{word-spacing:1.905804px;}
.ws2d{word-spacing:1.972595px;}
.wse5{word-spacing:1.975844px;}
.wse9{word-spacing:1.982156px;}
.wsef{word-spacing:2.032370px;}
.wse8{word-spacing:2.051595px;}
.wsea{word-spacing:2.070533px;}
.ws129{word-spacing:2.092146px;}
.wse7{word-spacing:2.095783px;}
.wsa6{word-spacing:2.151922px;}
.wsb6{word-spacing:2.176344px;}
.ws12a{word-spacing:2.331248px;}
.wse6{word-spacing:2.360912px;}
.ws12d{word-spacing:2.391024px;}
.ws55{word-spacing:2.450800px;}
.ws4{word-spacing:2.510568px;}
.ws34{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws70{word-spacing:2.689902px;}
.ws1c{word-spacing:2.689920px;}
.ws135{word-spacing:2.749678px;}
.ws16{word-spacing:2.869236px;}
.ws114{word-spacing:2.915820px;}
.ws47{word-spacing:2.988780px;}
.ws14f{word-spacing:3.012710px;}
.wse3{word-spacing:3.067924px;}
.ws132{word-spacing:3.108331px;}
.ws140{word-spacing:3.120307px;}
.ws3c{word-spacing:3.168107px;}
.ws21{word-spacing:3.219667px;}
.ws14e{word-spacing:3.222000px;}
.ws145{word-spacing:3.222422px;}
.ws13a{word-spacing:3.224822px;}
.wsf7{word-spacing:3.227882px;}
.ws14a{word-spacing:3.227904px;}
.ws119{word-spacing:3.240468px;}
.ws9e{word-spacing:3.252492px;}
.ws94{word-spacing:3.270528px;}
.ws6c{word-spacing:3.287658px;}
.ws113{word-spacing:3.288564px;}
.ws1b{word-spacing:3.389299px;}
.wse4{word-spacing:3.459305px;}
.wsf6{word-spacing:3.466985px;}
.ws13d{word-spacing:3.496896px;}
.ws22{word-spacing:3.586536px;}
.ws124{word-spacing:3.667320px;}
.ws9d{word-spacing:3.691368px;}
.ws131{word-spacing:3.706087px;}
.wsf5{word-spacing:3.765863px;}
.ws13c{word-spacing:3.819686px;}
.ws4a{word-spacing:3.885414px;}
.wsbe{word-spacing:3.985956px;}
.ws87{word-spacing:3.991968px;}
.ws59{word-spacing:4.004965px;}
.ws8e{word-spacing:4.010004px;}
.ws24{word-spacing:4.064741px;}
.ws25{word-spacing:4.124516px;}
.wsa5{word-spacing:4.184292px;}
.wsde{word-spacing:4.216817px;}
.wsdd{word-spacing:4.235755px;}
.ws75{word-spacing:4.244068px;}
.ws4f{word-spacing:4.363619px;}
.ws120{word-spacing:4.370724px;}
.ws49{word-spacing:4.483170px;}
.ws40{word-spacing:4.542946px;}
.ws3b{word-spacing:4.602721px;}
.ws56{word-spacing:4.722272px;}
.wse{word-spacing:4.770079px;}
.ws5c{word-spacing:4.782048px;}
.wsf{word-spacing:4.853765px;}
.wsf2{word-spacing:4.961375px;}
.ws10f{word-spacing:4.989960px;}
.wsf0{word-spacing:5.021150px;}
.ws10c{word-spacing:5.080140px;}
.ws45{word-spacing:5.080926px;}
.ws46{word-spacing:5.200477px;}
.ws10e{word-spacing:5.428836px;}
.ws154{word-spacing:5.487437px;}
.ws10d{word-spacing:5.488956px;}
.ws53{word-spacing:5.499355px;}
.ws3d{word-spacing:5.618906px;}
.ws26{word-spacing:5.678682px;}
.ws136{word-spacing:5.798233px;}
.wsa9{word-spacing:5.977560px;}
.ws51{word-spacing:6.276438px;}
.ws13e{word-spacing:6.294413px;}
.ws147{word-spacing:6.348211px;}
.ws41{word-spacing:6.395989px;}
.ws130{word-spacing:6.515540px;}
.ws118{word-spacing:6.535044px;}
.ws117{word-spacing:6.865704px;}
.wscf{word-spacing:6.880734px;}
.ws144{word-spacing:6.886195px;}
.ws11d{word-spacing:6.913800px;}
.ws11e{word-spacing:6.973920px;}
.ws11f{word-spacing:7.094160px;}
.ws6a{word-spacing:7.113296px;}
.ws42{word-spacing:7.232848px;}
.ws100{word-spacing:7.244460px;}
.wsff{word-spacing:7.286544px;}
.wsc5{word-spacing:7.292623px;}
.wsce{word-spacing:7.297366px;}
.wsed{word-spacing:7.606683px;}
.wsec{word-spacing:7.657184px;}
.wsc{word-spacing:7.782761px;}
.ws7b{word-spacing:7.935840px;}
.ws12c{word-spacing:7.950155px;}
.ws7c{word-spacing:7.965900px;}
.wsa8{word-spacing:8.249033px;}
.ws7a{word-spacing:8.284536px;}
.ws81{word-spacing:8.392752px;}
.ws82{word-spacing:8.470908px;}
.ws85{word-spacing:8.699364px;}
.ws84{word-spacing:8.753472px;}
.ws7f{word-spacing:9.018000px;}
.ws80{word-spacing:9.078120px;}
.ws8f{word-spacing:9.769500px;}
.wsd7{word-spacing:9.948658px;}
.wsd8{word-spacing:10.346351px;}
.wsfd{word-spacing:10.472904px;}
.wsfa{word-spacing:11.615688px;}
.ws79{word-spacing:11.620476px;}
.wsa{word-spacing:12.176255px;}
.wsc8{word-spacing:12.201500px;}
.wsb7{word-spacing:12.288528px;}
.wsb{word-spacing:16.109478px;}
.ws27{word-spacing:21.160562px;}
.ws153{word-spacing:22.649126px;}
.wsd{word-spacing:26.109907px;}
.ws9{word-spacing:26.840252px;}
.ws5d{word-spacing:168.979997px;}
.ws67{word-spacing:227.078966px;}
.ws60{word-spacing:250.100285px;}
.ws5e{word-spacing:276.168509px;}
.ws68{word-spacing:282.511997px;}
.ws66{word-spacing:297.282816px;}
.ws64{word-spacing:298.035034px;}
.ws62{word-spacing:306.860966px;}
.ws5f{word-spacing:318.350966px;}
.ws69{word-spacing:347.588957px;}
.ws61{word-spacing:349.954080px;}
.ws58{word-spacing:395.633434px;}
.ws57{word-spacing:421.779456px;}
.ws133{word-spacing:593.019763px;}
.wsc9{word-spacing:1082.206894px;}
.wse0{word-spacing:1088.633120px;}
._9{margin-left:-11.943245px;}
._32{margin-left:-7.643710px;}
._d{margin-left:-6.500467px;}
._15{margin-left:-5.499355px;}
._3{margin-left:-3.849538px;}
._3a{margin-left:-2.477472px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._5{width:2.301354px;}
._a{width:3.677963px;}
._6{width:11.398711px;}
._2{width:12.971268px;}
._17{width:14.047103px;}
._11{width:15.709133px;}
._c{width:16.892698px;}
._f{width:18.668045px;}
._12{width:20.144377px;}
._e{width:21.626957px;}
._16{width:22.654952px;}
._19{width:24.029791px;}
._4{width:25.946136px;}
._10{width:27.275789px;}
._1c{width:28.572737px;}
._7{width:30.587087px;}
._34{width:32.286391px;}
._8{width:33.355008px;}
._1b{width:34.681658px;}
._1d{width:35.753376px;}
._18{width:38.136833px;}
._31{width:39.579014px;}
._35{width:42.859105px;}
._3c{width:61.868160px;}
._b{width:69.369634px;}
._3b{width:88.767360px;}
._22{width:233.754048px;}
._23{width:284.378342px;}
._21{width:297.451354px;}
._30{width:363.870048px;}
._26{width:366.205709px;}
._2c{width:387.414197px;}
._29{width:402.531547px;}
._27{width:409.083034px;}
._24{width:435.229056px;}
._20{width:439.140758px;}
._28{width:442.222848px;}
._2d{width:444.912768px;}
._2f{width:453.672768px;}
._2a{width:468.368870px;}
._25{width:471.058790px;}
._1f{width:495.160474px;}
._2b{width:524.223528px;}
._2e{width:526.417344px;}
._1e{width:615.453696px;}
._39{width:669.359693px;}
._13{width:812.870718px;}
._37{width:2078.150498px;}
._33{width:2101.223870px;}
._36{width:2207.073622px;}
._38{width:2509.806283px;}
._14{width:2532.054253px;}
._1a{width:2533.716283px;}
.fc3{color:rgb(8,117,183);}
.fc4{color:transparent;}
.fc2{color:rgb(69,127,95);}
.fc5{color:rgb(68,113,196);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs7{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs6{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fse{font-size:50.274000px;}
.fs9{font-size:53.798400px;}
.fsd{font-size:54.000000px;}
.fs10{font-size:56.700000px;}
.fs4{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fsa{font-size:62.286600px;}
.fsf{font-size:63.126000px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:125.391825px;}
.y1b7{bottom:-739.420920px;}
.y1b6{bottom:-719.293195px;}
.y1b5{bottom:-699.070781px;}
.y1b4{bottom:-678.943056px;}
.y1b3{bottom:-658.720642px;}
.y1b2{bottom:-638.498227px;}
.y1b1{bottom:-599.848200px;}
.y1b0{bottom:-581.609227px;}
.y1af{bottom:-553.350382px;}
.y1ae{bottom:-531.993278px;}
.y20d{bottom:-531.418992px;}
.y20c{bottom:-494.159622px;}
.y20b{bottom:-474.990360px;}
.y20a{bottom:-455.730918px;}
.y209{bottom:-436.561656px;}
.y18c{bottom:-429.164304px;}
.y208{bottom:-417.302214px;}
.y18b{bottom:-409.904862px;}
.y207{bottom:-398.042772px;}
.y18a{bottom:-390.645420px;}
.y206{bottom:-378.873510px;}
.y189{bottom:-371.476158px;}
.y205{bottom:-359.614068px;}
.y188{bottom:-352.216716px;}
.y14c{bottom:-345.507780px;}
.y204{bottom:-340.444806px;}
.y187{bottom:-328.547472px;}
.y14b{bottom:-326.248338px;}
.y203{bottom:-321.185364px;}
.y14a{bottom:-306.988896px;}
.y202{bottom:-301.925922px;}
.y186{bottom:-291.288102px;}
.y149{bottom:-287.819634px;}
.y201{bottom:-282.756660px;}
.y185{bottom:-272.028660px;}
.y148{bottom:-268.560192px;}
.y200{bottom:-263.497218px;}
.y184{bottom:-252.859398px;}
.y147{bottom:-249.390930px;}
.y1ff{bottom:-244.237776px;}
.y1ad{bottom:-241.500051px;}
.y183{bottom:-233.599956px;}
.y146{bottom:-230.131488px;}
.y1fe{bottom:-225.068514px;}
.y1ac{bottom:-221.277637px;}
.y182{bottom:-214.340514px;}
.y145{bottom:-210.872046px;}
.y1fd{bottom:-205.809072px;}
.y1ab{bottom:-201.149912px;}
.y181{bottom:-195.171252px;}
.y144{bottom:-191.702784px;}
.y1fc{bottom:-186.639810px;}
.y1aa{bottom:-180.927498px;}
.y1dc{bottom:-177.886170px;}
.y180{bottom:-175.911810px;}
.y143{bottom:-172.443342px;}
.y1fb{bottom:-162.880386px;}
.y1a9{bottom:-160.799773px;}
.y1db{bottom:-157.758445px;}
.y142{bottom:-153.183900px;}
.y17f{bottom:-152.242566px;}
.y1a8{bottom:-140.577359px;}
.y1da{bottom:-137.536031px;}
.y141{bottom:-134.014638px;}
.y1fa{bottom:-125.621016px;}
.y1a7{bottom:-120.354945px;}
.y1d9{bottom:-117.408306px;}
.y17e{bottom:-114.983196px;}
.y140{bottom:-114.755196px;}
.y1f9{bottom:-106.451754px;}
.y1a6{bottom:-100.225642px;}
.y1d8{bottom:-97.185892px;}
.y17d{bottom:-95.723754px;}
.y13f{bottom:-95.585934px;}
.y1f8{bottom:-87.192312px;}
.y1a5{bottom:-80.003227px;}
.y1d7{bottom:-76.963478px;}
.y17c{bottom:-76.554492px;}
.y13e{bottom:-76.326492px;}
.y1f7{bottom:-68.023050px;}
.y17b{bottom:-57.295050px;}
.y13d{bottom:-57.067050px;}
.y1a4{bottom:-41.353200px;}
.y1d6{bottom:-38.313450px;}
.y1f6{bottom:-31.213050px;}
.y1a3{bottom:-23.114227px;}
.y17a{bottom:-20.485050px;}
.y13c{bottom:-20.347050px;}
.y1d5{bottom:-20.074478px;}
.y1f5{bottom:-8.709819px;}
.y0{bottom:0.000000px;}
.y1c{bottom:1.961066px;}
.y179{bottom:2.014950px;}
.y13b{bottom:2.159178px;}
.y3{bottom:3.425340px;}
.y1a2{bottom:5.140658px;}
.y1d4{bottom:8.184368px;}
.y2{bottom:14.151273px;}
.y1a1{bottom:25.175273px;}
.y1b{bottom:28.258762px;}
.y1d3{bottom:29.541472px;}
.y4b{bottom:31.890000px;}
.y80{bottom:93.295500px;}
.y27e{bottom:95.494500px;}
.y12b{bottom:96.454500px;}
.y16b{bottom:103.053000px;}
.y4a{bottom:103.621500px;}
.y199{bottom:103.950000px;}
.y222{bottom:104.578500px;}
.y19{bottom:104.646000px;}
.y246{bottom:107.193000px;}
.y7f{bottom:112.125000px;}
.y27d{bottom:114.324000px;}
.y12a{bottom:115.284000px;}
.y2ab{bottom:117.997500px;}
.ye1{bottom:121.695000px;}
.y16a{bottom:121.882500px;}
.y49{bottom:122.449500px;}
.y18{bottom:122.535000px;}
.y198{bottom:122.779500px;}
.y1de{bottom:123.012000px;}
.y221{bottom:123.408000px;}
.y245{bottom:126.022500px;}
.y7e{bottom:130.954500px;}
.y27c{bottom:133.153500px;}
.y129{bottom:134.113500px;}
.y2aa{bottom:135.258000px;}
.y17{bottom:140.422500px;}
.ye0{bottom:140.524500px;}
.y169{bottom:140.712000px;}
.y48{bottom:141.279000px;}
.y197{bottom:141.609000px;}
.y220{bottom:142.237500px;}
.y1dd{bottom:142.245000px;}
.y244{bottom:144.852000px;}
.y7d{bottom:149.784000px;}
.y27b{bottom:151.983000px;}
.y2a9{bottom:152.518500px;}
.y128{bottom:157.426500px;}
.y16{bottom:158.310000px;}
.ydf{bottom:159.354000px;}
.y168{bottom:159.541500px;}
.y47{bottom:160.108500px;}
.y196{bottom:160.438500px;}
.y21f{bottom:161.067000px;}
.yae{bottom:161.887500px;}
.y243{bottom:163.681500px;}
.y1c3{bottom:164.674500px;}
.y7c{bottom:168.613500px;}
.y2a8{bottom:169.779000px;}
.y27a{bottom:170.812500px;}
.y15{bottom:176.199000px;}
.yde{bottom:178.183500px;}
.y167{bottom:178.371000px;}
.y46{bottom:178.938000px;}
.y195{bottom:179.268000px;}
.y21e{bottom:179.896500px;}
.yad{bottom:180.717000px;}
.y242{bottom:182.511000px;}
.y2a7{bottom:187.039500px;}
.y7b{bottom:187.443000px;}
.y279{bottom:189.642000px;}
.y127{bottom:191.050500px;}
.y14{bottom:194.086500px;}
.ydd{bottom:197.013000px;}
.y45{bottom:197.767500px;}
.y194{bottom:198.097500px;}
.y21d{bottom:198.726000px;}
.yac{bottom:199.546500px;}
.y241{bottom:201.340500px;}
.y166{bottom:201.684000px;}
.y2a6{bottom:204.300000px;}
.y7a{bottom:206.271000px;}
.y278{bottom:208.471500px;}
.y126{bottom:209.880000px;}
.y13{bottom:211.974000px;}
.ydc{bottom:215.842500px;}
.y44{bottom:216.597000px;}
.y193{bottom:216.927000px;}
.y21c{bottom:217.555500px;}
.yab{bottom:218.376000px;}
.y240{bottom:220.170000px;}
.y2a4{bottom:221.559000px;}
.y2a5{bottom:221.560500px;}
.y79{bottom:225.100500px;}
.y277{bottom:227.301000px;}
.y125{bottom:228.709500px;}
.y12{bottom:229.863000px;}
.ydb{bottom:234.672000px;}
.y165{bottom:235.308000px;}
.y43{bottom:235.426500px;}
.y21b{bottom:236.385000px;}
.yaa{bottom:237.205500px;}
.y2a3{bottom:238.819500px;}
.y23f{bottom:238.999500px;}
.y192{bottom:240.240000px;}
.y78{bottom:243.930000px;}
.y276{bottom:246.130500px;}
.y124{bottom:247.539000px;}
.yda{bottom:253.501500px;}
.y164{bottom:254.137500px;}
.y42{bottom:254.256000px;}
.y21a{bottom:255.214500px;}
.ya9{bottom:256.035000px;}
.y2a2{bottom:256.080000px;}
.y23e{bottom:257.829000px;}
.y275{bottom:264.960000px;}
.y77{bottom:267.243000px;}
.y123{bottom:270.850500px;}
.yd9{bottom:272.331000px;}
.y163{bottom:272.967000px;}
.y41{bottom:273.085500px;}
.y2a1{bottom:273.340500px;}
.y191{bottom:273.864000px;}
.y219{bottom:274.044000px;}
.ya8{bottom:274.864500px;}
.y23d{bottom:276.658500px;}
.y76{bottom:286.072500px;}
.y274{bottom:288.273000px;}
.y2a0{bottom:290.601000px;}
.yd8{bottom:291.160500px;}
.y162{bottom:291.796500px;}
.y40{bottom:291.915000px;}
.y190{bottom:292.693500px;}
.y218{bottom:292.873500px;}
.ya7{bottom:293.694000px;}
.y23c{bottom:295.488000px;}
.y11{bottom:300.154500px;}
.y122{bottom:304.474500px;}
.y75{bottom:304.902000px;}
.y29f{bottom:307.861500px;}
.yd7{bottom:309.990000px;}
.y161{bottom:310.626000px;}
.y3f{bottom:310.744500px;}
.y18f{bottom:311.523000px;}
.y217{bottom:311.703000px;}
.ya6{bottom:312.523500px;}
.y23b{bottom:314.317500px;}
.y1f4{bottom:314.570451px;}
.y10{bottom:318.043500px;}
.y1d2{bottom:320.034699px;}
.y273{bottom:321.897000px;}
.y121{bottom:323.304000px;}
.y74{bottom:323.731500px;}
.y29e{bottom:325.122000px;}
.yd6{bottom:328.819500px;}
.y160{bottom:329.455500px;}
.y3e{bottom:329.574000px;}
.y18e{bottom:330.352500px;}
.y216{bottom:330.532500px;}
.ya5{bottom:331.353000px;}
.y23a{bottom:333.145500px;}
.y1f3{bottom:333.829893px;}
.yf{bottom:335.931000px;}
.y1d1{bottom:340.257113px;}
.y272{bottom:340.726500px;}
.y120{bottom:342.133500px;}
.y29d{bottom:342.382500px;}
.y73{bottom:342.561000px;}
.yd5{bottom:347.649000px;}
.y15f{bottom:348.285000px;}
.y3d{bottom:348.403500px;}
.y215{bottom:349.362000px;}
.ya4{bottom:350.182500px;}
.y239{bottom:351.975000px;}
.y1f2{bottom:353.089335px;}
.ye{bottom:353.818500px;}
.y271{bottom:359.556000px;}
.y29c{bottom:359.643000px;}
.y1d0{bottom:360.384838px;}
.y11f{bottom:360.963000px;}
.y18d{bottom:363.918000px;}
.y72{bottom:365.874000px;}
.yd4{bottom:366.478500px;}
.y15e{bottom:367.114500px;}
.y3c{bottom:367.233000px;}
.y178{bottom:367.955085px;}
.y214{bottom:368.191500px;}
.ya3{bottom:369.012000px;}
.y238{bottom:370.804500px;}
.y1f1{bottom:372.258597px;}
.y29b{bottom:376.902000px;}
.y177{bottom:377.584950px;}
.y270{bottom:378.385500px;}
.y11e{bottom:379.792500px;}
.y1cf{bottom:380.607252px;}
.yd{bottom:380.673000px;}
.y71{bottom:384.703500px;}
.yd3{bottom:385.308000px;}
.y15d{bottom:385.944000px;}
.y3b{bottom:386.062500px;}
.y176{bottom:386.347500px;}
.y1a0{bottom:387.015914px;}
.ya2{bottom:387.841500px;}
.y237{bottom:389.634000px;}
.y213{bottom:391.503000px;}
.y1f0{bottom:391.518039px;}
.y29a{bottom:394.162500px;}
.y19f{bottom:397.127273px;}
.y26f{bottom:397.215000px;}
.yc{bottom:398.562000px;}
.y1ce{bottom:400.734977px;}
.y70{bottom:403.533000px;}
.yd2{bottom:404.137500px;}
.y15c{bottom:404.773500px;}
.y3a{bottom:404.892000px;}
.ya1{bottom:406.671000px;}
.y236{bottom:408.463500px;}
.y1ef{bottom:410.687301px;}
.y299{bottom:411.423000px;}
.y13a{bottom:415.888485px;}
.y26e{bottom:416.044500px;}
.yb{bottom:416.449500px;}
.y1cd{bottom:420.957391px;}
.y6f{bottom:422.362500px;}
.y15b{bottom:423.603000px;}
.y39{bottom:423.721500px;}
.y212{bottom:425.127000px;}
.ya0{bottom:425.500500px;}
.y235{bottom:427.293000px;}
.yd1{bottom:427.449000px;}
.y11d{bottom:428.244000px;}
.y298{bottom:428.683500px;}
.y1ee{bottom:429.946743px;}
.y26d{bottom:434.874000px;}
.y139{bottom:435.147927px;}
.y1cc{bottom:441.179805px;}
.y6e{bottom:441.192000px;}
.y15a{bottom:442.432500px;}
.y38{bottom:442.551000px;}
.y211{bottom:443.956500px;}
.y9f{bottom:444.330000px;}
.y11c{bottom:444.682500px;}
.ya{bottom:444.798000px;}
.y297{bottom:445.944000px;}
.y234{bottom:446.122500px;}
.yd0{bottom:447.624000px;}
.y1ed{bottom:449.206185px;}
.y26c{bottom:453.703500px;}
.y138{bottom:454.407369px;}
.y6d{bottom:460.021500px;}
.y11b{bottom:461.119500px;}
.y159{bottom:461.260500px;}
.y1cb{bottom:461.309108px;}
.y37{bottom:461.380500px;}
.y210{bottom:462.786000px;}
.y9e{bottom:463.159500px;}
.y296{bottom:463.204500px;}
.y233{bottom:464.952000px;}
.y1ec{bottom:468.376950px;}
.y1c2{bottom:468.895500px;}
.y9{bottom:471.652500px;}
.y26b{bottom:472.531500px;}
.y11a{bottom:477.558000px;}
.y137{bottom:478.076613px;}
.y6c{bottom:478.851000px;}
.y158{bottom:480.090000px;}
.y36{bottom:480.210000px;}
.y295{bottom:480.465000px;}
.ycf{bottom:481.248000px;}
.y1ca{bottom:481.531523px;}
.y20f{bottom:481.615500px;}
.y9d{bottom:481.989000px;}
.y232{bottom:483.781500px;}
.y1c1{bottom:487.725000px;}
.y8{bottom:489.540000px;}
.y26a{bottom:491.361000px;}
.y110{bottom:492.769500px;}
.y119{bottom:493.996500px;}
.y6b{bottom:497.680500px;}
.y294{bottom:497.725500px;}
.y157{bottom:498.919500px;}
.y35{bottom:499.039500px;}
.yce{bottom:500.077500px;}
.y113{bottom:500.782500px;}
.y9c{bottom:500.818500px;}
.y231{bottom:502.611000px;}
.y1c0{bottom:506.554500px;}
.y7{bottom:507.429000px;}
.y10f{bottom:509.206500px;}
.y269{bottom:510.190500px;}
.y118{bottom:510.435000px;}
.y293{bottom:514.986000px;}
.y20e{bottom:515.181000px;}
.y136{bottom:515.335983px;}
.y6a{bottom:516.508500px;}
.y112{bottom:517.221000px;}
.y10c{bottom:517.501500px;}
.y156{bottom:517.749000px;}
.y34{bottom:517.869000px;}
.ycd{bottom:518.907000px;}
.y9b{bottom:519.648000px;}
.y1c9{bottom:520.181550px;}
.y230{bottom:521.440500px;}
.y1eb{bottom:523.097085px;}
.y6{bottom:525.316500px;}
.y1bf{bottom:525.384000px;}
.y10e{bottom:525.645000px;}
.y117{bottom:526.873500px;}
.y268{bottom:529.020000px;}
.y292{bottom:532.245000px;}
.y1ea{bottom:532.726950px;}
.y111{bottom:533.659500px;}
.y135{bottom:534.595425px;}
.y69{bottom:535.338000px;}
.y155{bottom:536.578500px;}
.y1e9{bottom:537.610500px;}
.y1c8{bottom:538.420523px;}
.y9a{bottom:538.477500px;}
.y22f{bottom:540.270000px;}
.y33{bottom:541.180500px;}
.y10d{bottom:542.083500px;}
.y5{bottom:543.204000px;}
.y116{bottom:543.312000px;}
.y1be{bottom:544.212000px;}
.y267{bottom:547.849500px;}
.y291{bottom:549.505500px;}
.y134{bottom:553.764687px;}
.y68{bottom:554.167500px;}
.y154{bottom:555.408000px;}
.y99{bottom:557.307000px;}
.y22e{bottom:559.099500px;}
.y115{bottom:559.750500px;}
.y4{bottom:561.093000px;}
.y1bd{bottom:563.041500px;}
.ycc{bottom:564.369000px;}
.y1c7{bottom:566.675408px;}
.y266{bottom:566.679000px;}
.y290{bottom:566.766000px;}
.y67{bottom:572.997000px;}
.y133{bottom:573.024129px;}
.y153{bottom:574.237500px;}
.y114{bottom:576.189000px;}
.y22d{bottom:577.929000px;}
.y1{bottom:578.980464px;}
.y98{bottom:580.618500px;}
.ycb{bottom:580.807500px;}
.y1bc{bottom:581.871000px;}
.y265{bottom:585.508500px;}
.y1c6{bottom:586.710023px;}
.y28f{bottom:588.510000px;}
.y66{bottom:591.826500px;}
.y132{bottom:592.193391px;}
.y152{bottom:593.067000px;}
.y22c{bottom:596.758500px;}
.yca{bottom:597.246000px;}
.y10a{bottom:598.602000px;}
.y10b{bottom:599.829000px;}
.y1bb{bottom:600.700500px;}
.y264{bottom:604.338000px;}
.y109{bottom:606.771000px;}
.y65{bottom:610.656000px;}
.y151{bottom:611.896500px;}
.yc9{bottom:613.684500px;}
.y97{bottom:614.242500px;}
.y22b{bottom:615.588000px;}
.y131{bottom:615.952815px;}
.y32{bottom:616.330500px;}
.y1ba{bottom:619.530000px;}
.y28e{bottom:622.134000px;}
.y263{bottom:623.167500px;}
.y64{bottom:629.485500px;}
.yc8{bottom:630.121500px;}
.y150{bottom:630.726000px;}
.y96{bottom:633.072000px;}
.y22a{bottom:634.417500px;}
.y108{bottom:639.909000px;}
.y262{bottom:641.997000px;}
.y63{bottom:648.315000px;}
.y28d{bottom:648.673500px;}
.y14f{bottom:649.555500px;}
.y95{bottom:651.901500px;}
.y1b9{bottom:653.095500px;}
.y130{bottom:653.212185px;}
.y229{bottom:653.247000px;}
.y31{bottom:653.721000px;}
.yc7{bottom:653.763000px;}
.y107{bottom:656.347500px;}
.y261{bottom:660.826500px;}
.y28c{bottom:666.249000px;}
.y62{bottom:667.144500px;}
.y14e{bottom:668.385000px;}
.y94{bottom:670.731000px;}
.y228{bottom:672.076500px;}
.y1b8{bottom:672.328500px;}
.y12f{bottom:672.382950px;}
.y106{bottom:672.784500px;}
.y30{bottom:673.177500px;}
.y260{bottom:679.656000px;}
.yc6{bottom:685.383000px;}
.y105{bottom:689.223000px;}
.y93{bottom:689.560500px;}
.y61{bottom:690.457500px;}
.y227{bottom:690.906000px;}
.y2f{bottom:692.635500px;}
.y28b{bottom:692.788500px;}
.y19e{bottom:694.758000px;}
.yfe{bottom:697.761000px;}
.y25f{bottom:698.485500px;}
.y14d{bottom:701.950500px;}
.y104{bottom:705.661500px;}
.y92{bottom:708.390000px;}
.y60{bottom:709.287000px;}
.y226{bottom:709.735500px;}
.y28a{bottom:710.362500px;}
.y2e{bottom:712.092000px;}
.yfd{bottom:714.199500px;}
.y25e{bottom:717.315000px;}
.y103{bottom:722.100000px;}
.yf9{bottom:722.419500px;}
.yc5{bottom:722.487000px;}
.y12c{bottom:724.380000px;}
.y12e{bottom:727.103085px;}
.y91{bottom:727.219500px;}
.y5f{bottom:728.116500px;}
.y175{bottom:728.565000px;}
.yf7{bottom:729.166500px;}
.yfc{bottom:730.638000px;}
.y2d{bottom:731.550000px;}
.y25d{bottom:736.144500px;}
.y12d{bottom:736.732950px;}
.y289{bottom:736.903500px;}
.y102{bottom:738.538500px;}
.yf8{bottom:738.856500px;}
.yc4{bottom:741.316500px;}
.y90{bottom:746.049000px;}
.y5e{bottom:746.946000px;}
.yfb{bottom:747.076500px;}
.y174{bottom:747.394500px;}
.y2c{bottom:751.006500px;}
.y101{bottom:754.977000px;}
.yc3{bottom:760.146000px;}
.y288{bottom:763.444500px;}
.yfa{bottom:763.515000px;}
.y8f{bottom:764.878500px;}
.y5d{bottom:765.775500px;}
.y173{bottom:766.224000px;}
.y2b{bottom:770.463000px;}
.y100{bottom:771.415500px;}
.yc2{bottom:778.975500px;}
.y287{bottom:781.018500px;}
.y25c{bottom:781.606500px;}
.y8e{bottom:783.708000px;}
.y5c{bottom:784.605000px;}
.y172{bottom:785.053500px;}
.yff{bottom:787.854000px;}
.y2a{bottom:789.921000px;}
.y2bc{bottom:794.916000px;}
.yc1{bottom:797.805000px;}
.y25b{bottom:798.045000px;}
.y286{bottom:798.592500px;}
.y8d{bottom:802.537500px;}
.y5b{bottom:803.434500px;}
.y171{bottom:803.883000px;}
.y29{bottom:809.377500px;}
.yf6{bottom:811.494000px;}
.y2bb{bottom:812.176500px;}
.y257{bottom:814.483500px;}
.y285{bottom:816.166500px;}
.yc0{bottom:816.634500px;}
.y8c{bottom:821.367000px;}
.y5a{bottom:822.264000px;}
.y170{bottom:822.712500px;}
.yf5{bottom:827.932500px;}
.y28{bottom:828.834000px;}
.y2ba{bottom:829.437000px;}
.y256{bottom:830.922000px;}
.y284{bottom:833.740500px;}
.y253{bottom:839.140500px;}
.ybf{bottom:839.946000px;}
.y8b{bottom:840.196500px;}
.y16f{bottom:841.540500px;}
.y1e8{bottom:841.989000px;}
.yf4{bottom:844.371000px;}
.y59{bottom:845.575500px;}
.y2b9{bottom:846.697500px;}
.y255{bottom:847.360500px;}
.y27{bottom:848.292000px;}
.y283{bottom:851.314500px;}
.yf0{bottom:853.114500px;}
.y8a{bottom:859.026000px;}
.yef{bottom:859.531500px;}
.y16e{bottom:860.370000px;}
.yf3{bottom:860.809500px;}
.y1e7{bottom:860.818500px;}
.y254{bottom:863.797500px;}
.y25a{bottom:863.799000px;}
.y2b8{bottom:863.956500px;}
.y26{bottom:867.748500px;}
.yf2{bottom:877.248000px;}
.y89{bottom:877.855500px;}
.y58{bottom:879.199500px;}
.y1e6{bottom:879.648000px;}
.y259{bottom:880.236000px;}
.y2b7{bottom:881.217000px;}
.ybe{bottom:882.270000px;}
.yf1{bottom:893.686500px;}
.y258{bottom:896.674500px;}
.y88{bottom:896.685000px;}
.y57{bottom:898.029000px;}
.y1e5{bottom:898.477500px;}
.ybd{bottom:898.708500px;}
.y25{bottom:903.060000px;}
.y282{bottom:904.395000px;}
.y87{bottom:915.514500px;}
.y2b6{bottom:915.738000px;}
.y56{bottom:916.858500px;}
.y1e4{bottom:917.307000px;}
.yee{bottom:917.326500px;}
.y24{bottom:919.198500px;}
.y24c{bottom:920.316000px;}
.y281{bottom:921.970500px;}
.ybc{bottom:922.350000px;}
.y252{bottom:928.534500px;}
.y2b5{bottom:932.998500px;}
.yed{bottom:933.765000px;}
.y86{bottom:934.344000px;}
.y55{bottom:935.688000px;}
.y1e3{bottom:936.136500px;}
.y24b{bottom:936.754500px;}
.ybb{bottom:938.787000px;}
.y280{bottom:939.544500px;}
.y23{bottom:939.678000px;}
.y251{bottom:944.973000px;}
.y1c5{bottom:948.550664px;}
.yec{bottom:950.203500px;}
.y2b4{bottom:950.259000px;}
.y22{bottom:951.478500px;}
.y85{bottom:953.173500px;}
.y24a{bottom:953.193000px;}
.y54{bottom:954.517500px;}
.y1e2{bottom:954.966000px;}
.y21{bottom:955.818000px;}
.y27f{bottom:957.118500px;}
.y1c4{bottom:958.662023px;}
.y250{bottom:961.411500px;}
.yba{bottom:962.428500px;}
.yeb{bottom:966.642000px;}
.y2b3{bottom:967.519500px;}
.y249{bottom:969.630000px;}
.yb7{bottom:970.647000px;}
.y84{bottom:972.003000px;}
.y53{bottom:973.347000px;}
.y1e1{bottom:973.795500px;}
.ye6{bottom:975.180000px;}
.y24f{bottom:977.850000px;}
.yb9{bottom:978.867000px;}
.ye5{bottom:981.802500px;}
.yea{bottom:983.080500px;}
.y2b2{bottom:984.780000px;}
.y247{bottom:986.068500px;}
.yb6{bottom:987.085500px;}
.y83{bottom:990.832500px;}
.y52{bottom:992.176500px;}
.y1e0{bottom:992.625000px;}
.y24e{bottom:994.288500px;}
.yb8{bottom:995.305500px;}
.y16d{bottom:996.660000px;}
.y20{bottom:997.219500px;}
.ye9{bottom:999.519000px;}
.y2b1{bottom:1002.040500px;}
.y248{bottom:1002.507000px;}
.y24d{bottom:1010.727000px;}
.y225{bottom:1011.006000px;}
.y1df{bottom:1011.454500px;}
.y82{bottom:1014.144000px;}
.y51{bottom:1015.489500px;}
.ye8{bottom:1015.957500px;}
.yb5{bottom:1018.945500px;}
.y2b0{bottom:1019.299500px;}
.y19d{bottom:1025.800500px;}
.yb2{bottom:1027.165500px;}
.y224{bottom:1029.835500px;}
.y16c{bottom:1030.284000px;}
.ye7{bottom:1032.396000px;}
.y81{bottom:1034.319000px;}
.yb4{bottom:1035.384000px;}
.y2af{bottom:1036.560000px;}
.y1f{bottom:1037.139000px;}
.yb1{bottom:1043.604000px;}
.y19c{bottom:1044.630000px;}
.y50{bottom:1049.113500px;}
.yb3{bottom:1051.822500px;}
.y223{bottom:1053.148500px;}
.y2ae{bottom:1053.820500px;}
.ye3{bottom:1056.036000px;}
.y19b{bottom:1063.459500px;}
.ye2{bottom:1064.256000px;}
.y1e{bottom:1065.384000px;}
.y4f{bottom:1067.943000px;}
.y2ad{bottom:1071.081000px;}
.ye4{bottom:1072.474500px;}
.yb0{bottom:1075.462500px;}
.y19a{bottom:1082.289000px;}
.y4e{bottom:1086.772500px;}
.y2ac{bottom:1088.341500px;}
.y1d{bottom:1093.627500px;}
.y4d{bottom:1105.602000px;}
.yaf{bottom:1107.082500px;}
.y1a{bottom:1137.114000px;}
.y4c{bottom:1168.366500px;}
.h2{height:25.508090px;}
.hc{height:26.110157px;}
.h13{height:27.655250px;}
.h5{height:30.461558px;}
.h6{height:30.712615px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.hd{height:34.813397px;}
.h20{height:34.951465px;}
.h12{height:35.100320px;}
.h1f{height:35.115117px;}
.h27{height:36.699038px;}
.h26{height:36.870873px;}
.he{height:38.734848px;}
.hf{height:39.165235px;}
.h2f{height:39.488026px;}
.h23{height:39.603516px;}
.h2a{height:41.389893px;}
.h29{height:41.583691px;}
.h10{height:43.038432px;}
.h22{height:43.269961px;}
.h11{height:43.516637px;}
.h9{height:43.875290px;}
.h21{height:43.886426px;}
.h2e{height:44.091914px;}
.h2b{height:46.080747px;}
.h28{height:46.296510px;}
.h7{height:50.931027px;}
.hb{height:54.411312px;}
.h1b{height:66.153235px;}
.h1a{height:71.517235px;}
.h15{height:71.608848px;}
.h16{height:71.614848px;}
.h14{height:72.045235px;}
.h1c{height:72.237235px;}
.h18{height:72.339235px;}
.ha{height:77.469696px;}
.h17{height:78.429235px;}
.h19{height:79.251235px;}
.h8{height:85.015657px;}
.h1d{height:109.827235px;}
.h2c{height:288.051750px;}
.h2d{height:288.210000px;}
.h25{height:315.201600px;}
.h24{height:326.049000px;}
.h1e{height:396.166500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:230.008102px;}
.w8{width:315.327000px;}
.w5{width:512.722500px;}
.w6{width:531.737325px;}
.w7{width:553.588875px;}
.w4{width:586.968000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x6e{left:-228.041100px;}
.x74{left:-218.107575px;}
.x79{left:-215.920500px;}
.x6b{left:-214.659000px;}
.x67{left:-194.332500px;}
.x71{left:-22.692600px;}
.x7a{left:-20.350500px;}
.x6c{left:-19.089000px;}
.x76{left:-12.759075px;}
.x0{left:0.000000px;}
.x68{left:1.237500px;}
.x72{left:10.760400px;}
.x6d{left:12.771000px;}
.x77{left:20.693925px;}
.x2{left:29.274117px;}
.x69{left:33.098094px;}
.x1{left:53.574073px;}
.x3{left:63.251425px;}
.x4d{left:76.855500px;}
.xa4{left:83.977500px;}
.xa1{left:85.848000px;}
.x50{left:103.378500px;}
.x70{left:114.521294px;}
.x75{left:124.454819px;}
.x5a{left:176.323500px;}
.x61{left:191.130000px;}
.x51{left:194.829000px;}
.x59{left:206.812500px;}
.x60{left:208.648500px;}
.x62{left:210.450000px;}
.x4e{left:214.707000px;}
.x1f{left:247.348500px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x42{left:262.030500px;}
.x49{left:263.947500px;}
.x6f{left:265.437900px;}
.x38{left:266.938500px;}
.x5{left:269.763000px;}
.x48{left:275.742000px;}
.x78{left:277.447925px;}
.x1b{left:279.727500px;}
.x8{left:281.479500px;}
.x85{left:288.592500px;}
.x2c{left:291.595500px;}
.x39{left:294.315000px;}
.xa5{left:296.232000px;}
.x46{left:297.550500px;}
.x4a{left:303.541500px;}
.x4c{left:305.032500px;}
.x2d{left:306.540000px;}
.x7{left:307.828500px;}
.x4f{left:314.266500px;}
.x13{left:324.081000px;}
.x2e{left:327.817500px;}
.x41{left:329.883000px;}
.x14{left:331.554000px;}
.x1c{left:334.512000px;}
.x9{left:337.606500px;}
.x2f{left:339.100500px;}
.xa{left:345.079500px;}
.xb{left:348.889500px;}
.x30{left:354.045000px;}
.xc{left:356.361000px;}
.xa0{left:375.744000px;}
.x7d{left:377.899500px;}
.x81{left:385.968000px;}
.x33{left:387.172500px;}
.x87{left:390.234000px;}
.x7e{left:392.844000px;}
.x82{left:400.911000px;}
.x34{left:402.117000px;}
.x86{left:408.466500px;}
.x89{left:412.017000px;}
.x92{left:420.678000px;}
.x3f{left:425.581500px;}
.x9f{left:431.814000px;}
.x88{left:435.075000px;}
.x40{left:440.526000px;}
.x5d{left:444.739500px;}
.x3d{left:453.649500px;}
.x8a{left:459.157500px;}
.x1d{left:462.741000px;}
.x3e{left:468.594000px;}
.x1e{left:470.212500px;}
.x5b{left:473.965500px;}
.x63{left:475.411500px;}
.x5c{left:477.093000px;}
.x43{left:480.985500px;}
.x66{left:482.560500px;}
.x9e{left:488.877000px;}
.x31{left:491.842500px;}
.x32{left:506.787000px;}
.x44{left:507.858000px;}
.x20{left:514.197000px;}
.x21{left:521.668500px;}
.x22{left:525.480000px;}
.x23{left:532.951500px;}
.x24{left:536.761500px;}
.x64{left:542.497500px;}
.x73{left:544.897500px;}
.x65{left:549.969000px;}
.x25{left:551.706000px;}
.x7f{left:556.018500px;}
.x80{left:570.961500px;}
.x6a{left:583.988175px;}
.x28{left:587.473500px;}
.x29{left:594.946500px;}
.x2a{left:598.606500px;}
.x5f{left:604.716000px;}
.x2b{left:606.079500px;}
.x54{left:613.135500px;}
.x56{left:616.282500px;}
.x5e{left:618.736500px;}
.x57{left:625.246500px;}
.x26{left:626.502000px;}
.x35{left:632.151000px;}
.x37{left:634.362000px;}
.x58{left:636.516000px;}
.x36{left:639.624000px;}
.x27{left:641.445000px;}
.x52{left:642.931500px;}
.x9b{left:645.952500px;}
.x98{left:647.395500px;}
.x96{left:648.991500px;}
.x4b{left:651.438000px;}
.x97{left:652.801500px;}
.x8e{left:654.286500px;}
.x83{left:655.432500px;}
.x9c{left:657.198000px;}
.x99{left:658.500000px;}
.x53{left:660.336000px;}
.x84{left:662.904000px;}
.x8c{left:666.943500px;}
.x93{left:668.463000px;}
.x55{left:670.234500px;}
.x9d{left:672.141000px;}
.x9a{left:673.429500px;}
.x90{left:674.986500px;}
.x8b{left:679.149000px;}
.x91{left:683.163000px;}
.x3a{left:688.524000px;}
.x45{left:690.963000px;}
.x47{left:696.108000px;}
.x8d{left:697.486500px;}
.x8f{left:701.622000px;}
.x3b{left:703.468500px;}
.x94{left:710.868000px;}
.x95{left:741.606000px;}
.xf{left:746.292000px;}
.x10{left:753.763500px;}
.x11{left:757.425000px;}
.x3c{left:760.294500px;}
.x12{left:764.896500px;}
.xd{left:779.727000px;}
.xe{left:787.198500px;}
.xa3{left:790.090500px;}
.x15{left:791.322000px;}
.x16{left:798.793500px;}
.x17{left:802.605000px;}
.x18{left:810.076500px;}
.x19{left:817.698000px;}
.x7b{left:819.093000px;}
.x1a{left:832.642500px;}
.x7c{left:834.036000px;}
.xa2{left:837.214500px;}
@media print{
.v7{vertical-align:-17.136605pt;}
.v2{vertical-align:-15.429333pt;}
.v6{vertical-align:-12.434419pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.v5{vertical-align:23.989333pt;}
.v3{vertical-align:29.226667pt;}
.v4{vertical-align:34.901333pt;}
.ls41{letter-spacing:-0.286171pt;}
.ls19{letter-spacing:-0.245824pt;}
.ls3f{letter-spacing:-0.235670pt;}
.ls3c{letter-spacing:-0.196392pt;}
.ls53{letter-spacing:-0.149632pt;}
.ls55{letter-spacing:-0.138944pt;}
.ls1d{letter-spacing:-0.101536pt;}
.ls46{letter-spacing:-0.095390pt;}
.ls1c{letter-spacing:-0.090848pt;}
.ls1e{letter-spacing:-0.074816pt;}
.ls48{letter-spacing:-0.072946pt;}
.ls44{letter-spacing:-0.067334pt;}
.ls54{letter-spacing:-0.064128pt;}
.ls47{letter-spacing:-0.056112pt;}
.ls24{letter-spacing:-0.053440pt;}
.ls25{letter-spacing:-0.037408pt;}
.ls17{letter-spacing:-0.034048pt;}
.ls43{letter-spacing:-0.033667pt;}
.ls27{letter-spacing:-0.032064pt;}
.ls56{letter-spacing:-0.026720pt;}
.ls45{letter-spacing:-0.022445pt;}
.ls1b{letter-spacing:-0.021376pt;}
.ls40{letter-spacing:-0.016834pt;}
.ls1f{letter-spacing:-0.016032pt;}
.ls18{letter-spacing:-0.012768pt;}
.ls3e{letter-spacing:-0.011222pt;}
.ls1a{letter-spacing:-0.010688pt;}
.ls3d{letter-spacing:-0.010080pt;}
.ls26{letter-spacing:-0.005344pt;}
.ls3b{letter-spacing:-0.004469pt;}
.ls52{letter-spacing:-0.004256pt;}
.ls6{letter-spacing:0.000000pt;}
.ls58{letter-spacing:0.000216pt;}
.ls5b{letter-spacing:0.001843pt;}
.ls5a{letter-spacing:0.002153pt;}
.ls21{letter-spacing:0.005344pt;}
.ls33{letter-spacing:0.005611pt;}
.ls2d{letter-spacing:0.010080pt;}
.lsc{letter-spacing:0.010688pt;}
.ls3a{letter-spacing:0.011222pt;}
.ls2c{letter-spacing:0.015120pt;}
.lsf{letter-spacing:0.016032pt;}
.ls4f{letter-spacing:0.019200pt;}
.ls22{letter-spacing:0.021376pt;}
.ls30{letter-spacing:0.022445pt;}
.ls4e{letter-spacing:0.024000pt;}
.lse{letter-spacing:0.026720pt;}
.ls34{letter-spacing:0.028056pt;}
.ls4d{letter-spacing:0.028800pt;}
.lsd{letter-spacing:0.032064pt;}
.ls32{letter-spacing:0.033667pt;}
.ls2f{letter-spacing:0.035280pt;}
.lsb{letter-spacing:0.037408pt;}
.ls37{letter-spacing:0.039278pt;}
.ls14{letter-spacing:0.042752pt;}
.ls38{letter-spacing:0.044890pt;}
.ls13{letter-spacing:0.048096pt;}
.ls36{letter-spacing:0.050501pt;}
.ls11{letter-spacing:0.053440pt;}
.ls16{letter-spacing:0.058784pt;}
.ls35{letter-spacing:0.061723pt;}
.ls12{letter-spacing:0.062400pt;}
.lsa{letter-spacing:0.064128pt;}
.ls15{letter-spacing:0.069472pt;}
.ls31{letter-spacing:0.072946pt;}
.ls20{letter-spacing:0.074816pt;}
.ls4c{letter-spacing:0.080160pt;}
.ls4a{letter-spacing:0.085504pt;}
.ls51{letter-spacing:0.101536pt;}
.ls10{letter-spacing:0.117568pt;}
.ls23{letter-spacing:0.122912pt;}
.ls42{letter-spacing:0.123446pt;}
.ls2e{letter-spacing:0.131040pt;}
.ls50{letter-spacing:0.133600pt;}
.ls2b{letter-spacing:0.140280pt;}
.ls9{letter-spacing:0.148960pt;}
.ls8{letter-spacing:0.161728pt;}
.ls29{letter-spacing:0.165346pt;}
.ls49{letter-spacing:0.170240pt;}
.ls28{letter-spacing:0.178752pt;}
.ls5{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls4b{letter-spacing:6.487616pt;}
.ls1{letter-spacing:9.298933pt;}
.ls4{letter-spacing:10.626533pt;}
.ls59{letter-spacing:11.946428pt;}
.ls57{letter-spacing:11.954133pt;}
.ls5c{letter-spacing:11.959467pt;}
.ls5d{letter-spacing:19.035650pt;}
.ls7{letter-spacing:19.606397pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ls39{letter-spacing:1011.177518pt;}
.ls2a{letter-spacing:1031.680843pt;}
.ws10{word-spacing:-27.864850pt;}
.wsc2{word-spacing:-14.028000pt;}
.wsc3{word-spacing:-13.741829pt;}
.ws11{word-spacing:-13.283467pt;}
.ws63{word-spacing:-11.955200pt;}
.wsc0{word-spacing:-11.350752pt;}
.wsc1{word-spacing:-11.172000pt;}
.wsf1{word-spacing:-10.810240pt;}
.ws6d{word-spacing:-10.801728pt;}
.ws6e{word-spacing:-10.640000pt;}
.ws33{word-spacing:-10.626800pt;}
.ws14{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws104{word-spacing:-3.190368pt;}
.wsbf{word-spacing:-2.975497pt;}
.ws31{word-spacing:-2.709827pt;}
.wsdc{word-spacing:-2.648486pt;}
.ws8a{word-spacing:-2.533056pt;}
.ws125{word-spacing:-2.527712pt;}
.wsfb{word-spacing:-2.484960pt;}
.ws89{word-spacing:-2.404800pt;}
.ws88{word-spacing:-2.378080pt;}
.ws6f{word-spacing:-2.284756pt;}
.ws142{word-spacing:-2.247578pt;}
.wsdb{word-spacing:-2.238869pt;}
.wsa3{word-spacing:-2.231622pt;}
.wsda{word-spacing:-2.193979pt;}
.wsfc{word-spacing:-2.191040pt;}
.ws12b{word-spacing:-2.178489pt;}
.ws111{word-spacing:-2.164320pt;}
.ws112{word-spacing:-2.148288pt;}
.ws5b{word-spacing:-2.125355pt;}
.ws28{word-spacing:-2.072221pt;}
.ws17{word-spacing:-2.008474pt;}
.ws138{word-spacing:-1.912832pt;}
.ws9a{word-spacing:-1.907808pt;}
.ws139{word-spacing:-1.721549pt;}
.ws1{word-spacing:-1.696326pt;}
.ws72{word-spacing:-1.647150pt;}
.wse2{word-spacing:-1.638470pt;}
.ws29{word-spacing:-1.594016pt;}
.ws90{word-spacing:-1.571136pt;}
.ws95{word-spacing:-1.565792pt;}
.ws96{word-spacing:-1.501664pt;}
.ws4e{word-spacing:-1.487748pt;}
.wsaa{word-spacing:-1.328347pt;}
.ws39{word-spacing:-1.275213pt;}
.ws115{word-spacing:-1.271872pt;}
.ws92{word-spacing:-1.250496pt;}
.wsba{word-spacing:-1.239808pt;}
.ws13b{word-spacing:-1.195520pt;}
.wsad{word-spacing:-1.191712pt;}
.ws0{word-spacing:-1.175671pt;}
.wsee{word-spacing:-1.168945pt;}
.ws141{word-spacing:-1.147699pt;}
.ws74{word-spacing:-1.115811pt;}
.ws6{word-spacing:-1.041421pt;}
.ws12e{word-spacing:-0.956410pt;}
.ws108{word-spacing:-0.951232pt;}
.ws8{word-spacing:-0.929840pt;}
.wsbb{word-spacing:-0.887104pt;}
.wsfe{word-spacing:-0.881760pt;}
.ws93{word-spacing:-0.860384pt;}
.wsae{word-spacing:-0.828320pt;}
.ws148{word-spacing:-0.812954pt;}
.ws50{word-spacing:-0.743874pt;}
.ws71{word-spacing:-0.637606pt;}
.ws11c{word-spacing:-0.619904pt;}
.wsb4{word-spacing:-0.609216pt;}
.wsa7{word-spacing:-0.584473pt;}
.wsc4{word-spacing:-0.531339pt;}
.ws151{word-spacing:-0.526029pt;}
.wsb3{word-spacing:-0.523712pt;}
.ws54{word-spacing:-0.478208pt;}
.ws137{word-spacing:-0.478205pt;}
.wsa4{word-spacing:-0.425071pt;}
.ws101{word-spacing:-0.406144pt;}
.wsa2{word-spacing:-0.371937pt;}
.ws86{word-spacing:-0.358048pt;}
.ws116{word-spacing:-0.336672pt;}
.ws4c{word-spacing:-0.318803pt;}
.wsdf{word-spacing:-0.291782pt;}
.ws99{word-spacing:-0.283232pt;}
.ws7e{word-spacing:-0.277888pt;}
.ws37{word-spacing:-0.265669pt;}
.wsc7{word-spacing:-0.259190pt;}
.wsf9{word-spacing:-0.246848pt;}
.ws77{word-spacing:-0.242592pt;}
.ws150{word-spacing:-0.239104pt;}
.wsb8{word-spacing:-0.235136pt;}
.ws128{word-spacing:-0.213760pt;}
.ws2c{word-spacing:-0.212535pt;}
.wsb9{word-spacing:-0.208416pt;}
.ws1d{word-spacing:-0.191283pt;}
.ws110{word-spacing:-0.171008pt;}
.ws2a{word-spacing:-0.159402pt;}
.ws2f{word-spacing:-0.106268pt;}
.ws13f{word-spacing:-0.095642pt;}
.ws146{word-spacing:-0.092177pt;}
.wsc6{word-spacing:-0.075970pt;}
.wsf8{word-spacing:-0.072352pt;}
.ws78{word-spacing:-0.068096pt;}
.ws12{word-spacing:-0.053134pt;}
.ws1e{word-spacing:-0.047821pt;}
.ws76{word-spacing:-0.046816pt;}
.wsd5{word-spacing:-0.033667pt;}
.ws155{word-spacing:-0.025737pt;}
.ws152{word-spacing:-0.024670pt;}
.ws14d{word-spacing:-0.023424pt;}
.ws14c{word-spacing:-0.023390pt;}
.ws149{word-spacing:-0.023342pt;}
.ws14b{word-spacing:-0.021837pt;}
.ws13{word-spacing:-0.002141pt;}
.ws32{word-spacing:-0.001000pt;}
.ws3{word-spacing:0.000000pt;}
.wsb0{word-spacing:0.005344pt;}
.ws8b{word-spacing:0.016032pt;}
.ws97{word-spacing:0.026720pt;}
.wsd9{word-spacing:0.028056pt;}
.ws15{word-spacing:0.042507pt;}
.ws1f{word-spacing:0.047821pt;}
.ws9b{word-spacing:0.048096pt;}
.ws2b{word-spacing:0.053134pt;}
.ws98{word-spacing:0.053440pt;}
.wsd6{word-spacing:0.061723pt;}
.wsaf{word-spacing:0.064128pt;}
.ws123{word-spacing:0.069472pt;}
.ws127{word-spacing:0.080160pt;}
.wsd4{word-spacing:0.084168pt;}
.ws11b{word-spacing:0.085504pt;}
.ws7d{word-spacing:0.090848pt;}
.ws65{word-spacing:0.095642pt;}
.ws8d{word-spacing:0.096000pt;}
.wsa1{word-spacing:0.101536pt;}
.ws23{word-spacing:0.106268pt;}
.ws126{word-spacing:0.112224pt;}
.ws105{word-spacing:0.134400pt;}
.wscd{word-spacing:0.136080pt;}
.ws106{word-spacing:0.139200pt;}
.ws18{word-spacing:0.143462pt;}
.ws107{word-spacing:0.144000pt;}
.ws8c{word-spacing:0.158400pt;}
.ws35{word-spacing:0.159402pt;}
.ws19{word-spacing:0.191283pt;}
.ws38{word-spacing:0.212535pt;}
.ws134{word-spacing:0.239104pt;}
.ws2e{word-spacing:0.265669pt;}
.ws6b{word-spacing:0.318803pt;}
.wsf4{word-spacing:0.371937pt;}
.wsb2{word-spacing:0.379424pt;}
.wsb1{word-spacing:0.395456pt;}
.ws48{word-spacing:0.478205pt;}
.wscc{word-spacing:0.509040pt;}
.ws20{word-spacing:0.526029pt;}
.ws3f{word-spacing:0.531339pt;}
.ws30{word-spacing:0.690740pt;}
.wsbc{word-spacing:0.694720pt;}
.wse1{word-spacing:0.718234pt;}
.wsbd{word-spacing:0.742816pt;}
.ws52{word-spacing:0.743874pt;}
.wsd1{word-spacing:0.779957pt;}
.wsca{word-spacing:0.831600pt;}
.wscb{word-spacing:0.856800pt;}
.ws7{word-spacing:0.892646pt;}
.ws43{word-spacing:0.903276pt;}
.ws4d{word-spacing:0.956410pt;}
.ws143{word-spacing:0.956416pt;}
.wsb5{word-spacing:0.977952pt;}
.wsa0{word-spacing:0.983296pt;}
.wsd0{word-spacing:0.998794pt;}
.wsf3{word-spacing:1.009543pt;}
.ws9f{word-spacing:1.026048pt;}
.wsd2{word-spacing:1.026850pt;}
.wsd3{word-spacing:1.066128pt;}
.ws3a{word-spacing:1.115811pt;}
.ws4b{word-spacing:1.168945pt;}
.ws5a{word-spacing:1.222079pt;}
.ws11a{word-spacing:1.298592pt;}
.ws10a{word-spacing:1.309280pt;}
.ws9c{word-spacing:1.319968pt;}
.ws102{word-spacing:1.325312pt;}
.ws1a{word-spacing:1.338982pt;}
.ws103{word-spacing:1.341344pt;}
.ws109{word-spacing:1.346688pt;}
.ws10b{word-spacing:1.368064pt;}
.wseb{word-spacing:1.391578pt;}
.ws12f{word-spacing:1.434614pt;}
.ws73{word-spacing:1.487748pt;}
.ws36{word-spacing:1.540882pt;}
.ws44{word-spacing:1.594016pt;}
.ws121{word-spacing:1.603200pt;}
.ws91{word-spacing:1.629920pt;}
.wsab{word-spacing:1.640608pt;}
.ws83{word-spacing:1.645952pt;}
.ws3e{word-spacing:1.647150pt;}
.wsac{word-spacing:1.667328pt;}
.ws122{word-spacing:1.694048pt;}
.ws2d{word-spacing:1.753418pt;}
.wse5{word-spacing:1.756306pt;}
.wse9{word-spacing:1.761917pt;}
.wsef{word-spacing:1.806551pt;}
.wse8{word-spacing:1.823640pt;}
.wsea{word-spacing:1.840474pt;}
.ws129{word-spacing:1.859685pt;}
.wse7{word-spacing:1.862918pt;}
.wsa6{word-spacing:1.912819pt;}
.wsb6{word-spacing:1.934528pt;}
.ws12a{word-spacing:2.072221pt;}
.wse6{word-spacing:2.098589pt;}
.ws12d{word-spacing:2.125355pt;}
.ws55{word-spacing:2.178489pt;}
.ws4{word-spacing:2.231616pt;}
.ws34{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws70{word-spacing:2.391024pt;}
.ws1c{word-spacing:2.391040pt;}
.ws135{word-spacing:2.444158pt;}
.ws16{word-spacing:2.550432pt;}
.ws114{word-spacing:2.591840pt;}
.ws47{word-spacing:2.656693pt;}
.ws14f{word-spacing:2.677965pt;}
.wse3{word-spacing:2.727043pt;}
.ws132{word-spacing:2.762961pt;}
.ws140{word-spacing:2.773606pt;}
.ws3c{word-spacing:2.816095pt;}
.ws21{word-spacing:2.861926pt;}
.ws14e{word-spacing:2.864000pt;}
.ws145{word-spacing:2.864375pt;}
.ws13a{word-spacing:2.866509pt;}
.wsf7{word-spacing:2.869229pt;}
.ws14a{word-spacing:2.869248pt;}
.ws119{word-spacing:2.880416pt;}
.ws9e{word-spacing:2.891104pt;}
.ws94{word-spacing:2.907136pt;}
.ws6c{word-spacing:2.922363pt;}
.ws113{word-spacing:2.923168pt;}
.ws1b{word-spacing:3.012710pt;}
.wse4{word-spacing:3.074938pt;}
.wsf6{word-spacing:3.081764pt;}
.ws13d{word-spacing:3.108352pt;}
.ws22{word-spacing:3.188032pt;}
.ws124{word-spacing:3.259840pt;}
.ws9d{word-spacing:3.281216pt;}
.ws131{word-spacing:3.294300pt;}
.wsf5{word-spacing:3.347434pt;}
.ws13c{word-spacing:3.395277pt;}
.ws4a{word-spacing:3.453701pt;}
.wsbe{word-spacing:3.543072pt;}
.ws87{word-spacing:3.548416pt;}
.ws59{word-spacing:3.559969pt;}
.ws8e{word-spacing:3.564448pt;}
.ws24{word-spacing:3.613103pt;}
.ws25{word-spacing:3.666237pt;}
.wsa5{word-spacing:3.719371pt;}
.wsde{word-spacing:3.748282pt;}
.wsdd{word-spacing:3.765115pt;}
.ws75{word-spacing:3.772505pt;}
.ws4f{word-spacing:3.878772pt;}
.ws120{word-spacing:3.885088pt;}
.ws49{word-spacing:3.985040pt;}
.ws40{word-spacing:4.038174pt;}
.ws3b{word-spacing:4.091308pt;}
.ws56{word-spacing:4.197575pt;}
.wse{word-spacing:4.240070pt;}
.ws5c{word-spacing:4.250709pt;}
.wsf{word-spacing:4.314458pt;}
.wsf2{word-spacing:4.410111pt;}
.ws10f{word-spacing:4.435520pt;}
.wsf0{word-spacing:4.463245pt;}
.ws10c{word-spacing:4.515680pt;}
.ws45{word-spacing:4.516379pt;}
.ws46{word-spacing:4.622646pt;}
.ws10e{word-spacing:4.825632pt;}
.ws154{word-spacing:4.877722pt;}
.ws10d{word-spacing:4.879072pt;}
.ws53{word-spacing:4.888316pt;}
.ws3d{word-spacing:4.994583pt;}
.ws26{word-spacing:5.047717pt;}
.ws136{word-spacing:5.153985pt;}
.wsa9{word-spacing:5.313387pt;}
.ws51{word-spacing:5.579056pt;}
.ws13e{word-spacing:5.595034pt;}
.ws147{word-spacing:5.642854pt;}
.ws41{word-spacing:5.685324pt;}
.ws130{word-spacing:5.791591pt;}
.ws118{word-spacing:5.808928pt;}
.ws117{word-spacing:6.102848pt;}
.wscf{word-spacing:6.116208pt;}
.ws144{word-spacing:6.121062pt;}
.ws11d{word-spacing:6.145600pt;}
.ws11e{word-spacing:6.199040pt;}
.ws11f{word-spacing:6.305920pt;}
.ws6a{word-spacing:6.322930pt;}
.ws42{word-spacing:6.429198pt;}
.ws100{word-spacing:6.439520pt;}
.wsff{word-spacing:6.476928pt;}
.wsc5{word-spacing:6.482332pt;}
.wsce{word-spacing:6.486547pt;}
.wsed{word-spacing:6.761496pt;}
.wsec{word-spacing:6.806386pt;}
.wsc{word-spacing:6.918010pt;}
.ws7b{word-spacing:7.054080pt;}
.ws12c{word-spacing:7.066804pt;}
.ws7c{word-spacing:7.080800pt;}
.wsa8{word-spacing:7.332474pt;}
.ws7a{word-spacing:7.364032pt;}
.ws81{word-spacing:7.460224pt;}
.ws82{word-spacing:7.529696pt;}
.ws85{word-spacing:7.732768pt;}
.ws84{word-spacing:7.780864pt;}
.ws7f{word-spacing:8.016000pt;}
.ws80{word-spacing:8.069440pt;}
.ws8f{word-spacing:8.684000pt;}
.wsd7{word-spacing:8.843251pt;}
.wsd8{word-spacing:9.196757pt;}
.wsfd{word-spacing:9.309248pt;}
.wsfa{word-spacing:10.325056pt;}
.ws79{word-spacing:10.329312pt;}
.wsa{word-spacing:10.823338pt;}
.wsc8{word-spacing:10.845778pt;}
.wsb7{word-spacing:10.923136pt;}
.wsb{word-spacing:14.319536pt;}
.ws27{word-spacing:18.809389pt;}
.ws153{word-spacing:20.132557pt;}
.wsd{word-spacing:23.208806pt;}
.ws9{word-spacing:23.858002pt;}
.ws5d{word-spacing:150.204442pt;}
.ws67{word-spacing:201.847970pt;}
.ws60{word-spacing:222.311364pt;}
.ws5e{word-spacing:245.483119pt;}
.ws68{word-spacing:251.121775pt;}
.ws66{word-spacing:264.251392pt;}
.ws64{word-spacing:264.920030pt;}
.ws62{word-spacing:272.765303pt;}
.ws5f{word-spacing:282.978637pt;}
.ws69{word-spacing:308.967962pt;}
.ws61{word-spacing:311.070293pt;}
.ws58{word-spacing:351.674163pt;}
.ws57{word-spacing:374.915072pt;}
.ws133{word-spacing:527.128678pt;}
.wsc9{word-spacing:961.961683pt;}
.wse0{word-spacing:967.673885pt;}
._9{margin-left:-10.616218pt;}
._32{margin-left:-6.794409pt;}
._d{margin-left:-5.778193pt;}
._15{margin-left:-4.888316pt;}
._3{margin-left:-3.421811pt;}
._3a{margin-left:-2.202197pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._5{width:2.045648pt;}
._a{width:3.269300pt;}
._6{width:10.132188pt;}
._2{width:11.530016pt;}
._17{width:12.486314pt;}
._11{width:13.963674pt;}
._c{width:15.015731pt;}
._f{width:16.593818pt;}
._12{width:17.906113pt;}
._e{width:19.223962pt;}
._16{width:20.137735pt;}
._19{width:21.359814pt;}
._4{width:23.063232pt;}
._10{width:24.245146pt;}
._1c{width:25.397988pt;}
._7{width:27.188522pt;}
._34{width:28.699014pt;}
._8{width:29.648896pt;}
._1b{width:30.828141pt;}
._1d{width:31.780779pt;}
._18{width:33.899407pt;}
._31{width:35.181346pt;}
._35{width:38.096982pt;}
._3c{width:54.993920pt;}
._b{width:61.661897pt;}
._3b{width:78.904320pt;}
._22{width:207.781376pt;}
._23{width:252.780749pt;}
._21{width:264.401203pt;}
._30{width:323.440043pt;}
._26{width:325.516186pt;}
._2c{width:344.368175pt;}
._29{width:357.805820pt;}
._27{width:363.629363pt;}
._24{width:386.870272pt;}
._20{width:390.347341pt;}
._28{width:393.086976pt;}
._2d{width:395.478016pt;}
._2f{width:403.264683pt;}
._2a{width:416.327885pt;}
._25{width:418.718925pt;}
._1f{width:440.142643pt;}
._2b{width:465.976469pt;}
._2e{width:467.926528pt;}
._1e{width:547.069952pt;}
._39{width:594.986394pt;}
._13{width:722.551749pt;}
._37{width:1847.244887pt;}
._33{width:1867.754551pt;}
._36{width:1961.843220pt;}
._38{width:2230.938918pt;}
._14{width:2250.714892pt;}
._1a{width:2252.192251pt;}
.fs7{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs6{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fse{font-size:44.688000pt;}
.fs9{font-size:47.820800pt;}
.fsd{font-size:48.000000pt;}
.fs10{font-size:50.400000pt;}
.fs4{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fsa{font-size:55.365867pt;}
.fsf{font-size:56.112000pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:111.459400pt;}
.y1b7{bottom:-657.263040pt;}
.y1b6{bottom:-639.371729pt;}
.y1b5{bottom:-621.396250pt;}
.y1b4{bottom:-603.504938pt;}
.y1b3{bottom:-585.529459pt;}
.y1b2{bottom:-567.553980pt;}
.y1b1{bottom:-533.198400pt;}
.y1b0{bottom:-516.985980pt;}
.y1af{bottom:-491.867006pt;}
.y1ae{bottom:-472.882914pt;}
.y20d{bottom:-472.372437pt;}
.y20c{bottom:-439.252997pt;}
.y20b{bottom:-422.213653pt;}
.y20a{bottom:-405.094149pt;}
.y209{bottom:-388.054805pt;}
.y18c{bottom:-381.479381pt;}
.y208{bottom:-370.935301pt;}
.y18b{bottom:-364.359877pt;}
.y207{bottom:-353.815797pt;}
.y18a{bottom:-347.240373pt;}
.y206{bottom:-336.776453pt;}
.y189{bottom:-330.201029pt;}
.y205{bottom:-319.656949pt;}
.y188{bottom:-313.081525pt;}
.y14c{bottom:-307.118027pt;}
.y204{bottom:-302.617605pt;}
.y187{bottom:-292.042197pt;}
.y14b{bottom:-289.998523pt;}
.y203{bottom:-285.498101pt;}
.y14a{bottom:-272.879019pt;}
.y202{bottom:-268.378597pt;}
.y186{bottom:-258.922757pt;}
.y149{bottom:-255.839675pt;}
.y201{bottom:-251.339253pt;}
.y185{bottom:-241.803253pt;}
.y148{bottom:-238.720171pt;}
.y200{bottom:-234.219749pt;}
.y184{bottom:-224.763909pt;}
.y147{bottom:-221.680827pt;}
.y1ff{bottom:-217.100245pt;}
.y1ad{bottom:-214.666712pt;}
.y183{bottom:-207.644405pt;}
.y146{bottom:-204.561323pt;}
.y1fe{bottom:-200.060901pt;}
.y1ac{bottom:-196.691233pt;}
.y182{bottom:-190.524901pt;}
.y145{bottom:-187.441819pt;}
.y1fd{bottom:-182.941397pt;}
.y1ab{bottom:-178.799922pt;}
.y181{bottom:-173.485557pt;}
.y144{bottom:-170.402475pt;}
.y1fc{bottom:-165.902053pt;}
.y1aa{bottom:-160.824443pt;}
.y1dc{bottom:-158.121040pt;}
.y180{bottom:-156.366053pt;}
.y143{bottom:-153.282971pt;}
.y1fb{bottom:-144.782565pt;}
.y1a9{bottom:-142.933132pt;}
.y1db{bottom:-140.229729pt;}
.y142{bottom:-136.163467pt;}
.y17f{bottom:-135.326725pt;}
.y1a8{bottom:-124.957652pt;}
.y1da{bottom:-122.254250pt;}
.y141{bottom:-119.124123pt;}
.y1fa{bottom:-111.663125pt;}
.y1a7{bottom:-106.982173pt;}
.y1d9{bottom:-104.362938pt;}
.y17e{bottom:-102.207285pt;}
.y140{bottom:-102.004619pt;}
.y1f9{bottom:-94.623781pt;}
.y1a6{bottom:-89.089459pt;}
.y1d8{bottom:-86.387459pt;}
.y17d{bottom:-85.087781pt;}
.y13f{bottom:-84.965275pt;}
.y1f8{bottom:-77.504277pt;}
.y1a5{bottom:-71.113980pt;}
.y1d7{bottom:-68.411980pt;}
.y17c{bottom:-68.048437pt;}
.y13e{bottom:-67.845771pt;}
.y1f7{bottom:-60.464933pt;}
.y17b{bottom:-50.928933pt;}
.y13d{bottom:-50.726267pt;}
.y1a4{bottom:-36.758400pt;}
.y1d6{bottom:-34.056400pt;}
.y1f6{bottom:-27.744933pt;}
.y1a3{bottom:-20.545980pt;}
.y17a{bottom:-18.208933pt;}
.y13c{bottom:-18.086267pt;}
.y1d5{bottom:-17.843980pt;}
.y1f5{bottom:-7.742061pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:1.743170pt;}
.y179{bottom:1.791067pt;}
.y13b{bottom:1.919269pt;}
.y3{bottom:3.044747pt;}
.y1a2{bottom:4.569474pt;}
.y1d4{bottom:7.274994pt;}
.y2{bottom:12.578910pt;}
.y1a1{bottom:22.378020pt;}
.y1b{bottom:25.118899pt;}
.y1d3{bottom:26.259086pt;}
.y4b{bottom:28.346667pt;}
.y80{bottom:82.929333pt;}
.y27e{bottom:84.884000pt;}
.y12b{bottom:85.737333pt;}
.y16b{bottom:91.602667pt;}
.y4a{bottom:92.108000pt;}
.y199{bottom:92.400000pt;}
.y222{bottom:92.958667pt;}
.y19{bottom:93.018667pt;}
.y246{bottom:95.282667pt;}
.y7f{bottom:99.666667pt;}
.y27d{bottom:101.621333pt;}
.y12a{bottom:102.474667pt;}
.y2ab{bottom:104.886667pt;}
.ye1{bottom:108.173333pt;}
.y16a{bottom:108.340000pt;}
.y49{bottom:108.844000pt;}
.y18{bottom:108.920000pt;}
.y198{bottom:109.137333pt;}
.y1de{bottom:109.344000pt;}
.y221{bottom:109.696000pt;}
.y245{bottom:112.020000pt;}
.y7e{bottom:116.404000pt;}
.y27c{bottom:118.358667pt;}
.y129{bottom:119.212000pt;}
.y2aa{bottom:120.229333pt;}
.y17{bottom:124.820000pt;}
.ye0{bottom:124.910667pt;}
.y169{bottom:125.077333pt;}
.y48{bottom:125.581333pt;}
.y197{bottom:125.874667pt;}
.y220{bottom:126.433333pt;}
.y1dd{bottom:126.440000pt;}
.y244{bottom:128.757333pt;}
.y7d{bottom:133.141333pt;}
.y27b{bottom:135.096000pt;}
.y2a9{bottom:135.572000pt;}
.y128{bottom:139.934667pt;}
.y16{bottom:140.720000pt;}
.ydf{bottom:141.648000pt;}
.y168{bottom:141.814667pt;}
.y47{bottom:142.318667pt;}
.y196{bottom:142.612000pt;}
.y21f{bottom:143.170667pt;}
.yae{bottom:143.900000pt;}
.y243{bottom:145.494667pt;}
.y1c3{bottom:146.377333pt;}
.y7c{bottom:149.878667pt;}
.y2a8{bottom:150.914667pt;}
.y27a{bottom:151.833333pt;}
.y15{bottom:156.621333pt;}
.yde{bottom:158.385333pt;}
.y167{bottom:158.552000pt;}
.y46{bottom:159.056000pt;}
.y195{bottom:159.349333pt;}
.y21e{bottom:159.908000pt;}
.yad{bottom:160.637333pt;}
.y242{bottom:162.232000pt;}
.y2a7{bottom:166.257333pt;}
.y7b{bottom:166.616000pt;}
.y279{bottom:168.570667pt;}
.y127{bottom:169.822667pt;}
.y14{bottom:172.521333pt;}
.ydd{bottom:175.122667pt;}
.y45{bottom:175.793333pt;}
.y194{bottom:176.086667pt;}
.y21d{bottom:176.645333pt;}
.yac{bottom:177.374667pt;}
.y241{bottom:178.969333pt;}
.y166{bottom:179.274667pt;}
.y2a6{bottom:181.600000pt;}
.y7a{bottom:183.352000pt;}
.y278{bottom:185.308000pt;}
.y126{bottom:186.560000pt;}
.y13{bottom:188.421333pt;}
.ydc{bottom:191.860000pt;}
.y44{bottom:192.530667pt;}
.y193{bottom:192.824000pt;}
.y21c{bottom:193.382667pt;}
.yab{bottom:194.112000pt;}
.y240{bottom:195.706667pt;}
.y2a4{bottom:196.941333pt;}
.y2a5{bottom:196.942667pt;}
.y79{bottom:200.089333pt;}
.y277{bottom:202.045333pt;}
.y125{bottom:203.297333pt;}
.y12{bottom:204.322667pt;}
.ydb{bottom:208.597333pt;}
.y165{bottom:209.162667pt;}
.y43{bottom:209.268000pt;}
.y21b{bottom:210.120000pt;}
.yaa{bottom:210.849333pt;}
.y2a3{bottom:212.284000pt;}
.y23f{bottom:212.444000pt;}
.y192{bottom:213.546667pt;}
.y78{bottom:216.826667pt;}
.y276{bottom:218.782667pt;}
.y124{bottom:220.034667pt;}
.yda{bottom:225.334667pt;}
.y164{bottom:225.900000pt;}
.y42{bottom:226.005333pt;}
.y21a{bottom:226.857333pt;}
.ya9{bottom:227.586667pt;}
.y2a2{bottom:227.626667pt;}
.y23e{bottom:229.181333pt;}
.y275{bottom:235.520000pt;}
.y77{bottom:237.549333pt;}
.y123{bottom:240.756000pt;}
.yd9{bottom:242.072000pt;}
.y163{bottom:242.637333pt;}
.y41{bottom:242.742667pt;}
.y2a1{bottom:242.969333pt;}
.y191{bottom:243.434667pt;}
.y219{bottom:243.594667pt;}
.ya8{bottom:244.324000pt;}
.y23d{bottom:245.918667pt;}
.y76{bottom:254.286667pt;}
.y274{bottom:256.242667pt;}
.y2a0{bottom:258.312000pt;}
.yd8{bottom:258.809333pt;}
.y162{bottom:259.374667pt;}
.y40{bottom:259.480000pt;}
.y190{bottom:260.172000pt;}
.y218{bottom:260.332000pt;}
.ya7{bottom:261.061333pt;}
.y23c{bottom:262.656000pt;}
.y11{bottom:266.804000pt;}
.y122{bottom:270.644000pt;}
.y75{bottom:271.024000pt;}
.y29f{bottom:273.654667pt;}
.yd7{bottom:275.546667pt;}
.y161{bottom:276.112000pt;}
.y3f{bottom:276.217333pt;}
.y18f{bottom:276.909333pt;}
.y217{bottom:277.069333pt;}
.ya6{bottom:277.798667pt;}
.y23b{bottom:279.393333pt;}
.y1f4{bottom:279.618179pt;}
.y10{bottom:282.705333pt;}
.y1d2{bottom:284.475288pt;}
.y273{bottom:286.130667pt;}
.y121{bottom:287.381333pt;}
.y74{bottom:287.761333pt;}
.y29e{bottom:288.997333pt;}
.yd6{bottom:292.284000pt;}
.y160{bottom:292.849333pt;}
.y3e{bottom:292.954667pt;}
.y18e{bottom:293.646667pt;}
.y216{bottom:293.806667pt;}
.ya5{bottom:294.536000pt;}
.y23a{bottom:296.129333pt;}
.y1f3{bottom:296.737683pt;}
.yf{bottom:298.605333pt;}
.y1d1{bottom:302.450767pt;}
.y272{bottom:302.868000pt;}
.y120{bottom:304.118667pt;}
.y29d{bottom:304.340000pt;}
.y73{bottom:304.498667pt;}
.yd5{bottom:309.021333pt;}
.y15f{bottom:309.586667pt;}
.y3d{bottom:309.692000pt;}
.y215{bottom:310.544000pt;}
.ya4{bottom:311.273333pt;}
.y239{bottom:312.866667pt;}
.y1f2{bottom:313.857187pt;}
.ye{bottom:314.505333pt;}
.y271{bottom:319.605333pt;}
.y29c{bottom:319.682667pt;}
.y1d0{bottom:320.342078pt;}
.y11f{bottom:320.856000pt;}
.y18d{bottom:323.482667pt;}
.y72{bottom:325.221333pt;}
.yd4{bottom:325.758667pt;}
.y15e{bottom:326.324000pt;}
.y3c{bottom:326.429333pt;}
.y178{bottom:327.071187pt;}
.y214{bottom:327.281333pt;}
.ya3{bottom:328.010667pt;}
.y238{bottom:329.604000pt;}
.y1f1{bottom:330.896531pt;}
.y29b{bottom:335.024000pt;}
.y177{bottom:335.631067pt;}
.y270{bottom:336.342667pt;}
.y11e{bottom:337.593333pt;}
.y1cf{bottom:338.317557pt;}
.yd{bottom:338.376000pt;}
.y71{bottom:341.958667pt;}
.yd3{bottom:342.496000pt;}
.y15d{bottom:343.061333pt;}
.y3b{bottom:343.166667pt;}
.y176{bottom:343.420000pt;}
.y1a0{bottom:344.014146pt;}
.ya2{bottom:344.748000pt;}
.y237{bottom:346.341333pt;}
.y213{bottom:348.002667pt;}
.y1f0{bottom:348.016035pt;}
.y29a{bottom:350.366667pt;}
.y19f{bottom:353.002020pt;}
.y26f{bottom:353.080000pt;}
.yc{bottom:354.277333pt;}
.y1ce{bottom:356.208868pt;}
.y70{bottom:358.696000pt;}
.yd2{bottom:359.233333pt;}
.y15c{bottom:359.798667pt;}
.y3a{bottom:359.904000pt;}
.ya1{bottom:361.485333pt;}
.y236{bottom:363.078667pt;}
.y1ef{bottom:365.055379pt;}
.y299{bottom:365.709333pt;}
.y13a{bottom:369.678653pt;}
.y26e{bottom:369.817333pt;}
.yb{bottom:370.177333pt;}
.y1cd{bottom:374.184348pt;}
.y6f{bottom:375.433333pt;}
.y15b{bottom:376.536000pt;}
.y39{bottom:376.641333pt;}
.y212{bottom:377.890667pt;}
.ya0{bottom:378.222667pt;}
.y235{bottom:379.816000pt;}
.yd1{bottom:379.954667pt;}
.y11d{bottom:380.661333pt;}
.y298{bottom:381.052000pt;}
.y1ee{bottom:382.174883pt;}
.y26d{bottom:386.554667pt;}
.y139{bottom:386.798157pt;}
.y1cc{bottom:392.159827pt;}
.y6e{bottom:392.170667pt;}
.y15a{bottom:393.273333pt;}
.y38{bottom:393.378667pt;}
.y211{bottom:394.628000pt;}
.y9f{bottom:394.960000pt;}
.y11c{bottom:395.273333pt;}
.ya{bottom:395.376000pt;}
.y297{bottom:396.394667pt;}
.y234{bottom:396.553333pt;}
.yd0{bottom:397.888000pt;}
.y1ed{bottom:399.294387pt;}
.y26c{bottom:403.292000pt;}
.y138{bottom:403.917661pt;}
.y6d{bottom:408.908000pt;}
.y11b{bottom:409.884000pt;}
.y159{bottom:410.009333pt;}
.y1cb{bottom:410.052541pt;}
.y37{bottom:410.116000pt;}
.y210{bottom:411.365333pt;}
.y9e{bottom:411.697333pt;}
.y296{bottom:411.737333pt;}
.y233{bottom:413.290667pt;}
.y1ec{bottom:416.335067pt;}
.y1c2{bottom:416.796000pt;}
.y9{bottom:419.246667pt;}
.y26b{bottom:420.028000pt;}
.y11a{bottom:424.496000pt;}
.y137{bottom:424.956989pt;}
.y6c{bottom:425.645333pt;}
.y158{bottom:426.746667pt;}
.y36{bottom:426.853333pt;}
.y295{bottom:427.080000pt;}
.ycf{bottom:427.776000pt;}
.y1ca{bottom:428.028020pt;}
.y20f{bottom:428.102667pt;}
.y9d{bottom:428.434667pt;}
.y232{bottom:430.028000pt;}
.y1c1{bottom:433.533333pt;}
.y8{bottom:435.146667pt;}
.y26a{bottom:436.765333pt;}
.y110{bottom:438.017333pt;}
.y119{bottom:439.108000pt;}
.y6b{bottom:442.382667pt;}
.y294{bottom:442.422667pt;}
.y157{bottom:443.484000pt;}
.y35{bottom:443.590667pt;}
.yce{bottom:444.513333pt;}
.y113{bottom:445.140000pt;}
.y9c{bottom:445.172000pt;}
.y231{bottom:446.765333pt;}
.y1c0{bottom:450.270667pt;}
.y7{bottom:451.048000pt;}
.y10f{bottom:452.628000pt;}
.y269{bottom:453.502667pt;}
.y118{bottom:453.720000pt;}
.y293{bottom:457.765333pt;}
.y20e{bottom:457.938667pt;}
.y136{bottom:458.076429pt;}
.y6a{bottom:459.118667pt;}
.y112{bottom:459.752000pt;}
.y10c{bottom:460.001333pt;}
.y156{bottom:460.221333pt;}
.y34{bottom:460.328000pt;}
.ycd{bottom:461.250667pt;}
.y9b{bottom:461.909333pt;}
.y1c9{bottom:462.383600pt;}
.y230{bottom:463.502667pt;}
.y1eb{bottom:464.975187pt;}
.y6{bottom:466.948000pt;}
.y1bf{bottom:467.008000pt;}
.y10e{bottom:467.240000pt;}
.y117{bottom:468.332000pt;}
.y268{bottom:470.240000pt;}
.y292{bottom:473.106667pt;}
.y1ea{bottom:473.535067pt;}
.y111{bottom:474.364000pt;}
.y135{bottom:475.195933pt;}
.y69{bottom:475.856000pt;}
.y155{bottom:476.958667pt;}
.y1e9{bottom:477.876000pt;}
.y1c8{bottom:478.596020pt;}
.y9a{bottom:478.646667pt;}
.y22f{bottom:480.240000pt;}
.y33{bottom:481.049333pt;}
.y10d{bottom:481.852000pt;}
.y5{bottom:482.848000pt;}
.y116{bottom:482.944000pt;}
.y1be{bottom:483.744000pt;}
.y267{bottom:486.977333pt;}
.y291{bottom:488.449333pt;}
.y134{bottom:492.235277pt;}
.y68{bottom:492.593333pt;}
.y154{bottom:493.696000pt;}
.y99{bottom:495.384000pt;}
.y22e{bottom:496.977333pt;}
.y115{bottom:497.556000pt;}
.y4{bottom:498.749333pt;}
.y1bd{bottom:500.481333pt;}
.ycc{bottom:501.661333pt;}
.y1c7{bottom:503.711474pt;}
.y266{bottom:503.714667pt;}
.y290{bottom:503.792000pt;}
.y67{bottom:509.330667pt;}
.y133{bottom:509.354781pt;}
.y153{bottom:510.433333pt;}
.y114{bottom:512.168000pt;}
.y22d{bottom:513.714667pt;}
.y1{bottom:514.649301pt;}
.y98{bottom:516.105333pt;}
.ycb{bottom:516.273333pt;}
.y1bc{bottom:517.218667pt;}
.y265{bottom:520.452000pt;}
.y1c6{bottom:521.520020pt;}
.y28f{bottom:523.120000pt;}
.y66{bottom:526.068000pt;}
.y132{bottom:526.394125pt;}
.y152{bottom:527.170667pt;}
.y22c{bottom:530.452000pt;}
.yca{bottom:530.885333pt;}
.y10a{bottom:532.090667pt;}
.y10b{bottom:533.181333pt;}
.y1bb{bottom:533.956000pt;}
.y264{bottom:537.189333pt;}
.y109{bottom:539.352000pt;}
.y65{bottom:542.805333pt;}
.y151{bottom:543.908000pt;}
.yc9{bottom:545.497333pt;}
.y97{bottom:545.993333pt;}
.y22b{bottom:547.189333pt;}
.y131{bottom:547.513613pt;}
.y32{bottom:547.849333pt;}
.y1ba{bottom:550.693333pt;}
.y28e{bottom:553.008000pt;}
.y263{bottom:553.926667pt;}
.y64{bottom:559.542667pt;}
.yc8{bottom:560.108000pt;}
.y150{bottom:560.645333pt;}
.y96{bottom:562.730667pt;}
.y22a{bottom:563.926667pt;}
.y108{bottom:568.808000pt;}
.y262{bottom:570.664000pt;}
.y63{bottom:576.280000pt;}
.y28d{bottom:576.598667pt;}
.y14f{bottom:577.382667pt;}
.y95{bottom:579.468000pt;}
.y1b9{bottom:580.529333pt;}
.y130{bottom:580.633053pt;}
.y229{bottom:580.664000pt;}
.y31{bottom:581.085333pt;}
.yc7{bottom:581.122667pt;}
.y107{bottom:583.420000pt;}
.y261{bottom:587.401333pt;}
.y28c{bottom:592.221333pt;}
.y62{bottom:593.017333pt;}
.y14e{bottom:594.120000pt;}
.y94{bottom:596.205333pt;}
.y228{bottom:597.401333pt;}
.y1b8{bottom:597.625333pt;}
.y12f{bottom:597.673733pt;}
.y106{bottom:598.030667pt;}
.y30{bottom:598.380000pt;}
.y260{bottom:604.138667pt;}
.yc6{bottom:609.229333pt;}
.y105{bottom:612.642667pt;}
.y93{bottom:612.942667pt;}
.y61{bottom:613.740000pt;}
.y227{bottom:614.138667pt;}
.y2f{bottom:615.676000pt;}
.y28b{bottom:615.812000pt;}
.y19e{bottom:617.562667pt;}
.yfe{bottom:620.232000pt;}
.y25f{bottom:620.876000pt;}
.y14d{bottom:623.956000pt;}
.y104{bottom:627.254667pt;}
.y92{bottom:629.680000pt;}
.y60{bottom:630.477333pt;}
.y226{bottom:630.876000pt;}
.y28a{bottom:631.433333pt;}
.y2e{bottom:632.970667pt;}
.yfd{bottom:634.844000pt;}
.y25e{bottom:637.613333pt;}
.y103{bottom:641.866667pt;}
.yf9{bottom:642.150667pt;}
.yc5{bottom:642.210667pt;}
.y12c{bottom:643.893333pt;}
.y12e{bottom:646.313853pt;}
.y91{bottom:646.417333pt;}
.y5f{bottom:647.214667pt;}
.y175{bottom:647.613333pt;}
.yf7{bottom:648.148000pt;}
.yfc{bottom:649.456000pt;}
.y2d{bottom:650.266667pt;}
.y25d{bottom:654.350667pt;}
.y12d{bottom:654.873733pt;}
.y289{bottom:655.025333pt;}
.y102{bottom:656.478667pt;}
.yf8{bottom:656.761333pt;}
.yc4{bottom:658.948000pt;}
.y90{bottom:663.154667pt;}
.y5e{bottom:663.952000pt;}
.yfb{bottom:664.068000pt;}
.y174{bottom:664.350667pt;}
.y2c{bottom:667.561333pt;}
.y101{bottom:671.090667pt;}
.yc3{bottom:675.685333pt;}
.y288{bottom:678.617333pt;}
.yfa{bottom:678.680000pt;}
.y8f{bottom:679.892000pt;}
.y5d{bottom:680.689333pt;}
.y173{bottom:681.088000pt;}
.y2b{bottom:684.856000pt;}
.y100{bottom:685.702667pt;}
.yc2{bottom:692.422667pt;}
.y287{bottom:694.238667pt;}
.y25c{bottom:694.761333pt;}
.y8e{bottom:696.629333pt;}
.y5c{bottom:697.426667pt;}
.y172{bottom:697.825333pt;}
.yff{bottom:700.314667pt;}
.y2a{bottom:702.152000pt;}
.y2bc{bottom:706.592000pt;}
.yc1{bottom:709.160000pt;}
.y25b{bottom:709.373333pt;}
.y286{bottom:709.860000pt;}
.y8d{bottom:713.366667pt;}
.y5b{bottom:714.164000pt;}
.y171{bottom:714.562667pt;}
.y29{bottom:719.446667pt;}
.yf6{bottom:721.328000pt;}
.y2bb{bottom:721.934667pt;}
.y257{bottom:723.985333pt;}
.y285{bottom:725.481333pt;}
.yc0{bottom:725.897333pt;}
.y8c{bottom:730.104000pt;}
.y5a{bottom:730.901333pt;}
.y170{bottom:731.300000pt;}
.yf5{bottom:735.940000pt;}
.y28{bottom:736.741333pt;}
.y2ba{bottom:737.277333pt;}
.y256{bottom:738.597333pt;}
.y284{bottom:741.102667pt;}
.y253{bottom:745.902667pt;}
.ybf{bottom:746.618667pt;}
.y8b{bottom:746.841333pt;}
.y16f{bottom:748.036000pt;}
.y1e8{bottom:748.434667pt;}
.yf4{bottom:750.552000pt;}
.y59{bottom:751.622667pt;}
.y2b9{bottom:752.620000pt;}
.y255{bottom:753.209333pt;}
.y27{bottom:754.037333pt;}
.y283{bottom:756.724000pt;}
.yf0{bottom:758.324000pt;}
.y8a{bottom:763.578667pt;}
.yef{bottom:764.028000pt;}
.y16e{bottom:764.773333pt;}
.yf3{bottom:765.164000pt;}
.y1e7{bottom:765.172000pt;}
.y254{bottom:767.820000pt;}
.y25a{bottom:767.821333pt;}
.y2b8{bottom:767.961333pt;}
.y26{bottom:771.332000pt;}
.yf2{bottom:779.776000pt;}
.y89{bottom:780.316000pt;}
.y58{bottom:781.510667pt;}
.y1e6{bottom:781.909333pt;}
.y259{bottom:782.432000pt;}
.y2b7{bottom:783.304000pt;}
.ybe{bottom:784.240000pt;}
.yf1{bottom:794.388000pt;}
.y258{bottom:797.044000pt;}
.y88{bottom:797.053333pt;}
.y57{bottom:798.248000pt;}
.y1e5{bottom:798.646667pt;}
.ybd{bottom:798.852000pt;}
.y25{bottom:802.720000pt;}
.y282{bottom:803.906667pt;}
.y87{bottom:813.790667pt;}
.y2b6{bottom:813.989333pt;}
.y56{bottom:814.985333pt;}
.y1e4{bottom:815.384000pt;}
.yee{bottom:815.401333pt;}
.y24{bottom:817.065333pt;}
.y24c{bottom:818.058667pt;}
.y281{bottom:819.529333pt;}
.ybc{bottom:819.866667pt;}
.y252{bottom:825.364000pt;}
.y2b5{bottom:829.332000pt;}
.yed{bottom:830.013333pt;}
.y86{bottom:830.528000pt;}
.y55{bottom:831.722667pt;}
.y1e3{bottom:832.121333pt;}
.y24b{bottom:832.670667pt;}
.ybb{bottom:834.477333pt;}
.y280{bottom:835.150667pt;}
.y23{bottom:835.269333pt;}
.y251{bottom:839.976000pt;}
.y1c5{bottom:843.156146pt;}
.yec{bottom:844.625333pt;}
.y2b4{bottom:844.674667pt;}
.y22{bottom:845.758667pt;}
.y85{bottom:847.265333pt;}
.y24a{bottom:847.282667pt;}
.y54{bottom:848.460000pt;}
.y1e2{bottom:848.858667pt;}
.y21{bottom:849.616000pt;}
.y27f{bottom:850.772000pt;}
.y1c4{bottom:852.144020pt;}
.y250{bottom:854.588000pt;}
.yba{bottom:855.492000pt;}
.yeb{bottom:859.237333pt;}
.y2b3{bottom:860.017333pt;}
.y249{bottom:861.893333pt;}
.yb7{bottom:862.797333pt;}
.y84{bottom:864.002667pt;}
.y53{bottom:865.197333pt;}
.y1e1{bottom:865.596000pt;}
.ye6{bottom:866.826667pt;}
.y24f{bottom:869.200000pt;}
.yb9{bottom:870.104000pt;}
.ye5{bottom:872.713333pt;}
.yea{bottom:873.849333pt;}
.y2b2{bottom:875.360000pt;}
.y247{bottom:876.505333pt;}
.yb6{bottom:877.409333pt;}
.y83{bottom:880.740000pt;}
.y52{bottom:881.934667pt;}
.y1e0{bottom:882.333333pt;}
.y24e{bottom:883.812000pt;}
.yb8{bottom:884.716000pt;}
.y16d{bottom:885.920000pt;}
.y20{bottom:886.417333pt;}
.ye9{bottom:888.461333pt;}
.y2b1{bottom:890.702667pt;}
.y248{bottom:891.117333pt;}
.y24d{bottom:898.424000pt;}
.y225{bottom:898.672000pt;}
.y1df{bottom:899.070667pt;}
.y82{bottom:901.461333pt;}
.y51{bottom:902.657333pt;}
.ye8{bottom:903.073333pt;}
.yb5{bottom:905.729333pt;}
.y2b0{bottom:906.044000pt;}
.y19d{bottom:911.822667pt;}
.yb2{bottom:913.036000pt;}
.y224{bottom:915.409333pt;}
.y16c{bottom:915.808000pt;}
.ye7{bottom:917.685333pt;}
.y81{bottom:919.394667pt;}
.yb4{bottom:920.341333pt;}
.y2af{bottom:921.386667pt;}
.y1f{bottom:921.901333pt;}
.yb1{bottom:927.648000pt;}
.y19c{bottom:928.560000pt;}
.y50{bottom:932.545333pt;}
.yb3{bottom:934.953333pt;}
.y223{bottom:936.132000pt;}
.y2ae{bottom:936.729333pt;}
.ye3{bottom:938.698667pt;}
.y19b{bottom:945.297333pt;}
.ye2{bottom:946.005333pt;}
.y1e{bottom:947.008000pt;}
.y4f{bottom:949.282667pt;}
.y2ad{bottom:952.072000pt;}
.ye4{bottom:953.310667pt;}
.yb0{bottom:955.966667pt;}
.y19a{bottom:962.034667pt;}
.y4e{bottom:966.020000pt;}
.y2ac{bottom:967.414667pt;}
.y1d{bottom:972.113333pt;}
.y4d{bottom:982.757333pt;}
.yaf{bottom:984.073333pt;}
.y1a{bottom:1010.768000pt;}
.y4c{bottom:1038.548000pt;}
.h2{height:22.673858pt;}
.hc{height:23.209028pt;}
.h13{height:24.582445pt;}
.h5{height:27.076941pt;}
.h6{height:27.300102pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.hd{height:30.945242pt;}
.h20{height:31.067969pt;}
.h12{height:31.200285pt;}
.h1f{height:31.213438pt;}
.h27{height:32.621367pt;}
.h26{height:32.774109pt;}
.he{height:34.430976pt;}
.hf{height:34.813542pt;}
.h2f{height:35.100467pt;}
.h23{height:35.203125pt;}
.h2a{height:36.791016pt;}
.h29{height:36.963281pt;}
.h10{height:38.256384pt;}
.h22{height:38.462187pt;}
.h11{height:38.681455pt;}
.h9{height:39.000258pt;}
.h21{height:39.010156pt;}
.h2e{height:39.192812pt;}
.h2b{height:40.960664pt;}
.h28{height:41.152453pt;}
.h7{height:45.272024pt;}
.hb{height:48.365611pt;}
.h1b{height:58.802876pt;}
.h1a{height:63.570876pt;}
.h15{height:63.652309pt;}
.h16{height:63.657643pt;}
.h14{height:64.040209pt;}
.h1c{height:64.210876pt;}
.h18{height:64.301542pt;}
.ha{height:68.861952pt;}
.h17{height:69.714876pt;}
.h19{height:70.445542pt;}
.h8{height:75.569473pt;}
.h1d{height:97.624209pt;}
.h2c{height:256.046000pt;}
.h2d{height:256.186667pt;}
.h25{height:280.179200pt;}
.h24{height:289.821333pt;}
.h1e{height:352.148000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:204.451647pt;}
.w8{width:280.290667pt;}
.w5{width:455.753333pt;}
.w6{width:472.655400pt;}
.w7{width:492.079000pt;}
.w4{width:521.749333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x6e{left:-202.703200pt;}
.x74{left:-193.873400pt;}
.x79{left:-191.929333pt;}
.x6b{left:-190.808000pt;}
.x67{left:-172.740000pt;}
.x71{left:-20.171200pt;}
.x7a{left:-18.089333pt;}
.x6c{left:-16.968000pt;}
.x76{left:-11.341400pt;}
.x0{left:0.000000pt;}
.x68{left:1.100000pt;}
.x72{left:9.564800pt;}
.x6d{left:11.352000pt;}
.x77{left:18.394600pt;}
.x2{left:26.021437pt;}
.x69{left:29.420528pt;}
.x1{left:47.621398pt;}
.x3{left:56.223489pt;}
.x4d{left:68.316000pt;}
.xa4{left:74.646667pt;}
.xa1{left:76.309333pt;}
.x50{left:91.892000pt;}
.x70{left:101.796706pt;}
.x75{left:110.626506pt;}
.x5a{left:156.732000pt;}
.x61{left:169.893333pt;}
.x51{left:173.181333pt;}
.x59{left:183.833333pt;}
.x60{left:185.465333pt;}
.x62{left:187.066667pt;}
.x4e{left:190.850667pt;}
.x1f{left:219.865333pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x42{left:232.916000pt;}
.x49{left:234.620000pt;}
.x6f{left:235.944800pt;}
.x38{left:237.278667pt;}
.x5{left:239.789333pt;}
.x48{left:245.104000pt;}
.x78{left:246.620378pt;}
.x1b{left:248.646667pt;}
.x8{left:250.204000pt;}
.x85{left:256.526667pt;}
.x2c{left:259.196000pt;}
.x39{left:261.613333pt;}
.xa5{left:263.317333pt;}
.x46{left:264.489333pt;}
.x4a{left:269.814667pt;}
.x4c{left:271.140000pt;}
.x2d{left:272.480000pt;}
.x7{left:273.625333pt;}
.x4f{left:279.348000pt;}
.x13{left:288.072000pt;}
.x2e{left:291.393333pt;}
.x41{left:293.229333pt;}
.x14{left:294.714667pt;}
.x1c{left:297.344000pt;}
.x9{left:300.094667pt;}
.x2f{left:301.422667pt;}
.xa{left:306.737333pt;}
.xb{left:310.124000pt;}
.x30{left:314.706667pt;}
.xc{left:316.765333pt;}
.xa0{left:333.994667pt;}
.x7d{left:335.910667pt;}
.x81{left:343.082667pt;}
.x33{left:344.153333pt;}
.x87{left:346.874667pt;}
.x7e{left:349.194667pt;}
.x82{left:356.365333pt;}
.x34{left:357.437333pt;}
.x86{left:363.081333pt;}
.x89{left:366.237333pt;}
.x92{left:373.936000pt;}
.x3f{left:378.294667pt;}
.x9f{left:383.834667pt;}
.x88{left:386.733333pt;}
.x40{left:391.578667pt;}
.x5d{left:395.324000pt;}
.x3d{left:403.244000pt;}
.x8a{left:408.140000pt;}
.x1d{left:411.325333pt;}
.x3e{left:416.528000pt;}
.x1e{left:417.966667pt;}
.x5b{left:421.302667pt;}
.x63{left:422.588000pt;}
.x5c{left:424.082667pt;}
.x43{left:427.542667pt;}
.x66{left:428.942667pt;}
.x9e{left:434.557333pt;}
.x31{left:437.193333pt;}
.x32{left:450.477333pt;}
.x44{left:451.429333pt;}
.x20{left:457.064000pt;}
.x21{left:463.705333pt;}
.x22{left:467.093333pt;}
.x23{left:473.734667pt;}
.x24{left:477.121333pt;}
.x64{left:482.220000pt;}
.x73{left:484.353333pt;}
.x65{left:488.861333pt;}
.x25{left:490.405333pt;}
.x7f{left:494.238667pt;}
.x80{left:507.521333pt;}
.x6a{left:519.100600pt;}
.x28{left:522.198667pt;}
.x29{left:528.841333pt;}
.x2a{left:532.094667pt;}
.x5f{left:537.525333pt;}
.x2b{left:538.737333pt;}
.x54{left:545.009333pt;}
.x56{left:547.806667pt;}
.x5e{left:549.988000pt;}
.x57{left:555.774667pt;}
.x26{left:556.890667pt;}
.x35{left:561.912000pt;}
.x37{left:563.877333pt;}
.x58{left:565.792000pt;}
.x36{left:568.554667pt;}
.x27{left:570.173333pt;}
.x52{left:571.494667pt;}
.x9b{left:574.180000pt;}
.x98{left:575.462667pt;}
.x96{left:576.881333pt;}
.x4b{left:579.056000pt;}
.x97{left:580.268000pt;}
.x8e{left:581.588000pt;}
.x83{left:582.606667pt;}
.x9c{left:584.176000pt;}
.x99{left:585.333333pt;}
.x53{left:586.965333pt;}
.x84{left:589.248000pt;}
.x8c{left:592.838667pt;}
.x93{left:594.189333pt;}
.x55{left:595.764000pt;}
.x9d{left:597.458667pt;}
.x9a{left:598.604000pt;}
.x90{left:599.988000pt;}
.x8b{left:603.688000pt;}
.x91{left:607.256000pt;}
.x3a{left:612.021333pt;}
.x45{left:614.189333pt;}
.x47{left:618.762667pt;}
.x8d{left:619.988000pt;}
.x8f{left:623.664000pt;}
.x3b{left:625.305333pt;}
.x94{left:631.882667pt;}
.x95{left:659.205333pt;}
.xf{left:663.370667pt;}
.x10{left:670.012000pt;}
.x11{left:673.266667pt;}
.x3c{left:675.817333pt;}
.x12{left:679.908000pt;}
.xd{left:693.090667pt;}
.xe{left:699.732000pt;}
.xa3{left:702.302667pt;}
.x15{left:703.397333pt;}
.x16{left:710.038667pt;}
.x17{left:713.426667pt;}
.x18{left:720.068000pt;}
.x19{left:726.842667pt;}
.x7b{left:728.082667pt;}
.x1a{left:740.126667pt;}
.x7c{left:741.365333pt;}
.xa2{left:744.190667pt;}
}




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