
    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_27201b8262a7303d2f2f133d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cee80176d6e87943225ca801.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_72d003ae5379462b9fe5b59e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_53d4cafb1b82c470f8e410aa.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_224fcacb779d0d42b7a401f8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d86759239cd87bd2de3572e0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2efb1eb3ffcaea21bbc4e2e8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.882324;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_4d5cfd540817b1d9912b2b02.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_eb9d5c2f8a52d2c80a09988f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.882324;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_995d97560d0bbe27fd02eeb9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_470fa63d06a084bcbcfe8dbf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c3fecaf7f717d82134342e3c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3410a36fbe93f1ece91f1091.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.925781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d1b3deabb32558a4ed0a23a2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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);}
.v4{vertical-align:-25.488000px;}
.v3{vertical-align:-2.166000px;}
.v5{vertical-align:-1.074000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.620000px;}
.v2{vertical-align:3.408000px;}
.ls89{letter-spacing:-4.284000px;}
.ls66{letter-spacing:-3.684000px;}
.lsa1{letter-spacing:-2.640000px;}
.ls8c{letter-spacing:-1.350000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls70{letter-spacing:-0.420000px;}
.ls4c{letter-spacing:-0.360000px;}
.lsbb{letter-spacing:-0.336000px;}
.ls6f{letter-spacing:-0.300000px;}
.lsbc{letter-spacing:-0.288000px;}
.ls3c{letter-spacing:-0.240000px;}
.lsb5{letter-spacing:-0.192000px;}
.ls3b{letter-spacing:-0.180000px;}
.lsa2{letter-spacing:-0.144000px;}
.ls57{letter-spacing:-0.120000px;}
.ls7a{letter-spacing:-0.096000px;}
.ls39{letter-spacing:-0.060000px;}
.lsa3{letter-spacing:-0.048000px;}
.ls19{letter-spacing:0.000000px;}
.ls7e{letter-spacing:0.006000px;}
.ls87{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.048000px;}
.ls4{letter-spacing:0.055200px;}
.ls10{letter-spacing:0.060000px;}
.ls49{letter-spacing:0.096000px;}
.lsd{letter-spacing:0.120000px;}
.ls7d{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.180000px;}
.lsa5{letter-spacing:0.192000px;}
.ls1b{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.288000px;}
.lse{letter-spacing:0.300000px;}
.ls5c{letter-spacing:0.336000px;}
.ls40{letter-spacing:0.360000px;}
.lsac{letter-spacing:0.384000px;}
.ls4f{letter-spacing:0.420000px;}
.lsa0{letter-spacing:0.432000px;}
.ls20{letter-spacing:0.480000px;}
.lsb1{letter-spacing:0.528000px;}
.ls9{letter-spacing:0.540000px;}
.lsa7{letter-spacing:0.576000px;}
.ls6{letter-spacing:0.600000px;}
.ls93{letter-spacing:0.624000px;}
.ls45{letter-spacing:0.660000px;}
.ls4b{letter-spacing:0.672000px;}
.ls0{letter-spacing:0.720000px;}
.lsa6{letter-spacing:0.768000px;}
.ls68{letter-spacing:0.780000px;}
.ls97{letter-spacing:0.816000px;}
.lsb{letter-spacing:0.840000px;}
.ls7f{letter-spacing:0.864000px;}
.lsa{letter-spacing:0.900000px;}
.ls9c{letter-spacing:0.912000px;}
.ls2f{letter-spacing:0.960000px;}
.ls1{letter-spacing:1.008000px;}
.ls27{letter-spacing:1.020000px;}
.ls96{letter-spacing:1.056000px;}
.ls29{letter-spacing:1.080000px;}
.lsb4{letter-spacing:1.104000px;}
.ls43{letter-spacing:1.140000px;}
.ls72{letter-spacing:1.152000px;}
.ls36{letter-spacing:1.200000px;}
.lsb3{letter-spacing:1.248000px;}
.ls67{letter-spacing:1.260000px;}
.lsb8{letter-spacing:1.296000px;}
.ls12{letter-spacing:1.320000px;}
.ls63{letter-spacing:1.344000px;}
.ls14{letter-spacing:1.380000px;}
.ls4a{letter-spacing:1.392000px;}
.ls8{letter-spacing:1.440000px;}
.ls71{letter-spacing:1.488000px;}
.ls5{letter-spacing:1.500000px;}
.ls94{letter-spacing:1.536000px;}
.ls21{letter-spacing:1.560000px;}
.lsa9{letter-spacing:1.584000px;}
.ls34{letter-spacing:1.620000px;}
.ls62{letter-spacing:1.632000px;}
.ls13{letter-spacing:1.680000px;}
.lsaf{letter-spacing:1.728000px;}
.lsf{letter-spacing:1.740000px;}
.ls78{letter-spacing:1.764000px;}
.ls80{letter-spacing:1.776000px;}
.ls38{letter-spacing:1.800000px;}
.ls7c{letter-spacing:1.827000px;}
.ls44{letter-spacing:1.860000px;}
.ls7b{letter-spacing:1.890000px;}
.ls37{letter-spacing:1.920000px;}
.ls6c{letter-spacing:1.968000px;}
.ls24{letter-spacing:1.980000px;}
.ls90{letter-spacing:2.016000px;}
.ls18{letter-spacing:2.040000px;}
.lsae{letter-spacing:2.064000px;}
.ls58{letter-spacing:2.100000px;}
.ls9a{letter-spacing:2.112000px;}
.ls73{letter-spacing:2.160000px;}
.ls92{letter-spacing:2.208000px;}
.ls2d{letter-spacing:2.220000px;}
.lsaa{letter-spacing:2.256000px;}
.ls2b{letter-spacing:2.280000px;}
.ls79{letter-spacing:2.304000px;}
.ls2a{letter-spacing:2.340000px;}
.lsa4{letter-spacing:2.352000px;}
.ls7{letter-spacing:2.400000px;}
.ls91{letter-spacing:2.448000px;}
.ls77{letter-spacing:2.457000px;}
.ls3e{letter-spacing:2.460000px;}
.ls17{letter-spacing:2.520000px;}
.ls99{letter-spacing:2.544000px;}
.ls2c{letter-spacing:2.580000px;}
.ls55{letter-spacing:2.640000px;}
.lsba{letter-spacing:2.688000px;}
.ls1d{letter-spacing:2.700000px;}
.ls53{letter-spacing:2.760000px;}
.ls11{letter-spacing:2.820000px;}
.ls65{letter-spacing:2.856000px;}
.ls6e{letter-spacing:2.880000px;}
.lsa8{letter-spacing:2.928000px;}
.ls4e{letter-spacing:2.940000px;}
.ls95{letter-spacing:2.976000px;}
.ls23{letter-spacing:3.000000px;}
.ls9b{letter-spacing:3.024000px;}
.ls15{letter-spacing:3.060000px;}
.ls6d{letter-spacing:3.120000px;}
.lsb6{letter-spacing:3.168000px;}
.ls61{letter-spacing:3.180000px;}
.ls98{letter-spacing:3.216000px;}
.ls69{letter-spacing:3.240000px;}
.ls76{letter-spacing:3.264000px;}
.ls5e{letter-spacing:3.300000px;}
.ls25{letter-spacing:3.360000px;}
.ls9f{letter-spacing:3.408000px;}
.ls22{letter-spacing:3.420000px;}
.lsb7{letter-spacing:3.456000px;}
.lsc{letter-spacing:3.480000px;}
.ls1f{letter-spacing:3.540000px;}
.lsb9{letter-spacing:3.552000px;}
.ls8f{letter-spacing:3.600000px;}
.ls47{letter-spacing:3.648000px;}
.ls60{letter-spacing:3.660000px;}
.ls48{letter-spacing:3.696000px;}
.ls54{letter-spacing:3.720000px;}
.ls46{letter-spacing:3.780000px;}
.ls9e{letter-spacing:3.792000px;}
.ls8a{letter-spacing:3.834000px;}
.ls1e{letter-spacing:3.840000px;}
.lsad{letter-spacing:3.888000px;}
.ls50{letter-spacing:3.900000px;}
.ls26{letter-spacing:3.960000px;}
.ls9d{letter-spacing:3.984000px;}
.ls51{letter-spacing:4.020000px;}
.ls2e{letter-spacing:4.080000px;}
.ls8d{letter-spacing:4.104000px;}
.ls56{letter-spacing:4.140000px;}
.ls75{letter-spacing:4.200000px;}
.ls5f{letter-spacing:4.260000px;}
.ls4d{letter-spacing:4.380000px;}
.ls5d{letter-spacing:4.440000px;}
.lsab{letter-spacing:4.464000px;}
.ls52{letter-spacing:4.500000px;}
.ls59{letter-spacing:4.560000px;}
.ls6b{letter-spacing:4.680000px;}
.ls5a{letter-spacing:4.800000px;}
.ls31{letter-spacing:4.920000px;}
.ls3f{letter-spacing:4.980000px;}
.ls42{letter-spacing:5.040000px;}
.lsb0{letter-spacing:5.088000px;}
.ls8e{letter-spacing:5.220000px;}
.ls83{letter-spacing:5.334000px;}
.ls84{letter-spacing:5.340000px;}
.ls3a{letter-spacing:5.460000px;}
.ls33{letter-spacing:5.880000px;}
.ls16{letter-spacing:6.000000px;}
.lsb2{letter-spacing:6.096000px;}
.ls88{letter-spacing:6.156000px;}
.ls30{letter-spacing:6.300000px;}
.ls6a{letter-spacing:6.480000px;}
.ls1c{letter-spacing:6.540000px;}
.ls82{letter-spacing:6.840000px;}
.ls74{letter-spacing:6.900000px;}
.ls32{letter-spacing:7.200000px;}
.ls81{letter-spacing:7.620000px;}
.ls35{letter-spacing:7.800000px;}
.ls8b{letter-spacing:8.208000px;}
.ls3d{letter-spacing:8.280000px;}
.ls85{letter-spacing:9.120000px;}
.ls41{letter-spacing:9.600000px;}
.ls5b{letter-spacing:10.260000px;}
.ls64{letter-spacing:19.518000px;}
.ls86{letter-spacing:32.136000px;}
.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;}
}
.ws3d{word-spacing:-60.000000px;}
.ws62{word-spacing:-23.580000px;}
.ws7b{word-spacing:-23.520000px;}
.ws2f{word-spacing:-23.220000px;}
.ws4b{word-spacing:-21.720000px;}
.ws4c{word-spacing:-21.360000px;}
.ws30{word-spacing:-21.180000px;}
.ws2e{word-spacing:-20.580000px;}
.ws79{word-spacing:-20.400000px;}
.ws60{word-spacing:-20.040000px;}
.ws7d{word-spacing:-19.860000px;}
.ws4e{word-spacing:-19.620000px;}
.ws69{word-spacing:-19.440000px;}
.ws7a{word-spacing:-19.140000px;}
.ws68{word-spacing:-18.840000px;}
.ws3c{word-spacing:-18.780000px;}
.ws61{word-spacing:-18.600000px;}
.ws31{word-spacing:-18.000000px;}
.ws67{word-spacing:-17.820000px;}
.ws4a{word-spacing:-17.760000px;}
.ws3b{word-spacing:-17.580000px;}
.ws2d{word-spacing:-17.520000px;}
.ws74{word-spacing:-17.280000px;}
.wsa8{word-spacing:-17.232000px;}
.ws44{word-spacing:-17.220000px;}
.ws7c{word-spacing:-17.100000px;}
.ws75{word-spacing:-17.040000px;}
.ws1b{word-spacing:-16.680000px;}
.ws1d{word-spacing:-16.620000px;}
.ws2c{word-spacing:-16.560000px;}
.wsbe{word-spacing:-16.032000px;}
.wsa7{word-spacing:-15.600000px;}
.ws96{word-spacing:-15.456000px;}
.ws0{word-spacing:-14.352000px;}
.ws11{word-spacing:-14.178000px;}
.ws95{word-spacing:-14.160000px;}
.ws4d{word-spacing:-14.064000px;}
.ws73{word-spacing:-14.016000px;}
.ws1c{word-spacing:-13.344000px;}
.ws94{word-spacing:-10.704000px;}
.ws7e{word-spacing:-7.620000px;}
.ws8e{word-spacing:-5.220000px;}
.wsb3{word-spacing:-5.088000px;}
.wsb0{word-spacing:-4.464000px;}
.ws78{word-spacing:-4.440000px;}
.wsa4{word-spacing:-4.080000px;}
.ws38{word-spacing:-4.020000px;}
.ws29{word-spacing:-3.780000px;}
.ws8c{word-spacing:-3.720000px;}
.wsc4{word-spacing:-3.552000px;}
.ws52{word-spacing:-3.540000px;}
.ws5e{word-spacing:-3.360000px;}
.ws97{word-spacing:-3.300000px;}
.wsaf{word-spacing:-3.168000px;}
.ws5b{word-spacing:-3.120000px;}
.ws89{word-spacing:-2.820000px;}
.ws5c{word-spacing:-2.760000px;}
.wsc5{word-spacing:-2.688000px;}
.ws2{word-spacing:-2.664000px;}
.ws9a{word-spacing:-2.580000px;}
.ws18{word-spacing:-2.220000px;}
.ws80{word-spacing:-2.160000px;}
.ws39{word-spacing:-2.040000px;}
.ws20{word-spacing:-1.980000px;}
.ws56{word-spacing:-1.968000px;}
.ws76{word-spacing:-1.890000px;}
.ws86{word-spacing:-1.740000px;}
.wsb2{word-spacing:-1.728000px;}
.ws87{word-spacing:-1.620000px;}
.ws40{word-spacing:-1.560000px;}
.ws41{word-spacing:-1.500000px;}
.wsc0{word-spacing:-1.392000px;}
.wsf{word-spacing:-1.380000px;}
.ws54{word-spacing:-1.080000px;}
.ws13{word-spacing:-1.020000px;}
.wsad{word-spacing:-0.864000px;}
.wsb4{word-spacing:-0.816000px;}
.ws55{word-spacing:-0.720000px;}
.ws77{word-spacing:-0.672000px;}
.wsc3{word-spacing:-0.624000px;}
.ws8a{word-spacing:-0.480000px;}
.wsc1{word-spacing:-0.432000px;}
.wsc2{word-spacing:-0.336000px;}
.ws23{word-spacing:-0.300000px;}
.ws12{word-spacing:-0.240000px;}
.ws59{word-spacing:-0.180000px;}
.wsa1{word-spacing:-0.144000px;}
.ws14{word-spacing:-0.120000px;}
.ws2b{word-spacing:-0.096000px;}
.ws27{word-spacing:-0.060000px;}
.wsa3{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
.ws9e{word-spacing:0.048000px;}
.ws83{word-spacing:0.054000px;}
.ws37{word-spacing:0.060000px;}
.ws9c{word-spacing:0.096000px;}
.ws21{word-spacing:0.180000px;}
.wsa9{word-spacing:0.192000px;}
.ws3f{word-spacing:0.240000px;}
.ws72{word-spacing:0.288000px;}
.ws6d{word-spacing:0.300000px;}
.wsb6{word-spacing:0.336000px;}
.ws57{word-spacing:0.360000px;}
.ws5d{word-spacing:0.420000px;}
.ws34{word-spacing:0.540000px;}
.ws84{word-spacing:0.546000px;}
.ws6f{word-spacing:0.600000px;}
.ws22{word-spacing:0.660000px;}
.ws88{word-spacing:0.714000px;}
.ws36{word-spacing:0.720000px;}
.wsb7{word-spacing:0.816000px;}
.ws5{word-spacing:0.864000px;}
.ws65{word-spacing:0.900000px;}
.ws5a{word-spacing:1.020000px;}
.ws82{word-spacing:1.056000px;}
.ws8{word-spacing:1.080000px;}
.ws35{word-spacing:1.140000px;}
.ws6{word-spacing:1.152000px;}
.ws90{word-spacing:1.320000px;}
.wsd{word-spacing:1.380000px;}
.ws6b{word-spacing:1.440000px;}
.ws8f{word-spacing:1.680000px;}
.wsc8{word-spacing:1.728000px;}
.ws6c{word-spacing:1.740000px;}
.wsa6{word-spacing:1.776000px;}
.ws7f{word-spacing:1.800000px;}
.wsae{word-spacing:1.824000px;}
.ws24{word-spacing:1.860000px;}
.ws93{word-spacing:1.920000px;}
.wsbf{word-spacing:1.968000px;}
.ws25{word-spacing:2.040000px;}
.ws33{word-spacing:2.100000px;}
.ws10{word-spacing:2.160000px;}
.ws16{word-spacing:2.280000px;}
.wsba{word-spacing:2.304000px;}
.wsbb{word-spacing:2.352000px;}
.wsbd{word-spacing:2.400000px;}
.ws51{word-spacing:2.580000px;}
.wsa0{word-spacing:2.592000px;}
.ws53{word-spacing:2.640000px;}
.wsa2{word-spacing:2.736000px;}
.ws64{word-spacing:2.880000px;}
.wsa{word-spacing:2.940000px;}
.ws9f{word-spacing:3.024000px;}
.ws3a{word-spacing:3.060000px;}
.wsbc{word-spacing:3.072000px;}
.wsaa{word-spacing:3.168000px;}
.ws6e{word-spacing:3.180000px;}
.wsab{word-spacing:3.264000px;}
.wsc{word-spacing:3.300000px;}
.wsc6{word-spacing:3.312000px;}
.ws17{word-spacing:3.360000px;}
.ws43{word-spacing:3.504000px;}
.ws15{word-spacing:3.540000px;}
.ws42{word-spacing:3.600000px;}
.wsb1{word-spacing:3.648000px;}
.wsb9{word-spacing:3.696000px;}
.wsb{word-spacing:3.720000px;}
.wsb5{word-spacing:3.744000px;}
.wsb8{word-spacing:3.792000px;}
.ws91{word-spacing:3.900000px;}
.ws50{word-spacing:3.960000px;}
.ws9b{word-spacing:3.984000px;}
.ws1a{word-spacing:4.020000px;}
.ws81{word-spacing:4.032000px;}
.ws9d{word-spacing:4.080000px;}
.ws32{word-spacing:4.140000px;}
.wsac{word-spacing:4.176000px;}
.ws19{word-spacing:4.200000px;}
.wsc7{word-spacing:4.224000px;}
.wsa5{word-spacing:4.272000px;}
.ws85{word-spacing:4.320000px;}
.ws3{word-spacing:4.368000px;}
.ws8d{word-spacing:4.380000px;}
.ws4{word-spacing:4.416000px;}
.ws5f{word-spacing:4.500000px;}
.ws99{word-spacing:4.560000px;}
.ws63{word-spacing:4.620000px;}
.ws4f{word-spacing:4.680000px;}
.ws98{word-spacing:4.740000px;}
.ws92{word-spacing:4.860000px;}
.wse{word-spacing:4.920000px;}
.ws28{word-spacing:4.980000px;}
.ws26{word-spacing:5.100000px;}
.ws8b{word-spacing:5.160000px;}
.ws3e{word-spacing:5.280000px;}
.ws58{word-spacing:5.340000px;}
.ws7{word-spacing:5.460000px;}
.ws9{word-spacing:5.520000px;}
.ws71{word-spacing:5.733000px;}
.ws70{word-spacing:5.796000px;}
.ws47{word-spacing:6.048000px;}
.ws66{word-spacing:7.680000px;}
.ws2a{word-spacing:8.064000px;}
.ws48{word-spacing:19.674000px;}
.ws49{word-spacing:36.342000px;}
.ws1f{word-spacing:90.624000px;}
.ws1e{word-spacing:97.440000px;}
.ws46{word-spacing:114.432000px;}
.ws6a{word-spacing:197.040000px;}
.ws45{word-spacing:522.096000px;}
._b{margin-left:-2898.126000px;}
._f{margin-left:-2874.309000px;}
._d{margin-left:-10.440000px;}
._3{margin-left:-9.078000px;}
._a{margin-left:-7.800000px;}
._7{margin-left:-6.384000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-3.456000px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.188000px;}
._5{width:1.776000px;}
._6{width:2.832000px;}
._9{width:4.800000px;}
._8{width:6.720000px;}
._c{width:8.280000px;}
._11{width:9.564000px;}
._e{width:10.596000px;}
._15{width:13.800000px;}
._14{width:14.910000px;}
._16{width:21.618000px;}
._13{width:25.692000px;}
._10{width:32.118000px;}
._12{width:168.966000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:50.517000px;}
.y1{bottom:82.406700px;}
.yed{bottom:82.618350px;}
.y1f4{bottom:82.796700px;}
.yd6{bottom:83.149800px;}
.ya8{bottom:83.421750px;}
.y2a{bottom:83.493900px;}
.y193{bottom:83.539800px;}
.y18f{bottom:86.048850px;}
.y8f{bottom:89.192850px;}
.y234{bottom:94.938300px;}
.y1f3{bottom:97.796700px;}
.y129{bottom:97.905600px;}
.ya7{bottom:99.165750px;}
.y192{bottom:99.283800px;}
.y1ca{bottom:103.984950px;}
.y8e{bottom:107.192850px;}
.y233{bottom:109.938300px;}
.y1f2{bottom:112.796700px;}
.ya6{bottom:114.909750px;}
.y191{bottom:115.027800px;}
.y128{bottom:115.905600px;}
.y5f{bottom:119.363850px;}
.y61{bottom:119.896800px;}
.y15{bottom:121.518300px;}
.y1c9{bottom:121.984950px;}
.y232{bottom:124.938300px;}
.y8d{bottom:125.192850px;}
.y1f1{bottom:127.796700px;}
.ya5{bottom:130.653750px;}
.y190{bottom:130.771800px;}
.y127{bottom:133.905600px;}
.y5e{bottom:137.363850px;}
.y231{bottom:139.938300px;}
.y1c8{bottom:139.984950px;}
.y1f0{bottom:142.796700px;}
.y8c{bottom:143.192850px;}
.ya4{bottom:146.397750px;}
.y126{bottom:151.905600px;}
.y230{bottom:154.938300px;}
.y5d{bottom:155.363850px;}
.y1ef{bottom:157.796700px;}
.y1c7{bottom:157.984950px;}
.y8b{bottom:161.192850px;}
.y125{bottom:169.905600px;}
.y22f{bottom:169.938300px;}
.y1ee{bottom:172.796700px;}
.y5c{bottom:173.363850px;}
.y1c6{bottom:175.984950px;}
.y8a{bottom:179.192850px;}
.y26{bottom:179.462100px;}
.y22e{bottom:184.938300px;}
.y1ed{bottom:187.796700px;}
.y124{bottom:187.905600px;}
.y5b{bottom:191.363850px;}
.y1c5{bottom:193.984950px;}
.y89{bottom:197.192850px;}
.y25{bottom:197.462100px;}
.y22d{bottom:199.938300px;}
.y1ec{bottom:202.796700px;}
.y123{bottom:205.905600px;}
.y5a{bottom:209.363850px;}
.yd7{bottom:209.954100px;}
.y1c4{bottom:211.941450px;}
.y22c{bottom:214.938300px;}
.y88{bottom:215.192850px;}
.y24{bottom:215.462100px;}
.y1eb{bottom:217.796700px;}
.y122{bottom:223.909200px;}
.y59{bottom:227.363850px;}
.y22b{bottom:229.938300px;}
.y1c3{bottom:230.079450px;}
.y1ea{bottom:232.796700px;}
.y23{bottom:233.462100px;}
.y121{bottom:241.909200px;}
.y22a{bottom:244.938300px;}
.y58{bottom:245.363850px;}
.y1e9{bottom:247.796700px;}
.y1c2{bottom:247.998450px;}
.y62{bottom:249.922650px;}
.y87{bottom:250.766550px;}
.y22{bottom:251.462100px;}
.y120{bottom:259.909200px;}
.y229{bottom:259.938300px;}
.y57{bottom:263.363850px;}
.y1c1{bottom:266.011950px;}
.y21{bottom:269.462100px;}
.y228{bottom:274.938300px;}
.y11f{bottom:277.909200px;}
.y1e8{bottom:281.228850px;}
.y56{bottom:281.363850px;}
.y86{bottom:281.787600px;}
.y1c0{bottom:283.714950px;}
.y20{bottom:287.462100px;}
.y227{bottom:289.938300px;}
.y18e{bottom:293.718000px;}
.y11e{bottom:295.909200px;}
.y55{bottom:299.363850px;}
.y85{bottom:299.787600px;}
.y1bf{bottom:302.038950px;}
.y226{bottom:304.938300px;}
.y1f{bottom:305.462100px;}
.y196{bottom:313.707000px;}
.y11d{bottom:313.909200px;}
.yaa{bottom:314.556150px;}
.y54{bottom:317.363850px;}
.y84{bottom:317.787600px;}
.y225{bottom:319.938300px;}
.y1be{bottom:320.052450px;}
.y14a{bottom:320.292750px;}
.y1e{bottom:323.462100px;}
.ye0{bottom:325.182450px;}
.y11c{bottom:331.909200px;}
.y224{bottom:334.938300px;}
.y53{bottom:335.363850px;}
.y1bd{bottom:338.065950px;}
.y1d{bottom:341.462100px;}
.yf8{bottom:346.017150px;}
.y157{bottom:346.867500px;}
.y1e7{bottom:348.993450px;}
.y11b{bottom:349.909200px;}
.y223{bottom:349.938300px;}
.y52{bottom:353.363850px;}
.y83{bottom:353.652600px;}
.y1bc{bottom:356.049450px;}
.y1c{bottom:359.462100px;}
.yac{bottom:362.604150px;}
.y222{bottom:364.938300px;}
.y11a{bottom:367.909200px;}
.y51{bottom:371.363850px;}
.y82{bottom:371.652600px;}
.y183{bottom:372.829950px;}
.y1bb{bottom:374.092950px;}
.y189{bottom:374.806350px;}
.y1b{bottom:377.462100px;}
.y221{bottom:379.938300px;}
.y119{bottom:385.909200px;}
.y50{bottom:389.363850px;}
.y81{bottom:389.652600px;}
.y188{bottom:390.550350px;}
.y182{bottom:391.153500px;}
.y1ba{bottom:392.092950px;}
.y260{bottom:394.938300px;}
.y220{bottom:394.940700px;}
.y1a{bottom:395.462100px;}
.y118{bottom:403.909200px;}
.y187{bottom:406.294350px;}
.y4f{bottom:407.363850px;}
.y80{bottom:407.652600px;}
.y181{bottom:409.191000px;}
.y149{bottom:409.767450px;}
.y25f{bottom:409.938300px;}
.y21f{bottom:409.940700px;}
.y1b9{bottom:410.092950px;}
.y14e{bottom:410.412750px;}
.ydf{bottom:411.251100px;}
.y19{bottom:413.462100px;}
.ye5{bottom:418.578450px;}
.y117{bottom:421.909200px;}
.y186{bottom:422.038350px;}
.y25e{bottom:424.938300px;}
.y21e{bottom:424.940700px;}
.y4e{bottom:425.363850px;}
.y7f{bottom:425.652600px;}
.y14d{bottom:426.156750px;}
.y180{bottom:427.150950px;}
.y148{bottom:427.767450px;}
.y1b8{bottom:428.092950px;}
.yde{bottom:429.251100px;}
.y18{bottom:431.462100px;}
.yb3{bottom:433.909350px;}
.y15c{bottom:434.083500px;}
.ye4{bottom:434.322450px;}
.yf1{bottom:438.768000px;}
.y116{bottom:439.909200px;}
.y25d{bottom:439.938300px;}
.y21d{bottom:439.940700px;}
.y156{bottom:441.820350px;}
.y14c{bottom:441.900750px;}
.y1e6{bottom:443.228850px;}
.y4d{bottom:443.363850px;}
.yd5{bottom:443.374350px;}
.y7e{bottom:443.652600px;}
.y17f{bottom:445.150950px;}
.y147{bottom:445.767450px;}
.y1b7{bottom:446.092950px;}
.y17{bottom:449.462100px;}
.y15b{bottom:449.827500px;}
.ye3{bottom:450.066450px;}
.yf0{bottom:454.519500px;}
.y25c{bottom:454.938300px;}
.y21c{bottom:454.940700px;}
.y14b{bottom:457.644750px;}
.y115{bottom:457.909200px;}
.y155{bottom:460.988850px;}
.y1e5{bottom:461.228850px;}
.y4c{bottom:461.363850px;}
.yd4{bottom:461.374350px;}
.y17e{bottom:463.150950px;}
.y146{bottom:463.767450px;}
.y1b6{bottom:464.092950px;}
.ydd{bottom:464.824800px;}
.y15a{bottom:465.583500px;}
.ye2{bottom:465.810450px;}
.y27{bottom:467.462100px;}
.yb2{bottom:469.483050px;}
.y25b{bottom:469.938300px;}
.y21b{bottom:469.940700px;}
.yef{bottom:470.271000px;}
.yab{bottom:471.876150px;}
.y114{bottom:475.909200px;}
.yad{bottom:478.260150px;}
.y1e4{bottom:479.228850px;}
.y4b{bottom:479.363850px;}
.yd3{bottom:479.374350px;}
.y7d{bottom:479.517600px;}
.y17d{bottom:481.150950px;}
.y159{bottom:481.327500px;}
.ye1{bottom:481.554450px;}
.y145{bottom:481.767450px;}
.y1b5{bottom:482.092950px;}
.yb1{bottom:484.483050px;}
.y25a{bottom:484.938300px;}
.y21a{bottom:484.940700px;}
.y16{bottom:485.462100px;}
.yee{bottom:486.022500px;}
.y113{bottom:493.909200px;}
.y195{bottom:494.835000px;}
.ydc{bottom:495.844350px;}
.y158{bottom:497.083500px;}
.y1e3{bottom:497.228850px;}
.y4a{bottom:497.363850px;}
.yd2{bottom:497.374350px;}
.y17c{bottom:499.150950px;}
.y144{bottom:499.767450px;}
.y259{bottom:499.938300px;}
.y219{bottom:499.940700px;}
.y1b4{bottom:500.092950px;}
.y112{bottom:511.909200px;}
.ydb{bottom:513.844350px;}
.y258{bottom:514.938300px;}
.y218{bottom:514.940700px;}
.y1e2{bottom:515.228850px;}
.y49{bottom:515.363850px;}
.yd1{bottom:515.374350px;}
.y7c{bottom:515.382600px;}
.yb0{bottom:515.513850px;}
.y17b{bottom:517.150950px;}
.y143{bottom:517.767450px;}
.y1b3{bottom:518.092950px;}
.y111{bottom:529.909200px;}
.y257{bottom:529.938300px;}
.y217{bottom:529.940700px;}
.yda{bottom:531.844350px;}
.y1e1{bottom:533.228850px;}
.y48{bottom:533.363850px;}
.yd0{bottom:533.374350px;}
.yaf{bottom:533.513850px;}
.y17a{bottom:535.150950px;}
.y142{bottom:535.767450px;}
.y1b2{bottom:536.049450px;}
.y256{bottom:544.938300px;}
.y216{bottom:544.940700px;}
.y110{bottom:547.909200px;}
.y1e0{bottom:551.228850px;}
.y47{bottom:551.363850px;}
.ycf{bottom:551.374350px;}
.yae{bottom:551.513850px;}
.y179{bottom:553.150950px;}
.y141{bottom:553.767450px;}
.y1b1{bottom:554.092950px;}
.y14{bottom:555.930300px;}
.y255{bottom:559.938300px;}
.y215{bottom:559.940700px;}
.y10f{bottom:565.909200px;}
.yd9{bottom:567.709350px;}
.y1df{bottom:569.228850px;}
.y46{bottom:569.363850px;}
.yce{bottom:569.374350px;}
.y7b{bottom:569.517600px;}
.y13{bottom:570.938550px;}
.y178{bottom:571.150950px;}
.y140{bottom:571.767450px;}
.y1b0{bottom:572.092950px;}
.y254{bottom:574.938300px;}
.y214{bottom:574.940700px;}
.y18d{bottom:580.300950px;}
.y10e{bottom:583.909200px;}
.yd8{bottom:586.763850px;}
.y1de{bottom:587.228850px;}
.y45{bottom:587.363850px;}
.ycd{bottom:587.374350px;}
.y7a{bottom:587.517600px;}
.y177{bottom:589.150950px;}
.y13f{bottom:589.767450px;}
.y253{bottom:589.938300px;}
.y213{bottom:589.940700px;}
.y1af{bottom:590.092950px;}
.y10d{bottom:601.909200px;}
.y12{bottom:603.794550px;}
.y252{bottom:604.938300px;}
.y212{bottom:604.940700px;}
.y1dd{bottom:605.228850px;}
.y44{bottom:605.363850px;}
.ycc{bottom:605.374350px;}
.y79{bottom:605.517600px;}
.y176{bottom:607.150950px;}
.y13e{bottom:607.767450px;}
.y1ae{bottom:608.049450px;}
.y11{bottom:618.794550px;}
.y10c{bottom:619.909200px;}
.y251{bottom:619.938300px;}
.y211{bottom:619.940700px;}
.y1dc{bottom:623.228850px;}
.y43{bottom:623.363850px;}
.ycb{bottom:623.374350px;}
.y78{bottom:623.517600px;}
.y175{bottom:625.150950px;}
.y13d{bottom:625.767450px;}
.y154{bottom:630.879900px;}
.y151{bottom:630.891900px;}
.y10{bottom:633.794550px;}
.y250{bottom:634.938300px;}
.y210{bottom:634.940700px;}
.y10b{bottom:637.909200px;}
.ya9{bottom:639.828150px;}
.y1db{bottom:641.228850px;}
.y42{bottom:641.363850px;}
.yca{bottom:641.374350px;}
.y77{bottom:641.517600px;}
.y1ad{bottom:641.649450px;}
.y174{bottom:643.150950px;}
.y13c{bottom:643.767450px;}
.yf{bottom:648.794550px;}
.y24f{bottom:649.938300px;}
.y20f{bottom:649.940700px;}
.y10a{bottom:655.909200px;}
.y1da{bottom:659.228850px;}
.y41{bottom:659.363850px;}
.yc9{bottom:659.374350px;}
.y76{bottom:659.517600px;}
.y1ac{bottom:659.649450px;}
.yf3{bottom:660.234750px;}
.y173{bottom:661.150950px;}
.y13b{bottom:661.767450px;}
.ye{bottom:663.794550px;}
.y24e{bottom:664.938300px;}
.y20e{bottom:664.940700px;}
.y197{bottom:665.127000px;}
.y194{bottom:665.595000px;}
.ye8{bottom:670.011750px;}
.y15f{bottom:672.141000px;}
.y109{bottom:673.909200px;}
.y1d9{bottom:677.228850px;}
.y40{bottom:677.363850px;}
.yc8{bottom:677.374350px;}
.y75{bottom:677.517600px;}
.y1ab{bottom:677.649450px;}
.yd{bottom:678.794550px;}
.y13a{bottom:679.767450px;}
.y24d{bottom:679.938300px;}
.y20d{bottom:679.940700px;}
.y108{bottom:691.909200px;}
.y24c{bottom:694.938300px;}
.y20c{bottom:694.940700px;}
.y1d8{bottom:695.228850px;}
.y3f{bottom:695.363850px;}
.ya3{bottom:695.372850px;}
.yc7{bottom:695.374350px;}
.y74{bottom:695.517600px;}
.y172{bottom:696.724800px;}
.y139{bottom:697.767450px;}
.y107{bottom:709.909200px;}
.y24b{bottom:709.938300px;}
.y20b{bottom:709.940700px;}
.y171{bottom:711.724800px;}
.y18c{bottom:712.960950px;}
.y1d7{bottom:713.228850px;}
.y3e{bottom:713.363850px;}
.ya2{bottom:713.372850px;}
.yc6{bottom:713.374350px;}
.y1aa{bottom:713.514450px;}
.y73{bottom:713.517600px;}
.y138{bottom:715.767450px;}
.y24a{bottom:724.938300px;}
.y20a{bottom:724.940700px;}
.y170{bottom:726.724800px;}
.yc{bottom:727.538550px;}
.y106{bottom:727.909200px;}
.y1d6{bottom:731.228850px;}
.y3d{bottom:731.363850px;}
.ya1{bottom:731.372850px;}
.yc5{bottom:731.374350px;}
.y1a9{bottom:731.514450px;}
.y72{bottom:731.517600px;}
.yf7{bottom:731.682750px;}
.y137{bottom:733.767450px;}
.y249{bottom:739.938300px;}
.y209{bottom:739.940700px;}
.y16f{bottom:741.724800px;}
.yb{bottom:741.938550px;}
.y18b{bottom:745.696950px;}
.y105{bottom:745.909200px;}
.y1d5{bottom:749.228850px;}
.y3c{bottom:749.363850px;}
.ya0{bottom:749.372850px;}
.yc4{bottom:749.374350px;}
.y1a8{bottom:749.514450px;}
.y71{bottom:749.517600px;}
.y136{bottom:751.767450px;}
.y248{bottom:754.938300px;}
.y208{bottom:754.940700px;}
.ya{bottom:756.338550px;}
.y16e{bottom:756.724800px;}
.y104{bottom:763.909200px;}
.y1d4{bottom:767.228850px;}
.y3b{bottom:767.363850px;}
.y9f{bottom:767.372850px;}
.yc3{bottom:767.374350px;}
.y70{bottom:767.517600px;}
.y135{bottom:769.767450px;}
.y247{bottom:769.938300px;}
.y207{bottom:769.940700px;}
.y16d{bottom:771.724800px;}
.y103{bottom:781.909200px;}
.yec{bottom:782.259750px;}
.y9{bottom:783.494550px;}
.y246{bottom:784.938300px;}
.y206{bottom:784.940700px;}
.y1d3{bottom:785.228850px;}
.y3a{bottom:785.363850px;}
.y1a7{bottom:785.364450px;}
.y9e{bottom:785.372850px;}
.yc2{bottom:785.374350px;}
.y6f{bottom:785.517600px;}
.y134{bottom:787.767450px;}
.y153{bottom:794.583900px;}
.y150{bottom:794.595900px;}
.y102{bottom:799.909200px;}
.y245{bottom:799.938300px;}
.y205{bottom:799.940700px;}
.y16c{bottom:802.748850px;}
.y1d2{bottom:803.228850px;}
.y1a6{bottom:803.320950px;}
.y39{bottom:803.363850px;}
.y9d{bottom:803.372850px;}
.yc1{bottom:803.374350px;}
.y6e{bottom:803.517600px;}
.y133{bottom:805.767450px;}
.y244{bottom:814.938300px;}
.y204{bottom:814.940700px;}
.y101{bottom:817.909200px;}
.y8{bottom:817.994550px;}
.y16b{bottom:820.748850px;}
.y1d1{bottom:821.228850px;}
.y38{bottom:821.363850px;}
.y1a5{bottom:821.364450px;}
.y9c{bottom:821.372850px;}
.yc0{bottom:821.374350px;}
.y132{bottom:823.767450px;}
.y243{bottom:829.938300px;}
.y203{bottom:829.940700px;}
.yeb{bottom:832.863750px;}
.y7{bottom:834.494550px;}
.yf6{bottom:835.002750px;}
.y100{bottom:835.909200px;}
.y16a{bottom:838.748850px;}
.y1d0{bottom:839.228850px;}
.y37{bottom:839.363850px;}
.y1a4{bottom:839.364450px;}
.y9b{bottom:839.372850px;}
.ybf{bottom:839.374350px;}
.y6d{bottom:839.517600px;}
.y131{bottom:841.767450px;}
.y15e{bottom:844.773000px;}
.y242{bottom:844.938300px;}
.y202{bottom:844.940700px;}
.yea{bottom:847.323750px;}
.y6{bottom:853.879800px;}
.ye7{bottom:857.103750px;}
.y1cf{bottom:857.228850px;}
.y36{bottom:857.363850px;}
.y1a3{bottom:857.364450px;}
.y9a{bottom:857.372850px;}
.ybe{bottom:857.374350px;}
.y130{bottom:859.767450px;}
.y241{bottom:859.938300px;}
.y201{bottom:859.940700px;}
.yff{bottom:871.482900px;}
.y169{bottom:874.613850px;}
.y240{bottom:874.938300px;}
.y200{bottom:874.940700px;}
.y60{bottom:875.228850px;}
.y35{bottom:875.363850px;}
.y1a2{bottom:875.364450px;}
.y6c{bottom:875.367600px;}
.y99{bottom:875.372850px;}
.ybd{bottom:875.374350px;}
.y5{bottom:881.263200px;}
.yfe{bottom:886.482900px;}
.y23f{bottom:889.938300px;}
.y1ff{bottom:889.940700px;}
.y168{bottom:892.613850px;}
.y1ce{bottom:893.228850px;}
.y34{bottom:893.363850px;}
.y1a1{bottom:893.364450px;}
.y6b{bottom:893.367600px;}
.y98{bottom:893.372850px;}
.ybc{bottom:893.374350px;}
.y12f{bottom:895.341300px;}
.yfd{bottom:901.482900px;}
.y23e{bottom:904.938300px;}
.y1fe{bottom:904.940700px;}
.y4{bottom:908.269200px;}
.y12e{bottom:910.341300px;}
.y167{bottom:910.613850px;}
.y1cd{bottom:911.228850px;}
.y33{bottom:911.363850px;}
.y1a0{bottom:911.364450px;}
.y6a{bottom:911.367600px;}
.y97{bottom:911.372850px;}
.ybb{bottom:911.374350px;}
.yfc{bottom:916.482900px;}
.y23d{bottom:919.938300px;}
.y1fd{bottom:919.940700px;}
.y12d{bottom:925.341300px;}
.y1cc{bottom:929.228850px;}
.y19f{bottom:929.320950px;}
.y32{bottom:929.363850px;}
.y69{bottom:929.367600px;}
.y96{bottom:929.372850px;}
.yba{bottom:929.374350px;}
.y23c{bottom:934.938300px;}
.y1fc{bottom:934.940700px;}
.y3{bottom:935.275200px;}
.y12c{bottom:940.341300px;}
.yf5{bottom:941.298750px;}
.y166{bottom:946.463850px;}
.y19e{bottom:947.320950px;}
.y31{bottom:947.363850px;}
.y68{bottom:947.367600px;}
.y95{bottom:947.372850px;}
.yb9{bottom:947.374350px;}
.yfb{bottom:947.498850px;}
.y23b{bottom:949.938300px;}
.y1fb{bottom:949.940700px;}
.y152{bottom:952.335900px;}
.y14f{bottom:952.347900px;}
.y12b{bottom:955.341300px;}
.y18a{bottom:961.276950px;}
.y165{bottom:964.463850px;}
.y23a{bottom:964.938300px;}
.y1fa{bottom:964.940700px;}
.y1cb{bottom:965.228850px;}
.y30{bottom:965.363850px;}
.y19d{bottom:965.364450px;}
.y67{bottom:965.367600px;}
.y94{bottom:965.372850px;}
.yb8{bottom:965.374350px;}
.yfa{bottom:965.498850px;}
.y12a{bottom:970.341300px;}
.y239{bottom:979.938300px;}
.y1f9{bottom:979.940700px;}
.y2{bottom:979.943400px;}
.y164{bottom:982.463850px;}
.y2f{bottom:983.363850px;}
.y19c{bottom:983.364450px;}
.y66{bottom:983.367600px;}
.y93{bottom:983.372850px;}
.yb7{bottom:983.374350px;}
.yf9{bottom:983.498850px;}
.y238{bottom:994.938300px;}
.y1f8{bottom:994.940700px;}
.y163{bottom:1000.463850px;}
.y2e{bottom:1001.363850px;}
.y19b{bottom:1001.364000px;}
.y65{bottom:1001.367600px;}
.y92{bottom:1001.372850px;}
.yb6{bottom:1001.374350px;}
.yf4{bottom:1005.498750px;}
.y237{bottom:1009.938300px;}
.y1f7{bottom:1009.940700px;}
.y160{bottom:1011.453000px;}
.ye9{bottom:1012.083750px;}
.ye6{bottom:1012.087950px;}
.yf2{bottom:1015.914750px;}
.y15d{bottom:1016.552550px;}
.y162{bottom:1018.463850px;}
.y2d{bottom:1019.363850px;}
.y19a{bottom:1019.364000px;}
.y185{bottom:1019.365950px;}
.y91{bottom:1019.372850px;}
.yb5{bottom:1019.374350px;}
.y236{bottom:1024.938300px;}
.y1f6{bottom:1024.940700px;}
.y161{bottom:1036.720350px;}
.y2c{bottom:1037.363850px;}
.y199{bottom:1037.364000px;}
.y184{bottom:1037.365950px;}
.y64{bottom:1037.367600px;}
.y90{bottom:1037.372850px;}
.yb4{bottom:1037.374350px;}
.y235{bottom:1039.938300px;}
.y1f5{bottom:1039.940700px;}
.y29{bottom:1070.769450px;}
.y198{bottom:1086.066000px;}
.y63{bottom:1086.066450px;}
.y28{bottom:1086.069450px;}
.h8{height:34.968750px;}
.h6{height:34.992188px;}
.h2{height:37.652344px;}
.h9{height:42.998250px;}
.he{height:43.019250px;}
.h7{height:43.031250px;}
.ha{height:43.681641px;}
.hc{height:43.710938px;}
.hd{height:45.720703px;}
.h10{height:45.883805px;}
.hf{height:46.439250px;}
.h14{height:52.169062px;}
.h3{height:52.417969px;}
.hb{height:53.789062px;}
.h13{height:53.790862px;}
.h11{height:55.404516px;}
.h12{height:56.478516px;}
.h5{height:59.167969px;}
.h4{height:61.154297px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:76.535400px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x2c{left:101.409450px;}
.x3c{left:106.295400px;}
.xd{left:110.555400px;}
.x27{left:119.586600px;}
.x20{left:120.950400px;}
.x3a{left:124.251900px;}
.x3{left:125.431350px;}
.x4b{left:127.555350px;}
.x16{left:130.105350px;}
.x7{left:131.816400px;}
.x1f{left:134.420400px;}
.x2f{left:136.065450px;}
.x47{left:144.401100px;}
.x46{left:158.426100px;}
.x4{left:161.575350px;}
.x3b{left:188.856900px;}
.x30{left:190.917450px;}
.x21{left:197.210400px;}
.x49{left:198.875400px;}
.x48{left:210.116100px;}
.x6{left:212.876400px;}
.x15{left:214.030350px;}
.x4a{left:215.545350px;}
.x17{left:218.470350px;}
.x5{left:229.630350px;}
.x14{left:232.360350px;}
.x36{left:252.781950px;}
.x38{left:274.671900px;}
.x2d{left:280.629450px;}
.x29{left:298.062600px;}
.x39{left:304.011900px;}
.x2e{left:343.557450px;}
.x2a{left:354.186600px;}
.x2b{left:380.118600px;}
.x28{left:394.578600px;}
.xb{left:455.041500px;}
.xf{left:457.085400px;}
.x3d{left:474.944850px;}
.x18{left:478.341000px;}
.x8{left:480.476400px;}
.x33{left:486.890400px;}
.xe{left:491.105400px;}
.x1a{left:495.354300px;}
.x41{left:497.990550px;}
.x1b{left:505.134300px;}
.x32{left:507.355350px;}
.x19{left:512.361000px;}
.x9{left:514.496400px;}
.x35{left:517.687200px;}
.x11{left:519.813150px;}
.x22{left:522.364350px;}
.x10{left:525.275400px;}
.x3f{left:528.529650px;}
.x24{left:542.887800px;}
.x23{left:555.367800px;}
.x31{left:559.356450px;}
.x37{left:567.293550px;}
.x26{left:568.710900px;}
.x34{left:569.975400px;}
.x1c{left:593.142300px;}
.x25{left:599.002800px;}
.x3e{left:632.696850px;}
.x1d{left:652.026300px;}
.x43{left:654.806550px;}
.x13{left:663.492300px;}
.x42{left:686.906550px;}
.x2{left:704.338650px;}
.x40{left:717.130200px;}
.x12{left:724.221150px;}
.x45{left:739.336350px;}
.x1e{left:745.480950px;}
.x44{left:751.958550px;}
@media print{
.v4{vertical-align:-22.656000pt;}
.v3{vertical-align:-1.925333pt;}
.v5{vertical-align:-0.954667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.440000pt;}
.v2{vertical-align:3.029333pt;}
.ls89{letter-spacing:-3.808000pt;}
.ls66{letter-spacing:-3.274667pt;}
.lsa1{letter-spacing:-2.346667pt;}
.ls8c{letter-spacing:-1.200000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls70{letter-spacing:-0.373333pt;}
.ls4c{letter-spacing:-0.320000pt;}
.lsbb{letter-spacing:-0.298667pt;}
.ls6f{letter-spacing:-0.266667pt;}
.lsbc{letter-spacing:-0.256000pt;}
.ls3c{letter-spacing:-0.213333pt;}
.lsb5{letter-spacing:-0.170667pt;}
.ls3b{letter-spacing:-0.160000pt;}
.lsa2{letter-spacing:-0.128000pt;}
.ls57{letter-spacing:-0.106667pt;}
.ls7a{letter-spacing:-0.085333pt;}
.ls39{letter-spacing:-0.053333pt;}
.lsa3{letter-spacing:-0.042667pt;}
.ls19{letter-spacing:0.000000pt;}
.ls7e{letter-spacing:0.005333pt;}
.ls87{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.042667pt;}
.ls4{letter-spacing:0.049067pt;}
.ls10{letter-spacing:0.053333pt;}
.ls49{letter-spacing:0.085333pt;}
.lsd{letter-spacing:0.106667pt;}
.ls7d{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.160000pt;}
.lsa5{letter-spacing:0.170667pt;}
.ls1b{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.266667pt;}
.ls5c{letter-spacing:0.298667pt;}
.ls40{letter-spacing:0.320000pt;}
.lsac{letter-spacing:0.341333pt;}
.ls4f{letter-spacing:0.373333pt;}
.lsa0{letter-spacing:0.384000pt;}
.ls20{letter-spacing:0.426667pt;}
.lsb1{letter-spacing:0.469333pt;}
.ls9{letter-spacing:0.480000pt;}
.lsa7{letter-spacing:0.512000pt;}
.ls6{letter-spacing:0.533333pt;}
.ls93{letter-spacing:0.554667pt;}
.ls45{letter-spacing:0.586667pt;}
.ls4b{letter-spacing:0.597333pt;}
.ls0{letter-spacing:0.640000pt;}
.lsa6{letter-spacing:0.682667pt;}
.ls68{letter-spacing:0.693333pt;}
.ls97{letter-spacing:0.725333pt;}
.lsb{letter-spacing:0.746667pt;}
.ls7f{letter-spacing:0.768000pt;}
.lsa{letter-spacing:0.800000pt;}
.ls9c{letter-spacing:0.810667pt;}
.ls2f{letter-spacing:0.853333pt;}
.ls1{letter-spacing:0.896000pt;}
.ls27{letter-spacing:0.906667pt;}
.ls96{letter-spacing:0.938667pt;}
.ls29{letter-spacing:0.960000pt;}
.lsb4{letter-spacing:0.981333pt;}
.ls43{letter-spacing:1.013333pt;}
.ls72{letter-spacing:1.024000pt;}
.ls36{letter-spacing:1.066667pt;}
.lsb3{letter-spacing:1.109333pt;}
.ls67{letter-spacing:1.120000pt;}
.lsb8{letter-spacing:1.152000pt;}
.ls12{letter-spacing:1.173333pt;}
.ls63{letter-spacing:1.194667pt;}
.ls14{letter-spacing:1.226667pt;}
.ls4a{letter-spacing:1.237333pt;}
.ls8{letter-spacing:1.280000pt;}
.ls71{letter-spacing:1.322667pt;}
.ls5{letter-spacing:1.333333pt;}
.ls94{letter-spacing:1.365333pt;}
.ls21{letter-spacing:1.386667pt;}
.lsa9{letter-spacing:1.408000pt;}
.ls34{letter-spacing:1.440000pt;}
.ls62{letter-spacing:1.450667pt;}
.ls13{letter-spacing:1.493333pt;}
.lsaf{letter-spacing:1.536000pt;}
.lsf{letter-spacing:1.546667pt;}
.ls78{letter-spacing:1.568000pt;}
.ls80{letter-spacing:1.578667pt;}
.ls38{letter-spacing:1.600000pt;}
.ls7c{letter-spacing:1.624000pt;}
.ls44{letter-spacing:1.653333pt;}
.ls7b{letter-spacing:1.680000pt;}
.ls37{letter-spacing:1.706667pt;}
.ls6c{letter-spacing:1.749333pt;}
.ls24{letter-spacing:1.760000pt;}
.ls90{letter-spacing:1.792000pt;}
.ls18{letter-spacing:1.813333pt;}
.lsae{letter-spacing:1.834667pt;}
.ls58{letter-spacing:1.866667pt;}
.ls9a{letter-spacing:1.877333pt;}
.ls73{letter-spacing:1.920000pt;}
.ls92{letter-spacing:1.962667pt;}
.ls2d{letter-spacing:1.973333pt;}
.lsaa{letter-spacing:2.005333pt;}
.ls2b{letter-spacing:2.026667pt;}
.ls79{letter-spacing:2.048000pt;}
.ls2a{letter-spacing:2.080000pt;}
.lsa4{letter-spacing:2.090667pt;}
.ls7{letter-spacing:2.133333pt;}
.ls91{letter-spacing:2.176000pt;}
.ls77{letter-spacing:2.184000pt;}
.ls3e{letter-spacing:2.186667pt;}
.ls17{letter-spacing:2.240000pt;}
.ls99{letter-spacing:2.261333pt;}
.ls2c{letter-spacing:2.293333pt;}
.ls55{letter-spacing:2.346667pt;}
.lsba{letter-spacing:2.389333pt;}
.ls1d{letter-spacing:2.400000pt;}
.ls53{letter-spacing:2.453333pt;}
.ls11{letter-spacing:2.506667pt;}
.ls65{letter-spacing:2.538667pt;}
.ls6e{letter-spacing:2.560000pt;}
.lsa8{letter-spacing:2.602667pt;}
.ls4e{letter-spacing:2.613333pt;}
.ls95{letter-spacing:2.645333pt;}
.ls23{letter-spacing:2.666667pt;}
.ls9b{letter-spacing:2.688000pt;}
.ls15{letter-spacing:2.720000pt;}
.ls6d{letter-spacing:2.773333pt;}
.lsb6{letter-spacing:2.816000pt;}
.ls61{letter-spacing:2.826667pt;}
.ls98{letter-spacing:2.858667pt;}
.ls69{letter-spacing:2.880000pt;}
.ls76{letter-spacing:2.901333pt;}
.ls5e{letter-spacing:2.933333pt;}
.ls25{letter-spacing:2.986667pt;}
.ls9f{letter-spacing:3.029333pt;}
.ls22{letter-spacing:3.040000pt;}
.lsb7{letter-spacing:3.072000pt;}
.lsc{letter-spacing:3.093333pt;}
.ls1f{letter-spacing:3.146667pt;}
.lsb9{letter-spacing:3.157333pt;}
.ls8f{letter-spacing:3.200000pt;}
.ls47{letter-spacing:3.242667pt;}
.ls60{letter-spacing:3.253333pt;}
.ls48{letter-spacing:3.285333pt;}
.ls54{letter-spacing:3.306667pt;}
.ls46{letter-spacing:3.360000pt;}
.ls9e{letter-spacing:3.370667pt;}
.ls8a{letter-spacing:3.408000pt;}
.ls1e{letter-spacing:3.413333pt;}
.lsad{letter-spacing:3.456000pt;}
.ls50{letter-spacing:3.466667pt;}
.ls26{letter-spacing:3.520000pt;}
.ls9d{letter-spacing:3.541333pt;}
.ls51{letter-spacing:3.573333pt;}
.ls2e{letter-spacing:3.626667pt;}
.ls8d{letter-spacing:3.648000pt;}
.ls56{letter-spacing:3.680000pt;}
.ls75{letter-spacing:3.733333pt;}
.ls5f{letter-spacing:3.786667pt;}
.ls4d{letter-spacing:3.893333pt;}
.ls5d{letter-spacing:3.946667pt;}
.lsab{letter-spacing:3.968000pt;}
.ls52{letter-spacing:4.000000pt;}
.ls59{letter-spacing:4.053333pt;}
.ls6b{letter-spacing:4.160000pt;}
.ls5a{letter-spacing:4.266667pt;}
.ls31{letter-spacing:4.373333pt;}
.ls3f{letter-spacing:4.426667pt;}
.ls42{letter-spacing:4.480000pt;}
.lsb0{letter-spacing:4.522667pt;}
.ls8e{letter-spacing:4.640000pt;}
.ls83{letter-spacing:4.741333pt;}
.ls84{letter-spacing:4.746667pt;}
.ls3a{letter-spacing:4.853333pt;}
.ls33{letter-spacing:5.226667pt;}
.ls16{letter-spacing:5.333333pt;}
.lsb2{letter-spacing:5.418667pt;}
.ls88{letter-spacing:5.472000pt;}
.ls30{letter-spacing:5.600000pt;}
.ls6a{letter-spacing:5.760000pt;}
.ls1c{letter-spacing:5.813333pt;}
.ls82{letter-spacing:6.080000pt;}
.ls74{letter-spacing:6.133333pt;}
.ls32{letter-spacing:6.400000pt;}
.ls81{letter-spacing:6.773333pt;}
.ls35{letter-spacing:6.933333pt;}
.ls8b{letter-spacing:7.296000pt;}
.ls3d{letter-spacing:7.360000pt;}
.ls85{letter-spacing:8.106667pt;}
.ls41{letter-spacing:8.533333pt;}
.ls5b{letter-spacing:9.120000pt;}
.ls64{letter-spacing:17.349333pt;}
.ls86{letter-spacing:28.565333pt;}
.ws3d{word-spacing:-53.333333pt;}
.ws62{word-spacing:-20.960000pt;}
.ws7b{word-spacing:-20.906667pt;}
.ws2f{word-spacing:-20.640000pt;}
.ws4b{word-spacing:-19.306667pt;}
.ws4c{word-spacing:-18.986667pt;}
.ws30{word-spacing:-18.826667pt;}
.ws2e{word-spacing:-18.293333pt;}
.ws79{word-spacing:-18.133333pt;}
.ws60{word-spacing:-17.813333pt;}
.ws7d{word-spacing:-17.653333pt;}
.ws4e{word-spacing:-17.440000pt;}
.ws69{word-spacing:-17.280000pt;}
.ws7a{word-spacing:-17.013333pt;}
.ws68{word-spacing:-16.746667pt;}
.ws3c{word-spacing:-16.693333pt;}
.ws61{word-spacing:-16.533333pt;}
.ws31{word-spacing:-16.000000pt;}
.ws67{word-spacing:-15.840000pt;}
.ws4a{word-spacing:-15.786667pt;}
.ws3b{word-spacing:-15.626667pt;}
.ws2d{word-spacing:-15.573333pt;}
.ws74{word-spacing:-15.360000pt;}
.wsa8{word-spacing:-15.317333pt;}
.ws44{word-spacing:-15.306667pt;}
.ws7c{word-spacing:-15.200000pt;}
.ws75{word-spacing:-15.146667pt;}
.ws1b{word-spacing:-14.826667pt;}
.ws1d{word-spacing:-14.773333pt;}
.ws2c{word-spacing:-14.720000pt;}
.wsbe{word-spacing:-14.250667pt;}
.wsa7{word-spacing:-13.866667pt;}
.ws96{word-spacing:-13.738667pt;}
.ws0{word-spacing:-12.757333pt;}
.ws11{word-spacing:-12.602667pt;}
.ws95{word-spacing:-12.586667pt;}
.ws4d{word-spacing:-12.501333pt;}
.ws73{word-spacing:-12.458667pt;}
.ws1c{word-spacing:-11.861333pt;}
.ws94{word-spacing:-9.514667pt;}
.ws7e{word-spacing:-6.773333pt;}
.ws8e{word-spacing:-4.640000pt;}
.wsb3{word-spacing:-4.522667pt;}
.wsb0{word-spacing:-3.968000pt;}
.ws78{word-spacing:-3.946667pt;}
.wsa4{word-spacing:-3.626667pt;}
.ws38{word-spacing:-3.573333pt;}
.ws29{word-spacing:-3.360000pt;}
.ws8c{word-spacing:-3.306667pt;}
.wsc4{word-spacing:-3.157333pt;}
.ws52{word-spacing:-3.146667pt;}
.ws5e{word-spacing:-2.986667pt;}
.ws97{word-spacing:-2.933333pt;}
.wsaf{word-spacing:-2.816000pt;}
.ws5b{word-spacing:-2.773333pt;}
.ws89{word-spacing:-2.506667pt;}
.ws5c{word-spacing:-2.453333pt;}
.wsc5{word-spacing:-2.389333pt;}
.ws2{word-spacing:-2.368000pt;}
.ws9a{word-spacing:-2.293333pt;}
.ws18{word-spacing:-1.973333pt;}
.ws80{word-spacing:-1.920000pt;}
.ws39{word-spacing:-1.813333pt;}
.ws20{word-spacing:-1.760000pt;}
.ws56{word-spacing:-1.749333pt;}
.ws76{word-spacing:-1.680000pt;}
.ws86{word-spacing:-1.546667pt;}
.wsb2{word-spacing:-1.536000pt;}
.ws87{word-spacing:-1.440000pt;}
.ws40{word-spacing:-1.386667pt;}
.ws41{word-spacing:-1.333333pt;}
.wsc0{word-spacing:-1.237333pt;}
.wsf{word-spacing:-1.226667pt;}
.ws54{word-spacing:-0.960000pt;}
.ws13{word-spacing:-0.906667pt;}
.wsad{word-spacing:-0.768000pt;}
.wsb4{word-spacing:-0.725333pt;}
.ws55{word-spacing:-0.640000pt;}
.ws77{word-spacing:-0.597333pt;}
.wsc3{word-spacing:-0.554667pt;}
.ws8a{word-spacing:-0.426667pt;}
.wsc1{word-spacing:-0.384000pt;}
.wsc2{word-spacing:-0.298667pt;}
.ws23{word-spacing:-0.266667pt;}
.ws12{word-spacing:-0.213333pt;}
.ws59{word-spacing:-0.160000pt;}
.wsa1{word-spacing:-0.128000pt;}
.ws14{word-spacing:-0.106667pt;}
.ws2b{word-spacing:-0.085333pt;}
.ws27{word-spacing:-0.053333pt;}
.wsa3{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
.ws9e{word-spacing:0.042667pt;}
.ws83{word-spacing:0.048000pt;}
.ws37{word-spacing:0.053333pt;}
.ws9c{word-spacing:0.085333pt;}
.ws21{word-spacing:0.160000pt;}
.wsa9{word-spacing:0.170667pt;}
.ws3f{word-spacing:0.213333pt;}
.ws72{word-spacing:0.256000pt;}
.ws6d{word-spacing:0.266667pt;}
.wsb6{word-spacing:0.298667pt;}
.ws57{word-spacing:0.320000pt;}
.ws5d{word-spacing:0.373333pt;}
.ws34{word-spacing:0.480000pt;}
.ws84{word-spacing:0.485333pt;}
.ws6f{word-spacing:0.533333pt;}
.ws22{word-spacing:0.586667pt;}
.ws88{word-spacing:0.634667pt;}
.ws36{word-spacing:0.640000pt;}
.wsb7{word-spacing:0.725333pt;}
.ws5{word-spacing:0.768000pt;}
.ws65{word-spacing:0.800000pt;}
.ws5a{word-spacing:0.906667pt;}
.ws82{word-spacing:0.938667pt;}
.ws8{word-spacing:0.960000pt;}
.ws35{word-spacing:1.013333pt;}
.ws6{word-spacing:1.024000pt;}
.ws90{word-spacing:1.173333pt;}
.wsd{word-spacing:1.226667pt;}
.ws6b{word-spacing:1.280000pt;}
.ws8f{word-spacing:1.493333pt;}
.wsc8{word-spacing:1.536000pt;}
.ws6c{word-spacing:1.546667pt;}
.wsa6{word-spacing:1.578667pt;}
.ws7f{word-spacing:1.600000pt;}
.wsae{word-spacing:1.621333pt;}
.ws24{word-spacing:1.653333pt;}
.ws93{word-spacing:1.706667pt;}
.wsbf{word-spacing:1.749333pt;}
.ws25{word-spacing:1.813333pt;}
.ws33{word-spacing:1.866667pt;}
.ws10{word-spacing:1.920000pt;}
.ws16{word-spacing:2.026667pt;}
.wsba{word-spacing:2.048000pt;}
.wsbb{word-spacing:2.090667pt;}
.wsbd{word-spacing:2.133333pt;}
.ws51{word-spacing:2.293333pt;}
.wsa0{word-spacing:2.304000pt;}
.ws53{word-spacing:2.346667pt;}
.wsa2{word-spacing:2.432000pt;}
.ws64{word-spacing:2.560000pt;}
.wsa{word-spacing:2.613333pt;}
.ws9f{word-spacing:2.688000pt;}
.ws3a{word-spacing:2.720000pt;}
.wsbc{word-spacing:2.730667pt;}
.wsaa{word-spacing:2.816000pt;}
.ws6e{word-spacing:2.826667pt;}
.wsab{word-spacing:2.901333pt;}
.wsc{word-spacing:2.933333pt;}
.wsc6{word-spacing:2.944000pt;}
.ws17{word-spacing:2.986667pt;}
.ws43{word-spacing:3.114667pt;}
.ws15{word-spacing:3.146667pt;}
.ws42{word-spacing:3.200000pt;}
.wsb1{word-spacing:3.242667pt;}
.wsb9{word-spacing:3.285333pt;}
.wsb{word-spacing:3.306667pt;}
.wsb5{word-spacing:3.328000pt;}
.wsb8{word-spacing:3.370667pt;}
.ws91{word-spacing:3.466667pt;}
.ws50{word-spacing:3.520000pt;}
.ws9b{word-spacing:3.541333pt;}
.ws1a{word-spacing:3.573333pt;}
.ws81{word-spacing:3.584000pt;}
.ws9d{word-spacing:3.626667pt;}
.ws32{word-spacing:3.680000pt;}
.wsac{word-spacing:3.712000pt;}
.ws19{word-spacing:3.733333pt;}
.wsc7{word-spacing:3.754667pt;}
.wsa5{word-spacing:3.797333pt;}
.ws85{word-spacing:3.840000pt;}
.ws3{word-spacing:3.882667pt;}
.ws8d{word-spacing:3.893333pt;}
.ws4{word-spacing:3.925333pt;}
.ws5f{word-spacing:4.000000pt;}
.ws99{word-spacing:4.053333pt;}
.ws63{word-spacing:4.106667pt;}
.ws4f{word-spacing:4.160000pt;}
.ws98{word-spacing:4.213333pt;}
.ws92{word-spacing:4.320000pt;}
.wse{word-spacing:4.373333pt;}
.ws28{word-spacing:4.426667pt;}
.ws26{word-spacing:4.533333pt;}
.ws8b{word-spacing:4.586667pt;}
.ws3e{word-spacing:4.693333pt;}
.ws58{word-spacing:4.746667pt;}
.ws7{word-spacing:4.853333pt;}
.ws9{word-spacing:4.906667pt;}
.ws71{word-spacing:5.096000pt;}
.ws70{word-spacing:5.152000pt;}
.ws47{word-spacing:5.376000pt;}
.ws66{word-spacing:6.826667pt;}
.ws2a{word-spacing:7.168000pt;}
.ws48{word-spacing:17.488000pt;}
.ws49{word-spacing:32.304000pt;}
.ws1f{word-spacing:80.554667pt;}
.ws1e{word-spacing:86.613333pt;}
.ws46{word-spacing:101.717333pt;}
.ws6a{word-spacing:175.146667pt;}
.ws45{word-spacing:464.085333pt;}
._b{margin-left:-2576.112000pt;}
._f{margin-left:-2554.941333pt;}
._d{margin-left:-9.280000pt;}
._3{margin-left:-8.069333pt;}
._a{margin-left:-6.933333pt;}
._7{margin-left:-5.674667pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.072000pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-1.056000pt;}
._5{width:1.578667pt;}
._6{width:2.517333pt;}
._9{width:4.266667pt;}
._8{width:5.973333pt;}
._c{width:7.360000pt;}
._11{width:8.501333pt;}
._e{width:9.418667pt;}
._15{width:12.266667pt;}
._14{width:13.253333pt;}
._16{width:19.216000pt;}
._13{width:22.837333pt;}
._10{width:28.549333pt;}
._12{width:150.192000pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:44.904000pt;}
.y1{bottom:73.250400pt;}
.yed{bottom:73.438533pt;}
.y1f4{bottom:73.597067pt;}
.yd6{bottom:73.910933pt;}
.ya8{bottom:74.152667pt;}
.y2a{bottom:74.216800pt;}
.y193{bottom:74.257600pt;}
.y18f{bottom:76.487867pt;}
.y8f{bottom:79.282533pt;}
.y234{bottom:84.389600pt;}
.y1f3{bottom:86.930400pt;}
.y129{bottom:87.027200pt;}
.ya7{bottom:88.147333pt;}
.y192{bottom:88.252267pt;}
.y1ca{bottom:92.431067pt;}
.y8e{bottom:95.282533pt;}
.y233{bottom:97.722933pt;}
.y1f2{bottom:100.263733pt;}
.ya6{bottom:102.142000pt;}
.y191{bottom:102.246933pt;}
.y128{bottom:103.027200pt;}
.y5f{bottom:106.101200pt;}
.y61{bottom:106.574933pt;}
.y15{bottom:108.016267pt;}
.y1c9{bottom:108.431067pt;}
.y232{bottom:111.056267pt;}
.y8d{bottom:111.282533pt;}
.y1f1{bottom:113.597067pt;}
.ya5{bottom:116.136667pt;}
.y190{bottom:116.241600pt;}
.y127{bottom:119.027200pt;}
.y5e{bottom:122.101200pt;}
.y231{bottom:124.389600pt;}
.y1c8{bottom:124.431067pt;}
.y1f0{bottom:126.930400pt;}
.y8c{bottom:127.282533pt;}
.ya4{bottom:130.131333pt;}
.y126{bottom:135.027200pt;}
.y230{bottom:137.722933pt;}
.y5d{bottom:138.101200pt;}
.y1ef{bottom:140.263733pt;}
.y1c7{bottom:140.431067pt;}
.y8b{bottom:143.282533pt;}
.y125{bottom:151.027200pt;}
.y22f{bottom:151.056267pt;}
.y1ee{bottom:153.597067pt;}
.y5c{bottom:154.101200pt;}
.y1c6{bottom:156.431067pt;}
.y8a{bottom:159.282533pt;}
.y26{bottom:159.521867pt;}
.y22e{bottom:164.389600pt;}
.y1ed{bottom:166.930400pt;}
.y124{bottom:167.027200pt;}
.y5b{bottom:170.101200pt;}
.y1c5{bottom:172.431067pt;}
.y89{bottom:175.282533pt;}
.y25{bottom:175.521867pt;}
.y22d{bottom:177.722933pt;}
.y1ec{bottom:180.263733pt;}
.y123{bottom:183.027200pt;}
.y5a{bottom:186.101200pt;}
.yd7{bottom:186.625867pt;}
.y1c4{bottom:188.392400pt;}
.y22c{bottom:191.056267pt;}
.y88{bottom:191.282533pt;}
.y24{bottom:191.521867pt;}
.y1eb{bottom:193.597067pt;}
.y122{bottom:199.030400pt;}
.y59{bottom:202.101200pt;}
.y22b{bottom:204.389600pt;}
.y1c3{bottom:204.515067pt;}
.y1ea{bottom:206.930400pt;}
.y23{bottom:207.521867pt;}
.y121{bottom:215.030400pt;}
.y22a{bottom:217.722933pt;}
.y58{bottom:218.101200pt;}
.y1e9{bottom:220.263733pt;}
.y1c2{bottom:220.443067pt;}
.y62{bottom:222.153467pt;}
.y87{bottom:222.903600pt;}
.y22{bottom:223.521867pt;}
.y120{bottom:231.030400pt;}
.y229{bottom:231.056267pt;}
.y57{bottom:234.101200pt;}
.y1c1{bottom:236.455067pt;}
.y21{bottom:239.521867pt;}
.y228{bottom:244.389600pt;}
.y11f{bottom:247.030400pt;}
.y1e8{bottom:249.981200pt;}
.y56{bottom:250.101200pt;}
.y86{bottom:250.477867pt;}
.y1c0{bottom:252.191067pt;}
.y20{bottom:255.521867pt;}
.y227{bottom:257.722933pt;}
.y18e{bottom:261.082667pt;}
.y11e{bottom:263.030400pt;}
.y55{bottom:266.101200pt;}
.y85{bottom:266.477867pt;}
.y1bf{bottom:268.479067pt;}
.y226{bottom:271.056267pt;}
.y1f{bottom:271.521867pt;}
.y196{bottom:278.850667pt;}
.y11d{bottom:279.030400pt;}
.yaa{bottom:279.605467pt;}
.y54{bottom:282.101200pt;}
.y84{bottom:282.477867pt;}
.y225{bottom:284.389600pt;}
.y1be{bottom:284.491067pt;}
.y14a{bottom:284.704667pt;}
.y1e{bottom:287.521867pt;}
.ye0{bottom:289.051067pt;}
.y11c{bottom:295.030400pt;}
.y224{bottom:297.722933pt;}
.y53{bottom:298.101200pt;}
.y1bd{bottom:300.503067pt;}
.y1d{bottom:303.521867pt;}
.yf8{bottom:307.570800pt;}
.y157{bottom:308.326667pt;}
.y1e7{bottom:310.216400pt;}
.y11b{bottom:311.030400pt;}
.y223{bottom:311.056267pt;}
.y52{bottom:314.101200pt;}
.y83{bottom:314.357867pt;}
.y1bc{bottom:316.488400pt;}
.y1c{bottom:319.521867pt;}
.yac{bottom:322.314800pt;}
.y222{bottom:324.389600pt;}
.y11a{bottom:327.030400pt;}
.y51{bottom:330.101200pt;}
.y82{bottom:330.357867pt;}
.y183{bottom:331.404400pt;}
.y1bb{bottom:332.527067pt;}
.y189{bottom:333.161200pt;}
.y1b{bottom:335.521867pt;}
.y221{bottom:337.722933pt;}
.y119{bottom:343.030400pt;}
.y50{bottom:346.101200pt;}
.y81{bottom:346.357867pt;}
.y188{bottom:347.155867pt;}
.y182{bottom:347.692000pt;}
.y1ba{bottom:348.527067pt;}
.y260{bottom:351.056267pt;}
.y220{bottom:351.058400pt;}
.y1a{bottom:351.521867pt;}
.y118{bottom:359.030400pt;}
.y187{bottom:361.150533pt;}
.y4f{bottom:362.101200pt;}
.y80{bottom:362.357867pt;}
.y181{bottom:363.725333pt;}
.y149{bottom:364.237733pt;}
.y25f{bottom:364.389600pt;}
.y21f{bottom:364.391733pt;}
.y1b9{bottom:364.527067pt;}
.y14e{bottom:364.811333pt;}
.ydf{bottom:365.556533pt;}
.y19{bottom:367.521867pt;}
.ye5{bottom:372.069733pt;}
.y117{bottom:375.030400pt;}
.y186{bottom:375.145200pt;}
.y25e{bottom:377.722933pt;}
.y21e{bottom:377.725067pt;}
.y4e{bottom:378.101200pt;}
.y7f{bottom:378.357867pt;}
.y14d{bottom:378.806000pt;}
.y180{bottom:379.689733pt;}
.y148{bottom:380.237733pt;}
.y1b8{bottom:380.527067pt;}
.yde{bottom:381.556533pt;}
.y18{bottom:383.521867pt;}
.yb3{bottom:385.697200pt;}
.y15c{bottom:385.852000pt;}
.ye4{bottom:386.064400pt;}
.yf1{bottom:390.016000pt;}
.y116{bottom:391.030400pt;}
.y25d{bottom:391.056267pt;}
.y21d{bottom:391.058400pt;}
.y156{bottom:392.729200pt;}
.y14c{bottom:392.800667pt;}
.y1e6{bottom:393.981200pt;}
.y4d{bottom:394.101200pt;}
.yd5{bottom:394.110533pt;}
.y7e{bottom:394.357867pt;}
.y17f{bottom:395.689733pt;}
.y147{bottom:396.237733pt;}
.y1b7{bottom:396.527067pt;}
.y17{bottom:399.521867pt;}
.y15b{bottom:399.846667pt;}
.ye3{bottom:400.059067pt;}
.yf0{bottom:404.017333pt;}
.y25c{bottom:404.389600pt;}
.y21c{bottom:404.391733pt;}
.y14b{bottom:406.795333pt;}
.y115{bottom:407.030400pt;}
.y155{bottom:409.767867pt;}
.y1e5{bottom:409.981200pt;}
.y4c{bottom:410.101200pt;}
.yd4{bottom:410.110533pt;}
.y17e{bottom:411.689733pt;}
.y146{bottom:412.237733pt;}
.y1b6{bottom:412.527067pt;}
.ydd{bottom:413.177600pt;}
.y15a{bottom:413.852000pt;}
.ye2{bottom:414.053733pt;}
.y27{bottom:415.521867pt;}
.yb2{bottom:417.318267pt;}
.y25b{bottom:417.722933pt;}
.y21b{bottom:417.725067pt;}
.yef{bottom:418.018667pt;}
.yab{bottom:419.445467pt;}
.y114{bottom:423.030400pt;}
.yad{bottom:425.120133pt;}
.y1e4{bottom:425.981200pt;}
.y4b{bottom:426.101200pt;}
.yd3{bottom:426.110533pt;}
.y7d{bottom:426.237867pt;}
.y17d{bottom:427.689733pt;}
.y159{bottom:427.846667pt;}
.ye1{bottom:428.048400pt;}
.y145{bottom:428.237733pt;}
.y1b5{bottom:428.527067pt;}
.yb1{bottom:430.651600pt;}
.y25a{bottom:431.056267pt;}
.y21a{bottom:431.058400pt;}
.y16{bottom:431.521867pt;}
.yee{bottom:432.020000pt;}
.y113{bottom:439.030400pt;}
.y195{bottom:439.853333pt;}
.ydc{bottom:440.750533pt;}
.y158{bottom:441.852000pt;}
.y1e3{bottom:441.981200pt;}
.y4a{bottom:442.101200pt;}
.yd2{bottom:442.110533pt;}
.y17c{bottom:443.689733pt;}
.y144{bottom:444.237733pt;}
.y259{bottom:444.389600pt;}
.y219{bottom:444.391733pt;}
.y1b4{bottom:444.527067pt;}
.y112{bottom:455.030400pt;}
.ydb{bottom:456.750533pt;}
.y258{bottom:457.722933pt;}
.y218{bottom:457.725067pt;}
.y1e2{bottom:457.981200pt;}
.y49{bottom:458.101200pt;}
.yd1{bottom:458.110533pt;}
.y7c{bottom:458.117867pt;}
.yb0{bottom:458.234533pt;}
.y17b{bottom:459.689733pt;}
.y143{bottom:460.237733pt;}
.y1b3{bottom:460.527067pt;}
.y111{bottom:471.030400pt;}
.y257{bottom:471.056267pt;}
.y217{bottom:471.058400pt;}
.yda{bottom:472.750533pt;}
.y1e1{bottom:473.981200pt;}
.y48{bottom:474.101200pt;}
.yd0{bottom:474.110533pt;}
.yaf{bottom:474.234533pt;}
.y17a{bottom:475.689733pt;}
.y142{bottom:476.237733pt;}
.y1b2{bottom:476.488400pt;}
.y256{bottom:484.389600pt;}
.y216{bottom:484.391733pt;}
.y110{bottom:487.030400pt;}
.y1e0{bottom:489.981200pt;}
.y47{bottom:490.101200pt;}
.ycf{bottom:490.110533pt;}
.yae{bottom:490.234533pt;}
.y179{bottom:491.689733pt;}
.y141{bottom:492.237733pt;}
.y1b1{bottom:492.527067pt;}
.y14{bottom:494.160267pt;}
.y255{bottom:497.722933pt;}
.y215{bottom:497.725067pt;}
.y10f{bottom:503.030400pt;}
.yd9{bottom:504.630533pt;}
.y1df{bottom:505.981200pt;}
.y46{bottom:506.101200pt;}
.yce{bottom:506.110533pt;}
.y7b{bottom:506.237867pt;}
.y13{bottom:507.500933pt;}
.y178{bottom:507.689733pt;}
.y140{bottom:508.237733pt;}
.y1b0{bottom:508.527067pt;}
.y254{bottom:511.056267pt;}
.y214{bottom:511.058400pt;}
.y18d{bottom:515.823067pt;}
.y10e{bottom:519.030400pt;}
.yd8{bottom:521.567867pt;}
.y1de{bottom:521.981200pt;}
.y45{bottom:522.101200pt;}
.ycd{bottom:522.110533pt;}
.y7a{bottom:522.237867pt;}
.y177{bottom:523.689733pt;}
.y13f{bottom:524.237733pt;}
.y253{bottom:524.389600pt;}
.y213{bottom:524.391733pt;}
.y1af{bottom:524.527067pt;}
.y10d{bottom:535.030400pt;}
.y12{bottom:536.706267pt;}
.y252{bottom:537.722933pt;}
.y212{bottom:537.725067pt;}
.y1dd{bottom:537.981200pt;}
.y44{bottom:538.101200pt;}
.ycc{bottom:538.110533pt;}
.y79{bottom:538.237867pt;}
.y176{bottom:539.689733pt;}
.y13e{bottom:540.237733pt;}
.y1ae{bottom:540.488400pt;}
.y11{bottom:550.039600pt;}
.y10c{bottom:551.030400pt;}
.y251{bottom:551.056267pt;}
.y211{bottom:551.058400pt;}
.y1dc{bottom:553.981200pt;}
.y43{bottom:554.101200pt;}
.ycb{bottom:554.110533pt;}
.y78{bottom:554.237867pt;}
.y175{bottom:555.689733pt;}
.y13d{bottom:556.237733pt;}
.y154{bottom:560.782133pt;}
.y151{bottom:560.792800pt;}
.y10{bottom:563.372933pt;}
.y250{bottom:564.389600pt;}
.y210{bottom:564.391733pt;}
.y10b{bottom:567.030400pt;}
.ya9{bottom:568.736133pt;}
.y1db{bottom:569.981200pt;}
.y42{bottom:570.101200pt;}
.yca{bottom:570.110533pt;}
.y77{bottom:570.237867pt;}
.y1ad{bottom:570.355067pt;}
.y174{bottom:571.689733pt;}
.y13c{bottom:572.237733pt;}
.yf{bottom:576.706267pt;}
.y24f{bottom:577.722933pt;}
.y20f{bottom:577.725067pt;}
.y10a{bottom:583.030400pt;}
.y1da{bottom:585.981200pt;}
.y41{bottom:586.101200pt;}
.yc9{bottom:586.110533pt;}
.y76{bottom:586.237867pt;}
.y1ac{bottom:586.355067pt;}
.yf3{bottom:586.875333pt;}
.y173{bottom:587.689733pt;}
.y13b{bottom:588.237733pt;}
.ye{bottom:590.039600pt;}
.y24e{bottom:591.056267pt;}
.y20e{bottom:591.058400pt;}
.y197{bottom:591.224000pt;}
.y194{bottom:591.640000pt;}
.ye8{bottom:595.566000pt;}
.y15f{bottom:597.458667pt;}
.y109{bottom:599.030400pt;}
.y1d9{bottom:601.981200pt;}
.y40{bottom:602.101200pt;}
.yc8{bottom:602.110533pt;}
.y75{bottom:602.237867pt;}
.y1ab{bottom:602.355067pt;}
.yd{bottom:603.372933pt;}
.y13a{bottom:604.237733pt;}
.y24d{bottom:604.389600pt;}
.y20d{bottom:604.391733pt;}
.y108{bottom:615.030400pt;}
.y24c{bottom:617.722933pt;}
.y20c{bottom:617.725067pt;}
.y1d8{bottom:617.981200pt;}
.y3f{bottom:618.101200pt;}
.ya3{bottom:618.109200pt;}
.yc7{bottom:618.110533pt;}
.y74{bottom:618.237867pt;}
.y172{bottom:619.310933pt;}
.y139{bottom:620.237733pt;}
.y107{bottom:631.030400pt;}
.y24b{bottom:631.056267pt;}
.y20b{bottom:631.058400pt;}
.y171{bottom:632.644267pt;}
.y18c{bottom:633.743067pt;}
.y1d7{bottom:633.981200pt;}
.y3e{bottom:634.101200pt;}
.ya2{bottom:634.109200pt;}
.yc6{bottom:634.110533pt;}
.y1aa{bottom:634.235067pt;}
.y73{bottom:634.237867pt;}
.y138{bottom:636.237733pt;}
.y24a{bottom:644.389600pt;}
.y20a{bottom:644.391733pt;}
.y170{bottom:645.977600pt;}
.yc{bottom:646.700933pt;}
.y106{bottom:647.030400pt;}
.y1d6{bottom:649.981200pt;}
.y3d{bottom:650.101200pt;}
.ya1{bottom:650.109200pt;}
.yc5{bottom:650.110533pt;}
.y1a9{bottom:650.235067pt;}
.y72{bottom:650.237867pt;}
.yf7{bottom:650.384667pt;}
.y137{bottom:652.237733pt;}
.y249{bottom:657.722933pt;}
.y209{bottom:657.725067pt;}
.y16f{bottom:659.310933pt;}
.yb{bottom:659.500933pt;}
.y18b{bottom:662.841733pt;}
.y105{bottom:663.030400pt;}
.y1d5{bottom:665.981200pt;}
.y3c{bottom:666.101200pt;}
.ya0{bottom:666.109200pt;}
.yc4{bottom:666.110533pt;}
.y1a8{bottom:666.235067pt;}
.y71{bottom:666.237867pt;}
.y136{bottom:668.237733pt;}
.y248{bottom:671.056267pt;}
.y208{bottom:671.058400pt;}
.ya{bottom:672.300933pt;}
.y16e{bottom:672.644267pt;}
.y104{bottom:679.030400pt;}
.y1d4{bottom:681.981200pt;}
.y3b{bottom:682.101200pt;}
.y9f{bottom:682.109200pt;}
.yc3{bottom:682.110533pt;}
.y70{bottom:682.237867pt;}
.y135{bottom:684.237733pt;}
.y247{bottom:684.389600pt;}
.y207{bottom:684.391733pt;}
.y16d{bottom:685.977600pt;}
.y103{bottom:695.030400pt;}
.yec{bottom:695.342000pt;}
.y9{bottom:696.439600pt;}
.y246{bottom:697.722933pt;}
.y206{bottom:697.725067pt;}
.y1d3{bottom:697.981200pt;}
.y3a{bottom:698.101200pt;}
.y1a7{bottom:698.101733pt;}
.y9e{bottom:698.109200pt;}
.yc2{bottom:698.110533pt;}
.y6f{bottom:698.237867pt;}
.y134{bottom:700.237733pt;}
.y153{bottom:706.296800pt;}
.y150{bottom:706.307467pt;}
.y102{bottom:711.030400pt;}
.y245{bottom:711.056267pt;}
.y205{bottom:711.058400pt;}
.y16c{bottom:713.554533pt;}
.y1d2{bottom:713.981200pt;}
.y1a6{bottom:714.063067pt;}
.y39{bottom:714.101200pt;}
.y9d{bottom:714.109200pt;}
.yc1{bottom:714.110533pt;}
.y6e{bottom:714.237867pt;}
.y133{bottom:716.237733pt;}
.y244{bottom:724.389600pt;}
.y204{bottom:724.391733pt;}
.y101{bottom:727.030400pt;}
.y8{bottom:727.106267pt;}
.y16b{bottom:729.554533pt;}
.y1d1{bottom:729.981200pt;}
.y38{bottom:730.101200pt;}
.y1a5{bottom:730.101733pt;}
.y9c{bottom:730.109200pt;}
.yc0{bottom:730.110533pt;}
.y132{bottom:732.237733pt;}
.y243{bottom:737.722933pt;}
.y203{bottom:737.725067pt;}
.yeb{bottom:740.323333pt;}
.y7{bottom:741.772933pt;}
.yf6{bottom:742.224667pt;}
.y100{bottom:743.030400pt;}
.y16a{bottom:745.554533pt;}
.y1d0{bottom:745.981200pt;}
.y37{bottom:746.101200pt;}
.y1a4{bottom:746.101733pt;}
.y9b{bottom:746.109200pt;}
.ybf{bottom:746.110533pt;}
.y6d{bottom:746.237867pt;}
.y131{bottom:748.237733pt;}
.y15e{bottom:750.909333pt;}
.y242{bottom:751.056267pt;}
.y202{bottom:751.058400pt;}
.yea{bottom:753.176667pt;}
.y6{bottom:759.004267pt;}
.ye7{bottom:761.870000pt;}
.y1cf{bottom:761.981200pt;}
.y36{bottom:762.101200pt;}
.y1a3{bottom:762.101733pt;}
.y9a{bottom:762.109200pt;}
.ybe{bottom:762.110533pt;}
.y130{bottom:764.237733pt;}
.y241{bottom:764.389600pt;}
.y201{bottom:764.391733pt;}
.yff{bottom:774.651467pt;}
.y169{bottom:777.434533pt;}
.y240{bottom:777.722933pt;}
.y200{bottom:777.725067pt;}
.y60{bottom:777.981200pt;}
.y35{bottom:778.101200pt;}
.y1a2{bottom:778.101733pt;}
.y6c{bottom:778.104533pt;}
.y99{bottom:778.109200pt;}
.ybd{bottom:778.110533pt;}
.y5{bottom:783.345067pt;}
.yfe{bottom:787.984800pt;}
.y23f{bottom:791.056267pt;}
.y1ff{bottom:791.058400pt;}
.y168{bottom:793.434533pt;}
.y1ce{bottom:793.981200pt;}
.y34{bottom:794.101200pt;}
.y1a1{bottom:794.101733pt;}
.y6b{bottom:794.104533pt;}
.y98{bottom:794.109200pt;}
.ybc{bottom:794.110533pt;}
.y12f{bottom:795.858933pt;}
.yfd{bottom:801.318133pt;}
.y23e{bottom:804.389600pt;}
.y1fe{bottom:804.391733pt;}
.y4{bottom:807.350400pt;}
.y12e{bottom:809.192267pt;}
.y167{bottom:809.434533pt;}
.y1cd{bottom:809.981200pt;}
.y33{bottom:810.101200pt;}
.y1a0{bottom:810.101733pt;}
.y6a{bottom:810.104533pt;}
.y97{bottom:810.109200pt;}
.ybb{bottom:810.110533pt;}
.yfc{bottom:814.651467pt;}
.y23d{bottom:817.722933pt;}
.y1fd{bottom:817.725067pt;}
.y12d{bottom:822.525600pt;}
.y1cc{bottom:825.981200pt;}
.y19f{bottom:826.063067pt;}
.y32{bottom:826.101200pt;}
.y69{bottom:826.104533pt;}
.y96{bottom:826.109200pt;}
.yba{bottom:826.110533pt;}
.y23c{bottom:831.056267pt;}
.y1fc{bottom:831.058400pt;}
.y3{bottom:831.355733pt;}
.y12c{bottom:835.858933pt;}
.yf5{bottom:836.710000pt;}
.y166{bottom:841.301200pt;}
.y19e{bottom:842.063067pt;}
.y31{bottom:842.101200pt;}
.y68{bottom:842.104533pt;}
.y95{bottom:842.109200pt;}
.yb9{bottom:842.110533pt;}
.yfb{bottom:842.221200pt;}
.y23b{bottom:844.389600pt;}
.y1fb{bottom:844.391733pt;}
.y152{bottom:846.520800pt;}
.y14f{bottom:846.531467pt;}
.y12b{bottom:849.192267pt;}
.y18a{bottom:854.468400pt;}
.y165{bottom:857.301200pt;}
.y23a{bottom:857.722933pt;}
.y1fa{bottom:857.725067pt;}
.y1cb{bottom:857.981200pt;}
.y30{bottom:858.101200pt;}
.y19d{bottom:858.101733pt;}
.y67{bottom:858.104533pt;}
.y94{bottom:858.109200pt;}
.yb8{bottom:858.110533pt;}
.yfa{bottom:858.221200pt;}
.y12a{bottom:862.525600pt;}
.y239{bottom:871.056267pt;}
.y1f9{bottom:871.058400pt;}
.y2{bottom:871.060800pt;}
.y164{bottom:873.301200pt;}
.y2f{bottom:874.101200pt;}
.y19c{bottom:874.101733pt;}
.y66{bottom:874.104533pt;}
.y93{bottom:874.109200pt;}
.yb7{bottom:874.110533pt;}
.yf9{bottom:874.221200pt;}
.y238{bottom:884.389600pt;}
.y1f8{bottom:884.391733pt;}
.y163{bottom:889.301200pt;}
.y2e{bottom:890.101200pt;}
.y19b{bottom:890.101333pt;}
.y65{bottom:890.104533pt;}
.y92{bottom:890.109200pt;}
.yb6{bottom:890.110533pt;}
.yf4{bottom:893.776667pt;}
.y237{bottom:897.722933pt;}
.y1f7{bottom:897.725067pt;}
.y160{bottom:899.069333pt;}
.ye9{bottom:899.630000pt;}
.ye6{bottom:899.633733pt;}
.yf2{bottom:903.035333pt;}
.y15d{bottom:903.602267pt;}
.y162{bottom:905.301200pt;}
.y2d{bottom:906.101200pt;}
.y19a{bottom:906.101333pt;}
.y185{bottom:906.103067pt;}
.y91{bottom:906.109200pt;}
.yb5{bottom:906.110533pt;}
.y236{bottom:911.056267pt;}
.y1f6{bottom:911.058400pt;}
.y161{bottom:921.529200pt;}
.y2c{bottom:922.101200pt;}
.y199{bottom:922.101333pt;}
.y184{bottom:922.103067pt;}
.y64{bottom:922.104533pt;}
.y90{bottom:922.109200pt;}
.yb4{bottom:922.110533pt;}
.y235{bottom:924.389600pt;}
.y1f5{bottom:924.391733pt;}
.y29{bottom:951.795067pt;}
.y198{bottom:965.392000pt;}
.y63{bottom:965.392400pt;}
.y28{bottom:965.395067pt;}
.h8{height:31.083333pt;}
.h6{height:31.104167pt;}
.h2{height:33.468750pt;}
.h9{height:38.220667pt;}
.he{height:38.239333pt;}
.h7{height:38.250000pt;}
.ha{height:38.828125pt;}
.hc{height:38.854167pt;}
.hd{height:40.640625pt;}
.h10{height:40.785604pt;}
.hf{height:41.279333pt;}
.h14{height:46.372500pt;}
.h3{height:46.593750pt;}
.hb{height:47.812500pt;}
.h13{height:47.814100pt;}
.h11{height:49.248458pt;}
.h12{height:50.203125pt;}
.h5{height:52.593750pt;}
.h4{height:54.359375pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:68.031467pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x2c{left:90.141733pt;}
.x3c{left:94.484800pt;}
.xd{left:98.271467pt;}
.x27{left:106.299200pt;}
.x20{left:107.511467pt;}
.x3a{left:110.446133pt;}
.x3{left:111.494533pt;}
.x4b{left:113.382533pt;}
.x16{left:115.649200pt;}
.x7{left:117.170133pt;}
.x1f{left:119.484800pt;}
.x2f{left:120.947067pt;}
.x47{left:128.356533pt;}
.x46{left:140.823200pt;}
.x4{left:143.622533pt;}
.x3b{left:167.872800pt;}
.x30{left:169.704400pt;}
.x21{left:175.298133pt;}
.x49{left:176.778133pt;}
.x48{left:186.769867pt;}
.x6{left:189.223467pt;}
.x15{left:190.249200pt;}
.x4a{left:191.595867pt;}
.x17{left:194.195867pt;}
.x5{left:204.115867pt;}
.x14{left:206.542533pt;}
.x36{left:224.695067pt;}
.x38{left:244.152800pt;}
.x2d{left:249.448400pt;}
.x29{left:264.944533pt;}
.x39{left:270.232800pt;}
.x2e{left:305.384400pt;}
.x2a{left:314.832533pt;}
.x2b{left:337.883200pt;}
.x28{left:350.736533pt;}
.xb{left:404.481333pt;}
.xf{left:406.298133pt;}
.x3d{left:422.173200pt;}
.x18{left:425.192000pt;}
.x8{left:427.090133pt;}
.x33{left:432.791467pt;}
.xe{left:436.538133pt;}
.x1a{left:440.314933pt;}
.x41{left:442.658267pt;}
.x1b{left:449.008267pt;}
.x32{left:450.982533pt;}
.x19{left:455.432000pt;}
.x9{left:457.330133pt;}
.x35{left:460.166400pt;}
.x11{left:462.056133pt;}
.x22{left:464.323867pt;}
.x10{left:466.911467pt;}
.x3f{left:469.804133pt;}
.x24{left:482.566933pt;}
.x23{left:493.660267pt;}
.x31{left:497.205733pt;}
.x37{left:504.260933pt;}
.x26{left:505.520800pt;}
.x34{left:506.644800pt;}
.x1c{left:527.237600pt;}
.x25{left:532.446933pt;}
.x3e{left:562.397200pt;}
.x1d{left:579.578933pt;}
.x43{left:582.050267pt;}
.x13{left:589.770933pt;}
.x42{left:610.583600pt;}
.x2{left:626.078800pt;}
.x40{left:637.449067pt;}
.x12{left:643.752133pt;}
.x45{left:657.187867pt;}
.x1e{left:662.649733pt;}
.x44{left:668.407600pt;}
}




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