
    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_63ea1985351e6798754d90b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_cdafd3ec954335fa4af3aa0f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_94797181754cec6f79125b96.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b8dcfa7ae1ae708a7ab755fe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.894000;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_7966318324cca4d770d4baad.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_104828f108a65f8e29cfcbcd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d3c93a704ccdfb38ba7e5c93.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.008301;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_14793cbe8f133448089ebb13.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.626000;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_912dd8e324812aa4d3834675.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_63e8d9250e8eab4925fbf5c3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4e920813c6907bb6e7c05b5e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.008301;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_fa0b5b7f61a5998f7409e2d0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b8fe8c7fb1252bed4fb35592.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2f2684ac7d5a97098be351d7.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.008301;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_fa0b5b7f61a5998f7409e2d0.woff2')format("woff");}.fff{font-family:fff;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b8fe8c7fb1252bed4fb35592.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_2f2684ac7d5a97098be351d7.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.008301;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_5b7fa9ef9a5dd11e0a60e3b7.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_eb144f5f16ecbcc6c43d600a.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_a5de2fe2f1a9b3791483d6ac.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.008301;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_500844741e8972627cb61f2e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_9db6c480387bf805bcb69d3d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.687500;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_7c5a2c733638b2cf29537a9d.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666000;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_f9664622da9f7767ad3be1cd.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_4d2c4bf2e189fa9ff5c4619c.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_160cc74d8b58fa4b4b650905.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.008301;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;}
