
    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_bf7c8dbdb3af8ccb6e44cec8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.184000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_bbba53c88b69f4be565f398e.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_9dafce14e0f53871c2954301.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191000;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_00044444d0c43c1becbaa369.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;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_8d203c83147f03caf5bf580a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.009000;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_01b04f31f970ad5c2e4d2bb6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.943000;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_16a865c7695922fa13182109.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.193359;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_7fe50028721f47a4716dbf29.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.200195;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_2891223d109933a603ed66d8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.211426;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_21a32e0d452e899a8f71dcd4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.727539;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_a6a8e1d5d2c1ca3a69ecf474.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.173340;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_7899b7f140964ec303f8808d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.193359;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_dcd5e15c154b7a1f3627f866.woff2')format("woff");}.fff{font-family:fff;line-height:1.200195;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_7abc23a9f73fa3978fd6e9f9.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.211426;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_a6a8e1d5d2c1ca3a69ecf474.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.173340;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_ba06c01818cdcd49d5160a64.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.675781;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_7899b7f140964ec303f8808d.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.193359;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_dcd5e15c154b7a1f3627f866.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.200195;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_7abc23a9f73fa3978fd6e9f9.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.211426;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_a6a8e1d5d2c1ca3a69ecf474.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.173340;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_ba06c01818cdcd49d5160a64.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.675781;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_ccfb704f26491baced18bdf1.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.193359;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_f57b90db6dde9995f6dd76ea.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.200195;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_69c9e5daed2a1cfa2d66c437.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_a6a8e1d5d2c1ca3a69ecf474.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.173340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_21a32e0d452e899a8f71dcd4.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_7a0356288d18db5914c3665d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{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);}
