
    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_35ab6d4b3c5f51f234cc250e.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_3f242970133b5f6cd3041b9c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.913574;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_6b3c25ece9d108420b46eac4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_17608b9955aaa501c65ac05f.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_57349857be74841447e0f891.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.917480;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_7c3c51977608b7355af83d18.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_16bf3919dd059fc8d101d1d9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_4a12f3cf7cd7ab3044ea7251.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.925000;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_543e8b5180d731056e9066ca.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.731000;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_923c8a497ebfa9317b3f72a2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932000;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_bcd1afee55d068d02b47f23e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_88d31a71ec3487d40fce5739.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_3be33bcf31ea5952a4d07471.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_81d69bb1d63fb97b6a743f33.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-16.471800px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.655400px;}
.ls65{letter-spacing:-5.520000px;}
.ls22{letter-spacing:-5.280000px;}
.ls67{letter-spacing:-4.440000px;}
.ls4d{letter-spacing:-4.416000px;}
.ls6c{letter-spacing:-2.340000px;}
.ls47{letter-spacing:-2.280000px;}
.ls55{letter-spacing:-2.220000px;}
.ls66{letter-spacing:-1.860000px;}
.ls20{letter-spacing:-0.480000px;}
.ls89{letter-spacing:-0.384000px;}
.ls4f{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.330000px;}
.ls21{letter-spacing:-0.300000px;}
.ls8b{letter-spacing:-0.288000px;}
.ls57{letter-spacing:-0.240000px;}
.ls1e{letter-spacing:-0.198000px;}
.ls88{letter-spacing:-0.192000px;}
.ls56{letter-spacing:-0.180000px;}
.ls4e{letter-spacing:-0.120000px;}
.ls8c{letter-spacing:-0.096000px;}
.ls1b{letter-spacing:-0.084000px;}
.ls46{letter-spacing:-0.060000px;}
.ls1d{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004800px;}
.ls6{letter-spacing:0.048000px;}
.ls11{letter-spacing:0.060000px;}
.ls7c{letter-spacing:0.096000px;}
.ls3b{letter-spacing:0.120000px;}
.ls73{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.192000px;}
.ls1a{letter-spacing:0.240000px;}
.ls7e{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.300000px;}
.ls1f{letter-spacing:0.336000px;}
.ls23{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.384000px;}
.lsf{letter-spacing:0.420000px;}
.ls7a{letter-spacing:0.432000px;}
.ls5d{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.528000px;}
.ls28{letter-spacing:0.540000px;}
.ls81{letter-spacing:0.576000px;}
.ls2c{letter-spacing:0.600000px;}
.ls48{letter-spacing:0.624000px;}
.ls27{letter-spacing:0.660000px;}
.ls3{letter-spacing:0.672000px;}
.ls30{letter-spacing:0.720000px;}
.lse{letter-spacing:0.780000px;}
.ls42{letter-spacing:0.840000px;}
.ls86{letter-spacing:0.864000px;}
.ls36{letter-spacing:0.900000px;}
.ls8a{letter-spacing:0.912000px;}
.ls2e{letter-spacing:0.960000px;}
.ls6f{letter-spacing:1.008000px;}
.ls29{letter-spacing:1.020000px;}
.ls2b{letter-spacing:1.080000px;}
.ls87{letter-spacing:1.104000px;}
.ls32{letter-spacing:1.140000px;}
.ls1{letter-spacing:1.200000px;}
.ls54{letter-spacing:1.260000px;}
.ls77{letter-spacing:1.296000px;}
.ls44{letter-spacing:1.320000px;}
.ls6e{letter-spacing:1.344000px;}
.lsd{letter-spacing:1.380000px;}
.ls16{letter-spacing:1.440000px;}
.ls72{letter-spacing:1.488000px;}
.ls18{letter-spacing:1.500000px;}
.lsa{letter-spacing:1.560000px;}
.ls41{letter-spacing:1.620000px;}
.ls70{letter-spacing:1.632000px;}
.ls2d{letter-spacing:1.680000px;}
.ls19{letter-spacing:1.740000px;}
.ls33{letter-spacing:1.800000px;}
.ls78{letter-spacing:1.824000px;}
.ls5c{letter-spacing:1.860000px;}
.ls76{letter-spacing:1.872000px;}
.ls62{letter-spacing:1.920000px;}
.ls4b{letter-spacing:1.980000px;}
.ls74{letter-spacing:2.016000px;}
.ls3f{letter-spacing:2.040000px;}
.ls2a{letter-spacing:2.100000px;}
.ls14{letter-spacing:2.160000px;}
.ls7d{letter-spacing:2.208000px;}
.ls43{letter-spacing:2.220000px;}
.ls7b{letter-spacing:2.256000px;}
.ls3e{letter-spacing:2.280000px;}
.ls38{letter-spacing:2.340000px;}
.ls85{letter-spacing:2.352000px;}
.ls26{letter-spacing:2.400000px;}
.ls82{letter-spacing:2.448000px;}
.ls9{letter-spacing:2.460000px;}
.ls53{letter-spacing:2.520000px;}
.ls5f{letter-spacing:2.580000px;}
.ls7f{letter-spacing:2.592000px;}
.lsb{letter-spacing:2.640000px;}
.ls79{letter-spacing:2.688000px;}
.ls37{letter-spacing:2.700000px;}
.lsc{letter-spacing:2.760000px;}
.ls75{letter-spacing:2.784000px;}
.ls40{letter-spacing:2.820000px;}
.ls8{letter-spacing:2.880000px;}
.ls3d{letter-spacing:2.940000px;}
.ls5a{letter-spacing:3.000000px;}
.ls13{letter-spacing:3.060000px;}
.ls35{letter-spacing:3.120000px;}
.ls51{letter-spacing:3.180000px;}
.ls34{letter-spacing:3.240000px;}
.ls8d{letter-spacing:3.264000px;}
.ls4a{letter-spacing:3.300000px;}
.ls4c{letter-spacing:3.360000px;}
.ls2f{letter-spacing:3.420000px;}
.ls31{letter-spacing:3.480000px;}
.ls80{letter-spacing:3.504000px;}
.ls15{letter-spacing:3.540000px;}
.ls25{letter-spacing:3.600000px;}
.ls58{letter-spacing:3.660000px;}
.ls68{letter-spacing:3.720000px;}
.ls45{letter-spacing:3.780000px;}
.ls3a{letter-spacing:3.840000px;}
.ls49{letter-spacing:3.960000px;}
.ls6a{letter-spacing:4.200000px;}
.ls3c{letter-spacing:4.380000px;}
.ls5e{letter-spacing:4.440000px;}
.ls52{letter-spacing:4.500000px;}
.ls6d{letter-spacing:4.560000px;}
.ls71{letter-spacing:4.608000px;}
.ls83{letter-spacing:4.704000px;}
.ls5b{letter-spacing:4.740000px;}
.ls50{letter-spacing:4.860000px;}
.ls84{letter-spacing:5.088000px;}
.ls39{letter-spacing:5.220000px;}
.ls12{letter-spacing:5.340000px;}
.ls6b{letter-spacing:5.520000px;}
.ls2{letter-spacing:5.616000px;}
.ls61{letter-spacing:5.640000px;}
.ls63{letter-spacing:5.700000px;}
.ls59{letter-spacing:5.760000px;}
.ls60{letter-spacing:5.880000px;}
.ls69{letter-spacing:5.940000px;}
.ls64{letter-spacing:6.180000px;}
.ls10{letter-spacing:6.480000px;}
.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;}
}
.ws6f{word-spacing:-20.340000px;}
.ws71{word-spacing:-19.980000px;}
.ws70{word-spacing:-19.800000px;}
.ws49{word-spacing:-18.960000px;}
.ws55{word-spacing:-18.720000px;}
.ws73{word-spacing:-18.180000px;}
.ws1e{word-spacing:-18.060000px;}
.ws8f{word-spacing:-17.952000px;}
.ws72{word-spacing:-17.940000px;}
.ws54{word-spacing:-17.700000px;}
.ws8e{word-spacing:-17.580000px;}
.ws56{word-spacing:-17.220000px;}
.ws1c{word-spacing:-17.040000px;}
.ws1d{word-spacing:-16.680000px;}
.ws1f{word-spacing:-16.620000px;}
.ws90{word-spacing:-13.632000px;}
.ws46{word-spacing:-13.344000px;}
.ws0{word-spacing:-11.008800px;}
.ws1{word-spacing:-10.810800px;}
.ws47{word-spacing:-6.217918px;}
.ws81{word-spacing:-5.700000px;}
.ws7f{word-spacing:-5.640000px;}
.ws8c{word-spacing:-5.520000px;}
.ws16{word-spacing:-5.340000px;}
.ws37{word-spacing:-5.220000px;}
.wsae{word-spacing:-5.088000px;}
.ws58{word-spacing:-4.860000px;}
.ws78{word-spacing:-4.740000px;}
.wsab{word-spacing:-4.704000px;}
.ws91{word-spacing:-4.560000px;}
.ws7c{word-spacing:-4.440000px;}
.ws3a{word-spacing:-4.380000px;}
.ws88{word-spacing:-4.200000px;}
.ws4c{word-spacing:-3.960000px;}
.ws45{word-spacing:-3.780000px;}
.ws86{word-spacing:-3.720000px;}
.ws22{word-spacing:-3.600000px;}
.ws33{word-spacing:-3.540000px;}
.wsa8{word-spacing:-3.504000px;}
.ws2e{word-spacing:-3.480000px;}
.ws2c{word-spacing:-3.420000px;}
.ws53{word-spacing:-3.360000px;}
.ws51{word-spacing:-3.300000px;}
.wsac{word-spacing:-3.264000px;}
.ws84{word-spacing:-3.240000px;}
.ws5a{word-spacing:-3.180000px;}
.wsad{word-spacing:-3.120000px;}
.ws17{word-spacing:-3.060000px;}
.ws77{word-spacing:-3.000000px;}
.ws3b{word-spacing:-2.940000px;}
.ws10{word-spacing:-2.880000px;}
.ws3e{word-spacing:-2.820000px;}
.ws99{word-spacing:-2.784000px;}
.ws13{word-spacing:-2.760000px;}
.ws35{word-spacing:-2.700000px;}
.ws12{word-spacing:-2.640000px;}
.wsa7{word-spacing:-2.592000px;}
.ws7d{word-spacing:-2.580000px;}
.ws61{word-spacing:-2.520000px;}
.ws52{word-spacing:-2.460000px;}
.wsaa{word-spacing:-2.448000px;}
.ws23{word-spacing:-2.400000px;}
.wsaf{word-spacing:-2.352000px;}
.ws62{word-spacing:-2.340000px;}
.ws3c{word-spacing:-2.280000px;}
.wsa3{word-spacing:-2.256000px;}
.ws36{word-spacing:-2.220000px;}
.wsa5{word-spacing:-2.208000px;}
.ws18{word-spacing:-2.160000px;}
.ws28{word-spacing:-2.100000px;}
.ws3d{word-spacing:-2.040000px;}
.ws80{word-spacing:-1.920000px;}
.ws9a{word-spacing:-1.872000px;}
.ws7a{word-spacing:-1.860000px;}
.ws9c{word-spacing:-1.824000px;}
.ws30{word-spacing:-1.800000px;}
.ws5f{word-spacing:-1.740000px;}
.ws2a{word-spacing:-1.680000px;}
.ws96{word-spacing:-1.632000px;}
.ws40{word-spacing:-1.620000px;}
.ws67{word-spacing:-1.560000px;}
.ws3f{word-spacing:-1.500000px;}
.ws43{word-spacing:-1.440000px;}
.ws21{word-spacing:-1.380000px;}
.ws93{word-spacing:-1.344000px;}
.ws42{word-spacing:-1.320000px;}
.ws9b{word-spacing:-1.296000px;}
.ws63{word-spacing:-1.260000px;}
.ws6{word-spacing:-1.200000px;}
.ws4{word-spacing:-1.188000px;}
.ws2f{word-spacing:-1.140000px;}
.ws92{word-spacing:-1.104000px;}
.ws29{word-spacing:-1.080000px;}
.ws25{word-spacing:-1.020000px;}
.ws95{word-spacing:-1.008000px;}
.ws2b{word-spacing:-0.960000px;}
.ws9e{word-spacing:-0.912000px;}
.ws34{word-spacing:-0.900000px;}
.wsb0{word-spacing:-0.864000px;}
.ws41{word-spacing:-0.840000px;}
.ws75{word-spacing:-0.780000px;}
.ws2d{word-spacing:-0.720000px;}
.ws7{word-spacing:-0.672000px;}
.ws24{word-spacing:-0.660000px;}
.ws4a{word-spacing:-0.624000px;}
.ws39{word-spacing:-0.600000px;}
.wsa9{word-spacing:-0.576000px;}
.ws60{word-spacing:-0.540000px;}
.wsa{word-spacing:-0.528000px;}
.ws7b{word-spacing:-0.480000px;}
.ws9f{word-spacing:-0.432000px;}
.ws57{word-spacing:-0.420000px;}
.ws27{word-spacing:-0.360000px;}
.wsc{word-spacing:-0.336000px;}
.ws19{word-spacing:-0.300000px;}
.wsa6{word-spacing:-0.288000px;}
.ws1a{word-spacing:-0.240000px;}
.ws9{word-spacing:-0.192000px;}
.ws44{word-spacing:-0.180000px;}
.ws38{word-spacing:-0.120000px;}
.wsa4{word-spacing:-0.096000px;}
.ws26{word-spacing:-0.060000px;}
.wsd{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws31{word-spacing:0.060000px;}
.ws3{word-spacing:0.084000px;}
.wsa1{word-spacing:0.096000px;}
.ws4f{word-spacing:0.120000px;}
.ws65{word-spacing:0.180000px;}
.ws94{word-spacing:0.192000px;}
.ws66{word-spacing:0.240000px;}
.ws6e{word-spacing:0.288000px;}
.ws15{word-spacing:0.300000px;}
.ws50{word-spacing:0.360000px;}
.ws9d{word-spacing:0.384000px;}
.wsf{word-spacing:0.480000px;}
.ws4d{word-spacing:0.660000px;}
.wsb1{word-spacing:0.768000px;}
.ws76{word-spacing:0.840000px;}
.ws6a{word-spacing:1.008000px;}
.ws69{word-spacing:1.020000px;}
.ws6d{word-spacing:1.536000px;}
.ws5e{word-spacing:1.740000px;}
.ws7e{word-spacing:1.860000px;}
.ws5d{word-spacing:2.100000px;}
.wsb{word-spacing:2.160000px;}
.ws64{word-spacing:2.220000px;}
.wsa2{word-spacing:2.256000px;}
.ws32{word-spacing:2.280000px;}
.ws8b{word-spacing:2.340000px;}
.ws4e{word-spacing:2.580000px;}
.ws4b{word-spacing:2.592000px;}
.wsb2{word-spacing:2.700000px;}
.wse{word-spacing:2.976000px;}
.ws68{word-spacing:3.060000px;}
.ws5c{word-spacing:3.360000px;}
.ws59{word-spacing:3.540000px;}
.ws97{word-spacing:3.600000px;}
.ws89{word-spacing:3.720000px;}
.ws8{word-spacing:3.840000px;}
.ws79{word-spacing:4.020000px;}
.wsa0{word-spacing:4.032000px;}
.ws20{word-spacing:4.260000px;}
.ws74{word-spacing:4.320000px;}
.ws98{word-spacing:4.368000px;}
.ws5{word-spacing:4.416000px;}
.ws83{word-spacing:4.440000px;}
.ws82{word-spacing:4.500000px;}
.ws87{word-spacing:4.740000px;}
.ws85{word-spacing:5.220000px;}
.ws1b{word-spacing:5.280000px;}
.ws8d{word-spacing:5.340000px;}
.ws14{word-spacing:5.460000px;}
.ws11{word-spacing:5.520000px;}
.ws5b{word-spacing:6.960000px;}
.ws8a{word-spacing:7.920000px;}
.ws6c{word-spacing:594.644985px;}
.ws6b{word-spacing:610.978005px;}
.ws48{word-spacing:669.312000px;}
._d{margin-left:-2898.126000px;}
._e{margin-left:-2874.309000px;}
._2{margin-left:-7.568400px;}
._1{margin-left:-6.072000px;}
._5{margin-left:-4.464000px;}
._0{margin-left:-3.192000px;}
._4{margin-left:-1.680000px;}
._3{width:1.188000px;}
._8{width:3.012000px;}
._6{width:4.560000px;}
._7{width:5.712000px;}
._a{width:7.200000px;}
._9{width:8.280000px;}
._c{width:9.540000px;}
._b{width:10.740000px;}
._11{width:12.024000px;}
._10{width:643.644045px;}
._f{width:659.977065px;}
.fc2{color:rgb(231,36,24);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:24.663319px;}
.fs3{font-size:28.800000px;}
.fsa{font-size:29.329800px;}
.fsb{font-size:31.445400px;}
.fse{font-size:31.470000px;}
.fs9{font-size:36.662400px;}
.fs10{font-size:37.290000px;}
.fs2{font-size:39.600000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fsf{font-size:55.935000px;}
.fsd{font-size:56.601600px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs8{font-size:73.324800px;}
.fs7{font-size:80.657400px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1d6{bottom:82.902000px;}
.y23f{bottom:83.363850px;}
.y113{bottom:83.393850px;}
.y2b{bottom:83.493900px;}
.y213{bottom:83.528850px;}
.y21d{bottom:83.543850px;}
.y115{bottom:83.563200px;}
.y92{bottom:83.764050px;}
.ye1{bottom:83.813850px;}
.y8e{bottom:83.937600px;}
.y28a{bottom:91.796700px;}
.y1d5{bottom:98.646000px;}
.y114{bottom:99.307200px;}
.y91{bottom:99.508050px;}
.y262{bottom:101.228850px;}
.y23e{bottom:101.363850px;}
.y60{bottom:101.367600px;}
.y112{bottom:101.393850px;}
.y212{bottom:101.528850px;}
.y21c{bottom:101.543850px;}
.ye0{bottom:101.813850px;}
.y8d{bottom:101.937600px;}
.y289{bottom:106.796700px;}
.y2c9{bottom:109.940700px;}
.y1d4{bottom:114.390000px;}
.y90{bottom:115.252050px;}
.y261{bottom:119.228850px;}
.y23d{bottom:119.363850px;}
.y5f{bottom:119.367600px;}
.y111{bottom:119.393850px;}
.y211{bottom:119.528850px;}
.y21b{bottom:119.543850px;}
.ydf{bottom:119.813850px;}
.y8c{bottom:119.937600px;}
.y288{bottom:121.796700px;}
.y2c8{bottom:124.940700px;}
.y1d3{bottom:130.134000px;}
.y287{bottom:136.796700px;}
.y260{bottom:137.228850px;}
.y23c{bottom:137.363850px;}
.y5e{bottom:137.367600px;}
.y110{bottom:137.393850px;}
.y210{bottom:137.528850px;}
.yde{bottom:137.813850px;}
.y1b9{bottom:137.865511px;}
.y8b{bottom:137.937600px;}
.y1be{bottom:138.153265px;}
.y1ba{bottom:138.332021px;}
.y1bd{bottom:138.502057px;}
.y1bf{bottom:138.506417px;}
.y1c0{bottom:138.728771px;}
.y1bb{bottom:138.733131px;}
.y1bc{bottom:139.003445px;}
.y2c7{bottom:139.940700px;}
.y1b{bottom:146.475900px;}
.y286{bottom:151.796700px;}
.y2c6{bottom:154.940700px;}
.y1da{bottom:155.197500px;}
.y25f{bottom:155.228850px;}
.y23b{bottom:155.363850px;}
.y5d{bottom:155.367600px;}
.y10f{bottom:155.393850px;}
.y20f{bottom:155.528850px;}
.y21a{bottom:155.543850px;}
.ydd{bottom:155.813850px;}
.y8a{bottom:155.937600px;}
.y175{bottom:159.611850px;}
.y1d9{bottom:159.737550px;}
.y285{bottom:166.796700px;}
.y2c5{bottom:169.940700px;}
.y25e{bottom:173.228850px;}
.y23a{bottom:173.363850px;}
.y5c{bottom:173.367600px;}
.y10e{bottom:173.393850px;}
.y20e{bottom:173.528850px;}
.y219{bottom:173.543850px;}
.ydc{bottom:173.813850px;}
.y89{bottom:173.937600px;}
.y176{bottom:175.413164px;}
.y284{bottom:181.796700px;}
.y2c4{bottom:184.940700px;}
.y177{bottom:191.214477px;}
.y25d{bottom:191.228850px;}
.y239{bottom:191.363850px;}
.y5b{bottom:191.367600px;}
.y10d{bottom:191.393850px;}
.y20d{bottom:191.528850px;}
.ydb{bottom:191.813850px;}
.y27{bottom:192.076200px;}
.y97{bottom:192.561930px;}
.y1d7{bottom:193.298400px;}
.y283{bottom:196.796700px;}
.y2c3{bottom:199.940700px;}
.y178{bottom:207.015790px;}
.y25c{bottom:209.228850px;}
.y238{bottom:209.363850px;}
.y5a{bottom:209.367600px;}
.y10c{bottom:209.393850px;}
.y20c{bottom:209.528850px;}
.y88{bottom:209.937600px;}
.y26{bottom:210.076200px;}
.y282{bottom:211.796700px;}
.y2c2{bottom:214.940700px;}
.y179{bottom:222.817104px;}
.y281{bottom:226.796700px;}
.y25b{bottom:227.228850px;}
.y237{bottom:227.363850px;}
.y59{bottom:227.367600px;}
.y10b{bottom:227.393850px;}
.y20b{bottom:227.528850px;}
.yda{bottom:227.813850px;}
.y25{bottom:228.076200px;}
.y2c1{bottom:229.940700px;}
.y94{bottom:236.052041px;}
.y17a{bottom:238.618418px;}
.y280{bottom:241.796700px;}
.y2c0{bottom:244.940700px;}
.y25a{bottom:245.228850px;}
.y236{bottom:245.363850px;}
.y58{bottom:245.367600px;}
.y10a{bottom:245.393850px;}
.y20a{bottom:245.528850px;}
.y87{bottom:245.802600px;}
.y24{bottom:246.076200px;}
.y17b{bottom:254.419731px;}
.y27f{bottom:256.796700px;}
.y2bf{bottom:259.940700px;}
.y1d2{bottom:261.819120px;}
.y259{bottom:263.228850px;}
.y235{bottom:263.363850px;}
.y57{bottom:263.367600px;}
.y109{bottom:263.393850px;}
.y209{bottom:263.528850px;}
.yd9{bottom:263.663850px;}
.y23{bottom:264.076200px;}
.y1d1{bottom:271.260120px;}
.y17c{bottom:271.778100px;}
.y27e{bottom:271.796700px;}
.y2be{bottom:274.940700px;}
.y258{bottom:281.228850px;}
.y234{bottom:281.363850px;}
.y56{bottom:281.367600px;}
.y108{bottom:281.393850px;}
.y208{bottom:281.528850px;}
.y86{bottom:281.652600px;}
.yd8{bottom:281.663850px;}
.y22{bottom:282.076200px;}
.y27d{bottom:286.796700px;}
.y2bd{bottom:289.940700px;}
.y257{bottom:299.228850px;}
.y233{bottom:299.363850px;}
.y55{bottom:299.367600px;}
.y107{bottom:299.393850px;}
.y207{bottom:299.528850px;}
.y85{bottom:299.652600px;}
.yd7{bottom:299.663850px;}
.y21{bottom:300.076200px;}
.y27c{bottom:301.796700px;}
.y2bc{bottom:304.940700px;}
.y96{bottom:306.215370px;}
.y27b{bottom:316.796700px;}
.y256{bottom:317.228850px;}
.y232{bottom:317.363850px;}
.y54{bottom:317.367600px;}
.y106{bottom:317.393850px;}
.y206{bottom:317.528850px;}
.y84{bottom:317.652600px;}
.yd6{bottom:317.663850px;}
.y20{bottom:318.076200px;}
.y2bb{bottom:319.940700px;}
.y1b1{bottom:327.974591px;}
.y1b6{bottom:328.262344px;}
.y1b2{bottom:328.441100px;}
.y1b5{bottom:328.611136px;}
.y1b7{bottom:328.615496px;}
.y1b8{bottom:328.837851px;}
.y1b3{bottom:328.842211px;}
.y18f{bottom:329.055846px;}
.y1b4{bottom:329.112525px;}
.y194{bottom:329.343599px;}
.y190{bottom:329.522355px;}
.y193{bottom:329.692391px;}
.y195{bottom:329.696751px;}
.y196{bottom:329.919106px;}
.y191{bottom:329.923466px;}
.y192{bottom:330.193780px;}
.y27a{bottom:331.796700px;}
.y2ba{bottom:334.940700px;}
.y255{bottom:335.228850px;}
.y231{bottom:335.363850px;}
.y53{bottom:335.367600px;}
.y105{bottom:335.393850px;}
.y83{bottom:335.652600px;}
.yd5{bottom:335.663850px;}
.y1f{bottom:336.076200px;}
.y279{bottom:346.796700px;}
.y169{bottom:348.831900px;}
.y161{bottom:349.618200px;}
.y2b9{bottom:349.940700px;}
.y254{bottom:353.228850px;}
.y230{bottom:353.363850px;}
.y52{bottom:353.367600px;}
.y104{bottom:353.393850px;}
.y205{bottom:353.528850px;}
.y82{bottom:353.652600px;}
.yd4{bottom:353.663850px;}
.y1e{bottom:354.076200px;}
.y1d8{bottom:357.491550px;}
.y16a{bottom:358.312688px;}
.y278{bottom:361.796700px;}
.y2b8{bottom:364.940700px;}
.y162{bottom:365.419513px;}
.y16b{bottom:367.793476px;}
.y253{bottom:371.228850px;}
.y22f{bottom:371.363850px;}
.y51{bottom:371.367600px;}
.y103{bottom:371.393850px;}
.y81{bottom:371.652600px;}
.yd3{bottom:371.663850px;}
.y1d{bottom:372.076200px;}
.y277{bottom:376.796700px;}
.y16c{bottom:377.274264px;}
.y2b7{bottom:379.940700px;}
.y163{bottom:381.220827px;}
.y16d{bottom:386.755052px;}
.y95{bottom:386.872650px;}
.y252{bottom:389.228850px;}
.y22e{bottom:389.363850px;}
.y50{bottom:389.367600px;}
.y204{bottom:389.378850px;}
.y102{bottom:389.393850px;}
.y80{bottom:389.652600px;}
.yd2{bottom:389.663850px;}
.y28{bottom:390.076200px;}
.y276{bottom:391.796700px;}
.y2b6{bottom:394.940700px;}
.y16e{bottom:396.235840px;}
.y164{bottom:397.022140px;}
.y16f{bottom:405.716629px;}
.y275{bottom:406.796700px;}
.y251{bottom:407.228850px;}
.y22d{bottom:407.363850px;}
.y4f{bottom:407.367600px;}
.y203{bottom:407.378850px;}
.y101{bottom:407.393850px;}
.y7f{bottom:407.652600px;}
.yd1{bottom:407.663850px;}
.y1c{bottom:408.076200px;}
.y2b5{bottom:409.940700px;}
.y165{bottom:412.823454px;}
.y170{bottom:415.197417px;}
.y274{bottom:421.796700px;}
.y171{bottom:424.678205px;}
.y2b4{bottom:424.940700px;}
.y250{bottom:425.228850px;}
.y22c{bottom:425.363850px;}
.y4e{bottom:425.367600px;}
.y202{bottom:425.378850px;}
.y100{bottom:425.393850px;}
.y7e{bottom:425.652600px;}
.yd0{bottom:425.663850px;}
.y166{bottom:428.624767px;}
.y172{bottom:434.158993px;}
.y273{bottom:436.796700px;}
.y2b3{bottom:439.940700px;}
.y24f{bottom:443.228850px;}
.y22b{bottom:443.363850px;}
.y4d{bottom:443.367600px;}
.y201{bottom:443.378850px;}
.yff{bottom:443.393850px;}
.y173{bottom:443.639781px;}
.y7d{bottom:443.652600px;}
.y167{bottom:444.426081px;}
.y1ce{bottom:451.111170px;}
.y272{bottom:451.796700px;}
.y1d0{bottom:453.573697px;}
.y2b2{bottom:454.940700px;}
.y1db{bottom:457.055100px;}
.y1cd{bottom:460.552170px;}
.y174{bottom:460.996650px;}
.y24e{bottom:461.228850px;}
.y22a{bottom:461.363850px;}
.y4c{bottom:461.367600px;}
.y200{bottom:461.378850px;}
.yfe{bottom:461.393850px;}
.y7c{bottom:461.652600px;}
.ycf{bottom:461.663850px;}
.y168{bottom:461.783100px;}
.y1cf{bottom:463.014697px;}
.y271{bottom:466.796700px;}
.y1e9{bottom:469.935690px;}
.y2b1{bottom:469.940700px;}
.y1a{bottom:474.555900px;}
.y24d{bottom:479.228850px;}
.y229{bottom:479.363850px;}
.y4b{bottom:479.367600px;}
.y1ff{bottom:479.378850px;}
.yfd{bottom:479.393850px;}
.y7b{bottom:479.652600px;}
.y270{bottom:481.796700px;}
.y2b0{bottom:484.940700px;}
.y26f{bottom:496.796700px;}
.y24c{bottom:497.228850px;}
.y228{bottom:497.363850px;}
.y4a{bottom:497.367600px;}
.y1fe{bottom:497.378850px;}
.yfc{bottom:497.393850px;}
.yce{bottom:497.513850px;}
.y7a{bottom:497.652600px;}
.y2af{bottom:499.940700px;}
.y1eb{bottom:504.289102px;}
.y19{bottom:507.411900px;}
.y26e{bottom:511.796700px;}
.y2ae{bottom:514.940700px;}
.y1a9{bottom:515.097139px;}
.y24b{bottom:515.228850px;}
.y227{bottom:515.363850px;}
.y49{bottom:515.367600px;}
.y1fd{bottom:515.378850px;}
.y1ae{bottom:515.384892px;}
.yfb{bottom:515.393850px;}
.ycd{bottom:515.513850px;}
.y1aa{bottom:515.563648px;}
.y79{bottom:515.652600px;}
.y1ad{bottom:515.733684px;}
.y1af{bottom:515.738044px;}
.y1b0{bottom:515.960399px;}
.y1ab{bottom:515.964759px;}
.y1ac{bottom:516.235073px;}
.y187{bottom:517.325048px;}
.y18c{bottom:517.612801px;}
.y188{bottom:517.791557px;}
.y18b{bottom:517.961593px;}
.y18d{bottom:517.965953px;}
.y18e{bottom:518.188308px;}
.y189{bottom:518.192668px;}
.y18a{bottom:518.462982px;}
.y18{bottom:522.411900px;}
.y26d{bottom:526.796700px;}
.y2ad{bottom:529.940700px;}
.y24a{bottom:533.228850px;}
.y226{bottom:533.363850px;}
.y48{bottom:533.367600px;}
.y1fc{bottom:533.378850px;}
.yfa{bottom:533.393850px;}
.ycc{bottom:533.513850px;}
.y78{bottom:533.652600px;}
.y155{bottom:536.407950px;}
.y149{bottom:537.193200px;}
.y17{bottom:537.411900px;}
.y26c{bottom:541.796700px;}
.y2ac{bottom:544.940700px;}
.y156{bottom:545.888738px;}
.y14a{bottom:546.673988px;}
.y249{bottom:551.228850px;}
.y225{bottom:551.363850px;}
.y47{bottom:551.367600px;}
.y1fb{bottom:551.378850px;}
.yf9{bottom:551.393850px;}
.ycb{bottom:551.513850px;}
.y77{bottom:551.652600px;}
.y16{bottom:552.411900px;}
.y99{bottom:553.823850px;}
.y9e{bottom:555.199050px;}
.y157{bottom:555.369526px;}
.y14b{bottom:556.154776px;}
.y26b{bottom:556.796700px;}
.y2ab{bottom:559.940700px;}
.y158{bottom:564.850314px;}
.y14c{bottom:565.635564px;}
.y15{bottom:567.411900px;}
.y248{bottom:569.228850px;}
.y224{bottom:569.363850px;}
.y46{bottom:569.367600px;}
.y1fa{bottom:569.378850px;}
.yf8{bottom:569.393850px;}
.yca{bottom:569.513850px;}
.y26a{bottom:571.796700px;}
.y159{bottom:574.331102px;}
.y2aa{bottom:574.940700px;}
.y14d{bottom:575.116352px;}
.y93{bottom:579.350100px;}
.y98{bottom:580.231350px;}
.y14{bottom:582.411900px;}
.y15a{bottom:583.811891px;}
.y14e{bottom:584.597141px;}
.y269{bottom:586.796700px;}
.y247{bottom:587.228850px;}
.y223{bottom:587.363850px;}
.y45{bottom:587.367600px;}
.y1f9{bottom:587.378850px;}
.yf7{bottom:587.393850px;}
.yc9{bottom:587.513850px;}
.y76{bottom:587.652600px;}
.y2a9{bottom:589.940700px;}
.y9b{bottom:592.447688px;}
.y15b{bottom:593.292679px;}
.y14f{bottom:594.077929px;}
.y13{bottom:597.411900px;}
.y268{bottom:601.796700px;}
.y15c{bottom:602.773467px;}
.y9a{bottom:603.446408px;}
.y150{bottom:603.558717px;}
.y2a8{bottom:604.940700px;}
.y246{bottom:605.228850px;}
.y222{bottom:605.363850px;}
.y44{bottom:605.367600px;}
.y1f8{bottom:605.378850px;}
.yf6{bottom:605.393850px;}
.yc8{bottom:605.513850px;}
.y15d{bottom:612.254255px;}
.y12{bottom:612.411900px;}
.y151{bottom:613.039505px;}
.y267{bottom:616.796700px;}
.y9d{bottom:617.222305px;}
.y2a7{bottom:619.940700px;}
.y15e{bottom:621.735043px;}
.y152{bottom:622.520293px;}
.y245{bottom:623.228850px;}
.y221{bottom:623.363850px;}
.y43{bottom:623.367600px;}
.y1f7{bottom:623.378850px;}
.yf5{bottom:623.393850px;}
.y75{bottom:623.502600px;}
.yc7{bottom:623.513850px;}
.y11{bottom:627.411900px;}
.y1e2{bottom:630.711525px;}
.y15f{bottom:631.215831px;}
.y266{bottom:631.796700px;}
.y153{bottom:632.001081px;}
.y2a6{bottom:634.940700px;}
.y1cc{bottom:638.546490px;}
.y1ca{bottom:639.160155px;}
.y244{bottom:641.228850px;}
.y220{bottom:641.363850px;}
.y42{bottom:641.367600px;}
.y1f6{bottom:641.378850px;}
.yf4{bottom:641.393850px;}
.y74{bottom:641.502600px;}
.yc6{bottom:641.513850px;}
.y9c{bottom:641.676126px;}
.y10{bottom:642.411900px;}
.y9f{bottom:643.654950px;}
.y1dd{bottom:644.657985px;}
.y265{bottom:646.796700px;}
.y1cb{bottom:647.987490px;}
.y160{bottom:648.572850px;}
.y1c9{bottom:648.601155px;}
.y154{bottom:649.359300px;}
.y2a5{bottom:649.940700px;}
.yf{bottom:657.411900px;}
.y243{bottom:659.228850px;}
.y21f{bottom:659.363850px;}
.y41{bottom:659.367600px;}
.y1f5{bottom:659.378850px;}
.yf3{bottom:659.393850px;}
.y73{bottom:659.502600px;}
.yc5{bottom:659.513850px;}
.y264{bottom:661.796700px;}
.y2a4{bottom:664.940700px;}
.ye{bottom:672.411900px;}
.y242{bottom:677.228850px;}
.y21e{bottom:677.363850px;}
.y40{bottom:677.367600px;}
.y1f4{bottom:677.378850px;}
.yf2{bottom:677.393850px;}
.y72{bottom:677.502600px;}
.yc4{bottom:677.513850px;}
.y2a3{bottom:679.940700px;}
.yd{bottom:687.411900px;}
.y2a2{bottom:694.940700px;}
.y241{bottom:695.228850px;}
.y263{bottom:695.232600px;}
.yb3{bottom:695.363850px;}
.y3f{bottom:695.367600px;}
.y1f3{bottom:695.378850px;}
.yf1{bottom:695.393850px;}
.y71{bottom:695.502600px;}
.yc3{bottom:695.513850px;}
.y1a1{bottom:704.931545px;}
.y1a6{bottom:705.219298px;}
.y1a2{bottom:705.398054px;}
.y1a5{bottom:705.568090px;}
.y1a7{bottom:705.572450px;}
.y1a8{bottom:705.794805px;}
.y1a3{bottom:705.799165px;}
.y17d{bottom:706.012800px;}
.y1a4{bottom:706.069479px;}
.y182{bottom:706.296194px;}
.y17e{bottom:706.479309px;}
.y181{bottom:706.644986px;}
.y185{bottom:706.649345px;}
.y186{bottom:706.871700px;}
.y184{bottom:706.876060px;}
.y17f{bottom:706.880420px;}
.y183{bottom:707.146374px;}
.y180{bottom:707.150734px;}
.y1ee{bottom:707.528925px;}
.y2a1{bottom:709.940700px;}
.yb2{bottom:713.363850px;}
.y3e{bottom:713.367600px;}
.y1f2{bottom:713.378850px;}
.yf0{bottom:713.393850px;}
.y70{bottom:713.502600px;}
.yc2{bottom:713.513850px;}
.y2a0{bottom:724.940700px;}
.y13d{bottom:726.141600px;}
.y131{bottom:726.928500px;}
.y1e3{bottom:728.448615px;}
.y1e1{bottom:729.949538px;}
.y240{bottom:731.228850px;}
.yb1{bottom:731.363850px;}
.y3d{bottom:731.367600px;}
.yef{bottom:731.393850px;}
.y6f{bottom:731.502600px;}
.yc1{bottom:731.513850px;}
.y1ec{bottom:734.237887px;}
.y13e{bottom:735.622388px;}
.y1df{bottom:735.953228px;}
.yc{bottom:736.269000px;}
.y132{bottom:736.409288px;}
.y29f{bottom:739.940700px;}
.y1ed{bottom:744.446025px;}
.y13f{bottom:745.103176px;}
.y133{bottom:745.890076px;}
.yb0{bottom:749.363850px;}
.y3c{bottom:749.367600px;}
.y1f1{bottom:749.378850px;}
.yee{bottom:749.393850px;}
.y6e{bottom:749.502600px;}
.yc0{bottom:749.513850px;}
.y1dc{bottom:751.624350px;}
.y1ea{bottom:751.904025px;}
.y140{bottom:754.583964px;}
.y29e{bottom:754.940700px;}
.y134{bottom:755.370864px;}
.y1e8{bottom:755.502510px;}
.y1e6{bottom:763.846148px;}
.y141{bottom:764.064752px;}
.y135{bottom:764.851652px;}
.yaf{bottom:767.363850px;}
.y3b{bottom:767.367600px;}
.yed{bottom:767.393850px;}
.y6d{bottom:767.502600px;}
.ybf{bottom:767.513850px;}
.y29d{bottom:769.940700px;}
.y1de{bottom:772.021980px;}
.y142{bottom:773.545541px;}
.y136{bottom:774.332441px;}
.yb{bottom:774.773850px;}
.y1e4{bottom:779.750333px;}
.y143{bottom:783.026329px;}
.y137{bottom:783.813229px;}
.y29c{bottom:784.940700px;}
.y1e7{bottom:785.278575px;}
.yae{bottom:785.363850px;}
.y3a{bottom:785.367600px;}
.yec{bottom:785.393850px;}
.y6c{bottom:785.502600px;}
.ybe{bottom:785.513850px;}
.ya{bottom:787.155900px;}
.y144{bottom:792.507117px;}
.y138{bottom:793.294017px;}
.y1e0{bottom:797.202053px;}
.y1e5{bottom:797.733435px;}
.y29b{bottom:799.940700px;}
.y145{bottom:801.987905px;}
.y139{bottom:802.774805px;}
.yad{bottom:803.363850px;}
.y39{bottom:803.367600px;}
.yeb{bottom:803.393850px;}
.y6b{bottom:803.502600px;}
.ybd{bottom:803.513850px;}
.y9{bottom:807.773850px;}
.y146{bottom:811.468693px;}
.y13a{bottom:812.255593px;}
.y29a{bottom:814.940700px;}
.y8{bottom:820.155900px;}
.y147{bottom:820.949481px;}
.yac{bottom:821.363850px;}
.y38{bottom:821.367600px;}
.yea{bottom:821.393850px;}
.y6a{bottom:821.502600px;}
.ybc{bottom:821.513850px;}
.y13b{bottom:821.736381px;}
.y1c4{bottom:828.444337px;}
.y1c8{bottom:829.679535px;}
.y299{bottom:829.940700px;}
.y1c3{bottom:837.885337px;}
.y148{bottom:838.307700px;}
.y13c{bottom:839.094600px;}
.y1c7{bottom:839.120535px;}
.yab{bottom:839.363850px;}
.y37{bottom:839.367600px;}
.ye9{bottom:839.393850px;}
.y69{bottom:839.502600px;}
.ybb{bottom:839.513850px;}
.y7{bottom:840.773850px;}
.y298{bottom:844.940700px;}
.y6{bottom:853.155900px;}
.yaa{bottom:857.363850px;}
.y36{bottom:857.367600px;}
.ye8{bottom:857.393850px;}
.y68{bottom:857.502600px;}
.yba{bottom:857.513850px;}
.y297{bottom:859.940700px;}
.y5{bottom:869.655900px;}
.y296{bottom:874.940700px;}
.ya9{bottom:875.363850px;}
.y35{bottom:875.367600px;}
.ye7{bottom:875.393850px;}
.y67{bottom:875.502600px;}
.yb9{bottom:875.513850px;}
.y295{bottom:889.940700px;}
.y4{bottom:890.273850px;}
.ya8{bottom:893.363850px;}
.y34{bottom:893.367600px;}
.ye6{bottom:893.393850px;}
.y11f{bottom:893.451600px;}
.y66{bottom:893.502600px;}
.yb8{bottom:893.513850px;}
.y124{bottom:893.734994px;}
.y120{bottom:893.918109px;}
.y123{bottom:894.083786px;}
.y127{bottom:894.088145px;}
.y128{bottom:894.310500px;}
.y126{bottom:894.314860px;}
.y121{bottom:894.319220px;}
.y125{bottom:894.585174px;}
.y122{bottom:894.589534px;}
.y197{bottom:895.890805px;}
.y19c{bottom:896.174198px;}
.y198{bottom:896.357314px;}
.y19b{bottom:896.522990px;}
.y19f{bottom:896.527350px;}
.y1a0{bottom:896.749705px;}
.y19e{bottom:896.754065px;}
.y199{bottom:896.758425px;}
.y19d{bottom:897.024379px;}
.y19a{bottom:897.028739px;}
.y294{bottom:904.940700px;}
.y3{bottom:905.541300px;}
.ya7{bottom:911.363850px;}
.y33{bottom:911.367600px;}
.y218{bottom:911.393850px;}
.y65{bottom:911.502600px;}
.yb7{bottom:911.513850px;}
.y12a{bottom:915.666150px;}
.y116{bottom:916.059300px;}
.y293{bottom:919.940700px;}
.y117{bottom:927.906354px;}
.ya6{bottom:929.363850px;}
.y32{bottom:929.367600px;}
.ye5{bottom:929.393850px;}
.y64{bottom:929.502600px;}
.yb6{bottom:929.513850px;}
.y2{bottom:932.930700px;}
.y12b{bottom:934.627726px;}
.y292{bottom:934.940700px;}
.y118{bottom:939.753409px;}
.ya5{bottom:947.363850px;}
.y31{bottom:947.367600px;}
.y217{bottom:947.393850px;}
.y63{bottom:947.502600px;}
.yb5{bottom:947.513850px;}
.y291{bottom:949.940700px;}
.y119{bottom:951.600463px;}
.y12c{bottom:953.589302px;}
.y1{bottom:959.936700px;}
.y11a{bottom:963.447518px;}
.y290{bottom:964.940700px;}
.ye4{bottom:965.258850px;}
.ya4{bottom:965.363850px;}
.y30{bottom:965.367600px;}
.y216{bottom:965.393850px;}
.y62{bottom:965.502600px;}
.y1f0{bottom:965.513850px;}
.y12d{bottom:972.550879px;}
.y11b{bottom:975.294572px;}
.y28f{bottom:979.940700px;}
.ya3{bottom:983.363850px;}
.y2f{bottom:983.367600px;}
.y215{bottom:983.393850px;}
.yb4{bottom:983.513850px;}
.y11c{bottom:987.141627px;}
.y12e{bottom:991.512455px;}
.y28e{bottom:994.940700px;}
.y11d{bottom:998.988681px;}
.ya2{bottom:1001.363850px;}
.y2e{bottom:1001.367600px;}
.y214{bottom:1001.393850px;}
.y61{bottom:1001.502600px;}
.y1ef{bottom:1001.513850px;}
.y28d{bottom:1009.940700px;}
.y12f{bottom:1010.474031px;}
.y11e{bottom:1010.835736px;}
.y1c6{bottom:1018.350052px;}
.ya1{bottom:1019.363850px;}
.y2d{bottom:1019.367600px;}
.ye3{bottom:1019.393850px;}
.y1c2{bottom:1019.585250px;}
.y28c{bottom:1024.940700px;}
.y1c5{bottom:1027.791052px;}
.y130{bottom:1027.832400px;}
.y129{bottom:1028.224800px;}
.y1c1{bottom:1029.026250px;}
.ya0{bottom:1037.363850px;}
.y2c{bottom:1037.367600px;}
.ye2{bottom:1037.393850px;}
.y28b{bottom:1039.940700px;}
.y2a{bottom:1070.769450px;}
.y8f{bottom:1086.066450px;}
.y29{bottom:1086.069450px;}
.h14{height:17.967613px;}
.h4{height:20.995312px;}
.h12{height:21.146786px;}
.h13{height:22.908465px;}
.h17{height:22.926387px;}
.h11{height:26.396928px;}
.h10{height:26.433590px;}
.h1c{height:27.166348px;}
.h1b{height:33.429902px;}
.h6{height:34.968750px;}
.h5{height:34.992188px;}
.h1a{height:40.749521px;}
.h16{height:41.235150px;}
.h15{height:41.262788px;}
.h1d{height:42.949219px;}
.h7{height:43.031250px;}
.h8{height:43.681641px;}
.ha{height:43.710938px;}
.hc{height:43.740234px;}
.hb{height:45.720703px;}
.h18{height:50.144854px;}
.h3{height:51.504619px;}
.hf{height:52.867181px;}
.h9{height:53.789062px;}
.hd{height:57.266754px;}
.he{height:58.073328px;}
.h2{height:61.154297px;}
.h19{height:895.039500px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:655.824000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x68{left:12.000150px;}
.x9{left:76.535400px;}
.x7{left:96.094500px;}
.x1{left:97.795350px;}
.x17{left:101.622000px;}
.x16{left:103.399795px;}
.x67{left:107.914500px;}
.xa{left:110.540400px;}
.x2{left:125.439600px;}
.x75{left:127.555350px;}
.x5{left:131.816400px;}
.x10{left:148.675624px;}
.x65{left:153.475500px;}
.x3{left:161.571600px;}
.x63{left:166.984350px;}
.x1d{left:169.867746px;}
.x2d{left:170.896146px;}
.x32{left:172.190400px;}
.x1c{left:173.853450px;}
.x2c{left:174.881850px;}
.x1e{left:178.914150px;}
.x39{left:181.315350px;}
.x13{left:188.636700px;}
.x1f{left:205.339504px;}
.x3a{left:207.740704px;}
.x4{left:212.876400px;}
.x15{left:214.606020px;}
.x14{left:217.355700px;}
.x74{left:220.135350px;}
.x2e{left:230.140050px;}
.x20{left:231.734338px;}
.x3b{left:234.135538px;}
.x28{left:254.856000px;}
.x21{left:258.059415px;}
.x3c{left:260.460615px;}
.x33{left:269.398500px;}
.x30{left:277.200750px;}
.x22{left:284.000820px;}
.x3d{left:286.402020px;}
.x23{left:310.020703px;}
.x37{left:312.728946px;}
.x36{left:316.714650px;}
.x5e{left:322.192439px;}
.x24{left:336.637892px;}
.x3e{left:339.039092px;}
.x12{left:348.514866px;}
.x25{left:362.692655px;}
.x3f{left:365.093855px;}
.x5f{left:375.012627px;}
.xf{left:378.670200px;}
.x6a{left:384.454665px;}
.x26{left:388.773577px;}
.x40{left:391.174777px;}
.x60{left:401.337703px;}
.x6f{left:407.938042px;}
.x11{left:411.757506px;}
.x27{left:415.076853px;}
.x41{left:417.478053px;}
.x38{left:422.609550px;}
.x61{left:427.274749px;}
.x6b{left:439.606575px;}
.x66{left:444.058500px;}
.x62{left:453.294632px;}
.x8{left:455.041500px;}
.xc{left:457.055400px;}
.x64{left:464.548935px;}
.x2a{left:467.468796px;}
.x29{left:471.454500px;}
.x34{left:475.501950px;}
.x4b{left:477.213043px;}
.x18{left:478.345350px;}
.x6{left:480.476400px;}
.xd{left:491.075400px;}
.x4c{left:503.638397px;}
.x42{left:504.811210px;}
.x55{left:506.542090px;}
.x76{left:508.027350px;}
.x69{left:509.245650px;}
.x19{left:512.365350px;}
.x6e{left:517.430805px;}
.xb{left:525.245400px;}
.x4d{left:530.033232px;}
.x43{left:531.206045px;}
.x56{left:532.936925px;}
.x71{left:535.637647px;}
.x35{left:551.639400px;}
.x4e{left:556.358308px;}
.x44{left:557.531121px;}
.x57{left:559.262001px;}
.x2f{left:563.425350px;}
.x73{left:568.732522px;}
.x2b{left:571.100100px;}
.x31{left:574.522500px;}
.x4f{left:582.295353px;}
.x45{left:583.472526px;}
.x58{left:585.199046px;}
.x70{left:588.580125px;}
.x1b{left:591.620400px;}
.x6d{left:601.156177px;}
.x50{left:608.315236px;}
.x46{left:609.492409px;}
.x59{left:611.218930px;}
.x6c{left:625.012455px;}
.x51{left:634.932426px;}
.x47{left:636.109599px;}
.x5a{left:637.836119px;}
.x52{left:660.987188px;}
.x48{left:662.164361px;}
.x5b{left:663.890881px;}
.x53{left:687.068110px;}
.x49{left:688.245283px;}
.x5c{left:689.971803px;}
.x54{left:713.371387px;}
.x4a{left:714.548560px;}
.x5d{left:716.275080px;}
.xe{left:724.221150px;}
.x72{left:735.912915px;}
.x1a{left:745.480950px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.138133pt;}
.ls65{letter-spacing:-4.906667pt;}
.ls22{letter-spacing:-4.693333pt;}
.ls67{letter-spacing:-3.946667pt;}
.ls4d{letter-spacing:-3.925333pt;}
.ls6c{letter-spacing:-2.080000pt;}
.ls47{letter-spacing:-2.026667pt;}
.ls55{letter-spacing:-1.973333pt;}
.ls66{letter-spacing:-1.653333pt;}
.ls20{letter-spacing:-0.426667pt;}
.ls89{letter-spacing:-0.341333pt;}
.ls4f{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.293333pt;}
.ls21{letter-spacing:-0.266667pt;}
.ls8b{letter-spacing:-0.256000pt;}
.ls57{letter-spacing:-0.213333pt;}
.ls1e{letter-spacing:-0.176000pt;}
.ls88{letter-spacing:-0.170667pt;}
.ls56{letter-spacing:-0.160000pt;}
.ls4e{letter-spacing:-0.106667pt;}
.ls8c{letter-spacing:-0.085333pt;}
.ls1b{letter-spacing:-0.074667pt;}
.ls46{letter-spacing:-0.053333pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004267pt;}
.ls6{letter-spacing:0.042667pt;}
.ls11{letter-spacing:0.053333pt;}
.ls7c{letter-spacing:0.085333pt;}
.ls3b{letter-spacing:0.106667pt;}
.ls73{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.170667pt;}
.ls1a{letter-spacing:0.213333pt;}
.ls7e{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.266667pt;}
.ls1f{letter-spacing:0.298667pt;}
.ls23{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.341333pt;}
.lsf{letter-spacing:0.373333pt;}
.ls7a{letter-spacing:0.384000pt;}
.ls5d{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.469333pt;}
.ls28{letter-spacing:0.480000pt;}
.ls81{letter-spacing:0.512000pt;}
.ls2c{letter-spacing:0.533333pt;}
.ls48{letter-spacing:0.554667pt;}
.ls27{letter-spacing:0.586667pt;}
.ls3{letter-spacing:0.597333pt;}
.ls30{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.693333pt;}
.ls42{letter-spacing:0.746667pt;}
.ls86{letter-spacing:0.768000pt;}
.ls36{letter-spacing:0.800000pt;}
.ls8a{letter-spacing:0.810667pt;}
.ls2e{letter-spacing:0.853333pt;}
.ls6f{letter-spacing:0.896000pt;}
.ls29{letter-spacing:0.906667pt;}
.ls2b{letter-spacing:0.960000pt;}
.ls87{letter-spacing:0.981333pt;}
.ls32{letter-spacing:1.013333pt;}
.ls1{letter-spacing:1.066667pt;}
.ls54{letter-spacing:1.120000pt;}
.ls77{letter-spacing:1.152000pt;}
.ls44{letter-spacing:1.173333pt;}
.ls6e{letter-spacing:1.194667pt;}
.lsd{letter-spacing:1.226667pt;}
.ls16{letter-spacing:1.280000pt;}
.ls72{letter-spacing:1.322667pt;}
.ls18{letter-spacing:1.333333pt;}
.lsa{letter-spacing:1.386667pt;}
.ls41{letter-spacing:1.440000pt;}
.ls70{letter-spacing:1.450667pt;}
.ls2d{letter-spacing:1.493333pt;}
.ls19{letter-spacing:1.546667pt;}
.ls33{letter-spacing:1.600000pt;}
.ls78{letter-spacing:1.621333pt;}
.ls5c{letter-spacing:1.653333pt;}
.ls76{letter-spacing:1.664000pt;}
.ls62{letter-spacing:1.706667pt;}
.ls4b{letter-spacing:1.760000pt;}
.ls74{letter-spacing:1.792000pt;}
.ls3f{letter-spacing:1.813333pt;}
.ls2a{letter-spacing:1.866667pt;}
.ls14{letter-spacing:1.920000pt;}
.ls7d{letter-spacing:1.962667pt;}
.ls43{letter-spacing:1.973333pt;}
.ls7b{letter-spacing:2.005333pt;}
.ls3e{letter-spacing:2.026667pt;}
.ls38{letter-spacing:2.080000pt;}
.ls85{letter-spacing:2.090667pt;}
.ls26{letter-spacing:2.133333pt;}
.ls82{letter-spacing:2.176000pt;}
.ls9{letter-spacing:2.186667pt;}
.ls53{letter-spacing:2.240000pt;}
.ls5f{letter-spacing:2.293333pt;}
.ls7f{letter-spacing:2.304000pt;}
.lsb{letter-spacing:2.346667pt;}
.ls79{letter-spacing:2.389333pt;}
.ls37{letter-spacing:2.400000pt;}
.lsc{letter-spacing:2.453333pt;}
.ls75{letter-spacing:2.474667pt;}
.ls40{letter-spacing:2.506667pt;}
.ls8{letter-spacing:2.560000pt;}
.ls3d{letter-spacing:2.613333pt;}
.ls5a{letter-spacing:2.666667pt;}
.ls13{letter-spacing:2.720000pt;}
.ls35{letter-spacing:2.773333pt;}
.ls51{letter-spacing:2.826667pt;}
.ls34{letter-spacing:2.880000pt;}
.ls8d{letter-spacing:2.901333pt;}
.ls4a{letter-spacing:2.933333pt;}
.ls4c{letter-spacing:2.986667pt;}
.ls2f{letter-spacing:3.040000pt;}
.ls31{letter-spacing:3.093333pt;}
.ls80{letter-spacing:3.114667pt;}
.ls15{letter-spacing:3.146667pt;}
.ls25{letter-spacing:3.200000pt;}
.ls58{letter-spacing:3.253333pt;}
.ls68{letter-spacing:3.306667pt;}
.ls45{letter-spacing:3.360000pt;}
.ls3a{letter-spacing:3.413333pt;}
.ls49{letter-spacing:3.520000pt;}
.ls6a{letter-spacing:3.733333pt;}
.ls3c{letter-spacing:3.893333pt;}
.ls5e{letter-spacing:3.946667pt;}
.ls52{letter-spacing:4.000000pt;}
.ls6d{letter-spacing:4.053333pt;}
.ls71{letter-spacing:4.096000pt;}
.ls83{letter-spacing:4.181333pt;}
.ls5b{letter-spacing:4.213333pt;}
.ls50{letter-spacing:4.320000pt;}
.ls84{letter-spacing:4.522667pt;}
.ls39{letter-spacing:4.640000pt;}
.ls12{letter-spacing:4.746667pt;}
.ls6b{letter-spacing:4.906667pt;}
.ls2{letter-spacing:4.992000pt;}
.ls61{letter-spacing:5.013333pt;}
.ls63{letter-spacing:5.066667pt;}
.ls59{letter-spacing:5.120000pt;}
.ls60{letter-spacing:5.226667pt;}
.ls69{letter-spacing:5.280000pt;}
.ls64{letter-spacing:5.493333pt;}
.ls10{letter-spacing:5.760000pt;}
.ws6f{word-spacing:-18.080000pt;}
.ws71{word-spacing:-17.760000pt;}
.ws70{word-spacing:-17.600000pt;}
.ws49{word-spacing:-16.853333pt;}
.ws55{word-spacing:-16.640000pt;}
.ws73{word-spacing:-16.160000pt;}
.ws1e{word-spacing:-16.053333pt;}
.ws8f{word-spacing:-15.957333pt;}
.ws72{word-spacing:-15.946667pt;}
.ws54{word-spacing:-15.733333pt;}
.ws8e{word-spacing:-15.626667pt;}
.ws56{word-spacing:-15.306667pt;}
.ws1c{word-spacing:-15.146667pt;}
.ws1d{word-spacing:-14.826667pt;}
.ws1f{word-spacing:-14.773333pt;}
.ws90{word-spacing:-12.117333pt;}
.ws46{word-spacing:-11.861333pt;}
.ws0{word-spacing:-9.785600pt;}
.ws1{word-spacing:-9.609600pt;}
.ws47{word-spacing:-5.527038pt;}
.ws81{word-spacing:-5.066667pt;}
.ws7f{word-spacing:-5.013333pt;}
.ws8c{word-spacing:-4.906667pt;}
.ws16{word-spacing:-4.746667pt;}
.ws37{word-spacing:-4.640000pt;}
.wsae{word-spacing:-4.522667pt;}
.ws58{word-spacing:-4.320000pt;}
.ws78{word-spacing:-4.213333pt;}
.wsab{word-spacing:-4.181333pt;}
.ws91{word-spacing:-4.053333pt;}
.ws7c{word-spacing:-3.946667pt;}
.ws3a{word-spacing:-3.893333pt;}
.ws88{word-spacing:-3.733333pt;}
.ws4c{word-spacing:-3.520000pt;}
.ws45{word-spacing:-3.360000pt;}
.ws86{word-spacing:-3.306667pt;}
.ws22{word-spacing:-3.200000pt;}
.ws33{word-spacing:-3.146667pt;}
.wsa8{word-spacing:-3.114667pt;}
.ws2e{word-spacing:-3.093333pt;}
.ws2c{word-spacing:-3.040000pt;}
.ws53{word-spacing:-2.986667pt;}
.ws51{word-spacing:-2.933333pt;}
.wsac{word-spacing:-2.901333pt;}
.ws84{word-spacing:-2.880000pt;}
.ws5a{word-spacing:-2.826667pt;}
.wsad{word-spacing:-2.773333pt;}
.ws17{word-spacing:-2.720000pt;}
.ws77{word-spacing:-2.666667pt;}
.ws3b{word-spacing:-2.613333pt;}
.ws10{word-spacing:-2.560000pt;}
.ws3e{word-spacing:-2.506667pt;}
.ws99{word-spacing:-2.474667pt;}
.ws13{word-spacing:-2.453333pt;}
.ws35{word-spacing:-2.400000pt;}
.ws12{word-spacing:-2.346667pt;}
.wsa7{word-spacing:-2.304000pt;}
.ws7d{word-spacing:-2.293333pt;}
.ws61{word-spacing:-2.240000pt;}
.ws52{word-spacing:-2.186667pt;}
.wsaa{word-spacing:-2.176000pt;}
.ws23{word-spacing:-2.133333pt;}
.wsaf{word-spacing:-2.090667pt;}
.ws62{word-spacing:-2.080000pt;}
.ws3c{word-spacing:-2.026667pt;}
.wsa3{word-spacing:-2.005333pt;}
.ws36{word-spacing:-1.973333pt;}
.wsa5{word-spacing:-1.962667pt;}
.ws18{word-spacing:-1.920000pt;}
.ws28{word-spacing:-1.866667pt;}
.ws3d{word-spacing:-1.813333pt;}
.ws80{word-spacing:-1.706667pt;}
.ws9a{word-spacing:-1.664000pt;}
.ws7a{word-spacing:-1.653333pt;}
.ws9c{word-spacing:-1.621333pt;}
.ws30{word-spacing:-1.600000pt;}
.ws5f{word-spacing:-1.546667pt;}
.ws2a{word-spacing:-1.493333pt;}
.ws96{word-spacing:-1.450667pt;}
.ws40{word-spacing:-1.440000pt;}
.ws67{word-spacing:-1.386667pt;}
.ws3f{word-spacing:-1.333333pt;}
.ws43{word-spacing:-1.280000pt;}
.ws21{word-spacing:-1.226667pt;}
.ws93{word-spacing:-1.194667pt;}
.ws42{word-spacing:-1.173333pt;}
.ws9b{word-spacing:-1.152000pt;}
.ws63{word-spacing:-1.120000pt;}
.ws6{word-spacing:-1.066667pt;}
.ws4{word-spacing:-1.056000pt;}
.ws2f{word-spacing:-1.013333pt;}
.ws92{word-spacing:-0.981333pt;}
.ws29{word-spacing:-0.960000pt;}
.ws25{word-spacing:-0.906667pt;}
.ws95{word-spacing:-0.896000pt;}
.ws2b{word-spacing:-0.853333pt;}
.ws9e{word-spacing:-0.810667pt;}
.ws34{word-spacing:-0.800000pt;}
.wsb0{word-spacing:-0.768000pt;}
.ws41{word-spacing:-0.746667pt;}
.ws75{word-spacing:-0.693333pt;}
.ws2d{word-spacing:-0.640000pt;}
.ws7{word-spacing:-0.597333pt;}
.ws24{word-spacing:-0.586667pt;}
.ws4a{word-spacing:-0.554667pt;}
.ws39{word-spacing:-0.533333pt;}
.wsa9{word-spacing:-0.512000pt;}
.ws60{word-spacing:-0.480000pt;}
.wsa{word-spacing:-0.469333pt;}
.ws7b{word-spacing:-0.426667pt;}
.ws9f{word-spacing:-0.384000pt;}
.ws57{word-spacing:-0.373333pt;}
.ws27{word-spacing:-0.320000pt;}
.wsc{word-spacing:-0.298667pt;}
.ws19{word-spacing:-0.266667pt;}
.wsa6{word-spacing:-0.256000pt;}
.ws1a{word-spacing:-0.213333pt;}
.ws9{word-spacing:-0.170667pt;}
.ws44{word-spacing:-0.160000pt;}
.ws38{word-spacing:-0.106667pt;}
.wsa4{word-spacing:-0.085333pt;}
.ws26{word-spacing:-0.053333pt;}
.wsd{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws31{word-spacing:0.053333pt;}
.ws3{word-spacing:0.074667pt;}
.wsa1{word-spacing:0.085333pt;}
.ws4f{word-spacing:0.106667pt;}
.ws65{word-spacing:0.160000pt;}
.ws94{word-spacing:0.170667pt;}
.ws66{word-spacing:0.213333pt;}
.ws6e{word-spacing:0.256000pt;}
.ws15{word-spacing:0.266667pt;}
.ws50{word-spacing:0.320000pt;}
.ws9d{word-spacing:0.341333pt;}
.wsf{word-spacing:0.426667pt;}
.ws4d{word-spacing:0.586667pt;}
.wsb1{word-spacing:0.682667pt;}
.ws76{word-spacing:0.746667pt;}
.ws6a{word-spacing:0.896000pt;}
.ws69{word-spacing:0.906667pt;}
.ws6d{word-spacing:1.365333pt;}
.ws5e{word-spacing:1.546667pt;}
.ws7e{word-spacing:1.653333pt;}
.ws5d{word-spacing:1.866667pt;}
.wsb{word-spacing:1.920000pt;}
.ws64{word-spacing:1.973333pt;}
.wsa2{word-spacing:2.005333pt;}
.ws32{word-spacing:2.026667pt;}
.ws8b{word-spacing:2.080000pt;}
.ws4e{word-spacing:2.293333pt;}
.ws4b{word-spacing:2.304000pt;}
.wsb2{word-spacing:2.400000pt;}
.wse{word-spacing:2.645333pt;}
.ws68{word-spacing:2.720000pt;}
.ws5c{word-spacing:2.986667pt;}
.ws59{word-spacing:3.146667pt;}
.ws97{word-spacing:3.200000pt;}
.ws89{word-spacing:3.306667pt;}
.ws8{word-spacing:3.413333pt;}
.ws79{word-spacing:3.573333pt;}
.wsa0{word-spacing:3.584000pt;}
.ws20{word-spacing:3.786667pt;}
.ws74{word-spacing:3.840000pt;}
.ws98{word-spacing:3.882667pt;}
.ws5{word-spacing:3.925333pt;}
.ws83{word-spacing:3.946667pt;}
.ws82{word-spacing:4.000000pt;}
.ws87{word-spacing:4.213333pt;}
.ws85{word-spacing:4.640000pt;}
.ws1b{word-spacing:4.693333pt;}
.ws8d{word-spacing:4.746667pt;}
.ws14{word-spacing:4.853333pt;}
.ws11{word-spacing:4.906667pt;}
.ws5b{word-spacing:6.186667pt;}
.ws8a{word-spacing:7.040000pt;}
.ws6c{word-spacing:528.573320pt;}
.ws6b{word-spacing:543.091560pt;}
.ws48{word-spacing:594.944000pt;}
._d{margin-left:-2576.112000pt;}
._e{margin-left:-2554.941333pt;}
._2{margin-left:-6.727467pt;}
._1{margin-left:-5.397333pt;}
._5{margin-left:-3.968000pt;}
._0{margin-left:-2.837333pt;}
._4{margin-left:-1.493333pt;}
._3{width:1.056000pt;}
._8{width:2.677333pt;}
._6{width:4.053333pt;}
._7{width:5.077333pt;}
._a{width:6.400000pt;}
._9{width:7.360000pt;}
._c{width:8.480000pt;}
._b{width:9.546667pt;}
._11{width:10.688000pt;}
._10{width:572.128040pt;}
._f{width:586.646280pt;}
.fsc{font-size:21.922950pt;}
.fs3{font-size:25.600000pt;}
.fsa{font-size:26.070933pt;}
.fsb{font-size:27.951467pt;}
.fse{font-size:27.973333pt;}
.fs9{font-size:32.588800pt;}
.fs10{font-size:33.146667pt;}
.fs2{font-size:35.200000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fsf{font-size:49.720000pt;}
.fsd{font-size:50.312533pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs8{font-size:65.177600pt;}
.fs7{font-size:71.695467pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1d6{bottom:73.690667pt;}
.y23f{bottom:74.101200pt;}
.y113{bottom:74.127867pt;}
.y2b{bottom:74.216800pt;}
.y213{bottom:74.247867pt;}
.y21d{bottom:74.261200pt;}
.y115{bottom:74.278400pt;}
.y92{bottom:74.456933pt;}
.ye1{bottom:74.501200pt;}
.y8e{bottom:74.611200pt;}
.y28a{bottom:81.597067pt;}
.y1d5{bottom:87.685333pt;}
.y114{bottom:88.273067pt;}
.y91{bottom:88.451600pt;}
.y262{bottom:89.981200pt;}
.y23e{bottom:90.101200pt;}
.y60{bottom:90.104533pt;}
.y112{bottom:90.127867pt;}
.y212{bottom:90.247867pt;}
.y21c{bottom:90.261200pt;}
.ye0{bottom:90.501200pt;}
.y8d{bottom:90.611200pt;}
.y289{bottom:94.930400pt;}
.y2c9{bottom:97.725067pt;}
.y1d4{bottom:101.680000pt;}
.y90{bottom:102.446267pt;}
.y261{bottom:105.981200pt;}
.y23d{bottom:106.101200pt;}
.y5f{bottom:106.104533pt;}
.y111{bottom:106.127867pt;}
.y211{bottom:106.247867pt;}
.y21b{bottom:106.261200pt;}
.ydf{bottom:106.501200pt;}
.y8c{bottom:106.611200pt;}
.y288{bottom:108.263733pt;}
.y2c8{bottom:111.058400pt;}
.y1d3{bottom:115.674667pt;}
.y287{bottom:121.597067pt;}
.y260{bottom:121.981200pt;}
.y23c{bottom:122.101200pt;}
.y5e{bottom:122.104533pt;}
.y110{bottom:122.127867pt;}
.y210{bottom:122.247867pt;}
.yde{bottom:122.501200pt;}
.y1b9{bottom:122.547121pt;}
.y8b{bottom:122.611200pt;}
.y1be{bottom:122.802902pt;}
.y1ba{bottom:122.961796pt;}
.y1bd{bottom:123.112939pt;}
.y1bf{bottom:123.116815pt;}
.y1c0{bottom:123.314463pt;}
.y1bb{bottom:123.318339pt;}
.y1bc{bottom:123.558618pt;}
.y2c7{bottom:124.391733pt;}
.y1b{bottom:130.200800pt;}
.y286{bottom:134.930400pt;}
.y2c6{bottom:137.725067pt;}
.y1da{bottom:137.953333pt;}
.y25f{bottom:137.981200pt;}
.y23b{bottom:138.101200pt;}
.y5d{bottom:138.104533pt;}
.y10f{bottom:138.127867pt;}
.y20f{bottom:138.247867pt;}
.y21a{bottom:138.261200pt;}
.ydd{bottom:138.501200pt;}
.y8a{bottom:138.611200pt;}
.y175{bottom:141.877200pt;}
.y1d9{bottom:141.988933pt;}
.y285{bottom:148.263733pt;}
.y2c5{bottom:151.058400pt;}
.y25e{bottom:153.981200pt;}
.y23a{bottom:154.101200pt;}
.y5c{bottom:154.104533pt;}
.y10e{bottom:154.127867pt;}
.y20e{bottom:154.247867pt;}
.y219{bottom:154.261200pt;}
.ydc{bottom:154.501200pt;}
.y89{bottom:154.611200pt;}
.y176{bottom:155.922812pt;}
.y284{bottom:161.597067pt;}
.y2c4{bottom:164.391733pt;}
.y177{bottom:169.968424pt;}
.y25d{bottom:169.981200pt;}
.y239{bottom:170.101200pt;}
.y5b{bottom:170.104533pt;}
.y10d{bottom:170.127867pt;}
.y20d{bottom:170.247867pt;}
.ydb{bottom:170.501200pt;}
.y27{bottom:170.734400pt;}
.y97{bottom:171.166160pt;}
.y1d7{bottom:171.820800pt;}
.y283{bottom:174.930400pt;}
.y2c3{bottom:177.725067pt;}
.y178{bottom:184.014036pt;}
.y25c{bottom:185.981200pt;}
.y238{bottom:186.101200pt;}
.y5a{bottom:186.104533pt;}
.y10c{bottom:186.127867pt;}
.y20c{bottom:186.247867pt;}
.y88{bottom:186.611200pt;}
.y26{bottom:186.734400pt;}
.y282{bottom:188.263733pt;}
.y2c2{bottom:191.058400pt;}
.y179{bottom:198.059648pt;}
.y281{bottom:201.597067pt;}
.y25b{bottom:201.981200pt;}
.y237{bottom:202.101200pt;}
.y59{bottom:202.104533pt;}
.y10b{bottom:202.127867pt;}
.y20b{bottom:202.247867pt;}
.yda{bottom:202.501200pt;}
.y25{bottom:202.734400pt;}
.y2c1{bottom:204.391733pt;}
.y94{bottom:209.824037pt;}
.y17a{bottom:212.105260pt;}
.y280{bottom:214.930400pt;}
.y2c0{bottom:217.725067pt;}
.y25a{bottom:217.981200pt;}
.y236{bottom:218.101200pt;}
.y58{bottom:218.104533pt;}
.y10a{bottom:218.127867pt;}
.y20a{bottom:218.247867pt;}
.y87{bottom:218.491200pt;}
.y24{bottom:218.734400pt;}
.y17b{bottom:226.150872pt;}
.y27f{bottom:228.263733pt;}
.y2bf{bottom:231.058400pt;}
.y1d2{bottom:232.728107pt;}
.y259{bottom:233.981200pt;}
.y235{bottom:234.101200pt;}
.y57{bottom:234.104533pt;}
.y109{bottom:234.127867pt;}
.y209{bottom:234.247867pt;}
.yd9{bottom:234.367867pt;}
.y23{bottom:234.734400pt;}
.y1d1{bottom:241.120107pt;}
.y17c{bottom:241.580533pt;}
.y27e{bottom:241.597067pt;}
.y2be{bottom:244.391733pt;}
.y258{bottom:249.981200pt;}
.y234{bottom:250.101200pt;}
.y56{bottom:250.104533pt;}
.y108{bottom:250.127867pt;}
.y208{bottom:250.247867pt;}
.y86{bottom:250.357867pt;}
.yd8{bottom:250.367867pt;}
.y22{bottom:250.734400pt;}
.y27d{bottom:254.930400pt;}
.y2bd{bottom:257.725067pt;}
.y257{bottom:265.981200pt;}
.y233{bottom:266.101200pt;}
.y55{bottom:266.104533pt;}
.y107{bottom:266.127867pt;}
.y207{bottom:266.247867pt;}
.y85{bottom:266.357867pt;}
.yd7{bottom:266.367867pt;}
.y21{bottom:266.734400pt;}
.y27c{bottom:268.263733pt;}
.y2bc{bottom:271.058400pt;}
.y96{bottom:272.191440pt;}
.y27b{bottom:281.597067pt;}
.y256{bottom:281.981200pt;}
.y232{bottom:282.101200pt;}
.y54{bottom:282.104533pt;}
.y106{bottom:282.127867pt;}
.y206{bottom:282.247867pt;}
.y84{bottom:282.357867pt;}
.yd6{bottom:282.367867pt;}
.y20{bottom:282.734400pt;}
.y2bb{bottom:284.391733pt;}
.y1b1{bottom:291.532970pt;}
.y1b6{bottom:291.788750pt;}
.y1b2{bottom:291.947645pt;}
.y1b5{bottom:292.098788pt;}
.y1b7{bottom:292.102663pt;}
.y1b8{bottom:292.300312pt;}
.y1b3{bottom:292.304187pt;}
.y18f{bottom:292.494085pt;}
.y1b4{bottom:292.544466pt;}
.y194{bottom:292.749866pt;}
.y190{bottom:292.908760pt;}
.y193{bottom:293.059903pt;}
.y195{bottom:293.063779pt;}
.y196{bottom:293.261428pt;}
.y191{bottom:293.265303pt;}
.y192{bottom:293.505582pt;}
.y27a{bottom:294.930400pt;}
.y2ba{bottom:297.725067pt;}
.y255{bottom:297.981200pt;}
.y231{bottom:298.101200pt;}
.y53{bottom:298.104533pt;}
.y105{bottom:298.127867pt;}
.y83{bottom:298.357867pt;}
.yd5{bottom:298.367867pt;}
.y1f{bottom:298.734400pt;}
.y279{bottom:308.263733pt;}
.y169{bottom:310.072800pt;}
.y161{bottom:310.771733pt;}
.y2b9{bottom:311.058400pt;}
.y254{bottom:313.981200pt;}
.y230{bottom:314.101200pt;}
.y52{bottom:314.104533pt;}
.y104{bottom:314.127867pt;}
.y205{bottom:314.247867pt;}
.y82{bottom:314.357867pt;}
.yd4{bottom:314.367867pt;}
.y1e{bottom:314.734400pt;}
.y1d8{bottom:317.770267pt;}
.y16a{bottom:318.500167pt;}
.y278{bottom:321.597067pt;}
.y2b8{bottom:324.391733pt;}
.y162{bottom:324.817345pt;}
.y16b{bottom:326.927534pt;}
.y253{bottom:329.981200pt;}
.y22f{bottom:330.101200pt;}
.y51{bottom:330.104533pt;}
.y103{bottom:330.127867pt;}
.y81{bottom:330.357867pt;}
.yd3{bottom:330.367867pt;}
.y1d{bottom:330.734400pt;}
.y277{bottom:334.930400pt;}
.y16c{bottom:335.354902pt;}
.y2b7{bottom:337.725067pt;}
.y163{bottom:338.862957pt;}
.y16d{bottom:343.782269pt;}
.y95{bottom:343.886800pt;}
.y252{bottom:345.981200pt;}
.y22e{bottom:346.101200pt;}
.y50{bottom:346.104533pt;}
.y204{bottom:346.114533pt;}
.y102{bottom:346.127867pt;}
.y80{bottom:346.357867pt;}
.yd2{bottom:346.367867pt;}
.y28{bottom:346.734400pt;}
.y276{bottom:348.263733pt;}
.y2b6{bottom:351.058400pt;}
.y16e{bottom:352.209636pt;}
.y164{bottom:352.908569pt;}
.y16f{bottom:360.637003pt;}
.y275{bottom:361.597067pt;}
.y251{bottom:361.981200pt;}
.y22d{bottom:362.101200pt;}
.y4f{bottom:362.104533pt;}
.y203{bottom:362.114533pt;}
.y101{bottom:362.127867pt;}
.y7f{bottom:362.357867pt;}
.yd1{bottom:362.367867pt;}
.y1c{bottom:362.734400pt;}
.y2b5{bottom:364.391733pt;}
.y165{bottom:366.954181pt;}
.y170{bottom:369.064370pt;}
.y274{bottom:374.930400pt;}
.y171{bottom:377.491738pt;}
.y2b4{bottom:377.725067pt;}
.y250{bottom:377.981200pt;}
.y22c{bottom:378.101200pt;}
.y4e{bottom:378.104533pt;}
.y202{bottom:378.114533pt;}
.y100{bottom:378.127867pt;}
.y7e{bottom:378.357867pt;}
.yd0{bottom:378.367867pt;}
.y166{bottom:380.999793pt;}
.y172{bottom:385.919105pt;}
.y273{bottom:388.263733pt;}
.y2b3{bottom:391.058400pt;}
.y24f{bottom:393.981200pt;}
.y22b{bottom:394.101200pt;}
.y4d{bottom:394.104533pt;}
.y201{bottom:394.114533pt;}
.yff{bottom:394.127867pt;}
.y173{bottom:394.346472pt;}
.y7d{bottom:394.357867pt;}
.y167{bottom:395.045405pt;}
.y1ce{bottom:400.987707pt;}
.y272{bottom:401.597067pt;}
.y1d0{bottom:403.176620pt;}
.y2b2{bottom:404.391733pt;}
.y1db{bottom:406.271200pt;}
.y1cd{bottom:409.379707pt;}
.y174{bottom:409.774800pt;}
.y24e{bottom:409.981200pt;}
.y22a{bottom:410.101200pt;}
.y4c{bottom:410.104533pt;}
.y200{bottom:410.114533pt;}
.yfe{bottom:410.127867pt;}
.y7c{bottom:410.357867pt;}
.ycf{bottom:410.367867pt;}
.y168{bottom:410.473867pt;}
.y1cf{bottom:411.568620pt;}
.y271{bottom:414.930400pt;}
.y1e9{bottom:417.720613pt;}
.y2b1{bottom:417.725067pt;}
.y1a{bottom:421.827467pt;}
.y24d{bottom:425.981200pt;}
.y229{bottom:426.101200pt;}
.y4b{bottom:426.104533pt;}
.y1ff{bottom:426.114533pt;}
.yfd{bottom:426.127867pt;}
.y7b{bottom:426.357867pt;}
.y270{bottom:428.263733pt;}
.y2b0{bottom:431.058400pt;}
.y26f{bottom:441.597067pt;}
.y24c{bottom:441.981200pt;}
.y228{bottom:442.101200pt;}
.y4a{bottom:442.104533pt;}
.y1fe{bottom:442.114533pt;}
.yfc{bottom:442.127867pt;}
.yce{bottom:442.234533pt;}
.y7a{bottom:442.357867pt;}
.y2af{bottom:444.391733pt;}
.y1eb{bottom:448.256980pt;}
.y19{bottom:451.032800pt;}
.y26e{bottom:454.930400pt;}
.y2ae{bottom:457.725067pt;}
.y1a9{bottom:457.864123pt;}
.y24b{bottom:457.981200pt;}
.y227{bottom:458.101200pt;}
.y49{bottom:458.104533pt;}
.y1fd{bottom:458.114533pt;}
.y1ae{bottom:458.119904pt;}
.yfb{bottom:458.127867pt;}
.ycd{bottom:458.234533pt;}
.y1aa{bottom:458.278798pt;}
.y79{bottom:458.357867pt;}
.y1ad{bottom:458.429942pt;}
.y1af{bottom:458.433817pt;}
.y1b0{bottom:458.631466pt;}
.y1ab{bottom:458.635341pt;}
.y1ac{bottom:458.875620pt;}
.y187{bottom:459.844487pt;}
.y18c{bottom:460.100268pt;}
.y188{bottom:460.259162pt;}
.y18b{bottom:460.410305pt;}
.y18d{bottom:460.414181pt;}
.y18e{bottom:460.611829pt;}
.y189{bottom:460.615705pt;}
.y18a{bottom:460.855984pt;}
.y18{bottom:464.366133pt;}
.y26d{bottom:468.263733pt;}
.y2ad{bottom:471.058400pt;}
.y24a{bottom:473.981200pt;}
.y226{bottom:474.101200pt;}
.y48{bottom:474.104533pt;}
.y1fc{bottom:474.114533pt;}
.yfa{bottom:474.127867pt;}
.ycc{bottom:474.234533pt;}
.y78{bottom:474.357867pt;}
.y155{bottom:476.807067pt;}
.y149{bottom:477.505067pt;}
.y17{bottom:477.699467pt;}
.y26c{bottom:481.597067pt;}
.y2ac{bottom:484.391733pt;}
.y156{bottom:485.234434pt;}
.y14a{bottom:485.932434pt;}
.y249{bottom:489.981200pt;}
.y225{bottom:490.101200pt;}
.y47{bottom:490.104533pt;}
.y1fb{bottom:490.114533pt;}
.yf9{bottom:490.127867pt;}
.ycb{bottom:490.234533pt;}
.y77{bottom:490.357867pt;}
.y16{bottom:491.032800pt;}
.y99{bottom:492.287867pt;}
.y9e{bottom:493.510267pt;}
.y157{bottom:493.661801pt;}
.y14b{bottom:494.359801pt;}
.y26b{bottom:494.930400pt;}
.y2ab{bottom:497.725067pt;}
.y158{bottom:502.089168pt;}
.y14c{bottom:502.787168pt;}
.y15{bottom:504.366133pt;}
.y248{bottom:505.981200pt;}
.y224{bottom:506.101200pt;}
.y46{bottom:506.104533pt;}
.y1fa{bottom:506.114533pt;}
.yf8{bottom:506.127867pt;}
.yca{bottom:506.234533pt;}
.y26a{bottom:508.263733pt;}
.y159{bottom:510.516535pt;}
.y2aa{bottom:511.058400pt;}
.y14d{bottom:511.214535pt;}
.y93{bottom:514.977867pt;}
.y98{bottom:515.761200pt;}
.y14{bottom:517.699467pt;}
.y15a{bottom:518.943903pt;}
.y14e{bottom:519.641903pt;}
.y269{bottom:521.597067pt;}
.y247{bottom:521.981200pt;}
.y223{bottom:522.101200pt;}
.y45{bottom:522.104533pt;}
.y1f9{bottom:522.114533pt;}
.yf7{bottom:522.127867pt;}
.yc9{bottom:522.234533pt;}
.y76{bottom:522.357867pt;}
.y2a9{bottom:524.391733pt;}
.y9b{bottom:526.620167pt;}
.y15b{bottom:527.371270pt;}
.y14f{bottom:528.069270pt;}
.y13{bottom:531.032800pt;}
.y268{bottom:534.930400pt;}
.y15c{bottom:535.798637pt;}
.y9a{bottom:536.396807pt;}
.y150{bottom:536.496637pt;}
.y2a8{bottom:537.725067pt;}
.y246{bottom:537.981200pt;}
.y222{bottom:538.101200pt;}
.y44{bottom:538.104533pt;}
.y1f8{bottom:538.114533pt;}
.yf6{bottom:538.127867pt;}
.yc8{bottom:538.234533pt;}
.y15d{bottom:544.226004pt;}
.y12{bottom:544.366133pt;}
.y151{bottom:544.924004pt;}
.y267{bottom:548.263733pt;}
.y9d{bottom:548.642049pt;}
.y2a7{bottom:551.058400pt;}
.y15e{bottom:552.653371pt;}
.y152{bottom:553.351371pt;}
.y245{bottom:553.981200pt;}
.y221{bottom:554.101200pt;}
.y43{bottom:554.104533pt;}
.y1f7{bottom:554.114533pt;}
.yf5{bottom:554.127867pt;}
.y75{bottom:554.224533pt;}
.yc7{bottom:554.234533pt;}
.y11{bottom:557.699467pt;}
.y1e2{bottom:560.632467pt;}
.y15f{bottom:561.080739pt;}
.y266{bottom:561.597067pt;}
.y153{bottom:561.778739pt;}
.y2a6{bottom:564.391733pt;}
.y1cc{bottom:567.596880pt;}
.y1ca{bottom:568.142360pt;}
.y244{bottom:569.981200pt;}
.y220{bottom:570.101200pt;}
.y42{bottom:570.104533pt;}
.y1f6{bottom:570.114533pt;}
.yf4{bottom:570.127867pt;}
.y74{bottom:570.224533pt;}
.yc6{bottom:570.234533pt;}
.y9c{bottom:570.378779pt;}
.y10{bottom:571.032800pt;}
.y9f{bottom:572.137733pt;}
.y1dd{bottom:573.029320pt;}
.y265{bottom:574.930400pt;}
.y1cb{bottom:575.988880pt;}
.y160{bottom:576.509200pt;}
.y1c9{bottom:576.534360pt;}
.y154{bottom:577.208267pt;}
.y2a5{bottom:577.725067pt;}
.yf{bottom:584.366133pt;}
.y243{bottom:585.981200pt;}
.y21f{bottom:586.101200pt;}
.y41{bottom:586.104533pt;}
.y1f5{bottom:586.114533pt;}
.yf3{bottom:586.127867pt;}
.y73{bottom:586.224533pt;}
.yc5{bottom:586.234533pt;}
.y264{bottom:588.263733pt;}
.y2a4{bottom:591.058400pt;}
.ye{bottom:597.699467pt;}
.y242{bottom:601.981200pt;}
.y21e{bottom:602.101200pt;}
.y40{bottom:602.104533pt;}
.y1f4{bottom:602.114533pt;}
.yf2{bottom:602.127867pt;}
.y72{bottom:602.224533pt;}
.yc4{bottom:602.234533pt;}
.y2a3{bottom:604.391733pt;}
.yd{bottom:611.032800pt;}
.y2a2{bottom:617.725067pt;}
.y241{bottom:617.981200pt;}
.y263{bottom:617.984533pt;}
.yb3{bottom:618.101200pt;}
.y3f{bottom:618.104533pt;}
.y1f3{bottom:618.114533pt;}
.yf1{bottom:618.127867pt;}
.y71{bottom:618.224533pt;}
.yc3{bottom:618.234533pt;}
.y1a1{bottom:626.605818pt;}
.y1a6{bottom:626.861598pt;}
.y1a2{bottom:627.020493pt;}
.y1a5{bottom:627.171636pt;}
.y1a7{bottom:627.175511pt;}
.y1a8{bottom:627.373160pt;}
.y1a3{bottom:627.377035pt;}
.y17d{bottom:627.566933pt;}
.y1a4{bottom:627.617314pt;}
.y182{bottom:627.818839pt;}
.y17e{bottom:627.981608pt;}
.y181{bottom:628.128876pt;}
.y185{bottom:628.132751pt;}
.y186{bottom:628.330400pt;}
.y184{bottom:628.334276pt;}
.y17f{bottom:628.338151pt;}
.y183{bottom:628.574555pt;}
.y180{bottom:628.578430pt;}
.y1ee{bottom:628.914600pt;}
.y2a1{bottom:631.058400pt;}
.yb2{bottom:634.101200pt;}
.y3e{bottom:634.104533pt;}
.y1f2{bottom:634.114533pt;}
.yf0{bottom:634.127867pt;}
.y70{bottom:634.224533pt;}
.yc2{bottom:634.234533pt;}
.y2a0{bottom:644.391733pt;}
.y13d{bottom:645.459200pt;}
.y131{bottom:646.158667pt;}
.y1e3{bottom:647.509880pt;}
.y1e1{bottom:648.844033pt;}
.y240{bottom:649.981200pt;}
.yb1{bottom:650.101200pt;}
.y3d{bottom:650.104533pt;}
.yef{bottom:650.127867pt;}
.y6f{bottom:650.224533pt;}
.yc1{bottom:650.234533pt;}
.y1ec{bottom:652.655900pt;}
.y13e{bottom:653.886567pt;}
.y1df{bottom:654.180647pt;}
.yc{bottom:654.461333pt;}
.y132{bottom:654.586034pt;}
.y29f{bottom:657.725067pt;}
.y1ed{bottom:661.729800pt;}
.y13f{bottom:662.313934pt;}
.y133{bottom:663.013401pt;}
.yb0{bottom:666.101200pt;}
.y3c{bottom:666.104533pt;}
.y1f1{bottom:666.114533pt;}
.yee{bottom:666.127867pt;}
.y6e{bottom:666.224533pt;}
.yc0{bottom:666.234533pt;}
.y1dc{bottom:668.110533pt;}
.y1ea{bottom:668.359133pt;}
.y140{bottom:670.741302pt;}
.y29e{bottom:671.058400pt;}
.y134{bottom:671.440768pt;}
.y1e8{bottom:671.557787pt;}
.y1e6{bottom:678.974353pt;}
.y141{bottom:679.168669pt;}
.y135{bottom:679.868135pt;}
.yaf{bottom:682.101200pt;}
.y3b{bottom:682.104533pt;}
.yed{bottom:682.127867pt;}
.y6d{bottom:682.224533pt;}
.ybf{bottom:682.234533pt;}
.y29d{bottom:684.391733pt;}
.y1de{bottom:686.241760pt;}
.y142{bottom:687.596036pt;}
.y136{bottom:688.295503pt;}
.yb{bottom:688.687867pt;}
.y1e4{bottom:693.111407pt;}
.y143{bottom:696.023403pt;}
.y137{bottom:696.722870pt;}
.y29c{bottom:697.725067pt;}
.y1e7{bottom:698.025400pt;}
.yae{bottom:698.101200pt;}
.y3a{bottom:698.104533pt;}
.yec{bottom:698.127867pt;}
.y6c{bottom:698.224533pt;}
.ybe{bottom:698.234533pt;}
.ya{bottom:699.694133pt;}
.y144{bottom:704.450770pt;}
.y138{bottom:705.150237pt;}
.y1e0{bottom:708.624047pt;}
.y1e5{bottom:709.096387pt;}
.y29b{bottom:711.058400pt;}
.y145{bottom:712.878138pt;}
.y139{bottom:713.577604pt;}
.yad{bottom:714.101200pt;}
.y39{bottom:714.104533pt;}
.yeb{bottom:714.127867pt;}
.y6b{bottom:714.224533pt;}
.ybd{bottom:714.234533pt;}
.y9{bottom:718.021200pt;}
.y146{bottom:721.305505pt;}
.y13a{bottom:722.004971pt;}
.y29a{bottom:724.391733pt;}
.y8{bottom:729.027467pt;}
.y147{bottom:729.732872pt;}
.yac{bottom:730.101200pt;}
.y38{bottom:730.104533pt;}
.yea{bottom:730.127867pt;}
.y6a{bottom:730.224533pt;}
.ybc{bottom:730.234533pt;}
.y13b{bottom:730.432339pt;}
.y1c4{bottom:736.394967pt;}
.y1c8{bottom:737.492920pt;}
.y299{bottom:737.725067pt;}
.y1c3{bottom:744.786967pt;}
.y148{bottom:745.162400pt;}
.y13c{bottom:745.861867pt;}
.y1c7{bottom:745.884920pt;}
.yab{bottom:746.101200pt;}
.y37{bottom:746.104533pt;}
.ye9{bottom:746.127867pt;}
.y69{bottom:746.224533pt;}
.ybb{bottom:746.234533pt;}
.y7{bottom:747.354533pt;}
.y298{bottom:751.058400pt;}
.y6{bottom:758.360800pt;}
.yaa{bottom:762.101200pt;}
.y36{bottom:762.104533pt;}
.ye8{bottom:762.127867pt;}
.y68{bottom:762.224533pt;}
.yba{bottom:762.234533pt;}
.y297{bottom:764.391733pt;}
.y5{bottom:773.027467pt;}
.y296{bottom:777.725067pt;}
.ya9{bottom:778.101200pt;}
.y35{bottom:778.104533pt;}
.ye7{bottom:778.127867pt;}
.y67{bottom:778.224533pt;}
.yb9{bottom:778.234533pt;}
.y295{bottom:791.058400pt;}
.y4{bottom:791.354533pt;}
.ya8{bottom:794.101200pt;}
.y34{bottom:794.104533pt;}
.ye6{bottom:794.127867pt;}
.y11f{bottom:794.179200pt;}
.y66{bottom:794.224533pt;}
.yb8{bottom:794.234533pt;}
.y124{bottom:794.431105pt;}
.y120{bottom:794.593875pt;}
.y123{bottom:794.741143pt;}
.y127{bottom:794.745018pt;}
.y128{bottom:794.942667pt;}
.y126{bottom:794.946542pt;}
.y121{bottom:794.950418pt;}
.y125{bottom:795.186821pt;}
.y122{bottom:795.190697pt;}
.y197{bottom:796.347382pt;}
.y19c{bottom:796.599287pt;}
.y198{bottom:796.762057pt;}
.y19b{bottom:796.909325pt;}
.y19f{bottom:796.913200pt;}
.y1a0{bottom:797.110849pt;}
.y19e{bottom:797.114725pt;}
.y199{bottom:797.118600pt;}
.y19d{bottom:797.355003pt;}
.y19a{bottom:797.358879pt;}
.y294{bottom:804.391733pt;}
.y3{bottom:804.925600pt;}
.ya7{bottom:810.101200pt;}
.y33{bottom:810.104533pt;}
.y218{bottom:810.127867pt;}
.y65{bottom:810.224533pt;}
.yb7{bottom:810.234533pt;}
.y12a{bottom:813.925467pt;}
.y116{bottom:814.274933pt;}
.y293{bottom:817.725067pt;}
.y117{bottom:824.805648pt;}
.ya6{bottom:826.101200pt;}
.y32{bottom:826.104533pt;}
.ye5{bottom:826.127867pt;}
.y64{bottom:826.224533pt;}
.yb6{bottom:826.234533pt;}
.y2{bottom:829.271733pt;}
.y12b{bottom:830.780201pt;}
.y292{bottom:831.058400pt;}
.y118{bottom:835.336363pt;}
.ya5{bottom:842.101200pt;}
.y31{bottom:842.104533pt;}
.y217{bottom:842.127867pt;}
.y63{bottom:842.224533pt;}
.yb5{bottom:842.234533pt;}
.y291{bottom:844.391733pt;}
.y119{bottom:845.867079pt;}
.y12c{bottom:847.634935pt;}
.y1{bottom:853.277067pt;}
.y11a{bottom:856.397794pt;}
.y290{bottom:857.725067pt;}
.ye4{bottom:858.007867pt;}
.ya4{bottom:858.101200pt;}
.y30{bottom:858.104533pt;}
.y216{bottom:858.127867pt;}
.y62{bottom:858.224533pt;}
.y1f0{bottom:858.234533pt;}
.y12d{bottom:864.489670pt;}
.y11b{bottom:866.928509pt;}
.y28f{bottom:871.058400pt;}
.ya3{bottom:874.101200pt;}
.y2f{bottom:874.104533pt;}
.y215{bottom:874.127867pt;}
.yb4{bottom:874.234533pt;}
.y11c{bottom:877.459224pt;}
.y12e{bottom:881.344404pt;}
.y28e{bottom:884.391733pt;}
.y11d{bottom:887.989939pt;}
.ya2{bottom:890.101200pt;}
.y2e{bottom:890.104533pt;}
.y214{bottom:890.127867pt;}
.y61{bottom:890.224533pt;}
.y1ef{bottom:890.234533pt;}
.y28d{bottom:897.725067pt;}
.y12f{bottom:898.199139pt;}
.y11e{bottom:898.520654pt;}
.y1c6{bottom:905.200047pt;}
.ya1{bottom:906.101200pt;}
.y2d{bottom:906.104533pt;}
.ye3{bottom:906.127867pt;}
.y1c2{bottom:906.298000pt;}
.y28c{bottom:911.058400pt;}
.y1c5{bottom:913.592047pt;}
.y130{bottom:913.628800pt;}
.y129{bottom:913.977600pt;}
.y1c1{bottom:914.690000pt;}
.ya0{bottom:922.101200pt;}
.y2c{bottom:922.104533pt;}
.ye2{bottom:922.127867pt;}
.y28b{bottom:924.391733pt;}
.y2a{bottom:951.795067pt;}
.y8f{bottom:965.392400pt;}
.y29{bottom:965.395067pt;}
.h14{height:15.971212pt;}
.h4{height:18.662500pt;}
.h12{height:18.797143pt;}
.h13{height:20.363080pt;}
.h17{height:20.379010pt;}
.h11{height:23.463936pt;}
.h10{height:23.496525pt;}
.h1c{height:24.147865pt;}
.h1b{height:29.715469pt;}
.h6{height:31.083333pt;}
.h5{height:31.104167pt;}
.h1a{height:36.221797pt;}
.h16{height:36.653467pt;}
.h15{height:36.678033pt;}
.h1d{height:38.177083pt;}
.h7{height:38.250000pt;}
.h8{height:38.828125pt;}
.ha{height:38.854167pt;}
.hc{height:38.880208pt;}
.hb{height:40.640625pt;}
.h18{height:44.573203pt;}
.h3{height:45.781883pt;}
.hf{height:46.993050pt;}
.h9{height:47.812500pt;}
.hd{height:50.903781pt;}
.he{height:51.620736pt;}
.h2{height:54.359375pt;}
.h19{height:795.590667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:582.954667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x68{left:10.666800pt;}
.x9{left:68.031467pt;}
.x7{left:85.417333pt;}
.x1{left:86.929200pt;}
.x17{left:90.330667pt;}
.x16{left:91.910929pt;}
.x67{left:95.924000pt;}
.xa{left:98.258133pt;}
.x2{left:111.501867pt;}
.x75{left:113.382533pt;}
.x5{left:117.170133pt;}
.x10{left:132.156110pt;}
.x65{left:136.422667pt;}
.x3{left:143.619200pt;}
.x63{left:148.430533pt;}
.x1d{left:150.993552pt;}
.x2d{left:151.907685pt;}
.x32{left:153.058133pt;}
.x1c{left:154.536400pt;}
.x2c{left:155.450533pt;}
.x1e{left:159.034800pt;}
.x39{left:161.169200pt;}
.x13{left:167.677067pt;}
.x1f{left:182.524003pt;}
.x3a{left:184.658403pt;}
.x4{left:189.223467pt;}
.x15{left:190.760907pt;}
.x14{left:193.205067pt;}
.x74{left:195.675867pt;}
.x2e{left:204.568933pt;}
.x20{left:205.986079pt;}
.x3b{left:208.120479pt;}
.x28{left:226.538667pt;}
.x21{left:229.386146pt;}
.x3c{left:231.520546pt;}
.x33{left:239.465333pt;}
.x30{left:246.400667pt;}
.x22{left:252.445173pt;}
.x3d{left:254.579573pt;}
.x23{left:275.573958pt;}
.x37{left:277.981285pt;}
.x36{left:281.524133pt;}
.x5e{left:286.393279pt;}
.x24{left:299.233682pt;}
.x3e{left:301.368082pt;}
.x12{left:309.790992pt;}
.x25{left:322.393471pt;}
.x3f{left:324.527871pt;}
.x5f{left:333.344558pt;}
.xf{left:336.595733pt;}
.x6a{left:341.737480pt;}
.x26{left:345.576513pt;}
.x40{left:347.710913pt;}
.x60{left:356.744625pt;}
.x6f{left:362.611593pt;}
.x11{left:366.006672pt;}
.x27{left:368.957203pt;}
.x41{left:371.091603pt;}
.x38{left:375.652933pt;}
.x61{left:379.799777pt;}
.x6b{left:390.761400pt;}
.x66{left:394.718667pt;}
.x62{left:402.928562pt;}
.x8{left:404.481333pt;}
.xc{left:406.271467pt;}
.x64{left:412.932387pt;}
.x2a{left:415.527818pt;}
.x29{left:419.070667pt;}
.x34{left:422.668400pt;}
.x4b{left:424.189372pt;}
.x18{left:425.195867pt;}
.x6{left:427.090133pt;}
.xd{left:436.511467pt;}
.x4c{left:447.678575pt;}
.x42{left:448.721076pt;}
.x55{left:450.259636pt;}
.x76{left:451.579867pt;}
.x69{left:452.662800pt;}
.x19{left:455.435867pt;}
.x6e{left:459.938493pt;}
.xb{left:466.884800pt;}
.x4d{left:471.140650pt;}
.x43{left:472.183151pt;}
.x56{left:473.721711pt;}
.x71{left:476.122353pt;}
.x35{left:490.346133pt;}
.x4e{left:494.540718pt;}
.x44{left:495.583219pt;}
.x57{left:497.121779pt;}
.x2f{left:500.822533pt;}
.x73{left:505.540020pt;}
.x2b{left:507.644533pt;}
.x31{left:510.686667pt;}
.x4f{left:517.595869pt;}
.x45{left:518.642245pt;}
.x58{left:520.176930pt;}
.x70{left:523.182333pt;}
.x1b{left:525.884800pt;}
.x6d{left:534.361047pt;}
.x50{left:540.724654pt;}
.x46{left:541.771030pt;}
.x59{left:543.305715pt;}
.x6c{left:555.566627pt;}
.x51{left:564.384378pt;}
.x47{left:565.430754pt;}
.x5a{left:566.965439pt;}
.x52{left:587.544167pt;}
.x48{left:588.590543pt;}
.x5b{left:590.125228pt;}
.x53{left:610.727209pt;}
.x49{left:611.773585pt;}
.x5c{left:613.308270pt;}
.x54{left:634.107899pt;}
.x4a{left:635.154275pt;}
.x5d{left:636.688960pt;}
.xe{left:643.752133pt;}
.x72{left:654.144813pt;}
.x1a{left:662.649733pt;}
}




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