
    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_4a0539b235dae22cf1d42da5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_5381270a9e2aeb5696172d0f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e12b0b69eb045ffc3d03e95a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_b663111937b4afb0190fed4a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_392890d8e15bc7c4a0d8f96e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893000;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_6a4e61d892c253d85608fbb4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.810000;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_7114cd9d1f14cfa40e19aa6e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.908000;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_016c184d2986fb68003952ef.woff')format("woff");}.ff8{font-family:ff8;line-height:0.908000;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_b772a65e2c0da25ab43a2ac5.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b07604b1972e475b8521f114.woff')format("woff");}.ffa{font-family:ffa;line-height:0.723000;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_e237f8273212ccef2ebfe3a5.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e650a45cf2956ebe4ad87032.woff')format("woff");}.ffc{font-family:ffc;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0ac7c02408ffdd2b51f07b2d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.694000;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_7a752a7927c90a5e19defb24.woff')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_cfb914d1d3ae17d5596c4bc0.woff')format("woff");}.fff{font-family:fff;line-height:0.514000;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_e520c19d8b64024db4057e40.woff')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_1648dad29e65b4bdbd28f7ff.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_dccf52f06b4fbe07d707d2f5.woff')format("woff");}.ff12{font-family:ff12;line-height:0.694000;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_e520c19d8b64024db4057e40.woff')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_1648dad29e65b4bdbd28f7ff.woff')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_dccf52f06b4fbe07d707d2f5.woff')format("woff");}.ff15{font-family:ff15;line-height:0.694000;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_fd2ae753e86f047ae65194ce.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_4eb98476390aa1a5f6331b86.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_f5e9574f7123de4a8ef44cb4.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_ab86794fcb333a9e8d39e21d.woff')format("woff");}.ff19{font-family:ff19;line-height:0.714000;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_e520c19d8b64024db4057e40.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_1648dad29e65b4bdbd28f7ff.woff')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_dccf52f06b4fbe07d707d2f5.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_bcfa4f81b704a6c22a77fda7.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_f49e637007084fed03bd3e0e.woff')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_08d374dff32d2fb913827b63.woff')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_f49e637007084fed03bd3e0e.woff')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_afce8f6daae86ad5f467d120.woff')format("woff");}.ff21{font-family:ff21;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_6fba75d494c481eb578de90c.woff')format("woff");}.ff22{font-family:ff22;line-height:0.694000;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:ff23;src:url('chunks/assets/font_08d374dff32d2fb913827b63.woff')format("woff");}.ff23{font-family:ff23;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;}
.m1{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);}
.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);}
.ve{vertical-align:-19.378561px;}
.v3{vertical-align:-8.964000px;}
.v2{vertical-align:-7.290000px;}
.v1{vertical-align:-5.976000px;}
.v11{vertical-align:-3.734692px;}
.vb{vertical-align:-2.679597px;}
.vd{vertical-align:-1.384556px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:4.041201px;}
.va{vertical-align:8.964000px;}
.v10{vertical-align:10.048773px;}
.vc{vertical-align:18.055628px;}
.vf{vertical-align:21.696000px;}
.v6{vertical-align:32.034000px;}
.v4{vertical-align:40.434000px;}
.v9{vertical-align:72.474000px;}
.v8{vertical-align:81.438000px;}
.v7{vertical-align:102.216000px;}
.v5{vertical-align:143.220000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000366px;}
.ls52{letter-spacing:0.000538px;}
.ls7{letter-spacing:0.000960px;}
.ls35{letter-spacing:0.000961px;}
.ls10{letter-spacing:0.001120px;}
.ls18{letter-spacing:0.001140px;}
.lsb{letter-spacing:0.001460px;}
.ls23{letter-spacing:0.001866px;}
.ls16{letter-spacing:0.002207px;}
.ls42{letter-spacing:0.002338px;}
.lse{letter-spacing:0.002685px;}
.ls33{letter-spacing:0.003056px;}
.ls1e{letter-spacing:0.003657px;}
.ls0{letter-spacing:0.004200px;}
.ls13{letter-spacing:0.004379px;}
.ls43{letter-spacing:0.005023px;}
.ls5c{letter-spacing:0.834017px;}
.ls1a{letter-spacing:1.655249px;}
.ls41{letter-spacing:1.661249px;}
.ls4{letter-spacing:2.449834px;}
.ls1{letter-spacing:2.964877px;}
.ls5b{letter-spacing:2.984525px;}
.ls5d{letter-spacing:2.987675px;}
.ls21{letter-spacing:2.988615px;}
.ls3{letter-spacing:2.988780px;}
.ls11{letter-spacing:2.989140px;}
.ls44{letter-spacing:9.960538px;}
.ls56{letter-spacing:9.964200px;}
.ls47{letter-spacing:11.052030px;}
.ls46{letter-spacing:11.053580px;}
.ls49{letter-spacing:11.057024px;}
.ls4d{letter-spacing:11.355088px;}
.ls4f{letter-spacing:11.356679px;}
.ls4c{letter-spacing:11.361810px;}
.ls3a{letter-spacing:13.278538px;}
.ls38{letter-spacing:13.280338px;}
.ls2c{letter-spacing:13.284538px;}
.ls17{letter-spacing:16.272615px;}
.ls39{letter-spacing:16.273140px;}
.ls3e{letter-spacing:16.601607px;}
.ls15{letter-spacing:16.602538px;}
.ls2d{letter-spacing:16.604400px;}
.ls53{letter-spacing:16.735641px;}
.ls40{letter-spacing:17.705023px;}
.ls3d{letter-spacing:18.488823px;}
.ls1b{letter-spacing:18.542100px;}
.ls14{letter-spacing:19.590615px;}
.ls37{letter-spacing:19.591140px;}
.ls55{letter-spacing:19.902538px;}
.ls3f{letter-spacing:20.618338px;}
.ls1f{letter-spacing:20.757657px;}
.ls25{letter-spacing:20.764200px;}
.ls27{letter-spacing:22.170538px;}
.ls29{letter-spacing:22.176538px;}
.ls3c{letter-spacing:22.208823px;}
.lsf{letter-spacing:23.051306px;}
.ls34{letter-spacing:23.353140px;}
.ls51{letter-spacing:23.542200px;}
.ls24{letter-spacing:23.749140px;}
.ls1d{letter-spacing:23.774685px;}
.ls2e{letter-spacing:23.778538px;}
.ls12{letter-spacing:23.910615px;}
.ls36{letter-spacing:23.911140px;}
.ls1c{letter-spacing:24.080338px;}
.ls28{letter-spacing:25.164615px;}
.ls26{letter-spacing:25.170615px;}
.ls22{letter-spacing:26.168685px;}
.ls50{letter-spacing:26.533140px;}
.ls57{letter-spacing:29.221690px;}
.lsd{letter-spacing:30.378615px;}
.ls30{letter-spacing:47.172538px;}
.ls2b{letter-spacing:50.496538px;}
.ls59{letter-spacing:54.049029px;}
.ls2f{letter-spacing:64.619249px;}
.ls2a{letter-spacing:67.937249px;}
.ls48{letter-spacing:68.609494px;}
.ls4a{letter-spacing:68.614487px;}
.ls4e{letter-spacing:70.490832px;}
.ls31{letter-spacing:77.551919px;}
.ls45{letter-spacing:120.121358px;}
.ls32{letter-spacing:122.284458px;}
.ls4b{letter-spacing:123.410071px;}
.ls6{letter-spacing:165.138248px;}
.lsc{letter-spacing:167.244248px;}
.ls54{letter-spacing:180.732754px;}
.ls8{letter-spacing:193.076289px;}
.ls5{letter-spacing:200.236059px;}
.ls20{letter-spacing:231.008685px;}
.ls9{letter-spacing:250.447289px;}
.ls5a{letter-spacing:296.673941px;}
.ls3b{letter-spacing:384.723269px;}
.ls19{letter-spacing:462.475140px;}
.ls58{letter-spacing:505.567154px;}
.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;}
}
.ws160{word-spacing:-180.784379px;}
.ws3{word-spacing:-59.775600px;}
.ws4{word-spacing:-14.943900px;}
.ws1d{word-spacing:-14.920027px;}
.wsbc{word-spacing:-11.955150px;}
.ws102{word-spacing:-10.460700px;}
.ws12a{word-spacing:-4.961375px;}
.ws10a{word-spacing:-4.016930px;}
.ws22{word-spacing:-1.135736px;}
.wsf{word-spacing:-1.075968px;}
.ws17{word-spacing:-1.022170px;}
.ws176{word-spacing:-1.016185px;}
.ws67{word-spacing:-0.956410px;}
.ws166{word-spacing:-0.777083px;}
.wsb6{word-spacing:-0.657532px;}
.ws25{word-spacing:-0.597756px;}
.ws32{word-spacing:-0.478205px;}
.ws19f{word-spacing:-0.430385px;}
.ws99{word-spacing:-0.239102px;}
.ws55{word-spacing:-0.179327px;}
.ws10b{word-spacing:-0.119551px;}
.ws68{word-spacing:-0.059776px;}
.ws5{word-spacing:-0.053798px;}
.ws161{word-spacing:-0.051625px;}
.ws135{word-spacing:-0.051110px;}
.ws132{word-spacing:-0.049746px;}
.ws172{word-spacing:-0.048097px;}
.wsed{word-spacing:-0.047821px;}
.ws14d{word-spacing:-0.044320px;}
.ws17e{word-spacing:-0.003321px;}
.ws64{word-spacing:0.000000px;}
.ws124{word-spacing:0.179327px;}
.ws17a{word-spacing:0.239102px;}
.ws120{word-spacing:0.298878px;}
.wsf1{word-spacing:0.358654px;}
.ws141{word-spacing:0.537980px;}
.ws1b6{word-spacing:0.573847px;}
.ws175{word-spacing:0.597756px;}
.ws155{word-spacing:0.717307px;}
.ws182{word-spacing:0.777083px;}
.ws20{word-spacing:0.836858px;}
.wsb2{word-spacing:0.896634px;}
.ws158{word-spacing:0.956410px;}
.ws122{word-spacing:1.016185px;}
.ws127{word-spacing:1.075961px;}
.ws77{word-spacing:1.135736px;}
.ws26{word-spacing:1.195512px;}
.ws150{word-spacing:1.199938px;}
.ws17b{word-spacing:1.255288px;}
.ws76{word-spacing:1.315063px;}
.ws1b9{word-spacing:1.482439px;}
.ws9d{word-spacing:1.554166px;}
.ws75{word-spacing:1.733492px;}
.wsdb{word-spacing:1.793268px;}
.ws92{word-spacing:1.853044px;}
.ws1b8{word-spacing:1.960645px;}
.ws15b{word-spacing:1.972595px;}
.wsf4{word-spacing:2.032370px;}
.ws60{word-spacing:2.151922px;}
.wse9{word-spacing:2.211697px;}
.wsdd{word-spacing:2.271473px;}
.ws7b{word-spacing:2.391024px;}
.ws1f{word-spacing:2.450800px;}
.ws34{word-spacing:2.510575px;}
.ws101{word-spacing:2.630126px;}
.ws1a4{word-spacing:2.677954px;}
.ws123{word-spacing:2.749678px;}
.ws1a9{word-spacing:2.773595px;}
.ws27{word-spacing:2.809453px;}
.ws1c8{word-spacing:2.821415px;}
.wsd8{word-spacing:2.869229px;}
.wsea{word-spacing:2.929004px;}
.ws28{word-spacing:2.988780px;}
.wsf0{word-spacing:3.048556px;}
.ws5c{word-spacing:3.108331px;}
.ws105{word-spacing:3.168107px;}
.ws15a{word-spacing:3.227882px;}
.ws19d{word-spacing:3.251801px;}
.ws10d{word-spacing:3.287658px;}
.ws56{word-spacing:3.347434px;}
.ws40{word-spacing:3.407209px;}
.wsa6{word-spacing:3.526760px;}
.ws21{word-spacing:3.586536px;}
.ws1c3{word-spacing:3.634366px;}
.ws96{word-spacing:3.646312px;}
.ws1be{word-spacing:3.682186px;}
.ws54{word-spacing:3.706087px;}
.wsb8{word-spacing:3.765863px;}
.ws167{word-spacing:3.885414px;}
.ws125{word-spacing:3.912527px;}
.ws4c{word-spacing:3.945190px;}
.ws179{word-spacing:4.004965px;}
.ws191{word-spacing:4.016930px;}
.ws9a{word-spacing:4.064741px;}
.ws1b1{word-spacing:4.112572px;}
.ws154{word-spacing:4.124516px;}
.ws142{word-spacing:4.184292px;}
.ws143{word-spacing:4.244068px;}
.ws35{word-spacing:4.363619px;}
.wsa1{word-spacing:4.483170px;}
.ws6e{word-spacing:4.542946px;}
.ws11{word-spacing:4.572864px;}
.ws197{word-spacing:4.590778px;}
.ws57{word-spacing:4.602721px;}
.ws199{word-spacing:4.638598px;}
.wsa2{word-spacing:4.662497px;}
.ws180{word-spacing:4.722272px;}
.ws19e{word-spacing:4.776406px;}
.ws1c5{word-spacing:4.779739px;}
.wse5{word-spacing:4.782048px;}
.wsec{word-spacing:4.782060px;}
.ws17f{word-spacing:4.841824px;}
.ws42{word-spacing:4.961375px;}
.ws46{word-spacing:5.021150px;}
.wsb7{word-spacing:5.080926px;}
.ws7c{word-spacing:5.140702px;}
.ws156{word-spacing:5.200477px;}
.ws1c0{word-spacing:5.212445px;}
.ws87{word-spacing:5.320028px;}
.wsad{word-spacing:5.379804px;}
.ws19{word-spacing:5.379840px;}
.ws39{word-spacing:5.439580px;}
.ws198{word-spacing:5.451548px;}
.ws1bd{word-spacing:5.499369px;}
.wsd1{word-spacing:5.559131px;}
.ws98{word-spacing:5.618906px;}
.wsb4{word-spacing:5.678682px;}
.ws121{word-spacing:5.680208px;}
.ws7{word-spacing:5.702630px;}
.ws1a8{word-spacing:5.738472px;}
.wsef{word-spacing:5.774362px;}
.ws97{word-spacing:5.798233px;}
.ws111{word-spacing:5.811054px;}
.ws103{word-spacing:5.820092px;}
.ws170{word-spacing:5.858009px;}
.ws109{word-spacing:5.917784px;}
.ws1b3{word-spacing:5.929754px;}
.ws4a{word-spacing:5.933129px;}
.wsbb{word-spacing:5.961520px;}
.ws44{word-spacing:5.976592px;}
.ws2{word-spacing:5.977560px;}
.ws50{word-spacing:5.979659px;}
.ws80{word-spacing:6.097111px;}
.ws82{word-spacing:6.098134px;}
.ws144{word-spacing:6.156887px;}
.ws15{word-spacing:6.186816px;}
.ws128{word-spacing:6.216662px;}
.ws9e{word-spacing:6.276438px;}
.ws11b{word-spacing:6.336214px;}
.wsb3{word-spacing:6.395989px;}
.wsf7{word-spacing:6.401948px;}
.ws1b0{word-spacing:6.407960px;}
.wsd7{word-spacing:6.515540px;}
.ws12d{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.ws12e{word-spacing:6.635092px;}
.ws1b2{word-spacing:6.647063px;}
.ws11a{word-spacing:6.694867px;}
.ws1b{word-spacing:6.724800px;}
.ws3f{word-spacing:6.754643px;}
.ws1ca{word-spacing:6.790525px;}
.ws12b{word-spacing:6.814418px;}
.ws159{word-spacing:6.874194px;}
.ws10{word-spacing:6.886195px;}
.ws71{word-spacing:6.933970px;}
.ws195{word-spacing:6.933987px;}
.ws194{word-spacing:6.981808px;}
.ws114{word-spacing:6.993745px;}
.ws17c{word-spacing:7.053521px;}
.ws10e{word-spacing:7.113296px;}
.ws181{word-spacing:7.232848px;}
.wsa0{word-spacing:7.292623px;}
.ws178{word-spacing:7.352399px;}
.ws1c2{word-spacing:7.364372px;}
.wsd6{word-spacing:7.412174px;}
.ws196{word-spacing:7.460014px;}
.wsd0{word-spacing:7.471950px;}
.ws63{word-spacing:7.531726px;}
.wsa5{word-spacing:7.591501px;}
.ws3e{word-spacing:7.651277px;}
.ws18{word-spacing:7.746970px;}
.ws4e{word-spacing:7.770828px;}
.ws1c7{word-spacing:7.794758px;}
.ws169{word-spacing:7.798487px;}
.ws85{word-spacing:7.830604px;}
.wsab{word-spacing:7.890379px;}
.ws47{word-spacing:7.950155px;}
.wscc{word-spacing:8.001140px;}
.wsce{word-spacing:8.009930px;}
.ws100{word-spacing:8.069706px;}
.ws190{word-spacing:8.081681px;}
.wsf5{word-spacing:8.129482px;}
.ws13b{word-spacing:8.186268px;}
.ws1ad{word-spacing:8.225143px;}
.ws58{word-spacing:8.249033px;}
.ws133{word-spacing:8.257811px;}
.wsfe{word-spacing:8.308808px;}
.ws88{word-spacing:8.368584px;}
.ws136{word-spacing:8.484249px;}
.ws23{word-spacing:8.488135px;}
.ws116{word-spacing:8.547911px;}
.ws162{word-spacing:8.569783px;}
.ws13c{word-spacing:8.585072px;}
.ws13d{word-spacing:8.600150px;}
.ws59{word-spacing:8.607686px;}
.ws147{word-spacing:8.640631px;}
.ws5b{word-spacing:8.667462px;}
.ws3c{word-spacing:8.727238px;}
.ws4d{word-spacing:8.846789px;}
.ws8b{word-spacing:8.852134px;}
.ws6f{word-spacing:8.906564px;}
.wsc{word-spacing:8.930534px;}
.ws104{word-spacing:8.966340px;}
.ws9f{word-spacing:9.026116px;}
.ws16{word-spacing:9.038131px;}
.ws18d{word-spacing:9.085914px;}
.ws106{word-spacing:9.131153px;}
.ws1c1{word-spacing:9.133735px;}
.ws119{word-spacing:9.145667px;}
.wsa4{word-spacing:9.205442px;}
.ws174{word-spacing:9.265218px;}
.ws1b7{word-spacing:9.277196px;}
.ws113{word-spacing:9.324994px;}
.ws2a{word-spacing:9.384769px;}
.wsac{word-spacing:9.444545px;}
.ws153{word-spacing:9.450317px;}
.ws33{word-spacing:9.504320px;}
.ws3d{word-spacing:9.623872px;}
.wsb9{word-spacing:9.743423px;}
.ws185{word-spacing:9.803198px;}
.ws187{word-spacing:9.803223px;}
.ws74{word-spacing:9.862974px;}
.ws126{word-spacing:9.901586px;}
.wsd5{word-spacing:9.922750px;}
.ws24{word-spacing:9.982525px;}
.ws110{word-spacing:10.042301px;}
.ws29{word-spacing:10.102076px;}
.ws1c6{word-spacing:10.137967px;}
.wsae{word-spacing:10.221628px;}
.ws6b{word-spacing:10.502303px;}
.ws6d{word-spacing:10.520506px;}
.ws188{word-spacing:10.568353px;}
.wsaa{word-spacing:10.640057px;}
.wsaf{word-spacing:10.699832px;}
.ws1a1{word-spacing:10.759635px;}
.ws2d{word-spacing:10.819384px;}
.ws12c{word-spacing:10.938935px;}
.ws1cc{word-spacing:10.950917px;}
.ws1c4{word-spacing:10.998738px;}
.ws8c{word-spacing:11.058486px;}
.ws89{word-spacing:11.118262px;}
.wsf2{word-spacing:11.178037px;}
.wsfc{word-spacing:11.207963px;}
.wsfd{word-spacing:11.237813px;}
.ws19c{word-spacing:11.285662px;}
.wsb0{word-spacing:11.297588px;}
.ws48{word-spacing:11.357364px;}
.ws107{word-spacing:11.431120px;}
.ws7a{word-spacing:11.476915px;}
.ws18f{word-spacing:11.476944px;}
.ws18e{word-spacing:11.524765px;}
.ws186{word-spacing:11.536691px;}
.ws43{word-spacing:11.596466px;}
.ws73{word-spacing:11.716018px;}
.ws2e{word-spacing:11.775793px;}
.wsa8{word-spacing:11.835569px;}
.wsba{word-spacing:11.955120px;}
.ws12{word-spacing:11.997043px;}
.ws1ac{word-spacing:12.098612px;}
.ws41{word-spacing:12.134447px;}
.ws90{word-spacing:12.313774px;}
.wscf{word-spacing:12.433325px;}
.ws7d{word-spacing:12.493100px;}
.wse1{word-spacing:12.552876px;}
.ws2c{word-spacing:12.612652px;}
.ws189{word-spacing:12.624638px;}
.ws36{word-spacing:12.672427px;}
.ws11c{word-spacing:12.732203px;}
.wsc1{word-spacing:12.791978px;}
.ws14{word-spacing:12.857818px;}
.ws129{word-spacing:12.911530px;}
.wsf9{word-spacing:13.031081px;}
.ws37{word-spacing:13.150632px;}
.ws72{word-spacing:13.210408px;}
.ws130{word-spacing:13.270183px;}
.ws4f{word-spacing:13.329959px;}
.ws1ba{word-spacing:13.389768px;}
.ws115{word-spacing:13.449510px;}
.ws49{word-spacing:13.509286px;}
.ws1bb{word-spacing:13.533230px;}
.ws10c{word-spacing:13.569061px;}
.ws9c{word-spacing:13.628837px;}
.ws2f{word-spacing:13.688612px;}
.wsc9{word-spacing:13.748388px;}
.ws1c9{word-spacing:13.772333px;}
.ws11d{word-spacing:13.808164px;}
.ws78{word-spacing:13.867939px;}
.wsde{word-spacing:13.927715px;}
.wsd2{word-spacing:14.047266px;}
.ws1a6{word-spacing:14.059256px;}
.ws91{word-spacing:14.107042px;}
.ws1d0{word-spacing:14.154898px;}
.ws31{word-spacing:14.286368px;}
.wsb5{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.wsa{word-spacing:14.471770px;}
.ws70{word-spacing:14.585246px;}
.ws94{word-spacing:14.645022px;}
.ws1aa{word-spacing:14.680924px;}
.ws13{word-spacing:14.686963px;}
.ws14c{word-spacing:14.714247px;}
.ws10f{word-spacing:14.764573px;}
.ws18b{word-spacing:14.776565px;}
.ws1e{word-spacing:14.824349px;}
.ws69{word-spacing:14.884124px;}
.wsfb{word-spacing:14.943900px;}
.ws52{word-spacing:15.003676px;}
.ws61{word-spacing:15.242778px;}
.ws1af{word-spacing:15.254771px;}
.wse3{word-spacing:15.266167px;}
.wsb1{word-spacing:15.302554px;}
.wsd{word-spacing:15.332544px;}
.ws183{word-spacing:15.362329px;}
.ws8d{word-spacing:15.390398px;}
.ws8f{word-spacing:15.422105px;}
.ws1bf{word-spacing:15.589516px;}
.ws16c{word-spacing:15.596975px;}
.ws1a0{word-spacing:15.685157px;}
.ws15c{word-spacing:15.720983px;}
.ws184{word-spacing:15.840534px;}
.ws164{word-spacing:15.843879px;}
.ws192{word-spacing:15.924260px;}
.ws173{word-spacing:15.968284px;}
.ws79{word-spacing:16.079636px;}
.ws17d{word-spacing:16.139412px;}
.ws9{word-spacing:16.193318px;}
.wsc0{word-spacing:16.258963px;}
.wsa9{word-spacing:16.318739px;}
.ws139{word-spacing:16.372537px;}
.ws7e{word-spacing:16.378514px;}
.ws134{word-spacing:16.515623px;}
.ws19a{word-spacing:16.545928px;}
.wsdc{word-spacing:16.677392px;}
.ws18a{word-spacing:16.689389px;}
.ws5e{word-spacing:16.737168px;}
.ws1a5{word-spacing:16.785031px;}
.wsff{word-spacing:16.856719px;}
.wsf3{word-spacing:16.916495px;}
.ws1ab{word-spacing:16.928492px;}
.ws137{word-spacing:16.968497px;}
.wsc6{word-spacing:16.976270px;}
.ws152{word-spacing:17.018641px;}
.ws163{word-spacing:17.139565px;}
.ws177{word-spacing:17.155597px;}
.ws1b5{word-spacing:17.215416px;}
.ws149{word-spacing:17.281262px;}
.ws18c{word-spacing:17.358878px;}
.wsf8{word-spacing:17.514251px;}
.wsb{word-spacing:17.538278px;}
.ws6a{word-spacing:17.574026px;}
.wse8{word-spacing:17.633802px;}
.wse{word-spacing:17.645875px;}
.wsd9{word-spacing:17.766208px;}
.wsca{word-spacing:17.813129px;}
.ws1b4{word-spacing:17.837084px;}
.ws95{word-spacing:17.872904px;}
.ws1c{word-spacing:17.932680px;}
.ws118{word-spacing:17.992456px;}
.ws5d{word-spacing:18.052231px;}
.ws140{word-spacing:18.112007px;}
.ws13e{word-spacing:18.291334px;}
.wscb{word-spacing:18.351109px;}
.wsf6{word-spacing:18.474642px;}
.ws8a{word-spacing:18.530436px;}
.wse6{word-spacing:18.590212px;}
.ws1cb{word-spacing:18.697855px;}
.wse7{word-spacing:18.709763px;}
.ws138{word-spacing:18.773030px;}
.ws131{word-spacing:18.777312px;}
.ws9b{word-spacing:18.829314px;}
.ws30{word-spacing:18.948865px;}
.ws151{word-spacing:19.128192px;}
.ws6{word-spacing:19.367424px;}
.wsa3{word-spacing:19.529984px;}
.ws112{word-spacing:19.905275px;}
.ws13f{word-spacing:20.024826px;}
.ws157{word-spacing:20.103064px;}
.ws1a{word-spacing:20.120602px;}
.ws1ae{word-spacing:20.132473px;}
.ws86{word-spacing:20.230057px;}
.ws8{word-spacing:20.550989px;}
.ws14f{word-spacing:20.622582px;}
.wsbf{word-spacing:20.742133px;}
.ws171{word-spacing:20.754258px;}
.ws51{word-spacing:20.857804px;}
.ws45{word-spacing:20.861658px;}
.ws14a{word-spacing:20.862258px;}
.ws83{word-spacing:20.981236px;}
.ws14e{word-spacing:21.039533px;}
.ws81{word-spacing:21.040492px;}
.wse2{word-spacing:21.220338px;}
.wsc2{word-spacing:21.459440px;}
.wsdf{word-spacing:21.638767px;}
.ws2b{word-spacing:21.698543px;}
.ws3b{word-spacing:21.710675px;}
.ws13a{word-spacing:21.846487px;}
.ws11e{word-spacing:21.933791px;}
.wsd4{word-spacing:21.937645px;}
.ws117{word-spacing:22.236523px;}
.ws3a{word-spacing:22.368841px;}
.wsc5{word-spacing:22.475626px;}
.wsbe{word-spacing:22.654952px;}
.ws1a2{word-spacing:22.666964px;}
.ws84{word-spacing:22.693392px;}
.ws1cd{word-spacing:22.858247px;}
.wscd{word-spacing:22.914208px;}
.ws62{word-spacing:23.013606px;}
.ws66{word-spacing:23.312484px;}
.ws5a{word-spacing:23.551586px;}
.wsc3{word-spacing:23.671138px;}
.ws12f{word-spacing:24.774908px;}
.wsda{word-spacing:25.105752px;}
.ws11f{word-spacing:25.129250px;}
.ws6c{word-spacing:25.394316px;}
.ws93{word-spacing:25.405184px;}
.wsa7{word-spacing:26.717984px;}
.wsc7{word-spacing:27.377225px;}
.ws38{word-spacing:28.044275px;}
.ws1a3{word-spacing:28.501078px;}
.ws1bc{word-spacing:28.596719px;}
.ws4b{word-spacing:28.775383px;}
.ws165{word-spacing:29.039208px;}
.wsfa{word-spacing:29.768249px;}
.ws7f{word-spacing:29.828024px;}
.ws53{word-spacing:29.867388px;}
.wsc8{word-spacing:29.975008px;}
.wse4{word-spacing:30.154166px;}
.ws8e{word-spacing:30.281264px;}
.ws5f{word-spacing:31.663183px;}
.ws193{word-spacing:33.283138px;}
.ws19b{word-spacing:35.435065px;}
.ws1a7{word-spacing:35.578526px;}
.wse0{word-spacing:36.512882px;}
.wsc4{word-spacing:36.593075px;}
.wsd3{word-spacing:36.821770px;}
.wsbd{word-spacing:37.539077px;}
.ws65{word-spacing:38.196608px;}
.ws168{word-spacing:55.225989px;}
.ws1cf{word-spacing:56.380487px;}
.wseb{word-spacing:59.775750px;}
.ws108{word-spacing:72.215106px;}
.ws1ce{word-spacing:73.835006px;}
.ws16d{word-spacing:91.398743px;}
.ws15d{word-spacing:94.302223px;}
.ws15e{word-spacing:118.212523px;}
.ws16a{word-spacing:137.459382px;}
.ws16b{word-spacing:137.464098px;}
.wsee{word-spacing:139.313754px;}
.ws15f{word-spacing:139.540511px;}
.ws146{word-spacing:145.928495px;}
.ws14b{word-spacing:170.808813px;}
.ws145{word-spacing:171.171741px;}
.ws16f{word-spacing:173.632136px;}
.ws16e{word-spacing:173.636852px;}
.ws148{word-spacing:259.619518px;}
._30{margin-left:-180.732754px;}
._0{margin-left:-11.476944px;}
._7{margin-left:-5.828166px;}
._4{margin-left:-4.782048px;}
._6{margin-left:-3.676230px;}
._3{margin-left:-2.630136px;}
._1{margin-left:-1.434618px;}
._a{width:1.137085px;}
._9{width:2.988780px;}
._36{width:3.995440px;}
._2{width:5.480570px;}
._26{width:7.986040px;}
._2a{width:10.042301px;}
._c{width:14.764577px;}
._1c{width:15.960085px;}
._8{width:17.807270px;}
._2b{width:19.140314px;}
._11{width:20.323704px;}
._1e{width:21.930767px;}
._f{width:23.760841px;}
._1f{width:24.981103px;}
._1b{width:25.996447px;}
._12{width:27.676103px;}
._b{width:29.887800px;}
._10{width:31.262639px;}
._5{width:32.978419px;}
._14{width:35.314811px;}
._29{width:38.063800px;}
._e{width:40.035254px;}
._37{width:44.698943px;}
._13{width:46.863832px;}
._d{width:48.151315px;}
._1d{width:55.641338px;}
._1a{width:71.730900px;}
._22{width:76.702138px;}
._20{width:78.414325px;}
._18{width:90.576875px;}
._28{width:95.670316px;}
._32{width:102.251807px;}
._25{width:106.209553px;}
._19{width:108.130435px;}
._35{width:114.935141px;}
._21{width:117.838169px;}
._31{width:125.741227px;}
._23{width:136.162351px;}
._34{width:138.424561px;}
._2f{width:139.540511px;}
._2e{width:154.077973px;}
._2c{width:156.566928px;}
._33{width:161.913981px;}
._2d{width:163.450811px;}
._17{width:215.191271px;}
._27{width:252.397127px;}
._24{width:273.486011px;}
._15{width:560.499305px;}
._16{width:580.446443px;}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:23.489420px;}
.fsd{font-size:24.657435px;}
.fsf{font-size:26.025997px;}
.fs17{font-size:33.667972px;}
.fs7{font-size:34.431083px;}
.fs9{font-size:34.821997px;}
.fsb{font-size:35.776849px;}
.fs5{font-size:35.865600px;}
.fs12{font-size:36.137534px;}
.fs6{font-size:41.842800px;}
.fs10{font-size:44.320021px;}
.fs13{font-size:46.462988px;}
.fs14{font-size:46.978840px;}
.fs4{font-size:47.820600px;}
.fs16{font-size:48.097241px;}
.fsc{font-size:49.314870px;}
.fs8{font-size:49.745852px;}
.fsa{font-size:51.109931px;}
.fs11{font-size:51.625197px;}
.fse{font-size:52.051995px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y199{bottom:3.693483px;}
.y174{bottom:3.718687px;}
.y172{bottom:3.745913px;}
.y176{bottom:3.771900px;}
.y1e3{bottom:3.915060px;}
.y204{bottom:4.008264px;}
.y1cc{bottom:4.551004px;}
.y169{bottom:6.506775px;}
.y185{bottom:7.214060px;}
.y15c{bottom:7.253958px;}
.y164{bottom:7.452869px;}
.yf9{bottom:7.462788px;}
.y1d1{bottom:7.528005px;}
.y1ee{bottom:16.860342px;}
.y1e4{bottom:16.861521px;}
.y191{bottom:18.871131px;}
.y1fc{bottom:20.480650px;}
.y168{bottom:21.301087px;}
.y186{bottom:21.862925px;}
.y1cb{bottom:26.068843px;}
.y156{bottom:27.229495px;}
.y160{bottom:27.976154px;}
.y171{bottom:30.810038px;}
.y192{bottom:31.084872px;}
.y19a{bottom:32.154770px;}
.y1ef{bottom:33.148927px;}
.y1cd{bottom:34.787390px;}
.y16a{bottom:34.891312px;}
.y157{bottom:35.630655px;}
.y1fd{bottom:35.773850px;}
.y161{bottom:36.607682px;}
.y1a2{bottom:38.396212px;}
.y1e5{bottom:41.455315px;}
.y205{bottom:46.471003px;}
.y1eb{bottom:46.491491px;}
.y187{bottom:47.764573px;}
.y193{bottom:48.912797px;}
.y1f0{bottom:49.437512px;}
.y1d4{bottom:50.068813px;}
.y1a1{bottom:51.692085px;}
.y20c{bottom:51.764664px;}
.y18e{bottom:54.691272px;}
.y1fe{bottom:55.043934px;}
.y16b{bottom:56.296350px;}
.y175{bottom:57.608100px;}
.y173{bottom:57.754125px;}
.y158{bottom:64.353135px;}
.y1a0{bottom:65.480644px;}
.y1f1{bottom:65.726097px;}
.y1d3{bottom:65.880086px;}
.y177{bottom:65.994637px;}
.y1e6{bottom:66.050289px;}
.y20b{bottom:66.127310px;}
.y1f7{bottom:66.571354px;}
.y194{bottom:66.740722px;}
.y15d{bottom:67.010798px;}
.y1d2{bottom:67.353041px;}
.y165{bottom:68.843168px;}
.y1ce{bottom:72.678738px;}
.y188{bottom:73.667528px;}
.y1ff{bottom:74.315224px;}
.y16c{bottom:77.702625px;}
.y19f{bottom:78.776517px;}
.y1f8{bottom:78.788087px;}
.y20a{bottom:80.489955px;}
.y1f2{bottom:82.014682px;}
.y195{bottom:84.568646px;}
.y162{bottom:90.407880px;}
.y1e7{bottom:90.645262px;}
.y1ea{bottom:91.910200px;}
.y19e{bottom:92.565077px;}
.y159{bottom:93.076863px;}
.y200{bottom:93.585308px;}
.y209{bottom:94.851394px;}
.y18d{bottom:95.503022px;}
.y1f3{bottom:98.303267px;}
.y16d{bottom:99.107663px;}
.y189{bottom:99.570483px;}
.y1f9{bottom:101.786857px;}
.y196{bottom:102.396571px;}
.y18c{bottom:103.610513px;}
.y19d{bottom:105.860950px;}
.y208{bottom:109.214039px;}
.y1cf{bottom:110.568791px;}
.y201{bottom:112.855392px;}
.y1f4{bottom:114.591852px;}
.y1e8{bottom:115.240236px;}
.y19c{bottom:119.354787px;}
.y197{bottom:120.224496px;}
.y16e{bottom:120.513937px;}
.y15a{bottom:121.799343px;}
.y207{bottom:123.576685px;}
.y18a{bottom:125.473437px;}
.y1f5{bottom:130.879258px;}
.y202{bottom:132.126683px;}
.y19b{bottom:132.650660px;}
.y206{bottom:137.939330px;}
.y198{bottom:138.052421px;}
.y16f{bottom:141.918975px;}
.y163{bottom:144.206795px;}
.y1d0{bottom:148.458844px;}
.y15b{bottom:150.521823px;}
.y203{bottom:151.396767px;}
.y34{bottom:188.167500px;}
.y25d{bottom:196.848000px;}
.y33{bottom:206.100000px;}
.y25c{bottom:210.298500px;}
.y296{bottom:219.550500px;}
.y25b{bottom:223.747500px;}
.y32{bottom:224.032500px;}
.y154{bottom:224.256000px;}
.y1c2{bottom:224.442000px;}
.y1fa{bottom:225.352500px;}
.yf5{bottom:228.181500px;}
.y295{bottom:232.999500px;}
.y25a{bottom:237.198000px;}
.yf6{bottom:238.431000px;}
.y55{bottom:241.965000px;}
.y31{bottom:241.966500px;}
.y153{bottom:242.190000px;}
.y1c1{bottom:242.374500px;}
.y294{bottom:246.450000px;}
.y1ed{bottom:246.871500px;}
.yf4{bottom:248.541000px;}
.y259{bottom:250.647000px;}
.y54{bottom:259.897500px;}
.y30{bottom:259.899000px;}
.y152{bottom:260.122500px;}
.y1c0{bottom:260.307000px;}
.y258{bottom:264.096000px;}
.y234{bottom:264.379500px;}
.y124{bottom:266.107500px;}
.y1f6{bottom:267.516047px;}
.yf3{bottom:272.952000px;}
.y293{bottom:273.348000px;}
.y257{bottom:277.546500px;}
.y9c{bottom:277.830000px;}
.y2f{bottom:277.831500px;}
.y151{bottom:278.055000px;}
.y1bf{bottom:278.241000px;}
.y292{bottom:286.798500px;}
.yf2{bottom:290.884500px;}
.y256{bottom:290.995500px;}
.y233{bottom:291.043500px;}
.y2e{bottom:295.764000px;}
.y1be{bottom:296.173500px;}
.y123{bottom:296.254500px;}
.y291{bottom:300.247500px;}
.ybe{bottom:301.489500px;}
.y150{bottom:301.591500px;}
.y255{bottom:304.444500px;}
.yf1{bottom:308.817000px;}
.y232{bottom:308.976000px;}
.y2d{bottom:313.696500px;}
.y290{bottom:313.698000px;}
.y1bd{bottom:314.106000px;}
.y122{bottom:314.187000px;}
.y254{bottom:317.895000px;}
.y9b{bottom:319.369500px;}
.yf0{bottom:326.751000px;}
.y231{bottom:326.910000px;}
.y28f{bottom:327.147000px;}
.y14f{bottom:330.882000px;}
.ybd{bottom:330.951000px;}
.y253{bottom:331.344000px;}
.y2c{bottom:331.629000px;}
.y1bc{bottom:332.038500px;}
.y121{bottom:332.121000px;}
.y28e{bottom:340.596000px;}
.yef{bottom:344.683500px;}
.y252{bottom:344.793000px;}
.y230{bottom:344.842500px;}
.y9a{bottom:348.757500px;}
.y14e{bottom:348.814500px;}
.ybc{bottom:348.883500px;}
.y53{bottom:349.561500px;}
.y2b{bottom:349.563000px;}
.y1bb{bottom:349.971000px;}
.y120{bottom:350.053500px;}
.y28d{bottom:354.046500px;}
.y251{bottom:358.243500px;}
.yee{bottom:362.616000px;}
.y22f{bottom:362.775000px;}
.y99{bottom:366.690000px;}
.y14d{bottom:366.747000px;}
.ybb{bottom:366.816000px;}
.y2a{bottom:367.495500px;}
.y11f{bottom:367.986000px;}
.y1ba{bottom:368.176500px;}
.y183{bottom:369.397500px;}
.y250{bottom:371.692500px;}
.yed{bottom:380.548500px;}
.y22e{bottom:380.707500px;}
.y28c{bottom:380.944500px;}
.y98{bottom:384.622500px;}
.y14c{bottom:384.679500px;}
.yba{bottom:384.748500px;}
.y24f{bottom:385.143000px;}
.y29{bottom:385.428000px;}
.y11e{bottom:385.918500px;}
.y1b9{bottom:386.109000px;}
.y182{bottom:387.330000px;}
.y1ec{bottom:393.717000px;}
.y28b{bottom:394.395000px;}
.yec{bottom:398.481000px;}
.y24e{bottom:398.592000px;}
.y22d{bottom:398.640000px;}
.y97{bottom:402.555000px;}
.y14b{bottom:402.613500px;}
.yb9{bottom:402.682500px;}
.y52{bottom:403.360500px;}
.y28{bottom:403.662000px;}
.y11d{bottom:403.851000px;}
.y1b8{bottom:404.041500px;}
.y181{bottom:405.262500px;}
.y28a{bottom:407.844000px;}
.y1e2{bottom:413.143500px;}
.yeb{bottom:416.287500px;}
.y22c{bottom:416.572500px;}
.y24d{bottom:419.712000px;}
.y96{bottom:420.487500px;}
.y14a{bottom:420.546000px;}
.yb8{bottom:420.784500px;}
.y51{bottom:421.293000px;}
.y289{bottom:421.294500px;}
.y27{bottom:421.594500px;}
.y1b7{bottom:421.975500px;}
.y180{bottom:423.196500px;}
.y11c{bottom:433.234500px;}
.y1e9{bottom:433.789225px;}
.yea{bottom:434.221500px;}
.y22b{bottom:434.506500px;}
.y288{bottom:434.743500px;}
.y95{bottom:438.421500px;}
.y149{bottom:438.478500px;}
.yb7{bottom:438.717000px;}
.y50{bottom:439.225500px;}
.y26{bottom:439.527000px;}
.y1b6{bottom:439.908000px;}
.y17f{bottom:441.129000px;}
.y24c{bottom:445.069500px;}
.y287{bottom:448.192500px;}
.ye9{bottom:452.154000px;}
.y22a{bottom:452.439000px;}
.y94{bottom:456.354000px;}
.y148{bottom:456.411000px;}
.yb6{bottom:456.649500px;}
.y4f{bottom:457.158000px;}
.y25{bottom:457.459500px;}
.y1b5{bottom:457.840500px;}
.y17e{bottom:459.061500px;}
.y286{bottom:461.643000px;}
.y11b{bottom:462.366000px;}
.y24b{bottom:463.002000px;}
.ye8{bottom:470.086500px;}
.y229{bottom:470.371500px;}
.y93{bottom:474.286500px;}
.y147{bottom:474.493500px;}
.yb5{bottom:474.582000px;}
.y4e{bottom:475.092000px;}
.y24{bottom:475.392000px;}
.y1b4{bottom:476.046000px;}
.y17d{bottom:476.994000px;}
.y11a{bottom:480.298500px;}
.y24a{bottom:480.934500px;}
.ye7{bottom:488.019000px;}
.y228{bottom:488.304000px;}
.y285{bottom:488.541000px;}
.y92{bottom:492.219000px;}
.y146{bottom:492.426000px;}
.yb4{bottom:492.516000px;}
.y4d{bottom:493.024500px;}
.y23{bottom:493.324500px;}
.y1b3{bottom:493.978500px;}
.y17c{bottom:494.926500px;}
.y119{bottom:498.231000px;}
.y249{bottom:498.868500px;}
.y284{bottom:501.991500px;}
.ye6{bottom:505.951500px;}
.y227{bottom:506.236500px;}
.y91{bottom:510.151500px;}
.y145{bottom:510.358500px;}
.yb3{bottom:510.448500px;}
.y6e{bottom:510.957000px;}
.y4c{bottom:511.147500px;}
.y22{bottom:511.258500px;}
.y1b2{bottom:511.911000px;}
.y17b{bottom:512.860500px;}
.y283{bottom:515.440500px;}
.y118{bottom:516.165000px;}
.y248{bottom:516.801000px;}
.ye5{bottom:523.885500px;}
.y226{bottom:524.170500px;}
.y90{bottom:528.084000px;}
.yb2{bottom:528.381000px;}
.y144{bottom:528.441000px;}
.y6d{bottom:528.889500px;}
.y282{bottom:528.891000px;}
.y4b{bottom:529.080000px;}
.y21{bottom:529.191000px;}
.y1b1{bottom:529.843500px;}
.y17a{bottom:532.695000px;}
.y117{bottom:534.348000px;}
.y247{bottom:534.733500px;}
.ye4{bottom:541.566000px;}
.y225{bottom:541.876500px;}
.y281{bottom:542.340000px;}
.y8f{bottom:546.018000px;}
.yb1{bottom:546.313500px;}
.y143{bottom:546.373500px;}
.y6c{bottom:546.822000px;}
.y4a{bottom:547.012500px;}
.y20{bottom:547.123500px;}
.y1b0{bottom:547.777500px;}
.y179{bottom:550.627500px;}
.y116{bottom:552.280500px;}
.y1e1{bottom:552.739500px;}
.y280{bottom:555.789000px;}
.y246{bottom:557.073000px;}
.ye3{bottom:559.498500px;}
.y224{bottom:559.809000px;}
.y8e{bottom:563.950500px;}
.yb0{bottom:564.246000px;}
.y142{bottom:564.306000px;}
.y6b{bottom:564.756000px;}
.y49{bottom:564.945000px;}
.y1f{bottom:565.056000px;}
.y1af{bottom:565.710000px;}
.y27f{bottom:569.239500px;}
.y115{bottom:570.213000px;}
.ye2{bottom:577.431000px;}
.y223{bottom:577.741500px;}
.y8d{bottom:581.883000px;}
.yaf{bottom:582.178500px;}
.y141{bottom:582.240000px;}
.y6a{bottom:582.688500px;}
.y48{bottom:582.877500px;}
.y1e{bottom:582.988500px;}
.y245{bottom:583.290000px;}
.y1ae{bottom:583.642500px;}
.y114{bottom:588.145500px;}
.ye1{bottom:595.363500px;}
.y222{bottom:595.675500px;}
.y27e{bottom:596.137500px;}
.y1e0{bottom:597.889500px;}
.y8c{bottom:599.815500px;}
.yae{bottom:600.112500px;}
.y140{bottom:600.172500px;}
.y69{bottom:600.621000px;}
.y1d{bottom:600.921000px;}
.y244{bottom:601.222500px;}
.y1ad{bottom:601.575000px;}
.y113{bottom:606.078000px;}
.y47{bottom:606.660000px;}
.y178{bottom:606.810000px;}
.y27d{bottom:609.588000px;}
.y221{bottom:613.608000px;}
.y1df{bottom:615.822000px;}
.ye0{bottom:616.576500px;}
.y8b{bottom:617.910000px;}
.yad{bottom:618.045000px;}
.y13f{bottom:618.105000px;}
.y68{bottom:618.553500px;}
.y1c{bottom:618.855000px;}
.y243{bottom:619.155000px;}
.y1ac{bottom:619.507500px;}
.y27c{bottom:623.037000px;}
.ydd{bottom:623.958000px;}
.y112{bottom:624.261000px;}
.y167{bottom:628.329000px;}
.y220{bottom:631.540500px;}
.y1de{bottom:633.754500px;}
.ydc{bottom:634.209000px;}
.y8a{bottom:635.842500px;}
.yac{bottom:635.977500px;}
.y13e{bottom:636.037500px;}
.y46{bottom:636.295500px;}
.y67{bottom:636.486000px;}
.y27b{bottom:636.487500px;}
.y242{bottom:637.087500px;}
.y1ab{bottom:637.440000px;}
.y111{bottom:642.195000px;}
.y1b{bottom:643.299000px;}
.ydf{bottom:648.405000px;}
.y21f{bottom:649.473000px;}
.y27a{bottom:649.936500px;}
.y1dd{bottom:651.687000px;}
.yde{bottom:652.888500px;}
.y89{bottom:653.775000px;}
.y13d{bottom:653.970000px;}
.yab{bottom:654.165000px;}
.y45{bottom:654.228000px;}
.y66{bottom:654.418500px;}
.y241{bottom:655.020000px;}
.y1aa{bottom:655.374000px;}
.y110{bottom:660.127500px;}
.y279{bottom:663.385500px;}
.y21e{bottom:667.180500px;}
.y170{bottom:667.192687px;}
.y1dc{bottom:669.619500px;}
.y88{bottom:671.707500px;}
.y13c{bottom:671.902500px;}
.yaa{bottom:672.097500px;}
.y44{bottom:672.162000px;}
.y65{bottom:672.352500px;}
.y240{bottom:672.952500px;}
.ydb{bottom:673.123500px;}
.y1a9{bottom:673.714500px;}
.y278{bottom:676.836000px;}
.y1a{bottom:678.028500px;}
.y10f{bottom:678.060000px;}
.y21d{bottom:685.113000px;}
.y1db{bottom:687.553500px;}
.y87{bottom:689.640000px;}
.y13b{bottom:689.836500px;}
.ya9{bottom:690.030000px;}
.y43{bottom:690.094500px;}
.y64{bottom:690.285000px;}
.y23f{bottom:690.886500px;}
.yda{bottom:691.056000px;}
.y1a8{bottom:691.648500px;}
.y19{bottom:693.273000px;}
.y10e{bottom:695.992500px;}
.y21c{bottom:703.045500px;}
.y277{bottom:703.734000px;}
.y1da{bottom:706.185000px;}
.y86{bottom:707.572500px;}
.y13a{bottom:707.769000px;}
.ya8{bottom:707.962500px;}
.y42{bottom:708.027000px;}
.y18{bottom:708.217500px;}
.y23e{bottom:708.517500px;}
.yd9{bottom:708.988500px;}
.y1a7{bottom:709.581000px;}
.y10d{bottom:713.925000px;}
.y276{bottom:717.184500px;}
.y21b{bottom:720.978000px;}
.y17{bottom:723.162000px;}
.y1d9{bottom:724.117500px;}
.y85{bottom:725.506500px;}
.y139{bottom:725.701500px;}
.ya7{bottom:725.895000px;}
.y41{bottom:725.959500px;}
.y63{bottom:726.150000px;}
.y23d{bottom:726.451500px;}
.y1a6{bottom:727.786500px;}
.y275{bottom:730.633500px;}
.yd8{bottom:731.217000px;}
.y10c{bottom:731.857500px;}
.y16{bottom:738.105000px;}
.y21a{bottom:738.685500px;}
.y1d8{bottom:742.050000px;}
.y84{bottom:743.439000px;}
.y138{bottom:743.634000px;}
.ya6{bottom:743.829000px;}
.y40{bottom:743.892000px;}
.y62{bottom:744.082500px;}
.y23c{bottom:744.384000px;}
.y1a5{bottom:745.719000px;}
.yd5{bottom:748.849500px;}
.y10b{bottom:749.791500px;}
.y15{bottom:753.049500px;}
.y219{bottom:756.618000px;}
.y274{bottom:757.533000px;}
.y83{bottom:761.371500px;}
.y137{bottom:761.566500px;}
.ya5{bottom:761.761500px;}
.y3f{bottom:762.015000px;}
.y23b{bottom:762.316500px;}
.yd7{bottom:763.045500px;}
.yd6{bottom:767.529000px;}
.y14{bottom:767.994000px;}
.y10a{bottom:768.099000px;}
.y273{bottom:770.982000px;}
.y218{bottom:774.550500px;}
.y136{bottom:779.500500px;}
.y82{bottom:779.545500px;}
.ya4{bottom:779.694000px;}
.y3e{bottom:779.947500px;}
.y61{bottom:779.949000px;}
.y23a{bottom:780.249000px;}
.y13{bottom:782.937000px;}
.y272{bottom:784.432500px;}
.y109{bottom:786.031500px;}
.yd4{bottom:786.289500px;}
.y166{bottom:791.835000px;}
.y217{bottom:792.483000px;}
.y1d7{bottom:795.022500px;}
.y135{bottom:797.433000px;}
.y81{bottom:797.478000px;}
.y1a4{bottom:797.554500px;}
.ya3{bottom:797.626500px;}
.y12{bottom:797.881500px;}
.y239{bottom:798.181500px;}
.y108{bottom:803.964000px;}
.yd3{bottom:804.222000px;}
.y216{bottom:810.415500px;}
.y15f{bottom:811.261500px;}
.y271{bottom:811.330500px;}
.y11{bottom:812.826000px;}
.y1d6{bottom:812.955000px;}
.y134{bottom:815.365500px;}
.y80{bottom:815.410500px;}
.y1a3{bottom:815.487000px;}
.ya2{bottom:815.559000px;}
.y3d{bottom:815.814000px;}
.y238{bottom:816.114000px;}
.y107{bottom:821.898000px;}
.yd2{bottom:822.156000px;}
.y270{bottom:824.781000px;}
.y10{bottom:827.769000px;}
.y215{bottom:828.349500px;}
.y1d5{bottom:830.887500px;}
.y133{bottom:833.298000px;}
.y7f{bottom:833.344500px;}
.ya1{bottom:833.491500px;}
.y3c{bottom:833.746500px;}
.y237{bottom:834.048000px;}
.y190{bottom:837.006000px;}
.y26f{bottom:838.230000px;}
.y106{bottom:839.830500px;}
.yd1{bottom:840.088500px;}
.yf{bottom:842.713500px;}
.y214{bottom:846.282000px;}
.y7e{bottom:851.277000px;}
.ya0{bottom:851.425500px;}
.y132{bottom:851.455500px;}
.y3b{bottom:851.679000px;}
.y236{bottom:851.980500px;}
.y1ca{bottom:852.408000px;}
.ye{bottom:857.656500px;}
.y105{bottom:857.763000px;}
.yd0{bottom:858.021000px;}
.y213{bottom:864.214500px;}
.y26e{bottom:865.129500px;}
.y7d{bottom:869.209500px;}
.y9f{bottom:869.358000px;}
.y131{bottom:869.388000px;}
.y3a{bottom:869.611500px;}
.y235{bottom:869.913000px;}
.yd{bottom:872.601000px;}
.y104{bottom:875.695500px;}
.ycf{bottom:875.953500px;}
.y26d{bottom:878.578500px;}
.y212{bottom:881.920500px;}
.y7c{bottom:887.142000px;}
.y9e{bottom:887.290500px;}
.y130{bottom:887.320500px;}
.yc{bottom:887.545500px;}
.y26c{bottom:892.029000px;}
.y103{bottom:893.628000px;}
.yce{bottom:893.886000px;}
.y211{bottom:899.854500px;}
.yb{bottom:902.488500px;}
.y7b{bottom:905.074500px;}
.y9d{bottom:905.223000px;}
.y12f{bottom:905.253000px;}
.y39{bottom:905.478000px;}
.ycd{bottom:911.566500px;}
.ya{bottom:917.433000px;}
.y210{bottom:917.787000px;}
.y26b{bottom:918.927000px;}
.y7a{bottom:923.169000px;}
.y12e{bottom:923.185500px;}
.y38{bottom:923.410500px;}
.ycc{bottom:929.500500px;}
.y9{bottom:932.377500px;}
.y20f{bottom:935.719500px;}
.y79{bottom:941.101500px;}
.y12d{bottom:941.119500px;}
.y37{bottom:941.343000px;}
.y102{bottom:944.059500px;}
.y26a{bottom:945.826500px;}
.y8{bottom:947.320500px;}
.ycb{bottom:947.433000px;}
.y101{bottom:957.508500px;}
.y78{bottom:959.034000px;}
.y12c{bottom:959.052000px;}
.y36{bottom:959.275500px;}
.y7{bottom:962.265000px;}
.yca{bottom:965.365500px;}
.y269{bottom:972.726000px;}
.y77{bottom:976.966500px;}
.y12b{bottom:976.984500px;}
.y35{bottom:977.208000px;}
.y6{bottom:977.209500px;}
.y100{bottom:978.766500px;}
.y15e{bottom:981.003000px;}
.yc9{bottom:983.298000px;}
.y20e{bottom:984.417000px;}
.y268{bottom:986.175000px;}
.y76{bottom:994.899000px;}
.y12a{bottom:994.917000px;}
.y60{bottom:995.142000px;}
.y267{bottom:999.625500px;}
.y155{bottom:1000.429500px;}
.yc8{bottom:1001.230500px;}
.y20d{bottom:1002.351000px;}
.yff{bottom:1002.528000px;}
.y18f{bottom:1012.621500px;}
.y75{bottom:1012.833000px;}
.y129{bottom:1012.849500px;}
.y5f{bottom:1013.074500px;}
.yc7{bottom:1019.163000px;}
.y1fb{bottom:1023.870000px;}
.y266{bottom:1026.523500px;}
.y5{bottom:1029.862500px;}
.y74{bottom:1030.765500px;}
.y128{bottom:1030.782000px;}
.y5e{bottom:1031.007000px;}
.y184{bottom:1034.140500px;}
.yfe{bottom:1036.371000px;}
.y265{bottom:1039.974000px;}
.y4{bottom:1048.356000px;}
.y73{bottom:1048.698000px;}
.y127{bottom:1048.716000px;}
.y5d{bottom:1048.939500px;}
.y1c9{bottom:1053.087000px;}
.y264{bottom:1053.423000px;}
.yfd{bottom:1057.890000px;}
.y18b{bottom:1060.196278px;}
.y1c8{bottom:1062.633000px;}
.y72{bottom:1066.630500px;}
.y126{bottom:1066.648500px;}
.y5c{bottom:1066.872000px;}
.y3{bottom:1067.070000px;}
.yc6{bottom:1067.583000px;}
.y1c7{bottom:1077.127500px;}
.y263{bottom:1080.322500px;}
.yc5{bottom:1081.032000px;}
.yfc{bottom:1081.507500px;}
.y71{bottom:1084.563000px;}
.y125{bottom:1084.804500px;}
.y5b{bottom:1084.806000px;}
.y262{bottom:1093.771500px;}
.yc4{bottom:1094.482500px;}
.y1c6{bottom:1098.385500px;}
.yfb{bottom:1100.934000px;}
.y70{bottom:1102.495500px;}
.y5a{bottom:1102.738500px;}
.y261{bottom:1107.220500px;}
.yc3{bottom:1107.931500px;}
.y1c5{bottom:1111.836000px;}
.y2{bottom:1114.144500px;}
.y6f{bottom:1120.429500px;}
.y59{bottom:1120.671000px;}
.yc2{bottom:1121.380500px;}
.yfa{bottom:1124.551500px;}
.y1c4{bottom:1125.285000px;}
.y260{bottom:1134.120000px;}
.yc1{bottom:1134.831000px;}
.y58{bottom:1138.603500px;}
.yf8{bottom:1143.978000px;}
.y1c3{bottom:1146.543000px;}
.y25f{bottom:1147.570500px;}
.y1{bottom:1155.987000px;}
.yc0{bottom:1156.087500px;}
.y57{bottom:1156.536000px;}
.y25e{bottom:1161.019500px;}
.yf7{bottom:1167.595500px;}
.y56{bottom:1174.468500px;}
.ybf{bottom:1179.849000px;}
.hc{height:2.391024px;}
.h2e{height:17.617065px;}
.h1d{height:18.493076px;}
.h14{height:19.133552px;}
.h21{height:19.519498px;}
.h15{height:25.823312px;}
.hb{height:29.415488px;}
.h9{height:32.900573px;}
.h36{height:33.140573px;}
.h23{height:33.240016px;}
.ha{height:33.665702px;}
.h24{height:34.143908px;}
.h28{height:34.847241px;}
.h2c{height:35.234130px;}
.h35{height:36.072931px;}
.h1b{height:36.986153px;}
.h13{height:37.013299px;}
.h17{height:37.309389px;}
.h8{height:37.336090px;}
.h7{height:37.605082px;}
.h19{height:38.332448px;}
.h26{height:38.718898px;}
.h31{height:38.794465px;}
.h1f{height:39.038996px;}
.h34{height:40.144638px;}
.h5{height:41.125613px;}
.h27{height:43.089267px;}
.h6{height:44.831700px;}
.h4{height:45.238339px;}
.h2b{height:45.282903px;}
.h3{height:45.568339px;}
.h29{height:49.898047px;}
.h33{height:54.515050px;}
.h10{height:82.129613px;}
.hd{height:85.265700px;}
.h12{height:85.271700px;}
.h2{height:98.701718px;}
.hf{height:104.607024px;}
.h2d{height:114.234863px;}
.h30{height:114.234922px;}
.h1c{height:119.914888px;}
.h11{height:126.269700px;}
.h20{height:126.568177px;}
.h2a{height:135.113795px;}
.h2f{height:142.362728px;}
.he{height:145.611024px;}
.h22{height:148.885971px;}
.h1e{height:152.882423px;}
.h1a{height:159.023700px;}
.h16{height:162.681659px;}
.h32{height:163.153618px;}
.h25{height:164.744260px;}
.h18{height:165.258488px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:158.924710px;}
.w5{width:181.290979px;}
.wf{width:281.313105px;}
.w11{width:281.315958px;}
.w9{width:295.301445px;}
.wb{width:311.700896px;}
.w2{width:315.490964px;}
.w3{width:337.857233px;}
.we{width:339.875820px;}
.w10{width:339.879356px;}
.w8{width:369.105412px;}
.w6{width:369.106772px;}
.w7{width:372.838397px;}
.wa{width:376.588810px;}
.w12{width:376.592186px;}
.wc{width:376.595171px;}
.wd{width:376.601060px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x54{left:12.003543px;}
.x4b{left:13.355100px;}
.x28{left:15.002902px;}
.x34{left:21.763124px;}
.x66{left:23.722602px;}
.x45{left:24.902212px;}
.x4e{left:26.284361px;}
.x53{left:27.920777px;}
.x44{left:31.067437px;}
.x32{left:33.411151px;}
.x61{left:34.673388px;}
.x67{left:36.661989px;}
.x47{left:38.485013px;}
.x65{left:43.297905px;}
.x4d{left:47.973563px;}
.x6e{left:50.074941px;}
.x52{left:51.397362px;}
.x37{left:55.623977px;}
.x43{left:57.778875px;}
.x50{left:58.793999px;}
.x8{left:60.903000px;}
.x69{left:67.231500px;}
.x64{left:69.847500px;}
.x58{left:74.505000px;}
.x7{left:75.846000px;}
.x2a{left:78.394500px;}
.x3a{left:80.300137px;}
.x39{left:81.583500px;}
.x2e{left:82.653000px;}
.x57{left:83.818500px;}
.x48{left:86.894775px;}
.x36{left:88.327592px;}
.xe{left:90.790500px;}
.x31{left:92.188063px;}
.x1{left:112.999500px;}
.x59{left:115.723500px;}
.x6a{left:125.563661px;}
.x35{left:128.824500px;}
.x3b{left:130.062487px;}
.x46{left:134.463712px;}
.x51{left:136.717078px;}
.x4c{left:138.672000px;}
.x30{left:141.528000px;}
.x29{left:143.020500px;}
.x56{left:144.252000px;}
.x2d{left:154.071000px;}
.x27{left:155.548500px;}
.x6f{left:160.004699px;}
.x38{left:161.026090px;}
.x33{left:162.947550px;}
.x6d{left:171.391018px;}
.x5{left:173.970000px;}
.x3c{left:176.040562px;}
.x3d{left:177.119663px;}
.x72{left:180.336000px;}
.x10{left:184.056000px;}
.x9{left:190.885500px;}
.x63{left:195.976500px;}
.x68{left:203.434500px;}
.x73{left:207.354000px;}
.x6b{left:208.922292px;}
.x2f{left:217.845000px;}
.x3e{left:224.450325px;}
.x3f{left:226.213763px;}
.x49{left:232.122825px;}
.x2c{left:249.196500px;}
.x60{left:251.928000px;}
.x3{left:253.899000px;}
.x6c{left:264.080909px;}
.x2b{left:265.921500px;}
.x40{left:272.858850px;}
.x41{left:273.937950px;}
.x4a{left:280.532587px;}
.x62{left:284.618448px;}
.x5f{left:287.139000px;}
.x2{left:288.667500px;}
.x5e{left:293.116500px;}
.x5d{left:299.094000px;}
.x5c{left:305.073000px;}
.x5b{left:311.050500px;}
.x5a{left:317.028000px;}
.x42{left:321.268613px;}
.x6{left:322.351500px;}
.x55{left:333.839292px;}
.x70{left:362.288681px;}
.xb{left:455.422500px;}
.x26{left:461.377500px;}
.xa{left:470.367000px;}
.x12{left:480.207000px;}
.x74{left:482.812500px;}
.xd{left:485.311500px;}
.x4{left:488.044500px;}
.x1f{left:496.236000px;}
.x11{left:498.471000px;}
.x75{left:505.567500px;}
.x20{left:506.862000px;}
.x76{left:515.526000px;}
.xc{left:518.406000px;}
.x4f{left:520.053840px;}
.x18{left:528.805500px;}
.x71{left:533.514000px;}
.x78{left:538.557000px;}
.x79{left:540.055500px;}
.x21{left:548.157000px;}
.xf{left:576.432000px;}
.x13{left:587.719500px;}
.x22{left:595.039500px;}
.x7a{left:609.532500px;}
.x19{left:615.979500px;}
.x15{left:664.195500px;}
.x16{left:665.308500px;}
.x14{left:671.293500px;}
.x17{left:688.270500px;}
.x1b{left:696.232500px;}
.x1c{left:697.345500px;}
.x77{left:702.003000px;}
.x1a{left:703.332000px;}
.x23{left:709.795500px;}
.x1d{left:720.309000px;}
.x1e{left:747.865500px;}
.x24{left:749.430000px;}
.x25{left:814.587000px;}
@media print{
.ve{vertical-align:-17.225387pt;}
.v3{vertical-align:-7.968000pt;}
.v2{vertical-align:-6.480000pt;}
.v1{vertical-align:-5.312000pt;}
.v11{vertical-align:-3.319726pt;}
.vb{vertical-align:-2.381864pt;}
.vd{vertical-align:-1.230717pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:3.592178pt;}
.va{vertical-align:7.968000pt;}
.v10{vertical-align:8.932243pt;}
.vc{vertical-align:16.049447pt;}
.vf{vertical-align:19.285333pt;}
.v6{vertical-align:28.474667pt;}
.v4{vertical-align:35.941333pt;}
.v9{vertical-align:64.421333pt;}
.v8{vertical-align:72.389333pt;}
.v7{vertical-align:90.858667pt;}
.v5{vertical-align:127.306667pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000325pt;}
.ls52{letter-spacing:0.000479pt;}
.ls7{letter-spacing:0.000853pt;}
.ls35{letter-spacing:0.000854pt;}
.ls10{letter-spacing:0.000996pt;}
.ls18{letter-spacing:0.001014pt;}
.lsb{letter-spacing:0.001297pt;}
.ls23{letter-spacing:0.001659pt;}
.ls16{letter-spacing:0.001962pt;}
.ls42{letter-spacing:0.002079pt;}
.lse{letter-spacing:0.002387pt;}
.ls33{letter-spacing:0.002717pt;}
.ls1e{letter-spacing:0.003251pt;}
.ls0{letter-spacing:0.003733pt;}
.ls13{letter-spacing:0.003892pt;}
.ls43{letter-spacing:0.004465pt;}
.ls5c{letter-spacing:0.741348pt;}
.ls1a{letter-spacing:1.471333pt;}
.ls41{letter-spacing:1.476666pt;}
.ls4{letter-spacing:2.177630pt;}
.ls1{letter-spacing:2.635446pt;}
.ls5b{letter-spacing:2.652911pt;}
.ls5d{letter-spacing:2.655711pt;}
.ls21{letter-spacing:2.656546pt;}
.ls3{letter-spacing:2.656693pt;}
.ls11{letter-spacing:2.657014pt;}
.ls44{letter-spacing:8.853812pt;}
.ls56{letter-spacing:8.857067pt;}
.ls47{letter-spacing:9.824027pt;}
.ls46{letter-spacing:9.825404pt;}
.ls49{letter-spacing:9.828465pt;}
.ls4d{letter-spacing:10.093411pt;}
.ls4f{letter-spacing:10.094826pt;}
.ls4c{letter-spacing:10.099386pt;}
.ls3a{letter-spacing:11.803145pt;}
.ls38{letter-spacing:11.804745pt;}
.ls2c{letter-spacing:11.808479pt;}
.ls17{letter-spacing:14.464546pt;}
.ls39{letter-spacing:14.465014pt;}
.ls3e{letter-spacing:14.756984pt;}
.ls15{letter-spacing:14.757812pt;}
.ls2d{letter-spacing:14.759467pt;}
.ls53{letter-spacing:14.876125pt;}
.ls40{letter-spacing:15.737798pt;}
.ls3d{letter-spacing:16.434509pt;}
.ls1b{letter-spacing:16.481867pt;}
.ls14{letter-spacing:17.413880pt;}
.ls37{letter-spacing:17.414347pt;}
.ls55{letter-spacing:17.691145pt;}
.ls3f{letter-spacing:18.327412pt;}
.ls1f{letter-spacing:18.451251pt;}
.ls25{letter-spacing:18.457067pt;}
.ls27{letter-spacing:19.707145pt;}
.ls29{letter-spacing:19.712479pt;}
.ls3c{letter-spacing:19.741176pt;}
.lsf{letter-spacing:20.490050pt;}
.ls34{letter-spacing:20.758347pt;}
.ls51{letter-spacing:20.926400pt;}
.ls24{letter-spacing:21.110347pt;}
.ls1d{letter-spacing:21.133053pt;}
.ls2e{letter-spacing:21.136479pt;}
.ls12{letter-spacing:21.253880pt;}
.ls36{letter-spacing:21.254347pt;}
.ls1c{letter-spacing:21.404745pt;}
.ls28{letter-spacing:22.368546pt;}
.ls26{letter-spacing:22.373880pt;}
.ls22{letter-spacing:23.261053pt;}
.ls50{letter-spacing:23.585014pt;}
.ls57{letter-spacing:25.974836pt;}
.lsd{letter-spacing:27.003213pt;}
.ls30{letter-spacing:41.931145pt;}
.ls2b{letter-spacing:44.885812pt;}
.ls59{letter-spacing:48.043581pt;}
.ls2f{letter-spacing:57.439333pt;}
.ls2a{letter-spacing:60.388666pt;}
.ls48{letter-spacing:60.986217pt;}
.ls4a{letter-spacing:60.990655pt;}
.ls4e{letter-spacing:62.658518pt;}
.ls31{letter-spacing:68.935039pt;}
.ls45{letter-spacing:106.774540pt;}
.ls32{letter-spacing:108.697296pt;}
.ls4b{letter-spacing:109.697841pt;}
.ls6{letter-spacing:146.789553pt;}
.lsc{letter-spacing:148.661553pt;}
.ls54{letter-spacing:160.651337pt;}
.ls8{letter-spacing:171.623368pt;}
.ls5{letter-spacing:177.987608pt;}
.ls20{letter-spacing:205.341053pt;}
.ls9{letter-spacing:222.619812pt;}
.ls5a{letter-spacing:263.710170pt;}
.ls3b{letter-spacing:341.976239pt;}
.ls19{letter-spacing:411.089014pt;}
.ls58{letter-spacing:449.393025pt;}
.ws160{word-spacing:-160.697226pt;}
.ws3{word-spacing:-53.133867pt;}
.ws4{word-spacing:-13.283467pt;}
.ws1d{word-spacing:-13.262246pt;}
.wsbc{word-spacing:-10.626800pt;}
.ws102{word-spacing:-9.298400pt;}
.ws12a{word-spacing:-4.410111pt;}
.ws10a{word-spacing:-3.570605pt;}
.ws22{word-spacing:-1.009543pt;}
.wsf{word-spacing:-0.956416pt;}
.ws17{word-spacing:-0.908595pt;}
.ws176{word-spacing:-0.903276pt;}
.ws67{word-spacing:-0.850142pt;}
.ws166{word-spacing:-0.690740pt;}
.wsb6{word-spacing:-0.584473pt;}
.ws25{word-spacing:-0.531339pt;}
.ws32{word-spacing:-0.425071pt;}
.ws19f{word-spacing:-0.382565pt;}
.ws99{word-spacing:-0.212535pt;}
.ws55{word-spacing:-0.159402pt;}
.ws10b{word-spacing:-0.106268pt;}
.ws68{word-spacing:-0.053134pt;}
.ws5{word-spacing:-0.047821pt;}
.ws161{word-spacing:-0.045889pt;}
.ws135{word-spacing:-0.045431pt;}
.ws132{word-spacing:-0.044219pt;}
.ws172{word-spacing:-0.042753pt;}
.wsed{word-spacing:-0.042507pt;}
.ws14d{word-spacing:-0.039396pt;}
.ws17e{word-spacing:-0.002952pt;}
.ws64{word-spacing:0.000000pt;}
.ws124{word-spacing:0.159402pt;}
.ws17a{word-spacing:0.212535pt;}
.ws120{word-spacing:0.265669pt;}
.wsf1{word-spacing:0.318803pt;}
.ws141{word-spacing:0.478205pt;}
.ws1b6{word-spacing:0.510086pt;}
.ws175{word-spacing:0.531339pt;}
.ws155{word-spacing:0.637606pt;}
.ws182{word-spacing:0.690740pt;}
.ws20{word-spacing:0.743874pt;}
.wsb2{word-spacing:0.797008pt;}
.ws158{word-spacing:0.850142pt;}
.ws122{word-spacing:0.903276pt;}
.ws127{word-spacing:0.956410pt;}
.ws77{word-spacing:1.009543pt;}
.ws26{word-spacing:1.062677pt;}
.ws150{word-spacing:1.066611pt;}
.ws17b{word-spacing:1.115811pt;}
.ws76{word-spacing:1.168945pt;}
.ws1b9{word-spacing:1.317723pt;}
.ws9d{word-spacing:1.381481pt;}
.ws75{word-spacing:1.540882pt;}
.wsdb{word-spacing:1.594016pt;}
.ws92{word-spacing:1.647150pt;}
.ws1b8{word-spacing:1.742795pt;}
.ws15b{word-spacing:1.753418pt;}
.wsf4{word-spacing:1.806551pt;}
.ws60{word-spacing:1.912819pt;}
.wse9{word-spacing:1.965953pt;}
.wsdd{word-spacing:2.019087pt;}
.ws7b{word-spacing:2.125355pt;}
.ws1f{word-spacing:2.178489pt;}
.ws34{word-spacing:2.231622pt;}
.ws101{word-spacing:2.337890pt;}
.ws1a4{word-spacing:2.380403pt;}
.ws123{word-spacing:2.444158pt;}
.ws1a9{word-spacing:2.465418pt;}
.ws27{word-spacing:2.497292pt;}
.ws1c8{word-spacing:2.507925pt;}
.wsd8{word-spacing:2.550426pt;}
.wsea{word-spacing:2.603559pt;}
.ws28{word-spacing:2.656693pt;}
.wsf0{word-spacing:2.709827pt;}
.ws5c{word-spacing:2.762961pt;}
.ws105{word-spacing:2.816095pt;}
.ws15a{word-spacing:2.869229pt;}
.ws19d{word-spacing:2.890490pt;}
.ws10d{word-spacing:2.922363pt;}
.ws56{word-spacing:2.975497pt;}
.ws40{word-spacing:3.028630pt;}
.wsa6{word-spacing:3.134898pt;}
.ws21{word-spacing:3.188032pt;}
.ws1c3{word-spacing:3.230547pt;}
.ws96{word-spacing:3.241166pt;}
.ws1be{word-spacing:3.273054pt;}
.ws54{word-spacing:3.294300pt;}
.wsb8{word-spacing:3.347434pt;}
.ws167{word-spacing:3.453701pt;}
.ws125{word-spacing:3.477802pt;}
.ws4c{word-spacing:3.506835pt;}
.ws179{word-spacing:3.559969pt;}
.ws191{word-spacing:3.570605pt;}
.ws9a{word-spacing:3.613103pt;}
.ws1b1{word-spacing:3.655619pt;}
.ws154{word-spacing:3.666237pt;}
.ws142{word-spacing:3.719371pt;}
.ws143{word-spacing:3.772505pt;}
.ws35{word-spacing:3.878772pt;}
.wsa1{word-spacing:3.985040pt;}
.ws6e{word-spacing:4.038174pt;}
.ws11{word-spacing:4.064768pt;}
.ws197{word-spacing:4.080691pt;}
.ws57{word-spacing:4.091308pt;}
.ws199{word-spacing:4.123198pt;}
.wsa2{word-spacing:4.144442pt;}
.ws180{word-spacing:4.197575pt;}
.ws19e{word-spacing:4.245694pt;}
.ws1c5{word-spacing:4.248657pt;}
.wse5{word-spacing:4.250709pt;}
.wsec{word-spacing:4.250720pt;}
.ws17f{word-spacing:4.303843pt;}
.ws42{word-spacing:4.410111pt;}
.ws46{word-spacing:4.463245pt;}
.wsb7{word-spacing:4.516379pt;}
.ws7c{word-spacing:4.569513pt;}
.ws156{word-spacing:4.622646pt;}
.ws1c0{word-spacing:4.633285pt;}
.ws87{word-spacing:4.728914pt;}
.wsad{word-spacing:4.782048pt;}
.ws19{word-spacing:4.782080pt;}
.ws39{word-spacing:4.835182pt;}
.ws198{word-spacing:4.845821pt;}
.ws1bd{word-spacing:4.888328pt;}
.wsd1{word-spacing:4.941450pt;}
.ws98{word-spacing:4.994583pt;}
.wsb4{word-spacing:5.047717pt;}
.ws121{word-spacing:5.049074pt;}
.ws7{word-spacing:5.069005pt;}
.ws1a8{word-spacing:5.100864pt;}
.wsef{word-spacing:5.132766pt;}
.ws97{word-spacing:5.153985pt;}
.ws111{word-spacing:5.165381pt;}
.ws103{word-spacing:5.173415pt;}
.ws170{word-spacing:5.207119pt;}
.ws109{word-spacing:5.260253pt;}
.ws1b3{word-spacing:5.270893pt;}
.ws4a{word-spacing:5.273892pt;}
.wsbb{word-spacing:5.299129pt;}
.ws44{word-spacing:5.312526pt;}
.ws2{word-spacing:5.313387pt;}
.ws50{word-spacing:5.315252pt;}
.ws80{word-spacing:5.419654pt;}
.ws82{word-spacing:5.420563pt;}
.ws144{word-spacing:5.472788pt;}
.ws15{word-spacing:5.499392pt;}
.ws128{word-spacing:5.525922pt;}
.ws9e{word-spacing:5.579056pt;}
.ws11b{word-spacing:5.632190pt;}
.wsb3{word-spacing:5.685324pt;}
.wsf7{word-spacing:5.690621pt;}
.ws1b0{word-spacing:5.695965pt;}
.wsd7{word-spacing:5.791591pt;}
.ws12d{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.ws12e{word-spacing:5.897859pt;}
.ws1b2{word-spacing:5.908501pt;}
.ws11a{word-spacing:5.950993pt;}
.ws1b{word-spacing:5.977600pt;}
.ws3f{word-spacing:6.004127pt;}
.ws1ca{word-spacing:6.036022pt;}
.ws12b{word-spacing:6.057261pt;}
.ws159{word-spacing:6.110395pt;}
.ws10{word-spacing:6.121062pt;}
.ws71{word-spacing:6.163529pt;}
.ws195{word-spacing:6.163544pt;}
.ws194{word-spacing:6.206051pt;}
.ws114{word-spacing:6.216662pt;}
.ws17c{word-spacing:6.269796pt;}
.ws10e{word-spacing:6.322930pt;}
.ws181{word-spacing:6.429198pt;}
.wsa0{word-spacing:6.482332pt;}
.ws178{word-spacing:6.535466pt;}
.ws1c2{word-spacing:6.546109pt;}
.wsd6{word-spacing:6.588599pt;}
.ws196{word-spacing:6.631123pt;}
.wsd0{word-spacing:6.641733pt;}
.ws63{word-spacing:6.694867pt;}
.wsa5{word-spacing:6.748001pt;}
.ws3e{word-spacing:6.801135pt;}
.ws18{word-spacing:6.886195pt;}
.ws4e{word-spacing:6.907403pt;}
.ws1c7{word-spacing:6.928674pt;}
.ws169{word-spacing:6.931989pt;}
.ws85{word-spacing:6.960537pt;}
.wsab{word-spacing:7.013670pt;}
.ws47{word-spacing:7.066804pt;}
.wscc{word-spacing:7.112125pt;}
.wsce{word-spacing:7.119938pt;}
.ws100{word-spacing:7.173072pt;}
.ws190{word-spacing:7.183717pt;}
.wsf5{word-spacing:7.226206pt;}
.ws13b{word-spacing:7.276683pt;}
.ws1ad{word-spacing:7.311238pt;}
.ws58{word-spacing:7.332474pt;}
.ws133{word-spacing:7.340277pt;}
.wsfe{word-spacing:7.385607pt;}
.ws88{word-spacing:7.438741pt;}
.ws136{word-spacing:7.541554pt;}
.ws23{word-spacing:7.545009pt;}
.ws116{word-spacing:7.598143pt;}
.ws162{word-spacing:7.617585pt;}
.ws13c{word-spacing:7.631175pt;}
.ws13d{word-spacing:7.644578pt;}
.ws59{word-spacing:7.651277pt;}
.ws147{word-spacing:7.680561pt;}
.ws5b{word-spacing:7.704411pt;}
.ws3c{word-spacing:7.757545pt;}
.ws4d{word-spacing:7.863812pt;}
.ws8b{word-spacing:7.868563pt;}
.ws6f{word-spacing:7.916946pt;}
.wsc{word-spacing:7.938253pt;}
.ws104{word-spacing:7.970080pt;}
.ws9f{word-spacing:8.023214pt;}
.ws16{word-spacing:8.033894pt;}
.ws18d{word-spacing:8.076368pt;}
.ws106{word-spacing:8.116580pt;}
.ws1c1{word-spacing:8.118875pt;}
.ws119{word-spacing:8.129482pt;}
.wsa4{word-spacing:8.182615pt;}
.ws174{word-spacing:8.235749pt;}
.ws1b7{word-spacing:8.246397pt;}
.ws113{word-spacing:8.288883pt;}
.ws2a{word-spacing:8.342017pt;}
.wsac{word-spacing:8.395151pt;}
.ws153{word-spacing:8.400282pt;}
.ws33{word-spacing:8.448285pt;}
.ws3d{word-spacing:8.554553pt;}
.wsb9{word-spacing:8.660820pt;}
.ws185{word-spacing:8.713954pt;}
.ws187{word-spacing:8.713976pt;}
.ws74{word-spacing:8.767088pt;}
.ws126{word-spacing:8.801410pt;}
.wsd5{word-spacing:8.820222pt;}
.ws24{word-spacing:8.873356pt;}
.ws110{word-spacing:8.926490pt;}
.ws29{word-spacing:8.979623pt;}
.ws1c6{word-spacing:9.011526pt;}
.wsae{word-spacing:9.085891pt;}
.ws6b{word-spacing:9.335380pt;}
.ws6d{word-spacing:9.351561pt;}
.ws188{word-spacing:9.394091pt;}
.wsaa{word-spacing:9.457828pt;}
.wsaf{word-spacing:9.510962pt;}
.ws1a1{word-spacing:9.564120pt;}
.ws2d{word-spacing:9.617230pt;}
.ws12c{word-spacing:9.723498pt;}
.ws1cc{word-spacing:9.734149pt;}
.ws1c4{word-spacing:9.776656pt;}
.ws8c{word-spacing:9.829765pt;}
.ws89{word-spacing:9.882899pt;}
.wsf2{word-spacing:9.936033pt;}
.wsfc{word-spacing:9.962634pt;}
.wsfd{word-spacing:9.989167pt;}
.ws19c{word-spacing:10.031699pt;}
.wsb0{word-spacing:10.042301pt;}
.ws48{word-spacing:10.095435pt;}
.ws107{word-spacing:10.160995pt;}
.ws7a{word-spacing:10.201702pt;}
.ws18f{word-spacing:10.201728pt;}
.ws18e{word-spacing:10.244235pt;}
.ws186{word-spacing:10.254836pt;}
.ws43{word-spacing:10.307970pt;}
.ws73{word-spacing:10.414238pt;}
.ws2e{word-spacing:10.467372pt;}
.wsa8{word-spacing:10.520506pt;}
.wsba{word-spacing:10.626773pt;}
.ws12{word-spacing:10.664038pt;}
.ws1ac{word-spacing:10.754322pt;}
.ws41{word-spacing:10.786175pt;}
.ws90{word-spacing:10.945577pt;}
.wscf{word-spacing:11.051844pt;}
.ws7d{word-spacing:11.104978pt;}
.wse1{word-spacing:11.158112pt;}
.ws2c{word-spacing:11.211246pt;}
.ws189{word-spacing:11.221901pt;}
.ws36{word-spacing:11.264380pt;}
.ws11c{word-spacing:11.317514pt;}
.wsc1{word-spacing:11.370647pt;}
.ws14{word-spacing:11.429171pt;}
.ws129{word-spacing:11.476915pt;}
.wsf9{word-spacing:11.583183pt;}
.ws37{word-spacing:11.689451pt;}
.ws72{word-spacing:11.742585pt;}
.ws130{word-spacing:11.795718pt;}
.ws4f{word-spacing:11.848852pt;}
.ws1ba{word-spacing:11.902016pt;}
.ws115{word-spacing:11.955120pt;}
.ws49{word-spacing:12.008254pt;}
.ws1bb{word-spacing:12.029538pt;}
.ws10c{word-spacing:12.061388pt;}
.ws9c{word-spacing:12.114522pt;}
.ws2f{word-spacing:12.167655pt;}
.wsc9{word-spacing:12.220789pt;}
.ws1c9{word-spacing:12.242074pt;}
.ws11d{word-spacing:12.273923pt;}
.ws78{word-spacing:12.327057pt;}
.wsde{word-spacing:12.380191pt;}
.wsd2{word-spacing:12.486459pt;}
.ws1a6{word-spacing:12.497117pt;}
.ws91{word-spacing:12.539593pt;}
.ws1d0{word-spacing:12.582131pt;}
.ws31{word-spacing:12.698994pt;}
.wsb5{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.wsa{word-spacing:12.863795pt;}
.ws70{word-spacing:12.964663pt;}
.ws94{word-spacing:13.017797pt;}
.ws1aa{word-spacing:13.049710pt;}
.ws13{word-spacing:13.055078pt;}
.ws14c{word-spacing:13.079331pt;}
.ws10f{word-spacing:13.124065pt;}
.ws18b{word-spacing:13.134725pt;}
.ws1e{word-spacing:13.177199pt;}
.ws69{word-spacing:13.230333pt;}
.wsfb{word-spacing:13.283467pt;}
.ws52{word-spacing:13.336601pt;}
.ws61{word-spacing:13.549136pt;}
.ws1af{word-spacing:13.559797pt;}
.wse3{word-spacing:13.569926pt;}
.wsb1{word-spacing:13.602270pt;}
.wsd{word-spacing:13.628928pt;}
.ws183{word-spacing:13.655404pt;}
.ws8d{word-spacing:13.680354pt;}
.ws8f{word-spacing:13.708538pt;}
.ws1bf{word-spacing:13.857347pt;}
.ws16c{word-spacing:13.863978pt;}
.ws1a0{word-spacing:13.942362pt;}
.ws15c{word-spacing:13.974207pt;}
.ws184{word-spacing:14.080475pt;}
.ws164{word-spacing:14.083448pt;}
.ws192{word-spacing:14.154898pt;}
.ws173{word-spacing:14.194030pt;}
.ws79{word-spacing:14.293010pt;}
.ws17d{word-spacing:14.346144pt;}
.ws9{word-spacing:14.394061pt;}
.wsc0{word-spacing:14.452412pt;}
.wsa9{word-spacing:14.505546pt;}
.ws139{word-spacing:14.553366pt;}
.ws7e{word-spacing:14.558679pt;}
.ws134{word-spacing:14.680554pt;}
.ws19a{word-spacing:14.707491pt;}
.wsdc{word-spacing:14.824349pt;}
.ws18a{word-spacing:14.835013pt;}
.ws5e{word-spacing:14.877483pt;}
.ws1a5{word-spacing:14.920027pt;}
.wsff{word-spacing:14.983750pt;}
.wsf3{word-spacing:15.036884pt;}
.ws1ab{word-spacing:15.047549pt;}
.ws137{word-spacing:15.083109pt;}
.wsc6{word-spacing:15.090018pt;}
.ws152{word-spacing:15.127681pt;}
.ws163{word-spacing:15.235169pt;}
.ws177{word-spacing:15.249420pt;}
.ws1b5{word-spacing:15.302592pt;}
.ws149{word-spacing:15.361122pt;}
.ws18c{word-spacing:15.430114pt;}
.wsf8{word-spacing:15.568223pt;}
.wsb{word-spacing:15.589581pt;}
.ws6a{word-spacing:15.621357pt;}
.wse8{word-spacing:15.674491pt;}
.wse{word-spacing:15.685222pt;}
.wsd9{word-spacing:15.792185pt;}
.wsca{word-spacing:15.833892pt;}
.ws1b4{word-spacing:15.855186pt;}
.ws95{word-spacing:15.887026pt;}
.ws1c{word-spacing:15.940160pt;}
.ws118{word-spacing:15.993294pt;}
.ws5d{word-spacing:16.046428pt;}
.ws140{word-spacing:16.099562pt;}
.ws13e{word-spacing:16.258963pt;}
.wscb{word-spacing:16.312097pt;}
.wsf6{word-spacing:16.421904pt;}
.ws8a{word-spacing:16.471499pt;}
.wse6{word-spacing:16.524633pt;}
.ws1cb{word-spacing:16.620315pt;}
.wse7{word-spacing:16.630900pt;}
.ws138{word-spacing:16.687138pt;}
.ws131{word-spacing:16.690944pt;}
.ws9b{word-spacing:16.737168pt;}
.ws30{word-spacing:16.843436pt;}
.ws151{word-spacing:17.002837pt;}
.ws6{word-spacing:17.215488pt;}
.wsa3{word-spacing:17.359986pt;}
.ws112{word-spacing:17.693578pt;}
.ws13f{word-spacing:17.799845pt;}
.ws157{word-spacing:17.869390pt;}
.ws1a{word-spacing:17.884979pt;}
.ws1ae{word-spacing:17.895531pt;}
.ws86{word-spacing:17.982273pt;}
.ws8{word-spacing:18.267546pt;}
.ws14f{word-spacing:18.331184pt;}
.wsbf{word-spacing:18.437452pt;}
.ws171{word-spacing:18.448229pt;}
.ws51{word-spacing:18.540270pt;}
.ws45{word-spacing:18.543696pt;}
.ws14a{word-spacing:18.544229pt;}
.ws83{word-spacing:18.649987pt;}
.ws14e{word-spacing:18.701807pt;}
.ws81{word-spacing:18.702659pt;}
.wse2{word-spacing:18.862523pt;}
.wsc2{word-spacing:19.075058pt;}
.wsdf{word-spacing:19.234460pt;}
.ws2b{word-spacing:19.287594pt;}
.ws3b{word-spacing:19.298378pt;}
.ws13a{word-spacing:19.419100pt;}
.ws11e{word-spacing:19.496703pt;}
.wsd4{word-spacing:19.500129pt;}
.ws117{word-spacing:19.765798pt;}
.ws3a{word-spacing:19.883414pt;}
.wsc5{word-spacing:19.978334pt;}
.wsbe{word-spacing:20.137735pt;}
.ws1a2{word-spacing:20.148413pt;}
.ws84{word-spacing:20.171904pt;}
.ws1cd{word-spacing:20.318442pt;}
.wscd{word-spacing:20.368185pt;}
.ws62{word-spacing:20.456539pt;}
.ws66{word-spacing:20.722208pt;}
.ws5a{word-spacing:20.934743pt;}
.wsc3{word-spacing:21.041011pt;}
.ws12f{word-spacing:22.022141pt;}
.wsda{word-spacing:22.316224pt;}
.ws11f{word-spacing:22.337111pt;}
.ws6c{word-spacing:22.572725pt;}
.ws93{word-spacing:22.582386pt;}
.wsa7{word-spacing:23.749319pt;}
.wsc7{word-spacing:24.335311pt;}
.ws38{word-spacing:24.928244pt;}
.ws1a3{word-spacing:25.334291pt;}
.ws1bc{word-spacing:25.419306pt;}
.ws4b{word-spacing:25.578118pt;}
.ws165{word-spacing:25.812629pt;}
.wsfa{word-spacing:26.460666pt;}
.ws7f{word-spacing:26.513799pt;}
.ws53{word-spacing:26.548789pt;}
.wsc8{word-spacing:26.644451pt;}
.wse4{word-spacing:26.803703pt;}
.ws8e{word-spacing:26.916679pt;}
.ws5f{word-spacing:28.145052pt;}
.ws193{word-spacing:29.585011pt;}
.ws19b{word-spacing:31.497835pt;}
.ws1a7{word-spacing:31.625357pt;}
.wse0{word-spacing:32.455895pt;}
.wsc4{word-spacing:32.527178pt;}
.wsd3{word-spacing:32.730462pt;}
.wsbd{word-spacing:33.368068pt;}
.ws65{word-spacing:33.952541pt;}
.ws168{word-spacing:49.089768pt;}
.ws1cf{word-spacing:50.115989pt;}
.wseb{word-spacing:53.134000pt;}
.ws108{word-spacing:64.191205pt;}
.ws1ce{word-spacing:65.631117pt;}
.ws16d{word-spacing:81.243327pt;}
.ws15d{word-spacing:83.824198pt;}
.ws15e{word-spacing:105.077798pt;}
.ws16a{word-spacing:122.186118pt;}
.ws16b{word-spacing:122.190309pt;}
.wsee{word-spacing:123.834448pt;}
.ws15f{word-spacing:124.036010pt;}
.ws146{word-spacing:129.714218pt;}
.ws14b{word-spacing:151.830056pt;}
.ws145{word-spacing:152.152659pt;}
.ws16f{word-spacing:154.339677pt;}
.ws16e{word-spacing:154.343868pt;}
.ws148{word-spacing:230.772905pt;}
._30{margin-left:-160.651337pt;}
._0{margin-left:-10.201728pt;}
._7{margin-left:-5.180592pt;}
._4{margin-left:-4.250709pt;}
._6{margin-left:-3.267760pt;}
._3{margin-left:-2.337899pt;}
._1{margin-left:-1.275216pt;}
._a{width:1.010742pt;}
._9{width:2.656693pt;}
._36{width:3.551502pt;}
._2{width:4.871618pt;}
._26{width:7.098702pt;}
._2a{width:8.926490pt;}
._c{width:13.124068pt;}
._1c{width:14.186742pt;}
._8{width:15.828685pt;}
._2b{width:17.013613pt;}
._11{width:18.065515pt;}
._1e{width:19.494015pt;}
._f{width:21.120748pt;}
._1f{width:22.205425pt;}
._1b{width:23.107953pt;}
._12{width:24.600980pt;}
._b{width:26.566933pt;}
._10{width:27.789012pt;}
._5{width:29.314150pt;}
._14{width:31.390943pt;}
._29{width:33.834489pt;}
._e{width:35.586893pt;}
._37{width:39.732394pt;}
._13{width:41.656739pt;}
._d{width:42.801169pt;}
._1d{width:49.458967pt;}
._1a{width:63.760800pt;}
._22{width:68.179678pt;}
._20{width:69.701622pt;}
._18{width:80.512778pt;}
._28{width:85.040281pt;}
._32{width:90.890495pt;}
._25{width:94.408491pt;}
._19{width:96.115942pt;}
._35{width:102.164570pt;}
._21{width:104.745040pt;}
._31{width:111.769980pt;}
._23{width:121.033201pt;}
._34{width:123.044054pt;}
._2f{width:124.036010pt;}
._2e{width:136.958198pt;}
._2c{width:139.170603pt;}
._33{width:143.923539pt;}
._2d{width:145.289610pt;}
._17{width:191.281130pt;}
._27{width:224.353002pt;}
._24{width:243.098677pt;}
._15{width:498.221605pt;}
._16{width:515.952394pt;}
.fs15{font-size:20.879484pt;}
.fsd{font-size:21.917720pt;}
.fsf{font-size:23.134220pt;}
.fs17{font-size:29.927086pt;}
.fs7{font-size:30.605407pt;}
.fs9{font-size:30.952886pt;}
.fsb{font-size:31.801644pt;}
.fs5{font-size:31.880533pt;}
.fs12{font-size:32.122253pt;}
.fs6{font-size:37.193600pt;}
.fs10{font-size:39.395574pt;}
.fs13{font-size:41.300434pt;}
.fs14{font-size:41.758968pt;}
.fs4{font-size:42.507200pt;}
.fs16{font-size:42.753103pt;}
.fsc{font-size:43.835440pt;}
.fs8{font-size:44.218535pt;}
.fsa{font-size:45.431050pt;}
.fs11{font-size:45.889064pt;}
.fse{font-size:46.268440pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y199{bottom:3.283096pt;}
.y174{bottom:3.305500pt;}
.y172{bottom:3.329700pt;}
.y176{bottom:3.352800pt;}
.y1e3{bottom:3.480054pt;}
.y204{bottom:3.562902pt;}
.y1cc{bottom:4.045337pt;}
.y169{bottom:5.783800pt;}
.y185{bottom:6.412498pt;}
.y15c{bottom:6.447963pt;}
.y164{bottom:6.624772pt;}
.yf9{bottom:6.633589pt;}
.y1d1{bottom:6.691560pt;}
.y1ee{bottom:14.986970pt;}
.y1e4{bottom:14.988018pt;}
.y191{bottom:16.774339pt;}
.y1fc{bottom:18.205022pt;}
.y168{bottom:18.934300pt;}
.y186{bottom:19.433711pt;}
.y1cb{bottom:23.172305pt;}
.y156{bottom:24.203996pt;}
.y160{bottom:24.867693pt;}
.y171{bottom:27.386700pt;}
.y192{bottom:27.630997pt;}
.y19a{bottom:28.582018pt;}
.y1ef{bottom:29.465713pt;}
.y1cd{bottom:30.922125pt;}
.y16a{bottom:31.014500pt;}
.y157{bottom:31.671693pt;}
.y1fd{bottom:31.798978pt;}
.y161{bottom:32.540162pt;}
.y1a2{bottom:34.129966pt;}
.y1e5{bottom:36.849169pt;}
.y205{bottom:41.307559pt;}
.y1eb{bottom:41.325769pt;}
.y187{bottom:42.457398pt;}
.y193{bottom:43.478042pt;}
.y1f0{bottom:43.944455pt;}
.y1d4{bottom:44.505612pt;}
.y1a1{bottom:45.948520pt;}
.y20c{bottom:46.013035pt;}
.y18e{bottom:48.614464pt;}
.y1fe{bottom:48.927941pt;}
.y16b{bottom:50.041200pt;}
.y175{bottom:51.207200pt;}
.y173{bottom:51.337000pt;}
.y158{bottom:57.202787pt;}
.y1a0{bottom:58.205017pt;}
.y1f1{bottom:58.423197pt;}
.y1d3{bottom:58.560076pt;}
.y177{bottom:58.661900pt;}
.y1e6{bottom:58.711368pt;}
.y20b{bottom:58.779831pt;}
.y1f7{bottom:59.174537pt;}
.y194{bottom:59.325086pt;}
.y15d{bottom:59.565153pt;}
.y1d2{bottom:59.869370pt;}
.y165{bottom:61.193927pt;}
.y1ce{bottom:64.603323pt;}
.y188{bottom:65.482247pt;}
.y1ff{bottom:66.057977pt;}
.y16c{bottom:69.069000pt;}
.y19f{bottom:70.023571pt;}
.y1f8{bottom:70.033855pt;}
.y20a{bottom:71.546627pt;}
.y1f2{bottom:72.901939pt;}
.y195{bottom:75.172130pt;}
.y162{bottom:80.362560pt;}
.y1e7{bottom:80.573566pt;}
.y1ea{bottom:81.697956pt;}
.y19e{bottom:82.280068pt;}
.y159{bottom:82.734989pt;}
.y200{bottom:83.186941pt;}
.y209{bottom:84.312350pt;}
.y18d{bottom:84.891576pt;}
.y1f3{bottom:87.380681pt;}
.y16d{bottom:88.095700pt;}
.y189{bottom:88.507096pt;}
.y1f9{bottom:90.477206pt;}
.y196{bottom:91.019174pt;}
.y18c{bottom:92.098234pt;}
.y19d{bottom:94.098622pt;}
.y208{bottom:97.079146pt;}
.y1cf{bottom:98.283370pt;}
.y201{bottom:100.315904pt;}
.y1f4{bottom:101.859424pt;}
.y1e8{bottom:102.435765pt;}
.y19c{bottom:106.093144pt;}
.y197{bottom:106.866219pt;}
.y16e{bottom:107.123500pt;}
.y15a{bottom:108.266083pt;}
.y207{bottom:109.845942pt;}
.y18a{bottom:111.531944pt;}
.y1f5{bottom:116.337118pt;}
.y202{bottom:117.445940pt;}
.y19b{bottom:117.911697pt;}
.y206{bottom:122.612738pt;}
.y198{bottom:122.713263pt;}
.y16f{bottom:126.150200pt;}
.y163{bottom:128.183818pt;}
.y1d0{bottom:131.963417pt;}
.y15b{bottom:133.797176pt;}
.y203{bottom:134.574904pt;}
.y34{bottom:167.260000pt;}
.y25d{bottom:174.976000pt;}
.y33{bottom:183.200000pt;}
.y25c{bottom:186.932000pt;}
.y296{bottom:195.156000pt;}
.y25b{bottom:198.886667pt;}
.y32{bottom:199.140000pt;}
.y154{bottom:199.338667pt;}
.y1c2{bottom:199.504000pt;}
.y1fa{bottom:200.313333pt;}
.yf5{bottom:202.828000pt;}
.y295{bottom:207.110667pt;}
.y25a{bottom:210.842667pt;}
.yf6{bottom:211.938667pt;}
.y55{bottom:215.080000pt;}
.y31{bottom:215.081333pt;}
.y153{bottom:215.280000pt;}
.y1c1{bottom:215.444000pt;}
.y294{bottom:219.066667pt;}
.y1ed{bottom:219.441333pt;}
.yf4{bottom:220.925333pt;}
.y259{bottom:222.797333pt;}
.y54{bottom:231.020000pt;}
.y30{bottom:231.021333pt;}
.y152{bottom:231.220000pt;}
.y1c0{bottom:231.384000pt;}
.y258{bottom:234.752000pt;}
.y234{bottom:235.004000pt;}
.y124{bottom:236.540000pt;}
.y1f6{bottom:237.792041pt;}
.yf3{bottom:242.624000pt;}
.y293{bottom:242.976000pt;}
.y257{bottom:246.708000pt;}
.y9c{bottom:246.960000pt;}
.y2f{bottom:246.961333pt;}
.y151{bottom:247.160000pt;}
.y1bf{bottom:247.325333pt;}
.y292{bottom:254.932000pt;}
.yf2{bottom:258.564000pt;}
.y256{bottom:258.662667pt;}
.y233{bottom:258.705333pt;}
.y2e{bottom:262.901333pt;}
.y1be{bottom:263.265333pt;}
.y123{bottom:263.337333pt;}
.y291{bottom:266.886667pt;}
.ybe{bottom:267.990667pt;}
.y150{bottom:268.081333pt;}
.y255{bottom:270.617333pt;}
.yf1{bottom:274.504000pt;}
.y232{bottom:274.645333pt;}
.y2d{bottom:278.841333pt;}
.y290{bottom:278.842667pt;}
.y1bd{bottom:279.205333pt;}
.y122{bottom:279.277333pt;}
.y254{bottom:282.573333pt;}
.y9b{bottom:283.884000pt;}
.yf0{bottom:290.445333pt;}
.y231{bottom:290.586667pt;}
.y28f{bottom:290.797333pt;}
.y14f{bottom:294.117333pt;}
.ybd{bottom:294.178667pt;}
.y253{bottom:294.528000pt;}
.y2c{bottom:294.781333pt;}
.y1bc{bottom:295.145333pt;}
.y121{bottom:295.218667pt;}
.y28e{bottom:302.752000pt;}
.yef{bottom:306.385333pt;}
.y252{bottom:306.482667pt;}
.y230{bottom:306.526667pt;}
.y9a{bottom:310.006667pt;}
.y14e{bottom:310.057333pt;}
.ybc{bottom:310.118667pt;}
.y53{bottom:310.721333pt;}
.y2b{bottom:310.722667pt;}
.y1bb{bottom:311.085333pt;}
.y120{bottom:311.158667pt;}
.y28d{bottom:314.708000pt;}
.y251{bottom:318.438667pt;}
.yee{bottom:322.325333pt;}
.y22f{bottom:322.466667pt;}
.y99{bottom:325.946667pt;}
.y14d{bottom:325.997333pt;}
.ybb{bottom:326.058667pt;}
.y2a{bottom:326.662667pt;}
.y11f{bottom:327.098667pt;}
.y1ba{bottom:327.268000pt;}
.y183{bottom:328.353333pt;}
.y250{bottom:330.393333pt;}
.yed{bottom:338.265333pt;}
.y22e{bottom:338.406667pt;}
.y28c{bottom:338.617333pt;}
.y98{bottom:341.886667pt;}
.y14c{bottom:341.937333pt;}
.yba{bottom:341.998667pt;}
.y24f{bottom:342.349333pt;}
.y29{bottom:342.602667pt;}
.y11e{bottom:343.038667pt;}
.y1b9{bottom:343.208000pt;}
.y182{bottom:344.293333pt;}
.y1ec{bottom:349.970667pt;}
.y28b{bottom:350.573333pt;}
.yec{bottom:354.205333pt;}
.y24e{bottom:354.304000pt;}
.y22d{bottom:354.346667pt;}
.y97{bottom:357.826667pt;}
.y14b{bottom:357.878667pt;}
.yb9{bottom:357.940000pt;}
.y52{bottom:358.542667pt;}
.y28{bottom:358.810667pt;}
.y11d{bottom:358.978667pt;}
.y1b8{bottom:359.148000pt;}
.y181{bottom:360.233333pt;}
.y28a{bottom:362.528000pt;}
.y1e2{bottom:367.238667pt;}
.yeb{bottom:370.033333pt;}
.y22c{bottom:370.286667pt;}
.y24d{bottom:373.077333pt;}
.y96{bottom:373.766667pt;}
.y14a{bottom:373.818667pt;}
.yb8{bottom:374.030667pt;}
.y51{bottom:374.482667pt;}
.y289{bottom:374.484000pt;}
.y27{bottom:374.750667pt;}
.y1b7{bottom:375.089333pt;}
.y180{bottom:376.174667pt;}
.y11c{bottom:385.097333pt;}
.y1e9{bottom:385.590423pt;}
.yea{bottom:385.974667pt;}
.y22b{bottom:386.228000pt;}
.y288{bottom:386.438667pt;}
.y95{bottom:389.708000pt;}
.y149{bottom:389.758667pt;}
.yb7{bottom:389.970667pt;}
.y50{bottom:390.422667pt;}
.y26{bottom:390.690667pt;}
.y1b6{bottom:391.029333pt;}
.y17f{bottom:392.114667pt;}
.y24c{bottom:395.617333pt;}
.y287{bottom:398.393333pt;}
.ye9{bottom:401.914667pt;}
.y22a{bottom:402.168000pt;}
.y94{bottom:405.648000pt;}
.y148{bottom:405.698667pt;}
.yb6{bottom:405.910667pt;}
.y4f{bottom:406.362667pt;}
.y25{bottom:406.630667pt;}
.y1b5{bottom:406.969333pt;}
.y17e{bottom:408.054667pt;}
.y286{bottom:410.349333pt;}
.y11b{bottom:410.992000pt;}
.y24b{bottom:411.557333pt;}
.ye8{bottom:417.854667pt;}
.y229{bottom:418.108000pt;}
.y93{bottom:421.588000pt;}
.y147{bottom:421.772000pt;}
.yb5{bottom:421.850667pt;}
.y4e{bottom:422.304000pt;}
.y24{bottom:422.570667pt;}
.y1b4{bottom:423.152000pt;}
.y17d{bottom:423.994667pt;}
.y11a{bottom:426.932000pt;}
.y24a{bottom:427.497333pt;}
.ye7{bottom:433.794667pt;}
.y228{bottom:434.048000pt;}
.y285{bottom:434.258667pt;}
.y92{bottom:437.528000pt;}
.y146{bottom:437.712000pt;}
.yb4{bottom:437.792000pt;}
.y4d{bottom:438.244000pt;}
.y23{bottom:438.510667pt;}
.y1b3{bottom:439.092000pt;}
.y17c{bottom:439.934667pt;}
.y119{bottom:442.872000pt;}
.y249{bottom:443.438667pt;}
.y284{bottom:446.214667pt;}
.ye6{bottom:449.734667pt;}
.y227{bottom:449.988000pt;}
.y91{bottom:453.468000pt;}
.y145{bottom:453.652000pt;}
.yb3{bottom:453.732000pt;}
.y6e{bottom:454.184000pt;}
.y4c{bottom:454.353333pt;}
.y22{bottom:454.452000pt;}
.y1b2{bottom:455.032000pt;}
.y17b{bottom:455.876000pt;}
.y283{bottom:458.169333pt;}
.y118{bottom:458.813333pt;}
.y248{bottom:459.378667pt;}
.ye5{bottom:465.676000pt;}
.y226{bottom:465.929333pt;}
.y90{bottom:469.408000pt;}
.yb2{bottom:469.672000pt;}
.y144{bottom:469.725333pt;}
.y6d{bottom:470.124000pt;}
.y282{bottom:470.125333pt;}
.y4b{bottom:470.293333pt;}
.y21{bottom:470.392000pt;}
.y1b1{bottom:470.972000pt;}
.y17a{bottom:473.506667pt;}
.y117{bottom:474.976000pt;}
.y247{bottom:475.318667pt;}
.ye4{bottom:481.392000pt;}
.y225{bottom:481.668000pt;}
.y281{bottom:482.080000pt;}
.y8f{bottom:485.349333pt;}
.yb1{bottom:485.612000pt;}
.y143{bottom:485.665333pt;}
.y6c{bottom:486.064000pt;}
.y4a{bottom:486.233333pt;}
.y20{bottom:486.332000pt;}
.y1b0{bottom:486.913333pt;}
.y179{bottom:489.446667pt;}
.y116{bottom:490.916000pt;}
.y1e1{bottom:491.324000pt;}
.y280{bottom:494.034667pt;}
.y246{bottom:495.176000pt;}
.ye3{bottom:497.332000pt;}
.y224{bottom:497.608000pt;}
.y8e{bottom:501.289333pt;}
.yb0{bottom:501.552000pt;}
.y142{bottom:501.605333pt;}
.y6b{bottom:502.005333pt;}
.y49{bottom:502.173333pt;}
.y1f{bottom:502.272000pt;}
.y1af{bottom:502.853333pt;}
.y27f{bottom:505.990667pt;}
.y115{bottom:506.856000pt;}
.ye2{bottom:513.272000pt;}
.y223{bottom:513.548000pt;}
.y8d{bottom:517.229333pt;}
.yaf{bottom:517.492000pt;}
.y141{bottom:517.546667pt;}
.y6a{bottom:517.945333pt;}
.y48{bottom:518.113333pt;}
.y1e{bottom:518.212000pt;}
.y245{bottom:518.480000pt;}
.y1ae{bottom:518.793333pt;}
.y114{bottom:522.796000pt;}
.ye1{bottom:529.212000pt;}
.y222{bottom:529.489333pt;}
.y27e{bottom:529.900000pt;}
.y1e0{bottom:531.457333pt;}
.y8c{bottom:533.169333pt;}
.yae{bottom:533.433333pt;}
.y140{bottom:533.486667pt;}
.y69{bottom:533.885333pt;}
.y1d{bottom:534.152000pt;}
.y244{bottom:534.420000pt;}
.y1ad{bottom:534.733333pt;}
.y113{bottom:538.736000pt;}
.y47{bottom:539.253333pt;}
.y178{bottom:539.386667pt;}
.y27d{bottom:541.856000pt;}
.y221{bottom:545.429333pt;}
.y1df{bottom:547.397333pt;}
.ye0{bottom:548.068000pt;}
.y8b{bottom:549.253333pt;}
.yad{bottom:549.373333pt;}
.y13f{bottom:549.426667pt;}
.y68{bottom:549.825333pt;}
.y1c{bottom:550.093333pt;}
.y243{bottom:550.360000pt;}
.y1ac{bottom:550.673333pt;}
.y27c{bottom:553.810667pt;}
.ydd{bottom:554.629333pt;}
.y112{bottom:554.898667pt;}
.y167{bottom:558.514667pt;}
.y220{bottom:561.369333pt;}
.y1de{bottom:563.337333pt;}
.ydc{bottom:563.741333pt;}
.y8a{bottom:565.193333pt;}
.yac{bottom:565.313333pt;}
.y13e{bottom:565.366667pt;}
.y46{bottom:565.596000pt;}
.y67{bottom:565.765333pt;}
.y27b{bottom:565.766667pt;}
.y242{bottom:566.300000pt;}
.y1ab{bottom:566.613333pt;}
.y111{bottom:570.840000pt;}
.y1b{bottom:571.821333pt;}
.ydf{bottom:576.360000pt;}
.y21f{bottom:577.309333pt;}
.y27a{bottom:577.721333pt;}
.y1dd{bottom:579.277333pt;}
.yde{bottom:580.345333pt;}
.y89{bottom:581.133333pt;}
.y13d{bottom:581.306667pt;}
.yab{bottom:581.480000pt;}
.y45{bottom:581.536000pt;}
.y66{bottom:581.705333pt;}
.y241{bottom:582.240000pt;}
.y1aa{bottom:582.554667pt;}
.y110{bottom:586.780000pt;}
.y279{bottom:589.676000pt;}
.y21e{bottom:593.049333pt;}
.y170{bottom:593.060167pt;}
.y1dc{bottom:595.217333pt;}
.y88{bottom:597.073333pt;}
.y13c{bottom:597.246667pt;}
.yaa{bottom:597.420000pt;}
.y44{bottom:597.477333pt;}
.y65{bottom:597.646667pt;}
.y240{bottom:598.180000pt;}
.ydb{bottom:598.332000pt;}
.y1a9{bottom:598.857333pt;}
.y278{bottom:601.632000pt;}
.y1a{bottom:602.692000pt;}
.y10f{bottom:602.720000pt;}
.y21d{bottom:608.989333pt;}
.y1db{bottom:611.158667pt;}
.y87{bottom:613.013333pt;}
.y13b{bottom:613.188000pt;}
.ya9{bottom:613.360000pt;}
.y43{bottom:613.417333pt;}
.y64{bottom:613.586667pt;}
.y23f{bottom:614.121333pt;}
.yda{bottom:614.272000pt;}
.y1a8{bottom:614.798667pt;}
.y19{bottom:616.242667pt;}
.y10e{bottom:618.660000pt;}
.y21c{bottom:624.929333pt;}
.y277{bottom:625.541333pt;}
.y1da{bottom:627.720000pt;}
.y86{bottom:628.953333pt;}
.y13a{bottom:629.128000pt;}
.ya8{bottom:629.300000pt;}
.y42{bottom:629.357333pt;}
.y18{bottom:629.526667pt;}
.y23e{bottom:629.793333pt;}
.yd9{bottom:630.212000pt;}
.y1a7{bottom:630.738667pt;}
.y10d{bottom:634.600000pt;}
.y276{bottom:637.497333pt;}
.y21b{bottom:640.869333pt;}
.y17{bottom:642.810667pt;}
.y1d9{bottom:643.660000pt;}
.y85{bottom:644.894667pt;}
.y139{bottom:645.068000pt;}
.ya7{bottom:645.240000pt;}
.y41{bottom:645.297333pt;}
.y63{bottom:645.466667pt;}
.y23d{bottom:645.734667pt;}
.y1a6{bottom:646.921333pt;}
.y275{bottom:649.452000pt;}
.yd8{bottom:649.970667pt;}
.y10c{bottom:650.540000pt;}
.y16{bottom:656.093333pt;}
.y21a{bottom:656.609333pt;}
.y1d8{bottom:659.600000pt;}
.y84{bottom:660.834667pt;}
.y138{bottom:661.008000pt;}
.ya6{bottom:661.181333pt;}
.y40{bottom:661.237333pt;}
.y62{bottom:661.406667pt;}
.y23c{bottom:661.674667pt;}
.y1a5{bottom:662.861333pt;}
.yd5{bottom:665.644000pt;}
.y10b{bottom:666.481333pt;}
.y15{bottom:669.377333pt;}
.y219{bottom:672.549333pt;}
.y274{bottom:673.362667pt;}
.y83{bottom:676.774667pt;}
.y137{bottom:676.948000pt;}
.ya5{bottom:677.121333pt;}
.y3f{bottom:677.346667pt;}
.y23b{bottom:677.614667pt;}
.yd7{bottom:678.262667pt;}
.yd6{bottom:682.248000pt;}
.y14{bottom:682.661333pt;}
.y10a{bottom:682.754667pt;}
.y273{bottom:685.317333pt;}
.y218{bottom:688.489333pt;}
.y136{bottom:692.889333pt;}
.y82{bottom:692.929333pt;}
.ya4{bottom:693.061333pt;}
.y3e{bottom:693.286667pt;}
.y61{bottom:693.288000pt;}
.y23a{bottom:693.554667pt;}
.y13{bottom:695.944000pt;}
.y272{bottom:697.273333pt;}
.y109{bottom:698.694667pt;}
.yd4{bottom:698.924000pt;}
.y166{bottom:703.853333pt;}
.y217{bottom:704.429333pt;}
.y1d7{bottom:706.686667pt;}
.y135{bottom:708.829333pt;}
.y81{bottom:708.869333pt;}
.y1a4{bottom:708.937333pt;}
.ya3{bottom:709.001333pt;}
.y12{bottom:709.228000pt;}
.y239{bottom:709.494667pt;}
.y108{bottom:714.634667pt;}
.yd3{bottom:714.864000pt;}
.y216{bottom:720.369333pt;}
.y15f{bottom:721.121333pt;}
.y271{bottom:721.182667pt;}
.y11{bottom:722.512000pt;}
.y1d6{bottom:722.626667pt;}
.y134{bottom:724.769333pt;}
.y80{bottom:724.809333pt;}
.y1a3{bottom:724.877333pt;}
.ya2{bottom:724.941333pt;}
.y3d{bottom:725.168000pt;}
.y238{bottom:725.434667pt;}
.y107{bottom:730.576000pt;}
.yd2{bottom:730.805333pt;}
.y270{bottom:733.138667pt;}
.y10{bottom:735.794667pt;}
.y215{bottom:736.310667pt;}
.y1d5{bottom:738.566667pt;}
.y133{bottom:740.709333pt;}
.y7f{bottom:740.750667pt;}
.ya1{bottom:740.881333pt;}
.y3c{bottom:741.108000pt;}
.y237{bottom:741.376000pt;}
.y190{bottom:744.005333pt;}
.y26f{bottom:745.093333pt;}
.y106{bottom:746.516000pt;}
.yd1{bottom:746.745333pt;}
.yf{bottom:749.078667pt;}
.y214{bottom:752.250667pt;}
.y7e{bottom:756.690667pt;}
.ya0{bottom:756.822667pt;}
.y132{bottom:756.849333pt;}
.y3b{bottom:757.048000pt;}
.y236{bottom:757.316000pt;}
.y1ca{bottom:757.696000pt;}
.ye{bottom:762.361333pt;}
.y105{bottom:762.456000pt;}
.yd0{bottom:762.685333pt;}
.y213{bottom:768.190667pt;}
.y26e{bottom:769.004000pt;}
.y7d{bottom:772.630667pt;}
.y9f{bottom:772.762667pt;}
.y131{bottom:772.789333pt;}
.y3a{bottom:772.988000pt;}
.y235{bottom:773.256000pt;}
.yd{bottom:775.645333pt;}
.y104{bottom:778.396000pt;}
.ycf{bottom:778.625333pt;}
.y26d{bottom:780.958667pt;}
.y212{bottom:783.929333pt;}
.y7c{bottom:788.570667pt;}
.y9e{bottom:788.702667pt;}
.y130{bottom:788.729333pt;}
.yc{bottom:788.929333pt;}
.y26c{bottom:792.914667pt;}
.y103{bottom:794.336000pt;}
.yce{bottom:794.565333pt;}
.y211{bottom:799.870667pt;}
.yb{bottom:802.212000pt;}
.y7b{bottom:804.510667pt;}
.y9d{bottom:804.642667pt;}
.y12f{bottom:804.669333pt;}
.y39{bottom:804.869333pt;}
.ycd{bottom:810.281333pt;}
.ya{bottom:815.496000pt;}
.y210{bottom:815.810667pt;}
.y26b{bottom:816.824000pt;}
.y7a{bottom:820.594667pt;}
.y12e{bottom:820.609333pt;}
.y38{bottom:820.809333pt;}
.ycc{bottom:826.222667pt;}
.y9{bottom:828.780000pt;}
.y20f{bottom:831.750667pt;}
.y79{bottom:836.534667pt;}
.y12d{bottom:836.550667pt;}
.y37{bottom:836.749333pt;}
.y102{bottom:839.164000pt;}
.y26a{bottom:840.734667pt;}
.y8{bottom:842.062667pt;}
.ycb{bottom:842.162667pt;}
.y101{bottom:851.118667pt;}
.y78{bottom:852.474667pt;}
.y12c{bottom:852.490667pt;}
.y36{bottom:852.689333pt;}
.y7{bottom:855.346667pt;}
.yca{bottom:858.102667pt;}
.y269{bottom:864.645333pt;}
.y77{bottom:868.414667pt;}
.y12b{bottom:868.430667pt;}
.y35{bottom:868.629333pt;}
.y6{bottom:868.630667pt;}
.y100{bottom:870.014667pt;}
.y15e{bottom:872.002667pt;}
.yc9{bottom:874.042667pt;}
.y20e{bottom:875.037333pt;}
.y268{bottom:876.600000pt;}
.y76{bottom:884.354667pt;}
.y12a{bottom:884.370667pt;}
.y60{bottom:884.570667pt;}
.y267{bottom:888.556000pt;}
.y155{bottom:889.270667pt;}
.yc8{bottom:889.982667pt;}
.y20d{bottom:890.978667pt;}
.yff{bottom:891.136000pt;}
.y18f{bottom:900.108000pt;}
.y75{bottom:900.296000pt;}
.y129{bottom:900.310667pt;}
.y5f{bottom:900.510667pt;}
.yc7{bottom:905.922667pt;}
.y1fb{bottom:910.106667pt;}
.y266{bottom:912.465333pt;}
.y5{bottom:915.433333pt;}
.y74{bottom:916.236000pt;}
.y128{bottom:916.250667pt;}
.y5e{bottom:916.450667pt;}
.y184{bottom:919.236000pt;}
.yfe{bottom:921.218667pt;}
.y265{bottom:924.421333pt;}
.y4{bottom:931.872000pt;}
.y73{bottom:932.176000pt;}
.y127{bottom:932.192000pt;}
.y5d{bottom:932.390667pt;}
.y1c9{bottom:936.077333pt;}
.y264{bottom:936.376000pt;}
.yfd{bottom:940.346667pt;}
.y18b{bottom:942.396692pt;}
.y1c8{bottom:944.562667pt;}
.y72{bottom:948.116000pt;}
.y126{bottom:948.132000pt;}
.y5c{bottom:948.330667pt;}
.y3{bottom:948.506667pt;}
.yc6{bottom:948.962667pt;}
.y1c7{bottom:957.446667pt;}
.y263{bottom:960.286667pt;}
.yc5{bottom:960.917333pt;}
.yfc{bottom:961.340000pt;}
.y71{bottom:964.056000pt;}
.y125{bottom:964.270667pt;}
.y5b{bottom:964.272000pt;}
.y262{bottom:972.241333pt;}
.yc4{bottom:972.873333pt;}
.y1c6{bottom:976.342667pt;}
.yfb{bottom:978.608000pt;}
.y70{bottom:979.996000pt;}
.y5a{bottom:980.212000pt;}
.y261{bottom:984.196000pt;}
.yc3{bottom:984.828000pt;}
.y1c5{bottom:988.298667pt;}
.y2{bottom:990.350667pt;}
.y6f{bottom:995.937333pt;}
.y59{bottom:996.152000pt;}
.yc2{bottom:996.782667pt;}
.yfa{bottom:999.601333pt;}
.y1c4{bottom:1000.253333pt;}
.y260{bottom:1008.106667pt;}
.yc1{bottom:1008.738667pt;}
.y58{bottom:1012.092000pt;}
.yf8{bottom:1016.869333pt;}
.y1c3{bottom:1019.149333pt;}
.y25f{bottom:1020.062667pt;}
.y1{bottom:1027.544000pt;}
.yc0{bottom:1027.633333pt;}
.y57{bottom:1028.032000pt;}
.y25e{bottom:1032.017333pt;}
.yf7{bottom:1037.862667pt;}
.y56{bottom:1043.972000pt;}
.ybf{bottom:1048.754667pt;}
.hc{height:2.125355pt;}
.h2e{height:15.659613pt;}
.h1d{height:16.438290pt;}
.h14{height:17.007602pt;}
.h21{height:17.350665pt;}
.h15{height:22.954055pt;}
.hb{height:26.147101pt;}
.h9{height:29.244954pt;}
.h36{height:29.458287pt;}
.h23{height:29.546681pt;}
.ha{height:29.925069pt;}
.h24{height:30.350141pt;}
.h28{height:30.975325pt;}
.h2c{height:31.319226pt;}
.h35{height:32.064827pt;}
.h1b{height:32.876580pt;}
.h13{height:32.900710pt;}
.h17{height:33.163901pt;}
.h8{height:33.187635pt;}
.h7{height:33.426739pt;}
.h19{height:34.073288pt;}
.h26{height:34.416798pt;}
.h31{height:34.483969pt;}
.h1f{height:34.701330pt;}
.h34{height:35.684123pt;}
.h5{height:36.556100pt;}
.h27{height:38.301570pt;}
.h6{height:39.850400pt;}
.h4{height:40.211857pt;}
.h2b{height:40.251469pt;}
.h3{height:40.505190pt;}
.h29{height:44.353820pt;}
.h33{height:48.457823pt;}
.h10{height:73.004100pt;}
.hd{height:75.791733pt;}
.h12{height:75.797067pt;}
.h2{height:87.734861pt;}
.hf{height:92.984021pt;}
.h2d{height:101.542101pt;}
.h30{height:101.542153pt;}
.h1c{height:106.591012pt;}
.h11{height:112.239733pt;}
.h20{height:112.505046pt;}
.h2a{height:120.101151pt;}
.h2f{height:126.544647pt;}
.he{height:129.432021pt;}
.h22{height:132.343086pt;}
.h1e{height:135.895487pt;}
.h1a{height:141.354400pt;}
.h16{height:144.605919pt;}
.h32{height:145.025438pt;}
.h25{height:146.439342pt;}
.h18{height:146.896434pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:141.266409pt;}
.w5{width:161.147537pt;}
.wf{width:250.056093pt;}
.w11{width:250.058629pt;}
.w9{width:262.490173pt;}
.wb{width:277.067463pt;}
.w2{width:280.436412pt;}
.w3{width:300.317541pt;}
.we{width:302.111840pt;}
.w10{width:302.114983pt;}
.w8{width:328.093700pt;}
.w6{width:328.094909pt;}
.w7{width:331.411908pt;}
.wa{width:334.745609pt;}
.w12{width:334.748610pt;}
.wc{width:334.751263pt;}
.wd{width:334.756498pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x54{left:10.669816pt;}
.x4b{left:11.871200pt;}
.x28{left:13.335913pt;}
.x34{left:19.344999pt;}
.x66{left:21.086758pt;}
.x45{left:22.135300pt;}
.x4e{left:23.363876pt;}
.x53{left:24.818468pt;}
.x44{left:27.615500pt;}
.x32{left:29.698801pt;}
.x61{left:30.820790pt;}
.x67{left:32.588435pt;}
.x47{left:34.208900pt;}
.x65{left:38.487026pt;}
.x4d{left:42.643167pt;}
.x6e{left:44.511059pt;}
.x52{left:45.686544pt;}
.x37{left:49.443535pt;}
.x43{left:51.359000pt;}
.x50{left:52.261333pt;}
.x8{left:54.136000pt;}
.x69{left:59.761333pt;}
.x64{left:62.086667pt;}
.x58{left:66.226667pt;}
.x7{left:67.418667pt;}
.x2a{left:69.684000pt;}
.x3a{left:71.377900pt;}
.x39{left:72.518667pt;}
.x2e{left:73.469333pt;}
.x57{left:74.505333pt;}
.x48{left:77.239800pt;}
.x36{left:78.513415pt;}
.xe{left:80.702667pt;}
.x31{left:81.944945pt;}
.x1{left:100.444000pt;}
.x59{left:102.865333pt;}
.x6a{left:111.612143pt;}
.x35{left:114.510667pt;}
.x3b{left:115.611100pt;}
.x46{left:119.523300pt;}
.x51{left:121.526291pt;}
.x4c{left:123.264000pt;}
.x30{left:125.802667pt;}
.x29{left:127.129333pt;}
.x56{left:128.224000pt;}
.x2d{left:136.952000pt;}
.x27{left:138.265333pt;}
.x6f{left:142.226399pt;}
.x38{left:143.134302pt;}
.x33{left:144.842267pt;}
.x6d{left:152.347571pt;}
.x5{left:154.640000pt;}
.x3c{left:156.480500pt;}
.x3d{left:157.439700pt;}
.x72{left:160.298667pt;}
.x10{left:163.605333pt;}
.x9{left:169.676000pt;}
.x63{left:174.201333pt;}
.x68{left:180.830667pt;}
.x73{left:184.314667pt;}
.x6b{left:185.708704pt;}
.x2f{left:193.640000pt;}
.x3e{left:199.511400pt;}
.x3f{left:201.078900pt;}
.x49{left:206.331400pt;}
.x2c{left:221.508000pt;}
.x60{left:223.936000pt;}
.x3{left:225.688000pt;}
.x6c{left:234.738586pt;}
.x2b{left:236.374667pt;}
.x40{left:242.541200pt;}
.x41{left:243.500400pt;}
.x4a{left:249.362300pt;}
.x62{left:252.994176pt;}
.x5f{left:255.234667pt;}
.x2{left:256.593333pt;}
.x5e{left:260.548000pt;}
.x5d{left:265.861333pt;}
.x5c{left:271.176000pt;}
.x5b{left:276.489333pt;}
.x5a{left:281.802667pt;}
.x42{left:285.572100pt;}
.x6{left:286.534667pt;}
.x55{left:296.746037pt;}
.x70{left:322.034383pt;}
.xb{left:404.820000pt;}
.x26{left:410.113333pt;}
.xa{left:418.104000pt;}
.x12{left:426.850667pt;}
.x74{left:429.166667pt;}
.xd{left:431.388000pt;}
.x4{left:433.817333pt;}
.x1f{left:441.098667pt;}
.x11{left:443.085333pt;}
.x75{left:449.393333pt;}
.x20{left:450.544000pt;}
.x76{left:458.245333pt;}
.xc{left:460.805333pt;}
.x4f{left:462.270080pt;}
.x18{left:470.049333pt;}
.x71{left:474.234667pt;}
.x78{left:478.717333pt;}
.x79{left:480.049333pt;}
.x21{left:487.250667pt;}
.xf{left:512.384000pt;}
.x13{left:522.417333pt;}
.x22{left:528.924000pt;}
.x7a{left:541.806667pt;}
.x19{left:547.537333pt;}
.x15{left:590.396000pt;}
.x16{left:591.385333pt;}
.x14{left:596.705333pt;}
.x17{left:611.796000pt;}
.x1b{left:618.873333pt;}
.x1c{left:619.862667pt;}
.x77{left:624.002667pt;}
.x1a{left:625.184000pt;}
.x23{left:630.929333pt;}
.x1d{left:640.274667pt;}
.x1e{left:664.769333pt;}
.x24{left:666.160000pt;}
.x25{left:724.077333pt;}
}




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