
    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_56b85e49b7500bc5891c888a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_9451422b907ba2c61d2c441b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_0c25ec9842a9ec3615c6bbfa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_ef869a48ad66c69ce392c76b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.123047;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_297ea2ee5e64b4747c7c4c92.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.113281;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_939423de7423a5786968693a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_9fe2b70c3152030d9fb22953.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.126465;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_2ac516db1db50e7f6960ab86.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.929688;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_1093c57702356dc5ec70857d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.929688;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);}
.v1{vertical-align:-1.903800px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:38.070000px;}
.ls70{letter-spacing:-5.886000px;}
.lsf{letter-spacing:-4.680000px;}
.ls4b{letter-spacing:-4.050000px;}
.ls5a{letter-spacing:-4.026000px;}
.ls63{letter-spacing:-3.960000px;}
.ls79{letter-spacing:-3.762000px;}
.ls4d{letter-spacing:-3.618000px;}
.ls67{letter-spacing:-3.564000px;}
.ls76{letter-spacing:-3.300000px;}
.ls52{letter-spacing:-3.186000px;}
.ls54{letter-spacing:-3.078000px;}
.ls85{letter-spacing:-2.916000px;}
.ls78{letter-spacing:-2.772000px;}
.ls47{letter-spacing:-2.646000px;}
.ls38{letter-spacing:-2.484000px;}
.ls4e{letter-spacing:-2.430000px;}
.ls7d{letter-spacing:-2.376000px;}
.ls7c{letter-spacing:-2.268000px;}
.ls65{letter-spacing:-2.214000px;}
.ls89{letter-spacing:-2.106000px;}
.ls88{letter-spacing:-2.052000px;}
.ls4c{letter-spacing:-1.998000px;}
.ls55{letter-spacing:-1.944000px;}
.ls40{letter-spacing:-1.782000px;}
.ls60{letter-spacing:-1.716000px;}
.ls8b{letter-spacing:-1.674000px;}
.ls6{letter-spacing:-1.584000px;}
.ls77{letter-spacing:-1.518000px;}
.ls5e{letter-spacing:-1.512000px;}
.ls51{letter-spacing:-1.404000px;}
.ls2{letter-spacing:-1.344000px;}
.ls86{letter-spacing:-1.188000px;}
.ls3{letter-spacing:-1.152000px;}
.ls74{letter-spacing:-1.056000px;}
.ls80{letter-spacing:-1.026000px;}
.ls84{letter-spacing:-0.972000px;}
.ls36{letter-spacing:-0.924000px;}
.ls46{letter-spacing:-0.864000px;}
.ls1f{letter-spacing:-0.858000px;}
.ls6e{letter-spacing:-0.756000px;}
.ls30{letter-spacing:-0.660000px;}
.ls72{letter-spacing:-0.594000px;}
.ls6a{letter-spacing:-0.540000px;}
.ls7b{letter-spacing:-0.528000px;}
.ls53{letter-spacing:-0.486000px;}
.ls68{letter-spacing:-0.462000px;}
.ls64{letter-spacing:-0.432000px;}
.ls61{letter-spacing:-0.378000px;}
.ls6f{letter-spacing:-0.324000px;}
.ls4f{letter-spacing:-0.270000px;}
.ls7a{letter-spacing:-0.264000px;}
.ls57{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.198000px;}
.ls69{letter-spacing:-0.162000px;}
.ls22{letter-spacing:-0.132000px;}
.ls62{letter-spacing:-0.108000px;}
.ls33{letter-spacing:-0.066000px;}
.ls66{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.054000px;}
.ls19{letter-spacing:0.066000px;}
.ls5c{letter-spacing:0.108000px;}
.ls59{letter-spacing:0.132000px;}
.ls37{letter-spacing:0.198000px;}
.ls71{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.264000px;}
.ls3c{letter-spacing:0.270000px;}
.ls1{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.324000px;}
.ls2a{letter-spacing:0.330000px;}
.ls6c{letter-spacing:0.378000px;}
.ls1d{letter-spacing:0.396000px;}
.ls3a{letter-spacing:0.432000px;}
.ls2b{letter-spacing:0.462000px;}
.ls11{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.486000px;}
.ls32{letter-spacing:0.528000px;}
.ls9{letter-spacing:0.540000px;}
.ls23{letter-spacing:0.594000px;}
.lsd{letter-spacing:0.600000px;}
.ls15{letter-spacing:0.660000px;}
.ls8a{letter-spacing:0.702000px;}
.lsc{letter-spacing:0.720000px;}
.ls26{letter-spacing:0.726000px;}
.lsb{letter-spacing:0.756000px;}
.ls2c{letter-spacing:0.792000px;}
.ls3d{letter-spacing:0.810000px;}
.lse{letter-spacing:0.840000px;}
.ls27{letter-spacing:0.858000px;}
.ls87{letter-spacing:0.864000px;}
.ls83{letter-spacing:0.918000px;}
.ls1a{letter-spacing:0.924000px;}
.ls7f{letter-spacing:0.972000px;}
.ls1b{letter-spacing:0.990000px;}
.ls8c{letter-spacing:1.026000px;}
.ls17{letter-spacing:1.056000px;}
.ls7e{letter-spacing:1.080000px;}
.ls2f{letter-spacing:1.122000px;}
.ls50{letter-spacing:1.134000px;}
.ls1e{letter-spacing:1.188000px;}
.ls73{letter-spacing:1.242000px;}
.ls43{letter-spacing:1.254000px;}
.ls81{letter-spacing:1.296000px;}
.ls24{letter-spacing:1.320000px;}
.ls5f{letter-spacing:1.350000px;}
.ls18{letter-spacing:1.386000px;}
.ls6d{letter-spacing:1.404000px;}
.ls12{letter-spacing:1.452000px;}
.ls48{letter-spacing:1.458000px;}
.ls2e{letter-spacing:1.518000px;}
.ls6b{letter-spacing:1.566000px;}
.ls1c{letter-spacing:1.584000px;}
.ls56{letter-spacing:1.620000px;}
.ls16{letter-spacing:1.650000px;}
.ls3b{letter-spacing:1.674000px;}
.ls34{letter-spacing:1.716000px;}
.ls58{letter-spacing:1.782000px;}
.ls21{letter-spacing:1.848000px;}
.ls28{letter-spacing:1.914000px;}
.ls75{letter-spacing:1.980000px;}
.ls14{letter-spacing:2.046000px;}
.ls10{letter-spacing:2.112000px;}
.ls42{letter-spacing:2.178000px;}
.ls82{letter-spacing:2.214000px;}
.ls39{letter-spacing:2.244000px;}
.ls5{letter-spacing:2.304000px;}
.ls29{letter-spacing:2.310000px;}
.ls5d{letter-spacing:2.322000px;}
.ls35{letter-spacing:2.376000px;}
.ls41{letter-spacing:2.508000px;}
.ls31{letter-spacing:2.838000px;}
.ls20{letter-spacing:2.904000px;}
.ls3f{letter-spacing:2.970000px;}
.ls2d{letter-spacing:3.234000px;}
.ls7{letter-spacing:4.536000px;}
.ls4{letter-spacing:5.976000px;}
.ls4a{letter-spacing:85.914000px;}
.ls49{letter-spacing:121.662000px;}
.ls5b{letter-spacing:124.740000px;}
.ls45{letter-spacing:250.398000px;}
.ls44{letter-spacing:263.790000px;}
.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;}
}
.ws7e{word-spacing:-277.290000px;}
.ws0{word-spacing:-18.984000px;}
.wsae{word-spacing:-18.876000px;}
.ws5c{word-spacing:-18.348000px;}
.wsad{word-spacing:-18.282000px;}
.ws7b{word-spacing:-18.216000px;}
.ws13{word-spacing:-17.952000px;}
.wsbe{word-spacing:-17.820000px;}
.ws10d{word-spacing:-17.556000px;}
.ws121{word-spacing:-17.358000px;}
.ws3f{word-spacing:-17.292000px;}
.ws51{word-spacing:-17.226000px;}
.ws8f{word-spacing:-17.160000px;}
.ws14{word-spacing:-16.896000px;}
.ws69{word-spacing:-16.764000px;}
.ws7c{word-spacing:-16.566000px;}
.ws50{word-spacing:-16.434000px;}
.ws2c{word-spacing:-16.368000px;}
.wse4{word-spacing:-16.038000px;}
.ws4{word-spacing:-15.840000px;}
.wsc0{word-spacing:-15.822000px;}
.ws12f{word-spacing:-15.714000px;}
.ws103{word-spacing:-15.444000px;}
.ws114{word-spacing:-14.982000px;}
.ws134{word-spacing:-14.796000px;}
.wscd{word-spacing:-14.784000px;}
.wsf8{word-spacing:-14.742000px;}
.ws156{word-spacing:-14.688000px;}
.ws96{word-spacing:-14.634000px;}
.ws155{word-spacing:-14.580000px;}
.ws12d{word-spacing:-14.472000px;}
.ws3{word-spacing:-14.256000px;}
.ws12c{word-spacing:-14.124000px;}
.ws93{word-spacing:-14.094000px;}
.wsa2{word-spacing:-14.040000px;}
.ws2{word-spacing:-13.986000px;}
.ws6a{word-spacing:-13.932000px;}
.ws117{word-spacing:-13.728000px;}
.ws132{word-spacing:-13.716000px;}
.wsd9{word-spacing:-13.500000px;}
.wsd8{word-spacing:-13.446000px;}
.wsea{word-spacing:-13.338000px;}
.ws95{word-spacing:-13.230000px;}
.ws10c{word-spacing:-13.200000px;}
.wsce{word-spacing:-13.122000px;}
.ws133{word-spacing:-13.068000px;}
.ws153{word-spacing:-12.906000px;}
.ws120{word-spacing:-12.738000px;}
.wsd5{word-spacing:-12.540000px;}
.ws12e{word-spacing:-12.474000px;}
.wsc2{word-spacing:-11.988000px;}
.ws154{word-spacing:-11.826000px;}
.ws130{word-spacing:-11.448000px;}
.ws131{word-spacing:-11.394000px;}
.ws9a{word-spacing:-11.070000px;}
.ws5e{word-spacing:-11.016000px;}
.ws84{word-spacing:-10.854000px;}
.ws5{word-spacing:-10.320000px;}
.wsee{word-spacing:-7.614000px;}
.ws118{word-spacing:-4.356000px;}
.ws31{word-spacing:-4.224000px;}
.ws1e{word-spacing:-4.158000px;}
.ws15{word-spacing:-4.092000px;}
.ws113{word-spacing:-4.026000px;}
.ws13b{word-spacing:-3.942000px;}
.ws61{word-spacing:-3.894000px;}
.ws4a{word-spacing:-3.828000px;}
.ws45{word-spacing:-3.696000px;}
.ws76{word-spacing:-3.498000px;}
.wsdb{word-spacing:-3.456000px;}
.ws44{word-spacing:-3.432000px;}
.ws128{word-spacing:-3.402000px;}
.ws87{word-spacing:-3.366000px;}
.wsfc{word-spacing:-3.348000px;}
.ws65{word-spacing:-3.300000px;}
.ws35{word-spacing:-3.234000px;}
.ws11c{word-spacing:-3.168000px;}
.wsdc{word-spacing:-3.132000px;}
.ws116{word-spacing:-3.036000px;}
.ws55{word-spacing:-2.970000px;}
.ws12a{word-spacing:-2.916000px;}
.ws88{word-spacing:-2.838000px;}
.wsb7{word-spacing:-2.772000px;}
.ws13c{word-spacing:-2.754000px;}
.ws11d{word-spacing:-2.706000px;}
.wsfa{word-spacing:-2.700000px;}
.ws8d{word-spacing:-2.640000px;}
.ws10b{word-spacing:-2.574000px;}
.ws151{word-spacing:-2.538000px;}
.ws110{word-spacing:-2.508000px;}
.ws119{word-spacing:-2.442000px;}
.ws100{word-spacing:-2.430000px;}
.ws9{word-spacing:-2.376000px;}
.ws14d{word-spacing:-2.322000px;}
.ws1b{word-spacing:-2.310000px;}
.ws137{word-spacing:-2.268000px;}
.wsdd{word-spacing:-2.244000px;}
.wsfb{word-spacing:-2.214000px;}
.wsac{word-spacing:-2.178000px;}
.ws5a{word-spacing:-2.112000px;}
.ws150{word-spacing:-1.998000px;}
.ws3a{word-spacing:-1.980000px;}
.ws13d{word-spacing:-1.944000px;}
.ws38{word-spacing:-1.914000px;}
.ws109{word-spacing:-1.848000px;}
.wsba{word-spacing:-1.782000px;}
.ws148{word-spacing:-1.728000px;}
.ws57{word-spacing:-1.716000px;}
.wsff{word-spacing:-1.674000px;}
.ws28{word-spacing:-1.650000px;}
.ws8b{word-spacing:-1.458000px;}
.ws23{word-spacing:-1.452000px;}
.ws42{word-spacing:-1.386000px;}
.wsc7{word-spacing:-1.350000px;}
.ws2a{word-spacing:-1.320000px;}
.ws7a{word-spacing:-1.254000px;}
.wsa8{word-spacing:-1.188000px;}
.ws124{word-spacing:-1.056000px;}
.ws159{word-spacing:-1.026000px;}
.ws1a{word-spacing:-0.990000px;}
.ws14a{word-spacing:-0.972000px;}
.wsc{word-spacing:-0.936000px;}
.ws27{word-spacing:-0.924000px;}
.ws14e{word-spacing:-0.918000px;}
.ws13a{word-spacing:-0.864000px;}
.ws73{word-spacing:-0.792000px;}
.ws71{word-spacing:-0.756000px;}
.ws33{word-spacing:-0.726000px;}
.ws22{word-spacing:-0.660000px;}
.ws11{word-spacing:-0.600000px;}
.ws2d{word-spacing:-0.594000px;}
.wsd{word-spacing:-0.540000px;}
.ws4e{word-spacing:-0.528000px;}
.wsf{word-spacing:-0.486000px;}
.ws3c{word-spacing:-0.462000px;}
.wsa6{word-spacing:-0.432000px;}
.ws10f{word-spacing:-0.396000px;}
.ws142{word-spacing:-0.378000px;}
.ws43{word-spacing:-0.330000px;}
.wse{word-spacing:-0.324000px;}
.ws149{word-spacing:-0.270000px;}
.ws8a{word-spacing:-0.264000px;}
.ws60{word-spacing:-0.216000px;}
.wsbb{word-spacing:-0.198000px;}
.ws152{word-spacing:-0.162000px;}
.ws10a{word-spacing:-0.132000px;}
.ws10{word-spacing:-0.120000px;}
.wsc6{word-spacing:-0.108000px;}
.ws125{word-spacing:-0.066000px;}
.wsa3{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws15b{word-spacing:0.054000px;}
.ws5f{word-spacing:0.060000px;}
.wsca{word-spacing:0.066000px;}
.wsd4{word-spacing:0.108000px;}
.ws101{word-spacing:0.162000px;}
.wsc9{word-spacing:0.198000px;}
.ws102{word-spacing:0.216000px;}
.wscc{word-spacing:0.264000px;}
.wsa5{word-spacing:0.270000px;}
.ws5b{word-spacing:0.330000px;}
.wsda{word-spacing:0.378000px;}
.wse0{word-spacing:0.396000px;}
.wsd3{word-spacing:0.432000px;}
.ws70{word-spacing:0.486000px;}
.wsf9{word-spacing:0.540000px;}
.ws89{word-spacing:0.594000px;}
.ws136{word-spacing:0.648000px;}
.ws1d{word-spacing:0.660000px;}
.ws6{word-spacing:0.672000px;}
.ws2f{word-spacing:0.726000px;}
.wsfd{word-spacing:0.756000px;}
.ws3b{word-spacing:0.792000px;}
.ws25{word-spacing:0.858000px;}
.ws56{word-spacing:0.924000px;}
.ws144{word-spacing:0.972000px;}
.ws11f{word-spacing:0.990000px;}
.ws138{word-spacing:1.026000px;}
.wsb9{word-spacing:1.056000px;}
.ws19{word-spacing:1.122000px;}
.ws8c{word-spacing:1.188000px;}
.ws158{word-spacing:1.242000px;}
.wsa{word-spacing:1.296000px;}
.ws78{word-spacing:1.386000px;}
.ws13f{word-spacing:1.404000px;}
.ws115{word-spacing:1.452000px;}
.ws10e{word-spacing:1.518000px;}
.ws157{word-spacing:1.566000px;}
.ws111{word-spacing:1.584000px;}
.ws64{word-spacing:1.650000px;}
.ws46{word-spacing:1.716000px;}
.wse3{word-spacing:1.782000px;}
.wsb5{word-spacing:1.848000px;}
.ws63{word-spacing:1.914000px;}
.ws12b{word-spacing:1.944000px;}
.wsd0{word-spacing:1.980000px;}
.ws2e{word-spacing:2.046000px;}
.ws8{word-spacing:2.112000px;}
.ws135{word-spacing:2.160000px;}
.ws4f{word-spacing:2.178000px;}
.ws7{word-spacing:2.304000px;}
.ws54{word-spacing:2.376000px;}
.wsa4{word-spacing:2.430000px;}
.ws75{word-spacing:2.442000px;}
.ws129{word-spacing:2.484000px;}
.ws11a{word-spacing:2.508000px;}
.ws18{word-spacing:2.574000px;}
.ws143{word-spacing:2.646000px;}
.ws79{word-spacing:2.772000px;}
.ws127{word-spacing:2.808000px;}
.ws30{word-spacing:2.838000px;}
.ws37{word-spacing:2.904000px;}
.ws147{word-spacing:2.916000px;}
.wsa7{word-spacing:2.970000px;}
.ws15a{word-spacing:3.024000px;}
.wsb8{word-spacing:3.036000px;}
.ws29{word-spacing:3.102000px;}
.ws126{word-spacing:3.132000px;}
.ws68{word-spacing:3.168000px;}
.ws122{word-spacing:3.234000px;}
.ws140{word-spacing:3.240000px;}
.ws2b{word-spacing:3.300000px;}
.ws62{word-spacing:3.366000px;}
.ws14b{word-spacing:3.402000px;}
.wsb6{word-spacing:3.432000px;}
.wsde{word-spacing:3.564000px;}
.ws66{word-spacing:3.630000px;}
.ws11b{word-spacing:3.696000px;}
.wscb{word-spacing:3.762000px;}
.ws139{word-spacing:3.780000px;}
.ws14f{word-spacing:3.888000px;}
.ws47{word-spacing:3.894000px;}
.ws59{word-spacing:3.960000px;}
.wsbd{word-spacing:4.026000px;}
.ws21{word-spacing:4.092000px;}
.wsb0{word-spacing:4.158000px;}
.ws146{word-spacing:4.212000px;}
.ws67{word-spacing:4.290000px;}
.ws123{word-spacing:4.422000px;}
.ws14c{word-spacing:4.482000px;}
.ws1f{word-spacing:4.488000px;}
.ws112{word-spacing:4.554000px;}
.ws3e{word-spacing:4.620000px;}
.wsa9{word-spacing:4.644000px;}
.wsd2{word-spacing:4.686000px;}
.ws32{word-spacing:4.884000px;}
.ws36{word-spacing:5.082000px;}
.wsb{word-spacing:5.184000px;}
.ws74{word-spacing:5.280000px;}
.ws20{word-spacing:5.346000px;}
.ws1c{word-spacing:5.412000px;}
.ws8e{word-spacing:5.544000px;}
.ws141{word-spacing:5.562000px;}
.wse1{word-spacing:5.610000px;}
.ws13e{word-spacing:5.616000px;}
.ws48{word-spacing:5.676000px;}
.ws52{word-spacing:5.742000px;}
.ws39{word-spacing:5.808000px;}
.ws11e{word-spacing:5.940000px;}
.ws107{word-spacing:6.006000px;}
.wsaf{word-spacing:6.072000px;}
.ws34{word-spacing:6.270000px;}
.ws40{word-spacing:6.402000px;}
.ws72{word-spacing:6.468000px;}
.wsb3{word-spacing:6.534000px;}
.wsdf{word-spacing:6.600000px;}
.ws17{word-spacing:6.732000px;}
.wsab{word-spacing:6.750000px;}
.wse2{word-spacing:6.930000px;}
.wsb1{word-spacing:6.996000px;}
.ws108{word-spacing:7.062000px;}
.ws58{word-spacing:7.194000px;}
.wsd1{word-spacing:7.260000px;}
.wsaa{word-spacing:7.290000px;}
.ws145{word-spacing:7.344000px;}
.ws4c{word-spacing:7.392000px;}
.wsfe{word-spacing:7.398000px;}
.ws24{word-spacing:7.458000px;}
.wsbc{word-spacing:7.524000px;}
.ws49{word-spacing:7.590000px;}
.ws4b{word-spacing:7.722000px;}
.ws3d{word-spacing:7.788000px;}
.wsb4{word-spacing:7.986000px;}
.wsc8{word-spacing:8.184000px;}
.ws16{word-spacing:8.250000px;}
.ws53{word-spacing:8.580000px;}
.wsb2{word-spacing:8.646000px;}
.ws106{word-spacing:8.844000px;}
.ws77{word-spacing:9.240000px;}
.ws4d{word-spacing:10.956000px;}
.ws26{word-spacing:11.088000px;}
.ws12{word-spacing:12.177000px;}
.ws41{word-spacing:12.936000px;}
.ws9e{word-spacing:69.206400px;}
.wse6{word-spacing:69.282000px;}
.wsa0{word-spacing:69.552000px;}
.wseb{word-spacing:69.643800px;}
.wsf3{word-spacing:69.714000px;}
.wsf0{word-spacing:70.146000px;}
.wsed{word-spacing:70.794000px;}
.ws105{word-spacing:71.334000px;}
.wsf7{word-spacing:71.479800px;}
.ws104{word-spacing:71.550000px;}
.wse8{word-spacing:71.658000px;}
.wsf5{word-spacing:71.695800px;}
.wsf1{word-spacing:71.766000px;}
.wse9{word-spacing:71.798400px;}
.wsef{word-spacing:71.982000px;}
.wsec{word-spacing:72.414000px;}
.wsf4{word-spacing:72.775800px;}
.ws9f{word-spacing:72.846000px;}
.ws97{word-spacing:75.222000px;}
.ws9c{word-spacing:76.302000px;}
.ws9d{word-spacing:76.329000px;}
.wsd7{word-spacing:76.879800px;}
.ws99{word-spacing:77.706000px;}
.ws9b{word-spacing:78.624000px;}
.wscf{word-spacing:78.791400px;}
.ws98{word-spacing:78.823800px;}
.ws91{word-spacing:87.993000px;}
.ws6e{word-spacing:88.765200px;}
.wsc1{word-spacing:89.089200px;}
.ws94{word-spacing:95.833800px;}
.ws90{word-spacing:98.496000px;}
.ws6b{word-spacing:104.085000px;}
.wsa1{word-spacing:107.082000px;}
.wsc4{word-spacing:108.032400px;}
.wse5{word-spacing:108.469800px;}
.wsd6{word-spacing:109.026000px;}
.ws6c{word-spacing:109.053000px;}
.wse7{word-spacing:109.242000px;}
.wsf6{word-spacing:109.350000px;}
.wsc5{word-spacing:111.672000px;}
.wsc3{word-spacing:112.077000px;}
.ws6f{word-spacing:114.134400px;}
.ws6d{word-spacing:117.190800px;}
.ws83{word-spacing:239.004000px;}
.ws80{word-spacing:239.814000px;}
.ws81{word-spacing:250.290000px;}
.ws5d{word-spacing:343.656000px;}
.ws85{word-spacing:407.743200px;}
.ws7f{word-spacing:415.827000px;}
.ws7d{word-spacing:423.063000px;}
.ws86{word-spacing:433.112400px;}
.ws82{word-spacing:436.168800px;}
.ws92{word-spacing:835.147800px;}
.wsbf{word-spacing:937.207800px;}
.wsf2{word-spacing:1001.705400px;}
._1d{margin-left:-263.346600px;}
._14{margin-left:-32.238000px;}
._10{margin-left:-30.107400px;}
._b{margin-left:-26.337000px;}
._c{margin-left:-24.632400px;}
._2b{margin-left:-23.631600px;}
._d{margin-left:-22.358400px;}
._e{margin-left:-21.344400px;}
._18{margin-left:-19.364400px;}
._9{margin-left:-13.504800px;}
._2{margin-left:-7.353600px;}
._11{margin-left:-5.947200px;}
._3{margin-left:-4.284000px;}
._8{margin-left:-3.087000px;}
._1{margin-left:-1.996800px;}
._4{width:1.804800px;}
._5{width:3.619200px;}
._0{width:5.587200px;}
._6{width:6.739200px;}
._7{width:7.807200px;}
._a{width:9.219600px;}
._f{width:59.070000px;}
._15{width:60.258000px;}
._17{width:63.888000px;}
._1a{width:66.198000px;}
._36{width:68.442000px;}
._16{width:69.564000px;}
._12{width:71.082000px;}
._13{width:72.732000px;}
._1b{width:86.701200px;}
._1c{width:87.781200px;}
._22{width:102.207600px;}
._25{width:119.371800px;}
._19{width:139.328400px;}
._1f{width:144.205200px;}
._2a{width:185.491200px;}
._34{width:195.875400px;}
._20{width:200.151600px;}
._1e{width:263.038800px;}
._21{width:285.136800px;}
._28{width:411.472800px;}
._32{width:511.898400px;}
._27{width:516.085800px;}
._26{width:529.347600px;}
._2f{width:534.756000px;}
._23{width:572.286000px;}
._33{width:576.646200px;}
._30{width:579.960000px;}
._2e{width:648.259200px;}
._2d{width:668.499600px;}
._29{width:756.426000px;}
._31{width:770.835600px;}
._24{width:773.449200px;}
._35{width:796.786800px;}
._2c{width:932.020800px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:48.000000px;}
.fs7{font-size:53.023200px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1db{bottom:1.178250px;}
.yc{bottom:8.040000px;}
.y1e7{bottom:12.593400px;}
.y1e1{bottom:20.679300px;}
.y1e4{bottom:20.679600px;}
.y1de{bottom:20.679900px;}
.y23b{bottom:56.417550px;}
.y260{bottom:62.830050px;}
.y180{bottom:64.393200px;}
.y204{bottom:65.496450px;}
.y1d4{bottom:65.808150px;}
.y203{bottom:66.251700px;}
.y166{bottom:69.817950px;}
.y131{bottom:71.370750px;}
.y20d{bottom:71.945250px;}
.y23a{bottom:72.469050px;}
.y14{bottom:77.715000px;}
.y25f{bottom:79.327050px;}
.y17f{bottom:80.890200px;}
.y1a9{bottom:82.621050px;}
.y5b{bottom:84.997650px;}
.y94{bottom:84.999450px;}
.y6b{bottom:85.014150px;}
.yae{bottom:85.015950px;}
.y1d3{bottom:85.311150px;}
.y202{bottom:85.754700px;}
.y165{bottom:86.314950px;}
.y159{bottom:87.741600px;}
.y20c{bottom:87.996750px;}
.y130{bottom:90.873750px;}
.y239{bottom:92.773050px;}
.y25e{bottom:95.824050px;}
.y1a8{bottom:99.118050px;}
.y13{bottom:99.795000px;}
.y164{bottom:102.811950px;}
.y5a{bottom:104.500650px;}
.y93{bottom:104.502450px;}
.y6a{bottom:104.517150px;}
.yad{bottom:104.518950px;}
.y1d2{bottom:104.814150px;}
.y201{bottom:105.257700px;}
.y158{bottom:107.244600px;}
.y20b{bottom:108.300750px;}
.y238{bottom:108.824550px;}
.y12f{bottom:110.376750px;}
.yf5{bottom:113.221200px;}
.y18{bottom:113.670000px;}
.y1a7{bottom:115.615050px;}
.yd2{bottom:120.701250px;}
.y59{bottom:124.003650px;}
.y92{bottom:124.005450px;}
.y69{bottom:124.020150px;}
.yac{bottom:124.021950px;}
.y1d1{bottom:124.317150px;}
.y163{bottom:124.398450px;}
.y200{bottom:124.760700px;}
.y237{bottom:124.876050px;}
.y157{bottom:126.747600px;}
.y20a{bottom:128.604750px;}
.y25d{bottom:128.818050px;}
.y12e{bottom:129.879750px;}
.y1a6{bottom:132.112050px;}
.yf4{bottom:132.724200px;}
.y17{bottom:135.750000px;}
.yd1{bottom:140.204250px;}
.y58{bottom:143.506650px;}
.y91{bottom:143.508450px;}
.y68{bottom:143.523150px;}
.yab{bottom:143.524950px;}
.y1d0{bottom:143.820150px;}
.y1ff{bottom:144.263700px;}
.y209{bottom:144.656250px;}
.y236{bottom:145.180050px;}
.y25c{bottom:145.315050px;}
.y162{bottom:145.984950px;}
.y156{bottom:146.250600px;}
.y1a5{bottom:148.609050px;}
.y12d{bottom:149.382750px;}
.yf3{bottom:152.227200px;}
.y15{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y16{bottom:157.830000px;}
.yd0{bottom:159.707250px;}
.y235{bottom:161.231550px;}
.y25b{bottom:161.812050px;}
.y57{bottom:163.009650px;}
.y90{bottom:163.011450px;}
.y67{bottom:163.026150px;}
.yaa{bottom:163.027950px;}
.y1cf{bottom:163.323150px;}
.y1fe{bottom:163.766700px;}
.y208{bottom:164.960250px;}
.y1a4{bottom:165.106050px;}
.y1aa{bottom:165.119550px;}
.y155{bottom:165.753600px;}
.y161{bottom:167.571450px;}
.y12c{bottom:168.885750px;}
.yf2{bottom:171.730200px;}
.ycf{bottom:179.210250px;}
.y207{bottom:181.011750px;}
.y234{bottom:181.535550px;}
.y56{bottom:182.512650px;}
.y8f{bottom:182.514450px;}
.y66{bottom:182.529150px;}
.ya9{bottom:182.530950px;}
.y1ce{bottom:182.826150px;}
.y1fd{bottom:183.269700px;}
.y160{bottom:184.068450px;}
.y154{bottom:185.256600px;}
.y1a3{bottom:186.692550px;}
.y12b{bottom:188.388750px;}
.yf1{bottom:191.233200px;}
.y25a{bottom:194.806050px;}
.y233{bottom:197.587050px;}
.yce{bottom:198.713250px;}
.y15f{bottom:200.565450px;}
.y206{bottom:201.315750px;}
.y55{bottom:202.015650px;}
.y8e{bottom:202.017450px;}
.y65{bottom:202.032150px;}
.ya8{bottom:202.033950px;}
.y1cd{bottom:202.329150px;}
.y1fc{bottom:202.772700px;}
.y1a2{bottom:203.189550px;}
.y153{bottom:204.759600px;}
.yf0{bottom:210.736200px;}
.y259{bottom:211.303050px;}
.y15e{bottom:217.062450px;}
.y232{bottom:217.891050px;}
.ycd{bottom:218.216250px;}
.y54{bottom:221.518650px;}
.y8d{bottom:221.520450px;}
.y64{bottom:221.535150px;}
.ya7{bottom:221.536950px;}
.y1cc{bottom:221.832150px;}
.y1fb{bottom:222.275700px;}
.y152{bottom:224.262600px;}
.y1a1{bottom:224.776050px;}
.y258{bottom:227.800050px;}
.yef{bottom:230.239200px;}
.y15d{bottom:233.559450px;}
.y231{bottom:233.942550px;}
.ycc{bottom:237.719250px;}
.y53{bottom:241.021650px;}
.y8c{bottom:241.023450px;}
.y63{bottom:241.038150px;}
.ya6{bottom:241.039950px;}
.y205{bottom:241.056450px;}
.y12a{bottom:241.236150px;}
.y1cb{bottom:241.335150px;}
.y1fa{bottom:241.778700px;}
.y151{bottom:243.765600px;}
.y19f{bottom:246.349050px;}
.yee{bottom:249.742200px;}
.y230{bottom:254.246550px;}
.y15c{bottom:255.145950px;}
.y109{bottom:256.844550px;}
.ycb{bottom:257.222250px;}
.y129{bottom:257.733150px;}
.y52{bottom:260.524650px;}
.y8b{bottom:260.526450px;}
.y62{bottom:260.541150px;}
.ya5{bottom:260.542950px;}
.y257{bottom:260.794050px;}
.y1ca{bottom:260.838150px;}
.y1f9{bottom:261.281700px;}
.y19e{bottom:262.846050px;}
.y150{bottom:263.268600px;}
.yed{bottom:269.245200px;}
.y22f{bottom:270.298050px;}
.y128{bottom:274.230150px;}
.y108{bottom:276.347550px;}
.yca{bottom:276.725250px;}
.y256{bottom:277.291050px;}
.y19d{bottom:279.343050px;}
.y51{bottom:280.027650px;}
.y8a{bottom:280.029450px;}
.y61{bottom:280.044150px;}
.ya4{bottom:280.045950px;}
.y1c9{bottom:280.341150px;}
.y1f8{bottom:280.784700px;}
.y14f{bottom:282.771600px;}
.yec{bottom:288.748200px;}
.y22e{bottom:290.602050px;}
.y127{bottom:290.727150px;}
.y2e{bottom:292.721700px;}
.y255{bottom:293.788050px;}
.y19c{bottom:295.840050px;}
.y107{bottom:295.850550px;}
.y1a0{bottom:295.853550px;}
.yc9{bottom:296.228250px;}
.y50{bottom:299.530650px;}
.y89{bottom:299.532450px;}
.y60{bottom:299.547150px;}
.ya3{bottom:299.548950px;}
.y1c8{bottom:299.844150px;}
.y1f7{bottom:300.287700px;}
.y14e{bottom:302.274600px;}
.y22d{bottom:306.653550px;}
.y126{bottom:307.224150px;}
.yeb{bottom:308.251200px;}
.y2d{bottom:309.218700px;}
.y106{bottom:315.353550px;}
.yc8{bottom:315.731250px;}
.y19b{bottom:317.426550px;}
.y4f{bottom:319.033650px;}
.y88{bottom:319.035450px;}
.ya2{bottom:319.051950px;}
.y1c7{bottom:319.347150px;}
.y1f6{bottom:319.790700px;}
.y15b{bottom:320.854350px;}
.y14d{bottom:321.777600px;}
.y254{bottom:326.782050px;}
.y22c{bottom:326.957550px;}
.yea{bottom:327.754200px;}
.y17e{bottom:328.479450px;}
.y125{bottom:334.075650px;}
.y105{bottom:334.856550px;}
.yc7{bottom:335.234250px;}
.y4e{bottom:338.536650px;}
.y87{bottom:338.538450px;}
.y5f{bottom:338.553150px;}
.ya1{bottom:338.554950px;}
.y1c6{bottom:338.850150px;}
.y15a{bottom:338.854350px;}
.y19a{bottom:339.013050px;}
.y1f5{bottom:339.293700px;}
.y14c{bottom:341.280600px;}
.y2c{bottom:342.212700px;}
.y22b{bottom:343.009050px;}
.y253{bottom:343.279050px;}
.ya{bottom:344.680500px;}
.ye9{bottom:347.257200px;}
.y17d{bottom:347.982450px;}
.y104{bottom:354.359550px;}
.yc6{bottom:354.737250px;}
.y199{bottom:355.510050px;}
.y124{bottom:355.662150px;}
.y4d{bottom:358.039650px;}
.y86{bottom:358.041450px;}
.y5e{bottom:358.056150px;}
.ya0{bottom:358.057950px;}
.y1c5{bottom:358.353150px;}
.y2b{bottom:358.709700px;}
.y1f4{bottom:358.796700px;}
.y252{bottom:359.776050px;}
.y14b{bottom:360.783600px;}
.y22a{bottom:363.313050px;}
.ye8{bottom:366.760200px;}
.y17c{bottom:367.485450px;}
.y198{bottom:372.007050px;}
.y103{bottom:373.862550px;}
.yc5{bottom:374.240250px;}
.y2a{bottom:375.206700px;}
.y251{bottom:376.273050px;}
.y123{bottom:377.248650px;}
.y4c{bottom:377.542650px;}
.y85{bottom:377.544450px;}
.y9f{bottom:377.560950px;}
.y1c4{bottom:377.856150px;}
.y1f3{bottom:378.299700px;}
.y229{bottom:379.364550px;}
.y14a{bottom:380.286600px;}
.ye7{bottom:386.263200px;}
.yd{bottom:386.490000px;}
.y17b{bottom:386.988450px;}
.y29{bottom:391.703700px;}
.y102{bottom:393.365550px;}
.y197{bottom:393.593550px;}
.y9{bottom:395.689500px;}
.y4b{bottom:397.045650px;}
.y84{bottom:397.047450px;}
.y9e{bottom:397.063950px;}
.y1c3{bottom:397.359150px;}
.y1f2{bottom:397.802700px;}
.y122{bottom:398.835150px;}
.y228{bottom:399.668550px;}
.y149{bottom:399.789600px;}
.ye6{bottom:405.766200px;}
.y17a{bottom:406.491450px;}
.y28{bottom:408.200700px;}
.y101{bottom:412.868550px;}
.yc4{bottom:413.246250px;}
.y196{bottom:415.180050px;}
.y227{bottom:415.720050px;}
.y4a{bottom:416.548650px;}
.y83{bottom:416.550450px;}
.y9d{bottom:416.566950px;}
.y1c2{bottom:416.862150px;}
.y1f1{bottom:417.305700px;}
.y148{bottom:419.292600px;}
.y121{bottom:420.421650px;}
.y27{bottom:424.697700px;}
.ye5{bottom:425.269200px;}
.y179{bottom:425.994450px;}
.y226{bottom:431.771550px;}
.yc3{bottom:432.749250px;}
.yb{bottom:434.850000px;}
.y49{bottom:436.051650px;}
.y82{bottom:436.053450px;}
.y9c{bottom:436.069950px;}
.y1c1{bottom:436.365150px;}
.y195{bottom:436.766550px;}
.y1f0{bottom:436.808700px;}
.y147{bottom:438.795600px;}
.y26{bottom:441.194700px;}
.y120{bottom:442.008150px;}
.ye4{bottom:444.772200px;}
.y178{bottom:445.497450px;}
.y8{bottom:446.698500px;}
.y250{bottom:447.823050px;}
.y225{bottom:452.075550px;}
.yc2{bottom:452.252250px;}
.y48{bottom:455.554650px;}
.y81{bottom:455.556450px;}
.y9b{bottom:455.572950px;}
.y1c0{bottom:455.868150px;}
.y1ef{bottom:456.311700px;}
.y25{bottom:457.691700px;}
.y194{bottom:458.353050px;}
.y11f{bottom:458.505150px;}
.y24f{bottom:463.874550px;}
.ye3{bottom:464.275200px;}
.y177{bottom:465.000450px;}
.y224{bottom:468.127050px;}
.y100{bottom:471.193950px;}
.yc1{bottom:471.755250px;}
.y24{bottom:474.188700px;}
.y47{bottom:475.057650px;}
.y80{bottom:475.059450px;}
.y9a{bottom:475.075950px;}
.y1bf{bottom:475.371150px;}
.y1ee{bottom:475.814700px;}
.y24e{bottom:479.926050px;}
.y193{bottom:479.939550px;}
.y11e{bottom:480.091650px;}
.yff{bottom:480.711450px;}
.y176{bottom:484.503450px;}
.y10{bottom:488.055000px;}
.y223{bottom:488.431050px;}
.y23{bottom:490.685700px;}
.yc0{bottom:491.258250px;}
.y46{bottom:494.560650px;}
.y7f{bottom:494.562450px;}
.y99{bottom:494.578950px;}
.y1be{bottom:494.874150px;}
.y1ed{bottom:495.317700px;}
.y11d{bottom:496.588650px;}
.y146{bottom:497.651550px;}
.y7{bottom:497.707500px;}
.y24d{bottom:500.230050px;}
.y191{bottom:501.526050px;}
.y175{bottom:504.006450px;}
.y222{bottom:504.482550px;}
.y22{bottom:507.182700px;}
.yfe{bottom:509.263950px;}
.ybf{bottom:510.761250px;}
.y45{bottom:514.063650px;}
.y7e{bottom:514.065450px;}
.y98{bottom:514.081950px;}
.y1bd{bottom:514.377150px;}
.y1ec{bottom:514.820700px;}
.y24c{bottom:516.281550px;}
.y190{bottom:518.023050px;}
.y11c{bottom:518.175150px;}
.y145{bottom:519.238050px;}
.y221{bottom:520.534050px;}
.y174{bottom:523.509450px;}
.ye2{bottom:523.883550px;}
.yfd{bottom:528.298950px;}
.y24b{bottom:532.333050px;}
.y44{bottom:533.566650px;}
.y7d{bottom:533.568450px;}
.y97{bottom:533.584950px;}
.y1bc{bottom:533.880150px;}
.y1eb{bottom:534.323700px;}
.y18f{bottom:534.520050px;}
.y11b{bottom:534.672150px;}
.y11{bottom:538.230000px;}
.ye1{bottom:540.380550px;}
.y144{bottom:540.824550px;}
.y220{bottom:540.838050px;}
.y173{bottom:543.012450px;}
.yfc{bottom:547.333950px;}
.yf9{bottom:547.347450px;}
.y24a{bottom:548.384550px;}
.y6{bottom:548.716500px;}
.y18e{bottom:551.017050px;}
.y43{bottom:553.069650px;}
.y7c{bottom:553.071450px;}
.y96{bottom:553.087950px;}
.y1bb{bottom:553.383150px;}
.y1ea{bottom:553.826700px;}
.y11a{bottom:556.258650px;}
.ye0{bottom:556.877550px;}
.y21f{bottom:556.889550px;}
.y142{bottom:562.411050px;}
.y172{bottom:562.515450px;}
.yfb{bottom:566.368950px;}
.y18d{bottom:567.514050px;}
.y192{bottom:567.527550px;}
.y249{bottom:568.688550px;}
.ybe{bottom:572.530950px;}
.y42{bottom:572.572650px;}
.y7b{bottom:572.574450px;}
.y1d9{bottom:572.590950px;}
.y1ba{bottom:572.886150px;}
.y21e{bottom:572.941050px;}
.y119{bottom:577.845150px;}
.ydf{bottom:578.464050px;}
.y141{bottom:578.908050px;}
.y171{bottom:582.018450px;}
.y21{bottom:582.206700px;}
.y248{bottom:584.740050px;}
.yfa{bottom:585.403950px;}
.y21d{bottom:588.992550px;}
.ybd{bottom:589.027950px;}
.y18c{bottom:589.100550px;}
.y19{bottom:589.605000px;}
.y41{bottom:592.075650px;}
.y7a{bottom:592.077450px;}
.y95{bottom:592.093950px;}
.y1b9{bottom:592.389150px;}
.yde{bottom:594.961050px;}
.y140{bottom:595.405050px;}
.y118{bottom:599.431650px;}
.y5{bottom:599.725500px;}
.y170{bottom:601.521450px;}
.y20{bottom:601.700700px;}
.yf8{bottom:604.438950px;}
.y247{bottom:605.044050px;}
.ybc{bottom:605.524950px;}
.y18b{bottom:605.597550px;}
.y21c{bottom:609.296550px;}
.ydd{bottom:611.458050px;}
.y40{bottom:611.578650px;}
.y79{bottom:611.580450px;}
.y1d8{bottom:611.596950px;}
.y1b8{bottom:611.892150px;}
.y13f{bottom:611.902050px;}
.y1e9{bottom:612.326700px;}
.y117{bottom:615.928650px;}
.y16f{bottom:621.024450px;}
.y246{bottom:621.095550px;}
.y1f{bottom:621.194700px;}
.ybb{bottom:622.021950px;}
.y21b{bottom:625.348050px;}
.y18a{bottom:627.184050px;}
.y13e{bottom:628.399050px;}
.y1e8{bottom:630.326700px;}
.y3f{bottom:631.081650px;}
.y78{bottom:631.083450px;}
.y1d7{bottom:631.099950px;}
.y1b7{bottom:631.395150px;}
.ye{bottom:631.920000px;}
.ydc{bottom:633.044550px;}
.yf7{bottom:634.117650px;}
.y245{bottom:637.147050px;}
.y116{bottom:637.515150px;}
.y16e{bottom:640.527450px;}
.y1e{bottom:640.688700px;}
.y21a{bottom:641.399550px;}
.y13d{bottom:644.896050px;}
.yba{bottom:647.860950px;}
.y188{bottom:648.757050px;}
.y3e{bottom:650.584650px;}
.y77{bottom:650.586450px;}
.y1d6{bottom:650.602950px;}
.y1b6{bottom:650.898150px;}
.yf6{bottom:652.117650px;}
.y244{bottom:653.198550px;}
.ydb{bottom:654.631050px;}
.y115{bottom:659.101650px;}
.y16d{bottom:660.030450px;}
.y1d{bottom:660.182700px;}
.y1da{bottom:661.156500px;}
.y13c{bottom:661.393050px;}
.y143{bottom:661.406550px;}
.y219{bottom:661.703550px;}
.yb9{bottom:664.357950px;}
.y187{bottom:665.254050px;}
.y3d{bottom:670.087650px;}
.y76{bottom:670.089450px;}
.y1b5{bottom:670.401150px;}
.yda{bottom:671.128050px;}
.y243{bottom:673.502550px;}
.y114{bottom:675.598650px;}
.y1e0{bottom:676.120500px;}
.y1dd{bottom:676.252500px;}
.y218{bottom:677.755050px;}
.y16c{bottom:679.533450px;}
.yb8{bottom:680.854950px;}
.y1df{bottom:681.025350px;}
.y1e2{bottom:681.157950px;}
.y186{bottom:681.751050px;}
.y13b{bottom:682.979550px;}
.y242{bottom:689.554050px;}
.y3c{bottom:689.590650px;}
.y75{bottom:689.592450px;}
.y1d5{bottom:689.608950px;}
.y1b4{bottom:689.904150px;}
.y113{bottom:692.095650px;}
.yd9{bottom:692.714550px;}
.y217{bottom:693.806550px;}
.yb7{bottom:697.351950px;}
.y185{bottom:698.248050px;}
.y189{bottom:698.261550px;}
.y16b{bottom:699.036450px;}
.y13a{bottom:704.566050px;}
.y241{bottom:705.605550px;}
.y3b{bottom:709.093650px;}
.y74{bottom:709.095450px;}
.yd8{bottom:709.211550px;}
.y1b3{bottom:709.407150px;}
.y216{bottom:709.858050px;}
.y112{bottom:713.682150px;}
.y184{bottom:719.834550px;}
.y1e3{bottom:719.997000px;}
.yb6{bottom:723.190950px;}
.y1e5{bottom:724.769550px;}
.y240{bottom:725.909550px;}
.y139{bottom:726.152550px;}
.y3a{bottom:728.596650px;}
.y73{bottom:728.598450px;}
.y1b2{bottom:728.910150px;}
.y215{bottom:730.162050px;}
.yd7{bottom:730.798050px;}
.y111{bottom:735.268650px;}
.y183{bottom:736.331550px;}
.y1c{bottom:738.182700px;}
.yb5{bottom:739.687950px;}
.y23f{bottom:741.961050px;}
.y214{bottom:746.213550px;}
.y138{bottom:747.739050px;}
.y39{bottom:748.099650px;}
.y72{bottom:748.101450px;}
.y110{bottom:751.765650px;}
.yd6{bottom:752.384550px;}
.yb4{bottom:756.184950px;}
.y16a{bottom:757.918050px;}
.y23e{bottom:758.012550px;}
.y1b{bottom:765.182700px;}
.y213{bottom:766.517550px;}
.y38{bottom:767.602650px;}
.y71{bottom:767.604450px;}
.y137{bottom:769.325550px;}
.yb3{bottom:772.681950px;}
.y10f{bottom:773.352150px;}
.yd5{bottom:773.971050px;}
.y169{bottom:774.415050px;}
.y4{bottom:778.225500px;}
.y23d{bottom:778.316550px;}
.y1b0{bottom:778.795950px;}
.y182{bottom:779.504550px;}
.y212{bottom:782.569050px;}
.y37{bottom:787.105650px;}
.y70{bottom:787.107450px;}
.yb2{bottom:789.178950px;}
.y10e{bottom:789.849150px;}
.y136{bottom:790.912050px;}
.y1a{bottom:792.182700px;}
.y1af{bottom:795.292950px;}
.yd4{bottom:795.557550px;}
.y181{bottom:796.001550px;}
.y211{bottom:798.620550px;}
.y1dc{bottom:805.630200px;}
.y10d{bottom:806.346150px;}
.y36{bottom:806.608650px;}
.y6f{bottom:806.610450px;}
.y135{bottom:807.409050px;}
.y1ae{bottom:811.789950px;}
.y168{bottom:812.498550px;}
.y210{bottom:814.672050px;}
.yb1{bottom:815.017950px;}
.y12{bottom:815.670000px;}
.yd3{bottom:817.144050px;}
.y134{bottom:823.906050px;}
.y35{bottom:826.111650px;}
.y6e{bottom:826.113450px;}
.y10c{bottom:827.932650px;}
.y1ad{bottom:828.286950px;}
.y167{bottom:828.995550px;}
.y23c{bottom:830.723550px;}
.y20f{bottom:834.976050px;}
.y10b{bottom:844.429650px;}
.y1e6{bottom:844.635000px;}
.y1ac{bottom:844.783950px;}
.y1b1{bottom:844.797450px;}
.y133{bottom:845.492550px;}
.y5d{bottom:845.614650px;}
.y6d{bottom:845.616450px;}
.yb0{bottom:848.098350px;}
.y20e{bottom:851.027550px;}
.y34{bottom:865.117650px;}
.y6c{bottom:865.119450px;}
.y10a{bottom:866.016150px;}
.yaf{bottom:866.098350px;}
.y1ab{bottom:866.370450px;}
.y132{bottom:867.079050px;}
.y32{bottom:876.126000px;}
.y31{bottom:892.626000px;}
.y5c{bottom:905.052000px;}
.y33{bottom:905.527950px;}
.y3{bottom:905.716500px;}
.y30{bottom:909.126000px;}
.y2f{bottom:925.626000px;}
.y2{bottom:964.228500px;}
.y1{bottom:989.716500px;}
.h1e{height:23.982000px;}
.h1d{height:32.079000px;}
.h1c{height:32.080500px;}
.h4{height:33.000000px;}
.h1b{height:35.340170px;}
.hd{height:36.492188px;}
.hf{height:39.990234px;}
.h14{height:41.273438px;}
.h12{height:44.601562px;}
.he{height:46.274414px;}
.h17{height:46.432617px;}
.h18{height:46.617188px;}
.h10{height:51.416016px;}
.h16{height:51.591797px;}
.h15{height:56.557617px;}
.h11{height:56.750977px;}
.h13{height:56.976562px;}
.h3{height:58.406250px;}
.hc{height:61.910156px;}
.hb{height:64.875000px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h19{height:84.502617px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h1a{height:217.938000px;}
.h9{height:977.953500px;}
.ha{height:978.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wd{width:106.206000px;}
.wc{width:129.256500px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.we{width:488.013000px;}
.w2{width:494.625000px;}
.wb{width:502.051500px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wa{width:680.250000px;}
.w9{width:680.314500px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x40{left:7.946850px;}
.x39{left:15.895800px;}
.x3c{left:19.608000px;}
.x3e{left:31.416900px;}
.x17{left:85.039350px;}
.x2e{left:86.112300px;}
.x31{left:89.001300px;}
.x20{left:93.730800px;}
.x35{left:95.668500px;}
.x11{left:97.789800px;}
.x2a{left:98.868300px;}
.x34{left:102.177300px;}
.x24{left:106.486650px;}
.x2f{left:108.468300px;}
.x42{left:110.552850px;}
.x2c{left:115.162800px;}
.x1d{left:117.684600px;}
.x25{left:118.906650px;}
.x2b{left:121.224300px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x1a{left:134.647050px;}
.x38{left:139.191000px;}
.xb{left:149.568150px;}
.x5{left:174.105000px;}
.x1b{left:178.298850px;}
.x3a{left:187.033350px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x30{left:212.593800px;}
.x1c{left:215.440350px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x28{left:221.299650px;}
.x6{left:222.480000px;}
.x21{left:225.544800px;}
.xc{left:231.343200px;}
.xa{left:243.000150px;}
.xd{left:256.183200px;}
.xf{left:259.045200px;}
.xe{left:270.511200px;}
.x41{left:283.462650px;}
.x18{left:288.270750px;}
.x37{left:289.666650px;}
.x22{left:291.855900px;}
.x23{left:294.594900px;}
.x3f{left:304.115550px;}
.x29{left:305.884350px;}
.x26{left:307.294350px;}
.x1e{left:315.032100px;}
.x12{left:317.178300px;}
.x10{left:321.444300px;}
.x1f{left:323.711100px;}
.x27{left:376.441650px;}
.x16{left:397.719300px;}
.x3b{left:417.618000px;}
.x15{left:460.749300px;}
.x3d{left:465.460950px;}
.x32{left:484.686300px;}
.x14{left:495.954300px;}
.x13{left:497.544300px;}
.x36{left:500.262900px;}
.x2d{left:522.970800px;}
.x19{left:571.590600px;}
.x33{left:573.120150px;}
@media print{
.v1{vertical-align:-1.692267pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:33.840000pt;}
.ls70{letter-spacing:-5.232000pt;}
.lsf{letter-spacing:-4.160000pt;}
.ls4b{letter-spacing:-3.600000pt;}
.ls5a{letter-spacing:-3.578667pt;}
.ls63{letter-spacing:-3.520000pt;}
.ls79{letter-spacing:-3.344000pt;}
.ls4d{letter-spacing:-3.216000pt;}
.ls67{letter-spacing:-3.168000pt;}
.ls76{letter-spacing:-2.933333pt;}
.ls52{letter-spacing:-2.832000pt;}
.ls54{letter-spacing:-2.736000pt;}
.ls85{letter-spacing:-2.592000pt;}
.ls78{letter-spacing:-2.464000pt;}
.ls47{letter-spacing:-2.352000pt;}
.ls38{letter-spacing:-2.208000pt;}
.ls4e{letter-spacing:-2.160000pt;}
.ls7d{letter-spacing:-2.112000pt;}
.ls7c{letter-spacing:-2.016000pt;}
.ls65{letter-spacing:-1.968000pt;}
.ls89{letter-spacing:-1.872000pt;}
.ls88{letter-spacing:-1.824000pt;}
.ls4c{letter-spacing:-1.776000pt;}
.ls55{letter-spacing:-1.728000pt;}
.ls40{letter-spacing:-1.584000pt;}
.ls60{letter-spacing:-1.525333pt;}
.ls8b{letter-spacing:-1.488000pt;}
.ls6{letter-spacing:-1.408000pt;}
.ls77{letter-spacing:-1.349333pt;}
.ls5e{letter-spacing:-1.344000pt;}
.ls51{letter-spacing:-1.248000pt;}
.ls2{letter-spacing:-1.194667pt;}
.ls86{letter-spacing:-1.056000pt;}
.ls3{letter-spacing:-1.024000pt;}
.ls74{letter-spacing:-0.938667pt;}
.ls80{letter-spacing:-0.912000pt;}
.ls84{letter-spacing:-0.864000pt;}
.ls36{letter-spacing:-0.821333pt;}
.ls46{letter-spacing:-0.768000pt;}
.ls1f{letter-spacing:-0.762667pt;}
.ls6e{letter-spacing:-0.672000pt;}
.ls30{letter-spacing:-0.586667pt;}
.ls72{letter-spacing:-0.528000pt;}
.ls6a{letter-spacing:-0.480000pt;}
.ls7b{letter-spacing:-0.469333pt;}
.ls53{letter-spacing:-0.432000pt;}
.ls68{letter-spacing:-0.410667pt;}
.ls64{letter-spacing:-0.384000pt;}
.ls61{letter-spacing:-0.336000pt;}
.ls6f{letter-spacing:-0.288000pt;}
.ls4f{letter-spacing:-0.240000pt;}
.ls7a{letter-spacing:-0.234667pt;}
.ls57{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.176000pt;}
.ls69{letter-spacing:-0.144000pt;}
.ls22{letter-spacing:-0.117333pt;}
.ls62{letter-spacing:-0.096000pt;}
.ls33{letter-spacing:-0.058667pt;}
.ls66{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.048000pt;}
.ls19{letter-spacing:0.058667pt;}
.ls5c{letter-spacing:0.096000pt;}
.ls59{letter-spacing:0.117333pt;}
.ls37{letter-spacing:0.176000pt;}
.ls71{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.234667pt;}
.ls3c{letter-spacing:0.240000pt;}
.ls1{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.288000pt;}
.ls2a{letter-spacing:0.293333pt;}
.ls6c{letter-spacing:0.336000pt;}
.ls1d{letter-spacing:0.352000pt;}
.ls3a{letter-spacing:0.384000pt;}
.ls2b{letter-spacing:0.410667pt;}
.ls11{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.432000pt;}
.ls32{letter-spacing:0.469333pt;}
.ls9{letter-spacing:0.480000pt;}
.ls23{letter-spacing:0.528000pt;}
.lsd{letter-spacing:0.533333pt;}
.ls15{letter-spacing:0.586667pt;}
.ls8a{letter-spacing:0.624000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls26{letter-spacing:0.645333pt;}
.lsb{letter-spacing:0.672000pt;}
.ls2c{letter-spacing:0.704000pt;}
.ls3d{letter-spacing:0.720000pt;}
.lse{letter-spacing:0.746667pt;}
.ls27{letter-spacing:0.762667pt;}
.ls87{letter-spacing:0.768000pt;}
.ls83{letter-spacing:0.816000pt;}
.ls1a{letter-spacing:0.821333pt;}
.ls7f{letter-spacing:0.864000pt;}
.ls1b{letter-spacing:0.880000pt;}
.ls8c{letter-spacing:0.912000pt;}
.ls17{letter-spacing:0.938667pt;}
.ls7e{letter-spacing:0.960000pt;}
.ls2f{letter-spacing:0.997333pt;}
.ls50{letter-spacing:1.008000pt;}
.ls1e{letter-spacing:1.056000pt;}
.ls73{letter-spacing:1.104000pt;}
.ls43{letter-spacing:1.114667pt;}
.ls81{letter-spacing:1.152000pt;}
.ls24{letter-spacing:1.173333pt;}
.ls5f{letter-spacing:1.200000pt;}
.ls18{letter-spacing:1.232000pt;}
.ls6d{letter-spacing:1.248000pt;}
.ls12{letter-spacing:1.290667pt;}
.ls48{letter-spacing:1.296000pt;}
.ls2e{letter-spacing:1.349333pt;}
.ls6b{letter-spacing:1.392000pt;}
.ls1c{letter-spacing:1.408000pt;}
.ls56{letter-spacing:1.440000pt;}
.ls16{letter-spacing:1.466667pt;}
.ls3b{letter-spacing:1.488000pt;}
.ls34{letter-spacing:1.525333pt;}
.ls58{letter-spacing:1.584000pt;}
.ls21{letter-spacing:1.642667pt;}
.ls28{letter-spacing:1.701333pt;}
.ls75{letter-spacing:1.760000pt;}
.ls14{letter-spacing:1.818667pt;}
.ls10{letter-spacing:1.877333pt;}
.ls42{letter-spacing:1.936000pt;}
.ls82{letter-spacing:1.968000pt;}
.ls39{letter-spacing:1.994667pt;}
.ls5{letter-spacing:2.048000pt;}
.ls29{letter-spacing:2.053333pt;}
.ls5d{letter-spacing:2.064000pt;}
.ls35{letter-spacing:2.112000pt;}
.ls41{letter-spacing:2.229333pt;}
.ls31{letter-spacing:2.522667pt;}
.ls20{letter-spacing:2.581333pt;}
.ls3f{letter-spacing:2.640000pt;}
.ls2d{letter-spacing:2.874667pt;}
.ls7{letter-spacing:4.032000pt;}
.ls4{letter-spacing:5.312000pt;}
.ls4a{letter-spacing:76.368000pt;}
.ls49{letter-spacing:108.144000pt;}
.ls5b{letter-spacing:110.880000pt;}
.ls45{letter-spacing:222.576000pt;}
.ls44{letter-spacing:234.480000pt;}
.ws7e{word-spacing:-246.480000pt;}
.ws0{word-spacing:-16.874667pt;}
.wsae{word-spacing:-16.778667pt;}
.ws5c{word-spacing:-16.309333pt;}
.wsad{word-spacing:-16.250667pt;}
.ws7b{word-spacing:-16.192000pt;}
.ws13{word-spacing:-15.957333pt;}
.wsbe{word-spacing:-15.840000pt;}
.ws10d{word-spacing:-15.605333pt;}
.ws121{word-spacing:-15.429333pt;}
.ws3f{word-spacing:-15.370667pt;}
.ws51{word-spacing:-15.312000pt;}
.ws8f{word-spacing:-15.253333pt;}
.ws14{word-spacing:-15.018667pt;}
.ws69{word-spacing:-14.901333pt;}
.ws7c{word-spacing:-14.725333pt;}
.ws50{word-spacing:-14.608000pt;}
.ws2c{word-spacing:-14.549333pt;}
.wse4{word-spacing:-14.256000pt;}
.ws4{word-spacing:-14.080000pt;}
.wsc0{word-spacing:-14.064000pt;}
.ws12f{word-spacing:-13.968000pt;}
.ws103{word-spacing:-13.728000pt;}
.ws114{word-spacing:-13.317333pt;}
.ws134{word-spacing:-13.152000pt;}
.wscd{word-spacing:-13.141333pt;}
.wsf8{word-spacing:-13.104000pt;}
.ws156{word-spacing:-13.056000pt;}
.ws96{word-spacing:-13.008000pt;}
.ws155{word-spacing:-12.960000pt;}
.ws12d{word-spacing:-12.864000pt;}
.ws3{word-spacing:-12.672000pt;}
.ws12c{word-spacing:-12.554667pt;}
.ws93{word-spacing:-12.528000pt;}
.wsa2{word-spacing:-12.480000pt;}
.ws2{word-spacing:-12.432000pt;}
.ws6a{word-spacing:-12.384000pt;}
.ws117{word-spacing:-12.202667pt;}
.ws132{word-spacing:-12.192000pt;}
.wsd9{word-spacing:-12.000000pt;}
.wsd8{word-spacing:-11.952000pt;}
.wsea{word-spacing:-11.856000pt;}
.ws95{word-spacing:-11.760000pt;}
.ws10c{word-spacing:-11.733333pt;}
.wsce{word-spacing:-11.664000pt;}
.ws133{word-spacing:-11.616000pt;}
.ws153{word-spacing:-11.472000pt;}
.ws120{word-spacing:-11.322667pt;}
.wsd5{word-spacing:-11.146667pt;}
.ws12e{word-spacing:-11.088000pt;}
.wsc2{word-spacing:-10.656000pt;}
.ws154{word-spacing:-10.512000pt;}
.ws130{word-spacing:-10.176000pt;}
.ws131{word-spacing:-10.128000pt;}
.ws9a{word-spacing:-9.840000pt;}
.ws5e{word-spacing:-9.792000pt;}
.ws84{word-spacing:-9.648000pt;}
.ws5{word-spacing:-9.173333pt;}
.wsee{word-spacing:-6.768000pt;}
.ws118{word-spacing:-3.872000pt;}
.ws31{word-spacing:-3.754667pt;}
.ws1e{word-spacing:-3.696000pt;}
.ws15{word-spacing:-3.637333pt;}
.ws113{word-spacing:-3.578667pt;}
.ws13b{word-spacing:-3.504000pt;}
.ws61{word-spacing:-3.461333pt;}
.ws4a{word-spacing:-3.402667pt;}
.ws45{word-spacing:-3.285333pt;}
.ws76{word-spacing:-3.109333pt;}
.wsdb{word-spacing:-3.072000pt;}
.ws44{word-spacing:-3.050667pt;}
.ws128{word-spacing:-3.024000pt;}
.ws87{word-spacing:-2.992000pt;}
.wsfc{word-spacing:-2.976000pt;}
.ws65{word-spacing:-2.933333pt;}
.ws35{word-spacing:-2.874667pt;}
.ws11c{word-spacing:-2.816000pt;}
.wsdc{word-spacing:-2.784000pt;}
.ws116{word-spacing:-2.698667pt;}
.ws55{word-spacing:-2.640000pt;}
.ws12a{word-spacing:-2.592000pt;}
.ws88{word-spacing:-2.522667pt;}
.wsb7{word-spacing:-2.464000pt;}
.ws13c{word-spacing:-2.448000pt;}
.ws11d{word-spacing:-2.405333pt;}
.wsfa{word-spacing:-2.400000pt;}
.ws8d{word-spacing:-2.346667pt;}
.ws10b{word-spacing:-2.288000pt;}
.ws151{word-spacing:-2.256000pt;}
.ws110{word-spacing:-2.229333pt;}
.ws119{word-spacing:-2.170667pt;}
.ws100{word-spacing:-2.160000pt;}
.ws9{word-spacing:-2.112000pt;}
.ws14d{word-spacing:-2.064000pt;}
.ws1b{word-spacing:-2.053333pt;}
.ws137{word-spacing:-2.016000pt;}
.wsdd{word-spacing:-1.994667pt;}
.wsfb{word-spacing:-1.968000pt;}
.wsac{word-spacing:-1.936000pt;}
.ws5a{word-spacing:-1.877333pt;}
.ws150{word-spacing:-1.776000pt;}
.ws3a{word-spacing:-1.760000pt;}
.ws13d{word-spacing:-1.728000pt;}
.ws38{word-spacing:-1.701333pt;}
.ws109{word-spacing:-1.642667pt;}
.wsba{word-spacing:-1.584000pt;}
.ws148{word-spacing:-1.536000pt;}
.ws57{word-spacing:-1.525333pt;}
.wsff{word-spacing:-1.488000pt;}
.ws28{word-spacing:-1.466667pt;}
.ws8b{word-spacing:-1.296000pt;}
.ws23{word-spacing:-1.290667pt;}
.ws42{word-spacing:-1.232000pt;}
.wsc7{word-spacing:-1.200000pt;}
.ws2a{word-spacing:-1.173333pt;}
.ws7a{word-spacing:-1.114667pt;}
.wsa8{word-spacing:-1.056000pt;}
.ws124{word-spacing:-0.938667pt;}
.ws159{word-spacing:-0.912000pt;}
.ws1a{word-spacing:-0.880000pt;}
.ws14a{word-spacing:-0.864000pt;}
.wsc{word-spacing:-0.832000pt;}
.ws27{word-spacing:-0.821333pt;}
.ws14e{word-spacing:-0.816000pt;}
.ws13a{word-spacing:-0.768000pt;}
.ws73{word-spacing:-0.704000pt;}
.ws71{word-spacing:-0.672000pt;}
.ws33{word-spacing:-0.645333pt;}
.ws22{word-spacing:-0.586667pt;}
.ws11{word-spacing:-0.533333pt;}
.ws2d{word-spacing:-0.528000pt;}
.wsd{word-spacing:-0.480000pt;}
.ws4e{word-spacing:-0.469333pt;}
.wsf{word-spacing:-0.432000pt;}
.ws3c{word-spacing:-0.410667pt;}
.wsa6{word-spacing:-0.384000pt;}
.ws10f{word-spacing:-0.352000pt;}
.ws142{word-spacing:-0.336000pt;}
.ws43{word-spacing:-0.293333pt;}
.wse{word-spacing:-0.288000pt;}
.ws149{word-spacing:-0.240000pt;}
.ws8a{word-spacing:-0.234667pt;}
.ws60{word-spacing:-0.192000pt;}
.wsbb{word-spacing:-0.176000pt;}
.ws152{word-spacing:-0.144000pt;}
.ws10a{word-spacing:-0.117333pt;}
.ws10{word-spacing:-0.106667pt;}
.wsc6{word-spacing:-0.096000pt;}
.ws125{word-spacing:-0.058667pt;}
.wsa3{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws15b{word-spacing:0.048000pt;}
.ws5f{word-spacing:0.053333pt;}
.wsca{word-spacing:0.058667pt;}
.wsd4{word-spacing:0.096000pt;}
.ws101{word-spacing:0.144000pt;}
.wsc9{word-spacing:0.176000pt;}
.ws102{word-spacing:0.192000pt;}
.wscc{word-spacing:0.234667pt;}
.wsa5{word-spacing:0.240000pt;}
.ws5b{word-spacing:0.293333pt;}
.wsda{word-spacing:0.336000pt;}
.wse0{word-spacing:0.352000pt;}
.wsd3{word-spacing:0.384000pt;}
.ws70{word-spacing:0.432000pt;}
.wsf9{word-spacing:0.480000pt;}
.ws89{word-spacing:0.528000pt;}
.ws136{word-spacing:0.576000pt;}
.ws1d{word-spacing:0.586667pt;}
.ws6{word-spacing:0.597333pt;}
.ws2f{word-spacing:0.645333pt;}
.wsfd{word-spacing:0.672000pt;}
.ws3b{word-spacing:0.704000pt;}
.ws25{word-spacing:0.762667pt;}
.ws56{word-spacing:0.821333pt;}
.ws144{word-spacing:0.864000pt;}
.ws11f{word-spacing:0.880000pt;}
.ws138{word-spacing:0.912000pt;}
.wsb9{word-spacing:0.938667pt;}
.ws19{word-spacing:0.997333pt;}
.ws8c{word-spacing:1.056000pt;}
.ws158{word-spacing:1.104000pt;}
.wsa{word-spacing:1.152000pt;}
.ws78{word-spacing:1.232000pt;}
.ws13f{word-spacing:1.248000pt;}
.ws115{word-spacing:1.290667pt;}
.ws10e{word-spacing:1.349333pt;}
.ws157{word-spacing:1.392000pt;}
.ws111{word-spacing:1.408000pt;}
.ws64{word-spacing:1.466667pt;}
.ws46{word-spacing:1.525333pt;}
.wse3{word-spacing:1.584000pt;}
.wsb5{word-spacing:1.642667pt;}
.ws63{word-spacing:1.701333pt;}
.ws12b{word-spacing:1.728000pt;}
.wsd0{word-spacing:1.760000pt;}
.ws2e{word-spacing:1.818667pt;}
.ws8{word-spacing:1.877333pt;}
.ws135{word-spacing:1.920000pt;}
.ws4f{word-spacing:1.936000pt;}
.ws7{word-spacing:2.048000pt;}
.ws54{word-spacing:2.112000pt;}
.wsa4{word-spacing:2.160000pt;}
.ws75{word-spacing:2.170667pt;}
.ws129{word-spacing:2.208000pt;}
.ws11a{word-spacing:2.229333pt;}
.ws18{word-spacing:2.288000pt;}
.ws143{word-spacing:2.352000pt;}
.ws79{word-spacing:2.464000pt;}
.ws127{word-spacing:2.496000pt;}
.ws30{word-spacing:2.522667pt;}
.ws37{word-spacing:2.581333pt;}
.ws147{word-spacing:2.592000pt;}
.wsa7{word-spacing:2.640000pt;}
.ws15a{word-spacing:2.688000pt;}
.wsb8{word-spacing:2.698667pt;}
.ws29{word-spacing:2.757333pt;}
.ws126{word-spacing:2.784000pt;}
.ws68{word-spacing:2.816000pt;}
.ws122{word-spacing:2.874667pt;}
.ws140{word-spacing:2.880000pt;}
.ws2b{word-spacing:2.933333pt;}
.ws62{word-spacing:2.992000pt;}
.ws14b{word-spacing:3.024000pt;}
.wsb6{word-spacing:3.050667pt;}
.wsde{word-spacing:3.168000pt;}
.ws66{word-spacing:3.226667pt;}
.ws11b{word-spacing:3.285333pt;}
.wscb{word-spacing:3.344000pt;}
.ws139{word-spacing:3.360000pt;}
.ws14f{word-spacing:3.456000pt;}
.ws47{word-spacing:3.461333pt;}
.ws59{word-spacing:3.520000pt;}
.wsbd{word-spacing:3.578667pt;}
.ws21{word-spacing:3.637333pt;}
.wsb0{word-spacing:3.696000pt;}
.ws146{word-spacing:3.744000pt;}
.ws67{word-spacing:3.813333pt;}
.ws123{word-spacing:3.930667pt;}
.ws14c{word-spacing:3.984000pt;}
.ws1f{word-spacing:3.989333pt;}
.ws112{word-spacing:4.048000pt;}
.ws3e{word-spacing:4.106667pt;}
.wsa9{word-spacing:4.128000pt;}
.wsd2{word-spacing:4.165333pt;}
.ws32{word-spacing:4.341333pt;}
.ws36{word-spacing:4.517333pt;}
.wsb{word-spacing:4.608000pt;}
.ws74{word-spacing:4.693333pt;}
.ws20{word-spacing:4.752000pt;}
.ws1c{word-spacing:4.810667pt;}
.ws8e{word-spacing:4.928000pt;}
.ws141{word-spacing:4.944000pt;}
.wse1{word-spacing:4.986667pt;}
.ws13e{word-spacing:4.992000pt;}
.ws48{word-spacing:5.045333pt;}
.ws52{word-spacing:5.104000pt;}
.ws39{word-spacing:5.162667pt;}
.ws11e{word-spacing:5.280000pt;}
.ws107{word-spacing:5.338667pt;}
.wsaf{word-spacing:5.397333pt;}
.ws34{word-spacing:5.573333pt;}
.ws40{word-spacing:5.690667pt;}
.ws72{word-spacing:5.749333pt;}
.wsb3{word-spacing:5.808000pt;}
.wsdf{word-spacing:5.866667pt;}
.ws17{word-spacing:5.984000pt;}
.wsab{word-spacing:6.000000pt;}
.wse2{word-spacing:6.160000pt;}
.wsb1{word-spacing:6.218667pt;}
.ws108{word-spacing:6.277333pt;}
.ws58{word-spacing:6.394667pt;}
.wsd1{word-spacing:6.453333pt;}
.wsaa{word-spacing:6.480000pt;}
.ws145{word-spacing:6.528000pt;}
.ws4c{word-spacing:6.570667pt;}
.wsfe{word-spacing:6.576000pt;}
.ws24{word-spacing:6.629333pt;}
.wsbc{word-spacing:6.688000pt;}
.ws49{word-spacing:6.746667pt;}
.ws4b{word-spacing:6.864000pt;}
.ws3d{word-spacing:6.922667pt;}
.wsb4{word-spacing:7.098667pt;}
.wsc8{word-spacing:7.274667pt;}
.ws16{word-spacing:7.333333pt;}
.ws53{word-spacing:7.626667pt;}
.wsb2{word-spacing:7.685333pt;}
.ws106{word-spacing:7.861333pt;}
.ws77{word-spacing:8.213333pt;}
.ws4d{word-spacing:9.738667pt;}
.ws26{word-spacing:9.856000pt;}
.ws12{word-spacing:10.824000pt;}
.ws41{word-spacing:11.498667pt;}
.ws9e{word-spacing:61.516800pt;}
.wse6{word-spacing:61.584000pt;}
.wsa0{word-spacing:61.824000pt;}
.wseb{word-spacing:61.905600pt;}
.wsf3{word-spacing:61.968000pt;}
.wsf0{word-spacing:62.352000pt;}
.wsed{word-spacing:62.928000pt;}
.ws105{word-spacing:63.408000pt;}
.wsf7{word-spacing:63.537600pt;}
.ws104{word-spacing:63.600000pt;}
.wse8{word-spacing:63.696000pt;}
.wsf5{word-spacing:63.729600pt;}
.wsf1{word-spacing:63.792000pt;}
.wse9{word-spacing:63.820800pt;}
.wsef{word-spacing:63.984000pt;}
.wsec{word-spacing:64.368000pt;}
.wsf4{word-spacing:64.689600pt;}
.ws9f{word-spacing:64.752000pt;}
.ws97{word-spacing:66.864000pt;}
.ws9c{word-spacing:67.824000pt;}
.ws9d{word-spacing:67.848000pt;}
.wsd7{word-spacing:68.337600pt;}
.ws99{word-spacing:69.072000pt;}
.ws9b{word-spacing:69.888000pt;}
.wscf{word-spacing:70.036800pt;}
.ws98{word-spacing:70.065600pt;}
.ws91{word-spacing:78.216000pt;}
.ws6e{word-spacing:78.902400pt;}
.wsc1{word-spacing:79.190400pt;}
.ws94{word-spacing:85.185600pt;}
.ws90{word-spacing:87.552000pt;}
.ws6b{word-spacing:92.520000pt;}
.wsa1{word-spacing:95.184000pt;}
.wsc4{word-spacing:96.028800pt;}
.wse5{word-spacing:96.417600pt;}
.wsd6{word-spacing:96.912000pt;}
.ws6c{word-spacing:96.936000pt;}
.wse7{word-spacing:97.104000pt;}
.wsf6{word-spacing:97.200000pt;}
.wsc5{word-spacing:99.264000pt;}
.wsc3{word-spacing:99.624000pt;}
.ws6f{word-spacing:101.452800pt;}
.ws6d{word-spacing:104.169600pt;}
.ws83{word-spacing:212.448000pt;}
.ws80{word-spacing:213.168000pt;}
.ws81{word-spacing:222.480000pt;}
.ws5d{word-spacing:305.472000pt;}
.ws85{word-spacing:362.438400pt;}
.ws7f{word-spacing:369.624000pt;}
.ws7d{word-spacing:376.056000pt;}
.ws86{word-spacing:384.988800pt;}
.ws82{word-spacing:387.705600pt;}
.ws92{word-spacing:742.353600pt;}
.wsbf{word-spacing:833.073600pt;}
.wsf2{word-spacing:890.404800pt;}
._1d{margin-left:-234.085867pt;}
._14{margin-left:-28.656000pt;}
._10{margin-left:-26.762133pt;}
._b{margin-left:-23.410667pt;}
._c{margin-left:-21.895467pt;}
._2b{margin-left:-21.005867pt;}
._d{margin-left:-19.874133pt;}
._e{margin-left:-18.972800pt;}
._18{margin-left:-17.212800pt;}
._9{margin-left:-12.004267pt;}
._2{margin-left:-6.536533pt;}
._11{margin-left:-5.286400pt;}
._3{margin-left:-3.808000pt;}
._8{margin-left:-2.744000pt;}
._1{margin-left:-1.774933pt;}
._4{width:1.604267pt;}
._5{width:3.217067pt;}
._0{width:4.966400pt;}
._6{width:5.990400pt;}
._7{width:6.939733pt;}
._a{width:8.195200pt;}
._f{width:52.506667pt;}
._15{width:53.562667pt;}
._17{width:56.789333pt;}
._1a{width:58.842667pt;}
._36{width:60.837333pt;}
._16{width:61.834667pt;}
._12{width:63.184000pt;}
._13{width:64.650667pt;}
._1b{width:77.067733pt;}
._1c{width:78.027733pt;}
._22{width:90.851200pt;}
._25{width:106.108267pt;}
._19{width:123.847467pt;}
._1f{width:128.182400pt;}
._2a{width:164.881067pt;}
._34{width:174.111467pt;}
._20{width:177.912533pt;}
._1e{width:233.812267pt;}
._21{width:253.454933pt;}
._28{width:365.753600pt;}
._32{width:455.020800pt;}
._27{width:458.742933pt;}
._26{width:470.531200pt;}
._2f{width:475.338667pt;}
._23{width:508.698667pt;}
._33{width:512.574400pt;}
._30{width:515.520000pt;}
._2e{width:576.230400pt;}
._2d{width:594.221867pt;}
._29{width:672.378667pt;}
._31{width:685.187200pt;}
._24{width:687.510400pt;}
._35{width:708.254933pt;}
._2c{width:828.462933pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:47.131733pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1db{bottom:1.047333pt;}
.yc{bottom:7.146667pt;}
.y1e7{bottom:11.194133pt;}
.y1e1{bottom:18.381600pt;}
.y1e4{bottom:18.381867pt;}
.y1de{bottom:18.382133pt;}
.y23b{bottom:50.148933pt;}
.y260{bottom:55.848933pt;}
.y180{bottom:57.238400pt;}
.y204{bottom:58.219067pt;}
.y1d4{bottom:58.496133pt;}
.y203{bottom:58.890400pt;}
.y166{bottom:62.060400pt;}
.y131{bottom:63.440667pt;}
.y20d{bottom:63.951333pt;}
.y23a{bottom:64.416933pt;}
.y14{bottom:69.080000pt;}
.y25f{bottom:70.512933pt;}
.y17f{bottom:71.902400pt;}
.y1a9{bottom:73.440933pt;}
.y5b{bottom:75.553467pt;}
.y94{bottom:75.555067pt;}
.y6b{bottom:75.568133pt;}
.yae{bottom:75.569733pt;}
.y1d3{bottom:75.832133pt;}
.y202{bottom:76.226400pt;}
.y165{bottom:76.724400pt;}
.y159{bottom:77.992533pt;}
.y20c{bottom:78.219333pt;}
.y130{bottom:80.776667pt;}
.y239{bottom:82.464933pt;}
.y25e{bottom:85.176933pt;}
.y1a8{bottom:88.104933pt;}
.y13{bottom:88.706667pt;}
.y164{bottom:91.388400pt;}
.y5a{bottom:92.889467pt;}
.y93{bottom:92.891067pt;}
.y6a{bottom:92.904133pt;}
.yad{bottom:92.905733pt;}
.y1d2{bottom:93.168133pt;}
.y201{bottom:93.562400pt;}
.y158{bottom:95.328533pt;}
.y20b{bottom:96.267333pt;}
.y238{bottom:96.732933pt;}
.y12f{bottom:98.112667pt;}
.yf5{bottom:100.641067pt;}
.y18{bottom:101.040000pt;}
.y1a7{bottom:102.768933pt;}
.yd2{bottom:107.290000pt;}
.y59{bottom:110.225467pt;}
.y92{bottom:110.227067pt;}
.y69{bottom:110.240133pt;}
.yac{bottom:110.241733pt;}
.y1d1{bottom:110.504133pt;}
.y163{bottom:110.576400pt;}
.y200{bottom:110.898400pt;}
.y237{bottom:111.000933pt;}
.y157{bottom:112.664533pt;}
.y20a{bottom:114.315333pt;}
.y25d{bottom:114.504933pt;}
.y12e{bottom:115.448667pt;}
.y1a6{bottom:117.432933pt;}
.yf4{bottom:117.977067pt;}
.y17{bottom:120.666667pt;}
.yd1{bottom:124.626000pt;}
.y58{bottom:127.561467pt;}
.y91{bottom:127.563067pt;}
.y68{bottom:127.576133pt;}
.yab{bottom:127.577733pt;}
.y1d0{bottom:127.840133pt;}
.y1ff{bottom:128.234400pt;}
.y209{bottom:128.583333pt;}
.y236{bottom:129.048933pt;}
.y25c{bottom:129.168933pt;}
.y162{bottom:129.764400pt;}
.y156{bottom:130.000533pt;}
.y1a5{bottom:132.096933pt;}
.y12d{bottom:132.784667pt;}
.yf3{bottom:135.313067pt;}
.y15{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y16{bottom:140.293333pt;}
.yd0{bottom:141.962000pt;}
.y235{bottom:143.316933pt;}
.y25b{bottom:143.832933pt;}
.y57{bottom:144.897467pt;}
.y90{bottom:144.899067pt;}
.y67{bottom:144.912133pt;}
.yaa{bottom:144.913733pt;}
.y1cf{bottom:145.176133pt;}
.y1fe{bottom:145.570400pt;}
.y208{bottom:146.631333pt;}
.y1a4{bottom:146.760933pt;}
.y1aa{bottom:146.772933pt;}
.y155{bottom:147.336533pt;}
.y161{bottom:148.952400pt;}
.y12c{bottom:150.120667pt;}
.yf2{bottom:152.649067pt;}
.ycf{bottom:159.298000pt;}
.y207{bottom:160.899333pt;}
.y234{bottom:161.364933pt;}
.y56{bottom:162.233467pt;}
.y8f{bottom:162.235067pt;}
.y66{bottom:162.248133pt;}
.ya9{bottom:162.249733pt;}
.y1ce{bottom:162.512133pt;}
.y1fd{bottom:162.906400pt;}
.y160{bottom:163.616400pt;}
.y154{bottom:164.672533pt;}
.y1a3{bottom:165.948933pt;}
.y12b{bottom:167.456667pt;}
.yf1{bottom:169.985067pt;}
.y25a{bottom:173.160933pt;}
.y233{bottom:175.632933pt;}
.yce{bottom:176.634000pt;}
.y15f{bottom:178.280400pt;}
.y206{bottom:178.947333pt;}
.y55{bottom:179.569467pt;}
.y8e{bottom:179.571067pt;}
.y65{bottom:179.584133pt;}
.ya8{bottom:179.585733pt;}
.y1cd{bottom:179.848133pt;}
.y1fc{bottom:180.242400pt;}
.y1a2{bottom:180.612933pt;}
.y153{bottom:182.008533pt;}
.yf0{bottom:187.321067pt;}
.y259{bottom:187.824933pt;}
.y15e{bottom:192.944400pt;}
.y232{bottom:193.680933pt;}
.ycd{bottom:193.970000pt;}
.y54{bottom:196.905467pt;}
.y8d{bottom:196.907067pt;}
.y64{bottom:196.920133pt;}
.ya7{bottom:196.921733pt;}
.y1cc{bottom:197.184133pt;}
.y1fb{bottom:197.578400pt;}
.y152{bottom:199.344533pt;}
.y1a1{bottom:199.800933pt;}
.y258{bottom:202.488933pt;}
.yef{bottom:204.657067pt;}
.y15d{bottom:207.608400pt;}
.y231{bottom:207.948933pt;}
.ycc{bottom:211.306000pt;}
.y53{bottom:214.241467pt;}
.y8c{bottom:214.243067pt;}
.y63{bottom:214.256133pt;}
.ya6{bottom:214.257733pt;}
.y205{bottom:214.272400pt;}
.y12a{bottom:214.432133pt;}
.y1cb{bottom:214.520133pt;}
.y1fa{bottom:214.914400pt;}
.y151{bottom:216.680533pt;}
.y19f{bottom:218.976933pt;}
.yee{bottom:221.993067pt;}
.y230{bottom:225.996933pt;}
.y15c{bottom:226.796400pt;}
.y109{bottom:228.306267pt;}
.ycb{bottom:228.642000pt;}
.y129{bottom:229.096133pt;}
.y52{bottom:231.577467pt;}
.y8b{bottom:231.579067pt;}
.y62{bottom:231.592133pt;}
.ya5{bottom:231.593733pt;}
.y257{bottom:231.816933pt;}
.y1ca{bottom:231.856133pt;}
.y1f9{bottom:232.250400pt;}
.y19e{bottom:233.640933pt;}
.y150{bottom:234.016533pt;}
.yed{bottom:239.329067pt;}
.y22f{bottom:240.264933pt;}
.y128{bottom:243.760133pt;}
.y108{bottom:245.642267pt;}
.yca{bottom:245.978000pt;}
.y256{bottom:246.480933pt;}
.y19d{bottom:248.304933pt;}
.y51{bottom:248.913467pt;}
.y8a{bottom:248.915067pt;}
.y61{bottom:248.928133pt;}
.ya4{bottom:248.929733pt;}
.y1c9{bottom:249.192133pt;}
.y1f8{bottom:249.586400pt;}
.y14f{bottom:251.352533pt;}
.yec{bottom:256.665067pt;}
.y22e{bottom:258.312933pt;}
.y127{bottom:258.424133pt;}
.y2e{bottom:260.197067pt;}
.y255{bottom:261.144933pt;}
.y19c{bottom:262.968933pt;}
.y107{bottom:262.978267pt;}
.y1a0{bottom:262.980933pt;}
.yc9{bottom:263.314000pt;}
.y50{bottom:266.249467pt;}
.y89{bottom:266.251067pt;}
.y60{bottom:266.264133pt;}
.ya3{bottom:266.265733pt;}
.y1c8{bottom:266.528133pt;}
.y1f7{bottom:266.922400pt;}
.y14e{bottom:268.688533pt;}
.y22d{bottom:272.580933pt;}
.y126{bottom:273.088133pt;}
.yeb{bottom:274.001067pt;}
.y2d{bottom:274.861067pt;}
.y106{bottom:280.314267pt;}
.yc8{bottom:280.650000pt;}
.y19b{bottom:282.156933pt;}
.y4f{bottom:283.585467pt;}
.y88{bottom:283.587067pt;}
.ya2{bottom:283.601733pt;}
.y1c7{bottom:283.864133pt;}
.y1f6{bottom:284.258400pt;}
.y15b{bottom:285.203867pt;}
.y14d{bottom:286.024533pt;}
.y254{bottom:290.472933pt;}
.y22c{bottom:290.628933pt;}
.yea{bottom:291.337067pt;}
.y17e{bottom:291.981733pt;}
.y125{bottom:296.956133pt;}
.y105{bottom:297.650267pt;}
.yc7{bottom:297.986000pt;}
.y4e{bottom:300.921467pt;}
.y87{bottom:300.923067pt;}
.y5f{bottom:300.936133pt;}
.ya1{bottom:300.937733pt;}
.y1c6{bottom:301.200133pt;}
.y15a{bottom:301.203867pt;}
.y19a{bottom:301.344933pt;}
.y1f5{bottom:301.594400pt;}
.y14c{bottom:303.360533pt;}
.y2c{bottom:304.189067pt;}
.y22b{bottom:304.896933pt;}
.y253{bottom:305.136933pt;}
.ya{bottom:306.382667pt;}
.ye9{bottom:308.673067pt;}
.y17d{bottom:309.317733pt;}
.y104{bottom:314.986267pt;}
.yc6{bottom:315.322000pt;}
.y199{bottom:316.008933pt;}
.y124{bottom:316.144133pt;}
.y4d{bottom:318.257467pt;}
.y86{bottom:318.259067pt;}
.y5e{bottom:318.272133pt;}
.ya0{bottom:318.273733pt;}
.y1c5{bottom:318.536133pt;}
.y2b{bottom:318.853067pt;}
.y1f4{bottom:318.930400pt;}
.y252{bottom:319.800933pt;}
.y14b{bottom:320.696533pt;}
.y22a{bottom:322.944933pt;}
.ye8{bottom:326.009067pt;}
.y17c{bottom:326.653733pt;}
.y198{bottom:330.672933pt;}
.y103{bottom:332.322267pt;}
.yc5{bottom:332.658000pt;}
.y2a{bottom:333.517067pt;}
.y251{bottom:334.464933pt;}
.y123{bottom:335.332133pt;}
.y4c{bottom:335.593467pt;}
.y85{bottom:335.595067pt;}
.y9f{bottom:335.609733pt;}
.y1c4{bottom:335.872133pt;}
.y1f3{bottom:336.266400pt;}
.y229{bottom:337.212933pt;}
.y14a{bottom:338.032533pt;}
.ye7{bottom:343.345067pt;}
.yd{bottom:343.546667pt;}
.y17b{bottom:343.989733pt;}
.y29{bottom:348.181067pt;}
.y102{bottom:349.658267pt;}
.y197{bottom:349.860933pt;}
.y9{bottom:351.724000pt;}
.y4b{bottom:352.929467pt;}
.y84{bottom:352.931067pt;}
.y9e{bottom:352.945733pt;}
.y1c3{bottom:353.208133pt;}
.y1f2{bottom:353.602400pt;}
.y122{bottom:354.520133pt;}
.y228{bottom:355.260933pt;}
.y149{bottom:355.368533pt;}
.ye6{bottom:360.681067pt;}
.y17a{bottom:361.325733pt;}
.y28{bottom:362.845067pt;}
.y101{bottom:366.994267pt;}
.yc4{bottom:367.330000pt;}
.y196{bottom:369.048933pt;}
.y227{bottom:369.528933pt;}
.y4a{bottom:370.265467pt;}
.y83{bottom:370.267067pt;}
.y9d{bottom:370.281733pt;}
.y1c2{bottom:370.544133pt;}
.y1f1{bottom:370.938400pt;}
.y148{bottom:372.704533pt;}
.y121{bottom:373.708133pt;}
.y27{bottom:377.509067pt;}
.ye5{bottom:378.017067pt;}
.y179{bottom:378.661733pt;}
.y226{bottom:383.796933pt;}
.yc3{bottom:384.666000pt;}
.yb{bottom:386.533333pt;}
.y49{bottom:387.601467pt;}
.y82{bottom:387.603067pt;}
.y9c{bottom:387.617733pt;}
.y1c1{bottom:387.880133pt;}
.y195{bottom:388.236933pt;}
.y1f0{bottom:388.274400pt;}
.y147{bottom:390.040533pt;}
.y26{bottom:392.173067pt;}
.y120{bottom:392.896133pt;}
.ye4{bottom:395.353067pt;}
.y178{bottom:395.997733pt;}
.y8{bottom:397.065333pt;}
.y250{bottom:398.064933pt;}
.y225{bottom:401.844933pt;}
.yc2{bottom:402.002000pt;}
.y48{bottom:404.937467pt;}
.y81{bottom:404.939067pt;}
.y9b{bottom:404.953733pt;}
.y1c0{bottom:405.216133pt;}
.y1ef{bottom:405.610400pt;}
.y25{bottom:406.837067pt;}
.y194{bottom:407.424933pt;}
.y11f{bottom:407.560133pt;}
.y24f{bottom:412.332933pt;}
.ye3{bottom:412.689067pt;}
.y177{bottom:413.333733pt;}
.y224{bottom:416.112933pt;}
.y100{bottom:418.839067pt;}
.yc1{bottom:419.338000pt;}
.y24{bottom:421.501067pt;}
.y47{bottom:422.273467pt;}
.y80{bottom:422.275067pt;}
.y9a{bottom:422.289733pt;}
.y1bf{bottom:422.552133pt;}
.y1ee{bottom:422.946400pt;}
.y24e{bottom:426.600933pt;}
.y193{bottom:426.612933pt;}
.y11e{bottom:426.748133pt;}
.yff{bottom:427.299067pt;}
.y176{bottom:430.669733pt;}
.y10{bottom:433.826667pt;}
.y223{bottom:434.160933pt;}
.y23{bottom:436.165067pt;}
.yc0{bottom:436.674000pt;}
.y46{bottom:439.609467pt;}
.y7f{bottom:439.611067pt;}
.y99{bottom:439.625733pt;}
.y1be{bottom:439.888133pt;}
.y1ed{bottom:440.282400pt;}
.y11d{bottom:441.412133pt;}
.y146{bottom:442.356933pt;}
.y7{bottom:442.406667pt;}
.y24d{bottom:444.648933pt;}
.y191{bottom:445.800933pt;}
.y175{bottom:448.005733pt;}
.y222{bottom:448.428933pt;}
.y22{bottom:450.829067pt;}
.yfe{bottom:452.679067pt;}
.ybf{bottom:454.010000pt;}
.y45{bottom:456.945467pt;}
.y7e{bottom:456.947067pt;}
.y98{bottom:456.961733pt;}
.y1bd{bottom:457.224133pt;}
.y1ec{bottom:457.618400pt;}
.y24c{bottom:458.916933pt;}
.y190{bottom:460.464933pt;}
.y11c{bottom:460.600133pt;}
.y145{bottom:461.544933pt;}
.y221{bottom:462.696933pt;}
.y174{bottom:465.341733pt;}
.ye2{bottom:465.674267pt;}
.yfd{bottom:469.599067pt;}
.y24b{bottom:473.184933pt;}
.y44{bottom:474.281467pt;}
.y7d{bottom:474.283067pt;}
.y97{bottom:474.297733pt;}
.y1bc{bottom:474.560133pt;}
.y1eb{bottom:474.954400pt;}
.y18f{bottom:475.128933pt;}
.y11b{bottom:475.264133pt;}
.y11{bottom:478.426667pt;}
.ye1{bottom:480.338267pt;}
.y144{bottom:480.732933pt;}
.y220{bottom:480.744933pt;}
.y173{bottom:482.677733pt;}
.yfc{bottom:486.519067pt;}
.yf9{bottom:486.531067pt;}
.y24a{bottom:487.452933pt;}
.y6{bottom:487.748000pt;}
.y18e{bottom:489.792933pt;}
.y43{bottom:491.617467pt;}
.y7c{bottom:491.619067pt;}
.y96{bottom:491.633733pt;}
.y1bb{bottom:491.896133pt;}
.y1ea{bottom:492.290400pt;}
.y11a{bottom:494.452133pt;}
.ye0{bottom:495.002267pt;}
.y21f{bottom:495.012933pt;}
.y142{bottom:499.920933pt;}
.y172{bottom:500.013733pt;}
.yfb{bottom:503.439067pt;}
.y18d{bottom:504.456933pt;}
.y192{bottom:504.468933pt;}
.y249{bottom:505.500933pt;}
.ybe{bottom:508.916400pt;}
.y42{bottom:508.953467pt;}
.y7b{bottom:508.955067pt;}
.y1d9{bottom:508.969733pt;}
.y1ba{bottom:509.232133pt;}
.y21e{bottom:509.280933pt;}
.y119{bottom:513.640133pt;}
.ydf{bottom:514.190267pt;}
.y141{bottom:514.584933pt;}
.y171{bottom:517.349733pt;}
.y21{bottom:517.517067pt;}
.y248{bottom:519.768933pt;}
.yfa{bottom:520.359067pt;}
.y21d{bottom:523.548933pt;}
.ybd{bottom:523.580400pt;}
.y18c{bottom:523.644933pt;}
.y19{bottom:524.093333pt;}
.y41{bottom:526.289467pt;}
.y7a{bottom:526.291067pt;}
.y95{bottom:526.305733pt;}
.y1b9{bottom:526.568133pt;}
.yde{bottom:528.854267pt;}
.y140{bottom:529.248933pt;}
.y118{bottom:532.828133pt;}
.y5{bottom:533.089333pt;}
.y170{bottom:534.685733pt;}
.y20{bottom:534.845067pt;}
.yf8{bottom:537.279067pt;}
.y247{bottom:537.816933pt;}
.ybc{bottom:538.244400pt;}
.y18b{bottom:538.308933pt;}
.y21c{bottom:541.596933pt;}
.ydd{bottom:543.518267pt;}
.y40{bottom:543.625467pt;}
.y79{bottom:543.627067pt;}
.y1d8{bottom:543.641733pt;}
.y1b8{bottom:543.904133pt;}
.y13f{bottom:543.912933pt;}
.y1e9{bottom:544.290400pt;}
.y117{bottom:547.492133pt;}
.y16f{bottom:552.021733pt;}
.y246{bottom:552.084933pt;}
.y1f{bottom:552.173067pt;}
.ybb{bottom:552.908400pt;}
.y21b{bottom:555.864933pt;}
.y18a{bottom:557.496933pt;}
.y13e{bottom:558.576933pt;}
.y1e8{bottom:560.290400pt;}
.y3f{bottom:560.961467pt;}
.y78{bottom:560.963067pt;}
.y1d7{bottom:560.977733pt;}
.y1b7{bottom:561.240133pt;}
.ye{bottom:561.706667pt;}
.ydc{bottom:562.706267pt;}
.yf7{bottom:563.660133pt;}
.y245{bottom:566.352933pt;}
.y116{bottom:566.680133pt;}
.y16e{bottom:569.357733pt;}
.y1e{bottom:569.501067pt;}
.y21a{bottom:570.132933pt;}
.y13d{bottom:573.240933pt;}
.yba{bottom:575.876400pt;}
.y188{bottom:576.672933pt;}
.y3e{bottom:578.297467pt;}
.y77{bottom:578.299067pt;}
.y1d6{bottom:578.313733pt;}
.y1b6{bottom:578.576133pt;}
.yf6{bottom:579.660133pt;}
.y244{bottom:580.620933pt;}
.ydb{bottom:581.894267pt;}
.y115{bottom:585.868133pt;}
.y16d{bottom:586.693733pt;}
.y1d{bottom:586.829067pt;}
.y1da{bottom:587.694667pt;}
.y13c{bottom:587.904933pt;}
.y143{bottom:587.916933pt;}
.y219{bottom:588.180933pt;}
.yb9{bottom:590.540400pt;}
.y187{bottom:591.336933pt;}
.y3d{bottom:595.633467pt;}
.y76{bottom:595.635067pt;}
.y1b5{bottom:595.912133pt;}
.yda{bottom:596.558267pt;}
.y243{bottom:598.668933pt;}
.y114{bottom:600.532133pt;}
.y1e0{bottom:600.996000pt;}
.y1dd{bottom:601.113333pt;}
.y218{bottom:602.448933pt;}
.y16c{bottom:604.029733pt;}
.yb8{bottom:605.204400pt;}
.y1df{bottom:605.355867pt;}
.y1e2{bottom:605.473733pt;}
.y186{bottom:606.000933pt;}
.y13b{bottom:607.092933pt;}
.y242{bottom:612.936933pt;}
.y3c{bottom:612.969467pt;}
.y75{bottom:612.971067pt;}
.y1d5{bottom:612.985733pt;}
.y1b4{bottom:613.248133pt;}
.y113{bottom:615.196133pt;}
.yd9{bottom:615.746267pt;}
.y217{bottom:616.716933pt;}
.yb7{bottom:619.868400pt;}
.y185{bottom:620.664933pt;}
.y189{bottom:620.676933pt;}
.y16b{bottom:621.365733pt;}
.y13a{bottom:626.280933pt;}
.y241{bottom:627.204933pt;}
.y3b{bottom:630.305467pt;}
.y74{bottom:630.307067pt;}
.yd8{bottom:630.410267pt;}
.y1b3{bottom:630.584133pt;}
.y216{bottom:630.984933pt;}
.y112{bottom:634.384133pt;}
.y184{bottom:639.852933pt;}
.y1e3{bottom:639.997333pt;}
.yb6{bottom:642.836400pt;}
.y1e5{bottom:644.239600pt;}
.y240{bottom:645.252933pt;}
.y139{bottom:645.468933pt;}
.y3a{bottom:647.641467pt;}
.y73{bottom:647.643067pt;}
.y1b2{bottom:647.920133pt;}
.y215{bottom:649.032933pt;}
.yd7{bottom:649.598267pt;}
.y111{bottom:653.572133pt;}
.y183{bottom:654.516933pt;}
.y1c{bottom:656.162400pt;}
.yb5{bottom:657.500400pt;}
.y23f{bottom:659.520933pt;}
.y214{bottom:663.300933pt;}
.y138{bottom:664.656933pt;}
.y39{bottom:664.977467pt;}
.y72{bottom:664.979067pt;}
.y110{bottom:668.236133pt;}
.yd6{bottom:668.786267pt;}
.yb4{bottom:672.164400pt;}
.y16a{bottom:673.704933pt;}
.y23e{bottom:673.788933pt;}
.y1b{bottom:680.162400pt;}
.y213{bottom:681.348933pt;}
.y38{bottom:682.313467pt;}
.y71{bottom:682.315067pt;}
.y137{bottom:683.844933pt;}
.yb3{bottom:686.828400pt;}
.y10f{bottom:687.424133pt;}
.yd5{bottom:687.974267pt;}
.y169{bottom:688.368933pt;}
.y4{bottom:691.756000pt;}
.y23d{bottom:691.836933pt;}
.y1b0{bottom:692.263067pt;}
.y182{bottom:692.892933pt;}
.y212{bottom:695.616933pt;}
.y37{bottom:699.649467pt;}
.y70{bottom:699.651067pt;}
.yb2{bottom:701.492400pt;}
.y10e{bottom:702.088133pt;}
.y136{bottom:703.032933pt;}
.y1a{bottom:704.162400pt;}
.y1af{bottom:706.927067pt;}
.yd4{bottom:707.162267pt;}
.y181{bottom:707.556933pt;}
.y211{bottom:709.884933pt;}
.y1dc{bottom:716.115733pt;}
.y10d{bottom:716.752133pt;}
.y36{bottom:716.985467pt;}
.y6f{bottom:716.987067pt;}
.y135{bottom:717.696933pt;}
.y1ae{bottom:721.591067pt;}
.y168{bottom:722.220933pt;}
.y210{bottom:724.152933pt;}
.yb1{bottom:724.460400pt;}
.y12{bottom:725.040000pt;}
.yd3{bottom:726.350267pt;}
.y134{bottom:732.360933pt;}
.y35{bottom:734.321467pt;}
.y6e{bottom:734.323067pt;}
.y10c{bottom:735.940133pt;}
.y1ad{bottom:736.255067pt;}
.y167{bottom:736.884933pt;}
.y23c{bottom:738.420933pt;}
.y20f{bottom:742.200933pt;}
.y10b{bottom:750.604133pt;}
.y1e6{bottom:750.786667pt;}
.y1ac{bottom:750.919067pt;}
.y1b1{bottom:750.931067pt;}
.y133{bottom:751.548933pt;}
.y5d{bottom:751.657467pt;}
.y6d{bottom:751.659067pt;}
.yb0{bottom:753.865200pt;}
.y20e{bottom:756.468933pt;}
.y34{bottom:768.993467pt;}
.y6c{bottom:768.995067pt;}
.y10a{bottom:769.792133pt;}
.yaf{bottom:769.865200pt;}
.y1ab{bottom:770.107067pt;}
.y132{bottom:770.736933pt;}
.y32{bottom:778.778667pt;}
.y31{bottom:793.445333pt;}
.y5c{bottom:804.490667pt;}
.y33{bottom:804.913733pt;}
.y3{bottom:805.081333pt;}
.y30{bottom:808.112000pt;}
.y2f{bottom:822.778667pt;}
.y2{bottom:857.092000pt;}
.y1{bottom:879.748000pt;}
.h1e{height:21.317333pt;}
.h1d{height:28.514667pt;}
.h1c{height:28.516000pt;}
.h4{height:29.333333pt;}
.h1b{height:31.413484pt;}
.hd{height:32.437500pt;}
.hf{height:35.546875pt;}
.h14{height:36.687500pt;}
.h12{height:39.645833pt;}
.he{height:41.132812pt;}
.h17{height:41.273438pt;}
.h18{height:41.437500pt;}
.h10{height:45.703125pt;}
.h16{height:45.859375pt;}
.h15{height:50.273438pt;}
.h11{height:50.445312pt;}
.h13{height:50.645833pt;}
.h3{height:51.916667pt;}
.hc{height:55.031250pt;}
.hb{height:57.666667pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h19{height:75.113437pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h1a{height:193.722667pt;}
.h9{height:869.292000pt;}
.ha{height:869.333333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wd{width:94.405333pt;}
.wc{width:114.894667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.we{width:433.789333pt;}
.w2{width:439.666667pt;}
.wb{width:446.268000pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wa{width:604.666667pt;}
.w9{width:604.724000pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x40{left:7.063867pt;}
.x39{left:14.129600pt;}
.x3c{left:17.429333pt;}
.x3e{left:27.926133pt;}
.x17{left:75.590533pt;}
.x2e{left:76.544267pt;}
.x31{left:79.112267pt;}
.x20{left:83.316267pt;}
.x35{left:85.038667pt;}
.x11{left:86.924267pt;}
.x2a{left:87.882933pt;}
.x34{left:90.824267pt;}
.x24{left:94.654800pt;}
.x2f{left:96.416267pt;}
.x42{left:98.269200pt;}
.x2c{left:102.366933pt;}
.x1d{left:104.608533pt;}
.x25{left:105.694800pt;}
.x2b{left:107.754933pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x1a{left:119.686267pt;}
.x38{left:123.725333pt;}
.xb{left:132.949467pt;}
.x5{left:154.760000pt;}
.x1b{left:158.487867pt;}
.x3a{left:166.251867pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x30{left:188.972267pt;}
.x1c{left:191.502533pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x28{left:196.710800pt;}
.x6{left:197.760000pt;}
.x21{left:200.484267pt;}
.xc{left:205.638400pt;}
.xa{left:216.000133pt;}
.xd{left:227.718400pt;}
.xf{left:230.262400pt;}
.xe{left:240.454400pt;}
.x41{left:251.966800pt;}
.x18{left:256.240667pt;}
.x37{left:257.481467pt;}
.x22{left:259.427467pt;}
.x23{left:261.862133pt;}
.x3f{left:270.324933pt;}
.x29{left:271.897200pt;}
.x26{left:273.150533pt;}
.x1e{left:280.028533pt;}
.x12{left:281.936267pt;}
.x10{left:285.728267pt;}
.x1f{left:287.743200pt;}
.x27{left:334.614800pt;}
.x16{left:353.528267pt;}
.x3b{left:371.216000pt;}
.x15{left:409.554933pt;}
.x3d{left:413.743067pt;}
.x32{left:430.832267pt;}
.x14{left:440.848267pt;}
.x13{left:442.261600pt;}
.x36{left:444.678133pt;}
.x2d{left:464.862933pt;}
.x19{left:508.080533pt;}
.x33{left:509.440133pt;}
}




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