.m2a{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m8{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);}
.m2c{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);}
.m29{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);}
.m2b{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);}
.m1c{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);}
.m22{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);}
.m1d{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);}
.m28{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);}
.m2d{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);}
.m1b{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);}
.ma{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);}
.m24{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);}
.m17{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);}
.m12{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);}
.me{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);}
.m25{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);}
.m20{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m21{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);}
.m1f{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);}
.md{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m7{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);}
.m18{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);}
.m23{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.mc{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);}
.m9{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);}
.m5{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);}
.m16{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);}
.m26{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);}
.m4{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);}
.m10{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);}
.m15{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);}
.m27{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);}
.m19{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);}
.m6{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);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-52.854000px;}
.v2{vertical-align:-13.318200px;}
.v1{vertical-align:-12.306000px;}
.v3{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:40.470000px;}
.v6{vertical-align:51.180000px;}
.ls1c{letter-spacing:-0.258516px;}
.ls8d{letter-spacing:-0.252504px;}
.ls75{letter-spacing:-0.210420px;}
.ls15{letter-spacing:-0.192384px;}
.ls93{letter-spacing:-0.180360px;}
.ls3b{letter-spacing:-0.171943px;}
.ls64{letter-spacing:-0.151502px;}
.ls8e{letter-spacing:-0.150300px;}
.ls66{letter-spacing:-0.144288px;}
.ls59{letter-spacing:-0.138877px;}
.ls8f{letter-spacing:-0.138276px;}
.ls16{letter-spacing:-0.132264px;}
.ls18{letter-spacing:-0.126252px;}
.ls3a{letter-spacing:-0.125651px;}
.ls25{letter-spacing:-0.114228px;}
.ls90{letter-spacing:-0.108216px;}
.ls70{letter-spacing:-0.108000px;}
.ls17{letter-spacing:-0.102204px;}
.ls6f{letter-spacing:-0.096192px;}
.ls74{letter-spacing:-0.090180px;}
.ls60{letter-spacing:-0.086573px;}
.ls20{letter-spacing:-0.084168px;}
.ls36{letter-spacing:-0.079358px;}
.ls22{letter-spacing:-0.078156px;}
.ls5a{letter-spacing:-0.072745px;}
.ls1e{letter-spacing:-0.072144px;}
.ls1f{letter-spacing:-0.066132px;}
.ls95{letter-spacing:-0.060120px;}
.ls24{letter-spacing:-0.054108px;}
.ls3e{letter-spacing:-0.052906px;}
.ls61{letter-spacing:-0.050501px;}
.ls19{letter-spacing:-0.048096px;}
.ls3d{letter-spacing:-0.046292px;}
.ls5d{letter-spacing:-0.043286px;}
.ls73{letter-spacing:-0.042084px;}
.ls38{letter-spacing:-0.039679px;}
.ls71{letter-spacing:-0.039600px;}
.ls5e{letter-spacing:-0.036072px;}
.ls58{letter-spacing:-0.033066px;}
.ls1a{letter-spacing:-0.030060px;}
.ls62{letter-spacing:-0.028858px;}
.ls76{letter-spacing:-0.027000px;}
.ls39{letter-spacing:-0.026453px;}
.ls14{letter-spacing:-0.024048px;}
.ls5b{letter-spacing:-0.021643px;}
.ls57{letter-spacing:-0.019840px;}
.ls21{letter-spacing:-0.018036px;}
.ls65{letter-spacing:-0.014429px;}
.ls37{letter-spacing:-0.013226px;}
.ls1b{letter-spacing:-0.012024px;}
.ls5c{letter-spacing:-0.007214px;}
.ls34{letter-spacing:-0.006613px;}
.ls5f{letter-spacing:-0.006480px;}
.ls1d{letter-spacing:-0.006012px;}
.ls35{letter-spacing:-0.005940px;}
.ls94{letter-spacing:-0.005400px;}
.ls2{letter-spacing:0.000000px;}
.ls98{letter-spacing:0.004800px;}
.ls12{letter-spacing:0.005400px;}
.lsb{letter-spacing:0.006012px;}
.ls2e{letter-spacing:0.006613px;}
.ls4a{letter-spacing:0.007214px;}
.ls31{letter-spacing:0.007920px;}
.ls63{letter-spacing:0.008640px;}
.ls8c{letter-spacing:0.010800px;}
.ls8{letter-spacing:0.012024px;}
.ls40{letter-spacing:0.013226px;}
.ls5{letter-spacing:0.014364px;}
.ls4b{letter-spacing:0.014429px;}
.ls28{letter-spacing:0.015800px;}
.ls23{letter-spacing:0.016200px;}
.ls48{letter-spacing:0.017237px;}
.ls8a{letter-spacing:0.018036px;}
.ls2f{letter-spacing:0.019840px;}
.ls6a{letter-spacing:0.021600px;}
.ls9{letter-spacing:0.024048px;}
.ls42{letter-spacing:0.026453px;}
.ls8b{letter-spacing:0.027000px;}
.ls4e{letter-spacing:0.028858px;}
.lse{letter-spacing:0.030060px;}
.ls11{letter-spacing:0.032400px;}
.ls3c{letter-spacing:0.033066px;}
.ls2c{letter-spacing:0.035640px;}
.ls4d{letter-spacing:0.036072px;}
.ls6b{letter-spacing:0.037800px;}
.ls50{letter-spacing:0.038880px;}
.ls30{letter-spacing:0.039679px;}
.ls7{letter-spacing:0.042084px;}
.ls53{letter-spacing:0.043286px;}
.ls44{letter-spacing:0.046292px;}
.lsc{letter-spacing:0.048096px;}
.ls52{letter-spacing:0.050501px;}
.ls2a{letter-spacing:0.052906px;}
.ls13{letter-spacing:0.054000px;}
.lsd{letter-spacing:0.054108px;}
.ls2d{letter-spacing:0.059400px;}
.ls2b{letter-spacing:0.059519px;}
.ls10{letter-spacing:0.060120px;}
.ls87{letter-spacing:0.062244px;}
.ls55{letter-spacing:0.064930px;}
.lsa{letter-spacing:0.066132px;}
.ls67{letter-spacing:0.070200px;}
.ls3{letter-spacing:0.071820px;}
.ls4f{letter-spacing:0.072144px;}
.ls3f{letter-spacing:0.072745px;}
.ls43{letter-spacing:0.077220px;}
.ls26{letter-spacing:0.079002px;}
.ls41{letter-spacing:0.079358px;}
.ls51{letter-spacing:0.084240px;}
.ls46{letter-spacing:0.086184px;}
.ls4c{letter-spacing:0.086573px;}
.lsf{letter-spacing:0.090180px;}
.ls32{letter-spacing:0.092585px;}
.ls45{letter-spacing:0.105811px;}
.ls54{letter-spacing:0.115430px;}
.ls68{letter-spacing:0.150300px;}
.ls89{letter-spacing:0.167580px;}
.ls6{letter-spacing:0.177156px;}
.ls88{letter-spacing:0.181944px;}
.ls4{letter-spacing:0.191520px;}
.ls29{letter-spacing:0.194872px;}
.ls27{letter-spacing:0.210672px;}
.ls49{letter-spacing:0.212587px;}
.ls47{letter-spacing:0.229824px;}
.ls72{letter-spacing:0.456912px;}
.ls81{letter-spacing:0.642088px;}
.ls82{letter-spacing:0.648088px;}
.ls86{letter-spacing:0.748766px;}
.ls92{letter-spacing:0.811620px;}
.ls79{letter-spacing:1.343675px;}
.ls80{letter-spacing:1.478576px;}
.ls91{letter-spacing:3.330648px;}
.ls1{letter-spacing:11.954850px;}
.ls6c{letter-spacing:12.290400px;}
.ls84{letter-spacing:12.339483px;}
.ls69{letter-spacing:12.348000px;}
.ls7a{letter-spacing:12.370200px;}
.ls7d{letter-spacing:12.849483px;}
.ls7c{letter-spacing:13.116017px;}
.ls56{letter-spacing:13.389734px;}
.ls97{letter-spacing:13.448400px;}
.ls99{letter-spacing:13.454400px;}
.ls6e{letter-spacing:14.166817px;}
.ls7e{letter-spacing:14.283483px;}
.ls77{letter-spacing:14.525471px;}
.ls9a{letter-spacing:15.091576px;}
.ls6d{letter-spacing:15.123227px;}
.ls7b{letter-spacing:16.077483px;}
.ls33{letter-spacing:16.438290px;}
.ls96{letter-spacing:16.562165px;}
.ls83{letter-spacing:17.319483px;}
.ls78{letter-spacing:17.835483px;}
.ls0{letter-spacing:28.453654px;}
.ls85{letter-spacing:63.357483px;}
.ls7f{letter-spacing:63.705483px;}
.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;}
}
.ws11f{word-spacing:-66.290400px;}
.ws11d{word-spacing:-54.037800px;}
.ws11b{word-spacing:-53.973000px;}
.ws11e{word-spacing:-42.055200px;}
.ws11c{word-spacing:-41.812200px;}
.ws119{word-spacing:-15.030000px;}
.ws142{word-spacing:-14.943900px;}
.wsc8{word-spacing:-14.593824px;}
.wsc9{word-spacing:-14.364000px;}
.ws122{word-spacing:-13.449600px;}
.ws8d{word-spacing:-13.377672px;}
.ws8e{word-spacing:-13.167000px;}
.ws4e{word-spacing:-12.161520px;}
.ws15c{word-spacing:-12.151944px;}
.ws4f{word-spacing:-11.970000px;}
.ws30{word-spacing:-11.955150px;}
.ws3{word-spacing:-10.460700px;}
.ws8f{word-spacing:-9.907920px;}
.ws15d{word-spacing:-9.000000px;}
.wse{word-spacing:-4.411469px;}
.wsae{word-spacing:-4.239061px;}
.wsaf{word-spacing:-3.842269px;}
.ws112{word-spacing:-3.744274px;}
.ws113{word-spacing:-3.621629px;}
.wse6{word-spacing:-3.432251px;}
.wsf8{word-spacing:-3.376339px;}
.wsf4{word-spacing:-3.340267px;}
.wse7{word-spacing:-3.319826px;}
.wsf7{word-spacing:-3.318624px;}
.wsf3{word-spacing:-3.304195px;}
.ws116{word-spacing:-3.289766px;}
.ws115{word-spacing:-3.195979px;}
.ws83{word-spacing:-3.126240px;}
.wsd5{word-spacing:-3.094978px;}
.wsd1{word-spacing:-3.061912px;}
.wsd4{word-spacing:-3.042072px;}
.wsd0{word-spacing:-3.028846px;}
.wsc0{word-spacing:-3.015619px;}
.wsb6{word-spacing:-2.936261px;}
.wse9{word-spacing:-2.929648px;}
.wsf5{word-spacing:-2.921832px;}
.wsb7{word-spacing:-2.889968px;}
.ws168{word-spacing:-2.795580px;}
.ws47{word-spacing:-2.689902px;}
.wsd2{word-spacing:-2.678346px;}
.ws120{word-spacing:-2.630126px;}
.ws150{word-spacing:-2.574592px;}
.ws14f{word-spacing:-2.568592px;}
.wsf0{word-spacing:-2.553898px;}
.ws101{word-spacing:-2.525040px;}
.wsf1{word-spacing:-2.467325px;}
.ws12b{word-spacing:-2.464920px;}
.ws178{word-spacing:-2.422836px;}
.ws12a{word-spacing:-2.380752px;}
.wscd{word-spacing:-2.341073px;}
.ws156{word-spacing:-2.331248px;}
.wsd9{word-spacing:-2.314620px;}
.wsce{word-spacing:-2.261714px;}
.ws188{word-spacing:-2.122236px;}
.ws84{word-spacing:-2.104200px;}
.ws104{word-spacing:-2.063318px;}
.ws46{word-spacing:-2.032370px;}
.ws105{word-spacing:-2.020032px;}
.ws18a{word-spacing:-2.014020px;}
.ws1e{word-spacing:-1.972595px;}
.wsdc{word-spacing:-1.891375px;}
.ws189{word-spacing:-1.887768px;}
.wsdd{word-spacing:-1.851696px;}
.ws145{word-spacing:-1.828368px;}
.ws197{word-spacing:-1.793268px;}
.ws13a{word-spacing:-1.767528px;}
.ws16d{word-spacing:-1.761516px;}
.ws191{word-spacing:-1.683360px;}
.ws192{word-spacing:-1.647288px;}
.ws28{word-spacing:-1.554166px;}
.wsbc{word-spacing:-1.521036px;}
.wsca{word-spacing:-1.494390px;}
.wsa5{word-spacing:-1.481357px;}
.wsa4{word-spacing:-1.468130px;}
.wsc2{word-spacing:-1.435064px;}
.ws42{word-spacing:-1.374839px;}
.ws70{word-spacing:-1.274544px;}
.ws11{word-spacing:-1.237363px;}
.ws4{word-spacing:-1.171598px;}
.ws165{word-spacing:-1.135736px;}
.wsa9{word-spacing:-1.104404px;}
.ws6f{word-spacing:-1.046088px;}
.ws6{word-spacing:-1.046070px;}
.ws169{word-spacing:-1.034064px;}
.ws1af{word-spacing:-1.022170px;}
.ws40{word-spacing:-1.016185px;}
.ws171{word-spacing:-1.016028px;}
.ws63{word-spacing:-0.991980px;}
.ws16a{word-spacing:-0.985968px;}
.ws121{word-spacing:-0.836858px;}
.ws3f{word-spacing:-0.777083px;}
.wsa8{word-spacing:-0.740678px;}
.wsc3{word-spacing:-0.681160px;}
.ws18{word-spacing:-0.645581px;}
.ws75{word-spacing:-0.625248px;}
.ws87{word-spacing:-0.613224px;}
.ws88{word-spacing:-0.607212px;}
.ws17e{word-spacing:-0.601200px;}
.ws62{word-spacing:-0.577152px;}
.ws3b{word-spacing:-0.537980px;}
.ws61{word-spacing:-0.498996px;}
.ws1b7{word-spacing:-0.484186px;}
.ws43{word-spacing:-0.478205px;}
.ws110{word-spacing:-0.432864px;}
.ws140{word-spacing:-0.418429px;}
.wse5{word-spacing:-0.396792px;}
.wsc1{word-spacing:-0.383566px;}
.ws48{word-spacing:-0.358654px;}
.ws6b{word-spacing:-0.354708px;}
.ws9f{word-spacing:-0.350500px;}
.ws190{word-spacing:-0.336672px;}
.wseb{word-spacing:-0.333245px;}
.ws1b3{word-spacing:-0.322790px;}
.ws56{word-spacing:-0.306612px;}
.ws9a{word-spacing:-0.305474px;}
.ws35{word-spacing:-0.298878px;}
.ws118{word-spacing:-0.288576px;}
.ws13d{word-spacing:-0.282564px;}
.ws53{word-spacing:-0.277704px;}
.ws166{word-spacing:-0.272916px;}
.ws12{word-spacing:-0.268992px;}
.ws7d{word-spacing:-0.264528px;}
.ws133{word-spacing:-0.240480px;}
.ws1f{word-spacing:-0.239102px;}
.ws100{word-spacing:-0.230861px;}
.ws13c{word-spacing:-0.228456px;}
.wsb8{word-spacing:-0.211622px;}
.ws1b{word-spacing:-0.179327px;}
.ws132{word-spacing:-0.174348px;}
.ws13{word-spacing:-0.161395px;}
.wsec{word-spacing:-0.120658px;}
.ws20{word-spacing:-0.119551px;}
.ws9b{word-spacing:-0.110603px;}
.ws14{word-spacing:-0.107597px;}
.ws54{word-spacing:-0.100548px;}
.ws167{word-spacing:-0.090972px;}
.ws33{word-spacing:-0.059776px;}
.ws1b0{word-spacing:-0.053798px;}
.ws2f{word-spacing:-0.002300px;}
.ws2{word-spacing:-0.001172px;}
.ws1{word-spacing:0.000000px;}
.wsd3{word-spacing:0.026453px;}
.wsf6{word-spacing:0.028858px;}
.ws60{word-spacing:0.030060px;}
.wsd7{word-spacing:0.039679px;}
.ws86{word-spacing:0.042084px;}
.wsfb{word-spacing:0.043286px;}
.wsac{word-spacing:0.046292px;}
.ws111{word-spacing:0.050501px;}
.ws19e{word-spacing:0.053798px;}
.ws26{word-spacing:0.059776px;}
.ws12f{word-spacing:0.060120px;}
.ws6a{word-spacing:0.066132px;}
.ws10e{word-spacing:0.072144px;}
.ws17b{word-spacing:0.078156px;}
.ws13b{word-spacing:0.090180px;}
.ws5f{word-spacing:0.096192px;}
.wsbe{word-spacing:0.099198px;}
.wse1{word-spacing:0.112424px;}
.ws123{word-spacing:0.113400px;}
.ws74{word-spacing:0.114228px;}
.wsb3{word-spacing:0.119038px;}
.ws3a{word-spacing:0.119551px;}
.ws109{word-spacing:0.122645px;}
.wsd8{word-spacing:0.124740px;}
.ws7c{word-spacing:0.129600px;}
.wsba{word-spacing:0.132264px;}
.wsfe{word-spacing:0.136080px;}
.ws172{word-spacing:0.138276px;}
.wsa1{word-spacing:0.142560px;}
.ws7e{word-spacing:0.150300px;}
.ws79{word-spacing:0.151200px;}
.wse4{word-spacing:0.152104px;}
.ws15{word-spacing:0.161395px;}
.ws10f{word-spacing:0.165931px;}
.wsa0{word-spacing:0.166320px;}
.ws7a{word-spacing:0.167400px;}
.ws7b{word-spacing:0.178200px;}
.ws1c{word-spacing:0.179327px;}
.wsfc{word-spacing:0.181440px;}
.ws18f{word-spacing:0.183600px;}
.wsa3{word-spacing:0.185170px;}
.ws125{word-spacing:0.192384px;}
.ws80{word-spacing:0.198396px;}
.wsff{word-spacing:0.202003px;}
.wsa2{word-spacing:0.207900px;}
.ws7f{word-spacing:0.210420px;}
.ws10{word-spacing:0.215194px;}
.wsfd{word-spacing:0.226800px;}
.ws3d{word-spacing:0.239102px;}
.ws17{word-spacing:0.268992px;}
.ws21{word-spacing:0.298878px;}
.ws6c{word-spacing:0.354708px;}
.ws92{word-spacing:0.358654px;}
.ws15f{word-spacing:0.376589px;}
.ws66{word-spacing:0.402804px;}
.ws1b5{word-spacing:0.430387px;}
.ws8b{word-spacing:0.444888px;}
.ws8a{word-spacing:0.462924px;}
.ws52{word-spacing:0.478205px;}
.ws67{word-spacing:0.486972px;}
.wsb1{word-spacing:0.502603px;}
.wsb0{word-spacing:0.515830px;}
.wscf{word-spacing:0.542282px;}
.ws17a{word-spacing:0.559116px;}
.ws179{word-spacing:0.589176px;}
.wsf2{word-spacing:0.591581px;}
.ws194{word-spacing:0.597756px;}
.ws15e{word-spacing:0.645581px;}
.ws15b{word-spacing:0.657532px;}
.ws98{word-spacing:0.717307px;}
.ws127{word-spacing:0.775548px;}
.ws36{word-spacing:0.777083px;}
.ws183{word-spacing:0.793584px;}
.ws128{word-spacing:0.811620px;}
.ws129{word-spacing:0.835668px;}
.ws158{word-spacing:0.896634px;}
.wsdf{word-spacing:0.899395px;}
.wsab{word-spacing:0.906008px;}
.wse0{word-spacing:0.939074px;}
.ws187{word-spacing:0.943884px;}
.ws2e{word-spacing:0.956410px;}
.ws5{word-spacing:0.962384px;}
.wsaa{word-spacing:0.965527px;}
.ws107{word-spacing:0.981158px;}
.ws23{word-spacing:1.016185px;}
.ws108{word-spacing:1.024445px;}
.ws50{word-spacing:1.075961px;}
.ws65{word-spacing:1.130256px;}
.ws186{word-spacing:1.142280px;}
.ws185{word-spacing:1.154304px;}
.ws5d{word-spacing:1.166328px;}
.ws5e{word-spacing:1.178352px;}
.ws64{word-spacing:1.202400px;}
.ws1ab{word-spacing:1.237363px;}
.ws45{word-spacing:1.434614px;}
.ws94{word-spacing:1.494390px;}
.ws126{word-spacing:1.496988px;}
.ws175{word-spacing:1.509012px;}
.ws16f{word-spacing:1.521036px;}
.ws81{word-spacing:1.527048px;}
.ws82{word-spacing:1.539072px;}
.ws6e{word-spacing:1.545084px;}
.ws174{word-spacing:1.563120px;}
.ws131{word-spacing:1.575144px;}
.ws173{word-spacing:1.581156px;}
.ws38{word-spacing:1.613941px;}
.ws9e{word-spacing:1.640074px;}
.wsd6{word-spacing:1.666526px;}
.ws1ad{word-spacing:1.667750px;}
.wsc4{word-spacing:1.692979px;}
.wsda{word-spacing:1.699592px;}
.ws3c{word-spacing:1.733492px;}
.wsdb{word-spacing:1.739272px;}
.ws170{word-spacing:1.779552px;}
.wsf9{word-spacing:1.818029px;}
.ws1ae{word-spacing:1.829146px;}
.wsfa{word-spacing:1.846886px;}
.ws102{word-spacing:1.854101px;}
.ws5c{word-spacing:1.869732px;}
.ws103{word-spacing:1.897387px;}
.ws130{word-spacing:1.905804px;}
.ws39{word-spacing:1.912819px;}
.ws6d{word-spacing:1.917828px;}
.ws5b{word-spacing:1.995984px;}
.wsbf{word-spacing:2.043479px;}
.wsa7{word-spacing:2.076545px;}
.wsa6{word-spacing:2.122837px;}
.wsb9{word-spacing:2.129450px;}
.wsea{word-spacing:2.155903px;}
.ws141{word-spacing:2.211697px;}
.ws139{word-spacing:2.224440px;}
.ws138{word-spacing:2.254500px;}
.ws1d{word-spacing:2.271473px;}
.ws10a{word-spacing:2.315822px;}
.ws10b{word-spacing:2.323037px;}
.ws51{word-spacing:2.331248px;}
.ws117{word-spacing:2.351894px;}
.ws1a2{word-spacing:2.420928px;}
.ws1a3{word-spacing:2.474726px;}
.wse8{word-spacing:2.493176px;}
.ws0{word-spacing:2.511541px;}
.wsc7{word-spacing:2.526242px;}
.wsc6{word-spacing:2.532856px;}
.ws18b{word-spacing:2.567124px;}
.ws1b4{word-spacing:2.582323px;}
.ws16{word-spacing:2.636122px;}
.ws164{word-spacing:2.689902px;}
.ws1a6{word-spacing:2.689920px;}
.ws114{word-spacing:2.719829px;}
.wsc5{word-spacing:2.823836px;}
.ws2d{word-spacing:2.869229px;}
.wsf{word-spacing:2.869236px;}
.ws32{word-spacing:2.929004px;}
.ws181{word-spacing:2.939868px;}
.ws59{word-spacing:2.963916px;}
.ws89{word-spacing:2.999988px;}
.ws176{word-spacing:3.012012px;}
.ws18d{word-spacing:3.024000px;}
.ws18c{word-spacing:3.034800px;}
.ws4a{word-spacing:3.048556px;}
.ws18e{word-spacing:3.056400px;}
.ws5a{word-spacing:3.108204px;}
.ws37{word-spacing:3.108331px;}
.ws177{word-spacing:3.120228px;}
.ws1a4{word-spacing:3.120307px;}
.ws2b{word-spacing:3.168107px;}
.wsb5{word-spacing:3.207402px;}
.ws1aa{word-spacing:3.218141px;}
.ws19{word-spacing:3.219667px;}
.ws1a7{word-spacing:3.222211px;}
.ws1b1{word-spacing:3.222298px;}
.ws1b2{word-spacing:3.223258px;}
.ws1b6{word-spacing:3.225053px;}
.ws2c{word-spacing:3.227882px;}
.ws1a8{word-spacing:3.227904px;}
.wse3{word-spacing:3.260308px;}
.ws9d{word-spacing:3.280147px;}
.ws1a5{word-spacing:3.281702px;}
.ws90{word-spacing:3.287658px;}
.wse2{word-spacing:3.293374px;}
.ws195{word-spacing:3.347434px;}
.ws182{word-spacing:3.348684px;}
.ws1a9{word-spacing:3.389299px;}
.ws184{word-spacing:3.444876px;}
.ws10d{word-spacing:3.556699px;}
.ws1a{word-spacing:3.586536px;}
.ws10c{word-spacing:3.592771px;}
.ws22{word-spacing:3.646312px;}
.ws19f{word-spacing:3.658291px;}
.ws68{word-spacing:3.691368px;}
.ws69{word-spacing:3.709404px;}
.ws72{word-spacing:3.763512px;}
.ws71{word-spacing:3.775536px;}
.ws3e{word-spacing:3.885414px;}
.ws97{word-spacing:3.945190px;}
.ws76{word-spacing:4.003992px;}
.ws162{word-spacing:4.004965px;}
.ws16e{word-spacing:4.052088px;}
.ws12c{word-spacing:4.070124px;}
.ws78{word-spacing:4.136256px;}
.ws77{word-spacing:4.160304px;}
.ws199{word-spacing:4.244068px;}
.ws12d{word-spacing:4.316616px;}
.ws13f{word-spacing:4.411469px;}
.ws198{word-spacing:4.423394px;}
.ws85{word-spacing:4.430844px;}
.ws161{word-spacing:4.483170px;}
.ws49{word-spacing:4.602721px;}
.ws2a{word-spacing:4.662497px;}
.ws4b{word-spacing:4.722272px;}
.ws193{word-spacing:4.731444px;}
.wsc{word-spacing:4.770079px;}
.ws96{word-spacing:4.782048px;}
.ws13e{word-spacing:4.788058px;}
.wsb4{word-spacing:4.821023px;}
.ws157{word-spacing:4.841824px;}
.wsd{word-spacing:4.853765px;}
.wsb2{word-spacing:4.900381px;}
.ws34{word-spacing:4.901599px;}
.ws196{word-spacing:5.200477px;}
.ws14e{word-spacing:5.260253px;}
.wsde{word-spacing:5.283947px;}
.ws1a0{word-spacing:5.326042px;}
.ws160{word-spacing:5.439580px;}
.ws27{word-spacing:5.499355px;}
.ws16c{word-spacing:5.500980px;}
.ws17d{word-spacing:5.531040px;}
.ws17c{word-spacing:5.555088px;}
.ws29{word-spacing:5.559131px;}
.ws16b{word-spacing:5.579136px;}
.ws106{word-spacing:5.764306px;}
.ws137{word-spacing:5.843664px;}
.ws136{word-spacing:5.849676px;}
.ws24{word-spacing:5.858009px;}
.ws124{word-spacing:5.885748px;}
.ws25{word-spacing:5.917784px;}
.ws15a{word-spacing:6.037336px;}
.ws41{word-spacing:6.156887px;}
.ws19d{word-spacing:6.186816px;}
.ws73{word-spacing:6.300576px;}
.ws44{word-spacing:6.395989px;}
.ws1a1{word-spacing:6.455808px;}
.ws8c{word-spacing:6.529032px;}
.ws19c{word-spacing:6.563405px;}
.ws163{word-spacing:6.570974px;}
.ws31{word-spacing:6.575316px;}
.ws95{word-spacing:6.576974px;}
.ws12e{word-spacing:6.577128px;}
.ws93{word-spacing:6.754643px;}
.ws91{word-spacing:7.053521px;}
.ws155{word-spacing:7.173072px;}
.ws57{word-spacing:7.322616px;}
.ws1ac{word-spacing:7.477978px;}
.ws58{word-spacing:7.490952px;}
.ws4d{word-spacing:7.770828px;}
.wsa{word-spacing:7.782761px;}
.ws180{word-spacing:7.989948px;}
.wsbb{word-spacing:7.995359px;}
.ws99{word-spacing:8.009930px;}
.ws17f{word-spacing:8.050068px;}
.ws4c{word-spacing:8.129482px;}
.ws159{word-spacing:8.308808px;}
.ws134{word-spacing:8.368704px;}
.ws135{word-spacing:8.392752px;}
.wsad{word-spacing:8.451670px;}
.wsbd{word-spacing:9.179122px;}
.wscb{word-spacing:9.238640px;}
.wscc{word-spacing:9.608980px;}
.ws143{word-spacing:10.001602px;}
.ws147{word-spacing:10.007602px;}
.wsee{word-spacing:10.078517px;}
.wsef{word-spacing:10.482523px;}
.ws55{word-spacing:11.620476px;}
.ws8{word-spacing:12.176255px;}
.ws9c{word-spacing:12.782524px;}
.wsed{word-spacing:13.944571px;}
.ws9{word-spacing:16.109478px;}
.wsb{word-spacing:26.109907px;}
.ws7{word-spacing:26.840252px;}
.ws14b{word-spacing:150.043738px;}
.ws14a{word-spacing:150.698506px;}
.ws14d{word-spacing:178.395494px;}
.ws14c{word-spacing:191.845094px;}
.ws149{word-spacing:214.332826px;}
.ws153{word-spacing:292.710000px;}
.ws11a{word-spacing:297.178200px;}
.ws154{word-spacing:312.888000px;}
.ws152{word-spacing:398.215757px;}
.ws151{word-spacing:548.353530px;}
.ws146{word-spacing:791.130066px;}
.ws144{word-spacing:829.326674px;}
.ws148{word-spacing:843.852145px;}
.ws19b{word-spacing:1010.018893px;}
.ws19a{word-spacing:1023.217378px;}
._7{margin-left:-15.924974px;}
._31{margin-left:-12.411000px;}
._15{margin-left:-6.635092px;}
._0{margin-left:-5.397721px;}
._3{margin-left:-3.765852px;}
._5{margin-left:-2.301354px;}
._9{margin-left:-1.022170px;}
._19{width:1.086930px;}
._4{width:2.301354px;}
._32{width:3.927283px;}
._3e{width:9.821116px;}
._1{width:12.968855px;}
._3b{width:14.202576px;}
._a{width:15.912349px;}
._b{width:16.946496px;}
._c{width:18.530436px;}
._11{width:19.845499px;}
._f{width:20.861684px;}
._e{width:21.937645px;}
._16{width:24.209118px;}
._2{width:25.937736px;}
._10{width:28.692288px;}
._6{width:30.587087px;}
._3d{width:32.338600px;}
._3a{width:33.731392px;}
._d{width:36.702218px;}
._14{width:38.692766px;}
._2e{width:40.240948px;}
._17{width:43.468830px;}
._1d{width:46.460736px;}
._1c{width:68.302332px;}
._8{width:69.368108px;}
._1b{width:105.883344px;}
._26{width:130.568717px;}
._1a{width:133.544686px;}
._24{width:142.081574px;}
._25{width:164.503530px;}
._30{width:181.233000px;}
._36{width:185.120294px;}
._35{width:196.692374px;}
._27{width:243.760550px;}
._1e{width:246.696408px;}
._34{width:249.409382px;}
._33{width:263.289370px;}
._38{width:280.235866px;}
._37{width:314.559245px;}
._20{width:321.912540px;}
._22{width:336.653964px;}
._39{width:342.065309px;}
._1f{width:360.449460px;}
._28{width:369.164621px;}
._29{width:390.737779px;}
._2b{width:404.187379px;}
._21{width:413.030412px;}
._23{width:428.078448px;}
._2a{width:460.890893px;}
._2c{width:474.340493px;}
._46{width:756.330610px;}
._45{width:766.707680px;}
._43{width:811.234624px;}
._41{width:817.636619px;}
._47{width:839.347171px;}
._48{width:841.833842px;}
._3f{width:847.476673px;}
._4a{width:859.808524px;}
._40{width:874.782236px;}
._4c{width:928.102205px;}
._4b{width:933.595709px;}
._44{width:937.522863px;}
._49{width:950.769169px;}
._12{width:960.758402px;}
._42{width:972.144977px;}
._4d{width:1017.096341px;}
._18{width:2128.869288px;}
._2d{width:2341.756217px;}
._3c{width:2514.959929px;}
._13{width:2538.869929px;}
._2f{width:2554.643146px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(112,69,36);}
.fc4{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fse{font-size:39.600000px;}
.fs0{font-size:41.842800px;}
.fs13{font-size:43.200000px;}
.fsf{font-size:45.429600px;}
.fs4{font-size:47.820600px;}
.fs6{font-size:47.880000px;}
.fsb{font-size:52.668000px;}
.fs5{font-size:53.798400px;}
.fs9{font-size:54.000000px;}
.fs14{font-size:56.058000px;}
.fs10{font-size:57.456000px;}
.fsd{font-size:59.400000px;}
.fs2{font-size:59.775600px;}
.fs7{font-size:60.120000px;}
.fsa{font-size:62.286600px;}
.fs12{font-size:64.800000px;}
.fsc{font-size:66.132000px;}
.fs11{font-size:72.144000px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:151.185600px;}
.y178{bottom:-904.247550px;}
.yca{bottom:-851.072805px;}
.y11b{bottom:-787.250805px;}
.y18f{bottom:-786.704436px;}
.yf1{bottom:-781.762968px;}
.y18e{bottom:-771.764616px;}
.y19b{bottom:-765.017550px;}
.yf0{bottom:-760.676779px;}
.y199{bottom:-743.869800px;}
.yef{bottom:-739.491393px;}
.y190{bottom:-728.027550px;}
.yee{bottom:-718.405205px;}
.y1a1{bottom:-709.037400px;}
.yed{bottom:-697.219819px;}
.y191{bottom:-695.897550px;}
.y1a0{bottom:-692.568000px;}
.y13a{bottom:-687.553835px;}
.yec{bottom:-676.034433px;}
.y139{bottom:-666.467647px;}
.y192{bottom:-663.858000px;}
.yeb{bottom:-654.948244px;}
.y138{bottom:-645.282261px;}
.y19f{bottom:-640.097550px;}
.y193{bottom:-631.818450px;}
.y19a{bottom:-628.937550px;}
.yea{bottom:-628.910423px;}
.y137{bottom:-624.096875px;}
.y19e{bottom:-623.628000px;}
.y136{bottom:-603.010686px;}
.ye9{bottom:-602.775056px;}
.y194{bottom:-599.688450px;}
.y142{bottom:-584.862660px;}
.y135{bottom:-576.972865px;}
.y195{bottom:-567.648900px;}
.ye8{bottom:-561.789749px;}
.y134{bottom:-550.837498px;}
.ye7{bottom:-540.604363px;}
.y1a3{bottom:-539.117550px;}
.y196{bottom:-535.518900px;}
.y1a2{bottom:-522.647100px;}
.ye6{bottom:-519.518175px;}
.y133{bottom:-509.852191px;}
.y197{bottom:-503.479350px;}
.ye5{bottom:-498.332789px;}
.y132{bottom:-488.666805px;}
.y131{bottom:-488.664224px;}
.ye4{bottom:-477.246601px;}
.y161{bottom:-476.102329px;}
.y198{bottom:-471.349350px;}
.y130{bottom:-467.578036px;}
.y19d{bottom:-456.947550px;}
.ye3{bottom:-456.061214px;}
.y160{bottom:-453.099215px;}
.y12f{bottom:-446.392650px;}
.y19c{bottom:-436.697721px;}
.ye2{bottom:-434.875828px;}
.y8d{bottom:-432.518550px;}
.y15f{bottom:-429.987884px;}
.y12e{bottom:-425.306462px;}
.ye1{bottom:-413.789640px;}
.ye0{bottom:-413.782083px;}
.y15e{bottom:-406.876554px;}
.y12d{bottom:-404.121076px;}
.ydf{bottom:-392.596697px;}
.y18d{bottom:-388.274166px;}
.y15d{bottom:-383.873440px;}
.y12c{bottom:-382.935689px;}
.yde{bottom:-371.411311px;}
.y18c{bottom:-369.014724px;}
.y12b{bottom:-361.847848px;}
.yb3{bottom:-360.602988px;}
.y15c{bottom:-355.468543px;}
.ydd{bottom:-350.325122px;}
.y18b{bottom:-349.843959px;}
.yb2{bottom:-341.343546px;}
.y12a{bottom:-340.662462px;}
.y18a{bottom:-330.584517px;}
.ydc{bottom:-329.139736px;}
.y15b{bottom:-326.957234px;}
.yb1{bottom:-322.174284px;}
.y129{bottom:-314.624640px;}
.y189{bottom:-311.325075px;}
.ydb{bottom:-308.053548px;}
.yb0{bottom:-302.914842px;}
.y188{bottom:-292.155813px;}
.yda{bottom:-286.868162px;}
.yaf{bottom:-283.655400px;}
.y15a{bottom:-282.245990px;}
.y128{bottom:-274.133805px;}
.y187{bottom:-272.896371px;}
.yd9{bottom:-265.682776px;}
.yae{bottom:-264.486138px;}
.y159{bottom:-259.134660px;}
.y158{bottom:-259.131845px;}
.y127{bottom:-249.383805px;}
.y186{bottom:-249.225624px;}
.yad{bottom:-245.226696px;}
.yd8{bottom:-244.596587px;}
.y157{bottom:-236.128730px;}
.yac{bottom:-225.967254px;}
.yd7{bottom:-223.411201px;}
.y156{bottom:-213.017400px;}
.y185{bottom:-211.966254px;}
.y1f2{bottom:-209.266050px;}
.yab{bottom:-206.797992px;}
.yd6{bottom:-202.323360px;}
.y184{bottom:-192.706812px;}
.y155{bottom:-190.014286px;}
.yaa{bottom:-187.538550px;}
.yd5{bottom:-181.137973px;}
.y183{bottom:-173.537550px;}
.y182{bottom:-173.535696px;}
.y154{bottom:-166.902955px;}
.yd4{bottom:-159.952587px;}
.y181{bottom:-154.276254px;}
.ya9{bottom:-148.568469px;}
.y153{bottom:-143.791625px;}
.yd3{bottom:-138.864746px;}
.y214{bottom:-137.265531px;}
.y180{bottom:-135.106992px;}
.ya8{bottom:-128.318550px;}
.y152{bottom:-120.786707px;}
.y213{bottom:-118.006089px;}
.yd2{bottom:-117.679360px;}
.y17f{bottom:-115.847550px;}
.y17e{bottom:-115.847199px;}
.ya7{bottom:-108.068550px;}
.y212{bottom:-98.746647px;}
.y151{bottom:-97.675376px;}
.yd1{bottom:-96.593171px;}
.y17d{bottom:-96.587757px;}
.ya6{bottom:-87.098550px;}
.y17c{bottom:-77.416992px;}
.y211{bottom:-75.075900px;}
.yd0{bottom:-70.457805px;}
.y150{bottom:-69.270480px;}
.y17b{bottom:-58.157550px;}
.ya5{bottom:-57.037950px;}
.y210{bottom:-38.266500px;}
.ycf{bottom:-29.966805px;}
.y14f{bottom:-25.098660px;}
.y126{bottom:-24.356805px;}
.ya4{bottom:-21.758400px;}
.y17a{bottom:-21.347550px;}
.y20f{bottom:-20.896050px;}
.yce{bottom:-5.216805px;}
.y0{bottom:0.000000px;}
.y125{bottom:0.397848px;}
.ya3{bottom:0.741600px;}
.y179{bottom:1.152135px;}
.y20e{bottom:1.523112px;}
.y14e{bottom:1.901340px;}
.y1a{bottom:17.131313px;}
.y48{bottom:31.890000px;}
.y117{bottom:91.665000px;}
.y222{bottom:93.714000px;}
.y1ee{bottom:98.151000px;}
.y1c6{bottom:99.295500px;}
.y1ed{bottom:101.227500px;}
.y47{bottom:103.621500px;}
.y18{bottom:104.646000px;}
.y7f{bottom:107.641500px;}
.y116{bottom:110.494500px;}
.y221{bottom:112.543500px;}
.y23e{bottom:115.335000px;}
.y1c5{bottom:118.125000px;}
.y1ec{bottom:120.057000px;}
.y46{bottom:122.449500px;}
.y17{bottom:122.535000px;}
.y7e{bottom:126.471000px;}
.y115{bottom:129.324000px;}
.y23d{bottom:129.532500px;}
.y220{bottom:131.373000px;}
.y275{bottom:132.253500px;}
.y1c4{bottom:136.954500px;}
.y1eb{bottom:138.886500px;}
.y16{bottom:140.422500px;}
.y45{bottom:141.279000px;}
.y23c{bottom:143.728500px;}
.y7d{bottom:145.300500px;}
.y114{bottom:148.153500px;}
.y274{bottom:149.514000px;}
.y21f{bottom:150.202500px;}
.y174{bottom:152.502000px;}
.y1b8{bottom:154.221000px;}
.y1c3{bottom:155.784000px;}
.y1ea{bottom:157.716000px;}
.y23b{bottom:157.926000px;}
.y15{bottom:158.310000px;}
.yc6{bottom:159.448500px;}
.y44{bottom:160.108500px;}
.y7c{bottom:164.130000px;}
.y273{bottom:166.774500px;}
.y113{bottom:166.983000px;}
.y21e{bottom:169.032000px;}
.y173{bottom:171.331500px;}
.y23a{bottom:172.122000px;}
.y1c2{bottom:174.613500px;}
.y14{bottom:176.199000px;}
.y1e9{bottom:176.545500px;}
.yc5{bottom:178.278000px;}
.y43{bottom:178.938000px;}
.y7b{bottom:182.959500px;}
.y272{bottom:184.035000px;}
.y112{bottom:185.812500px;}
.y239{bottom:186.319500px;}
.y21d{bottom:187.861500px;}
.y172{bottom:190.161000px;}
.y1c1{bottom:193.443000px;}
.y13{bottom:194.086500px;}
.y1e8{bottom:195.375000px;}
.yc4{bottom:197.107500px;}
.y42{bottom:197.767500px;}
.y238{bottom:200.515500px;}
.y271{bottom:201.295500px;}
.y7a{bottom:201.789000px;}
.y111{bottom:204.642000px;}
.y21c{bottom:206.691000px;}
.y171{bottom:208.990500px;}
.y12{bottom:211.974000px;}
.y1c0{bottom:212.272500px;}
.y1e7{bottom:214.204500px;}
.y237{bottom:214.713000px;}
.yc3{bottom:215.937000px;}
.y41{bottom:216.597000px;}
.y270{bottom:218.556000px;}
.y79{bottom:220.618500px;}
.y110{bottom:223.471500px;}
.y21b{bottom:225.520500px;}
.y170{bottom:227.820000px;}
.y236{bottom:228.909000px;}
.y177{bottom:229.842585px;}
.y11{bottom:229.863000px;}
.y124{bottom:230.869521px;}
.y1bf{bottom:231.102000px;}
.y1e6{bottom:233.034000px;}
.yc2{bottom:234.766500px;}
.ya2{bottom:235.380081px;}
.y40{bottom:235.426500px;}
.y26f{bottom:235.816500px;}
.y78{bottom:239.446500px;}
.y176{bottom:239.472450px;}
.y10f{bottom:242.301000px;}
.y235{bottom:243.106500px;}
.y21a{bottom:244.350000px;}
.y14d{bottom:247.385340px;}
.y1be{bottom:249.931500px;}
.y16f{bottom:251.133000px;}
.y1e5{bottom:251.863500px;}
.y123{bottom:252.054907px;}
.y26e{bottom:253.077000px;}
.yc1{bottom:253.596000px;}
.y3f{bottom:254.256000px;}
.ya1{bottom:254.639523px;}
.y234{bottom:257.302500px;}
.y77{bottom:258.276000px;}
.y10e{bottom:261.130500px;}
.y219{bottom:263.179500px;}
.y1bd{bottom:268.761000px;}
.y26d{bottom:270.336000px;}
.y16e{bottom:271.306500px;}
.y233{bottom:271.500000px;}
.yc0{bottom:272.425500px;}
.y3e{bottom:273.085500px;}
.y122{bottom:273.240294px;}
.ya0{bottom:273.808785px;}
.y14c{bottom:274.390416px;}
.y1e4{bottom:275.175000px;}
.y76{bottom:277.105500px;}
.y10d{bottom:279.960000px;}
.y218{bottom:282.009000px;}
.y232{bottom:285.696000px;}
.y1bc{bottom:287.590500px;}
.y26c{bottom:287.596500px;}
.ybf{bottom:291.255000px;}
.y3d{bottom:291.915000px;}
.y9f{bottom:293.068227px;}
.ycd{bottom:293.961443px;}
.y121{bottom:294.326482px;}
.y75{bottom:295.935000px;}
.y231{bottom:299.893500px;}
.y10{bottom:300.154500px;}
.y10c{bottom:303.273000px;}
.y26b{bottom:304.857000px;}
.y16d{bottom:304.930500px;}
.y217{bottom:305.320500px;}
.y1bb{bottom:306.420000px;}
.y1e3{bottom:308.799000px;}
.ybe{bottom:310.084500px;}
.y3c{bottom:310.744500px;}
.y9e{bottom:312.237489px;}
.y230{bottom:314.089500px;}
.y74{bottom:314.764500px;}
.ycc{bottom:315.146829px;}
.y120{bottom:315.511868px;}
.yf{bottom:318.043500px;}
.y16c{bottom:320.683500px;}
.y26a{bottom:322.117500px;}
.y10b{bottom:323.446500px;}
.y16b{bottom:323.760000px;}
.y1e2{bottom:327.628500px;}
.y22f{bottom:328.287000px;}
.ybd{bottom:328.914000px;}
.y3b{bottom:329.574000px;}
.y9d{bottom:331.496931px;}
.y73{bottom:333.594000px;}
.y216{bottom:335.748000px;}
.ye{bottom:335.931000px;}
.ycb{bottom:336.234670px;}
.y11f{bottom:336.598056px;}
.y269{bottom:339.378000px;}
.y1ba{bottom:339.985500px;}
.y16a{bottom:342.589500px;}
.y1e1{bottom:346.458000px;}
.ybc{bottom:347.742000px;}
.y3a{bottom:348.403500px;}
.y22e{bottom:349.686000px;}
.y9c{bottom:350.756373px;}
.y72{bottom:352.423500px;}
.yd{bottom:353.818500px;}
.y215{bottom:354.981000px;}
.y268{bottom:356.638500px;}
.y10a{bottom:357.070500px;}
.y11e{bottom:357.783443px;}
.y1b9{bottom:359.218500px;}
.y169{bottom:361.419000px;}
.y1e0{bottom:365.287500px;}
.ybb{bottom:366.571500px;}
.y39{bottom:367.233000px;}
.y9b{bottom:369.927138px;}
.y20d{bottom:370.252599px;}
.y71{bottom:371.253000px;}
.y267{bottom:373.899000px;}
.y109{bottom:375.900000px;}
.y1ef{bottom:377.410500px;}
.y11d{bottom:378.968829px;}
.y22d{bottom:379.735500px;}
.y168{bottom:380.248500px;}
.yc{bottom:380.673000px;}
.y1df{bottom:384.117000px;}
.yba{bottom:385.401000px;}
.y38{bottom:386.062500px;}
.y20c{bottom:389.512041px;}
.y70{bottom:390.082500px;}
.y266{bottom:391.159500px;}
.y9a{bottom:393.597885px;}
.y108{bottom:394.729500px;}
.yc9{bottom:396.426344px;}
.yb{bottom:398.562000px;}
.y167{bottom:399.078000px;}
.y11c{bottom:400.056670px;}
.y1de{bottom:402.946500px;}
.y37{bottom:404.892000px;}
.yc8{bottom:407.019195px;}
.y265{bottom:408.420000px;}
.y22c{bottom:408.463500px;}
.y20b{bottom:408.771483px;}
.y6f{bottom:408.912000px;}
.y107{bottom:413.559000px;}
.ya{bottom:416.449500px;}
.y99{bottom:417.357309px;}
.y166{bottom:417.907500px;}
.y1dd{bottom:421.776000px;}
.y36{bottom:423.721500px;}
.y264{bottom:425.679000px;}
.yb9{bottom:426.381000px;}
.y22b{bottom:427.293000px;}
.y6e{bottom:427.741500px;}
.y20a{bottom:427.940745px;}
.y106{bottom:432.388500px;}
.y165{bottom:436.737000px;}
.y1dc{bottom:440.605500px;}
.y35{bottom:442.551000px;}
.yb8{bottom:442.819500px;}
.y263{bottom:442.939500px;}
.y9{bottom:444.798000px;}
.y22a{bottom:446.122500px;}
.y6d{bottom:446.571000px;}
.y209{bottom:447.200187px;}
.y105{bottom:451.218000px;}
.y98{bottom:454.616679px;}
.y164{bottom:455.566500px;}
.yb7{bottom:459.256500px;}
.y262{bottom:460.200000px;}
.y11a{bottom:460.248344px;}
.y34{bottom:461.380500px;}
.y8{bottom:462.685500px;}
.y229{bottom:464.952000px;}
.y6c{bottom:465.400500px;}
.y208{bottom:466.370952px;}
.y104{bottom:470.047500px;}
.y119{bottom:470.841195px;}
.y97{bottom:473.876121px;}
.y261{bottom:477.460500px;}
.y163{bottom:478.879500px;}
.y33{bottom:480.210000px;}
.y1db{bottom:481.584000px;}
.yb6{bottom:482.898000px;}
.y228{bottom:483.781500px;}
.y6b{bottom:484.230000px;}
.y207{bottom:485.630394px;}
.y103{bottom:488.877000px;}
.y7{bottom:489.540000px;}
.y96{bottom:493.045383px;}
.y260{bottom:494.721000px;}
.y1da{bottom:498.022500px;}
.y32{bottom:499.039500px;}
.y227{bottom:502.611000px;}
.y6a{bottom:503.059500px;}
.y206{bottom:504.889836px;}
.y6{bottom:507.429000px;}
.y102{bottom:507.706500px;}
.y162{bottom:509.307000px;}
.y25f{bottom:511.981500px;}
.y95{bottom:512.304825px;}
.y1d9{bottom:514.461000px;}
.yb5{bottom:514.518000px;}
.y31{bottom:517.869000px;}
.y226{bottom:521.440500px;}
.y69{bottom:521.889000px;}
.y205{bottom:524.060601px;}
.y5{bottom:525.316500px;}
.y14b{bottom:525.814060px;}
.y101{bottom:526.536000px;}
.y25e{bottom:529.242000px;}
.y94{bottom:531.564267px;}
.y13f{bottom:531.736500px;}
.y30{bottom:536.698500px;}
.y1d8{bottom:538.102500px;}
.y225{bottom:540.270000px;}
.y68{bottom:540.718500px;}
.y4{bottom:543.204000px;}
.y204{bottom:543.320043px;}
.y100{bottom:545.365500px;}
.y25d{bottom:546.502500px;}
.yb4{bottom:547.200000px;}
.y14a{bottom:548.925390px;}
.y93{bottom:550.733529px;}
.y2f{bottom:555.528000px;}
.y224{bottom:559.099500px;}
.y67{bottom:559.548000px;}
.y3{bottom:561.093000px;}
.y203{bottom:562.489305px;}
.y25c{bottom:563.761500px;}
.yff{bottom:564.195000px;}
.y1b7{bottom:564.339000px;}
.y1d7{bottom:569.721000px;}
.y92{bottom:569.992971px;}
.y149{bottom:572.036720px;}
.y8a{bottom:572.617500px;}
.y66{bottom:578.377500px;}
.y2e{bottom:578.839500px;}
.y2{bottom:578.980500px;}
.y25b{bottom:581.022000px;}
.y202{bottom:581.748747px;}
.y223{bottom:582.412500px;}
.yfe{bottom:583.024500px;}
.y1b6{bottom:583.168500px;}
.y91{bottom:589.162233px;}
.y148{bottom:595.039835px;}
.y1{bottom:596.868000px;}
.y65{bottom:597.207000px;}
.y25a{bottom:598.282500px;}
.y201{bottom:601.008189px;}
.yfd{bottom:601.854000px;}
.y1b5{bottom:601.998000px;}
.y90{bottom:608.421675px;}
.y1d5{bottom:612.922500px;}
.y1d6{bottom:613.341000px;}
.y259{bottom:615.543000px;}
.y64{bottom:616.036500px;}
.y147{bottom:618.151165px;}
.y200{bottom:620.178954px;}
.yfc{bottom:620.683500px;}
.y1b4{bottom:620.827500px;}
.y8f{bottom:627.681117px;}
.y258{bottom:632.803500px;}
.y63{bottom:634.866000px;}
.y1d4{bottom:635.286000px;}
.y1ff{bottom:639.438396px;}
.yfb{bottom:639.513000px;}
.y1b3{bottom:639.657000px;}
.y146{bottom:641.154280px;}
.y8e{bottom:646.851882px;}
.y257{bottom:650.064000px;}
.y62{bottom:653.695500px;}
.y2d{bottom:653.989500px;}
.y1d3{bottom:654.115500px;}
.yfa{bottom:658.342500px;}
.y1b2{bottom:658.486500px;}
.y1fe{bottom:658.607658px;}
.y145{bottom:664.265610px;}
.y256{bottom:667.324500px;}
.y61{bottom:672.525000px;}
.y1d2{bottom:672.945000px;}
.yf9{bottom:677.172000px;}
.y1b1{bottom:677.316000px;}
.y1fd{bottom:677.867100px;}
.y255{bottom:684.585000px;}
.y144{bottom:687.376940px;}
.y60{bottom:691.354500px;}
.y2c{bottom:691.380000px;}
.y1d1{bottom:691.774500px;}
.yf8{bottom:696.001500px;}
.y1fc{bottom:697.126542px;}
.y1b0{bottom:700.629000px;}
.y8c{bottom:701.571585px;}
.y254{bottom:701.845500px;}
.y5f{bottom:710.184000px;}
.y143{bottom:710.381858px;}
.y2b{bottom:710.836500px;}
.y8b{bottom:711.201450px;}
.yf7{bottom:714.831000px;}
.y1fb{bottom:716.295804px;}
.y253{bottom:719.104500px;}
.y5e{bottom:729.013500px;}
.y2a{bottom:730.294500px;}
.y1d0{bottom:732.753000px;}
.yf6{bottom:733.660500px;}
.y1af{bottom:734.251500px;}
.y1fa{bottom:735.555246px;}
.y252{bottom:736.365000px;}
.y5d{bottom:747.843000px;}
.y1cf{bottom:749.191500px;}
.y29{bottom:749.751000px;}
.y1ae{bottom:750.006000px;}
.yf5{bottom:752.490000px;}
.y1ad{bottom:753.081000px;}
.y251{bottom:753.625500px;}
.y1f9{bottom:754.814688px;}
.y1ce{bottom:765.630000px;}
.y5c{bottom:766.671000px;}
.y13e{bottom:767.334000px;}
.y28{bottom:769.207500px;}
.y250{bottom:770.886000px;}
.yf4{bottom:771.319500px;}
.y1ac{bottom:771.910500px;}
.y1f8{bottom:773.986029px;}
.y141{bottom:776.045502px;}
.y5b{bottom:785.500500px;}
.y13d{bottom:786.163500px;}
.y140{bottom:787.601340px;}
.y24f{bottom:788.146500px;}
.y27{bottom:788.665500px;}
.y1cd{bottom:789.271500px;}
.y1ab{bottom:790.740000px;}
.y1f7{bottom:793.245471px;}
.yf3{bottom:794.631000px;}
.y89{bottom:802.537500px;}
.y5a{bottom:804.330000px;}
.y13c{bottom:804.993000px;}
.y24e{bottom:805.407000px;}
.y1a9{bottom:806.494500px;}
.y1aa{bottom:807.328500px;}
.y26{bottom:808.122000px;}
.y1a8{bottom:809.569500px;}
.y1f6{bottom:812.414733px;}
.y1cc{bottom:820.890000px;}
.y88{bottom:821.367000px;}
.y24d{bottom:822.667500px;}
.y59{bottom:823.159500px;}
.yf2{bottom:824.095500px;}
.y25{bottom:827.580000px;}
.y1a7{bottom:828.399000px;}
.y1f5{bottom:831.674175px;}
.y13b{bottom:838.558500px;}
.y24c{bottom:839.928000px;}
.y87{bottom:840.196500px;}
.y58{bottom:841.989000px;}
.yc7{bottom:846.525000px;}
.y24{bottom:847.036500px;}
.y1a6{bottom:847.228500px;}
.y1f4{bottom:850.933617px;}
.y24a{bottom:857.187000px;}
.y24b{bottom:857.188500px;}
.y86{bottom:859.026000px;}
.y57{bottom:860.818500px;}
.y118{bottom:863.976000px;}
.y1a5{bottom:866.058000px;}
.y23{bottom:866.493000px;}
.y1ca{bottom:870.069000px;}
.y1f3{bottom:870.104382px;}
.y1cb{bottom:870.487500px;}
.y249{bottom:874.447500px;}
.y85{bottom:877.855500px;}
.y56{bottom:879.648000px;}
.y22{bottom:885.951000px;}
.y248{bottom:891.708000px;}
.y84{bottom:896.685000px;}
.y55{bottom:898.477500px;}
.y1a4{bottom:899.623500px;}
.y1c9{bottom:904.755000px;}
.y21{bottom:905.407500px;}
.y247{bottom:913.452000px;}
.y83{bottom:915.514500px;}
.y54{bottom:917.307000px;}
.y1f1{bottom:924.824085px;}
.y175{bottom:925.042500px;}
.y27f{bottom:932.998500px;}
.y82{bottom:934.344000px;}
.y1f0{bottom:934.453950px;}
.y53{bottom:936.136500px;}
.y1c8{bottom:939.274500px;}
.y20{bottom:943.776000px;}
.y246{bottom:947.076000px;}
.y27e{bottom:950.259000px;}
.y52{bottom:954.966000px;}
.y81{bottom:957.655500px;}
.y1f{bottom:959.914500px;}
.y27d{bottom:967.519500px;}
.y245{bottom:973.617000px;}
.y51{bottom:973.795500px;}
.y1e{bottom:976.054500px;}
.y80{bottom:977.830500px;}
.y27c{bottom:984.780000px;}
.y244{bottom:991.191000px;}
.y50{bottom:992.625000px;}
.y1c7{bottom:998.049000px;}
.y27b{bottom:1002.040500px;}
.y243{bottom:1008.765000px;}
.y4f{bottom:1011.454500px;}
.y27a{bottom:1019.299500px;}
.y1d{bottom:1024.852500px;}
.y242{bottom:1026.339000px;}
.y4e{bottom:1030.284000px;}
.y279{bottom:1036.560000px;}
.y4d{bottom:1049.113500px;}
.y241{bottom:1052.880000px;}
.y278{bottom:1053.820500px;}
.y1c{bottom:1064.772000px;}
.y4c{bottom:1067.943000px;}
.y240{bottom:1070.454000px;}
.y277{bottom:1071.081000px;}
.y4b{bottom:1086.772500px;}
.y23f{bottom:1088.028000px;}
.y276{bottom:1088.341500px;}
.y1b{bottom:1093.015500px;}
.y4a{bottom:1105.602000px;}
.y19{bottom:1136.503500px;}
.y49{bottom:1168.366500px;}
.h14{height:26.173828px;}
.h1d{height:28.791211px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h26{height:31.408594px;}
.h28{height:33.072749px;}
.h33{height:34.574294px;}
.h10{height:34.811191px;}
.h9{height:34.813397px;}
.hf{height:34.951465px;}
.hd{height:35.052500px;}
.h2c{height:36.624023px;}
.h2b{height:36.625823px;}
.h2d{height:36.626423px;}
.h2a{height:37.494141px;}
.h19{height:38.292311px;}
.h18{height:38.446611px;}
.ha{height:38.896243px;}
.hb{height:39.165235px;}
.h32{height:39.260742px;}
.h15{height:39.418945px;}
.h2e{height:39.434227px;}
.h16{height:41.482876px;}
.h22{height:41.773430px;}
.h30{height:41.842637px;}
.h21{height:41.941758px;}
.h8{height:43.217759px;}
.h13{height:43.269961px;}
.h1b{height:43.360840px;}
.hc{height:43.516637px;}
.h11{height:43.710293px;}
.h6{height:43.815515px;}
.h12{height:43.886426px;}
.h24{height:47.302734px;}
.h1c{height:47.596957px;}
.h1a{height:48.081322px;}
.h1e{height:48.275068px;}
.h4{height:50.931027px;}
.h25{height:51.923953px;}
.h23{height:52.452352px;}
.h27{height:52.663711px;}
.h7{height:77.792486px;}
.h2f{height:84.285515px;}
.h5{height:102.503837px;}
.h29{height:195.504000px;}
.h1f{height:206.035500px;}
.he{height:213.160500px;}
.h20{height:216.441000px;}
.h17{height:274.020450px;}
.h31{height:351.274500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:186.852173px;}
.w8{width:445.242000px;}
.w6{width:473.749200px;}
.w4{width:496.704450px;}
.w3{width:630.654900px;}
.w7{width:638.853900px;}
.w5{width:704.819940px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x4c{left:-237.157200px;}
.x3f{left:-226.413000px;}
.x7d{left:-195.109500px;}
.x46{left:-79.344210px;}
.x30{left:-76.545600px;}
.x55{left:-72.131100px;}
.x40{left:-11.287199px;}
.x4d{left:-2.474508px;}
.x0{left:0.000000px;}
.x41{left:23.759884px;}
.x7e{left:32.320833px;}
.x4e{left:35.757366px;}
.x1{left:53.574000px;}
.x2{left:56.687230px;}
.x8a{left:85.848000px;}
.x45{left:93.833160px;}
.x32{left:119.023310px;}
.x57{left:123.438900px;}
.x54{left:126.818100px;}
.x2f{left:130.917600px;}
.x35{left:135.314400px;}
.x34{left:140.084400px;}
.x31{left:150.883205px;}
.x58{left:155.298900px;}
.x47{left:170.827475px;}
.x63{left:215.688900px;}
.x61{left:224.238900px;}
.x60{left:230.988900px;}
.x62{left:242.508450px;}
.x4{left:248.526000px;}
.x3{left:249.591000px;}
.x68{left:265.278450px;}
.x37{left:267.084000px;}
.x59{left:268.338900px;}
.x36{left:271.368000px;}
.x7a{left:272.485500px;}
.x69{left:273.829350px;}
.x5a{left:277.248900px;}
.x6{left:281.479500px;}
.x66{left:292.008900px;}
.x5{left:308.130000px;}
.x6f{left:311.595000px;}
.x80{left:314.359500px;}
.x19{left:315.670500px;}
.x82{left:319.966500px;}
.x85{left:324.676500px;}
.x84{left:328.533000px;}
.x1a{left:330.615000px;}
.x7f{left:335.143500px;}
.x65{left:342.679332px;}
.x87{left:347.731500px;}
.x86{left:348.933000px;}
.x15{left:351.204000px;}
.x81{left:352.980000px;}
.x16{left:358.675500px;}
.x83{left:360.553500px;}
.x6a{left:363.699000px;}
.x3c{left:364.761000px;}
.x88{left:370.201500px;}
.x26{left:371.979000px;}
.x9{left:373.012500px;}
.x67{left:377.329350px;}
.xa{left:380.484000px;}
.x2d{left:381.912000px;}
.x27{left:386.923500px;}
.x89{left:395.628000px;}
.x2e{left:396.856500px;}
.x64{left:405.588900px;}
.x5f{left:409.369446px;}
.x3d{left:416.350500px;}
.x42{left:421.443000px;}
.x2a{left:431.257500px;}
.x3e{left:432.366000px;}
.x1c{left:443.391000px;}
.x13{left:446.403000px;}
.x43{left:449.421000px;}
.x14{left:453.874500px;}
.x1d{left:458.334000px;}
.x1e{left:462.055500px;}
.x44{left:464.364000px;}
.x38{left:471.372000px;}
.x75{left:474.763500px;}
.x1f{left:477.000000px;}
.x76{left:478.393500px;}
.x50{left:480.502800px;}
.x39{left:486.315000px;}
.x28{left:494.709000px;}
.x24{left:502.323000px;}
.x51{left:503.614800px;}
.x29{left:509.652000px;}
.x25{left:517.267500px;}
.x7b{left:523.822500px;}
.x77{left:531.730500px;}
.x7c{left:552.576000px;}
.x2b{left:561.432000px;}
.x22{left:566.727000px;}
.x78{left:573.685500px;}
.x49{left:574.847790px;}
.x2c{left:576.375000px;}
.x4a{left:578.510790px;}
.x23{left:581.671500px;}
.x4b{left:599.696790px;}
.x4f{left:616.470422px;}
.x5d{left:620.688750px;}
.x5e{left:629.598750px;}
.x33{left:634.814400px;}
.x20{left:636.205500px;}
.x56{left:639.225252px;}
.x79{left:643.782000px;}
.x8b{left:644.931000px;}
.x52{left:647.410500px;}
.x7{left:649.831500px;}
.x21{left:651.150000px;}
.x8{left:657.303000px;}
.x17{left:663.729000px;}
.x8c{left:671.830500px;}
.x53{left:676.143000px;}
.x18{left:678.672000px;}
.xd{left:687.678000px;}
.x6d{left:689.923500px;}
.x5b{left:691.968900px;}
.xe{left:695.149500px;}
.x48{left:703.147777px;}
.x6e{left:705.721500px;}
.x5c{left:708.978900px;}
.x3a{left:719.229000px;}
.x3b{left:726.702000px;}
.x72{left:727.956000px;}
.x8d{left:734.649000px;}
.x8e{left:761.548500px;}
.x6b{left:767.559000px;}
.x73{left:788.701500px;}
.x6c{left:789.873000px;}
.xb{left:793.020000px;}
.x70{left:798.042000px;}
.xc{left:800.493000px;}
.x71{left:804.766500px;}
.xf{left:814.173000px;}
.x1b{left:817.299000px;}
.x10{left:821.646000px;}
.x11{left:825.370500px;}
.x12{left:832.842000px;}
.x74{left:837.769500px;}
@media print{
.v5{vertical-align:-46.981333pt;}
.v2{vertical-align:-11.838400pt;}
.v1{vertical-align:-10.938667pt;}
.v3{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:35.973333pt;}
.v6{vertical-align:45.493333pt;}
.ls1c{letter-spacing:-0.229792pt;}
.ls8d{letter-spacing:-0.224448pt;}
.ls75{letter-spacing:-0.187040pt;}
.ls15{letter-spacing:-0.171008pt;}
.ls93{letter-spacing:-0.160320pt;}
.ls3b{letter-spacing:-0.152838pt;}
.ls64{letter-spacing:-0.134669pt;}
.ls8e{letter-spacing:-0.133600pt;}
.ls66{letter-spacing:-0.128256pt;}
.ls59{letter-spacing:-0.123446pt;}
.ls8f{letter-spacing:-0.122912pt;}
.ls16{letter-spacing:-0.117568pt;}
.ls18{letter-spacing:-0.112224pt;}
.ls3a{letter-spacing:-0.111690pt;}
.ls25{letter-spacing:-0.101536pt;}
.ls90{letter-spacing:-0.096192pt;}
.ls70{letter-spacing:-0.096000pt;}
.ls17{letter-spacing:-0.090848pt;}
.ls6f{letter-spacing:-0.085504pt;}
.ls74{letter-spacing:-0.080160pt;}
.ls60{letter-spacing:-0.076954pt;}
.ls20{letter-spacing:-0.074816pt;}
.ls36{letter-spacing:-0.070541pt;}
.ls22{letter-spacing:-0.069472pt;}
.ls5a{letter-spacing:-0.064662pt;}
.ls1e{letter-spacing:-0.064128pt;}
.ls1f{letter-spacing:-0.058784pt;}
.ls95{letter-spacing:-0.053440pt;}
.ls24{letter-spacing:-0.048096pt;}
.ls3e{letter-spacing:-0.047027pt;}
.ls61{letter-spacing:-0.044890pt;}
.ls19{letter-spacing:-0.042752pt;}
.ls3d{letter-spacing:-0.041149pt;}
.ls5d{letter-spacing:-0.038477pt;}
.ls73{letter-spacing:-0.037408pt;}
.ls38{letter-spacing:-0.035270pt;}
.ls71{letter-spacing:-0.035200pt;}
.ls5e{letter-spacing:-0.032064pt;}
.ls58{letter-spacing:-0.029392pt;}
.ls1a{letter-spacing:-0.026720pt;}
.ls62{letter-spacing:-0.025651pt;}
.ls76{letter-spacing:-0.024000pt;}
.ls39{letter-spacing:-0.023514pt;}
.ls14{letter-spacing:-0.021376pt;}
.ls5b{letter-spacing:-0.019238pt;}
.ls57{letter-spacing:-0.017635pt;}
.ls21{letter-spacing:-0.016032pt;}
.ls65{letter-spacing:-0.012826pt;}
.ls37{letter-spacing:-0.011757pt;}
.ls1b{letter-spacing:-0.010688pt;}
.ls5c{letter-spacing:-0.006413pt;}
.ls34{letter-spacing:-0.005878pt;}
.ls5f{letter-spacing:-0.005760pt;}
.ls1d{letter-spacing:-0.005344pt;}
.ls35{letter-spacing:-0.005280pt;}
.ls94{letter-spacing:-0.004800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls98{letter-spacing:0.004267pt;}
.ls12{letter-spacing:0.004800pt;}
.lsb{letter-spacing:0.005344pt;}
.ls2e{letter-spacing:0.005878pt;}
.ls4a{letter-spacing:0.006413pt;}
.ls31{letter-spacing:0.007040pt;}
.ls63{letter-spacing:0.007680pt;}
.ls8c{letter-spacing:0.009600pt;}
.ls8{letter-spacing:0.010688pt;}
.ls40{letter-spacing:0.011757pt;}
.ls5{letter-spacing:0.012768pt;}
.ls4b{letter-spacing:0.012826pt;}
.ls28{letter-spacing:0.014045pt;}
.ls23{letter-spacing:0.014400pt;}
.ls48{letter-spacing:0.015322pt;}
.ls8a{letter-spacing:0.016032pt;}
.ls2f{letter-spacing:0.017635pt;}
.ls6a{letter-spacing:0.019200pt;}
.ls9{letter-spacing:0.021376pt;}
.ls42{letter-spacing:0.023514pt;}
.ls8b{letter-spacing:0.024000pt;}
.ls4e{letter-spacing:0.025651pt;}
.lse{letter-spacing:0.026720pt;}
.ls11{letter-spacing:0.028800pt;}
.ls3c{letter-spacing:0.029392pt;}
.ls2c{letter-spacing:0.031680pt;}
.ls4d{letter-spacing:0.032064pt;}
.ls6b{letter-spacing:0.033600pt;}
.ls50{letter-spacing:0.034560pt;}
.ls30{letter-spacing:0.035270pt;}
.ls7{letter-spacing:0.037408pt;}
.ls53{letter-spacing:0.038477pt;}
.ls44{letter-spacing:0.041149pt;}
.lsc{letter-spacing:0.042752pt;}
.ls52{letter-spacing:0.044890pt;}
.ls2a{letter-spacing:0.047027pt;}
.ls13{letter-spacing:0.048000pt;}
.lsd{letter-spacing:0.048096pt;}
.ls2d{letter-spacing:0.052800pt;}
.ls2b{letter-spacing:0.052906pt;}
.ls10{letter-spacing:0.053440pt;}
.ls87{letter-spacing:0.055328pt;}
.ls55{letter-spacing:0.057715pt;}
.lsa{letter-spacing:0.058784pt;}
.ls67{letter-spacing:0.062400pt;}
.ls3{letter-spacing:0.063840pt;}
.ls4f{letter-spacing:0.064128pt;}
.ls3f{letter-spacing:0.064662pt;}
.ls43{letter-spacing:0.068640pt;}
.ls26{letter-spacing:0.070224pt;}
.ls41{letter-spacing:0.070541pt;}
.ls51{letter-spacing:0.074880pt;}
.ls46{letter-spacing:0.076608pt;}
.ls4c{letter-spacing:0.076954pt;}
.lsf{letter-spacing:0.080160pt;}
.ls32{letter-spacing:0.082298pt;}
.ls45{letter-spacing:0.094054pt;}
.ls54{letter-spacing:0.102605pt;}
.ls68{letter-spacing:0.133600pt;}
.ls89{letter-spacing:0.148960pt;}
.ls6{letter-spacing:0.157472pt;}
.ls88{letter-spacing:0.161728pt;}
.ls4{letter-spacing:0.170240pt;}
.ls29{letter-spacing:0.173219pt;}
.ls27{letter-spacing:0.187264pt;}
.ls49{letter-spacing:0.188966pt;}
.ls47{letter-spacing:0.204288pt;}
.ls72{letter-spacing:0.406144pt;}
.ls81{letter-spacing:0.570745pt;}
.ls82{letter-spacing:0.576078pt;}
.ls86{letter-spacing:0.665570pt;}
.ls92{letter-spacing:0.721440pt;}
.ls79{letter-spacing:1.194378pt;}
.ls80{letter-spacing:1.314290pt;}
.ls91{letter-spacing:2.960576pt;}
.ls1{letter-spacing:10.626533pt;}
.ls6c{letter-spacing:10.924800pt;}
.ls84{letter-spacing:10.968429pt;}
.ls69{letter-spacing:10.976000pt;}
.ls7a{letter-spacing:10.995733pt;}
.ls7d{letter-spacing:11.421762pt;}
.ls7c{letter-spacing:11.658682pt;}
.ls56{letter-spacing:11.901986pt;}
.ls97{letter-spacing:11.954133pt;}
.ls99{letter-spacing:11.959467pt;}
.ls6e{letter-spacing:12.592726pt;}
.ls7e{letter-spacing:12.696429pt;}
.ls77{letter-spacing:12.911530pt;}
.ls9a{letter-spacing:13.414735pt;}
.ls6d{letter-spacing:13.442868pt;}
.ls7b{letter-spacing:14.291096pt;}
.ls33{letter-spacing:14.611813pt;}
.ls96{letter-spacing:14.721924pt;}
.ls83{letter-spacing:15.395096pt;}
.ls78{letter-spacing:15.853762pt;}
.ls0{letter-spacing:25.292137pt;}
.ls85{letter-spacing:56.317762pt;}
.ls7f{letter-spacing:56.627096pt;}
.ws11f{word-spacing:-58.924800pt;}
.ws11d{word-spacing:-48.033600pt;}
.ws11b{word-spacing:-47.976000pt;}
.ws11e{word-spacing:-37.382400pt;}
.ws11c{word-spacing:-37.166400pt;}
.ws119{word-spacing:-13.360000pt;}
.ws142{word-spacing:-13.283467pt;}
.wsc8{word-spacing:-12.972288pt;}
.wsc9{word-spacing:-12.768000pt;}
.ws122{word-spacing:-11.955200pt;}
.ws8d{word-spacing:-11.891264pt;}
.ws8e{word-spacing:-11.704000pt;}
.ws4e{word-spacing:-10.810240pt;}
.ws15c{word-spacing:-10.801728pt;}
.ws4f{word-spacing:-10.640000pt;}
.ws30{word-spacing:-10.626800pt;}
.ws3{word-spacing:-9.298400pt;}
.ws8f{word-spacing:-8.807040pt;}
.ws15d{word-spacing:-8.000000pt;}
.wse{word-spacing:-3.921306pt;}
.wsae{word-spacing:-3.768054pt;}
.wsaf{word-spacing:-3.415350pt;}
.ws112{word-spacing:-3.328243pt;}
.ws113{word-spacing:-3.219226pt;}
.wse6{word-spacing:-3.050890pt;}
.wsf8{word-spacing:-3.001190pt;}
.wsf4{word-spacing:-2.969126pt;}
.wse7{word-spacing:-2.950957pt;}
.wsf7{word-spacing:-2.949888pt;}
.wsf3{word-spacing:-2.937062pt;}
.ws116{word-spacing:-2.924237pt;}
.ws115{word-spacing:-2.840870pt;}
.ws83{word-spacing:-2.778880pt;}
.wsd5{word-spacing:-2.751091pt;}
.wsd1{word-spacing:-2.721699pt;}
.wsd4{word-spacing:-2.704064pt;}
.wsd0{word-spacing:-2.692307pt;}
.wsc0{word-spacing:-2.680550pt;}
.wsb6{word-spacing:-2.610010pt;}
.wse9{word-spacing:-2.604131pt;}
.wsf5{word-spacing:-2.597184pt;}
.wsb7{word-spacing:-2.568861pt;}
.ws168{word-spacing:-2.484960pt;}
.ws47{word-spacing:-2.391024pt;}
.wsd2{word-spacing:-2.380752pt;}
.ws120{word-spacing:-2.337890pt;}
.ws150{word-spacing:-2.288526pt;}
.ws14f{word-spacing:-2.283193pt;}
.wsf0{word-spacing:-2.270131pt;}
.ws101{word-spacing:-2.244480pt;}
.wsf1{word-spacing:-2.193178pt;}
.ws12b{word-spacing:-2.191040pt;}
.ws178{word-spacing:-2.153632pt;}
.ws12a{word-spacing:-2.116224pt;}
.wscd{word-spacing:-2.080954pt;}
.ws156{word-spacing:-2.072221pt;}
.wsd9{word-spacing:-2.057440pt;}
.wsce{word-spacing:-2.010413pt;}
.ws188{word-spacing:-1.886432pt;}
.ws84{word-spacing:-1.870400pt;}
.ws104{word-spacing:-1.834061pt;}
.ws46{word-spacing:-1.806551pt;}
.ws105{word-spacing:-1.795584pt;}
.ws18a{word-spacing:-1.790240pt;}
.ws1e{word-spacing:-1.753418pt;}
.wsdc{word-spacing:-1.681222pt;}
.ws189{word-spacing:-1.678016pt;}
.wsdd{word-spacing:-1.645952pt;}
.ws145{word-spacing:-1.625216pt;}
.ws197{word-spacing:-1.594016pt;}
.ws13a{word-spacing:-1.571136pt;}
.ws16d{word-spacing:-1.565792pt;}
.ws191{word-spacing:-1.496320pt;}
.ws192{word-spacing:-1.464256pt;}
.ws28{word-spacing:-1.381481pt;}
.wsbc{word-spacing:-1.352032pt;}
.wsca{word-spacing:-1.328347pt;}
.wsa5{word-spacing:-1.316762pt;}
.wsa4{word-spacing:-1.305005pt;}
.wsc2{word-spacing:-1.275613pt;}
.ws42{word-spacing:-1.222079pt;}
.ws70{word-spacing:-1.132928pt;}
.ws11{word-spacing:-1.099878pt;}
.ws4{word-spacing:-1.041421pt;}
.ws165{word-spacing:-1.009543pt;}
.wsa9{word-spacing:-0.981693pt;}
.ws6f{word-spacing:-0.929856pt;}
.ws6{word-spacing:-0.929840pt;}
.ws169{word-spacing:-0.919168pt;}
.ws1af{word-spacing:-0.908595pt;}
.ws40{word-spacing:-0.903276pt;}
.ws171{word-spacing:-0.903136pt;}
.ws63{word-spacing:-0.881760pt;}
.ws16a{word-spacing:-0.876416pt;}
.ws121{word-spacing:-0.743874pt;}
.ws3f{word-spacing:-0.690740pt;}
.wsa8{word-spacing:-0.658381pt;}
.wsc3{word-spacing:-0.605475pt;}
.ws18{word-spacing:-0.573850pt;}
.ws75{word-spacing:-0.555776pt;}
.ws87{word-spacing:-0.545088pt;}
.ws88{word-spacing:-0.539744pt;}
.ws17e{word-spacing:-0.534400pt;}
.ws62{word-spacing:-0.513024pt;}
.ws3b{word-spacing:-0.478205pt;}
.ws61{word-spacing:-0.443552pt;}
.ws1b7{word-spacing:-0.430387pt;}
.ws43{word-spacing:-0.425071pt;}
.ws110{word-spacing:-0.384768pt;}
.ws140{word-spacing:-0.371937pt;}
.wse5{word-spacing:-0.352704pt;}
.wsc1{word-spacing:-0.340947pt;}
.ws48{word-spacing:-0.318803pt;}
.ws6b{word-spacing:-0.315296pt;}
.ws9f{word-spacing:-0.311555pt;}
.ws190{word-spacing:-0.299264pt;}
.wseb{word-spacing:-0.296218pt;}
.ws1b3{word-spacing:-0.286925pt;}
.ws56{word-spacing:-0.272544pt;}
.ws9a{word-spacing:-0.271533pt;}
.ws35{word-spacing:-0.265669pt;}
.ws118{word-spacing:-0.256512pt;}
.ws13d{word-spacing:-0.251168pt;}
.ws53{word-spacing:-0.246848pt;}
.ws166{word-spacing:-0.242592pt;}
.ws12{word-spacing:-0.239104pt;}
.ws7d{word-spacing:-0.235136pt;}
.ws133{word-spacing:-0.213760pt;}
.ws1f{word-spacing:-0.212535pt;}
.ws100{word-spacing:-0.205210pt;}
.ws13c{word-spacing:-0.203072pt;}
.wsb8{word-spacing:-0.188109pt;}
.ws1b{word-spacing:-0.159402pt;}
.ws132{word-spacing:-0.154976pt;}
.ws13{word-spacing:-0.143462pt;}
.wsec{word-spacing:-0.107251pt;}
.ws20{word-spacing:-0.106268pt;}
.ws9b{word-spacing:-0.098314pt;}
.ws14{word-spacing:-0.095642pt;}
.ws54{word-spacing:-0.089376pt;}
.ws167{word-spacing:-0.080864pt;}
.ws33{word-spacing:-0.053134pt;}
.ws1b0{word-spacing:-0.047821pt;}
.ws2f{word-spacing:-0.002044pt;}
.ws2{word-spacing:-0.001042pt;}
.ws1{word-spacing:0.000000pt;}
.wsd3{word-spacing:0.023514pt;}
.wsf6{word-spacing:0.025651pt;}
.ws60{word-spacing:0.026720pt;}
.wsd7{word-spacing:0.035270pt;}
.ws86{word-spacing:0.037408pt;}
.wsfb{word-spacing:0.038477pt;}
.wsac{word-spacing:0.041149pt;}
.ws111{word-spacing:0.044890pt;}
.ws19e{word-spacing:0.047821pt;}
.ws26{word-spacing:0.053134pt;}
.ws12f{word-spacing:0.053440pt;}
.ws6a{word-spacing:0.058784pt;}
.ws10e{word-spacing:0.064128pt;}
.ws17b{word-spacing:0.069472pt;}
.ws13b{word-spacing:0.080160pt;}
.ws5f{word-spacing:0.085504pt;}
.wsbe{word-spacing:0.088176pt;}
.wse1{word-spacing:0.099933pt;}
.ws123{word-spacing:0.100800pt;}
.ws74{word-spacing:0.101536pt;}
.wsb3{word-spacing:0.105811pt;}
.ws3a{word-spacing:0.106268pt;}
.ws109{word-spacing:0.109018pt;}
.wsd8{word-spacing:0.110880pt;}
.ws7c{word-spacing:0.115200pt;}
.wsba{word-spacing:0.117568pt;}
.wsfe{word-spacing:0.120960pt;}
.ws172{word-spacing:0.122912pt;}
.wsa1{word-spacing:0.126720pt;}
.ws7e{word-spacing:0.133600pt;}
.ws79{word-spacing:0.134400pt;}
.wse4{word-spacing:0.135203pt;}
.ws15{word-spacing:0.143462pt;}
.ws10f{word-spacing:0.147494pt;}
.wsa0{word-spacing:0.147840pt;}
.ws7a{word-spacing:0.148800pt;}
.ws7b{word-spacing:0.158400pt;}
.ws1c{word-spacing:0.159402pt;}
.wsfc{word-spacing:0.161280pt;}
.ws18f{word-spacing:0.163200pt;}
.wsa3{word-spacing:0.164595pt;}
.ws125{word-spacing:0.171008pt;}
.ws80{word-spacing:0.176352pt;}
.wsff{word-spacing:0.179558pt;}
.wsa2{word-spacing:0.184800pt;}
.ws7f{word-spacing:0.187040pt;}
.ws10{word-spacing:0.191283pt;}
.wsfd{word-spacing:0.201600pt;}
.ws3d{word-spacing:0.212535pt;}
.ws17{word-spacing:0.239104pt;}
.ws21{word-spacing:0.265669pt;}
.ws6c{word-spacing:0.315296pt;}
.ws92{word-spacing:0.318803pt;}
.ws15f{word-spacing:0.334746pt;}
.ws66{word-spacing:0.358048pt;}
.ws1b5{word-spacing:0.382566pt;}
.ws8b{word-spacing:0.395456pt;}
.ws8a{word-spacing:0.411488pt;}
.ws52{word-spacing:0.425071pt;}
.ws67{word-spacing:0.432864pt;}
.wsb1{word-spacing:0.446758pt;}
.wsb0{word-spacing:0.458515pt;}
.wscf{word-spacing:0.482029pt;}
.ws17a{word-spacing:0.496992pt;}
.ws179{word-spacing:0.523712pt;}
.wsf2{word-spacing:0.525850pt;}
.ws194{word-spacing:0.531339pt;}
.ws15e{word-spacing:0.573850pt;}
.ws15b{word-spacing:0.584473pt;}
.ws98{word-spacing:0.637606pt;}
.ws127{word-spacing:0.689376pt;}
.ws36{word-spacing:0.690740pt;}
.ws183{word-spacing:0.705408pt;}
.ws128{word-spacing:0.721440pt;}
.ws129{word-spacing:0.742816pt;}
.ws158{word-spacing:0.797008pt;}
.wsdf{word-spacing:0.799462pt;}
.wsab{word-spacing:0.805341pt;}
.wse0{word-spacing:0.834733pt;}
.ws187{word-spacing:0.839008pt;}
.ws2e{word-spacing:0.850142pt;}
.ws5{word-spacing:0.855453pt;}
.wsaa{word-spacing:0.858246pt;}
.ws107{word-spacing:0.872141pt;}
.ws23{word-spacing:0.903276pt;}
.ws108{word-spacing:0.910618pt;}
.ws50{word-spacing:0.956410pt;}
.ws65{word-spacing:1.004672pt;}
.ws186{word-spacing:1.015360pt;}
.ws185{word-spacing:1.026048pt;}
.ws5d{word-spacing:1.036736pt;}
.ws5e{word-spacing:1.047424pt;}
.ws64{word-spacing:1.068800pt;}
.ws1ab{word-spacing:1.099878pt;}
.ws45{word-spacing:1.275213pt;}
.ws94{word-spacing:1.328347pt;}
.ws126{word-spacing:1.330656pt;}
.ws175{word-spacing:1.341344pt;}
.ws16f{word-spacing:1.352032pt;}
.ws81{word-spacing:1.357376pt;}
.ws82{word-spacing:1.368064pt;}
.ws6e{word-spacing:1.373408pt;}
.ws174{word-spacing:1.389440pt;}
.ws131{word-spacing:1.400128pt;}
.ws173{word-spacing:1.405472pt;}
.ws38{word-spacing:1.434614pt;}
.ws9e{word-spacing:1.457843pt;}
.wsd6{word-spacing:1.481357pt;}
.ws1ad{word-spacing:1.482445pt;}
.wsc4{word-spacing:1.504870pt;}
.wsda{word-spacing:1.510749pt;}
.ws3c{word-spacing:1.540882pt;}
.wsdb{word-spacing:1.546019pt;}
.ws170{word-spacing:1.581824pt;}
.wsf9{word-spacing:1.616026pt;}
.ws1ae{word-spacing:1.625907pt;}
.wsfa{word-spacing:1.641677pt;}
.ws102{word-spacing:1.648090pt;}
.ws5c{word-spacing:1.661984pt;}
.ws103{word-spacing:1.686566pt;}
.ws130{word-spacing:1.694048pt;}
.ws39{word-spacing:1.700284pt;}
.ws6d{word-spacing:1.704736pt;}
.ws5b{word-spacing:1.774208pt;}
.wsbf{word-spacing:1.816426pt;}
.wsa7{word-spacing:1.845818pt;}
.wsa6{word-spacing:1.886966pt;}
.wsb9{word-spacing:1.892845pt;}
.wsea{word-spacing:1.916358pt;}
.ws141{word-spacing:1.965953pt;}
.ws139{word-spacing:1.977280pt;}
.ws138{word-spacing:2.004000pt;}
.ws1d{word-spacing:2.019087pt;}
.ws10a{word-spacing:2.058509pt;}
.ws10b{word-spacing:2.064922pt;}
.ws51{word-spacing:2.072221pt;}
.ws117{word-spacing:2.090573pt;}
.ws1a2{word-spacing:2.151936pt;}
.ws1a3{word-spacing:2.199757pt;}
.wse8{word-spacing:2.216157pt;}
.ws0{word-spacing:2.232481pt;}
.wsc7{word-spacing:2.245549pt;}
.wsc6{word-spacing:2.251427pt;}
.ws18b{word-spacing:2.281888pt;}
.ws1b4{word-spacing:2.295398pt;}
.ws16{word-spacing:2.343219pt;}
.ws164{word-spacing:2.391024pt;}
.ws1a6{word-spacing:2.391040pt;}
.ws114{word-spacing:2.417626pt;}
.wsc5{word-spacing:2.510077pt;}
.ws2d{word-spacing:2.550426pt;}
.wsf{word-spacing:2.550432pt;}
.ws32{word-spacing:2.603559pt;}
.ws181{word-spacing:2.613216pt;}
.ws59{word-spacing:2.634592pt;}
.ws89{word-spacing:2.666656pt;}
.ws176{word-spacing:2.677344pt;}
.ws18d{word-spacing:2.688000pt;}
.ws18c{word-spacing:2.697600pt;}
.ws4a{word-spacing:2.709827pt;}
.ws18e{word-spacing:2.716800pt;}
.ws5a{word-spacing:2.762848pt;}
.ws37{word-spacing:2.762961pt;}
.ws177{word-spacing:2.773536pt;}
.ws1a4{word-spacing:2.773606pt;}
.ws2b{word-spacing:2.816095pt;}
.wsb5{word-spacing:2.851024pt;}
.ws1aa{word-spacing:2.860570pt;}
.ws19{word-spacing:2.861926pt;}
.ws1a7{word-spacing:2.864188pt;}
.ws1b1{word-spacing:2.864265pt;}
.ws1b2{word-spacing:2.865118pt;}
.ws1b6{word-spacing:2.866714pt;}
.ws2c{word-spacing:2.869229pt;}
.ws1a8{word-spacing:2.869248pt;}
.wse3{word-spacing:2.898051pt;}
.ws9d{word-spacing:2.915686pt;}
.ws1a5{word-spacing:2.917069pt;}
.ws90{word-spacing:2.922363pt;}
.wse2{word-spacing:2.927443pt;}
.ws195{word-spacing:2.975497pt;}
.ws182{word-spacing:2.976608pt;}
.ws1a9{word-spacing:3.012710pt;}
.ws184{word-spacing:3.062112pt;}
.ws10d{word-spacing:3.161510pt;}
.ws1a{word-spacing:3.188032pt;}
.ws10c{word-spacing:3.193574pt;}
.ws22{word-spacing:3.241166pt;}
.ws19f{word-spacing:3.251814pt;}
.ws68{word-spacing:3.281216pt;}
.ws69{word-spacing:3.297248pt;}
.ws72{word-spacing:3.345344pt;}
.ws71{word-spacing:3.356032pt;}
.ws3e{word-spacing:3.453701pt;}
.ws97{word-spacing:3.506835pt;}
.ws76{word-spacing:3.559104pt;}
.ws162{word-spacing:3.559969pt;}
.ws16e{word-spacing:3.601856pt;}
.ws12c{word-spacing:3.617888pt;}
.ws78{word-spacing:3.676672pt;}
.ws77{word-spacing:3.698048pt;}
.ws199{word-spacing:3.772505pt;}
.ws12d{word-spacing:3.836992pt;}
.ws13f{word-spacing:3.921306pt;}
.ws198{word-spacing:3.931906pt;}
.ws85{word-spacing:3.938528pt;}
.ws161{word-spacing:3.985040pt;}
.ws49{word-spacing:4.091308pt;}
.ws2a{word-spacing:4.144442pt;}
.ws4b{word-spacing:4.197575pt;}
.ws193{word-spacing:4.205728pt;}
.wsc{word-spacing:4.240070pt;}
.ws96{word-spacing:4.250709pt;}
.ws13e{word-spacing:4.256051pt;}
.wsb4{word-spacing:4.285354pt;}
.ws157{word-spacing:4.303843pt;}
.wsd{word-spacing:4.314458pt;}
.wsb2{word-spacing:4.355894pt;}
.ws34{word-spacing:4.356977pt;}
.ws196{word-spacing:4.622646pt;}
.ws14e{word-spacing:4.675780pt;}
.wsde{word-spacing:4.696842pt;}
.ws1a0{word-spacing:4.734259pt;}
.ws160{word-spacing:4.835182pt;}
.ws27{word-spacing:4.888316pt;}
.ws16c{word-spacing:4.889760pt;}
.ws17d{word-spacing:4.916480pt;}
.ws17c{word-spacing:4.937856pt;}
.ws29{word-spacing:4.941450pt;}
.ws16b{word-spacing:4.959232pt;}
.ws106{word-spacing:5.123827pt;}
.ws137{word-spacing:5.194368pt;}
.ws136{word-spacing:5.199712pt;}
.ws24{word-spacing:5.207119pt;}
.ws124{word-spacing:5.231776pt;}
.ws25{word-spacing:5.260253pt;}
.ws15a{word-spacing:5.366521pt;}
.ws41{word-spacing:5.472788pt;}
.ws19d{word-spacing:5.499392pt;}
.ws73{word-spacing:5.600512pt;}
.ws44{word-spacing:5.685324pt;}
.ws1a1{word-spacing:5.738496pt;}
.ws8c{word-spacing:5.803584pt;}
.ws19c{word-spacing:5.834138pt;}
.ws163{word-spacing:5.840866pt;}
.ws31{word-spacing:5.844725pt;}
.ws95{word-spacing:5.846199pt;}
.ws12e{word-spacing:5.846336pt;}
.ws93{word-spacing:6.004127pt;}
.ws91{word-spacing:6.269796pt;}
.ws155{word-spacing:6.376064pt;}
.ws57{word-spacing:6.508992pt;}
.ws1ac{word-spacing:6.647091pt;}
.ws58{word-spacing:6.658624pt;}
.ws4d{word-spacing:6.907403pt;}
.wsa{word-spacing:6.918010pt;}
.ws180{word-spacing:7.102176pt;}
.wsbb{word-spacing:7.106986pt;}
.ws99{word-spacing:7.119938pt;}
.ws17f{word-spacing:7.155616pt;}
.ws4c{word-spacing:7.226206pt;}
.ws159{word-spacing:7.385607pt;}
.ws134{word-spacing:7.438848pt;}
.ws135{word-spacing:7.460224pt;}
.wsad{word-spacing:7.512595pt;}
.wsbd{word-spacing:8.159219pt;}
.wscb{word-spacing:8.212125pt;}
.wscc{word-spacing:8.541315pt;}
.ws143{word-spacing:8.890313pt;}
.ws147{word-spacing:8.895646pt;}
.wsee{word-spacing:8.958682pt;}
.wsef{word-spacing:9.317798pt;}
.ws55{word-spacing:10.329312pt;}
.ws8{word-spacing:10.823338pt;}
.ws9c{word-spacing:11.362243pt;}
.wsed{word-spacing:12.395174pt;}
.ws9{word-spacing:14.319536pt;}
.wsb{word-spacing:23.208806pt;}
.ws7{word-spacing:23.858002pt;}
.ws14b{word-spacing:133.372211pt;}
.ws14a{word-spacing:133.954227pt;}
.ws14d{word-spacing:158.573773pt;}
.ws14c{word-spacing:170.528973pt;}
.ws149{word-spacing:190.518067pt;}
.ws153{word-spacing:260.186667pt;}
.ws11a{word-spacing:264.158400pt;}
.ws154{word-spacing:278.122667pt;}
.ws152{word-spacing:353.969562pt;}
.ws151{word-spacing:487.425360pt;}
.ws146{word-spacing:703.226725pt;}
.ws144{word-spacing:737.179266pt;}
.ws148{word-spacing:750.090796pt;}
.ws19b{word-spacing:897.794571pt;}
.ws19a{word-spacing:909.526558pt;}
._7{margin-left:-14.155533pt;}
._31{margin-left:-11.032000pt;}
._15{margin-left:-5.897859pt;}
._0{margin-left:-4.797974pt;}
._3{margin-left:-3.347424pt;}
._5{margin-left:-2.045648pt;}
._9{margin-left:-0.908595pt;}
._19{width:0.966160pt;}
._4{width:2.045648pt;}
._32{width:3.490918pt;}
._3e{width:8.729881pt;}
._1{width:11.527871pt;}
._3b{width:12.624512pt;}
._a{width:14.144310pt;}
._b{width:15.063552pt;}
._c{width:16.471499pt;}
._11{width:17.640444pt;}
._f{width:18.543719pt;}
._e{width:19.500129pt;}
._16{width:21.519216pt;}
._2{width:23.055765pt;}
._10{width:25.504256pt;}
._6{width:27.188522pt;}
._3d{width:28.745422pt;}
._3a{width:29.983459pt;}
._d{width:32.624194pt;}
._14{width:34.393570pt;}
._2e{width:35.769731pt;}
._17{width:38.638960pt;}
._1d{width:41.298432pt;}
._1c{width:60.713184pt;}
._8{width:61.660541pt;}
._1b{width:94.118528pt;}
._26{width:116.061082pt;}
._1a{width:118.706387pt;}
._24{width:126.294733pt;}
._25{width:146.225360pt;}
._30{width:161.096000pt;}
._36{width:164.551373pt;}
._35{width:174.837666pt;}
._27{width:216.676045pt;}
._1e{width:219.285696pt;}
._34{width:221.697229pt;}
._33{width:234.034995pt;}
._38{width:249.098547pt;}
._37{width:279.608218pt;}
._20{width:286.144480pt;}
._22{width:299.247968pt;}
._39{width:304.058052pt;}
._1f{width:320.399520pt;}
._28{width:328.146330pt;}
._29{width:347.322470pt;}
._2b{width:359.277670pt;}
._21{width:367.138144pt;}
._23{width:380.514176pt;}
._2a{width:409.680794pt;}
._2c{width:421.635994pt;}
._46{width:672.293875pt;}
._45{width:681.517938pt;}
._43{width:721.097443pt;}
._41{width:726.788106pt;}
._47{width:746.086374pt;}
._48{width:748.296749pt;}
._3f{width:753.312598pt;}
._4a{width:764.274243pt;}
._40{width:777.584210pt;}
._4c{width:824.979738pt;}
._4b{width:829.862853pt;}
._44{width:833.353656pt;}
._49{width:845.128150pt;}
._12{width:854.007469pt;}
._42{width:864.128869pt;}
._4d{width:904.085637pt;}
._18{width:1892.328256pt;}
._2d{width:2081.561082pt;}
._3c{width:2235.519937pt;}
._13{width:2256.773270pt;}
._2f{width:2270.793907pt;}
.fs8{font-size:32.000000pt;}
.fse{font-size:35.200000pt;}
.fs0{font-size:37.193600pt;}
.fs13{font-size:38.400000pt;}
.fsf{font-size:40.381867pt;}
.fs4{font-size:42.507200pt;}
.fs6{font-size:42.560000pt;}
.fsb{font-size:46.816000pt;}
.fs5{font-size:47.820800pt;}
.fs9{font-size:48.000000pt;}
.fs14{font-size:49.829333pt;}
.fs10{font-size:51.072000pt;}
.fsd{font-size:52.800000pt;}
.fs2{font-size:53.133867pt;}
.fs7{font-size:53.440000pt;}
.fsa{font-size:55.365867pt;}
.fs12{font-size:57.600000pt;}
.fsc{font-size:58.784000pt;}
.fs11{font-size:64.128000pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:134.387200pt;}
.y178{bottom:-803.775600pt;}
.yca{bottom:-756.509160pt;}
.y11b{bottom:-699.778493pt;}
.y18f{bottom:-699.292832pt;}
.yf1{bottom:-694.900416pt;}
.y18e{bottom:-686.012992pt;}
.y19b{bottom:-680.015600pt;}
.yf0{bottom:-676.157137pt;}
.y199{bottom:-661.217600pt;}
.yef{bottom:-657.325683pt;}
.y190{bottom:-647.135600pt;}
.yee{bottom:-638.582405pt;}
.y1a1{bottom:-630.255467pt;}
.yed{bottom:-619.750950pt;}
.y191{bottom:-618.575600pt;}
.y1a0{bottom:-615.616000pt;}
.y13a{bottom:-611.158965pt;}
.yec{bottom:-600.919496pt;}
.y139{bottom:-592.415686pt;}
.y192{bottom:-590.096000pt;}
.yeb{bottom:-582.176217pt;}
.y138{bottom:-573.584232pt;}
.y19f{bottom:-568.975600pt;}
.y193{bottom:-561.616400pt;}
.y19a{bottom:-559.055600pt;}
.yea{bottom:-559.031487pt;}
.y137{bottom:-554.752777pt;}
.y19e{bottom:-554.336000pt;}
.y136{bottom:-536.009499pt;}
.ye9{bottom:-535.800050pt;}
.y194{bottom:-533.056400pt;}
.y142{bottom:-519.877920pt;}
.y135{bottom:-512.864769pt;}
.y195{bottom:-504.576800pt;}
.ye8{bottom:-499.368666pt;}
.y134{bottom:-489.633332pt;}
.ye7{bottom:-480.537212pt;}
.y1a3{bottom:-479.215600pt;}
.y196{bottom:-476.016800pt;}
.y1a2{bottom:-464.575200pt;}
.ye6{bottom:-461.793933pt;}
.y133{bottom:-453.201948pt;}
.y197{bottom:-447.537200pt;}
.ye5{bottom:-442.962479pt;}
.y132{bottom:-434.370493pt;}
.y131{bottom:-434.368199pt;}
.ye4{bottom:-424.219201pt;}
.y161{bottom:-423.202070pt;}
.y198{bottom:-418.977200pt;}
.y130{bottom:-415.624921pt;}
.y19d{bottom:-406.175600pt;}
.ye3{bottom:-405.387746pt;}
.y160{bottom:-402.754858pt;}
.y12f{bottom:-396.793467pt;}
.y19c{bottom:-388.175752pt;}
.ye2{bottom:-386.556292pt;}
.y8d{bottom:-384.460933pt;}
.y15f{bottom:-382.211453pt;}
.y12e{bottom:-378.050188pt;}
.ye1{bottom:-367.813013pt;}
.ye0{bottom:-367.806296pt;}
.y15e{bottom:-361.668048pt;}
.y12d{bottom:-359.218734pt;}
.ydf{bottom:-348.974842pt;}
.y18d{bottom:-345.132592pt;}
.y15d{bottom:-341.220835pt;}
.y12c{bottom:-340.387279pt;}
.yde{bottom:-330.143387pt;}
.y18c{bottom:-328.013088pt;}
.y12b{bottom:-321.642531pt;}
.yb3{bottom:-320.535989pt;}
.y15c{bottom:-315.972038pt;}
.ydd{bottom:-311.400109pt;}
.y18b{bottom:-310.972408pt;}
.yb2{bottom:-303.416485pt;}
.y12a{bottom:-302.811077pt;}
.y18a{bottom:-293.852904pt;}
.ydc{bottom:-292.568654pt;}
.y15b{bottom:-290.628653pt;}
.yb1{bottom:-286.377141pt;}
.y129{bottom:-279.666347pt;}
.y189{bottom:-276.733400pt;}
.ydb{bottom:-273.825376pt;}
.yb0{bottom:-269.257637pt;}
.y188{bottom:-259.694056pt;}
.yda{bottom:-254.993922pt;}
.yaf{bottom:-252.138133pt;}
.y15a{bottom:-250.885325pt;}
.y128{bottom:-243.674493pt;}
.y187{bottom:-242.574552pt;}
.yd9{bottom:-236.162467pt;}
.yae{bottom:-235.098789pt;}
.y159{bottom:-230.341920pt;}
.y158{bottom:-230.339418pt;}
.y127{bottom:-221.674493pt;}
.y186{bottom:-221.533888pt;}
.yad{bottom:-217.979285pt;}
.yd8{bottom:-217.419189pt;}
.y157{bottom:-209.892205pt;}
.yac{bottom:-200.859781pt;}
.yd7{bottom:-198.587734pt;}
.y156{bottom:-189.348800pt;}
.y185{bottom:-188.414448pt;}
.y1f2{bottom:-186.014267pt;}
.yab{bottom:-183.820437pt;}
.yd6{bottom:-179.842986pt;}
.y184{bottom:-171.294944pt;}
.y155{bottom:-168.901587pt;}
.yaa{bottom:-166.700933pt;}
.yd5{bottom:-161.011532pt;}
.y183{bottom:-154.255600pt;}
.y182{bottom:-154.253952pt;}
.y154{bottom:-148.358182pt;}
.yd4{bottom:-142.180078pt;}
.y181{bottom:-137.134448pt;}
.ya9{bottom:-132.060861pt;}
.y153{bottom:-127.814778pt;}
.yd3{bottom:-123.435330pt;}
.y214{bottom:-122.013805pt;}
.y180{bottom:-120.095104pt;}
.ya8{bottom:-114.060933pt;}
.y152{bottom:-107.365962pt;}
.y213{bottom:-104.894301pt;}
.yd2{bottom:-104.603875pt;}
.y17f{bottom:-102.975600pt;}
.y17e{bottom:-102.975288pt;}
.ya7{bottom:-96.060933pt;}
.y212{bottom:-87.774797pt;}
.y151{bottom:-86.822557pt;}
.yd1{bottom:-85.860597pt;}
.y17d{bottom:-85.855784pt;}
.ya6{bottom:-77.420933pt;}
.y17c{bottom:-68.815104pt;}
.y211{bottom:-66.734133pt;}
.yd0{bottom:-62.629160pt;}
.y150{bottom:-61.573760pt;}
.y17b{bottom:-51.695600pt;}
.ya5{bottom:-50.700400pt;}
.y210{bottom:-34.014667pt;}
.ycf{bottom:-26.637160pt;}
.y14f{bottom:-22.309920pt;}
.y126{bottom:-21.650493pt;}
.ya4{bottom:-19.340800pt;}
.y17a{bottom:-18.975600pt;}
.y20f{bottom:-18.574267pt;}
.yce{bottom:-4.637160pt;}
.y0{bottom:0.000000pt;}
.y125{bottom:0.353643pt;}
.ya3{bottom:0.659200pt;}
.y179{bottom:1.024120pt;}
.y20e{bottom:1.353877pt;}
.y14e{bottom:1.690080pt;}
.y1a{bottom:15.227834pt;}
.y48{bottom:28.346667pt;}
.y117{bottom:81.480000pt;}
.y222{bottom:83.301333pt;}
.y1ee{bottom:87.245333pt;}
.y1c6{bottom:88.262667pt;}
.y1ed{bottom:89.980000pt;}
.y47{bottom:92.108000pt;}
.y18{bottom:93.018667pt;}
.y7f{bottom:95.681333pt;}
.y116{bottom:98.217333pt;}
.y221{bottom:100.038667pt;}
.y23e{bottom:102.520000pt;}
.y1c5{bottom:105.000000pt;}
.y1ec{bottom:106.717333pt;}
.y46{bottom:108.844000pt;}
.y17{bottom:108.920000pt;}
.y7e{bottom:112.418667pt;}
.y115{bottom:114.954667pt;}
.y23d{bottom:115.140000pt;}
.y220{bottom:116.776000pt;}
.y275{bottom:117.558667pt;}
.y1c4{bottom:121.737333pt;}
.y1eb{bottom:123.454667pt;}
.y16{bottom:124.820000pt;}
.y45{bottom:125.581333pt;}
.y23c{bottom:127.758667pt;}
.y7d{bottom:129.156000pt;}
.y114{bottom:131.692000pt;}
.y274{bottom:132.901333pt;}
.y21f{bottom:133.513333pt;}
.y174{bottom:135.557333pt;}
.y1b8{bottom:137.085333pt;}
.y1c3{bottom:138.474667pt;}
.y1ea{bottom:140.192000pt;}
.y23b{bottom:140.378667pt;}
.y15{bottom:140.720000pt;}
.yc6{bottom:141.732000pt;}
.y44{bottom:142.318667pt;}
.y7c{bottom:145.893333pt;}
.y273{bottom:148.244000pt;}
.y113{bottom:148.429333pt;}
.y21e{bottom:150.250667pt;}
.y173{bottom:152.294667pt;}
.y23a{bottom:152.997333pt;}
.y1c2{bottom:155.212000pt;}
.y14{bottom:156.621333pt;}
.y1e9{bottom:156.929333pt;}
.yc5{bottom:158.469333pt;}
.y43{bottom:159.056000pt;}
.y7b{bottom:162.630667pt;}
.y272{bottom:163.586667pt;}
.y112{bottom:165.166667pt;}
.y239{bottom:165.617333pt;}
.y21d{bottom:166.988000pt;}
.y172{bottom:169.032000pt;}
.y1c1{bottom:171.949333pt;}
.y13{bottom:172.521333pt;}
.y1e8{bottom:173.666667pt;}
.yc4{bottom:175.206667pt;}
.y42{bottom:175.793333pt;}
.y238{bottom:178.236000pt;}
.y271{bottom:178.929333pt;}
.y7a{bottom:179.368000pt;}
.y111{bottom:181.904000pt;}
.y21c{bottom:183.725333pt;}
.y171{bottom:185.769333pt;}
.y12{bottom:188.421333pt;}
.y1c0{bottom:188.686667pt;}
.y1e7{bottom:190.404000pt;}
.y237{bottom:190.856000pt;}
.yc3{bottom:191.944000pt;}
.y41{bottom:192.530667pt;}
.y270{bottom:194.272000pt;}
.y79{bottom:196.105333pt;}
.y110{bottom:198.641333pt;}
.y21b{bottom:200.462667pt;}
.y170{bottom:202.506667pt;}
.y236{bottom:203.474667pt;}
.y177{bottom:204.304520pt;}
.y11{bottom:204.322667pt;}
.y124{bottom:205.217352pt;}
.y1bf{bottom:205.424000pt;}
.y1e6{bottom:207.141333pt;}
.yc2{bottom:208.681333pt;}
.ya2{bottom:209.226739pt;}
.y40{bottom:209.268000pt;}
.y26f{bottom:209.614667pt;}
.y78{bottom:212.841333pt;}
.y176{bottom:212.864400pt;}
.y10f{bottom:215.378667pt;}
.y235{bottom:216.094667pt;}
.y21a{bottom:217.200000pt;}
.y14d{bottom:219.898080pt;}
.y1be{bottom:222.161333pt;}
.y16f{bottom:223.229333pt;}
.y1e5{bottom:223.878667pt;}
.y123{bottom:224.048807pt;}
.y26e{bottom:224.957333pt;}
.yc1{bottom:225.418667pt;}
.y3f{bottom:226.005333pt;}
.ya1{bottom:226.346243pt;}
.y234{bottom:228.713333pt;}
.y77{bottom:229.578667pt;}
.y10e{bottom:232.116000pt;}
.y219{bottom:233.937333pt;}
.y1bd{bottom:238.898667pt;}
.y26d{bottom:240.298667pt;}
.y16e{bottom:241.161333pt;}
.y233{bottom:241.333333pt;}
.yc0{bottom:242.156000pt;}
.y3e{bottom:242.742667pt;}
.y122{bottom:242.880261pt;}
.ya0{bottom:243.385587pt;}
.y14c{bottom:243.902592pt;}
.y1e4{bottom:244.600000pt;}
.y76{bottom:246.316000pt;}
.y10d{bottom:248.853333pt;}
.y218{bottom:250.674667pt;}
.y232{bottom:253.952000pt;}
.y1bc{bottom:255.636000pt;}
.y26c{bottom:255.641333pt;}
.ybf{bottom:258.893333pt;}
.y3d{bottom:259.480000pt;}
.y9f{bottom:260.505091pt;}
.ycd{bottom:261.299060pt;}
.y121{bottom:261.623539pt;}
.y75{bottom:263.053333pt;}
.y231{bottom:266.572000pt;}
.y10{bottom:266.804000pt;}
.y10c{bottom:269.576000pt;}
.y26b{bottom:270.984000pt;}
.y16d{bottom:271.049333pt;}
.y217{bottom:271.396000pt;}
.y1bb{bottom:272.373333pt;}
.y1e3{bottom:274.488000pt;}
.ybe{bottom:275.630667pt;}
.y3c{bottom:276.217333pt;}
.y9e{bottom:277.544435pt;}
.y230{bottom:279.190667pt;}
.y74{bottom:279.790667pt;}
.ycc{bottom:280.130514pt;}
.y120{bottom:280.454994pt;}
.yf{bottom:282.705333pt;}
.y16c{bottom:285.052000pt;}
.y26a{bottom:286.326667pt;}
.y10b{bottom:287.508000pt;}
.y16b{bottom:287.786667pt;}
.y1e2{bottom:291.225333pt;}
.y22f{bottom:291.810667pt;}
.ybd{bottom:292.368000pt;}
.y3b{bottom:292.954667pt;}
.y9d{bottom:294.663939pt;}
.y73{bottom:296.528000pt;}
.y216{bottom:298.442667pt;}
.ye{bottom:298.605333pt;}
.ycb{bottom:298.875262pt;}
.y11f{bottom:299.198272pt;}
.y269{bottom:301.669333pt;}
.y1ba{bottom:302.209333pt;}
.y16a{bottom:304.524000pt;}
.y1e1{bottom:307.962667pt;}
.ybc{bottom:309.104000pt;}
.y3a{bottom:309.692000pt;}
.y22e{bottom:310.832000pt;}
.y9c{bottom:311.783443pt;}
.y72{bottom:313.265333pt;}
.yd{bottom:314.505333pt;}
.y215{bottom:315.538667pt;}
.y268{bottom:317.012000pt;}
.y10a{bottom:317.396000pt;}
.y11e{bottom:318.029727pt;}
.y1b9{bottom:319.305333pt;}
.y169{bottom:321.261333pt;}
.y1e0{bottom:324.700000pt;}
.ybb{bottom:325.841333pt;}
.y39{bottom:326.429333pt;}
.y9b{bottom:328.824123pt;}
.y20d{bottom:329.113421pt;}
.y71{bottom:330.002667pt;}
.y267{bottom:332.354667pt;}
.y109{bottom:334.133333pt;}
.y1ef{bottom:335.476000pt;}
.y11d{bottom:336.861181pt;}
.y22d{bottom:337.542667pt;}
.y168{bottom:337.998667pt;}
.yc{bottom:338.376000pt;}
.y1df{bottom:341.437333pt;}
.yba{bottom:342.578667pt;}
.y38{bottom:343.166667pt;}
.y20c{bottom:346.232925pt;}
.y70{bottom:346.740000pt;}
.y266{bottom:347.697333pt;}
.y9a{bottom:349.864787pt;}
.y108{bottom:350.870667pt;}
.yc9{bottom:352.378972pt;}
.yb{bottom:354.277333pt;}
.y167{bottom:354.736000pt;}
.y11c{bottom:355.605929pt;}
.y1de{bottom:358.174667pt;}
.y37{bottom:359.904000pt;}
.yc8{bottom:361.794840pt;}
.y265{bottom:363.040000pt;}
.y22c{bottom:363.078667pt;}
.y20b{bottom:363.352429pt;}
.y6f{bottom:363.477333pt;}
.y107{bottom:367.608000pt;}
.ya{bottom:370.177333pt;}
.y99{bottom:370.984275pt;}
.y166{bottom:371.473333pt;}
.y1dd{bottom:374.912000pt;}
.y36{bottom:376.641333pt;}
.y264{bottom:378.381333pt;}
.yb9{bottom:379.005333pt;}
.y22b{bottom:379.816000pt;}
.y6e{bottom:380.214667pt;}
.y20a{bottom:380.391773pt;}
.y106{bottom:384.345333pt;}
.y165{bottom:388.210667pt;}
.y1dc{bottom:391.649333pt;}
.y35{bottom:393.378667pt;}
.yb8{bottom:393.617333pt;}
.y263{bottom:393.724000pt;}
.y9{bottom:395.376000pt;}
.y22a{bottom:396.553333pt;}
.y6d{bottom:396.952000pt;}
.y209{bottom:397.511277pt;}
.y105{bottom:401.082667pt;}
.y98{bottom:404.103715pt;}
.y164{bottom:404.948000pt;}
.yb7{bottom:408.228000pt;}
.y262{bottom:409.066667pt;}
.y11a{bottom:409.109639pt;}
.y34{bottom:410.116000pt;}
.y8{bottom:411.276000pt;}
.y229{bottom:413.290667pt;}
.y6c{bottom:413.689333pt;}
.y208{bottom:414.551957pt;}
.y104{bottom:417.820000pt;}
.y119{bottom:418.525507pt;}
.y97{bottom:421.223219pt;}
.y261{bottom:424.409333pt;}
.y163{bottom:425.670667pt;}
.y33{bottom:426.853333pt;}
.y1db{bottom:428.074667pt;}
.yb6{bottom:429.242667pt;}
.y228{bottom:430.028000pt;}
.y6b{bottom:430.426667pt;}
.y207{bottom:431.671461pt;}
.y103{bottom:434.557333pt;}
.y7{bottom:435.146667pt;}
.y96{bottom:438.262563pt;}
.y260{bottom:439.752000pt;}
.y1da{bottom:442.686667pt;}
.y32{bottom:443.590667pt;}
.y227{bottom:446.765333pt;}
.y6a{bottom:447.164000pt;}
.y206{bottom:448.790965pt;}
.y6{bottom:451.048000pt;}
.y102{bottom:451.294667pt;}
.y162{bottom:452.717333pt;}
.y25f{bottom:455.094667pt;}
.y95{bottom:455.382067pt;}
.y1d9{bottom:457.298667pt;}
.yb5{bottom:457.349333pt;}
.y31{bottom:460.328000pt;}
.y226{bottom:463.502667pt;}
.y69{bottom:463.901333pt;}
.y205{bottom:465.831645pt;}
.y5{bottom:466.948000pt;}
.y14b{bottom:467.390275pt;}
.y101{bottom:468.032000pt;}
.y25e{bottom:470.437333pt;}
.y94{bottom:472.501571pt;}
.y13f{bottom:472.654667pt;}
.y30{bottom:477.065333pt;}
.y1d8{bottom:478.313333pt;}
.y225{bottom:480.240000pt;}
.y68{bottom:480.638667pt;}
.y4{bottom:482.848000pt;}
.y204{bottom:482.951149pt;}
.y100{bottom:484.769333pt;}
.y25d{bottom:485.780000pt;}
.yb4{bottom:486.400000pt;}
.y14a{bottom:487.933680pt;}
.y93{bottom:489.540915pt;}
.y2f{bottom:493.802667pt;}
.y224{bottom:496.977333pt;}
.y67{bottom:497.376000pt;}
.y3{bottom:498.749333pt;}
.y203{bottom:499.990493pt;}
.y25c{bottom:501.121333pt;}
.yff{bottom:501.506667pt;}
.y1b7{bottom:501.634667pt;}
.y1d7{bottom:506.418667pt;}
.y92{bottom:506.660419pt;}
.y149{bottom:508.477085pt;}
.y8a{bottom:508.993333pt;}
.y66{bottom:514.113333pt;}
.y2e{bottom:514.524000pt;}
.y2{bottom:514.649333pt;}
.y25b{bottom:516.464000pt;}
.y202{bottom:517.109997pt;}
.y223{bottom:517.700000pt;}
.yfe{bottom:518.244000pt;}
.y1b6{bottom:518.372000pt;}
.y91{bottom:523.699763pt;}
.y148{bottom:528.924298pt;}
.y1{bottom:530.549333pt;}
.y65{bottom:530.850667pt;}
.y25a{bottom:531.806667pt;}
.y201{bottom:534.229501pt;}
.yfd{bottom:534.981333pt;}
.y1b5{bottom:535.109333pt;}
.y90{bottom:540.819267pt;}
.y1d5{bottom:544.820000pt;}
.y1d6{bottom:545.192000pt;}
.y259{bottom:547.149333pt;}
.y64{bottom:547.588000pt;}
.y147{bottom:549.467702pt;}
.y200{bottom:551.270181pt;}
.yfc{bottom:551.718667pt;}
.y1b4{bottom:551.846667pt;}
.y8f{bottom:557.938771pt;}
.y258{bottom:562.492000pt;}
.y63{bottom:564.325333pt;}
.y1d4{bottom:564.698667pt;}
.y1ff{bottom:568.389685pt;}
.yfb{bottom:568.456000pt;}
.y1b3{bottom:568.584000pt;}
.y146{bottom:569.914915pt;}
.y8e{bottom:574.979451pt;}
.y257{bottom:577.834667pt;}
.y62{bottom:581.062667pt;}
.y2d{bottom:581.324000pt;}
.y1d3{bottom:581.436000pt;}
.yfa{bottom:585.193333pt;}
.y1b2{bottom:585.321333pt;}
.y1fe{bottom:585.429029pt;}
.y145{bottom:590.458320pt;}
.y256{bottom:593.177333pt;}
.y61{bottom:597.800000pt;}
.y1d2{bottom:598.173333pt;}
.yf9{bottom:601.930667pt;}
.y1b1{bottom:602.058667pt;}
.y1fd{bottom:602.548533pt;}
.y255{bottom:608.520000pt;}
.y144{bottom:611.001725pt;}
.y60{bottom:614.537333pt;}
.y2c{bottom:614.560000pt;}
.y1d1{bottom:614.910667pt;}
.yf8{bottom:618.668000pt;}
.y1fc{bottom:619.668037pt;}
.y1b0{bottom:622.781333pt;}
.y8c{bottom:623.619187pt;}
.y254{bottom:623.862667pt;}
.y5f{bottom:631.274667pt;}
.y143{bottom:631.450541pt;}
.y2b{bottom:631.854667pt;}
.y8b{bottom:632.179067pt;}
.yf7{bottom:635.405333pt;}
.y1fb{bottom:636.707381pt;}
.y253{bottom:639.204000pt;}
.y5e{bottom:648.012000pt;}
.y2a{bottom:649.150667pt;}
.y1d0{bottom:651.336000pt;}
.yf6{bottom:652.142667pt;}
.y1af{bottom:652.668000pt;}
.y1fa{bottom:653.826885pt;}
.y252{bottom:654.546667pt;}
.y5d{bottom:664.749333pt;}
.y1cf{bottom:665.948000pt;}
.y29{bottom:666.445333pt;}
.y1ae{bottom:666.672000pt;}
.yf5{bottom:668.880000pt;}
.y1ad{bottom:669.405333pt;}
.y251{bottom:669.889333pt;}
.y1f9{bottom:670.946389pt;}
.y1ce{bottom:680.560000pt;}
.y5c{bottom:681.485333pt;}
.y13e{bottom:682.074667pt;}
.y28{bottom:683.740000pt;}
.y250{bottom:685.232000pt;}
.yf4{bottom:685.617333pt;}
.y1ac{bottom:686.142667pt;}
.y1f8{bottom:687.987581pt;}
.y141{bottom:689.818224pt;}
.y5b{bottom:698.222667pt;}
.y13d{bottom:698.812000pt;}
.y140{bottom:700.090080pt;}
.y24f{bottom:700.574667pt;}
.y27{bottom:701.036000pt;}
.y1cd{bottom:701.574667pt;}
.y1ab{bottom:702.880000pt;}
.y1f7{bottom:705.107085pt;}
.yf3{bottom:706.338667pt;}
.y89{bottom:713.366667pt;}
.y5a{bottom:714.960000pt;}
.y13c{bottom:715.549333pt;}
.y24e{bottom:715.917333pt;}
.y1a9{bottom:716.884000pt;}
.y1aa{bottom:717.625333pt;}
.y26{bottom:718.330667pt;}
.y1a8{bottom:719.617333pt;}
.y1f6{bottom:722.146429pt;}
.y1cc{bottom:729.680000pt;}
.y88{bottom:730.104000pt;}
.y24d{bottom:731.260000pt;}
.y59{bottom:731.697333pt;}
.yf2{bottom:732.529333pt;}
.y25{bottom:735.626667pt;}
.y1a7{bottom:736.354667pt;}
.y1f5{bottom:739.265933pt;}
.y13b{bottom:745.385333pt;}
.y24c{bottom:746.602667pt;}
.y87{bottom:746.841333pt;}
.y58{bottom:748.434667pt;}
.yc7{bottom:752.466667pt;}
.y24{bottom:752.921333pt;}
.y1a6{bottom:753.092000pt;}
.y1f4{bottom:756.385437pt;}
.y24a{bottom:761.944000pt;}
.y24b{bottom:761.945333pt;}
.y86{bottom:763.578667pt;}
.y57{bottom:765.172000pt;}
.y118{bottom:767.978667pt;}
.y1a5{bottom:769.829333pt;}
.y23{bottom:770.216000pt;}
.y1ca{bottom:773.394667pt;}
.y1f3{bottom:773.426117pt;}
.y1cb{bottom:773.766667pt;}
.y249{bottom:777.286667pt;}
.y85{bottom:780.316000pt;}
.y56{bottom:781.909333pt;}
.y22{bottom:787.512000pt;}
.y248{bottom:792.629333pt;}
.y84{bottom:797.053333pt;}
.y55{bottom:798.646667pt;}
.y1a4{bottom:799.665333pt;}
.y1c9{bottom:804.226667pt;}
.y21{bottom:804.806667pt;}
.y247{bottom:811.957333pt;}
.y83{bottom:813.790667pt;}
.y54{bottom:815.384000pt;}
.y1f1{bottom:822.065853pt;}
.y175{bottom:822.260000pt;}
.y27f{bottom:829.332000pt;}
.y82{bottom:830.528000pt;}
.y1f0{bottom:830.625733pt;}
.y53{bottom:832.121333pt;}
.y1c8{bottom:834.910667pt;}
.y20{bottom:838.912000pt;}
.y246{bottom:841.845333pt;}
.y27e{bottom:844.674667pt;}
.y52{bottom:848.858667pt;}
.y81{bottom:851.249333pt;}
.y1f{bottom:853.257333pt;}
.y27d{bottom:860.017333pt;}
.y245{bottom:865.437333pt;}
.y51{bottom:865.596000pt;}
.y1e{bottom:867.604000pt;}
.y80{bottom:869.182667pt;}
.y27c{bottom:875.360000pt;}
.y244{bottom:881.058667pt;}
.y50{bottom:882.333333pt;}
.y1c7{bottom:887.154667pt;}
.y27b{bottom:890.702667pt;}
.y243{bottom:896.680000pt;}
.y4f{bottom:899.070667pt;}
.y27a{bottom:906.044000pt;}
.y1d{bottom:910.980000pt;}
.y242{bottom:912.301333pt;}
.y4e{bottom:915.808000pt;}
.y279{bottom:921.386667pt;}
.y4d{bottom:932.545333pt;}
.y241{bottom:935.893333pt;}
.y278{bottom:936.729333pt;}
.y1c{bottom:946.464000pt;}
.y4c{bottom:949.282667pt;}
.y240{bottom:951.514667pt;}
.y277{bottom:952.072000pt;}
.y4b{bottom:966.020000pt;}
.y23f{bottom:967.136000pt;}
.y276{bottom:967.414667pt;}
.y1b{bottom:971.569333pt;}
.y4a{bottom:982.757333pt;}
.y19{bottom:1010.225333pt;}
.y49{bottom:1038.548000pt;}
.h14{height:23.265625pt;}
.h1d{height:25.592187pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h26{height:27.918750pt;}
.h28{height:29.397999pt;}
.h33{height:30.732706pt;}
.h10{height:30.943281pt;}
.h9{height:30.945242pt;}
.hf{height:31.067969pt;}
.hd{height:31.157778pt;}
.h2c{height:32.554688pt;}
.h2b{height:32.556288pt;}
.h2d{height:32.556821pt;}
.h2a{height:33.328125pt;}
.h19{height:34.037609pt;}
.h18{height:34.174766pt;}
.ha{height:34.574438pt;}
.hb{height:34.813542pt;}
.h32{height:34.898438pt;}
.h15{height:35.039062pt;}
.h2e{height:35.052646pt;}
.h16{height:36.873667pt;}
.h22{height:37.131937pt;}
.h30{height:37.193455pt;}
.h21{height:37.281562pt;}
.h8{height:38.415786pt;}
.h13{height:38.462187pt;}
.h1b{height:38.542969pt;}
.hc{height:38.681455pt;}
.h11{height:38.853594pt;}
.h6{height:38.947124pt;}
.h12{height:39.010156pt;}
.h24{height:42.046875pt;}
.h1c{height:42.308406pt;}
.h1a{height:42.738953pt;}
.h1e{height:42.911172pt;}
.h4{height:45.272024pt;}
.h25{height:46.154625pt;}
.h23{height:46.624312pt;}
.h27{height:46.812187pt;}
.h7{height:69.148877pt;}
.h2f{height:74.920458pt;}
.h5{height:91.114522pt;}
.h29{height:173.781333pt;}
.h1f{height:183.142667pt;}
.he{height:189.476000pt;}
.h20{height:192.392000pt;}
.h17{height:243.573733pt;}
.h31{height:312.244000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:166.090820pt;}
.w8{width:395.770667pt;}
.w6{width:421.110400pt;}
.w4{width:441.515067pt;}
.w3{width:560.582133pt;}
.w7{width:567.870133pt;}
.w5{width:626.506613pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x4c{left:-210.806400pt;}
.x3f{left:-201.256000pt;}
.x7d{left:-173.430667pt;}
.x46{left:-70.528187pt;}
.x30{left:-68.040533pt;}
.x55{left:-64.116533pt;}
.x40{left:-10.033065pt;}
.x4d{left:-2.199562pt;}
.x0{left:0.000000pt;}
.x41{left:21.119897pt;}
.x7e{left:28.729629pt;}
.x4e{left:31.784325pt;}
.x1{left:47.621333pt;}
.x2{left:50.388649pt;}
.x8a{left:76.309333pt;}
.x45{left:83.407253pt;}
.x32{left:105.798498pt;}
.x57{left:109.723467pt;}
.x54{left:112.727200pt;}
.x2f{left:116.371200pt;}
.x35{left:120.279467pt;}
.x34{left:124.519467pt;}
.x31{left:134.118404pt;}
.x58{left:138.043467pt;}
.x47{left:151.846645pt;}
.x63{left:191.723467pt;}
.x61{left:199.323467pt;}
.x60{left:205.323467pt;}
.x62{left:215.563067pt;}
.x4{left:220.912000pt;}
.x3{left:221.858667pt;}
.x68{left:235.803067pt;}
.x37{left:237.408000pt;}
.x59{left:238.523467pt;}
.x36{left:241.216000pt;}
.x7a{left:242.209333pt;}
.x69{left:243.403867pt;}
.x5a{left:246.443467pt;}
.x6{left:250.204000pt;}
.x66{left:259.563467pt;}
.x5{left:273.893333pt;}
.x6f{left:276.973333pt;}
.x80{left:279.430667pt;}
.x19{left:280.596000pt;}
.x82{left:284.414667pt;}
.x85{left:288.601333pt;}
.x84{left:292.029333pt;}
.x1a{left:293.880000pt;}
.x7f{left:297.905333pt;}
.x65{left:304.603851pt;}
.x87{left:309.094667pt;}
.x86{left:310.162667pt;}
.x15{left:312.181333pt;}
.x81{left:313.760000pt;}
.x16{left:318.822667pt;}
.x83{left:320.492000pt;}
.x6a{left:323.288000pt;}
.x3c{left:324.232000pt;}
.x88{left:329.068000pt;}
.x26{left:330.648000pt;}
.x9{left:331.566667pt;}
.x67{left:335.403867pt;}
.xa{left:338.208000pt;}
.x2d{left:339.477333pt;}
.x27{left:343.932000pt;}
.x89{left:351.669333pt;}
.x2e{left:352.761333pt;}
.x64{left:360.523467pt;}
.x5f{left:363.883952pt;}
.x3d{left:370.089333pt;}
.x42{left:374.616000pt;}
.x2a{left:383.340000pt;}
.x3e{left:384.325333pt;}
.x1c{left:394.125333pt;}
.x13{left:396.802667pt;}
.x43{left:399.485333pt;}
.x14{left:403.444000pt;}
.x1d{left:407.408000pt;}
.x1e{left:410.716000pt;}
.x44{left:412.768000pt;}
.x38{left:418.997333pt;}
.x75{left:422.012000pt;}
.x1f{left:424.000000pt;}
.x76{left:425.238667pt;}
.x50{left:427.113600pt;}
.x39{left:432.280000pt;}
.x28{left:439.741333pt;}
.x24{left:446.509333pt;}
.x51{left:447.657600pt;}
.x29{left:453.024000pt;}
.x25{left:459.793333pt;}
.x7b{left:465.620000pt;}
.x77{left:472.649333pt;}
.x7c{left:491.178667pt;}
.x2b{left:499.050667pt;}
.x22{left:503.757333pt;}
.x78{left:509.942667pt;}
.x49{left:510.975813pt;}
.x2c{left:512.333333pt;}
.x4a{left:514.231813pt;}
.x23{left:517.041333pt;}
.x4b{left:533.063813pt;}
.x4f{left:547.973709pt;}
.x5d{left:551.723333pt;}
.x5e{left:559.643333pt;}
.x33{left:564.279467pt;}
.x20{left:565.516000pt;}
.x56{left:568.200224pt;}
.x79{left:572.250667pt;}
.x8b{left:573.272000pt;}
.x52{left:575.476000pt;}
.x7{left:577.628000pt;}
.x21{left:578.800000pt;}
.x8{left:584.269333pt;}
.x17{left:589.981333pt;}
.x8c{left:597.182667pt;}
.x53{left:601.016000pt;}
.x18{left:603.264000pt;}
.xd{left:611.269333pt;}
.x6d{left:613.265333pt;}
.x5b{left:615.083467pt;}
.xe{left:617.910667pt;}
.x48{left:625.020246pt;}
.x6e{left:627.308000pt;}
.x5c{left:630.203467pt;}
.x3a{left:639.314667pt;}
.x3b{left:645.957333pt;}
.x72{left:647.072000pt;}
.x8d{left:653.021333pt;}
.x8e{left:676.932000pt;}
.x6b{left:682.274667pt;}
.x73{left:701.068000pt;}
.x6c{left:702.109333pt;}
.xb{left:704.906667pt;}
.x70{left:709.370667pt;}
.xc{left:711.549333pt;}
.x71{left:715.348000pt;}
.xf{left:723.709333pt;}
.x1b{left:726.488000pt;}
.x10{left:730.352000pt;}
.x11{left:733.662667pt;}
.x12{left:740.304000pt;}
.x74{left:744.684000pt;}
}




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