
    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_c12cf9108075f91f893fbbfb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_fff161559512fabc41c1a94b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_2f7e841ddfc0c11c9d1020bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_d7edd99b36ba969918299657.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_3b5f2f6f8c8d9d94110f5dc5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_aa07121a00d81836d134d79b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_53074219ada3b22d454cf7df.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_64f499e7ae29fcffa1b3ba00.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_19efe35deddca8161981b863.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_01d9877c57b7c9f5670e0659.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e1db97770239ec857226e300.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_1ac2d031a94357d6260cb3a0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v3{vertical-align:28.230000px;}
.v1{vertical-align:30.381600px;}
.v5{vertical-align:32.976000px;}
.ls8{letter-spacing:-7.740000px;}
.ls7{letter-spacing:-0.780000px;}
.ls41{letter-spacing:-0.420000px;}
.ls56{letter-spacing:-0.360000px;}
.ls6b{letter-spacing:-0.336000px;}
.ls34{letter-spacing:-0.300000px;}
.ls51{letter-spacing:-0.240000px;}
.ls52{letter-spacing:-0.192000px;}
.ls40{letter-spacing:-0.180000px;}
.ls32{letter-spacing:-0.120000px;}
.ls4f{letter-spacing:-0.096000px;}
.ls33{letter-spacing:-0.060000px;}
.ls8a{letter-spacing:-0.048000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.003540px;}
.ls3{letter-spacing:0.005076px;}
.ls0{letter-spacing:0.005676px;}
.ls69{letter-spacing:0.048000px;}
.ls29{letter-spacing:0.060000px;}
.ls72{letter-spacing:0.096000px;}
.ls27{letter-spacing:0.120000px;}
.ls5d{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.240000px;}
.ls73{letter-spacing:0.288000px;}
.ls2e{letter-spacing:0.300000px;}
.ls67{letter-spacing:0.336000px;}
.ls20{letter-spacing:0.360000px;}
.ls64{letter-spacing:0.384000px;}
.ls9{letter-spacing:0.420000px;}
.ls4e{letter-spacing:0.432000px;}
.ls2f{letter-spacing:0.480000px;}
.ls23{letter-spacing:0.540000px;}
.ls70{letter-spacing:0.576000px;}
.ls13{letter-spacing:0.600000px;}
.ls62{letter-spacing:0.624000px;}
.ls2d{letter-spacing:0.660000px;}
.ls7e{letter-spacing:0.672000px;}
.ls12{letter-spacing:0.720000px;}
.ls65{letter-spacing:0.768000px;}
.ls19{letter-spacing:0.780000px;}
.ls7c{letter-spacing:0.816000px;}
.ls28{letter-spacing:0.840000px;}
.ls2b{letter-spacing:0.900000px;}
.ls74{letter-spacing:0.912000px;}
.ls1d{letter-spacing:0.960000px;}
.ls81{letter-spacing:1.008000px;}
.ls3d{letter-spacing:1.020000px;}
.ls83{letter-spacing:1.056000px;}
.lsf{letter-spacing:1.080000px;}
.ls5b{letter-spacing:1.104000px;}
.ls1c{letter-spacing:1.140000px;}
.ls84{letter-spacing:1.152000px;}
.ls3b{letter-spacing:1.200000px;}
.ls36{letter-spacing:1.260000px;}
.ls85{letter-spacing:1.296000px;}
.ls25{letter-spacing:1.320000px;}
.lsa{letter-spacing:1.380000px;}
.ls11{letter-spacing:1.440000px;}
.ls7d{letter-spacing:1.488000px;}
.ls18{letter-spacing:1.500000px;}
.ls80{letter-spacing:1.536000px;}
.ls3e{letter-spacing:1.560000px;}
.ls63{letter-spacing:1.584000px;}
.ls21{letter-spacing:1.620000px;}
.ls15{letter-spacing:1.680000px;}
.ls79{letter-spacing:1.728000px;}
.ls3a{letter-spacing:1.740000px;}
.ls88{letter-spacing:1.776000px;}
.ls44{letter-spacing:1.800000px;}
.ls6c{letter-spacing:1.824000px;}
.ls45{letter-spacing:1.860000px;}
.ls10{letter-spacing:1.920000px;}
.ls7a{letter-spacing:1.968000px;}
.ls1b{letter-spacing:1.980000px;}
.ls6a{letter-spacing:2.016000px;}
.lsb{letter-spacing:2.040000px;}
.ls4a{letter-spacing:2.100000px;}
.ls86{letter-spacing:2.112000px;}
.ls17{letter-spacing:2.160000px;}
.ls43{letter-spacing:2.220000px;}
.ls8b{letter-spacing:2.256000px;}
.ls24{letter-spacing:2.280000px;}
.ls82{letter-spacing:2.304000px;}
.ls22{letter-spacing:2.340000px;}
.ls3c{letter-spacing:2.400000px;}
.ls7b{letter-spacing:2.448000px;}
.ls14{letter-spacing:2.460000px;}
.ls71{letter-spacing:2.496000px;}
.ls4c{letter-spacing:2.520000px;}
.ls68{letter-spacing:2.544000px;}
.ls48{letter-spacing:2.580000px;}
.ls58{letter-spacing:2.640000px;}
.ls77{letter-spacing:2.688000px;}
.ls30{letter-spacing:2.700000px;}
.ls1a{letter-spacing:2.760000px;}
.ls1e{letter-spacing:2.820000px;}
.ls66{letter-spacing:2.832000px;}
.ls35{letter-spacing:2.880000px;}
.ls87{letter-spacing:2.928000px;}
.ls31{letter-spacing:2.940000px;}
.ls38{letter-spacing:3.000000px;}
.ls49{letter-spacing:3.060000px;}
.ls4d{letter-spacing:3.120000px;}
.ls6f{letter-spacing:3.168000px;}
.ls50{letter-spacing:3.180000px;}
.ls4b{letter-spacing:3.240000px;}
.ls2a{letter-spacing:3.300000px;}
.ls54{letter-spacing:3.360000px;}
.ls7f{letter-spacing:3.408000px;}
.ls3f{letter-spacing:3.420000px;}
.ls60{letter-spacing:3.480000px;}
.lsd{letter-spacing:3.540000px;}
.ls6e{letter-spacing:3.552000px;}
.ls59{letter-spacing:3.600000px;}
.ls39{letter-spacing:3.660000px;}
.ls75{letter-spacing:3.744000px;}
.ls53{letter-spacing:3.780000px;}
.lse{letter-spacing:3.840000px;}
.ls2c{letter-spacing:3.900000px;}
.ls5e{letter-spacing:4.020000px;}
.ls46{letter-spacing:4.080000px;}
.ls76{letter-spacing:4.224000px;}
.ls5a{letter-spacing:4.380000px;}
.ls57{letter-spacing:4.440000px;}
.lsc{letter-spacing:4.500000px;}
.ls5f{letter-spacing:4.560000px;}
.ls89{letter-spacing:4.608000px;}
.ls37{letter-spacing:4.680000px;}
.ls42{letter-spacing:4.740000px;}
.ls55{letter-spacing:5.100000px;}
.ls78{letter-spacing:5.184000px;}
.ls47{letter-spacing:5.220000px;}
.ls61{letter-spacing:5.880000px;}
.ls6d{letter-spacing:6.144000px;}
.ls1f{letter-spacing:7.740000px;}
.ls2{letter-spacing:59.532876px;}
.ls4{letter-spacing:59.533476px;}
.ls1{letter-spacing:59.537400px;}
.ls5c{letter-spacing:245.952000px;}
.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;}
}
.ws73{word-spacing:-257.952000px;}
.ws5d{word-spacing:-18.120000px;}
.ws58{word-spacing:-17.880000px;}
.wsb{word-spacing:-17.820000px;}
.ws1{word-spacing:-17.514000px;}
.ws7b{word-spacing:-17.220000px;}
.ws97{word-spacing:-17.184000px;}
.ws5f{word-spacing:-16.860000px;}
.ws3{word-spacing:-16.680000px;}
.ws88{word-spacing:-16.500000px;}
.ws9d{word-spacing:-16.224000px;}
.ws5e{word-spacing:-16.200000px;}
.ws86{word-spacing:-16.140000px;}
.ws80{word-spacing:-16.080000px;}
.wsa{word-spacing:-15.960000px;}
.ws6c{word-spacing:-15.900000px;}
.ws2f{word-spacing:-15.780000px;}
.ws87{word-spacing:-15.420000px;}
.ws79{word-spacing:-15.360000px;}
.ws40{word-spacing:-15.300000px;}
.ws7a{word-spacing:-15.240000px;}
.ws31{word-spacing:-15.180000px;}
.ws93{word-spacing:-15.168000px;}
.ws85{word-spacing:-15.060000px;}
.ws41{word-spacing:-15.000000px;}
.ws95{word-spacing:-14.496000px;}
.wsa0{word-spacing:-14.112000px;}
.ws98{word-spacing:-13.968000px;}
.ws5{word-spacing:-13.344000px;}
.ws9e{word-spacing:-13.152000px;}
.ws9f{word-spacing:-13.056000px;}
.ws9b{word-spacing:-12.912000px;}
.ws9c{word-spacing:-12.768000px;}
.ws4{word-spacing:-12.510000px;}
.ws99{word-spacing:-12.480000px;}
.ws94{word-spacing:-12.432000px;}
.ws96{word-spacing:-12.336000px;}
.ws9a{word-spacing:-12.240000px;}
.ws89{word-spacing:-12.048000px;}
.ws92{word-spacing:-12.000000px;}
.ws0{word-spacing:-10.210662px;}
.ws30{word-spacing:-8.745000px;}
.wsaa{word-spacing:-5.184000px;}
.wsbb{word-spacing:-4.608000px;}
.ws11{word-spacing:-3.840000px;}
.wsa1{word-spacing:-3.168000px;}
.ws7d{word-spacing:-2.940000px;}
.ws7{word-spacing:-2.886000px;}
.ws60{word-spacing:-2.880000px;}
.wsbe{word-spacing:-2.640000px;}
.ws90{word-spacing:-2.544000px;}
.wsa6{word-spacing:-2.496000px;}
.ws28{word-spacing:-2.220000px;}
.ws37{word-spacing:-2.040000px;}
.ws3d{word-spacing:-1.920000px;}
.wsab{word-spacing:-1.728000px;}
.ws8b{word-spacing:-1.680000px;}
.ws82{word-spacing:-1.200000px;}
.wsb2{word-spacing:-1.152000px;}
.ws8c{word-spacing:-1.140000px;}
.ws8{word-spacing:-1.134000px;}
.wsba{word-spacing:-1.056000px;}
.ws1b{word-spacing:-0.960000px;}
.wsb0{word-spacing:-0.912000px;}
.ws78{word-spacing:-0.864000px;}
.wsad{word-spacing:-0.816000px;}
.ws84{word-spacing:-0.780000px;}
.ws70{word-spacing:-0.720000px;}
.wsb1{word-spacing:-0.672000px;}
.ws7e{word-spacing:-0.660000px;}
.wsa2{word-spacing:-0.624000px;}
.ws22{word-spacing:-0.540000px;}
.ws38{word-spacing:-0.420000px;}
.ws7c{word-spacing:-0.360000px;}
.wsb4{word-spacing:-0.336000px;}
.ws6a{word-spacing:-0.288000px;}
.ws54{word-spacing:-0.240000px;}
.ws2b{word-spacing:-0.180000px;}
.ws3b{word-spacing:-0.120000px;}
.ws55{word-spacing:-0.096000px;}
.ws36{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws6b{word-spacing:0.048000px;}
.ws1c{word-spacing:0.060000px;}
.ws56{word-spacing:0.096000px;}
.ws18{word-spacing:0.120000px;}
.ws7f{word-spacing:0.144000px;}
.ws2e{word-spacing:0.180000px;}
.ws5c{word-spacing:0.192000px;}
.ws12{word-spacing:0.240000px;}
.wsb3{word-spacing:0.288000px;}
.ws29{word-spacing:0.300000px;}
.ws35{word-spacing:0.360000px;}
.ws44{word-spacing:0.420000px;}
.wsa8{word-spacing:0.432000px;}
.ws26{word-spacing:0.480000px;}
.ws57{word-spacing:0.528000px;}
.ws4c{word-spacing:0.540000px;}
.wsbd{word-spacing:0.576000px;}
.wsa9{word-spacing:0.624000px;}
.ws5a{word-spacing:0.672000px;}
.ws5b{word-spacing:0.720000px;}
.wsa7{word-spacing:0.816000px;}
.ws66{word-spacing:0.840000px;}
.ws23{word-spacing:0.900000px;}
.ws49{word-spacing:0.960000px;}
.ws4a{word-spacing:1.020000px;}
.wsb5{word-spacing:1.056000px;}
.ws75{word-spacing:1.080000px;}
.ws63{word-spacing:1.140000px;}
.ws6d{word-spacing:1.200000px;}
.ws17{word-spacing:1.260000px;}
.ws6e{word-spacing:1.320000px;}
.wsb6{word-spacing:1.392000px;}
.ws34{word-spacing:1.440000px;}
.ws3f{word-spacing:1.500000px;}
.ws8a{word-spacing:1.560000px;}
.wsb8{word-spacing:1.584000px;}
.ws76{word-spacing:1.680000px;}
.ws21{word-spacing:1.740000px;}
.ws27{word-spacing:1.800000px;}
.ws51{word-spacing:1.860000px;}
.wsd{word-spacing:1.920000px;}
.ws3a{word-spacing:1.980000px;}
.ws13{word-spacing:2.040000px;}
.ws42{word-spacing:2.100000px;}
.wsa3{word-spacing:2.208000px;}
.ws50{word-spacing:2.280000px;}
.wsa5{word-spacing:2.304000px;}
.ws43{word-spacing:2.340000px;}
.ws4f{word-spacing:2.400000px;}
.ws3c{word-spacing:2.460000px;}
.ws1a{word-spacing:2.520000px;}
.wsac{word-spacing:2.544000px;}
.wsb9{word-spacing:2.592000px;}
.ws81{word-spacing:2.640000px;}
.ws48{word-spacing:2.700000px;}
.wsbc{word-spacing:2.736000px;}
.ws2d{word-spacing:2.760000px;}
.ws2a{word-spacing:2.820000px;}
.ws1d{word-spacing:2.880000px;}
.ws1e{word-spacing:2.940000px;}
.ws91{word-spacing:2.976000px;}
.ws16{word-spacing:3.000000px;}
.wsaf{word-spacing:3.024000px;}
.ws8d{word-spacing:3.060000px;}
.ws4d{word-spacing:3.120000px;}
.wsa4{word-spacing:3.168000px;}
.ws46{word-spacing:3.180000px;}
.ws77{word-spacing:3.240000px;}
.wsae{word-spacing:3.264000px;}
.wsb7{word-spacing:3.360000px;}
.ws61{word-spacing:3.420000px;}
.ws65{word-spacing:3.480000px;}
.ws83{word-spacing:3.540000px;}
.ws4e{word-spacing:3.600000px;}
.ws3e{word-spacing:3.660000px;}
.ws39{word-spacing:3.720000px;}
.ws6f{word-spacing:3.780000px;}
.ws2c{word-spacing:3.840000px;}
.ws32{word-spacing:3.900000px;}
.ws68{word-spacing:3.936000px;}
.ws14{word-spacing:3.960000px;}
.ws52{word-spacing:3.984000px;}
.ws33{word-spacing:4.020000px;}
.ws64{word-spacing:4.080000px;}
.ws62{word-spacing:4.140000px;}
.ws25{word-spacing:4.200000px;}
.ws69{word-spacing:4.224000px;}
.ws59{word-spacing:4.260000px;}
.ws19{word-spacing:4.320000px;}
.ws47{word-spacing:4.380000px;}
.ws53{word-spacing:4.416000px;}
.ws10{word-spacing:4.440000px;}
.ws24{word-spacing:4.500000px;}
.ws20{word-spacing:4.620000px;}
.wsc{word-spacing:4.680000px;}
.ws67{word-spacing:4.800000px;}
.ws45{word-spacing:4.860000px;}
.wsf{word-spacing:4.920000px;}
.wse{word-spacing:4.980000px;}
.ws15{word-spacing:5.160000px;}
.ws1f{word-spacing:5.220000px;}
.ws8e{word-spacing:5.460000px;}
.ws8f{word-spacing:5.520000px;}
.ws9{word-spacing:7.740000px;}
.ws2{word-spacing:49.321428px;}
.ws74{word-spacing:76.608000px;}
.ws72{word-spacing:136.176000px;}
.ws4b{word-spacing:166.848000px;}
.ws71{word-spacing:430.800000px;}
._d{margin-left:-2898.096000px;}
._e{margin-left:-2874.288000px;}
._4a{margin-left:-245.952000px;}
._2{margin-left:-9.241800px;}
._b{margin-left:-7.800000px;}
._7{margin-left:-6.570000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.465000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.104000px;}
._4{width:1.041642px;}
._a{width:2.940000px;}
._c{width:4.200000px;}
._9{width:6.000000px;}
._6{width:7.170000px;}
._8{width:8.760000px;}
._4e{width:39.648000px;}
._60{width:52.800000px;}
._4b{width:59.088000px;}
._4c{width:62.256000px;}
._2b{width:70.176000px;}
._4d{width:74.256000px;}
._45{width:82.560000px;}
._38{width:85.824000px;}
._29{width:88.848000px;}
._5b{width:94.368000px;}
._39{width:97.824000px;}
._43{width:100.704000px;}
._30{width:107.232000px;}
._46{width:109.248000px;}
._20{width:118.176000px;}
._2a{width:121.056000px;}
._1e{width:122.208000px;}
._44{width:124.176000px;}
._3a{width:134.592000px;}
._32{width:136.560000px;}
._52{width:140.832000px;}
._1f{width:142.848000px;}
._62{width:163.440000px;}
._21{width:166.848000px;}
._36{width:170.592000px;}
._2f{width:172.176000px;}
._1c{width:182.160000px;}
._1d{width:183.504000px;}
._f{width:185.472000px;}
._11{width:187.536000px;}
._41{width:188.976000px;}
._23{width:192.432000px;}
._13{width:195.504000px;}
._54{width:196.608000px;}
._50{width:208.608000px;}
._19{width:218.832000px;}
._55{width:230.640000px;}
._3c{width:232.176000px;}
._22{width:234.624000px;}
._2e{width:236.160000px;}
._58{width:239.184000px;}
._17{width:241.488000px;}
._18{width:243.504000px;}
._37{width:244.944000px;}
._1b{width:250.848000px;}
._5e{width:254.976000px;}
._27{width:256.176000px;}
._12{width:260.208000px;}
._51{width:263.760000px;}
._5a{width:265.056000px;}
._48{width:266.256000px;}
._14{width:268.176000px;}
._24{width:269.520000px;}
._25{width:270.864000px;}
._26{width:272.160000px;}
._3d{width:278.160000px;}
._34{width:280.176000px;}
._2d{width:290.160000px;}
._16{width:292.176000px;}
._3b{width:294.816000px;}
._10{width:297.936000px;}
._35{width:302.160000px;}
._2c{width:303.750000px;}
._61{width:305.856000px;}
._1a{width:316.176000px;}
._3e{width:324.192000px;}
._40{width:327.408000px;}
._5d{width:330.336000px;}
._5c{width:340.512000px;}
._59{width:342.912000px;}
._15{width:346.608000px;}
._31{width:354.816000px;}
._47{width:357.408000px;}
._42{width:360.096000px;}
._5f{width:369.264000px;}
._3f{width:370.272000px;}
._28{width:384.000000px;}
._56{width:385.008000px;}
._33{width:414.768000px;}
._4f{width:447.750000px;}
._49{width:475.008000px;}
._53{width:478.128000px;}
._57{width:523.248000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.y278{bottom:80.263500px;}
.y1a2{bottom:83.161200px;}
.y1e2{bottom:83.247750px;}
.y211{bottom:83.460300px;}
.y16c{bottom:83.484000px;}
.y21d{bottom:83.635350px;}
.y64{bottom:83.772600px;}
.y16f{bottom:83.779200px;}
.yad{bottom:83.912100px;}
.y78{bottom:83.920350px;}
.ye1{bottom:83.927100px;}
.y172{bottom:83.991750px;}
.y1a5{bottom:84.192750px;}
.y10b{bottom:84.322500px;}
.y236{bottom:86.121900px;}
.y2c{bottom:87.794250px;}
.y20e{bottom:89.316300px;}
.y139{bottom:92.641650px;}
.y169{bottom:94.389750px;}
.y277{bottom:95.263500px;}
.y1a1{bottom:98.905200px;}
.y1e1{bottom:98.991750px;}
.y210{bottom:99.204300px;}
.y16b{bottom:99.228000px;}
.y16e{bottom:99.523200px;}
.y171{bottom:99.735750px;}
.y1a4{bottom:99.936750px;}
.y235{bottom:101.121900px;}
.y21c{bottom:101.635350px;}
.y63{bottom:101.772600px;}
.yac{bottom:101.912100px;}
.y77{bottom:101.920350px;}
.ye0{bottom:101.927100px;}
.y2b{bottom:102.790500px;}
.y20d{bottom:104.712300px;}
.y276{bottom:110.263500px;}
.y138{bottom:110.641650px;}
.y168{bottom:112.389750px;}
.y16a{bottom:114.972000px;}
.y1a3{bottom:115.680750px;}
.y234{bottom:116.121900px;}
.y2a{bottom:117.786750px;}
.y21b{bottom:119.635350px;}
.y62{bottom:119.772600px;}
.yab{bottom:119.912100px;}
.y76{bottom:119.920350px;}
.ydf{bottom:119.927100px;}
.y20c{bottom:120.108300px;}
.y275{bottom:125.263500px;}
.y137{bottom:128.641650px;}
.y167{bottom:130.389750px;}
.y233{bottom:131.121900px;}
.y1e0{bottom:132.143850px;}
.y29{bottom:132.786750px;}
.y20b{bottom:135.504300px;}
.y21a{bottom:137.635350px;}
.y61{bottom:137.772600px;}
.yaa{bottom:137.912100px;}
.y75{bottom:137.920350px;}
.yde{bottom:137.927100px;}
.y274{bottom:140.263500px;}
.y232{bottom:146.121900px;}
.y136{bottom:146.641650px;}
.y166{bottom:148.389750px;}
.y1df{bottom:150.143850px;}
.y20a{bottom:150.900300px;}
.y273{bottom:155.263500px;}
.y219{bottom:155.635350px;}
.y60{bottom:155.772600px;}
.ya9{bottom:155.912100px;}
.y74{bottom:155.920350px;}
.ydd{bottom:155.927100px;}
.y231{bottom:161.121900px;}
.y165{bottom:166.389750px;}
.y209{bottom:167.400300px;}
.y1de{bottom:168.143850px;}
.y272{bottom:170.263500px;}
.y218{bottom:173.635350px;}
.y5f{bottom:173.772600px;}
.ya8{bottom:173.912100px;}
.y73{bottom:173.920350px;}
.ydc{bottom:173.927100px;}
.y230{bottom:176.121900px;}
.y135{bottom:182.236650px;}
.y208{bottom:182.796300px;}
.y164{bottom:184.389750px;}
.y271{bottom:185.263500px;}
.y1dd{bottom:186.143850px;}
.y22f{bottom:191.121900px;}
.y217{bottom:191.635350px;}
.y5e{bottom:191.772600px;}
.ya7{bottom:191.912100px;}
.y72{bottom:191.920350px;}
.ydb{bottom:191.927100px;}
.y207{bottom:198.192300px;}
.y270{bottom:200.263500px;}
.y163{bottom:202.389750px;}
.y1dc{bottom:204.143850px;}
.y22e{bottom:206.121900px;}
.y216{bottom:209.635350px;}
.y5d{bottom:209.772600px;}
.ya6{bottom:209.912100px;}
.y1b9{bottom:209.920350px;}
.yda{bottom:209.927100px;}
.y28{bottom:212.158500px;}
.y206{bottom:214.692300px;}
.y26f{bottom:215.263500px;}
.y162{bottom:220.389750px;}
.y22d{bottom:221.121900px;}
.y1db{bottom:222.143850px;}
.y71{bottom:227.515350px;}
.y215{bottom:227.635350px;}
.y5c{bottom:227.772600px;}
.ya5{bottom:227.912100px;}
.y1b8{bottom:227.920350px;}
.yd9{bottom:227.927100px;}
.y134{bottom:228.505200px;}
.y205{bottom:230.088300px;}
.y27{bottom:230.164200px;}
.y26e{bottom:230.263500px;}
.y22c{bottom:236.121900px;}
.y161{bottom:238.389750px;}
.y1da{bottom:240.143850px;}
.y133{bottom:244.753200px;}
.y26d{bottom:245.263500px;}
.y204{bottom:245.484300px;}
.y214{bottom:245.635350px;}
.y5b{bottom:245.772600px;}
.ya4{bottom:245.912100px;}
.y1b7{bottom:245.920350px;}
.yd8{bottom:245.927100px;}
.y22b{bottom:251.121900px;}
.y160{bottom:256.389750px;}
.y26{bottom:257.509200px;}
.y1d9{bottom:258.143850px;}
.y26c{bottom:260.263500px;}
.y203{bottom:260.880300px;}
.y70{bottom:263.770350px;}
.y5a{bottom:263.772600px;}
.ya3{bottom:263.912100px;}
.y1b6{bottom:263.920350px;}
.yd7{bottom:263.927100px;}
.y22a{bottom:266.121900px;}
.y132{bottom:273.757200px;}
.y15f{bottom:274.389750px;}
.y26b{bottom:275.263500px;}
.y25{bottom:275.509200px;}
.y1d8{bottom:276.143850px;}
.y202{bottom:276.276300px;}
.y229{bottom:281.121900px;}
.y213{bottom:281.230350px;}
.y6f{bottom:281.770350px;}
.y59{bottom:281.772600px;}
.ya2{bottom:281.912100px;}
.y1b5{bottom:281.920350px;}
.yd6{bottom:281.927100px;}
.y26a{bottom:290.263500px;}
.y201{bottom:291.672300px;}
.y15e{bottom:292.389750px;}
.y24{bottom:293.509200px;}
.y1d7{bottom:294.143850px;}
.y228{bottom:296.121900px;}
.y6e{bottom:299.770350px;}
.y58{bottom:299.772600px;}
.ya1{bottom:299.912100px;}
.y1b4{bottom:299.920350px;}
.yd5{bottom:299.927100px;}
.y269{bottom:305.263500px;}
.y200{bottom:307.068300px;}
.y15d{bottom:310.389750px;}
.y227{bottom:311.121900px;}
.y23{bottom:311.509200px;}
.y1d6{bottom:312.143850px;}
.y6d{bottom:317.770350px;}
.y57{bottom:317.772600px;}
.ya0{bottom:317.912100px;}
.y1b3{bottom:317.920350px;}
.yd4{bottom:317.927100px;}
.y268{bottom:320.263500px;}
.y1ff{bottom:322.464300px;}
.y226{bottom:326.121900px;}
.y15c{bottom:328.389750px;}
.y22{bottom:329.509200px;}
.y1d5{bottom:330.143850px;}
.y267{bottom:335.263500px;}
.y6c{bottom:335.770350px;}
.y56{bottom:335.772600px;}
.y9f{bottom:335.912100px;}
.y1b2{bottom:335.920350px;}
.yd3{bottom:335.927100px;}
.y1fe{bottom:337.860300px;}
.y225{bottom:341.121900px;}
.y15b{bottom:346.389750px;}
.y21{bottom:347.509200px;}
.y1d4{bottom:348.143850px;}
.y266{bottom:350.263500px;}
.y6b{bottom:353.770350px;}
.y55{bottom:353.772600px;}
.y9e{bottom:353.912100px;}
.y1b1{bottom:353.920350px;}
.yd2{bottom:353.927100px;}
.y224{bottom:356.121900px;}
.y15a{bottom:364.389750px;}
.y265{bottom:365.263500px;}
.y20{bottom:365.509200px;}
.y1d3{bottom:366.143850px;}
.y1fd{bottom:366.864300px;}
.y6a{bottom:371.770350px;}
.y54{bottom:371.772600px;}
.y9d{bottom:371.912100px;}
.y1b0{bottom:371.920350px;}
.yd1{bottom:371.927100px;}
.y1fa{bottom:373.128300px;}
.y264{bottom:380.263500px;}
.y1fc{bottom:381.372300px;}
.y1f{bottom:383.509200px;}
.y1d2{bottom:384.143850px;}
.y223{bottom:389.230350px;}
.y1f9{bottom:389.628300px;}
.y69{bottom:389.770350px;}
.y53{bottom:389.772600px;}
.y9c{bottom:389.912100px;}
.y1af{bottom:389.920350px;}
.yd0{bottom:389.927100px;}
.y263{bottom:395.263500px;}
.y1fb{bottom:395.880300px;}
.y159{bottom:399.984750px;}
.y1e{bottom:401.509200px;}
.y131{bottom:407.770350px;}
.y52{bottom:407.772600px;}
.y9b{bottom:407.912100px;}
.y1ae{bottom:407.920350px;}
.ycf{bottom:407.927100px;}
.y262{bottom:410.263500px;}
.y1d{bottom:419.509200px;}
.y1d1{bottom:419.738850px;}
.y261{bottom:425.263500px;}
.y130{bottom:425.770350px;}
.y51{bottom:425.772600px;}
.y9a{bottom:425.912100px;}
.y1ad{bottom:425.920350px;}
.yce{bottom:425.927100px;}
.y1c{bottom:437.509200px;}
.y260{bottom:440.263500px;}
.y12f{bottom:443.770350px;}
.y50{bottom:443.772600px;}
.y99{bottom:443.912100px;}
.y1ac{bottom:443.920350px;}
.ycd{bottom:443.927100px;}
.y158{bottom:446.257200px;}
.y1f8{bottom:446.964900px;}
.y25f{bottom:455.263500px;}
.y1d0{bottom:455.993850px;}
.y12e{bottom:461.770350px;}
.y4f{bottom:461.772600px;}
.y98{bottom:461.912100px;}
.y1ab{bottom:461.920350px;}
.ycc{bottom:461.927100px;}
.y1f7{bottom:462.360900px;}
.y157{bottom:462.505200px;}
.y25e{bottom:470.263500px;}
.y1cf{bottom:473.993850px;}
.y1f6{bottom:477.756900px;}
.y156{bottom:478.753200px;}
.y222{bottom:479.365350px;}
.y12d{bottom:479.770350px;}
.y4e{bottom:479.772600px;}
.y97{bottom:479.912100px;}
.y1aa{bottom:479.920350px;}
.ycb{bottom:479.927100px;}
.y1b{bottom:482.667300px;}
.y25d{bottom:485.263500px;}
.y1ce{bottom:491.993850px;}
.y183{bottom:492.137700px;}
.y1f5{bottom:493.152900px;}
.y1a{bottom:495.118050px;}
.y12c{bottom:497.770350px;}
.y4d{bottom:497.772600px;}
.y96{bottom:497.912100px;}
.y1a9{bottom:497.920350px;}
.yca{bottom:497.927100px;}
.y25c{bottom:500.263500px;}
.y1a0{bottom:502.009200px;}
.y155{bottom:507.757200px;}
.y1f4{bottom:508.548900px;}
.y1cd{bottom:509.993850px;}
.y182{bottom:510.137700px;}
.y25b{bottom:515.263500px;}
.y12b{bottom:515.770350px;}
.y4c{bottom:515.772600px;}
.y95{bottom:515.912100px;}
.y1a8{bottom:515.920350px;}
.yc9{bottom:515.927100px;}
.y19f{bottom:518.257200px;}
.y1f3{bottom:525.048900px;}
.y1cc{bottom:527.993850px;}
.y181{bottom:528.137700px;}
.y25a{bottom:530.263500px;}
.y19{bottom:532.258950px;}
.y221{bottom:533.365350px;}
.y12a{bottom:533.770350px;}
.y4b{bottom:533.772600px;}
.y10a{bottom:533.905350px;}
.y94{bottom:533.912100px;}
.y1a7{bottom:533.920350px;}
.yc8{bottom:533.927100px;}
.y19e{bottom:534.505200px;}
.y1f2{bottom:540.444900px;}
.y259{bottom:545.263500px;}
.y18{bottom:545.758950px;}
.y1cb{bottom:545.993850px;}
.y180{bottom:546.137700px;}
.y19d{bottom:550.753200px;}
.y68{bottom:551.367600px;}
.yef{bottom:551.770350px;}
.y4a{bottom:551.772600px;}
.y109{bottom:551.905350px;}
.y93{bottom:551.920350px;}
.yc7{bottom:551.927100px;}
.y17{bottom:553.833600px;}
.y1f1{bottom:555.840900px;}
.y258{bottom:560.263500px;}
.y1ca{bottom:563.993850px;}
.y17f{bottom:564.137700px;}
.yee{bottom:569.770350px;}
.y49{bottom:569.772600px;}
.y154{bottom:569.776650px;}
.y108{bottom:569.905350px;}
.y92{bottom:569.920350px;}
.yc6{bottom:569.927100px;}
.y1f0{bottom:572.340900px;}
.y16{bottom:572.758950px;}
.y257{bottom:575.263500px;}
.y19c{bottom:579.757200px;}
.y15{bottom:580.833600px;}
.y1c9{bottom:581.993850px;}
.y17e{bottom:582.137700px;}
.y67{bottom:587.232600px;}
.y1ef{bottom:587.736900px;}
.yed{bottom:587.770350px;}
.y48{bottom:587.772600px;}
.y153{bottom:587.776650px;}
.y107{bottom:587.905350px;}
.y91{bottom:587.920350px;}
.yc5{bottom:587.927100px;}
.y256{bottom:590.263500px;}
.y14{bottom:599.758950px;}
.y1c8{bottom:599.993850px;}
.y17d{bottom:600.137700px;}
.y1ee{bottom:603.132900px;}
.y255{bottom:605.263500px;}
.y220{bottom:605.365350px;}
.yec{bottom:605.770350px;}
.y47{bottom:605.772600px;}
.y152{bottom:605.776650px;}
.y106{bottom:605.905350px;}
.y90{bottom:605.920350px;}
.yc4{bottom:605.927100px;}
.y13{bottom:607.833600px;}
.y1c7{bottom:617.993850px;}
.y17c{bottom:618.137700px;}
.y1ed{bottom:618.528900px;}
.y254{bottom:620.263500px;}
.yeb{bottom:623.770350px;}
.y46{bottom:623.772600px;}
.y151{bottom:623.776650px;}
.y19b{bottom:623.777700px;}
.y105{bottom:623.905350px;}
.y8f{bottom:623.920350px;}
.yc3{bottom:623.927100px;}
.y12{bottom:626.758950px;}
.y1ec{bottom:633.924900px;}
.y253{bottom:635.263500px;}
.y1c6{bottom:635.993850px;}
.y17b{bottom:636.137700px;}
.y11{bottom:640.258950px;}
.yea{bottom:641.770350px;}
.y45{bottom:641.772600px;}
.y150{bottom:641.776650px;}
.y19a{bottom:641.777700px;}
.y104{bottom:641.905350px;}
.y8e{bottom:641.920350px;}
.yc2{bottom:641.927100px;}
.y10{bottom:648.333600px;}
.y1eb{bottom:649.320900px;}
.y252{bottom:650.263500px;}
.y1c5{bottom:653.993850px;}
.y17a{bottom:654.137700px;}
.ye9{bottom:659.770350px;}
.y44{bottom:659.772600px;}
.y14f{bottom:659.776650px;}
.y199{bottom:659.777700px;}
.y103{bottom:659.905350px;}
.y8d{bottom:659.920350px;}
.yc1{bottom:659.927100px;}
.y1ea{bottom:664.716900px;}
.y251{bottom:665.263500px;}
.yf{bottom:667.258950px;}
.y1c4{bottom:671.993850px;}
.ye{bottom:675.333600px;}
.ye8{bottom:677.770350px;}
.y43{bottom:677.772600px;}
.y14e{bottom:677.776650px;}
.y198{bottom:677.777700px;}
.y102{bottom:677.905350px;}
.y8c{bottom:677.920350px;}
.yc0{bottom:677.927100px;}
.y1e9{bottom:680.112900px;}
.y250{bottom:680.263500px;}
.yd{bottom:688.833600px;}
.y179{bottom:689.732700px;}
.y1c3{bottom:689.993850px;}
.y24f{bottom:695.263500px;}
.y1e8{bottom:695.508900px;}
.ye7{bottom:695.770350px;}
.y42{bottom:695.772600px;}
.y14d{bottom:695.776650px;}
.y197{bottom:695.777700px;}
.y101{bottom:695.905350px;}
.y8b{bottom:695.920350px;}
.ybf{bottom:695.927100px;}
.y124{bottom:695.935350px;}
.yc{bottom:707.758950px;}
.y1c2{bottom:707.993850px;}
.y24e{bottom:710.263500px;}
.ye6{bottom:713.770350px;}
.y41{bottom:713.772600px;}
.y14c{bottom:713.776650px;}
.y196{bottom:713.777700px;}
.y100{bottom:713.905350px;}
.y8a{bottom:713.920350px;}
.ybe{bottom:713.927100px;}
.y123{bottom:713.935350px;}
.y1e7{bottom:724.524900px;}
.y24d{bottom:725.263500px;}
.y1c1{bottom:725.993850px;}
.ye5{bottom:731.770350px;}
.y40{bottom:731.772600px;}
.y14b{bottom:731.776650px;}
.y195{bottom:731.777700px;}
.yff{bottom:731.905350px;}
.y89{bottom:731.920350px;}
.ybd{bottom:731.927100px;}
.y122{bottom:731.935350px;}
.y178{bottom:736.009200px;}
.yb{bottom:736.486200px;}
.y24c{bottom:740.263500px;}
.y1e6{bottom:741.024900px;}
.y1c0{bottom:743.993850px;}
.ye4{bottom:749.770350px;}
.y3f{bottom:749.772600px;}
.y14a{bottom:749.776650px;}
.y194{bottom:749.777700px;}
.yfe{bottom:749.905350px;}
.y88{bottom:749.920350px;}
.ybc{bottom:749.927100px;}
.y121{bottom:749.935350px;}
.y177{bottom:752.257200px;}
.y24b{bottom:755.263500px;}
.ya{bottom:757.486050px;}
.y21f{bottom:767.365350px;}
.y129{bottom:767.770350px;}
.y3e{bottom:767.772600px;}
.y149{bottom:767.776650px;}
.y193{bottom:767.777700px;}
.yfd{bottom:767.905350px;}
.y87{bottom:767.920350px;}
.ybb{bottom:767.927100px;}
.y120{bottom:767.935350px;}
.y176{bottom:768.505200px;}
.y24a{bottom:770.263500px;}
.y1e5{bottom:773.410350px;}
.y9{bottom:778.480800px;}
.y175{bottom:784.753200px;}
.y249{bottom:785.263500px;}
.ye3{bottom:785.365350px;}
.y128{bottom:785.770350px;}
.y3d{bottom:785.772600px;}
.y148{bottom:785.776650px;}
.y192{bottom:785.777700px;}
.yfc{bottom:785.905350px;}
.y86{bottom:785.920350px;}
.yba{bottom:785.927100px;}
.y11f{bottom:785.935350px;}
.y1bf{bottom:790.009200px;}
.y1e4{bottom:792.910350px;}
.y248{bottom:800.263500px;}
.y127{bottom:803.770350px;}
.y3c{bottom:803.772600px;}
.y147{bottom:803.776650px;}
.y191{bottom:803.777700px;}
.yfb{bottom:803.905350px;}
.y112{bottom:803.920350px;}
.yb9{bottom:803.927100px;}
.y11e{bottom:803.935350px;}
.y1be{bottom:806.257200px;}
.y1e3{bottom:812.410350px;}
.y174{bottom:813.757200px;}
.y247{bottom:815.263500px;}
.ye2{bottom:821.230350px;}
.y85{bottom:821.515350px;}
.y126{bottom:821.770350px;}
.y3b{bottom:821.772600px;}
.y146{bottom:821.776650px;}
.y190{bottom:821.777700px;}
.yfa{bottom:821.905350px;}
.y111{bottom:821.920350px;}
.yb8{bottom:821.927100px;}
.y11d{bottom:821.935350px;}
.y1bd{bottom:822.505200px;}
.y8{bottom:824.622000px;}
.y246{bottom:830.263500px;}
.y1bc{bottom:838.753200px;}
.y125{bottom:839.770350px;}
.y3a{bottom:839.772600px;}
.y145{bottom:839.776650px;}
.y18f{bottom:839.777700px;}
.yf9{bottom:839.905350px;}
.y110{bottom:839.920350px;}
.y11c{bottom:839.935350px;}
.y245{bottom:845.263500px;}
.yb7{bottom:857.522100px;}
.y84{bottom:857.770350px;}
.y39{bottom:857.772600px;}
.y144{bottom:857.776650px;}
.y18e{bottom:857.777700px;}
.yf8{bottom:857.905350px;}
.y10f{bottom:857.920350px;}
.y11b{bottom:857.935350px;}
.y244{bottom:860.263500px;}
.y7{bottom:861.082800px;}
.y1bb{bottom:867.757200px;}
.y243{bottom:875.263500px;}
.yb6{bottom:875.522100px;}
.y83{bottom:875.770350px;}
.y38{bottom:875.772600px;}
.y143{bottom:875.776650px;}
.y18d{bottom:875.777700px;}
.yf7{bottom:875.905350px;}
.y10e{bottom:875.920350px;}
.y242{bottom:890.263500px;}
.y11a{bottom:893.530350px;}
.y82{bottom:893.770350px;}
.y37{bottom:893.772600px;}
.y142{bottom:893.776650px;}
.y18c{bottom:893.777700px;}
.yf6{bottom:893.905350px;}
.y6{bottom:897.543600px;}
.y241{bottom:905.263500px;}
.y21e{bottom:911.365350px;}
.y10d{bottom:911.515350px;}
.y81{bottom:911.770350px;}
.y36{bottom:911.772600px;}
.y141{bottom:911.776650px;}
.yb5{bottom:911.777100px;}
.y18b{bottom:911.777700px;}
.y1ba{bottom:911.785350px;}
.yf5{bottom:911.905350px;}
.y240{bottom:920.263500px;}
.y80{bottom:929.770350px;}
.y35{bottom:929.772600px;}
.y140{bottom:929.776650px;}
.yb4{bottom:929.777100px;}
.y18a{bottom:929.777700px;}
.y119{bottom:929.785350px;}
.yf4{bottom:929.905350px;}
.y5{bottom:934.004400px;}
.y23f{bottom:935.263500px;}
.y7f{bottom:947.770350px;}
.y34{bottom:947.772600px;}
.y13f{bottom:947.776650px;}
.yb3{bottom:947.777100px;}
.y189{bottom:947.777700px;}
.y118{bottom:947.785350px;}
.yf3{bottom:947.905350px;}
.y23e{bottom:950.263500px;}
.y23d{bottom:965.263500px;}
.y7e{bottom:965.770350px;}
.y33{bottom:965.772600px;}
.y13e{bottom:965.776650px;}
.yb2{bottom:965.777100px;}
.y188{bottom:965.777700px;}
.y117{bottom:965.785350px;}
.yf2{bottom:965.905350px;}
.y4{bottom:970.465200px;}
.y23c{bottom:980.263500px;}
.y7d{bottom:983.770350px;}
.y32{bottom:983.772600px;}
.y13d{bottom:983.776650px;}
.yb1{bottom:983.777100px;}
.y187{bottom:983.777700px;}
.y116{bottom:983.785350px;}
.y23b{bottom:995.263500px;}
.yf1{bottom:1001.500350px;}
.y7c{bottom:1001.770350px;}
.y31{bottom:1001.772600px;}
.y13c{bottom:1001.776650px;}
.yb0{bottom:1001.777100px;}
.y186{bottom:1001.777700px;}
.y115{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y23a{bottom:1010.263500px;}
.y7b{bottom:1019.770350px;}
.y66{bottom:1019.772600px;}
.y13b{bottom:1019.776650px;}
.yaf{bottom:1019.777100px;}
.y185{bottom:1019.777700px;}
.y114{bottom:1019.785350px;}
.y239{bottom:1025.263500px;}
.yf0{bottom:1037.365350px;}
.y30{bottom:1037.367600px;}
.y7a{bottom:1037.770350px;}
.y65{bottom:1037.772600px;}
.y13a{bottom:1037.776650px;}
.yae{bottom:1037.777100px;}
.y184{bottom:1037.777700px;}
.y113{bottom:1037.785350px;}
.y238{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y237{bottom:1132.413900px;}
.y10c{bottom:1132.414500px;}
.y79{bottom:1132.418700px;}
.y173{bottom:1132.419750px;}
.y16d{bottom:1132.421700px;}
.y170{bottom:1132.423200px;}
.y279{bottom:1132.423500px;}
.y212{bottom:1132.428300px;}
.y1a6{bottom:1132.428750px;}
.y20f{bottom:1132.488300px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h8{height:19.125417px;}
.ha{height:28.393066px;}
.h2{height:30.577148px;}
.h1a{height:32.531250px;}
.h10{height:32.761230px;}
.hf{height:32.783203px;}
.h9{height:32.805176px;}
.h18{height:33.351562px;}
.h12{height:34.945312px;}
.h11{height:34.992188px;}
.h14{height:41.689453px;}
.h17{height:42.117188px;}
.hc{height:43.681641px;}
.hd{height:43.710938px;}
.he{height:43.717434px;}
.hb{height:43.740234px;}
.h13{height:52.646484px;}
.h16{height:54.266484px;}
.h3{height:56.786133px;}
.h7{height:57.100316px;}
.h6{height:57.100916px;}
.h5{height:57.121316px;}
.h15{height:58.922900px;}
.h19{height:75.093188px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:70.582650px;}
.x8{left:76.535400px;}
.x15{left:78.668550px;}
.x6{left:96.094500px;}
.x1{left:97.795200px;}
.x1b{left:99.928500px;}
.x28{left:102.047250px;}
.x4{left:106.299150px;}
.x9{left:110.558550px;}
.x2a{left:123.307050px;}
.x3{left:125.427900px;}
.xf{left:131.815350px;}
.x20{left:157.882500px;}
.x14{left:181.964550px;}
.x5{left:191.347200px;}
.x1a{left:203.224500px;}
.x13{left:211.096200px;}
.x1f{left:220.137450px;}
.x24{left:223.057350px;}
.x22{left:249.769350px;}
.x7{left:455.041500px;}
.xa{left:457.103550px;}
.x17{left:459.219750px;}
.x10{left:478.339200px;}
.x1d{left:480.479550px;}
.x29{left:482.609700px;}
.xc{left:491.123550px;}
.x27{left:503.858400px;}
.x11{left:512.359200px;}
.xb{left:525.293550px;}
.x16{left:562.515750px;}
.x1c{left:583.775550px;}
.x26{left:596.096400px;}
.x25{left:631.225350px;}
.x21{left:635.773350px;}
.xe{left:663.492300px;}
.x23{left:679.369350px;}
.x2{left:693.365400px;}
.x19{left:721.714950px;}
.xd{left:728.391600px;}
.x1e{left:743.868150px;}
.x12{left:749.651400px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v3{vertical-align:25.093333pt;}
.v1{vertical-align:27.005867pt;}
.v5{vertical-align:29.312000pt;}
.ls8{letter-spacing:-6.880000pt;}
.ls7{letter-spacing:-0.693333pt;}
.ls41{letter-spacing:-0.373333pt;}
.ls56{letter-spacing:-0.320000pt;}
.ls6b{letter-spacing:-0.298667pt;}
.ls34{letter-spacing:-0.266667pt;}
.ls51{letter-spacing:-0.213333pt;}
.ls52{letter-spacing:-0.170667pt;}
.ls40{letter-spacing:-0.160000pt;}
.ls32{letter-spacing:-0.106667pt;}
.ls4f{letter-spacing:-0.085333pt;}
.ls33{letter-spacing:-0.053333pt;}
.ls8a{letter-spacing:-0.042667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.003147pt;}
.ls3{letter-spacing:0.004512pt;}
.ls0{letter-spacing:0.005045pt;}
.ls69{letter-spacing:0.042667pt;}
.ls29{letter-spacing:0.053333pt;}
.ls72{letter-spacing:0.085333pt;}
.ls27{letter-spacing:0.106667pt;}
.ls5d{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.213333pt;}
.ls73{letter-spacing:0.256000pt;}
.ls2e{letter-spacing:0.266667pt;}
.ls67{letter-spacing:0.298667pt;}
.ls20{letter-spacing:0.320000pt;}
.ls64{letter-spacing:0.341333pt;}
.ls9{letter-spacing:0.373333pt;}
.ls4e{letter-spacing:0.384000pt;}
.ls2f{letter-spacing:0.426667pt;}
.ls23{letter-spacing:0.480000pt;}
.ls70{letter-spacing:0.512000pt;}
.ls13{letter-spacing:0.533333pt;}
.ls62{letter-spacing:0.554667pt;}
.ls2d{letter-spacing:0.586667pt;}
.ls7e{letter-spacing:0.597333pt;}
.ls12{letter-spacing:0.640000pt;}
.ls65{letter-spacing:0.682667pt;}
.ls19{letter-spacing:0.693333pt;}
.ls7c{letter-spacing:0.725333pt;}
.ls28{letter-spacing:0.746667pt;}
.ls2b{letter-spacing:0.800000pt;}
.ls74{letter-spacing:0.810667pt;}
.ls1d{letter-spacing:0.853333pt;}
.ls81{letter-spacing:0.896000pt;}
.ls3d{letter-spacing:0.906667pt;}
.ls83{letter-spacing:0.938667pt;}
.lsf{letter-spacing:0.960000pt;}
.ls5b{letter-spacing:0.981333pt;}
.ls1c{letter-spacing:1.013333pt;}
.ls84{letter-spacing:1.024000pt;}
.ls3b{letter-spacing:1.066667pt;}
.ls36{letter-spacing:1.120000pt;}
.ls85{letter-spacing:1.152000pt;}
.ls25{letter-spacing:1.173333pt;}
.lsa{letter-spacing:1.226667pt;}
.ls11{letter-spacing:1.280000pt;}
.ls7d{letter-spacing:1.322667pt;}
.ls18{letter-spacing:1.333333pt;}
.ls80{letter-spacing:1.365333pt;}
.ls3e{letter-spacing:1.386667pt;}
.ls63{letter-spacing:1.408000pt;}
.ls21{letter-spacing:1.440000pt;}
.ls15{letter-spacing:1.493333pt;}
.ls79{letter-spacing:1.536000pt;}
.ls3a{letter-spacing:1.546667pt;}
.ls88{letter-spacing:1.578667pt;}
.ls44{letter-spacing:1.600000pt;}
.ls6c{letter-spacing:1.621333pt;}
.ls45{letter-spacing:1.653333pt;}
.ls10{letter-spacing:1.706667pt;}
.ls7a{letter-spacing:1.749333pt;}
.ls1b{letter-spacing:1.760000pt;}
.ls6a{letter-spacing:1.792000pt;}
.lsb{letter-spacing:1.813333pt;}
.ls4a{letter-spacing:1.866667pt;}
.ls86{letter-spacing:1.877333pt;}
.ls17{letter-spacing:1.920000pt;}
.ls43{letter-spacing:1.973333pt;}
.ls8b{letter-spacing:2.005333pt;}
.ls24{letter-spacing:2.026667pt;}
.ls82{letter-spacing:2.048000pt;}
.ls22{letter-spacing:2.080000pt;}
.ls3c{letter-spacing:2.133333pt;}
.ls7b{letter-spacing:2.176000pt;}
.ls14{letter-spacing:2.186667pt;}
.ls71{letter-spacing:2.218667pt;}
.ls4c{letter-spacing:2.240000pt;}
.ls68{letter-spacing:2.261333pt;}
.ls48{letter-spacing:2.293333pt;}
.ls58{letter-spacing:2.346667pt;}
.ls77{letter-spacing:2.389333pt;}
.ls30{letter-spacing:2.400000pt;}
.ls1a{letter-spacing:2.453333pt;}
.ls1e{letter-spacing:2.506667pt;}
.ls66{letter-spacing:2.517333pt;}
.ls35{letter-spacing:2.560000pt;}
.ls87{letter-spacing:2.602667pt;}
.ls31{letter-spacing:2.613333pt;}
.ls38{letter-spacing:2.666667pt;}
.ls49{letter-spacing:2.720000pt;}
.ls4d{letter-spacing:2.773333pt;}
.ls6f{letter-spacing:2.816000pt;}
.ls50{letter-spacing:2.826667pt;}
.ls4b{letter-spacing:2.880000pt;}
.ls2a{letter-spacing:2.933333pt;}
.ls54{letter-spacing:2.986667pt;}
.ls7f{letter-spacing:3.029333pt;}
.ls3f{letter-spacing:3.040000pt;}
.ls60{letter-spacing:3.093333pt;}
.lsd{letter-spacing:3.146667pt;}
.ls6e{letter-spacing:3.157333pt;}
.ls59{letter-spacing:3.200000pt;}
.ls39{letter-spacing:3.253333pt;}
.ls75{letter-spacing:3.328000pt;}
.ls53{letter-spacing:3.360000pt;}
.lse{letter-spacing:3.413333pt;}
.ls2c{letter-spacing:3.466667pt;}
.ls5e{letter-spacing:3.573333pt;}
.ls46{letter-spacing:3.626667pt;}
.ls76{letter-spacing:3.754667pt;}
.ls5a{letter-spacing:3.893333pt;}
.ls57{letter-spacing:3.946667pt;}
.lsc{letter-spacing:4.000000pt;}
.ls5f{letter-spacing:4.053333pt;}
.ls89{letter-spacing:4.096000pt;}
.ls37{letter-spacing:4.160000pt;}
.ls42{letter-spacing:4.213333pt;}
.ls55{letter-spacing:4.533333pt;}
.ls78{letter-spacing:4.608000pt;}
.ls47{letter-spacing:4.640000pt;}
.ls61{letter-spacing:5.226667pt;}
.ls6d{letter-spacing:5.461333pt;}
.ls1f{letter-spacing:6.880000pt;}
.ls2{letter-spacing:52.918112pt;}
.ls4{letter-spacing:52.918645pt;}
.ls1{letter-spacing:52.922133pt;}
.ls5c{letter-spacing:218.624000pt;}
.ws73{word-spacing:-229.290667pt;}
.ws5d{word-spacing:-16.106667pt;}
.ws58{word-spacing:-15.893333pt;}
.wsb{word-spacing:-15.840000pt;}
.ws1{word-spacing:-15.568000pt;}
.ws7b{word-spacing:-15.306667pt;}
.ws97{word-spacing:-15.274667pt;}
.ws5f{word-spacing:-14.986667pt;}
.ws3{word-spacing:-14.826667pt;}
.ws88{word-spacing:-14.666667pt;}
.ws9d{word-spacing:-14.421333pt;}
.ws5e{word-spacing:-14.400000pt;}
.ws86{word-spacing:-14.346667pt;}
.ws80{word-spacing:-14.293333pt;}
.wsa{word-spacing:-14.186667pt;}
.ws6c{word-spacing:-14.133333pt;}
.ws2f{word-spacing:-14.026667pt;}
.ws87{word-spacing:-13.706667pt;}
.ws79{word-spacing:-13.653333pt;}
.ws40{word-spacing:-13.600000pt;}
.ws7a{word-spacing:-13.546667pt;}
.ws31{word-spacing:-13.493333pt;}
.ws93{word-spacing:-13.482667pt;}
.ws85{word-spacing:-13.386667pt;}
.ws41{word-spacing:-13.333333pt;}
.ws95{word-spacing:-12.885333pt;}
.wsa0{word-spacing:-12.544000pt;}
.ws98{word-spacing:-12.416000pt;}
.ws5{word-spacing:-11.861333pt;}
.ws9e{word-spacing:-11.690667pt;}
.ws9f{word-spacing:-11.605333pt;}
.ws9b{word-spacing:-11.477333pt;}
.ws9c{word-spacing:-11.349333pt;}
.ws4{word-spacing:-11.120000pt;}
.ws99{word-spacing:-11.093333pt;}
.ws94{word-spacing:-11.050667pt;}
.ws96{word-spacing:-10.965333pt;}
.ws9a{word-spacing:-10.880000pt;}
.ws89{word-spacing:-10.709333pt;}
.ws92{word-spacing:-10.666667pt;}
.ws0{word-spacing:-9.076144pt;}
.ws30{word-spacing:-7.773333pt;}
.wsaa{word-spacing:-4.608000pt;}
.wsbb{word-spacing:-4.096000pt;}
.ws11{word-spacing:-3.413333pt;}
.wsa1{word-spacing:-2.816000pt;}
.ws7d{word-spacing:-2.613333pt;}
.ws7{word-spacing:-2.565333pt;}
.ws60{word-spacing:-2.560000pt;}
.wsbe{word-spacing:-2.346667pt;}
.ws90{word-spacing:-2.261333pt;}
.wsa6{word-spacing:-2.218667pt;}
.ws28{word-spacing:-1.973333pt;}
.ws37{word-spacing:-1.813333pt;}
.ws3d{word-spacing:-1.706667pt;}
.wsab{word-spacing:-1.536000pt;}
.ws8b{word-spacing:-1.493333pt;}
.ws82{word-spacing:-1.066667pt;}
.wsb2{word-spacing:-1.024000pt;}
.ws8c{word-spacing:-1.013333pt;}
.ws8{word-spacing:-1.008000pt;}
.wsba{word-spacing:-0.938667pt;}
.ws1b{word-spacing:-0.853333pt;}
.wsb0{word-spacing:-0.810667pt;}
.ws78{word-spacing:-0.768000pt;}
.wsad{word-spacing:-0.725333pt;}
.ws84{word-spacing:-0.693333pt;}
.ws70{word-spacing:-0.640000pt;}
.wsb1{word-spacing:-0.597333pt;}
.ws7e{word-spacing:-0.586667pt;}
.wsa2{word-spacing:-0.554667pt;}
.ws22{word-spacing:-0.480000pt;}
.ws38{word-spacing:-0.373333pt;}
.ws7c{word-spacing:-0.320000pt;}
.wsb4{word-spacing:-0.298667pt;}
.ws6a{word-spacing:-0.256000pt;}
.ws54{word-spacing:-0.213333pt;}
.ws2b{word-spacing:-0.160000pt;}
.ws3b{word-spacing:-0.106667pt;}
.ws55{word-spacing:-0.085333pt;}
.ws36{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.042667pt;}
.ws1c{word-spacing:0.053333pt;}
.ws56{word-spacing:0.085333pt;}
.ws18{word-spacing:0.106667pt;}
.ws7f{word-spacing:0.128000pt;}
.ws2e{word-spacing:0.160000pt;}
.ws5c{word-spacing:0.170667pt;}
.ws12{word-spacing:0.213333pt;}
.wsb3{word-spacing:0.256000pt;}
.ws29{word-spacing:0.266667pt;}
.ws35{word-spacing:0.320000pt;}
.ws44{word-spacing:0.373333pt;}
.wsa8{word-spacing:0.384000pt;}
.ws26{word-spacing:0.426667pt;}
.ws57{word-spacing:0.469333pt;}
.ws4c{word-spacing:0.480000pt;}
.wsbd{word-spacing:0.512000pt;}
.wsa9{word-spacing:0.554667pt;}
.ws5a{word-spacing:0.597333pt;}
.ws5b{word-spacing:0.640000pt;}
.wsa7{word-spacing:0.725333pt;}
.ws66{word-spacing:0.746667pt;}
.ws23{word-spacing:0.800000pt;}
.ws49{word-spacing:0.853333pt;}
.ws4a{word-spacing:0.906667pt;}
.wsb5{word-spacing:0.938667pt;}
.ws75{word-spacing:0.960000pt;}
.ws63{word-spacing:1.013333pt;}
.ws6d{word-spacing:1.066667pt;}
.ws17{word-spacing:1.120000pt;}
.ws6e{word-spacing:1.173333pt;}
.wsb6{word-spacing:1.237333pt;}
.ws34{word-spacing:1.280000pt;}
.ws3f{word-spacing:1.333333pt;}
.ws8a{word-spacing:1.386667pt;}
.wsb8{word-spacing:1.408000pt;}
.ws76{word-spacing:1.493333pt;}
.ws21{word-spacing:1.546667pt;}
.ws27{word-spacing:1.600000pt;}
.ws51{word-spacing:1.653333pt;}
.wsd{word-spacing:1.706667pt;}
.ws3a{word-spacing:1.760000pt;}
.ws13{word-spacing:1.813333pt;}
.ws42{word-spacing:1.866667pt;}
.wsa3{word-spacing:1.962667pt;}
.ws50{word-spacing:2.026667pt;}
.wsa5{word-spacing:2.048000pt;}
.ws43{word-spacing:2.080000pt;}
.ws4f{word-spacing:2.133333pt;}
.ws3c{word-spacing:2.186667pt;}
.ws1a{word-spacing:2.240000pt;}
.wsac{word-spacing:2.261333pt;}
.wsb9{word-spacing:2.304000pt;}
.ws81{word-spacing:2.346667pt;}
.ws48{word-spacing:2.400000pt;}
.wsbc{word-spacing:2.432000pt;}
.ws2d{word-spacing:2.453333pt;}
.ws2a{word-spacing:2.506667pt;}
.ws1d{word-spacing:2.560000pt;}
.ws1e{word-spacing:2.613333pt;}
.ws91{word-spacing:2.645333pt;}
.ws16{word-spacing:2.666667pt;}
.wsaf{word-spacing:2.688000pt;}
.ws8d{word-spacing:2.720000pt;}
.ws4d{word-spacing:2.773333pt;}
.wsa4{word-spacing:2.816000pt;}
.ws46{word-spacing:2.826667pt;}
.ws77{word-spacing:2.880000pt;}
.wsae{word-spacing:2.901333pt;}
.wsb7{word-spacing:2.986667pt;}
.ws61{word-spacing:3.040000pt;}
.ws65{word-spacing:3.093333pt;}
.ws83{word-spacing:3.146667pt;}
.ws4e{word-spacing:3.200000pt;}
.ws3e{word-spacing:3.253333pt;}
.ws39{word-spacing:3.306667pt;}
.ws6f{word-spacing:3.360000pt;}
.ws2c{word-spacing:3.413333pt;}
.ws32{word-spacing:3.466667pt;}
.ws68{word-spacing:3.498667pt;}
.ws14{word-spacing:3.520000pt;}
.ws52{word-spacing:3.541333pt;}
.ws33{word-spacing:3.573333pt;}
.ws64{word-spacing:3.626667pt;}
.ws62{word-spacing:3.680000pt;}
.ws25{word-spacing:3.733333pt;}
.ws69{word-spacing:3.754667pt;}
.ws59{word-spacing:3.786667pt;}
.ws19{word-spacing:3.840000pt;}
.ws47{word-spacing:3.893333pt;}
.ws53{word-spacing:3.925333pt;}
.ws10{word-spacing:3.946667pt;}
.ws24{word-spacing:4.000000pt;}
.ws20{word-spacing:4.106667pt;}
.wsc{word-spacing:4.160000pt;}
.ws67{word-spacing:4.266667pt;}
.ws45{word-spacing:4.320000pt;}
.wsf{word-spacing:4.373333pt;}
.wse{word-spacing:4.426667pt;}
.ws15{word-spacing:4.586667pt;}
.ws1f{word-spacing:4.640000pt;}
.ws8e{word-spacing:4.853333pt;}
.ws8f{word-spacing:4.906667pt;}
.ws9{word-spacing:6.880000pt;}
.ws2{word-spacing:43.841269pt;}
.ws74{word-spacing:68.096000pt;}
.ws72{word-spacing:121.045333pt;}
.ws4b{word-spacing:148.309333pt;}
.ws71{word-spacing:382.933333pt;}
._d{margin-left:-2576.085333pt;}
._e{margin-left:-2554.922667pt;}
._4a{margin-left:-218.624000pt;}
._2{margin-left:-8.214933pt;}
._b{margin-left:-6.933333pt;}
._7{margin-left:-5.840000pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.080000pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.981333pt;}
._4{width:0.925904pt;}
._a{width:2.613333pt;}
._c{width:3.733333pt;}
._9{width:5.333333pt;}
._6{width:6.373333pt;}
._8{width:7.786667pt;}
._4e{width:35.242667pt;}
._60{width:46.933333pt;}
._4b{width:52.522667pt;}
._4c{width:55.338667pt;}
._2b{width:62.378667pt;}
._4d{width:66.005333pt;}
._45{width:73.386667pt;}
._38{width:76.288000pt;}
._29{width:78.976000pt;}
._5b{width:83.882667pt;}
._39{width:86.954667pt;}
._43{width:89.514667pt;}
._30{width:95.317333pt;}
._46{width:97.109333pt;}
._20{width:105.045333pt;}
._2a{width:107.605333pt;}
._1e{width:108.629333pt;}
._44{width:110.378667pt;}
._3a{width:119.637333pt;}
._32{width:121.386667pt;}
._52{width:125.184000pt;}
._1f{width:126.976000pt;}
._62{width:145.280000pt;}
._21{width:148.309333pt;}
._36{width:151.637333pt;}
._2f{width:153.045333pt;}
._1c{width:161.920000pt;}
._1d{width:163.114667pt;}
._f{width:164.864000pt;}
._11{width:166.698667pt;}
._41{width:167.978667pt;}
._23{width:171.050667pt;}
._13{width:173.781333pt;}
._54{width:174.762667pt;}
._50{width:185.429333pt;}
._19{width:194.517333pt;}
._55{width:205.013333pt;}
._3c{width:206.378667pt;}
._22{width:208.554667pt;}
._2e{width:209.920000pt;}
._58{width:212.608000pt;}
._17{width:214.656000pt;}
._18{width:216.448000pt;}
._37{width:217.728000pt;}
._1b{width:222.976000pt;}
._5e{width:226.645333pt;}
._27{width:227.712000pt;}
._12{width:231.296000pt;}
._51{width:234.453333pt;}
._5a{width:235.605333pt;}
._48{width:236.672000pt;}
._14{width:238.378667pt;}
._24{width:239.573333pt;}
._25{width:240.768000pt;}
._26{width:241.920000pt;}
._3d{width:247.253333pt;}
._34{width:249.045333pt;}
._2d{width:257.920000pt;}
._16{width:259.712000pt;}
._3b{width:262.058667pt;}
._10{width:264.832000pt;}
._35{width:268.586667pt;}
._2c{width:270.000000pt;}
._61{width:271.872000pt;}
._1a{width:281.045333pt;}
._3e{width:288.170667pt;}
._40{width:291.029333pt;}
._5d{width:293.632000pt;}
._5c{width:302.677333pt;}
._59{width:304.810667pt;}
._15{width:308.096000pt;}
._31{width:315.392000pt;}
._47{width:317.696000pt;}
._42{width:320.085333pt;}
._5f{width:328.234667pt;}
._3f{width:329.130667pt;}
._28{width:341.333333pt;}
._56{width:342.229333pt;}
._33{width:368.682667pt;}
._4f{width:398.000000pt;}
._49{width:422.229333pt;}
._53{width:425.002667pt;}
._57{width:465.109333pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.y278{bottom:71.345333pt;}
.y1a2{bottom:73.921067pt;}
.y1e2{bottom:73.998000pt;}
.y211{bottom:74.186933pt;}
.y16c{bottom:74.208000pt;}
.y21d{bottom:74.342533pt;}
.y64{bottom:74.464533pt;}
.y16f{bottom:74.470400pt;}
.yad{bottom:74.588533pt;}
.y78{bottom:74.595867pt;}
.ye1{bottom:74.601867pt;}
.y172{bottom:74.659333pt;}
.y1a5{bottom:74.838000pt;}
.y10b{bottom:74.953333pt;}
.y236{bottom:76.552800pt;}
.y2c{bottom:78.039333pt;}
.y20e{bottom:79.392267pt;}
.y139{bottom:82.348133pt;}
.y169{bottom:83.902000pt;}
.y277{bottom:84.678667pt;}
.y1a1{bottom:87.915733pt;}
.y1e1{bottom:87.992667pt;}
.y210{bottom:88.181600pt;}
.y16b{bottom:88.202667pt;}
.y16e{bottom:88.465067pt;}
.y171{bottom:88.654000pt;}
.y1a4{bottom:88.832667pt;}
.y235{bottom:89.886133pt;}
.y21c{bottom:90.342533pt;}
.y63{bottom:90.464533pt;}
.yac{bottom:90.588533pt;}
.y77{bottom:90.595867pt;}
.ye0{bottom:90.601867pt;}
.y2b{bottom:91.369333pt;}
.y20d{bottom:93.077600pt;}
.y276{bottom:98.012000pt;}
.y138{bottom:98.348133pt;}
.y168{bottom:99.902000pt;}
.y16a{bottom:102.197333pt;}
.y1a3{bottom:102.827333pt;}
.y234{bottom:103.219467pt;}
.y2a{bottom:104.699333pt;}
.y21b{bottom:106.342533pt;}
.y62{bottom:106.464533pt;}
.yab{bottom:106.588533pt;}
.y76{bottom:106.595867pt;}
.ydf{bottom:106.601867pt;}
.y20c{bottom:106.762933pt;}
.y275{bottom:111.345333pt;}
.y137{bottom:114.348133pt;}
.y167{bottom:115.902000pt;}
.y233{bottom:116.552800pt;}
.y1e0{bottom:117.461200pt;}
.y29{bottom:118.032667pt;}
.y20b{bottom:120.448267pt;}
.y21a{bottom:122.342533pt;}
.y61{bottom:122.464533pt;}
.yaa{bottom:122.588533pt;}
.y75{bottom:122.595867pt;}
.yde{bottom:122.601867pt;}
.y274{bottom:124.678667pt;}
.y232{bottom:129.886133pt;}
.y136{bottom:130.348133pt;}
.y166{bottom:131.902000pt;}
.y1df{bottom:133.461200pt;}
.y20a{bottom:134.133600pt;}
.y273{bottom:138.012000pt;}
.y219{bottom:138.342533pt;}
.y60{bottom:138.464533pt;}
.ya9{bottom:138.588533pt;}
.y74{bottom:138.595867pt;}
.ydd{bottom:138.601867pt;}
.y231{bottom:143.219467pt;}
.y165{bottom:147.902000pt;}
.y209{bottom:148.800267pt;}
.y1de{bottom:149.461200pt;}
.y272{bottom:151.345333pt;}
.y218{bottom:154.342533pt;}
.y5f{bottom:154.464533pt;}
.ya8{bottom:154.588533pt;}
.y73{bottom:154.595867pt;}
.ydc{bottom:154.601867pt;}
.y230{bottom:156.552800pt;}
.y135{bottom:161.988133pt;}
.y208{bottom:162.485600pt;}
.y164{bottom:163.902000pt;}
.y271{bottom:164.678667pt;}
.y1dd{bottom:165.461200pt;}
.y22f{bottom:169.886133pt;}
.y217{bottom:170.342533pt;}
.y5e{bottom:170.464533pt;}
.ya7{bottom:170.588533pt;}
.y72{bottom:170.595867pt;}
.ydb{bottom:170.601867pt;}
.y207{bottom:176.170933pt;}
.y270{bottom:178.012000pt;}
.y163{bottom:179.902000pt;}
.y1dc{bottom:181.461200pt;}
.y22e{bottom:183.219467pt;}
.y216{bottom:186.342533pt;}
.y5d{bottom:186.464533pt;}
.ya6{bottom:186.588533pt;}
.y1b9{bottom:186.595867pt;}
.yda{bottom:186.601867pt;}
.y28{bottom:188.585333pt;}
.y206{bottom:190.837600pt;}
.y26f{bottom:191.345333pt;}
.y162{bottom:195.902000pt;}
.y22d{bottom:196.552800pt;}
.y1db{bottom:197.461200pt;}
.y71{bottom:202.235867pt;}
.y215{bottom:202.342533pt;}
.y5c{bottom:202.464533pt;}
.ya5{bottom:202.588533pt;}
.y1b8{bottom:202.595867pt;}
.yd9{bottom:202.601867pt;}
.y134{bottom:203.115733pt;}
.y205{bottom:204.522933pt;}
.y27{bottom:204.590400pt;}
.y26e{bottom:204.678667pt;}
.y22c{bottom:209.886133pt;}
.y161{bottom:211.902000pt;}
.y1da{bottom:213.461200pt;}
.y133{bottom:217.558400pt;}
.y26d{bottom:218.012000pt;}
.y204{bottom:218.208267pt;}
.y214{bottom:218.342533pt;}
.y5b{bottom:218.464533pt;}
.ya4{bottom:218.588533pt;}
.y1b7{bottom:218.595867pt;}
.yd8{bottom:218.601867pt;}
.y22b{bottom:223.219467pt;}
.y160{bottom:227.902000pt;}
.y26{bottom:228.897067pt;}
.y1d9{bottom:229.461200pt;}
.y26c{bottom:231.345333pt;}
.y203{bottom:231.893600pt;}
.y70{bottom:234.462533pt;}
.y5a{bottom:234.464533pt;}
.ya3{bottom:234.588533pt;}
.y1b6{bottom:234.595867pt;}
.yd7{bottom:234.601867pt;}
.y22a{bottom:236.552800pt;}
.y132{bottom:243.339733pt;}
.y15f{bottom:243.902000pt;}
.y26b{bottom:244.678667pt;}
.y25{bottom:244.897067pt;}
.y1d8{bottom:245.461200pt;}
.y202{bottom:245.578933pt;}
.y229{bottom:249.886133pt;}
.y213{bottom:249.982533pt;}
.y6f{bottom:250.462533pt;}
.y59{bottom:250.464533pt;}
.ya2{bottom:250.588533pt;}
.y1b5{bottom:250.595867pt;}
.yd6{bottom:250.601867pt;}
.y26a{bottom:258.012000pt;}
.y201{bottom:259.264267pt;}
.y15e{bottom:259.902000pt;}
.y24{bottom:260.897067pt;}
.y1d7{bottom:261.461200pt;}
.y228{bottom:263.219467pt;}
.y6e{bottom:266.462533pt;}
.y58{bottom:266.464533pt;}
.ya1{bottom:266.588533pt;}
.y1b4{bottom:266.595867pt;}
.yd5{bottom:266.601867pt;}
.y269{bottom:271.345333pt;}
.y200{bottom:272.949600pt;}
.y15d{bottom:275.902000pt;}
.y227{bottom:276.552800pt;}
.y23{bottom:276.897067pt;}
.y1d6{bottom:277.461200pt;}
.y6d{bottom:282.462533pt;}
.y57{bottom:282.464533pt;}
.ya0{bottom:282.588533pt;}
.y1b3{bottom:282.595867pt;}
.yd4{bottom:282.601867pt;}
.y268{bottom:284.678667pt;}
.y1ff{bottom:286.634933pt;}
.y226{bottom:289.886133pt;}
.y15c{bottom:291.902000pt;}
.y22{bottom:292.897067pt;}
.y1d5{bottom:293.461200pt;}
.y267{bottom:298.012000pt;}
.y6c{bottom:298.462533pt;}
.y56{bottom:298.464533pt;}
.y9f{bottom:298.588533pt;}
.y1b2{bottom:298.595867pt;}
.yd3{bottom:298.601867pt;}
.y1fe{bottom:300.320267pt;}
.y225{bottom:303.219467pt;}
.y15b{bottom:307.902000pt;}
.y21{bottom:308.897067pt;}
.y1d4{bottom:309.461200pt;}
.y266{bottom:311.345333pt;}
.y6b{bottom:314.462533pt;}
.y55{bottom:314.464533pt;}
.y9e{bottom:314.588533pt;}
.y1b1{bottom:314.595867pt;}
.yd2{bottom:314.601867pt;}
.y224{bottom:316.552800pt;}
.y15a{bottom:323.902000pt;}
.y265{bottom:324.678667pt;}
.y20{bottom:324.897067pt;}
.y1d3{bottom:325.461200pt;}
.y1fd{bottom:326.101600pt;}
.y6a{bottom:330.462533pt;}
.y54{bottom:330.464533pt;}
.y9d{bottom:330.588533pt;}
.y1b0{bottom:330.595867pt;}
.yd1{bottom:330.601867pt;}
.y1fa{bottom:331.669600pt;}
.y264{bottom:338.012000pt;}
.y1fc{bottom:338.997600pt;}
.y1f{bottom:340.897067pt;}
.y1d2{bottom:341.461200pt;}
.y223{bottom:345.982533pt;}
.y1f9{bottom:346.336267pt;}
.y69{bottom:346.462533pt;}
.y53{bottom:346.464533pt;}
.y9c{bottom:346.588533pt;}
.y1af{bottom:346.595867pt;}
.yd0{bottom:346.601867pt;}
.y263{bottom:351.345333pt;}
.y1fb{bottom:351.893600pt;}
.y159{bottom:355.542000pt;}
.y1e{bottom:356.897067pt;}
.y131{bottom:362.462533pt;}
.y52{bottom:362.464533pt;}
.y9b{bottom:362.588533pt;}
.y1ae{bottom:362.595867pt;}
.ycf{bottom:362.601867pt;}
.y262{bottom:364.678667pt;}
.y1d{bottom:372.897067pt;}
.y1d1{bottom:373.101200pt;}
.y261{bottom:378.012000pt;}
.y130{bottom:378.462533pt;}
.y51{bottom:378.464533pt;}
.y9a{bottom:378.588533pt;}
.y1ad{bottom:378.595867pt;}
.yce{bottom:378.601867pt;}
.y1c{bottom:388.897067pt;}
.y260{bottom:391.345333pt;}
.y12f{bottom:394.462533pt;}
.y50{bottom:394.464533pt;}
.y99{bottom:394.588533pt;}
.y1ac{bottom:394.595867pt;}
.ycd{bottom:394.601867pt;}
.y158{bottom:396.673067pt;}
.y1f8{bottom:397.302133pt;}
.y25f{bottom:404.678667pt;}
.y1d0{bottom:405.327867pt;}
.y12e{bottom:410.462533pt;}
.y4f{bottom:410.464533pt;}
.y98{bottom:410.588533pt;}
.y1ab{bottom:410.595867pt;}
.ycc{bottom:410.601867pt;}
.y1f7{bottom:410.987467pt;}
.y157{bottom:411.115733pt;}
.y25e{bottom:418.012000pt;}
.y1cf{bottom:421.327867pt;}
.y1f6{bottom:424.672800pt;}
.y156{bottom:425.558400pt;}
.y222{bottom:426.102533pt;}
.y12d{bottom:426.462533pt;}
.y4e{bottom:426.464533pt;}
.y97{bottom:426.588533pt;}
.y1aa{bottom:426.595867pt;}
.ycb{bottom:426.601867pt;}
.y1b{bottom:429.037600pt;}
.y25d{bottom:431.345333pt;}
.y1ce{bottom:437.327867pt;}
.y183{bottom:437.455733pt;}
.y1f5{bottom:438.358133pt;}
.y1a{bottom:440.104933pt;}
.y12c{bottom:442.462533pt;}
.y4d{bottom:442.464533pt;}
.y96{bottom:442.588533pt;}
.y1a9{bottom:442.595867pt;}
.yca{bottom:442.601867pt;}
.y25c{bottom:444.678667pt;}
.y1a0{bottom:446.230400pt;}
.y155{bottom:451.339733pt;}
.y1f4{bottom:452.043467pt;}
.y1cd{bottom:453.327867pt;}
.y182{bottom:453.455733pt;}
.y25b{bottom:458.012000pt;}
.y12b{bottom:458.462533pt;}
.y4c{bottom:458.464533pt;}
.y95{bottom:458.588533pt;}
.y1a8{bottom:458.595867pt;}
.yc9{bottom:458.601867pt;}
.y19f{bottom:460.673067pt;}
.y1f3{bottom:466.710133pt;}
.y1cc{bottom:469.327867pt;}
.y181{bottom:469.455733pt;}
.y25a{bottom:471.345333pt;}
.y19{bottom:473.119067pt;}
.y221{bottom:474.102533pt;}
.y12a{bottom:474.462533pt;}
.y4b{bottom:474.464533pt;}
.y10a{bottom:474.582533pt;}
.y94{bottom:474.588533pt;}
.y1a7{bottom:474.595867pt;}
.yc8{bottom:474.601867pt;}
.y19e{bottom:475.115733pt;}
.y1f2{bottom:480.395467pt;}
.y259{bottom:484.678667pt;}
.y18{bottom:485.119067pt;}
.y1cb{bottom:485.327867pt;}
.y180{bottom:485.455733pt;}
.y19d{bottom:489.558400pt;}
.y68{bottom:490.104533pt;}
.yef{bottom:490.462533pt;}
.y4a{bottom:490.464533pt;}
.y109{bottom:490.582533pt;}
.y93{bottom:490.595867pt;}
.yc7{bottom:490.601867pt;}
.y17{bottom:492.296533pt;}
.y1f1{bottom:494.080800pt;}
.y258{bottom:498.012000pt;}
.y1ca{bottom:501.327867pt;}
.y17f{bottom:501.455733pt;}
.yee{bottom:506.462533pt;}
.y49{bottom:506.464533pt;}
.y154{bottom:506.468133pt;}
.y108{bottom:506.582533pt;}
.y92{bottom:506.595867pt;}
.yc6{bottom:506.601867pt;}
.y1f0{bottom:508.747467pt;}
.y16{bottom:509.119067pt;}
.y257{bottom:511.345333pt;}
.y19c{bottom:515.339733pt;}
.y15{bottom:516.296533pt;}
.y1c9{bottom:517.327867pt;}
.y17e{bottom:517.455733pt;}
.y67{bottom:521.984533pt;}
.y1ef{bottom:522.432800pt;}
.yed{bottom:522.462533pt;}
.y48{bottom:522.464533pt;}
.y153{bottom:522.468133pt;}
.y107{bottom:522.582533pt;}
.y91{bottom:522.595867pt;}
.yc5{bottom:522.601867pt;}
.y256{bottom:524.678667pt;}
.y14{bottom:533.119067pt;}
.y1c8{bottom:533.327867pt;}
.y17d{bottom:533.455733pt;}
.y1ee{bottom:536.118133pt;}
.y255{bottom:538.012000pt;}
.y220{bottom:538.102533pt;}
.yec{bottom:538.462533pt;}
.y47{bottom:538.464533pt;}
.y152{bottom:538.468133pt;}
.y106{bottom:538.582533pt;}
.y90{bottom:538.595867pt;}
.yc4{bottom:538.601867pt;}
.y13{bottom:540.296533pt;}
.y1c7{bottom:549.327867pt;}
.y17c{bottom:549.455733pt;}
.y1ed{bottom:549.803467pt;}
.y254{bottom:551.345333pt;}
.yeb{bottom:554.462533pt;}
.y46{bottom:554.464533pt;}
.y151{bottom:554.468133pt;}
.y19b{bottom:554.469067pt;}
.y105{bottom:554.582533pt;}
.y8f{bottom:554.595867pt;}
.yc3{bottom:554.601867pt;}
.y12{bottom:557.119067pt;}
.y1ec{bottom:563.488800pt;}
.y253{bottom:564.678667pt;}
.y1c6{bottom:565.327867pt;}
.y17b{bottom:565.455733pt;}
.y11{bottom:569.119067pt;}
.yea{bottom:570.462533pt;}
.y45{bottom:570.464533pt;}
.y150{bottom:570.468133pt;}
.y19a{bottom:570.469067pt;}
.y104{bottom:570.582533pt;}
.y8e{bottom:570.595867pt;}
.yc2{bottom:570.601867pt;}
.y10{bottom:576.296533pt;}
.y1eb{bottom:577.174133pt;}
.y252{bottom:578.012000pt;}
.y1c5{bottom:581.327867pt;}
.y17a{bottom:581.455733pt;}
.ye9{bottom:586.462533pt;}
.y44{bottom:586.464533pt;}
.y14f{bottom:586.468133pt;}
.y199{bottom:586.469067pt;}
.y103{bottom:586.582533pt;}
.y8d{bottom:586.595867pt;}
.yc1{bottom:586.601867pt;}
.y1ea{bottom:590.859467pt;}
.y251{bottom:591.345333pt;}
.yf{bottom:593.119067pt;}
.y1c4{bottom:597.327867pt;}
.ye{bottom:600.296533pt;}
.ye8{bottom:602.462533pt;}
.y43{bottom:602.464533pt;}
.y14e{bottom:602.468133pt;}
.y198{bottom:602.469067pt;}
.y102{bottom:602.582533pt;}
.y8c{bottom:602.595867pt;}
.yc0{bottom:602.601867pt;}
.y1e9{bottom:604.544800pt;}
.y250{bottom:604.678667pt;}
.yd{bottom:612.296533pt;}
.y179{bottom:613.095733pt;}
.y1c3{bottom:613.327867pt;}
.y24f{bottom:618.012000pt;}
.y1e8{bottom:618.230133pt;}
.ye7{bottom:618.462533pt;}
.y42{bottom:618.464533pt;}
.y14d{bottom:618.468133pt;}
.y197{bottom:618.469067pt;}
.y101{bottom:618.582533pt;}
.y8b{bottom:618.595867pt;}
.ybf{bottom:618.601867pt;}
.y124{bottom:618.609200pt;}
.yc{bottom:629.119067pt;}
.y1c2{bottom:629.327867pt;}
.y24e{bottom:631.345333pt;}
.ye6{bottom:634.462533pt;}
.y41{bottom:634.464533pt;}
.y14c{bottom:634.468133pt;}
.y196{bottom:634.469067pt;}
.y100{bottom:634.582533pt;}
.y8a{bottom:634.595867pt;}
.ybe{bottom:634.601867pt;}
.y123{bottom:634.609200pt;}
.y1e7{bottom:644.022133pt;}
.y24d{bottom:644.678667pt;}
.y1c1{bottom:645.327867pt;}
.ye5{bottom:650.462533pt;}
.y40{bottom:650.464533pt;}
.y14b{bottom:650.468133pt;}
.y195{bottom:650.469067pt;}
.yff{bottom:650.582533pt;}
.y89{bottom:650.595867pt;}
.ybd{bottom:650.601867pt;}
.y122{bottom:650.609200pt;}
.y178{bottom:654.230400pt;}
.yb{bottom:654.654400pt;}
.y24c{bottom:658.012000pt;}
.y1e6{bottom:658.688800pt;}
.y1c0{bottom:661.327867pt;}
.ye4{bottom:666.462533pt;}
.y3f{bottom:666.464533pt;}
.y14a{bottom:666.468133pt;}
.y194{bottom:666.469067pt;}
.yfe{bottom:666.582533pt;}
.y88{bottom:666.595867pt;}
.ybc{bottom:666.601867pt;}
.y121{bottom:666.609200pt;}
.y177{bottom:668.673067pt;}
.y24b{bottom:671.345333pt;}
.ya{bottom:673.320933pt;}
.y21f{bottom:682.102533pt;}
.y129{bottom:682.462533pt;}
.y3e{bottom:682.464533pt;}
.y149{bottom:682.468133pt;}
.y193{bottom:682.469067pt;}
.yfd{bottom:682.582533pt;}
.y87{bottom:682.595867pt;}
.ybb{bottom:682.601867pt;}
.y120{bottom:682.609200pt;}
.y176{bottom:683.115733pt;}
.y24a{bottom:684.678667pt;}
.y1e5{bottom:687.475867pt;}
.y9{bottom:691.982933pt;}
.y175{bottom:697.558400pt;}
.y249{bottom:698.012000pt;}
.ye3{bottom:698.102533pt;}
.y128{bottom:698.462533pt;}
.y3d{bottom:698.464533pt;}
.y148{bottom:698.468133pt;}
.y192{bottom:698.469067pt;}
.yfc{bottom:698.582533pt;}
.y86{bottom:698.595867pt;}
.yba{bottom:698.601867pt;}
.y11f{bottom:698.609200pt;}
.y1bf{bottom:702.230400pt;}
.y1e4{bottom:704.809200pt;}
.y248{bottom:711.345333pt;}
.y127{bottom:714.462533pt;}
.y3c{bottom:714.464533pt;}
.y147{bottom:714.468133pt;}
.y191{bottom:714.469067pt;}
.yfb{bottom:714.582533pt;}
.y112{bottom:714.595867pt;}
.yb9{bottom:714.601867pt;}
.y11e{bottom:714.609200pt;}
.y1be{bottom:716.673067pt;}
.y1e3{bottom:722.142533pt;}
.y174{bottom:723.339733pt;}
.y247{bottom:724.678667pt;}
.ye2{bottom:729.982533pt;}
.y85{bottom:730.235867pt;}
.y126{bottom:730.462533pt;}
.y3b{bottom:730.464533pt;}
.y146{bottom:730.468133pt;}
.y190{bottom:730.469067pt;}
.yfa{bottom:730.582533pt;}
.y111{bottom:730.595867pt;}
.yb8{bottom:730.601867pt;}
.y11d{bottom:730.609200pt;}
.y1bd{bottom:731.115733pt;}
.y8{bottom:732.997333pt;}
.y246{bottom:738.012000pt;}
.y1bc{bottom:745.558400pt;}
.y125{bottom:746.462533pt;}
.y3a{bottom:746.464533pt;}
.y145{bottom:746.468133pt;}
.y18f{bottom:746.469067pt;}
.yf9{bottom:746.582533pt;}
.y110{bottom:746.595867pt;}
.y11c{bottom:746.609200pt;}
.y245{bottom:751.345333pt;}
.yb7{bottom:762.241867pt;}
.y84{bottom:762.462533pt;}
.y39{bottom:762.464533pt;}
.y144{bottom:762.468133pt;}
.y18e{bottom:762.469067pt;}
.yf8{bottom:762.582533pt;}
.y10f{bottom:762.595867pt;}
.y11b{bottom:762.609200pt;}
.y244{bottom:764.678667pt;}
.y7{bottom:765.406933pt;}
.y1bb{bottom:771.339733pt;}
.y243{bottom:778.012000pt;}
.yb6{bottom:778.241867pt;}
.y83{bottom:778.462533pt;}
.y38{bottom:778.464533pt;}
.y143{bottom:778.468133pt;}
.y18d{bottom:778.469067pt;}
.yf7{bottom:778.582533pt;}
.y10e{bottom:778.595867pt;}
.y242{bottom:791.345333pt;}
.y11a{bottom:794.249200pt;}
.y82{bottom:794.462533pt;}
.y37{bottom:794.464533pt;}
.y142{bottom:794.468133pt;}
.y18c{bottom:794.469067pt;}
.yf6{bottom:794.582533pt;}
.y6{bottom:797.816533pt;}
.y241{bottom:804.678667pt;}
.y21e{bottom:810.102533pt;}
.y10d{bottom:810.235867pt;}
.y81{bottom:810.462533pt;}
.y36{bottom:810.464533pt;}
.y141{bottom:810.468133pt;}
.yb5{bottom:810.468533pt;}
.y18b{bottom:810.469067pt;}
.y1ba{bottom:810.475867pt;}
.yf5{bottom:810.582533pt;}
.y240{bottom:818.012000pt;}
.y80{bottom:826.462533pt;}
.y35{bottom:826.464533pt;}
.y140{bottom:826.468133pt;}
.yb4{bottom:826.468533pt;}
.y18a{bottom:826.469067pt;}
.y119{bottom:826.475867pt;}
.yf4{bottom:826.582533pt;}
.y5{bottom:830.226133pt;}
.y23f{bottom:831.345333pt;}
.y7f{bottom:842.462533pt;}
.y34{bottom:842.464533pt;}
.y13f{bottom:842.468133pt;}
.yb3{bottom:842.468533pt;}
.y189{bottom:842.469067pt;}
.y118{bottom:842.475867pt;}
.yf3{bottom:842.582533pt;}
.y23e{bottom:844.678667pt;}
.y23d{bottom:858.012000pt;}
.y7e{bottom:858.462533pt;}
.y33{bottom:858.464533pt;}
.y13e{bottom:858.468133pt;}
.yb2{bottom:858.468533pt;}
.y188{bottom:858.469067pt;}
.y117{bottom:858.475867pt;}
.yf2{bottom:858.582533pt;}
.y4{bottom:862.635733pt;}
.y23c{bottom:871.345333pt;}
.y7d{bottom:874.462533pt;}
.y32{bottom:874.464533pt;}
.y13d{bottom:874.468133pt;}
.yb1{bottom:874.468533pt;}
.y187{bottom:874.469067pt;}
.y116{bottom:874.475867pt;}
.y23b{bottom:884.678667pt;}
.yf1{bottom:890.222533pt;}
.y7c{bottom:890.462533pt;}
.y31{bottom:890.464533pt;}
.y13c{bottom:890.468133pt;}
.yb0{bottom:890.468533pt;}
.y186{bottom:890.469067pt;}
.y115{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y23a{bottom:898.012000pt;}
.y7b{bottom:906.462533pt;}
.y66{bottom:906.464533pt;}
.y13b{bottom:906.468133pt;}
.yaf{bottom:906.468533pt;}
.y185{bottom:906.469067pt;}
.y114{bottom:906.475867pt;}
.y239{bottom:911.345333pt;}
.yf0{bottom:922.102533pt;}
.y30{bottom:922.104533pt;}
.y7a{bottom:922.462533pt;}
.y65{bottom:922.464533pt;}
.y13a{bottom:922.468133pt;}
.yae{bottom:922.468533pt;}
.y184{bottom:922.469067pt;}
.y113{bottom:922.475867pt;}
.y238{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y237{bottom:1006.590133pt;}
.y10c{bottom:1006.590667pt;}
.y79{bottom:1006.594400pt;}
.y173{bottom:1006.595333pt;}
.y16d{bottom:1006.597067pt;}
.y170{bottom:1006.598400pt;}
.y279{bottom:1006.598667pt;}
.y212{bottom:1006.602933pt;}
.y1a6{bottom:1006.603333pt;}
.y20f{bottom:1006.656267pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h8{height:17.000371pt;}
.ha{height:25.238281pt;}
.h2{height:27.179688pt;}
.h1a{height:28.916667pt;}
.h10{height:29.121094pt;}
.hf{height:29.140625pt;}
.h9{height:29.160156pt;}
.h18{height:29.645833pt;}
.h12{height:31.062500pt;}
.h11{height:31.104167pt;}
.h14{height:37.057292pt;}
.h17{height:37.437500pt;}
.hc{height:38.828125pt;}
.hd{height:38.854167pt;}
.he{height:38.859942pt;}
.hb{height:38.880208pt;}
.h13{height:46.796875pt;}
.h16{height:48.236875pt;}
.h3{height:50.476562pt;}
.h7{height:50.755837pt;}
.h6{height:50.756370pt;}
.h5{height:50.774503pt;}
.h15{height:52.375911pt;}
.h19{height:66.749500pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:62.740133pt;}
.x8{left:68.031467pt;}
.x15{left:69.927600pt;}
.x6{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1b{left:88.825333pt;}
.x28{left:90.708667pt;}
.x4{left:94.488133pt;}
.x9{left:98.274267pt;}
.x2a{left:109.606267pt;}
.x3{left:111.491467pt;}
.xf{left:117.169200pt;}
.x20{left:140.340000pt;}
.x14{left:161.746267pt;}
.x5{left:170.086400pt;}
.x1a{left:180.644000pt;}
.x13{left:187.641067pt;}
.x1f{left:195.677733pt;}
.x24{left:198.273200pt;}
.x22{left:222.017200pt;}
.x7{left:404.481333pt;}
.xa{left:406.314267pt;}
.x17{left:408.195333pt;}
.x10{left:425.190400pt;}
.x1d{left:427.092933pt;}
.x29{left:428.986400pt;}
.xc{left:436.554267pt;}
.x27{left:447.874133pt;}
.x11{left:455.430400pt;}
.xb{left:466.927600pt;}
.x16{left:500.014000pt;}
.x1c{left:518.911600pt;}
.x26{left:529.863467pt;}
.x25{left:561.089200pt;}
.x21{left:565.131867pt;}
.xe{left:589.770933pt;}
.x23{left:603.883867pt;}
.x2{left:616.324800pt;}
.x19{left:641.524400pt;}
.xd{left:647.459200pt;}
.x1e{left:661.216133pt;}
.x12{left:666.356800pt;}
}




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