
    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_0be42ce69c8e7b459742343c.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_ab30d520c6cbe48188862e90.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_e036e78ce2c82479510abe3b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0a909739f7fbc3d62b8758f1.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_fd47318adae8134a5ed8ac72.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_3908601416a91f875f68f003.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4676fb1a02e278541e1c250d.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_cab5f5b7af05b4119484e1d3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_89fae486491d1b118fc92657.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4d1ea088b6539a6b8dde6d5e.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.v6{vertical-align:1.620000px;}
.v5{vertical-align:22.610400px;}
.v1{vertical-align:30.381600px;}
.v4{vertical-align:51.030000px;}
.v3{vertical-align:60.030000px;}
.ls98{letter-spacing:-2.640000px;}
.ls14{letter-spacing:-0.780000px;}
.ls6f{letter-spacing:-0.600000px;}
.ls88{letter-spacing:-0.480000px;}
.ls65{letter-spacing:-0.405000px;}
.ls52{letter-spacing:-0.360000px;}
.lsa6{letter-spacing:-0.336000px;}
.ls72{letter-spacing:-0.300000px;}
.ls99{letter-spacing:-0.288000px;}
.ls71{letter-spacing:-0.240000px;}
.ls63{letter-spacing:-0.192000px;}
.ls97{letter-spacing:-0.180000px;}
.ls7d{letter-spacing:-0.144000px;}
.ls39{letter-spacing:-0.120000px;}
.ls15{letter-spacing:-0.060000px;}
.ls53{letter-spacing:-0.048000px;}
.ls13{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004140px;}
.ls2{letter-spacing:0.005676px;}
.ls3c{letter-spacing:0.048000px;}
.ls25{letter-spacing:0.060000px;}
.ls62{letter-spacing:0.086400px;}
.ls40{letter-spacing:0.096000px;}
.ls2b{letter-spacing:0.120000px;}
.ls3b{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.180000px;}
.ls5d{letter-spacing:0.192000px;}
.ls9{letter-spacing:0.240000px;}
.ls92{letter-spacing:0.288000px;}
.ls42{letter-spacing:0.300000px;}
.ls76{letter-spacing:0.336000px;}
.ls2e{letter-spacing:0.360000px;}
.ls8a{letter-spacing:0.384000px;}
.ls4f{letter-spacing:0.420000px;}
.ls93{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.480000px;}
.ls75{letter-spacing:0.528000px;}
.ls28{letter-spacing:0.540000px;}
.ls4b{letter-spacing:0.576000px;}
.lsd{letter-spacing:0.600000px;}
.ls95{letter-spacing:0.624000px;}
.lsa{letter-spacing:0.660000px;}
.ls7f{letter-spacing:0.672000px;}
.ls5{letter-spacing:0.720000px;}
.ls3a{letter-spacing:0.768000px;}
.lsf{letter-spacing:0.780000px;}
.ls8c{letter-spacing:0.816000px;}
.ls10{letter-spacing:0.840000px;}
.ls33{letter-spacing:0.900000px;}
.ls1c{letter-spacing:0.960000px;}
.ls34{letter-spacing:1.020000px;}
.ls9c{letter-spacing:1.056000px;}
.ls38{letter-spacing:1.080000px;}
.lsa0{letter-spacing:1.104000px;}
.ls45{letter-spacing:1.140000px;}
.ls8{letter-spacing:1.200000px;}
.ls5a{letter-spacing:1.248000px;}
.ls1b{letter-spacing:1.260000px;}
.ls8f{letter-spacing:1.296000px;}
.lse{letter-spacing:1.320000px;}
.ls74{letter-spacing:1.344000px;}
.ls7{letter-spacing:1.380000px;}
.ls19{letter-spacing:1.440000px;}
.ls1d{letter-spacing:1.500000px;}
.ls8d{letter-spacing:1.536000px;}
.ls4a{letter-spacing:1.560000px;}
.ls94{letter-spacing:1.584000px;}
.ls17{letter-spacing:1.620000px;}
.lsa5{letter-spacing:1.632000px;}
.ls12{letter-spacing:1.680000px;}
.ls9d{letter-spacing:1.728000px;}
.ls32{letter-spacing:1.740000px;}
.ls48{letter-spacing:1.800000px;}
.ls90{letter-spacing:1.824000px;}
.ls27{letter-spacing:1.860000px;}
.ls2d{letter-spacing:1.920000px;}
.lsa2{letter-spacing:1.968000px;}
.ls23{letter-spacing:1.980000px;}
.ls8e{letter-spacing:2.016000px;}
.ls31{letter-spacing:2.040000px;}
.ls91{letter-spacing:2.064000px;}
.lsb{letter-spacing:2.100000px;}
.ls8b{letter-spacing:2.112000px;}
.ls68{letter-spacing:2.160000px;}
.ls7b{letter-spacing:2.208000px;}
.ls1e{letter-spacing:2.220000px;}
.ls6e{letter-spacing:2.256000px;}
.ls11{letter-spacing:2.280000px;}
.ls96{letter-spacing:2.304000px;}
.ls4d{letter-spacing:2.340000px;}
.ls9a{letter-spacing:2.352000px;}
.ls4{letter-spacing:2.400000px;}
.ls9b{letter-spacing:2.448000px;}
.ls1a{letter-spacing:2.460000px;}
.ls29{letter-spacing:2.520000px;}
.ls6{letter-spacing:2.580000px;}
.ls22{letter-spacing:2.640000px;}
.lsa1{letter-spacing:2.688000px;}
.ls30{letter-spacing:2.700000px;}
.ls5c{letter-spacing:2.736000px;}
.ls43{letter-spacing:2.760000px;}
.ls59{letter-spacing:2.820000px;}
.ls16{letter-spacing:2.880000px;}
.ls78{letter-spacing:2.928000px;}
.ls6c{letter-spacing:2.940000px;}
.ls80{letter-spacing:3.000000px;}
.ls6b{letter-spacing:3.060000px;}
.ls5f{letter-spacing:3.120000px;}
.ls57{letter-spacing:3.180000px;}
.ls20{letter-spacing:3.240000px;}
.ls7e{letter-spacing:3.264000px;}
.ls2c{letter-spacing:3.300000px;}
.ls50{letter-spacing:3.360000px;}
.ls36{letter-spacing:3.420000px;}
.ls70{letter-spacing:3.456000px;}
.ls64{letter-spacing:3.480000px;}
.ls9e{letter-spacing:3.504000px;}
.ls24{letter-spacing:3.540000px;}
.ls49{letter-spacing:3.600000px;}
.lsa3{letter-spacing:3.648000px;}
.ls2a{letter-spacing:3.660000px;}
.ls82{letter-spacing:3.720000px;}
.ls9f{letter-spacing:3.744000px;}
.ls47{letter-spacing:3.780000px;}
.ls79{letter-spacing:3.840000px;}
.ls58{letter-spacing:3.960000px;}
.ls3d{letter-spacing:4.020000px;}
.ls41{letter-spacing:4.032000px;}
.ls51{letter-spacing:4.080000px;}
.ls21{letter-spacing:4.140000px;}
.ls73{letter-spacing:4.176000px;}
.ls46{letter-spacing:4.200000px;}
.ls54{letter-spacing:4.260000px;}
.ls4e{letter-spacing:4.320000px;}
.ls2f{letter-spacing:4.440000px;}
.lsc{letter-spacing:4.500000px;}
.ls26{letter-spacing:4.560000px;}
.ls3f{letter-spacing:4.620000px;}
.ls55{letter-spacing:4.800000px;}
.ls3e{letter-spacing:4.860000px;}
.ls85{letter-spacing:4.920000px;}
.ls77{letter-spacing:4.980000px;}
.ls81{letter-spacing:5.100000px;}
.ls66{letter-spacing:5.160000px;}
.ls44{letter-spacing:5.220000px;}
.ls5b{letter-spacing:5.232000px;}
.ls67{letter-spacing:5.280000px;}
.ls84{letter-spacing:5.340000px;}
.ls7a{letter-spacing:5.400000px;}
.ls37{letter-spacing:5.460000px;}
.ls86{letter-spacing:5.640000px;}
.ls83{letter-spacing:5.700000px;}
.ls89{letter-spacing:5.760000px;}
.lsa4{letter-spacing:6.000000px;}
.ls7c{letter-spacing:6.060000px;}
.ls69{letter-spacing:6.360000px;}
.ls35{letter-spacing:6.900000px;}
.ls6d{letter-spacing:7.080000px;}
.ls6a{letter-spacing:7.320000px;}
.ls4c{letter-spacing:7.380000px;}
.ls5e{letter-spacing:7.920000px;}
.ls56{letter-spacing:8.160000px;}
.ls87{letter-spacing:9.480000px;}
.ls0{letter-spacing:59.532876px;}
.ls1{letter-spacing:59.533476px;}
.ls60{letter-spacing:76.092900px;}
.ls61{letter-spacing:83.585700px;}
.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;}
}
.ws0{word-spacing:-35.194800px;}
.ws5f{word-spacing:-22.920000px;}
.wsdc{word-spacing:-22.440000px;}
.wsaf{word-spacing:-20.220000px;}
.wsca{word-spacing:-19.920000px;}
.ws2d{word-spacing:-19.860000px;}
.ws3{word-spacing:-19.500000px;}
.ws15{word-spacing:-19.140000px;}
.wsa9{word-spacing:-18.840000px;}
.ws3a{word-spacing:-18.780000px;}
.ws54{word-spacing:-18.600000px;}
.ws55{word-spacing:-18.420000px;}
.wsdd{word-spacing:-18.300000px;}
.ws14{word-spacing:-18.240000px;}
.wsbf{word-spacing:-18.060000px;}
.wsd0{word-spacing:-18.000000px;}
.ws84{word-spacing:-17.940000px;}
.wsd4{word-spacing:-17.580000px;}
.ws11{word-spacing:-17.400000px;}
.ws3d{word-spacing:-17.340000px;}
.ws81{word-spacing:-17.280000px;}
.ws16{word-spacing:-17.220000px;}
.ws92{word-spacing:-17.160000px;}
.ws3f{word-spacing:-17.040000px;}
.ws19{word-spacing:-16.980000px;}
.wsd3{word-spacing:-16.860000px;}
.ws93{word-spacing:-16.740000px;}
.ws2{word-spacing:-16.680000px;}
.ws3c{word-spacing:-16.560000px;}
.ws60{word-spacing:-16.500000px;}
.wsd2{word-spacing:-16.440000px;}
.ws13{word-spacing:-16.380000px;}
.ws98{word-spacing:-16.320000px;}
.ws85{word-spacing:-16.200000px;}
.ws3e{word-spacing:-16.140000px;}
.wscf{word-spacing:-16.020000px;}
.ws61{word-spacing:-15.960000px;}
.ws97{word-spacing:-15.900000px;}
.ws80{word-spacing:-15.840000px;}
.wsdb{word-spacing:-15.780000px;}
.wsc6{word-spacing:-15.720000px;}
.ws3b{word-spacing:-15.660000px;}
.wsbd{word-spacing:-15.600000px;}
.ws38{word-spacing:-15.540000px;}
.wsf4{word-spacing:-15.504000px;}
.ws39{word-spacing:-15.480000px;}
.wsce{word-spacing:-15.420000px;}
.wsd1{word-spacing:-15.360000px;}
.ws99{word-spacing:-15.240000px;}
.ws12{word-spacing:-15.180000px;}
.ws18{word-spacing:-15.060000px;}
.ws17{word-spacing:-15.000000px;}
.ws96{word-spacing:-14.940000px;}
.ws8d{word-spacing:-14.760000px;}
.ws83{word-spacing:-14.400000px;}
.wsf1{word-spacing:-14.352000px;}
.ws82{word-spacing:-14.256000px;}
.wse2{word-spacing:-13.680000px;}
.wsbe{word-spacing:-13.500000px;}
.wse0{word-spacing:-13.440000px;}
.ws5{word-spacing:-13.344000px;}
.wsf2{word-spacing:-13.296000px;}
.wsdf{word-spacing:-12.960000px;}
.wsf3{word-spacing:-12.816000px;}
.ws2c{word-spacing:-12.768000px;}
.wsf5{word-spacing:-12.576000px;}
.ws4{word-spacing:-12.510000px;}
.wse1{word-spacing:-12.432000px;}
.ws94{word-spacing:-12.240000px;}
.ws95{word-spacing:-12.192000px;}
.ws35{word-spacing:-12.096000px;}
.ws5e{word-spacing:-12.048000px;}
.ws2b{word-spacing:-12.000000px;}
.ws7d{word-spacing:-11.952000px;}
.wsb8{word-spacing:-11.856000px;}
.ws1{word-spacing:-10.210662px;}
.wsde{word-spacing:-9.360000px;}
.ws78{word-spacing:-7.920000px;}
.ws71{word-spacing:-6.996000px;}
.ws30{word-spacing:-4.020000px;}
.wsae{word-spacing:-3.840000px;}
.ws4b{word-spacing:-3.780000px;}
.wsf9{word-spacing:-3.744000px;}
.ws79{word-spacing:-3.480000px;}
.ws5a{word-spacing:-3.420000px;}
.ws59{word-spacing:-3.300000px;}
.ws58{word-spacing:-3.240000px;}
.ws9a{word-spacing:-3.120000px;}
.wsc2{word-spacing:-3.060000px;}
.wsc0{word-spacing:-3.000000px;}
.ws7{word-spacing:-2.886000px;}
.ws52{word-spacing:-2.640000px;}
.wsa{word-spacing:-2.400000px;}
.ws8e{word-spacing:-2.340000px;}
.ws8a{word-spacing:-2.256000px;}
.ws20{word-spacing:-2.220000px;}
.wsd8{word-spacing:-2.160000px;}
.wsb5{word-spacing:-1.920000px;}
.wsb1{word-spacing:-1.860000px;}
.ws4c{word-spacing:-1.800000px;}
.ws9b{word-spacing:-1.680000px;}
.wsb6{word-spacing:-1.500000px;}
.wse9{word-spacing:-1.440000px;}
.ws1c{word-spacing:-1.380000px;}
.wsd7{word-spacing:-1.320000px;}
.ws9f{word-spacing:-1.200000px;}
.ws48{word-spacing:-1.140000px;}
.wsfa{word-spacing:-1.104000px;}
.ws28{word-spacing:-1.080000px;}
.ws9c{word-spacing:-1.020000px;}
.ws5c{word-spacing:-0.960000px;}
.wsa5{word-spacing:-0.900000px;}
.wsec{word-spacing:-0.864000px;}
.wsd6{word-spacing:-0.840000px;}
.wsac{word-spacing:-0.780000px;}
.wsc7{word-spacing:-0.720000px;}
.ws4e{word-spacing:-0.660000px;}
.wsda{word-spacing:-0.600000px;}
.ws47{word-spacing:-0.540000px;}
.wsd5{word-spacing:-0.480000px;}
.wseb{word-spacing:-0.432000px;}
.wsa2{word-spacing:-0.420000px;}
.ws42{word-spacing:-0.360000px;}
.wsa4{word-spacing:-0.336000px;}
.ws45{word-spacing:-0.300000px;}
.wsfc{word-spacing:-0.288000px;}
.ws73{word-spacing:-0.240000px;}
.ws77{word-spacing:-0.192000px;}
.wsa7{word-spacing:-0.180000px;}
.wsad{word-spacing:-0.144000px;}
.ws57{word-spacing:-0.120000px;}
.ws37{word-spacing:-0.096000px;}
.ws75{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws7e{word-spacing:0.048000px;}
.ws8{word-spacing:0.060000px;}
.ws53{word-spacing:0.096000px;}
.wsa6{word-spacing:0.120000px;}
.wsb9{word-spacing:0.144000px;}
.wse4{word-spacing:0.180000px;}
.ws76{word-spacing:0.192000px;}
.ws4a{word-spacing:0.240000px;}
.ws8f{word-spacing:0.300000px;}
.ws32{word-spacing:0.420000px;}
.wsef{word-spacing:0.432000px;}
.ws87{word-spacing:0.480000px;}
.ws5d{word-spacing:0.528000px;}
.wsc5{word-spacing:0.540000px;}
.ws1d{word-spacing:0.600000px;}
.ws1a{word-spacing:0.660000px;}
.wsbc{word-spacing:0.720000px;}
.wsf7{word-spacing:0.768000px;}
.ws10{word-spacing:0.780000px;}
.ws91{word-spacing:0.816000px;}
.ws24{word-spacing:0.840000px;}
.ws86{word-spacing:0.960000px;}
.ws2a{word-spacing:1.020000px;}
.ws8b{word-spacing:1.080000px;}
.wsc9{word-spacing:1.140000px;}
.wse7{word-spacing:1.248000px;}
.ws51{word-spacing:1.260000px;}
.ws36{word-spacing:1.296000px;}
.ws88{word-spacing:1.320000px;}
.ws7f{word-spacing:1.344000px;}
.ws46{word-spacing:1.380000px;}
.ws44{word-spacing:1.500000px;}
.wse6{word-spacing:1.536000px;}
.ws1e{word-spacing:1.560000px;}
.wse3{word-spacing:1.620000px;}
.ws7b{word-spacing:1.680000px;}
.wsbb{word-spacing:1.740000px;}
.ws29{word-spacing:1.800000px;}
.wsee{word-spacing:1.824000px;}
.wsd{word-spacing:1.860000px;}
.wsf6{word-spacing:1.872000px;}
.ws4f{word-spacing:1.920000px;}
.ws1b{word-spacing:1.980000px;}
.wsf0{word-spacing:2.016000px;}
.ws8c{word-spacing:2.040000px;}
.wsb0{word-spacing:2.160000px;}
.wsa8{word-spacing:2.280000px;}
.ws9e{word-spacing:2.340000px;}
.wsc1{word-spacing:2.400000px;}
.ws7c{word-spacing:2.448000px;}
.ws26{word-spacing:2.460000px;}
.wsed{word-spacing:2.496000px;}
.ws40{word-spacing:2.520000px;}
.wse8{word-spacing:2.544000px;}
.ws5b{word-spacing:2.580000px;}
.wsb7{word-spacing:2.640000px;}
.ws56{word-spacing:2.700000px;}
.wsf{word-spacing:2.760000px;}
.ws31{word-spacing:2.820000px;}
.wsc4{word-spacing:2.880000px;}
.ws9d{word-spacing:2.928000px;}
.wsa3{word-spacing:2.940000px;}
.ws34{word-spacing:2.976000px;}
.ws21{word-spacing:3.000000px;}
.wsfb{word-spacing:3.024000px;}
.wsb{word-spacing:3.060000px;}
.wsb2{word-spacing:3.120000px;}
.wse{word-spacing:3.180000px;}
.wscd{word-spacing:3.240000px;}
.wsba{word-spacing:3.264000px;}
.wscb{word-spacing:3.360000px;}
.wsf8{word-spacing:3.408000px;}
.ws89{word-spacing:3.420000px;}
.ws90{word-spacing:3.456000px;}
.ws1f{word-spacing:3.480000px;}
.ws49{word-spacing:3.540000px;}
.ws43{word-spacing:3.600000px;}
.wsea{word-spacing:3.648000px;}
.ws33{word-spacing:3.660000px;}
.wsaa{word-spacing:3.720000px;}
.ws7a{word-spacing:3.780000px;}
.ws27{word-spacing:3.840000px;}
.ws41{word-spacing:3.900000px;}
.ws2e{word-spacing:3.936000px;}
.ws2f{word-spacing:3.984000px;}
.ws74{word-spacing:4.032000px;}
.ws50{word-spacing:4.080000px;}
.wsd9{word-spacing:4.140000px;}
.wsb3{word-spacing:4.200000px;}
.wsa0{word-spacing:4.260000px;}
.ws4d{word-spacing:4.320000px;}
.ws22{word-spacing:4.380000px;}
.wscc{word-spacing:4.440000px;}
.wsa1{word-spacing:4.500000px;}
.ws25{word-spacing:4.620000px;}
.ws23{word-spacing:4.680000px;}
.wsc3{word-spacing:4.740000px;}
.wsab{word-spacing:4.800000px;}
.ws72{word-spacing:4.860000px;}
.ws9{word-spacing:4.920000px;}
.wsc{word-spacing:4.980000px;}
.wsc8{word-spacing:5.460000px;}
.wse5{word-spacing:5.520000px;}
.wsb4{word-spacing:6.900000px;}
.ws65{word-spacing:24.345000px;}
.ws64{word-spacing:32.850000px;}
.ws66{word-spacing:49.860000px;}
.ws68{word-spacing:53.685000px;}
.ws6a{word-spacing:54.585000px;}
.ws6b{word-spacing:56.565000px;}
.ws70{word-spacing:60.255000px;}
.ws6d{word-spacing:61.605000px;}
.ws6e{word-spacing:67.725000px;}
.ws67{word-spacing:69.975000px;}
.ws69{word-spacing:87.390000px;}
.ws6c{word-spacing:94.860000px;}
.ws63{word-spacing:96.480000px;}
.ws6f{word-spacing:107.100000px;}
.ws62{word-spacing:472.320000px;}
._c{margin-left:-2898.096000px;}
._b{margin-left:-2874.288000px;}
._3{margin-left:-9.368400px;}
._10{margin-left:-8.040000px;}
._2{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-4.170000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.080000px;}
._6{width:1.056000px;}
._e{width:2.208000px;}
._9{width:3.480000px;}
._8{width:5.400000px;}
._7{width:7.290000px;}
._d{width:8.700000px;}
._a{width:9.756000px;}
._f{width:12.600000px;}
._14{width:65.835000px;}
._18{width:78.075000px;}
._12{width:80.865000px;}
._13{width:82.440000px;}
._15{width:87.480000px;}
._19{width:91.305000px;}
._16{width:97.605000px;}
._17{width:106.110000px;}
._11{width:147.285000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:27.984000px;}
.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;}
.fsb{font-size:54.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;}
.y2d{bottom:47.777250px;}
.y131{bottom:80.312100px;}
.y11e{bottom:83.247750px;}
.yc6{bottom:83.448600px;}
.y60{bottom:83.635350px;}
.y9e{bottom:83.770350px;}
.y91{bottom:83.779200px;}
.y8d{bottom:84.098100px;}
.y119{bottom:84.290250px;}
.y14f{bottom:86.312100px;}
.y2a{bottom:88.026750px;}
.y223{bottom:89.263500px;}
.yc3{bottom:89.312100px;}
.y197{bottom:91.112100px;}
.y130{bottom:98.312100px;}
.y11d{bottom:98.991750px;}
.yc5{bottom:99.192600px;}
.y90{bottom:99.523200px;}
.y8c{bottom:99.842100px;}
.y118{bottom:100.790250px;}
.y5f{bottom:101.635350px;}
.y9d{bottom:101.770350px;}
.y75{bottom:101.920350px;}
.y29{bottom:103.023000px;}
.y222{bottom:104.263500px;}
.y14e{bottom:104.312100px;}
.yc2{bottom:107.312100px;}
.y196{bottom:109.112100px;}
.yc4{bottom:114.936600px;}
.y12f{bottom:116.312100px;}
.y117{bottom:117.290250px;}
.y221{bottom:119.263500px;}
.y5e{bottom:119.635350px;}
.y9c{bottom:119.770350px;}
.y74{bottom:119.920350px;}
.y14d{bottom:122.312100px;}
.yc1{bottom:125.312100px;}
.y11c{bottom:127.042950px;}
.y195{bottom:127.112100px;}
.y220{bottom:134.263500px;}
.y12e{bottom:134.312100px;}
.y5d{bottom:137.635350px;}
.y9b{bottom:137.770350px;}
.y73{bottom:137.920350px;}
.y14c{bottom:140.312100px;}
.y116{bottom:142.684350px;}
.y11b{bottom:142.786950px;}
.yc0{bottom:143.312100px;}
.y194{bottom:145.112100px;}
.y21f{bottom:149.263500px;}
.y17b{bottom:149.684700px;}
.y113{bottom:150.176850px;}
.y12d{bottom:152.312100px;}
.y1e5{bottom:155.365350px;}
.y5c{bottom:155.635350px;}
.y9a{bottom:155.770350px;}
.y72{bottom:155.920350px;}
.y115{bottom:157.680600px;}
.y14b{bottom:158.312100px;}
.ybf{bottom:161.312100px;}
.y193{bottom:163.112100px;}
.y21e{bottom:164.263500px;}
.y112{bottom:165.173100px;}
.y17a{bottom:165.428700px;}
.y12c{bottom:170.312100px;}
.y26{bottom:172.672050px;}
.y114{bottom:172.676850px;}
.y5b{bottom:173.635350px;}
.y99{bottom:173.770350px;}
.y1ae{bottom:173.777100px;}
.y71{bottom:173.920350px;}
.y14a{bottom:176.312100px;}
.y21d{bottom:179.263500px;}
.ybe{bottom:179.312100px;}
.y192{bottom:181.112100px;}
.y12b{bottom:188.312100px;}
.y25{bottom:190.672050px;}
.y1e4{bottom:191.365350px;}
.y5a{bottom:191.635350px;}
.y98{bottom:191.770350px;}
.y1ad{bottom:191.777100px;}
.y70{bottom:191.920350px;}
.y21c{bottom:194.263500px;}
.y149{bottom:194.312100px;}
.ybd{bottom:197.312100px;}
.y191{bottom:199.112100px;}
.y111{bottom:200.936850px;}
.y12a{bottom:206.312100px;}
.y10e{bottom:208.429350px;}
.y24{bottom:208.672050px;}
.y1df{bottom:209.230350px;}
.y21b{bottom:209.263500px;}
.y59{bottom:209.635350px;}
.y97{bottom:209.770350px;}
.y1ac{bottom:209.777100px;}
.y6f{bottom:209.920350px;}
.y148{bottom:212.312100px;}
.ybc{bottom:215.312100px;}
.y110{bottom:215.933100px;}
.y190{bottom:217.112100px;}
.y10d{bottom:223.425600px;}
.y21a{bottom:224.263500px;}
.y129{bottom:224.312100px;}
.y23{bottom:226.672050px;}
.y58{bottom:227.635350px;}
.y96{bottom:227.770350px;}
.y1ab{bottom:227.777100px;}
.y6e{bottom:227.920350px;}
.y147{bottom:230.312100px;}
.y10f{bottom:230.929350px;}
.ybb{bottom:233.312100px;}
.y18f{bottom:235.112100px;}
.y219{bottom:239.263500px;}
.y128{bottom:242.312100px;}
.y22{bottom:244.672050px;}
.y1e3{bottom:245.365350px;}
.y1de{bottom:245.635350px;}
.y95{bottom:245.770350px;}
.y1aa{bottom:245.777100px;}
.y6d{bottom:245.920350px;}
.y146{bottom:248.312100px;}
.yba{bottom:251.312100px;}
.y18e{bottom:253.112100px;}
.y218{bottom:254.263500px;}
.y10c{bottom:259.189350px;}
.y107{bottom:259.221000px;}
.y127{bottom:260.312100px;}
.y21{bottom:262.672050px;}
.y57{bottom:263.230350px;}
.y1dd{bottom:263.635350px;}
.y94{bottom:263.770350px;}
.y1a9{bottom:263.777100px;}
.y6c{bottom:263.920350px;}
.y145{bottom:266.312100px;}
.y109{bottom:266.724750px;}
.y217{bottom:269.263500px;}
.yb9{bottom:269.312100px;}
.y18d{bottom:271.112100px;}
.y10b{bottom:274.185600px;}
.y106{bottom:274.217250px;}
.y126{bottom:278.312100px;}
.y20{bottom:280.672050px;}
.y1dc{bottom:281.635350px;}
.y108{bottom:281.721000px;}
.y93{bottom:281.770350px;}
.y1a8{bottom:281.777100px;}
.y6b{bottom:281.920350px;}
.y216{bottom:284.263500px;}
.y144{bottom:284.312100px;}
.yb8{bottom:287.312100px;}
.y18c{bottom:289.112100px;}
.y10a{bottom:289.181850px;}
.y105{bottom:289.213500px;}
.y125{bottom:296.312100px;}
.y1f{bottom:298.672050px;}
.y215{bottom:299.263500px;}
.y1e2{bottom:299.365350px;}
.y1db{bottom:299.635350px;}
.y92{bottom:299.770350px;}
.y1a7{bottom:299.777100px;}
.y6a{bottom:299.920350px;}
.y143{bottom:302.312100px;}
.yb7{bottom:305.312100px;}
.y18b{bottom:307.112100px;}
.y214{bottom:314.263500px;}
.y124{bottom:314.312100px;}
.y1e{bottom:316.672050px;}
.y102{bottom:317.462250px;}
.y1da{bottom:317.635350px;}
.y56{bottom:317.770350px;}
.y1a6{bottom:317.777100px;}
.y69{bottom:317.920350px;}
.y142{bottom:320.312100px;}
.yb6{bottom:323.312100px;}
.y18a{bottom:325.112100px;}
.y213{bottom:329.263500px;}
.y165{bottom:332.312100px;}
.y101{bottom:332.458500px;}
.y1d{bottom:334.672050px;}
.y1d9{bottom:335.635350px;}
.y55{bottom:335.770350px;}
.y1a5{bottom:335.777100px;}
.y68{bottom:335.920350px;}
.y141{bottom:338.312100px;}
.y104{bottom:339.973500px;}
.yfd{bottom:339.985350px;}
.yb5{bottom:341.312100px;}
.y189{bottom:343.112100px;}
.y212{bottom:344.263500px;}
.y100{bottom:347.454750px;}
.y103{bottom:347.466000px;}
.y123{bottom:349.805250px;}
.y164{bottom:350.312100px;}
.y1c{bottom:352.672050px;}
.y1d8{bottom:353.635350px;}
.y54{bottom:353.770350px;}
.y1a4{bottom:353.777100px;}
.y67{bottom:353.920350px;}
.yfc{bottom:354.981600px;}
.y140{bottom:356.312100px;}
.y211{bottom:359.263500px;}
.yb4{bottom:359.312100px;}
.y188{bottom:361.112100px;}
.yff{bottom:362.451000px;}
.y122{bottom:364.805250px;}
.y8e{bottom:364.838400px;}
.y163{bottom:368.312100px;}
.y1b{bottom:370.672050px;}
.y1d7{bottom:371.635350px;}
.y53{bottom:371.770350px;}
.y1a3{bottom:371.777100px;}
.y66{bottom:371.920350px;}
.y210{bottom:374.263500px;}
.y13f{bottom:374.312100px;}
.yb3{bottom:377.312100px;}
.yfe{bottom:377.447250px;}
.y187{bottom:379.112100px;}
.y121{bottom:379.805250px;}
.y162{bottom:386.312100px;}
.y28{bottom:388.672050px;}
.y20f{bottom:389.263500px;}
.y1d6{bottom:389.635350px;}
.y52{bottom:389.770350px;}
.y1a2{bottom:389.777100px;}
.y65{bottom:389.920350px;}
.y13e{bottom:392.312100px;}
.y120{bottom:394.805250px;}
.yb2{bottom:395.312100px;}
.y186{bottom:397.112100px;}
.y20e{bottom:404.263500px;}
.y161{bottom:404.312100px;}
.yf9{bottom:405.719100px;}
.yfa{bottom:405.730350px;}
.y1a{bottom:406.269150px;}
.y27{bottom:406.672050px;}
.y1e1{bottom:407.365350px;}
.y1d5{bottom:407.635350px;}
.y51{bottom:407.770350px;}
.y1a1{bottom:407.777100px;}
.y64{bottom:407.920350px;}
.y13d{bottom:410.312100px;}
.yb1{bottom:413.312100px;}
.y185{bottom:415.112100px;}
.y20d{bottom:419.263500px;}
.yf7{bottom:419.837850px;}
.yf8{bottom:420.715350px;}
.yfb{bottom:420.726600px;}
.y160{bottom:422.312100px;}
.y1d4{bottom:425.635350px;}
.y50{bottom:425.770350px;}
.y1a0{bottom:425.777100px;}
.y63{bottom:425.920350px;}
.yf5{bottom:427.330350px;}
.y13c{bottom:428.312100px;}
.yb0{bottom:431.312100px;}
.y184{bottom:433.112100px;}
.y20c{bottom:434.263500px;}
.y24d{bottom:440.263500px;}
.y15f{bottom:440.312100px;}
.y11f{bottom:443.515350px;}
.y1d3{bottom:443.635350px;}
.y4f{bottom:443.770350px;}
.y19f{bottom:443.777100px;}
.y62{bottom:443.920350px;}
.y13b{bottom:446.312100px;}
.yf6{bottom:448.964100px;}
.y20b{bottom:449.263500px;}
.yaf{bottom:449.312100px;}
.y183{bottom:451.112100px;}
.y24c{bottom:455.263500px;}
.y15e{bottom:458.312100px;}
.y1d2{bottom:461.635350px;}
.y4e{bottom:461.770350px;}
.y19e{bottom:461.777100px;}
.y20a{bottom:464.263500px;}
.yae{bottom:467.312100px;}
.y182{bottom:469.112100px;}
.y24b{bottom:470.263500px;}
.y15d{bottom:476.312100px;}
.y209{bottom:479.263500px;}
.y61{bottom:479.515350px;}
.y1d1{bottom:479.635350px;}
.y4d{bottom:479.770350px;}
.y19d{bottom:479.777100px;}
.y19{bottom:480.054900px;}
.yf4{bottom:480.737100px;}
.y13a{bottom:481.805250px;}
.y24a{bottom:485.263500px;}
.yad{bottom:485.312100px;}
.y181{bottom:487.112100px;}
.y208{bottom:494.263500px;}
.y15c{bottom:494.312100px;}
.y139{bottom:496.805250px;}
.y1d0{bottom:497.635350px;}
.y4c{bottom:497.770350px;}
.y19c{bottom:497.777100px;}
.y18{bottom:498.067950px;}
.yf3{bottom:500.237100px;}
.y249{bottom:500.263500px;}
.yac{bottom:503.312100px;}
.y180{bottom:505.112100px;}
.y207{bottom:509.263500px;}
.y138{bottom:511.805250px;}
.y15b{bottom:512.312100px;}
.y248{bottom:515.263500px;}
.y1cf{bottom:515.635350px;}
.y4b{bottom:515.770350px;}
.y19b{bottom:515.777100px;}
.yf2{bottom:519.737100px;}
.yab{bottom:521.312100px;}
.y1b9{bottom:523.112100px;}
.y206{bottom:524.263500px;}
.y17{bottom:525.412950px;}
.y137{bottom:526.805250px;}
.y247{bottom:530.263500px;}
.y15a{bottom:530.312100px;}
.y1ce{bottom:533.635350px;}
.y4a{bottom:533.770350px;}
.y19a{bottom:533.777100px;}
.yf1{bottom:539.237100px;}
.y205{bottom:539.263500px;}
.yaa{bottom:539.312100px;}
.y17f{bottom:539.952750px;}
.y1b8{bottom:541.112100px;}
.y136{bottom:541.805250px;}
.y16{bottom:543.412950px;}
.y246{bottom:545.263500px;}
.y159{bottom:548.312100px;}
.y1cd{bottom:551.635350px;}
.y49{bottom:551.770350px;}
.y199{bottom:551.777100px;}
.y204{bottom:554.263500px;}
.y17e{bottom:555.558750px;}
.y135{bottom:556.805250px;}
.ya9{bottom:557.312100px;}
.y1b7{bottom:559.112100px;}
.y245{bottom:560.263500px;}
.y15{bottom:561.412950px;}
.y158{bottom:566.312100px;}
.y203{bottom:569.263500px;}
.y1cc{bottom:569.635350px;}
.y48{bottom:569.770350px;}
.y198{bottom:569.777100px;}
.y17d{bottom:569.920350px;}
.y244{bottom:575.263500px;}
.ya8{bottom:575.312100px;}
.y1b6{bottom:577.112100px;}
.y14{bottom:579.412950px;}
.y202{bottom:584.263500px;}
.y157{bottom:584.312100px;}
.yd6{bottom:587.312100px;}
.y17c{bottom:587.515350px;}
.y1cb{bottom:587.635350px;}
.y47{bottom:587.770350px;}
.yf0{bottom:587.777100px;}
.y134{bottom:587.920350px;}
.y243{bottom:590.263500px;}
.y1b5{bottom:595.112100px;}
.y13{bottom:597.412950px;}
.y201{bottom:599.263500px;}
.y179{bottom:601.805250px;}
.y156{bottom:602.312100px;}
.y242{bottom:605.263500px;}
.yd5{bottom:605.312100px;}
.y133{bottom:605.515350px;}
.y1ca{bottom:605.635350px;}
.y46{bottom:605.770350px;}
.yef{bottom:605.777100px;}
.ya7{bottom:610.805250px;}
.y1b4{bottom:613.112100px;}
.y200{bottom:614.263500px;}
.y12{bottom:615.412950px;}
.y178{bottom:616.805250px;}
.y241{bottom:620.263500px;}
.yd4{bottom:623.312100px;}
.y132{bottom:623.515350px;}
.y1c9{bottom:623.635350px;}
.y45{bottom:623.770350px;}
.yee{bottom:623.777100px;}
.ya6{bottom:625.805250px;}
.y1ff{bottom:629.263500px;}
.y1b3{bottom:631.112100px;}
.y177{bottom:631.805250px;}
.y11{bottom:633.412950px;}
.y240{bottom:635.263500px;}
.y155{bottom:637.805250px;}
.ya5{bottom:640.805250px;}
.y1c8{bottom:641.635350px;}
.y44{bottom:641.770350px;}
.yed{bottom:641.777100px;}
.y1fe{bottom:644.263500px;}
.y176{bottom:646.805250px;}
.y1b2{bottom:649.112100px;}
.y23f{bottom:650.263500px;}
.y10{bottom:651.412950px;}
.y154{bottom:652.805250px;}
.ya4{bottom:655.805250px;}
.yd3{bottom:658.805250px;}
.y1fd{bottom:659.263500px;}
.y1c7{bottom:659.635350px;}
.y43{bottom:659.770350px;}
.yec{bottom:659.777100px;}
.y23e{bottom:665.263500px;}
.y1b1{bottom:667.112100px;}
.y153{bottom:667.805250px;}
.yf{bottom:669.412950px;}
.ya3{bottom:670.805250px;}
.yd2{bottom:673.805250px;}
.y1fc{bottom:674.263500px;}
.y1c6{bottom:677.635350px;}
.y42{bottom:677.770350px;}
.yeb{bottom:677.777100px;}
.y175{bottom:677.920350px;}
.y23d{bottom:680.263500px;}
.y152{bottom:682.805250px;}
.ya2{bottom:685.805250px;}
.ye{bottom:687.412950px;}
.yd1{bottom:688.805250px;}
.y1fb{bottom:689.263500px;}
.y23c{bottom:695.263500px;}
.y174{bottom:695.515350px;}
.y1c5{bottom:695.635350px;}
.y41{bottom:695.770350px;}
.yea{bottom:695.777100px;}
.ya1{bottom:700.805250px;}
.y1b0{bottom:701.952750px;}
.yd0{bottom:703.805250px;}
.y1fa{bottom:704.263500px;}
.y23b{bottom:710.263500px;}
.y1c4{bottom:713.635350px;}
.y40{bottom:713.770350px;}
.ye9{bottom:713.777100px;}
.y151{bottom:713.927100px;}
.y1af{bottom:717.558750px;}
.ycf{bottom:718.805250px;}
.y1f9{bottom:719.263500px;}
.y23a{bottom:725.263500px;}
.y150{bottom:731.522100px;}
.y1c3{bottom:731.635350px;}
.y3f{bottom:731.770350px;}
.ye8{bottom:731.777100px;}
.ya0{bottom:731.920350px;}
.yd{bottom:732.567300px;}
.yce{bottom:733.805250px;}
.y1f8{bottom:734.263500px;}
.y239{bottom:740.263500px;}
.yc{bottom:745.018050px;}
.ycd{bottom:748.805250px;}
.y1f7{bottom:749.263500px;}
.y9f{bottom:749.515350px;}
.y1c2{bottom:749.635350px;}
.y3e{bottom:749.770350px;}
.ye7{bottom:749.777100px;}
.y238{bottom:755.263500px;}
.ycc{bottom:763.805250px;}
.y173{bottom:764.170350px;}
.y1f6{bottom:764.263500px;}
.y1c1{bottom:767.635350px;}
.y3d{bottom:767.770350px;}
.ye6{bottom:767.777100px;}
.y237{bottom:770.263500px;}
.ycb{bottom:778.805250px;}
.y1f5{bottom:779.263500px;}
.yb{bottom:782.158950px;}
.y172{bottom:782.170350px;}
.y236{bottom:785.263500px;}
.y1c0{bottom:785.635350px;}
.y3c{bottom:785.770350px;}
.ye5{bottom:785.777100px;}
.yca{bottom:793.805250px;}
.y1f4{bottom:794.263500px;}
.ya{bottom:795.658950px;}
.y171{bottom:800.170350px;}
.y235{bottom:800.263500px;}
.y1bf{bottom:803.635350px;}
.y9{bottom:803.733600px;}
.y3b{bottom:803.770350px;}
.ye4{bottom:803.777100px;}
.yc9{bottom:808.805250px;}
.y1f3{bottom:809.263500px;}
.y234{bottom:815.263500px;}
.y170{bottom:818.170350px;}
.y1be{bottom:821.635350px;}
.y3a{bottom:821.770350px;}
.ye3{bottom:821.777100px;}
.y8{bottom:822.658950px;}
.y1f2{bottom:824.263500px;}
.y233{bottom:830.263500px;}
.y8b{bottom:833.770350px;}
.y16f{bottom:836.170350px;}
.y1f1{bottom:839.263500px;}
.y1bd{bottom:839.635350px;}
.y39{bottom:839.770350px;}
.ye2{bottom:839.777100px;}
.yc8{bottom:839.920350px;}
.y232{bottom:845.263500px;}
.y7f{bottom:845.688750px;}
.y7{bottom:851.380950px;}
.y8a{bottom:851.770350px;}
.y16e{bottom:854.170350px;}
.y1f0{bottom:854.263500px;}
.yc7{bottom:857.515350px;}
.y1bc{bottom:857.635350px;}
.y38{bottom:857.770350px;}
.ye1{bottom:857.777100px;}
.y231{bottom:860.263500px;}
.y7e{bottom:860.688750px;}
.y1ef{bottom:869.263500px;}
.y89{bottom:869.770350px;}
.y16d{bottom:872.170350px;}
.y230{bottom:875.263500px;}
.y1bb{bottom:875.635350px;}
.y37{bottom:875.770350px;}
.ye0{bottom:875.777100px;}
.y1ee{bottom:884.263500px;}
.y88{bottom:887.770350px;}
.y16c{bottom:890.170350px;}
.y22f{bottom:890.263500px;}
.y36{bottom:893.770350px;}
.y7d{bottom:893.772600px;}
.ydf{bottom:893.777100px;}
.y6{bottom:897.543600px;}
.y1ed{bottom:899.263500px;}
.y22e{bottom:905.263500px;}
.y87{bottom:905.770350px;}
.y16b{bottom:908.170350px;}
.y1ba{bottom:911.230350px;}
.y1e0{bottom:911.365350px;}
.y35{bottom:911.770350px;}
.yde{bottom:911.777100px;}
.y1ec{bottom:914.263500px;}
.y22d{bottom:920.263500px;}
.y86{bottom:923.770350px;}
.y1eb{bottom:929.263500px;}
.y7c{bottom:929.637600px;}
.y34{bottom:929.770350px;}
.ydd{bottom:929.777100px;}
.y5{bottom:934.004400px;}
.y22c{bottom:935.263500px;}
.y85{bottom:941.770350px;}
.y16a{bottom:943.663500px;}
.y1ea{bottom:944.263500px;}
.y7b{bottom:947.637600px;}
.y33{bottom:947.770350px;}
.ydc{bottom:947.777100px;}
.y22b{bottom:950.263500px;}
.y169{bottom:958.663500px;}
.y1e9{bottom:959.263500px;}
.y84{bottom:959.770350px;}
.y22a{bottom:965.263500px;}
.y7a{bottom:965.637600px;}
.y32{bottom:965.770350px;}
.ydb{bottom:965.777100px;}
.y4{bottom:970.465200px;}
.y168{bottom:973.663500px;}
.y1e8{bottom:974.263500px;}
.y229{bottom:980.263500px;}
.y31{bottom:983.770350px;}
.yda{bottom:983.777100px;}
.y167{bottom:988.663500px;}
.y1e7{bottom:989.263500px;}
.y228{bottom:995.263500px;}
.y83{bottom:995.268750px;}
.y79{bottom:1001.502600px;}
.y30{bottom:1001.770350px;}
.yd9{bottom:1001.777100px;}
.y1e6{bottom:1004.263500px;}
.y3{bottom:1006.926000px;}
.y227{bottom:1010.263500px;}
.y82{bottom:1010.268750px;}
.y2f{bottom:1019.770350px;}
.yd8{bottom:1019.777100px;}
.y226{bottom:1025.263500px;}
.y81{bottom:1025.268750px;}
.y166{bottom:1037.365350px;}
.y78{bottom:1037.367600px;}
.y2e{bottom:1037.770350px;}
.yd7{bottom:1037.777100px;}
.y225{bottom:1040.263500px;}
.y80{bottom:1040.268750px;}
.y2{bottom:1069.300350px;}
.y11a{bottom:1132.418250px;}
.y8f{bottom:1132.418400px;}
.y76{bottom:1132.418700px;}
.y77{bottom:1132.421700px;}
.y224{bottom:1132.423500px;}
.y2c{bottom:1136.092500px;}
.y2b{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.h10{height:31.267090px;}
.hc{height:32.761230px;}
.h7{height:32.805176px;}
.hf{height:33.351562px;}
.he{height:34.945312px;}
.hd{height:34.992188px;}
.h16{height:37.520508px;}
.hb{height:41.689453px;}
.h15{height:42.054361px;}
.ha{height:43.681641px;}
.h9{height:43.740234px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h11{height:61.282090px;}
.h13{height:69.258713px;}
.h14{height:69.269513px;}
.h12{height:91.297090px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:70.582650px;}
.xc{left:76.535400px;}
.x20{left:78.661350px;}
.x42{left:84.406200px;}
.x43{left:92.133750px;}
.x45{left:93.586200px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x1f{left:102.047400px;}
.x46{left:104.236200px;}
.x4{left:106.299150px;}
.xd{left:110.570400px;}
.x16{left:122.190300px;}
.x3b{left:123.295350px;}
.x3{left:125.427900px;}
.x1e{left:130.505400px;}
.x7{left:131.811000px;}
.xe{left:144.755400px;}
.x17{left:157.620300px;}
.x5{left:191.338650px;}
.x44{left:200.160750px;}
.x47{left:201.414300px;}
.x6{left:212.876400px;}
.x48{left:220.135350px;}
.x15{left:224.175300px;}
.x3a{left:228.475350px;}
.x14{left:232.365300px;}
.x39{left:250.120350px;}
.x24{left:274.242600px;}
.x28{left:277.538850px;}
.x25{left:278.945100px;}
.x1b{left:280.639950px;}
.x29{left:325.126350px;}
.x2a{left:330.605100px;}
.x21{left:332.843850px;}
.x26{left:420.650100px;}
.xb{left:455.041500px;}
.xf{left:457.115400px;}
.x27{left:472.231350px;}
.x18{left:478.351350px;}
.x8{left:480.471000px;}
.x3f{left:482.598600px;}
.x10{left:491.135400px;}
.x3e{left:494.135400px;}
.x19{left:503.863350px;}
.x41{left:510.475350px;}
.x1a{left:512.362200px;}
.x9{left:514.491000px;}
.x3c{left:518.586000px;}
.x1d{left:526.701000px;}
.x37{left:527.845350px;}
.x40{left:552.760350px;}
.x4a{left:574.880400px;}
.x2d{left:581.958450px;}
.x2c{left:584.725950px;}
.x32{left:589.614150px;}
.x49{left:591.942450px;}
.x2b{left:595.244700px;}
.x2e{left:596.954700px;}
.x33{left:599.547900px;}
.x31{left:602.112900px;}
.x34{left:603.350400px;}
.x22{left:609.773850px;}
.x3d{left:619.461000px;}
.x13{left:663.492300px;}
.x2{left:693.365400px;}
.x2f{left:706.585950px;}
.x35{left:708.436650px;}
.x23{left:712.520100px;}
.x36{left:721.717650px;}
.x11{left:728.391600px;}
.x38{left:743.868150px;}
.x30{left:747.873450px;}
.x1c{left:749.647950px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.440000pt;}
.v5{vertical-align:20.098133pt;}
.v1{vertical-align:27.005867pt;}
.v4{vertical-align:45.360000pt;}
.v3{vertical-align:53.360000pt;}
.ls98{letter-spacing:-2.346667pt;}
.ls14{letter-spacing:-0.693333pt;}
.ls6f{letter-spacing:-0.533333pt;}
.ls88{letter-spacing:-0.426667pt;}
.ls65{letter-spacing:-0.360000pt;}
.ls52{letter-spacing:-0.320000pt;}
.lsa6{letter-spacing:-0.298667pt;}
.ls72{letter-spacing:-0.266667pt;}
.ls99{letter-spacing:-0.256000pt;}
.ls71{letter-spacing:-0.213333pt;}
.ls63{letter-spacing:-0.170667pt;}
.ls97{letter-spacing:-0.160000pt;}
.ls7d{letter-spacing:-0.128000pt;}
.ls39{letter-spacing:-0.106667pt;}
.ls15{letter-spacing:-0.053333pt;}
.ls53{letter-spacing:-0.042667pt;}
.ls13{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003680pt;}
.ls2{letter-spacing:0.005045pt;}
.ls3c{letter-spacing:0.042667pt;}
.ls25{letter-spacing:0.053333pt;}
.ls62{letter-spacing:0.076800pt;}
.ls40{letter-spacing:0.085333pt;}
.ls2b{letter-spacing:0.106667pt;}
.ls3b{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls5d{letter-spacing:0.170667pt;}
.ls9{letter-spacing:0.213333pt;}
.ls92{letter-spacing:0.256000pt;}
.ls42{letter-spacing:0.266667pt;}
.ls76{letter-spacing:0.298667pt;}
.ls2e{letter-spacing:0.320000pt;}
.ls8a{letter-spacing:0.341333pt;}
.ls4f{letter-spacing:0.373333pt;}
.ls93{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.426667pt;}
.ls75{letter-spacing:0.469333pt;}
.ls28{letter-spacing:0.480000pt;}
.ls4b{letter-spacing:0.512000pt;}
.lsd{letter-spacing:0.533333pt;}
.ls95{letter-spacing:0.554667pt;}
.lsa{letter-spacing:0.586667pt;}
.ls7f{letter-spacing:0.597333pt;}
.ls5{letter-spacing:0.640000pt;}
.ls3a{letter-spacing:0.682667pt;}
.lsf{letter-spacing:0.693333pt;}
.ls8c{letter-spacing:0.725333pt;}
.ls10{letter-spacing:0.746667pt;}
.ls33{letter-spacing:0.800000pt;}
.ls1c{letter-spacing:0.853333pt;}
.ls34{letter-spacing:0.906667pt;}
.ls9c{letter-spacing:0.938667pt;}
.ls38{letter-spacing:0.960000pt;}
.lsa0{letter-spacing:0.981333pt;}
.ls45{letter-spacing:1.013333pt;}
.ls8{letter-spacing:1.066667pt;}
.ls5a{letter-spacing:1.109333pt;}
.ls1b{letter-spacing:1.120000pt;}
.ls8f{letter-spacing:1.152000pt;}
.lse{letter-spacing:1.173333pt;}
.ls74{letter-spacing:1.194667pt;}
.ls7{letter-spacing:1.226667pt;}
.ls19{letter-spacing:1.280000pt;}
.ls1d{letter-spacing:1.333333pt;}
.ls8d{letter-spacing:1.365333pt;}
.ls4a{letter-spacing:1.386667pt;}
.ls94{letter-spacing:1.408000pt;}
.ls17{letter-spacing:1.440000pt;}
.lsa5{letter-spacing:1.450667pt;}
.ls12{letter-spacing:1.493333pt;}
.ls9d{letter-spacing:1.536000pt;}
.ls32{letter-spacing:1.546667pt;}
.ls48{letter-spacing:1.600000pt;}
.ls90{letter-spacing:1.621333pt;}
.ls27{letter-spacing:1.653333pt;}
.ls2d{letter-spacing:1.706667pt;}
.lsa2{letter-spacing:1.749333pt;}
.ls23{letter-spacing:1.760000pt;}
.ls8e{letter-spacing:1.792000pt;}
.ls31{letter-spacing:1.813333pt;}
.ls91{letter-spacing:1.834667pt;}
.lsb{letter-spacing:1.866667pt;}
.ls8b{letter-spacing:1.877333pt;}
.ls68{letter-spacing:1.920000pt;}
.ls7b{letter-spacing:1.962667pt;}
.ls1e{letter-spacing:1.973333pt;}
.ls6e{letter-spacing:2.005333pt;}
.ls11{letter-spacing:2.026667pt;}
.ls96{letter-spacing:2.048000pt;}
.ls4d{letter-spacing:2.080000pt;}
.ls9a{letter-spacing:2.090667pt;}
.ls4{letter-spacing:2.133333pt;}
.ls9b{letter-spacing:2.176000pt;}
.ls1a{letter-spacing:2.186667pt;}
.ls29{letter-spacing:2.240000pt;}
.ls6{letter-spacing:2.293333pt;}
.ls22{letter-spacing:2.346667pt;}
.lsa1{letter-spacing:2.389333pt;}
.ls30{letter-spacing:2.400000pt;}
.ls5c{letter-spacing:2.432000pt;}
.ls43{letter-spacing:2.453333pt;}
.ls59{letter-spacing:2.506667pt;}
.ls16{letter-spacing:2.560000pt;}
.ls78{letter-spacing:2.602667pt;}
.ls6c{letter-spacing:2.613333pt;}
.ls80{letter-spacing:2.666667pt;}
.ls6b{letter-spacing:2.720000pt;}
.ls5f{letter-spacing:2.773333pt;}
.ls57{letter-spacing:2.826667pt;}
.ls20{letter-spacing:2.880000pt;}
.ls7e{letter-spacing:2.901333pt;}
.ls2c{letter-spacing:2.933333pt;}
.ls50{letter-spacing:2.986667pt;}
.ls36{letter-spacing:3.040000pt;}
.ls70{letter-spacing:3.072000pt;}
.ls64{letter-spacing:3.093333pt;}
.ls9e{letter-spacing:3.114667pt;}
.ls24{letter-spacing:3.146667pt;}
.ls49{letter-spacing:3.200000pt;}
.lsa3{letter-spacing:3.242667pt;}
.ls2a{letter-spacing:3.253333pt;}
.ls82{letter-spacing:3.306667pt;}
.ls9f{letter-spacing:3.328000pt;}
.ls47{letter-spacing:3.360000pt;}
.ls79{letter-spacing:3.413333pt;}
.ls58{letter-spacing:3.520000pt;}
.ls3d{letter-spacing:3.573333pt;}
.ls41{letter-spacing:3.584000pt;}
.ls51{letter-spacing:3.626667pt;}
.ls21{letter-spacing:3.680000pt;}
.ls73{letter-spacing:3.712000pt;}
.ls46{letter-spacing:3.733333pt;}
.ls54{letter-spacing:3.786667pt;}
.ls4e{letter-spacing:3.840000pt;}
.ls2f{letter-spacing:3.946667pt;}
.lsc{letter-spacing:4.000000pt;}
.ls26{letter-spacing:4.053333pt;}
.ls3f{letter-spacing:4.106667pt;}
.ls55{letter-spacing:4.266667pt;}
.ls3e{letter-spacing:4.320000pt;}
.ls85{letter-spacing:4.373333pt;}
.ls77{letter-spacing:4.426667pt;}
.ls81{letter-spacing:4.533333pt;}
.ls66{letter-spacing:4.586667pt;}
.ls44{letter-spacing:4.640000pt;}
.ls5b{letter-spacing:4.650667pt;}
.ls67{letter-spacing:4.693333pt;}
.ls84{letter-spacing:4.746667pt;}
.ls7a{letter-spacing:4.800000pt;}
.ls37{letter-spacing:4.853333pt;}
.ls86{letter-spacing:5.013333pt;}
.ls83{letter-spacing:5.066667pt;}
.ls89{letter-spacing:5.120000pt;}
.lsa4{letter-spacing:5.333333pt;}
.ls7c{letter-spacing:5.386667pt;}
.ls69{letter-spacing:5.653333pt;}
.ls35{letter-spacing:6.133333pt;}
.ls6d{letter-spacing:6.293333pt;}
.ls6a{letter-spacing:6.506667pt;}
.ls4c{letter-spacing:6.560000pt;}
.ls5e{letter-spacing:7.040000pt;}
.ls56{letter-spacing:7.253333pt;}
.ls87{letter-spacing:8.426667pt;}
.ls0{letter-spacing:52.918112pt;}
.ls1{letter-spacing:52.918645pt;}
.ls60{letter-spacing:67.638133pt;}
.ls61{letter-spacing:74.298400pt;}
.ws0{word-spacing:-31.284267pt;}
.ws5f{word-spacing:-20.373333pt;}
.wsdc{word-spacing:-19.946667pt;}
.wsaf{word-spacing:-17.973333pt;}
.wsca{word-spacing:-17.706667pt;}
.ws2d{word-spacing:-17.653333pt;}
.ws3{word-spacing:-17.333333pt;}
.ws15{word-spacing:-17.013333pt;}
.wsa9{word-spacing:-16.746667pt;}
.ws3a{word-spacing:-16.693333pt;}
.ws54{word-spacing:-16.533333pt;}
.ws55{word-spacing:-16.373333pt;}
.wsdd{word-spacing:-16.266667pt;}
.ws14{word-spacing:-16.213333pt;}
.wsbf{word-spacing:-16.053333pt;}
.wsd0{word-spacing:-16.000000pt;}
.ws84{word-spacing:-15.946667pt;}
.wsd4{word-spacing:-15.626667pt;}
.ws11{word-spacing:-15.466667pt;}
.ws3d{word-spacing:-15.413333pt;}
.ws81{word-spacing:-15.360000pt;}
.ws16{word-spacing:-15.306667pt;}
.ws92{word-spacing:-15.253333pt;}
.ws3f{word-spacing:-15.146667pt;}
.ws19{word-spacing:-15.093333pt;}
.wsd3{word-spacing:-14.986667pt;}
.ws93{word-spacing:-14.880000pt;}
.ws2{word-spacing:-14.826667pt;}
.ws3c{word-spacing:-14.720000pt;}
.ws60{word-spacing:-14.666667pt;}
.wsd2{word-spacing:-14.613333pt;}
.ws13{word-spacing:-14.560000pt;}
.ws98{word-spacing:-14.506667pt;}
.ws85{word-spacing:-14.400000pt;}
.ws3e{word-spacing:-14.346667pt;}
.wscf{word-spacing:-14.240000pt;}
.ws61{word-spacing:-14.186667pt;}
.ws97{word-spacing:-14.133333pt;}
.ws80{word-spacing:-14.080000pt;}
.wsdb{word-spacing:-14.026667pt;}
.wsc6{word-spacing:-13.973333pt;}
.ws3b{word-spacing:-13.920000pt;}
.wsbd{word-spacing:-13.866667pt;}
.ws38{word-spacing:-13.813333pt;}
.wsf4{word-spacing:-13.781333pt;}
.ws39{word-spacing:-13.760000pt;}
.wsce{word-spacing:-13.706667pt;}
.wsd1{word-spacing:-13.653333pt;}
.ws99{word-spacing:-13.546667pt;}
.ws12{word-spacing:-13.493333pt;}
.ws18{word-spacing:-13.386667pt;}
.ws17{word-spacing:-13.333333pt;}
.ws96{word-spacing:-13.280000pt;}
.ws8d{word-spacing:-13.120000pt;}
.ws83{word-spacing:-12.800000pt;}
.wsf1{word-spacing:-12.757333pt;}
.ws82{word-spacing:-12.672000pt;}
.wse2{word-spacing:-12.160000pt;}
.wsbe{word-spacing:-12.000000pt;}
.wse0{word-spacing:-11.946667pt;}
.ws5{word-spacing:-11.861333pt;}
.wsf2{word-spacing:-11.818667pt;}
.wsdf{word-spacing:-11.520000pt;}
.wsf3{word-spacing:-11.392000pt;}
.ws2c{word-spacing:-11.349333pt;}
.wsf5{word-spacing:-11.178667pt;}
.ws4{word-spacing:-11.120000pt;}
.wse1{word-spacing:-11.050667pt;}
.ws94{word-spacing:-10.880000pt;}
.ws95{word-spacing:-10.837333pt;}
.ws35{word-spacing:-10.752000pt;}
.ws5e{word-spacing:-10.709333pt;}
.ws2b{word-spacing:-10.666667pt;}
.ws7d{word-spacing:-10.624000pt;}
.wsb8{word-spacing:-10.538667pt;}
.ws1{word-spacing:-9.076144pt;}
.wsde{word-spacing:-8.320000pt;}
.ws78{word-spacing:-7.040000pt;}
.ws71{word-spacing:-6.218667pt;}
.ws30{word-spacing:-3.573333pt;}
.wsae{word-spacing:-3.413333pt;}
.ws4b{word-spacing:-3.360000pt;}
.wsf9{word-spacing:-3.328000pt;}
.ws79{word-spacing:-3.093333pt;}
.ws5a{word-spacing:-3.040000pt;}
.ws59{word-spacing:-2.933333pt;}
.ws58{word-spacing:-2.880000pt;}
.ws9a{word-spacing:-2.773333pt;}
.wsc2{word-spacing:-2.720000pt;}
.wsc0{word-spacing:-2.666667pt;}
.ws7{word-spacing:-2.565333pt;}
.ws52{word-spacing:-2.346667pt;}
.wsa{word-spacing:-2.133333pt;}
.ws8e{word-spacing:-2.080000pt;}
.ws8a{word-spacing:-2.005333pt;}
.ws20{word-spacing:-1.973333pt;}
.wsd8{word-spacing:-1.920000pt;}
.wsb5{word-spacing:-1.706667pt;}
.wsb1{word-spacing:-1.653333pt;}
.ws4c{word-spacing:-1.600000pt;}
.ws9b{word-spacing:-1.493333pt;}
.wsb6{word-spacing:-1.333333pt;}
.wse9{word-spacing:-1.280000pt;}
.ws1c{word-spacing:-1.226667pt;}
.wsd7{word-spacing:-1.173333pt;}
.ws9f{word-spacing:-1.066667pt;}
.ws48{word-spacing:-1.013333pt;}
.wsfa{word-spacing:-0.981333pt;}
.ws28{word-spacing:-0.960000pt;}
.ws9c{word-spacing:-0.906667pt;}
.ws5c{word-spacing:-0.853333pt;}
.wsa5{word-spacing:-0.800000pt;}
.wsec{word-spacing:-0.768000pt;}
.wsd6{word-spacing:-0.746667pt;}
.wsac{word-spacing:-0.693333pt;}
.wsc7{word-spacing:-0.640000pt;}
.ws4e{word-spacing:-0.586667pt;}
.wsda{word-spacing:-0.533333pt;}
.ws47{word-spacing:-0.480000pt;}
.wsd5{word-spacing:-0.426667pt;}
.wseb{word-spacing:-0.384000pt;}
.wsa2{word-spacing:-0.373333pt;}
.ws42{word-spacing:-0.320000pt;}
.wsa4{word-spacing:-0.298667pt;}
.ws45{word-spacing:-0.266667pt;}
.wsfc{word-spacing:-0.256000pt;}
.ws73{word-spacing:-0.213333pt;}
.ws77{word-spacing:-0.170667pt;}
.wsa7{word-spacing:-0.160000pt;}
.wsad{word-spacing:-0.128000pt;}
.ws57{word-spacing:-0.106667pt;}
.ws37{word-spacing:-0.085333pt;}
.ws75{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws7e{word-spacing:0.042667pt;}
.ws8{word-spacing:0.053333pt;}
.ws53{word-spacing:0.085333pt;}
.wsa6{word-spacing:0.106667pt;}
.wsb9{word-spacing:0.128000pt;}
.wse4{word-spacing:0.160000pt;}
.ws76{word-spacing:0.170667pt;}
.ws4a{word-spacing:0.213333pt;}
.ws8f{word-spacing:0.266667pt;}
.ws32{word-spacing:0.373333pt;}
.wsef{word-spacing:0.384000pt;}
.ws87{word-spacing:0.426667pt;}
.ws5d{word-spacing:0.469333pt;}
.wsc5{word-spacing:0.480000pt;}
.ws1d{word-spacing:0.533333pt;}
.ws1a{word-spacing:0.586667pt;}
.wsbc{word-spacing:0.640000pt;}
.wsf7{word-spacing:0.682667pt;}
.ws10{word-spacing:0.693333pt;}
.ws91{word-spacing:0.725333pt;}
.ws24{word-spacing:0.746667pt;}
.ws86{word-spacing:0.853333pt;}
.ws2a{word-spacing:0.906667pt;}
.ws8b{word-spacing:0.960000pt;}
.wsc9{word-spacing:1.013333pt;}
.wse7{word-spacing:1.109333pt;}
.ws51{word-spacing:1.120000pt;}
.ws36{word-spacing:1.152000pt;}
.ws88{word-spacing:1.173333pt;}
.ws7f{word-spacing:1.194667pt;}
.ws46{word-spacing:1.226667pt;}
.ws44{word-spacing:1.333333pt;}
.wse6{word-spacing:1.365333pt;}
.ws1e{word-spacing:1.386667pt;}
.wse3{word-spacing:1.440000pt;}
.ws7b{word-spacing:1.493333pt;}
.wsbb{word-spacing:1.546667pt;}
.ws29{word-spacing:1.600000pt;}
.wsee{word-spacing:1.621333pt;}
.wsd{word-spacing:1.653333pt;}
.wsf6{word-spacing:1.664000pt;}
.ws4f{word-spacing:1.706667pt;}
.ws1b{word-spacing:1.760000pt;}
.wsf0{word-spacing:1.792000pt;}
.ws8c{word-spacing:1.813333pt;}
.wsb0{word-spacing:1.920000pt;}
.wsa8{word-spacing:2.026667pt;}
.ws9e{word-spacing:2.080000pt;}
.wsc1{word-spacing:2.133333pt;}
.ws7c{word-spacing:2.176000pt;}
.ws26{word-spacing:2.186667pt;}
.wsed{word-spacing:2.218667pt;}
.ws40{word-spacing:2.240000pt;}
.wse8{word-spacing:2.261333pt;}
.ws5b{word-spacing:2.293333pt;}
.wsb7{word-spacing:2.346667pt;}
.ws56{word-spacing:2.400000pt;}
.wsf{word-spacing:2.453333pt;}
.ws31{word-spacing:2.506667pt;}
.wsc4{word-spacing:2.560000pt;}
.ws9d{word-spacing:2.602667pt;}
.wsa3{word-spacing:2.613333pt;}
.ws34{word-spacing:2.645333pt;}
.ws21{word-spacing:2.666667pt;}
.wsfb{word-spacing:2.688000pt;}
.wsb{word-spacing:2.720000pt;}
.wsb2{word-spacing:2.773333pt;}
.wse{word-spacing:2.826667pt;}
.wscd{word-spacing:2.880000pt;}
.wsba{word-spacing:2.901333pt;}
.wscb{word-spacing:2.986667pt;}
.wsf8{word-spacing:3.029333pt;}
.ws89{word-spacing:3.040000pt;}
.ws90{word-spacing:3.072000pt;}
.ws1f{word-spacing:3.093333pt;}
.ws49{word-spacing:3.146667pt;}
.ws43{word-spacing:3.200000pt;}
.wsea{word-spacing:3.242667pt;}
.ws33{word-spacing:3.253333pt;}
.wsaa{word-spacing:3.306667pt;}
.ws7a{word-spacing:3.360000pt;}
.ws27{word-spacing:3.413333pt;}
.ws41{word-spacing:3.466667pt;}
.ws2e{word-spacing:3.498667pt;}
.ws2f{word-spacing:3.541333pt;}
.ws74{word-spacing:3.584000pt;}
.ws50{word-spacing:3.626667pt;}
.wsd9{word-spacing:3.680000pt;}
.wsb3{word-spacing:3.733333pt;}
.wsa0{word-spacing:3.786667pt;}
.ws4d{word-spacing:3.840000pt;}
.ws22{word-spacing:3.893333pt;}
.wscc{word-spacing:3.946667pt;}
.wsa1{word-spacing:4.000000pt;}
.ws25{word-spacing:4.106667pt;}
.ws23{word-spacing:4.160000pt;}
.wsc3{word-spacing:4.213333pt;}
.wsab{word-spacing:4.266667pt;}
.ws72{word-spacing:4.320000pt;}
.ws9{word-spacing:4.373333pt;}
.wsc{word-spacing:4.426667pt;}
.wsc8{word-spacing:4.853333pt;}
.wse5{word-spacing:4.906667pt;}
.wsb4{word-spacing:6.133333pt;}
.ws65{word-spacing:21.640000pt;}
.ws64{word-spacing:29.200000pt;}
.ws66{word-spacing:44.320000pt;}
.ws68{word-spacing:47.720000pt;}
.ws6a{word-spacing:48.520000pt;}
.ws6b{word-spacing:50.280000pt;}
.ws70{word-spacing:53.560000pt;}
.ws6d{word-spacing:54.760000pt;}
.ws6e{word-spacing:60.200000pt;}
.ws67{word-spacing:62.200000pt;}
.ws69{word-spacing:77.680000pt;}
.ws6c{word-spacing:84.320000pt;}
.ws63{word-spacing:85.760000pt;}
.ws6f{word-spacing:95.200000pt;}
.ws62{word-spacing:419.840000pt;}
._c{margin-left:-2576.085333pt;}
._b{margin-left:-2554.922667pt;}
._3{margin-left:-8.327467pt;}
._10{margin-left:-7.146667pt;}
._2{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.706667pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.960000pt;}
._6{width:0.938667pt;}
._e{width:1.962667pt;}
._9{width:3.093333pt;}
._8{width:4.800000pt;}
._7{width:6.480000pt;}
._d{width:7.733333pt;}
._a{width:8.672000pt;}
._f{width:11.200000pt;}
._14{width:58.520000pt;}
._18{width:69.400000pt;}
._12{width:71.880000pt;}
._13{width:73.280000pt;}
._15{width:77.760000pt;}
._19{width:81.160000pt;}
._16{width:86.760000pt;}
._17{width:94.320000pt;}
._11{width:130.920000pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:24.874667pt;}
.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;}
.fsb{font-size:48.000000pt;}
.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;}
.y2d{bottom:42.468667pt;}
.y131{bottom:71.388533pt;}
.y11e{bottom:73.998000pt;}
.yc6{bottom:74.176533pt;}
.y60{bottom:74.342533pt;}
.y9e{bottom:74.462533pt;}
.y91{bottom:74.470400pt;}
.y8d{bottom:74.753867pt;}
.y119{bottom:74.924667pt;}
.y14f{bottom:76.721867pt;}
.y2a{bottom:78.246000pt;}
.y223{bottom:79.345333pt;}
.yc3{bottom:79.388533pt;}
.y197{bottom:80.988533pt;}
.y130{bottom:87.388533pt;}
.y11d{bottom:87.992667pt;}
.yc5{bottom:88.171200pt;}
.y90{bottom:88.465067pt;}
.y8c{bottom:88.748533pt;}
.y118{bottom:89.591333pt;}
.y5f{bottom:90.342533pt;}
.y9d{bottom:90.462533pt;}
.y75{bottom:90.595867pt;}
.y29{bottom:91.576000pt;}
.y222{bottom:92.678667pt;}
.y14e{bottom:92.721867pt;}
.yc2{bottom:95.388533pt;}
.y196{bottom:96.988533pt;}
.yc4{bottom:102.165867pt;}
.y12f{bottom:103.388533pt;}
.y117{bottom:104.258000pt;}
.y221{bottom:106.012000pt;}
.y5e{bottom:106.342533pt;}
.y9c{bottom:106.462533pt;}
.y74{bottom:106.595867pt;}
.y14d{bottom:108.721867pt;}
.yc1{bottom:111.388533pt;}
.y11c{bottom:112.927067pt;}
.y195{bottom:112.988533pt;}
.y220{bottom:119.345333pt;}
.y12e{bottom:119.388533pt;}
.y5d{bottom:122.342533pt;}
.y9b{bottom:122.462533pt;}
.y73{bottom:122.595867pt;}
.y14c{bottom:124.721867pt;}
.y116{bottom:126.830533pt;}
.y11b{bottom:126.921733pt;}
.yc0{bottom:127.388533pt;}
.y194{bottom:128.988533pt;}
.y21f{bottom:132.678667pt;}
.y17b{bottom:133.053067pt;}
.y113{bottom:133.490533pt;}
.y12d{bottom:135.388533pt;}
.y1e5{bottom:138.102533pt;}
.y5c{bottom:138.342533pt;}
.y9a{bottom:138.462533pt;}
.y72{bottom:138.595867pt;}
.y115{bottom:140.160533pt;}
.y14b{bottom:140.721867pt;}
.ybf{bottom:143.388533pt;}
.y193{bottom:144.988533pt;}
.y21e{bottom:146.012000pt;}
.y112{bottom:146.820533pt;}
.y17a{bottom:147.047733pt;}
.y12c{bottom:151.388533pt;}
.y26{bottom:153.486267pt;}
.y114{bottom:153.490533pt;}
.y5b{bottom:154.342533pt;}
.y99{bottom:154.462533pt;}
.y1ae{bottom:154.468533pt;}
.y71{bottom:154.595867pt;}
.y14a{bottom:156.721867pt;}
.y21d{bottom:159.345333pt;}
.ybe{bottom:159.388533pt;}
.y192{bottom:160.988533pt;}
.y12b{bottom:167.388533pt;}
.y25{bottom:169.486267pt;}
.y1e4{bottom:170.102533pt;}
.y5a{bottom:170.342533pt;}
.y98{bottom:170.462533pt;}
.y1ad{bottom:170.468533pt;}
.y70{bottom:170.595867pt;}
.y21c{bottom:172.678667pt;}
.y149{bottom:172.721867pt;}
.ybd{bottom:175.388533pt;}
.y191{bottom:176.988533pt;}
.y111{bottom:178.610533pt;}
.y12a{bottom:183.388533pt;}
.y10e{bottom:185.270533pt;}
.y24{bottom:185.486267pt;}
.y1df{bottom:185.982533pt;}
.y21b{bottom:186.012000pt;}
.y59{bottom:186.342533pt;}
.y97{bottom:186.462533pt;}
.y1ac{bottom:186.468533pt;}
.y6f{bottom:186.595867pt;}
.y148{bottom:188.721867pt;}
.ybc{bottom:191.388533pt;}
.y110{bottom:191.940533pt;}
.y190{bottom:192.988533pt;}
.y10d{bottom:198.600533pt;}
.y21a{bottom:199.345333pt;}
.y129{bottom:199.388533pt;}
.y23{bottom:201.486267pt;}
.y58{bottom:202.342533pt;}
.y96{bottom:202.462533pt;}
.y1ab{bottom:202.468533pt;}
.y6e{bottom:202.595867pt;}
.y147{bottom:204.721867pt;}
.y10f{bottom:205.270533pt;}
.ybb{bottom:207.388533pt;}
.y18f{bottom:208.988533pt;}
.y219{bottom:212.678667pt;}
.y128{bottom:215.388533pt;}
.y22{bottom:217.486267pt;}
.y1e3{bottom:218.102533pt;}
.y1de{bottom:218.342533pt;}
.y95{bottom:218.462533pt;}
.y1aa{bottom:218.468533pt;}
.y6d{bottom:218.595867pt;}
.y146{bottom:220.721867pt;}
.yba{bottom:223.388533pt;}
.y18e{bottom:224.988533pt;}
.y218{bottom:226.012000pt;}
.y10c{bottom:230.390533pt;}
.y107{bottom:230.418667pt;}
.y127{bottom:231.388533pt;}
.y21{bottom:233.486267pt;}
.y57{bottom:233.982533pt;}
.y1dd{bottom:234.342533pt;}
.y94{bottom:234.462533pt;}
.y1a9{bottom:234.468533pt;}
.y6c{bottom:234.595867pt;}
.y145{bottom:236.721867pt;}
.y109{bottom:237.088667pt;}
.y217{bottom:239.345333pt;}
.yb9{bottom:239.388533pt;}
.y18d{bottom:240.988533pt;}
.y10b{bottom:243.720533pt;}
.y106{bottom:243.748667pt;}
.y126{bottom:247.388533pt;}
.y20{bottom:249.486267pt;}
.y1dc{bottom:250.342533pt;}
.y108{bottom:250.418667pt;}
.y93{bottom:250.462533pt;}
.y1a8{bottom:250.468533pt;}
.y6b{bottom:250.595867pt;}
.y216{bottom:252.678667pt;}
.y144{bottom:252.721867pt;}
.yb8{bottom:255.388533pt;}
.y18c{bottom:256.988533pt;}
.y10a{bottom:257.050533pt;}
.y105{bottom:257.078667pt;}
.y125{bottom:263.388533pt;}
.y1f{bottom:265.486267pt;}
.y215{bottom:266.012000pt;}
.y1e2{bottom:266.102533pt;}
.y1db{bottom:266.342533pt;}
.y92{bottom:266.462533pt;}
.y1a7{bottom:266.468533pt;}
.y6a{bottom:266.595867pt;}
.y143{bottom:268.721867pt;}
.yb7{bottom:271.388533pt;}
.y18b{bottom:272.988533pt;}
.y214{bottom:279.345333pt;}
.y124{bottom:279.388533pt;}
.y1e{bottom:281.486267pt;}
.y102{bottom:282.188667pt;}
.y1da{bottom:282.342533pt;}
.y56{bottom:282.462533pt;}
.y1a6{bottom:282.468533pt;}
.y69{bottom:282.595867pt;}
.y142{bottom:284.721867pt;}
.yb6{bottom:287.388533pt;}
.y18a{bottom:288.988533pt;}
.y213{bottom:292.678667pt;}
.y165{bottom:295.388533pt;}
.y101{bottom:295.518667pt;}
.y1d{bottom:297.486267pt;}
.y1d9{bottom:298.342533pt;}
.y55{bottom:298.462533pt;}
.y1a5{bottom:298.468533pt;}
.y68{bottom:298.595867pt;}
.y141{bottom:300.721867pt;}
.y104{bottom:302.198667pt;}
.yfd{bottom:302.209200pt;}
.yb5{bottom:303.388533pt;}
.y189{bottom:304.988533pt;}
.y212{bottom:306.012000pt;}
.y100{bottom:308.848667pt;}
.y103{bottom:308.858667pt;}
.y123{bottom:310.938000pt;}
.y164{bottom:311.388533pt;}
.y1c{bottom:313.486267pt;}
.y1d8{bottom:314.342533pt;}
.y54{bottom:314.462533pt;}
.y1a4{bottom:314.468533pt;}
.y67{bottom:314.595867pt;}
.yfc{bottom:315.539200pt;}
.y140{bottom:316.721867pt;}
.y211{bottom:319.345333pt;}
.yb4{bottom:319.388533pt;}
.y188{bottom:320.988533pt;}
.yff{bottom:322.178667pt;}
.y122{bottom:324.271333pt;}
.y8e{bottom:324.300800pt;}
.y163{bottom:327.388533pt;}
.y1b{bottom:329.486267pt;}
.y1d7{bottom:330.342533pt;}
.y53{bottom:330.462533pt;}
.y1a3{bottom:330.468533pt;}
.y66{bottom:330.595867pt;}
.y210{bottom:332.678667pt;}
.y13f{bottom:332.721867pt;}
.yb3{bottom:335.388533pt;}
.yfe{bottom:335.508667pt;}
.y187{bottom:336.988533pt;}
.y121{bottom:337.604667pt;}
.y162{bottom:343.388533pt;}
.y28{bottom:345.486267pt;}
.y20f{bottom:346.012000pt;}
.y1d6{bottom:346.342533pt;}
.y52{bottom:346.462533pt;}
.y1a2{bottom:346.468533pt;}
.y65{bottom:346.595867pt;}
.y13e{bottom:348.721867pt;}
.y120{bottom:350.938000pt;}
.yb2{bottom:351.388533pt;}
.y186{bottom:352.988533pt;}
.y20e{bottom:359.345333pt;}
.y161{bottom:359.388533pt;}
.yf9{bottom:360.639200pt;}
.yfa{bottom:360.649200pt;}
.y1a{bottom:361.128133pt;}
.y27{bottom:361.486267pt;}
.y1e1{bottom:362.102533pt;}
.y1d5{bottom:362.342533pt;}
.y51{bottom:362.462533pt;}
.y1a1{bottom:362.468533pt;}
.y64{bottom:362.595867pt;}
.y13d{bottom:364.721867pt;}
.yb1{bottom:367.388533pt;}
.y185{bottom:368.988533pt;}
.y20d{bottom:372.678667pt;}
.yf7{bottom:373.189200pt;}
.yf8{bottom:373.969200pt;}
.yfb{bottom:373.979200pt;}
.y160{bottom:375.388533pt;}
.y1d4{bottom:378.342533pt;}
.y50{bottom:378.462533pt;}
.y1a0{bottom:378.468533pt;}
.y63{bottom:378.595867pt;}
.yf5{bottom:379.849200pt;}
.y13c{bottom:380.721867pt;}
.yb0{bottom:383.388533pt;}
.y184{bottom:384.988533pt;}
.y20c{bottom:386.012000pt;}
.y24d{bottom:391.345333pt;}
.y15f{bottom:391.388533pt;}
.y11f{bottom:394.235867pt;}
.y1d3{bottom:394.342533pt;}
.y4f{bottom:394.462533pt;}
.y19f{bottom:394.468533pt;}
.y62{bottom:394.595867pt;}
.y13b{bottom:396.721867pt;}
.yf6{bottom:399.079200pt;}
.y20b{bottom:399.345333pt;}
.yaf{bottom:399.388533pt;}
.y183{bottom:400.988533pt;}
.y24c{bottom:404.678667pt;}
.y15e{bottom:407.388533pt;}
.y1d2{bottom:410.342533pt;}
.y4e{bottom:410.462533pt;}
.y19e{bottom:410.468533pt;}
.y20a{bottom:412.678667pt;}
.yae{bottom:415.388533pt;}
.y182{bottom:416.988533pt;}
.y24b{bottom:418.012000pt;}
.y15d{bottom:423.388533pt;}
.y209{bottom:426.012000pt;}
.y61{bottom:426.235867pt;}
.y1d1{bottom:426.342533pt;}
.y4d{bottom:426.462533pt;}
.y19d{bottom:426.468533pt;}
.y19{bottom:426.715467pt;}
.yf4{bottom:427.321867pt;}
.y13a{bottom:428.271333pt;}
.y24a{bottom:431.345333pt;}
.yad{bottom:431.388533pt;}
.y181{bottom:432.988533pt;}
.y208{bottom:439.345333pt;}
.y15c{bottom:439.388533pt;}
.y139{bottom:441.604667pt;}
.y1d0{bottom:442.342533pt;}
.y4c{bottom:442.462533pt;}
.y19c{bottom:442.468533pt;}
.y18{bottom:442.727067pt;}
.yf3{bottom:444.655200pt;}
.y249{bottom:444.678667pt;}
.yac{bottom:447.388533pt;}
.y180{bottom:448.988533pt;}
.y207{bottom:452.678667pt;}
.y138{bottom:454.938000pt;}
.y15b{bottom:455.388533pt;}
.y248{bottom:458.012000pt;}
.y1cf{bottom:458.342533pt;}
.y4b{bottom:458.462533pt;}
.y19b{bottom:458.468533pt;}
.yf2{bottom:461.988533pt;}
.yab{bottom:463.388533pt;}
.y1b9{bottom:464.988533pt;}
.y206{bottom:466.012000pt;}
.y17{bottom:467.033733pt;}
.y137{bottom:468.271333pt;}
.y247{bottom:471.345333pt;}
.y15a{bottom:471.388533pt;}
.y1ce{bottom:474.342533pt;}
.y4a{bottom:474.462533pt;}
.y19a{bottom:474.468533pt;}
.yf1{bottom:479.321867pt;}
.y205{bottom:479.345333pt;}
.yaa{bottom:479.388533pt;}
.y17f{bottom:479.958000pt;}
.y1b8{bottom:480.988533pt;}
.y136{bottom:481.604667pt;}
.y16{bottom:483.033733pt;}
.y246{bottom:484.678667pt;}
.y159{bottom:487.388533pt;}
.y1cd{bottom:490.342533pt;}
.y49{bottom:490.462533pt;}
.y199{bottom:490.468533pt;}
.y204{bottom:492.678667pt;}
.y17e{bottom:493.830000pt;}
.y135{bottom:494.938000pt;}
.ya9{bottom:495.388533pt;}
.y1b7{bottom:496.988533pt;}
.y245{bottom:498.012000pt;}
.y15{bottom:499.033733pt;}
.y158{bottom:503.388533pt;}
.y203{bottom:506.012000pt;}
.y1cc{bottom:506.342533pt;}
.y48{bottom:506.462533pt;}
.y198{bottom:506.468533pt;}
.y17d{bottom:506.595867pt;}
.y244{bottom:511.345333pt;}
.ya8{bottom:511.388533pt;}
.y1b6{bottom:512.988533pt;}
.y14{bottom:515.033733pt;}
.y202{bottom:519.345333pt;}
.y157{bottom:519.388533pt;}
.yd6{bottom:522.055200pt;}
.y17c{bottom:522.235867pt;}
.y1cb{bottom:522.342533pt;}
.y47{bottom:522.462533pt;}
.yf0{bottom:522.468533pt;}
.y134{bottom:522.595867pt;}
.y243{bottom:524.678667pt;}
.y1b5{bottom:528.988533pt;}
.y13{bottom:531.033733pt;}
.y201{bottom:532.678667pt;}
.y179{bottom:534.938000pt;}
.y156{bottom:535.388533pt;}
.y242{bottom:538.012000pt;}
.yd5{bottom:538.055200pt;}
.y133{bottom:538.235867pt;}
.y1ca{bottom:538.342533pt;}
.y46{bottom:538.462533pt;}
.yef{bottom:538.468533pt;}
.ya7{bottom:542.938000pt;}
.y1b4{bottom:544.988533pt;}
.y200{bottom:546.012000pt;}
.y12{bottom:547.033733pt;}
.y178{bottom:548.271333pt;}
.y241{bottom:551.345333pt;}
.yd4{bottom:554.055200pt;}
.y132{bottom:554.235867pt;}
.y1c9{bottom:554.342533pt;}
.y45{bottom:554.462533pt;}
.yee{bottom:554.468533pt;}
.ya6{bottom:556.271333pt;}
.y1ff{bottom:559.345333pt;}
.y1b3{bottom:560.988533pt;}
.y177{bottom:561.604667pt;}
.y11{bottom:563.033733pt;}
.y240{bottom:564.678667pt;}
.y155{bottom:566.938000pt;}
.ya5{bottom:569.604667pt;}
.y1c8{bottom:570.342533pt;}
.y44{bottom:570.462533pt;}
.yed{bottom:570.468533pt;}
.y1fe{bottom:572.678667pt;}
.y176{bottom:574.938000pt;}
.y1b2{bottom:576.988533pt;}
.y23f{bottom:578.012000pt;}
.y10{bottom:579.033733pt;}
.y154{bottom:580.271333pt;}
.ya4{bottom:582.938000pt;}
.yd3{bottom:585.604667pt;}
.y1fd{bottom:586.012000pt;}
.y1c7{bottom:586.342533pt;}
.y43{bottom:586.462533pt;}
.yec{bottom:586.468533pt;}
.y23e{bottom:591.345333pt;}
.y1b1{bottom:592.988533pt;}
.y153{bottom:593.604667pt;}
.yf{bottom:595.033733pt;}
.ya3{bottom:596.271333pt;}
.yd2{bottom:598.938000pt;}
.y1fc{bottom:599.345333pt;}
.y1c6{bottom:602.342533pt;}
.y42{bottom:602.462533pt;}
.yeb{bottom:602.468533pt;}
.y175{bottom:602.595867pt;}
.y23d{bottom:604.678667pt;}
.y152{bottom:606.938000pt;}
.ya2{bottom:609.604667pt;}
.ye{bottom:611.033733pt;}
.yd1{bottom:612.271333pt;}
.y1fb{bottom:612.678667pt;}
.y23c{bottom:618.012000pt;}
.y174{bottom:618.235867pt;}
.y1c5{bottom:618.342533pt;}
.y41{bottom:618.462533pt;}
.yea{bottom:618.468533pt;}
.ya1{bottom:622.938000pt;}
.y1b0{bottom:623.958000pt;}
.yd0{bottom:625.604667pt;}
.y1fa{bottom:626.012000pt;}
.y23b{bottom:631.345333pt;}
.y1c4{bottom:634.342533pt;}
.y40{bottom:634.462533pt;}
.ye9{bottom:634.468533pt;}
.y151{bottom:634.601867pt;}
.y1af{bottom:637.830000pt;}
.ycf{bottom:638.938000pt;}
.y1f9{bottom:639.345333pt;}
.y23a{bottom:644.678667pt;}
.y150{bottom:650.241867pt;}
.y1c3{bottom:650.342533pt;}
.y3f{bottom:650.462533pt;}
.ye8{bottom:650.468533pt;}
.ya0{bottom:650.595867pt;}
.yd{bottom:651.170933pt;}
.yce{bottom:652.271333pt;}
.y1f8{bottom:652.678667pt;}
.y239{bottom:658.012000pt;}
.yc{bottom:662.238267pt;}
.ycd{bottom:665.604667pt;}
.y1f7{bottom:666.012000pt;}
.y9f{bottom:666.235867pt;}
.y1c2{bottom:666.342533pt;}
.y3e{bottom:666.462533pt;}
.ye7{bottom:666.468533pt;}
.y238{bottom:671.345333pt;}
.ycc{bottom:678.938000pt;}
.y173{bottom:679.262533pt;}
.y1f6{bottom:679.345333pt;}
.y1c1{bottom:682.342533pt;}
.y3d{bottom:682.462533pt;}
.ye6{bottom:682.468533pt;}
.y237{bottom:684.678667pt;}
.ycb{bottom:692.271333pt;}
.y1f5{bottom:692.678667pt;}
.yb{bottom:695.252400pt;}
.y172{bottom:695.262533pt;}
.y236{bottom:698.012000pt;}
.y1c0{bottom:698.342533pt;}
.y3c{bottom:698.462533pt;}
.ye5{bottom:698.468533pt;}
.yca{bottom:705.604667pt;}
.y1f4{bottom:706.012000pt;}
.ya{bottom:707.252400pt;}
.y171{bottom:711.262533pt;}
.y235{bottom:711.345333pt;}
.y1bf{bottom:714.342533pt;}
.y9{bottom:714.429867pt;}
.y3b{bottom:714.462533pt;}
.ye4{bottom:714.468533pt;}
.yc9{bottom:718.938000pt;}
.y1f3{bottom:719.345333pt;}
.y234{bottom:724.678667pt;}
.y170{bottom:727.262533pt;}
.y1be{bottom:730.342533pt;}
.y3a{bottom:730.462533pt;}
.ye3{bottom:730.468533pt;}
.y8{bottom:731.252400pt;}
.y1f2{bottom:732.678667pt;}
.y233{bottom:738.012000pt;}
.y8b{bottom:741.129200pt;}
.y16f{bottom:743.262533pt;}
.y1f1{bottom:746.012000pt;}
.y1bd{bottom:746.342533pt;}
.y39{bottom:746.462533pt;}
.ye2{bottom:746.468533pt;}
.yc8{bottom:746.595867pt;}
.y232{bottom:751.345333pt;}
.y7f{bottom:751.723333pt;}
.y7{bottom:756.783067pt;}
.y8a{bottom:757.129200pt;}
.y16e{bottom:759.262533pt;}
.y1f0{bottom:759.345333pt;}
.yc7{bottom:762.235867pt;}
.y1bc{bottom:762.342533pt;}
.y38{bottom:762.462533pt;}
.ye1{bottom:762.468533pt;}
.y231{bottom:764.678667pt;}
.y7e{bottom:765.056667pt;}
.y1ef{bottom:772.678667pt;}
.y89{bottom:773.129200pt;}
.y16d{bottom:775.262533pt;}
.y230{bottom:778.012000pt;}
.y1bb{bottom:778.342533pt;}
.y37{bottom:778.462533pt;}
.ye0{bottom:778.468533pt;}
.y1ee{bottom:786.012000pt;}
.y88{bottom:789.129200pt;}
.y16c{bottom:791.262533pt;}
.y22f{bottom:791.345333pt;}
.y36{bottom:794.462533pt;}
.y7d{bottom:794.464533pt;}
.ydf{bottom:794.468533pt;}
.y6{bottom:797.816533pt;}
.y1ed{bottom:799.345333pt;}
.y22e{bottom:804.678667pt;}
.y87{bottom:805.129200pt;}
.y16b{bottom:807.262533pt;}
.y1ba{bottom:809.982533pt;}
.y1e0{bottom:810.102533pt;}
.y35{bottom:810.462533pt;}
.yde{bottom:810.468533pt;}
.y1ec{bottom:812.678667pt;}
.y22d{bottom:818.012000pt;}
.y86{bottom:821.129200pt;}
.y1eb{bottom:826.012000pt;}
.y7c{bottom:826.344533pt;}
.y34{bottom:826.462533pt;}
.ydd{bottom:826.468533pt;}
.y5{bottom:830.226133pt;}
.y22c{bottom:831.345333pt;}
.y85{bottom:837.129200pt;}
.y16a{bottom:838.812000pt;}
.y1ea{bottom:839.345333pt;}
.y7b{bottom:842.344533pt;}
.y33{bottom:842.462533pt;}
.ydc{bottom:842.468533pt;}
.y22b{bottom:844.678667pt;}
.y169{bottom:852.145333pt;}
.y1e9{bottom:852.678667pt;}
.y84{bottom:853.129200pt;}
.y22a{bottom:858.012000pt;}
.y7a{bottom:858.344533pt;}
.y32{bottom:858.462533pt;}
.ydb{bottom:858.468533pt;}
.y4{bottom:862.635733pt;}
.y168{bottom:865.478667pt;}
.y1e8{bottom:866.012000pt;}
.y229{bottom:871.345333pt;}
.y31{bottom:874.462533pt;}
.yda{bottom:874.468533pt;}
.y167{bottom:878.812000pt;}
.y1e7{bottom:879.345333pt;}
.y228{bottom:884.678667pt;}
.y83{bottom:884.683333pt;}
.y79{bottom:890.224533pt;}
.y30{bottom:890.462533pt;}
.yd9{bottom:890.468533pt;}
.y1e6{bottom:892.678667pt;}
.y3{bottom:895.045333pt;}
.y227{bottom:898.012000pt;}
.y82{bottom:898.016667pt;}
.y2f{bottom:906.462533pt;}
.yd8{bottom:906.468533pt;}
.y226{bottom:911.345333pt;}
.y81{bottom:911.350000pt;}
.y166{bottom:922.102533pt;}
.y78{bottom:922.104533pt;}
.y2e{bottom:922.462533pt;}
.yd7{bottom:922.468533pt;}
.y225{bottom:924.678667pt;}
.y80{bottom:924.683333pt;}
.y2{bottom:950.489200pt;}
.y11a{bottom:1006.594000pt;}
.y8f{bottom:1006.594133pt;}
.y76{bottom:1006.594400pt;}
.y77{bottom:1006.597067pt;}
.y224{bottom:1006.598667pt;}
.y2c{bottom:1009.860000pt;}
.y2b{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.h10{height:27.792969pt;}
.hc{height:29.121094pt;}
.h7{height:29.160156pt;}
.hf{height:29.645833pt;}
.he{height:31.062500pt;}
.hd{height:31.104167pt;}
.h16{height:33.351562pt;}
.hb{height:37.057292pt;}
.h15{height:37.381654pt;}
.ha{height:38.828125pt;}
.h9{height:38.880208pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h11{height:54.472969pt;}
.h13{height:61.563301pt;}
.h14{height:61.572901pt;}
.h12{height:81.152969pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:62.740133pt;}
.xc{left:68.031467pt;}
.x20{left:69.921200pt;}
.x42{left:75.027733pt;}
.x43{left:81.896667pt;}
.x45{left:83.187733pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1f{left:90.708800pt;}
.x46{left:92.654400pt;}
.x4{left:94.488133pt;}
.xd{left:98.284800pt;}
.x16{left:108.613600pt;}
.x3b{left:109.595867pt;}
.x3{left:111.491467pt;}
.x1e{left:116.004800pt;}
.x7{left:117.165333pt;}
.xe{left:128.671467pt;}
.x17{left:140.106933pt;}
.x5{left:170.078800pt;}
.x44{left:177.920667pt;}
.x47{left:179.034933pt;}
.x6{left:189.223467pt;}
.x48{left:195.675867pt;}
.x15{left:199.266933pt;}
.x3a{left:203.089200pt;}
.x14{left:206.546933pt;}
.x39{left:222.329200pt;}
.x24{left:243.771200pt;}
.x28{left:246.701200pt;}
.x25{left:247.951200pt;}
.x1b{left:249.457733pt;}
.x29{left:289.001200pt;}
.x2a{left:293.871200pt;}
.x21{left:295.861200pt;}
.x26{left:373.911200pt;}
.xb{left:404.481333pt;}
.xf{left:406.324800pt;}
.x27{left:419.761200pt;}
.x18{left:425.201200pt;}
.x8{left:427.085333pt;}
.x3f{left:428.976533pt;}
.x10{left:436.564800pt;}
.x3e{left:439.231467pt;}
.x19{left:447.878533pt;}
.x41{left:453.755867pt;}
.x1a{left:455.433067pt;}
.x9{left:457.325333pt;}
.x3c{left:460.965333pt;}
.x1d{left:468.178667pt;}
.x37{left:469.195867pt;}
.x40{left:491.342533pt;}
.x4a{left:511.004800pt;}
.x2d{left:517.296400pt;}
.x2c{left:519.756400pt;}
.x32{left:524.101467pt;}
.x49{left:526.171067pt;}
.x2b{left:529.106400pt;}
.x2e{left:530.626400pt;}
.x33{left:532.931467pt;}
.x31{left:535.211467pt;}
.x34{left:536.311467pt;}
.x22{left:542.021200pt;}
.x3d{left:550.632000pt;}
.x13{left:589.770933pt;}
.x2{left:616.324800pt;}
.x2f{left:628.076400pt;}
.x35{left:629.721467pt;}
.x23{left:633.351200pt;}
.x36{left:641.526800pt;}
.x11{left:647.459200pt;}
.x38{left:661.216133pt;}
.x30{left:664.776400pt;}
.x1c{left:666.353733pt;}
}




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