
    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_65adde0178ad56a9a5d42a84.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_60b89364bd6e50d96ca201b4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980000;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_f9eda00808a009eb278b77cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.964000;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_6b24f97bb7d140ee24fbde1a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_3fda8f4dec4425153b33a5ef.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.062000;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_e5c81d32464e622ae4b2ba03.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.994000;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_91232256d41639175008f00b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.957000;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_7bec1769f704c96a0a274420.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.980000;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_3c950599ad3ddf395f16d00a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947000;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_807be421a9dad965bde0757c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.945000;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_60b89364bd6e50d96ca201b4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.980000;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_edf9751aa6bf82a4751e91fe.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969000;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_9d782fd0d834ad7b273da1d7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1a4872f9e8eac14ccc3cc50c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c3d97550c08855f466b102b8.woff2')format("woff");}.fff{font-family:fff;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1a4872f9e8eac14ccc3cc50c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_487deb3b85862771a5fa9d37.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_ad266861eb6e9c89402d4be3.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.915000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_1a4872f9e8eac14ccc3cc50c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c3d97550c08855f466b102b8.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_087e81168ca420b1646de8d9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958000;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;}
.m3{transform:matrix(0.000000,-0.250006,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250006,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250006,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-28.656000px;}
.v3{vertical-align:-12.288000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:4.080000px;}
.v1{vertical-align:17.982000px;}
.v5{vertical-align:26.976000px;}
.v6{vertical-align:53.952000px;}
.v7{vertical-align:65.472000px;}
.lsc{letter-spacing:-2.808000px;}
.ls54{letter-spacing:-2.208000px;}
.ls35{letter-spacing:-1.860000px;}
.ls8{letter-spacing:-1.452000px;}
.ls4e{letter-spacing:-1.440000px;}
.ls3c{letter-spacing:-1.344000px;}
.ls20{letter-spacing:-1.326000px;}
.ls23{letter-spacing:-1.260000px;}
.ls4d{letter-spacing:-1.248000px;}
.ls2c{letter-spacing:-1.224000px;}
.ls25{letter-spacing:-1.152000px;}
.ls40{letter-spacing:-1.104000px;}
.ls55{letter-spacing:-1.008000px;}
.ls29{letter-spacing:-0.960000px;}
.ls1a{letter-spacing:-0.900000px;}
.ls24{letter-spacing:-0.792000px;}
.ls51{letter-spacing:-0.720000px;}
.ls45{letter-spacing:-0.672000px;}
.ls9{letter-spacing:-0.660000px;}
.ls22{letter-spacing:-0.648000px;}
.ls1b{letter-spacing:-0.540000px;}
.ls27{letter-spacing:-0.480000px;}
.ls3e{letter-spacing:-0.432000px;}
.ls1f{letter-spacing:-0.420000px;}
.ls56{letter-spacing:-0.384000px;}
.ls2d{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.300000px;}
.ls46{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.240000px;}
.ls4b{letter-spacing:-0.192000px;}
.ls1c{letter-spacing:-0.180000px;}
.ls17{letter-spacing:-0.120000px;}
.ls44{letter-spacing:-0.096000px;}
.lsf{letter-spacing:-0.060000px;}
.ls6{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.060000px;}
.ls48{letter-spacing:0.096000px;}
.ls5{letter-spacing:0.120000px;}
.ls28{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.180000px;}
.ls37{letter-spacing:0.192000px;}
.lsb{letter-spacing:0.216000px;}
.ls50{letter-spacing:0.240000px;}
.lsd{letter-spacing:0.270000px;}
.ls7{letter-spacing:0.288000px;}
.ls53{letter-spacing:0.324000px;}
.ls3f{letter-spacing:0.336000px;}
.ls12{letter-spacing:0.360000px;}
.ls38{letter-spacing:0.384000px;}
.ls10{letter-spacing:0.420000px;}
.ls3d{letter-spacing:0.432000px;}
.ls3a{letter-spacing:0.480000px;}
.ls41{letter-spacing:0.528000px;}
.ls30{letter-spacing:0.576000px;}
.lse{letter-spacing:0.588000px;}
.ls57{letter-spacing:0.594000px;}
.ls21{letter-spacing:0.600000px;}
.ls39{letter-spacing:0.624000px;}
.ls18{letter-spacing:0.660000px;}
.ls4a{letter-spacing:0.672000px;}
.ls3b{letter-spacing:0.720000px;}
.ls52{letter-spacing:0.756000px;}
.ls49{letter-spacing:0.768000px;}
.ls16{letter-spacing:0.780000px;}
.ls36{letter-spacing:0.816000px;}
.ls47{letter-spacing:0.912000px;}
.ls43{letter-spacing:0.960000px;}
.lsa{letter-spacing:0.975942px;}
.ls2f{letter-spacing:1.008000px;}
.ls2b{letter-spacing:1.020000px;}
.ls11{letter-spacing:1.080000px;}
.ls26{letter-spacing:1.380000px;}
.ls1d{letter-spacing:1.440000px;}
.ls42{letter-spacing:1.584000px;}
.ls4c{letter-spacing:2.640000px;}
.ls0{letter-spacing:9.180000px;}
.ls2{letter-spacing:13.872000px;}
.ls4{letter-spacing:16.392000px;}
.ls3{letter-spacing:16.500000px;}
.ls1{letter-spacing:38.520000px;}
.ls32{letter-spacing:102.720000px;}
.ls31{letter-spacing:103.872000px;}
.ls33{letter-spacing:135.600000px;}
.ls34{letter-spacing:138.384000px;}
.ls4f{letter-spacing:2461.100400px;}
.ls2e{letter-spacing:2462.120400px;}
.ls1e{letter-spacing:2463.089400px;}
.ls2a{letter-spacing:2464.262400px;}
.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;}
}
.wsc{word-spacing:-17.706000px;}
.ws2{word-spacing:-16.488000px;}
.ws16d{word-spacing:-15.678000px;}
.ws59{word-spacing:-15.600000px;}
.ws5d{word-spacing:-15.180000px;}
.ws5e{word-spacing:-14.976000px;}
.ws5b{word-spacing:-14.472000px;}
.ws11{word-spacing:-14.220000px;}
.ws19f{word-spacing:-14.040000px;}
.ws62{word-spacing:-13.920000px;}
.wsb{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.800000px;}
.ws16c{word-spacing:-13.740000px;}
.wsa{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.560000px;}
.ws9{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.440000px;}
.ws1a0{word-spacing:-13.380000px;}
.ws60{word-spacing:-13.320000px;}
.wse{word-spacing:-13.260000px;}
.ws7{word-spacing:-13.200000px;}
.wsf{word-spacing:-13.140000px;}
.ws58{word-spacing:-13.080000px;}
.ws5f{word-spacing:-12.900000px;}
.ws61{word-spacing:-12.840000px;}
.ws5a{word-spacing:-12.540000px;}
.ws4{word-spacing:-12.366000px;}
.ws16e{word-spacing:-12.360000px;}
.wsfc{word-spacing:-12.048000px;}
.ws102{word-spacing:-11.760000px;}
.ws127{word-spacing:-11.712000px;}
.wsff{word-spacing:-11.664000px;}
.wsfa{word-spacing:-11.640000px;}
.wsfe{word-spacing:-11.616000px;}
.ws101{word-spacing:-11.520000px;}
.ws0{word-spacing:-11.475000px;}
.ws100{word-spacing:-11.424000px;}
.ws15a{word-spacing:-11.376000px;}
.ws115{word-spacing:-11.328000px;}
.wsfd{word-spacing:-11.232000px;}
.ws11f{word-spacing:-11.184000px;}
.ws118{word-spacing:-11.136000px;}
.ws1d4{word-spacing:-10.944000px;}
.ws129{word-spacing:-10.896000px;}
.ws3{word-spacing:-8.059392px;}
.wsf0{word-spacing:-6.120000px;}
.wsd9{word-spacing:-5.520000px;}
.ws165{word-spacing:-4.800000px;}
.ws63{word-spacing:-4.656000px;}
.ws1cd{word-spacing:-2.106000px;}
.ws66{word-spacing:-1.740000px;}
.wsc0{word-spacing:-1.626000px;}
.ws56{word-spacing:-1.440000px;}
.wsf5{word-spacing:-1.080000px;}
.ws1ae{word-spacing:-0.960000px;}
.ws1a9{word-spacing:-0.840000px;}
.ws18f{word-spacing:-0.780000px;}
.ws167{word-spacing:-0.672000px;}
.ws28{word-spacing:-0.660000px;}
.ws18{word-spacing:-0.588000px;}
.ws15e{word-spacing:-0.480000px;}
.ws162{word-spacing:-0.432000px;}
.ws16a{word-spacing:-0.384000px;}
.ws160{word-spacing:-0.336000px;}
.ws17{word-spacing:-0.270000px;}
.ws15{word-spacing:-0.216000px;}
.ws47{word-spacing:-0.060000px;}
.ws1{word-spacing:-0.051000px;}
.ws12{word-spacing:0.000000px;}
.ws1d8{word-spacing:0.096000px;}
.ws99{word-spacing:0.120000px;}
.ws17a{word-spacing:0.180000px;}
.ws1dc{word-spacing:0.192000px;}
.ws18d{word-spacing:0.240000px;}
.ws19e{word-spacing:0.300000px;}
.wsf4{word-spacing:0.360000px;}
.ws1dd{word-spacing:0.384000px;}
.ws1d7{word-spacing:0.432000px;}
.ws19d{word-spacing:0.540000px;}
.wsc9{word-spacing:0.600000px;}
.ws14{word-spacing:0.660000px;}
.wsa5{word-spacing:0.720000px;}
.ws1e1{word-spacing:0.756000px;}
.wsea{word-spacing:0.780000px;}
.ws1f{word-spacing:0.840000px;}
.ws27{word-spacing:0.960000px;}
.ws1d9{word-spacing:1.008000px;}
.ws2a{word-spacing:1.020000px;}
.wsda{word-spacing:1.080000px;}
.wseb{word-spacing:1.140000px;}
.wsa9{word-spacing:1.200000px;}
.ws1e0{word-spacing:1.242000px;}
.ws1b9{word-spacing:1.260000px;}
.ws82{word-spacing:1.320000px;}
.ws1d3{word-spacing:1.344000px;}
.ws13{word-spacing:1.452000px;}
.wsbf{word-spacing:1.482000px;}
.ws1d6{word-spacing:1.488000px;}
.ws1a2{word-spacing:1.500000px;}
.ws166{word-spacing:1.536000px;}
.ws2d{word-spacing:1.560000px;}
.ws164{word-spacing:1.584000px;}
.ws163{word-spacing:1.632000px;}
.ws1c4{word-spacing:1.674000px;}
.ws161{word-spacing:1.680000px;}
.ws15f{word-spacing:1.728000px;}
.wsa1{word-spacing:1.740000px;}
.ws168{word-spacing:1.776000px;}
.ws17d{word-spacing:1.800000px;}
.ws15d{word-spacing:1.824000px;}
.ws1e4{word-spacing:1.836000px;}
.ws93{word-spacing:1.860000px;}
.ws1da{word-spacing:1.872000px;}
.ws9e{word-spacing:1.920000px;}
.ws187{word-spacing:1.980000px;}
.ws1d5{word-spacing:2.064000px;}
.ws69{word-spacing:2.100000px;}
.ws74{word-spacing:2.160000px;}
.ws15c{word-spacing:2.208000px;}
.ws1a3{word-spacing:2.220000px;}
.ws1db{word-spacing:2.256000px;}
.ws1be{word-spacing:2.268000px;}
.ws183{word-spacing:2.340000px;}
.ws169{word-spacing:2.352000px;}
.ws34{word-spacing:2.400000px;}
.ws1c3{word-spacing:2.430000px;}
.ws98{word-spacing:2.460000px;}
.wsb6{word-spacing:2.520000px;}
.ws1c5{word-spacing:2.538000px;}
.ws4c{word-spacing:2.580000px;}
.ws10{word-spacing:2.610000px;}
.wsbe{word-spacing:2.640000px;}
.ws20{word-spacing:2.700000px;}
.ws8a{word-spacing:2.760000px;}
.ws16{word-spacing:2.808000px;}
.ws191{word-spacing:2.820000px;}
.ws1b8{word-spacing:2.880000px;}
.ws1de{word-spacing:2.916000px;}
.wsaf{word-spacing:2.940000px;}
.wsab{word-spacing:2.952000px;}
.ws31{word-spacing:3.000000px;}
.wsba{word-spacing:3.060000px;}
.ws6a{word-spacing:3.096000px;}
.wsbd{word-spacing:3.120000px;}
.ws15b{word-spacing:3.180000px;}
.wsbb{word-spacing:3.240000px;}
.wsde{word-spacing:3.360000px;}
.wse3{word-spacing:3.420000px;}
.wsbc{word-spacing:3.432000px;}
.ws199{word-spacing:3.480000px;}
.ws17b{word-spacing:3.660000px;}
.wsd5{word-spacing:3.720000px;}
.ws75{word-spacing:3.744000px;}
.ws181{word-spacing:3.780000px;}
.ws26{word-spacing:3.840000px;}
.ws8b{word-spacing:3.888000px;}
.ws87{word-spacing:3.900000px;}
.ws184{word-spacing:3.960000px;}
.ws1e2{word-spacing:3.996000px;}
.ws46{word-spacing:4.020000px;}
.ws182{word-spacing:4.080000px;}
.ws195{word-spacing:4.140000px;}
.wsaa{word-spacing:4.200000px;}
.ws19a{word-spacing:4.260000px;}
.ws38{word-spacing:4.320000px;}
.ws1d1{word-spacing:4.374000px;}
.ws198{word-spacing:4.380000px;}
.ws194{word-spacing:4.440000px;}
.ws5c{word-spacing:4.482000px;}
.ws177{word-spacing:4.500000px;}
.ws175{word-spacing:4.560000px;}
.ws1b3{word-spacing:4.620000px;}
.ws193{word-spacing:4.740000px;}
.ws9a{word-spacing:4.800000px;}
.ws1c7{word-spacing:4.806000px;}
.ws9c{word-spacing:4.920000px;}
.ws2b{word-spacing:5.040000px;}
.ws95{word-spacing:5.100000px;}
.ws35{word-spacing:5.160000px;}
.ws55{word-spacing:5.280000px;}
.ws1ab{word-spacing:5.340000px;}
.ws54{word-spacing:5.460000px;}
.ws65{word-spacing:5.580000px;}
.wsb0{word-spacing:5.700000px;}
.ws1e3{word-spacing:5.724000px;}
.ws1a5{word-spacing:5.760000px;}
.wsd0{word-spacing:5.820000px;}
.ws97{word-spacing:5.880000px;}
.ws57{word-spacing:5.940000px;}
.ws49{word-spacing:6.000000px;}
.wsee{word-spacing:6.060000px;}
.ws1b7{word-spacing:6.120000px;}
.ws96{word-spacing:6.180000px;}
.ws16b{word-spacing:6.234000px;}
.ws1bf{word-spacing:6.264000px;}
.ws39{word-spacing:6.360000px;}
.ws81{word-spacing:6.420000px;}
.wsc6{word-spacing:6.540000px;}
.ws18c{word-spacing:6.660000px;}
.wsec{word-spacing:6.720000px;}
.ws1ca{word-spacing:6.750000px;}
.ws1bd{word-spacing:6.804000px;}
.ws6f{word-spacing:6.840000px;}
.ws6d{word-spacing:6.900000px;}
.ws33{word-spacing:7.020000px;}
.wsf7{word-spacing:7.080000px;}
.ws1ce{word-spacing:7.128000px;}
.ws7c{word-spacing:7.200000px;}
.ws86{word-spacing:7.260000px;}
.ws17f{word-spacing:7.380000px;}
.ws30{word-spacing:7.440000px;}
.ws2c{word-spacing:7.500000px;}
.ws7e{word-spacing:7.620000px;}
.ws45{word-spacing:7.680000px;}
.wsc7{word-spacing:7.740000px;}
.ws1aa{word-spacing:7.800000px;}
.ws185{word-spacing:7.860000px;}
.ws1c{word-spacing:7.920000px;}
.ws171{word-spacing:7.980000px;}
.wsdc{word-spacing:8.040000px;}
.wsb1{word-spacing:8.100000px;}
.ws1cc{word-spacing:8.154000px;}
.ws89{word-spacing:8.220000px;}
.ws1a6{word-spacing:8.280000px;}
.ws192{word-spacing:8.340000px;}
.ws3b{word-spacing:8.400000px;}
.wsd1{word-spacing:8.460000px;}
.ws2f{word-spacing:8.520000px;}
.ws1b{word-spacing:8.580000px;}
.ws1df{word-spacing:8.640000px;}
.ws172{word-spacing:8.700000px;}
.ws18a{word-spacing:8.760000px;}
.ws178{word-spacing:8.820000px;}
.ws6c{word-spacing:8.940000px;}
.ws1a{word-spacing:9.000000px;}
.ws1d2{word-spacing:9.072000px;}
.wsb9{word-spacing:9.120000px;}
.wsa4{word-spacing:9.180000px;}
.ws3f{word-spacing:9.240000px;}
.wse9{word-spacing:9.300000px;}
.ws80{word-spacing:9.360000px;}
.ws1bb{word-spacing:9.420000px;}
.ws1cf{word-spacing:9.450000px;}
.ws44{word-spacing:9.480000px;}
.ws4e{word-spacing:9.540000px;}
.ws1c0{word-spacing:9.558000px;}
.ws1af{word-spacing:9.600000px;}
.ws190{word-spacing:9.660000px;}
.ws67{word-spacing:9.720000px;}
.ws4d{word-spacing:9.780000px;}
.ws3e{word-spacing:9.900000px;}
.ws1c2{word-spacing:9.936000px;}
.ws180{word-spacing:10.020000px;}
.ws19b{word-spacing:10.140000px;}
.ws2e{word-spacing:10.200000px;}
.wscb{word-spacing:10.260000px;}
.ws18b{word-spacing:10.320000px;}
.wsca{word-spacing:10.380000px;}
.wsb2{word-spacing:10.500000px;}
.wse0{word-spacing:10.680000px;}
.ws1c8{word-spacing:10.692000px;}
.ws186{word-spacing:10.800000px;}
.ws6e{word-spacing:10.860000px;}
.wsed{word-spacing:10.920000px;}
.ws94{word-spacing:10.980000px;}
.ws1b6{word-spacing:11.040000px;}
.ws1b0{word-spacing:11.100000px;}
.ws32{word-spacing:11.160000px;}
.ws1ba{word-spacing:11.220000px;}
.wse2{word-spacing:11.340000px;}
.ws188{word-spacing:11.520000px;}
.ws71{word-spacing:11.580000px;}
.wse4{word-spacing:11.700000px;}
.ws4f{word-spacing:11.880000px;}
.ws18e{word-spacing:11.940000px;}
.ws4b{word-spacing:12.000000px;}
.ws1c6{word-spacing:12.042000px;}
.wsd7{word-spacing:12.180000px;}
.ws196{word-spacing:12.420000px;}
.ws1a7{word-spacing:12.540000px;}
.wsdb{word-spacing:12.600000px;}
.ws1d0{word-spacing:12.636000px;}
.ws197{word-spacing:12.660000px;}
.wsb3{word-spacing:12.840000px;}
.ws4a{word-spacing:12.900000px;}
.wse6{word-spacing:12.960000px;}
.ws189{word-spacing:13.020000px;}
.ws1a8{word-spacing:13.080000px;}
.wscc{word-spacing:13.260000px;}
.ws173{word-spacing:13.320000px;}
.ws48{word-spacing:13.380000px;}
.ws25{word-spacing:13.560000px;}
.ws17e{word-spacing:13.620000px;}
.wsef{word-spacing:13.680000px;}
.wse8{word-spacing:13.740000px;}
.ws174{word-spacing:13.800000px;}
.wse7{word-spacing:13.980000px;}
.ws7d{word-spacing:14.040000px;}
.wscf{word-spacing:14.280000px;}
.ws1c9{word-spacing:14.472000px;}
.ws176{word-spacing:14.520000px;}
.ws3d{word-spacing:14.580000px;}
.wscd{word-spacing:14.640000px;}
.ws1ac{word-spacing:14.760000px;}
.ws1b1{word-spacing:14.820000px;}
.ws1b5{word-spacing:14.880000px;}
.wsce{word-spacing:14.940000px;}
.ws3c{word-spacing:15.120000px;}
.ws1c1{word-spacing:15.174000px;}
.ws43{word-spacing:15.180000px;}
.wsa0{word-spacing:15.240000px;}
.ws88{word-spacing:15.300000px;}
.ws1b4{word-spacing:15.420000px;}
.ws8c{word-spacing:15.480000px;}
.ws51{word-spacing:15.600000px;}
.wsd2{word-spacing:15.720000px;}
.ws53{word-spacing:15.840000px;}
.ws73{word-spacing:15.900000px;}
.ws50{word-spacing:16.020000px;}
.ws7a{word-spacing:16.080000px;}
.ws29{word-spacing:16.140000px;}
.ws52{word-spacing:16.200000px;}
.wsa2{word-spacing:16.260000px;}
.wsd4{word-spacing:16.320000px;}
.ws36{word-spacing:16.380000px;}
.ws64{word-spacing:16.440000px;}
.ws1cb{word-spacing:16.524000px;}
.wse1{word-spacing:16.800000px;}
.ws85{word-spacing:17.040000px;}
.ws7f{word-spacing:17.100000px;}
.ws37{word-spacing:17.280000px;}
.ws9f{word-spacing:17.340000px;}
.ws7b{word-spacing:17.460000px;}
.ws1bc{word-spacing:17.520000px;}
.wsf8{word-spacing:17.580000px;}
.wsb5{word-spacing:17.700000px;}
.ws21{word-spacing:17.880000px;}
.ws8f{word-spacing:17.940000px;}
.wsf9{word-spacing:18.240000px;}
.ws90{word-spacing:18.300000px;}
.wsdf{word-spacing:18.420000px;}
.wsf6{word-spacing:18.480000px;}
.wse5{word-spacing:18.600000px;}
.ws22{word-spacing:18.720000px;}
.ws17c{word-spacing:18.960000px;}
.ws1ad{word-spacing:19.140000px;}
.wsac{word-spacing:19.320000px;}
.wsd8{word-spacing:19.440000px;}
.ws40{word-spacing:19.680000px;}
.ws170{word-spacing:19.740000px;}
.ws16f{word-spacing:19.860000px;}
.ws19c{word-spacing:19.920000px;}
.ws9b{word-spacing:19.980000px;}
.wsa3{word-spacing:20.220000px;}
.wsd6{word-spacing:20.280000px;}
.ws1a4{word-spacing:20.460000px;}
.wsad{word-spacing:20.580000px;}
.ws79{word-spacing:20.700000px;}
.wsae{word-spacing:20.880000px;}
.ws83{word-spacing:20.940000px;}
.ws1b2{word-spacing:21.000000px;}
.wsa6{word-spacing:21.180000px;}
.ws6b{word-spacing:21.420000px;}
.ws68{word-spacing:21.480000px;}
.ws1a1{word-spacing:21.540000px;}
.wsc8{word-spacing:21.600000px;}
.wsa7{word-spacing:22.080000px;}
.ws8e{word-spacing:22.620000px;}
.ws84{word-spacing:23.940000px;}
.ws92{word-spacing:24.120000px;}
.ws6{word-spacing:24.192000px;}
.ws72{word-spacing:24.600000px;}
.ws179{word-spacing:24.900000px;}
.ws77{word-spacing:25.380000px;}
.ws24{word-spacing:25.560000px;}
.ws78{word-spacing:25.620000px;}
.ws23{word-spacing:25.920000px;}
.ws70{word-spacing:26.820000px;}
.wsd3{word-spacing:27.240000px;}
.wsdd{word-spacing:27.600000px;}
.wsb4{word-spacing:28.380000px;}
.ws42{word-spacing:28.980000px;}
.ws41{word-spacing:29.220000px;}
.ws19{word-spacing:30.000000px;}
.ws3a{word-spacing:31.620000px;}
.wsb7{word-spacing:31.860000px;}
.ws9d{word-spacing:32.220000px;}
.ws76{word-spacing:34.080000px;}
.wsa8{word-spacing:34.680000px;}
.ws8d{word-spacing:35.460000px;}
.ws1d{word-spacing:37.320000px;}
.ws1e{word-spacing:37.680000px;}
.ws91{word-spacing:39.780000px;}
.wsb8{word-spacing:55.440000px;}
.ws13e{word-spacing:60.921600px;}
.ws10c{word-spacing:73.982400px;}
.ws12a{word-spacing:80.265600px;}
.wsfb{word-spacing:80.880000px;}
.ws12b{word-spacing:82.022400px;}
.ws139{word-spacing:82.070400px;}
.ws145{word-spacing:82.934400px;}
.ws149{word-spacing:83.414400px;}
.ws106{word-spacing:83.875200px;}
.ws128{word-spacing:84.787200px;}
.ws13d{word-spacing:85.856400px;}
.ws150{word-spacing:86.486400px;}
.ws13b{word-spacing:86.515200px;}
.ws10a{word-spacing:87.139200px;}
.ws112{word-spacing:92.400000px;}
.ws11d{word-spacing:93.072000px;}
.ws141{word-spacing:93.283200px;}
.ws113{word-spacing:93.657600px;}
.ws11e{word-spacing:94.569600px;}
.ws10d{word-spacing:96.566400px;}
.wsc1{word-spacing:96.993000px;}
.ws107{word-spacing:99.964800px;}
.ws157{word-spacing:102.864000px;}
.ws146{word-spacing:103.776000px;}
.ws137{word-spacing:103.968000px;}
.ws14d{word-spacing:104.352000px;}
.ws12f{word-spacing:104.568000px;}
.ws13a{word-spacing:107.664000px;}
.ws140{word-spacing:107.952000px;}
.ws110{word-spacing:109.488000px;}
.ws151{word-spacing:109.656000px;}
.ws124{word-spacing:111.158400px;}
.ws14a{word-spacing:111.504000px;}
.ws132{word-spacing:111.792000px;}
.ws111{word-spacing:116.328000px;}
.ws12e{word-spacing:116.836800px;}
.ws104{word-spacing:124.368000px;}
.ws14b{word-spacing:124.742400px;}
.ws105{word-spacing:128.448000px;}
.ws144{word-spacing:128.769600px;}
.ws126{word-spacing:130.915200px;}
.ws136{word-spacing:131.558400px;}
.ws147{word-spacing:131.995200px;}
.ws152{word-spacing:132.384000px;}
.ws143{word-spacing:140.424000px;}
.ws12d{word-spacing:140.515200px;}
.ws159{word-spacing:142.156800px;}
.ws120{word-spacing:142.315200px;}
.ws158{word-spacing:144.796800px;}
.ws119{word-spacing:145.070400px;}
.ws116{word-spacing:145.848000px;}
.ws148{word-spacing:149.822400px;}
.ws117{word-spacing:153.369600px;}
.ws133{word-spacing:153.907200px;}
.ws123{word-spacing:154.262400px;}
.ws134{word-spacing:154.358400px;}
.ws125{word-spacing:155.299200px;}
.ws155{word-spacing:155.923200px;}
.ws14f{word-spacing:156.048000px;}
.ws11c{word-spacing:156.940800px;}
.ws135{word-spacing:157.670400px;}
.ws114{word-spacing:157.795200px;}
.ws11a{word-spacing:158.851200px;}
.wsc3{word-spacing:159.216000px;}
.wsc4{word-spacing:159.840000px;}
.wsc2{word-spacing:160.032000px;}
.ws13c{word-spacing:160.478400px;}
.wsc5{word-spacing:162.384000px;}
.ws138{word-spacing:163.353600px;}
.ws14c{word-spacing:164.371200px;}
.ws13f{word-spacing:165.024000px;}
.ws108{word-spacing:166.694400px;}
.ws142{word-spacing:167.174400px;}
.ws10e{word-spacing:169.075200px;}
.ws10f{word-spacing:169.267200px;}
.ws11b{word-spacing:170.707200px;}
.ws131{word-spacing:182.236800px;}
.ws10b{word-spacing:182.241600px;}
.ws14e{word-spacing:183.422400px;}
.ws130{word-spacing:183.859200px;}
.wsf3{word-spacing:184.608000px;}
.ws122{word-spacing:200.779200px;}
.ws156{word-spacing:213.398400px;}
.ws12c{word-spacing:217.411200px;}
.ws103{word-spacing:217.718400px;}
.ws121{word-spacing:225.830400px;}
.ws153{word-spacing:269.841600px;}
.ws154{word-spacing:278.520000px;}
.wsf2{word-spacing:341.808000px;}
.ws109{word-spacing:382.022400px;}
.wsf1{word-spacing:399.744000px;}
._0{margin-left:-3061.417200px;}
._18{margin-left:-61.414800px;}
._15{margin-left:-30.014400px;}
._13{margin-left:-27.645600px;}
._1e{margin-left:-25.627200px;}
._1d{margin-left:-24.494400px;}
._1b{margin-left:-22.044000px;}
._e{margin-left:-19.404000px;}
._20{margin-left:-17.512800px;}
._10{margin-left:-15.816000px;}
._11{margin-left:-14.354400px;}
._14{margin-left:-13.336800px;}
._1f{margin-left:-11.887200px;}
._16{margin-left:-10.740000px;}
._12{margin-left:-9.405600px;}
._4{margin-left:-8.025600px;}
._8{margin-left:-6.889200px;}
._26{margin-left:-5.866800px;}
._17{margin-left:-4.812000px;}
._5{margin-left:-3.115200px;}
._2{margin-left:-2.102400px;}
._1{margin-left:-1.020000px;}
._7{width:1.147200px;}
._3{width:2.476800px;}
._6{width:3.656400px;}
._1a{width:4.695600px;}
._f{width:5.834400px;}
._38{width:6.852000px;}
._b{width:8.572800px;}
._a{width:10.260000px;}
._1c{width:11.581200px;}
._37{width:13.550400px;}
._3d{width:14.596800px;}
._9{width:15.646800px;}
._c{width:16.747200px;}
._3e{width:18.888000px;}
._19{width:21.348000px;}
._d{width:26.632800px;}
._3b{width:32.068800px;}
._3a{width:33.696000px;}
._3c{width:35.092800px;}
._39{width:38.356800px;}
._2c{width:90.120000px;}
._2a{width:93.847200px;}
._36{width:106.036800px;}
._21{width:107.913000px;}
._22{width:108.966000px;}
._33{width:131.520000px;}
._2e{width:136.656000px;}
._2b{width:137.856000px;}
._2d{width:139.104000px;}
._2f{width:140.352000px;}
._29{width:143.664000px;}
._34{width:148.972800px;}
._23{width:162.912000px;}
._24{width:164.928000px;}
._25{width:169.488000px;}
._31{width:170.592000px;}
._30{width:220.584000px;}
._32{width:226.051200px;}
._35{width:243.907200px;}
._27{width:340.224000px;}
._28{width:1840.608000px;}
.fc6{color:rgb(55,54,54);}
.fc5{color:rgb(39,141,173);}
.fc3{color:rgb(101,98,99);}
.fc4{color:rgb(0,117,156);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(57,53,54);}
.fc7{color:rgb(83,167,191);}
.fc0{color:rgb(145,143,143);}
.fs4{font-size:31.482000px;}
.fs9{font-size:39.000000px;}
.fs6{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:35.032200px;}
.y135{bottom:77.980200px;}
.y18c{bottom:84.787050px;}
.y37{bottom:87.307050px;}
.y134{bottom:89.980200px;}
.y18b{bottom:96.787050px;}
.y133{bottom:101.980200px;}
.y88{bottom:102.491250px;}
.y36{bottom:105.307050px;}
.y18a{bottom:108.787050px;}
.y132{bottom:113.980200px;}
.y87{bottom:114.491250px;}
.y189{bottom:120.787050px;}
.y35{bottom:123.307050px;}
.y131{bottom:125.980200px;}
.y188{bottom:137.035050px;}
.y34{bottom:141.307050px;}
.y130{bottom:142.228200px;}
.y86{bottom:146.999250px;}
.y187{bottom:149.035050px;}
.y12f{bottom:154.228200px;}
.y1d5{bottom:156.722850px;}
.y33{bottom:159.307050px;}
.y186{bottom:161.035050px;}
.y12e{bottom:166.228200px;}
.y1d4{bottom:171.721350px;}
.y185{bottom:173.035050px;}
.y32{bottom:177.307050px;}
.y12d{bottom:178.228200px;}
.y10e{bottom:179.221050px;}
.y184{bottom:185.035050px;}
.y12c{bottom:190.228200px;}
.y10d{bottom:191.221050px;}
.y31{bottom:195.307050px;}
.y183{bottom:197.035050px;}
.y1d3{bottom:201.718350px;}
.y182{bottom:209.035050px;}
.y12b{bottom:210.732300px;}
.y30{bottom:213.307050px;}
.y1d2{bottom:216.716850px;}
.y7c{bottom:219.313200px;}
.y10c{bottom:225.193050px;}
.y10a{bottom:225.205050px;}
.y181{bottom:225.283050px;}
.y2f{bottom:231.307050px;}
.y109{bottom:231.961050px;}
.y180{bottom:237.283050px;}
.y10b{bottom:238.705050px;}
.y1d1{bottom:246.713850px;}
.y17f{bottom:249.283050px;}
.y2e{bottom:249.307050px;}
.y108{bottom:257.965050px;}
.y17e{bottom:261.283050px;}
.y1d0{bottom:261.712350px;}
.y12a{bottom:262.771950px;}
.y107{bottom:264.721050px;}
.y61{bottom:266.620350px;}
.y2d{bottom:267.307050px;}
.y17d{bottom:273.283050px;}
.y1cf{bottom:276.710850px;}
.y129{bottom:277.770450px;}
.y2c{bottom:285.307050px;}
.y17c{bottom:289.531050px;}
.y106{bottom:290.725050px;}
.y104{bottom:290.737050px;}
.y1ce{bottom:291.709350px;}
.y128{bottom:292.768950px;}
.y103{bottom:297.493050px;}
.y17b{bottom:301.531050px;}
.y2b{bottom:303.307050px;}
.y105{bottom:304.237050px;}
.y1cd{bottom:306.707850px;}
.y127{bottom:307.767450px;}
.y17a{bottom:313.531050px;}
.y2a{bottom:321.307050px;}
.y126{bottom:322.765950px;}
.y102{bottom:323.497050px;}
.y179{bottom:325.531050px;}
.y7b{bottom:326.276100px;}
.y1cc{bottom:330.211800px;}
.yfe{bottom:330.253050px;}
.y101{bottom:336.997050px;}
.yfd{bottom:337.009050px;}
.y178{bottom:337.531050px;}
.y125{bottom:337.764450px;}
.y29{bottom:339.307050px;}
.yff{bottom:343.753050px;}
.y177{bottom:349.531050px;}
.y100{bottom:350.497050px;}
.y124{bottom:352.762950px;}
.y28{bottom:357.307050px;}
.y176{bottom:365.779050px;}
.y123{bottom:367.761450px;}
.yfc{bottom:369.757050px;}
.yfb{bottom:369.769050px;}
.y27{bottom:375.307050px;}
.yfa{bottom:376.525050px;}
.y175{bottom:377.779050px;}
.y62{bottom:382.211250px;}
.y122{bottom:382.759950px;}
.y1cb{bottom:386.523150px;}
.y174{bottom:389.779050px;}
.y26{bottom:393.307050px;}
.y121{bottom:397.758450px;}
.y1ca{bottom:398.523150px;}
.y173{bottom:401.779050px;}
.yf9{bottom:402.529050px;}
.yf8{bottom:402.541050px;}
.yb5{bottom:408.014700px;}
.yf7{bottom:409.297050px;}
.y1c9{bottom:410.523150px;}
.y25{bottom:411.307050px;}
.y120{bottom:412.756950px;}
.y172{bottom:413.779050px;}
.y1c8{bottom:422.523150px;}
.y11f{bottom:427.755450px;}
.y24{bottom:429.307050px;}
.y171{bottom:430.027050px;}
.y1c7{bottom:434.523150px;}
.yf6{bottom:435.301050px;}
.yb4{bottom:440.522700px;}
.y170{bottom:442.027050px;}
.yf3{bottom:442.057050px;}
.y11e{bottom:442.753950px;}
.y23{bottom:447.307050px;}
.yf2{bottom:447.682050px;}
.yf5{bottom:448.801050px;}
.y7a{bottom:449.068050px;}
.y1c6{bottom:450.771150px;}
.yb3{bottom:452.522700px;}
.y16f{bottom:454.027050px;}
.y11d{bottom:457.752450px;}
.yf4{bottom:462.301050px;}
.y1c5{bottom:462.771150px;}
.y22{bottom:465.307050px;}
.y16e{bottom:466.027050px;}
.y11c{bottom:472.750950px;}
.y1c4{bottom:474.771150px;}
.y16d{bottom:478.027050px;}
.yf1{bottom:481.429650px;}
.y21{bottom:483.307050px;}
.yb2{bottom:485.030700px;}
.y1c3{bottom:486.771150px;}
.y11b{bottom:487.749450px;}
.yee{bottom:488.185650px;}
.y16c{bottom:490.027050px;}
.yf0{bottom:494.929650px;}
.yed{bottom:494.941650px;}
.y1c2{bottom:498.771150px;}
.y20{bottom:501.307050px;}
.y11a{bottom:502.747950px;}
.y16b{bottom:506.275050px;}
.yef{bottom:508.429650px;}
.y1c1{bottom:510.771150px;}
.y16a{bottom:518.275050px;}
.y1f{bottom:519.307050px;}
.y119{bottom:526.251900px;}
.y1c0{bottom:527.019150px;}
.y63{bottom:527.128950px;}
.yeb{bottom:527.701650px;}
.y169{bottom:530.275050px;}
.yec{bottom:534.445650px;}
.ye8{bottom:534.457650px;}
.y1e{bottom:537.307050px;}
.y1bf{bottom:539.019150px;}
.yea{bottom:541.201650px;}
.ye7{bottom:541.213650px;}
.y168{bottom:542.275050px;}
.ya6{bottom:545.844000px;}
.y1be{bottom:551.019150px;}
.yaf{bottom:551.303250px;}
.y167{bottom:554.275050px;}
.ye9{bottom:554.701650px;}
.y1d{bottom:555.307050px;}
.y1bd{bottom:563.019150px;}
.y166{bottom:570.523050px;}
.y1c{bottom:573.307050px;}
.ye6{bottom:573.973650px;}
.yae{bottom:574.835250px;}
.y118{bottom:578.267550px;}
.y1bc{bottom:579.267150px;}
.ye5{bottom:580.729650px;}
.y165{bottom:582.523050px;}
.y1bb{bottom:591.267150px;}
.y1b{bottom:591.307050px;}
.y164{bottom:594.523050px;}
.yad{bottom:597.347250px;}
.y1ba{bottom:603.267150px;}
.y117{bottom:604.771650px;}
.y163{bottom:606.523050px;}
.ye4{bottom:606.733650px;}
.y1a{bottom:609.307050px;}
.y79{bottom:613.826400px;}
.y1b9{bottom:615.267150px;}
.yac{bottom:615.420000px;}
.y162{bottom:618.523050px;}
.ye2{bottom:620.233650px;}
.y77{bottom:625.902600px;}
.y1b8{bottom:627.267150px;}
.y19{bottom:627.307050px;}
.y161{bottom:630.523050px;}
.ye3{bottom:633.733650px;}
.y1b7{bottom:639.267150px;}
.yb1{bottom:640.703250px;}
.ya8{bottom:640.728000px;}
.y64{bottom:641.468700px;}
.y160{bottom:642.523050px;}
.y52{bottom:645.307050px;}
.ye1{bottom:652.981650px;}
.y1b6{bottom:655.515150px;}
.y116{bottom:656.799300px;}
.y15f{bottom:658.771050px;}
.y51{bottom:663.307050px;}
.ydf{bottom:666.481650px;}
.y1b5{bottom:667.515150px;}
.y15e{bottom:670.771050px;}
.y115{bottom:674.794800px;}
.y1b4{bottom:679.515150px;}
.ye0{bottom:679.981650px;}
.y6e{bottom:680.247900px;}
.y50{bottom:681.307050px;}
.y15d{bottom:682.771050px;}
.yab{bottom:688.308000px;}
.y78{bottom:689.736750px;}
.y114{bottom:689.793300px;}
.y1b3{bottom:691.515150px;}
.y15c{bottom:694.771050px;}
.y6d{bottom:696.637650px;}
.ydd{bottom:699.241650px;}
.y4f{bottom:699.307050px;}
.y1b2{bottom:703.515150px;}
.y113{bottom:704.791800px;}
.yde{bottom:705.985650px;}
.yda{bottom:705.997650px;}
.yaa{bottom:706.464000px;}
.y60{bottom:706.504200px;}
.y15b{bottom:706.771050px;}
.ydc{bottom:712.741650px;}
.yd9{bottom:712.753650px;}
.y4e{bottom:717.307050px;}
.y15a{bottom:718.771050px;}
.y1b1{bottom:719.763150px;}
.y112{bottom:719.790300px;}
.ydb{bottom:726.241650px;}
.y65{bottom:728.539050px;}
.y1b0{bottom:731.763150px;}
.y111{bottom:734.788800px;}
.y159{bottom:735.019050px;}
.y4d{bottom:735.307050px;}
.y76{bottom:736.883550px;}
.y59{bottom:737.033700px;}
.y18{bottom:737.439750px;}
.y9a{bottom:743.458500px;}
.y1af{bottom:743.763150px;}
.yd8{bottom:745.501650px;}
.y158{bottom:747.019050px;}
.y110{bottom:749.787300px;}
.y4c{bottom:753.307050px;}
.y1ae{bottom:755.763150px;}
.ya7{bottom:757.872000px;}
.yd6{bottom:759.001650px;}
.y157{bottom:759.019050px;}
.y17{bottom:760.697250px;}
.ya5{bottom:763.752000px;}
.y1ad{bottom:767.763150px;}
.y69{bottom:769.446600px;}
.y5f{bottom:769.593000px;}
.y156{bottom:771.019050px;}
.y16{bottom:771.197250px;}
.y4b{bottom:771.307050px;}
.yd7{bottom:772.501650px;}
.y10f{bottom:773.287050px;}
.y99{bottom:775.966500px;}
.ya9{bottom:778.596000px;}
.y1ac{bottom:779.763150px;}
.y68{bottom:779.957100px;}
.y15{bottom:781.697250px;}
.y155{bottom:783.019050px;}
.y4a{bottom:789.307050px;}
.y67{bottom:790.467600px;}
.yd5{bottom:791.749650px;}
.y14{bottom:792.197250px;}
.yd4{bottom:794.629650px;}
.yd3{bottom:794.641650px;}
.y91{bottom:794.707350px;}
.y154{bottom:795.019050px;}
.y1ab{bottom:796.011150px;}
.y6c{bottom:800.987850px;}
.ya3{bottom:801.048000px;}
.yd2{bottom:801.397650px;}
.y153{bottom:807.019050px;}
.y55{bottom:807.307050px;}
.y1aa{bottom:808.011150px;}
.y6b{bottom:811.498350px;}
.y90{bottom:818.357250px;}
.y1a9{bottom:820.011150px;}
.y6a{bottom:822.008850px;}
.y152{bottom:823.267050px;}
.y49{bottom:825.307050px;}
.y5c{bottom:826.285950px;}
.yd0{bottom:830.293650px;}
.y1a8{bottom:832.011150px;}
.y13{bottom:832.459950px;}
.y151{bottom:835.267050px;}
.y5a{bottom:836.447550px;}
.yd1{bottom:837.037650px;}
.ycd{bottom:837.049650px;}
.y71{bottom:840.396000px;}
.y8a{bottom:841.509000px;}
.y48{bottom:843.307050px;}
.ycf{bottom:843.793650px;}
.ycc{bottom:843.805650px;}
.y1a7{bottom:844.011150px;}
.y150{bottom:847.267050px;}
.y6f{bottom:849.022500px;}
.y92{bottom:851.616600px;}
.y12{bottom:854.464950px;}
.yce{bottom:857.293650px;}
.y14f{bottom:859.267050px;}
.y1a6{bottom:860.259150px;}
.y5b{bottom:861.205500px;}
.y47{bottom:861.307050px;}
.y85{bottom:867.097950px;}
.y11{bottom:867.964950px;}
.y14e{bottom:871.267050px;}
.y1a5{bottom:872.259150px;}
.ycb{bottom:876.553650px;}
.y46{bottom:879.307050px;}
.y98{bottom:881.268600px;}
.y10{bottom:881.464950px;}
.y5e{bottom:881.746350px;}
.y14d{bottom:883.267050px;}
.y1a4{bottom:884.259150px;}
.y9f{bottom:884.712000px;}
.ya2{bottom:890.652000px;}
.yc8{bottom:891.925650px;}
.yf{bottom:894.964950px;}
.y84{bottom:894.992100px;}
.yca{bottom:895.801650px;}
.y1a3{bottom:896.259150px;}
.y45{bottom:897.307050px;}
.y14c{bottom:899.515050px;}
.y8b{bottom:900.507150px;}
.ya0{bottom:901.860000px;}
.yc5{bottom:905.425650px;}
.y66{bottom:907.047150px;}
.y1a2{bottom:908.259150px;}
.ye{bottom:908.464950px;}
.y97{bottom:910.764600px;}
.y14b{bottom:911.515050px;}
.yc9{bottom:915.049650px;}
.y44{bottom:915.307050px;}
.y8f{bottom:916.965300px;}
.yc7{bottom:918.925650px;}
.y70{bottom:919.192200px;}
.y1a1{bottom:920.259150px;}
.yd{bottom:921.964950px;}
.y83{bottom:922.784100px;}
.y14a{bottom:923.515050px;}
.y43{bottom:933.307050px;}
.yc6{bottom:934.309650px;}
.yc{bottom:935.464950px;}
.y149{bottom:935.515050px;}
.y1a0{bottom:936.507150px;}
.y93{bottom:939.924600px;}
.y148{bottom:947.515050px;}
.y19f{bottom:948.507150px;}
.yb{bottom:948.964950px;}
.y82{bottom:950.600100px;}
.y42{bottom:951.307050px;}
.yc4{bottom:953.557650px;}
.yc3{bottom:953.569650px;}
.y8c{bottom:959.490450px;}
.y147{bottom:959.515050px;}
.yc2{bottom:960.325650px;}
.y72{bottom:960.493350px;}
.y19e{bottom:960.507150px;}
.ya{bottom:962.464950px;}
.y41{bottom:969.307050px;}
.y94{bottom:969.420600px;}
.y146{bottom:971.515050px;}
.y74{bottom:972.271350px;}
.y19d{bottom:972.507150px;}
.y9{bottom:975.964950px;}
.y81{bottom:978.416100px;}
.ya1{bottom:980.916000px;}
.y73{bottom:984.059100px;}
.y19c{bottom:984.507150px;}
.yc1{bottom:986.329650px;}
.yc0{bottom:986.341650px;}
.y54{bottom:987.307050px;}
.y145{bottom:987.763050px;}
.y8{bottom:989.464950px;}
.ybf{bottom:993.097650px;}
.y95{bottom:999.216600px;}
.y144{bottom:999.763050px;}
.y19b{bottom:1000.755150px;}
.y7{bottom:1002.964950px;}
.y7e{bottom:1003.431300px;}
.y40{bottom:1005.307050px;}
.y80{bottom:1006.208100px;}
.y143{bottom:1011.763050px;}
.y19a{bottom:1012.755150px;}
.y5d{bottom:1014.342750px;}
.y6{bottom:1016.464950px;}
.ya4{bottom:1017.708000px;}
.y8d{bottom:1018.472550px;}
.ybe{bottom:1019.101650px;}
.y7d{bottom:1019.821050px;}
.y9e{bottom:1023.000000px;}
.y53{bottom:1023.307050px;}
.y142{bottom:1023.763050px;}
.y199{bottom:1024.755150px;}
.ybd{bottom:1025.857650px;}
.y96{bottom:1028.712600px;}
.y141{bottom:1035.763050px;}
.y198{bottom:1036.755150px;}
.y3f{bottom:1041.307050px;}
.y7f{bottom:1041.536100px;}
.y140{bottom:1047.763050px;}
.y197{bottom:1048.755150px;}
.ybc{bottom:1051.861650px;}
.y5{bottom:1057.974600px;}
.y3e{bottom:1059.307050px;}
.y13f{bottom:1059.763050px;}
.y196{bottom:1060.755150px;}
.yb0{bottom:1062.803250px;}
.y75{bottom:1063.515150px;}
.ybb{bottom:1065.361650px;}
.yb7{bottom:1072.105650px;}
.y13e{bottom:1076.011050px;}
.y195{bottom:1077.003150px;}
.y3d{bottom:1077.307050px;}
.y8e{bottom:1077.456450px;}
.yb6{bottom:1078.861650px;}
.yb8{bottom:1085.605650px;}
.y13d{bottom:1088.011050px;}
.y194{bottom:1089.003150px;}
.yba{bottom:1092.361650px;}
.y4{bottom:1093.977600px;}
.y3c{bottom:1095.307050px;}
.y13c{bottom:1100.011050px;}
.y193{bottom:1101.003150px;}
.yb9{bottom:1105.861650px;}
.y13b{bottom:1112.011050px;}
.y192{bottom:1113.003150px;}
.y3b{bottom:1113.307050px;}
.y13a{bottom:1124.011050px;}
.y89{bottom:1124.889300px;}
.y191{bottom:1125.003150px;}
.y3{bottom:1129.980600px;}
.y3a{bottom:1131.307050px;}
.y139{bottom:1136.011050px;}
.y58{bottom:1139.889300px;}
.y9d{bottom:1140.739650px;}
.y190{bottom:1141.251150px;}
.y39{bottom:1149.307050px;}
.y138{bottom:1152.259050px;}
.y18f{bottom:1153.251150px;}
.y57{bottom:1154.889300px;}
.y9c{bottom:1155.739650px;}
.y137{bottom:1164.259050px;}
.y18e{bottom:1165.251150px;}
.y38{bottom:1167.307050px;}
.y2{bottom:1172.727300px;}
.y56{bottom:1174.989300px;}
.y9b{bottom:1175.839650px;}
.y136{bottom:1176.259050px;}
.y18d{bottom:1177.251150px;}
.h11{height:29.523000px;}
.h9{height:32.844000px;}
.h16{height:34.080000px;}
.h12{height:35.568000px;}
.ha{height:35.658000px;}
.h13{height:36.336000px;}
.h19{height:37.056000px;}
.h17{height:38.160000px;}
.h2{height:39.882000px;}
.h14{height:40.752000px;}
.h15{height:42.180000px;}
.h6{height:42.228000px;}
.h8{height:42.232200px;}
.h1e{height:42.480000px;}
.h5{height:42.600924px;}
.h10{height:42.720000px;}
.h7{height:45.846000px;}
.he{height:46.320000px;}
.hc{height:46.680000px;}
.hb{height:46.920000px;}
.hf{height:50.616000px;}
.hd{height:54.834000px;}
.h3{height:56.304000px;}
.h18{height:64.032000px;}
.h1a{height:67.728000px;}
.h1d{height:72.252000px;}
.h4{height:93.720000px;}
.h1b{height:94.704000px;}
.h1c{height:106.224000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:63.779550px;}
.x40{left:68.406450px;}
.x3{left:72.283500px;}
.x3f{left:76.535550px;}
.x2a{left:78.061800px;}
.x4{left:80.785350px;}
.x66{left:85.043550px;}
.x29{left:87.329850px;}
.x25{left:106.467300px;}
.x27{left:120.482250px;}
.x39{left:124.692893px;}
.x37{left:131.126259px;}
.x2b{left:134.502750px;}
.x34{left:135.507190px;}
.x2d{left:139.755900px;}
.x28{left:148.676240px;}
.x41{left:159.450450px;}
.x10{left:184.257750px;}
.x38{left:198.136496px;}
.x24{left:203.644350px;}
.x5c{left:218.586450px;}
.x43{left:222.426450px;}
.x64{left:226.193550px;}
.x3d{left:230.277180px;}
.x42{left:232.890450px;}
.x30{left:234.960127px;}
.x32{left:248.283150px;}
.x2c{left:251.141100px;}
.x3e{left:260.427586px;}
.x11{left:271.382400px;}
.x23{left:279.853500px;}
.x2e{left:281.818082px;}
.x44{left:290.778450px;}
.x65{left:294.245550px;}
.x62{left:296.381550px;}
.x55{left:301.434450px;}
.x56{left:306.018450px;}
.x5b{left:309.198450px;}
.x60{left:314.561550px;}
.x4c{left:317.190450px;}
.x45{left:319.518450px;}
.x61{left:324.845550px;}
.x54{left:326.502450px;}
.x2f{left:329.180144px;}
.x12{left:367.262250px;}
.x26{left:376.167750px;}
.x31{left:377.526415px;}
.x22{left:391.130400px;}
.x46{left:408.774450px;}
.x49{left:413.550450px;}
.x5{left:419.530050px;}
.x50{left:420.678450px;}
.x5d{left:422.526450px;}
.x53{left:424.782450px;}
.x48{left:434.046450px;}
.x47{left:437.850450px;}
.x36{left:439.519779px;}
.x35{left:451.510327px;}
.x13{left:453.997800px;}
.x21{left:462.162900px;}
.x6{left:467.744550px;}
.x1b{left:471.917250px;}
.x3b{left:478.816128px;}
.x4a{left:487.050450px;}
.x4e{left:488.454450px;}
.x4b{left:501.510450px;}
.x15{left:511.935300px;}
.x14{left:551.382150px;}
.xb{left:556.790250px;}
.x1a{left:563.654550px;}
.x17{left:580.608600px;}
.x18{left:584.918100px;}
.x16{left:597.293250px;}
.xa{left:607.421100px;}
.x8{left:616.577850px;}
.x3a{left:628.523934px;}
.x5f{left:632.478450px;}
.x58{left:636.030450px;}
.x57{left:640.998450px;}
.x63{left:646.829550px;}
.x51{left:649.926450px;}
.x4f{left:655.278450px;}
.x59{left:660.738450px;}
.x5a{left:663.438450px;}
.xf{left:667.331850px;}
.xd{left:669.681450px;}
.x4d{left:671.778450px;}
.x20{left:674.631150px;}
.x1c{left:679.243950px;}
.x52{left:681.834450px;}
.x1d{left:684.255450px;}
.x9{left:685.519350px;}
.xe{left:701.270700px;}
.x5e{left:712.158450px;}
.x19{left:713.449500px;}
.x3c{left:715.180200px;}
.x1e{left:733.290750px;}
.xc{left:739.255650px;}
.x1f{left:744.801300px;}
.x33{left:749.533643px;}
.x7{left:822.147000px;}
.x1{left:823.613100px;}
@media print{
.v4{vertical-align:-25.472000pt;}
.v3{vertical-align:-10.922667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.626667pt;}
.v1{vertical-align:15.984000pt;}
.v5{vertical-align:23.978667pt;}
.v6{vertical-align:47.957333pt;}
.v7{vertical-align:58.197333pt;}
.lsc{letter-spacing:-2.496000pt;}
.ls54{letter-spacing:-1.962667pt;}
.ls35{letter-spacing:-1.653333pt;}
.ls8{letter-spacing:-1.290667pt;}
.ls4e{letter-spacing:-1.280000pt;}
.ls3c{letter-spacing:-1.194667pt;}
.ls20{letter-spacing:-1.178667pt;}
.ls23{letter-spacing:-1.120000pt;}
.ls4d{letter-spacing:-1.109333pt;}
.ls2c{letter-spacing:-1.088000pt;}
.ls25{letter-spacing:-1.024000pt;}
.ls40{letter-spacing:-0.981333pt;}
.ls55{letter-spacing:-0.896000pt;}
.ls29{letter-spacing:-0.853333pt;}
.ls1a{letter-spacing:-0.800000pt;}
.ls24{letter-spacing:-0.704000pt;}
.ls51{letter-spacing:-0.640000pt;}
.ls45{letter-spacing:-0.597333pt;}
.ls9{letter-spacing:-0.586667pt;}
.ls22{letter-spacing:-0.576000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.ls27{letter-spacing:-0.426667pt;}
.ls3e{letter-spacing:-0.384000pt;}
.ls1f{letter-spacing:-0.373333pt;}
.ls56{letter-spacing:-0.341333pt;}
.ls2d{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.266667pt;}
.ls46{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.213333pt;}
.ls4b{letter-spacing:-0.170667pt;}
.ls1c{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:-0.106667pt;}
.ls44{letter-spacing:-0.085333pt;}
.lsf{letter-spacing:-0.053333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.053333pt;}
.ls48{letter-spacing:0.085333pt;}
.ls5{letter-spacing:0.106667pt;}
.ls28{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.160000pt;}
.ls37{letter-spacing:0.170667pt;}
.lsb{letter-spacing:0.192000pt;}
.ls50{letter-spacing:0.213333pt;}
.lsd{letter-spacing:0.240000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls53{letter-spacing:0.288000pt;}
.ls3f{letter-spacing:0.298667pt;}
.ls12{letter-spacing:0.320000pt;}
.ls38{letter-spacing:0.341333pt;}
.ls10{letter-spacing:0.373333pt;}
.ls3d{letter-spacing:0.384000pt;}
.ls3a{letter-spacing:0.426667pt;}
.ls41{letter-spacing:0.469333pt;}
.ls30{letter-spacing:0.512000pt;}
.lse{letter-spacing:0.522667pt;}
.ls57{letter-spacing:0.528000pt;}
.ls21{letter-spacing:0.533333pt;}
.ls39{letter-spacing:0.554667pt;}
.ls18{letter-spacing:0.586667pt;}
.ls4a{letter-spacing:0.597333pt;}
.ls3b{letter-spacing:0.640000pt;}
.ls52{letter-spacing:0.672000pt;}
.ls49{letter-spacing:0.682667pt;}
.ls16{letter-spacing:0.693333pt;}
.ls36{letter-spacing:0.725333pt;}
.ls47{letter-spacing:0.810667pt;}
.ls43{letter-spacing:0.853333pt;}
.lsa{letter-spacing:0.867504pt;}
.ls2f{letter-spacing:0.896000pt;}
.ls2b{letter-spacing:0.906667pt;}
.ls11{letter-spacing:0.960000pt;}
.ls26{letter-spacing:1.226667pt;}
.ls1d{letter-spacing:1.280000pt;}
.ls42{letter-spacing:1.408000pt;}
.ls4c{letter-spacing:2.346667pt;}
.ls0{letter-spacing:8.160000pt;}
.ls2{letter-spacing:12.330667pt;}
.ls4{letter-spacing:14.570667pt;}
.ls3{letter-spacing:14.666667pt;}
.ls1{letter-spacing:34.240000pt;}
.ls32{letter-spacing:91.306667pt;}
.ls31{letter-spacing:92.330667pt;}
.ls33{letter-spacing:120.533333pt;}
.ls34{letter-spacing:123.008000pt;}
.ls4f{letter-spacing:2187.644800pt;}
.ls2e{letter-spacing:2188.551467pt;}
.ls1e{letter-spacing:2189.412800pt;}
.ls2a{letter-spacing:2190.455467pt;}
.wsc{word-spacing:-15.738667pt;}
.ws2{word-spacing:-14.656000pt;}
.ws16d{word-spacing:-13.936000pt;}
.ws59{word-spacing:-13.866667pt;}
.ws5d{word-spacing:-13.493333pt;}
.ws5e{word-spacing:-13.312000pt;}
.ws5b{word-spacing:-12.864000pt;}
.ws11{word-spacing:-12.640000pt;}
.ws19f{word-spacing:-12.480000pt;}
.ws62{word-spacing:-12.373333pt;}
.wsb{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.266667pt;}
.ws16c{word-spacing:-12.213333pt;}
.wsa{word-spacing:-12.160000pt;}
.ws8{word-spacing:-12.053333pt;}
.ws9{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.946667pt;}
.ws1a0{word-spacing:-11.893333pt;}
.ws60{word-spacing:-11.840000pt;}
.wse{word-spacing:-11.786667pt;}
.ws7{word-spacing:-11.733333pt;}
.wsf{word-spacing:-11.680000pt;}
.ws58{word-spacing:-11.626667pt;}
.ws5f{word-spacing:-11.466667pt;}
.ws61{word-spacing:-11.413333pt;}
.ws5a{word-spacing:-11.146667pt;}
.ws4{word-spacing:-10.992000pt;}
.ws16e{word-spacing:-10.986667pt;}
.wsfc{word-spacing:-10.709333pt;}
.ws102{word-spacing:-10.453333pt;}
.ws127{word-spacing:-10.410667pt;}
.wsff{word-spacing:-10.368000pt;}
.wsfa{word-spacing:-10.346667pt;}
.wsfe{word-spacing:-10.325333pt;}
.ws101{word-spacing:-10.240000pt;}
.ws0{word-spacing:-10.200000pt;}
.ws100{word-spacing:-10.154667pt;}
.ws15a{word-spacing:-10.112000pt;}
.ws115{word-spacing:-10.069333pt;}
.wsfd{word-spacing:-9.984000pt;}
.ws11f{word-spacing:-9.941333pt;}
.ws118{word-spacing:-9.898667pt;}
.ws1d4{word-spacing:-9.728000pt;}
.ws129{word-spacing:-9.685333pt;}
.ws3{word-spacing:-7.163904pt;}
.wsf0{word-spacing:-5.440000pt;}
.wsd9{word-spacing:-4.906667pt;}
.ws165{word-spacing:-4.266667pt;}
.ws63{word-spacing:-4.138667pt;}
.ws1cd{word-spacing:-1.872000pt;}
.ws66{word-spacing:-1.546667pt;}
.wsc0{word-spacing:-1.445333pt;}
.ws56{word-spacing:-1.280000pt;}
.wsf5{word-spacing:-0.960000pt;}
.ws1ae{word-spacing:-0.853333pt;}
.ws1a9{word-spacing:-0.746667pt;}
.ws18f{word-spacing:-0.693333pt;}
.ws167{word-spacing:-0.597333pt;}
.ws28{word-spacing:-0.586667pt;}
.ws18{word-spacing:-0.522667pt;}
.ws15e{word-spacing:-0.426667pt;}
.ws162{word-spacing:-0.384000pt;}
.ws16a{word-spacing:-0.341333pt;}
.ws160{word-spacing:-0.298667pt;}
.ws17{word-spacing:-0.240000pt;}
.ws15{word-spacing:-0.192000pt;}
.ws47{word-spacing:-0.053333pt;}
.ws1{word-spacing:-0.045333pt;}
.ws12{word-spacing:0.000000pt;}
.ws1d8{word-spacing:0.085333pt;}
.ws99{word-spacing:0.106667pt;}
.ws17a{word-spacing:0.160000pt;}
.ws1dc{word-spacing:0.170667pt;}
.ws18d{word-spacing:0.213333pt;}
.ws19e{word-spacing:0.266667pt;}
.wsf4{word-spacing:0.320000pt;}
.ws1dd{word-spacing:0.341333pt;}
.ws1d7{word-spacing:0.384000pt;}
.ws19d{word-spacing:0.480000pt;}
.wsc9{word-spacing:0.533333pt;}
.ws14{word-spacing:0.586667pt;}
.wsa5{word-spacing:0.640000pt;}
.ws1e1{word-spacing:0.672000pt;}
.wsea{word-spacing:0.693333pt;}
.ws1f{word-spacing:0.746667pt;}
.ws27{word-spacing:0.853333pt;}
.ws1d9{word-spacing:0.896000pt;}
.ws2a{word-spacing:0.906667pt;}
.wsda{word-spacing:0.960000pt;}
.wseb{word-spacing:1.013333pt;}
.wsa9{word-spacing:1.066667pt;}
.ws1e0{word-spacing:1.104000pt;}
.ws1b9{word-spacing:1.120000pt;}
.ws82{word-spacing:1.173333pt;}
.ws1d3{word-spacing:1.194667pt;}
.ws13{word-spacing:1.290667pt;}
.wsbf{word-spacing:1.317333pt;}
.ws1d6{word-spacing:1.322667pt;}
.ws1a2{word-spacing:1.333333pt;}
.ws166{word-spacing:1.365333pt;}
.ws2d{word-spacing:1.386667pt;}
.ws164{word-spacing:1.408000pt;}
.ws163{word-spacing:1.450667pt;}
.ws1c4{word-spacing:1.488000pt;}
.ws161{word-spacing:1.493333pt;}
.ws15f{word-spacing:1.536000pt;}
.wsa1{word-spacing:1.546667pt;}
.ws168{word-spacing:1.578667pt;}
.ws17d{word-spacing:1.600000pt;}
.ws15d{word-spacing:1.621333pt;}
.ws1e4{word-spacing:1.632000pt;}
.ws93{word-spacing:1.653333pt;}
.ws1da{word-spacing:1.664000pt;}
.ws9e{word-spacing:1.706667pt;}
.ws187{word-spacing:1.760000pt;}
.ws1d5{word-spacing:1.834667pt;}
.ws69{word-spacing:1.866667pt;}
.ws74{word-spacing:1.920000pt;}
.ws15c{word-spacing:1.962667pt;}
.ws1a3{word-spacing:1.973333pt;}
.ws1db{word-spacing:2.005333pt;}
.ws1be{word-spacing:2.016000pt;}
.ws183{word-spacing:2.080000pt;}
.ws169{word-spacing:2.090667pt;}
.ws34{word-spacing:2.133333pt;}
.ws1c3{word-spacing:2.160000pt;}
.ws98{word-spacing:2.186667pt;}
.wsb6{word-spacing:2.240000pt;}
.ws1c5{word-spacing:2.256000pt;}
.ws4c{word-spacing:2.293333pt;}
.ws10{word-spacing:2.320000pt;}
.wsbe{word-spacing:2.346667pt;}
.ws20{word-spacing:2.400000pt;}
.ws8a{word-spacing:2.453333pt;}
.ws16{word-spacing:2.496000pt;}
.ws191{word-spacing:2.506667pt;}
.ws1b8{word-spacing:2.560000pt;}
.ws1de{word-spacing:2.592000pt;}
.wsaf{word-spacing:2.613333pt;}
.wsab{word-spacing:2.624000pt;}
.ws31{word-spacing:2.666667pt;}
.wsba{word-spacing:2.720000pt;}
.ws6a{word-spacing:2.752000pt;}
.wsbd{word-spacing:2.773333pt;}
.ws15b{word-spacing:2.826667pt;}
.wsbb{word-spacing:2.880000pt;}
.wsde{word-spacing:2.986667pt;}
.wse3{word-spacing:3.040000pt;}
.wsbc{word-spacing:3.050667pt;}
.ws199{word-spacing:3.093333pt;}
.ws17b{word-spacing:3.253333pt;}
.wsd5{word-spacing:3.306667pt;}
.ws75{word-spacing:3.328000pt;}
.ws181{word-spacing:3.360000pt;}
.ws26{word-spacing:3.413333pt;}
.ws8b{word-spacing:3.456000pt;}
.ws87{word-spacing:3.466667pt;}
.ws184{word-spacing:3.520000pt;}
.ws1e2{word-spacing:3.552000pt;}
.ws46{word-spacing:3.573333pt;}
.ws182{word-spacing:3.626667pt;}
.ws195{word-spacing:3.680000pt;}
.wsaa{word-spacing:3.733333pt;}
.ws19a{word-spacing:3.786667pt;}
.ws38{word-spacing:3.840000pt;}
.ws1d1{word-spacing:3.888000pt;}
.ws198{word-spacing:3.893333pt;}
.ws194{word-spacing:3.946667pt;}
.ws5c{word-spacing:3.984000pt;}
.ws177{word-spacing:4.000000pt;}
.ws175{word-spacing:4.053333pt;}
.ws1b3{word-spacing:4.106667pt;}
.ws193{word-spacing:4.213333pt;}
.ws9a{word-spacing:4.266667pt;}
.ws1c7{word-spacing:4.272000pt;}
.ws9c{word-spacing:4.373333pt;}
.ws2b{word-spacing:4.480000pt;}
.ws95{word-spacing:4.533333pt;}
.ws35{word-spacing:4.586667pt;}
.ws55{word-spacing:4.693333pt;}
.ws1ab{word-spacing:4.746667pt;}
.ws54{word-spacing:4.853333pt;}
.ws65{word-spacing:4.960000pt;}
.wsb0{word-spacing:5.066667pt;}
.ws1e3{word-spacing:5.088000pt;}
.ws1a5{word-spacing:5.120000pt;}
.wsd0{word-spacing:5.173333pt;}
.ws97{word-spacing:5.226667pt;}
.ws57{word-spacing:5.280000pt;}
.ws49{word-spacing:5.333333pt;}
.wsee{word-spacing:5.386667pt;}
.ws1b7{word-spacing:5.440000pt;}
.ws96{word-spacing:5.493333pt;}
.ws16b{word-spacing:5.541333pt;}
.ws1bf{word-spacing:5.568000pt;}
.ws39{word-spacing:5.653333pt;}
.ws81{word-spacing:5.706667pt;}
.wsc6{word-spacing:5.813333pt;}
.ws18c{word-spacing:5.920000pt;}
.wsec{word-spacing:5.973333pt;}
.ws1ca{word-spacing:6.000000pt;}
.ws1bd{word-spacing:6.048000pt;}
.ws6f{word-spacing:6.080000pt;}
.ws6d{word-spacing:6.133333pt;}
.ws33{word-spacing:6.240000pt;}
.wsf7{word-spacing:6.293333pt;}
.ws1ce{word-spacing:6.336000pt;}
.ws7c{word-spacing:6.400000pt;}
.ws86{word-spacing:6.453333pt;}
.ws17f{word-spacing:6.560000pt;}
.ws30{word-spacing:6.613333pt;}
.ws2c{word-spacing:6.666667pt;}
.ws7e{word-spacing:6.773333pt;}
.ws45{word-spacing:6.826667pt;}
.wsc7{word-spacing:6.880000pt;}
.ws1aa{word-spacing:6.933333pt;}
.ws185{word-spacing:6.986667pt;}
.ws1c{word-spacing:7.040000pt;}
.ws171{word-spacing:7.093333pt;}
.wsdc{word-spacing:7.146667pt;}
.wsb1{word-spacing:7.200000pt;}
.ws1cc{word-spacing:7.248000pt;}
.ws89{word-spacing:7.306667pt;}
.ws1a6{word-spacing:7.360000pt;}
.ws192{word-spacing:7.413333pt;}
.ws3b{word-spacing:7.466667pt;}
.wsd1{word-spacing:7.520000pt;}
.ws2f{word-spacing:7.573333pt;}
.ws1b{word-spacing:7.626667pt;}
.ws1df{word-spacing:7.680000pt;}
.ws172{word-spacing:7.733333pt;}
.ws18a{word-spacing:7.786667pt;}
.ws178{word-spacing:7.840000pt;}
.ws6c{word-spacing:7.946667pt;}
.ws1a{word-spacing:8.000000pt;}
.ws1d2{word-spacing:8.064000pt;}
.wsb9{word-spacing:8.106667pt;}
.wsa4{word-spacing:8.160000pt;}
.ws3f{word-spacing:8.213333pt;}
.wse9{word-spacing:8.266667pt;}
.ws80{word-spacing:8.320000pt;}
.ws1bb{word-spacing:8.373333pt;}
.ws1cf{word-spacing:8.400000pt;}
.ws44{word-spacing:8.426667pt;}
.ws4e{word-spacing:8.480000pt;}
.ws1c0{word-spacing:8.496000pt;}
.ws1af{word-spacing:8.533333pt;}
.ws190{word-spacing:8.586667pt;}
.ws67{word-spacing:8.640000pt;}
.ws4d{word-spacing:8.693333pt;}
.ws3e{word-spacing:8.800000pt;}
.ws1c2{word-spacing:8.832000pt;}
.ws180{word-spacing:8.906667pt;}
.ws19b{word-spacing:9.013333pt;}
.ws2e{word-spacing:9.066667pt;}
.wscb{word-spacing:9.120000pt;}
.ws18b{word-spacing:9.173333pt;}
.wsca{word-spacing:9.226667pt;}
.wsb2{word-spacing:9.333333pt;}
.wse0{word-spacing:9.493333pt;}
.ws1c8{word-spacing:9.504000pt;}
.ws186{word-spacing:9.600000pt;}
.ws6e{word-spacing:9.653333pt;}
.wsed{word-spacing:9.706667pt;}
.ws94{word-spacing:9.760000pt;}
.ws1b6{word-spacing:9.813333pt;}
.ws1b0{word-spacing:9.866667pt;}
.ws32{word-spacing:9.920000pt;}
.ws1ba{word-spacing:9.973333pt;}
.wse2{word-spacing:10.080000pt;}
.ws188{word-spacing:10.240000pt;}
.ws71{word-spacing:10.293333pt;}
.wse4{word-spacing:10.400000pt;}
.ws4f{word-spacing:10.560000pt;}
.ws18e{word-spacing:10.613333pt;}
.ws4b{word-spacing:10.666667pt;}
.ws1c6{word-spacing:10.704000pt;}
.wsd7{word-spacing:10.826667pt;}
.ws196{word-spacing:11.040000pt;}
.ws1a7{word-spacing:11.146667pt;}
.wsdb{word-spacing:11.200000pt;}
.ws1d0{word-spacing:11.232000pt;}
.ws197{word-spacing:11.253333pt;}
.wsb3{word-spacing:11.413333pt;}
.ws4a{word-spacing:11.466667pt;}
.wse6{word-spacing:11.520000pt;}
.ws189{word-spacing:11.573333pt;}
.ws1a8{word-spacing:11.626667pt;}
.wscc{word-spacing:11.786667pt;}
.ws173{word-spacing:11.840000pt;}
.ws48{word-spacing:11.893333pt;}
.ws25{word-spacing:12.053333pt;}
.ws17e{word-spacing:12.106667pt;}
.wsef{word-spacing:12.160000pt;}
.wse8{word-spacing:12.213333pt;}
.ws174{word-spacing:12.266667pt;}
.wse7{word-spacing:12.426667pt;}
.ws7d{word-spacing:12.480000pt;}
.wscf{word-spacing:12.693333pt;}
.ws1c9{word-spacing:12.864000pt;}
.ws176{word-spacing:12.906667pt;}
.ws3d{word-spacing:12.960000pt;}
.wscd{word-spacing:13.013333pt;}
.ws1ac{word-spacing:13.120000pt;}
.ws1b1{word-spacing:13.173333pt;}
.ws1b5{word-spacing:13.226667pt;}
.wsce{word-spacing:13.280000pt;}
.ws3c{word-spacing:13.440000pt;}
.ws1c1{word-spacing:13.488000pt;}
.ws43{word-spacing:13.493333pt;}
.wsa0{word-spacing:13.546667pt;}
.ws88{word-spacing:13.600000pt;}
.ws1b4{word-spacing:13.706667pt;}
.ws8c{word-spacing:13.760000pt;}
.ws51{word-spacing:13.866667pt;}
.wsd2{word-spacing:13.973333pt;}
.ws53{word-spacing:14.080000pt;}
.ws73{word-spacing:14.133333pt;}
.ws50{word-spacing:14.240000pt;}
.ws7a{word-spacing:14.293333pt;}
.ws29{word-spacing:14.346667pt;}
.ws52{word-spacing:14.400000pt;}
.wsa2{word-spacing:14.453333pt;}
.wsd4{word-spacing:14.506667pt;}
.ws36{word-spacing:14.560000pt;}
.ws64{word-spacing:14.613333pt;}
.ws1cb{word-spacing:14.688000pt;}
.wse1{word-spacing:14.933333pt;}
.ws85{word-spacing:15.146667pt;}
.ws7f{word-spacing:15.200000pt;}
.ws37{word-spacing:15.360000pt;}
.ws9f{word-spacing:15.413333pt;}
.ws7b{word-spacing:15.520000pt;}
.ws1bc{word-spacing:15.573333pt;}
.wsf8{word-spacing:15.626667pt;}
.wsb5{word-spacing:15.733333pt;}
.ws21{word-spacing:15.893333pt;}
.ws8f{word-spacing:15.946667pt;}
.wsf9{word-spacing:16.213333pt;}
.ws90{word-spacing:16.266667pt;}
.wsdf{word-spacing:16.373333pt;}
.wsf6{word-spacing:16.426667pt;}
.wse5{word-spacing:16.533333pt;}
.ws22{word-spacing:16.640000pt;}
.ws17c{word-spacing:16.853333pt;}
.ws1ad{word-spacing:17.013333pt;}
.wsac{word-spacing:17.173333pt;}
.wsd8{word-spacing:17.280000pt;}
.ws40{word-spacing:17.493333pt;}
.ws170{word-spacing:17.546667pt;}
.ws16f{word-spacing:17.653333pt;}
.ws19c{word-spacing:17.706667pt;}
.ws9b{word-spacing:17.760000pt;}
.wsa3{word-spacing:17.973333pt;}
.wsd6{word-spacing:18.026667pt;}
.ws1a4{word-spacing:18.186667pt;}
.wsad{word-spacing:18.293333pt;}
.ws79{word-spacing:18.400000pt;}
.wsae{word-spacing:18.560000pt;}
.ws83{word-spacing:18.613333pt;}
.ws1b2{word-spacing:18.666667pt;}
.wsa6{word-spacing:18.826667pt;}
.ws6b{word-spacing:19.040000pt;}
.ws68{word-spacing:19.093333pt;}
.ws1a1{word-spacing:19.146667pt;}
.wsc8{word-spacing:19.200000pt;}
.wsa7{word-spacing:19.626667pt;}
.ws8e{word-spacing:20.106667pt;}
.ws84{word-spacing:21.280000pt;}
.ws92{word-spacing:21.440000pt;}
.ws6{word-spacing:21.504000pt;}
.ws72{word-spacing:21.866667pt;}
.ws179{word-spacing:22.133333pt;}
.ws77{word-spacing:22.560000pt;}
.ws24{word-spacing:22.720000pt;}
.ws78{word-spacing:22.773333pt;}
.ws23{word-spacing:23.040000pt;}
.ws70{word-spacing:23.840000pt;}
.wsd3{word-spacing:24.213333pt;}
.wsdd{word-spacing:24.533333pt;}
.wsb4{word-spacing:25.226667pt;}
.ws42{word-spacing:25.760000pt;}
.ws41{word-spacing:25.973333pt;}
.ws19{word-spacing:26.666667pt;}
.ws3a{word-spacing:28.106667pt;}
.wsb7{word-spacing:28.320000pt;}
.ws9d{word-spacing:28.640000pt;}
.ws76{word-spacing:30.293333pt;}
.wsa8{word-spacing:30.826667pt;}
.ws8d{word-spacing:31.520000pt;}
.ws1d{word-spacing:33.173333pt;}
.ws1e{word-spacing:33.493333pt;}
.ws91{word-spacing:35.360000pt;}
.wsb8{word-spacing:49.280000pt;}
.ws13e{word-spacing:54.152533pt;}
.ws10c{word-spacing:65.762133pt;}
.ws12a{word-spacing:71.347200pt;}
.wsfb{word-spacing:71.893333pt;}
.ws12b{word-spacing:72.908800pt;}
.ws139{word-spacing:72.951467pt;}
.ws145{word-spacing:73.719467pt;}
.ws149{word-spacing:74.146133pt;}
.ws106{word-spacing:74.555733pt;}
.ws128{word-spacing:75.366400pt;}
.ws13d{word-spacing:76.316800pt;}
.ws150{word-spacing:76.876800pt;}
.ws13b{word-spacing:76.902400pt;}
.ws10a{word-spacing:77.457067pt;}
.ws112{word-spacing:82.133333pt;}
.ws11d{word-spacing:82.730667pt;}
.ws141{word-spacing:82.918400pt;}
.ws113{word-spacing:83.251200pt;}
.ws11e{word-spacing:84.061867pt;}
.ws10d{word-spacing:85.836800pt;}
.wsc1{word-spacing:86.216000pt;}
.ws107{word-spacing:88.857600pt;}
.ws157{word-spacing:91.434667pt;}
.ws146{word-spacing:92.245333pt;}
.ws137{word-spacing:92.416000pt;}
.ws14d{word-spacing:92.757333pt;}
.ws12f{word-spacing:92.949333pt;}
.ws13a{word-spacing:95.701333pt;}
.ws140{word-spacing:95.957333pt;}
.ws110{word-spacing:97.322667pt;}
.ws151{word-spacing:97.472000pt;}
.ws124{word-spacing:98.807467pt;}
.ws14a{word-spacing:99.114667pt;}
.ws132{word-spacing:99.370667pt;}
.ws111{word-spacing:103.402667pt;}
.ws12e{word-spacing:103.854933pt;}
.ws104{word-spacing:110.549333pt;}
.ws14b{word-spacing:110.882133pt;}
.ws105{word-spacing:114.176000pt;}
.ws144{word-spacing:114.461867pt;}
.ws126{word-spacing:116.369067pt;}
.ws136{word-spacing:116.940800pt;}
.ws147{word-spacing:117.329067pt;}
.ws152{word-spacing:117.674667pt;}
.ws143{word-spacing:124.821333pt;}
.ws12d{word-spacing:124.902400pt;}
.ws159{word-spacing:126.361600pt;}
.ws120{word-spacing:126.502400pt;}
.ws158{word-spacing:128.708267pt;}
.ws119{word-spacing:128.951467pt;}
.ws116{word-spacing:129.642667pt;}
.ws148{word-spacing:133.175467pt;}
.ws117{word-spacing:136.328533pt;}
.ws133{word-spacing:136.806400pt;}
.ws123{word-spacing:137.122133pt;}
.ws134{word-spacing:137.207467pt;}
.ws125{word-spacing:138.043733pt;}
.ws155{word-spacing:138.598400pt;}
.ws14f{word-spacing:138.709333pt;}
.ws11c{word-spacing:139.502933pt;}
.ws135{word-spacing:140.151467pt;}
.ws114{word-spacing:140.262400pt;}
.ws11a{word-spacing:141.201067pt;}
.wsc3{word-spacing:141.525333pt;}
.wsc4{word-spacing:142.080000pt;}
.wsc2{word-spacing:142.250667pt;}
.ws13c{word-spacing:142.647467pt;}
.wsc5{word-spacing:144.341333pt;}
.ws138{word-spacing:145.203200pt;}
.ws14c{word-spacing:146.107733pt;}
.ws13f{word-spacing:146.688000pt;}
.ws108{word-spacing:148.172800pt;}
.ws142{word-spacing:148.599467pt;}
.ws10e{word-spacing:150.289067pt;}
.ws10f{word-spacing:150.459733pt;}
.ws11b{word-spacing:151.739733pt;}
.ws131{word-spacing:161.988267pt;}
.ws10b{word-spacing:161.992533pt;}
.ws14e{word-spacing:163.042133pt;}
.ws130{word-spacing:163.430400pt;}
.wsf3{word-spacing:164.096000pt;}
.ws122{word-spacing:178.470400pt;}
.ws156{word-spacing:189.687467pt;}
.ws12c{word-spacing:193.254400pt;}
.ws103{word-spacing:193.527467pt;}
.ws121{word-spacing:200.738133pt;}
.ws153{word-spacing:239.859200pt;}
.ws154{word-spacing:247.573333pt;}
.wsf2{word-spacing:303.829333pt;}
.ws109{word-spacing:339.575467pt;}
.wsf1{word-spacing:355.328000pt;}
._0{margin-left:-2721.259733pt;}
._18{margin-left:-54.590933pt;}
._15{margin-left:-26.679467pt;}
._13{margin-left:-24.573867pt;}
._1e{margin-left:-22.779733pt;}
._1d{margin-left:-21.772800pt;}
._1b{margin-left:-19.594667pt;}
._e{margin-left:-17.248000pt;}
._20{margin-left:-15.566933pt;}
._10{margin-left:-14.058667pt;}
._11{margin-left:-12.759467pt;}
._14{margin-left:-11.854933pt;}
._1f{margin-left:-10.566400pt;}
._16{margin-left:-9.546667pt;}
._12{margin-left:-8.360533pt;}
._4{margin-left:-7.133867pt;}
._8{margin-left:-6.123733pt;}
._26{margin-left:-5.214933pt;}
._17{margin-left:-4.277333pt;}
._5{margin-left:-2.769067pt;}
._2{margin-left:-1.868800pt;}
._1{margin-left:-0.906667pt;}
._7{width:1.019733pt;}
._3{width:2.201600pt;}
._6{width:3.250133pt;}
._1a{width:4.173867pt;}
._f{width:5.186133pt;}
._38{width:6.090667pt;}
._b{width:7.620267pt;}
._a{width:9.120000pt;}
._1c{width:10.294400pt;}
._37{width:12.044800pt;}
._3d{width:12.974933pt;}
._9{width:13.908267pt;}
._c{width:14.886400pt;}
._3e{width:16.789333pt;}
._19{width:18.976000pt;}
._d{width:23.673600pt;}
._3b{width:28.505600pt;}
._3a{width:29.952000pt;}
._3c{width:31.193600pt;}
._39{width:34.094933pt;}
._2c{width:80.106667pt;}
._2a{width:83.419733pt;}
._36{width:94.254933pt;}
._21{width:95.922667pt;}
._22{width:96.858667pt;}
._33{width:116.906667pt;}
._2e{width:121.472000pt;}
._2b{width:122.538667pt;}
._2d{width:123.648000pt;}
._2f{width:124.757333pt;}
._29{width:127.701333pt;}
._34{width:132.420267pt;}
._23{width:144.810667pt;}
._24{width:146.602667pt;}
._25{width:150.656000pt;}
._31{width:151.637333pt;}
._30{width:196.074667pt;}
._32{width:200.934400pt;}
._35{width:216.806400pt;}
._27{width:302.421333pt;}
._28{width:1636.096000pt;}
.fs4{font-size:27.984000pt;}
.fs9{font-size:34.666667pt;}
.fs6{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:31.139733pt;}
.y135{bottom:69.315733pt;}
.y18c{bottom:75.366267pt;}
.y37{bottom:77.606267pt;}
.y134{bottom:79.982400pt;}
.y18b{bottom:86.032933pt;}
.y133{bottom:90.649067pt;}
.y88{bottom:91.103333pt;}
.y36{bottom:93.606267pt;}
.y18a{bottom:96.699600pt;}
.y132{bottom:101.315733pt;}
.y87{bottom:101.770000pt;}
.y189{bottom:107.366267pt;}
.y35{bottom:109.606267pt;}
.y131{bottom:111.982400pt;}
.y188{bottom:121.808933pt;}
.y34{bottom:125.606267pt;}
.y130{bottom:126.425067pt;}
.y86{bottom:130.666000pt;}
.y187{bottom:132.475600pt;}
.y12f{bottom:137.091733pt;}
.y1d5{bottom:139.309200pt;}
.y33{bottom:141.606267pt;}
.y186{bottom:143.142267pt;}
.y12e{bottom:147.758400pt;}
.y1d4{bottom:152.641200pt;}
.y185{bottom:153.808933pt;}
.y32{bottom:157.606267pt;}
.y12d{bottom:158.425067pt;}
.y10e{bottom:159.307600pt;}
.y184{bottom:164.475600pt;}
.y12c{bottom:169.091733pt;}
.y10d{bottom:169.974267pt;}
.y31{bottom:173.606267pt;}
.y183{bottom:175.142267pt;}
.y1d3{bottom:179.305200pt;}
.y182{bottom:185.808933pt;}
.y12b{bottom:187.317600pt;}
.y30{bottom:189.606267pt;}
.y1d2{bottom:192.637200pt;}
.y7c{bottom:194.945067pt;}
.y10c{bottom:200.171600pt;}
.y10a{bottom:200.182267pt;}
.y181{bottom:200.251600pt;}
.y2f{bottom:205.606267pt;}
.y109{bottom:206.187600pt;}
.y180{bottom:210.918267pt;}
.y10b{bottom:212.182267pt;}
.y1d1{bottom:219.301200pt;}
.y17f{bottom:221.584933pt;}
.y2e{bottom:221.606267pt;}
.y108{bottom:229.302267pt;}
.y17e{bottom:232.251600pt;}
.y1d0{bottom:232.633200pt;}
.y12a{bottom:233.575067pt;}
.y107{bottom:235.307600pt;}
.y61{bottom:236.995867pt;}
.y2d{bottom:237.606267pt;}
.y17d{bottom:242.918267pt;}
.y1cf{bottom:245.965200pt;}
.y129{bottom:246.907067pt;}
.y2c{bottom:253.606267pt;}
.y17c{bottom:257.360933pt;}
.y106{bottom:258.422267pt;}
.y104{bottom:258.432933pt;}
.y1ce{bottom:259.297200pt;}
.y128{bottom:260.239067pt;}
.y103{bottom:264.438267pt;}
.y17b{bottom:268.027600pt;}
.y2b{bottom:269.606267pt;}
.y105{bottom:270.432933pt;}
.y1cd{bottom:272.629200pt;}
.y127{bottom:273.571067pt;}
.y17a{bottom:278.694267pt;}
.y2a{bottom:285.606267pt;}
.y126{bottom:286.903067pt;}
.y102{bottom:287.552933pt;}
.y179{bottom:289.360933pt;}
.y7b{bottom:290.023200pt;}
.y1cc{bottom:293.521600pt;}
.yfe{bottom:293.558267pt;}
.y101{bottom:299.552933pt;}
.yfd{bottom:299.563600pt;}
.y178{bottom:300.027600pt;}
.y125{bottom:300.235067pt;}
.y29{bottom:301.606267pt;}
.yff{bottom:305.558267pt;}
.y177{bottom:310.694267pt;}
.y100{bottom:311.552933pt;}
.y124{bottom:313.567067pt;}
.y28{bottom:317.606267pt;}
.y176{bottom:325.136933pt;}
.y123{bottom:326.899067pt;}
.yfc{bottom:328.672933pt;}
.yfb{bottom:328.683600pt;}
.y27{bottom:333.606267pt;}
.yfa{bottom:334.688933pt;}
.y175{bottom:335.803600pt;}
.y62{bottom:339.743333pt;}
.y122{bottom:340.231067pt;}
.y1cb{bottom:343.576133pt;}
.y174{bottom:346.470267pt;}
.y26{bottom:349.606267pt;}
.y121{bottom:353.563067pt;}
.y1ca{bottom:354.242800pt;}
.y173{bottom:357.136933pt;}
.yf9{bottom:357.803600pt;}
.yf8{bottom:357.814267pt;}
.yb5{bottom:362.679733pt;}
.yf7{bottom:363.819600pt;}
.y1c9{bottom:364.909467pt;}
.y25{bottom:365.606267pt;}
.y120{bottom:366.895067pt;}
.y172{bottom:367.803600pt;}
.y1c8{bottom:375.576133pt;}
.y11f{bottom:380.227067pt;}
.y24{bottom:381.606267pt;}
.y171{bottom:382.246267pt;}
.y1c7{bottom:386.242800pt;}
.yf6{bottom:386.934267pt;}
.yb4{bottom:391.575733pt;}
.y170{bottom:392.912933pt;}
.yf3{bottom:392.939600pt;}
.y11e{bottom:393.559067pt;}
.y23{bottom:397.606267pt;}
.yf2{bottom:397.939600pt;}
.yf5{bottom:398.934267pt;}
.y7a{bottom:399.171600pt;}
.y1c6{bottom:400.685467pt;}
.yb3{bottom:402.242400pt;}
.y16f{bottom:403.579600pt;}
.y11d{bottom:406.891067pt;}
.yf4{bottom:410.934267pt;}
.y1c5{bottom:411.352133pt;}
.y22{bottom:413.606267pt;}
.y16e{bottom:414.246267pt;}
.y11c{bottom:420.223067pt;}
.y1c4{bottom:422.018800pt;}
.y16d{bottom:424.912933pt;}
.yf1{bottom:427.937467pt;}
.y21{bottom:429.606267pt;}
.yb2{bottom:431.138400pt;}
.y1c3{bottom:432.685467pt;}
.y11b{bottom:433.555067pt;}
.yee{bottom:433.942800pt;}
.y16c{bottom:435.579600pt;}
.yf0{bottom:439.937467pt;}
.yed{bottom:439.948133pt;}
.y1c2{bottom:443.352133pt;}
.y20{bottom:445.606267pt;}
.y11a{bottom:446.887067pt;}
.y16b{bottom:450.022267pt;}
.yef{bottom:451.937467pt;}
.y1c1{bottom:454.018800pt;}
.y16a{bottom:460.688933pt;}
.y1f{bottom:461.606267pt;}
.y119{bottom:467.779467pt;}
.y1c0{bottom:468.461467pt;}
.y63{bottom:468.559067pt;}
.yeb{bottom:469.068133pt;}
.y169{bottom:471.355600pt;}
.yec{bottom:475.062800pt;}
.ye8{bottom:475.073467pt;}
.y1e{bottom:477.606267pt;}
.y1bf{bottom:479.128133pt;}
.yea{bottom:481.068133pt;}
.ye7{bottom:481.078800pt;}
.y168{bottom:482.022267pt;}
.ya6{bottom:485.194667pt;}
.y1be{bottom:489.794800pt;}
.yaf{bottom:490.047333pt;}
.y167{bottom:492.688933pt;}
.ye9{bottom:493.068133pt;}
.y1d{bottom:493.606267pt;}
.y1bd{bottom:500.461467pt;}
.y166{bottom:507.131600pt;}
.y1c{bottom:509.606267pt;}
.ye6{bottom:510.198800pt;}
.yae{bottom:510.964667pt;}
.y118{bottom:514.015600pt;}
.y1bc{bottom:514.904133pt;}
.ye5{bottom:516.204133pt;}
.y165{bottom:517.798267pt;}
.y1bb{bottom:525.570800pt;}
.y1b{bottom:525.606267pt;}
.y164{bottom:528.464933pt;}
.yad{bottom:530.975333pt;}
.y1ba{bottom:536.237467pt;}
.y117{bottom:537.574800pt;}
.y163{bottom:539.131600pt;}
.ye4{bottom:539.318800pt;}
.y1a{bottom:541.606267pt;}
.y79{bottom:545.623467pt;}
.y1b9{bottom:546.904133pt;}
.yac{bottom:547.040000pt;}
.y162{bottom:549.798267pt;}
.ye2{bottom:551.318800pt;}
.y77{bottom:556.357867pt;}
.y1b8{bottom:557.570800pt;}
.y19{bottom:557.606267pt;}
.y161{bottom:560.464933pt;}
.ye3{bottom:563.318800pt;}
.y1b7{bottom:568.237467pt;}
.yb1{bottom:569.514000pt;}
.ya8{bottom:569.536000pt;}
.y64{bottom:570.194400pt;}
.y160{bottom:571.131600pt;}
.y52{bottom:573.606267pt;}
.ye1{bottom:580.428133pt;}
.y1b6{bottom:582.680133pt;}
.y116{bottom:583.821600pt;}
.y15f{bottom:585.574267pt;}
.y51{bottom:589.606267pt;}
.ydf{bottom:592.428133pt;}
.y1b5{bottom:593.346800pt;}
.y15e{bottom:596.240933pt;}
.y115{bottom:599.817600pt;}
.y1b4{bottom:604.013467pt;}
.ye0{bottom:604.428133pt;}
.y6e{bottom:604.664800pt;}
.y50{bottom:605.606267pt;}
.y15d{bottom:606.907600pt;}
.yab{bottom:611.829333pt;}
.y78{bottom:613.099333pt;}
.y114{bottom:613.149600pt;}
.y1b3{bottom:614.680133pt;}
.y15c{bottom:617.574267pt;}
.y6d{bottom:619.233467pt;}
.ydd{bottom:621.548133pt;}
.y4f{bottom:621.606267pt;}
.y1b2{bottom:625.346800pt;}
.y113{bottom:626.481600pt;}
.yde{bottom:627.542800pt;}
.yda{bottom:627.553467pt;}
.yaa{bottom:627.968000pt;}
.y60{bottom:628.003733pt;}
.y15b{bottom:628.240933pt;}
.ydc{bottom:633.548133pt;}
.yd9{bottom:633.558800pt;}
.y4e{bottom:637.606267pt;}
.y15a{bottom:638.907600pt;}
.y1b1{bottom:639.789467pt;}
.y112{bottom:639.813600pt;}
.ydb{bottom:645.548133pt;}
.y65{bottom:647.590267pt;}
.y1b0{bottom:650.456133pt;}
.y111{bottom:653.145600pt;}
.y159{bottom:653.350267pt;}
.y4d{bottom:653.606267pt;}
.y76{bottom:655.007600pt;}
.y59{bottom:655.141067pt;}
.y18{bottom:655.502000pt;}
.y9a{bottom:660.852000pt;}
.y1af{bottom:661.122800pt;}
.yd8{bottom:662.668133pt;}
.y158{bottom:664.016933pt;}
.y110{bottom:666.477600pt;}
.y4c{bottom:669.606267pt;}
.y1ae{bottom:671.789467pt;}
.ya7{bottom:673.664000pt;}
.yd6{bottom:674.668133pt;}
.y157{bottom:674.683600pt;}
.y17{bottom:676.175333pt;}
.ya5{bottom:678.890667pt;}
.y1ad{bottom:682.456133pt;}
.y69{bottom:683.952533pt;}
.y5f{bottom:684.082667pt;}
.y156{bottom:685.350267pt;}
.y16{bottom:685.508667pt;}
.y4b{bottom:685.606267pt;}
.yd7{bottom:686.668133pt;}
.y10f{bottom:687.366267pt;}
.y99{bottom:689.748000pt;}
.ya9{bottom:692.085333pt;}
.y1ac{bottom:693.122800pt;}
.y68{bottom:693.295200pt;}
.y15{bottom:694.842000pt;}
.y155{bottom:696.016933pt;}
.y4a{bottom:701.606267pt;}
.y67{bottom:702.637867pt;}
.yd5{bottom:703.777467pt;}
.y14{bottom:704.175333pt;}
.yd4{bottom:706.337467pt;}
.yd3{bottom:706.348133pt;}
.y91{bottom:706.406533pt;}
.y154{bottom:706.683600pt;}
.y1ab{bottom:707.565467pt;}
.y6c{bottom:711.989200pt;}
.ya3{bottom:712.042667pt;}
.yd2{bottom:712.353467pt;}
.y153{bottom:717.350267pt;}
.y55{bottom:717.606267pt;}
.y1aa{bottom:718.232133pt;}
.y6b{bottom:721.331867pt;}
.y90{bottom:727.428667pt;}
.y1a9{bottom:728.898800pt;}
.y6a{bottom:730.674533pt;}
.y152{bottom:731.792933pt;}
.y49{bottom:733.606267pt;}
.y5c{bottom:734.476400pt;}
.yd0{bottom:738.038800pt;}
.y1a8{bottom:739.565467pt;}
.y13{bottom:739.964400pt;}
.y151{bottom:742.459600pt;}
.y5a{bottom:743.508933pt;}
.yd1{bottom:744.033467pt;}
.ycd{bottom:744.044133pt;}
.y71{bottom:747.018667pt;}
.y8a{bottom:748.008000pt;}
.y48{bottom:749.606267pt;}
.ycf{bottom:750.038800pt;}
.ycc{bottom:750.049467pt;}
.y1a7{bottom:750.232133pt;}
.y150{bottom:753.126267pt;}
.y6f{bottom:754.686667pt;}
.y92{bottom:756.992533pt;}
.y12{bottom:759.524400pt;}
.yce{bottom:762.038800pt;}
.y14f{bottom:763.792933pt;}
.y1a6{bottom:764.674800pt;}
.y5b{bottom:765.516000pt;}
.y47{bottom:765.606267pt;}
.y85{bottom:770.753733pt;}
.y11{bottom:771.524400pt;}
.y14e{bottom:774.459600pt;}
.y1a5{bottom:775.341467pt;}
.ycb{bottom:779.158800pt;}
.y46{bottom:781.606267pt;}
.y98{bottom:783.349867pt;}
.y10{bottom:783.524400pt;}
.y5e{bottom:783.774533pt;}
.y14d{bottom:785.126267pt;}
.y1a4{bottom:786.008133pt;}
.y9f{bottom:786.410667pt;}
.ya2{bottom:791.690667pt;}
.yc8{bottom:792.822800pt;}
.yf{bottom:795.524400pt;}
.y84{bottom:795.548533pt;}
.yca{bottom:796.268133pt;}
.y1a3{bottom:796.674800pt;}
.y45{bottom:797.606267pt;}
.y14c{bottom:799.568933pt;}
.y8b{bottom:800.450800pt;}
.ya0{bottom:801.653333pt;}
.yc5{bottom:804.822800pt;}
.y66{bottom:806.264133pt;}
.y1a2{bottom:807.341467pt;}
.ye{bottom:807.524400pt;}
.y97{bottom:809.568533pt;}
.y14b{bottom:810.235600pt;}
.yc9{bottom:813.377467pt;}
.y44{bottom:813.606267pt;}
.y8f{bottom:815.080267pt;}
.yc7{bottom:816.822800pt;}
.y70{bottom:817.059733pt;}
.y1a1{bottom:818.008133pt;}
.yd{bottom:819.524400pt;}
.y83{bottom:820.252533pt;}
.y14a{bottom:820.902267pt;}
.y43{bottom:829.606267pt;}
.yc6{bottom:830.497467pt;}
.yc{bottom:831.524400pt;}
.y149{bottom:831.568933pt;}
.y1a0{bottom:832.450800pt;}
.y93{bottom:835.488533pt;}
.y148{bottom:842.235600pt;}
.y19f{bottom:843.117467pt;}
.yb{bottom:843.524400pt;}
.y82{bottom:844.977867pt;}
.y42{bottom:845.606267pt;}
.yc4{bottom:847.606800pt;}
.yc3{bottom:847.617467pt;}
.y8c{bottom:852.880400pt;}
.y147{bottom:852.902267pt;}
.yc2{bottom:853.622800pt;}
.y72{bottom:853.771867pt;}
.y19e{bottom:853.784133pt;}
.ya{bottom:855.524400pt;}
.y41{bottom:861.606267pt;}
.y94{bottom:861.707200pt;}
.y146{bottom:863.568933pt;}
.y74{bottom:864.241200pt;}
.y19d{bottom:864.450800pt;}
.y9{bottom:867.524400pt;}
.y81{bottom:869.703200pt;}
.ya1{bottom:871.925333pt;}
.y73{bottom:874.719200pt;}
.y19c{bottom:875.117467pt;}
.yc1{bottom:876.737467pt;}
.yc0{bottom:876.748133pt;}
.y54{bottom:877.606267pt;}
.y145{bottom:878.011600pt;}
.y8{bottom:879.524400pt;}
.ybf{bottom:882.753467pt;}
.y95{bottom:888.192533pt;}
.y144{bottom:888.678267pt;}
.y19b{bottom:889.560133pt;}
.y7{bottom:891.524400pt;}
.y7e{bottom:891.938933pt;}
.y40{bottom:893.606267pt;}
.y80{bottom:894.407200pt;}
.y143{bottom:899.344933pt;}
.y19a{bottom:900.226800pt;}
.y5d{bottom:901.638000pt;}
.y6{bottom:903.524400pt;}
.ya4{bottom:904.629333pt;}
.y8d{bottom:905.308933pt;}
.ybe{bottom:905.868133pt;}
.y7d{bottom:906.507600pt;}
.y9e{bottom:909.333333pt;}
.y53{bottom:909.606267pt;}
.y142{bottom:910.011600pt;}
.y199{bottom:910.893467pt;}
.ybd{bottom:911.873467pt;}
.y96{bottom:914.411200pt;}
.y141{bottom:920.678267pt;}
.y198{bottom:921.560133pt;}
.y3f{bottom:925.606267pt;}
.y7f{bottom:925.809867pt;}
.y140{bottom:931.344933pt;}
.y197{bottom:932.226800pt;}
.ybc{bottom:934.988133pt;}
.y5{bottom:940.421867pt;}
.y3e{bottom:941.606267pt;}
.y13f{bottom:942.011600pt;}
.y196{bottom:942.893467pt;}
.yb0{bottom:944.714000pt;}
.y75{bottom:945.346800pt;}
.ybb{bottom:946.988133pt;}
.yb7{bottom:952.982800pt;}
.y13e{bottom:956.454267pt;}
.y195{bottom:957.336133pt;}
.y3d{bottom:957.606267pt;}
.y8e{bottom:957.739067pt;}
.yb6{bottom:958.988133pt;}
.yb8{bottom:964.982800pt;}
.y13d{bottom:967.120933pt;}
.y194{bottom:968.002800pt;}
.yba{bottom:970.988133pt;}
.y4{bottom:972.424533pt;}
.y3c{bottom:973.606267pt;}
.y13c{bottom:977.787600pt;}
.y193{bottom:978.669467pt;}
.yb9{bottom:982.988133pt;}
.y13b{bottom:988.454267pt;}
.y192{bottom:989.336133pt;}
.y3b{bottom:989.606267pt;}
.y13a{bottom:999.120933pt;}
.y89{bottom:999.901600pt;}
.y191{bottom:1000.002800pt;}
.y3{bottom:1004.427200pt;}
.y3a{bottom:1005.606267pt;}
.y139{bottom:1009.787600pt;}
.y58{bottom:1013.234933pt;}
.y9d{bottom:1013.990800pt;}
.y190{bottom:1014.445467pt;}
.y39{bottom:1021.606267pt;}
.y138{bottom:1024.230267pt;}
.y18f{bottom:1025.112133pt;}
.y57{bottom:1026.568267pt;}
.y9c{bottom:1027.324133pt;}
.y137{bottom:1034.896933pt;}
.y18e{bottom:1035.778800pt;}
.y38{bottom:1037.606267pt;}
.y2{bottom:1042.424267pt;}
.y56{bottom:1044.434933pt;}
.y9b{bottom:1045.190800pt;}
.y136{bottom:1045.563600pt;}
.y18d{bottom:1046.445467pt;}
.h11{height:26.242667pt;}
.h9{height:29.194667pt;}
.h16{height:30.293333pt;}
.h12{height:31.616000pt;}
.ha{height:31.696000pt;}
.h13{height:32.298667pt;}
.h19{height:32.938667pt;}
.h17{height:33.920000pt;}
.h2{height:35.450667pt;}
.h14{height:36.224000pt;}
.h15{height:37.493333pt;}
.h6{height:37.536000pt;}
.h8{height:37.539733pt;}
.h1e{height:37.760000pt;}
.h5{height:37.867488pt;}
.h10{height:37.973333pt;}
.h7{height:40.752000pt;}
.he{height:41.173333pt;}
.hc{height:41.493333pt;}
.hb{height:41.706667pt;}
.hf{height:44.992000pt;}
.hd{height:48.741333pt;}
.h3{height:50.048000pt;}
.h18{height:56.917333pt;}
.h1a{height:60.202667pt;}
.h1d{height:64.224000pt;}
.h4{height:83.306667pt;}
.h1b{height:84.181333pt;}
.h1c{height:94.421333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:56.692933pt;}
.x40{left:60.805733pt;}
.x3{left:64.252000pt;}
.x3f{left:68.031600pt;}
.x2a{left:69.388267pt;}
.x4{left:71.809200pt;}
.x66{left:75.594267pt;}
.x29{left:77.626533pt;}
.x25{left:94.637600pt;}
.x27{left:107.095333pt;}
.x39{left:110.838127pt;}
.x37{left:116.556675pt;}
.x2b{left:119.558000pt;}
.x34{left:120.450836pt;}
.x2d{left:124.227467pt;}
.x28{left:132.156658pt;}
.x41{left:141.733733pt;}
.x10{left:163.784667pt;}
.x38{left:176.121330pt;}
.x24{left:181.017200pt;}
.x5c{left:194.299067pt;}
.x43{left:197.712400pt;}
.x64{left:201.060933pt;}
.x3d{left:204.690827pt;}
.x42{left:207.013733pt;}
.x30{left:208.853446pt;}
.x32{left:220.696133pt;}
.x2c{left:223.236533pt;}
.x3e{left:231.491187pt;}
.x11{left:241.228800pt;}
.x23{left:248.758667pt;}
.x2e{left:250.504962pt;}
.x44{left:258.469733pt;}
.x65{left:261.551600pt;}
.x62{left:263.450267pt;}
.x55{left:267.941733pt;}
.x56{left:272.016400pt;}
.x5b{left:274.843067pt;}
.x60{left:279.610267pt;}
.x4c{left:281.947067pt;}
.x45{left:284.016400pt;}
.x61{left:288.751600pt;}
.x54{left:290.224400pt;}
.x2f{left:292.604573pt;}
.x12{left:326.455333pt;}
.x26{left:334.371333pt;}
.x31{left:335.579036pt;}
.x22{left:347.671467pt;}
.x46{left:363.355067pt;}
.x49{left:367.600400pt;}
.x5{left:372.915600pt;}
.x50{left:373.936400pt;}
.x5d{left:375.579067pt;}
.x53{left:377.584400pt;}
.x48{left:385.819067pt;}
.x47{left:389.200400pt;}
.x36{left:390.684248pt;}
.x35{left:401.342513pt;}
.x13{left:403.553600pt;}
.x21{left:410.811467pt;}
.x6{left:415.772933pt;}
.x1b{left:419.482000pt;}
.x3b{left:425.614336pt;}
.x4a{left:432.933733pt;}
.x4e{left:434.181733pt;}
.x4b{left:445.787067pt;}
.x15{left:455.053600pt;}
.x14{left:490.117467pt;}
.xb{left:494.924667pt;}
.x1a{left:501.026267pt;}
.x17{left:516.096533pt;}
.x18{left:519.927200pt;}
.x16{left:530.927333pt;}
.xa{left:539.929867pt;}
.x8{left:548.069200pt;}
.x3a{left:558.687941pt;}
.x5f{left:562.203067pt;}
.x58{left:565.360400pt;}
.x57{left:569.776400pt;}
.x63{left:574.959600pt;}
.x51{left:577.712400pt;}
.x4f{left:582.469733pt;}
.x59{left:587.323067pt;}
.x5a{left:589.723067pt;}
.xf{left:593.183867pt;}
.xd{left:595.272400pt;}
.x4d{left:597.136400pt;}
.x20{left:599.672133pt;}
.x1c{left:603.772400pt;}
.x52{left:606.075067pt;}
.x1d{left:608.227067pt;}
.x9{left:609.350533pt;}
.xe{left:623.351733pt;}
.x5e{left:633.029733pt;}
.x19{left:634.177333pt;}
.x3c{left:635.715733pt;}
.x1e{left:651.814000pt;}
.xc{left:657.116133pt;}
.x1f{left:662.045600pt;}
.x33{left:666.252127pt;}
.x7{left:730.797333pt;}
.x1{left:732.100533pt;}
}




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