
    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_0fb740d045c91ff69e0f5f96.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_aaf17a58da7bd5140c808809.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_d5b8681ed9625b173f43a780.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_4c855b6deb7ea46ba2de26b1.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_0b89ac979d08f5c8b632a6b4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cbcb606951ec327170e9c46a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ce7e3b632fcc75ccaa74a0fc.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_47f2d89ed6634cdcd4d327a9.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_04e30fa62e92689c4c0606c2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_eff1731bb9be7e5de5f92595.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_155d0a933f9e15d5a2bcc45c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0a358d9bc31fc96d46c19141.woff2')format("woff");}.ffc{font-family:ffc;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;}
.v3{vertical-align:-11.790000px;}
.v6{vertical-align:-9.357000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.620000px;}
.v5{vertical-align:11.697000px;}
.v1{vertical-align:30.381600px;}
.v4{vertical-align:32.976000px;}
.lsbd{letter-spacing:-1.776000px;}
.ls3e{letter-spacing:-1.020000px;}
.ls3f{letter-spacing:-0.900000px;}
.ls13{letter-spacing:-0.780000px;}
.ls3a{letter-spacing:-0.360000px;}
.lsbf{letter-spacing:-0.336000px;}
.ls15{letter-spacing:-0.270000px;}
.ls17{letter-spacing:-0.240000px;}
.ls16{letter-spacing:-0.225000px;}
.ls76{letter-spacing:-0.180000px;}
.lsbe{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.120000px;}
.lsc6{letter-spacing:-0.096000px;}
.ls14{letter-spacing:-0.060000px;}
.ls9c{letter-spacing:-0.048000px;}
.ls12{letter-spacing:0.000000px;}
.ls6f{letter-spacing:0.003000px;}
.ls6b{letter-spacing:0.003600px;}
.lsc7{letter-spacing:0.014400px;}
.ls61{letter-spacing:0.034980px;}
.ls57{letter-spacing:0.043200px;}
.ls8b{letter-spacing:0.048000px;}
.ls6c{letter-spacing:0.059400px;}
.ls2e{letter-spacing:0.060000px;}
.ls2{letter-spacing:0.069000px;}
.ls5c{letter-spacing:0.080400px;}
.ls9b{letter-spacing:0.096000px;}
.ls1d{letter-spacing:0.120000px;}
.ls94{letter-spacing:0.144000px;}
.ls60{letter-spacing:0.174900px;}
.ls28{letter-spacing:0.180000px;}
.lsa4{letter-spacing:0.192000px;}
.ls7{letter-spacing:0.240000px;}
.ls56{letter-spacing:0.258600px;}
.ls93{letter-spacing:0.288000px;}
.ls27{letter-spacing:0.300000px;}
.lsa5{letter-spacing:0.336000px;}
.ls4{letter-spacing:0.360000px;}
.ls75{letter-spacing:0.384000px;}
.lsca{letter-spacing:0.384780px;}
.ls80{letter-spacing:0.412920px;}
.lsb{letter-spacing:0.420000px;}
.lsba{letter-spacing:0.432000px;}
.ls3d{letter-spacing:0.454740px;}
.lsc{letter-spacing:0.480000px;}
.ls69{letter-spacing:0.516120px;}
.ls95{letter-spacing:0.528000px;}
.ls8{letter-spacing:0.540000px;}
.ls90{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.600000px;}
.ls91{letter-spacing:0.624000px;}
.lsc9{letter-spacing:0.658800px;}
.lse{letter-spacing:0.660000px;}
.lsb3{letter-spacing:0.672000px;}
.ls7f{letter-spacing:0.697800px;}
.lsf{letter-spacing:0.720000px;}
.ls4e{letter-spacing:0.766200px;}
.lsa9{letter-spacing:0.768000px;}
.ls78{letter-spacing:0.769560px;}
.ls38{letter-spacing:0.774000px;}
.ls37{letter-spacing:0.780000px;}
.lsb8{letter-spacing:0.816000px;}
.ls5d{letter-spacing:0.839520px;}
.ls2c{letter-spacing:0.840000px;}
.ls68{letter-spacing:0.844800px;}
.ls8c{letter-spacing:0.864000px;}
.lsa{letter-spacing:0.900000px;}
.lsbc{letter-spacing:0.912000px;}
.ls7e{letter-spacing:0.944520px;}
.ls6{letter-spacing:0.960000px;}
.ls92{letter-spacing:1.008000px;}
.ls5f{letter-spacing:1.014420px;}
.ls1a{letter-spacing:1.020000px;}
.ls46{letter-spacing:1.029720px;}
.ls9f{letter-spacing:1.056000px;}
.ls51{letter-spacing:1.080000px;}
.ls9d{letter-spacing:1.104000px;}
.ls5{letter-spacing:1.140000px;}
.ls99{letter-spacing:1.152000px;}
.ls22{letter-spacing:1.200000px;}
.lsb5{letter-spacing:1.248000px;}
.ls4a{letter-spacing:1.260000px;}
.ls8f{letter-spacing:1.296000px;}
.ls31{letter-spacing:1.320000px;}
.ls9a{letter-spacing:1.344000px;}
.ls73{letter-spacing:1.368000px;}
.ls3b{letter-spacing:1.380000px;}
.lsab{letter-spacing:1.392000px;}
.ls53{letter-spacing:1.421400px;}
.ls48{letter-spacing:1.440000px;}
.lsa0{letter-spacing:1.488000px;}
.ls4b{letter-spacing:1.500000px;}
.lsc3{letter-spacing:1.536000px;}
.ls23{letter-spacing:1.560000px;}
.lsa1{letter-spacing:1.584000px;}
.ls24{letter-spacing:1.620000px;}
.ls7d{letter-spacing:1.623000px;}
.lsc1{letter-spacing:1.632000px;}
.ls1b{letter-spacing:1.680000px;}
.ls55{letter-spacing:1.698600px;}
.ls3c{letter-spacing:1.714020px;}
.ls98{letter-spacing:1.728000px;}
.ls2f{letter-spacing:1.740000px;}
.ls45{letter-spacing:1.768200px;}
.ls5e{letter-spacing:1.783980px;}
.ls25{letter-spacing:1.800000px;}
.lsc2{letter-spacing:1.824000px;}
.ls1e{letter-spacing:1.860000px;}
.lsb6{letter-spacing:1.872000px;}
.ls67{letter-spacing:1.903920px;}
.ls4f{letter-spacing:1.920000px;}
.lsb7{letter-spacing:1.968000px;}
.ls1f{letter-spacing:1.980000px;}
.lsac{letter-spacing:2.016000px;}
.ls2b{letter-spacing:2.040000px;}
.lsa6{letter-spacing:2.064000px;}
.ls20{letter-spacing:2.100000px;}
.lsb4{letter-spacing:2.112000px;}
.ls19{letter-spacing:2.160000px;}
.ls97{letter-spacing:2.208000px;}
.ls49{letter-spacing:2.220000px;}
.ls79{letter-spacing:2.238720px;}
.lsa2{letter-spacing:2.256000px;}
.ls41{letter-spacing:2.280000px;}
.ls96{letter-spacing:2.304000px;}
.ls4c{letter-spacing:2.340000px;}
.lsc0{letter-spacing:2.352000px;}
.ls8d{letter-spacing:2.400000px;}
.ls7c{letter-spacing:2.436120px;}
.lsa3{letter-spacing:2.448000px;}
.ls4d{letter-spacing:2.460000px;}
.ls21{letter-spacing:2.520000px;}
.ls3{letter-spacing:2.580000px;}
.lsc4{letter-spacing:2.592000px;}
.ls47{letter-spacing:2.640000px;}
.ls65{letter-spacing:2.700000px;}
.ls64{letter-spacing:2.760000px;}
.ls63{letter-spacing:2.820000px;}
.ls2a{letter-spacing:2.880000px;}
.ls36{letter-spacing:2.923200px;}
.lsbb{letter-spacing:2.928000px;}
.ls35{letter-spacing:2.940000px;}
.lsb1{letter-spacing:2.976000px;}
.ls39{letter-spacing:3.000000px;}
.ls54{letter-spacing:3.028200px;}
.ls50{letter-spacing:3.060000px;}
.lsae{letter-spacing:3.072000px;}
.ls86{letter-spacing:3.180000px;}
.lsd{letter-spacing:3.240000px;}
.ls66{letter-spacing:3.255000px;}
.lsb9{letter-spacing:3.264000px;}
.ls72{letter-spacing:3.300000px;}
.ls83{letter-spacing:3.360000px;}
.ls58{letter-spacing:3.420000px;}
.lsa8{letter-spacing:3.456000px;}
.ls34{letter-spacing:3.480000px;}
.lsb2{letter-spacing:3.504000px;}
.ls26{letter-spacing:3.540000px;}
.ls32{letter-spacing:3.600000px;}
.lsad{letter-spacing:3.648000px;}
.ls29{letter-spacing:3.660000px;}
.ls9e{letter-spacing:3.696000px;}
.lsb0{letter-spacing:3.744000px;}
.lsc5{letter-spacing:3.792000px;}
.ls2d{letter-spacing:3.840000px;}
.ls74{letter-spacing:3.855000px;}
.ls1c{letter-spacing:4.020000px;}
.ls7a{letter-spacing:4.140000px;}
.ls7b{letter-spacing:4.159800px;}
.ls33{letter-spacing:4.200000px;}
.ls6a{letter-spacing:4.320000px;}
.ls40{letter-spacing:4.380000px;}
.ls8e{letter-spacing:4.416000px;}
.lsa7{letter-spacing:4.464000px;}
.ls44{letter-spacing:4.560000px;}
.lsaf{letter-spacing:4.656000px;}
.ls81{letter-spacing:4.680000px;}
.ls77{letter-spacing:4.860000px;}
.ls30{letter-spacing:5.040000px;}
.ls42{letter-spacing:5.160000px;}
.ls62{letter-spacing:5.280000px;}
.lsaa{letter-spacing:5.328000px;}
.ls87{letter-spacing:5.340000px;}
.ls43{letter-spacing:5.580000px;}
.lsc8{letter-spacing:5.640000px;}
.ls89{letter-spacing:5.760000px;}
.ls52{letter-spacing:5.820000px;}
.ls71{letter-spacing:5.880000px;}
.ls59{letter-spacing:5.940000px;}
.ls88{letter-spacing:6.240000px;}
.ls10{letter-spacing:6.780000px;}
.ls85{letter-spacing:6.960000px;}
.ls82{letter-spacing:7.080000px;}
.ls8a{letter-spacing:7.620000px;}
.ls11{letter-spacing:8.220000px;}
.ls84{letter-spacing:8.340000px;}
.ls1{letter-spacing:59.532876px;}
.ls0{letter-spacing:59.533476px;}
.ls6e{letter-spacing:164.736000px;}
.ls6d{letter-spacing:203.136000px;}
.ls5b{letter-spacing:205.920000px;}
.ls70{letter-spacing:226.336896px;}
.ls5a{letter-spacing:275.160000px;}
.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;}
}
.ws8a{word-spacing:-18.780000px;}
.ws4e{word-spacing:-16.920000px;}
.ws2{word-spacing:-16.680000px;}
.ws7d{word-spacing:-16.380000px;}
.ws88{word-spacing:-16.260000px;}
.wsac{word-spacing:-15.744000px;}
.ws4c{word-spacing:-15.660000px;}
.wsab{word-spacing:-15.648000px;}
.ws5a{word-spacing:-15.420000px;}
.ws1d{word-spacing:-15.300000px;}
.ws5b{word-spacing:-15.240000px;}
.ws30{word-spacing:-15.180000px;}
.ws4b{word-spacing:-15.120000px;}
.ws1b{word-spacing:-15.000000px;}
.wsad{word-spacing:-14.976000px;}
.ws1c{word-spacing:-14.940000px;}
.wsa7{word-spacing:-14.448000px;}
.wsdb{word-spacing:-14.352000px;}
.wsdc{word-spacing:-14.304000px;}
.wsa9{word-spacing:-14.208000px;}
.wsd9{word-spacing:-14.160000px;}
.wsaa{word-spacing:-14.064000px;}
.wsaf{word-spacing:-13.968000px;}
.wsa6{word-spacing:-13.488000px;}
.ws4{word-spacing:-13.344000px;}
.wsd8{word-spacing:-13.200000px;}
.wsdf{word-spacing:-13.056000px;}
.wse0{word-spacing:-13.008000px;}
.ws8c{word-spacing:-12.864000px;}
.wsae{word-spacing:-12.768000px;}
.wsde{word-spacing:-12.672000px;}
.ws8d{word-spacing:-12.576000px;}
.ws8b{word-spacing:-12.480000px;}
.wsdd{word-spacing:-12.336000px;}
.wsda{word-spacing:-12.288000px;}
.ws3{word-spacing:-12.285000px;}
.wsb1{word-spacing:-12.144000px;}
.wsa5{word-spacing:-12.048000px;}
.ws36{word-spacing:-12.000000px;}
.wsb0{word-spacing:-11.952000px;}
.ws80{word-spacing:-10.983720px;}
.ws60{word-spacing:-10.528980px;}
.ws31{word-spacing:-10.459020px;}
.wsa8{word-spacing:-10.224000px;}
.ws0{word-spacing:-10.210662px;}
.ws61{word-spacing:-9.759420px;}
.ws5f{word-spacing:-9.584520px;}
.ws7f{word-spacing:-9.514560px;}
.ws32{word-spacing:-9.199740px;}
.wse7{word-spacing:-9.129780px;}
.ws62{word-spacing:-8.919900px;}
.ws63{word-spacing:-8.779980px;}
.ws4d{word-spacing:-8.745000px;}
.ws1a{word-spacing:-8.220000px;}
.ws1{word-spacing:-7.293330px;}
.ws6d{word-spacing:-6.996000px;}
.ws94{word-spacing:-6.240000px;}
.ws6c{word-spacing:-5.940000px;}
.ws83{word-spacing:-5.880000px;}
.ws5d{word-spacing:-5.820000px;}
.wsc4{word-spacing:-5.328000px;}
.ws77{word-spacing:-5.280000px;}
.ws43{word-spacing:-5.040000px;}
.ws82{word-spacing:-4.860000px;}
.ws8f{word-spacing:-4.680000px;}
.wsc8{word-spacing:-4.656000px;}
.ws51{word-spacing:-4.560000px;}
.wsbe{word-spacing:-4.464000px;}
.ws4f{word-spacing:-4.380000px;}
.ws7c{word-spacing:-4.320000px;}
.ws46{word-spacing:-4.200000px;}
.ws90{word-spacing:-4.140000px;}
.ws20{word-spacing:-4.020000px;}
.ws40{word-spacing:-3.900000px;}
.ws52{word-spacing:-3.840000px;}
.wse6{word-spacing:-3.792000px;}
.wsca{word-spacing:-3.744000px;}
.wsb4{word-spacing:-3.696000px;}
.ws3b{word-spacing:-3.660000px;}
.wsc6{word-spacing:-3.648000px;}
.ws45{word-spacing:-3.600000px;}
.ws2f{word-spacing:-3.540000px;}
.wscc{word-spacing:-3.504000px;}
.ws47{word-spacing:-3.480000px;}
.wsbf{word-spacing:-3.456000px;}
.ws6b{word-spacing:-3.420000px;}
.ws85{word-spacing:-3.300000px;}
.wsd2{word-spacing:-3.264000px;}
.ws16{word-spacing:-3.240000px;}
.wsc7{word-spacing:-3.072000px;}
.ws59{word-spacing:-3.060000px;}
.ws4a{word-spacing:-3.000000px;}
.wscb{word-spacing:-2.976000px;}
.ws3c{word-spacing:-2.940000px;}
.wsd7{word-spacing:-2.928000px;}
.ws6{word-spacing:-2.886000px;}
.ws78{word-spacing:-2.880000px;}
.ws79{word-spacing:-2.820000px;}
.ws7a{word-spacing:-2.760000px;}
.ws84{word-spacing:-2.700000px;}
.ws54{word-spacing:-2.640000px;}
.wse4{word-spacing:-2.592000px;}
.ws2e{word-spacing:-2.580000px;}
.ws27{word-spacing:-2.520000px;}
.ws6a{word-spacing:-2.460000px;}
.wsb9{word-spacing:-2.448000px;}
.ws89{word-spacing:-2.400000px;}
.wse1{word-spacing:-2.352000px;}
.ws53{word-spacing:-2.340000px;}
.wsa0{word-spacing:-2.304000px;}
.ws50{word-spacing:-2.280000px;}
.wsb8{word-spacing:-2.256000px;}
.ws28{word-spacing:-2.220000px;}
.wsa1{word-spacing:-2.208000px;}
.ws1e{word-spacing:-2.160000px;}
.wscf{word-spacing:-2.112000px;}
.ws25{word-spacing:-2.100000px;}
.wsbd{word-spacing:-2.064000px;}
.ws3d{word-spacing:-2.040000px;}
.ws24{word-spacing:-1.980000px;}
.wsd1{word-spacing:-1.968000px;}
.ws57{word-spacing:-1.920000px;}
.wsd0{word-spacing:-1.872000px;}
.ws23{word-spacing:-1.860000px;}
.wse3{word-spacing:-1.824000px;}
.ws2d{word-spacing:-1.800000px;}
.ws42{word-spacing:-1.740000px;}
.wsa2{word-spacing:-1.728000px;}
.ws1f{word-spacing:-1.680000px;}
.wse2{word-spacing:-1.632000px;}
.ws2c{word-spacing:-1.620000px;}
.wsb7{word-spacing:-1.584000px;}
.ws2a{word-spacing:-1.560000px;}
.wsd3{word-spacing:-1.536000px;}
.ws56{word-spacing:-1.500000px;}
.wsb6{word-spacing:-1.488000px;}
.ws55{word-spacing:-1.440000px;}
.wsc5{word-spacing:-1.392000px;}
.ws41{word-spacing:-1.380000px;}
.wsa4{word-spacing:-1.344000px;}
.ws44{word-spacing:-1.320000px;}
.ws97{word-spacing:-1.296000px;}
.ws29{word-spacing:-1.260000px;}
.wsc3{word-spacing:-1.248000px;}
.ws3e{word-spacing:-1.200000px;}
.wsa3{word-spacing:-1.152000px;}
.wse{word-spacing:-1.140000px;}
.wsb3{word-spacing:-1.104000px;}
.ws5c{word-spacing:-1.080000px;}
.wsb5{word-spacing:-1.056000px;}
.ws26{word-spacing:-1.020000px;}
.ws9b{word-spacing:-1.008000px;}
.ws10{word-spacing:-0.960000px;}
.wsbc{word-spacing:-0.912000px;}
.ws13{word-spacing:-0.900000px;}
.ws96{word-spacing:-0.864000px;}
.ws3f{word-spacing:-0.840000px;}
.wsc2{word-spacing:-0.816000px;}
.ws48{word-spacing:-0.780000px;}
.wscd{word-spacing:-0.768000px;}
.ws18{word-spacing:-0.720000px;}
.wsce{word-spacing:-0.672000px;}
.ws17{word-spacing:-0.660000px;}
.ws9a{word-spacing:-0.624000px;}
.wsf{word-spacing:-0.600000px;}
.ws98{word-spacing:-0.576000px;}
.ws12{word-spacing:-0.540000px;}
.ws9e{word-spacing:-0.528000px;}
.ws14{word-spacing:-0.480000px;}
.wsb2{word-spacing:-0.432000px;}
.wsb{word-spacing:-0.420000px;}
.ws87{word-spacing:-0.384000px;}
.wsd{word-spacing:-0.360000px;}
.wsbb{word-spacing:-0.336000px;}
.ws2b{word-spacing:-0.300000px;}
.ws9c{word-spacing:-0.288000px;}
.ws11{word-spacing:-0.240000px;}
.wsba{word-spacing:-0.192000px;}
.ws38{word-spacing:-0.180000px;}
.ws9d{word-spacing:-0.144000px;}
.ws22{word-spacing:-0.120000px;}
.ws99{word-spacing:-0.096000px;}
.ws3a{word-spacing:-0.060000px;}
.ws95{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.ws9f{word-spacing:0.048000px;}
.ws7{word-spacing:0.060000px;}
.wse5{word-spacing:0.096000px;}
.ws15{word-spacing:0.120000px;}
.wsc0{word-spacing:0.144000px;}
.ws81{word-spacing:0.180000px;}
.ws9{word-spacing:0.225000px;}
.wsc{word-spacing:0.240000px;}
.ws8{word-spacing:0.270000px;}
.wsd6{word-spacing:0.336000px;}
.ws39{word-spacing:0.360000px;}
.wsd5{word-spacing:0.384000px;}
.ws49{word-spacing:0.900000px;}
.wsd4{word-spacing:1.344000px;}
.ws7e{word-spacing:1.632000px;}
.ws7b{word-spacing:2.280000px;}
.wsc9{word-spacing:2.448000px;}
.wsc1{word-spacing:2.544000px;}
.ws8e{word-spacing:2.880000px;}
.ws19{word-spacing:3.840000px;}
.ws5e{word-spacing:3.936000px;}
.ws86{word-spacing:3.984000px;}
.ws58{word-spacing:4.140000px;}
.wsa{word-spacing:4.920000px;}
.ws21{word-spacing:4.980000px;}
.ws93{word-spacing:5.460000px;}
.ws92{word-spacing:5.520000px;}
.ws91{word-spacing:6.300000px;}
.ws74{word-spacing:109.056000px;}
.ws73{word-spacing:128.160000px;}
.ws71{word-spacing:144.192000px;}
.ws76{word-spacing:152.160000px;}
.ws75{word-spacing:162.936600px;}
.ws70{word-spacing:164.160000px;}
.ws72{word-spacing:172.176000px;}
.ws65{word-spacing:195.240000px;}
.ws67{word-spacing:205.200000px;}
.ws69{word-spacing:206.340000px;}
.ws66{word-spacing:215.220000px;}
.ws6e{word-spacing:216.336000px;}
.ws6f{word-spacing:242.832000px;}
.ws68{word-spacing:245.220000px;}
.ws64{word-spacing:281.040000px;}
.ws34{word-spacing:413.232000px;}
.ws33{word-spacing:467.952000px;}
.ws35{word-spacing:493.296000px;}
.ws37{word-spacing:1014.144000px;}
._10{margin-left:-2898.096000px;}
._1a{margin-left:-2874.288000px;}
._2{margin-left:-9.368400px;}
._e{margin-left:-8.220000px;}
._c{margin-left:-6.669540px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.950460px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.020000px;}
._a{width:1.470000px;}
._7{width:2.640000px;}
._9{width:3.840000px;}
._5{width:4.980000px;}
._6{width:6.060000px;}
._8{width:7.070460px;}
._b{width:8.160000px;}
._f{width:9.720000px;}
._11{width:10.920000px;}
._d{width:13.200000px;}
._55{width:96.192000px;}
._52{width:120.048000px;}
._50{width:128.172000px;}
._54{width:152.664000px;}
._49{width:160.176000px;}
._46{width:164.160000px;}
._41{width:168.192000px;}
._48{width:172.176000px;}
._45{width:176.664000px;}
._3e{width:184.680000px;}
._53{width:200.976000px;}
._3d{width:207.120000px;}
._40{width:208.344000px;}
._17{width:216.816000px;}
._4c{width:219.120000px;}
._22{width:220.200000px;}
._3b{width:222.384000px;}
._19{width:224.832000px;}
._2c{width:231.300000px;}
._4a{width:232.332000px;}
._51{width:235.632000px;}
._14{width:239.472000px;}
._16{width:241.248000px;}
._43{width:253.632000px;}
._39{width:255.600000px;}
._21{width:260.220000px;}
._4f{width:265.632000px;}
._47{width:267.552000px;}
._4e{width:271.584000px;}
._1d{width:277.980000px;}
._4b{width:279.600000px;}
._4d{width:282.240000px;}
._44{width:284.928000px;}
._3c{width:292.896000px;}
._1f{width:295.140000px;}
._3f{width:296.928000px;}
._3a{width:298.704000px;}
._20{width:300.180000px;}
._42{width:302.256000px;}
._24{width:310.140000px;}
._28{width:317.700000px;}
._38{width:321.984000px;}
._33{width:332.400000px;}
._35{width:334.326000px;}
._1c{width:373.380000px;}
._31{width:376.944000px;}
._29{width:405.240000px;}
._1b{width:421.500000px;}
._2a{width:436.440000px;}
._2e{width:441.480000px;}
._2b{width:451.500000px;}
._2d{width:454.800000px;}
._26{width:458.160000px;}
._1e{width:468.120000px;}
._23{width:473.160000px;}
._27{width:476.460000px;}
._25{width:479.820000px;}
._15{width:655.804920px;}
._18{width:698.352000px;}
._34{width:726.672000px;}
._12{width:834.144000px;}
._30{width:923.139540px;}
._37{width:1003.152000px;}
._36{width:1016.118000px;}
._32{width:1096.512000px;}
._13{width:1141.632000px;}
._2f{width:1983.900000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsb{font-size:27.984000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y13a{bottom:83.712900px;}
.yb9{bottom:83.912100px;}
.y141{bottom:83.913750px;}
.ye7{bottom:84.062100px;}
.y143{bottom:84.138150px;}
.yfa{bottom:84.204450px;}
.y56{bottom:84.537300px;}
.y111{bottom:85.164150px;}
.y1a{bottom:88.029450px;}
.y9b{bottom:91.552200px;}
.y11c{bottom:92.332050px;}
.y194{bottom:95.121900px;}
.y1d5{bottom:95.263500px;}
.y140{bottom:99.657750px;}
.y9a{bottom:99.808200px;}
.yf9{bottom:99.948450px;}
.y162{bottom:101.635350px;}
.yb8{bottom:101.912100px;}
.ye6{bottom:102.062100px;}
.y19{bottom:103.023000px;}
.y9c{bottom:108.052200px;}
.y11b{bottom:108.588000px;}
.y193{bottom:110.121900px;}
.y1d4{bottom:110.263500px;}
.y110{bottom:111.282000px;}
.y161{bottom:119.230350px;}
.yb7{bottom:119.912100px;}
.ye5{bottom:120.062100px;}
.y99{bottom:124.312200px;}
.y11a{bottom:124.836000px;}
.y192{bottom:125.121900px;}
.y1d3{bottom:125.263500px;}
.y10f{bottom:130.527000px;}
.yb6{bottom:137.912100px;}
.ye4{bottom:138.062100px;}
.y191{bottom:140.121900px;}
.y1d2{bottom:140.263500px;}
.y98{bottom:140.560200px;}
.y119{bottom:141.087900px;}
.y10e{bottom:149.772000px;}
.y190{bottom:155.121900px;}
.y1d1{bottom:155.263500px;}
.y160{bottom:155.635350px;}
.yb5{bottom:155.912100px;}
.ye3{bottom:156.062100px;}
.y97{bottom:156.808200px;}
.y118{bottom:157.339950px;}
.y29{bottom:166.756800px;}
.y10d{bottom:169.017000px;}
.y18f{bottom:170.121900px;}
.y1d0{bottom:170.263500px;}
.y96{bottom:173.056200px;}
.y117{bottom:173.587800px;}
.y15f{bottom:173.635350px;}
.yb4{bottom:173.912100px;}
.ye2{bottom:174.062100px;}
.y28{bottom:184.756800px;}
.y18e{bottom:185.121900px;}
.y1cf{bottom:185.263500px;}
.y10c{bottom:188.262000px;}
.y15e{bottom:191.635350px;}
.yb3{bottom:191.912100px;}
.ye1{bottom:192.062100px;}
.y18d{bottom:200.121900px;}
.y1ce{bottom:200.263500px;}
.y27{bottom:202.756800px;}
.y95{bottom:204.568200px;}
.y116{bottom:205.099800px;}
.y10b{bottom:207.507000px;}
.y15d{bottom:209.635350px;}
.yb2{bottom:209.912100px;}
.ye0{bottom:210.062100px;}
.y18c{bottom:215.121900px;}
.y1cd{bottom:215.263500px;}
.y26{bottom:220.756800px;}
.y10a{bottom:226.752000px;}
.y15c{bottom:227.635350px;}
.yb1{bottom:227.912100px;}
.ydf{bottom:228.062100px;}
.y18b{bottom:230.121900px;}
.y1cc{bottom:230.263500px;}
.y25{bottom:238.756800px;}
.y94{bottom:239.477100px;}
.y115{bottom:239.995350px;}
.y18a{bottom:245.121900px;}
.y15b{bottom:245.230350px;}
.y1cb{bottom:245.263500px;}
.yb0{bottom:245.912100px;}
.y109{bottom:245.997000px;}
.yde{bottom:246.062100px;}
.y24{bottom:256.756800px;}
.y189{bottom:260.121900px;}
.y1ca{bottom:260.263500px;}
.yaf{bottom:263.912100px;}
.ydd{bottom:264.062100px;}
.y108{bottom:265.242000px;}
.y23{bottom:274.756800px;}
.y188{bottom:275.121900px;}
.y1c9{bottom:275.263500px;}
.y15a{bottom:281.635350px;}
.yae{bottom:281.912100px;}
.y6c{bottom:281.920350px;}
.y93{bottom:282.062100px;}
.y132{bottom:283.162650px;}
.y107{bottom:284.487000px;}
.y187{bottom:290.121900px;}
.y1c8{bottom:290.263500px;}
.y22{bottom:292.756800px;}
.y159{bottom:299.635350px;}
.y131{bottom:299.662650px;}
.yad{bottom:299.912100px;}
.y6b{bottom:299.920350px;}
.y92{bottom:300.062100px;}
.y106{bottom:303.732000px;}
.y186{bottom:305.121900px;}
.y1c7{bottom:305.263500px;}
.y21{bottom:310.756800px;}
.y158{bottom:317.635350px;}
.yac{bottom:317.912100px;}
.y6a{bottom:317.920350px;}
.ydc{bottom:318.062100px;}
.y185{bottom:320.121900px;}
.y1c6{bottom:320.263500px;}
.y105{bottom:322.977000px;}
.y130{bottom:325.174650px;}
.y20{bottom:328.756800px;}
.y184{bottom:335.121900px;}
.y1c5{bottom:335.263500px;}
.y157{bottom:335.635350px;}
.y91{bottom:335.657100px;}
.yab{bottom:335.912100px;}
.y69{bottom:335.920350px;}
.y12f{bottom:341.422650px;}
.y104{bottom:342.222000px;}
.y1f{bottom:346.756800px;}
.yfc{bottom:347.192700px;}
.y183{bottom:350.121900px;}
.y1c4{bottom:350.263500px;}
.y156{bottom:353.635350px;}
.y90{bottom:353.657100px;}
.yaa{bottom:353.912100px;}
.y68{bottom:353.920350px;}
.y12e{bottom:357.670650px;}
.y103{bottom:361.467000px;}
.y1e{bottom:364.756800px;}
.y182{bottom:365.121900px;}
.y1c3{bottom:365.263500px;}
.y155{bottom:371.635350px;}
.ya9{bottom:371.912100px;}
.y67{bottom:371.920350px;}
.y12d{bottom:373.918650px;}
.y181{bottom:380.121900px;}
.y1c2{bottom:380.263500px;}
.y102{bottom:380.712000px;}
.y1d{bottom:382.756800px;}
.y154{bottom:389.230350px;}
.y8f{bottom:389.912100px;}
.y66{bottom:389.920350px;}
.y12c{bottom:390.218100px;}
.y180{bottom:395.121900px;}
.y1c1{bottom:395.263500px;}
.y101{bottom:399.957000px;}
.y1c{bottom:400.756800px;}
.y12b{bottom:406.466100px;}
.y8e{bottom:407.912100px;}
.y65{bottom:407.920350px;}
.ydb{bottom:407.927100px;}
.y17f{bottom:410.121900px;}
.y1c0{bottom:410.263500px;}
.y2b{bottom:418.756800px;}
.y12a{bottom:422.714100px;}
.y17e{bottom:425.121900px;}
.y1bf{bottom:425.263500px;}
.y153{bottom:425.635350px;}
.y8d{bottom:425.912100px;}
.y64{bottom:425.920350px;}
.yda{bottom:425.927100px;}
.y100{bottom:432.968700px;}
.y1b{bottom:436.351800px;}
.y2a{bottom:436.756800px;}
.y129{bottom:438.962100px;}
.y17d{bottom:440.121900px;}
.y1be{bottom:440.263500px;}
.y152{bottom:443.635350px;}
.y8c{bottom:443.912100px;}
.y63{bottom:443.920350px;}
.yd9{bottom:443.927100px;}
.y17c{bottom:455.121900px;}
.y128{bottom:455.210100px;}
.y1bd{bottom:455.263500px;}
.y151{bottom:461.635350px;}
.y8b{bottom:461.912100px;}
.y62{bottom:461.920350px;}
.yd8{bottom:461.927100px;}
.y13c{bottom:466.416900px;}
.yff{bottom:468.857100px;}
.y17b{bottom:470.121900px;}
.y1bc{bottom:470.263500px;}
.y127{bottom:471.458100px;}
.y150{bottom:479.635350px;}
.ya8{bottom:479.912100px;}
.y61{bottom:479.920350px;}
.y8a{bottom:479.935350px;}
.y13b{bottom:482.160900px;}
.y17a{bottom:485.121900px;}
.y1bb{bottom:485.263500px;}
.y126{bottom:487.706100px;}
.yd7{bottom:497.522100px;}
.y14f{bottom:497.635350px;}
.ya7{bottom:497.912100px;}
.y60{bottom:497.920350px;}
.y89{bottom:497.935350px;}
.y179{bottom:500.121900px;}
.y1ba{bottom:500.263500px;}
.y146{bottom:500.901300px;}
.y125{bottom:503.954100px;}
.y18{bottom:512.008650px;}
.y178{bottom:515.121900px;}
.y1b9{bottom:515.263500px;}
.y14e{bottom:515.635350px;}
.ya6{bottom:515.912100px;}
.y5f{bottom:515.920350px;}
.y88{bottom:515.935350px;}
.y124{bottom:520.202100px;}
.yfe{bottom:522.197100px;}
.y55{bottom:527.901300px;}
.y17{bottom:530.017950px;}
.y177{bottom:530.121900px;}
.y1b8{bottom:530.263500px;}
.y14d{bottom:533.635350px;}
.yd6{bottom:533.777100px;}
.ya5{bottom:533.912100px;}
.y5e{bottom:533.920350px;}
.y87{bottom:533.935350px;}
.y123{bottom:536.450100px;}
.y176{bottom:545.121900px;}
.y1b7{bottom:545.263500px;}
.y14c{bottom:551.635350px;}
.yd5{bottom:551.777100px;}
.ya4{bottom:551.912100px;}
.y5d{bottom:551.920350px;}
.y122{bottom:552.698100px;}
.y16{bottom:557.362950px;}
.y175{bottom:560.121900px;}
.y1b6{bottom:560.263500px;}
.y121{bottom:568.946100px;}
.y86{bottom:569.530350px;}
.y14b{bottom:569.635350px;}
.yd4{bottom:569.777100px;}
.ya3{bottom:569.912100px;}
.y5c{bottom:569.920350px;}
.y174{bottom:575.121900px;}
.y1b5{bottom:575.263500px;}
.y15{bottom:575.362950px;}
.y120{bottom:585.194100px;}
.y14a{bottom:587.635350px;}
.yd3{bottom:587.777100px;}
.y5b{bottom:587.920350px;}
.y173{bottom:590.121900px;}
.y1b4{bottom:590.263500px;}
.y14{bottom:593.362950px;}
.y11f{bottom:601.442100px;}
.y172{bottom:605.121900px;}
.y1b3{bottom:605.263500px;}
.y149{bottom:605.635350px;}
.yd2{bottom:605.777100px;}
.y85{bottom:605.785350px;}
.y5a{bottom:605.920350px;}
.y145{bottom:607.338150px;}
.y13{bottom:611.362950px;}
.y171{bottom:620.121900px;}
.y1b2{bottom:620.263500px;}
.yd1{bottom:623.777100px;}
.y84{bottom:623.785350px;}
.ya2{bottom:623.920350px;}
.y12{bottom:629.362950px;}
.y11e{bottom:632.954100px;}
.y170{bottom:635.121900px;}
.y1b1{bottom:635.263500px;}
.yfb{bottom:638.877750px;}
.y148{bottom:641.230350px;}
.y59{bottom:641.515350px;}
.y13f{bottom:641.770350px;}
.yd0{bottom:641.777100px;}
.y83{bottom:641.785350px;}
.ya1{bottom:641.920350px;}
.y11{bottom:647.362950px;}
.y16f{bottom:650.121900px;}
.y1b0{bottom:650.263500px;}
.y13e{bottom:659.770350px;}
.ycf{bottom:659.777100px;}
.y82{bottom:659.785350px;}
.ya0{bottom:659.920350px;}
.y54{bottom:660.055350px;}
.y16e{bottom:665.121900px;}
.y1af{bottom:665.263500px;}
.y10{bottom:665.362950px;}
.y11d{bottom:667.849200px;}
.y58{bottom:677.770350px;}
.yce{bottom:677.777100px;}
.y81{bottom:677.785350px;}
.y53{bottom:678.055350px;}
.y16d{bottom:680.121900px;}
.y1ae{bottom:680.263500px;}
.yf{bottom:683.362950px;}
.y16c{bottom:695.121900px;}
.y1ad{bottom:695.263500px;}
.y9f{bottom:695.515350px;}
.y42{bottom:695.770350px;}
.ycd{bottom:695.777100px;}
.y80{bottom:695.785350px;}
.y52{bottom:696.055350px;}
.ye{bottom:701.362950px;}
.y16b{bottom:710.121900px;}
.y1ac{bottom:710.263500px;}
.y9e{bottom:713.515350px;}
.y41{bottom:713.770350px;}
.ycc{bottom:713.777100px;}
.y7f{bottom:713.785350px;}
.yf8{bottom:713.920350px;}
.y51{bottom:714.055350px;}
.yd{bottom:719.362950px;}
.y16a{bottom:725.121900px;}
.y1ab{bottom:725.263500px;}
.y40{bottom:731.770350px;}
.ycb{bottom:731.777100px;}
.y7e{bottom:731.785350px;}
.yf7{bottom:731.920350px;}
.y50{bottom:732.055350px;}
.yc{bottom:737.362950px;}
.y169{bottom:740.121900px;}
.y1aa{bottom:740.263500px;}
.y3f{bottom:749.770350px;}
.yca{bottom:749.777100px;}
.y7d{bottom:749.785350px;}
.yf6{bottom:749.920350px;}
.y4f{bottom:750.055350px;}
.y168{bottom:755.121900px;}
.y1a9{bottom:755.263500px;}
.y3e{bottom:767.770350px;}
.yc9{bottom:767.777100px;}
.y7c{bottom:767.785350px;}
.yf5{bottom:767.920350px;}
.y4e{bottom:768.055350px;}
.y167{bottom:770.121900px;}
.y1a8{bottom:770.263500px;}
.yb{bottom:782.517450px;}
.y1a7{bottom:785.263500px;}
.y3d{bottom:785.770350px;}
.y1dd{bottom:785.772600px;}
.yc8{bottom:785.777100px;}
.y7b{bottom:785.785350px;}
.yf4{bottom:785.920350px;}
.y4d{bottom:786.055350px;}
.ya{bottom:794.968200px;}
.y1a6{bottom:800.263500px;}
.y166{bottom:803.245350px;}
.y3c{bottom:803.770350px;}
.yc7{bottom:803.777100px;}
.y7a{bottom:803.785350px;}
.yf3{bottom:803.920350px;}
.y1a5{bottom:815.263500px;}
.y4c{bottom:821.650350px;}
.y3b{bottom:821.770350px;}
.y1dc{bottom:821.772600px;}
.yc6{bottom:821.777100px;}
.y79{bottom:821.785350px;}
.yf2{bottom:821.920350px;}
.y9{bottom:826.683600px;}
.y1a4{bottom:830.263500px;}
.y3a{bottom:839.770350px;}
.y1db{bottom:839.772600px;}
.yc5{bottom:839.777100px;}
.y78{bottom:839.785350px;}
.yf1{bottom:839.920350px;}
.y8{bottom:840.183600px;}
.y1a3{bottom:845.263500px;}
.y39{bottom:857.770350px;}
.yc4{bottom:857.777100px;}
.y77{bottom:857.785350px;}
.y4b{bottom:857.905350px;}
.yf0{bottom:857.920350px;}
.y7{bottom:859.108950px;}
.y1a2{bottom:860.263500px;}
.y1a1{bottom:875.263500px;}
.y165{bottom:875.380350px;}
.y38{bottom:875.770350px;}
.y1da{bottom:875.772600px;}
.yc3{bottom:875.777100px;}
.y76{bottom:875.785350px;}
.y4a{bottom:875.905350px;}
.yef{bottom:875.920350px;}
.y6{bottom:887.830950px;}
.y1a0{bottom:890.263500px;}
.y37{bottom:893.770350px;}
.y1d9{bottom:893.772600px;}
.yc2{bottom:893.777100px;}
.y75{bottom:893.785350px;}
.y49{bottom:893.905350px;}
.yee{bottom:893.920350px;}
.y19f{bottom:905.263500px;}
.yea{bottom:911.365350px;}
.y36{bottom:911.770350px;}
.yc1{bottom:911.777100px;}
.y74{bottom:911.785350px;}
.y48{bottom:911.905350px;}
.yed{bottom:911.920350px;}
.y19e{bottom:920.263500px;}
.y164{bottom:929.380350px;}
.y35{bottom:929.770350px;}
.y1d8{bottom:929.772600px;}
.yc0{bottom:929.777100px;}
.y73{bottom:929.785350px;}
.y47{bottom:929.905350px;}
.yec{bottom:929.920350px;}
.y5{bottom:934.004400px;}
.y19d{bottom:935.263500px;}
.ye9{bottom:947.230350px;}
.y34{bottom:947.770350px;}
.y1d7{bottom:947.772600px;}
.ybf{bottom:947.777100px;}
.y72{bottom:947.785350px;}
.y46{bottom:947.905350px;}
.y114{bottom:947.920350px;}
.y19c{bottom:950.263500px;}
.y19b{bottom:965.263500px;}
.yeb{bottom:965.515350px;}
.y33{bottom:965.770350px;}
.y137{bottom:965.772600px;}
.ybe{bottom:965.777100px;}
.y71{bottom:965.785350px;}
.y45{bottom:965.905350px;}
.y4{bottom:970.465200px;}
.y19a{bottom:980.263500px;}
.y113{bottom:983.515350px;}
.y32{bottom:983.770350px;}
.y136{bottom:983.772600px;}
.ybd{bottom:983.777100px;}
.y70{bottom:983.785350px;}
.y199{bottom:995.263500px;}
.y44{bottom:1001.500350px;}
.y31{bottom:1001.770350px;}
.y135{bottom:1001.772600px;}
.ybc{bottom:1001.777100px;}
.y6f{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y198{bottom:1010.263500px;}
.y30{bottom:1019.770350px;}
.y139{bottom:1019.772600px;}
.ybb{bottom:1019.777100px;}
.y6e{bottom:1019.785350px;}
.y197{bottom:1025.263500px;}
.y43{bottom:1037.365350px;}
.y134{bottom:1037.367600px;}
.y163{bottom:1037.380350px;}
.y2f{bottom:1037.770350px;}
.y138{bottom:1037.772600px;}
.yba{bottom:1037.777100px;}
.y6d{bottom:1037.785350px;}
.y196{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y147{bottom:1132.413300px;}
.y195{bottom:1132.413900px;}
.y112{bottom:1132.416150px;}
.ye8{bottom:1132.418700px;}
.y9d{bottom:1132.420200px;}
.y144{bottom:1132.422150px;}
.y1d6{bottom:1132.423500px;}
.yfd{bottom:1132.424700px;}
.y57{bottom:1132.425300px;}
.y142{bottom:1132.425750px;}
.y133{bottom:1132.426650px;}
.y13d{bottom:1132.428900px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.hd{height:32.783203px;}
.hc{height:32.794003px;}
.h7{height:32.805176px;}
.h12{height:33.351562px;}
.h14{height:33.352163px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.he{height:41.660156px;}
.hf{height:41.689453px;}
.ha{height:43.681641px;}
.hb{height:43.710938px;}
.h9{height:43.740234px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h13{height:66.327562px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:76.535400px;}
.x1e{left:78.661350px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x15{left:99.921300px;}
.x2a{left:102.047400px;}
.x4{left:106.299150px;}
.x1a{left:110.555400px;}
.x28{left:123.307050px;}
.x3{left:125.436750px;}
.x7{left:131.816400px;}
.x1f{left:170.082750px;}
.x20{left:172.204800px;}
.x25{left:190.130400px;}
.x5{left:191.338500px;}
.x6{left:212.876400px;}
.x21{left:220.137450px;}
.x1b{left:232.360350px;}
.x17{left:236.901300px;}
.x16{left:241.461300px;}
.x18{left:333.789300px;}
.x1c{left:415.427400px;}
.xb{left:455.041500px;}
.xe{left:457.070400px;}
.x13{left:478.345350px;}
.x8{left:480.476400px;}
.x27{left:482.598600px;}
.xf{left:491.090400px;}
.x29{left:503.875050px;}
.x14{left:512.365350px;}
.x9{left:514.496400px;}
.xd{left:525.260400px;}
.x26{left:574.820400px;}
.x12{left:663.492300px;}
.x2{left:693.365400px;}
.x22{left:721.723500px;}
.x11{left:728.391900px;}
.x23{left:732.411600px;}
.x24{left:743.871600px;}
.x10{left:748.143900px;}
.x19{left:749.661300px;}
.x1d{left:788.962800px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-10.480000pt;}
.v6{vertical-align:-8.317333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.440000pt;}
.v5{vertical-align:10.397333pt;}
.v1{vertical-align:27.005867pt;}
.v4{vertical-align:29.312000pt;}
.lsbd{letter-spacing:-1.578667pt;}
.ls3e{letter-spacing:-0.906667pt;}
.ls3f{letter-spacing:-0.800000pt;}
.ls13{letter-spacing:-0.693333pt;}
.ls3a{letter-spacing:-0.320000pt;}
.lsbf{letter-spacing:-0.298667pt;}
.ls15{letter-spacing:-0.240000pt;}
.ls17{letter-spacing:-0.213333pt;}
.ls16{letter-spacing:-0.200000pt;}
.ls76{letter-spacing:-0.160000pt;}
.lsbe{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.106667pt;}
.lsc6{letter-spacing:-0.085333pt;}
.ls14{letter-spacing:-0.053333pt;}
.ls9c{letter-spacing:-0.042667pt;}
.ls12{letter-spacing:0.000000pt;}
.ls6f{letter-spacing:0.002667pt;}
.ls6b{letter-spacing:0.003200pt;}
.lsc7{letter-spacing:0.012800pt;}
.ls61{letter-spacing:0.031093pt;}
.ls57{letter-spacing:0.038400pt;}
.ls8b{letter-spacing:0.042667pt;}
.ls6c{letter-spacing:0.052800pt;}
.ls2e{letter-spacing:0.053333pt;}
.ls2{letter-spacing:0.061333pt;}
.ls5c{letter-spacing:0.071467pt;}
.ls9b{letter-spacing:0.085333pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls94{letter-spacing:0.128000pt;}
.ls60{letter-spacing:0.155467pt;}
.ls28{letter-spacing:0.160000pt;}
.lsa4{letter-spacing:0.170667pt;}
.ls7{letter-spacing:0.213333pt;}
.ls56{letter-spacing:0.229867pt;}
.ls93{letter-spacing:0.256000pt;}
.ls27{letter-spacing:0.266667pt;}
.lsa5{letter-spacing:0.298667pt;}
.ls4{letter-spacing:0.320000pt;}
.ls75{letter-spacing:0.341333pt;}
.lsca{letter-spacing:0.342027pt;}
.ls80{letter-spacing:0.367040pt;}
.lsb{letter-spacing:0.373333pt;}
.lsba{letter-spacing:0.384000pt;}
.ls3d{letter-spacing:0.404213pt;}
.lsc{letter-spacing:0.426667pt;}
.ls69{letter-spacing:0.458773pt;}
.ls95{letter-spacing:0.469333pt;}
.ls8{letter-spacing:0.480000pt;}
.ls90{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.533333pt;}
.ls91{letter-spacing:0.554667pt;}
.lsc9{letter-spacing:0.585600pt;}
.lse{letter-spacing:0.586667pt;}
.lsb3{letter-spacing:0.597333pt;}
.ls7f{letter-spacing:0.620267pt;}
.lsf{letter-spacing:0.640000pt;}
.ls4e{letter-spacing:0.681067pt;}
.lsa9{letter-spacing:0.682667pt;}
.ls78{letter-spacing:0.684053pt;}
.ls38{letter-spacing:0.688000pt;}
.ls37{letter-spacing:0.693333pt;}
.lsb8{letter-spacing:0.725333pt;}
.ls5d{letter-spacing:0.746240pt;}
.ls2c{letter-spacing:0.746667pt;}
.ls68{letter-spacing:0.750933pt;}
.ls8c{letter-spacing:0.768000pt;}
.lsa{letter-spacing:0.800000pt;}
.lsbc{letter-spacing:0.810667pt;}
.ls7e{letter-spacing:0.839573pt;}
.ls6{letter-spacing:0.853333pt;}
.ls92{letter-spacing:0.896000pt;}
.ls5f{letter-spacing:0.901707pt;}
.ls1a{letter-spacing:0.906667pt;}
.ls46{letter-spacing:0.915307pt;}
.ls9f{letter-spacing:0.938667pt;}
.ls51{letter-spacing:0.960000pt;}
.ls9d{letter-spacing:0.981333pt;}
.ls5{letter-spacing:1.013333pt;}
.ls99{letter-spacing:1.024000pt;}
.ls22{letter-spacing:1.066667pt;}
.lsb5{letter-spacing:1.109333pt;}
.ls4a{letter-spacing:1.120000pt;}
.ls8f{letter-spacing:1.152000pt;}
.ls31{letter-spacing:1.173333pt;}
.ls9a{letter-spacing:1.194667pt;}
.ls73{letter-spacing:1.216000pt;}
.ls3b{letter-spacing:1.226667pt;}
.lsab{letter-spacing:1.237333pt;}
.ls53{letter-spacing:1.263467pt;}
.ls48{letter-spacing:1.280000pt;}
.lsa0{letter-spacing:1.322667pt;}
.ls4b{letter-spacing:1.333333pt;}
.lsc3{letter-spacing:1.365333pt;}
.ls23{letter-spacing:1.386667pt;}
.lsa1{letter-spacing:1.408000pt;}
.ls24{letter-spacing:1.440000pt;}
.ls7d{letter-spacing:1.442667pt;}
.lsc1{letter-spacing:1.450667pt;}
.ls1b{letter-spacing:1.493333pt;}
.ls55{letter-spacing:1.509867pt;}
.ls3c{letter-spacing:1.523573pt;}
.ls98{letter-spacing:1.536000pt;}
.ls2f{letter-spacing:1.546667pt;}
.ls45{letter-spacing:1.571733pt;}
.ls5e{letter-spacing:1.585760pt;}
.ls25{letter-spacing:1.600000pt;}
.lsc2{letter-spacing:1.621333pt;}
.ls1e{letter-spacing:1.653333pt;}
.lsb6{letter-spacing:1.664000pt;}
.ls67{letter-spacing:1.692373pt;}
.ls4f{letter-spacing:1.706667pt;}
.lsb7{letter-spacing:1.749333pt;}
.ls1f{letter-spacing:1.760000pt;}
.lsac{letter-spacing:1.792000pt;}
.ls2b{letter-spacing:1.813333pt;}
.lsa6{letter-spacing:1.834667pt;}
.ls20{letter-spacing:1.866667pt;}
.lsb4{letter-spacing:1.877333pt;}
.ls19{letter-spacing:1.920000pt;}
.ls97{letter-spacing:1.962667pt;}
.ls49{letter-spacing:1.973333pt;}
.ls79{letter-spacing:1.989973pt;}
.lsa2{letter-spacing:2.005333pt;}
.ls41{letter-spacing:2.026667pt;}
.ls96{letter-spacing:2.048000pt;}
.ls4c{letter-spacing:2.080000pt;}
.lsc0{letter-spacing:2.090667pt;}
.ls8d{letter-spacing:2.133333pt;}
.ls7c{letter-spacing:2.165440pt;}
.lsa3{letter-spacing:2.176000pt;}
.ls4d{letter-spacing:2.186667pt;}
.ls21{letter-spacing:2.240000pt;}
.ls3{letter-spacing:2.293333pt;}
.lsc4{letter-spacing:2.304000pt;}
.ls47{letter-spacing:2.346667pt;}
.ls65{letter-spacing:2.400000pt;}
.ls64{letter-spacing:2.453333pt;}
.ls63{letter-spacing:2.506667pt;}
.ls2a{letter-spacing:2.560000pt;}
.ls36{letter-spacing:2.598400pt;}
.lsbb{letter-spacing:2.602667pt;}
.ls35{letter-spacing:2.613333pt;}
.lsb1{letter-spacing:2.645333pt;}
.ls39{letter-spacing:2.666667pt;}
.ls54{letter-spacing:2.691733pt;}
.ls50{letter-spacing:2.720000pt;}
.lsae{letter-spacing:2.730667pt;}
.ls86{letter-spacing:2.826667pt;}
.lsd{letter-spacing:2.880000pt;}
.ls66{letter-spacing:2.893333pt;}
.lsb9{letter-spacing:2.901333pt;}
.ls72{letter-spacing:2.933333pt;}
.ls83{letter-spacing:2.986667pt;}
.ls58{letter-spacing:3.040000pt;}
.lsa8{letter-spacing:3.072000pt;}
.ls34{letter-spacing:3.093333pt;}
.lsb2{letter-spacing:3.114667pt;}
.ls26{letter-spacing:3.146667pt;}
.ls32{letter-spacing:3.200000pt;}
.lsad{letter-spacing:3.242667pt;}
.ls29{letter-spacing:3.253333pt;}
.ls9e{letter-spacing:3.285333pt;}
.lsb0{letter-spacing:3.328000pt;}
.lsc5{letter-spacing:3.370667pt;}
.ls2d{letter-spacing:3.413333pt;}
.ls74{letter-spacing:3.426667pt;}
.ls1c{letter-spacing:3.573333pt;}
.ls7a{letter-spacing:3.680000pt;}
.ls7b{letter-spacing:3.697600pt;}
.ls33{letter-spacing:3.733333pt;}
.ls6a{letter-spacing:3.840000pt;}
.ls40{letter-spacing:3.893333pt;}
.ls8e{letter-spacing:3.925333pt;}
.lsa7{letter-spacing:3.968000pt;}
.ls44{letter-spacing:4.053333pt;}
.lsaf{letter-spacing:4.138667pt;}
.ls81{letter-spacing:4.160000pt;}
.ls77{letter-spacing:4.320000pt;}
.ls30{letter-spacing:4.480000pt;}
.ls42{letter-spacing:4.586667pt;}
.ls62{letter-spacing:4.693333pt;}
.lsaa{letter-spacing:4.736000pt;}
.ls87{letter-spacing:4.746667pt;}
.ls43{letter-spacing:4.960000pt;}
.lsc8{letter-spacing:5.013333pt;}
.ls89{letter-spacing:5.120000pt;}
.ls52{letter-spacing:5.173333pt;}
.ls71{letter-spacing:5.226667pt;}
.ls59{letter-spacing:5.280000pt;}
.ls88{letter-spacing:5.546667pt;}
.ls10{letter-spacing:6.026667pt;}
.ls85{letter-spacing:6.186667pt;}
.ls82{letter-spacing:6.293333pt;}
.ls8a{letter-spacing:6.773333pt;}
.ls11{letter-spacing:7.306667pt;}
.ls84{letter-spacing:7.413333pt;}
.ls1{letter-spacing:52.918112pt;}
.ls0{letter-spacing:52.918645pt;}
.ls6e{letter-spacing:146.432000pt;}
.ls6d{letter-spacing:180.565333pt;}
.ls5b{letter-spacing:183.040000pt;}
.ls70{letter-spacing:201.188352pt;}
.ls5a{letter-spacing:244.586667pt;}
.ws8a{word-spacing:-16.693333pt;}
.ws4e{word-spacing:-15.040000pt;}
.ws2{word-spacing:-14.826667pt;}
.ws7d{word-spacing:-14.560000pt;}
.ws88{word-spacing:-14.453333pt;}
.wsac{word-spacing:-13.994667pt;}
.ws4c{word-spacing:-13.920000pt;}
.wsab{word-spacing:-13.909333pt;}
.ws5a{word-spacing:-13.706667pt;}
.ws1d{word-spacing:-13.600000pt;}
.ws5b{word-spacing:-13.546667pt;}
.ws30{word-spacing:-13.493333pt;}
.ws4b{word-spacing:-13.440000pt;}
.ws1b{word-spacing:-13.333333pt;}
.wsad{word-spacing:-13.312000pt;}
.ws1c{word-spacing:-13.280000pt;}
.wsa7{word-spacing:-12.842667pt;}
.wsdb{word-spacing:-12.757333pt;}
.wsdc{word-spacing:-12.714667pt;}
.wsa9{word-spacing:-12.629333pt;}
.wsd9{word-spacing:-12.586667pt;}
.wsaa{word-spacing:-12.501333pt;}
.wsaf{word-spacing:-12.416000pt;}
.wsa6{word-spacing:-11.989333pt;}
.ws4{word-spacing:-11.861333pt;}
.wsd8{word-spacing:-11.733333pt;}
.wsdf{word-spacing:-11.605333pt;}
.wse0{word-spacing:-11.562667pt;}
.ws8c{word-spacing:-11.434667pt;}
.wsae{word-spacing:-11.349333pt;}
.wsde{word-spacing:-11.264000pt;}
.ws8d{word-spacing:-11.178667pt;}
.ws8b{word-spacing:-11.093333pt;}
.wsdd{word-spacing:-10.965333pt;}
.wsda{word-spacing:-10.922667pt;}
.ws3{word-spacing:-10.920000pt;}
.wsb1{word-spacing:-10.794667pt;}
.wsa5{word-spacing:-10.709333pt;}
.ws36{word-spacing:-10.666667pt;}
.wsb0{word-spacing:-10.624000pt;}
.ws80{word-spacing:-9.763307pt;}
.ws60{word-spacing:-9.359093pt;}
.ws31{word-spacing:-9.296907pt;}
.wsa8{word-spacing:-9.088000pt;}
.ws0{word-spacing:-9.076144pt;}
.ws61{word-spacing:-8.675040pt;}
.ws5f{word-spacing:-8.519573pt;}
.ws7f{word-spacing:-8.457387pt;}
.ws32{word-spacing:-8.177547pt;}
.wse7{word-spacing:-8.115360pt;}
.ws62{word-spacing:-7.928800pt;}
.ws63{word-spacing:-7.804427pt;}
.ws4d{word-spacing:-7.773333pt;}
.ws1a{word-spacing:-7.306667pt;}
.ws1{word-spacing:-6.482960pt;}
.ws6d{word-spacing:-6.218667pt;}
.ws94{word-spacing:-5.546667pt;}
.ws6c{word-spacing:-5.280000pt;}
.ws83{word-spacing:-5.226667pt;}
.ws5d{word-spacing:-5.173333pt;}
.wsc4{word-spacing:-4.736000pt;}
.ws77{word-spacing:-4.693333pt;}
.ws43{word-spacing:-4.480000pt;}
.ws82{word-spacing:-4.320000pt;}
.ws8f{word-spacing:-4.160000pt;}
.wsc8{word-spacing:-4.138667pt;}
.ws51{word-spacing:-4.053333pt;}
.wsbe{word-spacing:-3.968000pt;}
.ws4f{word-spacing:-3.893333pt;}
.ws7c{word-spacing:-3.840000pt;}
.ws46{word-spacing:-3.733333pt;}
.ws90{word-spacing:-3.680000pt;}
.ws20{word-spacing:-3.573333pt;}
.ws40{word-spacing:-3.466667pt;}
.ws52{word-spacing:-3.413333pt;}
.wse6{word-spacing:-3.370667pt;}
.wsca{word-spacing:-3.328000pt;}
.wsb4{word-spacing:-3.285333pt;}
.ws3b{word-spacing:-3.253333pt;}
.wsc6{word-spacing:-3.242667pt;}
.ws45{word-spacing:-3.200000pt;}
.ws2f{word-spacing:-3.146667pt;}
.wscc{word-spacing:-3.114667pt;}
.ws47{word-spacing:-3.093333pt;}
.wsbf{word-spacing:-3.072000pt;}
.ws6b{word-spacing:-3.040000pt;}
.ws85{word-spacing:-2.933333pt;}
.wsd2{word-spacing:-2.901333pt;}
.ws16{word-spacing:-2.880000pt;}
.wsc7{word-spacing:-2.730667pt;}
.ws59{word-spacing:-2.720000pt;}
.ws4a{word-spacing:-2.666667pt;}
.wscb{word-spacing:-2.645333pt;}
.ws3c{word-spacing:-2.613333pt;}
.wsd7{word-spacing:-2.602667pt;}
.ws6{word-spacing:-2.565333pt;}
.ws78{word-spacing:-2.560000pt;}
.ws79{word-spacing:-2.506667pt;}
.ws7a{word-spacing:-2.453333pt;}
.ws84{word-spacing:-2.400000pt;}
.ws54{word-spacing:-2.346667pt;}
.wse4{word-spacing:-2.304000pt;}
.ws2e{word-spacing:-2.293333pt;}
.ws27{word-spacing:-2.240000pt;}
.ws6a{word-spacing:-2.186667pt;}
.wsb9{word-spacing:-2.176000pt;}
.ws89{word-spacing:-2.133333pt;}
.wse1{word-spacing:-2.090667pt;}
.ws53{word-spacing:-2.080000pt;}
.wsa0{word-spacing:-2.048000pt;}
.ws50{word-spacing:-2.026667pt;}
.wsb8{word-spacing:-2.005333pt;}
.ws28{word-spacing:-1.973333pt;}
.wsa1{word-spacing:-1.962667pt;}
.ws1e{word-spacing:-1.920000pt;}
.wscf{word-spacing:-1.877333pt;}
.ws25{word-spacing:-1.866667pt;}
.wsbd{word-spacing:-1.834667pt;}
.ws3d{word-spacing:-1.813333pt;}
.ws24{word-spacing:-1.760000pt;}
.wsd1{word-spacing:-1.749333pt;}
.ws57{word-spacing:-1.706667pt;}
.wsd0{word-spacing:-1.664000pt;}
.ws23{word-spacing:-1.653333pt;}
.wse3{word-spacing:-1.621333pt;}
.ws2d{word-spacing:-1.600000pt;}
.ws42{word-spacing:-1.546667pt;}
.wsa2{word-spacing:-1.536000pt;}
.ws1f{word-spacing:-1.493333pt;}
.wse2{word-spacing:-1.450667pt;}
.ws2c{word-spacing:-1.440000pt;}
.wsb7{word-spacing:-1.408000pt;}
.ws2a{word-spacing:-1.386667pt;}
.wsd3{word-spacing:-1.365333pt;}
.ws56{word-spacing:-1.333333pt;}
.wsb6{word-spacing:-1.322667pt;}
.ws55{word-spacing:-1.280000pt;}
.wsc5{word-spacing:-1.237333pt;}
.ws41{word-spacing:-1.226667pt;}
.wsa4{word-spacing:-1.194667pt;}
.ws44{word-spacing:-1.173333pt;}
.ws97{word-spacing:-1.152000pt;}
.ws29{word-spacing:-1.120000pt;}
.wsc3{word-spacing:-1.109333pt;}
.ws3e{word-spacing:-1.066667pt;}
.wsa3{word-spacing:-1.024000pt;}
.wse{word-spacing:-1.013333pt;}
.wsb3{word-spacing:-0.981333pt;}
.ws5c{word-spacing:-0.960000pt;}
.wsb5{word-spacing:-0.938667pt;}
.ws26{word-spacing:-0.906667pt;}
.ws9b{word-spacing:-0.896000pt;}
.ws10{word-spacing:-0.853333pt;}
.wsbc{word-spacing:-0.810667pt;}
.ws13{word-spacing:-0.800000pt;}
.ws96{word-spacing:-0.768000pt;}
.ws3f{word-spacing:-0.746667pt;}
.wsc2{word-spacing:-0.725333pt;}
.ws48{word-spacing:-0.693333pt;}
.wscd{word-spacing:-0.682667pt;}
.ws18{word-spacing:-0.640000pt;}
.wsce{word-spacing:-0.597333pt;}
.ws17{word-spacing:-0.586667pt;}
.ws9a{word-spacing:-0.554667pt;}
.wsf{word-spacing:-0.533333pt;}
.ws98{word-spacing:-0.512000pt;}
.ws12{word-spacing:-0.480000pt;}
.ws9e{word-spacing:-0.469333pt;}
.ws14{word-spacing:-0.426667pt;}
.wsb2{word-spacing:-0.384000pt;}
.wsb{word-spacing:-0.373333pt;}
.ws87{word-spacing:-0.341333pt;}
.wsd{word-spacing:-0.320000pt;}
.wsbb{word-spacing:-0.298667pt;}
.ws2b{word-spacing:-0.266667pt;}
.ws9c{word-spacing:-0.256000pt;}
.ws11{word-spacing:-0.213333pt;}
.wsba{word-spacing:-0.170667pt;}
.ws38{word-spacing:-0.160000pt;}
.ws9d{word-spacing:-0.128000pt;}
.ws22{word-spacing:-0.106667pt;}
.ws99{word-spacing:-0.085333pt;}
.ws3a{word-spacing:-0.053333pt;}
.ws95{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.ws9f{word-spacing:0.042667pt;}
.ws7{word-spacing:0.053333pt;}
.wse5{word-spacing:0.085333pt;}
.ws15{word-spacing:0.106667pt;}
.wsc0{word-spacing:0.128000pt;}
.ws81{word-spacing:0.160000pt;}
.ws9{word-spacing:0.200000pt;}
.wsc{word-spacing:0.213333pt;}
.ws8{word-spacing:0.240000pt;}
.wsd6{word-spacing:0.298667pt;}
.ws39{word-spacing:0.320000pt;}
.wsd5{word-spacing:0.341333pt;}
.ws49{word-spacing:0.800000pt;}
.wsd4{word-spacing:1.194667pt;}
.ws7e{word-spacing:1.450667pt;}
.ws7b{word-spacing:2.026667pt;}
.wsc9{word-spacing:2.176000pt;}
.wsc1{word-spacing:2.261333pt;}
.ws8e{word-spacing:2.560000pt;}
.ws19{word-spacing:3.413333pt;}
.ws5e{word-spacing:3.498667pt;}
.ws86{word-spacing:3.541333pt;}
.ws58{word-spacing:3.680000pt;}
.wsa{word-spacing:4.373333pt;}
.ws21{word-spacing:4.426667pt;}
.ws93{word-spacing:4.853333pt;}
.ws92{word-spacing:4.906667pt;}
.ws91{word-spacing:5.600000pt;}
.ws74{word-spacing:96.938667pt;}
.ws73{word-spacing:113.920000pt;}
.ws71{word-spacing:128.170667pt;}
.ws76{word-spacing:135.253333pt;}
.ws75{word-spacing:144.832533pt;}
.ws70{word-spacing:145.920000pt;}
.ws72{word-spacing:153.045333pt;}
.ws65{word-spacing:173.546667pt;}
.ws67{word-spacing:182.400000pt;}
.ws69{word-spacing:183.413333pt;}
.ws66{word-spacing:191.306667pt;}
.ws6e{word-spacing:192.298667pt;}
.ws6f{word-spacing:215.850667pt;}
.ws68{word-spacing:217.973333pt;}
.ws64{word-spacing:249.813333pt;}
.ws34{word-spacing:367.317333pt;}
.ws33{word-spacing:415.957333pt;}
.ws35{word-spacing:438.485333pt;}
.ws37{word-spacing:901.461333pt;}
._10{margin-left:-2576.085333pt;}
._1a{margin-left:-2554.922667pt;}
._2{margin-left:-8.327467pt;}
._e{margin-left:-7.306667pt;}
._c{margin-left:-5.928480pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.511520pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.906667pt;}
._a{width:1.306667pt;}
._7{width:2.346667pt;}
._9{width:3.413333pt;}
._5{width:4.426667pt;}
._6{width:5.386667pt;}
._8{width:6.284853pt;}
._b{width:7.253333pt;}
._f{width:8.640000pt;}
._11{width:9.706667pt;}
._d{width:11.733333pt;}
._55{width:85.504000pt;}
._52{width:106.709333pt;}
._50{width:113.930667pt;}
._54{width:135.701333pt;}
._49{width:142.378667pt;}
._46{width:145.920000pt;}
._41{width:149.504000pt;}
._48{width:153.045333pt;}
._45{width:157.034667pt;}
._3e{width:164.160000pt;}
._53{width:178.645333pt;}
._3d{width:184.106667pt;}
._40{width:185.194667pt;}
._17{width:192.725333pt;}
._4c{width:194.773333pt;}
._22{width:195.733333pt;}
._3b{width:197.674667pt;}
._19{width:199.850667pt;}
._2c{width:205.600000pt;}
._4a{width:206.517333pt;}
._51{width:209.450667pt;}
._14{width:212.864000pt;}
._16{width:214.442667pt;}
._43{width:225.450667pt;}
._39{width:227.200000pt;}
._21{width:231.306667pt;}
._4f{width:236.117333pt;}
._47{width:237.824000pt;}
._4e{width:241.408000pt;}
._1d{width:247.093333pt;}
._4b{width:248.533333pt;}
._4d{width:250.880000pt;}
._44{width:253.269333pt;}
._3c{width:260.352000pt;}
._1f{width:262.346667pt;}
._3f{width:263.936000pt;}
._3a{width:265.514667pt;}
._20{width:266.826667pt;}
._42{width:268.672000pt;}
._24{width:275.680000pt;}
._28{width:282.400000pt;}
._38{width:286.208000pt;}
._33{width:295.466667pt;}
._35{width:297.178667pt;}
._1c{width:331.893333pt;}
._31{width:335.061333pt;}
._29{width:360.213333pt;}
._1b{width:374.666667pt;}
._2a{width:387.946667pt;}
._2e{width:392.426667pt;}
._2b{width:401.333333pt;}
._2d{width:404.266667pt;}
._26{width:407.253333pt;}
._1e{width:416.106667pt;}
._23{width:420.586667pt;}
._27{width:423.520000pt;}
._25{width:426.506667pt;}
._15{width:582.937707pt;}
._18{width:620.757333pt;}
._34{width:645.930667pt;}
._12{width:741.461333pt;}
._30{width:820.568480pt;}
._37{width:891.690667pt;}
._36{width:903.216000pt;}
._32{width:974.677333pt;}
._13{width:1014.784000pt;}
._2f{width:1763.466667pt;}
.fs5{font-size:23.320000pt;}
.fsb{font-size:24.874667pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y13a{bottom:74.411467pt;}
.yb9{bottom:74.588533pt;}
.y141{bottom:74.590000pt;}
.ye7{bottom:74.721867pt;}
.y143{bottom:74.789467pt;}
.yfa{bottom:74.848400pt;}
.y56{bottom:75.144267pt;}
.y111{bottom:75.701467pt;}
.y1a{bottom:78.248400pt;}
.y9b{bottom:81.379733pt;}
.y11c{bottom:82.072933pt;}
.y194{bottom:84.552800pt;}
.y1d5{bottom:84.678667pt;}
.y140{bottom:88.584667pt;}
.y9a{bottom:88.718400pt;}
.yf9{bottom:88.843067pt;}
.y162{bottom:90.342533pt;}
.yb8{bottom:90.588533pt;}
.ye6{bottom:90.721867pt;}
.y19{bottom:91.576000pt;}
.y9c{bottom:96.046400pt;}
.y11b{bottom:96.522667pt;}
.y193{bottom:97.886133pt;}
.y1d4{bottom:98.012000pt;}
.y110{bottom:98.917333pt;}
.y161{bottom:105.982533pt;}
.yb7{bottom:106.588533pt;}
.ye5{bottom:106.721867pt;}
.y99{bottom:110.499733pt;}
.y11a{bottom:110.965333pt;}
.y192{bottom:111.219467pt;}
.y1d3{bottom:111.345333pt;}
.y10f{bottom:116.024000pt;}
.yb6{bottom:122.588533pt;}
.ye4{bottom:122.721867pt;}
.y191{bottom:124.552800pt;}
.y1d2{bottom:124.678667pt;}
.y98{bottom:124.942400pt;}
.y119{bottom:125.411467pt;}
.y10e{bottom:133.130667pt;}
.y190{bottom:137.886133pt;}
.y1d1{bottom:138.012000pt;}
.y160{bottom:138.342533pt;}
.yb5{bottom:138.588533pt;}
.ye3{bottom:138.721867pt;}
.y97{bottom:139.385067pt;}
.y118{bottom:139.857733pt;}
.y29{bottom:148.228267pt;}
.y10d{bottom:150.237333pt;}
.y18f{bottom:151.219467pt;}
.y1d0{bottom:151.345333pt;}
.y96{bottom:153.827733pt;}
.y117{bottom:154.300267pt;}
.y15f{bottom:154.342533pt;}
.yb4{bottom:154.588533pt;}
.ye2{bottom:154.721867pt;}
.y28{bottom:164.228267pt;}
.y18e{bottom:164.552800pt;}
.y1cf{bottom:164.678667pt;}
.y10c{bottom:167.344000pt;}
.y15e{bottom:170.342533pt;}
.yb3{bottom:170.588533pt;}
.ye1{bottom:170.721867pt;}
.y18d{bottom:177.886133pt;}
.y1ce{bottom:178.012000pt;}
.y27{bottom:180.228267pt;}
.y95{bottom:181.838400pt;}
.y116{bottom:182.310933pt;}
.y10b{bottom:184.450667pt;}
.y15d{bottom:186.342533pt;}
.yb2{bottom:186.588533pt;}
.ye0{bottom:186.721867pt;}
.y18c{bottom:191.219467pt;}
.y1cd{bottom:191.345333pt;}
.y26{bottom:196.228267pt;}
.y10a{bottom:201.557333pt;}
.y15c{bottom:202.342533pt;}
.yb1{bottom:202.588533pt;}
.ydf{bottom:202.721867pt;}
.y18b{bottom:204.552800pt;}
.y1cc{bottom:204.678667pt;}
.y25{bottom:212.228267pt;}
.y94{bottom:212.868533pt;}
.y115{bottom:213.329200pt;}
.y18a{bottom:217.886133pt;}
.y15b{bottom:217.982533pt;}
.y1cb{bottom:218.012000pt;}
.yb0{bottom:218.588533pt;}
.y109{bottom:218.664000pt;}
.yde{bottom:218.721867pt;}
.y24{bottom:228.228267pt;}
.y189{bottom:231.219467pt;}
.y1ca{bottom:231.345333pt;}
.yaf{bottom:234.588533pt;}
.ydd{bottom:234.721867pt;}
.y108{bottom:235.770667pt;}
.y23{bottom:244.228267pt;}
.y188{bottom:244.552800pt;}
.y1c9{bottom:244.678667pt;}
.y15a{bottom:250.342533pt;}
.yae{bottom:250.588533pt;}
.y6c{bottom:250.595867pt;}
.y93{bottom:250.721867pt;}
.y132{bottom:251.700133pt;}
.y107{bottom:252.877333pt;}
.y187{bottom:257.886133pt;}
.y1c8{bottom:258.012000pt;}
.y22{bottom:260.228267pt;}
.y159{bottom:266.342533pt;}
.y131{bottom:266.366800pt;}
.yad{bottom:266.588533pt;}
.y6b{bottom:266.595867pt;}
.y92{bottom:266.721867pt;}
.y106{bottom:269.984000pt;}
.y186{bottom:271.219467pt;}
.y1c7{bottom:271.345333pt;}
.y21{bottom:276.228267pt;}
.y158{bottom:282.342533pt;}
.yac{bottom:282.588533pt;}
.y6a{bottom:282.595867pt;}
.ydc{bottom:282.721867pt;}
.y185{bottom:284.552800pt;}
.y1c6{bottom:284.678667pt;}
.y105{bottom:287.090667pt;}
.y130{bottom:289.044133pt;}
.y20{bottom:292.228267pt;}
.y184{bottom:297.886133pt;}
.y1c5{bottom:298.012000pt;}
.y157{bottom:298.342533pt;}
.y91{bottom:298.361867pt;}
.yab{bottom:298.588533pt;}
.y69{bottom:298.595867pt;}
.y12f{bottom:303.486800pt;}
.y104{bottom:304.197333pt;}
.y1f{bottom:308.228267pt;}
.yfc{bottom:308.615733pt;}
.y183{bottom:311.219467pt;}
.y1c4{bottom:311.345333pt;}
.y156{bottom:314.342533pt;}
.y90{bottom:314.361867pt;}
.yaa{bottom:314.588533pt;}
.y68{bottom:314.595867pt;}
.y12e{bottom:317.929467pt;}
.y103{bottom:321.304000pt;}
.y1e{bottom:324.228267pt;}
.y182{bottom:324.552800pt;}
.y1c3{bottom:324.678667pt;}
.y155{bottom:330.342533pt;}
.ya9{bottom:330.588533pt;}
.y67{bottom:330.595867pt;}
.y12d{bottom:332.372133pt;}
.y181{bottom:337.886133pt;}
.y1c2{bottom:338.012000pt;}
.y102{bottom:338.410667pt;}
.y1d{bottom:340.228267pt;}
.y154{bottom:345.982533pt;}
.y8f{bottom:346.588533pt;}
.y66{bottom:346.595867pt;}
.y12c{bottom:346.860533pt;}
.y180{bottom:351.219467pt;}
.y1c1{bottom:351.345333pt;}
.y101{bottom:355.517333pt;}
.y1c{bottom:356.228267pt;}
.y12b{bottom:361.303200pt;}
.y8e{bottom:362.588533pt;}
.y65{bottom:362.595867pt;}
.ydb{bottom:362.601867pt;}
.y17f{bottom:364.552800pt;}
.y1c0{bottom:364.678667pt;}
.y2b{bottom:372.228267pt;}
.y12a{bottom:375.745867pt;}
.y17e{bottom:377.886133pt;}
.y1bf{bottom:378.012000pt;}
.y153{bottom:378.342533pt;}
.y8d{bottom:378.588533pt;}
.y64{bottom:378.595867pt;}
.yda{bottom:378.601867pt;}
.y100{bottom:384.861067pt;}
.y1b{bottom:387.868267pt;}
.y2a{bottom:388.228267pt;}
.y129{bottom:390.188533pt;}
.y17d{bottom:391.219467pt;}
.y1be{bottom:391.345333pt;}
.y152{bottom:394.342533pt;}
.y8c{bottom:394.588533pt;}
.y63{bottom:394.595867pt;}
.yd9{bottom:394.601867pt;}
.y17c{bottom:404.552800pt;}
.y128{bottom:404.631200pt;}
.y1bd{bottom:404.678667pt;}
.y151{bottom:410.342533pt;}
.y8b{bottom:410.588533pt;}
.y62{bottom:410.595867pt;}
.yd8{bottom:410.601867pt;}
.y13c{bottom:414.592800pt;}
.yff{bottom:416.761867pt;}
.y17b{bottom:417.886133pt;}
.y1bc{bottom:418.012000pt;}
.y127{bottom:419.073867pt;}
.y150{bottom:426.342533pt;}
.ya8{bottom:426.588533pt;}
.y61{bottom:426.595867pt;}
.y8a{bottom:426.609200pt;}
.y13b{bottom:428.587467pt;}
.y17a{bottom:431.219467pt;}
.y1bb{bottom:431.345333pt;}
.y126{bottom:433.516533pt;}
.yd7{bottom:442.241867pt;}
.y14f{bottom:442.342533pt;}
.ya7{bottom:442.588533pt;}
.y60{bottom:442.595867pt;}
.y89{bottom:442.609200pt;}
.y179{bottom:444.552800pt;}
.y1ba{bottom:444.678667pt;}
.y146{bottom:445.245600pt;}
.y125{bottom:447.959200pt;}
.y18{bottom:455.118800pt;}
.y178{bottom:457.886133pt;}
.y1b9{bottom:458.012000pt;}
.y14e{bottom:458.342533pt;}
.ya6{bottom:458.588533pt;}
.y5f{bottom:458.595867pt;}
.y88{bottom:458.609200pt;}
.y124{bottom:462.401867pt;}
.yfe{bottom:464.175200pt;}
.y55{bottom:469.245600pt;}
.y17{bottom:471.127067pt;}
.y177{bottom:471.219467pt;}
.y1b8{bottom:471.345333pt;}
.y14d{bottom:474.342533pt;}
.yd6{bottom:474.468533pt;}
.ya5{bottom:474.588533pt;}
.y5e{bottom:474.595867pt;}
.y87{bottom:474.609200pt;}
.y123{bottom:476.844533pt;}
.y176{bottom:484.552800pt;}
.y1b7{bottom:484.678667pt;}
.y14c{bottom:490.342533pt;}
.yd5{bottom:490.468533pt;}
.ya4{bottom:490.588533pt;}
.y5d{bottom:490.595867pt;}
.y122{bottom:491.287200pt;}
.y16{bottom:495.433733pt;}
.y175{bottom:497.886133pt;}
.y1b6{bottom:498.012000pt;}
.y121{bottom:505.729867pt;}
.y86{bottom:506.249200pt;}
.y14b{bottom:506.342533pt;}
.yd4{bottom:506.468533pt;}
.ya3{bottom:506.588533pt;}
.y5c{bottom:506.595867pt;}
.y174{bottom:511.219467pt;}
.y1b5{bottom:511.345333pt;}
.y15{bottom:511.433733pt;}
.y120{bottom:520.172533pt;}
.y14a{bottom:522.342533pt;}
.yd3{bottom:522.468533pt;}
.y5b{bottom:522.595867pt;}
.y173{bottom:524.552800pt;}
.y1b4{bottom:524.678667pt;}
.y14{bottom:527.433733pt;}
.y11f{bottom:534.615200pt;}
.y172{bottom:537.886133pt;}
.y1b3{bottom:538.012000pt;}
.y149{bottom:538.342533pt;}
.yd2{bottom:538.468533pt;}
.y85{bottom:538.475867pt;}
.y5a{bottom:538.595867pt;}
.y145{bottom:539.856133pt;}
.y13{bottom:543.433733pt;}
.y171{bottom:551.219467pt;}
.y1b2{bottom:551.345333pt;}
.yd1{bottom:554.468533pt;}
.y84{bottom:554.475867pt;}
.ya2{bottom:554.595867pt;}
.y12{bottom:559.433733pt;}
.y11e{bottom:562.625867pt;}
.y170{bottom:564.552800pt;}
.y1b1{bottom:564.678667pt;}
.yfb{bottom:567.891333pt;}
.y148{bottom:569.982533pt;}
.y59{bottom:570.235867pt;}
.y13f{bottom:570.462533pt;}
.yd0{bottom:570.468533pt;}
.y83{bottom:570.475867pt;}
.ya1{bottom:570.595867pt;}
.y11{bottom:575.433733pt;}
.y16f{bottom:577.886133pt;}
.y1b0{bottom:578.012000pt;}
.y13e{bottom:586.462533pt;}
.ycf{bottom:586.468533pt;}
.y82{bottom:586.475867pt;}
.ya0{bottom:586.595867pt;}
.y54{bottom:586.715867pt;}
.y16e{bottom:591.219467pt;}
.y1af{bottom:591.345333pt;}
.y10{bottom:591.433733pt;}
.y11d{bottom:593.643733pt;}
.y58{bottom:602.462533pt;}
.yce{bottom:602.468533pt;}
.y81{bottom:602.475867pt;}
.y53{bottom:602.715867pt;}
.y16d{bottom:604.552800pt;}
.y1ae{bottom:604.678667pt;}
.yf{bottom:607.433733pt;}
.y16c{bottom:617.886133pt;}
.y1ad{bottom:618.012000pt;}
.y9f{bottom:618.235867pt;}
.y42{bottom:618.462533pt;}
.ycd{bottom:618.468533pt;}
.y80{bottom:618.475867pt;}
.y52{bottom:618.715867pt;}
.ye{bottom:623.433733pt;}
.y16b{bottom:631.219467pt;}
.y1ac{bottom:631.345333pt;}
.y9e{bottom:634.235867pt;}
.y41{bottom:634.462533pt;}
.ycc{bottom:634.468533pt;}
.y7f{bottom:634.475867pt;}
.yf8{bottom:634.595867pt;}
.y51{bottom:634.715867pt;}
.yd{bottom:639.433733pt;}
.y16a{bottom:644.552800pt;}
.y1ab{bottom:644.678667pt;}
.y40{bottom:650.462533pt;}
.ycb{bottom:650.468533pt;}
.y7e{bottom:650.475867pt;}
.yf7{bottom:650.595867pt;}
.y50{bottom:650.715867pt;}
.yc{bottom:655.433733pt;}
.y169{bottom:657.886133pt;}
.y1aa{bottom:658.012000pt;}
.y3f{bottom:666.462533pt;}
.yca{bottom:666.468533pt;}
.y7d{bottom:666.475867pt;}
.yf6{bottom:666.595867pt;}
.y4f{bottom:666.715867pt;}
.y168{bottom:671.219467pt;}
.y1a9{bottom:671.345333pt;}
.y3e{bottom:682.462533pt;}
.yc9{bottom:682.468533pt;}
.y7c{bottom:682.475867pt;}
.yf5{bottom:682.595867pt;}
.y4e{bottom:682.715867pt;}
.y167{bottom:684.552800pt;}
.y1a8{bottom:684.678667pt;}
.yb{bottom:695.571067pt;}
.y1a7{bottom:698.012000pt;}
.y3d{bottom:698.462533pt;}
.y1dd{bottom:698.464533pt;}
.yc8{bottom:698.468533pt;}
.y7b{bottom:698.475867pt;}
.yf4{bottom:698.595867pt;}
.y4d{bottom:698.715867pt;}
.ya{bottom:706.638400pt;}
.y1a6{bottom:711.345333pt;}
.y166{bottom:713.995867pt;}
.y3c{bottom:714.462533pt;}
.yc7{bottom:714.468533pt;}
.y7a{bottom:714.475867pt;}
.yf3{bottom:714.595867pt;}
.y1a5{bottom:724.678667pt;}
.y4c{bottom:730.355867pt;}
.y3b{bottom:730.462533pt;}
.y1dc{bottom:730.464533pt;}
.yc6{bottom:730.468533pt;}
.y79{bottom:730.475867pt;}
.yf2{bottom:730.595867pt;}
.y9{bottom:734.829867pt;}
.y1a4{bottom:738.012000pt;}
.y3a{bottom:746.462533pt;}
.y1db{bottom:746.464533pt;}
.yc5{bottom:746.468533pt;}
.y78{bottom:746.475867pt;}
.yf1{bottom:746.595867pt;}
.y8{bottom:746.829867pt;}
.y1a3{bottom:751.345333pt;}
.y39{bottom:762.462533pt;}
.yc4{bottom:762.468533pt;}
.y77{bottom:762.475867pt;}
.y4b{bottom:762.582533pt;}
.yf0{bottom:762.595867pt;}
.y7{bottom:763.652400pt;}
.y1a2{bottom:764.678667pt;}
.y1a1{bottom:778.012000pt;}
.y165{bottom:778.115867pt;}
.y38{bottom:778.462533pt;}
.y1da{bottom:778.464533pt;}
.yc3{bottom:778.468533pt;}
.y76{bottom:778.475867pt;}
.y4a{bottom:778.582533pt;}
.yef{bottom:778.595867pt;}
.y6{bottom:789.183067pt;}
.y1a0{bottom:791.345333pt;}
.y37{bottom:794.462533pt;}
.y1d9{bottom:794.464533pt;}
.yc2{bottom:794.468533pt;}
.y75{bottom:794.475867pt;}
.y49{bottom:794.582533pt;}
.yee{bottom:794.595867pt;}
.y19f{bottom:804.678667pt;}
.yea{bottom:810.102533pt;}
.y36{bottom:810.462533pt;}
.yc1{bottom:810.468533pt;}
.y74{bottom:810.475867pt;}
.y48{bottom:810.582533pt;}
.yed{bottom:810.595867pt;}
.y19e{bottom:818.012000pt;}
.y164{bottom:826.115867pt;}
.y35{bottom:826.462533pt;}
.y1d8{bottom:826.464533pt;}
.yc0{bottom:826.468533pt;}
.y73{bottom:826.475867pt;}
.y47{bottom:826.582533pt;}
.yec{bottom:826.595867pt;}
.y5{bottom:830.226133pt;}
.y19d{bottom:831.345333pt;}
.ye9{bottom:841.982533pt;}
.y34{bottom:842.462533pt;}
.y1d7{bottom:842.464533pt;}
.ybf{bottom:842.468533pt;}
.y72{bottom:842.475867pt;}
.y46{bottom:842.582533pt;}
.y114{bottom:842.595867pt;}
.y19c{bottom:844.678667pt;}
.y19b{bottom:858.012000pt;}
.yeb{bottom:858.235867pt;}
.y33{bottom:858.462533pt;}
.y137{bottom:858.464533pt;}
.ybe{bottom:858.468533pt;}
.y71{bottom:858.475867pt;}
.y45{bottom:858.582533pt;}
.y4{bottom:862.635733pt;}
.y19a{bottom:871.345333pt;}
.y113{bottom:874.235867pt;}
.y32{bottom:874.462533pt;}
.y136{bottom:874.464533pt;}
.ybd{bottom:874.468533pt;}
.y70{bottom:874.475867pt;}
.y199{bottom:884.678667pt;}
.y44{bottom:890.222533pt;}
.y31{bottom:890.462533pt;}
.y135{bottom:890.464533pt;}
.ybc{bottom:890.468533pt;}
.y6f{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y198{bottom:898.012000pt;}
.y30{bottom:906.462533pt;}
.y139{bottom:906.464533pt;}
.ybb{bottom:906.468533pt;}
.y6e{bottom:906.475867pt;}
.y197{bottom:911.345333pt;}
.y43{bottom:922.102533pt;}
.y134{bottom:922.104533pt;}
.y163{bottom:922.115867pt;}
.y2f{bottom:922.462533pt;}
.y138{bottom:922.464533pt;}
.yba{bottom:922.468533pt;}
.y6d{bottom:922.475867pt;}
.y196{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y147{bottom:1006.589600pt;}
.y195{bottom:1006.590133pt;}
.y112{bottom:1006.592133pt;}
.ye8{bottom:1006.594400pt;}
.y9d{bottom:1006.595733pt;}
.y144{bottom:1006.597467pt;}
.y1d6{bottom:1006.598667pt;}
.yfd{bottom:1006.599733pt;}
.y57{bottom:1006.600267pt;}
.y142{bottom:1006.600667pt;}
.y133{bottom:1006.601467pt;}
.y13d{bottom:1006.603467pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.hd{height:29.140625pt;}
.hc{height:29.150225pt;}
.h7{height:29.160156pt;}
.h12{height:29.645833pt;}
.h14{height:29.646367pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.he{height:37.031250pt;}
.hf{height:37.057292pt;}
.ha{height:38.828125pt;}
.hb{height:38.854167pt;}
.h9{height:38.880208pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h13{height:58.957833pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:68.031467pt;}
.x1e{left:69.921200pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x15{left:88.818933pt;}
.x2a{left:90.708800pt;}
.x4{left:94.488133pt;}
.x1a{left:98.271467pt;}
.x28{left:109.606267pt;}
.x3{left:111.499333pt;}
.x7{left:117.170133pt;}
.x1f{left:151.184667pt;}
.x20{left:153.070933pt;}
.x25{left:169.004800pt;}
.x5{left:170.078667pt;}
.x6{left:189.223467pt;}
.x21{left:195.677733pt;}
.x1b{left:206.542533pt;}
.x17{left:210.578933pt;}
.x16{left:214.632267pt;}
.x18{left:296.701600pt;}
.x1c{left:369.268800pt;}
.xb{left:404.481333pt;}
.xe{left:406.284800pt;}
.x13{left:425.195867pt;}
.x8{left:427.090133pt;}
.x27{left:428.976533pt;}
.xf{left:436.524800pt;}
.x29{left:447.888933pt;}
.x14{left:455.435867pt;}
.x9{left:457.330133pt;}
.xd{left:466.898133pt;}
.x26{left:510.951467pt;}
.x12{left:589.770933pt;}
.x2{left:616.324800pt;}
.x22{left:641.532000pt;}
.x11{left:647.459467pt;}
.x23{left:651.032533pt;}
.x24{left:661.219200pt;}
.x10{left:665.016800pt;}
.x19{left:666.365600pt;}
.x1d{left:701.300267pt;}
}




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