.m11{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);}
.m13{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);}
.m17{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);}
.m28{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);}
.m1c{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);}
.m1b{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);}
.m14{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);}
.ma{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);}
.m19{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);}
.mb{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);}
.md{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);}
.mf{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);}
.m29{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);}
.m1d{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);}
.m1a{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);}
.m15{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);}
.m23{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);}
.m3{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);}
.m8{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);}
.m25{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.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);}
.m26{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);}
.m24{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);}
.me{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);}
.m16{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);}
.mc{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);}
.m6{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);}
.m12{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);}
.m2b{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);}
.m20{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);}
.m1f{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);}
.m21{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);}
.m1e{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);}
.m2c{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);}
.m9{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);}
.m18{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m10{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);}
.m2a{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m22{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-17.358000px;}
.v2{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.000000px;}
.v3{vertical-align:32.874000px;}
.v4{vertical-align:40.322484px;}
.ls2f{letter-spacing:-0.330660px;}
.ls41{letter-spacing:-0.264528px;}
.ls2b{letter-spacing:-0.252504px;}
.ls31{letter-spacing:-0.180360px;}
.ls36{letter-spacing:-0.168336px;}
.ls32{letter-spacing:-0.138276px;}
.ls4c{letter-spacing:-0.126252px;}
.ls4d{letter-spacing:-0.120240px;}
.ls33{letter-spacing:-0.114228px;}
.ls34{letter-spacing:-0.096192px;}
.ls37{letter-spacing:-0.084168px;}
.ls2a{letter-spacing:-0.078156px;}
.ls35{letter-spacing:-0.060120px;}
.ls49{letter-spacing:-0.059400px;}
.ls4b{letter-spacing:-0.054108px;}
.ls4a{letter-spacing:-0.042084px;}
.ls47{letter-spacing:-0.038304px;}
.ls2c{letter-spacing:-0.036072px;}
.ls29{letter-spacing:-0.030060px;}
.ls26{letter-spacing:-0.028728px;}
.ls2e{letter-spacing:-0.024048px;}
.ls42{letter-spacing:-0.018036px;}
.ls48{letter-spacing:-0.014364px;}
.ls2d{letter-spacing:-0.012024px;}
.ls43{letter-spacing:-0.010800px;}
.ls28{letter-spacing:-0.006012px;}
.ls40{letter-spacing:-0.005400px;}
.ls27{letter-spacing:-0.004788px;}
.ls0{letter-spacing:0.000000px;}
.ls64{letter-spacing:0.000009px;}
.ls66{letter-spacing:0.000088px;}
.ls7{letter-spacing:0.000216px;}
.ls5c{letter-spacing:0.000422px;}
.lsd{letter-spacing:0.000435px;}
.ls2{letter-spacing:0.000600px;}
.ls61{letter-spacing:0.000676px;}
.ls5d{letter-spacing:0.000800px;}
.ls63{letter-spacing:0.001584px;}
.ls5{letter-spacing:0.001933px;}
.ls5e{letter-spacing:0.002045px;}
.ls1{letter-spacing:0.002302px;}
.ls60{letter-spacing:0.003178px;}
.ls59{letter-spacing:0.003226px;}
.ls62{letter-spacing:0.004221px;}
.ls19{letter-spacing:0.005400px;}
.ls5f{letter-spacing:0.005510px;}
.ls20{letter-spacing:0.006012px;}
.ls1e{letter-spacing:0.012024px;}
.ls1d{letter-spacing:0.018036px;}
.ls16{letter-spacing:0.024048px;}
.ls23{letter-spacing:0.030060px;}
.ls17{letter-spacing:0.032400px;}
.ls21{letter-spacing:0.036072px;}
.ls22{letter-spacing:0.042084px;}
.ls3a{letter-spacing:0.043200px;}
.ls1f{letter-spacing:0.048096px;}
.ls18{letter-spacing:0.048600px;}
.ls38{letter-spacing:0.054108px;}
.ls1b{letter-spacing:0.060120px;}
.ls15{letter-spacing:0.066132px;}
.ls24{letter-spacing:0.072144px;}
.ls1c{letter-spacing:0.078156px;}
.ls3b{letter-spacing:0.081000px;}
.ls3c{letter-spacing:0.090180px;}
.ls39{letter-spacing:0.096192px;}
.ls46{letter-spacing:0.102204px;}
.ls25{letter-spacing:0.114228px;}
.ls1a{letter-spacing:0.120240px;}
.ls45{letter-spacing:0.172368px;}
.ls14{letter-spacing:0.177156px;}
.ls30{letter-spacing:0.180360px;}
.ls44{letter-spacing:0.181944px;}
.ls13{letter-spacing:0.191520px;}
.ls3d{letter-spacing:0.192384px;}
.lsb{letter-spacing:11.954850px;}
.ls53{letter-spacing:13.226486px;}
.ls5b{letter-spacing:13.444800px;}
.ls65{letter-spacing:13.734127px;}
.ls8{letter-spacing:14.346144px;}
.ls5a{letter-spacing:14.405920px;}
.ls58{letter-spacing:14.585246px;}
.ls54{letter-spacing:14.645022px;}
.ls50{letter-spacing:14.704798px;}
.ls9{letter-spacing:14.764573px;}
.ls3e{letter-spacing:14.824349px;}
.ls3f{letter-spacing:14.942100px;}
.lse{letter-spacing:14.943900px;}
.ls52{letter-spacing:14.948522px;}
.ls3{letter-spacing:14.977944px;}
.ls56{letter-spacing:15.003676px;}
.ls11{letter-spacing:15.123227px;}
.ls10{letter-spacing:15.362329px;}
.ls4e{letter-spacing:15.601432px;}
.lsa{letter-spacing:16.677392px;}
.lsc{letter-spacing:17.155597px;}
.ls55{letter-spacing:18.948865px;}
.ls57{letter-spacing:19.128192px;}
.ls12{letter-spacing:20.503031px;}
.lsf{letter-spacing:21.519216px;}
.ls4f{letter-spacing:22.236523px;}
.ls51{letter-spacing:24.209118px;}
.ls4{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.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;}
}
.wsd8{word-spacing:-60.120000px;}
.ws78{word-spacing:-15.210360px;}
.ws77{word-spacing:-15.017976px;}
.wsbf{word-spacing:-14.993928px;}
.wsd{word-spacing:-14.943900px;}
.ws79{word-spacing:-14.849640px;}
.ws55{word-spacing:-13.449600px;}
.ws73{word-spacing:-12.161520px;}
.wsd7{word-spacing:-12.151944px;}
.ws74{word-spacing:-11.970000px;}
.ws33{word-spacing:-11.955150px;}
.wse{word-spacing:-11.357400px;}
.ws2{word-spacing:-10.460700px;}
.wse8{word-spacing:-3.907800px;}
.ws11e{word-spacing:-3.168107px;}
.ws12a{word-spacing:-3.048556px;}
.ws11c{word-spacing:-2.988780px;}
.wsa1{word-spacing:-2.831652px;}
.ws11b{word-spacing:-2.570351px;}
.ws2f{word-spacing:-2.450800px;}
.ws30{word-spacing:-2.391024px;}
.wsbc{word-spacing:-2.331248px;}
.ws12b{word-spacing:-2.271473px;}
.ws125{word-spacing:-2.151922px;}
.ws100{word-spacing:-2.122236px;}
.wsff{word-spacing:-2.116224px;}
.wse7{word-spacing:-2.110212px;}
.wsed{word-spacing:-2.098188px;}
.ws124{word-spacing:-2.092146px;}
.ws93{word-spacing:-2.080152px;}
.ws92{word-spacing:-2.062116px;}
.ws46{word-spacing:-1.972595px;}
.ws47{word-spacing:-1.912819px;}
.ws9b{word-spacing:-1.743480px;}
.ws112{word-spacing:-1.733492px;}
.ws108{word-spacing:-1.673717px;}
.ws44{word-spacing:-1.613941px;}
.ws6a{word-spacing:-1.554166px;}
.ws4b{word-spacing:-1.494390px;}
.ws13f{word-spacing:-1.398758px;}
.wse1{word-spacing:-1.382760px;}
.wsc6{word-spacing:-1.376748px;}
.wsea{word-spacing:-1.370736px;}
.ws62{word-spacing:-1.315063px;}
.wseb{word-spacing:-1.310616px;}
.wsb6{word-spacing:-1.255288px;}
.ws66{word-spacing:-1.135736px;}
.ws27{word-spacing:-1.075961px;}
.wscc{word-spacing:-1.058112px;}
.wse2{word-spacing:-1.052100px;}
.ws54{word-spacing:-1.022170px;}
.ws5e{word-spacing:-1.016185px;}
.ws53{word-spacing:-0.968371px;}
.ws90{word-spacing:-0.961920px;}
.ws5d{word-spacing:-0.956410px;}
.wsb0{word-spacing:-0.896634px;}
.wsb8{word-spacing:-0.836858px;}
.ws149{word-spacing:-0.806976px;}
.ws4d{word-spacing:-0.777083px;}
.ws115{word-spacing:-0.717307px;}
.ws6d{word-spacing:-0.657532px;}
.ws1d{word-spacing:-0.645581px;}
.wsf7{word-spacing:-0.607212px;}
.ws6e{word-spacing:-0.597756px;}
.ws182{word-spacing:-0.591782px;}
.ws67{word-spacing:-0.537980px;}
.wsf8{word-spacing:-0.517032px;}
.ws57{word-spacing:-0.484186px;}
.ws22{word-spacing:-0.478205px;}
.ws23{word-spacing:-0.418429px;}
.ws165{word-spacing:-0.376589px;}
.ws24{word-spacing:-0.358654px;}
.wsa7{word-spacing:-0.342684px;}
.ws13{word-spacing:-0.322790px;}
.ws2d{word-spacing:-0.298878px;}
.ws9d{word-spacing:-0.288576px;}
.wsaa{word-spacing:-0.282564px;}
.ws7d{word-spacing:-0.277704px;}
.wsad{word-spacing:-0.276552px;}
.wsdc{word-spacing:-0.272916px;}
.ws12{word-spacing:-0.268992px;}
.wscf{word-spacing:-0.264528px;}
.ws94{word-spacing:-0.240480px;}
.ws28{word-spacing:-0.239102px;}
.wsef{word-spacing:-0.234468px;}
.ws89{word-spacing:-0.228456px;}
.ws144{word-spacing:-0.223773px;}
.ws1e{word-spacing:-0.215194px;}
.ws29{word-spacing:-0.179327px;}
.wsa4{word-spacing:-0.174348px;}
.ws1c{word-spacing:-0.161395px;}
.ws105{word-spacing:-0.150300px;}
.ws25{word-spacing:-0.119551px;}
.ws178{word-spacing:-0.110930px;}
.ws13a{word-spacing:-0.107597px;}
.ws7e{word-spacing:-0.081396px;}
.wsdd{word-spacing:-0.076608px;}
.ws75{word-spacing:-0.060120px;}
.wsc{word-spacing:-0.059776px;}
.ws7c{word-spacing:-0.057456px;}
.ws76{word-spacing:-0.054000px;}
.ws56{word-spacing:-0.053798px;}
.wsdb{word-spacing:-0.052668px;}
.wsf{word-spacing:-0.047821px;}
.ws3{word-spacing:-0.041843px;}
.ws14a{word-spacing:-0.013920px;}
.ws175{word-spacing:-0.012326px;}
.ws85{word-spacing:-0.012024px;}
.ws152{word-spacing:-0.011933px;}
.ws184{word-spacing:-0.010637px;}
.ws17a{word-spacing:-0.010512px;}
.ws134{word-spacing:-0.010339px;}
.ws15b{word-spacing:-0.009638px;}
.ws157{word-spacing:-0.009302px;}
.ws163{word-spacing:-0.008976px;}
.ws16d{word-spacing:-0.008822px;}
.ws166{word-spacing:-0.008746px;}
.ws14f{word-spacing:-0.008467px;}
.ws17d{word-spacing:-0.007786px;}
.ws154{word-spacing:-0.007661px;}
.ws17b{word-spacing:-0.007594px;}
.ws135{word-spacing:-0.007354px;}
.ws13b{word-spacing:-0.007200px;}
.ws17f{word-spacing:-0.006710px;}
.ws139{word-spacing:-0.006490px;}
.ws141{word-spacing:-0.005933px;}
.ws179{word-spacing:-0.005818px;}
.ws156{word-spacing:-0.003754px;}
.ws16c{word-spacing:-0.003734px;}
.ws173{word-spacing:-0.003658px;}
.ws185{word-spacing:-0.003466px;}
.ws16b{word-spacing:-0.003427px;}
.ws151{word-spacing:-0.003302px;}
.ws136{word-spacing:-0.002534px;}
.ws150{word-spacing:-0.002006px;}
.ws147{word-spacing:-0.001843px;}
.ws168{word-spacing:-0.001354px;}
.ws4{word-spacing:-0.000026px;}
.ws0{word-spacing:0.000000px;}
.ws32{word-spacing:0.003599px;}
.wsc5{word-spacing:0.018036px;}
.wsd4{word-spacing:0.030060px;}
.ws107{word-spacing:0.036072px;}
.wsf1{word-spacing:0.042084px;}
.wsee{word-spacing:0.048096px;}
.ws52{word-spacing:0.053798px;}
.wsa3{word-spacing:0.054108px;}
.ws49{word-spacing:0.059776px;}
.wsa6{word-spacing:0.060120px;}
.ws9f{word-spacing:0.066132px;}
.ws83{word-spacing:0.072144px;}
.ws9e{word-spacing:0.084168px;}
.wsac{word-spacing:0.096192px;}
.wsaf{word-spacing:0.102204px;}
.wsd1{word-spacing:0.102600px;}
.ws15{word-spacing:0.107597px;}
.wsce{word-spacing:0.108216px;}
.wsd2{word-spacing:0.114228px;}
.ws39{word-spacing:0.119551px;}
.wsae{word-spacing:0.120240px;}
.wsd3{word-spacing:0.132264px;}
.ws87{word-spacing:0.135000px;}
.wsd0{word-spacing:0.140400px;}
.ws106{word-spacing:0.144288px;}
.wsa5{word-spacing:0.150300px;}
.ws86{word-spacing:0.151200px;}
.ws58{word-spacing:0.161395px;}
.ws84{word-spacing:0.174348px;}
.ws88{word-spacing:0.178200px;}
.ws2b{word-spacing:0.179327px;}
.wsf0{word-spacing:0.186372px;}
.wsc4{word-spacing:0.189000px;}
.wsa2{word-spacing:0.204408px;}
.ws1a{word-spacing:0.215194px;}
.wsdf{word-spacing:0.237600px;}
.ws2c{word-spacing:0.239102px;}
.wsab{word-spacing:0.258516px;}
.ws132{word-spacing:0.268992px;}
.ws42{word-spacing:0.298878px;}
.ws143{word-spacing:0.322790px;}
.ws60{word-spacing:0.358654px;}
.ws91{word-spacing:0.378756px;}
.ws26{word-spacing:0.418429px;}
.wsc9{word-spacing:0.426852px;}
.ws16a{word-spacing:0.430387px;}
.wsf5{word-spacing:0.474948px;}
.wsca{word-spacing:0.480960px;}
.ws126{word-spacing:0.537980px;}
.ws11{word-spacing:0.537984px;}
.ws6c{word-spacing:0.597756px;}
.wsf6{word-spacing:0.631260px;}
.wsd9{word-spacing:0.657532px;}
.ws15d{word-spacing:0.753178px;}
.ws5b{word-spacing:0.777083px;}
.ws3e{word-spacing:0.836858px;}
.ws142{word-spacing:0.860774px;}
.ws170{word-spacing:0.914573px;}
.ws10d{word-spacing:0.956410px;}
.ws3d{word-spacing:1.016185px;}
.ws16f{word-spacing:1.022170px;}
.ws2e{word-spacing:1.075961px;}
.ws145{word-spacing:1.075968px;}
.ws65{word-spacing:1.195512px;}
.ws10a{word-spacing:1.315063px;}
.ws19{word-spacing:1.344960px;}
.ws3a{word-spacing:1.374839px;}
.wsb{word-spacing:1.380812px;}
.ws128{word-spacing:1.494390px;}
.ws183{word-spacing:1.506355px;}
.ws103{word-spacing:1.521036px;}
.ws7a{word-spacing:1.554166px;}
.ws69{word-spacing:1.613941px;}
.ws160{word-spacing:1.613952px;}
.ws17e{word-spacing:1.667750px;}
.ws5c{word-spacing:1.673717px;}
.ws9a{word-spacing:1.707408px;}
.ws180{word-spacing:1.721549px;}
.ws43{word-spacing:1.733492px;}
.ws148{word-spacing:1.775347px;}
.wsbb{word-spacing:1.793268px;}
.wscb{word-spacing:1.833660px;}
.ws35{word-spacing:1.853044px;}
.wsf2{word-spacing:1.857708px;}
.wscd{word-spacing:1.881756px;}
.ws13d{word-spacing:1.882944px;}
.wse9{word-spacing:1.905804px;}
.ws114{word-spacing:1.912819px;}
.ws3f{word-spacing:1.972595px;}
.ws15e{word-spacing:2.025251px;}
.ws12e{word-spacing:2.032370px;}
.ws6b{word-spacing:2.092146px;}
.wsb7{word-spacing:2.151922px;}
.ws8f{word-spacing:2.194380px;}
.wsc7{word-spacing:2.200392px;}
.wsba{word-spacing:2.271473px;}
.wsc8{word-spacing:2.314620px;}
.ws7b{word-spacing:2.331248px;}
.ws5f{word-spacing:2.391024px;}
.ws164{word-spacing:2.420928px;}
.ws59{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws120{word-spacing:2.570351px;}
.ws155{word-spacing:2.582323px;}
.ws172{word-spacing:2.625958px;}
.wsc2{word-spacing:2.630126px;}
.ws171{word-spacing:2.636122px;}
.wsb9{word-spacing:2.689902px;}
.ws153{word-spacing:2.689920px;}
.ws122{word-spacing:2.749678px;}
.wsb4{word-spacing:2.809453px;}
.ws17c{word-spacing:2.851315px;}
.ws137{word-spacing:2.857571px;}
.ws8e{word-spacing:2.867724px;}
.ws138{word-spacing:2.905114px;}
.wsec{word-spacing:2.921832px;}
.ws36{word-spacing:2.929004px;}
.ws8d{word-spacing:2.945880px;}
.ws12f{word-spacing:2.988780px;}
.ws123{word-spacing:3.048556px;}
.ws13c{word-spacing:3.066509px;}
.ws34{word-spacing:3.108331px;}
.ws130{word-spacing:3.168107px;}
.ws14b{word-spacing:3.174106px;}
.ws146{word-spacing:3.216547px;}
.ws176{word-spacing:3.218112px;}
.ws15a{word-spacing:3.219312px;}
.ws15c{word-spacing:3.219907px;}
.ws169{word-spacing:3.219994px;}
.ws15f{word-spacing:3.220118px;}
.ws13e{word-spacing:3.223018px;}
.ws186{word-spacing:3.223066px;}
.ws181{word-spacing:3.223219px;}
.ws159{word-spacing:3.223949px;}
.ws162{word-spacing:3.224630px;}
.ws131{word-spacing:3.224822px;}
.ws14c{word-spacing:3.226502px;}
.ws45{word-spacing:3.227882px;}
.ws133{word-spacing:3.227904px;}
.ws116{word-spacing:3.287658px;}
.ws1b{word-spacing:3.335501px;}
.wsda{word-spacing:3.347434px;}
.ws16e{word-spacing:3.389299px;}
.ws71{word-spacing:3.407209px;}
.ws4c{word-spacing:3.466985px;}
.ws167{word-spacing:3.496896px;}
.ws63{word-spacing:3.526760px;}
.ws16{word-spacing:3.550694px;}
.ws21{word-spacing:3.586536px;}
.ws161{word-spacing:3.604493px;}
.ws4f{word-spacing:3.646312px;}
.wse5{word-spacing:3.649284px;}
.ws31{word-spacing:3.706087px;}
.wse6{word-spacing:3.715416px;}
.ws109{word-spacing:3.765863px;}
.ws129{word-spacing:3.885414px;}
.ws140{word-spacing:3.927283px;}
.ws3c{word-spacing:3.945190px;}
.wse0{word-spacing:4.010004px;}
.ws95{word-spacing:4.064112px;}
.ws5a{word-spacing:4.064741px;}
.wsb1{word-spacing:4.124516px;}
.ws37{word-spacing:4.184292px;}
.ws12d{word-spacing:4.244068px;}
.ws61{word-spacing:4.303843px;}
.ws174{word-spacing:4.303872px;}
.ws14e{word-spacing:4.357670px;}
.ws14d{word-spacing:4.411469px;}
.ws38{word-spacing:4.423394px;}
.ws80{word-spacing:4.424832px;}
.wse3{word-spacing:4.454892px;}
.wse4{word-spacing:4.490964px;}
.ws177{word-spacing:4.519066px;}
.ws10{word-spacing:4.521802px;}
.ws68{word-spacing:4.542946px;}
.ws72{word-spacing:4.602721px;}
.ws119{word-spacing:4.662497px;}
.ws14{word-spacing:4.680461px;}
.ws82{word-spacing:4.713408px;}
.wsb3{word-spacing:4.722272px;}
.ws10c{word-spacing:4.782048px;}
.ws17{word-spacing:4.788058px;}
.ws81{word-spacing:4.809600px;}
.ws48{word-spacing:4.841824px;}
.ws111{word-spacing:4.901599px;}
.ws18{word-spacing:4.949453px;}
.ws20{word-spacing:5.003251px;}
.ws4a{word-spacing:5.021150px;}
.ws6f{word-spacing:5.080926px;}
.ws70{word-spacing:5.140702px;}
.ws11f{word-spacing:5.200477px;}
.ws11d{word-spacing:5.320028px;}
.wsf9{word-spacing:5.422824px;}
.ws9{word-spacing:5.481407px;}
.wsfa{word-spacing:5.500980px;}
.wsfc{word-spacing:5.543064px;}
.ws121{word-spacing:5.559131px;}
.wsfb{word-spacing:5.585148px;}
.ws12c{word-spacing:5.678682px;}
.wsc1{word-spacing:5.977560px;}
.ws10f{word-spacing:6.037336px;}
.ws10e{word-spacing:6.097111px;}
.ws10b{word-spacing:6.156887px;}
.ws158{word-spacing:6.294413px;}
.ws4e{word-spacing:6.336214px;}
.ws11a{word-spacing:6.395989px;}
.wsbd{word-spacing:6.575316px;}
.ws101{word-spacing:6.577128px;}
.ws102{word-spacing:6.691356px;}
.ws117{word-spacing:6.754643px;}
.ws118{word-spacing:6.814418px;}
.wsb5{word-spacing:6.874194px;}
.wsd6{word-spacing:7.053521px;}
.ws127{word-spacing:7.352399px;}
.wsd5{word-spacing:7.471950px;}
.ws2a{word-spacing:7.651277px;}
.wsfe{word-spacing:7.665300px;}
.wsfd{word-spacing:7.773516px;}
.ws110{word-spacing:7.830604px;}
.ws40{word-spacing:7.950155px;}
.ws41{word-spacing:8.009930px;}
.wsbe{word-spacing:8.069706px;}
.ws3b{word-spacing:8.249033px;}
.ws8b{word-spacing:9.384732px;}
.ws104{word-spacing:9.432828px;}
.ws8a{word-spacing:9.468900px;}
.ws8c{word-spacing:9.480924px;}
.ws7{word-spacing:9.833058px;}
.ws113{word-spacing:10.640057px;}
.wsde{word-spacing:11.615688px;}
.ws7f{word-spacing:11.620476px;}
.ws8{word-spacing:11.841512px;}
.ws1f{word-spacing:13.464844px;}
.wsf3{word-spacing:14.074092px;}
.wsf4{word-spacing:14.110164px;}
.ws64{word-spacing:14.704798px;}
.wsa8{word-spacing:14.735412px;}
.ws5{word-spacing:15.481836px;}
.wsa{word-spacing:16.067635px;}
.wsa9{word-spacing:16.677288px;}
.ws98{word-spacing:20.200320px;}
.ws96{word-spacing:21.354624px;}
.ws6{word-spacing:22.339429px;}
.ws99{word-spacing:26.723340px;}
.ws9c{word-spacing:34.785432px;}
.wsa0{word-spacing:36.090036px;}
.ws51{word-spacing:152.191248px;}
.ws97{word-spacing:161.356068px;}
.wsc0{word-spacing:211.690800px;}
.wsb2{word-spacing:263.450765px;}
.ws50{word-spacing:451.787069px;}
.wsc3{word-spacing:1601.858698px;}
._56{margin-left:-26.540366px;}
._59{margin-left:-24.628550px;}
._53{margin-left:-22.963404px;}
._5a{margin-left:-20.913221px;}
._7{margin-left:-11.943245px;}
._52{margin-left:-7.681169px;}
._14{margin-left:-6.635092px;}
._0{margin-left:-5.399599px;}
._2{margin-left:-3.849538px;}
._1a{margin-left:-2.582323px;}
._5{margin-left:-1.464498px;}
._1d{width:1.254456px;}
._8{width:2.998354px;}
._55{width:6.694867px;}
._10{width:11.536682px;}
._1{width:12.971268px;}
._a{width:14.820583px;}
._b{width:16.408512px;}
._e{width:18.203618px;}
._d{width:19.528819px;}
._f{width:21.088973px;}
._16{width:22.953830px;}
._58{width:24.149342px;}
._3{width:25.314894px;}
._c{width:27.126335px;}
._13{width:28.393410px;}
._15{width:29.917675px;}
._4{width:31.256572px;}
._6{width:33.355008px;}
._57{width:34.968726px;}
._54{width:37.528980px;}
._21{width:38.973691px;}
._4f{width:41.245309px;}
._22{width:43.217759px;}
._9{width:54.531778px;}
._1c{width:333.826790px;}
._1f{width:369.541210px;}
._20{width:375.082445px;}
._1b{width:393.435418px;}
._44{width:460.767065px;}
._19{width:533.526451px;}
._43{width:658.087655px;}
._17{width:661.558925px;}
._4e{width:764.231898px;}
._47{width:797.945606px;}
._18{width:801.679810px;}
._31{width:813.297910px;}
._2a{width:820.827954px;}
._46{width:861.750509px;}
._3c{width:865.803277px;}
._45{width:872.725382px;}
._11{width:881.291644px;}
._36{width:898.064429px;}
._3f{width:902.601383px;}
._35{width:919.083452px;}
._3a{width:947.523047px;}
._4d{width:961.456832px;}
._4b{width:989.324404px;}
._4c{width:991.368743px;}
._34{width:1022.733210px;}
._40{width:1051.031168px;}
._49{width:1079.544320px;}
._48{width:1089.443226px;}
._3b{width:1134.257293px;}
._41{width:1137.090720px;}
._30{width:1139.019725px;}
._32{width:1161.210292px;}
._29{width:1193.647680px;}
._33{width:1196.071655px;}
._2e{width:1312.602589px;}
._2d{width:1349.346896px;}
._37{width:1367.957543px;}
._4a{width:1375.919706px;}
._27{width:1380.779622px;}
._3e{width:1408.073261px;}
._2f{width:1409.537759px;}
._2b{width:1420.038619px;}
._26{width:1421.565030px;}
._42{width:1455.487540px;}
._3d{width:1476.522714px;}
._28{width:1497.771418px;}
._39{width:1510.415706px;}
._38{width:1546.865395px;}
._2c{width:1570.619716px;}
._23{width:1613.668896px;}
._25{width:1667.800944px;}
._24{width:1726.015140px;}
._51{width:2080.802556px;}
._1e{width:2105.489484px;}
._50{width:2512.806803px;}
._12{width:2536.716803px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:45.429600px;}
.fsa{font-size:47.820600px;}
.fsc{font-size:47.880000px;}
.fsb{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.y17a{bottom:-836.566050px;}
.y191{bottom:-774.195465px;}
.y190{bottom:-753.945546px;}
.y18f{bottom:-733.695627px;}
.y18e{bottom:-713.445708px;}
.y18d{bottom:-693.195789px;}
.y18c{bottom:-673.036050px;}
.y18b{bottom:-652.786050px;}
.y1fc{bottom:-647.731050px;}
.y18a{bottom:-631.725018px;}
.y189{bottom:-621.645900px;}
.y219{bottom:-588.679125px;}
.y188{bottom:-582.225600px;}
.y218{bottom:-569.419683px;}
.y217{bottom:-550.160241px;}
.y187{bottom:-546.946050px;}
.y216{bottom:-530.990979px;}
.y186{bottom:-524.443755px;}
.y215{bottom:-511.731537px;}
.y214{bottom:-492.562275px;}
.y213{bottom:-473.302833px;}
.y212{bottom:-454.043391px;}
.y211{bottom:-434.874129px;}
.y210{bottom:-415.614687px;}
.y20f{bottom:-396.445425px;}
.y20e{bottom:-377.185983px;}
.y20d{bottom:-353.515236px;}
.y20c{bottom:-329.755812px;}
.y1a7{bottom:-311.957550px;}
.y20b{bottom:-306.085065px;}
.ye8{bottom:-287.173050px;}
.y20a{bottom:-268.825695px;}
.y1be{bottom:-249.586965px;}
.y209{bottom:-249.566253px;}
.y208{bottom:-230.306811px;}
.y1bd{bottom:-229.337046px;}
.y185{bottom:-214.214034px;}
.y207{bottom:-211.137549px;}
.yf7{bottom:-210.763050px;}
.y1bc{bottom:-209.087127px;}
.y184{bottom:-194.954592px;}
.y206{bottom:-191.878107px;}
.yf6{bottom:-189.253050px;}
.yf5{bottom:-189.250647px;}
.y1bb{bottom:-188.837208px;}
.y183{bottom:-175.785330px;}
.y205{bottom:-172.618665px;}
.yf4{bottom:-169.991205px;}
.y1ba{bottom:-168.587289px;}
.y182{bottom:-156.525888px;}
.y204{bottom:-153.447900px;}
.yf3{bottom:-150.821943px;}
.y1b9{bottom:-148.427550px;}
.y181{bottom:-137.355123px;}
.y203{bottom:-134.188458px;}
.yf2{bottom:-131.562501px;}
.y1b8{bottom:-128.177550px;}
.y180{bottom:-118.095681px;}
.y202{bottom:-115.019196px;}
.yf1{bottom:-112.393239px;}
.y1b7{bottom:-107.116518px;}
.y17f{bottom:-98.836239px;}
.y1b6{bottom:-97.037400px;}
.y201{bottom:-95.759754px;}
.yf0{bottom:-93.133797px;}
.y17e{bottom:-79.665474px;}
.y200{bottom:-76.500312px;}
.yef{bottom:-69.463050px;}
.y1b5{bottom:-57.617100px;}
.y1ff{bottom:-57.331050px;}
.y17d{bottom:-55.906050px;}
.yee{bottom:-32.653050px;}
.y1b4{bottom:-22.337550px;}
.y1fe{bottom:-20.521050px;}
.y17c{bottom:-19.096050px;}
.yed{bottom:-5.652195px;}
.y0{bottom:0.000000px;}
.y1b3{bottom:0.164745px;}
.y1fd{bottom:1.978950px;}
.y17b{bottom:3.403950px;}
.y199{bottom:14.833950px;}
.y116{bottom:28.006950px;}
.y118{bottom:28.276266px;}
.y69{bottom:31.890000px;}
.y192{bottom:32.383950px;}
.y7{bottom:35.925007px;}
.y117{bottom:52.666950px;}
.y193{bottom:66.403950px;}
.y6{bottom:66.525004px;}
.y5{bottom:97.125005px;}
.y10d{bottom:99.467589px;}
.y194{bottom:100.423950px;}
.y151{bottom:103.621500px;}
.y3a{bottom:104.646000px;}
.y68{bottom:105.067500px;}
.yd6{bottom:106.021500px;}
.y236{bottom:108.246000px;}
.y10b{bottom:112.786416px;}
.y2c8{bottom:114.664500px;}
.y315{bottom:116.458500px;}
.y26f{bottom:116.907000px;}
.y295{bottom:117.804000px;}
.y25e{bottom:118.251000px;}
.ye4{bottom:119.148000px;}
.y2df{bottom:120.987000px;}
.y150{bottom:122.449500px;}
.y39{bottom:122.535000px;}
.y67{bottom:123.897000px;}
.y10c{bottom:123.946950px;}
.yd5{bottom:124.851000px;}
.y235{bottom:127.075500px;}
.y2c7{bottom:133.494000px;}
.y314{bottom:133.719000px;}
.y195{bottom:134.443950px;}
.y26e{bottom:135.736500px;}
.y294{bottom:136.632000px;}
.y25d{bottom:137.080500px;}
.y10a{bottom:137.177100px;}
.ye3{bottom:137.977500px;}
.y2de{bottom:138.246000px;}
.y9f{bottom:138.426000px;}
.y24{bottom:139.264499px;}
.y38{bottom:140.422500px;}
.y14f{bottom:141.279000px;}
.y66{bottom:142.726500px;}
.yd4{bottom:143.680500px;}
.y234{bottom:145.905000px;}
.y313{bottom:150.978000px;}
.y2c6{bottom:152.323500px;}
.y26d{bottom:154.566000px;}
.y293{bottom:155.461500px;}
.y2dd{bottom:155.506500px;}
.y25c{bottom:155.910000px;}
.ye2{bottom:156.807000px;}
.y9e{bottom:157.255500px;}
.y37{bottom:158.310000px;}
.y14e{bottom:160.108500px;}
.y1ce{bottom:161.440500px;}
.y65{bottom:161.556000px;}
.y109{bottom:162.376266px;}
.yd3{bottom:162.510000px;}
.y233{bottom:164.734500px;}
.y312{bottom:168.238500px;}
.y196{bottom:168.463950px;}
.y2c5{bottom:171.153000px;}
.y2dc{bottom:172.767000px;}
.y26c{bottom:173.395500px;}
.y292{bottom:174.291000px;}
.ye1{bottom:175.636500px;}
.y9d{bottom:176.085000px;}
.y36{bottom:176.199000px;}
.y14d{bottom:178.938000px;}
.y25b{bottom:179.223000px;}
.y1cd{bottom:180.345000px;}
.y64{bottom:180.385500px;}
.yd2{bottom:181.339500px;}
.y232{bottom:183.564000px;}
.y120{bottom:183.618000px;}
.y311{bottom:185.499000px;}
.y108{bottom:186.766950px;}
.y2c4{bottom:189.982500px;}
.y2db{bottom:190.027500px;}
.y176{bottom:191.631000px;}
.y26b{bottom:192.225000px;}
.y291{bottom:193.120500px;}
.y35{bottom:194.086500px;}
.ye0{bottom:194.466000px;}
.y9c{bottom:194.914500px;}
.y1b{bottom:196.933500px;}
.y63{bottom:199.215000px;}
.y1cc{bottom:199.249500px;}
.y1f8{bottom:199.987500px;}
.yd1{bottom:200.169000px;}
.y14c{bottom:202.251000px;}
.y231{bottom:202.392000px;}
.y11f{bottom:202.447500px;}
.y197{bottom:202.483950px;}
.y310{bottom:202.759500px;}
.y2da{bottom:207.288000px;}
.y2c3{bottom:208.812000px;}
.y23{bottom:209.518500px;}
.y1a{bottom:209.533503px;}
.y175{bottom:210.460500px;}
.y26a{bottom:211.054500px;}
.y290{bottom:211.950000px;}
.y34{bottom:211.974000px;}
.y25a{bottom:212.847000px;}
.ydf{bottom:213.295500px;}
.y9b{bottom:213.744000px;}
.y62{bottom:218.044500px;}
.y1cb{bottom:218.152500px;}
.y1f7{bottom:218.817000px;}
.yd0{bottom:218.998500px;}
.y30f{bottom:220.020000px;}
.y107{bottom:221.056950px;}
.y230{bottom:221.221500px;}
.y11e{bottom:221.277000px;}
.y22{bottom:222.118502px;}
.y19{bottom:222.133505px;}
.y2d9{bottom:224.548500px;}
.y2c2{bottom:227.641500px;}
.y174{bottom:229.290000px;}
.y33{bottom:229.863000px;}
.y111{bottom:229.876950px;}
.y269{bottom:229.884000px;}
.y28f{bottom:230.779500px;}
.y259{bottom:231.676500px;}
.yde{bottom:232.125000px;}
.y9a{bottom:232.573500px;}
.y21{bottom:234.718504px;}
.y18{bottom:234.733496px;}
.y14b{bottom:235.875000px;}
.y198{bottom:236.503950px;}
.y61{bottom:236.874000px;}
.y1ca{bottom:237.057000px;}
.y30e{bottom:237.280500px;}
.y1f6{bottom:237.646500px;}
.ycf{bottom:237.828000px;}
.y22f{bottom:240.051000px;}
.y11d{bottom:240.106500px;}
.y2d8{bottom:241.809000px;}
.y2c1{bottom:246.471000px;}
.y173{bottom:248.119500px;}
.y268{bottom:248.712000px;}
.y28e{bottom:249.609000px;}
.y258{bottom:250.506000px;}
.ydd{bottom:250.954500px;}
.y99{bottom:251.403000px;}
.y30d{bottom:254.541000px;}
.y14a{bottom:254.704500px;}
.y60{bottom:255.703500px;}
.y1f5{bottom:256.476000px;}
.yce{bottom:256.657500px;}
.y106{bottom:258.407589px;}
.y22e{bottom:258.880500px;}
.y11c{bottom:258.936000px;}
.y2d7{bottom:259.069500px;}
.y20{bottom:259.918497px;}
.y17{bottom:259.933500px;}
.y1c9{bottom:263.163000px;}
.y2c0{bottom:265.300500px;}
.y172{bottom:266.949000px;}
.y257{bottom:269.335500px;}
.ydc{bottom:269.784000px;}
.y98{bottom:270.232500px;}
.y30c{bottom:271.801500px;}
.y267{bottom:272.025000px;}
.y1f{bottom:272.518500px;}
.y16{bottom:272.533503px;}
.y28d{bottom:272.922000px;}
.y149{bottom:273.534000px;}
.y5f{bottom:274.533000px;}
.y1f4{bottom:275.305500px;}
.ycd{bottom:275.487000px;}
.y2d6{bottom:276.330000px;}
.y22d{bottom:277.710000px;}
.y11b{bottom:277.765500px;}
.y105{bottom:282.886950px;}
.y2bf{bottom:284.130000px;}
.y1e{bottom:285.118502px;}
.y15{bottom:285.133499px;}
.y171{bottom:285.778500px;}
.y256{bottom:288.165000px;}
.ydb{bottom:288.613500px;}
.y97{bottom:289.062000px;}
.y266{bottom:292.200000px;}
.y148{bottom:292.363500px;}
.y5e{bottom:293.362500px;}
.y2d5{bottom:293.589000px;}
.y1f3{bottom:294.135000px;}
.ycc{bottom:294.316500px;}
.y1c8{bottom:296.509500px;}
.y22c{bottom:296.539500px;}
.y32{bottom:297.166500px;}
.y179{bottom:299.594085px;}
.y11a{bottom:301.078500px;}
.y2be{bottom:302.959500px;}
.y30b{bottom:306.321000px;}
.y28c{bottom:306.546000px;}
.y255{bottom:306.994500px;}
.yda{bottom:307.443000px;}
.y96{bottom:307.891500px;}
.y170{bottom:309.091500px;}
.y178{bottom:309.223950px;}
.y104{bottom:310.246266px;}
.y1d{bottom:310.318501px;}
.y14{bottom:310.333501px;}
.y1b2{bottom:310.394466px;}
.y2d4{bottom:310.849500px;}
.y147{bottom:311.193000px;}
.y5d{bottom:312.192000px;}
.y1f2{bottom:312.964500px;}
.ycb{bottom:313.146000px;}
.y31{bottom:315.054000px;}
.y22b{bottom:315.369000px;}
.y2bd{bottom:321.789000px;}
.y1c{bottom:322.918500px;}
.y13{bottom:322.933500px;}
.y30a{bottom:323.581500px;}
.y28b{bottom:325.375500px;}
.y254{bottom:325.824000px;}
.y1c7{bottom:326.202000px;}
.yd9{bottom:326.272500px;}
.y95{bottom:326.719500px;}
.y2d3{bottom:328.110000px;}
.y1b1{bottom:329.653908px;}
.y146{bottom:330.022500px;}
.y5c{bottom:331.021500px;}
.y119{bottom:331.506000px;}
.y1f1{bottom:331.794000px;}
.yca{bottom:331.975500px;}
.y30{bottom:332.941500px;}
.y22a{bottom:334.198500px;}
.y103{bottom:334.636950px;}
.y2bc{bottom:340.618500px;}
.y309{bottom:340.842000px;}
.y28a{bottom:344.205000px;}
.y253{bottom:344.653500px;}
.yd8{bottom:345.102000px;}
.y2d2{bottom:345.370500px;}
.y94{bottom:345.549000px;}
.y12{bottom:348.133500px;}
.y1a4{bottom:348.631500px;}
.y1b0{bottom:348.823170px;}
.y145{bottom:348.852000px;}
.y5b{bottom:349.851000px;}
.y1f0{bottom:350.623500px;}
.yc9{bottom:350.805000px;}
.y2f{bottom:350.830500px;}
.y16f{bottom:352.155000px;}
.y100{bottom:355.426905px;}
.ye5{bottom:356.923500px;}
.y229{bottom:357.511500px;}
.y308{bottom:358.102500px;}
.y2bb{bottom:359.448000px;}
.y2d1{bottom:362.631000px;}
.y289{bottom:363.034500px;}
.y252{bottom:363.483000px;}
.y93{bottom:364.378500px;}
.y144{bottom:367.681500px;}
.y1af{bottom:368.082612px;}
.yd7{bottom:368.413500px;}
.y5a{bottom:368.680500px;}
.y1ef{bottom:369.453000px;}
.yc8{bottom:369.634500px;}
.y16e{bottom:371.059500px;}
.y307{bottom:375.363000px;}
.y2e{bottom:377.685000px;}
.y228{bottom:377.686500px;}
.y2ba{bottom:378.277500px;}
.yff{bottom:379.817589px;}
.y2d0{bottom:379.891500px;}
.y288{bottom:381.864000px;}
.y251{bottom:382.312500px;}
.y92{bottom:383.208000px;}
.y143{bottom:386.511000px;}
.y11{bottom:386.785499px;}
.y1ae{bottom:387.253377px;}
.y59{bottom:387.510000px;}
.y1ee{bottom:388.282500px;}
.yc7{bottom:388.464000px;}
.y16d{bottom:389.962500px;}
.y306{bottom:392.623500px;}
.y2d{bottom:395.572500px;}
.y2b9{bottom:397.107000px;}
.y2cf{bottom:397.152000px;}
.y227{bottom:397.860000px;}
.y169{bottom:400.506000px;}
.y287{bottom:400.693500px;}
.y250{bottom:401.142000px;}
.y91{bottom:402.037500px;}
.yfe{bottom:404.296950px;}
.y142{bottom:405.340500px;}
.y1ad{bottom:406.512819px;}
.y10{bottom:408.044999px;}
.y16c{bottom:408.867000px;}
.y305{bottom:409.884000px;}
.y58{bottom:410.823000px;}
.y1ed{bottom:411.595500px;}
.yc6{bottom:411.777000px;}
.y2c{bottom:413.460000px;}
.y2b8{bottom:415.936500px;}
.y2ce{bottom:418.894500px;}
.y286{bottom:419.523000px;}
.y24f{bottom:419.971500px;}
.y90{bottom:420.867000px;}
.y1ac{bottom:425.772261px;}
.y304{bottom:427.144500px;}
.y16b{bottom:427.770000px;}
.y2b{bottom:431.349000px;}
.y226{bottom:431.484000px;}
.y2b7{bottom:434.766000px;}
.y102{bottom:436.606446px;}
.y285{bottom:438.352500px;}
.y24e{bottom:438.801000px;}
.y8f{bottom:439.696500px;}
.y303{bottom:444.403500px;}
.y1ab{bottom:444.943026px;}
.y141{bottom:445.207500px;}
.yc5{bottom:445.401000px;}
.y16a{bottom:446.674500px;}
.y2a{bottom:449.236500px;}
.y225{bottom:450.313500px;}
.y2cd{bottom:452.518500px;}
.y2b6{bottom:453.595500px;}
.y1ec{bottom:454.659000px;}
.y284{bottom:457.182000px;}
.y24d{bottom:457.630500px;}
.y8e{bottom:458.526000px;}
.y101{bottom:460.906950px;}
.y302{bottom:461.664000px;}
.yc4{bottom:464.230500px;}
.y140{bottom:464.791500px;}
.y29{bottom:467.124000px;}
.y1aa{bottom:468.702450px;}
.y224{bottom:469.143000px;}
.y110{bottom:470.177589px;}
.y2b5{bottom:472.425000px;}
.y168{bottom:472.780500px;}
.y1eb{bottom:473.562000px;}
.y283{bottom:476.011500px;}
.y24c{bottom:476.458500px;}
.y8d{bottom:477.355500px;}
.y301{bottom:478.924500px;}
.y2cc{bottom:479.059500px;}
.y13f{bottom:481.230000px;}
.y57{bottom:482.469000px;}
.yc3{bottom:483.058500px;}
.yf{bottom:484.864502px;}
.y28{bottom:485.013000px;}
.y223{bottom:487.972500px;}
.yfd{bottom:488.176266px;}
.y1fb{bottom:488.429085px;}
.y2b4{bottom:491.254500px;}
.y167{bottom:491.685000px;}
.y1ea{bottom:492.466500px;}
.y10f{bottom:494.656950px;}
.y282{bottom:494.841000px;}
.y24b{bottom:495.288000px;}
.y8c{bottom:496.185000px;}
.y13e{bottom:497.667000px;}
.y1fa{bottom:498.058950px;}
.yc2{bottom:501.888000px;}
.y56{bottom:501.925500px;}
.ye{bottom:502.864502px;}
.y27{bottom:502.900500px;}
.y1a9{bottom:505.512450px;}
.y222{bottom:506.802000px;}
.y2b3{bottom:510.082500px;}
.y166{bottom:510.589500px;}
.y1e9{bottom:511.371000px;}
.yfc{bottom:512.566950px;}
.y300{bottom:513.445500px;}
.y13a{bottom:514.105500px;}
.y24a{bottom:514.117500px;}
.y2cb{bottom:514.566000px;}
.y8b{bottom:515.014500px;}
.y281{bottom:518.152500px;}
.y265{bottom:518.601000px;}
.yc1{bottom:520.717500px;}
.y26{bottom:520.788000px;}
.yd{bottom:520.864502px;}
.y162{bottom:520.927500px;}
.y221{bottom:525.631500px;}
.y1a8{bottom:528.012450px;}
.y2b2{bottom:528.912000px;}
.y165{bottom:529.492500px;}
.y1e8{bottom:530.274000px;}
.y13d{bottom:530.544000px;}
.y2ff{bottom:530.706000px;}
.yfb{bottom:532.096221px;}
.y249{bottom:532.947000px;}
.y2ca{bottom:533.395500px;}
.y8a{bottom:533.844000px;}
.y25{bottom:538.677000px;}
.yc{bottom:538.864499px;}
.y55{bottom:539.316000px;}
.y1c6{bottom:539.442450px;}
.y220{bottom:544.461000px;}
.y13c{bottom:546.982500px;}
.y2b1{bottom:547.741500px;}
.y2fe{bottom:547.966500px;}
.y164{bottom:548.397000px;}
.y1e7{bottom:549.178500px;}
.y248{bottom:551.776500px;}
.y264{bottom:552.225000px;}
.y89{bottom:552.673500px;}
.yfa{bottom:556.486905px;}
.yb{bottom:556.864499px;}
.y1bf{bottom:556.992450px;}
.y54{bottom:558.772500px;}
.yc0{bottom:560.851500px;}
.y21f{bottom:563.290500px;}
.y13b{bottom:563.421000px;}
.y2fd{bottom:565.227000px;}
.y2b0{bottom:566.571000px;}
.y163{bottom:567.301500px;}
.y1e6{bottom:568.083000px;}
.y115{bottom:570.257589px;}
.y247{bottom:570.606000px;}
.y263{bottom:571.054500px;}
.y88{bottom:571.503000px;}
.y53{bottom:578.230500px;}
.yf9{bottom:580.877589px;}
.y21e{bottom:582.120000px;}
.y2fc{bottom:582.487500px;}
.ybf{bottom:583.423500px;}
.y2af{bottom:585.400500px;}
.y1e5{bottom:586.986000px;}
.y246{bottom:589.435500px;}
.y139{bottom:589.527000px;}
.y262{bottom:589.884000px;}
.y87{bottom:590.332500px;}
.y1c0{bottom:591.012450px;}
.y161{bottom:593.407500px;}
.y114{bottom:594.736950px;}
.y52{bottom:597.687000px;}
.y2fb{bottom:599.746500px;}
.ybe{bottom:599.862000px;}
.y21d{bottom:600.949500px;}
.y2ae{bottom:604.230000px;}
.yf8{bottom:605.356950px;}
.y1e4{bottom:605.890500px;}
.ybb{bottom:608.082000px;}
.y280{bottom:608.265000px;}
.y261{bottom:608.713500px;}
.y86{bottom:609.162000px;}
.y245{bottom:612.748500px;}
.ybd{bottom:616.300500px;}
.y2fa{bottom:617.007000px;}
.y51{bottom:617.143500px;}
.y21c{bottom:619.779000px;}
.y138{bottom:622.873500px;}
.y2ad{bottom:623.059500px;}
.y1e3{bottom:624.795000px;}
.y1c1{bottom:625.032450px;}
.y160{bottom:626.752500px;}
.y27f{bottom:627.094500px;}
.y260{bottom:627.543000px;}
.y85{bottom:627.991500px;}
.ybc{bottom:632.739000px;}
.y2f9{bottom:634.267500px;}
.y50{bottom:636.601500px;}
.y21b{bottom:638.608500px;}
.y2ac{bottom:641.889000px;}
.y1e2{bottom:643.698000px;}
.ya{bottom:645.510000px;}
.y27e{bottom:645.924000px;}
.y244{bottom:646.372500px;}
.y84{bottom:646.821000px;}
.y2f8{bottom:651.528000px;}
.y4f{bottom:656.058000px;}
.y1a3{bottom:657.207000px;}
.yba{bottom:658.845000px;}
.y1c2{bottom:659.052450px;}
.y137{bottom:659.710500px;}
.y2ab{bottom:660.718500px;}
.y1e1{bottom:662.602500px;}
.y113{bottom:662.776266px;}
.y15f{bottom:663.856500px;}
.y27d{bottom:664.753500px;}
.y243{bottom:665.202000px;}
.y83{bottom:665.650500px;}
.y9{bottom:666.771000px;}
.y2f7{bottom:668.788500px;}
.y10e{bottom:671.686950px;}
.y21a{bottom:672.174000px;}
.yb8{bottom:675.283500px;}
.y4e{bottom:675.516000px;}
.y1a2{bottom:676.036500px;}
.y136{bottom:678.540000px;}
.y2aa{bottom:679.548000px;}
.y1e0{bottom:681.507000px;}
.y15e{bottom:682.686000px;}
.y27c{bottom:683.583000px;}
.y242{bottom:684.031500px;}
.y82{bottom:684.480000px;}
.y2f6{bottom:686.049000px;}
.y112{bottom:687.166950px;}
.yb9{bottom:691.722000px;}
.y1c3{bottom:693.072450px;}
.y1a1{bottom:694.866000px;}
.y4d{bottom:694.972500px;}
.y135{bottom:697.369500px;}
.y1f9{bottom:697.591500px;}
.y2a9{bottom:698.377500px;}
.y1df{bottom:700.410000px;}
.y15d{bottom:701.515500px;}
.y27b{bottom:702.412500px;}
.y241{bottom:702.861000px;}
.y81{bottom:703.309500px;}
.y1a0{bottom:713.695500px;}
.y4c{bottom:714.429000px;}
.y134{bottom:716.199000px;}
.y2a8{bottom:717.207000px;}
.yb7{bottom:717.828000px;}
.y1de{bottom:719.314500px;}
.y15c{bottom:720.345000px;}
.y2f5{bottom:720.570000px;}
.y27a{bottom:721.242000px;}
.y240{bottom:721.690500px;}
.y80{bottom:722.139000px;}
.yb3{bottom:726.048000px;}
.y8{bottom:726.298500px;}
.y1c4{bottom:727.092450px;}
.y19f{bottom:732.523500px;}
.y4b{bottom:733.887000px;}
.yb6{bottom:734.266500px;}
.y133{bottom:735.028500px;}
.y2a7{bottom:736.036500px;}
.yec{bottom:736.577301px;}
.y2f4{bottom:737.829000px;}
.y1dd{bottom:738.219000px;}
.y15b{bottom:739.174500px;}
.y279{bottom:740.071500px;}
.y23f{bottom:740.520000px;}
.y7f{bottom:740.968500px;}
.yb1{bottom:742.486500px;}
.yb5{bottom:750.705000px;}
.y19e{bottom:751.353000px;}
.y4{bottom:752.599495px;}
.y4a{bottom:753.343500px;}
.y132{bottom:753.858000px;}
.y2a6{bottom:754.866000px;}
.y2f3{bottom:755.089500px;}
.yeb{bottom:755.836743px;}
.y1dc{bottom:757.122000px;}
.y15a{bottom:758.004000px;}
.y278{bottom:758.901000px;}
.yb2{bottom:758.923500px;}
.y23e{bottom:759.349500px;}
.y7e{bottom:759.798000px;}
.y1c5{bottom:761.112450px;}
.yb4{bottom:767.143500px;}
.y19d{bottom:770.182500px;}
.y2f2{bottom:772.350000px;}
.y131{bottom:772.687500px;}
.y49{bottom:772.800000px;}
.y2a5{bottom:773.695500px;}
.yea{bottom:775.096185px;}
.y1db{bottom:776.026500px;}
.y159{bottom:776.833500px;}
.y23d{bottom:778.179000px;}
.y7d{bottom:778.627500px;}
.y277{bottom:782.214000px;}
.y19c{bottom:789.012000px;}
.y2f1{bottom:789.610500px;}
.y130{bottom:791.517000px;}
.y48{bottom:792.258000px;}
.y2a4{bottom:792.525000px;}
.yb0{bottom:793.249500px;}
.ye9{bottom:794.266950px;}
.y1da{bottom:794.931000px;}
.y158{bottom:795.663000px;}
.y23c{bottom:797.008500px;}
.y7c{bottom:797.457000px;}
.yad{bottom:801.469500px;}
.y2f0{bottom:806.871000px;}
.yaf{bottom:809.688000px;}
.y12f{bottom:810.346500px;}
.y2a3{bottom:811.354500px;}
.y47{bottom:811.714500px;}
.y19b{bottom:812.325000px;}
.y1d9{bottom:813.834000px;}
.y157{bottom:814.492500px;}
.y23b{bottom:815.838000px;}
.y7b{bottom:816.286500px;}
.yac{bottom:817.906500px;}
.y318{bottom:819.573000px;}
.y2c9{bottom:820.320000px;}
.y2ef{bottom:824.131500px;}
.y1a6{bottom:824.202585px;}
.yae{bottom:826.126500px;}
.y12e{bottom:829.176000px;}
.y2a2{bottom:830.184000px;}
.y1d8{bottom:832.738500px;}
.y156{bottom:833.322000px;}
.y1a5{bottom:833.832450px;}
.y23a{bottom:834.667500px;}
.y7a{bottom:835.114500px;}
.y317{bottom:836.833500px;}
.y25f{bottom:839.149500px;}
.y2ee{bottom:841.392000px;}
.y19a{bottom:842.752500px;}
.y12d{bottom:848.005500px;}
.ye7{bottom:848.987085px;}
.y46{bottom:850.300500px;}
.y1d7{bottom:851.643000px;}
.y155{bottom:852.151500px;}
.yab{bottom:852.232500px;}
.y239{bottom:853.497000px;}
.y79{bottom:853.944000px;}
.y316{bottom:854.094000px;}
.ye6{bottom:858.616950px;}
.y2ed{bottom:858.652500px;}
.y177{bottom:865.182000px;}
.y45{bottom:866.439000px;}
.y12c{bottom:866.835000px;}
.ya9{bottom:868.671000px;}
.y1d6{bottom:870.546000px;}
.y154{bottom:870.981000px;}
.y238{bottom:872.326500px;}
.y78{bottom:872.773500px;}
.y2ec{bottom:875.913000px;}
.y3{bottom:879.369000px;}
.yaa{bottom:885.109500px;}
.y12b{bottom:885.664500px;}
.y44{bottom:886.918500px;}
.y2a1{bottom:887.121000px;}
.y1d5{bottom:889.450500px;}
.y237{bottom:891.156000px;}
.y77{bottom:891.603000px;}
.y2eb{bottom:893.172000px;}
.y153{bottom:894.294000px;}
.y43{bottom:898.719000px;}
.y12a{bottom:904.494000px;}
.y2a0{bottom:905.950500px;}
.y1d4{bottom:908.353500px;}
.y276{bottom:909.984000px;}
.y76{bottom:910.432500px;}
.ya8{bottom:911.215500px;}
.y152{bottom:914.467500px;}
.y42{bottom:919.198500px;}
.y129{bottom:923.323500px;}
.y29f{bottom:924.778500px;}
.y1d3{bottom:927.258000px;}
.ya6{bottom:927.654000px;}
.y2ea{bottom:927.693000px;}
.y275{bottom:928.813500px;}
.y75{bottom:929.262000px;}
.y41{bottom:930.997500px;}
.y128{bottom:942.153000px;}
.y29e{bottom:943.608000px;}
.ya7{bottom:944.092500px;}
.y2e9{bottom:944.953500px;}
.y2{bottom:945.126001px;}
.y1d2{bottom:946.162500px;}
.y274{bottom:947.643000px;}
.y74{bottom:948.091500px;}
.y40{bottom:951.477000px;}
.y2e8{bottom:962.214000px;}
.y29d{bottom:962.437500px;}
.y1d1{bottom:965.065500px;}
.y127{bottom:965.466000px;}
.y273{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.y73{bottom:966.921000px;}
.ya4{bottom:970.198500px;}
.ya3{bottom:978.418500px;}
.y2e7{bottom:979.474500px;}
.y29c{bottom:981.267000px;}
.y1d0{bottom:983.970000px;}
.y272{bottom:985.302000px;}
.y72{bottom:985.750500px;}
.ya5{bottom:986.637000px;}
.y3e{bottom:996.153000px;}
.y2e6{bottom:996.735000px;}
.y29b{bottom:1000.096500px;}
.y3f{bottom:1001.578500px;}
.y126{bottom:1002.195000px;}
.y1cf{bottom:1002.874500px;}
.y271{bottom:1004.131500px;}
.y71{bottom:1004.580000px;}
.ya2{bottom:1012.743000px;}
.y2e5{bottom:1013.995500px;}
.y29a{bottom:1018.926000px;}
.ya1{bottom:1020.963000px;}
.y125{bottom:1021.777500px;}
.y70{bottom:1023.409500px;}
.y270{bottom:1027.444500px;}
.y2e4{bottom:1031.254500px;}
.y3d{bottom:1036.485000px;}
.y299{bottom:1037.755500px;}
.y124{bottom:1040.682000px;}
.y6f{bottom:1042.239000px;}
.y2e3{bottom:1048.515000px;}
.y298{bottom:1056.585000px;}
.y123{bottom:1059.586500px;}
.y6e{bottom:1061.068500px;}
.y3c{bottom:1064.728500px;}
.ya0{bottom:1065.516000px;}
.y2e2{bottom:1065.775500px;}
.y297{bottom:1075.414500px;}
.y6d{bottom:1079.898000px;}
.y2e1{bottom:1083.036000px;}
.y122{bottom:1085.692500px;}
.y3b{bottom:1092.972000px;}
.y296{bottom:1094.244000px;}
.y6c{bottom:1098.727500px;}
.y2e0{bottom:1100.296500px;}
.y6b{bottom:1117.557000px;}
.y121{bottom:1119.037500px;}
.y6a{bottom:1177.662000px;}
.h8{height:32.130000px;}
.h12{height:32.565965px;}
.h10{height:32.709312px;}
.h24{height:35.991211px;}
.hb{height:37.993262px;}
.hc{height:38.202476px;}
.h19{height:38.734848px;}
.h26{height:39.434227px;}
.h9{height:39.648000px;}
.hf{height:43.038432px;}
.h13{height:43.421105px;}
.h14{height:43.660208px;}
.hd{height:43.815515px;}
.h1e{height:44.536816px;}
.h3{height:48.195000px;}
.h15{height:48.848947px;}
.h28{height:49.064141px;}
.h1c{height:49.117939px;}
.h20{height:50.229492px;}
.h16{height:54.276245px;}
.h17{height:54.575123px;}
.h21{height:54.865371px;}
.h11{height:55.352206px;}
.h1f{height:55.922168px;}
.h7{height:56.640000px;}
.h6{height:59.472000px;}
.h29{height:60.848947px;}
.h2{height:67.968000px;}
.h18{height:71.608848px;}
.he{height:77.469696px;}
.h1a{height:81.722947px;}
.h1b{height:81.728947px;}
.h23{height:96.244652px;}
.h5{height:96.288000px;}
.h4{height:119.055004px;}
.h22{height:267.319500px;}
.h25{height:285.024000px;}
.h27{height:434.910000px;}
.h1d{height:718.164000px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:376.489500px;}
.w5{width:528.738000px;}
.w2{width:637.794021px;}
.w4{width:712.262100px;}
.w7{width:767.732550px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x3b{left:-260.529000px;}
.x32{left:-190.305000px;}
.x3d{left:-64.959000px;}
.x43{left:-62.709450px;}
.x40{left:-60.999000px;}
.x42{left:-55.869000px;}
.x3e{left:-33.099106px;}
.x45{left:-10.321950px;}
.x44{left:-3.219000px;}
.x1a{left:-2.060400px;}
.x0{left:0.000000px;}
.x34{left:5.265000px;}
.x39{left:7.514550px;}
.x36{left:9.225000px;}
.x38{left:14.355000px;}
.x28{left:21.969447px;}
.x27{left:28.809600px;}
.x29{left:31.689600px;}
.x35{left:37.124894px;}
.x2c{left:44.739600px;}
.x5{left:53.574000px;}
.x13{left:62.541000px;}
.x3a{left:67.005000px;}
.x49{left:85.404000px;}
.x19{left:90.113400px;}
.x4b{left:91.656000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x11{left:118.845000px;}
.x47{left:185.248050px;}
.x1b{left:193.509600px;}
.x4{left:203.484001px;}
.x6{left:206.449500px;}
.x1f{left:213.939600px;}
.x48{left:217.108050px;}
.x1d{left:225.369494px;}
.x7{left:226.482000px;}
.x14{left:237.169500px;}
.x18{left:247.348500px;}
.xf{left:248.526000px;}
.xd{left:249.591000px;}
.x25{left:252.369357px;}
.x2e{left:258.556500px;}
.xe{left:269.914500px;}
.x10{left:281.479500px;}
.x4a{left:315.774000px;}
.x2f{left:369.618000px;}
.x8{left:405.898500px;}
.x31{left:423.618000px;}
.x9{left:425.923500px;}
.x3f{left:434.542426px;}
.x20{left:435.609600px;}
.x21{left:437.859600px;}
.x41{left:440.928802px;}
.x2a{left:445.779600px;}
.x24{left:448.299600px;}
.x22{left:451.089600px;}
.x3c{left:452.540850px;}
.x3{left:454.959000px;}
.x2b{left:459.459906px;}
.x15{left:465.798000px;}
.x2d{left:478.359087px;}
.x30{left:480.744000px;}
.x1e{left:492.219600px;}
.x23{left:505.089384px;}
.x37{left:511.152802px;}
.x33{left:522.764850px;}
.x26{left:524.260077px;}
.xa{left:569.631000px;}
.xb{left:593.400000px;}
.x1c{left:708.937968px;}
.x16{left:730.414500px;}
.x17{left:742.512000px;}
.x12{left:745.135500px;}
.x46{left:760.168050px;}
.xc{left:818.781000px;}
@media print{
.v1{vertical-align:-15.429333pt;}
.v2{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.666667pt;}
.v3{vertical-align:29.221333pt;}
.v4{vertical-align:35.842208pt;}
.ls2f{letter-spacing:-0.293920pt;}
.ls41{letter-spacing:-0.235136pt;}
.ls2b{letter-spacing:-0.224448pt;}
.ls31{letter-spacing:-0.160320pt;}
.ls36{letter-spacing:-0.149632pt;}
.ls32{letter-spacing:-0.122912pt;}
.ls4c{letter-spacing:-0.112224pt;}
.ls4d{letter-spacing:-0.106880pt;}
.ls33{letter-spacing:-0.101536pt;}
.ls34{letter-spacing:-0.085504pt;}
.ls37{letter-spacing:-0.074816pt;}
.ls2a{letter-spacing:-0.069472pt;}
.ls35{letter-spacing:-0.053440pt;}
.ls49{letter-spacing:-0.052800pt;}
.ls4b{letter-spacing:-0.048096pt;}
.ls4a{letter-spacing:-0.037408pt;}
.ls47{letter-spacing:-0.034048pt;}
.ls2c{letter-spacing:-0.032064pt;}
.ls29{letter-spacing:-0.026720pt;}
.ls26{letter-spacing:-0.025536pt;}
.ls2e{letter-spacing:-0.021376pt;}
.ls42{letter-spacing:-0.016032pt;}
.ls48{letter-spacing:-0.012768pt;}
.ls2d{letter-spacing:-0.010688pt;}
.ls43{letter-spacing:-0.009600pt;}
.ls28{letter-spacing:-0.005344pt;}
.ls40{letter-spacing:-0.004800pt;}
.ls27{letter-spacing:-0.004256pt;}
.ls0{letter-spacing:0.000000pt;}
.ls64{letter-spacing:0.000008pt;}
.ls66{letter-spacing:0.000078pt;}
.ls7{letter-spacing:0.000192pt;}
.ls5c{letter-spacing:0.000375pt;}
.lsd{letter-spacing:0.000387pt;}
.ls2{letter-spacing:0.000533pt;}
.ls61{letter-spacing:0.000600pt;}
.ls5d{letter-spacing:0.000711pt;}
.ls63{letter-spacing:0.001408pt;}
.ls5{letter-spacing:0.001718pt;}
.ls5e{letter-spacing:0.001818pt;}
.ls1{letter-spacing:0.002046pt;}
.ls60{letter-spacing:0.002825pt;}
.ls59{letter-spacing:0.002868pt;}
.ls62{letter-spacing:0.003752pt;}
.ls19{letter-spacing:0.004800pt;}
.ls5f{letter-spacing:0.004898pt;}
.ls20{letter-spacing:0.005344pt;}
.ls1e{letter-spacing:0.010688pt;}
.ls1d{letter-spacing:0.016032pt;}
.ls16{letter-spacing:0.021376pt;}
.ls23{letter-spacing:0.026720pt;}
.ls17{letter-spacing:0.028800pt;}
.ls21{letter-spacing:0.032064pt;}
.ls22{letter-spacing:0.037408pt;}
.ls3a{letter-spacing:0.038400pt;}
.ls1f{letter-spacing:0.042752pt;}
.ls18{letter-spacing:0.043200pt;}
.ls38{letter-spacing:0.048096pt;}
.ls1b{letter-spacing:0.053440pt;}
.ls15{letter-spacing:0.058784pt;}
.ls24{letter-spacing:0.064128pt;}
.ls1c{letter-spacing:0.069472pt;}
.ls3b{letter-spacing:0.072000pt;}
.ls3c{letter-spacing:0.080160pt;}
.ls39{letter-spacing:0.085504pt;}
.ls46{letter-spacing:0.090848pt;}
.ls25{letter-spacing:0.101536pt;}
.ls1a{letter-spacing:0.106880pt;}
.ls45{letter-spacing:0.153216pt;}
.ls14{letter-spacing:0.157472pt;}
.ls30{letter-spacing:0.160320pt;}
.ls44{letter-spacing:0.161728pt;}
.ls13{letter-spacing:0.170240pt;}
.ls3d{letter-spacing:0.171008pt;}
.lsb{letter-spacing:10.626533pt;}
.ls53{letter-spacing:11.756876pt;}
.ls5b{letter-spacing:11.950933pt;}
.ls65{letter-spacing:12.208113pt;}
.ls8{letter-spacing:12.752128pt;}
.ls5a{letter-spacing:12.805262pt;}
.ls58{letter-spacing:12.964663pt;}
.ls54{letter-spacing:13.017797pt;}
.ls50{letter-spacing:13.070931pt;}
.ls9{letter-spacing:13.124065pt;}
.ls3e{letter-spacing:13.177199pt;}
.ls3f{letter-spacing:13.281867pt;}
.lse{letter-spacing:13.283467pt;}
.ls52{letter-spacing:13.287575pt;}
.ls3{letter-spacing:13.313728pt;}
.ls56{letter-spacing:13.336601pt;}
.ls11{letter-spacing:13.442868pt;}
.ls10{letter-spacing:13.655404pt;}
.ls4e{letter-spacing:13.867939pt;}
.lsa{letter-spacing:14.824349pt;}
.lsc{letter-spacing:15.249420pt;}
.ls55{letter-spacing:16.843436pt;}
.ls57{letter-spacing:17.002837pt;}
.ls12{letter-spacing:18.224916pt;}
.lsf{letter-spacing:19.128192pt;}
.ls4f{letter-spacing:19.765798pt;}
.ls51{letter-spacing:21.519216pt;}
.ls4{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.wsd8{word-spacing:-53.440000pt;}
.ws78{word-spacing:-13.520320pt;}
.ws77{word-spacing:-13.349312pt;}
.wsbf{word-spacing:-13.327936pt;}
.wsd{word-spacing:-13.283467pt;}
.ws79{word-spacing:-13.199680pt;}
.ws55{word-spacing:-11.955200pt;}
.ws73{word-spacing:-10.810240pt;}
.wsd7{word-spacing:-10.801728pt;}
.ws74{word-spacing:-10.640000pt;}
.ws33{word-spacing:-10.626800pt;}
.wse{word-spacing:-10.095467pt;}
.ws2{word-spacing:-9.298400pt;}
.wse8{word-spacing:-3.473600pt;}
.ws11e{word-spacing:-2.816095pt;}
.ws12a{word-spacing:-2.709827pt;}
.ws11c{word-spacing:-2.656693pt;}
.wsa1{word-spacing:-2.517024pt;}
.ws11b{word-spacing:-2.284756pt;}
.ws2f{word-spacing:-2.178489pt;}
.ws30{word-spacing:-2.125355pt;}
.wsbc{word-spacing:-2.072221pt;}
.ws12b{word-spacing:-2.019087pt;}
.ws125{word-spacing:-1.912819pt;}
.ws100{word-spacing:-1.886432pt;}
.wsff{word-spacing:-1.881088pt;}
.wse7{word-spacing:-1.875744pt;}
.wsed{word-spacing:-1.865056pt;}
.ws124{word-spacing:-1.859685pt;}
.ws93{word-spacing:-1.849024pt;}
.ws92{word-spacing:-1.832992pt;}
.ws46{word-spacing:-1.753418pt;}
.ws47{word-spacing:-1.700284pt;}
.ws9b{word-spacing:-1.549760pt;}
.ws112{word-spacing:-1.540882pt;}
.ws108{word-spacing:-1.487748pt;}
.ws44{word-spacing:-1.434614pt;}
.ws6a{word-spacing:-1.381481pt;}
.ws4b{word-spacing:-1.328347pt;}
.ws13f{word-spacing:-1.243341pt;}
.wse1{word-spacing:-1.229120pt;}
.wsc6{word-spacing:-1.223776pt;}
.wsea{word-spacing:-1.218432pt;}
.ws62{word-spacing:-1.168945pt;}
.wseb{word-spacing:-1.164992pt;}
.wsb6{word-spacing:-1.115811pt;}
.ws66{word-spacing:-1.009543pt;}
.ws27{word-spacing:-0.956410pt;}
.wscc{word-spacing:-0.940544pt;}
.wse2{word-spacing:-0.935200pt;}
.ws54{word-spacing:-0.908595pt;}
.ws5e{word-spacing:-0.903276pt;}
.ws53{word-spacing:-0.860774pt;}
.ws90{word-spacing:-0.855040pt;}
.ws5d{word-spacing:-0.850142pt;}
.wsb0{word-spacing:-0.797008pt;}
.wsb8{word-spacing:-0.743874pt;}
.ws149{word-spacing:-0.717312pt;}
.ws4d{word-spacing:-0.690740pt;}
.ws115{word-spacing:-0.637606pt;}
.ws6d{word-spacing:-0.584473pt;}
.ws1d{word-spacing:-0.573850pt;}
.wsf7{word-spacing:-0.539744pt;}
.ws6e{word-spacing:-0.531339pt;}
.ws182{word-spacing:-0.526029pt;}
.ws67{word-spacing:-0.478205pt;}
.wsf8{word-spacing:-0.459584pt;}
.ws57{word-spacing:-0.430387pt;}
.ws22{word-spacing:-0.425071pt;}
.ws23{word-spacing:-0.371937pt;}
.ws165{word-spacing:-0.334746pt;}
.ws24{word-spacing:-0.318803pt;}
.wsa7{word-spacing:-0.304608pt;}
.ws13{word-spacing:-0.286925pt;}
.ws2d{word-spacing:-0.265669pt;}
.ws9d{word-spacing:-0.256512pt;}
.wsaa{word-spacing:-0.251168pt;}
.ws7d{word-spacing:-0.246848pt;}
.wsad{word-spacing:-0.245824pt;}
.wsdc{word-spacing:-0.242592pt;}
.ws12{word-spacing:-0.239104pt;}
.wscf{word-spacing:-0.235136pt;}
.ws94{word-spacing:-0.213760pt;}
.ws28{word-spacing:-0.212535pt;}
.wsef{word-spacing:-0.208416pt;}
.ws89{word-spacing:-0.203072pt;}
.ws144{word-spacing:-0.198909pt;}
.ws1e{word-spacing:-0.191283pt;}
.ws29{word-spacing:-0.159402pt;}
.wsa4{word-spacing:-0.154976pt;}
.ws1c{word-spacing:-0.143462pt;}
.ws105{word-spacing:-0.133600pt;}
.ws25{word-spacing:-0.106268pt;}
.ws178{word-spacing:-0.098604pt;}
.ws13a{word-spacing:-0.095642pt;}
.ws7e{word-spacing:-0.072352pt;}
.wsdd{word-spacing:-0.068096pt;}
.ws75{word-spacing:-0.053440pt;}
.wsc{word-spacing:-0.053134pt;}
.ws7c{word-spacing:-0.051072pt;}
.ws76{word-spacing:-0.048000pt;}
.ws56{word-spacing:-0.047821pt;}
.wsdb{word-spacing:-0.046816pt;}
.wsf{word-spacing:-0.042507pt;}
.ws3{word-spacing:-0.037194pt;}
.ws14a{word-spacing:-0.012373pt;}
.ws175{word-spacing:-0.010957pt;}
.ws85{word-spacing:-0.010688pt;}
.ws152{word-spacing:-0.010607pt;}
.ws184{word-spacing:-0.009455pt;}
.ws17a{word-spacing:-0.009344pt;}
.ws134{word-spacing:-0.009190pt;}
.ws15b{word-spacing:-0.008567pt;}
.ws157{word-spacing:-0.008269pt;}
.ws163{word-spacing:-0.007979pt;}
.ws16d{word-spacing:-0.007842pt;}
.ws166{word-spacing:-0.007774pt;}
.ws14f{word-spacing:-0.007526pt;}
.ws17d{word-spacing:-0.006921pt;}
.ws154{word-spacing:-0.006810pt;}
.ws17b{word-spacing:-0.006750pt;}
.ws135{word-spacing:-0.006537pt;}
.ws13b{word-spacing:-0.006400pt;}
.ws17f{word-spacing:-0.005965pt;}
.ws139{word-spacing:-0.005769pt;}
.ws141{word-spacing:-0.005274pt;}
.ws179{word-spacing:-0.005171pt;}
.ws156{word-spacing:-0.003337pt;}
.ws16c{word-spacing:-0.003319pt;}
.ws173{word-spacing:-0.003251pt;}
.ws185{word-spacing:-0.003081pt;}
.ws16b{word-spacing:-0.003046pt;}
.ws151{word-spacing:-0.002935pt;}
.ws136{word-spacing:-0.002253pt;}
.ws150{word-spacing:-0.001783pt;}
.ws147{word-spacing:-0.001638pt;}
.ws168{word-spacing:-0.001203pt;}
.ws4{word-spacing:-0.000023pt;}
.ws0{word-spacing:0.000000pt;}
.ws32{word-spacing:0.003199pt;}
.wsc5{word-spacing:0.016032pt;}
.wsd4{word-spacing:0.026720pt;}
.ws107{word-spacing:0.032064pt;}
.wsf1{word-spacing:0.037408pt;}
.wsee{word-spacing:0.042752pt;}
.ws52{word-spacing:0.047821pt;}
.wsa3{word-spacing:0.048096pt;}
.ws49{word-spacing:0.053134pt;}
.wsa6{word-spacing:0.053440pt;}
.ws9f{word-spacing:0.058784pt;}
.ws83{word-spacing:0.064128pt;}
.ws9e{word-spacing:0.074816pt;}
.wsac{word-spacing:0.085504pt;}
.wsaf{word-spacing:0.090848pt;}
.wsd1{word-spacing:0.091200pt;}
.ws15{word-spacing:0.095642pt;}
.wsce{word-spacing:0.096192pt;}
.wsd2{word-spacing:0.101536pt;}
.ws39{word-spacing:0.106268pt;}
.wsae{word-spacing:0.106880pt;}
.wsd3{word-spacing:0.117568pt;}
.ws87{word-spacing:0.120000pt;}
.wsd0{word-spacing:0.124800pt;}
.ws106{word-spacing:0.128256pt;}
.wsa5{word-spacing:0.133600pt;}
.ws86{word-spacing:0.134400pt;}
.ws58{word-spacing:0.143462pt;}
.ws84{word-spacing:0.154976pt;}
.ws88{word-spacing:0.158400pt;}
.ws2b{word-spacing:0.159402pt;}
.wsf0{word-spacing:0.165664pt;}
.wsc4{word-spacing:0.168000pt;}
.wsa2{word-spacing:0.181696pt;}
.ws1a{word-spacing:0.191283pt;}
.wsdf{word-spacing:0.211200pt;}
.ws2c{word-spacing:0.212535pt;}
.wsab{word-spacing:0.229792pt;}
.ws132{word-spacing:0.239104pt;}
.ws42{word-spacing:0.265669pt;}
.ws143{word-spacing:0.286925pt;}
.ws60{word-spacing:0.318803pt;}
.ws91{word-spacing:0.336672pt;}
.ws26{word-spacing:0.371937pt;}
.wsc9{word-spacing:0.379424pt;}
.ws16a{word-spacing:0.382566pt;}
.wsf5{word-spacing:0.422176pt;}
.wsca{word-spacing:0.427520pt;}
.ws126{word-spacing:0.478205pt;}
.ws11{word-spacing:0.478208pt;}
.ws6c{word-spacing:0.531339pt;}
.wsf6{word-spacing:0.561120pt;}
.wsd9{word-spacing:0.584473pt;}
.ws15d{word-spacing:0.669491pt;}
.ws5b{word-spacing:0.690740pt;}
.ws3e{word-spacing:0.743874pt;}
.ws142{word-spacing:0.765133pt;}
.ws170{word-spacing:0.812954pt;}
.ws10d{word-spacing:0.850142pt;}
.ws3d{word-spacing:0.903276pt;}
.ws16f{word-spacing:0.908595pt;}
.ws2e{word-spacing:0.956410pt;}
.ws145{word-spacing:0.956416pt;}
.ws65{word-spacing:1.062677pt;}
.ws10a{word-spacing:1.168945pt;}
.ws19{word-spacing:1.195520pt;}
.ws3a{word-spacing:1.222079pt;}
.wsb{word-spacing:1.227389pt;}
.ws128{word-spacing:1.328347pt;}
.ws183{word-spacing:1.338982pt;}
.ws103{word-spacing:1.352032pt;}
.ws7a{word-spacing:1.381481pt;}
.ws69{word-spacing:1.434614pt;}
.ws160{word-spacing:1.434624pt;}
.ws17e{word-spacing:1.482445pt;}
.ws5c{word-spacing:1.487748pt;}
.ws9a{word-spacing:1.517696pt;}
.ws180{word-spacing:1.530266pt;}
.ws43{word-spacing:1.540882pt;}
.ws148{word-spacing:1.578086pt;}
.wsbb{word-spacing:1.594016pt;}
.wscb{word-spacing:1.629920pt;}
.ws35{word-spacing:1.647150pt;}
.wsf2{word-spacing:1.651296pt;}
.wscd{word-spacing:1.672672pt;}
.ws13d{word-spacing:1.673728pt;}
.wse9{word-spacing:1.694048pt;}
.ws114{word-spacing:1.700284pt;}
.ws3f{word-spacing:1.753418pt;}
.ws15e{word-spacing:1.800223pt;}
.ws12e{word-spacing:1.806551pt;}
.ws6b{word-spacing:1.859685pt;}
.wsb7{word-spacing:1.912819pt;}
.ws8f{word-spacing:1.950560pt;}
.wsc7{word-spacing:1.955904pt;}
.wsba{word-spacing:2.019087pt;}
.wsc8{word-spacing:2.057440pt;}
.ws7b{word-spacing:2.072221pt;}
.ws5f{word-spacing:2.125355pt;}
.ws164{word-spacing:2.151936pt;}
.ws59{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws120{word-spacing:2.284756pt;}
.ws155{word-spacing:2.295398pt;}
.ws172{word-spacing:2.334185pt;}
.wsc2{word-spacing:2.337890pt;}
.ws171{word-spacing:2.343219pt;}
.wsb9{word-spacing:2.391024pt;}
.ws153{word-spacing:2.391040pt;}
.ws122{word-spacing:2.444158pt;}
.wsb4{word-spacing:2.497292pt;}
.ws17c{word-spacing:2.534502pt;}
.ws137{word-spacing:2.540063pt;}
.ws8e{word-spacing:2.549088pt;}
.ws138{word-spacing:2.582323pt;}
.wsec{word-spacing:2.597184pt;}
.ws36{word-spacing:2.603559pt;}
.ws8d{word-spacing:2.618560pt;}
.ws12f{word-spacing:2.656693pt;}
.ws123{word-spacing:2.709827pt;}
.ws13c{word-spacing:2.725786pt;}
.ws34{word-spacing:2.762961pt;}
.ws130{word-spacing:2.816095pt;}
.ws14b{word-spacing:2.821427pt;}
.ws146{word-spacing:2.859153pt;}
.ws176{word-spacing:2.860544pt;}
.ws15a{word-spacing:2.861611pt;}
.ws15c{word-spacing:2.862140pt;}
.ws169{word-spacing:2.862217pt;}
.ws15f{word-spacing:2.862327pt;}
.ws13e{word-spacing:2.864905pt;}
.ws186{word-spacing:2.864947pt;}
.ws181{word-spacing:2.865084pt;}
.ws159{word-spacing:2.865732pt;}
.ws162{word-spacing:2.866338pt;}
.ws131{word-spacing:2.866509pt;}
.ws14c{word-spacing:2.868002pt;}
.ws45{word-spacing:2.869229pt;}
.ws133{word-spacing:2.869248pt;}
.ws116{word-spacing:2.922363pt;}
.ws1b{word-spacing:2.964890pt;}
.wsda{word-spacing:2.975497pt;}
.ws16e{word-spacing:3.012710pt;}
.ws71{word-spacing:3.028630pt;}
.ws4c{word-spacing:3.081764pt;}
.ws167{word-spacing:3.108352pt;}
.ws63{word-spacing:3.134898pt;}
.ws16{word-spacing:3.156173pt;}
.ws21{word-spacing:3.188032pt;}
.ws161{word-spacing:3.203994pt;}
.ws4f{word-spacing:3.241166pt;}
.wse5{word-spacing:3.243808pt;}
.ws31{word-spacing:3.294300pt;}
.wse6{word-spacing:3.302592pt;}
.ws109{word-spacing:3.347434pt;}
.ws129{word-spacing:3.453701pt;}
.ws140{word-spacing:3.490918pt;}
.ws3c{word-spacing:3.506835pt;}
.wse0{word-spacing:3.564448pt;}
.ws95{word-spacing:3.612544pt;}
.ws5a{word-spacing:3.613103pt;}
.wsb1{word-spacing:3.666237pt;}
.ws37{word-spacing:3.719371pt;}
.ws12d{word-spacing:3.772505pt;}
.ws61{word-spacing:3.825638pt;}
.ws174{word-spacing:3.825664pt;}
.ws14e{word-spacing:3.873485pt;}
.ws14d{word-spacing:3.921306pt;}
.ws38{word-spacing:3.931906pt;}
.ws80{word-spacing:3.933184pt;}
.wse3{word-spacing:3.959904pt;}
.wse4{word-spacing:3.991968pt;}
.ws177{word-spacing:4.016947pt;}
.ws10{word-spacing:4.019379pt;}
.ws68{word-spacing:4.038174pt;}
.ws72{word-spacing:4.091308pt;}
.ws119{word-spacing:4.144442pt;}
.ws14{word-spacing:4.160410pt;}
.ws82{word-spacing:4.189696pt;}
.wsb3{word-spacing:4.197575pt;}
.ws10c{word-spacing:4.250709pt;}
.ws17{word-spacing:4.256051pt;}
.ws81{word-spacing:4.275200pt;}
.ws48{word-spacing:4.303843pt;}
.ws111{word-spacing:4.356977pt;}
.ws18{word-spacing:4.399514pt;}
.ws20{word-spacing:4.447334pt;}
.ws4a{word-spacing:4.463245pt;}
.ws6f{word-spacing:4.516379pt;}
.ws70{word-spacing:4.569513pt;}
.ws11f{word-spacing:4.622646pt;}
.ws11d{word-spacing:4.728914pt;}
.wsf9{word-spacing:4.820288pt;}
.ws9{word-spacing:4.872362pt;}
.wsfa{word-spacing:4.889760pt;}
.wsfc{word-spacing:4.927168pt;}
.ws121{word-spacing:4.941450pt;}
.wsfb{word-spacing:4.964576pt;}
.ws12c{word-spacing:5.047717pt;}
.wsc1{word-spacing:5.313387pt;}
.ws10f{word-spacing:5.366521pt;}
.ws10e{word-spacing:5.419654pt;}
.ws10b{word-spacing:5.472788pt;}
.ws158{word-spacing:5.595034pt;}
.ws4e{word-spacing:5.632190pt;}
.ws11a{word-spacing:5.685324pt;}
.wsbd{word-spacing:5.844725pt;}
.ws101{word-spacing:5.846336pt;}
.ws102{word-spacing:5.947872pt;}
.ws117{word-spacing:6.004127pt;}
.ws118{word-spacing:6.057261pt;}
.wsb5{word-spacing:6.110395pt;}
.wsd6{word-spacing:6.269796pt;}
.ws127{word-spacing:6.535466pt;}
.wsd5{word-spacing:6.641733pt;}
.ws2a{word-spacing:6.801135pt;}
.wsfe{word-spacing:6.813600pt;}
.wsfd{word-spacing:6.909792pt;}
.ws110{word-spacing:6.960537pt;}
.ws40{word-spacing:7.066804pt;}
.ws41{word-spacing:7.119938pt;}
.wsbe{word-spacing:7.173072pt;}
.ws3b{word-spacing:7.332474pt;}
.ws8b{word-spacing:8.341984pt;}
.ws104{word-spacing:8.384736pt;}
.ws8a{word-spacing:8.416800pt;}
.ws8c{word-spacing:8.427488pt;}
.ws7{word-spacing:8.740496pt;}
.ws113{word-spacing:9.457828pt;}
.wsde{word-spacing:10.325056pt;}
.ws7f{word-spacing:10.329312pt;}
.ws8{word-spacing:10.525789pt;}
.ws1f{word-spacing:11.968750pt;}
.wsf3{word-spacing:12.510304pt;}
.wsf4{word-spacing:12.542368pt;}
.ws64{word-spacing:13.070931pt;}
.wsa8{word-spacing:13.098144pt;}
.ws5{word-spacing:13.761632pt;}
.wsa{word-spacing:14.282342pt;}
.wsa9{word-spacing:14.824256pt;}
.ws98{word-spacing:17.955840pt;}
.ws96{word-spacing:18.981888pt;}
.ws6{word-spacing:19.857270pt;}
.ws99{word-spacing:23.754080pt;}
.ws9c{word-spacing:30.920384pt;}
.wsa0{word-spacing:32.080032pt;}
.ws51{word-spacing:135.281109pt;}
.ws97{word-spacing:143.427616pt;}
.wsc0{word-spacing:188.169600pt;}
.wsb2{word-spacing:234.178458pt;}
.ws50{word-spacing:401.588506pt;}
.wsc3{word-spacing:1423.874398pt;}
._56{margin-left:-23.591437pt;}
._59{margin-left:-21.892045pt;}
._53{margin-left:-20.411915pt;}
._5a{margin-left:-18.589530pt;}
._7{margin-left:-10.616218pt;}
._52{margin-left:-6.827706pt;}
._14{margin-left:-5.897859pt;}
._0{margin-left:-4.799644pt;}
._2{margin-left:-3.421811pt;}
._1a{margin-left:-2.295398pt;}
._5{margin-left:-1.301776pt;}
._1d{width:1.115072pt;}
._8{width:2.665203pt;}
._55{width:5.950993pt;}
._10{width:10.254829pt;}
._1{width:11.530016pt;}
._a{width:13.173851pt;}
._b{width:14.585344pt;}
._e{width:16.180994pt;}
._d{width:17.358950pt;}
._f{width:18.745754pt;}
._16{width:20.403405pt;}
._58{width:21.466082pt;}
._3{width:22.502128pt;}
._c{width:24.112298pt;}
._13{width:25.238587pt;}
._15{width:26.593489pt;}
._4{width:27.783619pt;}
._6{width:29.648896pt;}
._57{width:31.083312pt;}
._54{width:33.359093pt;}
._21{width:34.643281pt;}
._4f{width:36.662497pt;}
._22{width:38.415786pt;}
._9{width:48.472691pt;}
._1c{width:296.734925pt;}
._1f{width:328.481075pt;}
._20{width:333.406618pt;}
._1b{width:349.720371pt;}
._44{width:409.570724pt;}
._19{width:474.245734pt;}
._43{width:584.966804pt;}
._17{width:588.052378pt;}
._4e{width:679.317243pt;}
._47{width:709.284983pt;}
._18{width:712.604275pt;}
._31{width:722.931475pt;}
._2a{width:729.624848pt;}
._46{width:766.000452pt;}
._3c{width:769.602913pt;}
._45{width:775.755895pt;}
._11{width:783.370350pt;}
._36{width:798.279492pt;}
._3f{width:802.312340pt;}
._35{width:816.963069pt;}
._3a{width:842.242708pt;}
._4d{width:854.628295pt;}
._4b{width:879.399470pt;}
._4c{width:881.216660pt;}
._34{width:909.096187pt;}
._40{width:934.249927pt;}
._49{width:959.594951pt;}
._48{width:968.393979pt;}
._3b{width:1008.228705pt;}
._41{width:1010.747307pt;}
._30{width:1012.461978pt;}
._32{width:1032.186926pt;}
._29{width:1061.020160pt;}
._33{width:1063.174804pt;}
._2e{width:1166.757857pt;}
._2d{width:1199.419463pt;}
._37{width:1215.962260pt;}
._4a{width:1223.039739pt;}
._27{width:1227.359664pt;}
._3e{width:1251.620676pt;}
._2f{width:1252.922452pt;}
._2b{width:1262.256550pt;}
._26{width:1263.613360pt;}
._42{width:1293.766702pt;}
._3d{width:1312.464635pt;}
._28{width:1331.352371pt;}
._39{width:1342.591739pt;}
._38{width:1374.991462pt;}
._2c{width:1396.106414pt;}
._23{width:1434.372352pt;}
._25{width:1482.489728pt;}
._24{width:1534.235680pt;}
._51{width:1849.602272pt;}
._1e{width:1871.546208pt;}
._50{width:2233.606047pt;}
._12{width:2254.859381pt;}
.fs9{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:40.381867pt;}
.fsa{font-size:42.507200pt;}
.fsc{font-size:42.560000pt;}
.fsb{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.y17a{bottom:-743.614267pt;}
.y191{bottom:-688.173747pt;}
.y190{bottom:-670.173819pt;}
.y18f{bottom:-652.173891pt;}
.y18e{bottom:-634.173963pt;}
.y18d{bottom:-616.174035pt;}
.y18c{bottom:-598.254267pt;}
.y18b{bottom:-580.254267pt;}
.y1fc{bottom:-575.760933pt;}
.y18a{bottom:-561.533349pt;}
.y189{bottom:-552.574133pt;}
.y219{bottom:-523.270333pt;}
.y188{bottom:-517.533867pt;}
.y218{bottom:-506.150829pt;}
.y217{bottom:-489.031325pt;}
.y187{bottom:-486.174267pt;}
.y216{bottom:-471.991981pt;}
.y186{bottom:-466.172227pt;}
.y215{bottom:-454.872477pt;}
.y214{bottom:-437.833133pt;}
.y213{bottom:-420.713629pt;}
.y212{bottom:-403.594125pt;}
.y211{bottom:-386.554781pt;}
.y210{bottom:-369.435277pt;}
.y20f{bottom:-352.395933pt;}
.y20e{bottom:-335.276429pt;}
.y20d{bottom:-314.235765pt;}
.y20c{bottom:-293.116277pt;}
.y1a7{bottom:-277.295600pt;}
.y20b{bottom:-272.075613pt;}
.ye8{bottom:-255.264933pt;}
.y20a{bottom:-238.956173pt;}
.y1be{bottom:-221.855080pt;}
.y209{bottom:-221.836669pt;}
.y208{bottom:-204.717165pt;}
.y1bd{bottom:-203.855152pt;}
.y185{bottom:-190.412475pt;}
.y207{bottom:-187.677821pt;}
.yf7{bottom:-187.344933pt;}
.y1bc{bottom:-185.855224pt;}
.y184{bottom:-173.292971pt;}
.y206{bottom:-170.558317pt;}
.yf6{bottom:-168.224933pt;}
.yf5{bottom:-168.222797pt;}
.y1bb{bottom:-167.855296pt;}
.y183{bottom:-156.253627pt;}
.y205{bottom:-153.438813pt;}
.yf4{bottom:-151.103293pt;}
.y1ba{bottom:-149.855368pt;}
.y182{bottom:-139.134123pt;}
.y204{bottom:-136.398133pt;}
.yf3{bottom:-134.063949pt;}
.y1b9{bottom:-131.935600pt;}
.y181{bottom:-122.093443pt;}
.y203{bottom:-119.278629pt;}
.yf2{bottom:-116.944445pt;}
.y1b8{bottom:-113.935600pt;}
.y180{bottom:-104.973939pt;}
.y202{bottom:-102.239285pt;}
.yf1{bottom:-99.905101pt;}
.y1b7{bottom:-95.214683pt;}
.y17f{bottom:-87.854435pt;}
.y1b6{bottom:-86.255467pt;}
.y201{bottom:-85.119781pt;}
.yf0{bottom:-82.785597pt;}
.y17e{bottom:-70.813755pt;}
.y200{bottom:-68.000277pt;}
.yef{bottom:-61.744933pt;}
.y1b5{bottom:-51.215200pt;}
.y1ff{bottom:-50.960933pt;}
.y17d{bottom:-49.694267pt;}
.yee{bottom:-29.024933pt;}
.y1b4{bottom:-19.855600pt;}
.y1fe{bottom:-18.240933pt;}
.y17c{bottom:-16.974267pt;}
.yed{bottom:-5.024173pt;}
.y0{bottom:0.000000pt;}
.y1b3{bottom:0.146440pt;}
.y1fd{bottom:1.759067pt;}
.y17b{bottom:3.025733pt;}
.y199{bottom:13.185733pt;}
.y116{bottom:24.895067pt;}
.y118{bottom:25.134459pt;}
.y69{bottom:28.346667pt;}
.y192{bottom:28.785733pt;}
.y7{bottom:31.933340pt;}
.y117{bottom:46.815067pt;}
.y193{bottom:59.025733pt;}
.y6{bottom:59.133337pt;}
.y5{bottom:86.333337pt;}
.y10d{bottom:88.415635pt;}
.y194{bottom:89.265733pt;}
.y151{bottom:92.108000pt;}
.y3a{bottom:93.018667pt;}
.y68{bottom:93.393333pt;}
.yd6{bottom:94.241333pt;}
.y236{bottom:96.218667pt;}
.y10b{bottom:100.254592pt;}
.y2c8{bottom:101.924000pt;}
.y315{bottom:103.518667pt;}
.y26f{bottom:103.917333pt;}
.y295{bottom:104.714667pt;}
.y25e{bottom:105.112000pt;}
.ye4{bottom:105.909333pt;}
.y2df{bottom:107.544000pt;}
.y150{bottom:108.844000pt;}
.y39{bottom:108.920000pt;}
.y67{bottom:110.130667pt;}
.y10c{bottom:110.175067pt;}
.yd5{bottom:110.978667pt;}
.y235{bottom:112.956000pt;}
.y2c7{bottom:118.661333pt;}
.y314{bottom:118.861333pt;}
.y195{bottom:119.505733pt;}
.y26e{bottom:120.654667pt;}
.y294{bottom:121.450667pt;}
.y25d{bottom:121.849333pt;}
.y10a{bottom:121.935200pt;}
.ye3{bottom:122.646667pt;}
.y2de{bottom:122.885333pt;}
.y9f{bottom:123.045333pt;}
.y24{bottom:123.790666pt;}
.y38{bottom:124.820000pt;}
.y14f{bottom:125.581333pt;}
.y66{bottom:126.868000pt;}
.yd4{bottom:127.716000pt;}
.y234{bottom:129.693333pt;}
.y313{bottom:134.202667pt;}
.y2c6{bottom:135.398667pt;}
.y26d{bottom:137.392000pt;}
.y293{bottom:138.188000pt;}
.y2dd{bottom:138.228000pt;}
.y25c{bottom:138.586667pt;}
.ye2{bottom:139.384000pt;}
.y9e{bottom:139.782667pt;}
.y37{bottom:140.720000pt;}
.y14e{bottom:142.318667pt;}
.y1ce{bottom:143.502667pt;}
.y65{bottom:143.605333pt;}
.y109{bottom:144.334459pt;}
.yd3{bottom:144.453333pt;}
.y233{bottom:146.430667pt;}
.y312{bottom:149.545333pt;}
.y196{bottom:149.745733pt;}
.y2c5{bottom:152.136000pt;}
.y2dc{bottom:153.570667pt;}
.y26c{bottom:154.129333pt;}
.y292{bottom:154.925333pt;}
.ye1{bottom:156.121333pt;}
.y9d{bottom:156.520000pt;}
.y36{bottom:156.621333pt;}
.y14d{bottom:159.056000pt;}
.y25b{bottom:159.309333pt;}
.y1cd{bottom:160.306667pt;}
.y64{bottom:160.342667pt;}
.yd2{bottom:161.190667pt;}
.y232{bottom:163.168000pt;}
.y120{bottom:163.216000pt;}
.y311{bottom:164.888000pt;}
.y108{bottom:166.015067pt;}
.y2c4{bottom:168.873333pt;}
.y2db{bottom:168.913333pt;}
.y176{bottom:170.338667pt;}
.y26b{bottom:170.866667pt;}
.y291{bottom:171.662667pt;}
.y35{bottom:172.521333pt;}
.ye0{bottom:172.858667pt;}
.y9c{bottom:173.257333pt;}
.y1b{bottom:175.052000pt;}
.y63{bottom:177.080000pt;}
.y1cc{bottom:177.110667pt;}
.y1f8{bottom:177.766667pt;}
.yd1{bottom:177.928000pt;}
.y14c{bottom:179.778667pt;}
.y231{bottom:179.904000pt;}
.y11f{bottom:179.953333pt;}
.y197{bottom:179.985733pt;}
.y310{bottom:180.230667pt;}
.y2da{bottom:184.256000pt;}
.y2c3{bottom:185.610667pt;}
.y23{bottom:186.238666pt;}
.y1a{bottom:186.252002pt;}
.y175{bottom:187.076000pt;}
.y26a{bottom:187.604000pt;}
.y290{bottom:188.400000pt;}
.y34{bottom:188.421333pt;}
.y25a{bottom:189.197333pt;}
.ydf{bottom:189.596000pt;}
.y9b{bottom:189.994667pt;}
.y62{bottom:193.817333pt;}
.y1cb{bottom:193.913333pt;}
.y1f7{bottom:194.504000pt;}
.yd0{bottom:194.665333pt;}
.y30f{bottom:195.573333pt;}
.y107{bottom:196.495067pt;}
.y230{bottom:196.641333pt;}
.y11e{bottom:196.690667pt;}
.y22{bottom:197.438668pt;}
.y19{bottom:197.452004pt;}
.y2d9{bottom:199.598667pt;}
.y2c2{bottom:202.348000pt;}
.y174{bottom:203.813333pt;}
.y33{bottom:204.322667pt;}
.y111{bottom:204.335067pt;}
.y269{bottom:204.341333pt;}
.y28f{bottom:205.137333pt;}
.y259{bottom:205.934667pt;}
.yde{bottom:206.333333pt;}
.y9a{bottom:206.732000pt;}
.y21{bottom:208.638670pt;}
.y18{bottom:208.651996pt;}
.y14b{bottom:209.666667pt;}
.y198{bottom:210.225733pt;}
.y61{bottom:210.554667pt;}
.y1ca{bottom:210.717333pt;}
.y30e{bottom:210.916000pt;}
.y1f6{bottom:211.241333pt;}
.ycf{bottom:211.402667pt;}
.y22f{bottom:213.378667pt;}
.y11d{bottom:213.428000pt;}
.y2d8{bottom:214.941333pt;}
.y2c1{bottom:219.085333pt;}
.y173{bottom:220.550667pt;}
.y268{bottom:221.077333pt;}
.y28e{bottom:221.874667pt;}
.y258{bottom:222.672000pt;}
.ydd{bottom:223.070667pt;}
.y99{bottom:223.469333pt;}
.y30d{bottom:226.258667pt;}
.y14a{bottom:226.404000pt;}
.y60{bottom:227.292000pt;}
.y1f5{bottom:227.978667pt;}
.yce{bottom:228.140000pt;}
.y106{bottom:229.695635pt;}
.y22e{bottom:230.116000pt;}
.y11c{bottom:230.165333pt;}
.y2d7{bottom:230.284000pt;}
.y20{bottom:231.038664pt;}
.y17{bottom:231.052000pt;}
.y1c9{bottom:233.922667pt;}
.y2c0{bottom:235.822667pt;}
.y172{bottom:237.288000pt;}
.y257{bottom:239.409333pt;}
.ydc{bottom:239.808000pt;}
.y98{bottom:240.206667pt;}
.y30c{bottom:241.601333pt;}
.y267{bottom:241.800000pt;}
.y1f{bottom:242.238666pt;}
.y16{bottom:242.252002pt;}
.y28d{bottom:242.597333pt;}
.y149{bottom:243.141333pt;}
.y5f{bottom:244.029333pt;}
.y1f4{bottom:244.716000pt;}
.ycd{bottom:244.877333pt;}
.y2d6{bottom:245.626667pt;}
.y22d{bottom:246.853333pt;}
.y11b{bottom:246.902667pt;}
.y105{bottom:251.455067pt;}
.y2bf{bottom:252.560000pt;}
.y1e{bottom:253.438668pt;}
.y15{bottom:253.451999pt;}
.y171{bottom:254.025333pt;}
.y256{bottom:256.146667pt;}
.ydb{bottom:256.545333pt;}
.y97{bottom:256.944000pt;}
.y266{bottom:259.733333pt;}
.y148{bottom:259.878667pt;}
.y5e{bottom:260.766667pt;}
.y2d5{bottom:260.968000pt;}
.y1f3{bottom:261.453333pt;}
.ycc{bottom:261.614667pt;}
.y1c8{bottom:263.564000pt;}
.y22c{bottom:263.590667pt;}
.y32{bottom:264.148000pt;}
.y179{bottom:266.305853pt;}
.y11a{bottom:267.625333pt;}
.y2be{bottom:269.297333pt;}
.y30b{bottom:272.285333pt;}
.y28c{bottom:272.485333pt;}
.y255{bottom:272.884000pt;}
.yda{bottom:273.282667pt;}
.y96{bottom:273.681333pt;}
.y170{bottom:274.748000pt;}
.y178{bottom:274.865733pt;}
.y104{bottom:275.774459pt;}
.y1d{bottom:275.838667pt;}
.y14{bottom:275.852001pt;}
.y1b2{bottom:275.906192pt;}
.y2d4{bottom:276.310667pt;}
.y147{bottom:276.616000pt;}
.y5d{bottom:277.504000pt;}
.y1f2{bottom:278.190667pt;}
.ycb{bottom:278.352000pt;}
.y31{bottom:280.048000pt;}
.y22b{bottom:280.328000pt;}
.y2bd{bottom:286.034667pt;}
.y1c{bottom:287.038667pt;}
.y13{bottom:287.052000pt;}
.y30a{bottom:287.628000pt;}
.y28b{bottom:289.222667pt;}
.y254{bottom:289.621333pt;}
.y1c7{bottom:289.957333pt;}
.yd9{bottom:290.020000pt;}
.y95{bottom:290.417333pt;}
.y2d3{bottom:291.653333pt;}
.y1b1{bottom:293.025696pt;}
.y146{bottom:293.353333pt;}
.y5c{bottom:294.241333pt;}
.y119{bottom:294.672000pt;}
.y1f1{bottom:294.928000pt;}
.yca{bottom:295.089333pt;}
.y30{bottom:295.948000pt;}
.y22a{bottom:297.065333pt;}
.y103{bottom:297.455067pt;}
.y2bc{bottom:302.772000pt;}
.y309{bottom:302.970667pt;}
.y28a{bottom:305.960000pt;}
.y253{bottom:306.358667pt;}
.yd8{bottom:306.757333pt;}
.y2d2{bottom:306.996000pt;}
.y94{bottom:307.154667pt;}
.y12{bottom:309.452000pt;}
.y1a4{bottom:309.894667pt;}
.y1b0{bottom:310.065040pt;}
.y145{bottom:310.090667pt;}
.y5b{bottom:310.978667pt;}
.y1f0{bottom:311.665333pt;}
.yc9{bottom:311.826667pt;}
.y2f{bottom:311.849333pt;}
.y16f{bottom:313.026667pt;}
.y100{bottom:315.935027pt;}
.ye5{bottom:317.265333pt;}
.y229{bottom:317.788000pt;}
.y308{bottom:318.313333pt;}
.y2bb{bottom:319.509333pt;}
.y2d1{bottom:322.338667pt;}
.y289{bottom:322.697333pt;}
.y252{bottom:323.096000pt;}
.y93{bottom:323.892000pt;}
.y144{bottom:326.828000pt;}
.y1af{bottom:327.184544pt;}
.yd7{bottom:327.478667pt;}
.y5a{bottom:327.716000pt;}
.y1ef{bottom:328.402667pt;}
.yc8{bottom:328.564000pt;}
.y16e{bottom:329.830667pt;}
.y307{bottom:333.656000pt;}
.y2e{bottom:335.720000pt;}
.y228{bottom:335.721333pt;}
.y2ba{bottom:336.246667pt;}
.yff{bottom:337.615635pt;}
.y2d0{bottom:337.681333pt;}
.y288{bottom:339.434667pt;}
.y251{bottom:339.833333pt;}
.y92{bottom:340.629333pt;}
.y143{bottom:343.565333pt;}
.y11{bottom:343.809333pt;}
.y1ae{bottom:344.225224pt;}
.y59{bottom:344.453333pt;}
.y1ee{bottom:345.140000pt;}
.yc7{bottom:345.301333pt;}
.y16d{bottom:346.633333pt;}
.y306{bottom:348.998667pt;}
.y2d{bottom:351.620000pt;}
.y2b9{bottom:352.984000pt;}
.y2cf{bottom:353.024000pt;}
.y227{bottom:353.653333pt;}
.y169{bottom:356.005333pt;}
.y287{bottom:356.172000pt;}
.y250{bottom:356.570667pt;}
.y91{bottom:357.366667pt;}
.yfe{bottom:359.375067pt;}
.y142{bottom:360.302667pt;}
.y1ad{bottom:361.344728pt;}
.y10{bottom:362.706666pt;}
.y16c{bottom:363.437333pt;}
.y305{bottom:364.341333pt;}
.y58{bottom:365.176000pt;}
.y1ed{bottom:365.862667pt;}
.yc6{bottom:366.024000pt;}
.y2c{bottom:367.520000pt;}
.y2b8{bottom:369.721333pt;}
.y2ce{bottom:372.350667pt;}
.y286{bottom:372.909333pt;}
.y24f{bottom:373.308000pt;}
.y90{bottom:374.104000pt;}
.y1ac{bottom:378.464232pt;}
.y304{bottom:379.684000pt;}
.y16b{bottom:380.240000pt;}
.y2b{bottom:383.421333pt;}
.y226{bottom:383.541333pt;}
.y2b7{bottom:386.458667pt;}
.y102{bottom:388.094619pt;}
.y285{bottom:389.646667pt;}
.y24e{bottom:390.045333pt;}
.y8f{bottom:390.841333pt;}
.y303{bottom:395.025333pt;}
.y1ab{bottom:395.504912pt;}
.y141{bottom:395.740000pt;}
.yc5{bottom:395.912000pt;}
.y16a{bottom:397.044000pt;}
.y2a{bottom:399.321333pt;}
.y225{bottom:400.278667pt;}
.y2cd{bottom:402.238667pt;}
.y2b6{bottom:403.196000pt;}
.y1ec{bottom:404.141333pt;}
.y284{bottom:406.384000pt;}
.y24d{bottom:406.782667pt;}
.y8e{bottom:407.578667pt;}
.y101{bottom:409.695067pt;}
.y302{bottom:410.368000pt;}
.yc4{bottom:412.649333pt;}
.y140{bottom:413.148000pt;}
.y29{bottom:415.221333pt;}
.y1aa{bottom:416.624400pt;}
.y224{bottom:417.016000pt;}
.y110{bottom:417.935635pt;}
.y2b5{bottom:419.933333pt;}
.y168{bottom:420.249333pt;}
.y1eb{bottom:420.944000pt;}
.y283{bottom:423.121333pt;}
.y24c{bottom:423.518667pt;}
.y8d{bottom:424.316000pt;}
.y301{bottom:425.710667pt;}
.y2cc{bottom:425.830667pt;}
.y13f{bottom:427.760000pt;}
.y57{bottom:428.861333pt;}
.yc3{bottom:429.385333pt;}
.yf{bottom:430.990669pt;}
.y28{bottom:431.122667pt;}
.y223{bottom:433.753333pt;}
.yfd{bottom:433.934459pt;}
.y1fb{bottom:434.159187pt;}
.y2b4{bottom:436.670667pt;}
.y167{bottom:437.053333pt;}
.y1ea{bottom:437.748000pt;}
.y10f{bottom:439.695067pt;}
.y282{bottom:439.858667pt;}
.y24b{bottom:440.256000pt;}
.y8c{bottom:441.053333pt;}
.y13e{bottom:442.370667pt;}
.y1fa{bottom:442.719067pt;}
.yc2{bottom:446.122667pt;}
.y56{bottom:446.156000pt;}
.ye{bottom:446.990669pt;}
.y27{bottom:447.022667pt;}
.y1a9{bottom:449.344400pt;}
.y222{bottom:450.490667pt;}
.y2b3{bottom:453.406667pt;}
.y166{bottom:453.857333pt;}
.y1e9{bottom:454.552000pt;}
.yfc{bottom:455.615067pt;}
.y300{bottom:456.396000pt;}
.y13a{bottom:456.982667pt;}
.y24a{bottom:456.993333pt;}
.y2cb{bottom:457.392000pt;}
.y8b{bottom:457.790667pt;}
.y281{bottom:460.580000pt;}
.y265{bottom:460.978667pt;}
.yc1{bottom:462.860000pt;}
.y26{bottom:462.922667pt;}
.yd{bottom:462.990669pt;}
.y162{bottom:463.046667pt;}
.y221{bottom:467.228000pt;}
.y1a8{bottom:469.344400pt;}
.y2b2{bottom:470.144000pt;}
.y165{bottom:470.660000pt;}
.y1e8{bottom:471.354667pt;}
.y13d{bottom:471.594667pt;}
.y2ff{bottom:471.738667pt;}
.yfb{bottom:472.974419pt;}
.y249{bottom:473.730667pt;}
.y2ca{bottom:474.129333pt;}
.y8a{bottom:474.528000pt;}
.y25{bottom:478.824000pt;}
.yc{bottom:478.990666pt;}
.y55{bottom:479.392000pt;}
.y1c6{bottom:479.504400pt;}
.y220{bottom:483.965333pt;}
.y13c{bottom:486.206667pt;}
.y2b1{bottom:486.881333pt;}
.y2fe{bottom:487.081333pt;}
.y164{bottom:487.464000pt;}
.y1e7{bottom:488.158667pt;}
.y248{bottom:490.468000pt;}
.y264{bottom:490.866667pt;}
.y89{bottom:491.265333pt;}
.yfa{bottom:494.655027pt;}
.yb{bottom:494.990666pt;}
.y1bf{bottom:495.104400pt;}
.y54{bottom:496.686667pt;}
.yc0{bottom:498.534667pt;}
.y21f{bottom:500.702667pt;}
.y13b{bottom:500.818667pt;}
.y2fd{bottom:502.424000pt;}
.y2b0{bottom:503.618667pt;}
.y163{bottom:504.268000pt;}
.y1e6{bottom:504.962667pt;}
.y115{bottom:506.895635pt;}
.y247{bottom:507.205333pt;}
.y263{bottom:507.604000pt;}
.y88{bottom:508.002667pt;}
.y53{bottom:513.982667pt;}
.yf9{bottom:516.335635pt;}
.y21e{bottom:517.440000pt;}
.y2fc{bottom:517.766667pt;}
.ybf{bottom:518.598667pt;}
.y2af{bottom:520.356000pt;}
.y1e5{bottom:521.765333pt;}
.y246{bottom:523.942667pt;}
.y139{bottom:524.024000pt;}
.y262{bottom:524.341333pt;}
.y87{bottom:524.740000pt;}
.y1c0{bottom:525.344400pt;}
.y161{bottom:527.473333pt;}
.y114{bottom:528.655067pt;}
.y52{bottom:531.277333pt;}
.y2fb{bottom:533.108000pt;}
.ybe{bottom:533.210667pt;}
.y21d{bottom:534.177333pt;}
.y2ae{bottom:537.093333pt;}
.yf8{bottom:538.095067pt;}
.y1e4{bottom:538.569333pt;}
.ybb{bottom:540.517333pt;}
.y280{bottom:540.680000pt;}
.y261{bottom:541.078667pt;}
.y86{bottom:541.477333pt;}
.y245{bottom:544.665333pt;}
.ybd{bottom:547.822667pt;}
.y2fa{bottom:548.450667pt;}
.y51{bottom:548.572000pt;}
.y21c{bottom:550.914667pt;}
.y138{bottom:553.665333pt;}
.y2ad{bottom:553.830667pt;}
.y1e3{bottom:555.373333pt;}
.y1c1{bottom:555.584400pt;}
.y160{bottom:557.113333pt;}
.y27f{bottom:557.417333pt;}
.y260{bottom:557.816000pt;}
.y85{bottom:558.214667pt;}
.ybc{bottom:562.434667pt;}
.y2f9{bottom:563.793333pt;}
.y50{bottom:565.868000pt;}
.y21b{bottom:567.652000pt;}
.y2ac{bottom:570.568000pt;}
.y1e2{bottom:572.176000pt;}
.ya{bottom:573.786667pt;}
.y27e{bottom:574.154667pt;}
.y244{bottom:574.553333pt;}
.y84{bottom:574.952000pt;}
.y2f8{bottom:579.136000pt;}
.y4f{bottom:583.162667pt;}
.y1a3{bottom:584.184000pt;}
.yba{bottom:585.640000pt;}
.y1c2{bottom:585.824400pt;}
.y137{bottom:586.409333pt;}
.y2ab{bottom:587.305333pt;}
.y1e1{bottom:588.980000pt;}
.y113{bottom:589.134459pt;}
.y15f{bottom:590.094667pt;}
.y27d{bottom:590.892000pt;}
.y243{bottom:591.290667pt;}
.y83{bottom:591.689333pt;}
.y9{bottom:592.685334pt;}
.y2f7{bottom:594.478667pt;}
.y10e{bottom:597.055067pt;}
.y21a{bottom:597.488000pt;}
.yb8{bottom:600.252000pt;}
.y4e{bottom:600.458667pt;}
.y1a2{bottom:600.921333pt;}
.y136{bottom:603.146667pt;}
.y2aa{bottom:604.042667pt;}
.y1e0{bottom:605.784000pt;}
.y15e{bottom:606.832000pt;}
.y27c{bottom:607.629333pt;}
.y242{bottom:608.028000pt;}
.y82{bottom:608.426667pt;}
.y2f6{bottom:609.821333pt;}
.y112{bottom:610.815067pt;}
.yb9{bottom:614.864000pt;}
.y1c3{bottom:616.064400pt;}
.y1a1{bottom:617.658667pt;}
.y4d{bottom:617.753333pt;}
.y135{bottom:619.884000pt;}
.y1f9{bottom:620.081333pt;}
.y2a9{bottom:620.780000pt;}
.y1df{bottom:622.586667pt;}
.y15d{bottom:623.569333pt;}
.y27b{bottom:624.366667pt;}
.y241{bottom:624.765333pt;}
.y81{bottom:625.164000pt;}
.y1a0{bottom:634.396000pt;}
.y4c{bottom:635.048000pt;}
.y134{bottom:636.621333pt;}
.y2a8{bottom:637.517333pt;}
.yb7{bottom:638.069333pt;}
.y1de{bottom:639.390667pt;}
.y15c{bottom:640.306667pt;}
.y2f5{bottom:640.506667pt;}
.y27a{bottom:641.104000pt;}
.y240{bottom:641.502667pt;}
.y80{bottom:641.901333pt;}
.yb3{bottom:645.376000pt;}
.y8{bottom:645.598667pt;}
.y1c4{bottom:646.304400pt;}
.y19f{bottom:651.132000pt;}
.y4b{bottom:652.344000pt;}
.yb6{bottom:652.681333pt;}
.y133{bottom:653.358667pt;}
.y2a7{bottom:654.254667pt;}
.yec{bottom:654.735379pt;}
.y2f4{bottom:655.848000pt;}
.y1dd{bottom:656.194667pt;}
.y15b{bottom:657.044000pt;}
.y279{bottom:657.841333pt;}
.y23f{bottom:658.240000pt;}
.y7f{bottom:658.638667pt;}
.yb1{bottom:659.988000pt;}
.yb5{bottom:667.293333pt;}
.y19e{bottom:667.869333pt;}
.y4{bottom:668.977329pt;}
.y4a{bottom:669.638667pt;}
.y132{bottom:670.096000pt;}
.y2a6{bottom:670.992000pt;}
.y2f3{bottom:671.190667pt;}
.yeb{bottom:671.854883pt;}
.y1dc{bottom:672.997333pt;}
.y15a{bottom:673.781333pt;}
.y278{bottom:674.578667pt;}
.yb2{bottom:674.598667pt;}
.y23e{bottom:674.977333pt;}
.y7e{bottom:675.376000pt;}
.y1c5{bottom:676.544400pt;}
.yb4{bottom:681.905333pt;}
.y19d{bottom:684.606667pt;}
.y2f2{bottom:686.533333pt;}
.y131{bottom:686.833333pt;}
.y49{bottom:686.933333pt;}
.y2a5{bottom:687.729333pt;}
.yea{bottom:688.974387pt;}
.y1db{bottom:689.801333pt;}
.y159{bottom:690.518667pt;}
.y23d{bottom:691.714667pt;}
.y7d{bottom:692.113333pt;}
.y277{bottom:695.301333pt;}
.y19c{bottom:701.344000pt;}
.y2f1{bottom:701.876000pt;}
.y130{bottom:703.570667pt;}
.y48{bottom:704.229333pt;}
.y2a4{bottom:704.466667pt;}
.yb0{bottom:705.110667pt;}
.ye9{bottom:706.015067pt;}
.y1da{bottom:706.605333pt;}
.y158{bottom:707.256000pt;}
.y23c{bottom:708.452000pt;}
.y7c{bottom:708.850667pt;}
.yad{bottom:712.417333pt;}
.y2f0{bottom:717.218667pt;}
.yaf{bottom:719.722667pt;}
.y12f{bottom:720.308000pt;}
.y2a3{bottom:721.204000pt;}
.y47{bottom:721.524000pt;}
.y19b{bottom:722.066667pt;}
.y1d9{bottom:723.408000pt;}
.y157{bottom:723.993333pt;}
.y23b{bottom:725.189333pt;}
.y7b{bottom:725.588000pt;}
.yac{bottom:727.028000pt;}
.y318{bottom:728.509333pt;}
.y2c9{bottom:729.173333pt;}
.y2ef{bottom:732.561333pt;}
.y1a6{bottom:732.624520pt;}
.yae{bottom:734.334667pt;}
.y12e{bottom:737.045333pt;}
.y2a2{bottom:737.941333pt;}
.y1d8{bottom:740.212000pt;}
.y156{bottom:740.730667pt;}
.y1a5{bottom:741.184400pt;}
.y23a{bottom:741.926667pt;}
.y7a{bottom:742.324000pt;}
.y317{bottom:743.852000pt;}
.y25f{bottom:745.910667pt;}
.y2ee{bottom:747.904000pt;}
.y19a{bottom:749.113333pt;}
.y12d{bottom:753.782667pt;}
.ye7{bottom:754.655187pt;}
.y46{bottom:755.822667pt;}
.y1d7{bottom:757.016000pt;}
.y155{bottom:757.468000pt;}
.yab{bottom:757.540000pt;}
.y239{bottom:758.664000pt;}
.y79{bottom:759.061333pt;}
.y316{bottom:759.194667pt;}
.ye6{bottom:763.215067pt;}
.y2ed{bottom:763.246667pt;}
.y177{bottom:769.050667pt;}
.y45{bottom:770.168000pt;}
.y12c{bottom:770.520000pt;}
.ya9{bottom:772.152000pt;}
.y1d6{bottom:773.818667pt;}
.y154{bottom:774.205333pt;}
.y238{bottom:775.401333pt;}
.y78{bottom:775.798667pt;}
.y2ec{bottom:778.589333pt;}
.y3{bottom:781.661334pt;}
.yaa{bottom:786.764000pt;}
.y12b{bottom:787.257333pt;}
.y44{bottom:788.372000pt;}
.y2a1{bottom:788.552000pt;}
.y1d5{bottom:790.622667pt;}
.y237{bottom:792.138667pt;}
.y77{bottom:792.536000pt;}
.y2eb{bottom:793.930667pt;}
.y153{bottom:794.928000pt;}
.y43{bottom:798.861333pt;}
.y12a{bottom:803.994667pt;}
.y2a0{bottom:805.289333pt;}
.y1d4{bottom:807.425333pt;}
.y276{bottom:808.874667pt;}
.y76{bottom:809.273333pt;}
.ya8{bottom:809.969333pt;}
.y152{bottom:812.860000pt;}
.y42{bottom:817.065333pt;}
.y129{bottom:820.732000pt;}
.y29f{bottom:822.025333pt;}
.y1d3{bottom:824.229333pt;}
.ya6{bottom:824.581333pt;}
.y2ea{bottom:824.616000pt;}
.y275{bottom:825.612000pt;}
.y75{bottom:826.010667pt;}
.y41{bottom:827.553333pt;}
.y128{bottom:837.469333pt;}
.y29e{bottom:838.762667pt;}
.ya7{bottom:839.193333pt;}
.y2e9{bottom:839.958667pt;}
.y2{bottom:840.112001pt;}
.y1d2{bottom:841.033333pt;}
.y274{bottom:842.349333pt;}
.y74{bottom:842.748000pt;}
.y40{bottom:845.757333pt;}
.y2e8{bottom:855.301333pt;}
.y29d{bottom:855.500000pt;}
.y1d1{bottom:857.836000pt;}
.y127{bottom:858.192000pt;}
.y273{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.y73{bottom:859.485333pt;}
.ya4{bottom:862.398667pt;}
.ya3{bottom:869.705333pt;}
.y2e7{bottom:870.644000pt;}
.y29c{bottom:872.237333pt;}
.y1d0{bottom:874.640000pt;}
.y272{bottom:875.824000pt;}
.y72{bottom:876.222667pt;}
.ya5{bottom:877.010667pt;}
.y3e{bottom:885.469333pt;}
.y2e6{bottom:885.986667pt;}
.y29b{bottom:888.974667pt;}
.y3f{bottom:890.292000pt;}
.y126{bottom:890.840000pt;}
.y1cf{bottom:891.444000pt;}
.y271{bottom:892.561333pt;}
.y71{bottom:892.960000pt;}
.ya2{bottom:900.216000pt;}
.y2e5{bottom:901.329333pt;}
.y29a{bottom:905.712000pt;}
.ya1{bottom:907.522667pt;}
.y125{bottom:908.246667pt;}
.y70{bottom:909.697333pt;}
.y270{bottom:913.284000pt;}
.y2e4{bottom:916.670667pt;}
.y3d{bottom:921.320000pt;}
.y299{bottom:922.449333pt;}
.y124{bottom:925.050667pt;}
.y6f{bottom:926.434667pt;}
.y2e3{bottom:932.013333pt;}
.y298{bottom:939.186667pt;}
.y123{bottom:941.854667pt;}
.y6e{bottom:943.172000pt;}
.y3c{bottom:946.425333pt;}
.ya0{bottom:947.125333pt;}
.y2e2{bottom:947.356000pt;}
.y297{bottom:955.924000pt;}
.y6d{bottom:959.909333pt;}
.y2e1{bottom:962.698667pt;}
.y122{bottom:965.060000pt;}
.y3b{bottom:971.530667pt;}
.y296{bottom:972.661333pt;}
.y6c{bottom:976.646667pt;}
.y2e0{bottom:978.041333pt;}
.y6b{bottom:993.384000pt;}
.y121{bottom:994.700000pt;}
.y6a{bottom:1046.810667pt;}
.h8{height:28.560000pt;}
.h12{height:28.947524pt;}
.h10{height:29.074944pt;}
.h24{height:31.992188pt;}
.hb{height:33.771789pt;}
.hc{height:33.957757pt;}
.h19{height:34.430976pt;}
.h26{height:35.052646pt;}
.h9{height:35.242667pt;}
.hf{height:38.256384pt;}
.h13{height:38.596538pt;}
.h14{height:38.809074pt;}
.hd{height:38.947124pt;}
.h1e{height:39.588281pt;}
.h3{height:42.840000pt;}
.h15{height:43.421286pt;}
.h28{height:43.612570pt;}
.h1c{height:43.660390pt;}
.h20{height:44.648438pt;}
.h16{height:48.245551pt;}
.h17{height:48.511220pt;}
.h21{height:48.769219pt;}
.h11{height:49.201961pt;}
.h1f{height:49.708594pt;}
.h7{height:50.346667pt;}
.h6{height:52.864000pt;}
.h29{height:54.087953pt;}
.h2{height:60.416000pt;}
.h18{height:63.652309pt;}
.he{height:68.861952pt;}
.h1a{height:72.642620pt;}
.h1b{height:72.647953pt;}
.h23{height:85.550802pt;}
.h5{height:85.589333pt;}
.h4{height:105.826671pt;}
.h22{height:237.617333pt;}
.h25{height:253.354667pt;}
.h27{height:386.586667pt;}
.h1d{height:638.368000pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:334.657333pt;}
.w5{width:469.989333pt;}
.w2{width:566.928019pt;}
.w4{width:633.121867pt;}
.w7{width:682.428933pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x3b{left:-231.581333pt;}
.x32{left:-169.160000pt;}
.x3d{left:-57.741333pt;}
.x43{left:-55.741733pt;}
.x40{left:-54.221333pt;}
.x42{left:-49.661333pt;}
.x3e{left:-29.421427pt;}
.x45{left:-9.175067pt;}
.x44{left:-2.861333pt;}
.x1a{left:-1.831467pt;}
.x0{left:0.000000pt;}
.x34{left:4.680000pt;}
.x39{left:6.679600pt;}
.x36{left:8.200000pt;}
.x38{left:12.760000pt;}
.x28{left:19.528397pt;}
.x27{left:25.608533pt;}
.x29{left:28.168533pt;}
.x35{left:32.999906pt;}
.x2c{left:39.768533pt;}
.x5{left:47.621333pt;}
.x13{left:55.592000pt;}
.x3a{left:59.560000pt;}
.x49{left:75.914667pt;}
.x19{left:80.100800pt;}
.x4b{left:81.472000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x11{left:105.640000pt;}
.x47{left:164.664933pt;}
.x1b{left:172.008533pt;}
.x4{left:180.874667pt;}
.x6{left:183.510667pt;}
.x1f{left:190.168533pt;}
.x48{left:192.984933pt;}
.x1d{left:200.328439pt;}
.x7{left:201.317333pt;}
.x14{left:210.817333pt;}
.x18{left:219.865333pt;}
.xf{left:220.912000pt;}
.xd{left:221.858667pt;}
.x25{left:224.328317pt;}
.x2e{left:229.828000pt;}
.xe{left:239.924000pt;}
.x10{left:250.204000pt;}
.x4a{left:280.688000pt;}
.x2f{left:328.549333pt;}
.x8{left:360.798667pt;}
.x31{left:376.549333pt;}
.x9{left:378.598667pt;}
.x3f{left:386.259934pt;}
.x20{left:387.208533pt;}
.x21{left:389.208533pt;}
.x41{left:391.936713pt;}
.x2a{left:396.248533pt;}
.x24{left:398.488533pt;}
.x22{left:400.968533pt;}
.x3c{left:402.258533pt;}
.x3{left:404.408000pt;}
.x2b{left:408.408805pt;}
.x15{left:414.042667pt;}
.x2d{left:425.208077pt;}
.x30{left:427.328000pt;}
.x1e{left:437.528533pt;}
.x23{left:448.968341pt;}
.x37{left:454.358046pt;}
.x33{left:464.679867pt;}
.x26{left:466.008957pt;}
.xa{left:506.338667pt;}
.xb{left:527.466667pt;}
.x1c{left:630.167083pt;}
.x16{left:649.257333pt;}
.x17{left:660.010667pt;}
.x12{left:662.342667pt;}
.x46{left:675.704933pt;}
.xc{left:727.805333pt;}
}




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