
    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_6408d8861f81c3fe7e568a2f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_4ffb3a7bb08533f320568b37.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_7bd1208aea86a46c2a4c78fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_183e59eba25692e08feb7874.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_022a90a884e95f1e9f87dbba.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908691;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_11dd1323c4dfd7b301d4b146.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2c861ce899a9f92760630d86.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895996;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_d8a7bdc477f82ca20684c613.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.843262;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_4c4cf422a5fc45fd2175531d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_45d3f5a179c39e51c9a44388.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.915527;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_834fa002877c9a98f6f2e6fa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.870605;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_e748b02887be953ab451a1fd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.895996;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_dd78fbc2fe2e2fbcffef97d2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.973145;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;}
.m1c{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-30.234000px;}
.ve{vertical-align:-28.080000px;}
.vd{vertical-align:-26.640000px;}
.v9{vertical-align:-23.754000px;}
.v2{vertical-align:-20.886000px;}
.v6{vertical-align:-15.120000px;}
.v3{vertical-align:-6.486000px;}
.v7{vertical-align:-5.034000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:5.046000px;}
.v5{vertical-align:6.480000px;}
.v4{vertical-align:20.886000px;}
.v1{vertical-align:22.314000px;}
.vb{vertical-align:23.760000px;}
.vc{vertical-align:27.366000px;}
.ls4{letter-spacing:0.000000px;}
.ls74{letter-spacing:0.009300px;}
.ls43{letter-spacing:0.116100px;}
.lsc{letter-spacing:0.120300px;}
.lsf{letter-spacing:0.143000px;}
.ls62{letter-spacing:0.143657px;}
.ls8{letter-spacing:0.152567px;}
.ls9{letter-spacing:0.156133px;}
.ls7{letter-spacing:0.158122px;}
.ls69{letter-spacing:0.183000px;}
.ls66{letter-spacing:0.205982px;}
.ls46{letter-spacing:0.206700px;}
.ls67{letter-spacing:0.214959px;}
.ls5f{letter-spacing:0.215057px;}
.ls5b{letter-spacing:0.215985px;}
.ls59{letter-spacing:0.220200px;}
.ls61{letter-spacing:0.222043px;}
.ls32{letter-spacing:0.231216px;}
.ls90{letter-spacing:0.232000px;}
.ls63{letter-spacing:0.249470px;}
.ls3d{letter-spacing:0.268200px;}
.ls36{letter-spacing:0.274200px;}
.ls42{letter-spacing:0.285900px;}
.ls17{letter-spacing:0.292059px;}
.ls27{letter-spacing:0.333677px;}
.ls55{letter-spacing:0.336048px;}
.ls31{letter-spacing:0.348507px;}
.ls29{letter-spacing:0.353425px;}
.ls5c{letter-spacing:0.357914px;}
.ls53{letter-spacing:0.369300px;}
.lsd{letter-spacing:0.369900px;}
.ls24{letter-spacing:0.371710px;}
.ls86{letter-spacing:0.378933px;}
.ls7a{letter-spacing:0.402643px;}
.ls6c{letter-spacing:0.424108px;}
.ls97{letter-spacing:0.426000px;}
.ls4b{letter-spacing:0.429600px;}
.ls4e{letter-spacing:0.429877px;}
.ls15{letter-spacing:0.436759px;}
.ls8d{letter-spacing:0.443971px;}
.ls6f{letter-spacing:0.451800px;}
.ls5a{letter-spacing:0.452911px;}
.ls6d{letter-spacing:0.459816px;}
.ls79{letter-spacing:0.468643px;}
.ls26{letter-spacing:0.474000px;}
.ls6a{letter-spacing:0.477271px;}
.ls52{letter-spacing:0.479357px;}
.ls28{letter-spacing:0.490903px;}
.ls20{letter-spacing:0.502995px;}
.ls18{letter-spacing:0.507757px;}
.ls1f{letter-spacing:0.512519px;}
.lse{letter-spacing:0.565800px;}
.ls3{letter-spacing:0.577567px;}
.ls56{letter-spacing:0.579900px;}
.ls88{letter-spacing:0.583122px;}
.ls95{letter-spacing:0.592144px;}
.ls7f{letter-spacing:0.595395px;}
.ls2{letter-spacing:0.603208px;}
.ls78{letter-spacing:0.608977px;}
.ls4f{letter-spacing:0.610034px;}
.ls57{letter-spacing:0.621600px;}
.ls72{letter-spacing:0.629172px;}
.ls41{letter-spacing:0.636000px;}
.ls38{letter-spacing:0.645000px;}
.ls1c{letter-spacing:0.648643px;}
.ls51{letter-spacing:0.750171px;}
.ls6b{letter-spacing:0.756894px;}
.ls3b{letter-spacing:0.766833px;}
.ls8e{letter-spacing:0.768043px;}
.ls4d{letter-spacing:0.768659px;}
.ls10{letter-spacing:0.791178px;}
.ls2f{letter-spacing:0.796146px;}
.ls6{letter-spacing:0.816967px;}
.ls2a{letter-spacing:0.826298px;}
.ls5e{letter-spacing:0.864900px;}
.ls94{letter-spacing:0.866400px;}
.ls3a{letter-spacing:0.906386px;}
.ls34{letter-spacing:0.916908px;}
.ls1e{letter-spacing:0.924581px;}
.ls19{letter-spacing:0.929343px;}
.ls68{letter-spacing:0.970624px;}
.ls87{letter-spacing:1.020311px;}
.ls39{letter-spacing:1.029471px;}
.ls5d{letter-spacing:1.043486px;}
.ls30{letter-spacing:1.049980px;}
.ls16{letter-spacing:1.062621px;}
.ls92{letter-spacing:1.125133px;}
.ls22{letter-spacing:1.135300px;}
.ls50{letter-spacing:1.153790px;}
.ls2d{letter-spacing:1.178134px;}
.ls60{letter-spacing:1.192157px;}
.ls8f{letter-spacing:1.220671px;}
.ls25{letter-spacing:1.429371px;}
.ls11{letter-spacing:1.468659px;}
.ls5{letter-spacing:1.474541px;}
.ls71{letter-spacing:1.518041px;}
.ls4a{letter-spacing:1.711490px;}
.ls2e{letter-spacing:3.874648px;}
.ls64{letter-spacing:4.078222px;}
.ls1d{letter-spacing:4.300643px;}
.ls35{letter-spacing:4.459893px;}
.ls23{letter-spacing:4.867310px;}
.ls13{letter-spacing:5.494746px;}
.ls7e{letter-spacing:7.861467px;}
.ls21{letter-spacing:8.631529px;}
.ls33{letter-spacing:8.846985px;}
.ls7d{letter-spacing:9.620700px;}
.ls89{letter-spacing:10.726767px;}
.ls98{letter-spacing:10.831800px;}
.ls9a{letter-spacing:13.091647px;}
.ls2b{letter-spacing:13.332113px;}
.ls2c{letter-spacing:13.351367px;}
.ls81{letter-spacing:13.411800px;}
.ls99{letter-spacing:13.798200px;}
.ls8c{letter-spacing:14.409706px;}
.ls70{letter-spacing:14.798233px;}
.ls1b{letter-spacing:14.840829px;}
.ls7c{letter-spacing:15.221700px;}
.ls48{letter-spacing:15.850500px;}
.ls14{letter-spacing:15.915176px;}
.ls1a{letter-spacing:15.936329px;}
.ls76{letter-spacing:16.114200px;}
.ls47{letter-spacing:16.214311px;}
.ls54{letter-spacing:16.897500px;}
.ls0{letter-spacing:16.940400px;}
.ls91{letter-spacing:18.038706px;}
.ls58{letter-spacing:18.124200px;}
.ls93{letter-spacing:18.597700px;}
.ls3c{letter-spacing:18.761278px;}
.ls7b{letter-spacing:18.875583px;}
.ls96{letter-spacing:18.901756px;}
.ls4c{letter-spacing:20.064900px;}
.ls77{letter-spacing:20.419800px;}
.ls80{letter-spacing:20.622900px;}
.ls37{letter-spacing:20.799000px;}
.ls49{letter-spacing:21.510900px;}
.ls84{letter-spacing:21.590100px;}
.ls40{letter-spacing:21.724200px;}
.ls12{letter-spacing:22.974000px;}
.ls3e{letter-spacing:23.481000px;}
.ls75{letter-spacing:23.880000px;}
.lsb{letter-spacing:25.100100px;}
.lsa{letter-spacing:25.371600px;}
.ls45{letter-spacing:25.821600px;}
.ls3f{letter-spacing:25.848000px;}
.ls6e{letter-spacing:26.007900px;}
.ls65{letter-spacing:27.036339px;}
.ls44{letter-spacing:27.142800px;}
.ls1{letter-spacing:27.254000px;}
.ls8b{letter-spacing:27.584100px;}
.ls8a{letter-spacing:28.039200px;}
.ls83{letter-spacing:32.300100px;}
.ls85{letter-spacing:33.030900px;}
.ls82{letter-spacing:34.005600px;}
.ls73{letter-spacing:38.864100px;}
.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;}
}
.ws6{word-spacing:-76.600800px;}
.ws5{word-spacing:-76.461000px;}
.ws7{word-spacing:-76.311000px;}
.ws111{word-spacing:-59.700000px;}
.ws2d{word-spacing:-54.000000px;}
.wsbf{word-spacing:-46.756800px;}
.wse{word-spacing:-46.386900px;}
.ws11{word-spacing:-41.958000px;}
.ws43{word-spacing:-37.529100px;}
.wsce{word-spacing:-35.300100px;}
.wsf7{word-spacing:-34.824900px;}
.ws8{word-spacing:-34.803300px;}
.ws127{word-spacing:-34.464300px;}
.ws126{word-spacing:-34.461600px;}
.ws198{word-spacing:-34.458000px;}
.ws74{word-spacing:-34.231344px;}
.ws195{word-spacing:-34.010471px;}
.wsc9{word-spacing:-33.978567px;}
.wsca{word-spacing:-33.973011px;}
.wsf{word-spacing:-33.942000px;}
.wsd0{word-spacing:-33.750600px;}
.ws206{word-spacing:-33.748800px;}
.ws54{word-spacing:-33.607500px;}
.ws196{word-spacing:-33.598435px;}
.ws122{word-spacing:-33.573800px;}
.wsc8{word-spacing:-33.559122px;}
.ws10a{word-spacing:-33.495111px;}
.ws144{word-spacing:-33.403800px;}
.ws145{word-spacing:-33.237900px;}
.ws1b6{word-spacing:-33.224700px;}
.wsb{word-spacing:-33.219000px;}
.wsdb{word-spacing:-33.206100px;}
.ws5d{word-spacing:-33.146100px;}
.ws205{word-spacing:-33.030300px;}
.ws76{word-spacing:-32.933667px;}
.ws119{word-spacing:-32.890467px;}
.ws13e{word-spacing:-32.879100px;}
.ws2{word-spacing:-32.866200px;}
.wsd{word-spacing:-32.632500px;}
.ws97{word-spacing:-32.514000px;}
.ws18a{word-spacing:-32.509500px;}
.wsc2{word-spacing:-32.503200px;}
.wsda{word-spacing:-32.502900px;}
.wsc5{word-spacing:-32.500800px;}
.ws1e3{word-spacing:-32.478076px;}
.wsb1{word-spacing:-32.420100px;}
.wsfa{word-spacing:-32.314200px;}
.ws86{word-spacing:-32.308500px;}
.wsa7{word-spacing:-32.279700px;}
.ws10b{word-spacing:-32.261444px;}
.ws1e2{word-spacing:-32.174906px;}
.ws1ee{word-spacing:-32.163900px;}
.ws11b{word-spacing:-32.156222px;}
.wsff{word-spacing:-32.154300px;}
.ws1d0{word-spacing:-31.962900px;}
.wsc3{word-spacing:-31.950600px;}
.ws88{word-spacing:-31.948800px;}
.ws9{word-spacing:-31.781400px;}
.wscf{word-spacing:-31.779300px;}
.ws1e1{word-spacing:-31.731018px;}
.ws4c{word-spacing:-31.706100px;}
.wsb7{word-spacing:-31.703400px;}
.ws19e{word-spacing:-31.698900px;}
.ws1f5{word-spacing:-31.696200px;}
.ws80{word-spacing:-31.641312px;}
.ws89{word-spacing:-31.602000px;}
.ws62{word-spacing:-31.596000px;}
.ws1cd{word-spacing:-31.595700px;}
.wsa5{word-spacing:-31.593300px;}
.ws20a{word-spacing:-31.591200px;}
.ws167{word-spacing:-31.588800px;}
.wsb6{word-spacing:-31.587900px;}
.ws17d{word-spacing:-31.584000px;}
.wse3{word-spacing:-31.583400px;}
.ws12e{word-spacing:-31.578900px;}
.ws17a{word-spacing:-31.576200px;}
.ws9e{word-spacing:-31.574700px;}
.ws15d{word-spacing:-31.572000px;}
.wsa2{word-spacing:-31.568400px;}
.ws14a{word-spacing:-31.486671px;}
.ws189{word-spacing:-31.446600px;}
.wscb{word-spacing:-31.436700px;}
.ws1ad{word-spacing:-31.435200px;}
.wsfc{word-spacing:-31.434900px;}
.ws108{word-spacing:-31.433100px;}
.wsb2{word-spacing:-31.234800px;}
.ws9a{word-spacing:-31.232100px;}
.ws201{word-spacing:-31.228200px;}
.ws18e{word-spacing:-31.226700px;}
.ws4d{word-spacing:-31.222200px;}
.ws1d1{word-spacing:-31.213200px;}
.wsbd{word-spacing:-31.076400px;}
.ws91{word-spacing:-31.074000px;}
.wsaa{word-spacing:-31.067700px;}
.wsa{word-spacing:-31.064100px;}
.ws176{word-spacing:-31.060429px;}
.ws103{word-spacing:-31.059000px;}
.ws1d6{word-spacing:-31.056900px;}
.ws194{word-spacing:-31.056300px;}
.ws1dd{word-spacing:-31.054547px;}
.ws1b9{word-spacing:-31.048665px;}
.wsb9{word-spacing:-30.992100px;}
.ws185{word-spacing:-30.939222px;}
.ws138{word-spacing:-30.912689px;}
.ws4a{word-spacing:-30.879300px;}
.ws8a{word-spacing:-30.876000px;}
.ws182{word-spacing:-30.875100px;}
.ws1db{word-spacing:-30.873300px;}
.ws101{word-spacing:-30.872400px;}
.ws188{word-spacing:-30.867300px;}
.ws1de{word-spacing:-30.864900px;}
.wsdd{word-spacing:-30.855900px;}
.ws1ef{word-spacing:-30.723000px;}
.ws13f{word-spacing:-30.349500px;}
.ws1f7{word-spacing:-30.347700px;}
.ws53{word-spacing:-30.342900px;}
.ws1af{word-spacing:-30.342600px;}
.wse6{word-spacing:-30.326100px;}
.ws18f{word-spacing:-30.303000px;}
.wsf2{word-spacing:-30.300000px;}
.wsa3{word-spacing:-30.266100px;}
.ws65{word-spacing:-30.208200px;}
.ws1d5{word-spacing:-30.152100px;}
.wsfe{word-spacing:-30.080788px;}
.wsf4{word-spacing:-30.074906px;}
.ws100{word-spacing:-30.015300px;}
.ws139{word-spacing:-30.000300px;}
.ws81{word-spacing:-29.996700px;}
.ws49{word-spacing:-29.794800px;}
.ws70{word-spacing:-29.775176px;}
.ws73{word-spacing:-29.729682px;}
.ws125{word-spacing:-29.717918px;}
.ws1a1{word-spacing:-29.648665px;}
.ws133{word-spacing:-29.642782px;}
.wsf8{word-spacing:-29.622900px;}
.ws4b{word-spacing:-29.604900px;}
.wsed{word-spacing:-29.552100px;}
.wsbe{word-spacing:-29.549400px;}
.ws6f{word-spacing:-29.547194px;}
.ws11e{word-spacing:-29.546100px;}
.ws28{word-spacing:-29.511900px;}
.ws3d{word-spacing:-29.499300px;}
.ws15e{word-spacing:-29.440200px;}
.ws11d{word-spacing:-29.439300px;}
.ws107{word-spacing:-29.436000px;}
.ws154{word-spacing:-29.434800px;}
.wsb0{word-spacing:-29.433300px;}
.ws113{word-spacing:-29.433000px;}
.ws8c{word-spacing:-29.428800px;}
.wsd3{word-spacing:-29.425500px;}
.ws208{word-spacing:-29.425200px;}
.ws169{word-spacing:-29.422500px;}
.ws135{word-spacing:-29.292600px;}
.ws2a9{word-spacing:-29.277300px;}
.wsd1{word-spacing:-29.082600px;}
.ws4{word-spacing:-29.076300px;}
.ws168{word-spacing:-29.075176px;}
.ws1c5{word-spacing:-29.065800px;}
.wsfd{word-spacing:-29.063412px;}
.ws1e0{word-spacing:-29.051647px;}
.wse4{word-spacing:-29.035565px;}
.ws1e6{word-spacing:-29.023800px;}
.ws6e{word-spacing:-29.017918px;}
.ws1e7{word-spacing:-28.931018px;}
.ws13d{word-spacing:-28.919100px;}
.ws179{word-spacing:-28.910100px;}
.ws115{word-spacing:-28.907700px;}
.ws1fd{word-spacing:-28.907400px;}
.ws106{word-spacing:-28.906800px;}
.ws1ed{word-spacing:-28.893900px;}
.ws11a{word-spacing:-28.839362px;}
.ws42{word-spacing:-28.795800px;}
.ws2a8{word-spacing:-28.721400px;}
.wsde{word-spacing:-28.715100px;}
.ws7a{word-spacing:-28.713300px;}
.ws151{word-spacing:-28.707900px;}
.ws109{word-spacing:-28.700400px;}
.ws146{word-spacing:-28.685891px;}
.ws71{word-spacing:-28.669024px;}
.ws1a7{word-spacing:-28.645233px;}
.ws137{word-spacing:-28.566600px;}
.ws152{word-spacing:-28.557600px;}
.ws217{word-spacing:-28.487700px;}
.ws117{word-spacing:-28.360200px;}
.wsee{word-spacing:-28.342500px;}
.ws1df{word-spacing:-28.236900px;}
.ws24f{word-spacing:-28.228500px;}
.wsf0{word-spacing:-28.225135px;}
.ws250{word-spacing:-28.217700px;}
.ws132{word-spacing:-28.200000px;}
.wsa0{word-spacing:-28.195500px;}
.wsef{word-spacing:-28.192200px;}
.ws177{word-spacing:-28.190400px;}
.ws1fe{word-spacing:-28.188000px;}
.ws9f{word-spacing:-28.180500px;}
.ws1ff{word-spacing:-28.179300px;}
.ws1f6{word-spacing:-28.174800px;}
.wsb8{word-spacing:-28.169400px;}
.ws68{word-spacing:-28.106100px;}
.ws178{word-spacing:-28.103400px;}
.wsd2{word-spacing:-28.000200px;}
.ws1a2{word-spacing:-27.995100px;}
.wsb5{word-spacing:-27.993300px;}
.ws1cb{word-spacing:-27.990000px;}
.ws12b{word-spacing:-27.989700px;}
.ws163{word-spacing:-27.987600px;}
.ws1e4{word-spacing:-27.978000px;}
.wse5{word-spacing:-27.951376px;}
.wsf1{word-spacing:-27.945494px;}
.ws35{word-spacing:-27.901200px;}
.wsc1{word-spacing:-27.835800px;}
.ws1b1{word-spacing:-27.663412px;}
.ws180{word-spacing:-27.635700px;}
.wsa1{word-spacing:-27.634200px;}
.ws87{word-spacing:-27.633300px;}
.ws124{word-spacing:-27.612035px;}
.ws37{word-spacing:-27.516900px;}
.wsf3{word-spacing:-27.507488px;}
.ws69{word-spacing:-27.473700px;}
.wsab{word-spacing:-27.469500px;}
.wsbc{word-spacing:-27.462000px;}
.ws1e8{word-spacing:-27.461700px;}
.wsd4{word-spacing:-27.459600px;}
.ws7e{word-spacing:-27.438600px;}
.ws1b{word-spacing:-27.378000px;}
.ws170{word-spacing:-27.376800px;}
.ws1c7{word-spacing:-27.361800px;}
.ws1a4{word-spacing:-27.317456px;}
.ws1ae{word-spacing:-27.273300px;}
.ws181{word-spacing:-27.259800px;}
.ws44{word-spacing:-27.254400px;}
.ws8b{word-spacing:-27.245400px;}
.ws36{word-spacing:-27.204000px;}
.ws274{word-spacing:-27.154200px;}
.wsa8{word-spacing:-27.135300px;}
.ws252{word-spacing:-27.118800px;}
.ws2ab{word-spacing:-27.100200px;}
.ws123{word-spacing:-26.939882px;}
.ws1a3{word-spacing:-26.918244px;}
.wsc{word-spacing:-26.917200px;}
.ws1c8{word-spacing:-26.914800px;}
.ws197{word-spacing:-26.907600px;}
.ws10{word-spacing:-26.905200px;}
.ws1a5{word-spacing:-26.834000px;}
.ws1b0{word-spacing:-26.825135px;}
.ws5e{word-spacing:-26.750400px;}
.ws1da{word-spacing:-26.745600px;}
.ws1a0{word-spacing:-26.729547px;}
.ws10c{word-spacing:-26.650789px;}
.ws26{word-spacing:-26.619300px;}
.ws98{word-spacing:-26.562000px;}
.ws290{word-spacing:-26.553300px;}
.ws19f{word-spacing:-26.551376px;}
.ws29a{word-spacing:-26.550300px;}
.ws1ec{word-spacing:-26.540700px;}
.ws24c{word-spacing:-26.526000px;}
.ws253{word-spacing:-26.517000px;}
.ws31{word-spacing:-26.458500px;}
.ws2af{word-spacing:-26.426400px;}
.ws24d{word-spacing:-26.421600px;}
.ws225{word-spacing:-26.415600px;}
.ws23c{word-spacing:-26.403300px;}
.ws17f{word-spacing:-26.400300px;}
.ws266{word-spacing:-26.386500px;}
.ws22d{word-spacing:-26.384700px;}
.ws251{word-spacing:-26.382900px;}
.ws267{word-spacing:-26.380800px;}
.ws22b{word-spacing:-26.376600px;}
.ws2b4{word-spacing:-26.374800px;}
.ws2c{word-spacing:-26.263800px;}
.ws6a{word-spacing:-26.239882px;}
.ws1f4{word-spacing:-26.193000px;}
.wse2{word-spacing:-26.164200px;}
.ws22c{word-spacing:-26.076600px;}
.ws229{word-spacing:-26.069700px;}
.ws254{word-spacing:-26.063100px;}
.wsd7{word-spacing:-26.025000px;}
.ws16e{word-spacing:-25.946100px;}
.ws105{word-spacing:-25.940100px;}
.ws227{word-spacing:-25.850100px;}
.ws255{word-spacing:-25.848300px;}
.ws24a{word-spacing:-25.844100px;}
.ws22a{word-spacing:-25.843200px;}
.ws19a{word-spacing:-25.841100px;}
.wsa6{word-spacing:-25.839300px;}
.ws21b{word-spacing:-25.838700px;}
.ws1eb{word-spacing:-25.836000px;}
.ws82{word-spacing:-25.829700px;}
.ws221{word-spacing:-25.825500px;}
.ws22f{word-spacing:-25.806000px;}
.ws226{word-spacing:-25.799700px;}
.ws263{word-spacing:-25.795200px;}
.ws26a{word-spacing:-25.785300px;}
.ws2f{word-spacing:-25.758000px;}
.ws244{word-spacing:-25.706400px;}
.ws51{word-spacing:-25.695300px;}
.ws23e{word-spacing:-25.694700px;}
.ws230{word-spacing:-25.685700px;}
.ws143{word-spacing:-25.683000px;}
.ws1b2{word-spacing:-25.662000px;}
.ws10d{word-spacing:-25.610200px;}
.ws10e{word-spacing:-25.604644px;}
.ws297{word-spacing:-25.601700px;}
.ws72{word-spacing:-25.534000px;}
.ws23{word-spacing:-25.524000px;}
.ws200{word-spacing:-25.482000px;}
.ws52{word-spacing:-25.467600px;}
.ws212{word-spacing:-25.330800px;}
.ws12d{word-spacing:-25.314000px;}
.ws187{word-spacing:-25.309500px;}
.ws17c{word-spacing:-25.307700px;}
.wscd{word-spacing:-25.286700px;}
.ws2a5{word-spacing:-25.229400px;}
.wsa9{word-spacing:-25.226100px;}
.ws16f{word-spacing:-25.225200px;}
.ws1c6{word-spacing:-25.220100px;}
.ws15{word-spacing:-25.213500px;}
.wse8{word-spacing:-25.133729px;}
.ws240{word-spacing:-25.124100px;}
.ws256{word-spacing:-25.121400px;}
.ws85{word-spacing:-25.119300px;}
.ws245{word-spacing:-25.118700px;}
.ws213{word-spacing:-25.118100px;}
.ws23a{word-spacing:-25.109100px;}
.ws2a7{word-spacing:-25.108800px;}
.ws25e{word-spacing:-25.086000px;}
.ws243{word-spacing:-25.080000px;}
.ws38{word-spacing:-25.040400px;}
.ws0{word-spacing:-24.996000px;}
.ws21f{word-spacing:-24.986400px;}
.ws1c3{word-spacing:-24.986100px;}
.ws298{word-spacing:-24.981900px;}
.ws20c{word-spacing:-24.975600px;}
.ws171{word-spacing:-24.966600px;}
.ws2a4{word-spacing:-24.961500px;}
.ws25f{word-spacing:-24.959400px;}
.ws23f{word-spacing:-24.955200px;}
.ws220{word-spacing:-24.934800px;}
.ws14{word-spacing:-24.836100px;}
.ws1dc{word-spacing:-24.834000px;}
.ws1b4{word-spacing:-24.832500px;}
.wsaf{word-spacing:-24.754800px;}
.wse7{word-spacing:-24.701606px;}
.wsc7{word-spacing:-24.690300px;}
.ws299{word-spacing:-24.627600px;}
.ws172{word-spacing:-24.594000px;}
.ws12c{word-spacing:-24.592800px;}
.wsc6{word-spacing:-24.588000px;}
.ws17b{word-spacing:-24.579600px;}
.ws1ba{word-spacing:-24.507600px;}
.ws21e{word-spacing:-24.400500px;}
.ws20e{word-spacing:-24.398100px;}
.ws141{word-spacing:-24.388800px;}
.ws9d{word-spacing:-24.381000px;}
.wsb4{word-spacing:-24.376500px;}
.ws1d9{word-spacing:-24.367500px;}
.ws20d{word-spacing:-24.359700px;}
.ws265{word-spacing:-24.354900px;}
.ws25d{word-spacing:-24.350700px;}
.ws1{word-spacing:-24.333300px;}
.ws25c{word-spacing:-24.258300px;}
.ws27d{word-spacing:-24.254700px;}
.ws210{word-spacing:-24.245400px;}
.ws211{word-spacing:-24.239400px;}
.wsd9{word-spacing:-24.237600px;}
.ws26c{word-spacing:-24.237300px;}
.ws222{word-spacing:-24.228300px;}
.ws24b{word-spacing:-24.226500px;}
.ws29d{word-spacing:-24.214800px;}
.ws1f9{word-spacing:-23.880000px;}
.ws1d8{word-spacing:-23.868600px;}
.ws1b3{word-spacing:-23.859900px;}
.ws1fb{word-spacing:-23.859600px;}
.ws12a{word-spacing:-23.786100px;}
.ws15f{word-spacing:-23.777400px;}
.ws16b{word-spacing:-23.776800px;}
.ws30{word-spacing:-23.767500px;}
.ws1d7{word-spacing:-23.759100px;}
.ws264{word-spacing:-23.686500px;}
.ws28f{word-spacing:-23.684700px;}
.ws26d{word-spacing:-23.682300px;}
.ws261{word-spacing:-23.681400px;}
.ws121{word-spacing:-23.679300px;}
.ws259{word-spacing:-23.678700px;}
.ws55{word-spacing:-23.673300px;}
.ws11f{word-spacing:-23.672400px;}
.ws18b{word-spacing:-23.667000px;}
.ws128{word-spacing:-23.662200px;}
.ws29c{word-spacing:-23.646600px;}
.ws28d{word-spacing:-23.646000px;}
.ws28e{word-spacing:-23.634300px;}
.ws223{word-spacing:-23.633700px;}
.ws39{word-spacing:-23.581200px;}
.ws29f{word-spacing:-23.552400px;}
.ws246{word-spacing:-23.529300px;}
.ws14f{word-spacing:-23.528100px;}
.ws29e{word-spacing:-23.508300px;}
.ws1f{word-spacing:-23.397300px;}
.ws4f{word-spacing:-23.314800px;}
.ws19c{word-spacing:-23.313000px;}
.ws18d{word-spacing:-23.303400px;}
.ws174{word-spacing:-23.202294px;}
.ws1a6{word-spacing:-23.178409px;}
.ws99{word-spacing:-23.152200px;}
.ws202{word-spacing:-23.062500px;}
.ws50{word-spacing:-23.060700px;}
.ws61{word-spacing:-23.055300px;}
.ws32{word-spacing:-23.054400px;}
.wsf5{word-spacing:-23.016082px;}
.ws2a0{word-spacing:-22.970100px;}
.ws235{word-spacing:-22.964100px;}
.ws2aa{word-spacing:-22.961400px;}
.ws233{word-spacing:-22.960500px;}
.ws1b8{word-spacing:-22.956000px;}
.ws27e{word-spacing:-22.955100px;}
.wsd5{word-spacing:-22.943400px;}
.ws257{word-spacing:-22.926000px;}
.ws1be{word-spacing:-22.922400px;}
.ws281{word-spacing:-22.914300px;}
.wscc{word-spacing:-22.903567px;}
.ws258{word-spacing:-22.888800px;}
.ws295{word-spacing:-22.824300px;}
.ws262{word-spacing:-22.818900px;}
.ws112{word-spacing:-22.806600px;}
.ws1c1{word-spacing:-22.798800px;}
.ws25b{word-spacing:-22.795500px;}
.ws129{word-spacing:-22.791300px;}
.ws1bf{word-spacing:-22.791000px;}
.ws1c2{word-spacing:-22.785600px;}
.ws63{word-spacing:-22.710471px;}
.wsf6{word-spacing:-22.682624px;}
.ws7b{word-spacing:-22.676741px;}
.ws66{word-spacing:-22.488371px;}
.ws173{word-spacing:-22.484647px;}
.ws285{word-spacing:-22.469700px;}
.ws234{word-spacing:-22.466100px;}
.ws284{word-spacing:-22.447200px;}
.ws1ab{word-spacing:-22.427700px;}
.ws4e{word-spacing:-22.422600px;}
.ws1aa{word-spacing:-22.419900px;}
.ws214{word-spacing:-22.243200px;}
.ws20f{word-spacing:-22.242300px;}
.ws92{word-spacing:-22.242000px;}
.ws282{word-spacing:-22.238700px;}
.ws296{word-spacing:-22.235100px;}
.ws1c4{word-spacing:-22.233000px;}
.ws13a{word-spacing:-22.224000px;}
.ws2a2{word-spacing:-22.212000px;}
.ws280{word-spacing:-22.206000px;}
.ws2ae{word-spacing:-22.203300px;}
.ws287{word-spacing:-22.200600px;}
.ws2b1{word-spacing:-22.197300px;}
.wse0{word-spacing:-22.095300px;}
.wsa4{word-spacing:-22.090800px;}
.wsc4{word-spacing:-22.082100px;}
.ws1b7{word-spacing:-22.078500px;}
.ws219{word-spacing:-22.077300px;}
.ws14b{word-spacing:-22.057107px;}
.ws26b{word-spacing:-22.001700px;}
.ws64{word-spacing:-21.970859px;}
.ws7c{word-spacing:-21.964976px;}
.ws2b{word-spacing:-21.906900px;}
.ws48{word-spacing:-21.859800px;}
.ws2a{word-spacing:-21.767700px;}
.ws186{word-spacing:-21.709500px;}
.ws1ac{word-spacing:-21.708000px;}
.ws110{word-spacing:-21.703500px;}
.ws1a9{word-spacing:-21.703200px;}
.ws10f{word-spacing:-21.695700px;}
.ws102{word-spacing:-21.626100px;}
.ws67{word-spacing:-21.586671px;}
.ws2b2{word-spacing:-21.524100px;}
.ws28a{word-spacing:-21.523200px;}
.ws2b0{word-spacing:-21.521400px;}
.ws277{word-spacing:-21.518700px;}
.ws209{word-spacing:-21.516000px;}
.ws2a1{word-spacing:-21.514200px;}
.ws228{word-spacing:-21.504300px;}
.ws218{word-spacing:-21.486000px;}
.ws2b3{word-spacing:-21.474600px;}
.ws14c{word-spacing:-21.466943px;}
.ws148{word-spacing:-21.406540px;}
.ws276{word-spacing:-21.386400px;}
.ws2a3{word-spacing:-21.378300px;}
.ws289{word-spacing:-21.359100px;}
.ws27a{word-spacing:-21.357300px;}
.ws215{word-spacing:-21.341100px;}
.ws1a8{word-spacing:-21.153000px;}
.ws78{word-spacing:-21.148800px;}
.wse9{word-spacing:-21.100200px;}
.ws26f{word-spacing:-21.009000px;}
.ws59{word-spacing:-20.994000px;}
.ws58{word-spacing:-20.985000px;}
.ws11c{word-spacing:-20.906100px;}
.ws2ad{word-spacing:-20.804700px;}
.ws21a{word-spacing:-20.804100px;}
.ws28c{word-spacing:-20.803200px;}
.ws231{word-spacing:-20.798400px;}
.ws96{word-spacing:-20.786700px;}
.wsec{word-spacing:-20.780700px;}
.ws9c{word-spacing:-20.768400px;}
.ws278{word-spacing:-20.760600px;}
.ws216{word-spacing:-20.759700px;}
.ws27b{word-spacing:-20.722800px;}
.ws184{word-spacing:-20.719411px;}
.ws3e{word-spacing:-20.708100px;}
.ws149{word-spacing:-20.666720px;}
.ws134{word-spacing:-20.644929px;}
.ws1cc{word-spacing:-20.639100px;}
.ws7d{word-spacing:-20.598706px;}
.ws7f{word-spacing:-20.592824px;}
.ws147{word-spacing:-20.591489px;}
.ws1e5{word-spacing:-20.547329px;}
.ws1d{word-spacing:-20.508900px;}
.ws29{word-spacing:-20.492400px;}
.ws16{word-spacing:-20.473200px;}
.ws16a{word-spacing:-20.433300px;}
.ws75{word-spacing:-20.412389px;}
.ws3f{word-spacing:-20.326500px;}
.ws142{word-spacing:-20.280000px;}
.ws118{word-spacing:-20.278200px;}
.ws159{word-spacing:-20.247000px;}
.wsfb{word-spacing:-20.180100px;}
.ws14d{word-spacing:-20.150423px;}
.ws27c{word-spacing:-20.090100px;}
.ws28b{word-spacing:-20.084100px;}
.ws8e{word-spacing:-20.073300px;}
.ws8d{word-spacing:-20.067000px;}
.ws1b5{word-spacing:-20.061900px;}
.ws2ac{word-spacing:-20.046000px;}
.ws232{word-spacing:-20.034300px;}
.ws84{word-spacing:-19.922100px;}
.ws1c0{word-spacing:-19.911300px;}
.ws175{word-spacing:-19.892824px;}
.ws1a{word-spacing:-19.788300px;}
.ws94{word-spacing:-19.734000px;}
.ws3a{word-spacing:-19.598400px;}
.ws248{word-spacing:-19.582500px;}
.ws5b{word-spacing:-19.554000px;}
.wsb3{word-spacing:-19.552200px;}
.ws190{word-spacing:-19.550700px;}
.ws165{word-spacing:-19.547700px;}
.ws162{word-spacing:-19.545900px;}
.ws46{word-spacing:-19.545600px;}
.ws166{word-spacing:-19.537800px;}
.ws161{word-spacing:-19.450200px;}
.ws23d{word-spacing:-19.365600px;}
.ws13b{word-spacing:-19.354200px;}
.ws16d{word-spacing:-19.353300px;}
.ws5f{word-spacing:-19.350600px;}
.ws275{word-spacing:-19.346100px;}
.ws242{word-spacing:-19.219200px;}
.ws27f{word-spacing:-19.214700px;}
.ws249{word-spacing:-19.191300px;}
.ws191{word-spacing:-19.067944px;}
.ws158{word-spacing:-18.834000px;}
.ws13c{word-spacing:-18.831900px;}
.ws150{word-spacing:-18.765808px;}
.ws45{word-spacing:-18.634800px;}
.ws57{word-spacing:-18.634200px;}
.ws104{word-spacing:-18.633300px;}
.ws56{word-spacing:-18.627300px;}
.ws1f3{word-spacing:-18.622800px;}
.ws24{word-spacing:-18.558000px;}
.ws192{word-spacing:-18.492600px;}
.ws273{word-spacing:-18.447900px;}
.ws156{word-spacing:-18.439500px;}
.ws183{word-spacing:-18.217367px;}
.ws29b{word-spacing:-18.140700px;}
.wsac{word-spacing:-18.112200px;}
.ws140{word-spacing:-18.111900px;}
.ws60{word-spacing:-18.103200px;}
.ws157{word-spacing:-18.100800px;}
.ws18c{word-spacing:-18.038400px;}
.ws291{word-spacing:-17.930100px;}
.ws247{word-spacing:-17.924100px;}
.ws272{word-spacing:-17.921400px;}
.ws1f2{word-spacing:-17.920200px;}
.ws153{word-spacing:-17.909700px;}
.wsba{word-spacing:-17.898300px;}
.ws1bc{word-spacing:-17.759100px;}
.ws6c{word-spacing:-17.648665px;}
.ws21d{word-spacing:-17.609400px;}
.wsdc{word-spacing:-17.560200px;}
.ws34{word-spacing:-17.456400px;}
.ws20{word-spacing:-17.253300px;}
.ws25a{word-spacing:-17.200500px;}
.wsad{word-spacing:-17.049300px;}
.ws238{word-spacing:-17.043300px;}
.ws199{word-spacing:-17.042100px;}
.ws293{word-spacing:-17.039400px;}
.ws1d4{word-spacing:-17.036700px;}
.ws288{word-spacing:-17.033400px;}
.ws237{word-spacing:-17.028300px;}
.ws236{word-spacing:-16.708800px;}
.wseb{word-spacing:-16.674000px;}
.ws1fa{word-spacing:-16.666200px;}
.ws95{word-spacing:-16.665900px;}
.ws1ea{word-spacing:-16.665600px;}
.ws239{word-spacing:-16.478700px;}
.ws21c{word-spacing:-16.478100px;}
.ws24e{word-spacing:-16.477800px;}
.ws1f8{word-spacing:-16.473300px;}
.ws93{word-spacing:-16.467000px;}
.ws5c{word-spacing:-16.464900px;}
.ws23b{word-spacing:-16.430700px;}
.ws292{word-spacing:-16.317300px;}
.ws6d{word-spacing:-16.219253px;}
.ws22{word-spacing:-16.197300px;}
.ws1e9{word-spacing:-15.948600px;}
.ws130{word-spacing:-15.939612px;}
.ws241{word-spacing:-15.764100px;}
.ws283{word-spacing:-15.760500px;}
.ws15a{word-spacing:-15.737400px;}
.wse1{word-spacing:-15.608100px;}
.ws15c{word-spacing:-15.604800px;}
.ws33{word-spacing:-15.435900px;}
.ws19d{word-spacing:-15.402600px;}
.ws1e{word-spacing:-15.287700px;}
.ws131{word-spacing:-15.239612px;}
.ws207{word-spacing:-15.146100px;}
.ws9b{word-spacing:-15.023400px;}
.ws21{word-spacing:-14.939100px;}
.wsbb{word-spacing:-14.876700px;}
.ws17{word-spacing:-14.737800px;}
.ws204{word-spacing:-14.665800px;}
.ws8f{word-spacing:-14.433300px;}
.ws27{word-spacing:-14.385000px;}
.ws22e{word-spacing:-14.165700px;}
.ws19b{word-spacing:-14.011586px;}
.wsd6{word-spacing:-13.952100px;}
.ws1cf{word-spacing:-13.794000px;}
.ws193{word-spacing:-13.788000px;}
.ws1ce{word-spacing:-13.683600px;}
.ws20b{word-spacing:-13.604100px;}
.ws286{word-spacing:-13.601400px;}
.ws224{word-spacing:-13.455600px;}
.ws1fc{word-spacing:-13.451700px;}
.ws19{word-spacing:-13.271400px;}
.wsf9{word-spacing:-13.061700px;}
.ws41{word-spacing:-12.967200px;}
.ws18{word-spacing:-12.945900px;}
.ws2b5{word-spacing:-12.884100px;}
.ws47{word-spacing:-12.862500px;}
.ws2b6{word-spacing:-12.737100px;}
.ws6b{word-spacing:-12.520500px;}
.ws160{word-spacing:-12.418800px;}
.ws26e{word-spacing:-12.161400px;}
.ws203{word-spacing:-12.153300px;}
.ws90{word-spacing:-12.004800px;}
.ws40{word-spacing:-11.533500px;}
.ws294{word-spacing:-11.441400px;}
.wsdf{word-spacing:-11.440200px;}
.wsd8{word-spacing:-11.436000px;}
.ws1c9{word-spacing:-11.431500px;}
.ws271{word-spacing:-11.403300px;}
.ws120{word-spacing:-11.233500px;}
.ws1f0{word-spacing:-10.899300px;}
.ws270{word-spacing:-10.726500px;}
.ws1ca{word-spacing:-10.716000px;}
.ws5a{word-spacing:-10.701900px;}
.ws279{word-spacing:-10.574700px;}
.ws1d2{word-spacing:-10.353600px;}
.ws17e{word-spacing:-10.315500px;}
.ws1f1{word-spacing:-10.286700px;}
.ws155{word-spacing:-10.258800px;}
.wsae{word-spacing:-10.195500px;}
.ws83{word-spacing:-10.194000px;}
.ws260{word-spacing:-9.803100px;}
.ws269{word-spacing:-9.500700px;}
.ws1d3{word-spacing:-9.468600px;}
.ws79{word-spacing:-9.386100px;}
.ws16c{word-spacing:-9.380100px;}
.ws268{word-spacing:-9.284100px;}
.ws2a6{word-spacing:-9.243000px;}
.ws1c{word-spacing:-9.198000px;}
.ws3c{word-spacing:-8.478000px;}
.wsc0{word-spacing:-8.310000px;}
.ws3b{word-spacing:-8.219700px;}
.ws25{word-spacing:-7.723200px;}
.ws1bb{word-spacing:-6.714300px;}
.ws12f{word-spacing:-6.304269px;}
.ws1bd{word-spacing:-5.318400px;}
.ws15b{word-spacing:-3.311700px;}
.ws164{word-spacing:-2.873395px;}
.ws116{word-spacing:-1.449600px;}
.ws2e{word-spacing:-0.900000px;}
.ws77{word-spacing:0.000000px;}
.ws114{word-spacing:0.858900px;}
.ws14e{word-spacing:3.003818px;}
.ws136{word-spacing:4.071900px;}
.ws13{word-spacing:7.234800px;}
.ws12{word-spacing:8.276700px;}
.wsea{word-spacing:52.223897px;}
.ws3{word-spacing:707.248200px;}
._21{margin-left:-4.371900px;}
._5{margin-left:-2.361600px;}
._1{margin-left:-1.068000px;}
._2{width:1.271700px;}
._14{width:2.480706px;}
._1f{width:7.463100px;}
._22{width:9.294300px;}
._1b{width:11.151367px;}
._17{width:12.709800px;}
._d{width:13.827900px;}
._f{width:15.110400px;}
._10{width:16.125600px;}
._a{width:17.442300px;}
._6{width:18.466200px;}
._0{width:19.711500px;}
._e{width:21.251700px;}
._7{width:22.858800px;}
._c{width:24.643800px;}
._b{width:25.908600px;}
._16{width:26.945100px;}
._9{width:28.067100px;}
._12{width:29.353800px;}
._8{width:30.645900px;}
._15{width:32.371500px;}
._18{width:33.505500px;}
._11{width:35.021400px;}
._4{width:36.738300px;}
._13{width:38.262900px;}
._20{width:46.258200px;}
._1d{width:88.778700px;}
._19{width:171.652455px;}
._1a{width:292.652700px;}
._1e{width:503.321100px;}
._3{width:819.336900px;}
._1c{width:2331.518400px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fsc{font-size:26.700000px;}
.fsa{font-size:30.300000px;}
.fs8{font-size:36.000000px;}
.fsd{font-size:38.100000px;}
.fs9{font-size:39.000000px;}
.fsb{font-size:41.700000px;}
.fs4{font-size:42.600000px;}
.fs5{font-size:48.300000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.700000px;}
.fs1{font-size:62.700000px;}
.fs2{font-size:66.300000px;}
.fs0{font-size:84.300000px;}
.fs3{font-size:144.000000px;}
.y16e{bottom:-1.185000px;}
.y0{bottom:0.000000px;}
.y20c{bottom:1.995000px;}
.y18f{bottom:2.115000px;}
.y186{bottom:2.130000px;}
.yd5{bottom:2.146500px;}
.ye2{bottom:2.190000px;}
.ye0{bottom:2.205000px;}
.yd3{bottom:2.220000px;}
.yd7{bottom:2.221500px;}
.ydb{bottom:2.236500px;}
.yd1{bottom:2.250000px;}
.yde{bottom:2.265000px;}
.y1b9{bottom:2.386500px;}
.y16d{bottom:2.415000px;}
.yfc{bottom:2.580000px;}
.y16c{bottom:2.775000px;}
.y197{bottom:2.850000px;}
.y18c{bottom:3.030000px;}
.yfd{bottom:3.120000px;}
.y20b{bottom:3.436500px;}
.y13b{bottom:3.750000px;}
.y20e{bottom:3.811500px;}
.y216{bottom:3.855000px;}
.y15f{bottom:3.975000px;}
.ye5{bottom:4.005000px;}
.y16f{bottom:4.036500px;}
.y214{bottom:4.111500px;}
.y209{bottom:4.275000px;}
.yb{bottom:4.336500px;}
.y180{bottom:4.350000px;}
.y16b{bottom:4.396500px;}
.yeb{bottom:4.440000px;}
.y1ea{bottom:4.561500px;}
.y1c0{bottom:4.665000px;}
.y1b8{bottom:4.725000px;}
.y102{bottom:5.115000px;}
.y122{bottom:5.145000px;}
.y167{bottom:5.311500px;}
.y11e{bottom:5.325000px;}
.y172{bottom:5.355000px;}
.y170{bottom:5.475000px;}
.y1b6{bottom:5.625000px;}
.y177{bottom:5.715000px;}
.y16a{bottom:5.836500px;}
.y154{bottom:6.271500px;}
.y194{bottom:6.450000px;}
.y15d{bottom:6.675000px;}
.y212{bottom:6.690000px;}
.y175{bottom:6.975000px;}
.y178{bottom:7.336500px;}
.y108{bottom:7.455000px;}
.y153{bottom:7.711500px;}
.y15a{bottom:7.755000px;}
.y218{bottom:8.130000px;}
.y17b{bottom:8.415000px;}
.y168{bottom:10.350000px;}
.y120{bottom:10.365000px;}
.y1b7{bottom:10.845000px;}
.y19c{bottom:11.265000px;}
.y176{bottom:11.475000px;}
.y17a{bottom:11.655000px;}
.y179{bottom:11.836500px;}
.y1e4{bottom:11.940000px;}
.y19b{bottom:12.705000px;}
.y19e{bottom:13.065000px;}
.y196{bottom:13.650000px;}
.y198{bottom:14.011500px;}
.y1e6{bottom:14.461500px;}
.y15b{bottom:14.596500px;}
.y1c3{bottom:14.925000px;}
.y17c{bottom:15.075000px;}
.y1e5{bottom:15.900000px;}
.yf5{bottom:15.961500px;}
.y163{bottom:17.190000px;}
.y1d2{bottom:18.030000px;}
.y162{bottom:18.090000px;}
.y13a{bottom:18.150000px;}
.y174{bottom:19.215000px;}
.y161{bottom:19.530000px;}
.y11f{bottom:19.546500px;}
.y1c5{bottom:19.965000px;}
.y15c{bottom:21.255000px;}
.y1a9{bottom:21.615000px;}
.y156{bottom:21.796500px;}
.y183{bottom:21.811500px;}
.yf6{bottom:21.900000px;}
.y1c2{bottom:21.945000px;}
.y1de{bottom:22.350000px;}
.y1e9{bottom:22.380000px;}
.ya{bottom:22.875000px;}
.y101{bottom:22.936500px;}
.y173{bottom:22.996500px;}
.yf7{bottom:23.520000px;}
.y164{bottom:24.030000px;}
.y17f{bottom:24.150000px;}
.y165{bottom:24.211500px;}
.y1b5{bottom:24.315000px;}
.y193{bottom:24.450000px;}
.y3{bottom:25.305000px;}
.y1e2{bottom:26.340000px;}
.y152{bottom:26.611500px;}
.y157{bottom:27.015000px;}
.y1e1{bottom:27.961500px;}
.y1c4{bottom:29.146500px;}
.y166{bottom:29.250000px;}
.y1e0{bottom:29.400000px;}
.y112{bottom:29.446500px;}
.y159{bottom:29.715000px;}
.y121{bottom:30.705000px;}
.y19d{bottom:30.886500px;}
.y158{bottom:30.975000px;}
.y106{bottom:31.755000px;}
.y1d1{bottom:35.670000px;}
.y195{bottom:35.790000px;}
.y139{bottom:35.971500px;}
.y107{bottom:36.975000px;}
.y1e8{bottom:40.200000px;}
.y1c6{bottom:40.305000px;}
.y1dd{bottom:40.350000px;}
.y19a{bottom:40.425000px;}
.y1a8{bottom:40.695000px;}
.yf4{bottom:40.800000px;}
.y100{bottom:40.936500px;}
.y1e7{bottom:41.280000px;}
.yd9{bottom:41.340000px;}
.yf2{bottom:42.061500px;}
.y192{bottom:42.090000px;}
.yf3{bottom:42.240000px;}
.y1b4{bottom:43.215000px;}
.y151{bottom:43.350000px;}
.y189{bottom:45.811500px;}
.yea{bottom:46.200000px;}
.y9{bottom:46.636500px;}
.y1fa{bottom:46.786500px;}
.y111{bottom:47.265000px;}
.y1e3{bottom:47.761500px;}
.yc{bottom:48.000000px;}
.y104{bottom:50.475000px;}
.y105{bottom:50.655000px;}
.y11d{bottom:53.205000px;}
.y1d0{bottom:53.850000px;}
.y138{bottom:53.971500px;}
.y188{bottom:56.250000px;}
.yf0{bottom:58.080000px;}
.y1dc{bottom:58.350000px;}
.yff{bottom:58.755000px;}
.y1a7{bottom:58.875000px;}
.yee{bottom:59.340000px;}
.yef{bottom:59.520000px;}
.y1b3{bottom:59.955000px;}
.y191{bottom:60.090000px;}
.y8{bottom:61.036500px;}
.y240{bottom:62.625000px;}
.y150{bottom:62.971500px;}
.ya0{bottom:63.525000px;}
.ye9{bottom:64.020000px;}
.yf1{bottom:64.561500px;}
.y1f9{bottom:64.605000px;}
.y110{bottom:65.265000px;}
.y2b2{bottom:67.665000px;}
.y103{bottom:69.375000px;}
.y11c{bottom:71.565000px;}
.y137{bottom:71.790000px;}
.y1a6{bottom:74.715000px;}
.y1db{bottom:76.350000px;}
.yed{bottom:76.800000px;}
.y1b2{bottom:77.415000px;}
.yec{bottom:78.240000px;}
.y23f{bottom:80.625000px;}
.y14f{bottom:80.971500px;}
.y2b1{bottom:80.986500px;}
.y9f{bottom:81.346500px;}
.ycf{bottom:81.705000px;}
.ye8{bottom:82.020000px;}
.y207{bottom:82.425000px;}
.y1f8{bottom:82.605000px;}
.y10f{bottom:83.086500px;}
.y1cf{bottom:85.170000px;}
.y1ce{bottom:85.350000px;}
.y1cd{bottom:86.611500px;}
.y11b{bottom:86.686500px;}
.y11a{bottom:88.125000px;}
.y272{bottom:92.686500px;}
.y1a5{bottom:94.155000px;}
.y2b0{bottom:94.305000px;}
.y1b1{bottom:95.236500px;}
.y136{bottom:95.730000px;}
.y1da{bottom:97.590000px;}
.yd8{bottom:98.625000px;}
.y9e{bottom:99.165000px;}
.yce{bottom:99.346500px;}
.ye7{bottom:99.840000px;}
.y65{bottom:100.246500px;}
.y1f7{bottom:100.425000px;}
.y64{bottom:101.686500px;}
.y10e{bottom:102.705000px;}
.y14e{bottom:105.271500px;}
.y271{bottom:106.005000px;}
.y116{bottom:107.025000px;}
.y2af{bottom:109.065000px;}
.y118{bottom:110.625000px;}
.y17d{bottom:111.886500px;}
.y117{bottom:112.065000px;}
.y1a4{bottom:112.155000px;}
.y119{bottom:112.245000px;}
.y1b0{bottom:113.236500px;}
.y134{bottom:113.550000px;}
.y135{bottom:113.730000px;}
.y23e{bottom:116.445000px;}
.y9d{bottom:117.165000px;}
.y206{bottom:118.425000px;}
.y1f6{bottom:118.786500px;}
.y1cc{bottom:119.011500px;}
.y270{bottom:119.686500px;}
.y10d{bottom:120.705000px;}
.y63{bottom:120.765000px;}
.y2ae{bottom:122.565000px;}
.y14d{bottom:123.090000px;}
.y1d9{bottom:123.150000px;}
.y38{bottom:124.186500px;}
.y171{bottom:124.350000px;}
.ydc{bottom:124.575000px;}
.yda{bottom:124.950000px;}
.y115{bottom:128.805000px;}
.y1af{bottom:131.055000px;}
.y26f{bottom:133.005000px;}
.y131{bottom:133.890000px;}
.y132{bottom:134.071500px;}
.y23d{bottom:134.265000px;}
.y9c{bottom:134.986500px;}
.ycd{bottom:135.346500px;}
.y61{bottom:135.705000px;}
.y205{bottom:136.246500px;}
.y62{bottom:136.965000px;}
.y60{bottom:137.146500px;}
.y1cb{bottom:137.550000px;}
.y1a3{bottom:138.436500px;}
.y10c{bottom:138.525000px;}
.y37{bottom:138.945000px;}
.y133{bottom:139.111500px;}
.y14c{bottom:140.550000px;}
.y26e{bottom:146.686500px;}
.y1ae{bottom:148.875000px;}
.y2ad{bottom:150.465000px;}
.y1f5{bottom:151.905000px;}
.y23c{bottom:152.265000px;}
.y130{bottom:152.790000px;}
.y9b{bottom:152.986500px;}
.y114{bottom:153.105000px;}
.ycc{bottom:153.346500px;}
.y36{bottom:153.886500px;}
.y204{bottom:154.065000px;}
.y5f{bottom:154.605000px;}
.y1ca{bottom:154.830000px;}
.y1d8{bottom:155.190000px;}
.y5d{bottom:155.865000px;}
.yd6{bottom:155.925000px;}
.y5e{bottom:156.046500px;}
.y10b{bottom:156.525000px;}
.y14b{bottom:157.111500px;}
.y169{bottom:158.250000px;}
.y26d{bottom:160.005000px;}
.y2ac{bottom:163.605000px;}
.y1ad{bottom:167.055000px;}
.y1f4{bottom:167.565000px;}
.y35{bottom:168.825000px;}
.y1f3{bottom:169.005000px;}
.y12f{bottom:169.890000px;}
.y9a{bottom:170.805000px;}
.y113{bottom:170.925000px;}
.ycb{bottom:171.165000px;}
.y1d7{bottom:171.750000px;}
.y1d5{bottom:173.011500px;}
.y1d6{bottom:173.190000px;}
.y26c{bottom:173.325000px;}
.y1c9{bottom:173.911500px;}
.y14a{bottom:174.211500px;}
.y5c{bottom:174.225000px;}
.y10a{bottom:174.345000px;}
.y1a2{bottom:174.975000px;}
.y203{bottom:178.365000px;}
.y23b{bottom:181.965000px;}
.y1ac{bottom:183.795000px;}
.y1ab{bottom:185.236500px;}
.y12e{bottom:186.090000px;}
.yd4{bottom:186.600000px;}
.y26b{bottom:187.365000px;}
.y99{bottom:188.625000px;}
.y1f1{bottom:188.805000px;}
.yca{bottom:189.165000px;}
.y160{bottom:189.375000px;}
.y5a{bottom:190.786500px;}
.y2ab{bottom:191.686500px;}
.y1c8{bottom:191.730000px;}
.y1a0{bottom:192.975000px;}
.y1a1{bottom:193.155000px;}
.y1f2{bottom:194.025000px;}
.y149{bottom:194.190000px;}
.y5b{bottom:195.825000px;}
.y1d4{bottom:196.950000px;}
.y1d3{bottom:197.850000px;}
.y26a{bottom:200.865000px;}
.y1aa{bottom:202.695000px;}
.y12b{bottom:205.350000px;}
.y12c{bottom:205.530000px;}
.y2aa{bottom:206.445000px;}
.yc9{bottom:206.986500px;}
.y1f0{bottom:207.705000px;}
.y98{bottom:207.886500px;}
.y202{bottom:208.065000px;}
.y58{bottom:209.686500px;}
.y12d{bottom:210.571500px;}
.y148{bottom:212.730000px;}
.y269{bottom:214.005000px;}
.y59{bottom:214.725000px;}
.y34{bottom:219.225000px;}
.y2a9{bottom:219.765000px;}
.y12a{bottom:223.530000px;}
.y97{bottom:225.346500px;}
.y268{bottom:227.325000px;}
.y23a{bottom:227.686500px;}
.y57{bottom:227.865000px;}
.y201{bottom:228.046500px;}
.y182{bottom:229.575000px;}
.y146{bottom:230.011500px;}
.y147{bottom:230.190000px;}
.yc8{bottom:231.105000px;}
.y2a8{bottom:233.265000px;}
.y1ef{bottom:233.986500px;}
.y33{bottom:234.165000px;}
.y15e{bottom:234.450000px;}
.y267{bottom:241.186500px;}
.y96{bottom:243.165000px;}
.y239{bottom:245.325000px;}
.y200{bottom:245.865000px;}
.y2a7{bottom:246.586500px;}
.y56{bottom:246.945000px;}
.ye3{bottom:247.875000px;}
.y155{bottom:247.950000px;}
.y145{bottom:248.011500px;}
.y32{bottom:248.925000px;}
.y129{bottom:252.511500px;}
.y266{bottom:254.505000px;}
.y95{bottom:261.165000px;}
.yc7{bottom:262.425000px;}
.y1ee{bottom:262.786500px;}
.y238{bottom:263.146500px;}
.y1ff{bottom:263.505000px;}
.y31{bottom:263.865000px;}
.y55{bottom:264.405000px;}
.y265{bottom:267.825000px;}
.y144{bottom:271.950000px;}
.y143{bottom:273.390000px;}
.y2a6{bottom:274.486500px;}
.y30{bottom:278.625000px;}
.y94{bottom:278.986500px;}
.yc6{bottom:280.425000px;}
.y237{bottom:280.965000px;}
.y264{bottom:281.686500px;}
.y1fd{bottom:282.046500px;}
.y1fe{bottom:282.225000px;}
.y54{bottom:283.486500px;}
.y128{bottom:285.630000px;}
.y2a5{bottom:289.065000px;}
.y2f{bottom:293.565000px;}
.y123{bottom:294.075000px;}
.y263{bottom:294.825000px;}
.y93{bottom:296.805000px;}
.yc5{bottom:298.425000px;}
.y236{bottom:298.605000px;}
.y142{bottom:298.770000px;}
.y1ed{bottom:299.325000px;}
.y1fc{bottom:300.225000px;}
.y53{bottom:301.486500px;}
.y2a4{bottom:302.386500px;}
.y2e{bottom:308.325000px;}
.y92{bottom:314.805000px;}
.y141{bottom:316.050000px;}
.y1ec{bottom:316.065000px;}
.yc4{bottom:316.246500px;}
.y235{bottom:317.146500px;}
.y1eb{bottom:317.325000px;}
.y1fb{bottom:317.865000px;}
.y52{bottom:319.305000px;}
.y262{bottom:322.005000px;}
.y2d{bottom:323.265000px;}
.y127{bottom:328.650000px;}
.y2a3{bottom:330.465000px;}
.y91{bottom:332.625000px;}
.y140{bottom:332.790000px;}
.y13f{bottom:334.050000px;}
.yc3{bottom:334.065000px;}
.y234{bottom:335.325000px;}
.y51{bottom:337.125000px;}
.y2c{bottom:338.205000px;}
.y2a2{bottom:343.786500px;}
.y126{bottom:346.650000px;}
.y261{bottom:348.646500px;}
.y90{bottom:350.625000px;}
.yc2{bottom:352.065000px;}
.y13e{bottom:352.411500px;}
.y2b{bottom:352.965000px;}
.y2e2{bottom:353.865000px;}
.y50{bottom:355.125000px;}
.y2a1{bottom:358.365000px;}
.y260{bottom:362.505000px;}
.y125{bottom:365.550000px;}
.y2e1{bottom:367.005000px;}
.y2a{bottom:367.905000px;}
.y8f{bottom:368.445000px;}
.y13d{bottom:369.690000px;}
.yc1{bottom:370.425000px;}
.y233{bottom:370.786500px;}
.y2a0{bottom:372.046500px;}
.y4f{bottom:372.946500px;}
.y25f{bottom:375.646500px;}
.y187{bottom:378.375000px;}
.y1df{bottom:379.125000px;}
.y2e0{bottom:380.505000px;}
.y29{bottom:382.845000px;}
.y124{bottom:384.270000px;}
.y8e{bottom:386.265000px;}
.y29f{bottom:386.446500px;}
.y13c{bottom:387.690000px;}
.yc0{bottom:388.246500px;}
.y232{bottom:388.425000px;}
.y4e{bottom:390.946500px;}
.y2df{bottom:393.825000px;}
.y28{bottom:397.605000px;}
.y25e{bottom:399.765000px;}
.y8d{bottom:404.265000px;}
.ybf{bottom:406.065000px;}
.y231{bottom:406.246500px;}
.y2de{bottom:407.325000px;}
.y4d{bottom:408.765000px;}
.y27{bottom:412.546500px;}
.y29e{bottom:414.525000px;}
.y2dd{bottom:420.825000px;}
.y8c{bottom:422.086500px;}
.ybe{bottom:424.065000px;}
.y4c{bottom:426.765000px;}
.y26{bottom:427.486500px;}
.y29d{bottom:427.845000px;}
.y25d{bottom:430.725000px;}
.y2dc{bottom:434.325000px;}
.y1c7{bottom:435.675000px;}
.y8b{bottom:440.086500px;}
.ybd{bottom:442.065000px;}
.y29c{bottom:442.425000px;}
.y25{bottom:442.786500px;}
.y4b{bottom:444.586500px;}
.y2db{bottom:447.646500px;}
.y25c{bottom:448.546500px;}
.y230{bottom:449.086500px;}
.y29b{bottom:455.925000px;}
.y24{bottom:457.725000px;}
.y8a{bottom:457.905000px;}
.ybc{bottom:459.886500px;}
.y2da{bottom:460.965000px;}
.y4a{bottom:462.405000px;}
.y25b{bottom:466.365000px;}
.y22f{bottom:466.905000px;}
.y29a{bottom:470.505000px;}
.y23{bottom:472.665000px;}
.y2d9{bottom:474.286500px;}
.y89{bottom:475.725000px;}
.y49{bottom:481.665000px;}
.ybb{bottom:483.825000px;}
.y25a{bottom:484.365000px;}
.y22e{bottom:484.725000px;}
.y22{bottom:487.425000px;}
.y2d8{bottom:487.965000px;}
.y88{bottom:493.725000px;}
.y299{bottom:497.325000px;}
.y48{bottom:499.486500px;}
.y2d7{bottom:501.286500px;}
.y259{bottom:502.186500px;}
.y21{bottom:502.365000px;}
.y22d{bottom:502.725000px;}
.y298{bottom:510.646500px;}
.y87{bottom:511.546500px;}
.y2d6{bottom:514.605000px;}
.yba{bottom:515.505000px;}
.y20{bottom:517.125000px;}
.y47{bottom:517.486500px;}
.y258{bottom:520.186500px;}
.y22c{bottom:520.546500px;}
.y297{bottom:525.225000px;}
.y2d5{bottom:528.286500px;}
.y86{bottom:529.546500px;}
.y1f{bottom:532.065000px;}
.yb9{bottom:532.605000px;}
.y46{bottom:535.305000px;}
.y257{bottom:538.005000px;}
.y22b{bottom:538.546500px;}
.y296{bottom:538.725000px;}
.y2d4{bottom:541.605000px;}
.y1e{bottom:546.825000px;}
.y85{bottom:547.186500px;}
.yb8{bottom:550.425000px;}
.y295{bottom:552.046500px;}
.y45{bottom:553.125000px;}
.y2d3{bottom:554.925000px;}
.y256{bottom:555.825000px;}
.y22a{bottom:556.365000px;}
.y1d{bottom:561.765000px;}
.y84{bottom:565.005000px;}
.y294{bottom:565.725000px;}
.y2d2{bottom:568.246500px;}
.yb7{bottom:568.425000px;}
.y44{bottom:571.125000px;}
.y255{bottom:574.186500px;}
.y229{bottom:574.365000px;}
.y1c{bottom:576.705000px;}
.y293{bottom:580.125000px;}
.y2d1{bottom:581.746500px;}
.y83{bottom:582.825000px;}
.yb6{bottom:586.425000px;}
.y43{bottom:588.945000px;}
.y1b{bottom:591.465000px;}
.y254{bottom:592.005000px;}
.y228{bottom:592.186500px;}
.y292{bottom:593.445000px;}
.y2d0{bottom:595.065000px;}
.y82{bottom:600.465000px;}
.yb5{bottom:604.246500px;}
.y1a{bottom:606.405000px;}
.y291{bottom:606.765000px;}
.y42{bottom:608.205000px;}
.y2cf{bottom:608.565000px;}
.y253{bottom:609.825000px;}
.y227{bottom:610.005000px;}
.y81{bottom:619.005000px;}
.y19{bottom:621.345000px;}
.y290{bottom:621.525000px;}
.y2ce{bottom:621.886500px;}
.yb4{bottom:622.065000px;}
.y41{bottom:626.025000px;}
.y226{bottom:628.005000px;}
.y28f{bottom:634.845000px;}
.y2cd{bottom:635.205000px;}
.y18{bottom:636.286500px;}
.y80{bottom:636.825000px;}
.y20a{bottom:640.350000px;}
.yb2{bottom:640.786500px;}
.y20d{bottom:640.875000px;}
.yb3{bottom:640.965000px;}
.y1bf{bottom:641.100000px;}
.y18b{bottom:641.475000px;}
.y40{bottom:644.025000px;}
.y18e{bottom:645.450000px;}
.y225{bottom:645.825000px;}
.y252{bottom:646.005000px;}
.y18d{bottom:646.950000px;}
.y2cc{bottom:648.886500px;}
.y28e{bottom:649.425000px;}
.y17{bottom:651.045000px;}
.y7f{bottom:653.386500px;}
.yb1{bottom:658.965000px;}
.y3f{bottom:661.845000px;}
.y2cb{bottom:662.205000px;}
.y28d{bottom:662.925000px;}
.y224{bottom:663.825000px;}
.y16{bottom:665.986500px;}
.y7e{bottom:669.945000px;}
.y2ca{bottom:675.525000px;}
.y28c{bottom:676.065000px;}
.y1c1{bottom:676.575000px;}
.yb0{bottom:676.965000px;}
.y3e{bottom:679.665000px;}
.y15{bottom:680.925000px;}
.y185{bottom:681.075000px;}
.y223{bottom:681.646500px;}
.y251{bottom:681.825000px;}
.y2c9{bottom:689.025000px;}
.y7d{bottom:689.746500px;}
.y1bc{bottom:690.405000px;}
.y28b{bottom:690.825000px;}
.y1bb{bottom:691.845000px;}
.y17e{bottom:692.175000px;}
.y1be{bottom:694.725000px;}
.yaf{bottom:694.786500px;}
.y14{bottom:695.686500px;}
.y1bd{bottom:697.065000px;}
.y3d{bottom:697.665000px;}
.y222{bottom:699.465000px;}
.y250{bottom:699.646500px;}
.y181{bottom:699.750000px;}
.y2c8{bottom:702.345000px;}
.y28a{bottom:704.146500px;}
.y109{bottom:704.700000px;}
.y7c{bottom:708.465000px;}
.y13{bottom:710.625000px;}
.yae{bottom:712.605000px;}
.ye1{bottom:714.675000px;}
.y3c{bottom:715.665000px;}
.ydf{bottom:716.100000px;}
.y221{bottom:717.465000px;}
.y12{bottom:725.565000px;}
.y7b{bottom:726.105000px;}
.y1ba{bottom:727.125000px;}
.y2c7{bottom:729.165000px;}
.yad{bottom:730.605000px;}
.y289{bottom:732.225000px;}
.y3b{bottom:733.486500px;}
.y220{bottom:735.465000px;}
.y184{bottom:739.500000px;}
.y11{bottom:740.325000px;}
.y2c6{bottom:742.665000px;}
.y7a{bottom:743.925000px;}
.y288{bottom:745.545000px;}
.yac{bottom:748.425000px;}
.y3a{bottom:751.305000px;}
.y21f{bottom:753.286500px;}
.y24f{bottom:753.465000px;}
.y10{bottom:755.265000px;}
.y2c5{bottom:755.986500px;}
.y19f{bottom:757.350000px;}
.y287{bottom:758.865000px;}
.y79{bottom:761.925000px;}
.y39{bottom:769.305000px;}
.yf{bottom:770.025000px;}
.y21e{bottom:771.105000px;}
.yab{bottom:772.545000px;}
.y286{bottom:773.445000px;}
.y24e{bottom:778.125000px;}
.y78{bottom:779.745000px;}
.y2c4{bottom:782.986500px;}
.ye{bottom:784.965000px;}
.y285{bottom:786.765000px;}
.y21d{bottom:796.125000px;}
.y2c3{bottom:796.305000px;}
.y77{bottom:797.565000px;}
.yaa{bottom:797.745000px;}
.yd{bottom:799.725000px;}
.y284{bottom:801.525000px;}
.y24d{bottom:808.905000px;}
.y2c2{bottom:809.625000px;}
.y21c{bottom:814.125000px;}
.y283{bottom:815.025000px;}
.y76{bottom:815.565000px;}
.y2c1{bottom:823.125000px;}
.y24c{bottom:826.725000px;}
.y282{bottom:828.345000px;}
.ya9{bottom:829.245000px;}
.y21b{bottom:832.125000px;}
.y75{bottom:833.386500px;}
.y2c0{bottom:836.445000px;}
.y281{bottom:841.665000px;}
.y24b{bottom:844.725000px;}
.ya8{bottom:847.065000px;}
.y2bf{bottom:850.125000px;}
.y74{bottom:851.386500px;}
.y280{bottom:856.245000px;}
.y21a{bottom:861.645000px;}
.y24a{bottom:862.545000px;}
.y2be{bottom:863.445000px;}
.ya7{bottom:865.065000px;}
.y73{bottom:869.205000px;}
.y27f{bottom:869.565000px;}
.y2bd{bottom:876.765000px;}
.y249{bottom:880.545000px;}
.ya6{bottom:882.886500px;}
.y27e{bottom:883.065000px;}
.y7{bottom:885.150000px;}
.y72{bottom:887.025000px;}
.y2bc{bottom:890.086500px;}
.yfe{bottom:893.550000px;}
.ydd{bottom:894.600000px;}
.y219{bottom:896.386500px;}
.y27d{bottom:897.645000px;}
.y248{bottom:898.365000px;}
.ya5{bottom:900.886500px;}
.y2bb{bottom:903.405000px;}
.y71{bottom:904.845000px;}
.y27c{bottom:910.965000px;}
.y247{bottom:916.545000px;}
.y2ba{bottom:916.905000px;}
.ya4{bottom:918.705000px;}
.y70{bottom:921.405000px;}
.yd2{bottom:921.825000px;}
.y27b{bottom:925.725000px;}
.y2b9{bottom:930.225000px;}
.y246{bottom:934.365000px;}
.ya3{bottom:936.525000px;}
.y6f{bottom:937.965000px;}
.y27a{bottom:939.045000px;}
.yd0{bottom:939.975000px;}
.y2b8{bottom:943.725000px;}
.y245{bottom:952.365000px;}
.ya2{bottom:954.525000px;}
.y2b7{bottom:957.225000px;}
.y6b{bottom:957.765000px;}
.y6d{bottom:961.545000px;}
.y6c{bottom:962.986500px;}
.y6e{bottom:963.165000px;}
.y279{bottom:966.945000px;}
.y244{bottom:970.365000px;}
.ya1{bottom:972.345000px;}
.y208{bottom:973.050000px;}
.yfb{bottom:975.825000px;}
.y6a{bottom:976.486500px;}
.y18a{bottom:981.225000px;}
.y278{bottom:981.525000px;}
.y199{bottom:982.800000px;}
.y2b6{bottom:983.865000px;}
.y243{bottom:988.186500px;}
.yf8{bottom:988.845000px;}
.yf9{bottom:989.025000px;}
.y6{bottom:992.265000px;}
.yfa{bottom:994.065000px;}
.y69{bottom:994.125000px;}
.y217{bottom:994.575000px;}
.y277{bottom:995.025000px;}
.ye6{bottom:995.925000px;}
.y2b5{bottom:997.365000px;}
.ye4{bottom:1004.100000px;}
.y242{bottom:1006.005000px;}
.y276{bottom:1009.605000px;}
.y2b4{bottom:1010.686500px;}
.y68{bottom:1011.945000px;}
.y215{bottom:1013.250000px;}
.y275{bottom:1022.925000px;}
.y241{bottom:1024.005000px;}
.y2b3{bottom:1024.186500px;}
.y213{bottom:1026.675000px;}
.y67{bottom:1029.945000px;}
.y5{bottom:1034.025000px;}
.y210{bottom:1034.445000px;}
.y190{bottom:1035.675000px;}
.y274{bottom:1037.505000px;}
.y211{bottom:1044.075000px;}
.y66{bottom:1047.765000px;}
.y20f{bottom:1048.125000px;}
.y273{bottom:1050.825000px;}
.y4{bottom:1075.786500px;}
.y2{bottom:1120.786500px;}
.y1{bottom:1146.345000px;}
.h1b{height:10.500000px;}
.h35{height:11.550000px;}
.h1d{height:11.925000px;}
.h26{height:12.675000px;}
.h50{height:13.425000px;}
.h3e{height:15.000000px;}
.h4b{height:16.500000px;}
.h4f{height:17.400000px;}
.h4c{height:18.075000px;}
.h4a{height:18.675000px;}
.h47{height:20.194482px;}
.h43{height:20.250000px;}
.h4e{height:21.825000px;}
.h2d{height:22.917334px;}
.h25{height:27.021973px;}
.h46{height:27.098145px;}
.h24{height:27.250488px;}
.h10{height:27.993164px;}
.h23{height:28.892725px;}
.h22{height:29.137061px;}
.h15{height:29.931152px;}
.h37{height:33.525000px;}
.h51{height:33.536426px;}
.h4d{height:33.560010px;}
.h6{height:33.748682px;}
.h14{height:35.617061px;}
.h3c{height:36.000000px;}
.h39{height:36.300000px;}
.h9{height:36.597656px;}
.h3b{height:37.725000px;}
.h36{height:40.200000px;}
.ha{height:40.500000px;}
.h21{height:40.810547px;}
.hc{height:41.364404px;}
.h12{height:41.451855px;}
.h7{height:41.481006px;}
.h18{height:41.524547px;}
.h1a{height:41.530547px;}
.hd{height:42.851074px;}
.h2c{height:43.571074px;}
.he{height:43.577074px;}
.h2{height:44.707178px;}
.hf{height:44.775000px;}
.h30{height:45.495000px;}
.h17{height:45.501000px;}
.hb{height:46.028467px;}
.h32{height:46.521006px;}
.h20{height:46.527006px;}
.h16{height:46.742467px;}
.h31{height:46.748467px;}
.h1f{height:47.241006px;}
.h19{height:47.410488px;}
.h13{height:48.136488px;}
.h42{height:48.147164px;}
.h29{height:48.153164px;}
.h33{height:48.525000px;}
.h44{height:48.750000px;}
.h27{height:48.873164px;}
.h38{height:48.879164px;}
.h2e{height:51.531152px;}
.h5{height:52.079918px;}
.h2a{height:53.691152px;}
.h40{height:55.275000px;}
.h1c{height:55.500000px;}
.h3a{height:56.571152px;}
.h34{height:57.297152px;}
.h1{height:57.626953px;}
.h48{height:58.950000px;}
.h3d{height:66.825000px;}
.h3f{height:80.625000px;}
.h4{height:84.000000px;}
.h28{height:84.675000px;}
.h3{height:100.054688px;}
.h1e{height:120.375000px;}
.h2b{height:191.250000px;}
.h45{height:207.825000px;}
.h41{height:227.850000px;}
.h49{height:333.525000px;}
.h2f{height:413.025000px;}
.h8{height:822.300000px;}
.h11{height:1068.300000px;}
.h0{height:1188.000000px;}
.w7{width:4.275000px;}
.wb{width:4.575000px;}
.w8{width:4.950000px;}
.w2d{width:5.400000px;}
.w5{width:6.000000px;}
.w35{width:6.075000px;}
.w2b{width:6.225000px;}
.wa{width:6.375000px;}
.w6{width:9.225000px;}
.w2a{width:11.925000px;}
.w2c{width:15.225000px;}
.w9{width:15.825000px;}
.w24{width:16.650000px;}
.w28{width:25.725000px;}
.w17{width:26.475000px;}
.w3a{width:35.925000px;}
.w3f{width:36.900000px;}
.w26{width:47.850000px;}
.w15{width:51.000000px;}
.w25{width:52.200000px;}
.w23{width:52.800000px;}
.w1b{width:57.750000px;}
.w20{width:60.225000px;}
.w11{width:78.675000px;}
.w3b{width:79.650000px;}
.w3d{width:80.475000px;}
.w3e{width:84.825000px;}
.w3c{width:89.475000px;}
.w21{width:96.150000px;}
.w10{width:98.250000px;}
.w37{width:99.600000px;}
.w18{width:102.000000px;}
.w41{width:104.025000px;}
.w12{width:113.475000px;}
.w31{width:116.700000px;}
.w42{width:117.225000px;}
.w1d{width:120.225000px;}
.wc{width:121.725000px;}
.w1e{width:122.100000px;}
.w14{width:141.150000px;}
.w22{width:141.375000px;}
.w13{width:142.200000px;}
.w34{width:152.475000px;}
.w40{width:156.450000px;}
.w16{width:226.125000px;}
.w39{width:254.775000px;}
.w36{width:262.425000px;}
.we{width:264.450000px;}
.w1c{width:290.250000px;}
.w32{width:309.225000px;}
.w1f{width:333.075000px;}
.wf{width:356.100000px;}
.w2e{width:356.475000px;}
.w29{width:376.575000px;}
.w27{width:376.650000px;}
.w1{width:391.275000px;}
.w38{width:410.550000px;}
.w3{width:452.775000px;}
.w1a{width:456.825000px;}
.w2f{width:459.450000px;}
.w30{width:460.875000px;}
.w4{width:467.625000px;}
.w33{width:496.875000px;}
.w2{width:529.125000px;}
.w19{width:570.450000px;}
.wd{width:655.950000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x96{left:1.275000px;}
.xee{left:3.105000px;}
.x8b{left:4.500000px;}
.xb3{left:6.285000px;}
.xc1{left:8.325000px;}
.xd5{left:10.080000px;}
.xb9{left:11.085000px;}
.x97{left:14.025000px;}
.xf6{left:15.120000px;}
.x15{left:17.625000px;}
.x3a{left:19.245000px;}
.x39{left:21.045000px;}
.xad{left:23.113500px;}
.x8f{left:25.620000px;}
.x3c{left:26.985000px;}
.x27{left:29.325000px;}
.xb5{left:31.050000px;}
.x14{left:32.563500px;}
.x8c{left:34.035000px;}
.x38{left:35.805000px;}
.xaf{left:37.170000px;}
.x28{left:38.685000px;}
.x90{left:41.460000px;}
.x82{left:43.363500px;}
.xf7{left:45.075000px;}
.xb4{left:46.425000px;}
.x8d{left:47.535000px;}
.x8e{left:50.235000px;}
.x89{left:51.825000px;}
.x3{left:54.000000px;}
.x91{left:58.380000px;}
.x8a{left:59.925000px;}
.xb7{left:60.988500px;}
.x83{left:62.085000px;}
.xba{left:64.363500px;}
.x29{left:66.945000px;}
.x2a{left:70.363500px;}
.x23{left:72.163500px;}
.x11{left:73.438500px;}
.x3b{left:76.125000px;}
.x2b{left:77.925000px;}
.xd7{left:79.738500px;}
.x24{left:81.163500px;}
.x9a{left:82.620000px;}
.x74{left:85.138500px;}
.x2c{left:86.925000px;}
.x10{left:88.380000px;}
.x2d{left:91.063500px;}
.x75{left:93.600000px;}
.x71{left:97.905000px;}
.x5{left:101.160000px;}
.xd8{left:102.600000px;}
.x25{left:105.105000px;}
.xc0{left:107.550000px;}
.x1{left:110.160000px;}
.x6{left:111.600000px;}
.xd4{left:114.300000px;}
.xcc{left:116.100000px;}
.xf4{left:117.885000px;}
.x84{left:119.145000px;}
.x26{left:120.585000px;}
.xb0{left:121.588500px;}
.x2e{left:124.185000px;}
.xf{left:125.563500px;}
.x69{left:128.325000px;}
.x9b{left:130.860000px;}
.x2f{left:131.925000px;}
.x56{left:134.985000px;}
.x55{left:136.963500px;}
.x6b{left:139.845000px;}
.x16{left:141.285000px;}
.x30{left:144.885000px;}
.x9c{left:146.338500px;}
.x13{left:147.585000px;}
.x6c{left:149.385000px;}
.xf2{left:150.660000px;}
.x9d{left:152.460000px;}
.x6a{left:154.963500px;}
.x4d{left:156.405000px;}
.x17{left:159.645000px;}
.xc{left:161.025000px;}
.x31{left:162.705000px;}
.x4{left:163.980000px;}
.x87{left:168.285000px;}
.x99{left:170.670000px;}
.xe{left:171.825000px;}
.x4e{left:173.145000px;}
.x18{left:175.305000px;}
.x32{left:177.463500px;}
.xf9{left:178.725000px;}
.x4f{left:179.985000px;}
.xd{left:181.185000px;}
.x85{left:183.585000px;}
.x57{left:185.925000px;}
.xe5{left:187.020000px;}
.x95{left:188.100000px;}
.x50{left:189.705000px;}
.xc2{left:191.250000px;}
.x58{left:194.925000px;}
.xeb{left:196.003500px;}
.x19{left:197.625000px;}
.xa{left:198.900000px;}
.x86{left:202.663500px;}
.xec{left:204.105000px;}
.x88{left:205.725000px;}
.xf3{left:207.360000px;}
.xe4{left:208.410000px;}
.x51{left:210.045000px;}
.xe6{left:211.320000px;}
.x9e{left:213.480000px;}
.x59{left:215.085000px;}
.x1a{left:216.705000px;}
.x80{left:219.238500px;}
.xe7{left:220.860000px;}
.x33{left:223.380000px;}
.x5a{left:225.525000px;}
.x9{left:227.160000px;}
.x52{left:228.763500px;}
.xb1{left:230.310000px;}
.x1b{left:233.445000px;}
.xf8{left:235.080000px;}
.xc8{left:238.500000px;}
.x76{left:239.938500px;}
.x5b{left:241.725000px;}
.x34{left:243.180000px;}
.xed{left:244.620000px;}
.x7{left:247.320000px;}
.xd9{left:252.180000px;}
.x72{left:253.245000px;}
.x81{left:255.060000px;}
.x8{left:257.038500px;}
.x35{left:258.120000px;}
.x53{left:260.263500px;}
.xc9{left:261.360000px;}
.xef{left:262.800000px;}
.x36{left:264.238500px;}
.x9f{left:266.760000px;}
.xf0{left:268.020000px;}
.x77{left:270.900000px;}
.x6d{left:272.145000px;}
.xc3{left:275.775000px;}
.x6e{left:277.725000px;}
.xda{left:279.000000px;}
.x37{left:280.800000px;}
.x6f{left:283.125000px;}
.x54{left:284.925000px;}
.xd1{left:286.455000px;}
.x1c{left:287.625000px;}
.x70{left:289.785000px;}
.x20{left:291.585000px;}
.xdb{left:293.038500px;}
.x78{left:296.280000px;}
.xe8{left:297.720000px;}
.xe9{left:301.138500px;}
.x21{left:302.563500px;}
.x1d{left:305.263500px;}
.xa0{left:306.720000px;}
.xca{left:307.980000px;}
.x79{left:309.600000px;}
.xa1{left:312.838500px;}
.x1e{left:316.245000px;}
.xcb{left:318.060000px;}
.xf1{left:319.138500px;}
.xa2{left:320.760000px;}
.x7b{left:321.838500px;}
.x7a{left:324.360000px;}
.xd2{left:331.095000px;}
.xea{left:333.720000px;}
.xa3{left:334.800000px;}
.xa4{left:344.700000px;}
.x98{left:347.550000px;}
.xd0{left:349.635000px;}
.xa5{left:351.000000px;}
.x22{left:352.785000px;}
.x7c{left:356.400000px;}
.x2{left:358.020000px;}
.xa6{left:362.700000px;}
.xe2{left:365.100000px;}
.xa7{left:368.820000px;}
.x7d{left:372.600000px;}
.xcd{left:373.680000px;}
.xd3{left:375.375000px;}
.x73{left:376.725000px;}
.x1f{left:377.985000px;}
.x7e{left:384.120000px;}
.xb{left:388.875000px;}
.x7f{left:390.600000px;}
.xc4{left:397.275000px;}
.xce{left:398.700000px;}
.xdc{left:403.200000px;}
.xa8{left:405.360000px;}
.xe3{left:410.175000px;}
.xdd{left:412.380000px;}
.xa9{left:416.338500px;}
.xd6{left:421.125000px;}
.xde{left:422.280000px;}
.xaa{left:432.360000px;}
.xab{left:438.300000px;}
.xdf{left:442.080000px;}
.x12{left:450.375000px;}
.xac{left:454.425000px;}
.xcf{left:457.125000px;}
.xe0{left:462.420000px;}
.x5c{left:468.000000px;}
.xe1{left:471.060000px;}
.xf5{left:504.300000px;}
.xb6{left:508.350000px;}
.xae{left:509.850000px;}
.x5d{left:512.100000px;}
.x42{left:513.900000px;}
.x5e{left:520.560000px;}
.x3f{left:525.900000px;}
.x5f{left:538.378500px;}
.x49{left:565.800000px;}
.x4b{left:584.475000px;}
.x3d{left:591.975000px;}
.x3e{left:596.700000px;}
.x94{left:600.375000px;}
.xb8{left:602.175000px;}
.x45{left:607.425000px;}
.x92{left:636.975000px;}
.xbf{left:645.825000px;}
.x68{left:653.550000px;}
.x4a{left:663.450000px;}
.x46{left:671.550000px;}
.xc5{left:681.675000px;}
.x47{left:685.200000px;}
.xc6{left:698.325000px;}
.x48{left:702.825000px;}
.x60{left:728.460000px;}
.x4c{left:731.025000px;}
.x61{left:741.600000px;}
.x93{left:776.850000px;}
.x40{left:783.750000px;}
.x62{left:788.220000px;}
.xbb{left:791.625000px;}
.x63{left:793.438500px;}
.xb2{left:797.775000px;}
.x64{left:803.160000px;}
.xc7{left:804.525000px;}
.xbc{left:805.950000px;}
.x65{left:813.060000px;}
.x43{left:816.975000px;}
.x66{left:820.438500px;}
.x67{left:827.100000px;}
.x41{left:848.025000px;}
.xbd{left:855.825000px;}
.xbe{left:870.150000px;}
.x44{left:881.175000px;}
@media print{
.va{vertical-align:-26.874667pt;}
.ve{vertical-align:-24.960000pt;}
.vd{vertical-align:-23.680000pt;}
.v9{vertical-align:-21.114667pt;}
.v2{vertical-align:-18.565333pt;}
.v6{vertical-align:-13.440000pt;}
.v3{vertical-align:-5.765333pt;}
.v7{vertical-align:-4.474667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:4.485333pt;}
.v5{vertical-align:5.760000pt;}
.v4{vertical-align:18.565333pt;}
.v1{vertical-align:19.834667pt;}
.vb{vertical-align:21.120000pt;}
.vc{vertical-align:24.325333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls74{letter-spacing:0.008267pt;}
.ls43{letter-spacing:0.103200pt;}
.lsc{letter-spacing:0.106933pt;}
.lsf{letter-spacing:0.127111pt;}
.ls62{letter-spacing:0.127695pt;}
.ls8{letter-spacing:0.135615pt;}
.ls9{letter-spacing:0.138785pt;}
.ls7{letter-spacing:0.140553pt;}
.ls69{letter-spacing:0.162667pt;}
.ls66{letter-spacing:0.183095pt;}
.ls46{letter-spacing:0.183733pt;}
.ls67{letter-spacing:0.191075pt;}
.ls5f{letter-spacing:0.191162pt;}
.ls5b{letter-spacing:0.191986pt;}
.ls59{letter-spacing:0.195733pt;}
.ls61{letter-spacing:0.197371pt;}
.ls32{letter-spacing:0.205526pt;}
.ls90{letter-spacing:0.206222pt;}
.ls63{letter-spacing:0.221751pt;}
.ls3d{letter-spacing:0.238400pt;}
.ls36{letter-spacing:0.243733pt;}
.ls42{letter-spacing:0.254133pt;}
.ls17{letter-spacing:0.259608pt;}
.ls27{letter-spacing:0.296602pt;}
.ls55{letter-spacing:0.298709pt;}
.ls31{letter-spacing:0.309784pt;}
.ls29{letter-spacing:0.314155pt;}
.ls5c{letter-spacing:0.318146pt;}
.ls53{letter-spacing:0.328267pt;}
.lsd{letter-spacing:0.328800pt;}
.ls24{letter-spacing:0.330409pt;}
.ls86{letter-spacing:0.336830pt;}
.ls7a{letter-spacing:0.357905pt;}
.ls6c{letter-spacing:0.376985pt;}
.ls97{letter-spacing:0.378667pt;}
.ls4b{letter-spacing:0.381867pt;}
.ls4e{letter-spacing:0.382113pt;}
.ls15{letter-spacing:0.388230pt;}
.ls8d{letter-spacing:0.394641pt;}
.ls6f{letter-spacing:0.401600pt;}
.ls5a{letter-spacing:0.402588pt;}
.ls6d{letter-spacing:0.408726pt;}
.ls79{letter-spacing:0.416571pt;}
.ls26{letter-spacing:0.421333pt;}
.ls6a{letter-spacing:0.424241pt;}
.ls52{letter-spacing:0.426095pt;}
.ls28{letter-spacing:0.436358pt;}
.ls20{letter-spacing:0.447107pt;}
.ls18{letter-spacing:0.451340pt;}
.ls1f{letter-spacing:0.455572pt;}
.lse{letter-spacing:0.502933pt;}
.ls3{letter-spacing:0.513393pt;}
.ls56{letter-spacing:0.515467pt;}
.ls88{letter-spacing:0.518331pt;}
.ls95{letter-spacing:0.526351pt;}
.ls7f{letter-spacing:0.529240pt;}
.ls2{letter-spacing:0.536185pt;}
.ls78{letter-spacing:0.541313pt;}
.ls4f{letter-spacing:0.542253pt;}
.ls57{letter-spacing:0.552533pt;}
.ls72{letter-spacing:0.559264pt;}
.ls41{letter-spacing:0.565333pt;}
.ls38{letter-spacing:0.573333pt;}
.ls1c{letter-spacing:0.576571pt;}
.ls51{letter-spacing:0.666819pt;}
.ls6b{letter-spacing:0.672795pt;}
.ls3b{letter-spacing:0.681630pt;}
.ls8e{letter-spacing:0.682705pt;}
.ls4d{letter-spacing:0.683252pt;}
.ls10{letter-spacing:0.703269pt;}
.ls2f{letter-spacing:0.707685pt;}
.ls6{letter-spacing:0.726193pt;}
.ls2a{letter-spacing:0.734487pt;}
.ls5e{letter-spacing:0.768800pt;}
.ls94{letter-spacing:0.770133pt;}
.ls3a{letter-spacing:0.805676pt;}
.ls34{letter-spacing:0.815030pt;}
.ls1e{letter-spacing:0.821850pt;}
.ls19{letter-spacing:0.826083pt;}
.ls68{letter-spacing:0.862776pt;}
.ls87{letter-spacing:0.906943pt;}
.ls39{letter-spacing:0.915086pt;}
.ls5d{letter-spacing:0.927543pt;}
.ls30{letter-spacing:0.933316pt;}
.ls16{letter-spacing:0.944552pt;}
.ls92{letter-spacing:1.000119pt;}
.ls22{letter-spacing:1.009156pt;}
.ls50{letter-spacing:1.025591pt;}
.ls2d{letter-spacing:1.047231pt;}
.ls60{letter-spacing:1.059695pt;}
.ls8f{letter-spacing:1.085041pt;}
.ls25{letter-spacing:1.270552pt;}
.ls11{letter-spacing:1.305475pt;}
.ls5{letter-spacing:1.310703pt;}
.ls71{letter-spacing:1.349370pt;}
.ls4a{letter-spacing:1.521325pt;}
.ls2e{letter-spacing:3.444131pt;}
.ls64{letter-spacing:3.625087pt;}
.ls1d{letter-spacing:3.822794pt;}
.ls35{letter-spacing:3.964350pt;}
.ls23{letter-spacing:4.326497pt;}
.ls13{letter-spacing:4.884219pt;}
.ls7e{letter-spacing:6.987970pt;}
.ls21{letter-spacing:7.672470pt;}
.ls33{letter-spacing:7.863987pt;}
.ls7d{letter-spacing:8.551733pt;}
.ls89{letter-spacing:9.534904pt;}
.ls98{letter-spacing:9.628267pt;}
.ls9a{letter-spacing:11.637020pt;}
.ls2b{letter-spacing:11.850767pt;}
.ls2c{letter-spacing:11.867882pt;}
.ls81{letter-spacing:11.921600pt;}
.ls99{letter-spacing:12.265067pt;}
.ls8c{letter-spacing:12.808627pt;}
.ls70{letter-spacing:13.153985pt;}
.ls1b{letter-spacing:13.191848pt;}
.ls7c{letter-spacing:13.530400pt;}
.ls48{letter-spacing:14.089333pt;}
.ls14{letter-spacing:14.146824pt;}
.ls1a{letter-spacing:14.165625pt;}
.ls76{letter-spacing:14.323733pt;}
.ls47{letter-spacing:14.412721pt;}
.ls54{letter-spacing:15.020000pt;}
.ls0{letter-spacing:15.058133pt;}
.ls91{letter-spacing:16.034405pt;}
.ls58{letter-spacing:16.110400pt;}
.ls93{letter-spacing:16.531289pt;}
.ls3c{letter-spacing:16.676691pt;}
.ls7b{letter-spacing:16.778296pt;}
.ls96{letter-spacing:16.801560pt;}
.ls4c{letter-spacing:17.835467pt;}
.ls77{letter-spacing:18.150933pt;}
.ls80{letter-spacing:18.331467pt;}
.ls37{letter-spacing:18.488000pt;}
.ls49{letter-spacing:19.120800pt;}
.ls84{letter-spacing:19.191200pt;}
.ls40{letter-spacing:19.310400pt;}
.ls12{letter-spacing:20.421333pt;}
.ls3e{letter-spacing:20.872000pt;}
.ls75{letter-spacing:21.226667pt;}
.lsb{letter-spacing:22.311200pt;}
.lsa{letter-spacing:22.552533pt;}
.ls45{letter-spacing:22.952533pt;}
.ls3f{letter-spacing:22.976000pt;}
.ls6e{letter-spacing:23.118133pt;}
.ls65{letter-spacing:24.032302pt;}
.ls44{letter-spacing:24.126933pt;}
.ls1{letter-spacing:24.225778pt;}
.ls8b{letter-spacing:24.519200pt;}
.ls8a{letter-spacing:24.923733pt;}
.ls83{letter-spacing:28.711200pt;}
.ls85{letter-spacing:29.360800pt;}
.ls82{letter-spacing:30.227200pt;}
.ls73{letter-spacing:34.545867pt;}
.ws6{word-spacing:-68.089600pt;}
.ws5{word-spacing:-67.965333pt;}
.ws7{word-spacing:-67.832000pt;}
.ws111{word-spacing:-53.066667pt;}
.ws2d{word-spacing:-48.000000pt;}
.wsbf{word-spacing:-41.561600pt;}
.wse{word-spacing:-41.232800pt;}
.ws11{word-spacing:-37.296000pt;}
.ws43{word-spacing:-33.359200pt;}
.wsce{word-spacing:-31.377867pt;}
.wsf7{word-spacing:-30.955467pt;}
.ws8{word-spacing:-30.936267pt;}
.ws127{word-spacing:-30.634933pt;}
.ws126{word-spacing:-30.632533pt;}
.ws198{word-spacing:-30.629333pt;}
.ws74{word-spacing:-30.427862pt;}
.ws195{word-spacing:-30.231529pt;}
.wsc9{word-spacing:-30.203170pt;}
.wsca{word-spacing:-30.198232pt;}
.wsf{word-spacing:-30.170667pt;}
.wsd0{word-spacing:-30.000533pt;}
.ws206{word-spacing:-29.998933pt;}
.ws54{word-spacing:-29.873333pt;}
.ws196{word-spacing:-29.865276pt;}
.ws122{word-spacing:-29.843378pt;}
.wsc8{word-spacing:-29.830331pt;}
.ws10a{word-spacing:-29.773432pt;}
.ws144{word-spacing:-29.692267pt;}
.ws145{word-spacing:-29.544800pt;}
.ws1b6{word-spacing:-29.533067pt;}
.wsb{word-spacing:-29.528000pt;}
.wsdb{word-spacing:-29.516533pt;}
.ws5d{word-spacing:-29.463200pt;}
.ws205{word-spacing:-29.360267pt;}
.ws76{word-spacing:-29.274370pt;}
.ws119{word-spacing:-29.235970pt;}
.ws13e{word-spacing:-29.225867pt;}
.ws2{word-spacing:-29.214400pt;}
.wsd{word-spacing:-29.006667pt;}
.ws97{word-spacing:-28.901333pt;}
.ws18a{word-spacing:-28.897333pt;}
.wsc2{word-spacing:-28.891733pt;}
.wsda{word-spacing:-28.891467pt;}
.wsc5{word-spacing:-28.889600pt;}
.ws1e3{word-spacing:-28.869401pt;}
.wsb1{word-spacing:-28.817867pt;}
.wsfa{word-spacing:-28.723733pt;}
.ws86{word-spacing:-28.718667pt;}
.wsa7{word-spacing:-28.693067pt;}
.ws10b{word-spacing:-28.676840pt;}
.ws1e2{word-spacing:-28.599916pt;}
.ws1ee{word-spacing:-28.590133pt;}
.ws11b{word-spacing:-28.583309pt;}
.wsff{word-spacing:-28.581600pt;}
.ws1d0{word-spacing:-28.411467pt;}
.wsc3{word-spacing:-28.400533pt;}
.ws88{word-spacing:-28.398933pt;}
.ws9{word-spacing:-28.250133pt;}
.wscf{word-spacing:-28.248267pt;}
.ws1e1{word-spacing:-28.205349pt;}
.ws4c{word-spacing:-28.183200pt;}
.wsb7{word-spacing:-28.180800pt;}
.ws19e{word-spacing:-28.176800pt;}
.ws1f5{word-spacing:-28.174400pt;}
.ws80{word-spacing:-28.125610pt;}
.ws89{word-spacing:-28.090667pt;}
.ws62{word-spacing:-28.085333pt;}
.ws1cd{word-spacing:-28.085067pt;}
.wsa5{word-spacing:-28.082933pt;}
.ws20a{word-spacing:-28.081067pt;}
.ws167{word-spacing:-28.078933pt;}
.wsb6{word-spacing:-28.078133pt;}
.ws17d{word-spacing:-28.074667pt;}
.wse3{word-spacing:-28.074133pt;}
.ws12e{word-spacing:-28.070133pt;}
.ws17a{word-spacing:-28.067733pt;}
.ws9e{word-spacing:-28.066400pt;}
.ws15d{word-spacing:-28.064000pt;}
.wsa2{word-spacing:-28.060800pt;}
.ws14a{word-spacing:-27.988152pt;}
.ws189{word-spacing:-27.952533pt;}
.wscb{word-spacing:-27.943733pt;}
.ws1ad{word-spacing:-27.942400pt;}
.wsfc{word-spacing:-27.942133pt;}
.ws108{word-spacing:-27.940533pt;}
.wsb2{word-spacing:-27.764267pt;}
.ws9a{word-spacing:-27.761867pt;}
.ws201{word-spacing:-27.758400pt;}
.ws18e{word-spacing:-27.757067pt;}
.ws4d{word-spacing:-27.753067pt;}
.ws1d1{word-spacing:-27.745067pt;}
.wsbd{word-spacing:-27.623467pt;}
.ws91{word-spacing:-27.621333pt;}
.wsaa{word-spacing:-27.615733pt;}
.wsa{word-spacing:-27.612533pt;}
.ws176{word-spacing:-27.609271pt;}
.ws103{word-spacing:-27.608000pt;}
.ws1d6{word-spacing:-27.606133pt;}
.ws194{word-spacing:-27.605600pt;}
.ws1dd{word-spacing:-27.604042pt;}
.ws1b9{word-spacing:-27.598813pt;}
.wsb9{word-spacing:-27.548533pt;}
.ws185{word-spacing:-27.501531pt;}
.ws138{word-spacing:-27.477946pt;}
.ws4a{word-spacing:-27.448267pt;}
.ws8a{word-spacing:-27.445333pt;}
.ws182{word-spacing:-27.444533pt;}
.ws1db{word-spacing:-27.442933pt;}
.ws101{word-spacing:-27.442133pt;}
.ws188{word-spacing:-27.437600pt;}
.ws1de{word-spacing:-27.435467pt;}
.wsdd{word-spacing:-27.427467pt;}
.ws1ef{word-spacing:-27.309333pt;}
.ws13f{word-spacing:-26.977333pt;}
.ws1f7{word-spacing:-26.975733pt;}
.ws53{word-spacing:-26.971467pt;}
.ws1af{word-spacing:-26.971200pt;}
.wse6{word-spacing:-26.956533pt;}
.ws18f{word-spacing:-26.936000pt;}
.wsf2{word-spacing:-26.933333pt;}
.wsa3{word-spacing:-26.903200pt;}
.ws65{word-spacing:-26.851733pt;}
.ws1d5{word-spacing:-26.801867pt;}
.wsfe{word-spacing:-26.738478pt;}
.wsf4{word-spacing:-26.733250pt;}
.ws100{word-spacing:-26.680267pt;}
.ws139{word-spacing:-26.666933pt;}
.ws81{word-spacing:-26.663733pt;}
.ws49{word-spacing:-26.484267pt;}
.ws70{word-spacing:-26.466824pt;}
.ws73{word-spacing:-26.426384pt;}
.ws125{word-spacing:-26.415927pt;}
.ws1a1{word-spacing:-26.354369pt;}
.ws133{word-spacing:-26.349140pt;}
.wsf8{word-spacing:-26.331467pt;}
.ws4b{word-spacing:-26.315467pt;}
.wsed{word-spacing:-26.268533pt;}
.wsbe{word-spacing:-26.266133pt;}
.ws6f{word-spacing:-26.264173pt;}
.ws11e{word-spacing:-26.263200pt;}
.ws28{word-spacing:-26.232800pt;}
.ws3d{word-spacing:-26.221600pt;}
.ws15e{word-spacing:-26.169067pt;}
.ws11d{word-spacing:-26.168267pt;}
.ws107{word-spacing:-26.165333pt;}
.ws154{word-spacing:-26.164267pt;}
.wsb0{word-spacing:-26.162933pt;}
.ws113{word-spacing:-26.162667pt;}
.ws8c{word-spacing:-26.158933pt;}
.wsd3{word-spacing:-26.156000pt;}
.ws208{word-spacing:-26.155733pt;}
.ws169{word-spacing:-26.153333pt;}
.ws135{word-spacing:-26.037867pt;}
.ws2a9{word-spacing:-26.024267pt;}
.wsd1{word-spacing:-25.851200pt;}
.ws4{word-spacing:-25.845600pt;}
.ws168{word-spacing:-25.844601pt;}
.ws1c5{word-spacing:-25.836267pt;}
.wsfd{word-spacing:-25.834144pt;}
.ws1e0{word-spacing:-25.823686pt;}
.wse4{word-spacing:-25.809391pt;}
.ws1e6{word-spacing:-25.798933pt;}
.ws6e{word-spacing:-25.793705pt;}
.ws1e7{word-spacing:-25.716460pt;}
.ws13d{word-spacing:-25.705867pt;}
.ws179{word-spacing:-25.697867pt;}
.ws115{word-spacing:-25.695733pt;}
.ws1fd{word-spacing:-25.695467pt;}
.ws106{word-spacing:-25.694933pt;}
.ws1ed{word-spacing:-25.683467pt;}
.ws11a{word-spacing:-25.634989pt;}
.ws42{word-spacing:-25.596267pt;}
.ws2a8{word-spacing:-25.530133pt;}
.wsde{word-spacing:-25.524533pt;}
.ws7a{word-spacing:-25.522933pt;}
.ws151{word-spacing:-25.518133pt;}
.ws109{word-spacing:-25.511467pt;}
.ws146{word-spacing:-25.498570pt;}
.ws71{word-spacing:-25.483576pt;}
.ws1a7{word-spacing:-25.462430pt;}
.ws137{word-spacing:-25.392533pt;}
.ws152{word-spacing:-25.384533pt;}
.ws217{word-spacing:-25.322400pt;}
.ws117{word-spacing:-25.209067pt;}
.wsee{word-spacing:-25.193333pt;}
.ws1df{word-spacing:-25.099467pt;}
.ws24f{word-spacing:-25.092000pt;}
.wsf0{word-spacing:-25.089009pt;}
.ws250{word-spacing:-25.082400pt;}
.ws132{word-spacing:-25.066667pt;}
.wsa0{word-spacing:-25.062667pt;}
.wsef{word-spacing:-25.059733pt;}
.ws177{word-spacing:-25.058133pt;}
.ws1fe{word-spacing:-25.056000pt;}
.ws9f{word-spacing:-25.049333pt;}
.ws1ff{word-spacing:-25.048267pt;}
.ws1f6{word-spacing:-25.044267pt;}
.wsb8{word-spacing:-25.039467pt;}
.ws68{word-spacing:-24.983200pt;}
.ws178{word-spacing:-24.980800pt;}
.wsd2{word-spacing:-24.889067pt;}
.ws1a2{word-spacing:-24.884533pt;}
.wsb5{word-spacing:-24.882933pt;}
.ws1cb{word-spacing:-24.880000pt;}
.ws12b{word-spacing:-24.879733pt;}
.ws163{word-spacing:-24.877867pt;}
.ws1e4{word-spacing:-24.869333pt;}
.wse5{word-spacing:-24.845668pt;}
.wsf1{word-spacing:-24.840439pt;}
.ws35{word-spacing:-24.801067pt;}
.wsc1{word-spacing:-24.742933pt;}
.ws1b1{word-spacing:-24.589699pt;}
.ws180{word-spacing:-24.565067pt;}
.wsa1{word-spacing:-24.563733pt;}
.ws87{word-spacing:-24.562933pt;}
.ws124{word-spacing:-24.544031pt;}
.ws37{word-spacing:-24.459467pt;}
.wsf3{word-spacing:-24.451101pt;}
.ws69{word-spacing:-24.421067pt;}
.wsab{word-spacing:-24.417333pt;}
.wsbc{word-spacing:-24.410667pt;}
.ws1e8{word-spacing:-24.410400pt;}
.wsd4{word-spacing:-24.408533pt;}
.ws7e{word-spacing:-24.389867pt;}
.ws1b{word-spacing:-24.336000pt;}
.ws170{word-spacing:-24.334933pt;}
.ws1c7{word-spacing:-24.321600pt;}
.ws1a4{word-spacing:-24.282183pt;}
.ws1ae{word-spacing:-24.242933pt;}
.ws181{word-spacing:-24.230933pt;}
.ws44{word-spacing:-24.226133pt;}
.ws8b{word-spacing:-24.218133pt;}
.ws36{word-spacing:-24.181333pt;}
.ws274{word-spacing:-24.137067pt;}
.wsa8{word-spacing:-24.120267pt;}
.ws252{word-spacing:-24.105600pt;}
.ws2ab{word-spacing:-24.089067pt;}
.ws123{word-spacing:-23.946562pt;}
.ws1a3{word-spacing:-23.927328pt;}
.wsc{word-spacing:-23.926400pt;}
.ws1c8{word-spacing:-23.924267pt;}
.ws197{word-spacing:-23.917867pt;}
.ws10{word-spacing:-23.915733pt;}
.ws1a5{word-spacing:-23.852444pt;}
.ws1b0{word-spacing:-23.844565pt;}
.ws5e{word-spacing:-23.778133pt;}
.ws1da{word-spacing:-23.773867pt;}
.ws1a0{word-spacing:-23.759597pt;}
.ws10c{word-spacing:-23.689590pt;}
.ws26{word-spacing:-23.661600pt;}
.ws98{word-spacing:-23.610667pt;}
.ws290{word-spacing:-23.602933pt;}
.ws19f{word-spacing:-23.601224pt;}
.ws29a{word-spacing:-23.600267pt;}
.ws1ec{word-spacing:-23.591733pt;}
.ws24c{word-spacing:-23.578667pt;}
.ws253{word-spacing:-23.570667pt;}
.ws31{word-spacing:-23.518667pt;}
.ws2af{word-spacing:-23.490133pt;}
.ws24d{word-spacing:-23.485867pt;}
.ws225{word-spacing:-23.480533pt;}
.ws23c{word-spacing:-23.469600pt;}
.ws17f{word-spacing:-23.466933pt;}
.ws266{word-spacing:-23.454667pt;}
.ws22d{word-spacing:-23.453067pt;}
.ws251{word-spacing:-23.451467pt;}
.ws267{word-spacing:-23.449600pt;}
.ws22b{word-spacing:-23.445867pt;}
.ws2b4{word-spacing:-23.444267pt;}
.ws2c{word-spacing:-23.345600pt;}
.ws6a{word-spacing:-23.324340pt;}
.ws1f4{word-spacing:-23.282667pt;}
.wse2{word-spacing:-23.257067pt;}
.ws22c{word-spacing:-23.179200pt;}
.ws229{word-spacing:-23.173067pt;}
.ws254{word-spacing:-23.167200pt;}
.wsd7{word-spacing:-23.133333pt;}
.ws16e{word-spacing:-23.063200pt;}
.ws105{word-spacing:-23.057867pt;}
.ws227{word-spacing:-22.977867pt;}
.ws255{word-spacing:-22.976267pt;}
.ws24a{word-spacing:-22.972533pt;}
.ws22a{word-spacing:-22.971733pt;}
.ws19a{word-spacing:-22.969867pt;}
.wsa6{word-spacing:-22.968267pt;}
.ws21b{word-spacing:-22.967733pt;}
.ws1eb{word-spacing:-22.965333pt;}
.ws82{word-spacing:-22.959733pt;}
.ws221{word-spacing:-22.956000pt;}
.ws22f{word-spacing:-22.938667pt;}
.ws226{word-spacing:-22.933067pt;}
.ws263{word-spacing:-22.929067pt;}
.ws26a{word-spacing:-22.920267pt;}
.ws2f{word-spacing:-22.896000pt;}
.ws244{word-spacing:-22.850133pt;}
.ws51{word-spacing:-22.840267pt;}
.ws23e{word-spacing:-22.839733pt;}
.ws230{word-spacing:-22.831733pt;}
.ws143{word-spacing:-22.829333pt;}
.ws1b2{word-spacing:-22.810667pt;}
.ws10d{word-spacing:-22.764622pt;}
.ws10e{word-spacing:-22.759684pt;}
.ws297{word-spacing:-22.757067pt;}
.ws72{word-spacing:-22.696889pt;}
.ws23{word-spacing:-22.688000pt;}
.ws200{word-spacing:-22.650667pt;}
.ws52{word-spacing:-22.637867pt;}
.ws212{word-spacing:-22.516267pt;}
.ws12d{word-spacing:-22.501333pt;}
.ws187{word-spacing:-22.497333pt;}
.ws17c{word-spacing:-22.495733pt;}
.wscd{word-spacing:-22.477067pt;}
.ws2a5{word-spacing:-22.426133pt;}
.wsa9{word-spacing:-22.423200pt;}
.ws16f{word-spacing:-22.422400pt;}
.ws1c6{word-spacing:-22.417867pt;}
.ws15{word-spacing:-22.412000pt;}
.wse8{word-spacing:-22.341093pt;}
.ws240{word-spacing:-22.332533pt;}
.ws256{word-spacing:-22.330133pt;}
.ws85{word-spacing:-22.328267pt;}
.ws245{word-spacing:-22.327733pt;}
.ws213{word-spacing:-22.327200pt;}
.ws23a{word-spacing:-22.319200pt;}
.ws2a7{word-spacing:-22.318933pt;}
.ws25e{word-spacing:-22.298667pt;}
.ws243{word-spacing:-22.293333pt;}
.ws38{word-spacing:-22.258133pt;}
.ws0{word-spacing:-22.218667pt;}
.ws21f{word-spacing:-22.210133pt;}
.ws1c3{word-spacing:-22.209867pt;}
.ws298{word-spacing:-22.206133pt;}
.ws20c{word-spacing:-22.200533pt;}
.ws171{word-spacing:-22.192533pt;}
.ws2a4{word-spacing:-22.188000pt;}
.ws25f{word-spacing:-22.186133pt;}
.ws23f{word-spacing:-22.182400pt;}
.ws220{word-spacing:-22.164267pt;}
.ws14{word-spacing:-22.076533pt;}
.ws1dc{word-spacing:-22.074667pt;}
.ws1b4{word-spacing:-22.073333pt;}
.wsaf{word-spacing:-22.004267pt;}
.wse7{word-spacing:-21.956983pt;}
.wsc7{word-spacing:-21.946933pt;}
.ws299{word-spacing:-21.891200pt;}
.ws172{word-spacing:-21.861333pt;}
.ws12c{word-spacing:-21.860267pt;}
.wsc6{word-spacing:-21.856000pt;}
.ws17b{word-spacing:-21.848533pt;}
.ws1ba{word-spacing:-21.784533pt;}
.ws21e{word-spacing:-21.689333pt;}
.ws20e{word-spacing:-21.687200pt;}
.ws141{word-spacing:-21.678933pt;}
.ws9d{word-spacing:-21.672000pt;}
.wsb4{word-spacing:-21.668000pt;}
.ws1d9{word-spacing:-21.660000pt;}
.ws20d{word-spacing:-21.653067pt;}
.ws265{word-spacing:-21.648800pt;}
.ws25d{word-spacing:-21.645067pt;}
.ws1{word-spacing:-21.629600pt;}
.ws25c{word-spacing:-21.562933pt;}
.ws27d{word-spacing:-21.559733pt;}
.ws210{word-spacing:-21.551467pt;}
.ws211{word-spacing:-21.546133pt;}
.wsd9{word-spacing:-21.544533pt;}
.ws26c{word-spacing:-21.544267pt;}
.ws222{word-spacing:-21.536267pt;}
.ws24b{word-spacing:-21.534667pt;}
.ws29d{word-spacing:-21.524267pt;}
.ws1f9{word-spacing:-21.226667pt;}
.ws1d8{word-spacing:-21.216533pt;}
.ws1b3{word-spacing:-21.208800pt;}
.ws1fb{word-spacing:-21.208533pt;}
.ws12a{word-spacing:-21.143200pt;}
.ws15f{word-spacing:-21.135467pt;}
.ws16b{word-spacing:-21.134933pt;}
.ws30{word-spacing:-21.126667pt;}
.ws1d7{word-spacing:-21.119200pt;}
.ws264{word-spacing:-21.054667pt;}
.ws28f{word-spacing:-21.053067pt;}
.ws26d{word-spacing:-21.050933pt;}
.ws261{word-spacing:-21.050133pt;}
.ws121{word-spacing:-21.048267pt;}
.ws259{word-spacing:-21.047733pt;}
.ws55{word-spacing:-21.042933pt;}
.ws11f{word-spacing:-21.042133pt;}
.ws18b{word-spacing:-21.037333pt;}
.ws128{word-spacing:-21.033067pt;}
.ws29c{word-spacing:-21.019200pt;}
.ws28d{word-spacing:-21.018667pt;}
.ws28e{word-spacing:-21.008267pt;}
.ws223{word-spacing:-21.007733pt;}
.ws39{word-spacing:-20.961067pt;}
.ws29f{word-spacing:-20.935467pt;}
.ws246{word-spacing:-20.914933pt;}
.ws14f{word-spacing:-20.913867pt;}
.ws29e{word-spacing:-20.896267pt;}
.ws1f{word-spacing:-20.797600pt;}
.ws4f{word-spacing:-20.724267pt;}
.ws19c{word-spacing:-20.722667pt;}
.ws18d{word-spacing:-20.714133pt;}
.ws174{word-spacing:-20.624261pt;}
.ws1a6{word-spacing:-20.603030pt;}
.ws99{word-spacing:-20.579733pt;}
.ws202{word-spacing:-20.500000pt;}
.ws50{word-spacing:-20.498400pt;}
.ws61{word-spacing:-20.493600pt;}
.ws32{word-spacing:-20.492800pt;}
.wsf5{word-spacing:-20.458740pt;}
.ws2a0{word-spacing:-20.417867pt;}
.ws235{word-spacing:-20.412533pt;}
.ws2aa{word-spacing:-20.410133pt;}
.ws233{word-spacing:-20.409333pt;}
.ws1b8{word-spacing:-20.405333pt;}
.ws27e{word-spacing:-20.404533pt;}
.wsd5{word-spacing:-20.394133pt;}
.ws257{word-spacing:-20.378667pt;}
.ws1be{word-spacing:-20.375467pt;}
.ws281{word-spacing:-20.368267pt;}
.wscc{word-spacing:-20.358726pt;}
.ws258{word-spacing:-20.345600pt;}
.ws295{word-spacing:-20.288267pt;}
.ws262{word-spacing:-20.283467pt;}
.ws112{word-spacing:-20.272533pt;}
.ws1c1{word-spacing:-20.265600pt;}
.ws25b{word-spacing:-20.262667pt;}
.ws129{word-spacing:-20.258933pt;}
.ws1bf{word-spacing:-20.258667pt;}
.ws1c2{word-spacing:-20.253867pt;}
.ws63{word-spacing:-20.187085pt;}
.wsf6{word-spacing:-20.162332pt;}
.ws7b{word-spacing:-20.157103pt;}
.ws66{word-spacing:-19.989663pt;}
.ws173{word-spacing:-19.986353pt;}
.ws285{word-spacing:-19.973067pt;}
.ws234{word-spacing:-19.969867pt;}
.ws284{word-spacing:-19.953067pt;}
.ws1ab{word-spacing:-19.935733pt;}
.ws4e{word-spacing:-19.931200pt;}
.ws1aa{word-spacing:-19.928800pt;}
.ws214{word-spacing:-19.771733pt;}
.ws20f{word-spacing:-19.770933pt;}
.ws92{word-spacing:-19.770667pt;}
.ws282{word-spacing:-19.767733pt;}
.ws296{word-spacing:-19.764533pt;}
.ws1c4{word-spacing:-19.762667pt;}
.ws13a{word-spacing:-19.754667pt;}
.ws2a2{word-spacing:-19.744000pt;}
.ws280{word-spacing:-19.738667pt;}
.ws2ae{word-spacing:-19.736267pt;}
.ws287{word-spacing:-19.733867pt;}
.ws2b1{word-spacing:-19.730933pt;}
.wse0{word-spacing:-19.640267pt;}
.wsa4{word-spacing:-19.636267pt;}
.wsc4{word-spacing:-19.628533pt;}
.ws1b7{word-spacing:-19.625333pt;}
.ws219{word-spacing:-19.624267pt;}
.ws14b{word-spacing:-19.606317pt;}
.ws26b{word-spacing:-19.557067pt;}
.ws64{word-spacing:-19.529652pt;}
.ws7c{word-spacing:-19.524424pt;}
.ws2b{word-spacing:-19.472800pt;}
.ws48{word-spacing:-19.430933pt;}
.ws2a{word-spacing:-19.349067pt;}
.ws186{word-spacing:-19.297333pt;}
.ws1ac{word-spacing:-19.296000pt;}
.ws110{word-spacing:-19.292000pt;}
.ws1a9{word-spacing:-19.291733pt;}
.ws10f{word-spacing:-19.285067pt;}
.ws102{word-spacing:-19.223200pt;}
.ws67{word-spacing:-19.188152pt;}
.ws2b2{word-spacing:-19.132533pt;}
.ws28a{word-spacing:-19.131733pt;}
.ws2b0{word-spacing:-19.130133pt;}
.ws277{word-spacing:-19.127733pt;}
.ws209{word-spacing:-19.125333pt;}
.ws2a1{word-spacing:-19.123733pt;}
.ws228{word-spacing:-19.114933pt;}
.ws218{word-spacing:-19.098667pt;}
.ws2b3{word-spacing:-19.088533pt;}
.ws14c{word-spacing:-19.081727pt;}
.ws148{word-spacing:-19.028036pt;}
.ws276{word-spacing:-19.010133pt;}
.ws2a3{word-spacing:-19.002933pt;}
.ws289{word-spacing:-18.985867pt;}
.ws27a{word-spacing:-18.984267pt;}
.ws215{word-spacing:-18.969867pt;}
.ws1a8{word-spacing:-18.802667pt;}
.ws78{word-spacing:-18.798933pt;}
.wse9{word-spacing:-18.755733pt;}
.ws26f{word-spacing:-18.674667pt;}
.ws59{word-spacing:-18.661333pt;}
.ws58{word-spacing:-18.653333pt;}
.ws11c{word-spacing:-18.583200pt;}
.ws2ad{word-spacing:-18.493067pt;}
.ws21a{word-spacing:-18.492533pt;}
.ws28c{word-spacing:-18.491733pt;}
.ws231{word-spacing:-18.487467pt;}
.ws96{word-spacing:-18.477067pt;}
.wsec{word-spacing:-18.471733pt;}
.ws9c{word-spacing:-18.460800pt;}
.ws278{word-spacing:-18.453867pt;}
.ws216{word-spacing:-18.453067pt;}
.ws27b{word-spacing:-18.420267pt;}
.ws184{word-spacing:-18.417254pt;}
.ws3e{word-spacing:-18.407200pt;}
.ws149{word-spacing:-18.370418pt;}
.ws134{word-spacing:-18.351048pt;}
.ws1cc{word-spacing:-18.345867pt;}
.ws7d{word-spacing:-18.309961pt;}
.ws7f{word-spacing:-18.304732pt;}
.ws147{word-spacing:-18.303546pt;}
.ws1e5{word-spacing:-18.264293pt;}
.ws1d{word-spacing:-18.230133pt;}
.ws29{word-spacing:-18.215467pt;}
.ws16{word-spacing:-18.198400pt;}
.ws16a{word-spacing:-18.162933pt;}
.ws75{word-spacing:-18.144346pt;}
.ws3f{word-spacing:-18.068000pt;}
.ws142{word-spacing:-18.026667pt;}
.ws118{word-spacing:-18.025067pt;}
.ws159{word-spacing:-17.997333pt;}
.wsfb{word-spacing:-17.937867pt;}
.ws14d{word-spacing:-17.911487pt;}
.ws27c{word-spacing:-17.857867pt;}
.ws28b{word-spacing:-17.852533pt;}
.ws8e{word-spacing:-17.842933pt;}
.ws8d{word-spacing:-17.837333pt;}
.ws1b5{word-spacing:-17.832800pt;}
.ws2ac{word-spacing:-17.818667pt;}
.ws232{word-spacing:-17.808267pt;}
.ws84{word-spacing:-17.708533pt;}
.ws1c0{word-spacing:-17.698933pt;}
.ws175{word-spacing:-17.682510pt;}
.ws1a{word-spacing:-17.589600pt;}
.ws94{word-spacing:-17.541333pt;}
.ws3a{word-spacing:-17.420800pt;}
.ws248{word-spacing:-17.406667pt;}
.ws5b{word-spacing:-17.381333pt;}
.wsb3{word-spacing:-17.379733pt;}
.ws190{word-spacing:-17.378400pt;}
.ws165{word-spacing:-17.375733pt;}
.ws162{word-spacing:-17.374133pt;}
.ws46{word-spacing:-17.373867pt;}
.ws166{word-spacing:-17.366933pt;}
.ws161{word-spacing:-17.289067pt;}
.ws23d{word-spacing:-17.213867pt;}
.ws13b{word-spacing:-17.203733pt;}
.ws16d{word-spacing:-17.202933pt;}
.ws5f{word-spacing:-17.200533pt;}
.ws275{word-spacing:-17.196533pt;}
.ws242{word-spacing:-17.083733pt;}
.ws27f{word-spacing:-17.079733pt;}
.ws249{word-spacing:-17.058933pt;}
.ws191{word-spacing:-16.949284pt;}
.ws158{word-spacing:-16.741333pt;}
.ws13c{word-spacing:-16.739467pt;}
.ws150{word-spacing:-16.680718pt;}
.ws45{word-spacing:-16.564267pt;}
.ws57{word-spacing:-16.563733pt;}
.ws104{word-spacing:-16.562933pt;}
.ws56{word-spacing:-16.557600pt;}
.ws1f3{word-spacing:-16.553600pt;}
.ws24{word-spacing:-16.496000pt;}
.ws192{word-spacing:-16.437867pt;}
.ws273{word-spacing:-16.398133pt;}
.ws156{word-spacing:-16.390667pt;}
.ws183{word-spacing:-16.193215pt;}
.ws29b{word-spacing:-16.125067pt;}
.wsac{word-spacing:-16.099733pt;}
.ws140{word-spacing:-16.099467pt;}
.ws60{word-spacing:-16.091733pt;}
.ws157{word-spacing:-16.089600pt;}
.ws18c{word-spacing:-16.034133pt;}
.ws291{word-spacing:-15.937867pt;}
.ws247{word-spacing:-15.932533pt;}
.ws272{word-spacing:-15.930133pt;}
.ws1f2{word-spacing:-15.929067pt;}
.ws153{word-spacing:-15.919733pt;}
.wsba{word-spacing:-15.909600pt;}
.ws1bc{word-spacing:-15.785867pt;}
.ws6c{word-spacing:-15.687702pt;}
.ws21d{word-spacing:-15.652800pt;}
.wsdc{word-spacing:-15.609067pt;}
.ws34{word-spacing:-15.516800pt;}
.ws20{word-spacing:-15.336267pt;}
.ws25a{word-spacing:-15.289333pt;}
.wsad{word-spacing:-15.154933pt;}
.ws238{word-spacing:-15.149600pt;}
.ws199{word-spacing:-15.148533pt;}
.ws293{word-spacing:-15.146133pt;}
.ws1d4{word-spacing:-15.143733pt;}
.ws288{word-spacing:-15.140800pt;}
.ws237{word-spacing:-15.136267pt;}
.ws236{word-spacing:-14.852267pt;}
.wseb{word-spacing:-14.821333pt;}
.ws1fa{word-spacing:-14.814400pt;}
.ws95{word-spacing:-14.814133pt;}
.ws1ea{word-spacing:-14.813867pt;}
.ws239{word-spacing:-14.647733pt;}
.ws21c{word-spacing:-14.647200pt;}
.ws24e{word-spacing:-14.646933pt;}
.ws1f8{word-spacing:-14.642933pt;}
.ws93{word-spacing:-14.637333pt;}
.ws5c{word-spacing:-14.635467pt;}
.ws23b{word-spacing:-14.605067pt;}
.ws292{word-spacing:-14.504267pt;}
.ws6d{word-spacing:-14.417114pt;}
.ws22{word-spacing:-14.397600pt;}
.ws1e9{word-spacing:-14.176533pt;}
.ws130{word-spacing:-14.168544pt;}
.ws241{word-spacing:-14.012533pt;}
.ws283{word-spacing:-14.009333pt;}
.ws15a{word-spacing:-13.988800pt;}
.wse1{word-spacing:-13.873867pt;}
.ws15c{word-spacing:-13.870933pt;}
.ws33{word-spacing:-13.720800pt;}
.ws19d{word-spacing:-13.691200pt;}
.ws1e{word-spacing:-13.589067pt;}
.ws131{word-spacing:-13.546322pt;}
.ws207{word-spacing:-13.463200pt;}
.ws9b{word-spacing:-13.354133pt;}
.ws21{word-spacing:-13.279200pt;}
.wsbb{word-spacing:-13.223733pt;}
.ws17{word-spacing:-13.100267pt;}
.ws204{word-spacing:-13.036267pt;}
.ws8f{word-spacing:-12.829600pt;}
.ws27{word-spacing:-12.786667pt;}
.ws22e{word-spacing:-12.591733pt;}
.ws19b{word-spacing:-12.454743pt;}
.wsd6{word-spacing:-12.401867pt;}
.ws1cf{word-spacing:-12.261333pt;}
.ws193{word-spacing:-12.256000pt;}
.ws1ce{word-spacing:-12.163200pt;}
.ws20b{word-spacing:-12.092533pt;}
.ws286{word-spacing:-12.090133pt;}
.ws224{word-spacing:-11.960533pt;}
.ws1fc{word-spacing:-11.957067pt;}
.ws19{word-spacing:-11.796800pt;}
.wsf9{word-spacing:-11.610400pt;}
.ws41{word-spacing:-11.526400pt;}
.ws18{word-spacing:-11.507467pt;}
.ws2b5{word-spacing:-11.452533pt;}
.ws47{word-spacing:-11.433333pt;}
.ws2b6{word-spacing:-11.321867pt;}
.ws6b{word-spacing:-11.129333pt;}
.ws160{word-spacing:-11.038933pt;}
.ws26e{word-spacing:-10.810133pt;}
.ws203{word-spacing:-10.802933pt;}
.ws90{word-spacing:-10.670933pt;}
.ws40{word-spacing:-10.252000pt;}
.ws294{word-spacing:-10.170133pt;}
.wsdf{word-spacing:-10.169067pt;}
.wsd8{word-spacing:-10.165333pt;}
.ws1c9{word-spacing:-10.161333pt;}
.ws271{word-spacing:-10.136267pt;}
.ws120{word-spacing:-9.985333pt;}
.ws1f0{word-spacing:-9.688267pt;}
.ws270{word-spacing:-9.534667pt;}
.ws1ca{word-spacing:-9.525333pt;}
.ws5a{word-spacing:-9.512800pt;}
.ws279{word-spacing:-9.399733pt;}
.ws1d2{word-spacing:-9.203200pt;}
.ws17e{word-spacing:-9.169333pt;}
.ws1f1{word-spacing:-9.143733pt;}
.ws155{word-spacing:-9.118933pt;}
.wsae{word-spacing:-9.062667pt;}
.ws83{word-spacing:-9.061333pt;}
.ws260{word-spacing:-8.713867pt;}
.ws269{word-spacing:-8.445067pt;}
.ws1d3{word-spacing:-8.416533pt;}
.ws79{word-spacing:-8.343200pt;}
.ws16c{word-spacing:-8.337867pt;}
.ws268{word-spacing:-8.252533pt;}
.ws2a6{word-spacing:-8.216000pt;}
.ws1c{word-spacing:-8.176000pt;}
.ws3c{word-spacing:-7.536000pt;}
.wsc0{word-spacing:-7.386667pt;}
.ws3b{word-spacing:-7.306400pt;}
.ws25{word-spacing:-6.865067pt;}
.ws1bb{word-spacing:-5.968267pt;}
.ws12f{word-spacing:-5.603795pt;}
.ws1bd{word-spacing:-4.727467pt;}
.ws15b{word-spacing:-2.943733pt;}
.ws164{word-spacing:-2.554129pt;}
.ws116{word-spacing:-1.288533pt;}
.ws2e{word-spacing:-0.800000pt;}
.ws77{word-spacing:0.000000pt;}
.ws114{word-spacing:0.763467pt;}
.ws14e{word-spacing:2.670060pt;}
.ws136{word-spacing:3.619467pt;}
.ws13{word-spacing:6.430933pt;}
.ws12{word-spacing:7.357067pt;}
.wsea{word-spacing:46.421242pt;}
.ws3{word-spacing:628.665067pt;}
._21{margin-left:-3.886133pt;}
._5{margin-left:-2.099200pt;}
._1{margin-left:-0.949333pt;}
._2{width:1.130400pt;}
._14{width:2.205072pt;}
._1f{width:6.633867pt;}
._22{width:8.261600pt;}
._1b{width:9.912326pt;}
._17{width:11.297600pt;}
._d{width:12.291467pt;}
._f{width:13.431467pt;}
._10{width:14.333867pt;}
._a{width:15.504267pt;}
._6{width:16.414400pt;}
._0{width:17.521333pt;}
._e{width:18.890400pt;}
._7{width:20.318933pt;}
._c{width:21.905600pt;}
._b{width:23.029867pt;}
._16{width:23.951200pt;}
._9{width:24.948533pt;}
._12{width:26.092267pt;}
._8{width:27.240800pt;}
._15{width:28.774667pt;}
._18{width:29.782667pt;}
._11{width:31.130133pt;}
._4{width:32.656267pt;}
._13{width:34.011467pt;}
._20{width:41.118400pt;}
._1d{width:78.914400pt;}
._19{width:152.579960pt;}
._1a{width:260.135733pt;}
._1e{width:447.396533pt;}
._3{width:728.299467pt;}
._1c{width:2072.460800pt;}
.fsc{font-size:23.733333pt;}
.fsa{font-size:26.933333pt;}
.fs8{font-size:32.000000pt;}
.fsd{font-size:33.866667pt;}
.fs9{font-size:34.666667pt;}
.fsb{font-size:37.066667pt;}
.fs4{font-size:37.866667pt;}
.fs5{font-size:42.933333pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.066667pt;}
.fs1{font-size:55.733333pt;}
.fs2{font-size:58.933333pt;}
.fs0{font-size:74.933333pt;}
.fs3{font-size:128.000000pt;}
.y16e{bottom:-1.053333pt;}
.y0{bottom:0.000000pt;}
.y20c{bottom:1.773333pt;}
.y18f{bottom:1.880000pt;}
.y186{bottom:1.893333pt;}
.yd5{bottom:1.908000pt;}
.ye2{bottom:1.946667pt;}
.ye0{bottom:1.960000pt;}
.yd3{bottom:1.973333pt;}
.yd7{bottom:1.974667pt;}
.ydb{bottom:1.988000pt;}
.yd1{bottom:2.000000pt;}
.yde{bottom:2.013333pt;}
.y1b9{bottom:2.121333pt;}
.y16d{bottom:2.146667pt;}
.yfc{bottom:2.293333pt;}
.y16c{bottom:2.466667pt;}
.y197{bottom:2.533333pt;}
.y18c{bottom:2.693333pt;}
.yfd{bottom:2.773333pt;}
.y20b{bottom:3.054667pt;}
.y13b{bottom:3.333333pt;}
.y20e{bottom:3.388000pt;}
.y216{bottom:3.426667pt;}
.y15f{bottom:3.533333pt;}
.ye5{bottom:3.560000pt;}
.y16f{bottom:3.588000pt;}
.y214{bottom:3.654667pt;}
.y209{bottom:3.800000pt;}
.yb{bottom:3.854667pt;}
.y180{bottom:3.866667pt;}
.y16b{bottom:3.908000pt;}
.yeb{bottom:3.946667pt;}
.y1ea{bottom:4.054667pt;}
.y1c0{bottom:4.146667pt;}
.y1b8{bottom:4.200000pt;}
.y102{bottom:4.546667pt;}
.y122{bottom:4.573333pt;}
.y167{bottom:4.721333pt;}
.y11e{bottom:4.733333pt;}
.y172{bottom:4.760000pt;}
.y170{bottom:4.866667pt;}
.y1b6{bottom:5.000000pt;}
.y177{bottom:5.080000pt;}
.y16a{bottom:5.188000pt;}
.y154{bottom:5.574667pt;}
.y194{bottom:5.733333pt;}
.y15d{bottom:5.933333pt;}
.y212{bottom:5.946667pt;}
.y175{bottom:6.200000pt;}
.y178{bottom:6.521333pt;}
.y108{bottom:6.626667pt;}
.y153{bottom:6.854667pt;}
.y15a{bottom:6.893333pt;}
.y218{bottom:7.226667pt;}
.y17b{bottom:7.480000pt;}
.y168{bottom:9.200000pt;}
.y120{bottom:9.213333pt;}
.y1b7{bottom:9.640000pt;}
.y19c{bottom:10.013333pt;}
.y176{bottom:10.200000pt;}
.y17a{bottom:10.360000pt;}
.y179{bottom:10.521333pt;}
.y1e4{bottom:10.613333pt;}
.y19b{bottom:11.293333pt;}
.y19e{bottom:11.613333pt;}
.y196{bottom:12.133333pt;}
.y198{bottom:12.454667pt;}
.y1e6{bottom:12.854667pt;}
.y15b{bottom:12.974667pt;}
.y1c3{bottom:13.266667pt;}
.y17c{bottom:13.400000pt;}
.y1e5{bottom:14.133333pt;}
.yf5{bottom:14.188000pt;}
.y163{bottom:15.280000pt;}
.y1d2{bottom:16.026667pt;}
.y162{bottom:16.080000pt;}
.y13a{bottom:16.133333pt;}
.y174{bottom:17.080000pt;}
.y161{bottom:17.360000pt;}
.y11f{bottom:17.374667pt;}
.y1c5{bottom:17.746667pt;}
.y15c{bottom:18.893333pt;}
.y1a9{bottom:19.213333pt;}
.y156{bottom:19.374667pt;}
.y183{bottom:19.388000pt;}
.yf6{bottom:19.466667pt;}
.y1c2{bottom:19.506667pt;}
.y1de{bottom:19.866667pt;}
.y1e9{bottom:19.893333pt;}
.ya{bottom:20.333333pt;}
.y101{bottom:20.388000pt;}
.y173{bottom:20.441333pt;}
.yf7{bottom:20.906667pt;}
.y164{bottom:21.360000pt;}
.y17f{bottom:21.466667pt;}
.y165{bottom:21.521333pt;}
.y1b5{bottom:21.613333pt;}
.y193{bottom:21.733333pt;}
.y3{bottom:22.493333pt;}
.y1e2{bottom:23.413333pt;}
.y152{bottom:23.654667pt;}
.y157{bottom:24.013333pt;}
.y1e1{bottom:24.854667pt;}
.y1c4{bottom:25.908000pt;}
.y166{bottom:26.000000pt;}
.y1e0{bottom:26.133333pt;}
.y112{bottom:26.174667pt;}
.y159{bottom:26.413333pt;}
.y121{bottom:27.293333pt;}
.y19d{bottom:27.454667pt;}
.y158{bottom:27.533333pt;}
.y106{bottom:28.226667pt;}
.y1d1{bottom:31.706667pt;}
.y195{bottom:31.813333pt;}
.y139{bottom:31.974667pt;}
.y107{bottom:32.866667pt;}
.y1e8{bottom:35.733333pt;}
.y1c6{bottom:35.826667pt;}
.y1dd{bottom:35.866667pt;}
.y19a{bottom:35.933333pt;}
.y1a8{bottom:36.173333pt;}
.yf4{bottom:36.266667pt;}
.y100{bottom:36.388000pt;}
.y1e7{bottom:36.693333pt;}
.yd9{bottom:36.746667pt;}
.yf2{bottom:37.388000pt;}
.y192{bottom:37.413333pt;}
.yf3{bottom:37.546667pt;}
.y1b4{bottom:38.413333pt;}
.y151{bottom:38.533333pt;}
.y189{bottom:40.721333pt;}
.yea{bottom:41.066667pt;}
.y9{bottom:41.454667pt;}
.y1fa{bottom:41.588000pt;}
.y111{bottom:42.013333pt;}
.y1e3{bottom:42.454667pt;}
.yc{bottom:42.666667pt;}
.y104{bottom:44.866667pt;}
.y105{bottom:45.026667pt;}
.y11d{bottom:47.293333pt;}
.y1d0{bottom:47.866667pt;}
.y138{bottom:47.974667pt;}
.y188{bottom:50.000000pt;}
.yf0{bottom:51.626667pt;}
.y1dc{bottom:51.866667pt;}
.yff{bottom:52.226667pt;}
.y1a7{bottom:52.333333pt;}
.yee{bottom:52.746667pt;}
.yef{bottom:52.906667pt;}
.y1b3{bottom:53.293333pt;}
.y191{bottom:53.413333pt;}
.y8{bottom:54.254667pt;}
.y240{bottom:55.666667pt;}
.y150{bottom:55.974667pt;}
.ya0{bottom:56.466667pt;}
.ye9{bottom:56.906667pt;}
.yf1{bottom:57.388000pt;}
.y1f9{bottom:57.426667pt;}
.y110{bottom:58.013333pt;}
.y2b2{bottom:60.146667pt;}
.y103{bottom:61.666667pt;}
.y11c{bottom:63.613333pt;}
.y137{bottom:63.813333pt;}
.y1a6{bottom:66.413333pt;}
.y1db{bottom:67.866667pt;}
.yed{bottom:68.266667pt;}
.y1b2{bottom:68.813333pt;}
.yec{bottom:69.546667pt;}
.y23f{bottom:71.666667pt;}
.y14f{bottom:71.974667pt;}
.y2b1{bottom:71.988000pt;}
.y9f{bottom:72.308000pt;}
.ycf{bottom:72.626667pt;}
.ye8{bottom:72.906667pt;}
.y207{bottom:73.266667pt;}
.y1f8{bottom:73.426667pt;}
.y10f{bottom:73.854667pt;}
.y1cf{bottom:75.706667pt;}
.y1ce{bottom:75.866667pt;}
.y1cd{bottom:76.988000pt;}
.y11b{bottom:77.054667pt;}
.y11a{bottom:78.333333pt;}
.y272{bottom:82.388000pt;}
.y1a5{bottom:83.693333pt;}
.y2b0{bottom:83.826667pt;}
.y1b1{bottom:84.654667pt;}
.y136{bottom:85.093333pt;}
.y1da{bottom:86.746667pt;}
.yd8{bottom:87.666667pt;}
.y9e{bottom:88.146667pt;}
.yce{bottom:88.308000pt;}
.ye7{bottom:88.746667pt;}
.y65{bottom:89.108000pt;}
.y1f7{bottom:89.266667pt;}
.y64{bottom:90.388000pt;}
.y10e{bottom:91.293333pt;}
.y14e{bottom:93.574667pt;}
.y271{bottom:94.226667pt;}
.y116{bottom:95.133333pt;}
.y2af{bottom:96.946667pt;}
.y118{bottom:98.333333pt;}
.y17d{bottom:99.454667pt;}
.y117{bottom:99.613333pt;}
.y1a4{bottom:99.693333pt;}
.y119{bottom:99.773333pt;}
.y1b0{bottom:100.654667pt;}
.y134{bottom:100.933333pt;}
.y135{bottom:101.093333pt;}
.y23e{bottom:103.506667pt;}
.y9d{bottom:104.146667pt;}
.y206{bottom:105.266667pt;}
.y1f6{bottom:105.588000pt;}
.y1cc{bottom:105.788000pt;}
.y270{bottom:106.388000pt;}
.y10d{bottom:107.293333pt;}
.y63{bottom:107.346667pt;}
.y2ae{bottom:108.946667pt;}
.y14d{bottom:109.413333pt;}
.y1d9{bottom:109.466667pt;}
.y38{bottom:110.388000pt;}
.y171{bottom:110.533333pt;}
.ydc{bottom:110.733333pt;}
.yda{bottom:111.066667pt;}
.y115{bottom:114.493333pt;}
.y1af{bottom:116.493333pt;}
.y26f{bottom:118.226667pt;}
.y131{bottom:119.013333pt;}
.y132{bottom:119.174667pt;}
.y23d{bottom:119.346667pt;}
.y9c{bottom:119.988000pt;}
.ycd{bottom:120.308000pt;}
.y61{bottom:120.626667pt;}
.y205{bottom:121.108000pt;}
.y62{bottom:121.746667pt;}
.y60{bottom:121.908000pt;}
.y1cb{bottom:122.266667pt;}
.y1a3{bottom:123.054667pt;}
.y10c{bottom:123.133333pt;}
.y37{bottom:123.506667pt;}
.y133{bottom:123.654667pt;}
.y14c{bottom:124.933333pt;}
.y26e{bottom:130.388000pt;}
.y1ae{bottom:132.333333pt;}
.y2ad{bottom:133.746667pt;}
.y1f5{bottom:135.026667pt;}
.y23c{bottom:135.346667pt;}
.y130{bottom:135.813333pt;}
.y9b{bottom:135.988000pt;}
.y114{bottom:136.093333pt;}
.ycc{bottom:136.308000pt;}
.y36{bottom:136.788000pt;}
.y204{bottom:136.946667pt;}
.y5f{bottom:137.426667pt;}
.y1ca{bottom:137.626667pt;}
.y1d8{bottom:137.946667pt;}
.y5d{bottom:138.546667pt;}
.yd6{bottom:138.600000pt;}
.y5e{bottom:138.708000pt;}
.y10b{bottom:139.133333pt;}
.y14b{bottom:139.654667pt;}
.y169{bottom:140.666667pt;}
.y26d{bottom:142.226667pt;}
.y2ac{bottom:145.426667pt;}
.y1ad{bottom:148.493333pt;}
.y1f4{bottom:148.946667pt;}
.y35{bottom:150.066667pt;}
.y1f3{bottom:150.226667pt;}
.y12f{bottom:151.013333pt;}
.y9a{bottom:151.826667pt;}
.y113{bottom:151.933333pt;}
.ycb{bottom:152.146667pt;}
.y1d7{bottom:152.666667pt;}
.y1d5{bottom:153.788000pt;}
.y1d6{bottom:153.946667pt;}
.y26c{bottom:154.066667pt;}
.y1c9{bottom:154.588000pt;}
.y14a{bottom:154.854667pt;}
.y5c{bottom:154.866667pt;}
.y10a{bottom:154.973333pt;}
.y1a2{bottom:155.533333pt;}
.y203{bottom:158.546667pt;}
.y23b{bottom:161.746667pt;}
.y1ac{bottom:163.373333pt;}
.y1ab{bottom:164.654667pt;}
.y12e{bottom:165.413333pt;}
.yd4{bottom:165.866667pt;}
.y26b{bottom:166.546667pt;}
.y99{bottom:167.666667pt;}
.y1f1{bottom:167.826667pt;}
.yca{bottom:168.146667pt;}
.y160{bottom:168.333333pt;}
.y5a{bottom:169.588000pt;}
.y2ab{bottom:170.388000pt;}
.y1c8{bottom:170.426667pt;}
.y1a0{bottom:171.533333pt;}
.y1a1{bottom:171.693333pt;}
.y1f2{bottom:172.466667pt;}
.y149{bottom:172.613333pt;}
.y5b{bottom:174.066667pt;}
.y1d4{bottom:175.066667pt;}
.y1d3{bottom:175.866667pt;}
.y26a{bottom:178.546667pt;}
.y1aa{bottom:180.173333pt;}
.y12b{bottom:182.533333pt;}
.y12c{bottom:182.693333pt;}
.y2aa{bottom:183.506667pt;}
.yc9{bottom:183.988000pt;}
.y1f0{bottom:184.626667pt;}
.y98{bottom:184.788000pt;}
.y202{bottom:184.946667pt;}
.y58{bottom:186.388000pt;}
.y12d{bottom:187.174667pt;}
.y148{bottom:189.093333pt;}
.y269{bottom:190.226667pt;}
.y59{bottom:190.866667pt;}
.y34{bottom:194.866667pt;}
.y2a9{bottom:195.346667pt;}
.y12a{bottom:198.693333pt;}
.y97{bottom:200.308000pt;}
.y268{bottom:202.066667pt;}
.y23a{bottom:202.388000pt;}
.y57{bottom:202.546667pt;}
.y201{bottom:202.708000pt;}
.y182{bottom:204.066667pt;}
.y146{bottom:204.454667pt;}
.y147{bottom:204.613333pt;}
.yc8{bottom:205.426667pt;}
.y2a8{bottom:207.346667pt;}
.y1ef{bottom:207.988000pt;}
.y33{bottom:208.146667pt;}
.y15e{bottom:208.400000pt;}
.y267{bottom:214.388000pt;}
.y96{bottom:216.146667pt;}
.y239{bottom:218.066667pt;}
.y200{bottom:218.546667pt;}
.y2a7{bottom:219.188000pt;}
.y56{bottom:219.506667pt;}
.ye3{bottom:220.333333pt;}
.y155{bottom:220.400000pt;}
.y145{bottom:220.454667pt;}
.y32{bottom:221.266667pt;}
.y129{bottom:224.454667pt;}
.y266{bottom:226.226667pt;}
.y95{bottom:232.146667pt;}
.yc7{bottom:233.266667pt;}
.y1ee{bottom:233.588000pt;}
.y238{bottom:233.908000pt;}
.y1ff{bottom:234.226667pt;}
.y31{bottom:234.546667pt;}
.y55{bottom:235.026667pt;}
.y265{bottom:238.066667pt;}
.y144{bottom:241.733333pt;}
.y143{bottom:243.013333pt;}
.y2a6{bottom:243.988000pt;}
.y30{bottom:247.666667pt;}
.y94{bottom:247.988000pt;}
.yc6{bottom:249.266667pt;}
.y237{bottom:249.746667pt;}
.y264{bottom:250.388000pt;}
.y1fd{bottom:250.708000pt;}
.y1fe{bottom:250.866667pt;}
.y54{bottom:251.988000pt;}
.y128{bottom:253.893333pt;}
.y2a5{bottom:256.946667pt;}
.y2f{bottom:260.946667pt;}
.y123{bottom:261.400000pt;}
.y263{bottom:262.066667pt;}
.y93{bottom:263.826667pt;}
.yc5{bottom:265.266667pt;}
.y236{bottom:265.426667pt;}
.y142{bottom:265.573333pt;}
.y1ed{bottom:266.066667pt;}
.y1fc{bottom:266.866667pt;}
.y53{bottom:267.988000pt;}
.y2a4{bottom:268.788000pt;}
.y2e{bottom:274.066667pt;}
.y92{bottom:279.826667pt;}
.y141{bottom:280.933333pt;}
.y1ec{bottom:280.946667pt;}
.yc4{bottom:281.108000pt;}
.y235{bottom:281.908000pt;}
.y1eb{bottom:282.066667pt;}
.y1fb{bottom:282.546667pt;}
.y52{bottom:283.826667pt;}
.y262{bottom:286.226667pt;}
.y2d{bottom:287.346667pt;}
.y127{bottom:292.133333pt;}
.y2a3{bottom:293.746667pt;}
.y91{bottom:295.666667pt;}
.y140{bottom:295.813333pt;}
.y13f{bottom:296.933333pt;}
.yc3{bottom:296.946667pt;}
.y234{bottom:298.066667pt;}
.y51{bottom:299.666667pt;}
.y2c{bottom:300.626667pt;}
.y2a2{bottom:305.588000pt;}
.y126{bottom:308.133333pt;}
.y261{bottom:309.908000pt;}
.y90{bottom:311.666667pt;}
.yc2{bottom:312.946667pt;}
.y13e{bottom:313.254667pt;}
.y2b{bottom:313.746667pt;}
.y2e2{bottom:314.546667pt;}
.y50{bottom:315.666667pt;}
.y2a1{bottom:318.546667pt;}
.y260{bottom:322.226667pt;}
.y125{bottom:324.933333pt;}
.y2e1{bottom:326.226667pt;}
.y2a{bottom:327.026667pt;}
.y8f{bottom:327.506667pt;}
.y13d{bottom:328.613333pt;}
.yc1{bottom:329.266667pt;}
.y233{bottom:329.588000pt;}
.y2a0{bottom:330.708000pt;}
.y4f{bottom:331.508000pt;}
.y25f{bottom:333.908000pt;}
.y187{bottom:336.333333pt;}
.y1df{bottom:337.000000pt;}
.y2e0{bottom:338.226667pt;}
.y29{bottom:340.306667pt;}
.y124{bottom:341.573333pt;}
.y8e{bottom:343.346667pt;}
.y29f{bottom:343.508000pt;}
.y13c{bottom:344.613333pt;}
.yc0{bottom:345.108000pt;}
.y232{bottom:345.266667pt;}
.y4e{bottom:347.508000pt;}
.y2df{bottom:350.066667pt;}
.y28{bottom:353.426667pt;}
.y25e{bottom:355.346667pt;}
.y8d{bottom:359.346667pt;}
.ybf{bottom:360.946667pt;}
.y231{bottom:361.108000pt;}
.y2de{bottom:362.066667pt;}
.y4d{bottom:363.346667pt;}
.y27{bottom:366.708000pt;}
.y29e{bottom:368.466667pt;}
.y2dd{bottom:374.066667pt;}
.y8c{bottom:375.188000pt;}
.ybe{bottom:376.946667pt;}
.y4c{bottom:379.346667pt;}
.y26{bottom:379.988000pt;}
.y29d{bottom:380.306667pt;}
.y25d{bottom:382.866667pt;}
.y2dc{bottom:386.066667pt;}
.y1c7{bottom:387.266667pt;}
.y8b{bottom:391.188000pt;}
.ybd{bottom:392.946667pt;}
.y29c{bottom:393.266667pt;}
.y25{bottom:393.588000pt;}
.y4b{bottom:395.188000pt;}
.y2db{bottom:397.908000pt;}
.y25c{bottom:398.708000pt;}
.y230{bottom:399.188000pt;}
.y29b{bottom:405.266667pt;}
.y24{bottom:406.866667pt;}
.y8a{bottom:407.026667pt;}
.ybc{bottom:408.788000pt;}
.y2da{bottom:409.746667pt;}
.y4a{bottom:411.026667pt;}
.y25b{bottom:414.546667pt;}
.y22f{bottom:415.026667pt;}
.y29a{bottom:418.226667pt;}
.y23{bottom:420.146667pt;}
.y2d9{bottom:421.588000pt;}
.y89{bottom:422.866667pt;}
.y49{bottom:428.146667pt;}
.ybb{bottom:430.066667pt;}
.y25a{bottom:430.546667pt;}
.y22e{bottom:430.866667pt;}
.y22{bottom:433.266667pt;}
.y2d8{bottom:433.746667pt;}
.y88{bottom:438.866667pt;}
.y299{bottom:442.066667pt;}
.y48{bottom:443.988000pt;}
.y2d7{bottom:445.588000pt;}
.y259{bottom:446.388000pt;}
.y21{bottom:446.546667pt;}
.y22d{bottom:446.866667pt;}
.y298{bottom:453.908000pt;}
.y87{bottom:454.708000pt;}
.y2d6{bottom:457.426667pt;}
.yba{bottom:458.226667pt;}
.y20{bottom:459.666667pt;}
.y47{bottom:459.988000pt;}
.y258{bottom:462.388000pt;}
.y22c{bottom:462.708000pt;}
.y297{bottom:466.866667pt;}
.y2d5{bottom:469.588000pt;}
.y86{bottom:470.708000pt;}
.y1f{bottom:472.946667pt;}
.yb9{bottom:473.426667pt;}
.y46{bottom:475.826667pt;}
.y257{bottom:478.226667pt;}
.y22b{bottom:478.708000pt;}
.y296{bottom:478.866667pt;}
.y2d4{bottom:481.426667pt;}
.y1e{bottom:486.066667pt;}
.y85{bottom:486.388000pt;}
.yb8{bottom:489.266667pt;}
.y295{bottom:490.708000pt;}
.y45{bottom:491.666667pt;}
.y2d3{bottom:493.266667pt;}
.y256{bottom:494.066667pt;}
.y22a{bottom:494.546667pt;}
.y1d{bottom:499.346667pt;}
.y84{bottom:502.226667pt;}
.y294{bottom:502.866667pt;}
.y2d2{bottom:505.108000pt;}
.yb7{bottom:505.266667pt;}
.y44{bottom:507.666667pt;}
.y255{bottom:510.388000pt;}
.y229{bottom:510.546667pt;}
.y1c{bottom:512.626667pt;}
.y293{bottom:515.666667pt;}
.y2d1{bottom:517.108000pt;}
.y83{bottom:518.066667pt;}
.yb6{bottom:521.266667pt;}
.y43{bottom:523.506667pt;}
.y1b{bottom:525.746667pt;}
.y254{bottom:526.226667pt;}
.y228{bottom:526.388000pt;}
.y292{bottom:527.506667pt;}
.y2d0{bottom:528.946667pt;}
.y82{bottom:533.746667pt;}
.yb5{bottom:537.108000pt;}
.y1a{bottom:539.026667pt;}
.y291{bottom:539.346667pt;}
.y42{bottom:540.626667pt;}
.y2cf{bottom:540.946667pt;}
.y253{bottom:542.066667pt;}
.y227{bottom:542.226667pt;}
.y81{bottom:550.226667pt;}
.y19{bottom:552.306667pt;}
.y290{bottom:552.466667pt;}
.y2ce{bottom:552.788000pt;}
.yb4{bottom:552.946667pt;}
.y41{bottom:556.466667pt;}
.y226{bottom:558.226667pt;}
.y28f{bottom:564.306667pt;}
.y2cd{bottom:564.626667pt;}
.y18{bottom:565.588000pt;}
.y80{bottom:566.066667pt;}
.y20a{bottom:569.200000pt;}
.yb2{bottom:569.588000pt;}
.y20d{bottom:569.666667pt;}
.yb3{bottom:569.746667pt;}
.y1bf{bottom:569.866667pt;}
.y18b{bottom:570.200000pt;}
.y40{bottom:572.466667pt;}
.y18e{bottom:573.733333pt;}
.y225{bottom:574.066667pt;}
.y252{bottom:574.226667pt;}
.y18d{bottom:575.066667pt;}
.y2cc{bottom:576.788000pt;}
.y28e{bottom:577.266667pt;}
.y17{bottom:578.706667pt;}
.y7f{bottom:580.788000pt;}
.yb1{bottom:585.746667pt;}
.y3f{bottom:588.306667pt;}
.y2cb{bottom:588.626667pt;}
.y28d{bottom:589.266667pt;}
.y224{bottom:590.066667pt;}
.y16{bottom:591.988000pt;}
.y7e{bottom:595.506667pt;}
.y2ca{bottom:600.466667pt;}
.y28c{bottom:600.946667pt;}
.y1c1{bottom:601.400000pt;}
.yb0{bottom:601.746667pt;}
.y3e{bottom:604.146667pt;}
.y15{bottom:605.266667pt;}
.y185{bottom:605.400000pt;}
.y223{bottom:605.908000pt;}
.y251{bottom:606.066667pt;}
.y2c9{bottom:612.466667pt;}
.y7d{bottom:613.108000pt;}
.y1bc{bottom:613.693333pt;}
.y28b{bottom:614.066667pt;}
.y1bb{bottom:614.973333pt;}
.y17e{bottom:615.266667pt;}
.y1be{bottom:617.533333pt;}
.yaf{bottom:617.588000pt;}
.y14{bottom:618.388000pt;}
.y1bd{bottom:619.613333pt;}
.y3d{bottom:620.146667pt;}
.y222{bottom:621.746667pt;}
.y250{bottom:621.908000pt;}
.y181{bottom:622.000000pt;}
.y2c8{bottom:624.306667pt;}
.y28a{bottom:625.908000pt;}
.y109{bottom:626.400000pt;}
.y7c{bottom:629.746667pt;}
.y13{bottom:631.666667pt;}
.yae{bottom:633.426667pt;}
.ye1{bottom:635.266667pt;}
.y3c{bottom:636.146667pt;}
.ydf{bottom:636.533333pt;}
.y221{bottom:637.746667pt;}
.y12{bottom:644.946667pt;}
.y7b{bottom:645.426667pt;}
.y1ba{bottom:646.333333pt;}
.y2c7{bottom:648.146667pt;}
.yad{bottom:649.426667pt;}
.y289{bottom:650.866667pt;}
.y3b{bottom:651.988000pt;}
.y220{bottom:653.746667pt;}
.y184{bottom:657.333333pt;}
.y11{bottom:658.066667pt;}
.y2c6{bottom:660.146667pt;}
.y7a{bottom:661.266667pt;}
.y288{bottom:662.706667pt;}
.yac{bottom:665.266667pt;}
.y3a{bottom:667.826667pt;}
.y21f{bottom:669.588000pt;}
.y24f{bottom:669.746667pt;}
.y10{bottom:671.346667pt;}
.y2c5{bottom:671.988000pt;}
.y19f{bottom:673.200000pt;}
.y287{bottom:674.546667pt;}
.y79{bottom:677.266667pt;}
.y39{bottom:683.826667pt;}
.yf{bottom:684.466667pt;}
.y21e{bottom:685.426667pt;}
.yab{bottom:686.706667pt;}
.y286{bottom:687.506667pt;}
.y24e{bottom:691.666667pt;}
.y78{bottom:693.106667pt;}
.y2c4{bottom:695.988000pt;}
.ye{bottom:697.746667pt;}
.y285{bottom:699.346667pt;}
.y21d{bottom:707.666667pt;}
.y2c3{bottom:707.826667pt;}
.y77{bottom:708.946667pt;}
.yaa{bottom:709.106667pt;}
.yd{bottom:710.866667pt;}
.y284{bottom:712.466667pt;}
.y24d{bottom:719.026667pt;}
.y2c2{bottom:719.666667pt;}
.y21c{bottom:723.666667pt;}
.y283{bottom:724.466667pt;}
.y76{bottom:724.946667pt;}
.y2c1{bottom:731.666667pt;}
.y24c{bottom:734.866667pt;}
.y282{bottom:736.306667pt;}
.ya9{bottom:737.106667pt;}
.y21b{bottom:739.666667pt;}
.y75{bottom:740.788000pt;}
.y2c0{bottom:743.506667pt;}
.y281{bottom:748.146667pt;}
.y24b{bottom:750.866667pt;}
.ya8{bottom:752.946667pt;}
.y2bf{bottom:755.666667pt;}
.y74{bottom:756.788000pt;}
.y280{bottom:761.106667pt;}
.y21a{bottom:765.906667pt;}
.y24a{bottom:766.706667pt;}
.y2be{bottom:767.506667pt;}
.ya7{bottom:768.946667pt;}
.y73{bottom:772.626667pt;}
.y27f{bottom:772.946667pt;}
.y2bd{bottom:779.346667pt;}
.y249{bottom:782.706667pt;}
.ya6{bottom:784.788000pt;}
.y27e{bottom:784.946667pt;}
.y7{bottom:786.800000pt;}
.y72{bottom:788.466667pt;}
.y2bc{bottom:791.188000pt;}
.yfe{bottom:794.266667pt;}
.ydd{bottom:795.200000pt;}
.y219{bottom:796.788000pt;}
.y27d{bottom:797.906667pt;}
.y248{bottom:798.546667pt;}
.ya5{bottom:800.788000pt;}
.y2bb{bottom:803.026667pt;}
.y71{bottom:804.306667pt;}
.y27c{bottom:809.746667pt;}
.y247{bottom:814.706667pt;}
.y2ba{bottom:815.026667pt;}
.ya4{bottom:816.626667pt;}
.y70{bottom:819.026667pt;}
.yd2{bottom:819.400000pt;}
.y27b{bottom:822.866667pt;}
.y2b9{bottom:826.866667pt;}
.y246{bottom:830.546667pt;}
.ya3{bottom:832.466667pt;}
.y6f{bottom:833.746667pt;}
.y27a{bottom:834.706667pt;}
.yd0{bottom:835.533333pt;}
.y2b8{bottom:838.866667pt;}
.y245{bottom:846.546667pt;}
.ya2{bottom:848.466667pt;}
.y2b7{bottom:850.866667pt;}
.y6b{bottom:851.346667pt;}
.y6d{bottom:854.706667pt;}
.y6c{bottom:855.988000pt;}
.y6e{bottom:856.146667pt;}
.y279{bottom:859.506667pt;}
.y244{bottom:862.546667pt;}
.ya1{bottom:864.306667pt;}
.y208{bottom:864.933333pt;}
.yfb{bottom:867.400000pt;}
.y6a{bottom:867.988000pt;}
.y18a{bottom:872.200000pt;}
.y278{bottom:872.466667pt;}
.y199{bottom:873.600000pt;}
.y2b6{bottom:874.546667pt;}
.y243{bottom:878.388000pt;}
.yf8{bottom:878.973333pt;}
.yf9{bottom:879.133333pt;}
.y6{bottom:882.013333pt;}
.yfa{bottom:883.613333pt;}
.y69{bottom:883.666667pt;}
.y217{bottom:884.066667pt;}
.y277{bottom:884.466667pt;}
.ye6{bottom:885.266667pt;}
.y2b5{bottom:886.546667pt;}
.ye4{bottom:892.533333pt;}
.y242{bottom:894.226667pt;}
.y276{bottom:897.426667pt;}
.y2b4{bottom:898.388000pt;}
.y68{bottom:899.506667pt;}
.y215{bottom:900.666667pt;}
.y275{bottom:909.266667pt;}
.y241{bottom:910.226667pt;}
.y2b3{bottom:910.388000pt;}
.y213{bottom:912.600000pt;}
.y67{bottom:915.506667pt;}
.y5{bottom:919.133333pt;}
.y210{bottom:919.506667pt;}
.y190{bottom:920.600000pt;}
.y274{bottom:922.226667pt;}
.y211{bottom:928.066667pt;}
.y66{bottom:931.346667pt;}
.y20f{bottom:931.666667pt;}
.y273{bottom:934.066667pt;}
.y4{bottom:956.254667pt;}
.y2{bottom:996.254667pt;}
.y1{bottom:1018.973333pt;}
.h1b{height:9.333333pt;}
.h35{height:10.266667pt;}
.h1d{height:10.600000pt;}
.h26{height:11.266667pt;}
.h50{height:11.933333pt;}
.h3e{height:13.333333pt;}
.h4b{height:14.666667pt;}
.h4f{height:15.466667pt;}
.h4c{height:16.066667pt;}
.h4a{height:16.600000pt;}
.h47{height:17.950651pt;}
.h43{height:18.000000pt;}
.h4e{height:19.400000pt;}
.h2d{height:20.370964pt;}
.h25{height:24.019531pt;}
.h46{height:24.087240pt;}
.h24{height:24.222656pt;}
.h10{height:24.882813pt;}
.h23{height:25.682422pt;}
.h22{height:25.899609pt;}
.h15{height:26.605469pt;}
.h37{height:29.800000pt;}
.h51{height:29.810156pt;}
.h4d{height:29.831120pt;}
.h6{height:29.998828pt;}
.h14{height:31.659609pt;}
.h3c{height:32.000000pt;}
.h39{height:32.266667pt;}
.h9{height:32.531250pt;}
.h3b{height:33.533333pt;}
.h36{height:35.733333pt;}
.ha{height:36.000000pt;}
.h21{height:36.276042pt;}
.hc{height:36.768359pt;}
.h12{height:36.846094pt;}
.h7{height:36.872005pt;}
.h18{height:36.910708pt;}
.h1a{height:36.916042pt;}
.hd{height:38.089844pt;}
.h2c{height:38.729844pt;}
.he{height:38.735177pt;}
.h2{height:39.739714pt;}
.hf{height:39.800000pt;}
.h30{height:40.440000pt;}
.h17{height:40.445333pt;}
.hb{height:40.914193pt;}
.h32{height:41.352005pt;}
.h20{height:41.357339pt;}
.h16{height:41.548859pt;}
.h31{height:41.554193pt;}
.h1f{height:41.992005pt;}
.h19{height:42.142656pt;}
.h13{height:42.787990pt;}
.h42{height:42.797479pt;}
.h29{height:42.802813pt;}
.h33{height:43.133333pt;}
.h44{height:43.333333pt;}
.h27{height:43.442813pt;}
.h38{height:43.448146pt;}
.h2e{height:45.805469pt;}
.h5{height:46.293260pt;}
.h2a{height:47.725469pt;}
.h40{height:49.133333pt;}
.h1c{height:49.333333pt;}
.h3a{height:50.285469pt;}
.h34{height:50.930802pt;}
.h1{height:51.223958pt;}
.h48{height:52.400000pt;}
.h3d{height:59.400000pt;}
.h3f{height:71.666667pt;}
.h4{height:74.666667pt;}
.h28{height:75.266667pt;}
.h3{height:88.937500pt;}
.h1e{height:107.000000pt;}
.h2b{height:170.000000pt;}
.h45{height:184.733333pt;}
.h41{height:202.533333pt;}
.h49{height:296.466667pt;}
.h2f{height:367.133333pt;}
.h8{height:730.933333pt;}
.h11{height:949.600000pt;}
.h0{height:1056.000000pt;}
.w7{width:3.800000pt;}
.wb{width:4.066667pt;}
.w8{width:4.400000pt;}
.w2d{width:4.800000pt;}
.w5{width:5.333333pt;}
.w35{width:5.400000pt;}
.w2b{width:5.533333pt;}
.wa{width:5.666667pt;}
.w6{width:8.200000pt;}
.w2a{width:10.600000pt;}
.w2c{width:13.533333pt;}
.w9{width:14.066667pt;}
.w24{width:14.800000pt;}
.w28{width:22.866667pt;}
.w17{width:23.533333pt;}
.w3a{width:31.933333pt;}
.w3f{width:32.800000pt;}
.w26{width:42.533333pt;}
.w15{width:45.333333pt;}
.w25{width:46.400000pt;}
.w23{width:46.933333pt;}
.w1b{width:51.333333pt;}
.w20{width:53.533333pt;}
.w11{width:69.933333pt;}
.w3b{width:70.800000pt;}
.w3d{width:71.533333pt;}
.w3e{width:75.400000pt;}
.w3c{width:79.533333pt;}
.w21{width:85.466667pt;}
.w10{width:87.333333pt;}
.w37{width:88.533333pt;}
.w18{width:90.666667pt;}
.w41{width:92.466667pt;}
.w12{width:100.866667pt;}
.w31{width:103.733333pt;}
.w42{width:104.200000pt;}
.w1d{width:106.866667pt;}
.wc{width:108.200000pt;}
.w1e{width:108.533333pt;}
.w14{width:125.466667pt;}
.w22{width:125.666667pt;}
.w13{width:126.400000pt;}
.w34{width:135.533333pt;}
.w40{width:139.066667pt;}
.w16{width:201.000000pt;}
.w39{width:226.466667pt;}
.w36{width:233.266667pt;}
.we{width:235.066667pt;}
.w1c{width:258.000000pt;}
.w32{width:274.866667pt;}
.w1f{width:296.066667pt;}
.wf{width:316.533333pt;}
.w2e{width:316.866667pt;}
.w29{width:334.733333pt;}
.w27{width:334.800000pt;}
.w1{width:347.800000pt;}
.w38{width:364.933333pt;}
.w3{width:402.466667pt;}
.w1a{width:406.066667pt;}
.w2f{width:408.400000pt;}
.w30{width:409.666667pt;}
.w4{width:415.666667pt;}
.w33{width:441.666667pt;}
.w2{width:470.333333pt;}
.w19{width:507.066667pt;}
.wd{width:583.066667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x96{left:1.133333pt;}
.xee{left:2.760000pt;}
.x8b{left:4.000000pt;}
.xb3{left:5.586667pt;}
.xc1{left:7.400000pt;}
.xd5{left:8.960000pt;}
.xb9{left:9.853333pt;}
.x97{left:12.466667pt;}
.xf6{left:13.440000pt;}
.x15{left:15.666667pt;}
.x3a{left:17.106667pt;}
.x39{left:18.706667pt;}
.xad{left:20.545333pt;}
.x8f{left:22.773333pt;}
.x3c{left:23.986667pt;}
.x27{left:26.066667pt;}
.xb5{left:27.600000pt;}
.x14{left:28.945333pt;}
.x8c{left:30.253333pt;}
.x38{left:31.826667pt;}
.xaf{left:33.040000pt;}
.x28{left:34.386667pt;}
.x90{left:36.853333pt;}
.x82{left:38.545333pt;}
.xf7{left:40.066667pt;}
.xb4{left:41.266667pt;}
.x8d{left:42.253333pt;}
.x8e{left:44.653333pt;}
.x89{left:46.066667pt;}
.x3{left:48.000000pt;}
.x91{left:51.893333pt;}
.x8a{left:53.266667pt;}
.xb7{left:54.212000pt;}
.x83{left:55.186667pt;}
.xba{left:57.212000pt;}
.x29{left:59.506667pt;}
.x2a{left:62.545333pt;}
.x23{left:64.145333pt;}
.x11{left:65.278667pt;}
.x3b{left:67.666667pt;}
.x2b{left:69.266667pt;}
.xd7{left:70.878667pt;}
.x24{left:72.145333pt;}
.x9a{left:73.440000pt;}
.x74{left:75.678667pt;}
.x2c{left:77.266667pt;}
.x10{left:78.560000pt;}
.x2d{left:80.945333pt;}
.x75{left:83.200000pt;}
.x71{left:87.026667pt;}
.x5{left:89.920000pt;}
.xd8{left:91.200000pt;}
.x25{left:93.426667pt;}
.xc0{left:95.600000pt;}
.x1{left:97.920000pt;}
.x6{left:99.200000pt;}
.xd4{left:101.600000pt;}
.xcc{left:103.200000pt;}
.xf4{left:104.786667pt;}
.x84{left:105.906667pt;}
.x26{left:107.186667pt;}
.xb0{left:108.078667pt;}
.x2e{left:110.386667pt;}
.xf{left:111.612000pt;}
.x69{left:114.066667pt;}
.x9b{left:116.320000pt;}
.x2f{left:117.266667pt;}
.x56{left:119.986667pt;}
.x55{left:121.745333pt;}
.x6b{left:124.306667pt;}
.x16{left:125.586667pt;}
.x30{left:128.786667pt;}
.x9c{left:130.078667pt;}
.x13{left:131.186667pt;}
.x6c{left:132.786667pt;}
.xf2{left:133.920000pt;}
.x9d{left:135.520000pt;}
.x6a{left:137.745333pt;}
.x4d{left:139.026667pt;}
.x17{left:141.906667pt;}
.xc{left:143.133333pt;}
.x31{left:144.626667pt;}
.x4{left:145.760000pt;}
.x87{left:149.586667pt;}
.x99{left:151.706667pt;}
.xe{left:152.733333pt;}
.x4e{left:153.906667pt;}
.x18{left:155.826667pt;}
.x32{left:157.745333pt;}
.xf9{left:158.866667pt;}
.x4f{left:159.986667pt;}
.xd{left:161.053333pt;}
.x85{left:163.186667pt;}
.x57{left:165.266667pt;}
.xe5{left:166.240000pt;}
.x95{left:167.200000pt;}
.x50{left:168.626667pt;}
.xc2{left:170.000000pt;}
.x58{left:173.266667pt;}
.xeb{left:174.225333pt;}
.x19{left:175.666667pt;}
.xa{left:176.800000pt;}
.x86{left:180.145333pt;}
.xec{left:181.426667pt;}
.x88{left:182.866667pt;}
.xf3{left:184.320000pt;}
.xe4{left:185.253333pt;}
.x51{left:186.706667pt;}
.xe6{left:187.840000pt;}
.x9e{left:189.760000pt;}
.x59{left:191.186667pt;}
.x1a{left:192.626667pt;}
.x80{left:194.878667pt;}
.xe7{left:196.320000pt;}
.x33{left:198.560000pt;}
.x5a{left:200.466667pt;}
.x9{left:201.920000pt;}
.x52{left:203.345333pt;}
.xb1{left:204.720000pt;}
.x1b{left:207.506667pt;}
.xf8{left:208.960000pt;}
.xc8{left:212.000000pt;}
.x76{left:213.278667pt;}
.x5b{left:214.866667pt;}
.x34{left:216.160000pt;}
.xed{left:217.440000pt;}
.x7{left:219.840000pt;}
.xd9{left:224.160000pt;}
.x72{left:225.106667pt;}
.x81{left:226.720000pt;}
.x8{left:228.478667pt;}
.x35{left:229.440000pt;}
.x53{left:231.345333pt;}
.xc9{left:232.320000pt;}
.xef{left:233.600000pt;}
.x36{left:234.878667pt;}
.x9f{left:237.120000pt;}
.xf0{left:238.240000pt;}
.x77{left:240.800000pt;}
.x6d{left:241.906667pt;}
.xc3{left:245.133333pt;}
.x6e{left:246.866667pt;}
.xda{left:248.000000pt;}
.x37{left:249.600000pt;}
.x6f{left:251.666667pt;}
.x54{left:253.266667pt;}
.xd1{left:254.626667pt;}
.x1c{left:255.666667pt;}
.x70{left:257.586667pt;}
.x20{left:259.186667pt;}
.xdb{left:260.478667pt;}
.x78{left:263.360000pt;}
.xe8{left:264.640000pt;}
.xe9{left:267.678667pt;}
.x21{left:268.945333pt;}
.x1d{left:271.345333pt;}
.xa0{left:272.640000pt;}
.xca{left:273.760000pt;}
.x79{left:275.200000pt;}
.xa1{left:278.078667pt;}
.x1e{left:281.106667pt;}
.xcb{left:282.720000pt;}
.xf1{left:283.678667pt;}
.xa2{left:285.120000pt;}
.x7b{left:286.078667pt;}
.x7a{left:288.320000pt;}
.xd2{left:294.306667pt;}
.xea{left:296.640000pt;}
.xa3{left:297.600000pt;}
.xa4{left:306.400000pt;}
.x98{left:308.933333pt;}
.xd0{left:310.786667pt;}
.xa5{left:312.000000pt;}
.x22{left:313.586667pt;}
.x7c{left:316.800000pt;}
.x2{left:318.240000pt;}
.xa6{left:322.400000pt;}
.xe2{left:324.533333pt;}
.xa7{left:327.840000pt;}
.x7d{left:331.200000pt;}
.xcd{left:332.160000pt;}
.xd3{left:333.666667pt;}
.x73{left:334.866667pt;}
.x1f{left:335.986667pt;}
.x7e{left:341.440000pt;}
.xb{left:345.666667pt;}
.x7f{left:347.200000pt;}
.xc4{left:353.133333pt;}
.xce{left:354.400000pt;}
.xdc{left:358.400000pt;}
.xa8{left:360.320000pt;}
.xe3{left:364.600000pt;}
.xdd{left:366.560000pt;}
.xa9{left:370.078667pt;}
.xd6{left:374.333333pt;}
.xde{left:375.360000pt;}
.xaa{left:384.320000pt;}
.xab{left:389.600000pt;}
.xdf{left:392.960000pt;}
.x12{left:400.333333pt;}
.xac{left:403.933333pt;}
.xcf{left:406.333333pt;}
.xe0{left:411.040000pt;}
.x5c{left:416.000000pt;}
.xe1{left:418.720000pt;}
.xf5{left:448.266667pt;}
.xb6{left:451.866667pt;}
.xae{left:453.200000pt;}
.x5d{left:455.200000pt;}
.x42{left:456.800000pt;}
.x5e{left:462.720000pt;}
.x3f{left:467.466667pt;}
.x5f{left:478.558667pt;}
.x49{left:502.933333pt;}
.x4b{left:519.533333pt;}
.x3d{left:526.200000pt;}
.x3e{left:530.400000pt;}
.x94{left:533.666667pt;}
.xb8{left:535.266667pt;}
.x45{left:539.933333pt;}
.x92{left:566.200000pt;}
.xbf{left:574.066667pt;}
.x68{left:580.933333pt;}
.x4a{left:589.733333pt;}
.x46{left:596.933333pt;}
.xc5{left:605.933333pt;}
.x47{left:609.066667pt;}
.xc6{left:620.733333pt;}
.x48{left:624.733333pt;}
.x60{left:647.520000pt;}
.x4c{left:649.800000pt;}
.x61{left:659.200000pt;}
.x93{left:690.533333pt;}
.x40{left:696.666667pt;}
.x62{left:700.640000pt;}
.xbb{left:703.666667pt;}
.x63{left:705.278667pt;}
.xb2{left:709.133333pt;}
.x64{left:713.920000pt;}
.xc7{left:715.133333pt;}
.xbc{left:716.400000pt;}
.x65{left:722.720000pt;}
.x43{left:726.200000pt;}
.x66{left:729.278667pt;}
.x67{left:735.200000pt;}
.x41{left:753.800000pt;}
.xbd{left:760.733333pt;}
.xbe{left:773.466667pt;}
.x44{left:783.266667pt;}
}




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