
    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_9c949afaa916f0748df4e31f.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_20a115b98d452bdc27b9e12b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.729000;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_5514aea587aada90107adbd6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740038;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_2a5da2bbbb038eb30abbe1df.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_37dc7ae7652110cf4c004e3e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.977000;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_ccb1fe0daa9c5b4b9a9f6dfe.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970000;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_b8f6acfa5e335e9c99a67a40.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8afc435b90e5c63afe7f4eab.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.944000;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_d1685d672d4b92f07136a2ac.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.018000;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_758100a0676c4aa095bf9702.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.718000;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_6601c8da7c5a0bfc71d5b7a3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.951000;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_ce0b018354587fb5b168fbc7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.715000;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-26.028000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:25.974000px;}
.v1{vertical-align:48.024000px;}
.ls1{letter-spacing:-10.602000px;}
.ls30{letter-spacing:-6.624000px;}
.ls77{letter-spacing:-5.760000px;}
.ls7c{letter-spacing:-5.688000px;}
.ls24{letter-spacing:-5.616000px;}
.ls83{letter-spacing:-5.256000px;}
.ls5c{letter-spacing:-4.914000px;}
.ls44{letter-spacing:-4.824000px;}
.ls6d{letter-spacing:-4.758000px;}
.ls70{letter-spacing:-4.680000px;}
.ls2e{letter-spacing:-4.536000px;}
.ls6a{letter-spacing:-4.392000px;}
.ls29{letter-spacing:-4.248000px;}
.ls25{letter-spacing:-4.104000px;}
.ls6e{letter-spacing:-4.056000px;}
.ls63{letter-spacing:-4.032000px;}
.ls4d{letter-spacing:-3.978000px;}
.ls5b{letter-spacing:-3.960000px;}
.ls5d{letter-spacing:-3.900000px;}
.ls7d{letter-spacing:-3.888000px;}
.ls6b{letter-spacing:-3.816000px;}
.ls47{letter-spacing:-3.744000px;}
.ls41{letter-spacing:-3.672000px;}
.ls23{letter-spacing:-3.588000px;}
.ls42{letter-spacing:-3.528000px;}
.ls71{letter-spacing:-3.432000px;}
.ls37{letter-spacing:-3.384000px;}
.ls80{letter-spacing:-3.312000px;}
.ls59{letter-spacing:-3.240000px;}
.ls3c{letter-spacing:-3.198000px;}
.ls33{letter-spacing:-3.096000px;}
.ls7b{letter-spacing:-3.042000px;}
.ls68{letter-spacing:-3.024000px;}
.ls43{letter-spacing:-2.952000px;}
.ls61{letter-spacing:-2.886000px;}
.ls4c{letter-spacing:-2.808000px;}
.ls60{letter-spacing:-2.730000px;}
.ls76{letter-spacing:-2.664000px;}
.ls72{letter-spacing:-2.652000px;}
.ls52{letter-spacing:-2.592000px;}
.ls34{letter-spacing:-2.520000px;}
.ls5f{letter-spacing:-2.496000px;}
.ls27{letter-spacing:-2.448000px;}
.ls62{letter-spacing:-2.376000px;}
.ls7e{letter-spacing:-2.232000px;}
.ls35{letter-spacing:-2.088000px;}
.ls45{letter-spacing:-2.016000px;}
.ls53{letter-spacing:-1.944000px;}
.ls2b{letter-spacing:-1.872000px;}
.ls3b{letter-spacing:-1.794000px;}
.ls56{letter-spacing:-1.728000px;}
.ls6c{letter-spacing:-1.716000px;}
.ls2a{letter-spacing:-1.656000px;}
.ls69{letter-spacing:-1.584000px;}
.ls21{letter-spacing:-1.560000px;}
.ls5a{letter-spacing:-1.512000px;}
.ls64{letter-spacing:-1.440000px;}
.ls5e{letter-spacing:-1.428000px;}
.ls3a{letter-spacing:-1.404000px;}
.ls2d{letter-spacing:-1.368000px;}
.ls1f{letter-spacing:-1.326000px;}
.ls4a{letter-spacing:-1.320000px;}
.ls2c{letter-spacing:-1.296000px;}
.ls6f{letter-spacing:-1.248000px;}
.ls40{letter-spacing:-1.224000px;}
.ls13{letter-spacing:-1.170000px;}
.lse{letter-spacing:-1.152000px;}
.ls17{letter-spacing:-1.092000px;}
.ls10{letter-spacing:-1.080000px;}
.ls4b{letter-spacing:-1.014000px;}
.ls36{letter-spacing:-1.008000px;}
.ls38{letter-spacing:-0.990000px;}
.ls12{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.912000px;}
.lsf{letter-spacing:-0.864000px;}
.ls48{letter-spacing:-0.858000px;}
.ls7{letter-spacing:-0.798000px;}
.ls31{letter-spacing:-0.792000px;}
.ls16{letter-spacing:-0.780000px;}
.ls49{letter-spacing:-0.726000px;}
.ls11{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.702000px;}
.ls18{letter-spacing:-0.672000px;}
.lsa{letter-spacing:-0.660000px;}
.ls3f{letter-spacing:-0.648000px;}
.ls51{letter-spacing:-0.624000px;}
.ls28{letter-spacing:-0.576000px;}
.ls1a{letter-spacing:-0.546000px;}
.ls32{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.468000px;}
.ls6{letter-spacing:-0.456000px;}
.lsd{letter-spacing:-0.450000px;}
.ls7a{letter-spacing:-0.432000px;}
.ls22{letter-spacing:-0.420000px;}
.ls1e{letter-spacing:-0.390000px;}
.ls55{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.312000px;}
.ls2f{letter-spacing:-0.288000px;}
.ls39{letter-spacing:-0.264000px;}
.ls1d{letter-spacing:-0.234000px;}
.ls14{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.198000px;}
.ls3{letter-spacing:-0.114000px;}
.ls75{letter-spacing:-0.096000px;}
.ls73{letter-spacing:-0.078000px;}
.ls81{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls57{letter-spacing:0.072000px;}
.ls58{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.156000px;}
.ls79{letter-spacing:0.216000px;}
.ls54{letter-spacing:0.360000px;}
.ls46{letter-spacing:0.432000px;}
.ls3e{letter-spacing:0.576000px;}
.ls66{letter-spacing:0.648000px;}
.ls78{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.780000px;}
.ls74{letter-spacing:0.858000px;}
.ls65{letter-spacing:0.864000px;}
.ls26{letter-spacing:1.008000px;}
.ls5{letter-spacing:1.140000px;}
.ls82{letter-spacing:1.152000px;}
.ls7f{letter-spacing:1.224000px;}
.ls9{letter-spacing:1.254000px;}
.ls19{letter-spacing:1.326000px;}
.ls67{letter-spacing:1.440000px;}
.ls8{letter-spacing:1.584000px;}
.ls15{letter-spacing:2.112000px;}
.ls3d{letter-spacing:143.856000px;}
.ls4f{letter-spacing:200.952000px;}
.ls4e{letter-spacing:222.120000px;}
.ls50{letter-spacing:243.432000px;}
.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;}
}
.ws13{word-spacing:-24.576000px;}
.ws157{word-spacing:-22.368000px;}
.ws17{word-spacing:-21.792000px;}
.ws21{word-spacing:-21.600000px;}
.wsc{word-spacing:-19.440000px;}
.wse{word-spacing:-18.810000px;}
.ws10{word-spacing:-18.720000px;}
.ws44{word-spacing:-17.862000px;}
.ws156{word-spacing:-17.784000px;}
.ws0{word-spacing:-17.706000px;}
.ws16a{word-spacing:-17.568000px;}
.ws174{word-spacing:-17.496000px;}
.ws1e{word-spacing:-17.394000px;}
.ws15c{word-spacing:-17.208000px;}
.ws18{word-spacing:-17.160000px;}
.ws7c{word-spacing:-16.920000px;}
.ws1d{word-spacing:-16.692000px;}
.ws171{word-spacing:-16.614000px;}
.ws11e{word-spacing:-16.488000px;}
.wsb{word-spacing:-16.458000px;}
.ws16d{word-spacing:-16.416000px;}
.ws26{word-spacing:-16.344000px;}
.ws154{word-spacing:-16.302000px;}
.ws130{word-spacing:-16.200000px;}
.ws16c{word-spacing:-16.128000px;}
.ws2f{word-spacing:-16.056000px;}
.ws149{word-spacing:-15.990000px;}
.ws89{word-spacing:-15.912000px;}
.ws33{word-spacing:-15.840000px;}
.ws16{word-spacing:-15.834000px;}
.wsf{word-spacing:-15.768000px;}
.ws8c{word-spacing:-15.756000px;}
.wsd{word-spacing:-15.624000px;}
.ws4f{word-spacing:-15.600000px;}
.ws15a{word-spacing:-15.552000px;}
.ws153{word-spacing:-15.522000px;}
.ws20{word-spacing:-15.366000px;}
.ws75{word-spacing:-15.336000px;}
.ws59{word-spacing:-15.264000px;}
.ws148{word-spacing:-15.210000px;}
.ws2d{word-spacing:-15.192000px;}
.ws55{word-spacing:-15.120000px;}
.ws42{word-spacing:-15.048000px;}
.ws3d{word-spacing:-14.976000px;}
.ws15d{word-spacing:-14.904000px;}
.ws169{word-spacing:-14.832000px;}
.ws172{word-spacing:-14.760000px;}
.ws167{word-spacing:-14.616000px;}
.ws31{word-spacing:-14.472000px;}
.ws8f{word-spacing:-14.400000px;}
.ws83{word-spacing:-14.388000px;}
.wsbf{word-spacing:-14.328000px;}
.ws3a{word-spacing:-14.256000px;}
.ws11d{word-spacing:-14.184000px;}
.ws43{word-spacing:-14.124000px;}
.ws22{word-spacing:-14.118000px;}
.ws175{word-spacing:-14.112000px;}
.ws151{word-spacing:-14.040000px;}
.ws99{word-spacing:-13.896000px;}
.ws166{word-spacing:-13.884000px;}
.ws159{word-spacing:-13.824000px;}
.ws84{word-spacing:-13.662000px;}
.ws137{word-spacing:-13.536000px;}
.ws6b{word-spacing:-13.392000px;}
.ws35{word-spacing:-13.248000px;}
.ws16b{word-spacing:-13.176000px;}
.ws40{word-spacing:-12.960000px;}
.ws5f{word-spacing:-12.816000px;}
.ws173{word-spacing:-12.672000px;}
.wsdf{word-spacing:-12.600000px;}
.ws158{word-spacing:-12.456000px;}
.ws10d{word-spacing:-12.384000px;}
.ws12a{word-spacing:-12.096000px;}
.ws114{word-spacing:-12.012000px;}
.ws13e{word-spacing:-11.808000px;}
.ws15b{word-spacing:-11.664000px;}
.ws116{word-spacing:-11.592000px;}
.ws168{word-spacing:-10.800000px;}
.ws115{word-spacing:-10.413546px;}
.ws36{word-spacing:-9.720000px;}
.ws7{word-spacing:-1.584000px;}
.ws147{word-spacing:-1.440000px;}
.ws19{word-spacing:-1.326000px;}
.ws8{word-spacing:-1.254000px;}
.ws48{word-spacing:-1.008000px;}
.ws16f{word-spacing:-0.720000px;}
.ws15{word-spacing:-0.234000px;}
.ws164{word-spacing:-0.216000px;}
.ws152{word-spacing:-0.078000px;}
.ws176{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws177{word-spacing:0.072000px;}
.ws150{word-spacing:0.078000px;}
.ws3{word-spacing:0.114000px;}
.wsa{word-spacing:0.198000px;}
.ws14{word-spacing:0.216000px;}
.ws4b{word-spacing:0.264000px;}
.ws162{word-spacing:0.288000px;}
.ws1c{word-spacing:0.312000px;}
.ws15e{word-spacing:0.360000px;}
.ws45{word-spacing:0.420000px;}
.ws144{word-spacing:0.468000px;}
.ws15f{word-spacing:0.504000px;}
.ws1b{word-spacing:0.546000px;}
.ws16e{word-spacing:0.576000px;}
.ws10e{word-spacing:0.624000px;}
.ws10f{word-spacing:0.648000px;}
.ws9{word-spacing:0.660000px;}
.ws163{word-spacing:0.720000px;}
.ws1a{word-spacing:0.780000px;}
.ws113{word-spacing:0.792000px;}
.ws88{word-spacing:0.858000px;}
.ws112{word-spacing:0.864000px;}
.ws12{word-spacing:0.936000px;}
.ws87{word-spacing:0.990000px;}
.ws4a{word-spacing:1.008000px;}
.ws146{word-spacing:1.080000px;}
.ws11{word-spacing:1.152000px;}
.ws46{word-spacing:1.170000px;}
.ws85{word-spacing:1.224000px;}
.ws14c{word-spacing:1.248000px;}
.ws165{word-spacing:1.296000px;}
.ws1f{word-spacing:1.326000px;}
.ws49{word-spacing:1.368000px;}
.ws4c{word-spacing:1.404000px;}
.ws140{word-spacing:1.428000px;}
.ws5{word-spacing:1.596000px;}
.ws155{word-spacing:1.632000px;}
.ws179{word-spacing:1.728000px;}
.ws4d{word-spacing:1.794000px;}
.ws6{word-spacing:1.938000px;}
.ws4{word-spacing:2.052000px;}
.ws145{word-spacing:2.376000px;}
.ws141{word-spacing:2.496000px;}
.ws14f{word-spacing:2.652000px;}
.ws142{word-spacing:2.730000px;}
.ws8a{word-spacing:2.808000px;}
.ws143{word-spacing:2.886000px;}
.ws111{word-spacing:3.096000px;}
.ws4e{word-spacing:3.198000px;}
.ws161{word-spacing:3.384000px;}
.ws14e{word-spacing:3.432000px;}
.ws110{word-spacing:3.744000px;}
.ws170{word-spacing:3.888000px;}
.ws13f{word-spacing:3.900000px;}
.ws8b{word-spacing:3.978000px;}
.ws14a{word-spacing:4.056000px;}
.ws47{word-spacing:4.104000px;}
.ws178{word-spacing:4.248000px;}
.ws14d{word-spacing:4.680000px;}
.ws14b{word-spacing:4.758000px;}
.ws17a{word-spacing:5.256000px;}
.ws160{word-spacing:5.760000px;}
.ws86{word-spacing:6.624000px;}
.ws1{word-spacing:10.602000px;}
.ws6c{word-spacing:80.676000px;}
.ws56{word-spacing:85.521600px;}
.ws76{word-spacing:85.860000px;}
.ws60{word-spacing:86.011200px;}
.ws63{word-spacing:86.479200px;}
.ws119{word-spacing:87.372000px;}
.ws52{word-spacing:87.760800px;}
.ws80{word-spacing:88.063200px;}
.ws79{word-spacing:88.833600px;}
.ws66{word-spacing:91.051200px;}
.ws7d{word-spacing:91.368000px;}
.ws6f{word-spacing:92.304000px;}
.ws72{word-spacing:92.390400px;}
.ws5c{word-spacing:92.880000px;}
.ws68{word-spacing:94.255200px;}
.ws73{word-spacing:96.192000px;}
.ws57{word-spacing:96.876000px;}
.ws69{word-spacing:97.236000px;}
.ws64{word-spacing:98.568000px;}
.ws6d{word-spacing:98.784000px;}
.ws61{word-spacing:99.720000px;}
.ws5a{word-spacing:100.562400px;}
.ws67{word-spacing:100.584000px;}
.ws5d{word-spacing:101.088000px;}
.ws70{word-spacing:101.102400px;}
.ws77{word-spacing:101.786400px;}
.ws58{word-spacing:103.600800px;}
.ws53{word-spacing:103.881600px;}
.ws81{word-spacing:103.917600px;}
.ws5b{word-spacing:104.544000px;}
.ws54{word-spacing:105.069600px;}
.ws74{word-spacing:105.768000px;}
.ws7b{word-spacing:107.287200px;}
.ws82{word-spacing:107.704800px;}
.ws7a{word-spacing:107.870400px;}
.ws7e{word-spacing:108.144000px;}
.ws71{word-spacing:108.698400px;}
.ws78{word-spacing:109.116000px;}
.ws65{word-spacing:109.152000px;}
.ws62{word-spacing:109.814400px;}
.ws6e{word-spacing:110.282400px;}
.ws7f{word-spacing:111.621600px;}
.ws5e{word-spacing:111.952800px;}
.ws6a{word-spacing:112.557600px;}
.ws118{word-spacing:115.776000px;}
.ws11c{word-spacing:116.748000px;}
.ws132{word-spacing:117.259200px;}
.ws139{word-spacing:119.239200px;}
.ws125{word-spacing:137.808000px;}
.ws128{word-spacing:139.420800px;}
.wse1{word-spacing:139.528800px;}
.ws97{word-spacing:139.838400px;}
.ws13a{word-spacing:139.939200px;}
.ws105{word-spacing:140.500800px;}
.wsc2{word-spacing:140.853600px;}
.wscf{word-spacing:141.120000px;}
.wsd7{word-spacing:141.249600px;}
.ws10a{word-spacing:141.760800px;}
.ws12b{word-spacing:141.984000px;}
.wsb6{word-spacing:142.747200px;}
.wsf4{word-spacing:142.855200px;}
.wsa2{word-spacing:142.927200px;}
.ws100{word-spacing:143.215200px;}
.wsfb{word-spacing:143.287200px;}
.wsb1{word-spacing:143.424000px;}
.wsce{word-spacing:143.445600px;}
.ws9d{word-spacing:143.539200px;}
.wsc9{word-spacing:143.640000px;}
.wsc8{word-spacing:143.661600px;}
.wse6{word-spacing:143.755200px;}
.wsb0{word-spacing:144.057600px;}
.wsa7{word-spacing:144.151200px;}
.wseb{word-spacing:144.403200px;}
.wsa8{word-spacing:144.892800px;}
.wsdc{word-spacing:144.943200px;}
.ws133{word-spacing:145.267200px;}
.wsf9{word-spacing:145.828800px;}
.wsef{word-spacing:146.001600px;}
.wsfc{word-spacing:146.635200px;}
.wsac{word-spacing:146.692800px;}
.wsad{word-spacing:146.800800px;}
.ws106{word-spacing:146.944800px;}
.ws101{word-spacing:146.995200px;}
.ws9e{word-spacing:147.139200px;}
.wsf5{word-spacing:147.175200px;}
.wsb7{word-spacing:147.355200px;}
.wse2{word-spacing:147.578400px;}
.wsdd{word-spacing:147.664800px;}
.wsd8{word-spacing:147.715200px;}
.wsbc{word-spacing:148.298400px;}
.ws96{word-spacing:149.263200px;}
.wsa3{word-spacing:149.875200px;}
.wsc3{word-spacing:150.760800px;}
.wsea{word-spacing:150.991200px;}
.wsbd{word-spacing:151.200000px;}
.ws11f{word-spacing:151.488000px;}
.wsf0{word-spacing:153.244800px;}
.ws10b{word-spacing:153.288000px;}
.ws129{word-spacing:155.858400px;}
.ws12c{word-spacing:155.952000px;}
.ws11b{word-spacing:158.112000px;}
.ws126{word-spacing:158.544000px;}
.ws109{word-spacing:160.884000px;}
.wse4{word-spacing:161.078400px;}
.ws9b{word-spacing:161.316000px;}
.wsc7{word-spacing:161.330400px;}
.ws103{word-spacing:161.438400px;}
.wscd{word-spacing:162.468000px;}
.wsaf{word-spacing:162.612000px;}
.wsb4{word-spacing:162.698400px;}
.wsaa{word-spacing:163.584000px;}
.wsc6{word-spacing:163.728000px;}
.ws13c{word-spacing:164.642400px;}
.wscc{word-spacing:165.067200px;}
.wsba{word-spacing:165.096000px;}
.wsa0{word-spacing:165.225600px;}
.wsf2{word-spacing:165.729600px;}
.ws51{word-spacing:166.176000px;}
.wsc0{word-spacing:166.226400px;}
.wsa5{word-spacing:166.298400px;}
.wsd6{word-spacing:166.334400px;}
.wse5{word-spacing:166.435200px;}
.wsf3{word-spacing:166.708800px;}
.wsfe{word-spacing:166.730400px;}
.wsc1{word-spacing:167.025600px;}
.wsd1{word-spacing:167.162400px;}
.wsa1{word-spacing:167.248800px;}
.ws9c{word-spacing:167.270400px;}
.ws122{word-spacing:167.400000px;}
.wse0{word-spacing:167.587200px;}
.ws104{word-spacing:167.608800px;}
.wsf8{word-spacing:167.680800px;}
.wsb5{word-spacing:167.896800px;}
.wsa6{word-spacing:168.004800px;}
.wsbb{word-spacing:168.076800px;}
.wsd2{word-spacing:168.148800px;}
.wsff{word-spacing:168.184800px;}
.wsab{word-spacing:168.206400px;}
.ws94{word-spacing:168.242400px;}
.wsed{word-spacing:168.465600px;}
.wsdb{word-spacing:168.861600px;}
.ws13d{word-spacing:169.855200px;}
.wsd5{word-spacing:170.042400px;}
.wse9{word-spacing:170.488800px;}
.ws95{word-spacing:170.632800px;}
.ws135{word-spacing:171.892800px;}
.wsda{word-spacing:172.296000px;}
.wsee{word-spacing:172.425600px;}
.wse8{word-spacing:172.728000px;}
.ws108{word-spacing:174.096000px;}
.ws120{word-spacing:178.848000px;}
.wsbe{word-spacing:181.634400px;}
.wsec{word-spacing:182.052000px;}
.ws136{word-spacing:182.548800px;}
.ws12f{word-spacing:183.024000px;}
.ws123{word-spacing:184.176000px;}
.wsca{word-spacing:184.723200px;}
.ws11a{word-spacing:185.054400px;}
.wsfd{word-spacing:186.033600px;}
.ws102{word-spacing:186.285600px;}
.ws92{word-spacing:186.480000px;}
.wsd0{word-spacing:186.487200px;}
.wsae{word-spacing:186.537600px;}
.wsa9{word-spacing:186.595200px;}
.ws9f{word-spacing:187.315200px;}
.wse7{word-spacing:187.725600px;}
.wsfa{word-spacing:187.869600px;}
.ws98{word-spacing:187.920000px;}
.wsd3{word-spacing:188.121600px;}
.wsb8{word-spacing:188.193600px;}
.wsf6{word-spacing:188.287200px;}
.ws107{word-spacing:188.323200px;}
.wsd9{word-spacing:188.445600px;}
.ws10c{word-spacing:189.172800px;}
.wsde{word-spacing:190.159200px;}
.wsb2{word-spacing:190.339200px;}
.wsc4{word-spacing:191.628000px;}
.wsf1{word-spacing:192.852000px;}
.wse3{word-spacing:193.464000px;}
.wsa4{word-spacing:193.608000px;}
.ws12e{word-spacing:202.968000px;}
.ws91{word-spacing:207.648000px;}
.ws131{word-spacing:229.075200px;}
.ws127{word-spacing:230.544000px;}
.ws13b{word-spacing:232.891200px;}
.ws134{word-spacing:243.432000px;}
.ws121{word-spacing:247.536000px;}
.ws12d{word-spacing:250.776000px;}
.ws8d{word-spacing:255.146400px;}
.ws32{word-spacing:260.308800px;}
.ws2a{word-spacing:262.296000px;}
.ws34{word-spacing:263.116800px;}
.ws3c{word-spacing:264.758400px;}
.ws25{word-spacing:264.765600px;}
.ws41{word-spacing:266.342400px;}
.ws37{word-spacing:268.430400px;}
.ws2e{word-spacing:270.324000px;}
.ws38{word-spacing:271.152000px;}
.ws3f{word-spacing:273.297600px;}
.ws39{word-spacing:273.657600px;}
.ws28{word-spacing:275.313600px;}
.ws30{word-spacing:277.192800px;}
.ws2c{word-spacing:297.115200px;}
.ws117{word-spacing:319.960800px;}
.ws8e{word-spacing:320.119200px;}
.ws138{word-spacing:341.726400px;}
.ws124{word-spacing:349.740000px;}
.wsd4{word-spacing:371.167200px;}
.ws3b{word-spacing:410.587200px;}
.ws3e{word-spacing:413.683200px;}
.wscb{word-spacing:415.965600px;}
.wsc5{word-spacing:425.599200px;}
.ws2b{word-spacing:452.095200px;}
.ws29{word-spacing:502.020000px;}
.ws90{word-spacing:505.432800px;}
.ws24{word-spacing:508.082400px;}
.ws27{word-spacing:520.099200px;}
.ws9a{word-spacing:540.468000px;}
.wsb3{word-spacing:565.970400px;}
.wsb9{word-spacing:590.371200px;}
.ws93{word-spacing:602.942400px;}
.wsf7{word-spacing:607.694400px;}
.ws50{word-spacing:614.066400px;}
.ws23{word-spacing:676.778400px;}
._c{margin-left:-9.875400px;}
._b{margin-left:-8.866200px;}
._a{margin-left:-7.363200px;}
._8{margin-left:-6.175200px;}
._9{margin-left:-4.281600px;}
._3{margin-left:-3.146400px;}
._4{margin-left:-1.185600px;}
._0{width:1.029600px;}
._5{width:2.131800px;}
._7{width:3.260400px;}
._3a{width:4.283400px;}
._6{width:5.323800px;}
._d{width:6.667200px;}
._1e{width:8.471400px;}
._1{width:9.473400px;}
._2{width:10.898400px;}
._1a{width:99.122400px;}
._e{width:102.815400px;}
._20{width:122.661000px;}
._32{width:126.856200px;}
._2b{width:157.267200px;}
._36{width:161.731200px;}
._31{width:172.564800px;}
._2c{width:180.453000px;}
._1c{width:185.421600px;}
._35{width:196.744800px;}
._34{width:198.794400px;}
._39{width:207.034200px;}
._30{width:240.758400px;}
._2e{width:260.035800px;}
._38{width:263.295000px;}
._14{width:279.338400px;}
._16{width:312.787200px;}
._12{width:314.908800px;}
._15{width:330.410400px;}
._10{width:337.742400px;}
._11{width:350.774400px;}
._33{width:366.283200px;}
._2f{width:403.468800px;}
._13{width:411.427200px;}
._25{width:430.980000px;}
._f{width:432.556800px;}
._2a{width:441.866400px;}
._29{width:444.363600px;}
._22{width:456.993000px;}
._37{width:467.627400px;}
._24{width:528.191400px;}
._2d{width:571.494000px;}
._28{width:631.119000px;}
._23{width:650.018400px;}
._19{width:682.507200px;}
._1d{width:761.112000px;}
._26{width:776.185800px;}
._1b{width:785.517000px;}
._17{width:817.851600px;}
._27{width:851.131200px;}
._21{width:855.964800px;}
._18{width:904.057800px;}
._1f{width:1053.162600px;}
.fc1{color:rgb(103,89,164);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:45.474000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:78.000000px;}
.fs7{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs6{font-size:96.000000px;}
.fs1{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:60.500400px;}
.y1d{bottom:66.491550px;}
.y1c{bottom:101.321700px;}
.y152{bottom:121.700850px;}
.yfc{bottom:122.200200px;}
.y1eb{bottom:122.849850px;}
.y4b{bottom:122.929350px;}
.y1c4{bottom:122.941650px;}
.y19e{bottom:125.038350px;}
.y236{bottom:129.939150px;}
.y211{bottom:131.565150px;}
.y71{bottom:139.514850px;}
.y98{bottom:141.979350px;}
.yb9{bottom:142.994250px;}
.y4a{bottom:143.935350px;}
.y151{bottom:146.446350px;}
.yfb{bottom:147.998700px;}
.y25b{bottom:148.106850px;}
.y1c3{bottom:149.637150px;}
.y1ea{bottom:149.857350px;}
.y19d{bottom:151.070850px;}
.y176{bottom:153.687900px;}
.y235{bottom:155.445150px;}
.y210{bottom:158.572650px;}
.y49{bottom:164.941350px;}
.y70{bottom:166.288350px;}
.y97{bottom:168.986850px;}
.yb8{bottom:170.001750px;}
.y150{bottom:171.191850px;}
.y25a{bottom:173.756850px;}
.yfa{bottom:173.797200px;}
.y1c2{bottom:176.332650px;}
.y1e9{bottom:176.864850px;}
.y19c{bottom:177.103350px;}
.y14{bottom:182.289750px;}
.y17{bottom:183.039750px;}
.y175{bottom:184.659300px;}
.y20f{bottom:185.580150px;}
.y48{bottom:185.947350px;}
.y234{bottom:187.323150px;}
.y6f{bottom:193.061850px;}
.y14f{bottom:195.937350px;}
.y96{bottom:195.994350px;}
.yb7{bottom:197.009250px;}
.y259{bottom:199.406850px;}
.yf9{bottom:199.595700px;}
.y1c1{bottom:203.028150px;}
.y19b{bottom:203.135850px;}
.y13{bottom:203.289750px;}
.y1e8{bottom:203.872350px;}
.y16{bottom:204.039750px;}
.y47{bottom:206.953350px;}
.y174{bottom:209.751300px;}
.y20e{bottom:212.587650px;}
.y233{bottom:212.829150px;}
.y6e{bottom:219.835350px;}
.y14e{bottom:220.682850px;}
.y95{bottom:223.001850px;}
.yb6{bottom:224.016750px;}
.y15{bottom:225.039750px;}
.yf8{bottom:225.394200px;}
.y12{bottom:225.789750px;}
.y46{bottom:227.959350px;}
.y19a{bottom:229.168350px;}
.y1c0{bottom:229.723650px;}
.y11e{bottom:229.766400px;}
.y1e7{bottom:230.879850px;}
.y258{bottom:231.428850px;}
.y173{bottom:234.843300px;}
.yd1{bottom:235.555050px;}
.y232{bottom:238.335150px;}
.y20d{bottom:239.595150px;}
.y14d{bottom:245.428350px;}
.y6d{bottom:246.608850px;}
.y45{bottom:248.965350px;}
.y94{bottom:250.009350px;}
.yb5{bottom:251.024250px;}
.yf7{bottom:251.192700px;}
.y199{bottom:255.200850px;}
.y1bf{bottom:256.419150px;}
.y11d{bottom:256.773900px;}
.y257{bottom:257.078850px;}
.y1e6{bottom:257.887350px;}
.y172{bottom:259.935300px;}
.yd0{bottom:262.562550px;}
.y20c{bottom:266.602650px;}
.y44{bottom:269.971350px;}
.y231{bottom:270.213150px;}
.y6c{bottom:273.382350px;}
.y12a{bottom:275.103750px;}
.yf6{bottom:276.991200px;}
.y93{bottom:277.016850px;}
.yb4{bottom:278.031750px;}
.y198{bottom:281.233350px;}
.y256{bottom:282.728850px;}
.y14c{bottom:282.934200px;}
.y1be{bottom:283.114650px;}
.y11c{bottom:283.781400px;}
.y1e5{bottom:284.894850px;}
.y171{bottom:285.027300px;}
.y1b{bottom:286.336050px;}
.ycf{bottom:289.570050px;}
.y43{bottom:290.977350px;}
.y20b{bottom:293.610150px;}
.y230{bottom:295.719150px;}
.y6b{bottom:300.155850px;}
.y129{bottom:302.111250px;}
.yf5{bottom:302.789700px;}
.y92{bottom:304.024350px;}
.yb3{bottom:305.039250px;}
.y197{bottom:307.265850px;}
.y1bd{bottom:309.810150px;}
.y170{bottom:310.299300px;}
.y11b{bottom:310.788900px;}
.y14b{bottom:311.518800px;}
.y1a{bottom:311.829750px;}
.y1e4{bottom:311.902350px;}
.y255{bottom:314.750850px;}
.yce{bottom:316.577550px;}
.y20a{bottom:320.617650px;}
.y42{bottom:320.977350px;}
.y22f{bottom:321.225150px;}
.y6a{bottom:326.929350px;}
.yf4{bottom:328.588200px;}
.y128{bottom:329.118750px;}
.y91{bottom:331.031850px;}
.yb2{bottom:332.046750px;}
.y196{bottom:333.298350px;}
.y19{bottom:334.329750px;}
.y16f{bottom:335.391300px;}
.y1bc{bottom:336.505650px;}
.y14a{bottom:336.610800px;}
.y11a{bottom:337.796400px;}
.y1e3{bottom:338.597850px;}
.y254{bottom:340.400850px;}
.ycd{bottom:343.585050px;}
.y209{bottom:347.625150px;}
.y22e{bottom:353.103150px;}
.y69{bottom:353.702850px;}
.y127{bottom:356.126250px;}
.y90{bottom:358.039350px;}
.yb1{bottom:359.054250px;}
.y195{bottom:359.330850px;}
.y18{bottom:361.329750px;}
.y149{bottom:361.702800px;}
.y16e{bottom:363.014700px;}
.y1bb{bottom:363.201150px;}
.y119{bottom:364.803900px;}
.y1e2{bottom:365.293350px;}
.y253{bottom:366.050850px;}
.yf3{bottom:367.144050px;}
.ycc{bottom:370.592550px;}
.y208{bottom:373.950150px;}
.y22d{bottom:378.609150px;}
.y41{bottom:379.393350px;}
.y68{bottom:380.476350px;}
.y126{bottom:383.133750px;}
.y8f{bottom:385.046850px;}
.y194{bottom:385.363350px;}
.yb0{bottom:386.061750px;}
.y148{bottom:386.794800px;}
.y1ba{bottom:389.896650px;}
.y118{bottom:391.811400px;}
.y1e1{bottom:391.988850px;}
.yf2{bottom:396.901800px;}
.ycb{bottom:397.600050px;}
.y252{bottom:398.072850px;}
.y207{bottom:400.275150px;}
.y277{bottom:402.104850px;}
.y16d{bottom:402.463200px;}
.y22c{bottom:404.115150px;}
.y67{bottom:407.249850px;}
.y40{bottom:407.887350px;}
.y125{bottom:410.141250px;}
.y193{bottom:411.395850px;}
.y147{bottom:411.886800px;}
.y8e{bottom:412.054350px;}
.yaf{bottom:413.069250px;}
.y1b9{bottom:416.592150px;}
.y1e0{bottom:418.684350px;}
.y117{bottom:418.818900px;}
.yf1{bottom:420.895800px;}
.y251{bottom:423.722850px;}
.yca{bottom:424.607550px;}
.y206{bottom:426.600150px;}
.y276{bottom:427.610850px;}
.y3f{bottom:428.893350px;}
.y16c{bottom:429.158700px;}
.y22b{bottom:429.621150px;}
.y66{bottom:434.023350px;}
.y146{bottom:436.978800px;}
.y124{bottom:437.148750px;}
.y192{bottom:437.428350px;}
.y8d{bottom:439.061850px;}
.yae{bottom:440.076750px;}
.y1b8{bottom:443.287650px;}
.yf0{bottom:444.889800px;}
.y1df{bottom:445.379850px;}
.y116{bottom:445.826400px;}
.y3e{bottom:449.899350px;}
.yc9{bottom:451.615050px;}
.y205{bottom:452.925150px;}
.y275{bottom:453.116850px;}
.y250{bottom:455.744850px;}
.y16b{bottom:455.854200px;}
.y65{bottom:460.796850px;}
.y22a{bottom:461.499150px;}
.y145{bottom:462.070800px;}
.y191{bottom:463.460850px;}
.y123{bottom:464.156250px;}
.y8c{bottom:466.069350px;}
.yad{bottom:467.084250px;}
.yeb{bottom:469.945800px;}
.yef{bottom:469.963800px;}
.y1b7{bottom:469.983150px;}
.y3d{bottom:470.905350px;}
.y1de{bottom:472.075350px;}
.y115{bottom:472.833900px;}
.y204{bottom:479.250150px;}
.y24f{bottom:481.394850px;}
.y16a{bottom:482.549700px;}
.y274{bottom:484.994850px;}
.y229{bottom:487.005150px;}
.y144{bottom:487.162800px;}
.y64{bottom:487.570350px;}
.y190{bottom:489.493350px;}
.y122{bottom:491.163750px;}
.y3c{bottom:491.911350px;}
.y8b{bottom:493.076850px;}
.yee{bottom:493.957800px;}
.yac{bottom:494.091750px;}
.y1b6{bottom:496.678650px;}
.y1dd{bottom:498.770850px;}
.y114{bottom:499.841400px;}
.yc8{bottom:499.874850px;}
.y203{bottom:505.575150px;}
.y24e{bottom:507.044850px;}
.y169{bottom:509.245200px;}
.y273{bottom:510.500850px;}
.y143{bottom:512.254800px;}
.y228{bottom:512.511150px;}
.y3b{bottom:512.917350px;}
.y63{bottom:514.343850px;}
.y18f{bottom:515.525850px;}
.y121{bottom:518.171250px;}
.yed{bottom:519.031800px;}
.y8a{bottom:520.084350px;}
.yab{bottom:521.099250px;}
.y11{bottom:522.748350px;}
.y1b5{bottom:523.374150px;}
.y1dc{bottom:525.466350px;}
.y113{bottom:526.848900px;}
.y202{bottom:531.900150px;}
.y3a{bottom:533.923350px;}
.y168{bottom:535.940700px;}
.y272{bottom:536.006850px;}
.y142{bottom:537.346800px;}
.y24d{bottom:539.066850px;}
.y62{bottom:541.117350px;}
.y18e{bottom:541.378350px;}
.y10{bottom:542.251350px;}
.yec{bottom:543.025800px;}
.y227{bottom:544.389150px;}
.y120{bottom:545.178750px;}
.y89{bottom:547.091850px;}
.y1b4{bottom:550.069650px;}
.y1db{bottom:552.161850px;}
.yc7{bottom:552.349200px;}
.y112{bottom:553.856400px;}
.y39{bottom:554.929350px;}
.y201{bottom:558.225150px;}
.yf{bottom:561.754350px;}
.y141{bottom:562.438800px;}
.y167{bottom:562.636200px;}
.y24c{bottom:564.716850px;}
.y18d{bottom:567.410850px;}
.y271{bottom:567.884850px;}
.y61{bottom:567.890850px;}
.yea{bottom:568.117800px;}
.yaa{bottom:569.359200px;}
.y226{bottom:569.895150px;}
.y88{bottom:574.099350px;}
.y38{bottom:575.935350px;}
.y1b3{bottom:576.765150px;}
.y1da{bottom:578.857350px;}
.yc6{bottom:579.356700px;}
.y111{bottom:580.863900px;}
.ye{bottom:581.257350px;}
.y200{bottom:584.550150px;}
.y140{bottom:587.530800px;}
.y166{bottom:589.331700px;}
.y24b{bottom:590.366850px;}
.ye9{bottom:593.209800px;}
.y270{bottom:593.390850px;}
.y11f{bottom:593.438550px;}
.y18c{bottom:593.443350px;}
.y60{bottom:594.664350px;}
.y225{bottom:595.401150px;}
.y37{bottom:596.941350px;}
.yd{bottom:600.760350px;}
.y87{bottom:601.106850px;}
.y1b2{bottom:603.460650px;}
.y1d9{bottom:605.552850px;}
.ye6{bottom:605.773800px;}
.yc5{bottom:606.364200px;}
.y110{bottom:607.871400px;}
.y1ff{bottom:610.875150px;}
.y13f{bottom:612.622800px;}
.y165{bottom:616.027200px;}
.y36{bottom:617.947350px;}
.ye8{bottom:618.301800px;}
.y26f{bottom:618.896850px;}
.y18b{bottom:619.475850px;}
.yc{bottom:620.263350px;}
.y224{bottom:620.907150px;}
.y5f{bottom:621.437850px;}
.ya9{bottom:621.818400px;}
.y24a{bottom:622.388850px;}
.y86{bottom:628.114350px;}
.y1b1{bottom:630.156150px;}
.y1d8{bottom:632.248350px;}
.yc4{bottom:633.371700px;}
.y1fe{bottom:637.200150px;}
.y13e{bottom:637.714800px;}
.y35{bottom:638.953350px;}
.yb{bottom:639.766350px;}
.y164{bottom:642.722700px;}
.ye7{bottom:643.393800px;}
.y26e{bottom:644.402850px;}
.y18a{bottom:645.508350px;}
.y249{bottom:648.038850px;}
.y5e{bottom:648.211350px;}
.ya8{bottom:648.825900px;}
.y223{bottom:652.785150px;}
.y85{bottom:655.121850px;}
.y10f{bottom:656.131200px;}
.y1b0{bottom:656.851650px;}
.y1d7{bottom:658.943850px;}
.y34{bottom:659.959350px;}
.yc3{bottom:660.379200px;}
.y13d{bottom:662.806800px;}
.y1fd{bottom:663.525150px;}
.ye5{bottom:668.485800px;}
.y163{bottom:669.418200px;}
.y189{bottom:671.540850px;}
.y248{bottom:673.688850px;}
.ya{bottom:674.266350px;}
.y5d{bottom:674.984850px;}
.ya7{bottom:675.833400px;}
.y26d{bottom:676.280850px;}
.y222{bottom:678.291150px;}
.y33{bottom:680.965350px;}
.y84{bottom:682.129350px;}
.y1af{bottom:683.547150px;}
.y1d6{bottom:685.639350px;}
.yc2{bottom:687.386700px;}
.y13c{bottom:687.898800px;}
.y1fc{bottom:689.850150px;}
.ye4{bottom:693.577800px;}
.y162{bottom:696.113700px;}
.y188{bottom:697.573350px;}
.y247{bottom:699.338850px;}
.y5c{bottom:701.758350px;}
.y26c{bottom:701.786850px;}
.y32{bottom:701.971350px;}
.ya6{bottom:702.840900px;}
.y221{bottom:703.797150px;}
.ye1{bottom:706.141800px;}
.y10e{bottom:708.637050px;}
.y83{bottom:709.136850px;}
.y1ae{bottom:710.242650px;}
.y1d5{bottom:712.334850px;}
.y13b{bottom:712.990800px;}
.y1fb{bottom:716.175150px;}
.ye3{bottom:718.669800px;}
.y161{bottom:722.809200px;}
.y31{bottom:722.977350px;}
.y187{bottom:723.605850px;}
.y26b{bottom:727.292850px;}
.y5b{bottom:728.531850px;}
.y220{bottom:729.303150px;}
.ya5{bottom:729.848400px;}
.y10d{bottom:731.143050px;}
.y246{bottom:731.360850px;}
.yc1{bottom:735.646500px;}
.y82{bottom:736.144350px;}
.y1ad{bottom:736.938150px;}
.y13a{bottom:738.082800px;}
.y1d4{bottom:739.030350px;}
.y1fa{bottom:742.500150px;}
.ye2{bottom:743.761800px;}
.y9{bottom:746.263650px;}
.y160{bottom:749.504700px;}
.y186{bottom:749.638350px;}
.y30{bottom:752.977350px;}
.y5a{bottom:755.305350px;}
.ya4{bottom:756.855900px;}
.y245{bottom:757.010850px;}
.y26a{bottom:759.170850px;}
.y21f{bottom:761.181150px;}
.y10c{bottom:762.058800px;}
.y81{bottom:763.151850px;}
.y139{bottom:763.174800px;}
.y1ac{bottom:763.633650px;}
.y1d3{bottom:765.725850px;}
.y1f9{bottom:768.825150px;}
.ye0{bottom:768.853800px;}
.y185{bottom:775.670850px;}
.y15f{bottom:776.200200px;}
.y59{bottom:782.078850px;}
.y8{bottom:782.259150px;}
.y244{bottom:782.660850px;}
.ya3{bottom:783.863400px;}
.y269{bottom:784.676850px;}
.y21e{bottom:786.687150px;}
.y10b{bottom:787.150800px;}
.yc0{bottom:788.053350px;}
.y138{bottom:788.266800px;}
.y80{bottom:790.159350px;}
.y1ab{bottom:790.329150px;}
.y1d2{bottom:792.421350px;}
.ydf{bottom:793.945800px;}
.y1f8{bottom:795.150150px;}
.y184{bottom:801.703350px;}
.y15e{bottom:802.895700px;}
.ydc{bottom:806.509800px;}
.y243{bottom:808.310850px;}
.y58{bottom:808.852350px;}
.ya2{bottom:810.870900px;}
.y2f{bottom:811.399350px;}
.y21d{bottom:812.193150px;}
.y10a{bottom:812.242800px;}
.y137{bottom:813.358800px;}
.ybf{bottom:815.060850px;}
.y268{bottom:816.554850px;}
.y1aa{bottom:817.024650px;}
.y7f{bottom:817.166850px;}
.yde{bottom:819.037800px;}
.y1d1{bottom:819.116850px;}
.y1f7{bottom:821.475150px;}
.y183{bottom:827.735850px;}
.y15d{bottom:829.591200px;}
.y57{bottom:835.625850px;}
.y109{bottom:837.334800px;}
.y21c{bottom:837.699150px;}
.y136{bottom:838.450800px;}
.y2e{bottom:839.893350px;}
.y242{bottom:840.332850px;}
.y7{bottom:840.769650px;}
.y267{bottom:842.060850px;}
.ybe{bottom:842.068350px;}
.y1a9{bottom:843.720150px;}
.ydd{bottom:844.129800px;}
.y7e{bottom:844.174350px;}
.y1d0{bottom:845.812350px;}
.y1f6{bottom:847.800150px;}
.y182{bottom:853.768350px;}
.y15c{bottom:856.286700px;}
.ya1{bottom:859.130700px;}
.y2d{bottom:860.899350px;}
.y56{bottom:862.399350px;}
.y108{bottom:862.426800px;}
.y135{bottom:863.542800px;}
.y241{bottom:865.982850px;}
.y266{bottom:867.566850px;}
.ybd{bottom:869.075850px;}
.ydb{bottom:869.419800px;}
.y21b{bottom:869.577150px;}
.y1a8{bottom:870.415650px;}
.y7d{bottom:871.181850px;}
.y1cf{bottom:872.507850px;}
.y1f5{bottom:874.125150px;}
.y6{bottom:876.765150px;}
.y181{bottom:879.800850px;}
.y2c{bottom:881.905350px;}
.y15b{bottom:882.995700px;}
.y107{bottom:887.518800px;}
.y134{bottom:888.634800px;}
.y55{bottom:889.172850px;}
.y240{bottom:891.632850px;}
.y21a{bottom:895.083150px;}
.ybc{bottom:896.083350px;}
.yda{bottom:896.971200px;}
.y1a7{bottom:897.111150px;}
.y7c{bottom:898.189350px;}
.y1ce{bottom:899.203350px;}
.y265{bottom:899.444850px;}
.y1f4{bottom:900.450150px;}
.y2b{bottom:902.911350px;}
.y180{bottom:905.833350px;}
.y15a{bottom:909.691200px;}
.ya0{bottom:911.642550px;}
.y106{bottom:912.610800px;}
.y133{bottom:913.726800px;}
.y54{bottom:915.946350px;}
.y23f{bottom:917.282850px;}
.y219{bottom:920.589150px;}
.ybb{bottom:923.090850px;}
.y1a6{bottom:923.806650px;}
.y2a{bottom:923.917350px;}
.y264{bottom:924.950850px;}
.y7b{bottom:925.196850px;}
.y1cd{bottom:925.898850px;}
.y1f3{bottom:926.775150px;}
.y17f{bottom:931.865850px;}
.y5{bottom:935.275650px;}
.yd9{bottom:935.522700px;}
.y159{bottom:936.400200px;}
.y105{bottom:937.702800px;}
.y132{bottom:938.818800px;}
.y29{bottom:944.923350px;}
.y23e{bottom:949.304850px;}
.yba{bottom:950.098350px;}
.y263{bottom:950.456850px;}
.y1a5{bottom:950.502150px;}
.y7a{bottom:951.970350px;}
.y218{bottom:952.467150px;}
.y1cc{bottom:952.594350px;}
.y1f2{bottom:953.100150px;}
.y17e{bottom:957.898350px;}
.yd8{bottom:961.321200px;}
.y104{bottom:962.794800px;}
.y158{bottom:963.095700px;}
.y131{bottom:963.910800px;}
.y28{bottom:965.929350px;}
.y53{bottom:968.233050px;}
.y4{bottom:971.271150px;}
.y23d{bottom:974.954850px;}
.y9f{bottom:977.105850px;}
.y1a4{bottom:977.197650px;}
.y217{bottom:977.973150px;}
.y79{bottom:978.743850px;}
.y1cb{bottom:979.289850px;}
.y1f1{bottom:979.425150px;}
.y262{bottom:982.334850px;}
.y17d{bottom:983.930850px;}
.y27{bottom:986.935350px;}
.yd7{bottom:987.119700px;}
.y103{bottom:987.886800px;}
.y130{bottom:989.002800px;}
.y157{bottom:989.791200px;}
.y23c{bottom:1000.604850px;}
.y216{bottom:1003.479150px;}
.y1a3{bottom:1003.893150px;}
.y9e{bottom:1004.113350px;}
.y78{bottom:1005.517350px;}
.y1f0{bottom:1005.750150px;}
.y1ca{bottom:1005.985350px;}
.y261{bottom:1007.840850px;}
.y26{bottom:1007.941350px;}
.y17c{bottom:1009.963350px;}
.yd6{bottom:1012.918200px;}
.y102{bottom:1012.978800px;}
.y12f{bottom:1014.094800px;}
.y156{bottom:1016.486700px;}
.y25{bottom:1028.947350px;}
.y215{bottom:1028.985150px;}
.y1a2{bottom:1030.588650px;}
.y9d{bottom:1031.120850px;}
.y1ef{bottom:1032.075150px;}
.y77{bottom:1032.290850px;}
.y23b{bottom:1032.626850px;}
.y1c9{bottom:1032.680850px;}
.y260{bottom:1033.346850px;}
.y52{bottom:1033.724850px;}
.y17b{bottom:1035.995850px;}
.y101{bottom:1038.070800px;}
.yd5{bottom:1038.716700px;}
.y12e{bottom:1039.186800px;}
.y24{bottom:1049.953350px;}
.y1a1{bottom:1057.284150px;}
.y9c{bottom:1058.128350px;}
.y23a{bottom:1058.276850px;}
.y1ee{bottom:1058.400150px;}
.y76{bottom:1059.064350px;}
.y1c8{bottom:1059.376350px;}
.y214{bottom:1060.863150px;}
.y17a{bottom:1062.028350px;}
.y51{bottom:1062.218850px;}
.y100{bottom:1063.162800px;}
.y12d{bottom:1064.278800px;}
.y155{bottom:1064.446500px;}
.yd4{bottom:1064.515200px;}
.y25f{bottom:1065.224850px;}
.y23{bottom:1070.959350px;}
.y50{bottom:1083.224850px;}
.y239{bottom:1083.926850px;}
.y1a0{bottom:1083.979650px;}
.y1ed{bottom:1084.725150px;}
.y9b{bottom:1085.135850px;}
.y75{bottom:1085.837850px;}
.y1c7{bottom:1086.071850px;}
.y213{bottom:1086.369150px;}
.y179{bottom:1088.060850px;}
.yff{bottom:1088.254800px;}
.y12c{bottom:1089.550800px;}
.y25e{bottom:1090.730850px;}
.y22{bottom:1091.965350px;}
.y4f{bottom:1104.230850px;}
.y19f{bottom:1110.675150px;}
.y1ec{bottom:1111.050150px;}
.yd3{bottom:1111.575000px;}
.y212{bottom:1111.875150px;}
.y9a{bottom:1112.143350px;}
.y74{bottom:1112.611350px;}
.y1c6{bottom:1112.767350px;}
.y21{bottom:1112.971350px;}
.yfe{bottom:1113.346800px;}
.y178{bottom:1114.093350px;}
.y12b{bottom:1114.624800px;}
.y238{bottom:1115.948850px;}
.y25d{bottom:1116.236850px;}
.y154{bottom:1116.667350px;}
.y4e{bottom:1125.236850px;}
.y3{bottom:1130.928150px;}
.y20{bottom:1133.977350px;}
.yfd{bottom:1138.618800px;}
.y99{bottom:1139.150850px;}
.y73{bottom:1139.384850px;}
.y1c5{bottom:1139.462850px;}
.y177{bottom:1140.125850px;}
.y153{bottom:1141.412850px;}
.y237{bottom:1141.598850px;}
.y25c{bottom:1141.742850px;}
.y4d{bottom:1146.242850px;}
.yd2{bottom:1162.886850px;}
.y1f{bottom:1163.977350px;}
.y2{bottom:1165.128150px;}
.y72{bottom:1166.158350px;}
.y4c{bottom:1167.248850px;}
.y1e{bottom:1219.006800px;}
.h8{height:42.360000px;}
.h9{height:45.660000px;}
.h7{height:49.500000px;}
.ha{height:50.226000px;}
.h6{height:51.336000px;}
.h10{height:51.408000px;}
.hc{height:54.792000px;}
.h2{height:55.692000px;}
.he{height:59.358000px;}
.hf{height:59.892000px;}
.h13{height:60.078000px;}
.hb{height:63.540000px;}
.hd{height:67.488000px;}
.h5{height:80.712000px;}
.h3{height:81.510000px;}
.h4{height:82.080000px;}
.h12{height:99.432000px;}
.h11{height:102.816000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:85.027800px;}
.x2{left:87.165300px;}
.x4{left:97.793850px;}
.xb{left:106.299150px;}
.x6{left:117.999900px;}
.xa{left:120.219000px;}
.x25{left:130.104000px;}
.xd{left:136.377900px;}
.x2a{left:142.050750px;}
.xc{left:148.818900px;}
.x31{left:160.201500px;}
.x18{left:162.568950px;}
.x2f{left:172.243500px;}
.x2d{left:173.808300px;}
.x1c{left:178.264950px;}
.xf{left:187.984950px;}
.x2e{left:192.025500px;}
.x30{left:199.873500px;}
.x14{left:202.258950px;}
.x32{left:205.870950px;}
.x23{left:221.947650px;}
.x9{left:261.299850px;}
.x7{left:288.489900px;}
.x8{left:291.429900px;}
.x2b{left:306.031050px;}
.x24{left:310.363050px;}
.xe{left:316.144950px;}
.x1d{left:320.590950px;}
.x20{left:324.694950px;}
.x1f{left:327.898950px;}
.x28{left:330.384750px;}
.x29{left:335.082750px;}
.x1b{left:347.626950px;}
.x17{left:349.102950px;}
.x1a{left:352.774950px;}
.x16{left:358.066950px;}
.x27{left:368.696850px;}
.x19{left:373.546950px;}
.x22{left:374.844300px;}
.x1e{left:376.642950px;}
.x15{left:377.938950px;}
.x13{left:382.816950px;}
.x12{left:399.124950px;}
.x10{left:400.546950px;}
.x11{left:403.534950px;}
.x26{left:418.128000px;}
.x1{left:431.506050px;}
.x2c{left:432.571800px;}
.x5{left:488.979900px;}
.x21{left:576.190950px;}
@media print{
.v2{vertical-align:-23.136000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:23.088000pt;}
.v1{vertical-align:42.688000pt;}
.ls1{letter-spacing:-9.424000pt;}
.ls30{letter-spacing:-5.888000pt;}
.ls77{letter-spacing:-5.120000pt;}
.ls7c{letter-spacing:-5.056000pt;}
.ls24{letter-spacing:-4.992000pt;}
.ls83{letter-spacing:-4.672000pt;}
.ls5c{letter-spacing:-4.368000pt;}
.ls44{letter-spacing:-4.288000pt;}
.ls6d{letter-spacing:-4.229333pt;}
.ls70{letter-spacing:-4.160000pt;}
.ls2e{letter-spacing:-4.032000pt;}
.ls6a{letter-spacing:-3.904000pt;}
.ls29{letter-spacing:-3.776000pt;}
.ls25{letter-spacing:-3.648000pt;}
.ls6e{letter-spacing:-3.605333pt;}
.ls63{letter-spacing:-3.584000pt;}
.ls4d{letter-spacing:-3.536000pt;}
.ls5b{letter-spacing:-3.520000pt;}
.ls5d{letter-spacing:-3.466667pt;}
.ls7d{letter-spacing:-3.456000pt;}
.ls6b{letter-spacing:-3.392000pt;}
.ls47{letter-spacing:-3.328000pt;}
.ls41{letter-spacing:-3.264000pt;}
.ls23{letter-spacing:-3.189333pt;}
.ls42{letter-spacing:-3.136000pt;}
.ls71{letter-spacing:-3.050667pt;}
.ls37{letter-spacing:-3.008000pt;}
.ls80{letter-spacing:-2.944000pt;}
.ls59{letter-spacing:-2.880000pt;}
.ls3c{letter-spacing:-2.842667pt;}
.ls33{letter-spacing:-2.752000pt;}
.ls7b{letter-spacing:-2.704000pt;}
.ls68{letter-spacing:-2.688000pt;}
.ls43{letter-spacing:-2.624000pt;}
.ls61{letter-spacing:-2.565333pt;}
.ls4c{letter-spacing:-2.496000pt;}
.ls60{letter-spacing:-2.426667pt;}
.ls76{letter-spacing:-2.368000pt;}
.ls72{letter-spacing:-2.357333pt;}
.ls52{letter-spacing:-2.304000pt;}
.ls34{letter-spacing:-2.240000pt;}
.ls5f{letter-spacing:-2.218667pt;}
.ls27{letter-spacing:-2.176000pt;}
.ls62{letter-spacing:-2.112000pt;}
.ls7e{letter-spacing:-1.984000pt;}
.ls35{letter-spacing:-1.856000pt;}
.ls45{letter-spacing:-1.792000pt;}
.ls53{letter-spacing:-1.728000pt;}
.ls2b{letter-spacing:-1.664000pt;}
.ls3b{letter-spacing:-1.594667pt;}
.ls56{letter-spacing:-1.536000pt;}
.ls6c{letter-spacing:-1.525333pt;}
.ls2a{letter-spacing:-1.472000pt;}
.ls69{letter-spacing:-1.408000pt;}
.ls21{letter-spacing:-1.386667pt;}
.ls5a{letter-spacing:-1.344000pt;}
.ls64{letter-spacing:-1.280000pt;}
.ls5e{letter-spacing:-1.269333pt;}
.ls3a{letter-spacing:-1.248000pt;}
.ls2d{letter-spacing:-1.216000pt;}
.ls1f{letter-spacing:-1.178667pt;}
.ls4a{letter-spacing:-1.173333pt;}
.ls2c{letter-spacing:-1.152000pt;}
.ls6f{letter-spacing:-1.109333pt;}
.ls40{letter-spacing:-1.088000pt;}
.ls13{letter-spacing:-1.040000pt;}
.lse{letter-spacing:-1.024000pt;}
.ls17{letter-spacing:-0.970667pt;}
.ls10{letter-spacing:-0.960000pt;}
.ls4b{letter-spacing:-0.901333pt;}
.ls36{letter-spacing:-0.896000pt;}
.ls38{letter-spacing:-0.880000pt;}
.ls12{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.810667pt;}
.lsf{letter-spacing:-0.768000pt;}
.ls48{letter-spacing:-0.762667pt;}
.ls7{letter-spacing:-0.709333pt;}
.ls31{letter-spacing:-0.704000pt;}
.ls16{letter-spacing:-0.693333pt;}
.ls49{letter-spacing:-0.645333pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.624000pt;}
.ls18{letter-spacing:-0.597333pt;}
.lsa{letter-spacing:-0.586667pt;}
.ls3f{letter-spacing:-0.576000pt;}
.ls51{letter-spacing:-0.554667pt;}
.ls28{letter-spacing:-0.512000pt;}
.ls1a{letter-spacing:-0.485333pt;}
.ls32{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.416000pt;}
.ls6{letter-spacing:-0.405333pt;}
.lsd{letter-spacing:-0.400000pt;}
.ls7a{letter-spacing:-0.384000pt;}
.ls22{letter-spacing:-0.373333pt;}
.ls1e{letter-spacing:-0.346667pt;}
.ls55{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.277333pt;}
.ls2f{letter-spacing:-0.256000pt;}
.ls39{letter-spacing:-0.234667pt;}
.ls1d{letter-spacing:-0.208000pt;}
.ls14{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.176000pt;}
.ls3{letter-spacing:-0.101333pt;}
.ls75{letter-spacing:-0.085333pt;}
.ls73{letter-spacing:-0.069333pt;}
.ls81{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls57{letter-spacing:0.064000pt;}
.ls58{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.138667pt;}
.ls79{letter-spacing:0.192000pt;}
.ls54{letter-spacing:0.320000pt;}
.ls46{letter-spacing:0.384000pt;}
.ls3e{letter-spacing:0.512000pt;}
.ls66{letter-spacing:0.576000pt;}
.ls78{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.693333pt;}
.ls74{letter-spacing:0.762667pt;}
.ls65{letter-spacing:0.768000pt;}
.ls26{letter-spacing:0.896000pt;}
.ls5{letter-spacing:1.013333pt;}
.ls82{letter-spacing:1.024000pt;}
.ls7f{letter-spacing:1.088000pt;}
.ls9{letter-spacing:1.114667pt;}
.ls19{letter-spacing:1.178667pt;}
.ls67{letter-spacing:1.280000pt;}
.ls8{letter-spacing:1.408000pt;}
.ls15{letter-spacing:1.877333pt;}
.ls3d{letter-spacing:127.872000pt;}
.ls4f{letter-spacing:178.624000pt;}
.ls4e{letter-spacing:197.440000pt;}
.ls50{letter-spacing:216.384000pt;}
.ws13{word-spacing:-21.845333pt;}
.ws157{word-spacing:-19.882667pt;}
.ws17{word-spacing:-19.370667pt;}
.ws21{word-spacing:-19.200000pt;}
.wsc{word-spacing:-17.280000pt;}
.wse{word-spacing:-16.720000pt;}
.ws10{word-spacing:-16.640000pt;}
.ws44{word-spacing:-15.877333pt;}
.ws156{word-spacing:-15.808000pt;}
.ws0{word-spacing:-15.738667pt;}
.ws16a{word-spacing:-15.616000pt;}
.ws174{word-spacing:-15.552000pt;}
.ws1e{word-spacing:-15.461333pt;}
.ws15c{word-spacing:-15.296000pt;}
.ws18{word-spacing:-15.253333pt;}
.ws7c{word-spacing:-15.040000pt;}
.ws1d{word-spacing:-14.837333pt;}
.ws171{word-spacing:-14.768000pt;}
.ws11e{word-spacing:-14.656000pt;}
.wsb{word-spacing:-14.629333pt;}
.ws16d{word-spacing:-14.592000pt;}
.ws26{word-spacing:-14.528000pt;}
.ws154{word-spacing:-14.490667pt;}
.ws130{word-spacing:-14.400000pt;}
.ws16c{word-spacing:-14.336000pt;}
.ws2f{word-spacing:-14.272000pt;}
.ws149{word-spacing:-14.213333pt;}
.ws89{word-spacing:-14.144000pt;}
.ws33{word-spacing:-14.080000pt;}
.ws16{word-spacing:-14.074667pt;}
.wsf{word-spacing:-14.016000pt;}
.ws8c{word-spacing:-14.005333pt;}
.wsd{word-spacing:-13.888000pt;}
.ws4f{word-spacing:-13.866667pt;}
.ws15a{word-spacing:-13.824000pt;}
.ws153{word-spacing:-13.797333pt;}
.ws20{word-spacing:-13.658667pt;}
.ws75{word-spacing:-13.632000pt;}
.ws59{word-spacing:-13.568000pt;}
.ws148{word-spacing:-13.520000pt;}
.ws2d{word-spacing:-13.504000pt;}
.ws55{word-spacing:-13.440000pt;}
.ws42{word-spacing:-13.376000pt;}
.ws3d{word-spacing:-13.312000pt;}
.ws15d{word-spacing:-13.248000pt;}
.ws169{word-spacing:-13.184000pt;}
.ws172{word-spacing:-13.120000pt;}
.ws167{word-spacing:-12.992000pt;}
.ws31{word-spacing:-12.864000pt;}
.ws8f{word-spacing:-12.800000pt;}
.ws83{word-spacing:-12.789333pt;}
.wsbf{word-spacing:-12.736000pt;}
.ws3a{word-spacing:-12.672000pt;}
.ws11d{word-spacing:-12.608000pt;}
.ws43{word-spacing:-12.554667pt;}
.ws22{word-spacing:-12.549333pt;}
.ws175{word-spacing:-12.544000pt;}
.ws151{word-spacing:-12.480000pt;}
.ws99{word-spacing:-12.352000pt;}
.ws166{word-spacing:-12.341333pt;}
.ws159{word-spacing:-12.288000pt;}
.ws84{word-spacing:-12.144000pt;}
.ws137{word-spacing:-12.032000pt;}
.ws6b{word-spacing:-11.904000pt;}
.ws35{word-spacing:-11.776000pt;}
.ws16b{word-spacing:-11.712000pt;}
.ws40{word-spacing:-11.520000pt;}
.ws5f{word-spacing:-11.392000pt;}
.ws173{word-spacing:-11.264000pt;}
.wsdf{word-spacing:-11.200000pt;}
.ws158{word-spacing:-11.072000pt;}
.ws10d{word-spacing:-11.008000pt;}
.ws12a{word-spacing:-10.752000pt;}
.ws114{word-spacing:-10.677333pt;}
.ws13e{word-spacing:-10.496000pt;}
.ws15b{word-spacing:-10.368000pt;}
.ws116{word-spacing:-10.304000pt;}
.ws168{word-spacing:-9.600000pt;}
.ws115{word-spacing:-9.256485pt;}
.ws36{word-spacing:-8.640000pt;}
.ws7{word-spacing:-1.408000pt;}
.ws147{word-spacing:-1.280000pt;}
.ws19{word-spacing:-1.178667pt;}
.ws8{word-spacing:-1.114667pt;}
.ws48{word-spacing:-0.896000pt;}
.ws16f{word-spacing:-0.640000pt;}
.ws15{word-spacing:-0.208000pt;}
.ws164{word-spacing:-0.192000pt;}
.ws152{word-spacing:-0.069333pt;}
.ws176{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws177{word-spacing:0.064000pt;}
.ws150{word-spacing:0.069333pt;}
.ws3{word-spacing:0.101333pt;}
.wsa{word-spacing:0.176000pt;}
.ws14{word-spacing:0.192000pt;}
.ws4b{word-spacing:0.234667pt;}
.ws162{word-spacing:0.256000pt;}
.ws1c{word-spacing:0.277333pt;}
.ws15e{word-spacing:0.320000pt;}
.ws45{word-spacing:0.373333pt;}
.ws144{word-spacing:0.416000pt;}
.ws15f{word-spacing:0.448000pt;}
.ws1b{word-spacing:0.485333pt;}
.ws16e{word-spacing:0.512000pt;}
.ws10e{word-spacing:0.554667pt;}
.ws10f{word-spacing:0.576000pt;}
.ws9{word-spacing:0.586667pt;}
.ws163{word-spacing:0.640000pt;}
.ws1a{word-spacing:0.693333pt;}
.ws113{word-spacing:0.704000pt;}
.ws88{word-spacing:0.762667pt;}
.ws112{word-spacing:0.768000pt;}
.ws12{word-spacing:0.832000pt;}
.ws87{word-spacing:0.880000pt;}
.ws4a{word-spacing:0.896000pt;}
.ws146{word-spacing:0.960000pt;}
.ws11{word-spacing:1.024000pt;}
.ws46{word-spacing:1.040000pt;}
.ws85{word-spacing:1.088000pt;}
.ws14c{word-spacing:1.109333pt;}
.ws165{word-spacing:1.152000pt;}
.ws1f{word-spacing:1.178667pt;}
.ws49{word-spacing:1.216000pt;}
.ws4c{word-spacing:1.248000pt;}
.ws140{word-spacing:1.269333pt;}
.ws5{word-spacing:1.418667pt;}
.ws155{word-spacing:1.450667pt;}
.ws179{word-spacing:1.536000pt;}
.ws4d{word-spacing:1.594667pt;}
.ws6{word-spacing:1.722667pt;}
.ws4{word-spacing:1.824000pt;}
.ws145{word-spacing:2.112000pt;}
.ws141{word-spacing:2.218667pt;}
.ws14f{word-spacing:2.357333pt;}
.ws142{word-spacing:2.426667pt;}
.ws8a{word-spacing:2.496000pt;}
.ws143{word-spacing:2.565333pt;}
.ws111{word-spacing:2.752000pt;}
.ws4e{word-spacing:2.842667pt;}
.ws161{word-spacing:3.008000pt;}
.ws14e{word-spacing:3.050667pt;}
.ws110{word-spacing:3.328000pt;}
.ws170{word-spacing:3.456000pt;}
.ws13f{word-spacing:3.466667pt;}
.ws8b{word-spacing:3.536000pt;}
.ws14a{word-spacing:3.605333pt;}
.ws47{word-spacing:3.648000pt;}
.ws178{word-spacing:3.776000pt;}
.ws14d{word-spacing:4.160000pt;}
.ws14b{word-spacing:4.229333pt;}
.ws17a{word-spacing:4.672000pt;}
.ws160{word-spacing:5.120000pt;}
.ws86{word-spacing:5.888000pt;}
.ws1{word-spacing:9.424000pt;}
.ws6c{word-spacing:71.712000pt;}
.ws56{word-spacing:76.019200pt;}
.ws76{word-spacing:76.320000pt;}
.ws60{word-spacing:76.454400pt;}
.ws63{word-spacing:76.870400pt;}
.ws119{word-spacing:77.664000pt;}
.ws52{word-spacing:78.009600pt;}
.ws80{word-spacing:78.278400pt;}
.ws79{word-spacing:78.963200pt;}
.ws66{word-spacing:80.934400pt;}
.ws7d{word-spacing:81.216000pt;}
.ws6f{word-spacing:82.048000pt;}
.ws72{word-spacing:82.124800pt;}
.ws5c{word-spacing:82.560000pt;}
.ws68{word-spacing:83.782400pt;}
.ws73{word-spacing:85.504000pt;}
.ws57{word-spacing:86.112000pt;}
.ws69{word-spacing:86.432000pt;}
.ws64{word-spacing:87.616000pt;}
.ws6d{word-spacing:87.808000pt;}
.ws61{word-spacing:88.640000pt;}
.ws5a{word-spacing:89.388800pt;}
.ws67{word-spacing:89.408000pt;}
.ws5d{word-spacing:89.856000pt;}
.ws70{word-spacing:89.868800pt;}
.ws77{word-spacing:90.476800pt;}
.ws58{word-spacing:92.089600pt;}
.ws53{word-spacing:92.339200pt;}
.ws81{word-spacing:92.371200pt;}
.ws5b{word-spacing:92.928000pt;}
.ws54{word-spacing:93.395200pt;}
.ws74{word-spacing:94.016000pt;}
.ws7b{word-spacing:95.366400pt;}
.ws82{word-spacing:95.737600pt;}
.ws7a{word-spacing:95.884800pt;}
.ws7e{word-spacing:96.128000pt;}
.ws71{word-spacing:96.620800pt;}
.ws78{word-spacing:96.992000pt;}
.ws65{word-spacing:97.024000pt;}
.ws62{word-spacing:97.612800pt;}
.ws6e{word-spacing:98.028800pt;}
.ws7f{word-spacing:99.219200pt;}
.ws5e{word-spacing:99.513600pt;}
.ws6a{word-spacing:100.051200pt;}
.ws118{word-spacing:102.912000pt;}
.ws11c{word-spacing:103.776000pt;}
.ws132{word-spacing:104.230400pt;}
.ws139{word-spacing:105.990400pt;}
.ws125{word-spacing:122.496000pt;}
.ws128{word-spacing:123.929600pt;}
.wse1{word-spacing:124.025600pt;}
.ws97{word-spacing:124.300800pt;}
.ws13a{word-spacing:124.390400pt;}
.ws105{word-spacing:124.889600pt;}
.wsc2{word-spacing:125.203200pt;}
.wscf{word-spacing:125.440000pt;}
.wsd7{word-spacing:125.555200pt;}
.ws10a{word-spacing:126.009600pt;}
.ws12b{word-spacing:126.208000pt;}
.wsb6{word-spacing:126.886400pt;}
.wsf4{word-spacing:126.982400pt;}
.wsa2{word-spacing:127.046400pt;}
.ws100{word-spacing:127.302400pt;}
.wsfb{word-spacing:127.366400pt;}
.wsb1{word-spacing:127.488000pt;}
.wsce{word-spacing:127.507200pt;}
.ws9d{word-spacing:127.590400pt;}
.wsc9{word-spacing:127.680000pt;}
.wsc8{word-spacing:127.699200pt;}
.wse6{word-spacing:127.782400pt;}
.wsb0{word-spacing:128.051200pt;}
.wsa7{word-spacing:128.134400pt;}
.wseb{word-spacing:128.358400pt;}
.wsa8{word-spacing:128.793600pt;}
.wsdc{word-spacing:128.838400pt;}
.ws133{word-spacing:129.126400pt;}
.wsf9{word-spacing:129.625600pt;}
.wsef{word-spacing:129.779200pt;}
.wsfc{word-spacing:130.342400pt;}
.wsac{word-spacing:130.393600pt;}
.wsad{word-spacing:130.489600pt;}
.ws106{word-spacing:130.617600pt;}
.ws101{word-spacing:130.662400pt;}
.ws9e{word-spacing:130.790400pt;}
.wsf5{word-spacing:130.822400pt;}
.wsb7{word-spacing:130.982400pt;}
.wse2{word-spacing:131.180800pt;}
.wsdd{word-spacing:131.257600pt;}
.wsd8{word-spacing:131.302400pt;}
.wsbc{word-spacing:131.820800pt;}
.ws96{word-spacing:132.678400pt;}
.wsa3{word-spacing:133.222400pt;}
.wsc3{word-spacing:134.009600pt;}
.wsea{word-spacing:134.214400pt;}
.wsbd{word-spacing:134.400000pt;}
.ws11f{word-spacing:134.656000pt;}
.wsf0{word-spacing:136.217600pt;}
.ws10b{word-spacing:136.256000pt;}
.ws129{word-spacing:138.540800pt;}
.ws12c{word-spacing:138.624000pt;}
.ws11b{word-spacing:140.544000pt;}
.ws126{word-spacing:140.928000pt;}
.ws109{word-spacing:143.008000pt;}
.wse4{word-spacing:143.180800pt;}
.ws9b{word-spacing:143.392000pt;}
.wsc7{word-spacing:143.404800pt;}
.ws103{word-spacing:143.500800pt;}
.wscd{word-spacing:144.416000pt;}
.wsaf{word-spacing:144.544000pt;}
.wsb4{word-spacing:144.620800pt;}
.wsaa{word-spacing:145.408000pt;}
.wsc6{word-spacing:145.536000pt;}
.ws13c{word-spacing:146.348800pt;}
.wscc{word-spacing:146.726400pt;}
.wsba{word-spacing:146.752000pt;}
.wsa0{word-spacing:146.867200pt;}
.wsf2{word-spacing:147.315200pt;}
.ws51{word-spacing:147.712000pt;}
.wsc0{word-spacing:147.756800pt;}
.wsa5{word-spacing:147.820800pt;}
.wsd6{word-spacing:147.852800pt;}
.wse5{word-spacing:147.942400pt;}
.wsf3{word-spacing:148.185600pt;}
.wsfe{word-spacing:148.204800pt;}
.wsc1{word-spacing:148.467200pt;}
.wsd1{word-spacing:148.588800pt;}
.wsa1{word-spacing:148.665600pt;}
.ws9c{word-spacing:148.684800pt;}
.ws122{word-spacing:148.800000pt;}
.wse0{word-spacing:148.966400pt;}
.ws104{word-spacing:148.985600pt;}
.wsf8{word-spacing:149.049600pt;}
.wsb5{word-spacing:149.241600pt;}
.wsa6{word-spacing:149.337600pt;}
.wsbb{word-spacing:149.401600pt;}
.wsd2{word-spacing:149.465600pt;}
.wsff{word-spacing:149.497600pt;}
.wsab{word-spacing:149.516800pt;}
.ws94{word-spacing:149.548800pt;}
.wsed{word-spacing:149.747200pt;}
.wsdb{word-spacing:150.099200pt;}
.ws13d{word-spacing:150.982400pt;}
.wsd5{word-spacing:151.148800pt;}
.wse9{word-spacing:151.545600pt;}
.ws95{word-spacing:151.673600pt;}
.ws135{word-spacing:152.793600pt;}
.wsda{word-spacing:153.152000pt;}
.wsee{word-spacing:153.267200pt;}
.wse8{word-spacing:153.536000pt;}
.ws108{word-spacing:154.752000pt;}
.ws120{word-spacing:158.976000pt;}
.wsbe{word-spacing:161.452800pt;}
.wsec{word-spacing:161.824000pt;}
.ws136{word-spacing:162.265600pt;}
.ws12f{word-spacing:162.688000pt;}
.ws123{word-spacing:163.712000pt;}
.wsca{word-spacing:164.198400pt;}
.ws11a{word-spacing:164.492800pt;}
.wsfd{word-spacing:165.363200pt;}
.ws102{word-spacing:165.587200pt;}
.ws92{word-spacing:165.760000pt;}
.wsd0{word-spacing:165.766400pt;}
.wsae{word-spacing:165.811200pt;}
.wsa9{word-spacing:165.862400pt;}
.ws9f{word-spacing:166.502400pt;}
.wse7{word-spacing:166.867200pt;}
.wsfa{word-spacing:166.995200pt;}
.ws98{word-spacing:167.040000pt;}
.wsd3{word-spacing:167.219200pt;}
.wsb8{word-spacing:167.283200pt;}
.wsf6{word-spacing:167.366400pt;}
.ws107{word-spacing:167.398400pt;}
.wsd9{word-spacing:167.507200pt;}
.ws10c{word-spacing:168.153600pt;}
.wsde{word-spacing:169.030400pt;}
.wsb2{word-spacing:169.190400pt;}
.wsc4{word-spacing:170.336000pt;}
.wsf1{word-spacing:171.424000pt;}
.wse3{word-spacing:171.968000pt;}
.wsa4{word-spacing:172.096000pt;}
.ws12e{word-spacing:180.416000pt;}
.ws91{word-spacing:184.576000pt;}
.ws131{word-spacing:203.622400pt;}
.ws127{word-spacing:204.928000pt;}
.ws13b{word-spacing:207.014400pt;}
.ws134{word-spacing:216.384000pt;}
.ws121{word-spacing:220.032000pt;}
.ws12d{word-spacing:222.912000pt;}
.ws8d{word-spacing:226.796800pt;}
.ws32{word-spacing:231.385600pt;}
.ws2a{word-spacing:233.152000pt;}
.ws34{word-spacing:233.881600pt;}
.ws3c{word-spacing:235.340800pt;}
.ws25{word-spacing:235.347200pt;}
.ws41{word-spacing:236.748800pt;}
.ws37{word-spacing:238.604800pt;}
.ws2e{word-spacing:240.288000pt;}
.ws38{word-spacing:241.024000pt;}
.ws3f{word-spacing:242.931200pt;}
.ws39{word-spacing:243.251200pt;}
.ws28{word-spacing:244.723200pt;}
.ws30{word-spacing:246.393600pt;}
.ws2c{word-spacing:264.102400pt;}
.ws117{word-spacing:284.409600pt;}
.ws8e{word-spacing:284.550400pt;}
.ws138{word-spacing:303.756800pt;}
.ws124{word-spacing:310.880000pt;}
.wsd4{word-spacing:329.926400pt;}
.ws3b{word-spacing:364.966400pt;}
.ws3e{word-spacing:367.718400pt;}
.wscb{word-spacing:369.747200pt;}
.wsc5{word-spacing:378.310400pt;}
.ws2b{word-spacing:401.862400pt;}
.ws29{word-spacing:446.240000pt;}
.ws90{word-spacing:449.273600pt;}
.ws24{word-spacing:451.628800pt;}
.ws27{word-spacing:462.310400pt;}
.ws9a{word-spacing:480.416000pt;}
.wsb3{word-spacing:503.084800pt;}
.wsb9{word-spacing:524.774400pt;}
.ws93{word-spacing:535.948800pt;}
.wsf7{word-spacing:540.172800pt;}
.ws50{word-spacing:545.836800pt;}
.ws23{word-spacing:601.580800pt;}
._c{margin-left:-8.778133pt;}
._b{margin-left:-7.881067pt;}
._a{margin-left:-6.545067pt;}
._8{margin-left:-5.489067pt;}
._9{margin-left:-3.805867pt;}
._3{margin-left:-2.796800pt;}
._4{margin-left:-1.053867pt;}
._0{width:0.915200pt;}
._5{width:1.894933pt;}
._7{width:2.898133pt;}
._3a{width:3.807467pt;}
._6{width:4.732267pt;}
._d{width:5.926400pt;}
._1e{width:7.530133pt;}
._1{width:8.420800pt;}
._2{width:9.687467pt;}
._1a{width:88.108800pt;}
._e{width:91.391467pt;}
._20{width:109.032000pt;}
._32{width:112.761067pt;}
._2b{width:139.793067pt;}
._36{width:143.761067pt;}
._31{width:153.390933pt;}
._2c{width:160.402667pt;}
._1c{width:164.819200pt;}
._35{width:174.884267pt;}
._34{width:176.706133pt;}
._39{width:184.030400pt;}
._30{width:214.007467pt;}
._2e{width:231.142933pt;}
._38{width:234.040000pt;}
._14{width:248.300800pt;}
._16{width:278.033067pt;}
._12{width:279.918933pt;}
._15{width:293.698133pt;}
._10{width:300.215467pt;}
._11{width:311.799467pt;}
._33{width:325.585067pt;}
._2f{width:358.638933pt;}
._13{width:365.713067pt;}
._25{width:383.093333pt;}
._f{width:384.494933pt;}
._2a{width:392.770133pt;}
._29{width:394.989867pt;}
._22{width:406.216000pt;}
._37{width:415.668800pt;}
._24{width:469.503467pt;}
._2d{width:507.994667pt;}
._28{width:560.994667pt;}
._23{width:577.794133pt;}
._19{width:606.673067pt;}
._1d{width:676.544000pt;}
._26{width:689.942933pt;}
._1b{width:698.237333pt;}
._17{width:726.979200pt;}
._27{width:756.561067pt;}
._21{width:760.857600pt;}
._18{width:803.606933pt;}
._1f{width:936.144533pt;}
.fs8{font-size:40.421333pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.333333pt;}
.fs7{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs6{font-size:85.333333pt;}
.fs1{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:53.778133pt;}
.y1d{bottom:59.103600pt;}
.y1c{bottom:90.063733pt;}
.y152{bottom:108.178533pt;}
.yfc{bottom:108.622400pt;}
.y1eb{bottom:109.199867pt;}
.y4b{bottom:109.270533pt;}
.y1c4{bottom:109.281467pt;}
.y19e{bottom:111.145200pt;}
.y236{bottom:115.501467pt;}
.y211{bottom:116.946800pt;}
.y71{bottom:124.013200pt;}
.y98{bottom:126.203867pt;}
.yb9{bottom:127.106000pt;}
.y4a{bottom:127.942533pt;}
.y151{bottom:130.174533pt;}
.yfb{bottom:131.554400pt;}
.y25b{bottom:131.650533pt;}
.y1c3{bottom:133.010800pt;}
.y1ea{bottom:133.206533pt;}
.y19d{bottom:134.285200pt;}
.y176{bottom:136.611467pt;}
.y235{bottom:138.173467pt;}
.y210{bottom:140.953467pt;}
.y49{bottom:146.614533pt;}
.y70{bottom:147.811867pt;}
.y97{bottom:150.210533pt;}
.yb8{bottom:151.112667pt;}
.y150{bottom:152.170533pt;}
.y25a{bottom:154.450533pt;}
.yfa{bottom:154.486400pt;}
.y1c2{bottom:156.740133pt;}
.y1e9{bottom:157.213200pt;}
.y19c{bottom:157.425200pt;}
.y14{bottom:162.035333pt;}
.y17{bottom:162.702000pt;}
.y175{bottom:164.141600pt;}
.y20f{bottom:164.960133pt;}
.y48{bottom:165.286533pt;}
.y234{bottom:166.509467pt;}
.y6f{bottom:171.610533pt;}
.y14f{bottom:174.166533pt;}
.y96{bottom:174.217200pt;}
.yb7{bottom:175.119333pt;}
.y259{bottom:177.250533pt;}
.yf9{bottom:177.418400pt;}
.y1c1{bottom:180.469467pt;}
.y19b{bottom:180.565200pt;}
.y13{bottom:180.702000pt;}
.y1e8{bottom:181.219867pt;}
.y16{bottom:181.368667pt;}
.y47{bottom:183.958533pt;}
.y174{bottom:186.445600pt;}
.y20e{bottom:188.966800pt;}
.y233{bottom:189.181467pt;}
.y6e{bottom:195.409200pt;}
.y14e{bottom:196.162533pt;}
.y95{bottom:198.223867pt;}
.yb6{bottom:199.126000pt;}
.y15{bottom:200.035333pt;}
.yf8{bottom:200.350400pt;}
.y12{bottom:200.702000pt;}
.y46{bottom:202.630533pt;}
.y19a{bottom:203.705200pt;}
.y1c0{bottom:204.198800pt;}
.y11e{bottom:204.236800pt;}
.y1e7{bottom:205.226533pt;}
.y258{bottom:205.714533pt;}
.y173{bottom:208.749600pt;}
.yd1{bottom:209.382267pt;}
.y232{bottom:211.853467pt;}
.y20d{bottom:212.973467pt;}
.y14d{bottom:218.158533pt;}
.y6d{bottom:219.207867pt;}
.y45{bottom:221.302533pt;}
.y94{bottom:222.230533pt;}
.yb5{bottom:223.132667pt;}
.yf7{bottom:223.282400pt;}
.y199{bottom:226.845200pt;}
.y1bf{bottom:227.928133pt;}
.y11d{bottom:228.243467pt;}
.y257{bottom:228.514533pt;}
.y1e6{bottom:229.233200pt;}
.y172{bottom:231.053600pt;}
.yd0{bottom:233.388933pt;}
.y20c{bottom:236.980133pt;}
.y44{bottom:239.974533pt;}
.y231{bottom:240.189467pt;}
.y6c{bottom:243.006533pt;}
.y12a{bottom:244.536667pt;}
.yf6{bottom:246.214400pt;}
.y93{bottom:246.237200pt;}
.yb4{bottom:247.139333pt;}
.y198{bottom:249.985200pt;}
.y256{bottom:251.314533pt;}
.y14c{bottom:251.497067pt;}
.y1be{bottom:251.657467pt;}
.y11c{bottom:252.250133pt;}
.y1e5{bottom:253.239867pt;}
.y171{bottom:253.357600pt;}
.y1b{bottom:254.520933pt;}
.ycf{bottom:257.395600pt;}
.y43{bottom:258.646533pt;}
.y20b{bottom:260.986800pt;}
.y230{bottom:262.861467pt;}
.y6b{bottom:266.805200pt;}
.y129{bottom:268.543333pt;}
.yf5{bottom:269.146400pt;}
.y92{bottom:270.243867pt;}
.yb3{bottom:271.146000pt;}
.y197{bottom:273.125200pt;}
.y1bd{bottom:275.386800pt;}
.y170{bottom:275.821600pt;}
.y11b{bottom:276.256800pt;}
.y14b{bottom:276.905600pt;}
.y1a{bottom:277.182000pt;}
.y1e4{bottom:277.246533pt;}
.y255{bottom:279.778533pt;}
.yce{bottom:281.402267pt;}
.y20a{bottom:284.993467pt;}
.y42{bottom:285.313200pt;}
.y22f{bottom:285.533467pt;}
.y6a{bottom:290.603867pt;}
.yf4{bottom:292.078400pt;}
.y128{bottom:292.550000pt;}
.y91{bottom:294.250533pt;}
.yb2{bottom:295.152667pt;}
.y196{bottom:296.265200pt;}
.y19{bottom:297.182000pt;}
.y16f{bottom:298.125600pt;}
.y1bc{bottom:299.116133pt;}
.y14a{bottom:299.209600pt;}
.y11a{bottom:300.263467pt;}
.y1e3{bottom:300.975867pt;}
.y254{bottom:302.578533pt;}
.ycd{bottom:305.408933pt;}
.y209{bottom:309.000133pt;}
.y22e{bottom:313.869467pt;}
.y69{bottom:314.402533pt;}
.y127{bottom:316.556667pt;}
.y90{bottom:318.257200pt;}
.yb1{bottom:319.159333pt;}
.y195{bottom:319.405200pt;}
.y18{bottom:321.182000pt;}
.y149{bottom:321.513600pt;}
.y16e{bottom:322.679733pt;}
.y1bb{bottom:322.845467pt;}
.y119{bottom:324.270133pt;}
.y1e2{bottom:324.705200pt;}
.y253{bottom:325.378533pt;}
.yf3{bottom:326.350267pt;}
.ycc{bottom:329.415600pt;}
.y208{bottom:332.400133pt;}
.y22d{bottom:336.541467pt;}
.y41{bottom:337.238533pt;}
.y68{bottom:338.201200pt;}
.y126{bottom:340.563333pt;}
.y8f{bottom:342.263867pt;}
.y194{bottom:342.545200pt;}
.yb0{bottom:343.166000pt;}
.y148{bottom:343.817600pt;}
.y1ba{bottom:346.574800pt;}
.y118{bottom:348.276800pt;}
.y1e1{bottom:348.434533pt;}
.yf2{bottom:352.801600pt;}
.ycb{bottom:353.422267pt;}
.y252{bottom:353.842533pt;}
.y207{bottom:355.800133pt;}
.y277{bottom:357.426533pt;}
.y16d{bottom:357.745067pt;}
.y22c{bottom:359.213467pt;}
.y67{bottom:361.999867pt;}
.y40{bottom:362.566533pt;}
.y125{bottom:364.570000pt;}
.y193{bottom:365.685200pt;}
.y147{bottom:366.121600pt;}
.y8e{bottom:366.270533pt;}
.yaf{bottom:367.172667pt;}
.y1b9{bottom:370.304133pt;}
.y1e0{bottom:372.163867pt;}
.y117{bottom:372.283467pt;}
.yf1{bottom:374.129600pt;}
.y251{bottom:376.642533pt;}
.yca{bottom:377.428933pt;}
.y206{bottom:379.200133pt;}
.y276{bottom:380.098533pt;}
.y3f{bottom:381.238533pt;}
.y16c{bottom:381.474400pt;}
.y22b{bottom:381.885467pt;}
.y66{bottom:385.798533pt;}
.y146{bottom:388.425600pt;}
.y124{bottom:388.576667pt;}
.y192{bottom:388.825200pt;}
.y8d{bottom:390.277200pt;}
.yae{bottom:391.179333pt;}
.y1b8{bottom:394.033467pt;}
.yf0{bottom:395.457600pt;}
.y1df{bottom:395.893200pt;}
.y116{bottom:396.290133pt;}
.y3e{bottom:399.910533pt;}
.yc9{bottom:401.435600pt;}
.y205{bottom:402.600133pt;}
.y275{bottom:402.770533pt;}
.y250{bottom:405.106533pt;}
.y16b{bottom:405.203733pt;}
.y65{bottom:409.597200pt;}
.y22a{bottom:410.221467pt;}
.y145{bottom:410.729600pt;}
.y191{bottom:411.965200pt;}
.y123{bottom:412.583333pt;}
.y8c{bottom:414.283867pt;}
.yad{bottom:415.186000pt;}
.yeb{bottom:417.729600pt;}
.yef{bottom:417.745600pt;}
.y1b7{bottom:417.762800pt;}
.y3d{bottom:418.582533pt;}
.y1de{bottom:419.622533pt;}
.y115{bottom:420.296800pt;}
.y204{bottom:426.000133pt;}
.y24f{bottom:427.906533pt;}
.y16a{bottom:428.933067pt;}
.y274{bottom:431.106533pt;}
.y229{bottom:432.893467pt;}
.y144{bottom:433.033600pt;}
.y64{bottom:433.395867pt;}
.y190{bottom:435.105200pt;}
.y122{bottom:436.590000pt;}
.y3c{bottom:437.254533pt;}
.y8b{bottom:438.290533pt;}
.yee{bottom:439.073600pt;}
.yac{bottom:439.192667pt;}
.y1b6{bottom:441.492133pt;}
.y1dd{bottom:443.351867pt;}
.y114{bottom:444.303467pt;}
.yc8{bottom:444.333200pt;}
.y203{bottom:449.400133pt;}
.y24e{bottom:450.706533pt;}
.y169{bottom:452.662400pt;}
.y273{bottom:453.778533pt;}
.y143{bottom:455.337600pt;}
.y228{bottom:455.565467pt;}
.y3b{bottom:455.926533pt;}
.y63{bottom:457.194533pt;}
.y18f{bottom:458.245200pt;}
.y121{bottom:460.596667pt;}
.yed{bottom:461.361600pt;}
.y8a{bottom:462.297200pt;}
.yab{bottom:463.199333pt;}
.y11{bottom:464.665200pt;}
.y1b5{bottom:465.221467pt;}
.y1dc{bottom:467.081200pt;}
.y113{bottom:468.310133pt;}
.y202{bottom:472.800133pt;}
.y3a{bottom:474.598533pt;}
.y168{bottom:476.391733pt;}
.y272{bottom:476.450533pt;}
.y142{bottom:477.641600pt;}
.y24d{bottom:479.170533pt;}
.y62{bottom:480.993200pt;}
.y18e{bottom:481.225200pt;}
.y10{bottom:482.001200pt;}
.yec{bottom:482.689600pt;}
.y227{bottom:483.901467pt;}
.y120{bottom:484.603333pt;}
.y89{bottom:486.303867pt;}
.y1b4{bottom:488.950800pt;}
.y1db{bottom:490.810533pt;}
.yc7{bottom:490.977067pt;}
.y112{bottom:492.316800pt;}
.y39{bottom:493.270533pt;}
.y201{bottom:496.200133pt;}
.yf{bottom:499.337200pt;}
.y141{bottom:499.945600pt;}
.y167{bottom:500.121067pt;}
.y24c{bottom:501.970533pt;}
.y18d{bottom:504.365200pt;}
.y271{bottom:504.786533pt;}
.y61{bottom:504.791867pt;}
.yea{bottom:504.993600pt;}
.yaa{bottom:506.097067pt;}
.y226{bottom:506.573467pt;}
.y88{bottom:510.310533pt;}
.y38{bottom:511.942533pt;}
.y1b3{bottom:512.680133pt;}
.y1da{bottom:514.539867pt;}
.yc6{bottom:514.983733pt;}
.y111{bottom:516.323467pt;}
.ye{bottom:516.673200pt;}
.y200{bottom:519.600133pt;}
.y140{bottom:522.249600pt;}
.y166{bottom:523.850400pt;}
.y24b{bottom:524.770533pt;}
.ye9{bottom:527.297600pt;}
.y270{bottom:527.458533pt;}
.y11f{bottom:527.500933pt;}
.y18c{bottom:527.505200pt;}
.y60{bottom:528.590533pt;}
.y225{bottom:529.245467pt;}
.y37{bottom:530.614533pt;}
.yd{bottom:534.009200pt;}
.y87{bottom:534.317200pt;}
.y1b2{bottom:536.409467pt;}
.y1d9{bottom:538.269200pt;}
.ye6{bottom:538.465600pt;}
.yc5{bottom:538.990400pt;}
.y110{bottom:540.330133pt;}
.y1ff{bottom:543.000133pt;}
.y13f{bottom:544.553600pt;}
.y165{bottom:547.579733pt;}
.y36{bottom:549.286533pt;}
.ye8{bottom:549.601600pt;}
.y26f{bottom:550.130533pt;}
.y18b{bottom:550.645200pt;}
.yc{bottom:551.345200pt;}
.y224{bottom:551.917467pt;}
.y5f{bottom:552.389200pt;}
.ya9{bottom:552.727467pt;}
.y24a{bottom:553.234533pt;}
.y86{bottom:558.323867pt;}
.y1b1{bottom:560.138800pt;}
.y1d8{bottom:561.998533pt;}
.yc4{bottom:562.997067pt;}
.y1fe{bottom:566.400133pt;}
.y13e{bottom:566.857600pt;}
.y35{bottom:567.958533pt;}
.yb{bottom:568.681200pt;}
.y164{bottom:571.309067pt;}
.ye7{bottom:571.905600pt;}
.y26e{bottom:572.802533pt;}
.y18a{bottom:573.785200pt;}
.y249{bottom:576.034533pt;}
.y5e{bottom:576.187867pt;}
.ya8{bottom:576.734133pt;}
.y223{bottom:580.253467pt;}
.y85{bottom:582.330533pt;}
.y10f{bottom:583.227733pt;}
.y1b0{bottom:583.868133pt;}
.y1d7{bottom:585.727867pt;}
.y34{bottom:586.630533pt;}
.yc3{bottom:587.003733pt;}
.y13d{bottom:589.161600pt;}
.y1fd{bottom:589.800133pt;}
.ye5{bottom:594.209600pt;}
.y163{bottom:595.038400pt;}
.y189{bottom:596.925200pt;}
.y248{bottom:598.834533pt;}
.ya{bottom:599.347867pt;}
.y5d{bottom:599.986533pt;}
.ya7{bottom:600.740800pt;}
.y26d{bottom:601.138533pt;}
.y222{bottom:602.925467pt;}
.y33{bottom:605.302533pt;}
.y84{bottom:606.337200pt;}
.y1af{bottom:607.597467pt;}
.y1d6{bottom:609.457200pt;}
.yc2{bottom:611.010400pt;}
.y13c{bottom:611.465600pt;}
.y1fc{bottom:613.200133pt;}
.ye4{bottom:616.513600pt;}
.y162{bottom:618.767733pt;}
.y188{bottom:620.065200pt;}
.y247{bottom:621.634533pt;}
.y5c{bottom:623.785200pt;}
.y26c{bottom:623.810533pt;}
.y32{bottom:623.974533pt;}
.ya6{bottom:624.747467pt;}
.y221{bottom:625.597467pt;}
.ye1{bottom:627.681600pt;}
.y10e{bottom:629.899600pt;}
.y83{bottom:630.343867pt;}
.y1ae{bottom:631.326800pt;}
.y1d5{bottom:633.186533pt;}
.y13b{bottom:633.769600pt;}
.y1fb{bottom:636.600133pt;}
.ye3{bottom:638.817600pt;}
.y161{bottom:642.497067pt;}
.y31{bottom:642.646533pt;}
.y187{bottom:643.205200pt;}
.y26b{bottom:646.482533pt;}
.y5b{bottom:647.583867pt;}
.y220{bottom:648.269467pt;}
.ya5{bottom:648.754133pt;}
.y10d{bottom:649.904933pt;}
.y246{bottom:650.098533pt;}
.yc1{bottom:653.908000pt;}
.y82{bottom:654.350533pt;}
.y1ad{bottom:655.056133pt;}
.y13a{bottom:656.073600pt;}
.y1d4{bottom:656.915867pt;}
.y1fa{bottom:660.000133pt;}
.ye2{bottom:661.121600pt;}
.y9{bottom:663.345467pt;}
.y160{bottom:666.226400pt;}
.y186{bottom:666.345200pt;}
.y30{bottom:669.313200pt;}
.y5a{bottom:671.382533pt;}
.ya4{bottom:672.760800pt;}
.y245{bottom:672.898533pt;}
.y26a{bottom:674.818533pt;}
.y21f{bottom:676.605467pt;}
.y10c{bottom:677.385600pt;}
.y81{bottom:678.357200pt;}
.y139{bottom:678.377600pt;}
.y1ac{bottom:678.785467pt;}
.y1d3{bottom:680.645200pt;}
.y1f9{bottom:683.400133pt;}
.ye0{bottom:683.425600pt;}
.y185{bottom:689.485200pt;}
.y15f{bottom:689.955733pt;}
.y59{bottom:695.181200pt;}
.y8{bottom:695.341467pt;}
.y244{bottom:695.698533pt;}
.ya3{bottom:696.767467pt;}
.y269{bottom:697.490533pt;}
.y21e{bottom:699.277467pt;}
.y10b{bottom:699.689600pt;}
.yc0{bottom:700.491867pt;}
.y138{bottom:700.681600pt;}
.y80{bottom:702.363867pt;}
.y1ab{bottom:702.514800pt;}
.y1d2{bottom:704.374533pt;}
.ydf{bottom:705.729600pt;}
.y1f8{bottom:706.800133pt;}
.y184{bottom:712.625200pt;}
.y15e{bottom:713.685067pt;}
.ydc{bottom:716.897600pt;}
.y243{bottom:718.498533pt;}
.y58{bottom:718.979867pt;}
.ya2{bottom:720.774133pt;}
.y2f{bottom:721.243867pt;}
.y21d{bottom:721.949467pt;}
.y10a{bottom:721.993600pt;}
.y137{bottom:722.985600pt;}
.ybf{bottom:724.498533pt;}
.y268{bottom:725.826533pt;}
.y1aa{bottom:726.244133pt;}
.y7f{bottom:726.370533pt;}
.yde{bottom:728.033600pt;}
.y1d1{bottom:728.103867pt;}
.y1f7{bottom:730.200133pt;}
.y183{bottom:735.765200pt;}
.y15d{bottom:737.414400pt;}
.y57{bottom:742.778533pt;}
.y109{bottom:744.297600pt;}
.y21c{bottom:744.621467pt;}
.y136{bottom:745.289600pt;}
.y2e{bottom:746.571867pt;}
.y242{bottom:746.962533pt;}
.y7{bottom:747.350800pt;}
.y267{bottom:748.498533pt;}
.ybe{bottom:748.505200pt;}
.y1a9{bottom:749.973467pt;}
.ydd{bottom:750.337600pt;}
.y7e{bottom:750.377200pt;}
.y1d0{bottom:751.833200pt;}
.y1f6{bottom:753.600133pt;}
.y182{bottom:758.905200pt;}
.y15c{bottom:761.143733pt;}
.ya1{bottom:763.671733pt;}
.y2d{bottom:765.243867pt;}
.y56{bottom:766.577200pt;}
.y108{bottom:766.601600pt;}
.y135{bottom:767.593600pt;}
.y241{bottom:769.762533pt;}
.y266{bottom:771.170533pt;}
.ybd{bottom:772.511867pt;}
.ydb{bottom:772.817600pt;}
.y21b{bottom:772.957467pt;}
.y1a8{bottom:773.702800pt;}
.y7d{bottom:774.383867pt;}
.y1cf{bottom:775.562533pt;}
.y1f5{bottom:777.000133pt;}
.y6{bottom:779.346800pt;}
.y181{bottom:782.045200pt;}
.y2c{bottom:783.915867pt;}
.y15b{bottom:784.885067pt;}
.y107{bottom:788.905600pt;}
.y134{bottom:789.897600pt;}
.y55{bottom:790.375867pt;}
.y240{bottom:792.562533pt;}
.y21a{bottom:795.629467pt;}
.ybc{bottom:796.518533pt;}
.yda{bottom:797.307733pt;}
.y1a7{bottom:797.432133pt;}
.y7c{bottom:798.390533pt;}
.y1ce{bottom:799.291867pt;}
.y265{bottom:799.506533pt;}
.y1f4{bottom:800.400133pt;}
.y2b{bottom:802.587867pt;}
.y180{bottom:805.185200pt;}
.y15a{bottom:808.614400pt;}
.ya0{bottom:810.348933pt;}
.y106{bottom:811.209600pt;}
.y133{bottom:812.201600pt;}
.y54{bottom:814.174533pt;}
.y23f{bottom:815.362533pt;}
.y219{bottom:818.301467pt;}
.ybb{bottom:820.525200pt;}
.y1a6{bottom:821.161467pt;}
.y2a{bottom:821.259867pt;}
.y264{bottom:822.178533pt;}
.y7b{bottom:822.397200pt;}
.y1cd{bottom:823.021200pt;}
.y1f3{bottom:823.800133pt;}
.y17f{bottom:828.325200pt;}
.y5{bottom:831.356133pt;}
.yd9{bottom:831.575733pt;}
.y159{bottom:832.355733pt;}
.y105{bottom:833.513600pt;}
.y132{bottom:834.505600pt;}
.y29{bottom:839.931867pt;}
.y23e{bottom:843.826533pt;}
.yba{bottom:844.531867pt;}
.y263{bottom:844.850533pt;}
.y1a5{bottom:844.890800pt;}
.y7a{bottom:846.195867pt;}
.y218{bottom:846.637467pt;}
.y1cc{bottom:846.750533pt;}
.y1f2{bottom:847.200133pt;}
.y17e{bottom:851.465200pt;}
.yd8{bottom:854.507733pt;}
.y104{bottom:855.817600pt;}
.y158{bottom:856.085067pt;}
.y131{bottom:856.809600pt;}
.y28{bottom:858.603867pt;}
.y53{bottom:860.651600pt;}
.y4{bottom:863.352133pt;}
.y23d{bottom:866.626533pt;}
.y9f{bottom:868.538533pt;}
.y1a4{bottom:868.620133pt;}
.y217{bottom:869.309467pt;}
.y79{bottom:869.994533pt;}
.y1cb{bottom:870.479867pt;}
.y1f1{bottom:870.600133pt;}
.y262{bottom:873.186533pt;}
.y17d{bottom:874.605200pt;}
.y27{bottom:877.275867pt;}
.yd7{bottom:877.439733pt;}
.y103{bottom:878.121600pt;}
.y130{bottom:879.113600pt;}
.y157{bottom:879.814400pt;}
.y23c{bottom:889.426533pt;}
.y216{bottom:891.981467pt;}
.y1a3{bottom:892.349467pt;}
.y9e{bottom:892.545200pt;}
.y78{bottom:893.793200pt;}
.y1f0{bottom:894.000133pt;}
.y1ca{bottom:894.209200pt;}
.y261{bottom:895.858533pt;}
.y26{bottom:895.947867pt;}
.y17c{bottom:897.745200pt;}
.yd6{bottom:900.371733pt;}
.y102{bottom:900.425600pt;}
.y12f{bottom:901.417600pt;}
.y156{bottom:903.543733pt;}
.y25{bottom:914.619867pt;}
.y215{bottom:914.653467pt;}
.y1a2{bottom:916.078800pt;}
.y9d{bottom:916.551867pt;}
.y1ef{bottom:917.400133pt;}
.y77{bottom:917.591867pt;}
.y23b{bottom:917.890533pt;}
.y1c9{bottom:917.938533pt;}
.y260{bottom:918.530533pt;}
.y52{bottom:918.866533pt;}
.y17b{bottom:920.885200pt;}
.y101{bottom:922.729600pt;}
.yd5{bottom:923.303733pt;}
.y12e{bottom:923.721600pt;}
.y24{bottom:933.291867pt;}
.y1a1{bottom:939.808133pt;}
.y9c{bottom:940.558533pt;}
.y23a{bottom:940.690533pt;}
.y1ee{bottom:940.800133pt;}
.y76{bottom:941.390533pt;}
.y1c8{bottom:941.667867pt;}
.y214{bottom:942.989467pt;}
.y17a{bottom:944.025200pt;}
.y51{bottom:944.194533pt;}
.y100{bottom:945.033600pt;}
.y12d{bottom:946.025600pt;}
.y155{bottom:946.174667pt;}
.yd4{bottom:946.235733pt;}
.y25f{bottom:946.866533pt;}
.y23{bottom:951.963867pt;}
.y50{bottom:962.866533pt;}
.y239{bottom:963.490533pt;}
.y1a0{bottom:963.537467pt;}
.y1ed{bottom:964.200133pt;}
.y9b{bottom:964.565200pt;}
.y75{bottom:965.189200pt;}
.y1c7{bottom:965.397200pt;}
.y213{bottom:965.661467pt;}
.y179{bottom:967.165200pt;}
.yff{bottom:967.337600pt;}
.y12c{bottom:968.489600pt;}
.y25e{bottom:969.538533pt;}
.y22{bottom:970.635867pt;}
.y4f{bottom:981.538533pt;}
.y19f{bottom:987.266800pt;}
.y1ec{bottom:987.600133pt;}
.yd3{bottom:988.066667pt;}
.y212{bottom:988.333467pt;}
.y9a{bottom:988.571867pt;}
.y74{bottom:988.987867pt;}
.y1c6{bottom:989.126533pt;}
.y21{bottom:989.307867pt;}
.yfe{bottom:989.641600pt;}
.y178{bottom:990.305200pt;}
.y12b{bottom:990.777600pt;}
.y238{bottom:991.954533pt;}
.y25d{bottom:992.210533pt;}
.y154{bottom:992.593200pt;}
.y4e{bottom:1000.210533pt;}
.y3{bottom:1005.269467pt;}
.y20{bottom:1007.979867pt;}
.yfd{bottom:1012.105600pt;}
.y99{bottom:1012.578533pt;}
.y73{bottom:1012.786533pt;}
.y1c5{bottom:1012.855867pt;}
.y177{bottom:1013.445200pt;}
.y153{bottom:1014.589200pt;}
.y237{bottom:1014.754533pt;}
.y25c{bottom:1014.882533pt;}
.y4d{bottom:1018.882533pt;}
.yd2{bottom:1033.677200pt;}
.y1f{bottom:1034.646533pt;}
.y2{bottom:1035.669467pt;}
.y72{bottom:1036.585200pt;}
.y4c{bottom:1037.554533pt;}
.y1e{bottom:1083.561600pt;}
.h8{height:37.653333pt;}
.h9{height:40.586667pt;}
.h7{height:44.000000pt;}
.ha{height:44.645333pt;}
.h6{height:45.632000pt;}
.h10{height:45.696000pt;}
.hc{height:48.704000pt;}
.h2{height:49.504000pt;}
.he{height:52.762667pt;}
.hf{height:53.237333pt;}
.h13{height:53.402667pt;}
.hb{height:56.480000pt;}
.hd{height:59.989333pt;}
.h5{height:71.744000pt;}
.h3{height:72.453333pt;}
.h4{height:72.960000pt;}
.h12{height:88.384000pt;}
.h11{height:91.392000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.580267pt;}
.x2{left:77.480267pt;}
.x4{left:86.927867pt;}
.xb{left:94.488133pt;}
.x6{left:104.888800pt;}
.xa{left:106.861333pt;}
.x25{left:115.648000pt;}
.xd{left:121.224800pt;}
.x2a{left:126.267333pt;}
.xc{left:132.283467pt;}
.x31{left:142.401333pt;}
.x18{left:144.505733pt;}
.x2f{left:153.105333pt;}
.x2d{left:154.496267pt;}
.x1c{left:158.457733pt;}
.xf{left:167.097733pt;}
.x2e{left:170.689333pt;}
.x30{left:177.665333pt;}
.x14{left:179.785733pt;}
.x32{left:182.996400pt;}
.x23{left:197.286800pt;}
.x9{left:232.266533pt;}
.x7{left:256.435467pt;}
.x8{left:259.048800pt;}
.x2b{left:272.027600pt;}
.x24{left:275.878267pt;}
.xe{left:281.017733pt;}
.x1d{left:284.969733pt;}
.x20{left:288.617733pt;}
.x1f{left:291.465733pt;}
.x28{left:293.675333pt;}
.x29{left:297.851333pt;}
.x1b{left:309.001733pt;}
.x17{left:310.313733pt;}
.x1a{left:313.577733pt;}
.x16{left:318.281733pt;}
.x27{left:327.730533pt;}
.x19{left:332.041733pt;}
.x22{left:333.194933pt;}
.x1e{left:334.793733pt;}
.x15{left:335.945733pt;}
.x13{left:340.281733pt;}
.x12{left:354.777733pt;}
.x10{left:356.041733pt;}
.x11{left:358.697733pt;}
.x26{left:371.669333pt;}
.x1{left:383.560933pt;}
.x2c{left:384.508267pt;}
.x5{left:434.648800pt;}
.x21{left:512.169733pt;}
}




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